summaryrefslogtreecommitdiff
path: root/libopie2/opienet/onetwork.cpp
Unidiff
Diffstat (limited to 'libopie2/opienet/onetwork.cpp') (more/less context) (show whitespace changes)
-rw-r--r--libopie2/opienet/onetwork.cpp57
1 files changed, 40 insertions, 17 deletions
diff --git a/libopie2/opienet/onetwork.cpp b/libopie2/opienet/onetwork.cpp
index 66fa215..789e8ca 100644
--- a/libopie2/opienet/onetwork.cpp
+++ b/libopie2/opienet/onetwork.cpp
@@ -119,69 +119,69 @@ ONetwork* ONetwork::instance()
119} 119}
120 120
121 121
122ONetwork::InterfaceIterator ONetwork::iterator() const 122ONetwork::InterfaceIterator ONetwork::iterator() const
123{ 123{
124 return ONetwork::InterfaceIterator( _interfaces ); 124 return ONetwork::InterfaceIterator( _interfaces );
125} 125}
126 126
127 127
128bool ONetwork::isWirelessInterface( const char* name ) const 128bool ONetwork::isWirelessInterface( const char* name ) const
129{ 129{
130 int sfd = socket( AF_INET, SOCK_STREAM, 0 ); 130 int sfd = socket( AF_INET, SOCK_STREAM, 0 );
131 iwreqstruct iwr; 131 struct iwreq iwr;
132 memset( &iwr, 0, sizeof( iwreqstruct ) ); 132 memset( &iwr, 0, sizeof( struct iwreq ) );
133 strcpy( (char*) &iwr.ifr_name, name ); 133 strcpy( (char*) &iwr.ifr_name, name );
134 int result = ::ioctl( sfd, SIOCGIWNAME, &iwr ); 134 int result = ::ioctl( sfd, SIOCGIWNAME, &iwr );
135 if ( result == -1 ) 135 if ( result == -1 )
136 qDebug( "ONetwork::ioctl(): SIOCGIWNAME failed: %d (%s)", result, strerror( errno ) ); 136 qDebug( "ONetwork::ioctl(): SIOCGIWNAME failed: %d (%s)", result, strerror( errno ) );
137 else 137 else
138 qDebug( "ONetwork::ioctl(): SIOCGIWNAME ok." ); 138 qDebug( "ONetwork::ioctl(): SIOCGIWNAME ok." );
139 return ( result != -1 ); 139 return ( result != -1 );
140} 140}
141 141
142/*====================================================================================== 142/*======================================================================================
143 * ONetworkInterface 143 * ONetworkInterface
144 *======================================================================================*/ 144 *======================================================================================*/
145 145
146ONetworkInterface::ONetworkInterface( QObject* parent, const char* name ) 146ONetworkInterface::ONetworkInterface( QObject* parent, const char* name )
147 :QObject( parent, name ), 147 :QObject( parent, name ),
148 _sfd( socket( AF_INET, SOCK_DGRAM, 0 ) ), _mon( 0 ) 148 _sfd( socket( AF_INET, SOCK_DGRAM, 0 ) ), _mon( 0 )
149{ 149{
150 qDebug( "ONetworkInterface::ONetworkInterface()" ); 150 qDebug( "ONetworkInterface::ONetworkInterface()" );
151 init(); 151 init();
152} 152}
153 153
154 154
155ifreqstruct& ONetworkInterface::ifr() const 155struct ifreq& ONetworkInterface::ifr() const
156{ 156{
157 return _ifr; 157 return _ifr;
158} 158}
159 159
160 160
161void ONetworkInterface::init() 161void ONetworkInterface::init()
162{ 162{
163 qDebug( "ONetworkInterface::init()" ); 163 qDebug( "ONetworkInterface::init()" );
164 164
165 memset( &_ifr, 0, sizeof( struct ifreq ) ); 165 memset( &_ifr, 0, sizeof( struct ifreq ) );
166 166
167 if ( _sfd == -1 ) 167 if ( _sfd == -1 )
168 { 168 {
169 qDebug( "ONetworkInterface::init(): Warning - can't get socket for device '%s'", name() ); 169 qDebug( "ONetworkInterface::init(): Warning - can't get socket for device '%s'", name() );
170 return; 170 return;
171 } 171 }
172} 172}
173 173
174 174
175bool ONetworkInterface::ioctl( int call, ifreqstruct& ifreq ) const 175bool ONetworkInterface::ioctl( int call, struct ifreq& ifreq ) const
176{ 176{
177 int result = ::ioctl( _sfd, call, &ifreq ); 177 int result = ::ioctl( _sfd, call, &ifreq );
178 if ( result == -1 ) 178 if ( result == -1 )
179 qDebug( "ONetworkInterface::ioctl(): Call %d - Status: Failed: %d (%s)", call, result, strerror( errno ) ); 179 qDebug( "ONetworkInterface::ioctl(): Call %d - Status: Failed: %d (%s)", call, result, strerror( errno ) );
180 else 180 else
181 qDebug( "ONetworkInterface::ioctl(): Call %d - Status: Ok.", call ); 181 qDebug( "ONetworkInterface::ioctl(): Call %d - Status: Ok.", call );
182 return ( result != -1 ); 182 return ( result != -1 );
183} 183}
184 184
185 185
186bool ONetworkInterface::ioctl( int call ) const 186bool ONetworkInterface::ioctl( int call ) const
187{ 187{
@@ -368,25 +368,25 @@ OWirelessNetworkInterface::OWirelessNetworkInterface( QObject* parent, const cha
368 :ONetworkInterface( parent, name ), _hopper( 0 ) 368 :ONetworkInterface( parent, name ), _hopper( 0 )
369{ 369{
370 qDebug( "OWirelessNetworkInterface::OWirelessNetworkInterface()" ); 370 qDebug( "OWirelessNetworkInterface::OWirelessNetworkInterface()" );
371 init(); 371 init();
372} 372}
373 373
374 374
375OWirelessNetworkInterface::~OWirelessNetworkInterface() 375OWirelessNetworkInterface::~OWirelessNetworkInterface()
376{ 376{
377} 377}
378 378
379 379
380iwreqstruct& OWirelessNetworkInterface::iwr() const 380struct iwreq& OWirelessNetworkInterface::iwr() const
381{ 381{
382 return _iwr; 382 return _iwr;
383} 383}
384 384
385 385
386void OWirelessNetworkInterface::init() 386void OWirelessNetworkInterface::init()
387{ 387{
388 qDebug( "OWirelessNetworkInterface::init()" ); 388 qDebug( "OWirelessNetworkInterface::init()" );
389 memset( &_iwr, 0, sizeof( struct iwreq ) ); 389 memset( &_iwr, 0, sizeof( struct iwreq ) );
390 buildChannelList(); 390 buildChannelList();
391 buildPrivateList(); 391 buildPrivateList();
392} 392}
@@ -408,62 +408,85 @@ QString OWirelessNetworkInterface::associatedAP() const
408 _ifr.ifr_hwaddr.sa_data[5]&0xff ); 408 _ifr.ifr_hwaddr.sa_data[5]&0xff );
409 } 409 }
410 else 410 else
411 { 411 {
412 mac = "<Unknown>"; 412 mac = "<Unknown>";
413 } 413 }
414 return mac; 414 return mac;
415} 415}
416 416
417 417
418void OWirelessNetworkInterface::buildChannelList() 418void OWirelessNetworkInterface::buildChannelList()
419{ 419{
420 // IEEE802.11(b) radio frequency channels
421 struct iw_range range;
422
423 //ML: If you listen carefully enough, you can hear lots of WLAN drivers suck 420 //ML: If you listen carefully enough, you can hear lots of WLAN drivers suck
424 //ML: The HostAP drivers need more than sizeof struct_iw range to complete 421 //ML: The HostAP drivers need more than sizeof struct_iw range to complete
425 //ML: SIOCGIWRANGE otherwise they fail with "Invalid Argument Length". 422 //ML: SIOCGIWRANGE otherwise they fail with "Invalid Argument Length".
426 //ML: The Wlan-NG drivers on the otherside fail (segfault!) if you allocate 423 //ML: The Wlan-NG drivers on the otherside fail (segfault!) if you allocate
427 //ML: _too much_ space. This is damn shitty crap *sigh* 424 //ML: _too much_ space. This is damn shitty crap *sigh*
428 425 //ML: We allocate a large memory region in RAM and check whether the
429 _iwr.u.data.pointer = (char*) &range; 426 //ML: driver pollutes this extra space. The complaint will be made on stdout,
430 _iwr.u.data.length = IW_MAX_FREQUENCIES; //sizeof range; 427 //ML: so please forward this...
431 _iwr.u.data.flags = 0; 428
432 429 struct iwreq wrq;
433 if ( !wioctl( SIOCGIWRANGE ) ) 430 int len = sizeof( struct iw_range )*2;
431 char *buffer = (char*) malloc( len );
432 //FIXME: Validate if we actually got the memory block
433 memset( buffer, 0, len );
434 memcpy( wrq.ifr_name, name(), IFNAMSIZ);
435 wrq.u.data.pointer = (caddr_t) buffer;
436 wrq.u.data.length = sizeof( struct iw_range );
437 wrq.u.data.flags = 0;
438
439 if ( ::ioctl( _sfd, SIOCGIWRANGE, &wrq ) == -1 )
434 { 440 {
435 qDebug( "OWirelessNetworkInterface::buildChannelList(): SIOCGIWRANGE failed (%s) - defaulting to 11 channels", strerror( errno ) ); 441 qDebug( "OWirelessNetworkInterface::buildChannelList(): SIOCGIWRANGE failed (%s) - defaulting to 11 channels", strerror( errno ) );
436 _channels.insert( 2412, 1 ); // 2.412 GHz 442 _channels.insert( 2412, 1 ); // 2.412 GHz
437 _channels.insert( 2417, 2 ); // 2.417 GHz 443 _channels.insert( 2417, 2 ); // 2.417 GHz
438 _channels.insert( 2422, 3 ); // 2.422 GHz 444 _channels.insert( 2422, 3 ); // 2.422 GHz
439 _channels.insert( 2427, 4 ); // 2.427 GHz 445 _channels.insert( 2427, 4 ); // 2.427 GHz
440 _channels.insert( 2432, 5 ); // 2.432 GHz 446 _channels.insert( 2432, 5 ); // 2.432 GHz
441 _channels.insert( 2437, 6 ); // 2.437 GHz 447 _channels.insert( 2437, 6 ); // 2.437 GHz
442 _channels.insert( 2442, 7 ); // 2.442 GHz 448 _channels.insert( 2442, 7 ); // 2.442 GHz
443 _channels.insert( 2447, 8 ); // 2.447 GHz 449 _channels.insert( 2447, 8 ); // 2.447 GHz
444 _channels.insert( 2452, 9 ); // 2.452 GHz 450 _channels.insert( 2452, 9 ); // 2.452 GHz
445 _channels.insert( 2457, 10 ); // 2.457 GHz 451 _channels.insert( 2457, 10 ); // 2.457 GHz
446 _channels.insert( 2462, 11 ); // 2.462 GHz 452 _channels.insert( 2462, 11 ); // 2.462 GHz
447 } 453 }
448 else 454 else
449 { 455 {
456 // <check if the driver overwrites stuff>
457 int max = 0;
458 for ( int r = sizeof( struct iw_range ); r < len; r++ )
459 if (buffer[r] != 0)
460 max = r;
461 if (max > 0)
462 {
463 qWarning( "OWirelessNetworkInterface::buildChannelList(): Driver for wireless interface '%s'"
464 "overwrote buffer end with at least %i bytes!\n", name(), max - sizeof( struct iw_range ) );
465 }
466 // </check if the driver overwrites stuff>
467
468 struct iw_range range;
469 memcpy( &range, buffer, sizeof range );
470
450 qDebug( "OWirelessNetworkInterface::buildChannelList(): Interface %s reported to have %d channels.", name(), range.num_frequency ); 471 qDebug( "OWirelessNetworkInterface::buildChannelList(): Interface %s reported to have %d channels.", name(), range.num_frequency );
451 for ( int i = 0; i < range.num_frequency; ++i ) 472 for ( int i = 0; i < range.num_frequency; ++i )
452 { 473 {
453 int freq = (int) ( double( range.freq[i].m ) * pow( 10.0, range.freq[i].e ) / 1000000.0 ); 474 int freq = (int) ( double( range.freq[i].m ) * pow( 10.0, range.freq[i].e ) / 1000000.0 );
454 _channels.insert( freq, i+1 ); 475 _channels.insert( freq, i+1 );
455 } 476 }
456 } 477 }
478
457 qDebug( "OWirelessNetworkInterface::buildChannelList(): Channel list constructed." ); 479 qDebug( "OWirelessNetworkInterface::buildChannelList(): Channel list constructed." );
480 free(buffer);
458} 481}
459 482
460 483
461void OWirelessNetworkInterface::buildPrivateList() 484void OWirelessNetworkInterface::buildPrivateList()
462{ 485{
463 qDebug( "OWirelessNetworkInterface::buildPrivateList()" ); 486 qDebug( "OWirelessNetworkInterface::buildPrivateList()" );
464 487
465 struct iw_priv_args priv[IW_MAX_PRIV_DEF]; 488 struct iw_priv_args priv[IW_MAX_PRIV_DEF];
466 489
467 _iwr.u.data.pointer = (char*) &priv; 490 _iwr.u.data.pointer = (char*) &priv;
468 _iwr.u.data.length = IW_MAX_PRIV_DEF; // length in terms of number of (sizeof iw_priv_args), not (sizeof iw_priv_args) itself 491 _iwr.u.data.length = IW_MAX_PRIV_DEF; // length in terms of number of (sizeof iw_priv_args), not (sizeof iw_priv_args) itself
469 _iwr.u.data.flags = 0; 492 _iwr.u.data.flags = 0;
@@ -496,25 +519,25 @@ int OWirelessNetworkInterface::channel() const
496 } 519 }
497 else 520 else
498 { 521 {
499 return _channels[ static_cast<int>(double( _iwr.u.freq.m ) * pow( 10.0, _iwr.u.freq.e ) / 1000000) ]; 522 return _channels[ static_cast<int>(double( _iwr.u.freq.m ) * pow( 10.0, _iwr.u.freq.e ) / 1000000) ];
500 } 523 }
501} 524}
502 525
503 526
504void OWirelessNetworkInterface::setChannel( int c ) const 527void OWirelessNetworkInterface::setChannel( int c ) const
505{ 528{
506 if ( !_mon ) 529 if ( !_mon )
507 { 530 {
508 memset( &_iwr, 0, sizeof( iwreqstruct ) ); 531 memset( &_iwr, 0, sizeof( struct iwreq ) );
509 _iwr.u.freq.m = c; 532 _iwr.u.freq.m = c;
510 _iwr.u.freq.e = 0; 533 _iwr.u.freq.e = 0;
511 wioctl( SIOCSIWFREQ ); 534 wioctl( SIOCSIWFREQ );
512 } 535 }
513 else 536 else
514 { 537 {
515 _mon->setChannel( c ); 538 _mon->setChannel( c );
516 } 539 }
517} 540}
518 541
519 542
520double OWirelessNetworkInterface::frequency() const 543double OWirelessNetworkInterface::frequency() const
@@ -630,25 +653,25 @@ QString OWirelessNetworkInterface::SSID() const
630 } 653 }
631} 654}
632 655
633 656
634void OWirelessNetworkInterface::setSSID( const QString& ssid ) 657void OWirelessNetworkInterface::setSSID( const QString& ssid )
635{ 658{
636 _iwr.u.essid.pointer = const_cast<char*>( (const char*) ssid ); 659 _iwr.u.essid.pointer = const_cast<char*>( (const char*) ssid );
637 _iwr.u.essid.length = ssid.length(); 660 _iwr.u.essid.length = ssid.length();
638 wioctl( SIOCSIWESSID ); 661 wioctl( SIOCSIWESSID );
639} 662}
640 663
641 664
642bool OWirelessNetworkInterface::wioctl( int call, iwreqstruct& iwreq ) const 665bool OWirelessNetworkInterface::wioctl( int call, struct iwreq& iwreq ) const
643{ 666{
644 int result = ::ioctl( _sfd, call, &iwreq ); 667 int result = ::ioctl( _sfd, call, &iwreq );
645 if ( result == -1 ) 668 if ( result == -1 )
646 qDebug( "ONetworkInterface::wioctl(): Call %d - Status: Failed: %d (%s)", call, result, strerror( errno ) ); 669 qDebug( "ONetworkInterface::wioctl(): Call %d - Status: Failed: %d (%s)", call, result, strerror( errno ) );
647 else 670 else
648 qDebug( "ONetworkInterface::wioctl(): Call %d - Status: Ok.", call ); 671 qDebug( "ONetworkInterface::wioctl(): Call %d - Status: Ok.", call );
649 return ( result != -1 ); 672 return ( result != -1 );
650} 673}
651 674
652 675
653bool OWirelessNetworkInterface::wioctl( int call ) const 676bool OWirelessNetworkInterface::wioctl( int call ) const
654{ 677{
@@ -666,25 +689,25 @@ OMonitoringInterface::OMonitoringInterface( ONetworkInterface* iface )
666{ 689{
667} 690}
668 691
669 692
670OMonitoringInterface::~OMonitoringInterface() 693OMonitoringInterface::~OMonitoringInterface()
671{ 694{
672} 695}
673 696
674 697
675void OMonitoringInterface::setChannel( int c ) 698void OMonitoringInterface::setChannel( int c )
676{ 699{
677 // use standard WE channel switching protocol 700 // use standard WE channel switching protocol
678 memset( &_if->_iwr, 0, sizeof( iwreqstruct ) ); 701 memset( &_if->_iwr, 0, sizeof( struct iwreq ) );
679 _if->_iwr.u.freq.m = c; 702 _if->_iwr.u.freq.m = c;
680 _if->_iwr.u.freq.e = 0; 703 _if->_iwr.u.freq.e = 0;
681 _if->wioctl( SIOCSIWFREQ ); 704 _if->wioctl( SIOCSIWFREQ );
682} 705}
683 706
684 707
685bool OMonitoringInterface::enabled() const 708bool OMonitoringInterface::enabled() const
686{ 709{
687 return _enabled; 710 return _enabled;
688} 711}
689 712
690void OMonitoringInterface::setEnabled( bool b ) 713void OMonitoringInterface::setEnabled( bool b )