very first version for a netdevice controller (not tested yet)
[senf.git] / Socket / NetdeviceController.cc
1 // $Id: BufferingPolicy.cc 533 2007-11-23 17:34:30Z g0dil $
2 //
3 // Copyright (C) 2007
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Thorsten Horstmann <thorsten.horstmann@fokus.fraunhofer.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 BufferingPolicy 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 <netinet/ether.h>
35 #include "../Utils/Exception.hh"
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 prefix_ senf::NetdeviceController::NetdeviceController(std::string const interface_name)
41 {
42     sockfd_ = ::socket(PF_PACKET, SOCK_DGRAM, 0);
43     if (sockfd_ < 0)
44         throwErrno();
45     interfacename_ = interface_name;
46 }
47
48 prefix_ senf::MACAddress senf::NetdeviceController::hardwareAddress()
49 {
50     struct ifreq ifr;
51     ::memset( &ifr, 0, sizeof(ifr));
52     interfacename_.copy( ifr.ifr_name, IFNAMSIZ);
53     if ( ::ioctl( sockfd_, SIOCGIFHWADDR , &ifr ) < 0 )
54         throwErrno();
55     return senf::MACAddress::from_string( 
56             ether_ntoa( (struct ether_addr*) ifr.ifr_hwaddr.sa_data ) );
57 }
58
59 prefix_ senf::NetdeviceController::~NetdeviceController()
60 {
61     close( sockfd_ );
62 }
63
64
65
66 ///////////////////////////////cc.e////////////////////////////////////////
67 #undef prefix_
68 //#include "NetdeviceController.mpp"
69
70 \f
71 // Local Variables:
72 // mode: c++
73 // fill-column: 100
74 // c-file-style: "senf"
75 // indent-tabs-mode: nil
76 // ispell-local-dictionary: "american"
77 // compile-command: "scons -u test"
78 // comment-column: 40
79 // End: