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
|
--[[
Copyright (c) 2019, Vsevolod Stakhov <vsevolod@highsecure.ru>
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.
]]--
local fun = require 'fun'
local lua_util = require "lua_util"
local ts = require("tableshape").types
local logger = require 'rspamd_logger'
local M = "selectors"
local maps = require "lua_selectors/maps"
local function pure_type(ltype)
return ltype:match('^(.*)_list$')
end
local transform_function = {
-- Returns the lowercased string
['lower'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, _)
return inp:lower(),'string'
end,
['description'] = 'Returns the lowercased string',
},
-- Returns the first element
['first'] = {
['types'] = {
['list'] = true,
},
['process'] = function(inp, t)
return fun.head(inp),pure_type(t)
end,
['description'] = 'Returns the first element',
},
-- Returns the last element
['last'] = {
['types'] = {
['list'] = true,
},
['process'] = function(inp, t)
return fun.nth(fun.length(inp), inp),pure_type(t)
end,
['description'] = 'Returns the last element',
},
-- Returns the nth element
['nth'] = {
['types'] = {
['list'] = true,
},
['process'] = function(inp, t, args)
return fun.nth(args[1] or 1, inp),pure_type(t)
end,
['description'] = 'Returns the nth element',
['args_schema'] = {ts.number + ts.string / tonumber}
},
['take_n'] = {
['types'] = {
['list'] = true,
},
['process'] = function(inp, t, args)
return fun.take_n(args[1] or 1, inp),t
end,
['description'] = 'Returns the n first elements',
['args_schema'] = {ts.number + ts.string / tonumber}
},
['drop_n'] = {
['types'] = {
['list'] = true,
},
['process'] = function(inp, t, args)
return fun.drop_n(args[1] or 1, inp),t
end,
['description'] = 'Returns list without the first n elements',
['args_schema'] = {ts.number + ts.string / tonumber}
},
-- Joins strings into a single string using separator in the argument
['join'] = {
['types'] = {
['string_list'] = true
},
['process'] = function(inp, _, args)
return table.concat(fun.totable(inp), args[1] or ''), 'string'
end,
['description'] = 'Joins strings into a single string using separator in the argument',
['args_schema'] = {ts.string:is_optional()}
},
-- Sort strings
['sort'] = {
['types'] = {
['list'] = true
},
['process'] = function(inp, t, _)
table.sort(inp)
return inp, t
end,
['description'] = 'Sort strings lexicographically',
},
-- Return unique elements based on hashing (can work without sorting)
['uniq'] = {
['types'] = {
['list'] = true
},
['process'] = function(inp, t, _)
local tmp = {}
fun.each(function(val)
tmp[val] = true
end, inp)
return fun.map(function(k, _) return k end, tmp), t
end,
['description'] = 'Returns a list of unique elements (using a hash table)',
},
-- Create a digest from string or a list of strings
['digest'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'hash',
['process'] = function(inp, _, args)
local hash = require 'rspamd_cryptobox_hash'
local encoding = args[1] or 'hex'
local ht = args[2] or 'blake2'
local h = hash:create_specific(ht):update(inp)
local s
if encoding == 'hex' then
s = h:hex()
elseif encoding == 'base32' then
s = h:base32()
elseif encoding == 'base64' then
s = h:base64()
end
return s,'string'
end,
['description'] = [[Create a digest from a string.
The first argument is encoding (`hex`, `base32`, `base64`),
the second argument is optional hash type (`blake2`, `sha256`, `sha1`, `sha512`, `md5`)]],
['args_schema'] = {ts.one_of{'hex', 'base32', 'base64'}:is_optional(),
ts.one_of{'blake2', 'sha256', 'sha1', 'sha512', 'md5'}:is_optional()}
},
-- Extracts substring
['substring'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
local start_pos = args[1] or 1
local end_pos = args[2] or -1
return inp:sub(start_pos, end_pos), 'string'
end,
['description'] = 'Extracts substring; the first argument is start, the second is the last (like in Lua)',
['args_schema'] = {(ts.number + ts.string / tonumber):is_optional(),
(ts.number + ts.string / tonumber):is_optional()}
},
-- Prepends a string or a strings list
['prepend'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
local prepend = table.concat(args, '')
return prepend .. inp, 'string'
end,
['description'] = 'Prepends a string or a strings list',
},
-- Appends a string or a strings list
['append'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
local append = table.concat(args, '')
return inp .. append, 'string'
end,
['description'] = 'Appends a string or a strings list',
},
-- Regexp matching
['regexp'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
local rspamd_regexp = require "rspamd_regexp"
local re = rspamd_regexp.create_cached(args[1])
if not re then
logger.errx('invalid regexp: %s', args[1])
return nil
end
local res = re:search(inp, false, true)
if res then
if #res == 1 then
return res[1],'string'
end
return res,'string_list'
end
return nil
end,
['description'] = 'Regexp matching',
['args_schema'] = {ts.string}
},
-- Returns a value if it exists in some map (or acts like a `filter` function)
['filter_map'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, t, args)
local map = maps[args[1]]
if not map then
logger.errx('invalid map name: %s', args[1])
return nil
end
local res = map:get_key(inp)
if res then
return inp,t
end
return nil
end,
['description'] = 'Returns a value if it exists in some map (or acts like a `filter` function)',
['args_schema'] = {ts.string}
},
-- Returns a value if it exists in some map (or acts like a `filter` function)
['except_map'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, t, args)
local map = maps[args[1]]
if not map then
logger.errx('invalid map name: %s', args[1])
return nil
end
local res = map:get_key(inp)
if not res then
return inp,t
end
return nil
end,
['description'] = 'Returns a value if it does not exists in some map (or acts like a `except` function)',
['args_schema'] = {ts.string}
},
-- Returns a value from some map corresponding to some key (or acts like a `map` function)
['apply_map'] = {
['types'] = {
['string'] = true
},
['map_type'] = 'string',
['process'] = function(inp, t, args)
local map = maps[args[1]]
if not map then
logger.errx('invalid map name: %s', args[1])
return nil
end
local res = map:get_key(inp)
if res then
return res,t
end
return nil
end,
['description'] = 'Returns a value from some map corresponding to some key (or acts like a `map` function)',
['args_schema'] = {ts.string}
},
-- Drops input value and return values from function's arguments or an empty string
['id'] = {
['types'] = {
['string'] = true,
['list'] = true,
},
['map_type'] = 'string',
['process'] = function(_, _, args)
if args[1] and args[2] then
return fun.map(tostring, args),'string_list'
elseif args[1] then
return args[1],'string'
end
return '','string'
end,
['description'] = 'Drops input value and return values from function\'s arguments or an empty string',
['args_schema'] = (ts.string + ts.array_of(ts.string)):is_optional()
},
['equal'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
if inp == args[1] then
return inp,'string'
end
return nil
end,
['description'] = [[Boolean function equal.
Returns either nil or its argument if input is equal to argument]],
['args_schema'] = {ts.string}
},
-- Boolean function in, returns either nil or its input if input is in args list
['in'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, t, args)
for _,a in ipairs(args) do if a == inp then return inp,t end end
return nil
end,
['description'] = [[Boolean function in.
Returns either nil or its input if input is in args list]],
['args_schema'] = ts.array_of(ts.string)
},
['not_in'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, t, args)
for _,a in ipairs(args) do if a == inp then return nil end end
return inp,t
end,
['description'] = [[Boolean function not in.
Returns either nil or its input if input is not in args list]],
['args_schema'] = ts.array_of(ts.string)
},
['inverse'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
if inp then
return nil
else
return (args[1] or 'true'),'string'
end
end,
['description'] = [[Inverses input.
Empty string comes the first argument or 'true', non-empty string comes nil]],
['args_schema'] = {ts.string:is_optional()}
},
['ipmask'] = {
['types'] = {
['string'] = true,
},
['map_type'] = 'string',
['process'] = function(inp, _, args)
local rspamd_ip = require "rspamd_ip"
-- Non optimal: convert string to an IP address
local ip = rspamd_ip.from_string(inp)
if not ip or not ip:is_valid() then
lua_util.debugm(M, "cannot convert %s to IP", inp)
return nil
end
if ip:get_version() == 4 then
local mask = tonumber(args[1])
return ip:apply_mask(mask):to_string(),'string'
else
-- IPv6 takes the second argument or the first one...
local mask_str = args[2] or args[1]
local mask = tonumber(mask_str)
return ip:apply_mask(mask):to_string(),'string'
end
end,
['description'] = 'Applies mask to IP address.' ..
' The first argument is the mask for IPv4 addresses, the second is the mask for IPv6 addresses.',
['args_schema'] = {(ts.number + ts.string / tonumber),
(ts.number + ts.string / tonumber):is_optional()}
},
}
transform_function.match = transform_function.regexp
return transform_function
|