aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVsevolod Stakhov <vsevolod@highsecure.ru>2016-05-24 13:32:34 +0100
committerVsevolod Stakhov <vsevolod@highsecure.ru>2016-05-24 13:32:34 +0100
commitdf0b6cd825ad79f2390cae82f57efef2fef399f1 (patch)
tree06b248cb5ef9d6c89ee085978ef9a6193d057dd4
parent2da5a85bb66919a6db3f8148b1f29c9bbeab89a9 (diff)
downloadrspamd-df0b6cd825ad79f2390cae82f57efef2fef399f1.tar.gz
rspamd-df0b6cd825ad79f2390cae82f57efef2fef399f1.zip
[Feature] Implement body rules for the trie plugin
-rw-r--r--src/lua/lua_trie.c39
-rw-r--r--src/plugins/lua/trie.lua33
2 files changed, 62 insertions, 10 deletions
diff --git a/src/lua/lua_trie.c b/src/lua/lua_trie.c
index ac6ebb559..a0bf3afd4 100644
--- a/src/lua/lua_trie.c
+++ b/src/lua/lua_trie.c
@@ -42,12 +42,14 @@ LUA_FUNCTION_DEF (trie, create);
LUA_FUNCTION_DEF (trie, match);
LUA_FUNCTION_DEF (trie, search_mime);
LUA_FUNCTION_DEF (trie, search_rawmsg);
+LUA_FUNCTION_DEF (trie, search_rawbody);
LUA_FUNCTION_DEF (trie, destroy);
static const struct luaL_reg trielib_m[] = {
LUA_INTERFACE_DEF (trie, match),
LUA_INTERFACE_DEF (trie, search_mime),
LUA_INTERFACE_DEF (trie, search_rawmsg),
+ LUA_INTERFACE_DEF (trie, search_rawbody),
{"__tostring", rspamd_lua_class_tostring},
{"__gc", lua_trie_destroy},
{NULL, NULL}
@@ -303,6 +305,43 @@ lua_trie_search_rawmsg (lua_State *L)
return 1;
}
+/***
+ * @method trie:search_rawbody(task, cb[, caseless])
+ * This is a helper mehthod to search pattern within the whole undecoded content of task's body (not including headers)
+ * @param {task} task object
+ * @param {function} cb callback called on each pattern match @see trie:match
+ * @param {boolean} caseless if `true` then match ignores symbols case (ASCII only)
+ * @return {boolean} `true` if any pattern has been found (`cb` might be called multiple times however)
+ */
+static gint
+lua_trie_search_rawbody (lua_State *L)
+{
+ struct rspamd_multipattern *trie = lua_check_trie (L, 1);
+ struct rspamd_task *task = lua_check_task (L, 2);
+ const gchar *text;
+ gsize len;
+ gboolean found = FALSE;
+
+ if (trie) {
+ if (task->raw_headers_content.len > 0) {
+ text = task->msg.begin + task->raw_headers_content.len;
+ len = task->msg.len - task->raw_headers_content.len;
+ }
+ else {
+ /* Treat as raw message */
+ text = task->msg.begin;
+ len = task->msg.len;
+ }
+
+ if (lua_trie_search_str (L, trie, text, len) != 0) {
+ found = TRUE;
+ }
+ }
+
+ lua_pushboolean (L, found);
+ return 1;
+}
+
static gint
lua_load_trie (lua_State *L)
{
diff --git a/src/plugins/lua/trie.lua b/src/plugins/lua/trie.lua
index 4a1fdfd4e..da8bba560 100644
--- a/src/plugins/lua/trie.lua
+++ b/src/plugins/lua/trie.lua
@@ -22,26 +22,32 @@ local _ = require "fun"
local mime_trie
local raw_trie
+local body_trie
-- here we store all patterns as text
local mime_patterns = {}
local raw_patterns = {}
+local body_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 body_params = {}
local function tries_callback(task)
local matched = {}
- local function gen_trie_cb(raw)
+ local function gen_trie_cb(type)
local patterns = mime_patterns
local params = mime_params
- if raw then
+ if type == 'rawmessage' then
patterns = raw_patterns
params = raw_params
+ elseif type == 'rawbody' then
+ patterns = body_patterns
+ params = body_params
end
return function (idx, pos)
@@ -51,7 +57,7 @@ local function tries_callback(task)
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)
+ task:insert_result(param['symbol'], 1.0, type)
if not param['multi'] then
matched[pattern] = true
end
@@ -60,10 +66,13 @@ local function tries_callback(task)
end
if mime_trie then
- mime_trie:search_mime(task, gen_trie_cb(false))
+ mime_trie:search_mime(task, gen_trie_cb('mime'))
end
if raw_trie then
- raw_trie:search_rawmsg(task, gen_trie_cb(true))
+ raw_trie:search_rawmsg(task, gen_trie_cb('rawmessage'))
+ end
+ if body_trie then
+ raw_trie:search_rawbody(task, gen_trie_cb('rawbody'))
end
end
@@ -75,6 +84,9 @@ local function process_single_pattern(pat, symbol, cf)
if cf['raw'] then
table.insert(raw_patterns, pat)
table.insert(raw_params, {symbol=symbol, multi=multi})
+ elseif cf['body'] then
+ table.insert(body_patterns, pat)
+ table.insert(body_params, {symbol=symbol, multi=multi})
else
table.insert(mime_patterns, pat)
table.insert(mime_params, {symbol=symbol, multi=multi})
@@ -101,16 +113,12 @@ local function process_trie_file(symbol, cf)
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
@@ -136,8 +144,13 @@ if opts then
rspamd_logger.infox(rspamd_config, 'registered mime search trie from %1 patterns', #mime_patterns)
end
+ if #body_patterns > 0 then
+ body_trie = rspamd_trie.create(body_patterns)
+ rspamd_logger.infox(rspamd_config, 'registered body search trie from %1 patterns', #body_patterns)
+ end
+
local id = -1
- if mime_trie or raw_trie then
+ if mime_trie or raw_trie or body_trie then
id = rspamd_config:register_symbol({
type = 'callback',
callback = tries_callback