aboutsummaryrefslogtreecommitdiffstats
path: root/src/libutil/expression.c
blob: b7604615e671727344e0be9ff90f2045af544610 (plain)
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
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
/*
 * Copyright (c) 2015, Vsevolod Stakhov
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *	 * Redistributions of source code must retain the above copyright
 *	   notice, this list of conditions and the following disclaimer.
 *	 * Redistributions in binary form must reproduce the above copyright
 *	   notice, this list of conditions and the following disclaimer in the
 *	   documentation and/or other materials provided with the distribution.
 *
 * THIS SOFTWARE IS PROVIDED BY AUTHOR ''AS IS'' AND ANY
 * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL AUTHOR BE LIABLE FOR ANY
 * DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
 * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */

#include "config.h"
#include "expression.h"
#include "printf.h"
#include "regexp.h"

#define RSPAMD_EXPR_FLAG_NEGATE (1 << 0)
#define RSPAMD_EXPR_FLAG_PROCESSED (1 << 1)

enum rspamd_expression_op {
	OP_INVALID = 0,
	OP_PLUS, /* || or + */
	OP_MULT, /* && or * */
	OP_OR, /* || or | */
	OP_AND, /* && or & */
	OP_NOT, /* ! */
	OP_LT, /* < */
	OP_GT, /* > */
	OP_LE, /* <= */
	OP_GE, /* >= */
	OP_OBRACE, /* ( */
	OP_CBRACE /* ) */
};

struct rspamd_expression_elt {
	enum {
		ELT_OP = 0,
		ELT_ATOM,
		ELT_LIMIT
	} type;

	union {
		rspamd_expression_atom_t *atom;
		enum rspamd_expression_op op;
		struct {
			gint val;
			gint op_idx;
		} lim;
	} p;
	gint flags;
	gint value;
};

struct rspamd_expression {
	const struct rspamd_atom_subr *subr;
	GArray *expressions;
	GArray *expression_stack;
};

static GQuark
rspamd_expr_quark (void)
{
	return g_quark_from_static_string ("rspamd-expression");
}

static void
rspamd_expr_stack_push (struct rspamd_expression *expr,
		gpointer elt)
{
	g_array_append_val (expr->expression_stack, elt);
}

static gpointer
rspamd_expr_stack_pop (struct rspamd_expression *expr)
{
	gpointer e;
	gint idx;

	if (expr->expression_stack->len == 0) {
		return NULL;
	}

	idx = expr->expression_stack->len - 1;
	e = g_array_index (expr->expression_stack, gpointer, idx);
	g_array_remove_index_fast (expr->expression_stack, idx);

	return e;
}

/*
 * Return operation priority
 */
static gint
rspamd_expr_logic_priority (enum rspamd_expression_op op)
{
	gint ret = 0;

	switch (op) {
	case OP_NOT:
		ret = 6;
		break;
	case OP_PLUS:
		ret = 5;
		break;
	case OP_GE:
	case OP_GT:
	case OP_LE:
	case OP_LT:
		ret = 4;
		break;
	case OP_MULT:
	case OP_AND:
		ret = 3;
		break;
	case OP_OR:
		ret = 2;
		break;
	case OP_OBRACE:
	case OP_CBRACE:
		ret = 1;
		break;
	case OP_INVALID:
		ret = -1;
		break;
	}

	return ret;
}

/*
 * Return FALSE if symbol is not operation symbol (operand)
 * Return TRUE if symbol is operation symbol
 */
static gboolean
rspamd_expr_is_operation_symbol (gchar a)
{
	switch (a) {
	case '!':
	case '&':
	case '|':
	case '(':
	case ')':
	case '>':
	case '<':
	case '+':
	case '*':
		return TRUE;
	}

	return FALSE;
}

/* Return character representation of operation */
static enum rspamd_expression_op
rspamd_expr_str_to_op (const gchar *a, const gchar *end, const gchar **next)
{
	enum rspamd_expression_op op = OP_INVALID;

	g_assert (a < end);

	switch (*a) {
	case '!':
	case '&':
	case '|':
	case '+':
	case '*':
	case '(':
	case ')': {
		if (a < end - 1) {
			if ((a[0] == '&' && a[1] == '&') ||
					(a[0] == '|' && a[1] == '|')) {
				*next = a + 2;
			}
			else {
				*next = a + 1;
			}
		}
		else {
			*next = end;
		}
		/* XXX: not especially effective */
		switch (*a) {
		case '!':
			op = OP_NOT;
			break;
		case '&':
			op = OP_AND;
			break;
		case '*':
			op = OP_MULT;
			break;
		case '|':
			op = OP_OR;
			break;
		case '+':
			op = OP_PLUS;
			break;
		case ')':
			op = OP_CBRACE;
			break;
		case '(':
			op = OP_OBRACE;
			break;
		default:
			op = OP_INVALID;
			break;
		}
		break;
	}
	case 'O':
	case 'o':
		if ((gulong)(end - a) >= sizeof ("or") &&
				g_ascii_strncasecmp (a, "or", sizeof ("or") - 1) == 0) {
			*next = a + sizeof ("or") - 1;
			op = OP_OR;
		}
		break;
	case 'A':
	case 'a':
		if ((gulong)(end - a) >= sizeof ("and") &&
				g_ascii_strncasecmp (a, "and", sizeof ("and") - 1) == 0) {
			*next = a + sizeof ("and") - 1;
			op = OP_AND;
		}
		break;
	case 'N':
	case 'n':
		if ((gulong)(end - a) >= sizeof ("not") &&
				g_ascii_strncasecmp (a, "not", sizeof ("not") - 1) == 0) {
			*next = a + sizeof ("not") - 1;
			op = OP_NOT;
		}
		break;
	case '>':
		if (a < end - 1 && a[1] == '=') {
			*next = a + 2;
			op = OP_GE;
		}
		else {
			*next = a + 1;
			op = OP_GT;
		}
		break;
	case '<':
		if (a < end - 1 && a[1] == '=') {
			*next = a + 2;
			op = OP_LE;
		}
		else {
			*next = a + 1;
			op = OP_LT;
		}
		break;
	default:
		op = OP_INVALID;
		break;
	}

	return op;
}

static void
rspamd_expression_destroy (struct rspamd_expression *expr)
{
	guint i;
	struct rspamd_expression_elt *elt;

	if (expr != NULL) {

		if (expr->subr->destroy) {
			/* Free atoms */
			for (i = 0; i < expr->expressions->len; i ++) {
				elt = &g_array_index (expr->expressions,
						struct rspamd_expression_elt, i);

				if (elt->type == ELT_ATOM) {
					expr->subr->destroy (elt->p.atom);
				}
			}
		}

		g_array_free (expr->expressions, TRUE);
		g_array_free (expr->expression_stack, TRUE);
	}
}

gboolean
rspamd_parse_expression (const gchar *line, gsize len,
		const struct rspamd_atom_subr *subr, gpointer subr_data,
		rspamd_mempool_t *pool, GError **err,
		struct rspamd_expression **target)
{
	struct rspamd_expression *e;
	struct rspamd_expression_elt elt;
	rspamd_expression_atom_t *atom;
	rspamd_regexp_t *num_re;
	enum rspamd_expression_op op, op_stack;
	const gchar *p, *c, *end;

	enum {
		PARSE_ATOM = 0,
		PARSE_OP,
		PARSE_LIM,
		SKIP_SPACES
	} state = PARSE_ATOM;

	g_assert (line != NULL);
	g_assert (subr != NULL && subr->parse != NULL);

	if (len == 0) {
		len = strlen (line);
	}

	memset (&elt, 0, sizeof (elt));
	num_re = rspamd_regexp_cache_create (NULL, "/^\\d+(\\s+|[)]|$)/", NULL, NULL);

	p = line;
	c = line;
	end = line + len;
	e = g_slice_alloc (sizeof (*e));
	e->expressions = g_array_new (FALSE, FALSE,
			sizeof (struct rspamd_expression_elt));
	e->expression_stack = g_array_sized_new (FALSE, FALSE, sizeof (gpointer), 32);
	e->subr = subr;

	/* Shunting-yard algorithm */
	while (p < end) {
		switch (state) {
		case PARSE_ATOM:
			if (g_ascii_isspace (*p)) {
				state = SKIP_SPACES;
			}
			else if (rspamd_expr_is_operation_symbol (*p)) {
				state = PARSE_OP;
			}
			else {
				/*
				 * First of all, we check some pre-conditions:
				 * 1) if we have 'and ' or 'or ' or 'not ' strings, they are op
				 * 2) if we have full numeric string, then we check for
				 * the following expression:
				 *  ^\d+\s*[><]$
				 */
				if ((gulong)(end - p) > sizeof ("and ") &&
					(g_ascii_strncasecmp (p, "and ", sizeof ("and ") - 1) == 0 ||
					g_ascii_strncasecmp (p, "not ", sizeof ("not ") - 1) == 0 )) {
					state = PARSE_OP;
				}
				else if ((gulong)(end - p) > sizeof ("or ") &&
					g_ascii_strncasecmp (p, "or ", sizeof ("or ") - 1) == 0) {
					state = PARSE_OP;
				}
				else if (rspamd_regexp_search (num_re, p, end - p, NULL, NULL,
						FALSE)) {
					c = p;
					state = PARSE_LIM;
				}
				else {
					/* Try to parse atom */
					atom = subr->parse (p, end - p, pool, subr_data, err);
					if (atom == NULL) {
						/* We couldn't parse the atom, so go out */
						goto err;
					}
					g_assert (atom->len != 0);
					p = p + atom->len;

					/* Push to output */
					elt.type = ELT_ATOM;
					elt.p.atom = atom;
					g_array_append_val (e->expressions, elt);
				}
			}
			break;
		case PARSE_LIM:
			if (g_ascii_isdigit (*p) && p != end - 1) {
				p ++;
			}
			else {
				if (p == end - 1 && g_ascii_isdigit (*p)) {
					p ++;
				}

				if (p - c > 0) {
					elt.type = ELT_LIMIT;
					elt.p.lim.val = strtoul (c, NULL, 10);
					g_array_append_val (e->expressions, elt);
					c = p;
					state = SKIP_SPACES;
				}
				else {
					g_set_error (err, rspamd_expr_quark(), 400, "Empty number");
					goto err;
				}
			}
			break;
		case PARSE_OP:
			op = rspamd_expr_str_to_op (p, end, &p);
			if (op == OP_INVALID) {
				g_set_error (err, rspamd_expr_quark(), 500, "Bad operator %c",
						*p);
				goto err;
			}
			else if (op == OP_OBRACE) {
				/*
				 * If the token is a left parenthesis, then push it onto
				 * the stack.
				 */
				rspamd_expr_stack_push (e, GINT_TO_POINTER (op));
			}
			else if (op == OP_CBRACE) {
				/*
				 * Until the token at the top of the stack is a left
				 * parenthesis, pop operators off the stack onto the
				 * output queue.
				 *
				 * Pop the left parenthesis from the stack,
				 * but not onto the output queue.
				 *
				 * If the stack runs out without finding a left parenthesis,
				 * then there are mismatched parentheses.
				 */
				do {
					op = GPOINTER_TO_INT (rspamd_expr_stack_pop (e));

					if (op == OP_INVALID) {
						g_set_error (err, rspamd_expr_quark(), 600,
								"Braces mismatch");
						goto err;
					}

					if (op != OP_OBRACE) {
						elt.type = ELT_OP;
						elt.p.op = op;
						g_array_append_val (e->expressions, elt);
					}

				} while (op != OP_OBRACE);
			}
			else {
				/*
				 * While there is an operator token, o2, at the top of
				 * the operator stack, and either:
				 *
				 * - o1 is left-associative and its precedence is less than
				 * or equal to that of o2, or
				 * - o1 is right associative, and has precedence less than
				 * that of o2,
				 *
				 * then pop o2 off the operator stack, onto the output queue;
				 *
				 * push o1 onto the operator stack.
				 */

				for (;;) {
					op_stack = GPOINTER_TO_INT (rspamd_expr_stack_pop (e));

					if (op_stack == OP_INVALID) {
						/* Stack is empty */
						break;
					}

					/* We ignore associativity for now */
					if (op_stack != OP_OBRACE &&
							rspamd_expr_logic_priority (op) <
							rspamd_expr_logic_priority (op_stack)) {
						elt.type = ELT_OP;
						elt.p.op = op_stack;
						g_array_append_val (e->expressions, elt);
					}
					else {
						/* Push op_stack back */
						rspamd_expr_stack_push (e, GINT_TO_POINTER (op_stack));
						break;
					}
				}

				/* Push new operator itself */
				rspamd_expr_stack_push (e, GINT_TO_POINTER (op));
			}

			state = SKIP_SPACES;
			break;
		case SKIP_SPACES:
			if (g_ascii_isspace (*p)) {
				p ++;
			}
			else if (rspamd_expr_is_operation_symbol (*p)) {
				state = PARSE_OP;
			}
			else {
				state = PARSE_ATOM;
			}
			break;
		}
	}

	/* Now we process the stack and push operators to the output */
	while ((op_stack = GPOINTER_TO_INT (rspamd_expr_stack_pop (e)))
			!= OP_INVALID) {
		if (op_stack != OP_OBRACE) {
			elt.type = ELT_OP;
			elt.p.op = op_stack;
			g_array_append_val (e->expressions, elt);
		}
		else {
			g_set_error (err, rspamd_expr_quark(), 600,
					"Braces mismatch");
			goto err;
		}
	}

	if (target) {
		*target = e;
		rspamd_mempool_add_destructor (pool,
			(rspamd_mempool_destruct_t)rspamd_expression_destroy, e);
	}
	else {
		rspamd_expression_destroy (e);
	}

	return TRUE;

err:
	return FALSE;
}

#define CHOSE_OPERAND(e1, e2) ((e1)->flags & RSPAMD_EXPR_FLAG_PROCESSED ? (e1) : \
	((e2)->flags & RSPAMD_EXPR_FLAG_PROCESSED) ? (e2) :						\
	((e1)->p.atom->priority >= (e2)->p.atom->priority) ? 					\
	(e1) : (e2))
#define CHOOSE_REMAIN(e1, e2, es) ((es) == (e1) ? (e2) : (e1))
#define PROCESS_ELT(expr, e)	do {										\
		g_assert ((e)->type != ELT_OP);										\
		if (!((e)->flags & RSPAMD_EXPR_FLAG_PROCESSED)) {					\
			if ((e)->type == ELT_ATOM) {									\
				(e)->value = (expr)->subr->process (data, (e)->p.atom);		\
			}																\
			else {															\
				(e)->value = (e)->p.lim.val;								\
			}																\
			(e)->flags |= RSPAMD_EXPR_FLAG_PROCESSED;						\
			if ((e)->flags & RSPAMD_EXPR_FLAG_NEGATE) {						\
				(e)->flags &= ~RSPAMD_EXPR_FLAG_NEGATE;						\
				(e)->value = !(e)->value;									\
			}																\
		}																	\
	} while (0)

gint
rspamd_process_expression (struct rspamd_expression *expr, gpointer data)
{
	struct rspamd_expression_elt *elt, *st_elt[2], *ev, *lim = NULL,
			*cmp_op = NULL, *check;
	guint i, j, cmp_pos = 0;
	gint cur_value = 0, ret = 0;
	gboolean done = FALSE;

	g_assert (expr != NULL);
	/* Ensure that stack is empty at this point */
	g_assert (expr->expression_stack->len == 0);

	/* Go through the whole expression */
	for (i = 0; i < expr->expressions->len; i ++) {
		elt = &g_array_index (expr->expressions, struct rspamd_expression_elt, i);

		if (elt->type == ELT_ATOM || elt->type == ELT_LIMIT) {
			/* Push this value to the stack without processing */
			rspamd_expr_stack_push (expr, elt);
			if (elt->type == ELT_LIMIT) {
				/* Save for optimizator */
				lim = elt;
			}
		}
		else {
			/*
			 * Here we can process atoms on stack and apply
			 * some optimizations for them
			 */
			g_assert (expr->expression_stack->len > 0);

			switch (elt->p.op) {
			case OP_NOT:
				/* Just setup flag for the atom on top of the stack */
				st_elt[0] = rspamd_expr_stack_pop (expr);
				g_assert (st_elt[0]->type == ELT_ATOM);

				if (st_elt[0]->flags & RSPAMD_EXPR_FLAG_NEGATE) {
					st_elt[0]->flags &= ~RSPAMD_EXPR_FLAG_NEGATE;
				}
				else {
					st_elt[0]->flags |= RSPAMD_EXPR_FLAG_NEGATE;
				}

				if (st_elt[0]->flags & RSPAMD_EXPR_FLAG_PROCESSED) {
					/* Inverse the value */
					if ((st_elt[0]->flags & RSPAMD_EXPR_FLAG_NEGATE)) {
						st_elt[0]->value = !st_elt[0]->value;
					}
				}

				rspamd_expr_stack_push (expr, st_elt[0]);
				break;
			case OP_OR:
				/* Evaluate first, if it evaluates to true, then push true */
				g_assert (expr->expression_stack->len > 1);
				st_elt[0] = rspamd_expr_stack_pop (expr);
				st_elt[1] = rspamd_expr_stack_pop (expr);
				ev = CHOSE_OPERAND (st_elt[0], st_elt[1]);
				PROCESS_ELT (expr, ev);

				if (ev->value) {
					rspamd_expr_stack_push (expr, ev);
				}
				else {
					ev = CHOOSE_REMAIN (st_elt[0], st_elt[1], ev);
					PROCESS_ELT (expr, ev);
					/* Push the remaining op */
					rspamd_expr_stack_push (expr, ev);
				}
				break;
			case OP_AND:
				/* Evaluate first, if it evaluates to false, then push false */
				g_assert (expr->expression_stack->len > 1);
				st_elt[0] = rspamd_expr_stack_pop (expr);
				st_elt[1] = rspamd_expr_stack_pop (expr);
				ev = CHOSE_OPERAND (st_elt[0], st_elt[1]);
				PROCESS_ELT (expr, ev);

				if (!ev->value) {
					rspamd_expr_stack_push (expr, ev);
				}
				else {
					ev = CHOOSE_REMAIN (st_elt[0], st_elt[1], ev);
					PROCESS_ELT (expr, ev);
					/* Push the remaining op */
					rspamd_expr_stack_push (expr, ev);
				}
				break;
			case OP_PLUS: {
				/* First we search for a comparision operator */
				if (lim == NULL || cmp_op == NULL) {
					for (j = i + 1; j < expr->expressions->len; j ++) {
						check = &g_array_index (expr->expressions,
								struct rspamd_expression_elt, j);
						if (check->type == ELT_LIMIT && lim == NULL) {
							lim = check;
						}
						else if (check->type == ELT_OP && check->p.op >= OP_LT &&
							cmp_op == NULL) {
							cmp_op = check;
							cmp_pos = j;
						}

						if (cmp_op && lim) {
							break;
						}
					}
				}
				g_assert (cmp_op != NULL && lim != NULL);

				g_assert (expr->expression_stack->len > 1);
				st_elt[0] = rspamd_expr_stack_pop (expr);
				st_elt[1] = rspamd_expr_stack_pop (expr);
				ev = CHOSE_OPERAND (st_elt[0], st_elt[1]);
				PROCESS_ELT (expr, ev);
				cur_value = ev->value;
				ev = CHOOSE_REMAIN (st_elt[0], st_elt[1], ev);
				PROCESS_ELT (expr, ev);
				cur_value += ev->value;
				ev->value = cur_value;
				/* Now we can check the value against limit */
				switch (cmp_op->p.op) {
				case OP_LT:
					if (cur_value >= lim->p.lim.val) {
						ev->value = 0;
						done = TRUE;
					}
					break;
				case OP_LE:
					if (cur_value > lim->p.lim.val) {
						ev->value = 0;
						done = TRUE;
					}
					break;
				case OP_GT:
					if (cur_value > lim->p.lim.val) {
						ev->value = 1;
						done = TRUE;
					}
					break;
				case OP_GE:
					if (cur_value >= lim->p.lim.val) {
						ev->value = 1;
						done = TRUE;
					}
					break;
				default:
					g_assert (0);
					break;
				}

				/* If we done, then we go forward and skip remaining items */
				if (done) {
					/* Remove extra elements left on the stack */
					for (j = i + 1; j < cmp_pos - 1; j ++) {
						check = &g_array_index (expr->expressions,
								struct rspamd_expression_elt, j);
						if (check->type == ELT_OP && check->p.op == OP_PLUS) {
							rspamd_expr_stack_pop (expr);
						}
					}

					/* Push the final result */
					rspamd_expr_stack_push (expr, ev);
					i = cmp_pos;
					done = FALSE;
					lim = NULL;
					cur_value = 0;
					cmp_op = NULL;
				}
				else {
					rspamd_expr_stack_push (expr, ev);
				}
				break;
			}
			case OP_LT:
			case OP_LE:
			case OP_GT:
			case OP_GE: {
				g_assert (expr->expression_stack->len > 1);
				st_elt[0] = rspamd_expr_stack_pop (expr);
				st_elt[1] = rspamd_expr_stack_pop (expr);

				if (st_elt[0]->type == ELT_LIMIT) {
					lim = st_elt[0];
					ev = st_elt[1];
				}
				else {
					lim = st_elt[1];
					ev = st_elt[0];
				}

				g_assert (lim->type == ELT_LIMIT && ev->type == ELT_ATOM);
				cur_value = ev->value;

				switch (elt->p.op) {
				case OP_LT:
					if (cur_value >= lim->p.lim.val) {
						ev->value = 0;
					}
					else {
						ev->value = 1;
					}
					break;
				case OP_LE:
					if (cur_value > lim->p.lim.val) {
						ev->value = 0;
					}
					else {
						ev->value = 1;
					}
					break;
				case OP_GT:
					if (cur_value > lim->p.lim.val) {
						ev->value = 1;
					}
					else {
						ev->value = 0;
					}
					break;
				case OP_GE:
					if (cur_value >= lim->p.lim.val) {
						ev->value = 1;
					}
					else {
						ev->value = 0;
					}
					break;
				default:
					g_assert (0);
					break;
				}

				done = FALSE;
				lim = NULL;
				cur_value = 0;
				cmp_op = NULL;
				rspamd_expr_stack_push (expr, ev);
				break;
			}
			default:
				g_assert (0);
				break;
			}
		}
	}

	g_assert (expr->expression_stack->len == 1);
	ev = rspamd_expr_stack_pop (expr);
	PROCESS_ELT (expr, ev);
	ret = ev->value;

	/* Cleanup */
	for (i = 0; i < expr->expressions->len; i ++) {
		elt = &g_array_index (expr->expressions, struct rspamd_expression_elt, i);
		elt->value = 0;
		elt->flags = 0;
	}

	return ret;
}

GString *
rspamd_expression_tostring (struct rspamd_expression *expr)
{
	GString *res;
	struct rspamd_expression_elt *elt;
	const char *op_str = NULL;
	guint i;

	g_assert (expr != NULL);

	res = g_string_new (NULL);

	for (i = 0; i < expr->expressions->len; i ++) {
		elt = &g_array_index (expr->expressions, struct rspamd_expression_elt, i);

		if (elt->type == ELT_ATOM) {
			g_string_append_len (res, elt->p.atom->str, elt->p.atom->len);
		}
		else if (elt->type == ELT_LIMIT) {
			rspamd_printf_gstring (res, "%d", elt->p.lim.val);
		}
		else {
			switch (elt->p.op) {
			case OP_AND:
				op_str = "&";
				break;
			case OP_OR:
				op_str = "|";
				break;
			case OP_MULT:
				op_str = "*";
				break;
			case OP_PLUS:
				op_str = "+";
				break;
			case OP_NOT:
				op_str = "!";
				break;
			case OP_GE:
				op_str = ">=";
				break;
			case OP_GT:
				op_str = ">";
				break;
			case OP_LE:
				op_str = "<=";
				break;
			case OP_LT:
				op_str = ">=";
				break;
			default:
				op_str = "???";
				break;
			}
			g_string_append (res, op_str);
		}

		if (i != expr->expressions->len - 1) {
			g_string_append_c (res, ' ');
		}
	}

	return res;
}