6b36fb30dbd281802d0197fd4bfaee09b8602917
[senf.git] / Socket / Protocols / Raw / TunTapSocketHandle.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief
25
26  */
27
28 #include "TunTapSocketHandle.hh"
29 //#include "TunTapSocketHandle.ih"
30
31 // Custom includes
32 #include <sys/ioctl.h>
33 #include <fcntl.h>
34 #include <net/if.h>
35 #include <linux/if_tun.h>
36 #include <errno.h>
37
38 //#include "TunTapSocketHandle.mpp"
39 #define prefix_
40 ///////////////////////////////cc.p////////////////////////////////////////
41
42 prefix_ std::string senf::TapSocketProtocol::init_client()
43     const
44 {
45     return init_client(std::string());
46 }
47
48 prefix_ std::string senf::TapSocketProtocol::init_client(std::string const & interface_name, bool const NO_PI)
49     const
50 {
51     int f;
52     if ( (f = ::open("/dev/net/tun", O_RDWR)) < 0 )
53         SENF_THROW_SYSTEM_EXCEPTION("Could not open tap control device: /dev/net/tun.");
54     struct ifreq ifr;
55     ::memset( &ifr, 0, sizeof(ifr));
56     ifr.ifr_flags = IFF_TAP;
57     if (NO_PI)
58         ifr.ifr_flags |= IFF_NO_PI;
59     interface_name.copy( ifr.ifr_name, IFNAMSIZ);
60     if (::ioctl(f, TUNSETIFF, (void *) &ifr) < 0 )
61         SENF_THROW_SYSTEM_EXCEPTION( "Could not create tap device: ") << ifr.ifr_name << ".";
62     ifaceIndex_ = if_nametoindex(ifr.ifr_name);
63     fd(f);
64     return ifaceName();
65 }
66
67 prefix_ unsigned senf::TapSocketProtocol::available()
68   const
69 {
70     if (!fh().readable())
71         return 0;
72     ssize_t l = ::recv(fd(), 0, 0, MSG_PEEK | MSG_TRUNC);
73     if (l < 0)
74         //SENF_THROW_SYSTEM_EXCEPTION("");
75         return 1588;
76     return l;
77 }
78
79 /*
80 #include <linux/sockios.h> // for SIOCINQ / SIOCOUTQ
81
82 prefix_ unsigned senf::TapSocketProtocol::available()
83   const
84 {
85   if (! body().readable())
86       return 0;
87   int n;
88   if (::ioctl(body().fd(),SIOCINQ,&n) < 0)
89       SENF_THROW_SYSTEM_EXCEPTION("");
90   return n;
91 }
92 */
93
94 prefix_ bool senf::TapSocketProtocol::eof()
95     const
96 {
97     return false;
98 }
99
100 prefix_ unsigned int senf::TapSocketProtocol::ifaceIndex()
101     const
102 {
103     return ifaceIndex_;
104 }
105
106 prefix_ std::string senf::TapSocketProtocol::ifaceName()
107     const
108 {
109     char buf[IF_NAMESIZE];
110     if_indextoname(ifaceIndex_, buf);
111     return std::string(buf);
112 }
113
114 ///////////////////////////////cc.e////////////////////////////////////////
115 #undef prefix_
116 //#include "TunTapSocketHandle.mpp"
117
118
119 // Local Variables:
120 // mode: c++
121 // fill-column: 100
122 // c-file-style: "senf"
123 // indent-tabs-mode: nil
124 // ispell-local-dictionary: "american"
125 // compile-command: "scons -u test"
126 // comment-column: 40
127 // End: