Skip to content

Commit 97b619a

Browse files
committed
refine const definitions in filter code
1 parent 63309d6 commit 97b619a

File tree

2 files changed

+17
-21
lines changed

2 files changed

+17
-21
lines changed

src/include/nfdump.h

+1
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,7 @@ typedef struct recordHandle_s {
9898
#define OFFflowCount offsetof(recordHandle_t, flowCount)
9999
#define SIZEflowCount MemberSize(recordHandle_t, flowCount)
100100
uint32_t numElements;
101+
uint32_t localStack[2];
101102
} recordHandle_t;
102103

103104
typedef struct stat_record_s {

src/libnfdump/filter/filter.c

+16-21
Original file line numberDiff line numberDiff line change
@@ -120,25 +120,26 @@ static void *ja4_preproc(void *dataPtr, uint32_t length, data_t data, recordHand
120120
*/
121121

122122
static struct flow_procs_map_s {
123-
filterFunction_t filterNum;
124123
char *name;
125124
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}};
138137

139138
static struct preprocess_s {
140139
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};
142143

143144
// 128bit compare for IPv6
144145
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
423424
}
424425
dbg_printf("New element: extID: %u, offset: %u, length: %u, value: %llu\n", extID, offset, length, value);
425426

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-
432427
FilterTree[n] = (filterElement_t){
433428
.extID = extID,
434429
.offset = offset,
@@ -663,7 +658,7 @@ static int RunExtendedFilter(const FilterEngine_t *engine, recordHandle_t *handl
663658
}
664659
data_t data = engine->filter[index].data;
665660
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);
667662
if (inPtr == NULL) {
668663
index = engine->filter[index].OnFalse;
669664
continue;

0 commit comments

Comments
 (0)