NEW FILE HEADER / COPYRIGHT FORMAT
[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_ void senf::TapProtocol::init_client() 
43     const
44 {
45     init_client(std::string());
46 }
47
48 prefix_ void senf::TapProtocol::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         throwErrno();
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         throwErrno();
62     fd(f);
63 }
64
65 prefix_ std::auto_ptr<senf::SocketProtocol> senf::TapProtocol::clone()
66     const
67 {
68     return std::auto_ptr<SocketProtocol>(new TapProtocol());
69 }
70
71 prefix_ unsigned senf::TapProtocol::available()
72   const
73 {
74   if (! fh().readable())
75       return 0;
76   ssize_t l = ::recv(fd(),0,0,MSG_PEEK | MSG_TRUNC);
77   if (l < 0)
78       //throwErrno();
79       return 1588;
80   return l;
81 }
82
83 /*
84 #include <linux/sockios.h> // for SIOCINQ / SIOCOUTQ
85
86 prefix_ unsigned senf::TapProtocol::available()
87   const
88 {
89   if (! body().readable())
90       return 0;
91   int n;
92   if (::ioctl(body().fd(),SIOCINQ,&n) < 0)
93       throwErrno();
94   return n;
95 }
96 */
97
98 prefix_ bool senf::TapProtocol::eof()
99     const
100 {
101     return false;
102 }
103
104 ///////////////////////////////cc.e////////////////////////////////////////
105 #undef prefix_
106 //#include "TunTapSocketHandle.mpp"
107
108 \f
109 // Local Variables:
110 // mode: c++
111 // fill-column: 100
112 // c-file-style: "senf"
113 // indent-tabs-mode: nil
114 // ispell-local-dictionary: "american"
115 // compile-command: "scons -u test"
116 // comment-column: 40
117 // End: