Imported Upstream version 0.3.4
[anytun.git] / src / tunDevice.h
1 /*
2  *  anytun
3  *
4  *  The secure anycast tunneling protocol (satp) defines a protocol used
5  *  for communication between any combination of unicast and anycast
6  *  tunnel endpoints.  It has less protocol overhead than IPSec in Tunnel
7  *  mode and allows tunneling of every ETHER TYPE protocol (e.g.
8  *  ethernet, ip, arp ...). satp directly includes cryptography and
9  *  message authentication based on the methodes used by SRTP.  It is
10  *  intended to deliver a generic, scaleable and secure solution for
11  *  tunneling and relaying of packets of any protocol.
12  *
13  *
14  *  Copyright (C) 2007-2009 Othmar Gsenger, Erwin Nindl,
15  *                          Christian Pointner <satp@wirdorange.org>
16  *
17  *  This file is part of Anytun.
18  *
19  *  Anytun is free software: you can redistribute it and/or modify
20  *  it under the terms of the GNU General Public License as published by
21  *  the Free Software Foundation, either version 3 of the License, or
22  *  any later version.
23  *
24  *  Anytun is distributed in the hope that it will be useful,
25  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
26  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
27  *  GNU General Public License for more details.
28  *
29  *  You should have received a copy of the GNU General Public License
30  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
31  */
32
33 #ifndef ANYTUN_tunDevice_h_INCLUDED
34 #define ANYTUN_tunDevice_h_INCLUDED
35
36 #include "buffer.h"
37 #include "deviceConfig.hpp"
38 #include "threadUtils.hpp"
39 #ifdef _MSC_VER
40 #include <windows.h>
41 #else
42 #include "sysExec.h"
43 #endif
44
45 class TunDevice
46 {
47 public:
48   TunDevice(std::string dev,std::string dev_type, std::string ifcfg_addr, uint16_t ifcfg_prefix);
49   ~TunDevice();
50
51   int read(uint8_t* buf, uint32_t len);
52   int write(uint8_t* buf, uint32_t len);
53
54   const char* getActualName() const { return actual_name_.c_str(); }
55   const char* getActualNode() const { return actual_node_.c_str(); }
56   device_type_t getType() const { return conf_.type_; }
57   void waitUntilReady();
58   const char* getTypeString() const {
59 #ifndef _MSC_VER
60     if(fd_ < 0)
61 #else
62     if(handle_ == INVALID_HANDLE_VALUE)
63 #endif
64       return "";
65
66     switch(conf_.type_) {
67     case TYPE_UNDEF:
68       return "undef";
69       break;
70     case TYPE_TUN:
71       return "tun";
72       break;
73     case TYPE_TAP:
74       return "tap";
75       break;
76     }
77     return "";
78   }
79
80 private:
81   void operator=(const TunDevice& src);
82   TunDevice(const TunDevice& src);
83
84   void init_post();
85   void do_ifconfig();
86   int fix_return(int ret, size_t pi_length) const;
87
88 #ifndef _MSC_VER
89   int fd_;
90 #else
91   bool getAdapter(std::string const& dev_name);
92   DWORD performIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inBufferSize,
93                          LPVOID outBuffer, DWORD outBufferSize);
94   HANDLE handle_;
95   OVERLAPPED roverlapped_, woverlapped_;
96 #endif
97
98   DeviceConfig conf_;
99 #ifndef _MSC_VER
100   SysExec* sys_exec_;
101 #endif
102   bool with_pi_;
103   std::string actual_name_;
104   std::string actual_node_;
105 };
106
107 #endif