@@ -120,25 +120,26 @@ static void *ja4_preproc(void *dataPtr, uint32_t length, data_t data, recordHand
120
120
*/
121
121
122
122
static struct flow_procs_map_s {
123
- filterFunction_t filterNum ;
124
123
char * name ;
125
124
flow_proc_t function ;
126
- } flow_procs_map [] = {{ FUNC_NONE , "none" , NULL },
127
- { FUNC_DURATION , "duration" , duration_function },
128
- { FUNC_PPS , "pps" , pps_function },
129
- { FUNC_BPS , "bps" , bps_function },
130
- { FUNC_BPP , "bpp" , bpp_function },
131
- { FUNC_MPLS_LABEL , "mpls label" , mpls_label_function },
132
- { FUNC_MPLS_EOS , "mpls eos" , mpls_eos_function },
133
- { FUNC_MPLS_EXP , "mpls exp" , mpls_exp_function },
134
- { FUNC_MPLS_ANY , "mpls any" , mpls_any_function },
135
- { FUNC_PBLOCK , "pblock" , pblock_function },
136
- { FUNC_MMAS_LOOKUP , "AS Lockup" , mmASLookup_function },
137
- { 0 , NULL , NULL }};
125
+ } const flow_procs_map [] = {[ FUNC_NONE ] = { "none" , NULL },
126
+ [ FUNC_DURATION ] = { "duration" , duration_function },
127
+ [ FUNC_PPS ] = { "pps" , pps_function },
128
+ [ FUNC_BPS ] = { "bps" , bps_function },
129
+ [ FUNC_BPP ] = { "bpp" , bpp_function },
130
+ [ FUNC_MPLS_LABEL ] = { "mpls label" , mpls_label_function },
131
+ [ FUNC_MPLS_EOS ] = { "mpls eos" , mpls_eos_function },
132
+ [ FUNC_MPLS_EXP ] = { "mpls exp" , mpls_exp_function },
133
+ [ FUNC_MPLS_ANY ] = { "mpls any" , mpls_any_function },
134
+ [ FUNC_PBLOCK ] = { "pblock" , pblock_function },
135
+ [ FUNC_MMAS_LOOKUP ] = { "AS Lockup" , mmASLookup_function },
136
+ { NULL , NULL }};
138
137
139
138
static struct preprocess_s {
140
139
preprocess_proc_t function ;
141
- } preprocess_map [] = {{ssl_preproc }, {ja3_preproc }, {ja4_preproc }, {NULL }};
140
+ } const preprocess_map [] = {[SSLindex ] = {ssl_preproc }, [JA3index ] = {ja3_preproc }, [JA4index ] = {ja4_preproc }, {NULL }};
141
+
142
+ // static const int a[20] = {1, 2, 3, [8] = 10, 11, 12};
142
143
143
144
// 128bit compare for IPv6
144
145
static int IPNodeCMP (struct IPListNode * e1 , struct IPListNode * e2 ) {
@@ -423,12 +424,6 @@ uint32_t NewElement(uint32_t extID, uint32_t offset, uint32_t length, uint64_t v
423
424
}
424
425
dbg_printf ("New element: extID: %u, offset: %u, length: %u, value: %llu\n" , extID , offset , length , value );
425
426
426
- // sanity check
427
- if (function && flow_procs_map [function ].filterNum != function ) {
428
- LogError ("Software error in %s line %d" , __FILE__ , __LINE__ );
429
- exit (255 );
430
- }
431
-
432
427
FilterTree [n ] = (filterElement_t ){
433
428
.extID = extID ,
434
429
.offset = offset ,
@@ -663,7 +658,7 @@ static int RunExtendedFilter(const FilterEngine_t *engine, recordHandle_t *handl
663
658
}
664
659
data_t data = engine -> filter [index ].data ;
665
660
uint32_t length = engine -> filter [index ].length ;
666
- inPtr = preprocess_map [extID - MAXEXTENSIONS - 1 ].function (inPtr , length , data , handle );
661
+ inPtr = preprocess_map [extID ].function (inPtr , length , data , handle );
667
662
if (inPtr == NULL ) {
668
663
index = engine -> filter [index ].OnFalse ;
669
664
continue ;
0 commit comments