From: Vsevolod Stakhov Date: Thu, 23 Apr 2009 13:32:44 +0000 (+0400) Subject: * Another fix to regexps parser X-Git-Tag: 0.2.7~180 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=e956b46665a3176eeae4f8793f6e62ef73339c17;p=rspamd.git * Another fix to regexps parser --- diff --git a/src/expressions.c b/src/expressions.c index 98a21bf81..7202a2b38 100644 --- a/src/expressions.c +++ b/src/expressions.c @@ -383,8 +383,8 @@ parse_expression (memory_pool_t *pool, char *line) if (*(p + 1) == '\0') { p++; } - str = memory_pool_alloc (pool, p - c + 2); - g_strlcpy (str, c - 1, (p - c + 2)); + str = memory_pool_alloc (pool, p - c + 1); + g_strlcpy (str, c - 1, (p - c + 1)); g_strstrip (str); if (strlen (str) > 0) { insert_expression (pool, &expr, EXPR_REGEXP, 0, str); diff --git a/src/expressions.h b/src/expressions.h index 9d80587b4..06034c485 100644 --- a/src/expressions.h +++ b/src/expressions.h @@ -34,7 +34,13 @@ struct expression_argument { * Logic expression */ struct expression { - enum { EXPR_REGEXP, EXPR_OPERATION, EXPR_FUNCTION, EXPR_STR } type; /**< expression type */ + enum { + EXPR_REGEXP, + EXPR_OPERATION, + EXPR_FUNCTION, + EXPR_STR, + EXPR_REGEXP_PARSED, + } type; /**< expression type */ union { void *operand; char operation; diff --git a/src/plugins/regexp.c b/src/plugins/regexp.c index 3acfddc5b..340e09964 100644 --- a/src/plugins/regexp.c +++ b/src/plugins/regexp.c @@ -94,6 +94,7 @@ read_regexp_expression (memory_pool_t *pool, struct regexp_module_item *chain, c msg_warn ("read_regexp_expression: cannot parse regexp, skip expression %s = \"%s\"", symbol, line); return FALSE; } + cur->type = EXPR_REGEXP_PARSED; } cur = cur->next; } @@ -336,10 +337,10 @@ process_regexp_expression (struct expression *expr, struct worker_task *task) stack = g_queue_new (); while (it) { - if (it->type == EXPR_REGEXP) { + if (it->type == EXPR_REGEXP_PARSED) { /* Find corresponding symbol */ cur = process_regexp ((struct rspamd_regexp *)it->content.operand, task); - msg_debug ("process_regexp_item: regexp %s found", cur ? "is" : "is not"); + msg_debug ("process_regexp_expression: regexp %s found", cur ? "is" : "is not"); if (try_optimize) { try_optimize = optimize_regexp_expression (&it, stack, cur); } else { @@ -348,13 +349,23 @@ process_regexp_expression (struct expression *expr, struct worker_task *task) } else if (it->type == EXPR_FUNCTION) { cur = (gsize)call_expression_function ((struct expression_function *)it->content.operand, task); - msg_debug ("process_regexp_item: function %s returned %s", ((struct expression_function *)it->content.operand)->name, + msg_debug ("process_regexp_expression: function %s returned %s", ((struct expression_function *)it->content.operand)->name, cur ? "true" : "false"); if (try_optimize) { try_optimize = optimize_regexp_expression (&it, stack, cur); } else { g_queue_push_head (stack, GSIZE_TO_POINTER (cur)); } + } else if (it->type == EXPR_REGEXP) { + /* Compile regexp if it is not parsed */ + it->content.operand = parse_regexp (task->task_pool, it->content.operand, task->cfg->raw_mode); + if (it->content.operand == NULL) { + msg_warn ("process_regexp_expression: cannot parse regexp, skip expression"); + return FALSE; + } + it->type = EXPR_REGEXP_PARSED; + /* Continue with this regexp once again */ + continue; } else if (it->type == EXPR_OPERATION) { if (g_queue_is_empty (stack)) { /* Queue has no operands for operation, exiting */