Imported Upstream version 0.3.3
[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, u_int16_t ifcfg_prefix);
49   ~TunDevice();
50   
51   int read(u_int8_t* buf, u_int32_t len);
52   int write(u_int8_t* buf, u_int32_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   {
60 #ifndef _MSC_VER
61     if(fd_ < 0)
62 #else
63     if(handle_ == INVALID_HANDLE_VALUE)
64 #endif
65       return "";
66     
67     switch(conf_.type_)
68     {
69     case TYPE_UNDEF: return "undef"; break;
70     case TYPE_TUN: return "tun"; break;
71     case TYPE_TAP: return "tap"; break;
72     }
73     return "";
74   }
75
76 private:
77   void operator=(const TunDevice &src);
78   TunDevice(const TunDevice &src);
79
80   void init_post();
81   void do_ifconfig();
82   int fix_return(int ret, size_t pi_length) const;
83
84 #ifndef _MSC_VER
85   int fd_;
86 #else
87   bool getAdapter(std::string const& dev_name);
88   DWORD performIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inBufferSize,
89                         LPVOID outBuffer, DWORD outBufferSize);
90   HANDLE handle_;
91   OVERLAPPED roverlapped_, woverlapped_;
92 #endif
93
94   DeviceConfig conf_;
95 #ifndef _MSC_VER
96   SysExec * sys_exec_;
97 #endif
98   bool with_pi_;
99   std::string actual_name_;
100   std::string actual_node_;
101 };
102
103 #endif