summaryrefslogtreecommitdiff
path: root/examples/opienet/miniwellenreiter
Unidiff
Diffstat (limited to 'examples/opienet/miniwellenreiter') (more/less context) (ignore whitespace changes)
-rw-r--r--examples/opienet/miniwellenreiter/.cvsignore8
-rw-r--r--examples/opienet/miniwellenreiter/miniwellenreiter.cpp234
-rw-r--r--examples/opienet/miniwellenreiter/miniwellenreiter.pro19
3 files changed, 261 insertions, 0 deletions
diff --git a/examples/opienet/miniwellenreiter/.cvsignore b/examples/opienet/miniwellenreiter/.cvsignore
new file mode 100644
index 0000000..e0e629a
--- a/dev/null
+++ b/examples/opienet/miniwellenreiter/.cvsignore
@@ -0,0 +1,8 @@
1miniwellenreiter
2Makefile*
3obj
4moc*
5*moc
6*.o
7~*
8
diff --git a/examples/opienet/miniwellenreiter/miniwellenreiter.cpp b/examples/opienet/miniwellenreiter/miniwellenreiter.cpp
new file mode 100644
index 0000000..ebd3b5f
--- a/dev/null
+++ b/examples/opienet/miniwellenreiter/miniwellenreiter.cpp
@@ -0,0 +1,234 @@
1#include <qdict.h>
2#include <qsocketnotifier.h>
3#include <qstring.h>
4#include <opie2/onetwork.h>
5#include <qapplication.h>
6#include <opie2/opcap.h>
7#include <cerrno>
8#include <cstdio>
9#include <cstdlib>
10#include <cstring>
11
12
13using namespace Opie::Net;
14//======================== Station help class ===============================
15
16class Station
17{
18 public:
19 Station( QString t, int c, bool w ) : type(t), channel(c), wep(w), beacons(1) {};
20 ~Station() {};
21
22 QString type;
23 int channel;
24 bool wep;
25 int beacons;
26};
27
28QDict<Station> stations;
29
30//======================== Application class ===============================
31
32class Wellenreiter : public QApplication
33{
34Q_OBJECT
35public:
36 Wellenreiter( int argc, char** argv ) : QApplication( argc, argv ), channel( 1 )
37 {
38
39 ONetwork* net = ONetwork::instance();
40
41 if ( argc < 3 )
42 {
43 printf( "Usage: ./%s <interface> <driver> <interval>\n", argv[0] );
44 printf( "\n" );
45 printf( "Valid wireless interfaces (detected) are:\n" );
46
47 ONetwork::InterfaceIterator it = net->iterator();
48 while ( it.current() )
49 {
50 if ( it.current()->isWireless() )
51 {
52 printf( " - '%s' (MAC=%s) (IPv4=%s)\n", (const char*) it.current()->name(),
53 (const char*) it.current()->macAddress().toString(),
54 (const char*) it.current()->ipV4Address() );
55 }
56 ++it;
57 }
58 exit( -1 );
59 }
60
61 printf( "*******************************************************************\n" );
62 printf( "* Wellenreiter mini edition 1.0.0 (C) 2003 Michael 'Mickey' Lauer *\n" );
63 printf( "*******************************************************************\n" );
64 printf( "\n\n" );
65
66 QString interface( argv[1] );
67 QString driver( argv[2] );
68
69 printf( "Trying to use '%s' as %s-controlled device...\n", (const char*) interface, (const char*) driver );
70
71 // sanity checks before downcasting
72 ONetworkInterface* iface = net->interface( interface );
73 if ( !iface )
74 {
75 printf( "Interface '%s' doesn't exist. Exiting.\n", (const char*) interface );
76 exit( -1 );
77 }
78 if ( !iface->isWireless() )
79 {
80 printf( "Interface '%s' doesn't support wireless extensions. Exiting.\n", (const char*) interface );
81 exit( -1 );
82 }
83
84 // downcast should be safe now
85 wiface = (OWirelessNetworkInterface*) iface;
86 printf( "Using wireless interface '%s' for scanning (current SSID is '%s')...\n", (const char*) interface, (const char*) wiface->SSID() );
87
88 // ifconfig +promisc the interface to receive all packets
89 if ( !wiface->promiscuousMode() )
90 {
91 printf( "Interface status is not promisc... switching to promisc... " );
92 wiface->setPromiscuousMode( true );
93 if ( !wiface->promiscuousMode() )
94 {
95 printf( "failed (%s). Exiting.\n", strerror( errno ) );
96 exit( -1 );
97 }
98 else
99 {
100 printf( "ok.\n" );
101 }
102 }
103 else
104 printf( "Interface status is already promisc - good.\n" );
105
106 // connect a monitoring strategy to the interface
107 if ( driver == "orinoco" )
108 new OOrinocoMonitoringInterface( wiface, false );
109 else
110 if ( driver == "hostap" )
111 new OHostAPMonitoringInterface( wiface, false );
112 else
113 if ( driver == "wlan-ng" )
114 new OWlanNGMonitoringInterface( wiface, false );
115 else
116 {
117 printf( "Unknown driver. Exiting\n" );
118 exit( -1 );
119 }
120
121 // enable monitoring mode
122 printf( "Enabling monitor mode...\n" );
123 wiface->setMode( "monitor" );
124
125 // open a packet capturer
126 cap = new OPacketCapturer();
127 cap->open( interface );
128 if ( !cap->isOpen() )
129 {
130 printf( "Unable to open libpcap (%s). Exiting.\n", strerror( errno ) );
131 exit( -1 );
132 }
133
134 // set capturer to non-blocking mode
135 cap->setBlocking( false );
136
137 // start channel hopper
138 //wiface->setChannelHopping( 1000 );
139
140 // connect
141 connect( cap, SIGNAL( receivedPacket(OPacket*) ), this, SLOT( receivePacket(OPacket*) ) );
142 // timer
143 startTimer( 1000 );
144
145 }
146
147 ~Wellenreiter() {};
148
149public slots:
150 virtual void timerEvent(QTimerEvent* e)
151 {
152 wiface->setChannel( channel++ );
153 if ( channel == 14 ) channel = 1;
154 }
155
156 void receivePacket(OPacket* p)
157 {
158 if (!p)
159 {
160 printf( "(empty packet received)\n" );
161 return;
162 }
163
164 OWaveLanManagementPacket* beacon = (OWaveLanManagementPacket*) p->child( "802.11 Management" );
165 if ( beacon )
166 {
167 OWaveLanManagementSSID* ssid = static_cast<OWaveLanManagementSSID*>( p->child( "802.11 SSID" ) );
168 QString essid = ssid ? ssid->ID() : QString::fromLatin1( "<unknown>" );
169
170 if ( stations.find( essid ) )
171 stations[essid]->beacons++;
172 else
173 {
174 printf( "found new network @ channel %d, SSID = '%s'\n", wiface->channel(), (const char*) essid );
175 stations.insert( essid, new Station( "unknown", wiface->channel(),
176 ((OWaveLanPacket*) beacon->parent())->usesWep() ) );
177 }
178 return;
179 }
180
181 OWaveLanDataPacket* data = (OWaveLanDataPacket*) p->child( "802.11 Data" );
182 if ( data )
183 {
184 OWaveLanPacket* wlan = (OWaveLanPacket*) p->child( "802.11" );
185 if ( wlan->fromDS() && !wlan->toDS() )
186 {
187 printf( "FromDS: '%s' -> '%s' via '%s'\n",
188 (const char*) wlan->macAddress3().toString(true),
189 (const char*) wlan->macAddress1().toString(true),
190 (const char*) wlan->macAddress2().toString(true) );
191 }
192 else
193 if ( !wlan->fromDS() && wlan->toDS() )
194 {
195 printf( "ToDS: '%s' -> '%s' via '%s'\n",
196 (const char*) wlan->macAddress2().toString(true),
197 (const char*) wlan->macAddress3().toString(true),
198 (const char*) wlan->macAddress1().toString(true) );
199 }
200 else
201 if ( wlan->fromDS() && wlan->toDS() )
202 {
203 printf( "WSD(bridge): '%s' -> '%s' via '%s' and '%s'\n",
204 (const char*) wlan->macAddress4().toString(true),
205 (const char*) wlan->macAddress3().toString(true),
206 (const char*) wlan->macAddress1().toString(true),
207 (const char*) wlan->macAddress2().toString(true) );
208 }
209 else
210 {
211 printf( "IBSS(AdHoc): '%s' -> '%s' (Cell: '%s')'\n",
212 (const char*) wlan->macAddress2().toString(true),
213 (const char*) wlan->macAddress1().toString(true),
214 (const char*) wlan->macAddress3().toString(true) );
215 }
216 return;
217 }
218 }
219private:
220 OPacketCapturer* cap;
221 OWirelessNetworkInterface* wiface;
222 int channel;
223};
224
225
226int main( int argc, char** argv )
227{
228 Wellenreiter w( argc, argv );
229 w.exec();
230 return 0;
231}
232
233#include "miniwellenreiter.moc"
234
diff --git a/examples/opienet/miniwellenreiter/miniwellenreiter.pro b/examples/opienet/miniwellenreiter/miniwellenreiter.pro
new file mode 100644
index 0000000..d7c1fc2
--- a/dev/null
+++ b/examples/opienet/miniwellenreiter/miniwellenreiter.pro
@@ -0,0 +1,19 @@
1TEMPLATE = app
2CONFIG = qt warn_on
3HEADERS =
4SOURCES = miniwellenreiter.cpp
5INCLUDEPATH += $(OPIEDIR)/include
6DEPENDPATH += $(OPIEDIR)/include
7LIBS += -lopiecore2 -lopienet2
8TARGET = miniwellenreiter
9MOC_DIR = moc
10OBJECTS_DIR = obj
11
12include( $(OPIEDIR)/include.pro )
13
14!isEmpty( LIBPCAP_INC_DIR ) {
15 INCLUDEPATH = $$LIBPCAP_INC_DIR $$INCLUDEPATH
16}
17!isEmpty( LIBPCAP_LIB_DIR ) {
18 LIBS = -L$$LIBPCAP_LIB_DIR $$LIBS
19}