-
Notifications
You must be signed in to change notification settings - Fork 494
/
ec_dissect.c
304 lines (235 loc) · 7.27 KB
/
ec_dissect.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/*
ettercap -- dissector module
Copyright (C) ALoR & NaGA
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation; either version 2 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program; if not, write to the Free Software
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
*/
#include <ec.h>
#include <ec_dissect.h>
#include <ec_packet.h>
#include <ec_sslwrap.h>
/* globals */
static SLIST_HEAD (, dissect_entry) dissect_list;
struct dissect_entry {
char *name;
u_int32 type;
u_int8 level;
FUNC_DECODER_PTR(decoder);
SLIST_ENTRY (dissect_entry) next;
};
/*******************************************/
/*
* compare two session ident
*
* return 1 if it matches
*/
int dissect_match(void *id_sess, void *id_curr)
{
struct dissect_ident *ids = id_sess;
struct dissect_ident *id = id_curr;
/* sanity check */
BUG_IF(ids == NULL);
BUG_IF(id == NULL);
/*
* is this ident from our level ?
* check the magic !
*/
if (ids->magic != id->magic)
return 0;
/* check the protocol */
if (ids->L4_proto != id->L4_proto)
return 0;
/* from source to dest */
if (ids->L4_src == id->L4_src &&
ids->L4_dst == id->L4_dst &&
!ip_addr_cmp(&ids->L3_src, &id->L3_src) &&
!ip_addr_cmp(&ids->L3_dst, &id->L3_dst) )
return 1;
/* from dest to source */
if (ids->L4_src == id->L4_dst &&
ids->L4_dst == id->L4_src &&
!ip_addr_cmp(&ids->L3_src, &id->L3_dst) &&
!ip_addr_cmp(&ids->L3_dst, &id->L3_src) )
return 1;
return 0;
}
/*
* prepare the ident and the pointer to match function
* for a dissector.
*/
void dissect_create_session(struct ec_session **s, struct packet_object *po, void *code)
{
void *ident;
DEBUG_MSG("dissect_create_session");
/* allocate the session */
SAFE_CALLOC(*s, 1, sizeof(struct ec_session));
/* create the ident */
(*s)->ident_len = dissect_create_ident(&ident, po, code);
/* link to the session */
(*s)->ident = ident;
/* the matching function */
(*s)->match = &dissect_match;
}
/*
* create the ident for a session
*/
size_t dissect_create_ident(void **i, struct packet_object *po, void *code)
{
struct dissect_ident *ident;
/* allocate the ident for that session */
SAFE_CALLOC(ident, 1, sizeof(struct dissect_ident));
/* the magic number (usually the pointer for the function) */
ident->fptr = code;
/* prepare the ident */
memcpy(&ident->L3_src, &po->L3.src, sizeof(struct ip_addr));
memcpy(&ident->L3_dst, &po->L3.dst, sizeof(struct ip_addr));
ident->L4_proto = po->L4.proto;
ident->L4_src = po->L4.src;
ident->L4_dst = po->L4.dst;
/* return the ident */
*i = ident;
/* return the length of the ident */
return sizeof(struct dissect_ident);
}
/*
* totally destroy the session bound to this connection
*/
void dissect_wipe_session(struct packet_object *po, void *code)
{
void *ident;
struct ec_session *s;
DEBUG_MSG("dissect_wipe_session");
/* create an ident to retrieve the session */
dissect_create_ident(&ident, po, code);
/* retrieve the session and delete it */
if (session_get_and_del(&s, ident, DISSECT_IDENT_LEN) == -E_NOTFOUND) {
SAFE_FREE(ident);
return;
}
/* free the session */
session_free(s);
SAFE_FREE(ident);
}
/*
* register a dissector in the dissectors list
* and add it to the decoder list.
* this list is used by dissect_modify during the parsing
* of etter.conf to enable/disable the dissectors via their name.
*/
void dissect_add(char *name, u_int8 level, u_int32 port, FUNC_DECODER_PTR(decoder))
{
struct dissect_entry *e;
SAFE_CALLOC(e, 1, sizeof(struct dissect_entry));
e->name = strdup(name);
e->level = level;
e->type = port;
e->decoder = decoder;
SLIST_INSERT_HEAD (&dissect_list, e, next);
/* add the default decoder */
add_decoder(level, port, decoder);
return;
}
/*
* remove all istances of a dissector in the dissectors list
*/
void dissect_del(char *name)
{
struct dissect_entry *e, *tmp = NULL;
SLIST_FOREACH_SAFE(e, &dissect_list, next, tmp) {
if (!strcasecmp(e->name, name)) {
del_decoder(e->level, e->type);
SLIST_REMOVE(&dissect_list, e, dissect_entry, next);
SAFE_FREE(e);
}
}
return;
}
/*
* given the name of the dissector add or remove it
* from the decoders' table.
* is it possible to add multiple port with MODE_ADD
*/
int dissect_modify(int mode, char *name, u_int32 port)
{
struct dissect_entry *e;
int level;
void *decoder;
SLIST_FOREACH (e, &dissect_list, next) {
if (!strcasecmp(e->name, name)) {
switch (mode) {
case MODE_ADD:
DEBUG_MSG("dissect_modify: %s added on %lu", name, (unsigned long)port);
/* add in the lists */
dissect_add(e->name, e->level, port, e->decoder);
return E_SUCCESS;
break;
case MODE_REP:
/* save them because the dissect_del may delete this values */
level = e->level;
decoder = e->decoder;
/* remove all the previous istances */
dissect_del(name);
/* move the ssl wrapper (even if no wrapper) */
sslw_dissect_move(name, port);
/* a value of 0 will disable the dissector */
if (port == 0) {
DEBUG_MSG("dissect_modify: %s disabled", name);
return E_SUCCESS;
}
DEBUG_MSG("dissect_modify: %s replaced to %lu", name, (unsigned long)port);
/* add the new value */
dissect_add(name, level, port, decoder);
return E_SUCCESS;
break;
}
}
}
return -E_NOTFOUND;
}
/*
* return E_SUCCESS if the dissector is on
* the specified port
*/
int dissect_on_port(char *name, u_int16 port)
{
struct dissect_entry *e;
/*
* return E_SUCCESS if at least one port is bound
* to the dissector name
*/
SLIST_FOREACH (e, &dissect_list, next) {
if (!strcasecmp(e->name, name) && e->type == port) {
return E_SUCCESS;
}
}
return -E_NOTFOUND;
}
/*
* return E_SUCCESS if the dissector is on
* the specified port of the specified protocol (TCP or UDP)
*/
int dissect_on_port_level(char *name, u_int16 port, u_int8 level)
{
struct dissect_entry *e;
/*
* return E_SUCCESS if at least one port is bound
* to the dissector name
*/
SLIST_FOREACH (e, &dissect_list, next) {
if (!strcasecmp(e->name, name) && e->type == port && e->level == level) {
return E_SUCCESS;
}
}
return -E_NOTFOUND;
}
/* EOF */
// vim:ts=3:expandtab