7ce1f953bff4aa0a0582d09098f753442d64fadf
[senf.git] / 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 {
41     openSocket();
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 {
51     openSocket();
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_ int senf::NetdeviceController::interfaceIndex()
119     const
120 {
121     return ifindex_;
122 }
123
124 prefix_ senf::NetdeviceController::~NetdeviceController()
125 {
126     close( sockfd_);
127 }
128
129 prefix_ void senf::NetdeviceController::openSocket()
130 {
131     sockfd_ = ::socket( PF_INET, SOCK_DGRAM, 0);
132     if ( sockfd_ < 0)
133         SENF_THROW_SYSTEM_EXCEPTION("Could not open socket for NetdeviceController.");
134 }
135
136 prefix_ void senf::NetdeviceController::ifrName(ifreq& ifr)
137     const
138 {
139     ::memset( &ifr, 0, sizeof(ifr));
140     ifr.ifr_ifindex = ifindex_;
141     if ( ::ioctl( sockfd_, SIOCGIFNAME, &ifr ) < 0 )
142         SENF_THROW_SYSTEM_EXCEPTION("NetdeviceController")
143         << " could not discover the name of the interface with index " << ifindex_ << ".";
144 }
145
146 prefix_ void senf::NetdeviceController::doIoctl(ifreq& ifr, int request)
147     const
148 {
149     if ( ::ioctl( sockfd_, request, &ifr ) < 0 )
150         SENF_THROW_SYSTEM_EXCEPTION("NetdeviceController::doIoctl failed.");
151 }
152
153 ///////////////////////////////cc.e////////////////////////////////////////
154 #undef prefix_
155 //#include "NetdeviceController.mpp"
156
157
158 // Local Variables:
159 // mode: c++
160 // fill-column: 100
161 // c-file-style: "senf"
162 // indent-tabs-mode: nil
163 // ispell-local-dictionary: "american"
164 // compile-command: "scons -u test"
165 // comment-column: 40
166 // End: