NEW FILE HEADER / COPYRIGHT FORMAT
[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 "../Utils/Exception.hh"
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 prefix_ senf::NetdeviceController::NetdeviceController(std::string const & interface_name)
39 {
40     openSocket();
41     struct ifreq ifr;
42     ::memset( &ifr, 0, sizeof(ifr));
43     interface_name.copy( ifr.ifr_name, IFNAMSIZ);
44     doIoctl( ifr, SIOCGIFINDEX);
45     ifindex_ = ifr.ifr_ifindex;
46 }
47
48 prefix_ senf::NetdeviceController::NetdeviceController(int interface_index)
49 {
50     openSocket();
51     ifindex_ = interface_index;
52 }
53
54 prefix_ std::string senf::NetdeviceController::interfaceName()
55 {
56     struct ifreq ifr;
57     ifrName( ifr);
58     return std::string( ifr.ifr_name);
59 }
60
61 prefix_ senf::MACAddress senf::NetdeviceController::hardwareAddress()
62 {
63     struct ifreq ifr;
64     ifrName( ifr);
65     doIoctl( ifr, SIOCGIFHWADDR);
66     return senf::MACAddress::from_data( ifr.ifr_hwaddr.sa_data);
67 }
68
69 prefix_ int senf::NetdeviceController::mtu()
70 {
71     struct ifreq ifr;
72     ifrName( ifr);
73     doIoctl( ifr, SIOCGIFMTU);
74     return ifr.ifr_mtu;
75 }
76
77 prefix_ void senf::NetdeviceController::mtu(int new_mtu)
78 {
79     struct ifreq ifr;
80     ifrName( ifr);
81     ifr.ifr_mtu = new_mtu;
82     doIoctl( ifr, SIOCSIFMTU);
83 }
84
85 prefix_ int senf::NetdeviceController::interfaceIndex()
86 {
87     return ifindex_;
88 }
89
90 prefix_ senf::NetdeviceController::~NetdeviceController()
91 {
92     close( sockfd_);
93 }
94
95 prefix_ void senf::NetdeviceController::openSocket()
96 {
97     sockfd_ = ::socket( PF_INET, SOCK_DGRAM, 0);
98     if ( sockfd_ < 0)
99         throwErrno();
100 }
101
102 prefix_ void senf::NetdeviceController::ifrName(ifreq& ifr)
103 {
104     ::memset( &ifr, 0, sizeof(ifr));
105     ifr.ifr_ifindex = ifindex_;
106     if ( ::ioctl( sockfd_, SIOCGIFNAME, &ifr ) < 0 )
107         throwErrno();
108 }
109
110
111 prefix_ void senf::NetdeviceController::doIoctl(ifreq& ifr, int request)
112 {
113     if ( ::ioctl( sockfd_, request, &ifr ) < 0 )
114         throwErrno();
115 }
116
117 ///////////////////////////////cc.e////////////////////////////////////////
118 #undef prefix_
119 //#include "NetdeviceController.mpp"
120
121 \f
122 // Local Variables:
123 // mode: c++
124 // fill-column: 100
125 // c-file-style: "senf"
126 // indent-tabs-mode: nil
127 // ispell-local-dictionary: "american"
128 // compile-command: "scons -u test"
129 // comment-column: 40
130 // End: