1999-01-16 00:49:17 +08:00
|
|
|
/*
|
1999-03-17 22:29:39 +08:00
|
|
|
* BIRD Internet Routing Daemon -- Filters
|
1999-01-16 00:49:17 +08:00
|
|
|
*
|
1999-03-17 22:29:39 +08:00
|
|
|
* (c) 1999 Pavel Machek <pavel@ucw.cz>
|
1999-01-16 00:49:17 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _BIRD_FILT_H_
|
|
|
|
#define _BIRD_FILT_H_
|
|
|
|
|
|
|
|
#include "lib/resource.h"
|
1999-04-07 20:11:08 +08:00
|
|
|
#include "lib/ip.h"
|
2008-10-27 05:45:09 +08:00
|
|
|
#include "nest/route.h"
|
2000-04-17 19:20:00 +08:00
|
|
|
#include "nest/attrs.h"
|
1999-01-16 00:49:17 +08:00
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_inst { /* Instruction */
|
|
|
|
struct f_inst *next; /* Structure is 16 bytes, anyway */
|
1999-11-18 22:01:36 +08:00
|
|
|
u16 code;
|
|
|
|
u16 aux;
|
1999-04-10 17:45:08 +08:00
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
void *p;
|
|
|
|
} a1;
|
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
void *p;
|
|
|
|
} a2;
|
2000-05-17 02:50:51 +08:00
|
|
|
int lineno;
|
1999-01-16 00:49:17 +08:00
|
|
|
};
|
|
|
|
|
1999-04-10 17:45:08 +08:00
|
|
|
#define arg1 a1.p
|
|
|
|
#define arg2 a2.p
|
|
|
|
|
2012-03-19 00:32:30 +08:00
|
|
|
/* Not enough fields in f_inst for three args used by roa_check() */
|
|
|
|
struct f_inst_roa_check {
|
|
|
|
struct f_inst i;
|
2016-11-09 00:46:29 +08:00
|
|
|
struct roa_table_config *rtc;
|
2012-03-19 00:32:30 +08:00
|
|
|
};
|
|
|
|
|
2016-10-01 18:50:29 +08:00
|
|
|
struct f_inst3 {
|
|
|
|
struct f_inst i;
|
|
|
|
union {
|
|
|
|
int i;
|
|
|
|
void *p;
|
|
|
|
} a3;
|
|
|
|
};
|
|
|
|
|
|
|
|
#define INST3(x) (((struct f_inst3 *) x)->a3)
|
|
|
|
|
|
|
|
|
2000-05-17 06:37:53 +08:00
|
|
|
struct f_prefix {
|
1999-04-07 20:11:08 +08:00
|
|
|
ip_addr ip;
|
|
|
|
int len;
|
1999-10-12 14:27:42 +08:00
|
|
|
#define LEN_MASK 0xff
|
1999-11-04 06:23:01 +08:00
|
|
|
#define LEN_PLUS 0x1000000
|
|
|
|
#define LEN_MINUS 0x2000000
|
|
|
|
#define LEN_RANGE 0x4000000
|
|
|
|
/* If range then prefix must be in range (len >> 16 & 0xff, len >> 8 & 0xff) */
|
1999-04-07 20:11:08 +08:00
|
|
|
};
|
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_val {
|
|
|
|
int type;
|
|
|
|
union {
|
2013-11-24 07:17:02 +08:00
|
|
|
uint i;
|
2011-08-13 03:03:43 +08:00
|
|
|
u64 ec;
|
2016-10-01 18:50:29 +08:00
|
|
|
lcomm lc;
|
2016-11-09 00:46:29 +08:00
|
|
|
/* ip_addr ip; Folded into prefix */
|
2000-05-17 06:37:53 +08:00
|
|
|
struct f_prefix px;
|
1999-04-07 20:11:08 +08:00
|
|
|
char *s;
|
1999-04-13 03:58:18 +08:00
|
|
|
struct f_tree *t;
|
2009-03-31 18:55:57 +08:00
|
|
|
struct f_trie *ti;
|
2000-04-12 21:31:39 +08:00
|
|
|
struct adata *ad;
|
|
|
|
struct f_path_mask *path_mask;
|
1999-03-09 04:30:06 +08:00
|
|
|
} val;
|
|
|
|
};
|
|
|
|
|
1999-03-17 22:29:39 +08:00
|
|
|
struct filter {
|
|
|
|
char *name;
|
|
|
|
struct f_inst *root;
|
|
|
|
};
|
|
|
|
|
1999-03-09 04:30:06 +08:00
|
|
|
struct f_inst *f_new_inst(void);
|
2000-04-12 22:05:37 +08:00
|
|
|
struct f_inst *f_new_dynamic_attr(int type, int f_type, int code); /* Type as core knows it, type as filters know it, and code of dynamic attribute */
|
1999-04-13 03:58:18 +08:00
|
|
|
struct f_tree *f_new_tree(void);
|
2000-05-25 23:20:40 +08:00
|
|
|
struct f_inst *f_generate_complex(int operation, int operation_aux, struct f_inst *dyn, struct f_inst *argument);
|
2012-03-19 00:32:30 +08:00
|
|
|
struct f_inst *f_generate_roa_check(struct symbol *sym, struct f_inst *prefix, struct f_inst *asn);
|
|
|
|
|
1999-04-13 03:58:18 +08:00
|
|
|
|
|
|
|
struct f_tree *build_tree(struct f_tree *);
|
|
|
|
struct f_tree *find_tree(struct f_tree *t, struct f_val val);
|
2000-02-01 01:44:22 +08:00
|
|
|
int same_tree(struct f_tree *t1, struct f_tree *t2);
|
2013-10-06 02:12:28 +08:00
|
|
|
void tree_format(struct f_tree *t, buffer *buf);
|
1999-03-03 03:49:28 +08:00
|
|
|
|
2015-02-21 21:05:20 +08:00
|
|
|
struct f_trie *f_new_trie(linpool *lp, uint node_size);
|
|
|
|
void *trie_add_prefix(struct f_trie *t, ip_addr px, int plen, int l, int h);
|
2010-07-27 23:17:11 +08:00
|
|
|
int trie_match_prefix(struct f_trie *t, ip_addr px, int plen);
|
2009-03-31 18:55:57 +08:00
|
|
|
int trie_same(struct f_trie *t1, struct f_trie *t2);
|
2013-10-06 02:12:28 +08:00
|
|
|
void trie_format(struct f_trie *t, buffer *buf);
|
2009-03-31 18:55:57 +08:00
|
|
|
|
2010-07-27 23:17:11 +08:00
|
|
|
void fprefix_get_bounds(struct f_prefix *px, int *l, int *h);
|
|
|
|
|
|
|
|
static inline void
|
|
|
|
trie_add_fprefix(struct f_trie *t, struct f_prefix *px)
|
|
|
|
{
|
|
|
|
int l, h;
|
|
|
|
fprefix_get_bounds(px, &l, &h);
|
|
|
|
trie_add_prefix(t, px->ip, px->len & LEN_MASK, l, h);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline int
|
|
|
|
trie_match_fprefix(struct f_trie *t, struct f_prefix *px)
|
|
|
|
{
|
|
|
|
return trie_match_prefix(t, px->ip, px->len & LEN_MASK);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1999-08-04 03:31:11 +08:00
|
|
|
struct ea_list;
|
|
|
|
struct rte;
|
|
|
|
|
2000-03-29 17:02:00 +08:00
|
|
|
int f_run(struct filter *filter, struct rte **rte, struct ea_list **tmp_attrs, struct linpool *tmp_pool, int flags);
|
2015-07-20 17:12:02 +08:00
|
|
|
struct f_val f_eval_rte(struct f_inst *expr, struct rte **rte, struct linpool *tmp_pool);
|
2013-07-25 19:15:32 +08:00
|
|
|
struct f_val f_eval(struct f_inst *expr, struct linpool *tmp_pool);
|
2013-11-24 07:17:02 +08:00
|
|
|
uint f_eval_int(struct f_inst *expr);
|
2009-08-28 01:01:04 +08:00
|
|
|
u32 f_eval_asn(struct f_inst *expr);
|
|
|
|
|
1999-04-06 04:10:31 +08:00
|
|
|
char *filter_name(struct filter *filter);
|
2000-01-17 01:49:32 +08:00
|
|
|
int filter_same(struct filter *new, struct filter *old);
|
1999-03-17 22:29:39 +08:00
|
|
|
|
2000-02-01 01:44:22 +08:00
|
|
|
int i_same(struct f_inst *f1, struct f_inst *f2);
|
|
|
|
|
1999-04-13 03:58:18 +08:00
|
|
|
int val_compare(struct f_val v1, struct f_val v2);
|
2013-10-02 20:41:37 +08:00
|
|
|
int val_same(struct f_val v1, struct f_val v2);
|
1999-04-07 20:11:08 +08:00
|
|
|
|
2013-10-06 02:12:28 +08:00
|
|
|
void val_format(struct f_val v, buffer *buf);
|
|
|
|
|
2013-07-25 19:15:32 +08:00
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
#define F_NOP 0
|
1999-10-12 14:27:42 +08:00
|
|
|
#define F_NONL 1
|
|
|
|
#define F_ACCEPT 2 /* Need to preserve ordering: accepts < rejects! */
|
1999-12-16 20:18:19 +08:00
|
|
|
#define F_REJECT 3
|
|
|
|
#define F_ERROR 4
|
|
|
|
#define F_QUITBIRD 5
|
1999-01-16 02:13:55 +08:00
|
|
|
|
1999-04-06 04:10:31 +08:00
|
|
|
#define FILTER_ACCEPT NULL
|
|
|
|
#define FILTER_REJECT ((void *) 1)
|
|
|
|
|
1999-03-30 04:21:28 +08:00
|
|
|
/* Type numbers must be in 0..0xff range */
|
|
|
|
#define T_MASK 0xff
|
|
|
|
|
|
|
|
/* Internal types */
|
1999-11-18 22:01:36 +08:00
|
|
|
/* Do not use type of zero, that way we'll see errors easier. */
|
|
|
|
#define T_VOID 1
|
1999-03-30 04:21:28 +08:00
|
|
|
|
|
|
|
/* User visible types, which fit in int */
|
|
|
|
#define T_INT 0x10
|
|
|
|
#define T_BOOL 0x11
|
2000-04-26 16:03:50 +08:00
|
|
|
#define T_PAIR 0x12 /* Notice that pair is stored as integer: first << 16 | second */
|
2010-03-30 01:29:03 +08:00
|
|
|
#define T_QUAD 0x13
|
1999-11-10 20:44:07 +08:00
|
|
|
|
2000-02-25 19:15:26 +08:00
|
|
|
/* Put enumerational types in 0x30..0x3f range */
|
1999-11-10 20:44:07 +08:00
|
|
|
#define T_ENUM_LO 0x30
|
2000-02-25 19:15:26 +08:00
|
|
|
#define T_ENUM_HI 0x3f
|
1999-11-10 20:44:07 +08:00
|
|
|
|
1999-11-10 21:44:29 +08:00
|
|
|
#define T_ENUM_RTS 0x30
|
2000-04-26 15:47:47 +08:00
|
|
|
#define T_ENUM_BGP_ORIGIN 0x31
|
2000-05-30 18:42:39 +08:00
|
|
|
#define T_ENUM_SCOPE 0x32
|
|
|
|
#define T_ENUM_RTC 0x33
|
|
|
|
#define T_ENUM_RTD 0x34
|
2012-03-19 00:32:30 +08:00
|
|
|
#define T_ENUM_ROA 0x35
|
2017-08-31 21:40:23 +08:00
|
|
|
#define T_ENUM_RA_PREFERENCE 0x36
|
2000-04-26 15:47:47 +08:00
|
|
|
/* new enums go here */
|
2000-04-17 20:40:38 +08:00
|
|
|
#define T_ENUM_EMPTY 0x3f /* Special hack for atomic_aggr */
|
1999-11-10 21:44:29 +08:00
|
|
|
|
1999-11-10 20:44:07 +08:00
|
|
|
#define T_ENUM T_ENUM_LO ... T_ENUM_HI
|
1999-03-30 04:21:28 +08:00
|
|
|
|
|
|
|
/* Bigger ones */
|
|
|
|
#define T_IP 0x20
|
|
|
|
#define T_PREFIX 0x21
|
|
|
|
#define T_STRING 0x22
|
2000-04-12 21:07:53 +08:00
|
|
|
#define T_PATH_MASK 0x23 /* mask for BGP path */
|
2000-04-12 21:31:39 +08:00
|
|
|
#define T_PATH 0x24 /* BGP path */
|
|
|
|
#define T_CLIST 0x25 /* Community list */
|
2016-10-01 18:50:29 +08:00
|
|
|
#define T_EC 0x26 /* Extended community value, u64 */
|
|
|
|
#define T_ECLIST 0x27 /* Extended community list */
|
|
|
|
#define T_LC 0x28 /* Large community value, lcomm */
|
|
|
|
#define T_LCLIST 0x29 /* Large community list */
|
1999-03-30 04:21:28 +08:00
|
|
|
|
2000-02-25 19:15:26 +08:00
|
|
|
#define T_RETURN 0x40
|
1999-03-30 04:21:28 +08:00
|
|
|
#define T_SET 0x80
|
2009-03-31 18:55:57 +08:00
|
|
|
#define T_PREFIX_SET 0x81
|
1999-03-17 18:19:07 +08:00
|
|
|
|
2013-09-27 04:08:21 +08:00
|
|
|
|
2016-11-09 00:46:29 +08:00
|
|
|
#define SA_FROM 1
|
|
|
|
#define SA_GW 2
|
|
|
|
#define SA_NET 3
|
|
|
|
#define SA_PROTO 4
|
|
|
|
#define SA_SOURCE 5
|
|
|
|
#define SA_SCOPE 6
|
|
|
|
#define SA_CAST 7
|
|
|
|
#define SA_DEST 8
|
|
|
|
#define SA_IFNAME 9
|
|
|
|
#define SA_IFINDEX 10
|
2013-09-27 04:08:21 +08:00
|
|
|
|
|
|
|
|
1999-04-13 03:58:18 +08:00
|
|
|
struct f_tree {
|
|
|
|
struct f_tree *left, *right;
|
|
|
|
struct f_val from, to;
|
|
|
|
void *data;
|
|
|
|
};
|
|
|
|
|
2009-03-31 18:55:57 +08:00
|
|
|
struct f_trie_node
|
|
|
|
{
|
|
|
|
ip_addr addr, mask, accept;
|
|
|
|
int plen;
|
|
|
|
struct f_trie_node *c[2];
|
|
|
|
};
|
|
|
|
|
|
|
|
struct f_trie
|
|
|
|
{
|
2010-07-27 23:17:11 +08:00
|
|
|
linpool *lp;
|
2009-03-31 18:55:57 +08:00
|
|
|
int zero;
|
2015-02-21 21:05:20 +08:00
|
|
|
uint node_size;
|
|
|
|
struct f_trie_node root[0]; /* Root trie node follows */
|
2009-03-31 18:55:57 +08:00
|
|
|
};
|
|
|
|
|
1999-10-12 14:27:42 +08:00
|
|
|
#define NEW_F_VAL struct f_val * val; val = cfg_alloc(sizeof(struct f_val));
|
|
|
|
|
2000-03-30 16:50:30 +08:00
|
|
|
#define FF_FORCE_TMPATTR 1 /* Force all attributes to be temporary */
|
2000-03-29 17:02:00 +08:00
|
|
|
|
1999-01-16 00:49:17 +08:00
|
|
|
#endif
|