]> git.ipfire.org Git - thirdparty/bird.git/blob - filter/f-util.c
Merge branch 'master' into int-new
[thirdparty/bird.git] / filter / f-util.c
1 /*
2 * Filters: utility functions
3 *
4 * Copyright 1998 Pavel Machek <pavel@ucw.cz>
5 *
6 * Can be freely distributed and used under the terms of the GNU GPL.
7 */
8
9 #include "nest/bird.h"
10 #include "conf/conf.h"
11 #include "filter/filter.h"
12
13 #define P(a,b) ((a<<8) | b)
14
15 struct f_inst *
16 f_new_inst(void)
17 {
18 struct f_inst * ret;
19 ret = cfg_alloc(sizeof(struct f_inst));
20 ret->code = ret->aux = 0;
21 ret->arg1 = ret->arg2 = ret->next = NULL;
22 ret->lineno = ifs->lino;
23 return ret;
24 }
25
26 struct f_inst *
27 f_new_dynamic_attr(int type, int f_type UNUSED, int code)
28 {
29 /* FIXME: Remove the f_type parameter? */
30 struct f_inst *f = f_new_inst();
31 f->aux = type;
32 f->a2.i = code;
33 return f;
34 }
35
36 /*
37 * Generate set_dynamic( operation( get_dynamic(), argument ) )
38 */
39 struct f_inst *
40 f_generate_complex(int operation, int operation_aux, struct f_inst *dyn, struct f_inst *argument)
41 {
42 struct f_inst *set_dyn = f_new_inst(),
43 *oper = f_new_inst(),
44 *get_dyn = dyn;
45
46 *set_dyn = *get_dyn;
47 get_dyn->code = P('e','a');
48 oper->code = operation;
49 oper->aux = operation_aux;
50 oper->a1.p = get_dyn;
51 oper->a2.p = argument;
52 set_dyn->code = P('e','S');
53 set_dyn->a1.p = oper;
54 return set_dyn;
55 }
56
57 struct f_inst *
58 f_generate_roa_check(struct rtable_config *table, struct f_inst *prefix, struct f_inst *asn)
59 {
60 struct f_inst_roa_check *ret = cfg_allocz(sizeof(struct f_inst_roa_check));
61 ret->i.code = P('R','C');
62 ret->i.lineno = ifs->lino;
63 ret->i.arg1 = prefix;
64 ret->i.arg2 = asn;
65 /* prefix == NULL <-> asn == NULL */
66
67 if (table->addr_type != NET_ROA4 && table->addr_type != NET_ROA6)
68 cf_error("%s is not a ROA table", table->name);
69 ret->rtc = table;
70
71 return &ret->i;
72 }
73
74 char *
75 filter_name(struct filter *filter)
76 {
77 if (!filter)
78 return "ACCEPT";
79 else if (filter == FILTER_REJECT)
80 return "REJECT";
81 else if (!filter->name)
82 return "(unnamed)";
83 else
84 return filter->name;
85 }