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
|
--[[
Copyright (c) 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.
]]--
-- This plugin is a concept of FANN scores adjustment
-- NOT FOR PRODUCTION USE so far
local rspamd_logger = require "rspamd_logger"
local rspamd_fann = require "rspamd_fann"
local rspamd_util = require "rspamd_util"
local fann_symbol = 'FANN_SCORE'
require "fun" ()
local ucl = require "ucl"
-- Module vars
-- ANNs indexed by settings id
local data = {
['0'] = {
fann_mtime = 0,
ntrains = 0,
epoch = 0,
}
}
local fann_file
local max_trains = 1000
local max_epoch = 100
local use_settings = false
local opts = rspamd_config:get_all_opt("fann_scores")
if not (opts and type(opts) == 'table') then
rspamd_logger.infox('Module is unconfigured')
return
elseif opts['enabled'] == false then
rspamd_logger.info('Module is disabled')
return
end
local function symbols_to_fann_vector(syms)
local learn_data = {}
local matched_symbols = {}
local n = rspamd_config:get_symbols_count()
each(function(s)
matched_symbols[s + 1] = 1
end, syms)
for i=1,n do
if matched_symbols[i] then
learn_data[i] = 1
else
learn_data[i] = 0
end
end
return learn_data
end
local function gen_fann_file(id)
if use_settings then
return fann_file .. id
else
return fann_file
end
end
local function load_fann(id)
local fname = gen_fann_file(id)
local err,st = rspamd_util.stat(fname)
if err then
return false
end
local fd = rspamd_util.lock_file(fname)
data[id].fann = rspamd_fann.load(fname)
rspamd_util.unlock_file(fd) -- closes fd
if data[id].fann then
local n = rspamd_config:get_symbols_count()
if n ~= data[id].fann:get_inputs() then
rspamd_logger.infox(rspamd_config, 'fann has incorrect number of inputs: %s, %s symbols' ..
' is found in the cache; removing', data[id].fann:get_inputs(), n)
data[id].fann = nil
local ret,err = rspamd_util.unlink(fname)
if not ret then
rspamd_logger.errx(rspamd_config, 'cannot remove invalid fann from %s: %s',
fname, err)
end
else
rspamd_logger.infox(rspamd_config, 'loaded fann from %s', fname)
return true
end
else
rspamd_logger.infox(rspamd_config, 'fann is invalid: "%s"; removing', fname)
local ret,err = rspamd_util.unlink(fname)
if not ret then
rspamd_logger.errx(rspamd_config, 'cannot remove invalid fann from %s: %s',
fname, err)
end
end
return false
end
local function check_fann(id)
if data[id].fann then
local n = rspamd_config:get_symbols_count()
if n ~= data[id].fann:get_inputs() then
rspamd_logger.infox(rspamd_config, 'fann has incorrect number of inputs: %s, %s symbols' ..
' is found in the cache', data[id].fann:get_inputs(), n)
data[id].fann = nil
end
end
local fname = gen_fann_file(id)
local err,st = rspamd_util.stat(fname)
if not err then
local mtime = st['mtime']
if mtime > data[id].fann_mtime then
rspamd_logger.infox(rspamd_config, 'have more fresh version of fann ' ..
'file: %s -> %s, need to reload %s', data[id].fann_mtime, mtime, fname)
data[id].fann_mtime = mtime
data[id].fann = nil
end
end
end
local function fann_scores_filter(task)
local id = '0'
if use_settings then
local sid = task:get_settings_id()
if sid then
id = tostring(sid)
end
end
check_fann(id)
if data[id].fann then
local symbols = task:get_symbols_numeric()
local fann_data = symbols_to_fann_vector(symbols)
local out = data[id].fann:test(fann_data)
local result = rspamd_util.tanh(2 * (out[1] - 0.5))
local symscore = string.format('%.3f', out[1])
rspamd_logger.infox(task, 'fann score: %s', symscore)
task:insert_result(fann_symbol, result, symscore, id)
else
if load_fann(id) then
fann_scores_filter(task)
end
end
end
local function create_train_fann(n, id)
data[id].fann_train = rspamd_fann.create(3, n, n / 2, 1)
data[id].ntrains = 0
data[id].epoch = 0
end
local function fann_train_callback(score, required_score,results, cf, id, opts)
local n = cf:get_symbols_count()
local fname = gen_fann_file(id)
if not data[id].fann_train then
create_train_fann(n, id)
end
if data[id].fann_train:get_inputs() ~= n then
rspamd_logger.infox(cf, 'fann has incorrect number of inputs: %s, %s symbols' ..
' is found in the cache', data[id].fann_train:get_inputs(), n)
create_train_fann(n, id)
end
if data[id].ntrains > max_trains then
-- Store fann on disk
local res = false
local err,st = rspamd_util.stat(fname)
if err then
local fd,err = rspamd_util.create_file(fname)
if not fd then
rspamd_logger.errx(cf, 'cannot save fann in %s: %s', fname, err)
else
rspamd_util.lock_file(fname, fd)
res = data[id].fann_train:save(fname)
rspamd_util.unlock_file(fd) -- Closes fd as well
end
else
local fd = rspamd_util.lock_file(fname)
res = data[id].fann_train:save(fname)
rspamd_util.unlock_file(fd) -- Closes fd as well
end
if not res then
rspamd_logger.errx(cf, 'cannot save fann in %s', fname)
else
data[id].ntrains = 0
data[id].epoch = data[id].epoch + 1
end
end
if data[id].epoch > max_epoch then
-- Re-create fann
rspamd_logger.infox(cf, 'create new fann in %s after %s epoches', fname,
max_epoch)
create_train_fann(n, id)
end
local learn_spam, learn_ham = false, false
if opts['spam_score'] then
learn_spam = score >= opts['spam_score']
else
learn_spam = score >= required_score
end
if opts['ham_score'] then
learn_ham = score <= opts['ham_score']
else
learn_ham = score < 0
end
if learn_spam or learn_ham then
local learn_data = symbols_to_fann_vector(
map(function(r) return r[1] end, results)
)
if learn_spam then
data[id].fann_train:train(learn_data, {1.0})
else
data[id].fann_train:train(learn_data, {0.0})
end
data[id].ntrains = data[id].ntrains + 1
end
end
if not rspamd_fann.is_enabled() then
rspamd_logger.errx(rspamd_config, 'fann is not compiled in rspamd, this ' ..
'module is eventually disabled')
else
if not opts['fann_file'] then
rspamd_logger.errx(rspamd_config, 'fann_scores module requires ' ..
'`fann_file` to be specified')
else
fann_file = opts['fann_file']
use_settings = opts['use_settings']
rspamd_config:set_metric_symbol(fann_symbol, 3.0, 'Experimental FANN adjustment')
rspamd_config:register_symbol({
name = fann_symbol,
type = 'postfilter',
callback = fann_scores_filter
})
if opts['train'] then
rspamd_config:add_on_load(function(cfg)
if opts['train']['max_train'] then
max_trains = opts['train']['max_train']
end
if opts['train']['max_epoch'] then
max_epoch = opts['train']['max_epoch']
end
cfg:register_worker_script("log_helper",
function(score, req_score, results, cf, id)
if use_settings then
fann_train_callback(score, req_score, results, cf,
tostring(id), opts['train'])
else
fann_train_callback(score, req_score, results, cf, '0', opts['train'])
end
end)
end)
end
end
end
|