summaryrefslogtreecommitdiff
authormickeyl <mickeyl>2003-04-05 23:08:46 (UTC)
committer mickeyl <mickeyl>2003-04-05 23:08:46 (UTC)
commitb7682f160fafe69bfd47dcfb1c88f2ac2b1afaf5 (patch) (unidiff)
tree68c5a0c5da88fff94582d2e6a072d8e9bbeaaf30
parent6a949f685bd3fb50f810ad603eaafdb57720077c (diff)
downloadopie-b7682f160fafe69bfd47dcfb1c88f2ac2b1afaf5.zip
opie-b7682f160fafe69bfd47dcfb1c88f2ac2b1afaf5.tar.gz
opie-b7682f160fafe69bfd47dcfb1c88f2ac2b1afaf5.tar.bz2
- correct beacon bug (off-by-one)
- display hex dump per packet in hex window - allow saving hex window contents
Diffstat (more/less context) (ignore whitespace changes)
-rw-r--r--noncore/net/wellenreiter/gui/hexwindow.cpp10
-rw-r--r--noncore/net/wellenreiter/gui/hexwindow.h1
-rw-r--r--noncore/net/wellenreiter/gui/mainwindow.cpp23
-rw-r--r--noncore/net/wellenreiter/gui/mainwindow.h1
-rw-r--r--noncore/net/wellenreiter/gui/scanlist.cpp4
-rw-r--r--noncore/net/wellenreiter/gui/wellenreiter.cpp5
6 files changed, 38 insertions, 6 deletions
diff --git a/noncore/net/wellenreiter/gui/hexwindow.cpp b/noncore/net/wellenreiter/gui/hexwindow.cpp
index a3022f4..8b17285 100644
--- a/noncore/net/wellenreiter/gui/hexwindow.cpp
+++ b/noncore/net/wellenreiter/gui/hexwindow.cpp
@@ -1,39 +1,45 @@
1/********************************************************************** 1/**********************************************************************
2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved. 2** Copyright (C) 2002 Michael 'Mickey' Lauer. All rights reserved.
3** 3**
4** This file is part of Opie Environment. 4** This file is part of Opie Environment.
5** 5**
6** This file may be distributed and/or modified under the terms of the 6** This file may be distributed and/or modified under the terms of the
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14**********************************************************************/ 14**********************************************************************/
15 15
16#include "hexwindow.h" 16#include "hexwindow.h"
17#include <qmultilineedit.h> 17#include <qmultilineedit.h>
18 18
19MHexWindow::MHexWindow( QWidget * parent, const char * name, WFlags f ) 19MHexWindow::MHexWindow( QWidget * parent, const char * name, WFlags f )
20 :QVBox( parent, name, f ) 20 :QVBox( parent, name, f )
21{ 21{
22 ledit = new QMultiLineEdit( this ); 22 ledit = new QMultiLineEdit( this );
23 23 ledit->setFont( QFont( "fixed", 10 ) );
24
24 // FIXME: Set properties( font, read-only, etc...) 25 // FIXME: Set properties( font, read-only, etc...)
25 26
26}; 27};
27 28
28void MHexWindow::log( QString text ) 29void MHexWindow::log( QString text )
29{ 30{
30 31
31 ledit->append( text ); 32 ledit->append( text );
32 33
33}; 34};
34 35
36const QString MHexWindow::getLog() const
37{
38 return ledit->text();
39}
40
35void MHexWindow::clear() 41void MHexWindow::clear()
36{ 42{
37 ledit->clear(); 43 ledit->clear();
38} 44}
39 45
diff --git a/noncore/net/wellenreiter/gui/hexwindow.h b/noncore/net/wellenreiter/gui/hexwindow.h
index 2618b8c..f2f870c 100644
--- a/noncore/net/wellenreiter/gui/hexwindow.h
+++ b/noncore/net/wellenreiter/gui/hexwindow.h
@@ -7,33 +7,34 @@
7** GNU General Public License version 2 as published by the Free Software 7** GNU General Public License version 2 as published by the Free Software
8** Foundation and appearing in the file LICENSE.GPL included in the 8** Foundation and appearing in the file LICENSE.GPL included in the
9** packaging of this file. 9** packaging of this file.
10** 10**
11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE 11** This file is provided AS IS with NO WARRANTY OF ANY KIND, INCLUDING THE
12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. 12** WARRANTY OF DESIGN, MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
13** 13**
14**********************************************************************/ 14**********************************************************************/
15 15
16#ifndef HEXWINDOW_H 16#ifndef HEXWINDOW_H
17#define HEXWINDOW_H 17#define HEXWINDOW_H
18 18
19#include <qvbox.h> 19#include <qvbox.h>
20 20
21class QString; 21class QString;
22class QMultiLineEdit; 22class QMultiLineEdit;
23 23
24class MHexWindow: public QVBox 24class MHexWindow: public QVBox
25{ 25{
26 26
27 public: 27 public:
28 MHexWindow( QWidget * parent = 0, const char * name = "MHexWindow", WFlags f = 0 ); 28 MHexWindow( QWidget * parent = 0, const char * name = "MHexWindow", WFlags f = 0 );
29 29
30 void log( QString text ); 30 void log( QString text );
31 const QString getLog() const;
31 void clear(); 32 void clear();
32 33
33 protected: 34 protected:
34 QMultiLineEdit* ledit; 35 QMultiLineEdit* ledit;
35 36
36}; 37};
37 38
38#endif 39#endif
39 40
diff --git a/noncore/net/wellenreiter/gui/mainwindow.cpp b/noncore/net/wellenreiter/gui/mainwindow.cpp
index 8e0164f..69d2b3a 100644
--- a/noncore/net/wellenreiter/gui/mainwindow.cpp
+++ b/noncore/net/wellenreiter/gui/mainwindow.cpp
@@ -86,49 +86,50 @@ WellenreiterMainWindow::WellenreiterMainWindow( QWidget * parent, const char * n
86 startStopButton->setEnabled( false ); 86 startStopButton->setEnabled( false );
87 87
88 QToolButton* c = new QToolButton( 0 ); 88 QToolButton* c = new QToolButton( 0 );
89 #ifdef QWS 89 #ifdef QWS
90 c->setAutoRaise( true ); 90 c->setAutoRaise( true );
91 #endif 91 #endif
92 c->setIconSet( *infoIconSet ); 92 c->setIconSet( *infoIconSet );
93 c->setEnabled( false ); 93 c->setEnabled( false );
94 94
95 QToolButton* d = new QToolButton( 0 ); 95 QToolButton* d = new QToolButton( 0 );
96 #ifdef QWS 96 #ifdef QWS
97 d->setAutoRaise( true ); 97 d->setAutoRaise( true );
98 #endif 98 #endif
99 d->setIconSet( *settingsIconSet ); 99 d->setIconSet( *settingsIconSet );
100 connect( d, SIGNAL( clicked() ), this, SLOT( showConfigure() ) ); 100 connect( d, SIGNAL( clicked() ), this, SLOT( showConfigure() ) );
101 101
102 // setup menu bar 102 // setup menu bar
103 103
104 int id; 104 int id;
105 105
106 QMenuBar* mb = menuBar(); 106 QMenuBar* mb = menuBar();
107 107
108 QPopupMenu* fileSave = new QPopupMenu( mb ); 108 QPopupMenu* fileSave = new QPopupMenu( mb );
109 fileSave->insertItem( "&Session...", this, SLOT( fileSaveSession() ) ); 109 fileSave->insertItem( "&Session...", this, SLOT( fileSaveSession() ) );
110 fileSave->insertItem( "&Log...", this, SLOT( fileSaveLog() ) ); 110 fileSave->insertItem( "&Text Log...", this, SLOT( fileSaveLog() ) );
111 fileSave->insertItem( "&Hex Log...", this, SLOT( fileSaveHex() ) );
111 112
112 QPopupMenu* fileLoad = new QPopupMenu( mb ); 113 QPopupMenu* fileLoad = new QPopupMenu( mb );
113 fileLoad->insertItem( "&Session...", this, SLOT( fileLoadSession() ) ); 114 fileLoad->insertItem( "&Session...", this, SLOT( fileLoadSession() ) );
114 //fileLoad->insertItem( "&Log", this, SLOT( fileLoadLog() ) ); 115 //fileLoad->insertItem( "&Log", this, SLOT( fileLoadLog() ) );
115 116
116 QPopupMenu* file = new QPopupMenu( mb ); 117 QPopupMenu* file = new QPopupMenu( mb );
117 file->insertItem( "&New", this, SLOT( fileNew() ) ); 118 file->insertItem( "&New", this, SLOT( fileNew() ) );
118 id = file->insertItem( "&Load", fileLoad ); 119 id = file->insertItem( "&Load", fileLoad );
119 file->insertItem( "&Save", fileSave ); 120 file->insertItem( "&Save", fileSave );
120 file->insertSeparator(); 121 file->insertSeparator();
121 file->insertItem( "&Exit", qApp, SLOT( quit() ) ); 122 file->insertItem( "&Exit", qApp, SLOT( quit() ) );
122 123
123 QPopupMenu* view = new QPopupMenu( mb ); 124 QPopupMenu* view = new QPopupMenu( mb );
124 view->insertItem( "&Configure..." ); 125 view->insertItem( "&Configure..." );
125 126
126 QPopupMenu* sniffer = new QPopupMenu( mb ); 127 QPopupMenu* sniffer = new QPopupMenu( mb );
127 sniffer->insertItem( "&Configure..." ); 128 sniffer->insertItem( "&Configure..." );
128 sniffer->insertSeparator(); 129 sniffer->insertSeparator();
129 130
130 QPopupMenu* demo = new QPopupMenu( mb ); 131 QPopupMenu* demo = new QPopupMenu( mb );
131 demo->insertItem( "&Add something", this, SLOT( demoAddStations() ) ); 132 demo->insertItem( "&Add something", this, SLOT( demoAddStations() ) );
132 133
133 id = mb->insertItem( "&File", file ); 134 id = mb->insertItem( "&File", file );
134 id = mb->insertItem( "&View", view ); 135 id = mb->insertItem( "&View", view );
@@ -259,48 +260,68 @@ void WellenreiterMainWindow::fileSaveLog()
259 } 260 }
260} 261}
261 262
262void WellenreiterMainWindow::fileSaveSession() 263void WellenreiterMainWindow::fileSaveSession()
263{ 264{
264 QString fname = getFileName( true ); 265 QString fname = getFileName( true );
265 if ( !fname.isEmpty() ) 266 if ( !fname.isEmpty() )
266 { 267 {
267 268
268 QFile f( fname ); 269 QFile f( fname );
269 if ( f.open(IO_WriteOnly) ) 270 if ( f.open(IO_WriteOnly) )
270 { 271 {
271 QDataStream t( &f ); 272 QDataStream t( &f );
272 t << *mw->netView(); 273 t << *mw->netView();
273 f.close(); 274 f.close();
274 qDebug( "Saved session to file '%s'", (const char*) fname ); 275 qDebug( "Saved session to file '%s'", (const char*) fname );
275 } 276 }
276 else 277 else
277 { 278 {
278 qDebug( "Problem saving session to file '%s'", (const char*) fname ); 279 qDebug( "Problem saving session to file '%s'", (const char*) fname );
279 } 280 }
280 } 281 }
281} 282}
282 283
284void WellenreiterMainWindow::fileSaveHex()
285{
286 QString fname = getFileName( true );
287 if ( !fname.isEmpty() )
288 {
289 QFile f( fname );
290 if ( f.open(IO_WriteOnly) )
291 {
292 QTextStream t( &f );
293 t << mw->hexWindow()->getLog();
294 f.close();
295 qDebug( "Saved hex log to file '%s'", (const char*) fname );
296 }
297 else
298 {
299 qDebug( "Problem saving hex log to file '%s'", (const char*) fname );
300 }
301 }
302}
303
283void WellenreiterMainWindow::fileLoadSession() 304void WellenreiterMainWindow::fileLoadSession()
284{ 305{
285 QString fname = getFileName( false ); 306 QString fname = getFileName( false );
286 if ( !fname.isEmpty() ) 307 if ( !fname.isEmpty() )
287 { 308 {
288 QFile f( fname ); 309 QFile f( fname );
289 if ( f.open(IO_ReadOnly) ) 310 if ( f.open(IO_ReadOnly) )
290 { 311 {
291 QDataStream t( &f ); 312 QDataStream t( &f );
292 t >> *mw->netView(); 313 t >> *mw->netView();
293 f.close(); 314 f.close();
294 qDebug( "Loaded session from file '%s'", (const char*) fname ); 315 qDebug( "Loaded session from file '%s'", (const char*) fname );
295 } 316 }
296 else 317 else
297 { 318 {
298 qDebug( "Problem loading session from file '%s'", (const char*) fname ); 319 qDebug( "Problem loading session from file '%s'", (const char*) fname );
299 } 320 }
300 } 321 }
301} 322}
302 323
303void WellenreiterMainWindow::fileNew() 324void WellenreiterMainWindow::fileNew()
304{ 325{
305 mw->netView()->clear(); 326 mw->netView()->clear();
306 mw->logWindow()->clear(); 327 mw->logWindow()->clear();
diff --git a/noncore/net/wellenreiter/gui/mainwindow.h b/noncore/net/wellenreiter/gui/mainwindow.h
index e06a60c..1b08c5b 100644
--- a/noncore/net/wellenreiter/gui/mainwindow.h
+++ b/noncore/net/wellenreiter/gui/mainwindow.h
@@ -32,30 +32,31 @@ class WellenreiterMainWindow: public QMainWindow
32 ~WellenreiterMainWindow(); 32 ~WellenreiterMainWindow();
33 33
34 protected: 34 protected:
35 Wellenreiter* mw; 35 Wellenreiter* mw;
36 WellenreiterConfigWindow* cw; 36 WellenreiterConfigWindow* cw;
37 37
38 QIconSet* startStopIconSet; 38 QIconSet* startStopIconSet;
39 const QIconSet* searchIconSet; 39 const QIconSet* searchIconSet;
40 const QIconSet* infoIconSet; 40 const QIconSet* infoIconSet;
41 const QIconSet* settingsIconSet; 41 const QIconSet* settingsIconSet;
42 const QIconSet* cancelIconSet; 42 const QIconSet* cancelIconSet;
43 43
44 QToolButton* startStopButton; 44 QToolButton* startStopButton;
45 45
46 protected: 46 protected:
47 virtual void closeEvent( QCloseEvent* ); 47 virtual void closeEvent( QCloseEvent* );
48 48
49 private: 49 private:
50 QString getFileName( bool save ); 50 QString getFileName( bool save );
51 51
52 public slots: 52 public slots:
53 void showConfigure(); 53 void showConfigure();
54 void demoAddStations(); 54 void demoAddStations();
55 void fileSaveLog(); 55 void fileSaveLog();
56 void fileSaveHex();
56 void fileSaveSession(); 57 void fileSaveSession();
57 void fileLoadSession(); 58 void fileLoadSession();
58 void fileNew(); 59 void fileNew();
59}; 60};
60 61
61#endif 62#endif
diff --git a/noncore/net/wellenreiter/gui/scanlist.cpp b/noncore/net/wellenreiter/gui/scanlist.cpp
index a006a3c..34c69f5 100644
--- a/noncore/net/wellenreiter/gui/scanlist.cpp
+++ b/noncore/net/wellenreiter/gui/scanlist.cpp
@@ -173,49 +173,49 @@ void MScanListView::addNewItem( QString type, QString essid, QString macaddr, bo
173 173
174} 174}
175 175
176#ifdef QWS 176#ifdef QWS
177#include <qpe/resource.h> 177#include <qpe/resource.h>
178#else 178#else
179#include "resource.h" 179#include "resource.h"
180#endif 180#endif
181 181
182const int col_type = 0; 182const int col_type = 0;
183const int col_essid = 0; 183const int col_essid = 0;
184const int col_sig = 1; 184const int col_sig = 1;
185const int col_ap = 2; 185const int col_ap = 2;
186const int col_channel = 3; 186const int col_channel = 3;
187const int col_wep = 4; 187const int col_wep = 4;
188const int col_traffic = 5; 188const int col_traffic = 5;
189const int col_manuf = 6; 189const int col_manuf = 6;
190const int col_firstseen = 7; 190const int col_firstseen = 7;
191const int col_lastseen = 8; 191const int col_lastseen = 8;
192 192
193MScanListItem::MScanListItem( QListView* parent, QString type, QString essid, QString macaddr, 193MScanListItem::MScanListItem( QListView* parent, QString type, QString essid, QString macaddr,
194 bool wep, int channel, int signal ) 194 bool wep, int channel, int signal )
195 :OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null ), 195 :OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null ),
196 _type( type ), _essid( essid ), _macaddr( macaddr ), _wep( wep ), 196 _type( type ), _essid( essid ), _macaddr( macaddr ), _wep( wep ),
197 _channel( channel ), _signal( signal ), _beacons( 0 ) 197 _channel( channel ), _signal( signal ), _beacons( 1 )
198{ 198{
199 qDebug( "creating scanlist item" ); 199 qDebug( "creating scanlist item" );
200 if ( WellenreiterConfigWindow::instance() && type == "networks" ) 200 if ( WellenreiterConfigWindow::instance() && type == "networks" )
201 playSound( WellenreiterConfigWindow::instance()->soundOnNetwork() ); 201 playSound( WellenreiterConfigWindow::instance()->soundOnNetwork() );
202 decorateItem( type, essid, macaddr, wep, channel, signal ); 202 decorateItem( type, essid, macaddr, wep, channel, signal );
203} 203}
204 204
205MScanListItem::MScanListItem( QListViewItem* parent, QString type, QString essid, QString macaddr, 205MScanListItem::MScanListItem( QListViewItem* parent, QString type, QString essid, QString macaddr,
206 bool wep, int channel, int signal ) 206 bool wep, int channel, int signal )
207 :OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null ) 207 :OListViewItem( parent, essid, QString::null, macaddr, QString::null, QString::null )
208{ 208{
209 qDebug( "creating scanlist item" ); 209 qDebug( "creating scanlist item" );
210 decorateItem( type, essid, macaddr, wep, channel, signal ); 210 decorateItem( type, essid, macaddr, wep, channel, signal );
211} 211}
212 212
213OListViewItem* MScanListItem::childFactory() 213OListViewItem* MScanListItem::childFactory()
214{ 214{
215 return new MScanListItem( this ); 215 return new MScanListItem( this );
216} 216}
217 217
218void MScanListItem::serializeTo( QDataStream& s ) const 218void MScanListItem::serializeTo( QDataStream& s ) const
219{ 219{
220 qDebug( "serializing MScanListItem" ); 220 qDebug( "serializing MScanListItem" );
221 OListViewItem::serializeTo( s ); 221 OListViewItem::serializeTo( s );
@@ -253,49 +253,49 @@ void MScanListItem::decorateItem( QString type, QString essid, QString macaddr,
253 name.sprintf( "wellenreiter/%s", (const char*) type ); 253 name.sprintf( "wellenreiter/%s", (const char*) type );
254 setPixmap( col_type, Resource::loadPixmap( name ) ); 254 setPixmap( col_type, Resource::loadPixmap( name ) );
255 255
256 // set icon for wep (wireless encryption protocol) 256 // set icon for wep (wireless encryption protocol)
257 if ( wep ) 257 if ( wep )
258 setPixmap( col_wep, Resource::loadPixmap( "wellenreiter/cracked" ) ); //FIXME: rename the pixmap! 258 setPixmap( col_wep, Resource::loadPixmap( "wellenreiter/cracked" ) ); //FIXME: rename the pixmap!
259 259
260 // set channel and signal text 260 // set channel and signal text
261 261
262 if ( signal != -1 ) 262 if ( signal != -1 )
263 setText( col_sig, QString::number( signal ) ); 263 setText( col_sig, QString::number( signal ) );
264 if ( channel != -1 ) 264 if ( channel != -1 )
265 setText( col_channel, QString::number( channel ) ); 265 setText( col_channel, QString::number( channel ) );
266 266
267 setText( col_firstseen, QTime::currentTime().toString() ); 267 setText( col_firstseen, QTime::currentTime().toString() );
268 //setText( col_lastseen, QTime::currentTime().toString() ); 268 //setText( col_lastseen, QTime::currentTime().toString() );
269 269
270 listView()->triggerUpdate(); 270 listView()->triggerUpdate();
271 271
272 this->type = type; 272 this->type = type;
273 _type = type; 273 _type = type;
274 _essid = essid; 274 _essid = essid;
275 _macaddr = macaddr; 275 _macaddr = macaddr;
276 _channel = channel; 276 _channel = channel;
277 _beacons = 0; 277 _beacons = 1;
278 _signal = 0; 278 _signal = 0;
279} 279}
280 280
281 281
282void MScanListItem::setManufacturer( const QString& manufacturer ) 282void MScanListItem::setManufacturer( const QString& manufacturer )
283{ 283{
284 setText( col_manuf, manufacturer ); 284 setText( col_manuf, manufacturer );
285} 285}
286 286
287 287
288void MScanListItem::playSound( const QString& sound ) const 288void MScanListItem::playSound( const QString& sound ) const
289{ 289{
290 #ifdef QWS 290 #ifdef QWS
291 if ( sound == "Ignore" ) return; 291 if ( sound == "Ignore" ) return;
292 else if ( sound == "Touch" ) ODevice::inst()->touchSound(); 292 else if ( sound == "Touch" ) ODevice::inst()->touchSound();
293 else if ( sound == "Key" ) ODevice::inst()->keySound(); 293 else if ( sound == "Key" ) ODevice::inst()->keySound();
294 else if ( sound == "Alarm" ) ODevice::inst()->alarmSound(); 294 else if ( sound == "Alarm" ) ODevice::inst()->alarmSound();
295 #endif 295 #endif
296} 296}
297 297
298 298
299void MScanListItem::receivedBeacon() 299void MScanListItem::receivedBeacon()
300{ 300{
301 _beacons++; 301 _beacons++;
diff --git a/noncore/net/wellenreiter/gui/wellenreiter.cpp b/noncore/net/wellenreiter/gui/wellenreiter.cpp
index d80a6e6..aa33158 100644
--- a/noncore/net/wellenreiter/gui/wellenreiter.cpp
+++ b/noncore/net/wellenreiter/gui/wellenreiter.cpp
@@ -89,48 +89,50 @@ Wellenreiter::Wellenreiter( QWidget* parent )
89 netview->setColumnWidthMode( 1, QListView::Manual ); 89 netview->setColumnWidthMode( 1, QListView::Manual );
90 90
91 if ( manufacturerdb ) 91 if ( manufacturerdb )
92 netview->setManufacturerDB( manufacturerdb ); 92 netview->setManufacturerDB( manufacturerdb );
93 93
94 pcap = new OPacketCapturer(); 94 pcap = new OPacketCapturer();
95 95
96} 96}
97 97
98Wellenreiter::~Wellenreiter() 98Wellenreiter::~Wellenreiter()
99{ 99{
100 // no need to delete child widgets, Qt does it all for us 100 // no need to delete child widgets, Qt does it all for us
101 101
102 delete manufacturerdb; 102 delete manufacturerdb;
103 delete pcap; 103 delete pcap;
104} 104}
105 105
106void Wellenreiter::setConfigWindow( WellenreiterConfigWindow* cw ) 106void Wellenreiter::setConfigWindow( WellenreiterConfigWindow* cw )
107{ 107{
108 configwindow = cw; 108 configwindow = cw;
109} 109}
110 110
111void Wellenreiter::receivePacket(OPacket* p) 111void Wellenreiter::receivePacket(OPacket* p)
112{ 112{
113 hexWindow()->log( p->dump( 8 ) );
114
113 // check if we received a beacon frame 115 // check if we received a beacon frame
114 // static_cast is justified here 116 // static_cast is justified here
115 OWaveLanManagementPacket* beacon = static_cast<OWaveLanManagementPacket*>( p->child( "802.11 Management" ) ); 117 OWaveLanManagementPacket* beacon = static_cast<OWaveLanManagementPacket*>( p->child( "802.11 Management" ) );
116 if ( !beacon ) return; 118 if ( !beacon ) return;
117 QString type; 119 QString type;
118 120
119 //FIXME: Can stations in ESS mode can be distinguished from APs? 121 //FIXME: Can stations in ESS mode can be distinguished from APs?
120 //FIXME: Apparently yes, but not by listening to beacons, because 122 //FIXME: Apparently yes, but not by listening to beacons, because
121 //FIXME: they simply don't send beacons in infrastructure mode. 123 //FIXME: they simply don't send beacons in infrastructure mode.
122 //FIXME: so we also have to listen to data packets 124 //FIXME: so we also have to listen to data packets
123 125
124 if ( beacon->canIBSS() ) 126 if ( beacon->canIBSS() )
125 type = "adhoc"; 127 type = "adhoc";
126 else 128 else
127 type = "managed"; 129 type = "managed";
128 130
129 OWaveLanManagementSSID* ssid = static_cast<OWaveLanManagementSSID*>( p->child( "802.11 SSID" ) ); 131 OWaveLanManagementSSID* ssid = static_cast<OWaveLanManagementSSID*>( p->child( "802.11 SSID" ) );
130 QString essid = ssid ? ssid->ID() : QString("<unknown>"); 132 QString essid = ssid ? ssid->ID() : QString("<unknown>");
131 OWaveLanManagementDS* ds = static_cast<OWaveLanManagementDS*>( p->child( "802.11 DS" ) ); 133 OWaveLanManagementDS* ds = static_cast<OWaveLanManagementDS*>( p->child( "802.11 DS" ) );
132 int channel = ds ? ds->channel() : -1; 134 int channel = ds ? ds->channel() : -1;
133 135
134 OWaveLanPacket* header = static_cast<OWaveLanPacket*>( p->child( "802.11" ) ); 136 OWaveLanPacket* header = static_cast<OWaveLanPacket*>( p->child( "802.11" ) );
135 netView()->addNewItem( type, essid, header->macAddress2().toString(), header->usesWep(), channel, 0 ); 137 netView()->addNewItem( type, essid, header->macAddress2().toString(), header->usesWep(), channel, 0 );
136} 138}
@@ -140,48 +142,49 @@ void Wellenreiter::startStopClicked()
140 if ( sniffing ) 142 if ( sniffing )
141 { 143 {
142 disconnect( SIGNAL( receivedPacket(OPacket*) ), this, SLOT( receivePacket(OPacket*) ) ); 144 disconnect( SIGNAL( receivedPacket(OPacket*) ), this, SLOT( receivePacket(OPacket*) ) );
143 145
144 iface->setChannelHopping(); // stop hopping channels 146 iface->setChannelHopping(); // stop hopping channels
145 pcap->close(); 147 pcap->close();
146 sniffing = false; 148 sniffing = false;
147 #ifdef QWS 149 #ifdef QWS
148 oApp->setTitle(); 150 oApp->setTitle();
149 #else 151 #else
150 qApp->mainWidget()->setCaption( "Wellenreiter II" ); 152 qApp->mainWidget()->setCaption( "Wellenreiter II" );
151 #endif 153 #endif
152 154
153 // get interface name from config window 155 // get interface name from config window
154 const QString& interface = configwindow->interfaceName->currentText(); 156 const QString& interface = configwindow->interfaceName->currentText();
155 ONetwork* net = ONetwork::instance(); 157 ONetwork* net = ONetwork::instance();
156 iface = static_cast<OWirelessNetworkInterface*>(net->interface( interface )); 158 iface = static_cast<OWirelessNetworkInterface*>(net->interface( interface ));
157 159
158 // switch off monitor mode 160 // switch off monitor mode
159 iface->setMonitorMode( false ); 161 iface->setMonitorMode( false );
160 // switch off promisc flag 162 // switch off promisc flag
161 iface->setPromiscuousMode( false ); 163 iface->setPromiscuousMode( false );
162 164
163 system( "cardctl reset; sleep 1" ); //FIXME: Use OProcess 165 system( "cardctl reset; sleep 1" ); //FIXME: Use OProcess
166 logwindow->log( "(i) Stopped Scanning." );
164 167
165 // message the user 168 // message the user
166 QMessageBox::information( this, "Wellenreiter II", "Your wireless card\nshould now be usable again." ); 169 QMessageBox::information( this, "Wellenreiter II", "Your wireless card\nshould now be usable again." );
167 } 170 }
168 171
169 else 172 else
170 { 173 {
171 // get configuration from config window 174 // get configuration from config window
172 175
173 const QString& interface = configwindow->interfaceName->currentText(); 176 const QString& interface = configwindow->interfaceName->currentText();
174 const int cardtype = configwindow->daemonDeviceType(); 177 const int cardtype = configwindow->daemonDeviceType();
175 const int interval = configwindow->daemonHopInterval(); 178 const int interval = configwindow->daemonHopInterval();
176 179
177 if ( ( interface == "" ) || ( cardtype == 0 ) ) 180 if ( ( interface == "" ) || ( cardtype == 0 ) )
178 { 181 {
179 QMessageBox::information( this, "Wellenreiter II", "Your device is not\nproperly configured. Please reconfigure!" ); 182 QMessageBox::information( this, "Wellenreiter II", "Your device is not\nproperly configured. Please reconfigure!" );
180 return; 183 return;
181 } 184 }
182 185
183 // configure device 186 // configure device
184 187
185 ONetwork* net = ONetwork::instance(); 188 ONetwork* net = ONetwork::instance();
186 iface = static_cast<OWirelessNetworkInterface*>(net->interface( interface )); 189 iface = static_cast<OWirelessNetworkInterface*>(net->interface( interface ));
187 190
@@ -201,34 +204,34 @@ void Wellenreiter::startStopClicked()
201 if ( !iface->monitorMode() ) 204 if ( !iface->monitorMode() )
202 { 205 {
203 QMessageBox::warning( this, "Wellenreiter II", "Can't set device into monitor mode." ); 206 QMessageBox::warning( this, "Wellenreiter II", "Can't set device into monitor mode." );
204 return; 207 return;
205 } 208 }
206 209
207 // open pcap and start sniffing 210 // open pcap and start sniffing
208 pcap->open( interface ); 211 pcap->open( interface );
209 212
210 if ( !pcap->isOpen() ) 213 if ( !pcap->isOpen() )
211 { 214 {
212 QMessageBox::warning( this, "Wellenreiter II", "Can't open packet capturer:\n" + QString(strerror( errno ) )); 215 QMessageBox::warning( this, "Wellenreiter II", "Can't open packet capturer:\n" + QString(strerror( errno ) ));
213 return; 216 return;
214 } 217 }
215 218
216 // set capturer to non-blocking mode 219 // set capturer to non-blocking mode
217 pcap->setBlocking( false ); 220 pcap->setBlocking( false );
218 221
219 // start channel hopper 222 // start channel hopper
220 iface->setChannelHopping( 1000 ); //use interval from config window 223 iface->setChannelHopping( 1000 ); //use interval from config window
221 224
222 // connect 225 // connect
223 connect( pcap, SIGNAL( receivedPacket(OPacket*) ), this, SLOT( receivePacket(OPacket*) ) ); 226 connect( pcap, SIGNAL( receivedPacket(OPacket*) ), this, SLOT( receivePacket(OPacket*) ) );
224 227
225 logwindow->log( "(i) Daemon has been started." ); 228 logwindow->log( "(i) Started Scanning." );
226 #ifdef QWS 229 #ifdef QWS
227 oApp->setTitle( "Scanning ..." ); 230 oApp->setTitle( "Scanning ..." );
228 #else 231 #else
229 qApp->mainWidget()->setCaption( "Wellenreiter II / Scanning ..." ); 232 qApp->mainWidget()->setCaption( "Wellenreiter II / Scanning ..." );
230 #endif 233 #endif
231 sniffing = true; 234 sniffing = true;
232 235
233 } 236 }
234} 237}