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
|
--[[
Copyright (c) 2016, 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 rspamd_logger = require "rspamd_logger"
local rspamd_util = require "rspamd_util"
local rspamd_redis = require "rspamd_redis"
local rspamd_regexp = require "rspamd_regexp"
local tcp = require "rspamd_tcp"
local upstream_list = require "rspamd_upstream_list"
local redis_params
local function match_patterns(default_sym, found, patterns)
if not patterns then return default_sym end
for sym, pat in pairs(patterns) do
if pat:match(found) then
return sym
end
end
return default_sym
end
local function yield_result(task, rule, vname)
local symname = match_patterns(rule['symbol'], vname, rule['patterns'])
if rule['whitelist'] and rule['whitelist']:get_key(vname) then
rspamd_logger.infox(task, '%s: "%s" is in whitelist', rule['type'], vname)
return
end
task:insert_result(symname, 1.0, vname)
rspamd_logger.infox(task, '%s: virus found: "%s"', rule['type'], vname)
end
local function clamav_config(opts)
local clamav_conf = {
attachments_only = true,
default_port = 3310,
timeout = 15.0,
retransmits = 2,
cache_expire = 3600, -- expire redis in one hour
}
for k,v in pairs(opts) do
clamav_conf[k] = v
end
if redis_params and not redis_params['prefix'] then
if clamav_conf.prefix then
redis_params['prefix'] = clamav_conf.prefix
else
redis_params['prefix'] = 'rs_cl'
end
end
if not clamav_conf['servers'] then
rspamd_logger.errx(rspamd_config, 'no servers defined')
return nil
end
clamav_conf['upstreams'] = upstream_list.create(rspamd_config,
clamav_conf['servers'],
clamav_conf.default_port)
if clamav_conf['upstreams'] then
return clamav_conf
end
rspamd_logger.errx(rspamd_config, 'cannot parse servers %s',
clamav_conf['servers'])
return nil
end
local function fprot_config(opts)
local fprot_conf = {
attachments_only = true,
default_port = 10200,
timeout = 15.0,
retransmits = 2,
cache_expire = 3600, -- expire redis in one hour
}
for k,v in pairs(opts) do
fprot_conf[k] = v
end
if redis_params and not redis_params['prefix'] then
if fprot_conf.prefix then
redis_params['prefix'] = fprot_conf.prefix
else
redis_params['prefix'] = 'rs_fp'
end
end
if not fprot_conf['servers'] then
rspamd_logger.errx(rspamd_config, 'no servers defined')
return nil
end
fprot_conf['upstreams'] = upstream_list.create(rspamd_config,
fprot_conf['servers'],
fprot_conf.default_port)
if fprot_conf['upstreams'] then
return fprot_conf
end
rspamd_logger.errx(rspamd_config, 'cannot parse servers %s',
fprot_conf['servers'])
return nil
end
local function need_av_check(task, rule)
if rule['attachments_only'] then
for _,p in ipairs(task:get_parts()) do
if p:get_filename() and not p:is_image() then
return true
end
end
return false
else
return true
end
end
local function check_av_cache(task, rule, fn)
local function redis_av_cb(err, data)
if data and type(data) == 'string' then
-- Cached
if data ~= 'OK' then
yield_result(task, rule, data)
end
else
fn()
end
end
if redis_params then
local key = task:get_digest()
if redis_params['prefix'] then
key = redis_params['prefix'] .. key
end
if rspamd_redis_make_request(task,
redis_params, -- connect params
key, -- hash key
false, -- is write
redis_av_cb, --callback
'GET', -- command
{key} -- arguments)
) then
return true
end
end
return false
end
local function save_av_cache(task, rule, to_save)
local key = task:get_digest()
local function redis_set_cb(err, data)
-- Do nothing
if err then
rspamd_logger.errx(task, 'failed to save virus cache for %s -> "%s": %s',
to_save, key, err)
end
end
if redis_params then
if redis_params['prefix'] then
key = redis_params['prefix'] .. key
end
rspamd_redis_make_request(task,
redis_params, -- connect params
key, -- hash key
true, -- is write
redis_set_cb, --callback
'SETEX', -- command
{ key, rule['cache_expire'], to_save }
)
end
return false
end
local function fprot_check(task, rule)
local function fprot_check_uncached ()
local upstream = rule.upstreams:get_upstream_round_robin()
local addr = upstream:get_addr()
local retransmits = rule.retransmits
local scan_id = task:get_queue_id()
if not scan_id then scan_id = task:get_uid() end
local header = string.format('SCAN STREAM %s SIZE %d\n', scan_id, task:get_size())
local footer = '\n'
local function fprot_callback(err, data)
if err then
if err == 'IO timeout' then
if retransmits > 0 then
retransmits = retransmits - 1
tcp.request({
task = task,
host = addr:to_string(),
port = addr:get_port(),
timeout = rule['timeout'],
callback = fprot_callback,
data = { header, task:get_content(), footer },
stop_pattern = '\n'
})
else
rspamd_logger.errx(task, 'failed to scan, maximum retransmits exceed')
end
else
rspamd_logger.errx(task, 'failed to scan: %s', err)
upstream:fail()
end
else
upstream:ok()
data = tostring(data)
local found = (string.sub(data, 1, 1) == '1')
local cached = 'OK'
if found then
local vname = string.match(data, '^1 <infected: (.+)>')
yield_result(task, rule, vname)
cached = vname
end
save_av_cache(task, rule, cached)
end
end
tcp.request({
task = task,
host = addr:to_string(),
port = addr:get_port(),
timeout = rule['timeout'],
callback = fprot_callback,
data = { header, task:get_content(), footer },
stop_pattern = '\n'
})
end
if need_av_check(task, rule) then
if check_av_cache(task, rule, fprot_check_uncached) then
return
else
fprot_check_uncached()
end
end
end
local function clamav_check(task, rule)
local function clamav_check_uncached ()
local upstream = rule.upstreams:get_upstream_round_robin()
local addr = upstream:get_addr()
local retransmits = rule.retransmits
local header = rspamd_util.pack("c9 c1 >I4", "zINSTREAM", "\0",
task:get_size())
local footer = rspamd_util.pack(">I4", 0)
local function clamav_callback(err, data)
if err then
if err == 'IO timeout' then
if retransmits > 0 then
retransmits = retransmits - 1
tcp.request({
task = task,
host = addr:to_string(),
port = addr:get_port(),
timeout = rule['timeout'],
callback = clamav_callback,
data = { header, task:get_content(), footer },
stop_pattern = '\0'
})
else
rspamd_logger.errx(task, 'failed to scan, maximum retransmits exceed')
end
else
rspamd_logger.errx(task, 'failed to scan: %s', err)
upstream:fail()
end
else
upstream:ok()
data = tostring(data)
local s,_ = string.find(data, ' FOUND')
local cached = 'OK'
if s then
local vname = string.match(data:sub(1, s - 1), 'stream: (.+)')
yield_result(task, rule, vname)
cached = vname
end
save_av_cache(task, rule, cached)
end
end
tcp.request({
task = task,
host = addr:to_string(),
port = addr:get_port(),
timeout = rule['timeout'],
callback = clamav_callback,
data = { header, task:get_content(), footer },
stop_pattern = '\0'
})
end
if need_av_check(task, rule) then
if check_av_cache(task, rule, clamav_check_uncached) then
return
else
clamav_check_uncached()
end
end
end
local av_types = {
clamav = {
configure = clamav_config,
check = clamav_check
},
fprot = {
configure = fprot_config,
check = fprot_check
}
}
local function add_antivirus_rule(sym, opts)
local rule = {}
if not opts['type'] then
return nil
end
if not opts['symbol'] then opts['symbol'] = sym end
local cfg = av_types[opts['type']]
if not cfg then
rspamd_logger.errx(rspamd_config, 'unknown antivirus type: %s',
opts['type'])
end
rule = cfg.configure(opts)
if not rule then
rspamd_logger.errx(rspamd_config, 'cannot configure %s for %s',
opts['type'], opts['symbol'])
return nil
end
if opts['patterns'] then
rule['patterns'] = {}
for k, v in pairs(opts['patterns']) do
rule['patterns'][k] = rspamd_regexp.create_cached(v)
end
end
if opts['whitelist'] then
rule['whitelist'] = rspamd_config:add_hash_map(opts['whitelist'])
end
return function(task)
return cfg.check(task, rule)
end
end
-- Registration
local opts = rspamd_config:get_all_opt('antivirus')
if opts and type(opts) == 'table' then
redis_params = rspamd_parse_redis_server('antivirus')
for k, m in pairs(opts) do
if type(m) == 'table' and m['type'] then
local cb = add_antivirus_rule(k, m)
if not cb then
rspamd_logger.errx(rspamd_config, 'cannot add rule: "' .. k .. '"')
else
local id = rspamd_config:register_symbol({
type = 'normal',
name = m['symbol'],
callback = cb,
})
if m['score'] then
-- Register metric symbol
local description = 'antivirus symbol'
local group = 'antivirus'
if m['description'] then
description = m['description']
end
if m['group'] then
group = m['group']
end
rspamd_config:set_metric_symbol({
name = m['symbol'],
score = m['score'],
description = description,
group = group
})
end
end
end
end
end
|