Imported Upstream version 0.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-2008 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 version 3 as
21  *  published by the Free Software Foundation.
22  *
23  *  Anytun is distributed in the hope that it will be useful,
24  *  but WITHOUT ANY WARRANTY; without even the implied warranty of
25  *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
26  *  GNU General Public License for more details.
27  *
28  *  You should have received a copy of the GNU General Public License
29  *  along with anytun.  If not, see <http://www.gnu.org/licenses/>.
30  */
31
32 #ifndef _TUNDEVICE_H_
33 #define _TUNDEVICE_H_
34
35 #include "buffer.h"
36 #include "deviceConfig.hpp"
37 #include "threadUtils.hpp"
38
39 #ifdef _MSC_VER
40 #include <windows.h>
41 #endif
42
43 class TunDevice
44 {
45 public:
46   TunDevice(std::string dev,std::string dev_type, std::string ifcfg_addr, u_int16_t ifcfg_prefix);
47   ~TunDevice();
48   
49   int read(u_int8_t* buf, u_int32_t len);
50   int write(u_int8_t* buf, u_int32_t len);
51
52   const char* getActualName() const { return actual_name_.c_str(); }
53   const char* getActualNode() const { return actual_node_.c_str(); }
54   device_type_t getType() const { return conf_.type_; } 
55   const char* getTypeString() const
56   {
57 #ifndef _MSC_VER
58     if(fd_ < 0)
59 #else
60     if(handle_ == INVALID_HANDLE_VALUE)
61 #endif
62       return "";
63     
64     switch(conf_.type_)
65     {
66     case TYPE_UNDEF: return "undef"; break;
67     case TYPE_TUN: return "tun"; break;
68     case TYPE_TAP: return "tap"; break;
69     }
70     return "";
71   }
72
73
74 private:
75   void operator=(const TunDevice &src);
76   TunDevice(const TunDevice &src);
77
78   void init_post();
79   void do_ifconfig();
80   int fix_return(int ret, size_t pi_length) const;
81
82 #ifndef _MSC_VER
83   int fd_;
84 #else
85   bool getAdapter(std::string const& dev_name);
86   DWORD performIoControl(DWORD controlCode, LPVOID inBuffer, DWORD inBufferSize,
87                         LPVOID outBuffer, DWORD outBufferSize);
88   HANDLE handle_;
89   OVERLAPPED roverlapped_, woverlapped_;
90 #endif
91
92   DeviceConfig conf_;
93   bool with_pi_;
94   std::string actual_name_;
95   std::string actual_node_;
96 };
97
98 #endif