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
|
/*-
* Copyright 2016 Vsevolod Stakhov
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
#ifndef RSPAMD_SYMBOLS_CACHE_H
#define RSPAMD_SYMBOLS_CACHE_H
#include "config.h"
#include "ucl.h"
#include <lua.h>
#include <event.h>
struct rspamd_task;
struct rspamd_config;
struct symbols_cache;
struct rspamd_worker;
typedef void (*symbol_func_t)(struct rspamd_task *task, gpointer user_data);
enum rspamd_symbol_type {
SYMBOL_TYPE_NORMAL = (1 << 0),
SYMBOL_TYPE_VIRTUAL = (1 << 1),
SYMBOL_TYPE_CALLBACK = (1 << 2),
SYMBOL_TYPE_GHOST = (1 << 3),
SYMBOL_TYPE_SKIPPED = (1 << 4),
SYMBOL_TYPE_COMPOSITE = (1 << 5),
SYMBOL_TYPE_CLASSIFIER = (1 << 6),
SYMBOL_TYPE_FINE = (1 << 7),
SYMBOL_TYPE_EMPTY = (1 << 8), /* Allow execution on empty tasks */
SYMBOL_TYPE_PREFILTER = (1 << 9),
SYMBOL_TYPE_POSTFILTER = (1 << 10),
SYMBOL_TYPE_NOSTAT = (1 << 11), /* Skip as statistical symbol */
SYMBOL_TYPE_IDEMPOTENT = (1 << 12), /* Symbol cannot change metric */
};
/**
* Abstract structure for saving callback data for symbols
*/
struct rspamd_abstract_callback_data {
guint64 magic;
char data[];
};
/**
* Creates new cache structure
* @return
*/
struct symbols_cache* rspamd_symbols_cache_new (struct rspamd_config *cfg);
/**
* Remove the cache structure syncing data if needed
* @param cache
*/
void rspamd_symbols_cache_destroy (struct symbols_cache *cache);
/**
* Saves symbols cache to disk if possible
* @param cache
*/
void rspamd_symbols_cache_save (struct symbols_cache *cache);
/**
* Load symbols cache from file, must be called _after_ init_symbols_cache
*/
gboolean rspamd_symbols_cache_init (struct symbols_cache* cache);
/**
* Generic function to register a symbol
* @param cache
* @param name
* @param weight
* @param priority
* @param func
* @param user_data
* @param type
* @param parent
*/
gint rspamd_symbols_cache_add_symbol (struct symbols_cache *cache,
const gchar *name,
gint priority,
symbol_func_t func,
gpointer user_data,
enum rspamd_symbol_type type,
gint parent);
/**
* Add condition to the specific symbol in cache
* @param cache
* @param id id of symbol
* @param L lua state pointer
* @param cbref callback reference (returned by luaL_ref)
* @return TRUE if condition has been added
*/
gboolean rspamd_symbols_cache_add_condition (struct symbols_cache *cache,
gint id, lua_State *L, gint cbref);
/**
* Add callback to be executed whenever symbol has peak value
* @param cache
* @param cbref
*/
void rspamd_symbols_cache_set_peak_callback (struct symbols_cache *cache,
gint cbref);
/**
* Add delayed condition to the specific symbol in cache. So symbol can be absent
* to the moment of addition
* @param cache
* @param id id of symbol
* @param L lua state pointer
* @param cbref callback reference (returned by luaL_ref)
* @return TRUE if condition has been added
*/
gboolean rspamd_symbols_cache_add_condition_delayed (struct symbols_cache *cache,
const gchar *sym, lua_State *L, gint cbref);
/**
* Find symbol in cache by id and returns its id resolving virtual symbols if
* applicable
* @param cache
* @param name
* @return id of symbol or (-1) if a symbol has not been found
*/
gint rspamd_symbols_cache_find_symbol (struct symbols_cache *cache,
const gchar *name);
/**
* Get statistics for a specific symbol
* @param cache
* @param name
* @param frequency
* @param tm
* @return
*/
gboolean rspamd_symbols_cache_stat_symbol (struct symbols_cache *cache,
const gchar *name, gdouble *frequency, gdouble *freq_stddev,
gdouble *tm, guint *nhits);
/**
* Find symbol in cache by its id
* @param cache
* @param id
* @return symbol's name or NULL
*/
const gchar * rspamd_symbols_cache_symbol_by_id (struct symbols_cache *cache,
gint id);
/**
* Returns number of symbols registered in symbols cache
* @param cache
* @return number of symbols in the cache
*/
guint rspamd_symbols_cache_stats_symbols_count (struct symbols_cache *cache);
/**
* Call function for cached symbol using saved callback
* @param task task object
* @param cache symbols cache
* @param saved_item pointer to currently saved item
*/
gboolean rspamd_symbols_cache_process_symbols (struct rspamd_task *task,
struct symbols_cache *cache, gint stage);
/**
* Validate cache items against theirs weights defined in metrics
* @param cache symbols cache
* @param cfg configuration
* @param strict do strict checks - symbols MUST be described in metrics
*/
gboolean rspamd_symbols_cache_validate (struct symbols_cache *cache,
struct rspamd_config *cfg,
gboolean strict);
/**
* Return statistics about the cache as ucl object (array of objects one per item)
* @param cache
* @return
*/
ucl_object_t *rspamd_symbols_cache_counters (struct symbols_cache * cache);
/**
* Start cache reloading
* @param cache
* @param ev_base
*/
void rspamd_symbols_cache_start_refresh (struct symbols_cache * cache,
struct event_base *ev_base, struct rspamd_worker *w);
/**
* Increases counter for a specific symbol
* @param cache
* @param symbol
*/
void rspamd_symbols_cache_inc_frequency (struct symbols_cache *cache,
const gchar *symbol);
/**
* Add dependency relation between two symbols identified by id (source) and
* a symbolic name (destination). Destination could be virtual or real symbol.
* Callback destinations are not yet supported.
* @param id_from source symbol
* @param to destination name
*/
void rspamd_symbols_cache_add_dependency (struct symbols_cache *cache,
gint id_from, const gchar *to);
/**
* Add delayed dependency that is resolved on cache post-load routine
* @param cache
* @param from
* @param to
*/
void rspamd_symbols_cache_add_delayed_dependency (struct symbols_cache *cache,
const gchar *from, const gchar *to);
/**
* Disable specific symbol in the cache
* @param cache
* @param symbol
*/
void rspamd_symbols_cache_disable_symbol (struct symbols_cache *cache,
const gchar *symbol);
/**
* Enable specific symbol in the cache
* @param cache
* @param symbol
*/
void rspamd_symbols_cache_enable_symbol (struct symbols_cache *cache,
const gchar *symbol);
/**
* Get abstract callback data for a symbol (or its parent symbol)
* @param cache cache object
* @param symbol symbol name
* @return abstract callback data or NULL if symbol is absent or has no data attached
*/
struct rspamd_abstract_callback_data* rspamd_symbols_cache_get_cbdata (
struct symbols_cache *cache, const gchar *symbol);
/**
* Sets new callback data for a symbol in cache
* @param cache
* @param symbol
* @param cbdata
* @return
*/
gboolean rspamd_symbols_cache_set_cbdata (struct symbols_cache *cache,
const gchar *symbol, struct rspamd_abstract_callback_data *cbdata);
/**
* Process settings for task
* @param task
* @param cache
* @return
*/
gboolean rspamd_symbols_cache_process_settings (struct rspamd_task *task,
struct symbols_cache *cache);
/**
* Checks if a symbol specified has been checked (or disabled)
* @param task
* @param cache
* @param symbol
* @return
*/
gboolean rspamd_symbols_cache_is_checked (struct rspamd_task *task,
struct symbols_cache *cache, const gchar *symbol);
/**
* Returns checksum for all cache items
* @param cache
* @return
*/
guint64 rspamd_symbols_cache_get_cksum (struct symbols_cache *cache);
/**
* Checks if a symbols is enabled (not checked and conditions return true if present)
* @param task
* @param cache
* @param symbol
* @return
*/
gboolean rspamd_symbols_cache_is_symbol_enabled (struct rspamd_task *task,
struct symbols_cache *cache, const gchar *symbol);
/**
* Process specific function for each cache element (in order they are added)
* @param cache
* @param func
* @param ud
*/
void rspamd_symbols_cache_foreach (struct symbols_cache *cache,
void (*func)(gint /* id */, const gchar * /* name */,
gint /* flags */, gpointer /* userdata */),
gpointer ud);
#endif
|