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
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
|
--[[
Copyright (c) 2011-2015, 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.
]]--
-- Multimap is rspamd module designed to define and operate with different maps
local rules = {}
local rspamd_logger = require "rspamd_logger"
local cdb = require "rspamd_cdb"
local util = require "rspamd_util"
local regexp = require "rspamd_regexp"
local rspamd_expression = require "rspamd_expression"
local redis_params
local fun = require "fun"
local urls = {}
local value_types = {
ip = {
get_value = function(ip) return ip:to_string() end,
},
from = {
get_value = function(val) return val end,
},
header = {
get_value = function(val) return val end,
},
rcpt = {
get_value = function(val) return val end,
},
user = {
get_value = function(val) return val end,
},
url = {
get_value = function(val) return val end,
},
dnsbl = {
get_value = function(ip) return ip:to_string() end,
},
filename = {
get_value = function(val) return val end,
},
content = {
get_value = function() return nil end,
},
hostname = {
get_value = function(val) return val end,
},
asn = {
get_value = function(val) return val end,
},
country = {
get_value = function(val) return val end,
},
mempool = {
get_value = function(val) return val end,
},
}
local function ip_to_rbl(ip, rbl)
return table.concat(ip:inversed_str_octets(), ".") .. '.' .. rbl
end
local function apply_hostname_filter(task, filter, hostname, r)
if filter == 'tld' then
local tld = util.get_tld(hostname)
return tld
else
if not r['re_filter'] then
local pat = string.match(filter, 'tld:regexp:(.+)')
if not pat then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
return
end
r['re_filter'] = regexp.create(pat)
if not r['re_filter'] then
rspamd_logger.errx(task, 'couldnt create regex: %s', pat)
return
end
end
local tld = util.get_tld(hostname)
local res = r['re_filter']:search(tld)
if res then
return res[1]
else
return nil
end
end
end
local function apply_url_filter(task, filter, url, r)
if not filter then
return url:get_host()
end
if filter == 'tld' then
return url:get_tld()
elseif filter == 'full' then
return url:get_text()
elseif filter == 'is_phished' then
if url:is_phished() then
return url:get_host()
else
return nil
end
elseif string.find(filter, 'tld:regexp:') then
if not r['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
r['re_filter'] = regexp.create(pat)
end
end
if not r['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = r['re_filter']:search(url:get_tld())
if results then
return results[1]
else
return nil
end
end
elseif string.find(filter, 'full:regexp:') then
if not r['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
r['re_filter'] = regexp.create(pat)
end
end
if not r['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = r['re_filter']:search(url:get_text())
if results then
return results[1]
else
return nil
end
end
elseif string.find(filter, 'regexp:') then
if not r['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
r['re_filter'] = regexp.create(pat)
end
end
if not r['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = r['re_filter']:search(url:get_host())
if results then
return results[1]
else
return nil
end
end
end
return url:get_host()
end
local function apply_addr_filter(task, filter, input, rule)
if filter == 'email:addr' or filter == 'email' then
local addr = util.parse_mail_address(input)
if addr and addr[1] then
return addr[1]['addr']
end
elseif filter == 'email:user' then
local addr = util.parse_mail_address(input)
if addr and addr[1] then
return addr[1]['user']
end
elseif filter == 'email:domain' then
local addr = util.parse_mail_address(input)
if addr and addr[1] then
return addr[1]['domain']
end
elseif filter == 'email:name' then
local addr = util.parse_mail_address(input)
if addr and addr[1] then
return addr[1]['name']
end
else
-- regexp case
if not rule['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
rule['re_filter'] = regexp.create(pat)
end
end
if not rule['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = rule['re_filter']:search(input)
if results then
return results[1]
end
end
end
return input
end
local function apply_filename_filter(task, filter, fn, r)
if filter == 'extension' or filter == 'ext' then
return string.match(fn, '%.([^.]+)$')
elseif string.find(filter, 'regexp:') then
if not r['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
r['re_filter'] = regexp.create(pat)
end
end
if not r['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = r['re_filter']:search(fn)
if results then
return results[1]
else
return nil
end
end
end
return fn
end
local function apply_regexp_filter(task, filter, fn, r)
if string.find(filter, 'regexp:') then
if not r['re_filter'] then
local type,pat = string.match(filter, '(regexp:)(.+)')
if type and pat then
r['re_filter'] = regexp.create(pat)
end
end
if not r['re_filter'] then
rspamd_logger.errx(task, 'bad search filter: %s', filter)
else
local results = r['re_filter']:search(fn, false, true)
if results then
return results[1][2]
else
return nil
end
end
end
return fn
end
local function apply_content_filter(task, filter)
if filter == 'body' then
return {task:get_rawbody()}
elseif filter == 'full' then
return {task:get_content()}
elseif filter == 'headers' then
return {task:get_raw_headers()}
elseif filter == 'text' then
local ret = {}
for _,p in ipairs(task:get_text_parts()) do
table.insert(ret, p:get_content())
end
return ret
elseif filter == 'rawtext' then
local ret = {}
for _,p in ipairs(task:get_text_parts()) do
table.insert(ret, p:get_raw_content())
end
return ret
elseif filter == 'oneline' then
local ret = {}
for _,p in ipairs(task:get_text_parts()) do
table.insert(ret, p:get_content_oneline())
end
return ret
else
rspamd_logger.errx(task, 'bad search filter: %s', filter)
end
return {}
end
local multimap_filters = {
from = apply_addr_filter,
to = apply_addr_filter,
header = apply_addr_filter,
url = apply_url_filter,
filename = apply_filename_filter,
mempool = apply_regexp_filter,
hostname = apply_hostname_filter,
--content = apply_content_filter, -- Content filters are special :(
}
local function multimap_callback(task, rule)
local pre_filter = rule['prefilter']
local function match_element(r, value, callback)
if not value then
return false
end
local function redis_map_cb(err, data)
if not err and type(data) ~= 'userdata' then
callback(data)
end
end
local ret = false
if r['cdb'] then
local srch = value
if r['type'] == 'ip' then
srch = value:to_string()
end
ret = r['cdb']:lookup(srch)
elseif r['redis_key'] then
local srch = value
if r['type'] == 'ip' then
srch = value:to_string()
end
ret = rspamd_redis_make_request(task,
redis_params, -- connect params
r['redis_key'], -- hash key
false, -- is write
redis_map_cb, --callback
'HGET', -- command
{r['redis_key'], srch} -- arguments
)
return ret
elseif r['radix'] then
ret = r['radix']:get_key(value)
elseif r['hash'] then
ret = r['hash']:get_key(value)
end
if ret then
callback(ret)
end
return ret
end
-- Parse result in form: <symbol>:<score>|<symbol>|<score>
local function parse_ret(parse_rule, p_ret)
if p_ret and type(p_ret) == 'string' then
local lpeg = require "lpeg"
local number = {}
local digit = lpeg.R("09")
number.integer =
(lpeg.S("+-") ^ -1) *
(digit ^ 1)
-- Matches: .6, .899, .9999873
number.fractional =
(lpeg.P(".") ) *
(digit ^ 1)
-- Matches: 55.97, -90.8, .9
number.decimal =
(number.integer * -- Integer
(number.fractional ^ -1)) + -- Fractional
(lpeg.S("+-") * number.fractional) -- Completely fractional number
local sym_start = lpeg.R("az", "AZ") + lpeg.S("_")
local sym_elt = sym_start + lpeg.R("09")
local symbol = sym_start * sym_elt ^0
local symbol_cap = lpeg.Cg(symbol, 'symbol')
local score_cap = lpeg.Cg(number.decimal, 'score')
local symscore_cap = (symbol_cap * lpeg.P(":") * score_cap)
local grammar = symscore_cap + symbol_cap + score_cap
local parser = lpeg.Ct(grammar)
local tbl = parser:match(p_ret)
if tbl then
local sym = nil
local score = 1.0
if tbl['symbol'] then
sym = tbl['symbol']
end
if tbl['score'] then
score = tbl['score']
end
return true,sym,score
else
if p_ret ~= '' then
rspamd_logger.infox(task, '%s: cannot parse string "%s"',
parse_rule.symbol, p_ret)
end
return true,nil,1.0
end
elseif type(p_ret) == 'boolean' then
return p_ret,nil,0.0
end
return false,nil,0.0
end
-- Match a single value for against a single rule
local function match_rule(r, value)
local function rule_callback(result)
if result then
local _,symbol,score = parse_ret(r, result)
if symbol and r['symbols_set'] then
if not r['symbols_set'][symbol] then
rspamd_logger.infox(task, 'symbol %s is not registered for map %s, ' ..
'replace it with just %s',
symbol, r['symbol'], r['symbol'])
symbol = r['symbol']
end
else
symbol = r['symbol']
end
local opt = value_types[r['type']].get_value(value)
if opt then
task:insert_result(symbol, score, opt)
else
task:insert_result(symbol, score)
end
if pre_filter then
task:set_pre_result(r['action'], 'Matched map: ' .. r['symbol'])
end
end
end
if r['filter'] or r['type'] == 'url' then
local fn = multimap_filters[r['type']]
if fn then
value = fn(task, r['filter'], value, r)
end
end
match_element(r, value, rule_callback)
end
-- Match list of values according to the field
local function match_list(r, ls, fields)
if ls then
if fields then
fun.each(function(e)
local match = e[fields[1]]
if match then
if fields[2] then
match = fields[2](match)
end
match_rule(r, match)
end
end, ls)
else
fun.each(function(e) match_rule(r, e) end, ls)
end
end
end
local function match_addr(r, addr)
match_list(r, addr, {'addr'})
match_list(r, addr, {'domain', function(d) return '@' .. d end})
match_list(r, addr, {'user', function(d) return d .. '@' end})
end
local function match_url(r, url)
match_rule(r, url)
end
local function match_hostname(r, hostname)
match_rule(r, hostname)
end
local function match_filename(r, fn)
match_rule(r, fn)
end
local function match_content(r)
local data
if r['filter'] then
data = apply_content_filter(task, r['filter'], r)
else
data = {task:get_content()}
end
for _,v in ipairs(data) do
match_rule(r, v)
end
end
if rule['expression'] then
local res,trace = rule['expression']:process_traced(task)
if not res or res == 0 then
rspamd_logger.debugx(task, 'condition is false for %s', rule['symbol'])
return
else
rspamd_logger.debugx(task, 'condition is true for %s: %s', rule['symbol'],
trace)
end
end
local rt = rule['type']
if rt == 'ip' or rt == 'dnsbl' then
local ip = task:get_from_ip()
if ip:is_valid() then
if rt == 'ip' then
match_rule(rule, ip)
else
local cb = function (_, to_resolve, results, err)
if err and (err ~= 'requested record is not found' and err ~= 'no records with this name') then
rspamd_logger.errx(task, 'error looking up %s: %s', to_resolve, err)
end
if results then
task:insert_result(rule['symbol'], 1, rule['map'])
if pre_filter then
task:set_pre_result(rule['action'], 'Matched map: ' .. rule['symbol'])
end
end
end
task:get_resolver():resolve_a({task = task,
name = ip_to_rbl(ip, rule['map']),
callback = cb,
})
end
end
elseif rt == 'header' then
local hv = task:get_header_full(rule['header'])
match_list(rule, hv, {'decoded'})
elseif rt == 'rcpt' then
if task:has_recipients('smtp') then
local rcpts = task:get_recipients('smtp')
match_addr(rule, rcpts)
end
elseif rt == 'from' then
if task:has_from('smtp') then
local from = task:get_from('smtp')
match_addr(rule, from)
end
elseif rt == 'url' then
if task:has_urls() then
local msg_urls = task:get_urls()
for _,url in ipairs(msg_urls) do
match_url(rule, url)
end
end
elseif rt == 'filename' then
local parts = task:get_parts()
for _,p in ipairs(parts) do
if p:is_archive() then
local fnames = p:get_archive():get_files()
for _,fn in ipairs(fnames) do
match_filename(rule, fn)
end
end
local fn = p:get_filename()
if fn then
match_filename(rule, fn)
end
end
elseif rt == 'content' then
match_content(rule)
elseif rt == 'hostname' then
local hostname = task:get_hostname()
if hostname and hostname ~= 'unknown' then
match_hostname(rule, hostname)
end
elseif rt == 'asn' then
local asn = task:get_mempool():get_variable('asn')
if asn then
match_rule(rule, asn)
end
elseif rt == 'country' then
local country = task:get_mempool():get_variable('country')
if country then
match_rule(rule, country)
end
elseif rt == 'mempool' then
local var = task:get_mempool():get_variable(rule['variable'])
if var then
match_rule(rule, var)
end
end
end
local function gen_multimap_callback(rule)
return function(task)
multimap_callback(task, rule)
end
end
local function add_multimap_rule(key, newrule)
local ret = false
if newrule['url'] and not newrule['map'] then
newrule['map'] = newrule['url']
end
if not newrule['map'] then
rspamd_logger.errx(rspamd_config, 'incomplete rule, missing map')
return nil
end
if not newrule['symbol'] and key then
newrule['symbol'] = key
elseif not newrule['symbol'] then
rspamd_logger.errx(rspamd_config, 'incomplete rule, missing symbol')
return nil
end
if not newrule['description'] then
newrule['description'] = string.format('multimap, type %s: %s', newrule['type'],
newrule['symbol'])
end
if newrule['type'] == 'mempool' and not newrule['variable'] then
rspamd_logger.errx(rspamd_config, 'mempool map requires variable')
return nil
end
-- Check cdb flag
if string.find(newrule['map'], '^cdb://.*$') then
newrule['cdb'] = cdb.create(newrule['map'])
if newrule['cdb'] then
ret = true
else
rspamd_logger.warnx(rspamd_config, 'Cannot add rule: map doesn\'t exists: %1',
newrule['map'])
end
elseif string.find(newrule['map'], '^redis://.*$') then
if not redis_params then
rspamd_logger.infox(rspamd_config, 'no redis servers are specified, ' ..
'cannot add redis map %s: %s', newrule['symbol'], newrule['map'])
return nil
end
newrule['redis_key'] = string.match(newrule['map'], '^redis://(.*)$')
if newrule['redis_key'] then
ret = true
end
else
local map = urls[newrule['map']]
if map and map['type'] == newrule['type']
and map['regexp'] == newrule['regexp'] then
if newrule['type'] == 'ip' then
newrule['radix'] = map['map']
else
newrule['hash'] = map['map']
end
rspamd_logger.infox(rspamd_config, 'reuse url for %s: "%s"',
newrule['symbol'], newrule['map'])
ret = true
else
if newrule['type'] == 'ip' then
newrule['radix'] = rspamd_config:add_map ({
url = newrule['map'],
description = newrule['description'],
type = 'radix'
})
if newrule['radix'] then
ret = true
urls[newrule['map']] = {
type = 'ip',
map = newrule['radix'],
regexp = false
}
else
rspamd_logger.warnx(rspamd_config, 'Cannot add rule: map doesn\'t exists: %1',
newrule['map'])
end
elseif newrule['type'] == 'header'
or newrule['type'] == 'rcpt'
or newrule['type'] == 'from'
or newrule['type'] == 'filename'
or newrule['type'] == 'url'
or newrule['type'] == 'content'
or newrule['type'] == 'hostname'
or newrule['type'] == 'asn'
or newrule['type'] == 'country'
or newrule['type'] == 'mempool' then
if newrule['regexp'] then
newrule['hash'] = rspamd_config:add_map ({
url = newrule['map'],
description = newrule['description'],
type = 'regexp'
})
else
newrule['hash'] = rspamd_config:add_map ({
url = newrule['map'],
description = newrule['description'],
type = 'hash'
})
end
if newrule['hash'] then
ret = true
urls[newrule['map']] = {
type = newrule['type'],
map = newrule['hash'],
regexp = newrule['regexp']
}
else
rspamd_logger.warnx(rspamd_config, 'Cannot add rule: map doesn\'t exists: %1',
newrule['map'])
end
elseif newrule['type'] == 'dnsbl' then
ret = true
end
end
end
if newrule['action'] then
newrule['prefilter'] = true
else
newrule['prefilter'] = false
end
if ret then
if newrule['require_symbols'] and not newrule['prefilter'] then
local atoms = {}
local function parse_atom(str)
local atom = table.concat(fun.totable(fun.take_while(function(c)
if string.find(', \t()><+!|&\n', c) then
return false
end
return true
end, fun.iter(str))), '')
table.insert(atoms, atom)
return atom
end
local function process_atom(atom, task)
local f_ret = task:has_symbol(atom)
rspamd_logger.debugx('check for symbol %s: %s', atom, f_ret)
if f_ret then
return 1
end
return 0
end
local expression = rspamd_expression.create(newrule['require_symbols'],
{parse_atom, process_atom}, rspamd_config:get_mempool())
if expression then
newrule['expression'] = expression
fun.each(function(v)
rspamd_logger.debugx(rspamd_config, 'add dependency %s -> %s',
newrule['symbol'], v)
rspamd_config:register_dependency(newrule['symbol'], v)
end, atoms)
end
end
return newrule
end
return nil
end
-- Registration
local opts = rspamd_config:get_all_opt('multimap')
if opts and type(opts) == 'table' then
redis_params = rspamd_parse_redis_server('multimap')
for k,m in pairs(opts) do
if type(m) == 'table' and m['type'] then
local rule = add_multimap_rule(k, m)
if not rule then
rspamd_logger.errx(rspamd_config, 'cannot add rule: "'..k..'"')
else
table.insert(rules, rule)
end
end
end
-- add fake symbol to check all maps inside a single callback
fun.each(function(rule)
local id = rspamd_config:register_symbol({
type = 'normal',
name = rule['symbol'],
callback = gen_multimap_callback(rule),
})
if rule['symbols'] then
-- Find allowed symbols by this map
rule['symbols_set'] = {}
fun.each(function(s)
rspamd_config:register_symbol({
type = 'virtual',
name = s,
parent = id
})
rule['symbols_set'][s] = 1
end, rule['symbols'])
end
if rule['score'] then
-- Register metric symbol
local description = 'multimap symbol'
local group = 'multimap'
if rule['description'] then
description = rule['description']
end
if rule['group'] then
group = rule['group']
end
rspamd_config:set_metric_symbol({
name = rule['symbol'],
score = rule['score'],
description = description,
group = group
})
end
end,
fun.filter(function(r) return not r['prefilter'] end, rules))
fun.each(function(r)
rspamd_config:register_symbol({
type = 'prefilter',
name = r['symbol'],
callback = gen_multimap_callback(r),
})
end,
fun.filter(function(r) return r['prefilter'] end, rules))
end
|