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
|
/** @file
*
* Wireshark - Network traffic analyzer
*
* Copyright 2006 Gilbert Ramirez <gram@alumni.rice.edu>
*
* SPDX-License-Identifier: GPL-2.0-or-later
*/
#ifndef DFUNCTIONS_H
#define DFUNCTIONS_H
#include <glib.h>
#include <epan/ftypes/ftypes.h>
#include <epan/dfilter/syntax-tree.h>
#include <epan/dfilter/dfilter-int.h>
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
/* Functions take any number of arguments and return 1. */
#define dfunc_fail(dfw, node, ...) \
do { \
ws_noisy("Semantic check failed here."); \
dfilter_fail_throw(dfw, DF_ERROR_GENERIC, stnode_location(node), __VA_ARGS__); \
} while (0)
/* The run-time logic of the dfilter function */
typedef bool (*DFFuncType)(GSList *stack, uint32_t arg_count, df_cell_t *retval);
/* The semantic check for the dfilter function */
typedef ftenum_t (*DFSemCheckType)(dfwork_t *dfw, const char *func_name, ftenum_t lhs_ftype,
GSList *param_list, df_loc_t func_loc);
/* This is a "function definition" record, holding everything
* we need to know about a function */
typedef struct {
const char *name;
DFFuncType function;
unsigned min_nargs;
unsigned max_nargs; /* 0 for no limit */
ftenum_t return_ftype; /* Can be FT_NONE if the function returns the same type
* as its arguments. */
DFSemCheckType semcheck_param_function;
} df_func_def_t;
WS_DLL_PUBLIC
ftenum_t
df_semcheck_param(dfwork_t *dfw, const char *func_name, ftenum_t logical_ftype,
stnode_t *param, df_loc_t func_loc);
void df_func_init(void);
/* Returns false if the function name already exists. */
WS_DLL_PUBLIC
bool df_func_register(df_func_def_t *func);
WS_DLL_PUBLIC
bool df_func_deregister(df_func_def_t *func);
/* Return the function definition record for a function of named "name" */
WS_DLL_PUBLIC
df_func_def_t* df_func_lookup(const char *name);
/* You must call g_ptr_array_unref() when you are done. */
WS_DLL_PUBLIC
GPtrArray *df_func_name_list(void);
void df_func_cleanup(void);
#ifdef __cplusplus
}
#endif /* __cplusplus */
#endif
|