author | max <max> | 2002-11-23 20:33:08 (UTC) |
---|---|---|
committer | max <max> | 2002-11-23 20:33:08 (UTC) |
commit | f673a2924c8d3495a99e0eba7073a3419dd937bf (patch) (unidiff) | |
tree | fdd5e641fef00d8e087bbec5a741a24ec2f80f62 | |
parent | 2f11392ab9292df21a6e1374800954a6b405ee9b (diff) | |
download | opie-f673a2924c8d3495a99e0eba7073a3419dd937bf.zip opie-f673a2924c8d3495a99e0eba7073a3419dd937bf.tar.gz opie-f673a2924c8d3495a99e0eba7073a3419dd937bf.tar.bz2 |
Sniffer changed to pcap_next
-rw-r--r-- | noncore/net/wellenreiter/daemon/source/sniffer.cc | 18 |
1 files changed, 14 insertions, 4 deletions
diff --git a/noncore/net/wellenreiter/daemon/source/sniffer.cc b/noncore/net/wellenreiter/daemon/source/sniffer.cc index 65c8579..be64d67 100644 --- a/noncore/net/wellenreiter/daemon/source/sniffer.cc +++ b/noncore/net/wellenreiter/daemon/source/sniffer.cc | |||
@@ -1,165 +1,175 @@ | |||
1 | /* | 1 | /* |
2 | * rfmon mode sniffer | 2 | * rfmon mode sniffer |
3 | * This works only with cisco wireless cards with an rfmon | 3 | * This works only with cisco wireless cards with an rfmon |
4 | * able driver and not with wifi stuff. | 4 | * able driver and not with wifi stuff. |
5 | * | 5 | * |
6 | * $Id$ | 6 | * $Id$ |
7 | */ | 7 | */ |
8 | 8 | ||
9 | #include "config.hh" | 9 | #include "config.hh" |
10 | #include "cardmode.hh" | 10 | #include "cardmode.hh" |
11 | #include "sniffer.hh" | 11 | #include "sniffer.hh" |
12 | #include "ieee802_11.hh" | 12 | #include "ieee802_11.hh" |
13 | #include "extract.hh" | 13 | #include "extract.hh" |
14 | 14 | ||
15 | int main(void) | 15 | int main(void) |
16 | { | 16 | { |
17 | if(card_into_monitormode (SNIFFER_DEVICE, CARD_TYPE_NG) < 0) | 17 | if(card_into_monitormode (SNIFFER_DEVICE, CARD_TYPE_NG) < 0) |
18 | return 0; | 18 | return 0; |
19 | start_sniffing (SNIFFER_DEVICE); | 19 | start_sniffing (SNIFFER_DEVICE); |
20 | 20 | ||
21 | return 1; | 21 | return 1; |
22 | } | 22 | } |
23 | 23 | ||
24 | int start_sniffing (char * device) | 24 | int start_sniffing (char * device) |
25 | { | 25 | { |
26 | 26 | ||
27 | pcap_t *handletopcap; | 27 | pcap_t *handletopcap; /* The handle to the libpcap */ |
28 | char errbuf[PCAP_ERRBUF_SIZE]; | 28 | char errbuf[PCAP_ERRBUF_SIZE]; /* The errorbuffer of libpacap */ |
29 | struct pcap_pkthdr header; /* The packet header from pcap*/ | ||
30 | const u_char *packet; /* The actual packet content*/ | ||
29 | 31 | ||
30 | /* opening the pcap for sniffing */ | 32 | /* opening the pcap for sniffing */ |
31 | handletopcap = pcap_open_live(device, BUFSIZ, 1, 1000, errbuf); | 33 | handletopcap = pcap_open_live(device, BUFSIZ, 1, 1000, errbuf); |
32 | 34 | ||
33 | #ifdef HAVE_PCAP_NONBLOCK | 35 | #ifdef HAVE_PCAP_NONBLOCK |
34 | pcap_setnonblock(handletopcap, 1, errstr); | 36 | pcap_setnonblock(handletopcap, 1, errstr); |
35 | #endif | 37 | #endif |
36 | /*start scanning */ | 38 | /*start scanning */ |
37 | pcap_loop(handletopcap,-1,process_packets,NULL); | 39 | //pcap_loop(handletopcap,-1,process_packets,NULL); |
40 | /* Loope endless */ | ||
41 | while(1) | ||
42 | { | ||
43 | /* Grab one single packet */ | ||
44 | packet = pcap_next(handletopcap, &header); | ||
45 | |||
46 | /* process the packet */ | ||
47 | process_packets(NULL,&header,*&packet); | ||
48 | } | ||
38 | 49 | ||
39 | printf("\nDone processing packets... wheew!\n"); | 50 | printf("\nDone processing packets... wheew!\n"); |
40 | return 1; | 51 | return 1; |
41 | } | 52 | } |
42 | 53 | ||
43 | void process_packets(u_char *useless,const struct pcap_pkthdr* pkthdr,const u_char* packet) | 54 | void process_packets(u_char *useless,const struct pcap_pkthdr* pkthdr,const u_char* packet) |
44 | { | 55 | { |
45 | u_int caplen = pkthdr->caplen; | 56 | u_int caplen = pkthdr->caplen; |
46 | u_int length = pkthdr->len; | 57 | u_int length = pkthdr->len; |
47 | u_int16_t fc; | 58 | u_int16_t fc; |
48 | u_int HEADER_LENGTH; | 59 | u_int HEADER_LENGTH; |
49 | 60 | ||
50 | /* pinfo holds all interresting information for us */ | 61 | /* pinfo holds all interresting information for us */ |
51 | struct packetinfo pinfo; | 62 | struct packetinfo pinfo; |
52 | struct packetinfo *pinfoptr; | 63 | struct packetinfo *pinfoptr; |
53 | pinfoptr=&pinfo; | 64 | pinfoptr=&pinfo; |
54 | 65 | ||
55 | pinfoptr->isvalid = 0; | 66 | pinfoptr->isvalid = 0; |
56 | pinfoptr->pktlen = pkthdr->len; | 67 | pinfoptr->pktlen = pkthdr->len; |
57 | 68 | ||
58 | if (caplen < IEEE802_11_FC_LEN) | 69 | if (caplen < IEEE802_11_FC_LEN) |
59 | { | 70 | { |
60 | /* This is a garbage packet, because is does not long enough | 71 | /* This is a garbage packet, because is does not long enough |
61 | to hold a 802.11b header */ | 72 | to hold a 802.11b header */ |
62 | pinfoptr->isvalid = 0; | 73 | pinfoptr->isvalid = 0; |
63 | return; | 74 | return; |
64 | } | 75 | } |
65 | 76 | ||
66 | /* Gets the framecontrol bits (2bytes long) */ | 77 | /* Gets the framecontrol bits (2bytes long) */ |
67 | fc = EXTRACT_LE_16BITS(packet); | 78 | fc = EXTRACT_LE_16BITS(packet); |
68 | 79 | ||
69 | HEADER_LENGTH = GetHeaderLength(fc); | 80 | HEADER_LENGTH = GetHeaderLength(fc); |
70 | 81 | ||
71 | if (caplen < HEADER_LENGTH) | 82 | if (caplen < HEADER_LENGTH) |
72 | { | 83 | { |
73 | /* This is a garbage packet, because it is not long enough | 84 | /* This is a garbage packet, because it is not long enough |
74 | to hold a correct header of its type */ | 85 | to hold a correct header of its type */ |
75 | pinfoptr->isvalid = 0; | 86 | pinfoptr->isvalid = 0; |
76 | return; | 87 | return; |
77 | } | 88 | } |
78 | 89 | ||
79 | /* Decode 802.11b header out of the packet */ | 90 | /* Decode 802.11b header out of the packet */ |
80 | if (decode_80211b_hdr(packet,pinfoptr) == 0) | 91 | if (decode_80211b_hdr(packet,pinfoptr) == 0) |
81 | { | 92 | { |
82 | /* Justification of the ofset to further process the packet */ | 93 | /* Justification of the ofset to further process the packet */ |
83 | length -= HEADER_LENGTH; | 94 | length -= HEADER_LENGTH; |
84 | caplen -= HEADER_LENGTH; | 95 | caplen -= HEADER_LENGTH; |
85 | packet += HEADER_LENGTH; | 96 | packet += HEADER_LENGTH; |
86 | } | 97 | } |
87 | else | 98 | else |
88 | { /* Something is wrong,could not be a correct packet */ | 99 | { /* Something is wrong,could not be a correct packet */ |
89 | return; | 100 | return; |
90 | } | 101 | } |
91 | 102 | ||
92 | switch (FC_TYPE(fc)) | 103 | switch (FC_TYPE(fc)) |
93 | { | 104 | { |
94 | /* Is it a managemnet frame? */ | 105 | /* Is it a managemnet frame? */ |
95 | case T_MGMT: | 106 | case T_MGMT: |
96 | switch (FC_SUBTYPE(fc)) | 107 | switch (FC_SUBTYPE(fc)) |
97 | { /* Is it a beacon frame? */ | 108 | { /* Is it a beacon frame? */ |
98 | case ST_BEACON: | 109 | case ST_BEACON: |
99 | if (handle_beacon(fc, packet,pinfoptr) ==0) | 110 | if (handle_beacon(fc, packet,pinfoptr) ==0) |
100 | { | 111 | { |
101 | printf ("\n\tOn network : %s",pinfoptr->ssid); | ||
102 | if (!strcmp(pinfoptr->desthwaddr,"ff:ff:ff:ff:ff:ff") == 0) | 112 | if (!strcmp(pinfoptr->desthwaddr,"ff:ff:ff:ff:ff:ff") == 0) |
103 | { | 113 | { |
104 | /* Every beacon must have the broadcast as destination | 114 | /* Every beacon must have the broadcast as destination |
105 | so it must be a shitti packet */ | 115 | so it must be a shitti packet */ |
106 | pinfoptr->isvalid = 0; | 116 | pinfoptr->isvalid = 0; |
107 | return; | 117 | return; |
108 | } | 118 | } |
109 | 119 | ||
110 | if (pinfoptr->cap_ESS == pinfoptr->cap_IBSS) | 120 | if (pinfoptr->cap_ESS == pinfoptr->cap_IBSS) |
111 | { | 121 | { |
112 | /* Only one of both are possible, so must be | 122 | /* Only one of both are possible, so must be |
113 | a noise packet, if this comes up */ | 123 | a noise packet, if this comes up */ |
114 | pinfoptr->isvalid = 0; | 124 | pinfoptr->isvalid = 0; |
115 | return; | 125 | return; |
116 | } | 126 | } |
117 | if (pinfoptr->channel < 1 || pinfoptr->channel > 14) | 127 | if (pinfoptr->channel < 1 || pinfoptr->channel > 14) |
118 | { | 128 | { |
119 | /* Only channels between 1 and 14 are possible | 129 | /* Only channels between 1 and 14 are possible |
120 | others must be noise packets */ | 130 | others must be noise packets */ |
121 | pinfoptr->isvalid = 0; | 131 | pinfoptr->isvalid = 0; |
122 | return; | 132 | return; |
123 | } | 133 | } |
124 | 134 | ||
125 | /* Here should be the infos to the gui issued */ | 135 | /* Here should be the infos to the gui issued */ |
126 | if (pinfoptr->cap_ESS == 1 &&pinfoptr->cap_IBSS ==0) | 136 | if (pinfoptr->cap_ESS == 1 &&pinfoptr->cap_IBSS ==0) |
127 | { | 137 | { |
128 | printf ("\nHave found an accesspoint:"); | 138 | printf ("\nHave found an accesspoint:"); |
129 | } | 139 | } |
130 | else if(pinfoptr->cap_ESS == 0 && pinfoptr->cap_IBSS == 1) | 140 | else if(pinfoptr->cap_ESS == 0 && pinfoptr->cap_IBSS == 1) |
131 | { | 141 | { |
132 | printf ("\nHave found an AD-HOC station:"); | 142 | printf ("\nHave found an AD-HOC station:"); |
133 | 143 | ||
134 | } | 144 | } |
135 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) | 145 | if (strcmp (pinfoptr->ssid,NONBROADCASTING) ==0) |
136 | { | 146 | { |
137 | printf ("\n\tOn a non-broadcasting network"); | 147 | printf ("\n\tOn a non-broadcasting network"); |
138 | } | 148 | } |
139 | else | 149 | else |
140 | { | 150 | { |
141 | printf ("\n\tOn network : %s",pinfoptr->ssid); | 151 | printf ("\n\tOn network : %s",pinfoptr->ssid); |
142 | } | 152 | } |
143 | printf ("\n\tLen SSID : %d",pinfoptr->ssid_len); | 153 | printf ("\n\tLen SSID : %d",pinfoptr->ssid_len); |
144 | printf ("\n\tOn Channel : %d",pinfoptr->channel); | 154 | printf ("\n\tOn Channel : %d",pinfoptr->channel); |
145 | printf ("\n\tEncryption : %s", pinfoptr->cap_WEP ? "ON" : "OFF"); | 155 | printf ("\n\tEncryption : %s", pinfoptr->cap_WEP ? "ON" : "OFF"); |
146 | printf ("\n\tMacaddress : %s",pinfoptr->sndhwaddr); | 156 | printf ("\n\tMacaddress : %s",pinfoptr->sndhwaddr); |
147 | printf ("\n\tBssid : %s",pinfoptr->bssid); | 157 | printf ("\n\tBssid : %s",pinfoptr->bssid); |
148 | printf ("\n\tDest : %s\n",pinfoptr->desthwaddr); | 158 | printf ("\n\tDest : %s\n",pinfoptr->desthwaddr); |
149 | } | 159 | } |
150 | break; | 160 | break; |
151 | default: | 161 | default: |
152 | printf("Unknown IEEE802.11 frame subtype (%d)",FC_SUBTYPE(fc)); | 162 | printf("Unknown IEEE802.11 frame subtype (%d)",FC_SUBTYPE(fc)); |
153 | break; | 163 | break; |
154 | } /* End of switch over different mgt frame types */ | 164 | } /* End of switch over different mgt frame types */ |
155 | 165 | ||
156 | break; | 166 | break; |
157 | case T_CTRL: | 167 | case T_CTRL: |
158 | //decode_control_frames(fc, packet); | 168 | //decode_control_frames(fc, packet); |
159 | printf ("Its a control frame"); | 169 | printf ("Its a control frame"); |
160 | break; | 170 | break; |
161 | case T_DATA: | 171 | case T_DATA: |
162 | //decode_data_frames(fc, packet); | 172 | //decode_data_frames(fc, packet); |
163 | printf ("Its a date frame"); | 173 | printf ("Its a date frame"); |
164 | break; | 174 | break; |
165 | default: | 175 | default: |