-rw-r--r-- | libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp | 12 | ||||
-rw-r--r-- | libopie2/opienet/onetwork.cpp | 113 | ||||
-rw-r--r-- | libopie2/opienet/onetwork.h | 29 |
3 files changed, 131 insertions, 23 deletions
diff --git a/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp b/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp index 607d8f1..fc2026f 100644 --- a/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp +++ b/libopie2/examples/opienet/onetworkdemo/onetworkdemo.cpp | |||
@@ -27,61 +27,73 @@ int main( int argc, char** argv ) | |||
27 | 27 | ||
28 | //if ( iface->mode() == OWirelessNetworkInterface::adhoc ) | 28 | //if ( iface->mode() == OWirelessNetworkInterface::adhoc ) |
29 | //{ | 29 | //{ |
30 | qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP() ); | 30 | qDebug( "DEMO: Associated AP has MAC Address '%s'", (const char*) iface->associatedAP() ); |
31 | //} | 31 | //} |
32 | 32 | ||
33 | // nickname | 33 | // nickname |
34 | qDebug( "DEMO: Current NickName is '%s'", (const char*) iface->nickName() ); | 34 | qDebug( "DEMO: Current NickName is '%s'", (const char*) iface->nickName() ); |
35 | iface->setNickName( "MyNickName" ); | 35 | iface->setNickName( "MyNickName" ); |
36 | if ( iface->nickName() != "MyNickName" ) | 36 | if ( iface->nickName() != "MyNickName" ) |
37 | qDebug( "DEMO: Warning! Can't change nickname" ); | 37 | qDebug( "DEMO: Warning! Can't change nickname" ); |
38 | else | 38 | else |
39 | qDebug( "DEMO: Nickname change successful." ); | 39 | qDebug( "DEMO: Nickname change successful." ); |
40 | 40 | ||
41 | // operation mode | 41 | // operation mode |
42 | qDebug( "DEMO: Current OperationMode is '%s'", (const char*) iface->mode() ); | 42 | qDebug( "DEMO: Current OperationMode is '%s'", (const char*) iface->mode() ); |
43 | iface->setMode( "adhoc" ); | 43 | iface->setMode( "adhoc" ); |
44 | if ( iface->mode() != "adhoc" ) | 44 | if ( iface->mode() != "adhoc" ) |
45 | qDebug( "DEMO: Warning! Can't change operation mode" ); | 45 | qDebug( "DEMO: Warning! Can't change operation mode" ); |
46 | else | 46 | else |
47 | qDebug( "DEMO: Operation Mode change successful." ); | 47 | qDebug( "DEMO: Operation Mode change successful." ); |
48 | 48 | ||
49 | // RF channel | 49 | // RF channel |
50 | qDebug( "DEMO: Current Channel is '%d'", iface->channel() ); | 50 | qDebug( "DEMO: Current Channel is '%d'", iface->channel() ); |
51 | iface->setChannel( 1 ); | 51 | iface->setChannel( 1 ); |
52 | if ( iface->channel() != 1 ) | 52 | if ( iface->channel() != 1 ) |
53 | qDebug( "DEMO: Warning! Can't change RF channel" ); | 53 | qDebug( "DEMO: Warning! Can't change RF channel" ); |
54 | else | 54 | else |
55 | qDebug( "DEMO: RF channel change successful." ); | 55 | qDebug( "DEMO: RF channel change successful." ); |
56 | 56 | ||
57 | iface->setMode( "managed" ); | 57 | iface->setMode( "managed" ); |
58 | 58 | ||
59 | // network scan | ||
60 | |||
61 | int stations = iface->scanNetwork(); | ||
62 | if ( stations != -1 ) | ||
63 | { | ||
64 | qDebug( "DEMO: # of stations around = %d", stations ); | ||
65 | } | ||
66 | else | ||
67 | { | ||
68 | qDebug( "DEMO: Warning! Scan didn't work!" ); | ||
69 | } | ||
70 | |||
59 | /* | 71 | /* |
60 | 72 | ||
61 | // first some wrong calls to check if this is working | 73 | // first some wrong calls to check if this is working |
62 | iface->setPrivate( "seppel", 10 ); | 74 | iface->setPrivate( "seppel", 10 ); |
63 | iface->setPrivate( "monitor", 0 ); | 75 | iface->setPrivate( "monitor", 0 ); |
64 | 76 | ||
65 | // now the real deal | 77 | // now the real deal |
66 | iface->setPrivate( "monitor", 2, 2, 3 ); | 78 | iface->setPrivate( "monitor", 2, 2, 3 ); |
67 | 79 | ||
68 | // trying to set hw address to 12:34:56:AB:CD:EF | 80 | // trying to set hw address to 12:34:56:AB:CD:EF |
69 | 81 | ||
70 | /* | 82 | /* |
71 | 83 | ||
72 | OMacAddress addr = OMacAddress::fromString( "12:34:56:AB:CD:EF" ); | 84 | OMacAddress addr = OMacAddress::fromString( "12:34:56:AB:CD:EF" ); |
73 | iface->setUp( false ); | 85 | iface->setUp( false ); |
74 | iface->setMacAddress( addr ); | 86 | iface->setMacAddress( addr ); |
75 | iface->setUp( true ); | 87 | iface->setUp( true ); |
76 | qDebug( "DEMO: MAC Address now is '%s'", (const char*) iface->macAddress().toString() ); | 88 | qDebug( "DEMO: MAC Address now is '%s'", (const char*) iface->macAddress().toString() ); |
77 | 89 | ||
78 | */ | 90 | */ |
79 | 91 | ||
80 | 92 | ||
81 | } | 93 | } |
82 | ++it; | 94 | ++it; |
83 | } | 95 | } |
84 | 96 | ||
85 | return 0; | 97 | return 0; |
86 | 98 | ||
87 | } | 99 | } |
diff --git a/libopie2/opienet/onetwork.cpp b/libopie2/opienet/onetwork.cpp index dc2e388..be45924 100644 --- a/libopie2/opienet/onetwork.cpp +++ b/libopie2/opienet/onetwork.cpp | |||
@@ -47,64 +47,65 @@ | |||
47 | #include <cerrno> | 47 | #include <cerrno> |
48 | #include <cstring> | 48 | #include <cstring> |
49 | #include <cstdlib> | 49 | #include <cstdlib> |
50 | #include <math.h> | 50 | #include <math.h> |
51 | #include <sys/ioctl.h> | 51 | #include <sys/ioctl.h> |
52 | #include <sys/socket.h> | 52 | #include <sys/socket.h> |
53 | #include <sys/types.h> | 53 | #include <sys/types.h> |
54 | #include <unistd.h> | 54 | #include <unistd.h> |
55 | #include <linux/sockios.h> | 55 | #include <linux/sockios.h> |
56 | #include <net/if_arp.h> | 56 | #include <net/if_arp.h> |
57 | #include <stdarg.h> | 57 | #include <stdarg.h> |
58 | 58 | ||
59 | using namespace std; | 59 | using namespace std; |
60 | 60 | ||
61 | /*====================================================================================== | 61 | /*====================================================================================== |
62 | * ONetwork | 62 | * ONetwork |
63 | *======================================================================================*/ | 63 | *======================================================================================*/ |
64 | 64 | ||
65 | ONetwork* ONetwork::_instance = 0; | 65 | ONetwork* ONetwork::_instance = 0; |
66 | 66 | ||
67 | ONetwork::ONetwork() | 67 | ONetwork::ONetwork() |
68 | { | 68 | { |
69 | qDebug( "ONetwork::ONetwork()" ); | 69 | qDebug( "ONetwork::ONetwork()" ); |
70 | qDebug( "ONetwork: This code has been compiled against Wireless Extensions V%d", WIRELESS_EXT ); | 70 | qDebug( "ONetwork: This code has been compiled against Wireless Extensions V%d", WIRELESS_EXT ); |
71 | synchronize(); | 71 | synchronize(); |
72 | } | 72 | } |
73 | 73 | ||
74 | void ONetwork::synchronize() | 74 | void ONetwork::synchronize() |
75 | { | 75 | { |
76 | // gather available interfaces by inspecting /proc/net/dev | 76 | // gather available interfaces by inspecting /proc/net/dev |
77 | //FIXME: we could use SIOCGIFCONF here, but we aren't interested in virtual (e.g. eth0:0) devices | 77 | //FIXME: we could use SIOCGIFCONF here, but we aren't interested in virtual (e.g. eth0:0) devices |
78 | //FIXME: Use SIOCGIFCONF anway, because we can disable listing of aliased devices | 78 | //FIXME: Use SIOCGIFCONF anway, because we can disable listing of aliased devices |
79 | //FIXME: Best is use SIOCGIFCONF and if this doesn't work (result=-1), then fallback to parsing /proc/net/dev | ||
79 | 80 | ||
80 | _interfaces.clear(); | 81 | _interfaces.clear(); |
81 | QString str; | 82 | QString str; |
82 | QFile f( "/proc/net/dev" ); | 83 | QFile f( "/proc/net/dev" ); |
83 | bool hasFile = f.open( IO_ReadOnly ); | 84 | bool hasFile = f.open( IO_ReadOnly ); |
84 | if ( !hasFile ) | 85 | if ( !hasFile ) |
85 | { | 86 | { |
86 | qDebug( "ONetwork: /proc/net/dev not existing. No network devices available" ); | 87 | qDebug( "ONetwork: /proc/net/dev not existing. No network devices available" ); |
87 | return; | 88 | return; |
88 | } | 89 | } |
89 | QTextStream s( &f ); | 90 | QTextStream s( &f ); |
90 | s.readLine(); | 91 | s.readLine(); |
91 | s.readLine(); | 92 | s.readLine(); |
92 | while ( !s.atEnd() ) | 93 | while ( !s.atEnd() ) |
93 | { | 94 | { |
94 | s >> str; | 95 | s >> str; |
95 | str.truncate( str.find( ':' ) ); | 96 | str.truncate( str.find( ':' ) ); |
96 | qDebug( "ONetwork: found interface '%s'", (const char*) str ); | 97 | qDebug( "ONetwork: found interface '%s'", (const char*) str ); |
97 | ONetworkInterface* iface; | 98 | ONetworkInterface* iface; |
98 | if ( isWirelessInterface( str ) ) | 99 | if ( isWirelessInterface( str ) ) |
99 | { | 100 | { |
100 | iface = new OWirelessNetworkInterface( this, (const char*) str ); | 101 | iface = new OWirelessNetworkInterface( this, (const char*) str ); |
101 | qDebug( "ONetwork: interface '%s' has Wireless Extensions", (const char*) str ); | 102 | qDebug( "ONetwork: interface '%s' has Wireless Extensions", (const char*) str ); |
102 | } | 103 | } |
103 | else | 104 | else |
104 | { | 105 | { |
105 | iface = new ONetworkInterface( this, (const char*) str ); | 106 | iface = new ONetworkInterface( this, (const char*) str ); |
106 | } | 107 | } |
107 | _interfaces.insert( str, iface ); | 108 | _interfaces.insert( str, iface ); |
108 | s.readLine(); | 109 | s.readLine(); |
109 | } | 110 | } |
110 | } | 111 | } |
@@ -159,67 +160,67 @@ ONetworkInterface::ONetworkInterface( QObject* parent, const char* name ) | |||
159 | :QObject( parent, name ), | 160 | :QObject( parent, name ), |
160 | _sfd( socket( AF_INET, SOCK_DGRAM, 0 ) ), _mon( 0 ) | 161 | _sfd( socket( AF_INET, SOCK_DGRAM, 0 ) ), _mon( 0 ) |
161 | { | 162 | { |
162 | qDebug( "ONetworkInterface::ONetworkInterface()" ); | 163 | qDebug( "ONetworkInterface::ONetworkInterface()" ); |
163 | init(); | 164 | init(); |
164 | } | 165 | } |
165 | 166 | ||
166 | 167 | ||
167 | struct ifreq& ONetworkInterface::ifr() const | 168 | struct ifreq& ONetworkInterface::ifr() const |
168 | { | 169 | { |
169 | return _ifr; | 170 | return _ifr; |
170 | } | 171 | } |
171 | 172 | ||
172 | 173 | ||
173 | void ONetworkInterface::init() | 174 | void ONetworkInterface::init() |
174 | { | 175 | { |
175 | qDebug( "ONetworkInterface::init()" ); | 176 | qDebug( "ONetworkInterface::init()" ); |
176 | 177 | ||
177 | memset( &_ifr, 0, sizeof( struct ifreq ) ); | 178 | memset( &_ifr, 0, sizeof( struct ifreq ) ); |
178 | 179 | ||
179 | if ( _sfd == -1 ) | 180 | if ( _sfd == -1 ) |
180 | { | 181 | { |
181 | qDebug( "ONetworkInterface::init(): Warning - can't get socket for device '%s'", name() ); | 182 | qDebug( "ONetworkInterface::init(): Warning - can't get socket for device '%s'", name() ); |
182 | return; | 183 | return; |
183 | } | 184 | } |
184 | } | 185 | } |
185 | 186 | ||
186 | 187 | ||
187 | bool ONetworkInterface::ioctl( int call, struct ifreq& ifreq ) const | 188 | bool ONetworkInterface::ioctl( int call, struct ifreq& ifreq ) const |
188 | { | 189 | { |
189 | int result = ::ioctl( _sfd, call, &ifreq ); | 190 | int result = ::ioctl( _sfd, call, &ifreq ); |
190 | if ( result == -1 ) | 191 | if ( result == -1 ) |
191 | qDebug( "ONetworkInterface::ioctl (%s) call %d - Status: Failed: %d (%s)", name(), call, result, strerror( errno ) ); | 192 | qDebug( "ONetworkInterface::ioctl (%s) call %d (0x%04X) - Status: Failed: %d (%s)", name(), call, call, result, strerror( errno ) ); |
192 | else | 193 | else |
193 | qDebug( "ONetworkInterface::ioctl (%s) call %d - Status: Ok.", name(), call ); | 194 | qDebug( "ONetworkInterface::ioctl (%s) call %d (0x%04X) - Status: Ok.", name(), call, call ); |
194 | return ( result != -1 ); | 195 | return ( result != -1 ); |
195 | } | 196 | } |
196 | 197 | ||
197 | 198 | ||
198 | bool ONetworkInterface::ioctl( int call ) const | 199 | bool ONetworkInterface::ioctl( int call ) const |
199 | { | 200 | { |
200 | strcpy( _ifr.ifr_name, name() ); | 201 | strcpy( _ifr.ifr_name, name() ); |
201 | return ioctl( call, _ifr ); | 202 | return ioctl( call, _ifr ); |
202 | } | 203 | } |
203 | 204 | ||
204 | 205 | ||
205 | bool ONetworkInterface::isLoopback() const | 206 | bool ONetworkInterface::isLoopback() const |
206 | { | 207 | { |
207 | ioctl( SIOCGIFFLAGS ); | 208 | ioctl( SIOCGIFFLAGS ); |
208 | return _ifr.ifr_flags & IFF_LOOPBACK; | 209 | return _ifr.ifr_flags & IFF_LOOPBACK; |
209 | } | 210 | } |
210 | 211 | ||
211 | 212 | ||
212 | bool ONetworkInterface::setUp( bool b ) | 213 | bool ONetworkInterface::setUp( bool b ) |
213 | { | 214 | { |
214 | ioctl( SIOCGIFFLAGS ); | 215 | ioctl( SIOCGIFFLAGS ); |
215 | if ( b ) _ifr.ifr_flags |= IFF_UP; | 216 | if ( b ) _ifr.ifr_flags |= IFF_UP; |
216 | else _ifr.ifr_flags &= (~IFF_UP); | 217 | else _ifr.ifr_flags &= (~IFF_UP); |
217 | return ioctl( SIOCSIFFLAGS ); | 218 | return ioctl( SIOCSIFFLAGS ); |
218 | } | 219 | } |
219 | 220 | ||
220 | 221 | ||
221 | bool ONetworkInterface::isUp() const | 222 | bool ONetworkInterface::isUp() const |
222 | { | 223 | { |
223 | ioctl( SIOCGIFFLAGS ); | 224 | ioctl( SIOCGIFFLAGS ); |
224 | return _ifr.ifr_flags & IFF_UP; | 225 | return _ifr.ifr_flags & IFF_UP; |
225 | } | 226 | } |
@@ -425,182 +426,204 @@ int OChannelHopper::interval() const | |||
425 | { | 426 | { |
426 | return _interval; | 427 | return _interval; |
427 | } | 428 | } |
428 | 429 | ||
429 | 430 | ||
430 | /*====================================================================================== | 431 | /*====================================================================================== |
431 | * OWirelessNetworkInterface | 432 | * OWirelessNetworkInterface |
432 | *======================================================================================*/ | 433 | *======================================================================================*/ |
433 | 434 | ||
434 | OWirelessNetworkInterface::OWirelessNetworkInterface( QObject* parent, const char* name ) | 435 | OWirelessNetworkInterface::OWirelessNetworkInterface( QObject* parent, const char* name ) |
435 | :ONetworkInterface( parent, name ), _hopper( 0 ) | 436 | :ONetworkInterface( parent, name ), _hopper( 0 ) |
436 | { | 437 | { |
437 | qDebug( "OWirelessNetworkInterface::OWirelessNetworkInterface()" ); | 438 | qDebug( "OWirelessNetworkInterface::OWirelessNetworkInterface()" ); |
438 | init(); | 439 | init(); |
439 | } | 440 | } |
440 | 441 | ||
441 | 442 | ||
442 | OWirelessNetworkInterface::~OWirelessNetworkInterface() | 443 | OWirelessNetworkInterface::~OWirelessNetworkInterface() |
443 | { | 444 | { |
444 | } | 445 | } |
445 | 446 | ||
446 | 447 | ||
447 | struct iwreq& OWirelessNetworkInterface::iwr() const | 448 | struct iwreq& OWirelessNetworkInterface::iwr() const |
448 | { | 449 | { |
449 | return _iwr; | 450 | return _iwr; |
450 | } | 451 | } |
451 | 452 | ||
452 | 453 | ||
453 | void OWirelessNetworkInterface::init() | 454 | void OWirelessNetworkInterface::init() |
454 | { | 455 | { |
455 | qDebug( "OWirelessNetworkInterface::init()" ); | 456 | qDebug( "OWirelessNetworkInterface::init()" ); |
456 | memset( &_iwr, 0, sizeof( struct iwreq ) ); | 457 | memset( &_iwr, 0, sizeof( struct iwreq ) ); |
457 | buildChannelList(); | 458 | buildInformation(); |
458 | buildPrivateList(); | 459 | buildPrivateList(); |
460 | dumpInformation(); | ||
461 | } | ||
462 | |||
463 | |||
464 | bool OWirelessNetworkInterface::isAssociated() const | ||
465 | { | ||
466 | //FIXME: handle different modes | ||
467 | return associatedAP() != "44:44:44:44:44:44"; | ||
459 | } | 468 | } |
460 | 469 | ||
461 | 470 | ||
462 | QString OWirelessNetworkInterface::associatedAP() const | 471 | QString OWirelessNetworkInterface::associatedAP() const |
463 | { | 472 | { |
464 | //FIXME: use OMacAddress | 473 | //FIXME: use OMacAddress |
465 | QString mac; | 474 | QString mac; |
466 | 475 | ||
467 | if ( ioctl( SIOCGIWAP ) ) | 476 | if ( ioctl( SIOCGIWAP ) ) |
468 | { | 477 | { |
469 | mac.sprintf( "%.2X:%.2X:%.2X:%.2X:%.2X:%.2X", | 478 | mac.sprintf( "%.2X:%.2X:%.2X:%.2X:%.2X:%.2X", |
470 | _ifr.ifr_hwaddr.sa_data[0]&0xff, | 479 | _ifr.ifr_hwaddr.sa_data[0]&0xff, |
471 | _ifr.ifr_hwaddr.sa_data[1]&0xff, | 480 | _ifr.ifr_hwaddr.sa_data[1]&0xff, |
472 | _ifr.ifr_hwaddr.sa_data[2]&0xff, | 481 | _ifr.ifr_hwaddr.sa_data[2]&0xff, |
473 | _ifr.ifr_hwaddr.sa_data[3]&0xff, | 482 | _ifr.ifr_hwaddr.sa_data[3]&0xff, |
474 | _ifr.ifr_hwaddr.sa_data[4]&0xff, | 483 | _ifr.ifr_hwaddr.sa_data[4]&0xff, |
475 | _ifr.ifr_hwaddr.sa_data[5]&0xff ); | 484 | _ifr.ifr_hwaddr.sa_data[5]&0xff ); |
476 | } | 485 | } |
477 | else | 486 | else |
478 | { | 487 | { |
479 | mac = "<Unknown>"; | 488 | mac = "<Unknown>"; |
480 | } | 489 | } |
481 | return mac; | 490 | return mac; |
482 | } | 491 | } |
483 | 492 | ||
484 | 493 | ||
485 | void OWirelessNetworkInterface::buildChannelList() | 494 | void OWirelessNetworkInterface::buildInformation() |
486 | { | 495 | { |
487 | //ML: If you listen carefully enough, you can hear lots of WLAN drivers suck | 496 | //ML: If you listen carefully enough, you can hear lots of WLAN drivers suck |
488 | //ML: The HostAP drivers need more than sizeof struct_iw range to complete | 497 | //ML: The HostAP drivers need more than sizeof struct_iw range to complete |
489 | //ML: SIOCGIWRANGE otherwise they fail with "Invalid Argument Length". | 498 | //ML: SIOCGIWRANGE otherwise they fail with "Invalid Argument Length". |
490 | //ML: The Wlan-NG drivers on the otherside fail (segfault!) if you allocate | 499 | //ML: The Wlan-NG drivers on the otherside fail (segfault!) if you allocate |
491 | //ML: _too much_ space. This is damn shitty crap *sigh* | 500 | //ML: _too much_ space. This is damn shitty crap *sigh* |
492 | //ML: We allocate a large memory region in RAM and check whether the | 501 | //ML: We allocate a large memory region in RAM and check whether the |
493 | //ML: driver pollutes this extra space. The complaint will be made on stdout, | 502 | //ML: driver pollutes this extra space. The complaint will be made on stdout, |
494 | //ML: so please forward this... | 503 | //ML: so please forward this... |
495 | 504 | ||
496 | struct iwreq wrq; | 505 | struct iwreq wrq; |
497 | int len = sizeof( struct iw_range )*2; | 506 | int len = sizeof( struct iw_range )*2; |
498 | char *buffer = (char*) malloc( len ); | 507 | char *buffer = (char*) malloc( len ); |
499 | //FIXME: Validate if we actually got the memory block | 508 | //FIXME: Validate if we actually got the memory block |
500 | memset( buffer, 0, len ); | 509 | memset( buffer, 0, len ); |
501 | memcpy( wrq.ifr_name, name(), IFNAMSIZ); | 510 | memcpy( wrq.ifr_name, name(), IFNAMSIZ); |
502 | wrq.u.data.pointer = (caddr_t) buffer; | 511 | wrq.u.data.pointer = (caddr_t) buffer; |
503 | wrq.u.data.length = sizeof( struct iw_range ); | 512 | wrq.u.data.length = sizeof( struct iw_range ); |
504 | wrq.u.data.flags = 0; | 513 | wrq.u.data.flags = 0; |
505 | 514 | ||
506 | if ( ::ioctl( _sfd, SIOCGIWRANGE, &wrq ) == -1 ) | 515 | if ( ::ioctl( _sfd, SIOCGIWRANGE, &wrq ) == -1 ) |
507 | { | 516 | { |
508 | qDebug( "OWirelessNetworkInterface::buildChannelList(): SIOCGIWRANGE failed (%s) - defaulting to 11 channels", strerror( errno ) ); | 517 | qDebug( "OWirelessNetworkInterface::buildInformation(): SIOCGIWRANGE failed (%s) - using default values.", strerror( errno ) ); |
509 | _channels.insert( 2412, 1 ); // 2.412 GHz | 518 | _channels.insert( 2412, 1 ); // 2.412 GHz |
510 | _channels.insert( 2417, 2 ); // 2.417 GHz | 519 | _channels.insert( 2417, 2 ); // 2.417 GHz |
511 | _channels.insert( 2422, 3 ); // 2.422 GHz | 520 | _channels.insert( 2422, 3 ); // 2.422 GHz |
512 | _channels.insert( 2427, 4 ); // 2.427 GHz | 521 | _channels.insert( 2427, 4 ); // 2.427 GHz |
513 | _channels.insert( 2432, 5 ); // 2.432 GHz | 522 | _channels.insert( 2432, 5 ); // 2.432 GHz |
514 | _channels.insert( 2437, 6 ); // 2.437 GHz | 523 | _channels.insert( 2437, 6 ); // 2.437 GHz |
515 | _channels.insert( 2442, 7 ); // 2.442 GHz | 524 | _channels.insert( 2442, 7 ); // 2.442 GHz |
516 | _channels.insert( 2447, 8 ); // 2.447 GHz | 525 | _channels.insert( 2447, 8 ); // 2.447 GHz |
517 | _channels.insert( 2452, 9 ); // 2.452 GHz | 526 | _channels.insert( 2452, 9 ); // 2.452 GHz |
518 | _channels.insert( 2457, 10 ); // 2.457 GHz | 527 | _channels.insert( 2457, 10 ); // 2.457 GHz |
519 | _channels.insert( 2462, 11 ); // 2.462 GHz | 528 | _channels.insert( 2462, 11 ); // 2.462 GHz |
529 | |||
530 | memset( &_range, 0, sizeof( struct iw_range ) ); | ||
520 | } | 531 | } |
521 | else | 532 | else |
522 | { | 533 | { |
523 | // <check if the driver overwrites stuff> | 534 | // <check if the driver overwrites stuff> |
524 | int max = 0; | 535 | int max = 0; |
525 | for ( int r = sizeof( struct iw_range ); r < len; r++ ) | 536 | for ( int r = sizeof( struct iw_range ); r < len; r++ ) |
526 | if (buffer[r] != 0) | 537 | if (buffer[r] != 0) |
527 | max = r; | 538 | max = r; |
528 | if (max > 0) | 539 | if (max > 0) |
529 | { | 540 | { |
530 | qWarning( "OWirelessNetworkInterface::buildChannelList(): Driver for wireless interface '%s'" | 541 | qWarning( "OWirelessNetworkInterface::buildInformation(): Driver for wireless interface '%s' sucks!\n" |
531 | "overwrote buffer end with at least %i bytes!\n", name(), max - sizeof( struct iw_range ) ); | 542 | "It overwrote the buffer end with at least %i bytes!\n", name(), max - sizeof( struct iw_range ) ); |
532 | } | 543 | } |
533 | // </check if the driver overwrites stuff> | 544 | // </check if the driver overwrites stuff> |
534 | 545 | ||
535 | struct iw_range range; | 546 | struct iw_range range; |
536 | memcpy( &range, buffer, sizeof range ); | 547 | memcpy( &range, buffer, sizeof range ); |
537 | 548 | ||
538 | qDebug( "OWirelessNetworkInterface::buildChannelList(): Interface %s reported to have %d channels.", name(), range.num_frequency ); | 549 | qDebug( "OWirelessNetworkInterface::buildInformation(): Interface %s reported to have %d channels.", name(), range.num_frequency ); |
539 | for ( int i = 0; i < range.num_frequency; ++i ) | 550 | for ( int i = 0; i < range.num_frequency; ++i ) |
540 | { | 551 | { |
541 | int freq = (int) ( double( range.freq[i].m ) * pow( 10.0, range.freq[i].e ) / 1000000.0 ); | 552 | int freq = (int) ( double( range.freq[i].m ) * pow( 10.0, range.freq[i].e ) / 1000000.0 ); |
542 | _channels.insert( freq, i+1 ); | 553 | _channels.insert( freq, i+1 ); |
543 | } | 554 | } |
544 | } | 555 | } |
545 | 556 | ||
546 | qDebug( "OWirelessNetworkInterface::buildChannelList(): Channel list constructed." ); | 557 | memcpy( &_range, buffer, sizeof( struct iw_range ) ); |
558 | qDebug( "OWirelessNetworkInterface::buildInformation(): Information block constructed." ); | ||
547 | free(buffer); | 559 | free(buffer); |
548 | } | 560 | } |
549 | 561 | ||
550 | 562 | ||
551 | void OWirelessNetworkInterface::buildPrivateList() | 563 | void OWirelessNetworkInterface::buildPrivateList() |
552 | { | 564 | { |
553 | qDebug( "OWirelessNetworkInterface::buildPrivateList()" ); | 565 | qDebug( "OWirelessNetworkInterface::buildPrivateList()" ); |
554 | 566 | ||
555 | struct iw_priv_args priv[IW_MAX_PRIV_DEF]; | 567 | struct iw_priv_args priv[IW_MAX_PRIV_DEF]; |
556 | 568 | ||
557 | _iwr.u.data.pointer = (char*) &priv; | 569 | _iwr.u.data.pointer = (char*) &priv; |
558 | _iwr.u.data.length = IW_MAX_PRIV_DEF; // length in terms of number of (sizeof iw_priv_args), not (sizeof iw_priv_args) itself | 570 | _iwr.u.data.length = IW_MAX_PRIV_DEF; // length in terms of number of (sizeof iw_priv_args), not (sizeof iw_priv_args) itself |
559 | _iwr.u.data.flags = 0; | 571 | _iwr.u.data.flags = 0; |
560 | 572 | ||
561 | if ( !wioctl( SIOCGIWPRIV ) ) | 573 | if ( !wioctl( SIOCGIWPRIV ) ) |
562 | { | 574 | { |
563 | qDebug( "OWirelessNetworkInterface::buildPrivateList(): SIOCGIWPRIV failed (%s) - can't get private ioctl information.", strerror( errno ) ); | 575 | qDebug( "OWirelessNetworkInterface::buildPrivateList(): SIOCGIWPRIV failed (%s) - can't get private ioctl information.", strerror( errno ) ); |
564 | return; | 576 | return; |
565 | } | 577 | } |
566 | 578 | ||
567 | for ( int i = 0; i < _iwr.u.data.length; ++i ) | 579 | for ( int i = 0; i < _iwr.u.data.length; ++i ) |
568 | { | 580 | { |
569 | new OPrivateIOCTL( this, priv[i].name, priv[i].cmd, priv[i].get_args, priv[i].set_args ); | 581 | new OPrivateIOCTL( this, priv[i].name, priv[i].cmd, priv[i].get_args, priv[i].set_args ); |
570 | } | 582 | } |
571 | qDebug( "OWirelessNetworkInterface::buildPrivateList(): Private IOCTL list constructed." ); | 583 | qDebug( "OWirelessNetworkInterface::buildPrivateList(): Private IOCTL list constructed." ); |
572 | } | 584 | } |
573 | 585 | ||
574 | 586 | ||
587 | void OWirelessNetworkInterface::dumpInformation() const | ||
588 | { | ||
589 | qDebug( "OWirelessNetworkInterface::() -------------- dumping information block ----------------" ); | ||
590 | |||
591 | qDebug( " - driver's idea of maximum throughput is %d bps = %d byte/s = %d Kb/s = %f.2 Mb/s", _range.throughput, _range.throughput / 8, _range.throughput / 8 / 1024, float( _range.throughput ) / 8.0 / 1024.0 / 1024.0 ); | ||
592 | qDebug( " - driver for '%s' has been compiled against WE V%d (source=V%d)", name(), _range.we_version_compiled, _range.we_version_source ); | ||
593 | |||
594 | qDebug( "OWirelessNetworkInterface::() ---------------------------------------------------------" ); | ||
595 | } | ||
596 | |||
597 | |||
575 | int OWirelessNetworkInterface::channel() const | 598 | int OWirelessNetworkInterface::channel() const |
576 | { | 599 | { |
577 | //FIXME: When monitoring enabled, then use it | 600 | //FIXME: When monitoring enabled, then use it |
578 | //FIXME: to gather the current RF channel | 601 | //FIXME: to gather the current RF channel |
579 | //FIXME: Until then, get active channel from hopper. | 602 | //FIXME: Until then, get active channel from hopper. |
580 | if ( _hopper && _hopper->isActive() ) | 603 | if ( _hopper && _hopper->isActive() ) |
581 | return _hopper->channel(); | 604 | return _hopper->channel(); |
582 | 605 | ||
583 | if ( !wioctl( SIOCGIWFREQ ) ) | 606 | if ( !wioctl( SIOCGIWFREQ ) ) |
584 | { | 607 | { |
585 | return -1; | 608 | return -1; |
586 | } | 609 | } |
587 | else | 610 | else |
588 | { | 611 | { |
589 | return _channels[ static_cast<int>(double( _iwr.u.freq.m ) * pow( 10.0, _iwr.u.freq.e ) / 1000000) ]; | 612 | return _channels[ static_cast<int>(double( _iwr.u.freq.m ) * pow( 10.0, _iwr.u.freq.e ) / 1000000) ]; |
590 | } | 613 | } |
591 | } | 614 | } |
592 | 615 | ||
593 | 616 | ||
594 | void OWirelessNetworkInterface::setChannel( int c ) const | 617 | void OWirelessNetworkInterface::setChannel( int c ) const |
595 | { | 618 | { |
596 | if ( !c ) | 619 | if ( !c ) |
597 | { | 620 | { |
598 | qWarning( "OWirelessNetworkInterface::setChannel( 0 ) called - fix your application!" ); | 621 | qWarning( "OWirelessNetworkInterface::setChannel( 0 ) called - fix your application!" ); |
599 | return; | 622 | return; |
600 | } | 623 | } |
601 | 624 | ||
602 | if ( !_mon ) | 625 | if ( !_mon ) |
603 | { | 626 | { |
604 | memset( &_iwr, 0, sizeof( struct iwreq ) ); | 627 | memset( &_iwr, 0, sizeof( struct iwreq ) ); |
605 | _iwr.u.freq.m = c; | 628 | _iwr.u.freq.m = c; |
606 | _iwr.u.freq.e = 0; | 629 | _iwr.u.freq.e = 0; |
@@ -632,112 +655,109 @@ int OWirelessNetworkInterface::channels() const | |||
632 | } | 655 | } |
633 | 656 | ||
634 | 657 | ||
635 | void OWirelessNetworkInterface::setChannelHopping( int interval ) | 658 | void OWirelessNetworkInterface::setChannelHopping( int interval ) |
636 | { | 659 | { |
637 | if ( !_hopper ) _hopper = new OChannelHopper( this ); | 660 | if ( !_hopper ) _hopper = new OChannelHopper( this ); |
638 | _hopper->setInterval( interval ); | 661 | _hopper->setInterval( interval ); |
639 | //FIXME: When and by whom will the channel hopper be deleted? | 662 | //FIXME: When and by whom will the channel hopper be deleted? |
640 | //TODO: rely on QObject hierarchy | 663 | //TODO: rely on QObject hierarchy |
641 | } | 664 | } |
642 | 665 | ||
643 | 666 | ||
644 | int OWirelessNetworkInterface::channelHopping() const | 667 | int OWirelessNetworkInterface::channelHopping() const |
645 | { | 668 | { |
646 | return _hopper->interval(); | 669 | return _hopper->interval(); |
647 | } | 670 | } |
648 | 671 | ||
649 | 672 | ||
650 | OChannelHopper* OWirelessNetworkInterface::channelHopper() const | 673 | OChannelHopper* OWirelessNetworkInterface::channelHopper() const |
651 | { | 674 | { |
652 | return _hopper; | 675 | return _hopper; |
653 | } | 676 | } |
654 | 677 | ||
655 | 678 | ||
656 | void OWirelessNetworkInterface::setMode( const QString& mode ) | 679 | void OWirelessNetworkInterface::setMode( const QString& mode ) |
657 | { | 680 | { |
658 | if ( mode == "auto" ) _iwr.u.mode = IW_MODE_AUTO; | 681 | if ( mode == "auto" ) _iwr.u.mode = IW_MODE_AUTO; |
659 | else if ( mode == "adhoc" ) _iwr.u.mode = IW_MODE_ADHOC; | 682 | else if ( mode == "adhoc" ) _iwr.u.mode = IW_MODE_ADHOC; |
660 | else if ( mode == "managed" ) _iwr.u.mode = IW_MODE_INFRA; | 683 | else if ( mode == "managed" ) _iwr.u.mode = IW_MODE_INFRA; |
661 | else if ( mode == "master" ) _iwr.u.mode = IW_MODE_MASTER; | 684 | else if ( mode == "master" ) _iwr.u.mode = IW_MODE_MASTER; |
662 | else if ( mode == "repeater" ) _iwr.u.mode = IW_MODE_REPEAT; | 685 | else if ( mode == "repeater" ) _iwr.u.mode = IW_MODE_REPEAT; |
663 | else if ( mode == "secondary" ) _iwr.u.mode = IW_MODE_SECOND; | 686 | else if ( mode == "secondary" ) _iwr.u.mode = IW_MODE_SECOND; |
664 | #if WIRELESS_EXT > 14 | ||
665 | else if ( mode == "monitor" ) _iwr.u.mode = IW_MODE_MONITOR; | 687 | else if ( mode == "monitor" ) _iwr.u.mode = IW_MODE_MONITOR; |
666 | #endif | ||
667 | else | 688 | else |
668 | { | 689 | { |
669 | qDebug( "ONetwork: Warning! Invalid IEEE 802.11 mode '%s' specified.", (const char*) mode ); | 690 | qDebug( "ONetwork: Warning! Invalid IEEE 802.11 mode '%s' specified.", (const char*) mode ); |
670 | return; | 691 | return; |
671 | } | 692 | } |
672 | wioctl( SIOCSIWMODE ); | 693 | wioctl( SIOCSIWMODE ); |
673 | } | 694 | } |
674 | 695 | ||
675 | 696 | ||
676 | QString OWirelessNetworkInterface::mode() const | 697 | QString OWirelessNetworkInterface::mode() const |
677 | { | 698 | { |
678 | if ( !wioctl( SIOCGIWMODE ) ) | 699 | if ( !wioctl( SIOCGIWMODE ) ) |
679 | { | 700 | { |
680 | return "<unknown>"; | 701 | return "<unknown>"; |
681 | } | 702 | } |
682 | switch ( _iwr.u.mode ) | 703 | switch ( _iwr.u.mode ) |
683 | { | 704 | { |
684 | case IW_MODE_AUTO: return "auto"; | 705 | case IW_MODE_AUTO: return "auto"; |
685 | case IW_MODE_ADHOC: return "adhoc"; | 706 | case IW_MODE_ADHOC: return "adhoc"; |
686 | case IW_MODE_INFRA: return "managed"; | 707 | case IW_MODE_INFRA: return "managed"; |
687 | case IW_MODE_MASTER: return "master"; | 708 | case IW_MODE_MASTER: return "master"; |
688 | case IW_MODE_REPEAT: return "repeater"; | 709 | case IW_MODE_REPEAT: return "repeater"; |
689 | case IW_MODE_SECOND: return "secondary"; | 710 | case IW_MODE_SECOND: return "secondary"; |
690 | #if WIRELESS_EXT > 14 | ||
691 | case IW_MODE_MONITOR: return "monitor"; | 711 | case IW_MODE_MONITOR: return "monitor"; |
692 | #endif | ||
693 | default: assert( 0 ); // shouldn't happen | 712 | default: assert( 0 ); // shouldn't happen |
694 | } | 713 | } |
695 | } | 714 | } |
696 | 715 | ||
697 | 716 | ||
698 | void OWirelessNetworkInterface::setMonitorMode( bool b ) | 717 | void OWirelessNetworkInterface::setMonitorMode( bool b ) |
699 | { | 718 | { |
700 | if ( _mon ) | 719 | if ( _mon ) |
701 | _mon->setEnabled( b ); | 720 | _mon->setEnabled( b ); |
702 | else | 721 | else |
703 | qDebug( "ONetwork(): can't switch monitor mode without installed monitoring interface" ); | 722 | qDebug( "ONetwork(): can't switch monitor mode without installed monitoring interface" ); |
704 | } | 723 | } |
705 | 724 | ||
706 | 725 | ||
707 | bool OWirelessNetworkInterface::monitorMode() const | 726 | bool OWirelessNetworkInterface::monitorMode() const |
708 | { | 727 | { |
709 | qDebug( "dataLinkType = %d", dataLinkType() ); | 728 | qDebug( "dataLinkType = %d", dataLinkType() ); |
710 | return ( dataLinkType() == ARPHRD_IEEE80211 || dataLinkType() == 802 ); | 729 | return ( dataLinkType() == ARPHRD_IEEE80211 || dataLinkType() == 802 ); |
711 | // 802 is the header type for PRISM - Linux support for this is pending... | 730 | //FIXME: 802 is the header type for PRISM - Linux support for this is pending... |
731 | //FIXME: What is 119, by the way? | ||
712 | } | 732 | } |
713 | 733 | ||
714 | 734 | ||
715 | void OWirelessNetworkInterface::setNickName( const QString& nickname ) | 735 | void OWirelessNetworkInterface::setNickName( const QString& nickname ) |
716 | { | 736 | { |
717 | _iwr.u.essid.pointer = const_cast<char*>( (const char*) nickname ); | 737 | _iwr.u.essid.pointer = const_cast<char*>( (const char*) nickname ); |
718 | _iwr.u.essid.length = nickname.length(); | 738 | _iwr.u.essid.length = nickname.length(); |
719 | wioctl( SIOCSIWNICKN ); | 739 | wioctl( SIOCSIWNICKN ); |
720 | } | 740 | } |
721 | 741 | ||
722 | 742 | ||
723 | QString OWirelessNetworkInterface::nickName() const | 743 | QString OWirelessNetworkInterface::nickName() const |
724 | { | 744 | { |
725 | char str[IW_ESSID_MAX_SIZE]; | 745 | char str[IW_ESSID_MAX_SIZE]; |
726 | _iwr.u.data.pointer = &str[0]; | 746 | _iwr.u.data.pointer = &str[0]; |
727 | _iwr.u.data.length = IW_ESSID_MAX_SIZE; | 747 | _iwr.u.data.length = IW_ESSID_MAX_SIZE; |
728 | if ( !wioctl( SIOCGIWNICKN ) ) | 748 | if ( !wioctl( SIOCGIWNICKN ) ) |
729 | { | 749 | { |
730 | return "<unknown>"; | 750 | return "<unknown>"; |
731 | } | 751 | } |
732 | else | 752 | else |
733 | { | 753 | { |
734 | str[_iwr.u.data.length] = 0x0; // some drivers (e.g. wlan-ng) don't zero-terminate the string | 754 | str[_iwr.u.data.length] = 0x0; // some drivers (e.g. wlan-ng) don't zero-terminate the string |
735 | return str; | 755 | return str; |
736 | } | 756 | } |
737 | } | 757 | } |
738 | 758 | ||
739 | 759 | ||
740 | void OWirelessNetworkInterface::setPrivate( const QString& call, int numargs, ... ) | 760 | void OWirelessNetworkInterface::setPrivate( const QString& call, int numargs, ... ) |
741 | { | 761 | { |
742 | OPrivateIOCTL* priv = static_cast<OPrivateIOCTL*>( child( (const char*) call ) ); | 762 | OPrivateIOCTL* priv = static_cast<OPrivateIOCTL*>( child( (const char*) call ) ); |
743 | if ( !priv ) | 763 | if ( !priv ) |
@@ -771,71 +791,132 @@ void OWirelessNetworkInterface::getPrivate( const QString& call ) | |||
771 | 791 | ||
772 | 792 | ||
773 | bool OWirelessNetworkInterface::hasPrivate( const QString& call ) | 793 | bool OWirelessNetworkInterface::hasPrivate( const QString& call ) |
774 | { | 794 | { |
775 | return child( (const char*) call ); | 795 | return child( (const char*) call ); |
776 | } | 796 | } |
777 | 797 | ||
778 | 798 | ||
779 | QString OWirelessNetworkInterface::SSID() const | 799 | QString OWirelessNetworkInterface::SSID() const |
780 | { | 800 | { |
781 | char str[IW_ESSID_MAX_SIZE]; | 801 | char str[IW_ESSID_MAX_SIZE]; |
782 | _iwr.u.essid.pointer = &str[0]; | 802 | _iwr.u.essid.pointer = &str[0]; |
783 | _iwr.u.essid.length = IW_ESSID_MAX_SIZE; | 803 | _iwr.u.essid.length = IW_ESSID_MAX_SIZE; |
784 | if ( !wioctl( SIOCGIWESSID ) ) | 804 | if ( !wioctl( SIOCGIWESSID ) ) |
785 | { | 805 | { |
786 | return "<unknown>"; | 806 | return "<unknown>"; |
787 | } | 807 | } |
788 | else | 808 | else |
789 | { | 809 | { |
790 | return str; | 810 | return str; |
791 | } | 811 | } |
792 | } | 812 | } |
793 | 813 | ||
794 | 814 | ||
795 | void OWirelessNetworkInterface::setSSID( const QString& ssid ) | 815 | void OWirelessNetworkInterface::setSSID( const QString& ssid ) |
796 | { | 816 | { |
797 | _iwr.u.essid.pointer = const_cast<char*>( (const char*) ssid ); | 817 | _iwr.u.essid.pointer = const_cast<char*>( (const char*) ssid ); |
798 | _iwr.u.essid.length = ssid.length(); | 818 | _iwr.u.essid.length = ssid.length(); |
799 | wioctl( SIOCSIWESSID ); | 819 | wioctl( SIOCSIWESSID ); |
800 | } | 820 | } |
801 | 821 | ||
802 | 822 | ||
823 | int OWirelessNetworkInterface::scanNetwork() | ||
824 | { | ||
825 | _iwr.u.param.flags = IW_SCAN_DEFAULT; | ||
826 | _iwr.u.param.value = 0; | ||
827 | if ( !wioctl( SIOCSIWSCAN ) ) | ||
828 | { | ||
829 | return -1; | ||
830 | } | ||
831 | |||
832 | int timeout = 1000000; | ||
833 | |||
834 | qDebug( "ONetworkInterface::scanNetwork() - scan started." ); | ||
835 | |||
836 | bool results = false; | ||
837 | struct timeval tv; | ||
838 | tv.tv_sec = 0; | ||
839 | tv.tv_usec = 250000; // initial timeout ~ 250ms | ||
840 | char buffer[IW_SCAN_MAX_DATA]; | ||
841 | |||
842 | while ( !results && timeout > 0 ) | ||
843 | { | ||
844 | timeout -= tv.tv_usec; | ||
845 | select( 0, 0, 0, 0, &tv ); | ||
846 | |||
847 | _iwr.u.data.pointer = &buffer[0]; | ||
848 | _iwr.u.data.flags = 0; | ||
849 | _iwr.u.data.length = sizeof buffer; | ||
850 | if ( wioctl( SIOCGIWSCAN ) ) | ||
851 | { | ||
852 | results = true; | ||
853 | continue; | ||
854 | } | ||
855 | else if ( errno == EAGAIN) | ||
856 | { | ||
857 | qDebug( "ONetworkInterface::scanNetwork() - scan in progress..." ); | ||
858 | #if 0 | ||
859 | if ( qApp ) | ||
860 | { | ||
861 | qApp->processEvents( 100 ); | ||
862 | continue; | ||
863 | } | ||
864 | #endif | ||
865 | tv.tv_sec = 0; | ||
866 | tv.tv_usec = 100000; | ||
867 | continue; | ||
868 | } | ||
869 | } | ||
870 | |||
871 | qDebug( "ONetworkInterface::scanNetwork() - scan finished." ); | ||
872 | |||
873 | if ( results ) | ||
874 | { | ||
875 | qDebug( " - results are in!" ); | ||
876 | } | ||
877 | else | ||
878 | { | ||
879 | qDebug( " - no results :(" ); | ||
880 | } | ||
881 | } | ||
882 | |||
883 | |||
803 | bool OWirelessNetworkInterface::wioctl( int call, struct iwreq& iwreq ) const | 884 | bool OWirelessNetworkInterface::wioctl( int call, struct iwreq& iwreq ) const |
804 | { | 885 | { |
805 | int result = ::ioctl( _sfd, call, &iwreq ); | 886 | int result = ::ioctl( _sfd, call, &iwreq ); |
806 | if ( result == -1 ) | 887 | if ( result == -1 ) |
807 | qDebug( "ONetworkInterface::wioctl (%s) call %d - Status: Failed: %d (%s)", name(), call, result, strerror( errno ) ); | 888 | qDebug( "ONetworkInterface::wioctl (%s) call %d (0x%04X) - Status: Failed: %d (%s)", name(), call, call, result, strerror( errno ) ); |
808 | else | 889 | else |
809 | qDebug( "ONetworkInterface::wioctl (%s) call %d - Status: Ok.", name(), call ); | 890 | qDebug( "ONetworkInterface::wioctl (%s) call %d (0x%04X) - Status: Ok.", name(), call, call ); |
810 | return ( result != -1 ); | 891 | return ( result != -1 ); |
811 | } | 892 | } |
812 | 893 | ||
813 | 894 | ||
814 | bool OWirelessNetworkInterface::wioctl( int call ) const | 895 | bool OWirelessNetworkInterface::wioctl( int call ) const |
815 | { | 896 | { |
816 | strcpy( _iwr.ifr_name, name() ); | 897 | strcpy( _iwr.ifr_name, name() ); |
817 | return wioctl( call, _iwr ); | 898 | return wioctl( call, _iwr ); |
818 | } | 899 | } |
819 | 900 | ||
820 | 901 | ||
821 | /*====================================================================================== | 902 | /*====================================================================================== |
822 | * OMonitoringInterface | 903 | * OMonitoringInterface |
823 | *======================================================================================*/ | 904 | *======================================================================================*/ |
824 | 905 | ||
825 | OMonitoringInterface::OMonitoringInterface( ONetworkInterface* iface, bool prismHeader ) | 906 | OMonitoringInterface::OMonitoringInterface( ONetworkInterface* iface, bool prismHeader ) |
826 | :_if( static_cast<OWirelessNetworkInterface*>( iface ) ), _prismHeader( prismHeader ) | 907 | :_if( static_cast<OWirelessNetworkInterface*>( iface ) ), _prismHeader( prismHeader ) |
827 | { | 908 | { |
828 | } | 909 | } |
829 | 910 | ||
830 | 911 | ||
831 | OMonitoringInterface::~OMonitoringInterface() | 912 | OMonitoringInterface::~OMonitoringInterface() |
832 | { | 913 | { |
833 | } | 914 | } |
834 | 915 | ||
835 | 916 | ||
836 | void OMonitoringInterface::setChannel( int c ) | 917 | void OMonitoringInterface::setChannel( int c ) |
837 | { | 918 | { |
838 | // use standard WE channel switching protocol | 919 | // use standard WE channel switching protocol |
839 | memset( &_if->_iwr, 0, sizeof( struct iwreq ) ); | 920 | memset( &_if->_iwr, 0, sizeof( struct iwreq ) ); |
840 | _if->_iwr.u.freq.m = c; | 921 | _if->_iwr.u.freq.m = c; |
841 | _if->_iwr.u.freq.e = 0; | 922 | _if->_iwr.u.freq.e = 0; |
diff --git a/libopie2/opienet/onetwork.h b/libopie2/opienet/onetwork.h index b170ea2..e1545dd 100644 --- a/libopie2/opienet/onetwork.h +++ b/libopie2/opienet/onetwork.h | |||
@@ -332,197 +332,212 @@ class OWirelessNetworkInterface : public ONetworkInterface | |||
332 | * @returns the current radio frequency (in MHz). | 332 | * @returns the current radio frequency (in MHz). |
333 | */ | 333 | */ |
334 | virtual double frequency() const; | 334 | virtual double frequency() const; |
335 | /** | 335 | /** |
336 | * @returns the number of radio frequency channels for the | 336 | * @returns the number of radio frequency channels for the |
337 | * corresponding wireless network device. | 337 | * corresponding wireless network device. |
338 | * @note European devices usually have 14 channels, while American typically feature 11 channels. | 338 | * @note European devices usually have 14 channels, while American typically feature 11 channels. |
339 | */ | 339 | */ |
340 | virtual int channels() const; | 340 | virtual int channels() const; |
341 | /** | 341 | /** |
342 | * Set the IEEE 802.11 operation @a mode. | 342 | * Set the IEEE 802.11 operation @a mode. |
343 | * Valid values are <ul><li>adhoc<li>managed<li>monitor<li>master | 343 | * Valid values are <ul><li>adhoc<li>managed<li>monitor<li>master |
344 | * @warning Not all drivers support the all modes. | 344 | * @warning Not all drivers support the all modes. |
345 | * @note You might have to change the SSID to get the operation mode change into effect. | 345 | * @note You might have to change the SSID to get the operation mode change into effect. |
346 | */ | 346 | */ |
347 | virtual void setMode( const QString& mode ); | 347 | virtual void setMode( const QString& mode ); |
348 | /** | 348 | /** |
349 | * @returns the current IEEE 802.11 operation mode. | 349 | * @returns the current IEEE 802.11 operation mode. |
350 | * Possible values are <ul><li>adhoc<li>managed<li>monitor<li>master or <li>unknown | 350 | * Possible values are <ul><li>adhoc<li>managed<li>monitor<li>master or <li>unknown |
351 | */ | 351 | */ |
352 | virtual QString mode() const; | 352 | virtual QString mode() const; |
353 | /** | 353 | /** |
354 | * Setting the monitor mode on a wireless network interface enables | 354 | * Setting the monitor mode on a wireless network interface enables |
355 | * listening to IEEE 802.11 data and management frames which normally | 355 | * listening to IEEE 802.11 data and management frames which normally |
356 | * are handled by the device firmware. This can be used to detect | 356 | * are handled by the device firmware. This can be used to detect |
357 | * other wireless network devices, e.g. Access Points or Ad-hoc stations. | 357 | * other wireless network devices, e.g. Access Points or Ad-hoc stations. |
358 | * @warning Standard wireless network drives don't support the monitor mode. | 358 | * @warning Standard wireless network drives don't support the monitor mode. |
359 | * @warning You need a patched driver for this to work. | 359 | * @warning You need a patched driver for this to work. |
360 | * @note Enabling the monitor mode is highly driver dependent and requires | 360 | * @note Enabling the monitor mode is highly driver dependent and requires |
361 | * the proper @ref OMonitoringInterface to be associated with the interface. | 361 | * the proper @ref OMonitoringInterface to be associated with the interface. |
362 | * @see OMonitoringInterface | 362 | * @see OMonitoringInterface |
363 | */ | 363 | */ |
364 | virtual void setMonitorMode( bool ); //FIXME: ==> setMode( "monitor" ); | 364 | virtual void setMonitorMode( bool ); //FIXME: ==> setMode( "monitor" ); Use IW_MONITOR first, if this doesn't work, then use iwpriv! |
365 | /** | 365 | /** |
366 | * @returns true if the device is listening in IEEE 802.11 monitor mode | 366 | * @returns true if the device is listening in IEEE 802.11 monitor mode |
367 | */ | 367 | */ |
368 | virtual bool monitorMode() const; //FIXME: ==> mode() | 368 | virtual bool monitorMode() const; //FIXME: ==> mode() |
369 | /** | 369 | /** |
370 | * Set the channel hopping @a interval. An @a interval of 0 disables channel hopping. | 370 | * Set the channel hopping @a interval. An @a interval of 0 disables channel hopping. |
371 | * @see OChannelHopper | 371 | * @see OChannelHopper |
372 | */ | 372 | */ |
373 | virtual void setChannelHopping( int interval = 0 ); | 373 | virtual void setChannelHopping( int interval = 0 ); |
374 | /** | 374 | /** |
375 | * @returns the channel hopping interval or 0, if channel hopping is disabled. | 375 | * @returns the channel hopping interval or 0, if channel hopping is disabled. |
376 | */ | 376 | */ |
377 | virtual int channelHopping() const; | 377 | virtual int channelHopping() const; |
378 | /** | 378 | /** |
379 | * @returns the @ref OChannelHopper of this interface or 0, if channel hopping has not been activated before | 379 | * @returns the @ref OChannelHopper of this interface or 0, if channel hopping has not been activated before |
380 | */ | 380 | */ |
381 | virtual OChannelHopper* channelHopper() const; | 381 | virtual OChannelHopper* channelHopper() const; |
382 | /** | 382 | /** |
383 | * Set the station @a nickname. | 383 | * Set the station @a nickname. |
384 | */ | 384 | */ |
385 | virtual void setNickName( const QString& nickname ); | 385 | virtual void setNickName( const QString& nickname ); |
386 | /** | 386 | /** |
387 | * @returns the current station nickname. | 387 | * @returns the current station nickname. |
388 | */ | 388 | */ |
389 | virtual QString nickName() const; | 389 | virtual QString nickName() const; |
390 | /** | 390 | /** |
391 | * Invoke the private IOCTL @a command with a @number of parameters on the network interface. | 391 | * Invoke the private IOCTL @a command with a @number of parameters on the network interface. |
392 | * @see OPrivateIOCTL | 392 | * @see OPrivateIOCTL |
393 | */ | 393 | */ |
394 | virtual void setPrivate( const QString& command, int number, ... ); | 394 | virtual void setPrivate( const QString& command, int number, ... ); |
395 | /** | 395 | /** |
396 | * @returns true if the interface is featuring the private IOCTL @command. | 396 | * @returns true if the interface is featuring the private IOCTL @command. |
397 | */ | 397 | */ |
398 | virtual bool hasPrivate( const QString& command ); | 398 | virtual bool hasPrivate( const QString& command ); |
399 | virtual void getPrivate( const QString& command ); //FIXME: Implement and document this | 399 | virtual void getPrivate( const QString& command ); //FIXME: Implement and document this |
400 | |||
401 | virtual bool isAssociated() const {}; //FIXME: Implement and document this | ||
402 | /** | 400 | /** |
403 | * @returns the MAC address of the Access Point if the | 401 | * @returns true if the interface is associated to an access point |
404 | * device is in infrastructure mode. @returns a (more or less random) CELL | 402 | * @note: This information is only valid if the interface is in managed mode. |
405 | * address if the device is in adhoc mode. | 403 | */ |
404 | virtual bool isAssociated() const; | ||
405 | /** | ||
406 | * @returns the MAC address of the Access Point if the device is in infrastructure mode. | ||
407 | * @returns a (more or less random) cell ID address if the device is in adhoc mode. | ||
406 | */ | 408 | */ |
407 | virtual QString associatedAP() const; | 409 | virtual QString associatedAP() const; |
408 | /** | 410 | /** |
409 | * Set the @a ssid (Service Set ID) string. This is used to decide | 411 | * Set the @a ssid (Service Set ID) string. This is used to decide |
410 | * which network to associate with (use "any" to let the driver decide). | 412 | * which network to associate with (use "any" to let the driver decide). |
411 | */ | 413 | */ |
412 | virtual void setSSID( const QString& ssid ); | 414 | virtual void setSSID( const QString& ssid ); |
413 | /** | 415 | /** |
414 | * @returns the current SSID (Service Set ID). | 416 | * @returns the current SSID (Service Set ID). |
415 | */ | 417 | */ |
416 | virtual QString SSID() const; | 418 | virtual QString SSID() const; |
419 | /** | ||
420 | * Perform scanning the wireless network neighbourhood. | ||
421 | * @note: UNSTABLE API - UNDER CONSTRUCTION - DON'T USE! | ||
422 | */ | ||
423 | virtual int scanNetwork(); | ||
417 | 424 | ||
418 | protected: | 425 | protected: |
419 | void buildChannelList(); | 426 | void buildInformation(); |
420 | void buildPrivateList(); | 427 | void buildPrivateList(); |
428 | void dumpInformation() const; | ||
421 | virtual void init(); | 429 | virtual void init(); |
422 | struct iwreq& iwr() const; | 430 | struct iwreq& iwr() const; |
423 | bool wioctl( int call ) const; | 431 | bool wioctl( int call ) const; |
424 | bool wioctl( int call, struct iwreq& ) const; | 432 | bool wioctl( int call, struct iwreq& ) const; |
425 | 433 | ||
426 | protected: | 434 | protected: |
427 | mutable struct iwreq _iwr; | 435 | mutable struct iwreq _iwr; |
428 | QMap<int,int> _channels; | 436 | QMap<int,int> _channels; |
437 | struct iw_range _range; | ||
429 | 438 | ||
430 | private: | 439 | private: |
431 | OChannelHopper* _hopper; | 440 | OChannelHopper* _hopper; |
432 | }; | 441 | }; |
433 | 442 | ||
434 | 443 | ||
435 | /*====================================================================================== | 444 | /*====================================================================================== |
436 | * OMonitoringInterface | 445 | * OMonitoringInterface |
437 | *======================================================================================*/ | 446 | *======================================================================================*/ |
438 | 447 | ||
439 | 448 | ||
440 | class OMonitoringInterface | 449 | class OMonitoringInterface |
441 | { | 450 | { |
442 | public: | 451 | public: |
443 | OMonitoringInterface(); | 452 | OMonitoringInterface(); |
444 | OMonitoringInterface( ONetworkInterface*, bool _prismHeader ); | 453 | OMonitoringInterface( ONetworkInterface*, bool _prismHeader ); |
445 | virtual ~OMonitoringInterface(); | 454 | virtual ~OMonitoringInterface(); |
446 | 455 | ||
447 | public: | 456 | public: |
448 | virtual void setEnabled( bool ); | 457 | virtual void setEnabled( bool ); |
449 | virtual bool enabled() const; | 458 | virtual bool enabled() const; |
450 | virtual void setChannel( int ); | 459 | virtual void setChannel( int ); |
451 | 460 | ||
452 | virtual QString name() const = 0; | 461 | virtual QString name() const = 0; |
453 | 462 | ||
454 | protected: | 463 | protected: |
455 | OWirelessNetworkInterface* _if; | 464 | OWirelessNetworkInterface* _if; |
456 | bool _prismHeader; | 465 | bool _prismHeader; |
457 | 466 | ||
458 | }; | 467 | }; |
459 | 468 | ||
460 | 469 | ||
461 | /*====================================================================================== | 470 | /*====================================================================================== |
462 | * OCiscoMonitoring | 471 | * OCiscoMonitoring |
463 | *======================================================================================*/ | 472 | *======================================================================================*/ |
464 | 473 | ||
465 | 474 | ||
466 | class OCiscoMonitoringInterface : public OMonitoringInterface | 475 | class OCiscoMonitoringInterface : public OMonitoringInterface |
467 | { | 476 | { |
468 | public: | 477 | public: |
469 | OCiscoMonitoringInterface( ONetworkInterface*, bool _prismHeader ); | 478 | OCiscoMonitoringInterface( ONetworkInterface*, bool _prismHeader ); |
470 | virtual ~OCiscoMonitoringInterface(); | 479 | virtual ~OCiscoMonitoringInterface(); |
471 | 480 | ||
472 | virtual void setEnabled( bool ); | 481 | virtual void setEnabled( bool ); |
473 | virtual QString name() const; | 482 | virtual QString name() const; |
474 | virtual void setChannel( int ); | 483 | virtual void setChannel( int ); |
475 | 484 | ||
476 | }; | 485 | }; |
477 | 486 | ||
487 | |||
478 | /*====================================================================================== | 488 | /*====================================================================================== |
479 | * OWlanNGMonitoringInterface | 489 | * OWlanNGMonitoringInterface |
480 | *======================================================================================*/ | 490 | *======================================================================================*/ |
481 | 491 | ||
492 | |||
482 | class OWlanNGMonitoringInterface : public OMonitoringInterface | 493 | class OWlanNGMonitoringInterface : public OMonitoringInterface |
483 | { | 494 | { |
484 | public: | 495 | public: |
485 | OWlanNGMonitoringInterface( ONetworkInterface*, bool _prismHeader ); | 496 | OWlanNGMonitoringInterface( ONetworkInterface*, bool _prismHeader ); |
486 | virtual ~OWlanNGMonitoringInterface(); | 497 | virtual ~OWlanNGMonitoringInterface(); |
487 | 498 | ||
488 | public: | 499 | public: |
489 | virtual void setEnabled( bool ); | 500 | virtual void setEnabled( bool ); |
490 | virtual QString name() const; | 501 | virtual QString name() const; |
491 | virtual void setChannel( int ); | 502 | virtual void setChannel( int ); |
492 | 503 | ||
493 | }; | 504 | }; |
494 | 505 | ||
506 | |||
495 | /*====================================================================================== | 507 | /*====================================================================================== |
496 | * OHostAPMonitoringInterface | 508 | * OHostAPMonitoringInterface |
497 | *======================================================================================*/ | 509 | *======================================================================================*/ |
498 | 510 | ||
511 | |||
499 | class OHostAPMonitoringInterface : public OMonitoringInterface | 512 | class OHostAPMonitoringInterface : public OMonitoringInterface |
500 | { | 513 | { |
501 | public: | 514 | public: |
502 | OHostAPMonitoringInterface( ONetworkInterface*, bool _prismHeader ); | 515 | OHostAPMonitoringInterface( ONetworkInterface*, bool _prismHeader ); |
503 | virtual ~OHostAPMonitoringInterface(); | 516 | virtual ~OHostAPMonitoringInterface(); |
504 | 517 | ||
505 | public: | 518 | public: |
506 | virtual void setEnabled( bool ); | 519 | virtual void setEnabled( bool ); |
507 | virtual QString name() const; | 520 | virtual QString name() const; |
508 | }; | 521 | }; |
509 | 522 | ||
523 | |||
510 | /*====================================================================================== | 524 | /*====================================================================================== |
511 | * OOrinocoMonitoringInterface | 525 | * OOrinocoMonitoringInterface |
512 | *======================================================================================*/ | 526 | *======================================================================================*/ |
513 | 527 | ||
528 | |||
514 | class OOrinocoMonitoringInterface : public OMonitoringInterface | 529 | class OOrinocoMonitoringInterface : public OMonitoringInterface |
515 | { | 530 | { |
516 | public: | 531 | public: |
517 | OOrinocoMonitoringInterface( ONetworkInterface*, bool _prismHeader ); | 532 | OOrinocoMonitoringInterface( ONetworkInterface*, bool _prismHeader ); |
518 | virtual ~OOrinocoMonitoringInterface(); | 533 | virtual ~OOrinocoMonitoringInterface(); |
519 | 534 | ||
520 | public: | 535 | public: |
521 | virtual void setChannel( int ); | 536 | virtual void setChannel( int ); |
522 | virtual void setEnabled( bool ); | 537 | virtual void setEnabled( bool ); |
523 | virtual QString name() const; | 538 | virtual QString name() const; |
524 | 539 | ||
525 | }; | 540 | }; |
526 | 541 | ||
527 | #endif // ONETWORK_H | 542 | #endif // ONETWORK_H |
528 | 543 | ||