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
|
/*-
* 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.
*/
#include "lua_common.h"
#include "acism.h"
#include "message.h"
/***
* @module rspamd_trie
* Rspamd trie module provides the data structure suitable for searching of many
* patterns in arbitrary texts (or binary chunks). The algorithmic complexity of
* this algorithm is at most O(n + m + z), where `n` is the length of text, `m` is a length of pattern and `z` is a number of patterns in the text.
*
* Here is a typical example of trie usage:
* @example
local rspamd_trie = require "rspamd_trie"
local patterns = {'aab', 'ab', 'bcd\0ef'}
local trie = rspamd_trie.create(patterns)
local function trie_callback(number, pos)
print('Matched pattern number ' .. tostring(number) .. ' at pos: ' .. tostring(pos))
end
trie:match('some big text', trie_callback)
*/
/* Suffix trie */
LUA_FUNCTION_DEF (trie, create);
LUA_FUNCTION_DEF (trie, match);
LUA_FUNCTION_DEF (trie, search_mime);
LUA_FUNCTION_DEF (trie, search_rawmsg);
LUA_FUNCTION_DEF (trie, destroy);
static const struct luaL_reg trielib_m[] = {
LUA_INTERFACE_DEF (trie, match),
LUA_INTERFACE_DEF (trie, search_mime),
LUA_INTERFACE_DEF (trie, search_rawmsg),
{"__tostring", rspamd_lua_class_tostring},
{"__gc", lua_trie_destroy},
{NULL, NULL}
};
static const struct luaL_reg trielib_f[] = {
LUA_INTERFACE_DEF (trie, create),
{NULL, NULL}
};
static ac_trie_t *
lua_check_trie (lua_State * L, gint idx)
{
void *ud = luaL_checkudata (L, 1, "rspamd{trie}");
luaL_argcheck (L, ud != NULL, 1, "'trie' expected");
return ud ? *((ac_trie_t **)ud) : NULL;
}
static gint
lua_trie_destroy (lua_State *L)
{
ac_trie_t *trie = lua_check_trie (L, 1);
if (trie) {
acism_destroy (trie);
}
return 0;
}
/***
* function trie.create(patterns)
* Creates new trie data structure
* @param {table} array of string patterns
* @return {trie} new trie object
*/
static gint
lua_trie_create (lua_State *L)
{
ac_trie_t *trie, **ptrie;
ac_trie_pat_t *pat;
gint npat = 0;
gsize sz;
if (!lua_istable (L, 1)) {
msg_err ("lua trie expects array of patterns for now");
lua_pushnil (L);
}
else {
lua_pushvalue (L, 1);
lua_pushnil (L);
while (lua_next (L, -2) != 0) {
if (lua_isstring (L, -1)) {
npat ++;
}
lua_pop (L, 1);
}
pat = g_new (ac_trie_pat_t, npat);
lua_pushnil (L);
npat = 0;
while (lua_next (L, -2) != 0) {
if (lua_isstring (L, -1)) {
pat[npat].ptr = lua_tolstring (L, -1, &sz);
pat[npat].len = sz;
npat ++;
}
lua_pop (L, 1);
}
lua_pop (L, 1); /* table */
trie = acism_create (pat, npat);
ptrie = lua_newuserdata (L, sizeof (ac_trie_t *));
rspamd_lua_setclass (L, "rspamd{trie}", -1);
*ptrie = trie;
g_free (pat);
}
return 1;
}
struct lua_trie_cbdata {
gboolean found;
lua_State *L;
};
static gint
lua_trie_callback (int strnum, int textpos, void *context)
{
struct lua_trie_cbdata *cb = context;
lua_State *L;
gint ret;
L = cb->L;
cb->found = TRUE;
/* Function */
lua_pushvalue (L, 3);
lua_pushnumber (L, strnum + 1);
lua_pushnumber (L, textpos);
if (lua_pcall (L, 2, 1, 0) != 0) {
msg_info ("call to trie callback has failed: %s",
lua_tostring (L, -1));
return 1;
}
ret = lua_tonumber (L, -1);
lua_pop (L, 1);
return ret;
}
/*
* We assume that callback argument is at pos 3 and icase is in position 4
*/
static gint
lua_trie_search_str (lua_State *L, ac_trie_t *trie, const gchar *str, gsize len,
gint *statep)
{
struct lua_trie_cbdata cb;
gboolean icase = FALSE;
if (lua_gettop (L) == 4) {
icase = lua_toboolean (L, 4);
}
cb.L = L;
cb.found = FALSE;
acism_lookup (trie, str, len,
lua_trie_callback, &cb, statep, icase);
return cb.found;
}
/***
* @method trie:match(input, cb[, caseless])
* Search for patterns in `input` invoking `cb` optionally ignoring case
* @param {table or string} input one or several (if `input` is an array) strings of input text
* @param {function} cb callback called on each pattern match in form `function (idx, pos)` where `idx` is a numeric index of pattern (starting from 1) and `pos` is a numeric offset where the pattern ends
* @param {boolean} caseless if `true` then match ignores symbols case (ASCII only)
* @return {boolean} `true` if any pattern has been found (`cb` might be called multiple times however)
*/
static gint
lua_trie_match (lua_State *L)
{
ac_trie_t *trie = lua_check_trie (L, 1);
const gchar *text;
gint state = 0;
gsize len;
gboolean found = FALSE;
if (trie) {
if (lua_type (L, 2) == LUA_TTABLE) {
lua_pushvalue (L, 2);
lua_pushnil (L);
while (lua_next (L, -2) != 0) {
if (lua_isstring (L, -1)) {
text = lua_tolstring (L, -1, &len);
if (lua_trie_search_str (L, trie, text, len, &state)) {
found = TRUE;
}
}
lua_pop (L, 1);
}
lua_pop (L, 1); /* table */
}
else if (lua_type (L, 2) == LUA_TSTRING) {
text = lua_tolstring (L, 2, &len);
if (lua_trie_search_str (L, trie, text, len, &state)) {
found = TRUE;
}
}
}
lua_pushboolean (L, found);
return 1;
}
/***
* @method trie:search_mime(task, cb[, caseless])
* This is a helper mehthod to search pattern within text parts of a message in rspamd task
* @param {task} task object
* @param {function} cb callback called on each pattern match @see trie:match
* @param {boolean} caseless if `true` then match ignores symbols case (ASCII only)
* @return {boolean} `true` if any pattern has been found (`cb` might be called multiple times however)
*/
static gint
lua_trie_search_mime (lua_State *L)
{
ac_trie_t *trie = lua_check_trie (L, 1);
struct rspamd_task *task = lua_check_task (L, 2);
struct mime_text_part *part;
const gchar *text;
gint state = 0;
gsize len, i;
gboolean found = FALSE;
if (trie) {
for (i = 0; i < task->text_parts->len; i ++) {
part = g_ptr_array_index (task->text_parts, i);
if (!IS_PART_EMPTY (part) && part->content != NULL) {
text = part->content->data;
len = part->content->len;
if (lua_trie_search_str (L, trie, text, len, &state) != 0) {
found = TRUE;
}
}
}
}
lua_pushboolean (L, found);
return 1;
}
/***
* @method trie:search_rawmsg(task, cb[, caseless])
* This is a helper mehthod to search pattern within the whole undecoded content of rspamd task
* @param {task} task object
* @param {function} cb callback called on each pattern match @see trie:match
* @param {boolean} caseless if `true` then match ignores symbols case (ASCII only)
* @return {boolean} `true` if any pattern has been found (`cb` might be called multiple times however)
*/
static gint
lua_trie_search_rawmsg (lua_State *L)
{
ac_trie_t *trie = lua_check_trie (L, 1);
struct rspamd_task *task = lua_check_task (L, 2);
const gchar *text;
gint state = 0;
gsize len;
gboolean found = FALSE;
if (trie) {
text = task->msg.begin;
len = task->msg.len;
if (lua_trie_search_str (L, trie, text, len, &state) != 0) {
found = TRUE;
}
}
lua_pushboolean (L, found);
return 1;
}
static gint
lua_load_trie (lua_State *L)
{
lua_newtable (L);
luaL_register (L, NULL, trielib_f);
return 1;
}
void
luaopen_trie (lua_State * L)
{
luaL_newmetatable (L, "rspamd{trie}");
lua_pushstring (L, "__index");
lua_pushvalue (L, -2);
lua_settable (L, -3);
lua_pushstring (L, "class");
lua_pushstring (L, "rspamd{trie}");
lua_rawset (L, -3);
luaL_register (L, NULL, trielib_m);
rspamd_lua_add_preload (L, "rspamd_trie", lua_load_trie);
lua_pop (L, 1); /* remove metatable from stack */
}
|