Преглед на файлове

[Fix] Limit size of symbols options by max_opts_len option

tags/2.3
Vsevolod Stakhov преди 4 години
родител
ревизия
545463577a
променени са 5 файла, в които са добавени 29 реда и са изтрити 0 реда
  1. 20
    0
      src/libmime/scan_result.c
  2. 1
    0
      src/libmime/scan_result.h
  3. 1
    0
      src/libserver/cfg_file.h
  4. 6
    0
      src/libserver/cfg_rcl.c
  5. 1
    0
      src/libserver/cfg_utils.c

+ 20
- 0
src/libmime/scan_result.c Целия файл

@@ -523,12 +523,28 @@ rspamd_task_add_result_option (struct rspamd_task *task,
gint r;

if (s && val) {
if (s->opts_len < 0) {
/* Cannot add more options, give up */
msg_debug_task ("cannot add more options to symbol %s when adding option %s",
s->name, val);
return FALSE;
}

if (!s->options) {
s->options = kh_init (rspamd_options_hash);
}

vlen = strlen (val);

if (vlen + s->opts_len > task->cfg->max_opts_len) {
/* Add truncated option */
msg_info_task ("cannot add more options to symbol %s when adding option %s",
s->name, val);
val = "...";
vlen = 3;
s->opts_len = -1;
}

if (rspamd_fast_utf8_validate (val, vlen) != 0) {
opt_cpy = rspamd_str_make_utf_valid (val, vlen, &vlen,
task->task_pool);
@@ -571,6 +587,10 @@ rspamd_task_add_result_option (struct rspamd_task *task,

ret = TRUE;
}

if (ret && s->opts_len >= 0) {
s->opts_len += vlen;
}
}
else if (!val) {
ret = TRUE;

+ 1
- 0
src/libmime/scan_result.h Целия файл

@@ -39,6 +39,7 @@ struct rspamd_symbol_result {
struct rspamd_symbol_option *opts_head; /**< head of linked list of options */
const gchar *name;
struct rspamd_symbol *sym; /**< symbol configuration */
gssize opts_len; /**< total size of all options (negative if truncated option is added) */
guint nshots;
enum rspamd_symbol_result_flags flags;
};

+ 1
- 0
src/libserver/cfg_file.h Целия файл

@@ -470,6 +470,7 @@ struct rspamd_config {
guint full_gc_iters; /**< iterations between full gc cycle */
guint max_lua_urls; /**< maximum number of urls to be passed to Lua */
guint max_blas_threads; /**< maximum threads for openblas when learning ANN */
guint max_opts_len; /**< maximum length for all options for a symbol */

GList *classify_headers; /**< list of headers using for statistics */
struct module_s **compiled_modules; /**< list of compiled C modules */

+ 6
- 0
src/libserver/cfg_rcl.c Целия файл

@@ -2228,6 +2228,12 @@ rspamd_rcl_config_init (struct rspamd_config *cfg, GHashTable *skip_sections)
G_STRUCT_OFFSET (struct rspamd_config, max_blas_threads),
RSPAMD_CL_FLAG_INT_32,
"Maximum number of Blas threads for learning neural networks (default: 1)");
rspamd_rcl_add_default_handler (sub,
"max_opts_len",
rspamd_rcl_parse_struct_integer,
G_STRUCT_OFFSET (struct rspamd_config, max_opts_len),
RSPAMD_CL_FLAG_INT_32,
"Maximum size of all options for a single symbol (default: 4096)");
rspamd_rcl_add_default_handler (sub,
"events_backend",
rspamd_rcl_parse_struct_string,

+ 1
- 0
src/libserver/cfg_utils.c Целия файл

@@ -197,6 +197,7 @@ rspamd_config_new (enum rspamd_config_init_flags flags)
cfg->cache_reload_time = 30.0;
cfg->max_lua_urls = 1024;
cfg->max_blas_threads = 1;
cfg->max_opts_len = 4096;

/* Default log line */
cfg->log_format_str = "id: <$mid>,$if_qid{ qid: <$>,}$if_ip{ ip: $,}"

Loading…
Отказ
Запис