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
|
--[[
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.
]]--
-- Trie is rspamd module designed to define and operate with suffix trie
local rspamd_logger = require "rspamd_logger"
local rspamd_trie = require "rspamd_trie"
local _ = require "fun"
local mime_trie
local raw_trie
-- here we store all patterns as text
local mime_patterns = {}
local raw_patterns = {}
-- here we store params for each pattern, so for each i = 1..n patterns[i]
-- should have corresponding params[i]
local mime_params = {}
local raw_params = {}
local function tries_callback(task)
local matched = {}
local function gen_trie_cb(raw)
local patterns = mime_patterns
local params = mime_params
if raw then
patterns = raw_patterns
params = raw_params
end
return function (idx, pos)
local param = params[idx]
local pattern = patterns[idx]
if param['multi'] or not matched[pattern] then
rspamd_logger.debugx(task, "<%1> matched pattern %2 at pos %3",
task:get_message_id(), pattern, pos)
task:insert_result(param['symbol'], 1.0)
if not param['multi'] then
matched[pattern] = true
end
end
end
end
if mime_trie then
mime_trie:search_mime(task, gen_trie_cb(false))
end
if raw_trie then
raw_trie:search_rawmsg(task, gen_trie_cb(true))
end
end
local function process_single_pattern(pat, symbol, cf)
if pat then
local multi = false
if cf['multi'] then multi = true end
if cf['raw'] then
table.insert(raw_patterns, pat)
table.insert(raw_params, {symbol=symbol, multi=multi})
else
table.insert(mime_patterns, pat)
table.insert(mime_params, {symbol=symbol, multi=multi})
end
end
end
local function process_trie_file(symbol, cf)
file = io.open(cf['file'])
if not file then
rspamd_logger.errx(rspamd_config, 'Cannot open trie file %1', cf['file'])
else
if cf['binary'] then
rspamd_logger.errx(rspamd_config, 'binary trie patterns are not implemented yet: %1',
cf['file'])
else
for line in file:lines() do
local pat = string.match(line, '^([^#].*[^%s])%s*$')
process_single_pattern(pat, symbol, cf)
end
end
end
end
local function process_trie_conf(symbol, cf)
local raw = false
if type(cf) ~= 'table' then
rspamd_logger.errx(rspamd_config, 'invalid value for symbol %1: "%2", expected table',
symbol, cf)
return
end
if cf['raw'] then raw = true end
if cf['file'] then
process_trie_file(symbol, cf)
elseif cf['patterns'] then
_.each(function(pat)
process_single_pattern(pat, symbol, cf)
end, cf['patterns'])
end
end
local opts = rspamd_config:get_all_opt("trie")
if opts then
for sym, opt in pairs(opts) do
process_trie_conf(sym, opt)
end
if #raw_patterns > 0 then
raw_trie = rspamd_trie.create(raw_patterns)
rspamd_logger.infox(rspamd_config, 'registered raw search trie from %1 patterns', #raw_patterns)
end
if #mime_patterns > 0 then
mime_trie = rspamd_trie.create(mime_patterns)
rspamd_logger.infox(rspamd_config, 'registered mime search trie from %1 patterns', #mime_patterns)
end
local id = -1
if mime_trie or raw_trie then
id = rspamd_config:register_callback_symbol('TRIE', 1.0, tries_callback)
else
rspamd_logger.errx(rspamd_config, 'no tries defined')
end
if id ~= -1 then
for sym, opt in pairs(opts) do
rspamd_config:register_virtual_symbol(sym, 1.0, id)
end
end
end
|