Fix SCons 1.2.0 build failure
[senf.git] / senf / Socket / NetdeviceController.cc
1 // $Id$
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY
6 //     Thorsten Horstmann <tho@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 NetdeviceController non-inline non-template implementation
25  */
26
27 #include "NetdeviceController.hh"
28 //#include "NetdeviceController.ih"
29
30 // Custom includes
31 #include <sys/socket.h>
32 #include <sys/ioctl.h>
33 #include <net/if.h>
34 #include "../Utils/Exception.hh"
35
36 #define prefix_
37 ///////////////////////////////cc.p////////////////////////////////////////
38
39 prefix_ senf::NetdeviceController::NetdeviceController(std::string const & interface_name)
40     : sockfd_ (sockfd())
41 {
42     struct ifreq ifr;
43     ::memset( &ifr, 0, sizeof(ifr));
44     interface_name.copy( ifr.ifr_name, IFNAMSIZ);
45     doIoctl( ifr, SIOCGIFINDEX);
46     ifindex_ = ifr.ifr_ifindex;
47 }
48
49 prefix_ senf::NetdeviceController::NetdeviceController(int interface_index)
50     : sockfd_ (sockfd())
51 {
52     ifindex_ = interface_index;
53 }
54
55 prefix_ std::string senf::NetdeviceController::interfaceName()
56     const
57 {
58     struct ifreq ifr;
59     ifrName( ifr);
60     return std::string( ifr.ifr_name);
61 }
62
63 prefix_ void senf::NetdeviceController::interfaceName(const std::string & newname)
64 {
65     if (sizeof(newname) <= IFNAMSIZ) {
66         struct ifreq ifr;
67         ifrName(ifr);
68         strncpy(ifr. ifr_newname, newname.c_str(), IFNAMSIZ);
69         try {
70             doIoctl(ifr, SIOCSIFNAME);
71         } catch (senf::SystemException e) {
72             e << "Could not change the interface name. Is the interface really down?";
73             throw ;
74         }
75     }
76     return;
77 }
78
79 prefix_ senf::MACAddress senf::NetdeviceController::hardwareAddress()
80     const
81 {
82     struct ifreq ifr;
83     ifrName( ifr);
84     doIoctl( ifr, SIOCGIFHWADDR);
85     return senf::MACAddress::from_data( ifr.ifr_hwaddr.sa_data);
86 }
87
88 prefix_ void senf::NetdeviceController::hardwareAddress(const MACAddress &newAddress) {
89     struct ifreq ifr;
90     ifrName( ifr);
91     ifr.ifr_hwaddr.sa_family = 1; // TODO: lookup named constant; PF_LOCAL ???
92     std::copy(newAddress.begin(), newAddress.end(), ifr.ifr_hwaddr.sa_data);
93     try {
94         doIoctl(ifr, SIOCSIFHWADDR);
95     } catch (senf::SystemException e) {
96         e << "Could not change the interface MAC address. Is the interface really down?";
97         throw ;
98     }
99 }
100
101 prefix_ int senf::NetdeviceController::mtu()
102     const
103 {
104     struct ifreq ifr;
105     ifrName( ifr);
106     doIoctl( ifr, SIOCGIFMTU);
107     return ifr.ifr_mtu;
108 }
109
110 prefix_ void senf::NetdeviceController::mtu(int new_mtu)
111 {
112     struct ifreq ifr;
113     ifrName( ifr);
114     ifr.ifr_mtu = new_mtu;
115     doIoctl( ifr, SIOCSIFMTU);
116 }
117
118 prefix_ bool senf::NetdeviceController::promisc()
119     const
120 {
121     struct ifreq ifr;
122     ifrName( ifr);
123     doIoctl( ifr, SIOCGIFFLAGS);
124     return ifr.ifr_flags & IFF_PROMISC;
125 }
126
127 prefix_ void senf::NetdeviceController::promisc(bool mode)
128 {
129     struct ifreq ifr;
130     ifrName( ifr);
131     doIoctl( ifr, SIOCGIFFLAGS);
132     if (mode)
133         ifr.ifr_flags |= IFF_PROMISC;
134     else
135         ifr.ifr_flags &= ~IFF_PROMISC;
136     doIoctl( ifr, SIOCSIFFLAGS);
137 }
138
139 prefix_ bool senf::NetdeviceController::isUp()
140     const
141 {
142     struct ifreq ifr;
143     ifrName(ifr);
144     doIoctl(ifr, SIOCGIFFLAGS);
145     return ifr.ifr_flags & IFF_UP;
146 }
147
148 prefix_ void senf::NetdeviceController::up()
149 {
150     struct ifreq ifr;
151     ifrName(ifr);
152     doIoctl(ifr, SIOCGIFFLAGS);
153     ifr.ifr_flags |= IFF_UP;
154     doIoctl(ifr, SIOCSIFFLAGS);
155 }
156
157 prefix_ void senf::NetdeviceController::down()
158 {
159     struct ifreq ifr;
160     ifrName(ifr);
161     doIoctl(ifr, SIOCGIFFLAGS);
162     ifr.ifr_flags &= ~IFF_UP;
163     doIoctl(ifr, SIOCSIFFLAGS);
164 }
165
166 prefix_ int senf::NetdeviceController::interfaceIndex()
167     const
168 {
169     return ifindex_;
170 }
171
172 prefix_ void senf::NetdeviceController::ifrName(ifreq& ifr)
173     const
174 {
175     ::memset( &ifr, 0, sizeof(ifr));
176     ifr.ifr_ifindex = ifindex_;
177     if ( ::ioctl( sockfd_->fd, SIOCGIFNAME, &ifr ) < 0 )
178         SENF_THROW_SYSTEM_EXCEPTION("NetdeviceController")
179         << " could not discover the name of the interface with index " << ifindex_ << ".";
180 }
181
182 prefix_ void senf::NetdeviceController::doIoctl(ifreq& ifr, int request)
183     const
184 {
185     if ( ::ioctl( sockfd_->fd, request, &ifr ) < 0 )
186         SENF_THROW_SYSTEM_EXCEPTION("NetdeviceController::doIoctl failed.");
187 }
188
189 ///////////////////////////////////////////////////////////////////////////
190 // senf::NetdeviceController::SockFd
191
192 prefix_ senf::NetdeviceController::SockFd::SockFd()
193     : fd (::socket(PF_INET, SOCK_DGRAM, 0))
194 {
195     if ( fd < 0)
196         SENF_THROW_SYSTEM_EXCEPTION("Could not open socket for NetdeviceController.");
197 }
198
199 prefix_ senf::NetdeviceController::SockFd::~SockFd()
200 {
201     ::close(fd);
202 }
203
204 prefix_ senf::NetdeviceController::SockFd::ptr senf::NetdeviceController::sockfd()
205 {
206     static boost::weak_ptr<SockFd> sockfd;
207     SockFd::ptr p (sockfd.lock());
208     if (!p)
209          sockfd = p = SockFd::ptr(new SockFd());
210     return p;
211 }
212
213 ///////////////////////////////cc.e////////////////////////////////////////
214 #undef prefix_
215 //#include "NetdeviceController.mpp"
216
217
218 // Local Variables:
219 // mode: c++
220 // fill-column: 100
221 // c-file-style: "senf"
222 // indent-tabs-mode: nil
223 // ispell-local-dictionary: "american"
224 // compile-command: "scons -u test"
225 // comment-column: 40
226 // End: