forked from phaag/nfdump
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathnftree.c
631 lines (532 loc) · 17.8 KB
/
nftree.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
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
/*
* Copyright (c) 2014, Peter Haag
* Copyright (c) 2009, Peter Haag
* Copyright (c) 2004-2008, SWITCH - Teleinformatikdienste fuer Lehre und Forschung
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
*
* * Redistributions of source code must retain the above copyright notice,
* this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright notice,
* this list of conditions and the following disclaimer in the documentation
* and/or other materials provided with the distribution.
* * Neither the name of the author nor the names of its contributors may be
* used to endorse or promote products derived from this software without
* specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
* AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
* LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
* CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
* SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
* INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
* CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
* ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
* POSSIBILITY OF SUCH DAMAGE.
*
* $Author: haag $
*
* $Id: nftree.c 39 2009-11-25 08:11:15Z haag $
*
* $LastChangedRevision: 39 $
*
*/
#include "config.h"
#include <stdio.h>
#include <stdlib.h>
#include <sys/types.h>
#include <string.h>
#include <errno.h>
#ifdef HAVE_STDINT_H
#include <stdint.h>
#endif
#include "rbtree.h"
#include "nfdump.h"
#include "nffile.h"
#include "nf_common.h"
#include "ipconv.h"
#include "nftree.h"
#include "grammar.h"
/*
* netflow filter engine
*
*/
extern char *CurrentIdent;
#define MAXBLOCKS 1024
static FilterBlock_t *FilterTree;
static uint32_t memblocks;
static uint32_t NumBlocks = 1; /* index 0 reserved */
#define IdentNumBlockSize 32
static uint16_t MaxIdents;
static uint16_t NumIdents;
static char **IdentList;
static void UpdateList(uint32_t a, uint32_t b);
/* flow processing functions */
static inline void pps_function(uint64_t *record_data, uint64_t *comp_values);
static inline void bps_function(uint64_t *record_data, uint64_t *comp_values);
static inline void bpp_function(uint64_t *record_data, uint64_t *comp_values);
static inline void duration_function(uint64_t *record_data, uint64_t *comp_values);
static inline void mpls_eos_function(uint64_t *record_data, uint64_t *comp_values);
static inline void mpls_any_function(uint64_t *record_data, uint64_t *comp_values);
static inline void pblock_function(uint64_t *record_data, uint64_t *comp_values);
/*
* flow processing function table:
* order of entries must correspond with filter functions enum in nftree.h
*/
static struct flow_procs_map_s {
char *name;
flow_proc_t function;
} flow_procs_map[] = {
{"none", NULL},
{"pps", pps_function},
{"bps", bps_function},
{"bpp", bpp_function},
{"duration", duration_function},
{"mpls eos", mpls_eos_function},
{"mpls any", mpls_any_function},
{"pblock", pblock_function},
{NULL, NULL}
};
uint64_t *IPstack = NULL;
uint32_t StartNode;
uint16_t Extended;
// 128bit compare for IPv6
static int IPNodeCMP(struct IPListNode *e1, struct IPListNode *e2) {
uint64_t ip_e1[2], ip_e2[2];
ip_e1[0] = e1->ip[0] & e2->mask[0];
ip_e1[1] = e1->ip[1] & e2->mask[1];
ip_e2[0] = e2->ip[0] & e1->mask[0];
ip_e2[1] = e2->ip[1] & e1->mask[1];
if ( ip_e1[0] == ip_e2[0] ) {
if ( ip_e1[1] == ip_e2[1] )
return 0;
else
return (ip_e1[1] < ip_e2[1] ? -1 : 1);
} else {
return (ip_e1[0] < ip_e2[0] ? -1 : 1);
}
} // End of IPNodeCMP
// 64bit uint64 compare
static int ULNodeCMP(struct ULongListNode *e1, struct ULongListNode *e2) {
if ( e1->value == e2->value )
return 0;
else
return (e1->value < e2->value ? -1 : 1);
} // End of ULNodeCMP
// Insert the IP RB tree code here
RB_GENERATE(IPtree, IPListNode, entry, IPNodeCMP);
// Insert the Ulong RB tree code here
RB_GENERATE(ULongtree, ULongListNode, entry, ULNodeCMP);
void InitTree(void) {
memblocks = 1;
FilterTree = (FilterBlock_t *)malloc(MAXBLOCKS * sizeof(FilterBlock_t));
if ( !FilterTree ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(255);
}
ClearFilter();
} // End of InitTree
/*
* Clear Filter
*/
void ClearFilter(void) {
NumBlocks = 1;
Extended = 0;
MaxIdents = 0;
NumIdents = 0;
IdentList = NULL;
memset((void *)FilterTree, 0, MAXBLOCKS * sizeof(FilterBlock_t));
} /* End of ClearFilter */
FilterEngine_data_t *CompileFilter(char *FilterSyntax) {
FilterEngine_data_t *engine;
int ret;
if ( !FilterSyntax )
return NULL;
IPstack = (uint64_t *)malloc(16 * MAXHOSTS);
if ( !IPstack ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(255);
}
if ( !InitSymbols() )
exit(255);
InitTree();
lex_init(FilterSyntax);
ret = yyparse();
if ( ret != 0 ) {
return NULL;
}
lex_cleanup();
free(IPstack);
engine = malloc(sizeof(FilterEngine_data_t));
if ( !engine ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(255);
}
engine->nfrecord = NULL;
engine->StartNode = StartNode;
engine->Extended = Extended;
engine->IdentList = IdentList;
engine->filter = FilterTree;
if ( Extended )
engine->FilterEngine = RunExtendedFilter;
else
engine->FilterEngine = RunFilter;
return engine;
} // End of GetTree
/*
* For testing purpose only
*/
int nblocks(void) {
return NumBlocks - 1;
} /* End of nblocks */
/*
* Returns next free slot in blocklist
*/
uint32_t NewBlock(uint32_t offset, uint64_t mask, uint64_t value, uint16_t comp, uint32_t function, void *data) {
uint32_t n = NumBlocks;
if ( n >= ( memblocks * MAXBLOCKS ) ) {
memblocks++;
FilterTree = realloc(FilterTree, memblocks * MAXBLOCKS * sizeof(FilterBlock_t));
if ( !FilterTree ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(255);
}
}
FilterTree[n].offset = offset;
FilterTree[n].mask = mask;
FilterTree[n].value = value;
FilterTree[n].invert = 0;
FilterTree[n].OnTrue = 0;
FilterTree[n].OnFalse = 0;
FilterTree[n].comp = comp;
FilterTree[n].function = flow_procs_map[function].function;
FilterTree[n].fname = flow_procs_map[function].name;
FilterTree[n].data = data;
if ( comp > 0 || function > 0 )
Extended = 1;
FilterTree[n].numblocks = 1;
FilterTree[n].blocklist = (uint32_t *)malloc(sizeof(uint32_t));
FilterTree[n].superblock = n;
FilterTree[n].blocklist[0] = n;
NumBlocks++;
return n;
} /* End of NewBlock */
/*
* Connects the two blocks b1 and b2 ( AND ) and returns index of superblock
*/
uint32_t Connect_AND(uint32_t b1, uint32_t b2) {
uint32_t a, b, i, j;
if ( FilterTree[b1].numblocks <= FilterTree[b2].numblocks ) {
a = b1;
b = b2;
} else {
a = b2;
b = b1;
}
/* a points to block with less children and becomes the superblock
* connect b to a
*/
for ( i=0; i < FilterTree[a].numblocks; i++ ) {
j = FilterTree[a].blocklist[i];
if ( FilterTree[j].invert ) {
if ( FilterTree[j].OnFalse == 0 ) {
FilterTree[j].OnFalse = b;
}
} else {
if ( FilterTree[j].OnTrue == 0 ) {
FilterTree[j].OnTrue = b;
}
}
}
UpdateList(a,b);
return a;
} /* End of Connect_AND */
/*
* Connects the two blocks b1 and b2 ( OR ) and returns index of superblock
*/
uint32_t Connect_OR(uint32_t b1, uint32_t b2) {
uint32_t a, b, i, j;
if ( FilterTree[b1].numblocks <= FilterTree[b2].numblocks ) {
a = b1;
b = b2;
} else {
a = b2;
b = b1;
}
/* a points to block with less children and becomes the superblock
* connect b to a
*/
for ( i=0; i < FilterTree[a].numblocks; i++ ) {
j = FilterTree[a].blocklist[i];
if ( FilterTree[j].invert ) {
if ( FilterTree[j].OnTrue == 0 ) {
FilterTree[j].OnTrue = b;
}
} else {
if ( FilterTree[j].OnFalse == 0 ) {
FilterTree[j].OnFalse = b;
}
}
}
UpdateList(a,b);
return a;
} /* End of Connect_OR */
/*
* Inverts OnTrue and OnFalse
*/
uint32_t Invert(uint32_t a) {
uint32_t i, j;
for ( i=0; i< FilterTree[a].numblocks; i++ ) {
j = FilterTree[a].blocklist[i];
FilterTree[j].invert = FilterTree[j].invert ? 0 : 1 ;
}
return a;
} /* End of Invert */
/*
* Update supernode infos:
* node 'b' was connected to 'a'. update node 'a' supernode data
*/
static void UpdateList(uint32_t a, uint32_t b) {
size_t s;
uint32_t i,j;
/* numblocks contains the number of blocks in the superblock */
s = FilterTree[a].numblocks + FilterTree[b].numblocks;
FilterTree[a].blocklist = (uint32_t *)realloc(FilterTree[a].blocklist, s * sizeof(uint32_t));
if ( !FilterTree[a].blocklist ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(250);
}
/* connect list of node 'b' after list of node 'a' */
j = FilterTree[a].numblocks;
for ( i=0; i< FilterTree[b].numblocks; i++ ) {
FilterTree[a].blocklist[j+i] = FilterTree[b].blocklist[i];
}
FilterTree[a].numblocks = s;
/* set superblock info of all children to new superblock */
for ( i=0; i< FilterTree[a].numblocks; i++ ) {
j = FilterTree[a].blocklist[i];
FilterTree[j].superblock = a;
}
/* cleanup old node 'b' */
FilterTree[b].numblocks = 0;
if ( FilterTree[b].blocklist )
free(FilterTree[b].blocklist);
} /* End of UpdateList */
/*
* Dump Filterlist
*/
void DumpList(FilterEngine_data_t *args) {
uint32_t i, j;
for (i=1; i<NumBlocks; i++ ) {
if ( args->filter[i].invert )
printf("Index: %u, Offset: %u, Mask: %.16llx, Value: %.16llx, Superblock: %u, Numblocks: %u, !OnTrue: %u, !OnFalse: %u Comp: %u Function: %s\n",
i, args->filter[i].offset, (unsigned long long)args->filter[i].mask,
(unsigned long long)args->filter[i].value, args->filter[i].superblock,
args->filter[i].numblocks, args->filter[i].OnTrue, args->filter[i].OnFalse, args->filter[i].comp, args->filter[i].fname);
else
printf("Index: %u, Offset: %u, Mask: %.16llx, Value: %.16llx, Superblock: %u, Numblocks: %u, OnTrue: %u, OnFalse: %u Comp: %u Function: %s\n",
i, args->filter[i].offset, (unsigned long long)args->filter[i].mask,
(unsigned long long)args->filter[i].value, args->filter[i].superblock,
args->filter[i].numblocks, args->filter[i].OnTrue, args->filter[i].OnFalse, args->filter[i].comp, args->filter[i].fname);
if ( args->filter[i].OnTrue > (memblocks * MAXBLOCKS) || args->filter[i].OnFalse > (memblocks * MAXBLOCKS) ) {
fprintf(stderr, "Tree pointer out of range for index %u. *** ABORT ***\n", i);
exit(255);
}
if ( args->filter[i].data ) {
if ( args->filter[i].comp == CMP_IPLIST ) {
struct IPListNode *node;
RB_FOREACH(node, IPtree, args->filter[i].data) {
printf("value: %.16llx %.16llx mask: %.16llx %.16llx\n",
(unsigned long long)node->ip[0], (unsigned long long)node->ip[1],
(unsigned long long)node->mask[0], (unsigned long long)node->mask[1]);
}
} else if ( args->filter[i].comp == CMP_ULLIST ) {
struct ULongListNode *node;
RB_FOREACH(node, ULongtree, args->filter[i].data) {
printf("%.16llx \n", (unsigned long long)node->value);
}
} else
printf("Error comp: %i\n", args->filter[i].comp);
}
printf("\tBlocks: ");
for ( j=0; j<args->filter[i].numblocks; j++ )
printf("%i ", args->filter[i].blocklist[j]);
printf("\n");
}
printf("NumBlocks: %i\n", NumBlocks - 1);
for ( i=0; i<NumIdents; i++ ) {
printf("Ident %i: %s\n", i, IdentList[i]);
}
} /* End of DumpList */
/* fast filter engine */
int RunFilter(FilterEngine_data_t *args) {
uint32_t index, offset;
int evaluate, invert;
index = args->StartNode;
evaluate = 0;
invert = 0;
while ( index ) {
offset = args->filter[index].offset;
invert = args->filter[index].invert;
evaluate = ( args->nfrecord[offset] & args->filter[index].mask ) == args->filter[index].value;
index = evaluate ? args->filter[index].OnTrue : args->filter[index].OnFalse;
}
return invert ? !evaluate : evaluate;
} /* End of RunFilter */
/* extended filter engine */
int RunExtendedFilter(FilterEngine_data_t *args) {
uint32_t index, offset;
uint64_t comp_value[2];
int evaluate, invert;
index = args->StartNode;
evaluate = 0;
invert = 0;
while ( index ) {
offset = args->filter[index].offset;
invert = args->filter[index].invert;
comp_value[0] = args->nfrecord[offset] & args->filter[index].mask;
comp_value[1] = args->filter[index].value;
if (args->filter[index].function != NULL)
args->filter[index].function(args->nfrecord, comp_value);
switch (args->filter[index].comp) {
case CMP_EQ:
evaluate = comp_value[0] == comp_value[1];
break;
case CMP_GT:
evaluate = comp_value[0] > comp_value[1];
break;
case CMP_LT:
evaluate = comp_value[0] < comp_value[1];
break;
case CMP_IDENT:
evaluate = strncmp(CurrentIdent, args->IdentList[comp_value[1]], IDENTLEN) == 0 ;
break;
case CMP_FLAGS:
if ( invert )
evaluate = comp_value[0] > 0;
else
evaluate = comp_value[0] == comp_value[1];
break;
case CMP_IPLIST: {
struct IPListNode find;
find.ip[0] = args->nfrecord[offset];
find.ip[1] = args->nfrecord[offset+1];
find.mask[0] = 0xffffffffffffffffLL;
find.mask[1] = 0xffffffffffffffffLL;
evaluate = RB_FIND(IPtree, args->filter[index].data, &find) != NULL; }
break;
case CMP_ULLIST: {
struct ULongListNode find;
find.value = comp_value[0];
evaluate = RB_FIND(ULongtree, args->filter[index].data, &find ) != NULL; }
break;
}
index = evaluate ? args->filter[index].OnTrue : args->filter[index].OnFalse;
}
return invert ? !evaluate : evaluate;
} /* End of RunExtendedFilter */
uint32_t AddIdent(char *Ident) {
uint32_t num;
if ( MaxIdents == 0 ) {
// allocate first array block
MaxIdents = IdentNumBlockSize;
IdentList = (char **)malloc( MaxIdents * sizeof(char *));
if ( !IdentList ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(254);
}
memset((void *)IdentList, 0, MaxIdents * sizeof(char *));
NumIdents = 0;
} else if ( NumIdents == MaxIdents ) {
// extend array block
MaxIdents += IdentNumBlockSize;
IdentList = realloc((void *)IdentList, MaxIdents * sizeof(char *));
if ( !IdentList ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(254);
}
}
num = NumIdents++;
IdentList[num] = strdup(Ident);
if ( !IdentList[num] ) {
fprintf(stderr, "Memory allocation error in %s line %d: %s\n", __FILE__, __LINE__, strerror(errno) );
exit(254);
}
return num;
} // End of AddIdent
/* record processing functions */
static inline void duration_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
/* duration in msec */
comp_values[0] = 1000*(record->last - record->first) + record->msec_last - record->msec_first;
} // End of duration_function
static inline void pps_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
uint64_t duration;
/* duration in msec */
duration = 1000*(record->last - record->first) + record->msec_last - record->msec_first;
if ( duration == 0 )
comp_values[0] = 0;
else
comp_values[0] = ( 1000LL * record->dPkts ) / duration;
} // End of pps_function
static inline void bps_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
uint64_t duration;
/* duration in msec */
duration = 1000*(record->last - record->first) + record->msec_last - record->msec_first;
if ( duration == 0 )
comp_values[0] = 0;
else
comp_values[0] = ( 8000LL * record->dOctets ) / duration; /* 8 bits per Octet - x 1000 for msec */
} // End of bps_function
static inline void bpp_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
comp_values[0] = record->dPkts ? record->dOctets / record->dPkts : 0;
} // End of bpp_function
static inline void mpls_eos_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
int i;
// search for end of MPLS stack label
for (i=0; i<10; i++ ) {
if ( record->mpls_label[i] & 1 ) {
// End of stack found -> mask exp and eos bits
comp_values[0] = record->mpls_label[i] & 0x00FFFFF0;
return;
}
}
// trick filter to fail with an invalid mpls label value
comp_values[0] = 0xFF000000;
} // End of mpls_eos_function
static inline void mpls_any_function(uint64_t *record_data, uint64_t *comp_values) {
master_record_t *record = (master_record_t *)record_data;
int i;
// search for end of MPLS stack label
for (i=0; i<10; i++ ) {
if ( (record->mpls_label[i] & 1) == 1 ) {
// End of stack found -> mask exp and eos bits
comp_values[0] = record->mpls_label[i] & 0x00FFFFF0;
return;
}
}
// trick filter to fail with an invalid mpls label value
comp_values[0] = 0xFF000000;
} // End of mpls_eos_function
static inline void pblock_function(uint64_t *record_data, uint64_t *comp_values) {
#ifdef NSEL
master_record_t *record = (master_record_t *)record_data;
comp_values[0] = comp_values[0] >> comp_values[1];
if ( (comp_values[0] >= record->block_start) && (comp_values[0] <= record->block_end) ) {
comp_values[1] = comp_values[0];
} else {
// force "not equal"
comp_values[1] = comp_values[0] + 1;
}
#else
comp_values[1] = 0;
#endif
} // End of pblock_function