author | mickeyl <mickeyl> | 2003-05-04 20:38:24 (UTC) |
---|---|---|
committer | mickeyl <mickeyl> | 2003-05-04 20:38:24 (UTC) |
commit | 09dceae91b14a4b2d936ebfc6c7c276686c2b98c (patch) (unidiff) | |
tree | b8ebc6f92ca0008a90ef036c3c5ba873a2f59670 | |
parent | 8409a251d52b59585889e1bcaa278a6b847db2fc (diff) | |
download | opie-09dceae91b14a4b2d936ebfc6c7c276686c2b98c.zip opie-09dceae91b14a4b2d936ebfc6c7c276686c2b98c.tar.gz opie-09dceae91b14a4b2d936ebfc6c7c276686c2b98c.tar.bz2 |
add parsing of ARP packets
-rw-r--r-- | libopie2/opienet/802_11_user.h | 47 | ||||
-rw-r--r-- | libopie2/opienet/opcap.cpp | 65 | ||||
-rw-r--r-- | libopie2/opienet/opcap.h | 24 |
3 files changed, 110 insertions, 26 deletions
diff --git a/libopie2/opienet/802_11_user.h b/libopie2/opienet/802_11_user.h index cd98503..ad84514 100644 --- a/libopie2/opienet/802_11_user.h +++ b/libopie2/opienet/802_11_user.h | |||
@@ -1,152 +1,153 @@ | |||
1 | #ifndef IEEE_802_11 | 1 | #ifndef IEEE_802_11 |
2 | #define IEEE_802_11 | 2 | #define IEEE_802_11 |
3 | 3 | ||
4 | enum ieee_802_11_link_status_failure_reason { | 4 | enum ieee_802_11_link_status_failure_reason { |
5 | reserved0, Unspecified=1, Previous_not_valid, | 5 | reserved0, Unspecified=1, Previous_not_valid, |
6 | Sender_Quits_ESS_or_IBSS, | 6 | Sender_Quits_ESS_or_IBSS, |
7 | Due_Inactivity, AP_Overload, | 7 | Due_Inactivity, AP_Overload, |
8 | Class_2_from_NonAuth, | 8 | Class_2_from_NonAuth, |
9 | Class_3_from_NonAuth, | 9 | Class_3_from_NonAuth, |
10 | Sender_Quits_BSS, | 10 | Sender_Quits_BSS, |
11 | Association_requester_not_authenticated, | 11 | Association_requester_not_authenticated, |
12 | Reserved10 | 12 | Reserved10 |
13 | }; | 13 | }; |
14 | 14 | ||
15 | 15 | ||
16 | #define IEEE_802_11_LINK_STATUS_FAILURE_REASON_STRINGS \ | 16 | #define IEEE_802_11_LINK_STATUS_FAILURE_REASON_STRINGS \ |
17 | {\ | 17 | {\ |
18 | {reserved0, 0xff," Reserved reason "},\ | 18 | {reserved0, 0xff," Reserved reason "},\ |
19 | {Unspecified, 0xff," Unspecified Reason "},\ | 19 | {Unspecified, 0xff," Unspecified Reason "},\ |
20 | {Previous_not_valid,0xff," Previous Authentication no longer valid "},\ | 20 | {Previous_not_valid,0xff," Previous Authentication no longer valid "},\ |
21 | {Sender_Quits_ESS_or_IBSS,0xff," Deauthenticated because sending station is leaving (has left) IBSS or ESS "},\ | 21 | {Sender_Quits_ESS_or_IBSS,0xff," Deauthenticated because sending station is leaving (has left) IBSS or ESS "},\ |
22 | {Due_Inactivity,0xff," Disassociated due to inactivity "},\ | 22 | {Due_Inactivity,0xff," Disassociated due to inactivity "},\ |
23 | {AP_Overload, 0xff," Disassociated because AP is unable to handle all currently associated stations "},\ | 23 | {AP_Overload, 0xff," Disassociated because AP is unable to handle all currently associated stations "},\ |
24 | {Class_2_from_NonAuth,0xff," Class 2 frame received from non-Authenticated station"},\ | 24 | {Class_2_from_NonAuth,0xff," Class 2 frame received from non-Authenticated station"},\ |
25 | {Class_3_from_NonAuth,0xff," Class 3 frame received from nonAssociated station"},\ | 25 | {Class_3_from_NonAuth,0xff," Class 3 frame received from nonAssociated station"},\ |
26 | {Sender_Quits_BSS,0xff," Disassociated because sending station is leaving (has left) BSS"},\ | 26 | {Sender_Quits_BSS,0xff," Disassociated because sending station is leaving (has left) BSS"},\ |
27 | {Association_requester_not_authenticated,0xff," Station requesting (Re)Association is not Authenticated with responding station"},\ | 27 | {Association_requester_not_authenticated,0xff," Station requesting (Re)Association is not Authenticated with responding station"},\ |
28 | {Reserved10, 0xff," Reserved"},\ | 28 | {Reserved10, 0xff," Reserved"},\ |
29 | {0,0,NULL}\ | 29 | {0,0,NULL}\ |
30 | }; | 30 | }; |
31 | 31 | ||
32 | 32 | ||
33 | 33 | ||
34 | struct ieee_802_11_header { | 34 | struct ieee_802_11_header { |
35 | u_int16_tframe_control;// needs to be subtyped | 35 | u_int16_tframe_control;// needs to be subtyped |
36 | u_int16_tduration; | 36 | u_int16_tduration; |
37 | u_int8_tmac1[6]; | 37 | u_int8_tmac1[6]; |
38 | u_int8_tmac2[6]; | 38 | u_int8_tmac2[6]; |
39 | u_int8_tmac3[6]; | 39 | u_int8_tmac3[6]; |
40 | u_int16_tSeqCtl; | 40 | u_int16_tSeqCtl; |
41 | u_int8_tmac4[6]; | 41 | u_int8_tmac4[6]; |
42 | // u_int16_tgapLen; | 42 | // u_int16_tgapLen; |
43 | // u_int8_tgap[8]; | 43 | // u_int8_tgap[8]; |
44 | }; | 44 | }; |
45 | 45 | ||
46 | 46 | ||
47 | struct ieee_802_3_header { | 47 | struct ieee_802_3_header { |
48 | 48 | ||
49 | u_int16_tstatus; | 49 | u_int16_tstatus; |
50 | u_int16_tpayload_length; | 50 | u_int16_tpayload_length; |
51 | u_int8_tdst_mac[6]; | 51 | u_int8_tdst_mac[6]; |
52 | u_int8_tsrc_mac[6]; | 52 | u_int8_tsrc_mac[6]; |
53 | 53 | ||
54 | }; | 54 | }; |
55 | 55 | ||
56 | #define P80211_OUI_LEN 3 | 56 | #define P80211_OUI_LEN 3 |
57 | 57 | ||
58 | struct ieee_802_11_snap_header { | ||
59 | |||
60 | u_int8_t dsap; /* always 0xAA */ | ||
61 | u_int8_t ssap; /* always 0xAA */ | ||
62 | u_int8_t ctrl; /* always 0x03 */ | ||
63 | u_int8_t oui[P80211_OUI_LEN]; /* organizational universal id */ | ||
64 | |||
65 | } __attribute__ ((packed)); | ||
66 | |||
67 | #define P80211_LLC_OUI_LEN 3 | ||
68 | |||
69 | struct ieee_802_11_802_1H_header { | ||
70 | |||
71 | u_int8_t dsap; | ||
72 | u_int8_t ssap; /* always 0xAA */ | ||
73 | u_int8_t ctrl; /* always 0x03 */ | ||
74 | u_int8_t oui[P80211_OUI_LEN]; /* organizational universal id */ | ||
75 | u_int16_t unknown1; /* packet type ID fields */ | ||
76 | u_int16_t unknown2; /* here is something like length in some cases */ | ||
77 | } __attribute__ ((packed)); | ||
78 | |||
79 | struct ieee_802_11_802_2_header { | 58 | struct ieee_802_11_802_2_header { |
80 | 59 | ||
81 | u_int8_t dsap; | 60 | u_int8_t dsap; |
82 | u_int8_t ssap; /* always 0xAA */ | 61 | u_int8_t ssap; /* always 0xAA */ |
83 | u_int8_t ctrl; /* always 0x03 */ | 62 | u_int8_t ctrl; /* always 0x03 */ |
84 | u_int8_t oui[P80211_OUI_LEN]; /* organizational universal id */ | 63 | u_int8_t oui[P80211_OUI_LEN]; /* organizational universal id */ |
85 | u_int16_t type; /* packet type ID field */ | 64 | u_int16_t type; /* packet type ID field */ |
65 | }; | ||
86 | 66 | ||
87 | } __attribute__ ((packed)); | 67 | /* See RFC 826 for protocol description. ARP packets are variable |
88 | 68 | in size; the arphdr structure defines the fixed-length portion. | |
69 | Protocol type values are the same as those for 10 Mb/s Ethernet. | ||
70 | It is followed by the variable-sized fields ar_sha, arp_spa, | ||
71 | arp_tha and arp_tpa in that order, according to the lengths | ||
72 | specified. Field names used correspond to RFC 826. */ | ||
73 | |||
74 | #define ETH_ALEN 6 | ||
75 | |||
76 | struct myarphdr | ||
77 | { | ||
78 | unsigned short int ar_hrd; /* Format of hardware address. */ | ||
79 | unsigned short int ar_pro; /* Format of protocol address. */ | ||
80 | unsigned char ar_hln; /* Length of hardware address. */ | ||
81 | unsigned char ar_pln; /* Length of protocol address. */ | ||
82 | unsigned short int ar_op; /* ARP opcode (command). */ | ||
83 | /* Ethernet looks like this : This bit is variable sized | ||
84 | however... */ | ||
85 | unsigned char ar_sha[ETH_ALEN]; /* Sender hardware address. */ | ||
86 | unsigned char ar_sip[4]; /* Sender IP address. */ | ||
87 | unsigned char ar_tha[ETH_ALEN]; /* Target hardware address. */ | ||
88 | unsigned char ar_tip[4]; /* Target IP address. */ | ||
89 | }; | ||
89 | 90 | ||
90 | 91 | ||
91 | // following is incoplete and may be incorrect and need reorganization | 92 | // following is incoplete and may be incorrect and need reorganization |
92 | 93 | ||
93 | #define ieee_802_11_frame_type_Management0x00 | 94 | #define ieee_802_11_frame_type_Management0x00 |
94 | #define ieee_802_11_frame_type_Control 0x01 | 95 | #define ieee_802_11_frame_type_Control 0x01 |
95 | #define ieee_802_11_frame_type_Data 0x10 | 96 | #define ieee_802_11_frame_type_Data 0x10 |
96 | #define ieee_802_11_frame_type_Reserved 0x11 | 97 | #define ieee_802_11_frame_type_Reserved 0x11 |
97 | 98 | ||
98 | #define ieee_802_11_frame_subtype_Association_Req0x0 // Association Request | 99 | #define ieee_802_11_frame_subtype_Association_Req0x0 // Association Request |
99 | #define ieee_802_11_frame_subtype_Association_Resp0x1 // Association Response | 100 | #define ieee_802_11_frame_subtype_Association_Resp0x1 // Association Response |
100 | #define ieee_802_11_frame_subtype_Reassociation_Req0x2 // Reassociation Request | 101 | #define ieee_802_11_frame_subtype_Reassociation_Req0x2 // Reassociation Request |
101 | #define ieee_802_11_frame_subtype_Reassociation_Resp0x3 // Reassociation Response | 102 | #define ieee_802_11_frame_subtype_Reassociation_Resp0x3 // Reassociation Response |
102 | #define ieee_802_11_frame_subtype_Probe_Req 0x4 // Probe Request | 103 | #define ieee_802_11_frame_subtype_Probe_Req 0x4 // Probe Request |
103 | #define ieee_802_11_frame_subtype_Probe_Resp 0x5 // Probe Response | 104 | #define ieee_802_11_frame_subtype_Probe_Resp 0x5 // Probe Response |
104 | #define ieee_802_11_frame_subtype_Beacon 0x8 // Beacon | 105 | #define ieee_802_11_frame_subtype_Beacon 0x8 // Beacon |
105 | #define ieee_802_11_frame_subtype_ATIM 0x9 // ATIM | 106 | #define ieee_802_11_frame_subtype_ATIM 0x9 // ATIM |
106 | #define ieee_802_11_frame_subtype_Disassociation 0xA // Disassociation | 107 | #define ieee_802_11_frame_subtype_Disassociation 0xA // Disassociation |
107 | #define ieee_802_11_frame_subtype_Authentication 0xB // Authentication | 108 | #define ieee_802_11_frame_subtype_Authentication 0xB // Authentication |
108 | #define ieee_802_11_frame_subtype_Deauthentication 0xC // Deauthentication | 109 | #define ieee_802_11_frame_subtype_Deauthentication 0xC // Deauthentication |
109 | #define ieee_802_11_frame_subtype_PS_Poll 0xA // PS-Poll | 110 | #define ieee_802_11_frame_subtype_PS_Poll 0xA // PS-Poll |
110 | #define ieee_802_11_frame_subtype_RTS 0xB // RTS | 111 | #define ieee_802_11_frame_subtype_RTS 0xB // RTS |
111 | #define ieee_802_11_frame_subtype_CTS 0xC // CTS | 112 | #define ieee_802_11_frame_subtype_CTS 0xC // CTS |
112 | #define ieee_802_11_frame_subtype_ACK 0xD // ACK | 113 | #define ieee_802_11_frame_subtype_ACK 0xD // ACK |
113 | #define ieee_802_11_frame_subtype_CFEnd 0xE // CF-End | 114 | #define ieee_802_11_frame_subtype_CFEnd 0xE // CF-End |
114 | #define ieee_802_11_frame_subtype_CFEnd_CFAck 0xF // CF-End + CF-Ack | 115 | #define ieee_802_11_frame_subtype_CFEnd_CFAck 0xF // CF-End + CF-Ack |
115 | #define ieee_802_11_frame_subtype_Data 0x0 // Data | 116 | #define ieee_802_11_frame_subtype_Data 0x0 // Data |
116 | #define ieee_802_11_frame_subtype_Data_CFAck 0x1 // Data + CF-Ack | 117 | #define ieee_802_11_frame_subtype_Data_CFAck 0x1 // Data + CF-Ack |
117 | #define ieee_802_11_frame_subtype_Data_CF_Poll 0x2 // Data + CF-Poll | 118 | #define ieee_802_11_frame_subtype_Data_CF_Poll 0x2 // Data + CF-Poll |
118 | #define ieee_802_11_frame_subtype_Data_CF_AckCF_Poll 0x3 // Data + CF-Ack + CF-Poll | 119 | #define ieee_802_11_frame_subtype_Data_CF_AckCF_Poll 0x3 // Data + CF-Ack + CF-Poll |
119 | #define ieee_802_11_frame_subtype_NullFunction 0x4 // Null Function (no data) | 120 | #define ieee_802_11_frame_subtype_NullFunction 0x4 // Null Function (no data) |
120 | #define ieee_802_11_frame_subtype_CF_Ack 0x5 // CF-Ack (no data) | 121 | #define ieee_802_11_frame_subtype_CF_Ack 0x5 // CF-Ack (no data) |
121 | #define ieee_802_11_frame_subtype_CF_Poll 0x6 // CF-Poll (no data) | 122 | #define ieee_802_11_frame_subtype_CF_Poll 0x6 // CF-Poll (no data) |
122 | #define ieee_802_11_frame_subtype_CF_AckCF_Poll 0x7 // CF-Ack + CF-Poll (no data) | 123 | #define ieee_802_11_frame_subtype_CF_AckCF_Poll 0x7 // CF-Ack + CF-Poll (no data) |
123 | 124 | ||
124 | 125 | ||
125 | #define ieee_802_11_frame_subtype_strings {\ | 126 | #define ieee_802_11_frame_subtype_strings {\ |
126 | { ieee_802_11_frame_subtype_Association_Req,0xF,"f Association Request"},\ | 127 | { ieee_802_11_frame_subtype_Association_Req,0xF,"f Association Request"},\ |
127 | { ieee_802_11_frame_subtype_Association_Resp,0xF,"1 Association Response"},\ | 128 | { ieee_802_11_frame_subtype_Association_Resp,0xF,"1 Association Response"},\ |
128 | { ieee_802_11_frame_subtype_Reassociation_Req,0xF,"2 Reassociation Request"},\ | 129 | { ieee_802_11_frame_subtype_Reassociation_Req,0xF,"2 Reassociation Request"},\ |
129 | { ieee_802_11_frame_subtype_Reassociation_Resp,0xF,"3 Reassociation Response"},\ | 130 | { ieee_802_11_frame_subtype_Reassociation_Resp,0xF,"3 Reassociation Response"},\ |
130 | { ieee_802_11_frame_subtype_Probe_Req ,0xF,"4 Probe Request"},\ | 131 | { ieee_802_11_frame_subtype_Probe_Req ,0xF,"4 Probe Request"},\ |
131 | { ieee_802_11_frame_subtype_Probe_Resp ,0xF,"5 Probe Response"},\ | 132 | { ieee_802_11_frame_subtype_Probe_Resp ,0xF,"5 Probe Response"},\ |
132 | { ieee_802_11_frame_subtype_Beacon ,0xF,"8 Beacon"},\ | 133 | { ieee_802_11_frame_subtype_Beacon ,0xF,"8 Beacon"},\ |
133 | { ieee_802_11_frame_subtype_ATIM ,0xF,"9 ATIM"},\ | 134 | { ieee_802_11_frame_subtype_ATIM ,0xF,"9 ATIM"},\ |
134 | { ieee_802_11_frame_subtype_Disassociation,0xF,"A Disassociation"},\ | 135 | { ieee_802_11_frame_subtype_Disassociation,0xF,"A Disassociation"},\ |
135 | { ieee_802_11_frame_subtype_Authentication,0xF,"B Authentication"},\ | 136 | { ieee_802_11_frame_subtype_Authentication,0xF,"B Authentication"},\ |
136 | { ieee_802_11_frame_subtype_Deauthentication,0xF,"C Deauthentication"},\ | 137 | { ieee_802_11_frame_subtype_Deauthentication,0xF,"C Deauthentication"},\ |
137 | { ieee_802_11_frame_subtype_PS_Poll ,0xF,"A PS-Poll"},\ | 138 | { ieee_802_11_frame_subtype_PS_Poll ,0xF,"A PS-Poll"},\ |
138 | { ieee_802_11_frame_subtype_RTS ,0xF,"B RTS"},\ | 139 | { ieee_802_11_frame_subtype_RTS ,0xF,"B RTS"},\ |
139 | { ieee_802_11_frame_subtype_CTS ,0xF,"C CTS"},\ | 140 | { ieee_802_11_frame_subtype_CTS ,0xF,"C CTS"},\ |
140 | { ieee_802_11_frame_subtype_ACK ,0xF,"D ACK"},\ | 141 | { ieee_802_11_frame_subtype_ACK ,0xF,"D ACK"},\ |
141 | { ieee_802_11_frame_subtype_CFEnd ,0xF,"E CF-End"},\ | 142 | { ieee_802_11_frame_subtype_CFEnd ,0xF,"E CF-End"},\ |
142 | { ieee_802_11_frame_subtype_CFEnd_CFAck ,0xF,"F CF-End + CF-Ack"},\ | 143 | { ieee_802_11_frame_subtype_CFEnd_CFAck ,0xF,"F CF-End + CF-Ack"},\ |
143 | { ieee_802_11_frame_subtype_Data ,0xF,"0 Data"},\ | 144 | { ieee_802_11_frame_subtype_Data ,0xF,"0 Data"},\ |
144 | { ieee_802_11_frame_subtype_Data_CFAck ,0xF,"1 Data + CF-Ack"},\ | 145 | { ieee_802_11_frame_subtype_Data_CFAck ,0xF,"1 Data + CF-Ack"},\ |
145 | { ieee_802_11_frame_subtype_Data_CFPoll ,0xF,"2 Data + CF-Poll"},\ | 146 | { ieee_802_11_frame_subtype_Data_CFPoll ,0xF,"2 Data + CF-Poll"},\ |
146 | { ieee_802_11_frame_subtype_Data_CFAck_CFPoll,0xF,"3 Data + CF-Ack + CF-Poll"},\ | 147 | { ieee_802_11_frame_subtype_Data_CFAck_CFPoll,0xF,"3 Data + CF-Ack + CF-Poll"},\ |
147 | { ieee_802_11_frame_subtype_Null_Function ,0xF,"4 Null Function (no data)"},\ | 148 | { ieee_802_11_frame_subtype_Null_Function ,0xF,"4 Null Function (no data)"},\ |
148 | { ieee_802_11_frame_subtype_CFAck , 0xF,"5 CF-Ack (no data)"},\ | 149 | { ieee_802_11_frame_subtype_CFAck , 0xF,"5 CF-Ack (no data)"},\ |
149 | { ieee_802_11_frame_subtype_CFPoll , 0xF,"6 CF-Poll (no data)"},\ | 150 | { ieee_802_11_frame_subtype_CFPoll , 0xF,"6 CF-Poll (no data)"},\ |
150 | { ieee_802_11_frame_subtype_CFAck_CFPoll,0xF,"y7 CF-Ack + CF-Poll (no data)"},\ | 151 | { ieee_802_11_frame_subtype_CFAck_CFPoll,0xF,"y7 CF-Ack + CF-Poll (no data)"},\ |
151 | { 0,0,NULL}\ | 152 | { 0,0,NULL}\ |
152 | } | 153 | } |
diff --git a/libopie2/opienet/opcap.cpp b/libopie2/opienet/opcap.cpp index 675818e..e2ab6d7 100644 --- a/libopie2/opienet/opcap.cpp +++ b/libopie2/opienet/opcap.cpp | |||
@@ -97,257 +97,315 @@ void OPacket::updateStats( QMap<QString,int>& stats, QObjectList* l ) | |||
97 | { | 97 | { |
98 | if (!l) return; | 98 | if (!l) return; |
99 | QObject* o = l->first(); | 99 | QObject* o = l->first(); |
100 | while ( o ) | 100 | while ( o ) |
101 | { | 101 | { |
102 | stats[o->name()]++; | 102 | stats[o->name()]++; |
103 | updateStats( stats, const_cast<QObjectList*>( o->children() ) ); | 103 | updateStats( stats, const_cast<QObjectList*>( o->children() ) ); |
104 | o = l->next(); | 104 | o = l->next(); |
105 | } | 105 | } |
106 | } | 106 | } |
107 | 107 | ||
108 | 108 | ||
109 | QString OPacket::dump( int bpl ) const | 109 | QString OPacket::dump( int bpl ) const |
110 | { | 110 | { |
111 | static int index = 0; | 111 | static int index = 0; |
112 | index++; | 112 | index++; |
113 | int len = _hdr.caplen; | 113 | int len = _hdr.caplen; |
114 | QString str; | 114 | QString str; |
115 | str.sprintf( "\n<----- Packet #%04d Len = 0x%X (%d) ----->\n\n", index, len, len ); | 115 | str.sprintf( "\n<----- Packet #%04d Len = 0x%X (%d) ----->\n\n", index, len, len ); |
116 | str.append( "0000: " ); | 116 | str.append( "0000: " ); |
117 | QString tmp; | 117 | QString tmp; |
118 | QString bytes; | 118 | QString bytes; |
119 | QString chars; | 119 | QString chars; |
120 | 120 | ||
121 | for ( int i = 0; i < len; ++i ) | 121 | for ( int i = 0; i < len; ++i ) |
122 | { | 122 | { |
123 | tmp.sprintf( "%02X ", _data[i] ); bytes.append( tmp ); | 123 | tmp.sprintf( "%02X ", _data[i] ); bytes.append( tmp ); |
124 | if ( (_data[i] > 31) && (_data[i]<128) ) chars.append( _data[i] ); | 124 | if ( (_data[i] > 31) && (_data[i]<128) ) chars.append( _data[i] ); |
125 | else chars.append( '.' ); | 125 | else chars.append( '.' ); |
126 | 126 | ||
127 | if ( !((i+1) % bpl) ) | 127 | if ( !((i+1) % bpl) ) |
128 | { | 128 | { |
129 | str.append( bytes ); | 129 | str.append( bytes ); |
130 | str.append( ' ' ); | 130 | str.append( ' ' ); |
131 | str.append( chars ); | 131 | str.append( chars ); |
132 | str.append( '\n' ); | 132 | str.append( '\n' ); |
133 | tmp.sprintf( "%04X: ", i+1 ); str.append( tmp ); | 133 | tmp.sprintf( "%04X: ", i+1 ); str.append( tmp ); |
134 | bytes = ""; | 134 | bytes = ""; |
135 | chars = ""; | 135 | chars = ""; |
136 | } | 136 | } |
137 | 137 | ||
138 | } | 138 | } |
139 | if ( (len % bpl) ) | 139 | if ( (len % bpl) ) |
140 | { | 140 | { |
141 | str.append( bytes.leftJustify( 1 + 3*bpl ) ); | 141 | str.append( bytes.leftJustify( 1 + 3*bpl ) ); |
142 | str.append( chars ); | 142 | str.append( chars ); |
143 | } | 143 | } |
144 | str.append( '\n' ); | 144 | str.append( '\n' ); |
145 | return str; | 145 | return str; |
146 | } | 146 | } |
147 | 147 | ||
148 | 148 | ||
149 | int OPacket::len() const | 149 | int OPacket::len() const |
150 | { | 150 | { |
151 | return _hdr.len; | 151 | return _hdr.len; |
152 | } | 152 | } |
153 | 153 | ||
154 | 154 | ||
155 | /*====================================================================================== | 155 | /*====================================================================================== |
156 | * OEthernetPacket | 156 | * OEthernetPacket |
157 | *======================================================================================*/ | 157 | *======================================================================================*/ |
158 | 158 | ||
159 | OEthernetPacket::OEthernetPacket( const unsigned char* end, const struct ether_header* data, QObject* parent ) | 159 | OEthernetPacket::OEthernetPacket( const unsigned char* end, const struct ether_header* data, QObject* parent ) |
160 | :QObject( parent, "Ethernet" ), _ether( data ) | 160 | :QObject( parent, "Ethernet" ), _ether( data ) |
161 | |||
162 | { | 161 | { |
163 | 162 | ||
164 | qDebug( "Source = %s", (const char*) sourceAddress().toString() ); | 163 | qDebug( "Source = %s", (const char*) sourceAddress().toString() ); |
165 | qDebug( "Destination = %s", (const char*) destinationAddress().toString() ); | 164 | qDebug( "Destination = %s", (const char*) destinationAddress().toString() ); |
166 | 165 | ||
167 | if ( sourceAddress() == OMacAddress::broadcast ) | 166 | if ( sourceAddress() == OMacAddress::broadcast ) |
168 | qDebug( "Source is broadcast address" ); | 167 | qDebug( "Source is broadcast address" ); |
169 | if ( destinationAddress() == OMacAddress::broadcast ) | 168 | if ( destinationAddress() == OMacAddress::broadcast ) |
170 | qDebug( "Destination is broadcast address" ); | 169 | qDebug( "Destination is broadcast address" ); |
171 | 170 | ||
172 | switch ( type() ) | 171 | switch ( type() ) |
173 | { | 172 | { |
174 | case ETHERTYPE_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; | 173 | case ETHERTYPE_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; |
175 | case ETHERTYPE_ARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = ARP" ); break; } | 174 | case ETHERTYPE_ARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = ARP" ); break; } |
176 | case ETHERTYPE_REVARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = RARP" ); break; } | 175 | case ETHERTYPE_REVARP: { qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = RARP" ); break; } |
177 | default: qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = UNKNOWN" ); | 176 | default: qDebug( "OPacket::OPacket(): Received Ethernet Packet : Type = UNKNOWN" ); |
178 | } | 177 | } |
179 | 178 | ||
180 | } | 179 | } |
181 | 180 | ||
182 | 181 | ||
183 | OEthernetPacket::~OEthernetPacket() | 182 | OEthernetPacket::~OEthernetPacket() |
184 | { | 183 | { |
185 | } | 184 | } |
186 | 185 | ||
187 | 186 | ||
188 | OMacAddress OEthernetPacket::sourceAddress() const | 187 | OMacAddress OEthernetPacket::sourceAddress() const |
189 | { | 188 | { |
190 | return OMacAddress( _ether->ether_shost ); | 189 | return OMacAddress( _ether->ether_shost ); |
191 | } | 190 | } |
192 | 191 | ||
193 | 192 | ||
194 | OMacAddress OEthernetPacket::destinationAddress() const | 193 | OMacAddress OEthernetPacket::destinationAddress() const |
195 | { | 194 | { |
196 | return OMacAddress( _ether->ether_dhost ); | 195 | return OMacAddress( _ether->ether_dhost ); |
197 | } | 196 | } |
198 | 197 | ||
199 | int OEthernetPacket::type() const | 198 | int OEthernetPacket::type() const |
200 | { | 199 | { |
201 | return ntohs( _ether->ether_type ); | 200 | return ntohs( _ether->ether_type ); |
202 | } | 201 | } |
203 | 202 | ||
204 | 203 | ||
205 | /*====================================================================================== | 204 | /*====================================================================================== |
206 | * OIPPacket | 205 | * OIPPacket |
207 | *======================================================================================*/ | 206 | *======================================================================================*/ |
208 | 207 | ||
209 | 208 | ||
210 | OIPPacket::OIPPacket( const unsigned char* end, const struct iphdr* data, QObject* parent ) | 209 | OIPPacket::OIPPacket( const unsigned char* end, const struct iphdr* data, QObject* parent ) |
211 | :QObject( parent, "IP" ), _iphdr( data ) | 210 | :QObject( parent, "IP" ), _iphdr( data ) |
212 | |||
213 | { | 211 | { |
214 | qDebug( "OIPPacket::OIPPacket(): decoding IP header..." ); | 212 | qDebug( "OIPPacket::OIPPacket(): decoding IP header..." ); |
215 | 213 | ||
216 | //qDebug( "FromAddress: %s", (const char*) inet_ntoa( *src ) ); | 214 | //qDebug( "FromAddress: %s", (const char*) inet_ntoa( *src ) ); |
217 | //qDebug( " ToAddress: %s", (const char*) inet_ntoa( *dst ) ); | 215 | //qDebug( " ToAddress: %s", (const char*) inet_ntoa( *dst ) ); |
218 | 216 | ||
219 | qDebug( "FromAddress: %s", (const char*) fromIPAddress().toString() ); | 217 | qDebug( "FromAddress: %s", (const char*) fromIPAddress().toString() ); |
220 | qDebug( " toAddress: %s", (const char*) toIPAddress().toString() ); | 218 | qDebug( " toAddress: %s", (const char*) toIPAddress().toString() ); |
221 | 219 | ||
222 | switch ( protocol() ) | 220 | switch ( protocol() ) |
223 | { | 221 | { |
224 | case IPPROTO_UDP: new OUDPPacket( end, (const struct udphdr*) (data+1), this ); break; | 222 | case IPPROTO_UDP: new OUDPPacket( end, (const struct udphdr*) (data+1), this ); break; |
225 | case IPPROTO_TCP: new OTCPPacket( end, (const struct tcphdr*) (data+1), this ); break; | 223 | case IPPROTO_TCP: new OTCPPacket( end, (const struct tcphdr*) (data+1), this ); break; |
226 | default: qDebug( "OIPPacket::OIPPacket(): unknown IP protocol type = %d", protocol() ); | 224 | default: qDebug( "OIPPacket::OIPPacket(): unknown IP protocol type = %d", protocol() ); |
227 | } | 225 | } |
228 | 226 | ||
229 | } | 227 | } |
230 | 228 | ||
231 | OIPPacket::~OIPPacket() | 229 | OIPPacket::~OIPPacket() |
232 | { | 230 | { |
233 | } | 231 | } |
234 | 232 | ||
235 | 233 | ||
236 | QHostAddress OIPPacket::fromIPAddress() const | 234 | QHostAddress OIPPacket::fromIPAddress() const |
237 | { | 235 | { |
238 | return EXTRACT_32BITS( &_iphdr->saddr ); | 236 | return EXTRACT_32BITS( &_iphdr->saddr ); |
239 | } | 237 | } |
240 | 238 | ||
241 | 239 | ||
242 | QHostAddress OIPPacket::toIPAddress() const | 240 | QHostAddress OIPPacket::toIPAddress() const |
243 | { | 241 | { |
244 | return EXTRACT_32BITS( &_iphdr->saddr ); | 242 | return EXTRACT_32BITS( &_iphdr->saddr ); |
245 | } | 243 | } |
246 | 244 | ||
247 | 245 | ||
248 | int OIPPacket::tos() const | 246 | int OIPPacket::tos() const |
249 | { | 247 | { |
250 | return _iphdr->tos; | 248 | return _iphdr->tos; |
251 | } | 249 | } |
252 | 250 | ||
253 | 251 | ||
254 | int OIPPacket::len() const | 252 | int OIPPacket::len() const |
255 | { | 253 | { |
256 | return EXTRACT_16BITS( &_iphdr->tot_len ); | 254 | return EXTRACT_16BITS( &_iphdr->tot_len ); |
257 | } | 255 | } |
258 | 256 | ||
259 | 257 | ||
260 | int OIPPacket::id() const | 258 | int OIPPacket::id() const |
261 | { | 259 | { |
262 | return EXTRACT_16BITS( &_iphdr->id ); | 260 | return EXTRACT_16BITS( &_iphdr->id ); |
263 | } | 261 | } |
264 | 262 | ||
265 | 263 | ||
266 | int OIPPacket::offset() const | 264 | int OIPPacket::offset() const |
267 | { | 265 | { |
268 | return EXTRACT_16BITS( &_iphdr->frag_off ); | 266 | return EXTRACT_16BITS( &_iphdr->frag_off ); |
269 | } | 267 | } |
270 | 268 | ||
271 | 269 | ||
272 | int OIPPacket::ttl() const | 270 | int OIPPacket::ttl() const |
273 | { | 271 | { |
274 | return _iphdr->ttl; | 272 | return _iphdr->ttl; |
275 | } | 273 | } |
276 | 274 | ||
277 | 275 | ||
278 | int OIPPacket::protocol() const | 276 | int OIPPacket::protocol() const |
279 | { | 277 | { |
280 | return _iphdr->protocol; | 278 | return _iphdr->protocol; |
281 | } | 279 | } |
282 | 280 | ||
283 | 281 | ||
284 | int OIPPacket::checksum() const | 282 | int OIPPacket::checksum() const |
285 | { | 283 | { |
286 | return EXTRACT_16BITS( &_iphdr->check ); | 284 | return EXTRACT_16BITS( &_iphdr->check ); |
287 | } | 285 | } |
288 | 286 | ||
289 | /*====================================================================================== | 287 | /*====================================================================================== |
288 | * OARPPacket | ||
289 | *======================================================================================*/ | ||
290 | |||
291 | |||
292 | OARPPacket::OARPPacket( const unsigned char* end, const struct myarphdr* data, QObject* parent ) | ||
293 | :QObject( parent, "ARP" ), _arphdr( data ) | ||
294 | { | ||
295 | qDebug( "OARPPacket::OARPPacket(): decoding ARP header..." ); | ||
296 | qDebug( "ARP type seems to be %02d - '%s'", EXTRACT_16BITS( &_arphdr->ar_op ), (const char*) type() ); | ||
297 | qDebug( "Sender: MAC %s = IP %s", (const char*) senderMacAddress().toString(), (const char*) senderIPV4Address().toString() ); | ||
298 | qDebug( "Target: MAC %s = IP %s", (const char*) targetMacAddress().toString(), (const char*) targetIPV4Address().toString() ); | ||
299 | } | ||
300 | |||
301 | |||
302 | OARPPacket::~OARPPacket() | ||
303 | { | ||
304 | } | ||
305 | |||
306 | |||
307 | QString OARPPacket::type() const | ||
308 | { | ||
309 | switch ( EXTRACT_16BITS( &_arphdr->ar_op ) ) | ||
310 | { | ||
311 | case 1: return "REQUEST"; | ||
312 | case 2: return "REPLY"; | ||
313 | case 3: return "RREQUEST"; | ||
314 | case 4: return "RREPLY"; | ||
315 | case 8: return "InREQUEST"; | ||
316 | case 9: return "InREPLY"; | ||
317 | case 10: return "NAK"; | ||
318 | default: qWarning( "OARPPacket::type(): invalid ARP type!" ); return "<unknown>"; | ||
319 | } | ||
320 | } | ||
321 | |||
322 | |||
323 | QHostAddress OARPPacket::senderIPV4Address() const | ||
324 | { | ||
325 | return EXTRACT_32BITS( &_arphdr->ar_sip ); | ||
326 | } | ||
327 | |||
328 | |||
329 | QHostAddress OARPPacket::targetIPV4Address() const | ||
330 | { | ||
331 | return EXTRACT_32BITS( &_arphdr->ar_tip ); | ||
332 | } | ||
333 | |||
334 | |||
335 | OMacAddress OARPPacket::senderMacAddress() const | ||
336 | { | ||
337 | return OMacAddress( _arphdr->ar_sha ); | ||
338 | } | ||
339 | |||
340 | |||
341 | OMacAddress OARPPacket::targetMacAddress() const | ||
342 | { | ||
343 | return OMacAddress( _arphdr->ar_tha ); | ||
344 | } | ||
345 | |||
346 | |||
347 | /*====================================================================================== | ||
290 | * OUDPPacket | 348 | * OUDPPacket |
291 | *======================================================================================*/ | 349 | *======================================================================================*/ |
292 | 350 | ||
293 | 351 | ||
294 | OUDPPacket::OUDPPacket( const unsigned char* end, const struct udphdr* data, QObject* parent ) | 352 | OUDPPacket::OUDPPacket( const unsigned char* end, const struct udphdr* data, QObject* parent ) |
295 | :QObject( parent, "UDP" ), _udphdr( data ) | 353 | :QObject( parent, "UDP" ), _udphdr( data ) |
296 | 354 | ||
297 | { | 355 | { |
298 | qDebug( "OUDPPacket::OUDPPacket(): decoding UDP header..." ); | 356 | qDebug( "OUDPPacket::OUDPPacket(): decoding UDP header..." ); |
299 | } | 357 | } |
300 | 358 | ||
301 | OUDPPacket::~OUDPPacket() | 359 | OUDPPacket::~OUDPPacket() |
302 | { | 360 | { |
303 | } | 361 | } |
304 | 362 | ||
305 | 363 | ||
306 | /*====================================================================================== | 364 | /*====================================================================================== |
307 | * OTCPPacket | 365 | * OTCPPacket |
308 | *======================================================================================*/ | 366 | *======================================================================================*/ |
309 | 367 | ||
310 | 368 | ||
311 | OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent ) | 369 | OTCPPacket::OTCPPacket( const unsigned char* end, const struct tcphdr* data, QObject* parent ) |
312 | :QObject( parent, "TCP" ), _tcphdr( data ) | 370 | :QObject( parent, "TCP" ), _tcphdr( data ) |
313 | 371 | ||
314 | { | 372 | { |
315 | qDebug( "OTCPPacket::OTCPPacket(): decoding TCP header..." ); | 373 | qDebug( "OTCPPacket::OTCPPacket(): decoding TCP header..." ); |
316 | } | 374 | } |
317 | 375 | ||
318 | OTCPPacket::~OTCPPacket() | 376 | OTCPPacket::~OTCPPacket() |
319 | { | 377 | { |
320 | } | 378 | } |
321 | 379 | ||
322 | 380 | ||
323 | /*====================================================================================== | 381 | /*====================================================================================== |
324 | * OPrismHeaderPacket | 382 | * OPrismHeaderPacket |
325 | *======================================================================================*/ | 383 | *======================================================================================*/ |
326 | 384 | ||
327 | 385 | ||
328 | OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent ) | 386 | OPrismHeaderPacket::OPrismHeaderPacket( const unsigned char* end, const struct prism_hdr* data, QObject* parent ) |
329 | :QObject( parent, "Prism" ), _header( data ) | 387 | :QObject( parent, "Prism" ), _header( data ) |
330 | 388 | ||
331 | { | 389 | { |
332 | qDebug( "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." ); | 390 | qDebug( "OPrismHeaderPacket::OPrismHeaderPacket(): decoding PRISM header..." ); |
333 | 391 | ||
334 | qDebug( "Signal Strength = %d", data->signal.data ); | 392 | qDebug( "Signal Strength = %d", data->signal.data ); |
335 | 393 | ||
336 | new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this ); | 394 | new OWaveLanPacket( end, (const struct ieee_802_11_header*) (data+1), this ); |
337 | } | 395 | } |
338 | 396 | ||
339 | OPrismHeaderPacket::~OPrismHeaderPacket() | 397 | OPrismHeaderPacket::~OPrismHeaderPacket() |
340 | { | 398 | { |
341 | } | 399 | } |
342 | 400 | ||
343 | 401 | ||
344 | unsigned int OPrismHeaderPacket::signalStrength() const | 402 | unsigned int OPrismHeaderPacket::signalStrength() const |
345 | { | 403 | { |
346 | return _header->signal.data; | 404 | return _header->signal.data; |
347 | } | 405 | } |
348 | 406 | ||
349 | /*====================================================================================== | 407 | /*====================================================================================== |
350 | * OWaveLanPacket | 408 | * OWaveLanPacket |
351 | *======================================================================================*/ | 409 | *======================================================================================*/ |
352 | 410 | ||
353 | 411 | ||
@@ -669,129 +727,130 @@ OWaveLanManagementIBSS::OWaveLanManagementIBSS( const unsigned char* end, const | |||
669 | :QObject( parent, "802.11 IBSS" ), _data( data ) | 727 | :QObject( parent, "802.11 IBSS" ), _data( data ) |
670 | { | 728 | { |
671 | qDebug( "OWaveLanManagementIBSS()" ); | 729 | qDebug( "OWaveLanManagementIBSS()" ); |
672 | } | 730 | } |
673 | 731 | ||
674 | 732 | ||
675 | OWaveLanManagementIBSS::~OWaveLanManagementIBSS() | 733 | OWaveLanManagementIBSS::~OWaveLanManagementIBSS() |
676 | { | 734 | { |
677 | } | 735 | } |
678 | 736 | ||
679 | /*====================================================================================== | 737 | /*====================================================================================== |
680 | * OWaveLanManagementChallenge | 738 | * OWaveLanManagementChallenge |
681 | *======================================================================================*/ | 739 | *======================================================================================*/ |
682 | 740 | ||
683 | OWaveLanManagementChallenge::OWaveLanManagementChallenge( const unsigned char* end, const struct challenge_t* data, QObject* parent ) | 741 | OWaveLanManagementChallenge::OWaveLanManagementChallenge( const unsigned char* end, const struct challenge_t* data, QObject* parent ) |
684 | :QObject( parent, "802.11 Challenge" ), _data( data ) | 742 | :QObject( parent, "802.11 Challenge" ), _data( data ) |
685 | { | 743 | { |
686 | qDebug( "OWaveLanManagementChallenge()" ); | 744 | qDebug( "OWaveLanManagementChallenge()" ); |
687 | } | 745 | } |
688 | 746 | ||
689 | 747 | ||
690 | OWaveLanManagementChallenge::~OWaveLanManagementChallenge() | 748 | OWaveLanManagementChallenge::~OWaveLanManagementChallenge() |
691 | { | 749 | { |
692 | } | 750 | } |
693 | 751 | ||
694 | /*====================================================================================== | 752 | /*====================================================================================== |
695 | * OWaveLanDataPacket | 753 | * OWaveLanDataPacket |
696 | *======================================================================================*/ | 754 | *======================================================================================*/ |
697 | 755 | ||
698 | OWaveLanDataPacket::OWaveLanDataPacket( const unsigned char* end, const struct ieee_802_11_data_header* data, OWaveLanPacket* parent ) | 756 | OWaveLanDataPacket::OWaveLanDataPacket( const unsigned char* end, const struct ieee_802_11_data_header* data, OWaveLanPacket* parent ) |
699 | :QObject( parent, "802.11 Data" ), _header( data ) | 757 | :QObject( parent, "802.11 Data" ), _header( data ) |
700 | { | 758 | { |
701 | qDebug( "OWaveLanDataPacket::OWaveLanDataPacket(): decoding frame..." ); | 759 | qDebug( "OWaveLanDataPacket::OWaveLanDataPacket(): decoding frame..." ); |
702 | 760 | ||
703 | const unsigned char* payload = (const unsigned char*) data + sizeof( struct ieee_802_11_data_header ); | 761 | const unsigned char* payload = (const unsigned char*) data + sizeof( struct ieee_802_11_data_header ); |
704 | 762 | ||
705 | #warning The next line works for most cases, but can not be correct generally! | 763 | #warning The next line works for most cases, but can not be correct generally! |
706 | if (!( ( (OWaveLanPacket*) this->parent())->duration() )) payload -= 6; // compensation for missing last address | 764 | if (!( ( (OWaveLanPacket*) this->parent())->duration() )) payload -= 6; // compensation for missing last address |
707 | 765 | ||
708 | new OLLCPacket( end, (const struct ieee_802_11_802_2_header*) payload, this ); | 766 | new OLLCPacket( end, (const struct ieee_802_11_802_2_header*) payload, this ); |
709 | } | 767 | } |
710 | 768 | ||
711 | 769 | ||
712 | OWaveLanDataPacket::~OWaveLanDataPacket() | 770 | OWaveLanDataPacket::~OWaveLanDataPacket() |
713 | { | 771 | { |
714 | } | 772 | } |
715 | 773 | ||
716 | 774 | ||
717 | /*====================================================================================== | 775 | /*====================================================================================== |
718 | * OLLCPacket | 776 | * OLLCPacket |
719 | *======================================================================================*/ | 777 | *======================================================================================*/ |
720 | 778 | ||
721 | OLLCPacket::OLLCPacket( const unsigned char* end, const struct ieee_802_11_802_2_header* data, QObject* parent ) | 779 | OLLCPacket::OLLCPacket( const unsigned char* end, const struct ieee_802_11_802_2_header* data, QObject* parent ) |
722 | :QObject( parent, "802.11 LLC" ), _header( data ) | 780 | :QObject( parent, "802.11 LLC" ), _header( data ) |
723 | { | 781 | { |
724 | qDebug( "OLLCPacket::OLLCPacket(): decoding frame..." ); | 782 | qDebug( "OLLCPacket::OLLCPacket(): decoding frame..." ); |
725 | 783 | ||
726 | if ( !(_header->oui[0] || _header->oui[1] || _header->oui[2]) ) | 784 | if ( !(_header->oui[0] || _header->oui[1] || _header->oui[2]) ) |
727 | { | 785 | { |
728 | qDebug( "OLLCPacket::OLLCPacket(): contains an encapsulated Ethernet frame (type=%04X)", EXTRACT_16BITS( &_header->type ) ); | 786 | qDebug( "OLLCPacket::OLLCPacket(): contains an encapsulated Ethernet frame (type=%04X)", EXTRACT_16BITS( &_header->type ) ); |
729 | 787 | ||
730 | switch ( EXTRACT_16BITS( &_header->type ) ) // defined in linux/if_ether.h | 788 | switch ( EXTRACT_16BITS( &_header->type ) ) // defined in linux/if_ether.h |
731 | { | 789 | { |
732 | case ETH_P_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; | 790 | case ETH_P_IP: new OIPPacket( end, (const struct iphdr*) (data+1), this ); break; |
733 | default: qDebug( "OLLCPacket::OLLCPacket(): Unknown Encapsulation Type" ); | 791 | case ETH_P_ARP: new OARPPacket( end, (const struct myarphdr*) (data+1), this ); break; |
792 | default: qWarning( "OLLCPacket::OLLCPacket(): Unknown Encapsulation (type=%04X)", EXTRACT_16BITS( &_header->type ) ); | ||
734 | } | 793 | } |
735 | 794 | ||
736 | } | 795 | } |
737 | } | 796 | } |
738 | 797 | ||
739 | 798 | ||
740 | OLLCPacket::~OLLCPacket() | 799 | OLLCPacket::~OLLCPacket() |
741 | { | 800 | { |
742 | } | 801 | } |
743 | 802 | ||
744 | 803 | ||
745 | /*====================================================================================== | 804 | /*====================================================================================== |
746 | * OWaveLanControlPacket | 805 | * OWaveLanControlPacket |
747 | *======================================================================================*/ | 806 | *======================================================================================*/ |
748 | 807 | ||
749 | OWaveLanControlPacket::OWaveLanControlPacket( const unsigned char* end, const struct ieee_802_11_control_header* data, OWaveLanPacket* parent ) | 808 | OWaveLanControlPacket::OWaveLanControlPacket( const unsigned char* end, const struct ieee_802_11_control_header* data, OWaveLanPacket* parent ) |
750 | :QObject( parent, "802.11 Data" ), _header( data ) | 809 | :QObject( parent, "802.11 Data" ), _header( data ) |
751 | { | 810 | { |
752 | qDebug( "OWaveLanControlPacket::OWaveLanDataControl(): decoding frame..." ); | 811 | qDebug( "OWaveLanControlPacket::OWaveLanDataControl(): decoding frame..." ); |
753 | //TODO: Implement this | 812 | //TODO: Implement this |
754 | } | 813 | } |
755 | 814 | ||
756 | 815 | ||
757 | OWaveLanControlPacket::~OWaveLanControlPacket() | 816 | OWaveLanControlPacket::~OWaveLanControlPacket() |
758 | { | 817 | { |
759 | } | 818 | } |
760 | 819 | ||
761 | 820 | ||
762 | /*====================================================================================== | 821 | /*====================================================================================== |
763 | * OPacketCapturer | 822 | * OPacketCapturer |
764 | *======================================================================================*/ | 823 | *======================================================================================*/ |
765 | 824 | ||
766 | OPacketCapturer::OPacketCapturer( QObject* parent, const char* name ) | 825 | OPacketCapturer::OPacketCapturer( QObject* parent, const char* name ) |
767 | :QObject( parent, name ), _name( QString::null ), _open( false ), | 826 | :QObject( parent, name ), _name( QString::null ), _open( false ), |
768 | _pch( 0 ), _pcd( 0 ), _sn( 0 ) | 827 | _pch( 0 ), _pcd( 0 ), _sn( 0 ) |
769 | { | 828 | { |
770 | } | 829 | } |
771 | 830 | ||
772 | 831 | ||
773 | OPacketCapturer::~OPacketCapturer() | 832 | OPacketCapturer::~OPacketCapturer() |
774 | { | 833 | { |
775 | if ( _open ) | 834 | if ( _open ) |
776 | { | 835 | { |
777 | qDebug( "OPacketCapturer::~OPacketCapturer(): pcap still open, autoclosing." ); | 836 | qDebug( "OPacketCapturer::~OPacketCapturer(): pcap still open, autoclosing." ); |
778 | close(); | 837 | close(); |
779 | } | 838 | } |
780 | } | 839 | } |
781 | 840 | ||
782 | 841 | ||
783 | void OPacketCapturer::setBlocking( bool b ) | 842 | void OPacketCapturer::setBlocking( bool b ) |
784 | { | 843 | { |
785 | if ( pcap_setnonblock( _pch, 1-b, _errbuf ) != -1 ) | 844 | if ( pcap_setnonblock( _pch, 1-b, _errbuf ) != -1 ) |
786 | { | 845 | { |
787 | qDebug( "OPacketCapturer::setBlocking(): blocking mode changed successfully." ); | 846 | qDebug( "OPacketCapturer::setBlocking(): blocking mode changed successfully." ); |
788 | } | 847 | } |
789 | else | 848 | else |
790 | { | 849 | { |
791 | qDebug( "OPacketCapturer::setBlocking(): can't change blocking mode: %s", _errbuf ); | 850 | qDebug( "OPacketCapturer::setBlocking(): can't change blocking mode: %s", _errbuf ); |
792 | } | 851 | } |
793 | } | 852 | } |
794 | 853 | ||
795 | 854 | ||
796 | bool OPacketCapturer::blocking() const | 855 | bool OPacketCapturer::blocking() const |
797 | { | 856 | { |
diff --git a/libopie2/opienet/opcap.h b/libopie2/opienet/opcap.h index bee0ca0..5a50d9b 100644 --- a/libopie2/opienet/opcap.h +++ b/libopie2/opienet/opcap.h | |||
@@ -377,128 +377,152 @@ class OWaveLanDataPacket : public QObject | |||
377 | private: | 377 | private: |
378 | const struct ieee_802_11_data_header* _header; | 378 | const struct ieee_802_11_data_header* _header; |
379 | }; | 379 | }; |
380 | 380 | ||
381 | /*====================================================================================== | 381 | /*====================================================================================== |
382 | * OWaveLanControlPacket - type: control (T_CTRL) | 382 | * OWaveLanControlPacket - type: control (T_CTRL) |
383 | *======================================================================================*/ | 383 | *======================================================================================*/ |
384 | 384 | ||
385 | class OWaveLanControlPacket : public QObject | 385 | class OWaveLanControlPacket : public QObject |
386 | { | 386 | { |
387 | Q_OBJECT | 387 | Q_OBJECT |
388 | 388 | ||
389 | public: | 389 | public: |
390 | OWaveLanControlPacket( const unsigned char*, const struct ieee_802_11_control_header*, OWaveLanPacket* parent = 0 ); | 390 | OWaveLanControlPacket( const unsigned char*, const struct ieee_802_11_control_header*, OWaveLanPacket* parent = 0 ); |
391 | virtual ~OWaveLanControlPacket(); | 391 | virtual ~OWaveLanControlPacket(); |
392 | 392 | ||
393 | private: | 393 | private: |
394 | const struct ieee_802_11_control_header* _header; | 394 | const struct ieee_802_11_control_header* _header; |
395 | }; | 395 | }; |
396 | 396 | ||
397 | /*====================================================================================== | 397 | /*====================================================================================== |
398 | * OLLCPacket - IEEE 802.2 Link Level Control | 398 | * OLLCPacket - IEEE 802.2 Link Level Control |
399 | *======================================================================================*/ | 399 | *======================================================================================*/ |
400 | 400 | ||
401 | class OLLCPacket : public QObject | 401 | class OLLCPacket : public QObject |
402 | { | 402 | { |
403 | Q_OBJECT | 403 | Q_OBJECT |
404 | 404 | ||
405 | public: | 405 | public: |
406 | OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 ); | 406 | OLLCPacket( const unsigned char*, const struct ieee_802_11_802_2_header* data, QObject* parent = 0 ); |
407 | virtual ~OLLCPacket(); | 407 | virtual ~OLLCPacket(); |
408 | 408 | ||
409 | private: | 409 | private: |
410 | const struct ieee_802_11_802_2_header* _header; | 410 | const struct ieee_802_11_802_2_header* _header; |
411 | }; | 411 | }; |
412 | 412 | ||
413 | /*====================================================================================== | 413 | /*====================================================================================== |
414 | * OIPPacket | 414 | * OIPPacket |
415 | *======================================================================================*/ | 415 | *======================================================================================*/ |
416 | 416 | ||
417 | class OIPPacket : public QObject | 417 | class OIPPacket : public QObject |
418 | { | 418 | { |
419 | Q_OBJECT | 419 | Q_OBJECT |
420 | 420 | ||
421 | public: | 421 | public: |
422 | OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 ); | 422 | OIPPacket( const unsigned char*, const struct iphdr*, QObject* parent = 0 ); |
423 | virtual ~OIPPacket(); | 423 | virtual ~OIPPacket(); |
424 | 424 | ||
425 | QHostAddress fromIPAddress() const; | 425 | QHostAddress fromIPAddress() const; |
426 | QHostAddress toIPAddress() const; | 426 | QHostAddress toIPAddress() const; |
427 | 427 | ||
428 | int tos() const; | 428 | int tos() const; |
429 | int len() const; | 429 | int len() const; |
430 | int id() const; | 430 | int id() const; |
431 | int offset() const; | 431 | int offset() const; |
432 | int ttl() const; | 432 | int ttl() const; |
433 | int protocol() const; | 433 | int protocol() const; |
434 | int checksum() const; | 434 | int checksum() const; |
435 | 435 | ||
436 | private: | 436 | private: |
437 | const struct iphdr* _iphdr; | 437 | const struct iphdr* _iphdr; |
438 | }; | 438 | }; |
439 | 439 | ||
440 | /*====================================================================================== | 440 | /*====================================================================================== |
441 | * OARPPacket | ||
442 | *======================================================================================*/ | ||
443 | |||
444 | class OARPPacket : public QObject | ||
445 | { | ||
446 | Q_OBJECT | ||
447 | |||
448 | public: | ||
449 | OARPPacket( const unsigned char*, const struct myarphdr*, QObject* parent = 0 ); | ||
450 | virtual ~OARPPacket(); | ||
451 | |||
452 | QHostAddress senderIPV4Address() const; | ||
453 | OMacAddress senderMacAddress() const; | ||
454 | QHostAddress targetIPV4Address() const; | ||
455 | OMacAddress targetMacAddress() const; | ||
456 | |||
457 | //int type() const; | ||
458 | QString type() const; | ||
459 | |||
460 | private: | ||
461 | const struct myarphdr* _arphdr; | ||
462 | }; | ||
463 | |||
464 | /*====================================================================================== | ||
441 | * OUDPPacket | 465 | * OUDPPacket |
442 | *======================================================================================*/ | 466 | *======================================================================================*/ |
443 | 467 | ||
444 | class OUDPPacket : public QObject | 468 | class OUDPPacket : public QObject |
445 | { | 469 | { |
446 | Q_OBJECT | 470 | Q_OBJECT |
447 | 471 | ||
448 | public: | 472 | public: |
449 | OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 ); | 473 | OUDPPacket( const unsigned char*, const struct udphdr*, QObject* parent = 0 ); |
450 | virtual ~OUDPPacket(); | 474 | virtual ~OUDPPacket(); |
451 | 475 | ||
452 | int fromPort() const; | 476 | int fromPort() const; |
453 | int toPort() const; | 477 | int toPort() const; |
454 | 478 | ||
455 | private: | 479 | private: |
456 | const struct udphdr* _udphdr; | 480 | const struct udphdr* _udphdr; |
457 | }; | 481 | }; |
458 | 482 | ||
459 | /*====================================================================================== | 483 | /*====================================================================================== |
460 | * OTCPPacket | 484 | * OTCPPacket |
461 | *======================================================================================*/ | 485 | *======================================================================================*/ |
462 | 486 | ||
463 | class OTCPPacket : public QObject | 487 | class OTCPPacket : public QObject |
464 | { | 488 | { |
465 | Q_OBJECT | 489 | Q_OBJECT |
466 | 490 | ||
467 | public: | 491 | public: |
468 | OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 ); | 492 | OTCPPacket( const unsigned char*, const struct tcphdr*, QObject* parent = 0 ); |
469 | virtual ~OTCPPacket(); | 493 | virtual ~OTCPPacket(); |
470 | 494 | ||
471 | int fromPort() const; | 495 | int fromPort() const; |
472 | int toPort() const; | 496 | int toPort() const; |
473 | 497 | ||
474 | private: | 498 | private: |
475 | const struct tcphdr* _tcphdr; | 499 | const struct tcphdr* _tcphdr; |
476 | }; | 500 | }; |
477 | 501 | ||
478 | 502 | ||
479 | /*====================================================================================== | 503 | /*====================================================================================== |
480 | * OPacketCapturer | 504 | * OPacketCapturer |
481 | *======================================================================================*/ | 505 | *======================================================================================*/ |
482 | 506 | ||
483 | /** | 507 | /** |
484 | * @brief A class based wrapper for network packet capturing. | 508 | * @brief A class based wrapper for network packet capturing. |
485 | * | 509 | * |
486 | * This class is the base of a high-level interface to the well known packet capturing | 510 | * This class is the base of a high-level interface to the well known packet capturing |
487 | * library libpcap. ... | 511 | * library libpcap. ... |
488 | */ | 512 | */ |
489 | class OPacketCapturer : public QObject | 513 | class OPacketCapturer : public QObject |
490 | { | 514 | { |
491 | Q_OBJECT | 515 | Q_OBJECT |
492 | 516 | ||
493 | public: | 517 | public: |
494 | /** | 518 | /** |
495 | * Constructor. | 519 | * Constructor. |
496 | */ | 520 | */ |
497 | OPacketCapturer( QObject* parent = 0, const char* name = 0 ); | 521 | OPacketCapturer( QObject* parent = 0, const char* name = 0 ); |
498 | /** | 522 | /** |
499 | * Destructor. | 523 | * Destructor. |
500 | */ | 524 | */ |
501 | ~OPacketCapturer(); | 525 | ~OPacketCapturer(); |
502 | /** | 526 | /** |
503 | * Setting the packet capturer to use blocking IO calls can be useful when | 527 | * Setting the packet capturer to use blocking IO calls can be useful when |
504 | * not using the socket notifier, e.g. without an application object. | 528 | * not using the socket notifier, e.g. without an application object. |