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
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
|
/* Copyright (c) 2010, Vsevolod Stakhov
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions are met:
* * Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* * Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
*
* THIS SOFTWARE IS PROVIDED ''AS IS'' AND ANY
* EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
* WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
* DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
* DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
* (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
* LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
* ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
* SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include "lua_common.h"
#include "regexp.h"
/***
* @module rspamd_regexp
* Rspamd regexp is an utility module that handles rspamd perl compatible
* regular expressions
* @example
* local rspamd_regexp = require "rspamd_regexp"
*
* local re = rspamd_regexp.create_cached('/^\\s*some_string\\s*$/i')
* re:match('some_string')
* local re = rspamd_regexp.create_cached('/\\s+/i')
* re:split('word word word') -- returns ['word', 'word', 'word']
*/
LUA_FUNCTION_DEF (regexp, create);
LUA_FUNCTION_DEF (regexp, create_cached);
LUA_FUNCTION_DEF (regexp, get_cached);
LUA_FUNCTION_DEF (regexp, get_pattern);
LUA_FUNCTION_DEF (regexp, search);
LUA_FUNCTION_DEF (regexp, match);
LUA_FUNCTION_DEF (regexp, split);
LUA_FUNCTION_DEF (regexp, destroy);
LUA_FUNCTION_DEF (regexp, gc);
static const struct luaL_reg regexplib_m[] = {
LUA_INTERFACE_DEF (regexp, get_pattern),
LUA_INTERFACE_DEF (regexp, match),
LUA_INTERFACE_DEF (regexp, search),
LUA_INTERFACE_DEF (regexp, split),
LUA_INTERFACE_DEF (regexp, destroy),
{"__tostring", lua_regexp_get_pattern},
{"__gc", lua_regexp_gc},
{NULL, NULL}
};
static const struct luaL_reg regexplib_f[] = {
LUA_INTERFACE_DEF (regexp, create),
LUA_INTERFACE_DEF (regexp, get_cached),
LUA_INTERFACE_DEF (regexp, create_cached),
{NULL, NULL}
};
#define LUA_REGEXP_FLAG_DESTROYED (1 << 0)
#define IS_DESTROYED(re) ((re)->re_flags & LUA_REGEXP_FLAG_DESTROYED)
rspamd_mempool_t *regexp_static_pool = NULL;
struct rspamd_lua_regexp {
rspamd_regexp_t *re;
gchar *re_pattern;
gint re_flags;
};
static struct rspamd_lua_regexp *
lua_check_regexp (lua_State * L)
{
void *ud = luaL_checkudata (L, 1, "rspamd{regexp}");
luaL_argcheck (L, ud != NULL, 1, "'regexp' expected");
return ud ? *((struct rspamd_lua_regexp **)ud) : NULL;
}
/***
* @function rspamd_regexp.create(pattern[, flags])
* Creates new rspamd_regexp
* @param {string} pattern pattern to build regexp. If this pattern is enclosed in `//` then it is possible to specify flags after it
* @param {string} flags optional flags to create regular expression
* @return {regexp} regexp argument that is *not* automatically destroyed
* @example
* local regexp = require "rspamd_regexp"
*
* local re = regexp.create('/^test.*[0-9]\\s*$/i')
*/
static int
lua_regexp_create (lua_State *L)
{
rspamd_regexp_t *re;
struct rspamd_lua_regexp *new, **pnew;
const gchar *string, *flags_str = NULL;
GError *err = NULL;
string = luaL_checkstring (L, 1);
if (lua_gettop (L) == 2) {
flags_str = luaL_checkstring (L, 2);
}
re = rspamd_regexp_cache_create (NULL, string, flags_str, &err);
if (re == NULL) {
lua_pushnil (L);
msg_info ("cannot parse regexp: %s, error: %s",
string,
err == NULL ? "undefined" : err->message);
g_error_free (err);
}
else {
new = g_slice_alloc0 (sizeof (struct rspamd_lua_regexp));
new->re = re;
pnew = lua_newuserdata (L, sizeof (struct rspamd_lua_regexp *));
rspamd_lua_setclass (L, "rspamd{regexp}", -1);
*pnew = new;
}
return 1;
}
/***
* @function rspamd_regexp.get_cached(pattern)
* This function gets cached and pre-compiled regexp created by either `create`
* or `create_cached` methods. If no cached regexp is found then `nil` is returned.
*
* @param {string} pattern regexp pattern
* @return {regexp} cached regexp structure or `nil`
*/
static int
lua_regexp_get_cached (lua_State *L)
{
struct rspamd_lua_regexp *new, **pnew;
const gchar *line;
rspamd_regexp_t *re;
line = luaL_checkstring (L, 1);
re = rspamd_regexp_cache_query (NULL, line, NULL);
if (re) {
new = g_slice_alloc0 (sizeof (struct rspamd_lua_regexp));
new->re = re;
pnew = lua_newuserdata (L, sizeof (struct rspamd_lua_regexp *));
rspamd_lua_setclass (L, "rspamd{regexp}", -1);
*pnew = new;
}
else {
lua_pushnil (L);
}
return 1;
}
/***
* @function rspamd_regexp.create_cached(pattern[, flags])
* This function is similar to `create` but it tries to search for regexp in the
* cache first.
* @param {string} pattern pattern to build regexp. If this pattern is enclosed in `//` then it is possible to specify flags after it
* @param {string} flags optional flags to create regular expression
* @return {regexp} regexp argument that is *not* automatically destroyed
* @example
* local regexp = require "rspamd_regexp"
*
* local re = regexp.create_cached('/^test.*[0-9]\\s*$/i')
* ...
* -- This doesn't create new regexp object
* local other_re = regexp.create_cached('/^test.*[0-9]\\s*$/i')
*/
static int
lua_regexp_create_cached (lua_State *L)
{
const gchar *line;
struct rspamd_lua_regexp *new, **pnew;
rspamd_regexp_t *re;
line = luaL_checkstring (L, 1);
re = rspamd_regexp_cache_query (NULL, line, NULL);
if (re) {
new = g_slice_alloc0 (sizeof (struct rspamd_lua_regexp));
new->re = re;
pnew = lua_newuserdata (L, sizeof (struct rspamd_lua_regexp *));
rspamd_lua_setclass (L, "rspamd{regexp}", -1);
*pnew = new;
}
else {
return lua_regexp_create (L);
}
return 1;
}
/***
* @method re:get_pattern()
* Get a pattern for specified regexp object
* @return {string} pattern line
*/
static int
lua_regexp_get_pattern (lua_State *L)
{
struct rspamd_lua_regexp *re = lua_check_regexp (L);
if (re && re->re && !IS_DESTROYED (re)) {
lua_pushstring (L, rspamd_regexp_get_pattern (re->re));
}
else {
lua_pushnil (L);
}
return 1;
}
/***
* @method re:search(line)
* Search line in regular expression object. If line matches then this
* function returns the table of captured strings. Otherwise, nil is returned.
*
* @param {string} line match the specified line against regexp object
* @return {table or nil} table of strings matched or nil
* @example
* local re = regexp.create_cached('/^\s*([0-9]+)\s*$/')
* -- returns nil
* local m1 = re:search('blah')
* local m2 = re:search(' 190 ')
* -- prints '190'
* print(m2[1])
*/
static int
lua_regexp_search (lua_State *L)
{
struct rspamd_lua_regexp *re = lua_check_regexp (L);
const gchar *data;
const gchar *start = NULL, *end = NULL;
gint i;
gsize len;
gboolean matched = FALSE;
if (re && !IS_DESTROYED (re)) {
data = luaL_checklstring (L, 2, &len);
if (data) {
lua_newtable (L);
i = 0;
while (rspamd_regexp_search (re->re, data, len, &start, &end, FALSE)) {
lua_pushlstring (L, start, end - start);
lua_rawseti (L, -2, ++i);
matched = TRUE;
}
if (!matched) {
lua_pop (L, 1);
lua_pushnil (L);
}
return 1;
}
}
lua_pushnil (L);
return 1;
}
/***
* @method re:match(line[, raw_match])
* Matches line against the regular expression and return true if line matches
* (partially or completely)
*
* @param {string} line match the specified line against regexp object
* @param {bool} match raw regexp instead of utf8 one
* @return {table or nil} table of strings matched or nil
* @example
* local re = regexp.create_cached('/^\s*([0-9]+)\s*$/')
* -- returns nil
* local m1 = re:match('blah')
* local m2 = re:match(' 190 ')
*/
static int
lua_regexp_match (lua_State *L)
{
struct rspamd_lua_regexp *re = lua_check_regexp (L);
struct rspamd_lua_text *t;
const gchar *data = NULL;
gsize len = 0;
gboolean raw = FALSE;
if (re && !IS_DESTROYED (re)) {
if (lua_type (L, 2) == LUA_TSTRING) {
data = luaL_checklstring (L, 2, &len);
}
else if (lua_type (L, 2) == LUA_TUSERDATA) {
t = lua_check_text (L, 2);
if (t != NULL) {
data = t->start;
len = t->len;
}
}
if (lua_gettop (L) == 3) {
raw = lua_toboolean (L, 3);
}
if (data) {
if (rspamd_regexp_search (re->re, data, len, NULL, NULL, raw)) {
lua_pushboolean (L, TRUE);
}
else {
lua_pushboolean (L, FALSE);
}
return 1;
}
}
lua_pushnil (L);
return 1;
}
/***
* @method re:split(line)
* Split line using the specified regular expression.
* Breaks the string on the pattern, and returns an array of the tokens.
* If the pattern contains capturing parentheses, then the text for each
* of the substrings will also be returned. If the pattern does not match
* anywhere in the string, then the whole string is returned as the first
* token.
* @param {string} line line to split
* @return {table} table of split line portions
*/
static int
lua_regexp_split (lua_State *L)
{
struct rspamd_lua_regexp *re = lua_check_regexp (L);
const gchar *data;
gboolean matched = FALSE;
gsize len;
const gchar *start = NULL, *end = NULL, *old_start;
gint i;
if (re && !IS_DESTROYED (re)) {
data = luaL_checklstring (L, 2, &len);
if (data) {
lua_newtable (L);
i = 0;
old_start = data;
while (rspamd_regexp_search (re->re, data, len, &start, &end, FALSE)) {
if (start - old_start > 0) {
lua_pushlstring (L, old_start, start - old_start);
lua_rawseti (L, -2, ++i);
matched = TRUE;
}
old_start = end;
}
if (!matched) {
lua_pop (L, 1);
lua_pushnil (L);
}
return 1;
}
}
lua_pushnil (L);
return 1;
}
/***
* @method re:destroy()
* Destroy regexp from caches if needed (the pointer is removed by garbadge collector)
*/
static gint
lua_regexp_destroy (lua_State *L)
{
struct rspamd_lua_regexp *to_del = lua_check_regexp (L);
if (to_del) {
rspamd_regexp_cache_remove (NULL, to_del->re);
rspamd_regexp_unref (to_del->re);
to_del->re = NULL;
to_del->re_flags |= LUA_REGEXP_FLAG_DESTROYED;
}
return 0;
}
static gint
lua_regexp_gc (lua_State *L)
{
struct rspamd_lua_regexp *to_del = lua_check_regexp (L);
if (to_del) {
if (!IS_DESTROYED (to_del)) {
rspamd_regexp_unref (to_del->re);
}
g_slice_free1 (sizeof (*to_del), to_del);
}
return 0;
}
static gint
lua_load_regexp (lua_State * L)
{
lua_newtable (L);
luaL_register (L, NULL, regexplib_f);
return 1;
}
void
luaopen_regexp (lua_State * L)
{
luaL_newmetatable (L, "rspamd{regexp}");
lua_pushstring (L, "__index");
lua_pushvalue (L, -2);
lua_settable (L, -3);
lua_pushstring (L, "class");
lua_pushstring (L, "rspamd{regexp}");
lua_rawset (L, -3);
luaL_register (L, NULL, regexplib_m);
rspamd_lua_add_preload (L, "rspamd_regexp", lua_load_regexp);
regexp_static_pool = rspamd_mempool_new (rspamd_mempool_suggest_size ());
}
|