1999-01-16 00:49:17 +08:00
|
|
|
/*
|
|
|
|
* BIRD - filters
|
|
|
|
*
|
1999-07-01 17:11:21 +08:00
|
|
|
* Copyright 1998,1999 Pavel Machek
|
1999-01-16 00:49:17 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
1999-10-07 21:38:26 +08:00
|
|
|
*
|
1999-11-10 20:44:07 +08:00
|
|
|
FIXME (nonurgent): define keyword
|
2000-02-25 19:15:26 +08:00
|
|
|
FIXME (for BGP): whole system of paths, path ~ string, path.prepend(), path.originate
|
1999-10-07 21:38:26 +08:00
|
|
|
FIXME: create community lists
|
1999-12-19 04:39:53 +08:00
|
|
|
FIXME: IP addresses in ipv6
|
2000-03-29 17:02:00 +08:00
|
|
|
|
|
|
|
|
|
|
|
(1) Cesty
|
|
|
|
|
|
|
|
AS paths budtez interne reprezentovany stejne jako v BGP (viz RFC 1771),
|
|
|
|
to znamena jako posloupnost segmentu, z nichz kazdy je budto posloupnost nebo
|
|
|
|
mnozina cisel ASu. Na cestach nadefinuji nasledujici operace:
|
|
|
|
|
|
|
|
- zformatovani do stringu
|
|
|
|
- append dalsiho AS k ceste
|
|
|
|
|
|
|
|
Filtry by mely podporovat:
|
|
|
|
|
|
|
|
- operator pridani AS k ceste
|
|
|
|
- matchovani na pritomnost podposloupnosti v ceste (pricemz vyskytne-li
|
|
|
|
se tam mnozina, tak si ji lze predstavit prerovnanou v libovolnem
|
|
|
|
poradi)
|
|
|
|
- operator zjisteni delky cesty (pro vypocet metrik)
|
|
|
|
|
|
|
|
Byl bych rad, kdyby se samotne matchovaci funkce objevily v proto/bgp/attrs.c.
|
|
|
|
|
|
|
|
|
|
|
|
(2) Community-listy
|
|
|
|
|
|
|
|
Community list budiz interne reprezentovan jako posloupnost 32-bitovych cisel.
|
|
|
|
|
|
|
|
Filtry by se mely na communities divat jako na usporadane dvojice 16-bitovych
|
|
|
|
cisel (prvni je cislo AS, ktery community definoval, druhe pak community ID
|
|
|
|
v ramci AS) a melo by byt mozne definovat si konstanty typu community.
|
|
|
|
K dispozici by mely byt nasledujici operace:
|
|
|
|
|
|
|
|
- zjisteni pritomnosti community v listu
|
|
|
|
- pridani community do listu
|
|
|
|
- odebrani community z listu
|
|
|
|
- zresetovani listu
|
|
|
|
|
|
|
|
Pro operace na cestach i na community listech by se mela pouzivat `teckova'
|
|
|
|
notace pouzita v mem puvodnim navrhu syntaxe.
|
|
|
|
|
|
|
|
|
|
|
|
(3) Zmeny v semantice dynamickych atributu
|
|
|
|
|
|
|
|
Aby se nemusely neustale kopirovat seznamy atributu, rad bych provedl jeste
|
|
|
|
jednu zmenu v tom, jak filtry nakladaji s atributy (pevne doufam, ze posledni,
|
|
|
|
ale uznavam, ze u te predchozi jsem to take tvrdil): Funkci f_run budiz
|
|
|
|
pridan jeste jeden parametr, ktery prepina mezi dvema mody:
|
|
|
|
|
|
|
|
(a) [incoming filter mode] Jako nyni.
|
|
|
|
|
|
|
|
(b) [outgoing filter mode] Pokud se hleda atribut, hleda se nejdrive
|
|
|
|
v tmp_attrs a pokud to selze, tak v rta->attrs. Pokud se nastavuje,
|
|
|
|
dava se _vzdy_ do tmp_attrs.
|
|
|
|
|
|
|
|
Diky tomu filtry pri exportu routes nebudou vubec muset modifikovat rta a
|
|
|
|
protokoly, ktere v import_control potrebuji nastavovat i non-temporary
|
|
|
|
atributy, je budou moci pridat do tmp_attrs, aniz by sahly na rta.
|
|
|
|
|
|
|
|
|
1999-01-16 00:49:17 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
2000-02-25 19:15:26 +08:00
|
|
|
#define P(a,b) ((a<<8) | b)
|
|
|
|
|
1999-01-16 00:49:17 +08:00
|
|
|
CF_DECLS
|
|
|
|
|
2000-03-09 21:21:40 +08:00
|
|
|
CF_KEYWORDS(FUNCTION, PRINT, PRINTN, UNSET, RETURN,
|
1999-03-30 04:21:28 +08:00
|
|
|
ACCEPT, REJECT, ERROR, QUITBIRD,
|
|
|
|
INT, BOOL, IP, PREFIX, PAIR, SET, STRING,
|
1999-09-29 22:24:58 +08:00
|
|
|
IF, THEN, ELSE, CASE,
|
1999-04-07 20:11:08 +08:00
|
|
|
TRUE, FALSE,
|
2000-03-01 19:32:23 +08:00
|
|
|
FROM, GW, NET, MASK, SOURCE,
|
1999-04-20 02:41:56 +08:00
|
|
|
LEN,
|
1999-11-10 20:44:07 +08:00
|
|
|
DEFINED,
|
1999-12-02 22:04:44 +08:00
|
|
|
FILTER, WHERE)
|
1999-01-16 00:49:17 +08:00
|
|
|
|
1999-11-10 20:44:07 +08:00
|
|
|
%nonassoc THEN
|
1999-11-11 21:27:59 +08:00
|
|
|
%nonassoc ELSE
|
1999-11-10 20:44:07 +08:00
|
|
|
|
2000-03-01 19:32:23 +08:00
|
|
|
%type <x> term block cmds cmd function_body constant print_one print_list var_list var_listn dynamic_attr function_call
|
1999-12-02 22:04:44 +08:00
|
|
|
%type <f> filter filter_body where_filter
|
1999-11-11 21:55:39 +08:00
|
|
|
%type <i> type break_command pair
|
1999-10-29 05:03:36 +08:00
|
|
|
%type <e> set_item set_items switch_body
|
1999-10-12 14:27:42 +08:00
|
|
|
%type <v> set_atom prefix prefix_s ipa
|
1999-11-04 06:23:01 +08:00
|
|
|
%type <s> decls declsn one_decl function_params
|
1999-01-16 00:49:17 +08:00
|
|
|
|
|
|
|
CF_GRAMMAR
|
|
|
|
|
1999-03-17 22:29:39 +08:00
|
|
|
CF_ADDTO(conf, filter_def)
|
|
|
|
filter_def:
|
1999-11-10 21:44:29 +08:00
|
|
|
FILTER SYM { cf_push_scope( $2 ); } filter_body {
|
1999-11-04 22:03:45 +08:00
|
|
|
cf_define_symbol($2, SYM_FILTER, $4);
|
|
|
|
$4->name = $2->name;
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG( "We have new filter defined (%s)\n", $2->name );
|
1999-11-04 22:03:45 +08:00
|
|
|
cf_pop_scope();
|
1999-01-16 00:49:17 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-03-30 04:21:28 +08:00
|
|
|
type:
|
|
|
|
INT { $$ = T_INT; }
|
|
|
|
| BOOL { $$ = T_BOOL; }
|
|
|
|
| IP { $$ = T_IP; }
|
|
|
|
| PREFIX { $$ = T_PREFIX; }
|
|
|
|
| PAIR { $$ = T_PAIR; }
|
|
|
|
| STRING { $$ = T_STRING; }
|
|
|
|
| type SET {
|
|
|
|
switch ($1) {
|
|
|
|
default:
|
|
|
|
cf_error( "You can not create sets of this type\n" );
|
|
|
|
case T_INT: case T_IP: case T_PREFIX: case T_PAIR:
|
|
|
|
}
|
|
|
|
$$ = $1 | T_SET;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-11-04 06:23:01 +08:00
|
|
|
one_decl:
|
|
|
|
type SYM {
|
1999-05-18 04:06:19 +08:00
|
|
|
cf_define_symbol($2, SYM_VARIABLE | $1, NULL);
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG( "New variable %s type %x\n", $2->name, $1 );
|
1999-11-10 21:44:29 +08:00
|
|
|
$2->aux = 0;
|
1999-10-12 14:27:42 +08:00
|
|
|
{
|
|
|
|
struct f_val * val;
|
|
|
|
val = cfg_alloc(sizeof(struct f_val));
|
|
|
|
val->type = $1;
|
|
|
|
$2->aux2 = val;
|
|
|
|
}
|
1999-07-01 17:11:21 +08:00
|
|
|
$$=$2;
|
1999-03-30 04:21:28 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-11-04 06:23:01 +08:00
|
|
|
/* Decls with ';' at the end */
|
|
|
|
decls: /* EMPTY */ { $$ = NULL; }
|
|
|
|
| one_decl ';' decls {
|
|
|
|
$$ = $1;
|
1999-11-10 21:44:29 +08:00
|
|
|
$$->aux = (int) $3;
|
1999-11-04 06:23:01 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-11-04 22:05:40 +08:00
|
|
|
/* Declarations that have no ';' at the end. */
|
1999-11-04 06:23:01 +08:00
|
|
|
declsn: one_decl { $$ = $1; }
|
|
|
|
| declsn ';' one_decl {
|
1999-11-11 21:55:39 +08:00
|
|
|
$$ = $1;
|
|
|
|
$$->aux = (int) $3;
|
1999-11-04 06:23:01 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-03-17 22:29:39 +08:00
|
|
|
filter_body:
|
1999-03-30 04:21:28 +08:00
|
|
|
function_body {
|
1999-03-17 22:29:39 +08:00
|
|
|
struct filter *f = cfg_alloc(sizeof(struct filter));
|
|
|
|
f->name = NULL;
|
1999-03-30 04:21:28 +08:00
|
|
|
f->root = $1;
|
1999-03-17 22:29:39 +08:00
|
|
|
$$ = f;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
filter:
|
|
|
|
SYM {
|
|
|
|
if ($1->class != SYM_FILTER) cf_error("No such filter");
|
|
|
|
$$ = $1->def;
|
|
|
|
}
|
|
|
|
| filter_body
|
|
|
|
;
|
|
|
|
|
1999-12-02 22:04:44 +08:00
|
|
|
where_filter:
|
|
|
|
WHERE term {
|
|
|
|
/* Construct 'IF term THEN ACCEPT; REJECT;' */
|
|
|
|
struct filter *f = cfg_alloc(sizeof(struct filter));
|
|
|
|
struct f_inst *i, *acc, *rej;
|
|
|
|
acc = f_new_inst(); /* ACCEPT */
|
2000-02-25 19:15:26 +08:00
|
|
|
acc->code = P('p',',');
|
1999-12-02 22:04:44 +08:00
|
|
|
acc->a1.p = NULL;
|
|
|
|
acc->a2.i = F_ACCEPT;
|
|
|
|
rej = f_new_inst(); /* REJECT */
|
2000-02-25 19:15:26 +08:00
|
|
|
rej->code = P('p',',');
|
1999-12-02 22:04:44 +08:00
|
|
|
rej->a1.p = NULL;
|
|
|
|
rej->a2.i = F_REJECT;
|
|
|
|
i = f_new_inst(); /* IF */
|
|
|
|
i->code = '?';
|
|
|
|
i->a1.p = $2;
|
|
|
|
i->a2.p = acc;
|
|
|
|
i->next = rej;
|
|
|
|
f->name = NULL;
|
|
|
|
f->root = i;
|
|
|
|
$$ = f;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-03-30 04:21:28 +08:00
|
|
|
function_params:
|
2000-03-03 06:23:18 +08:00
|
|
|
'(' declsn ')' { DBG( "Have function parameters\n" ); $$=$2; }
|
1999-11-04 06:23:01 +08:00
|
|
|
| '(' ')' { $$=NULL; }
|
1999-03-30 04:21:28 +08:00
|
|
|
;
|
1999-01-16 00:49:17 +08:00
|
|
|
|
1999-03-30 04:21:28 +08:00
|
|
|
function_body:
|
|
|
|
decls '{' cmds '}' {
|
|
|
|
$$ = $3;
|
1999-03-03 03:49:28 +08:00
|
|
|
}
|
1999-03-30 04:21:28 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
CF_ADDTO(conf, function_def)
|
|
|
|
function_def:
|
2000-03-03 06:23:18 +08:00
|
|
|
FUNCTION SYM { DBG( "Begining of function %s\n", $2->name ); cf_push_scope($2); } function_params function_body {
|
1999-03-30 04:21:28 +08:00
|
|
|
extern struct f_inst *startup_func;
|
1999-11-04 22:03:45 +08:00
|
|
|
cf_define_symbol($2, SYM_FUNCTION, $5);
|
1999-03-30 04:21:28 +08:00
|
|
|
if (!strcasecmp($2->name, "startup"))
|
1999-11-04 22:03:45 +08:00
|
|
|
startup_func = $5;
|
1999-11-10 21:44:29 +08:00
|
|
|
$2->aux = (int) $4;
|
1999-11-04 22:03:45 +08:00
|
|
|
$2->aux2 = $5;
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG("Hmm, we've got one function here - %s\n", $2->name);
|
1999-11-04 22:03:45 +08:00
|
|
|
cf_pop_scope();
|
1999-03-30 04:21:28 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
/* Programs */
|
|
|
|
|
|
|
|
cmds: /* EMPTY */ { $$ = NULL; }
|
|
|
|
| cmd cmds {
|
1999-03-03 03:49:28 +08:00
|
|
|
if ($1) {
|
1999-09-29 22:24:58 +08:00
|
|
|
if ($1->next)
|
|
|
|
bug("Command has next already set\n");
|
1999-03-30 04:21:28 +08:00
|
|
|
$1->next = $2;
|
1999-03-03 03:49:28 +08:00
|
|
|
$$ = $1;
|
1999-03-30 04:21:28 +08:00
|
|
|
} else $$ = $2;
|
1999-03-03 03:49:28 +08:00
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-03-09 22:45:27 +08:00
|
|
|
block:
|
1999-03-30 04:21:28 +08:00
|
|
|
cmd {
|
1999-03-09 22:45:27 +08:00
|
|
|
$$=$1;
|
|
|
|
}
|
|
|
|
| '{' cmds '}' {
|
|
|
|
$$=$2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-10-12 14:27:42 +08:00
|
|
|
/*
|
|
|
|
* Simple types, their bison value is int
|
|
|
|
*/
|
|
|
|
pair:
|
|
|
|
'(' NUM ',' NUM ')' { $$ = $2 << 16 | $4; }
|
|
|
|
;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Complex types, their bison value is struct f_val
|
|
|
|
*/
|
|
|
|
prefix_s:
|
1999-11-24 20:16:31 +08:00
|
|
|
IPA '/' NUM { $$.type = T_PREFIX; $$.val.px.ip = $1; $$.val.px.len = $3; if (ipa_nonzero(ipa_and($$.val.px.ip, ipa_not(ipa_mkmask($$.val.px.len))))) cf_error( "%I/%d is not really prefix\n", $$.val.px.ip, $$.val.px.len ); }
|
1999-10-12 14:27:42 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
prefix:
|
|
|
|
prefix_s { $$ = $1; }
|
|
|
|
| prefix_s '+' { $$ = $1; $$.val.px.len |= LEN_PLUS; }
|
|
|
|
| prefix_s '-' { $$ = $1; $$.val.px.len |= LEN_MINUS; }
|
1999-11-04 06:23:01 +08:00
|
|
|
| prefix_s '{' NUM ',' NUM '}' { $$ = $1; $$.val.px.len |= LEN_RANGE | ($3 << 16) | ($5 << 8); }
|
1999-10-12 14:27:42 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
ipa:
|
1999-11-04 06:23:01 +08:00
|
|
|
IPA { $$.type = T_IP; $$.val.px.ip = $1; }
|
1999-10-12 14:27:42 +08:00
|
|
|
;
|
|
|
|
|
1999-04-13 03:58:18 +08:00
|
|
|
set_atom:
|
1999-10-12 14:27:42 +08:00
|
|
|
NUM { $$.type = T_INT; $$.val.i = $1; }
|
|
|
|
| pair { $$.type = T_PAIR; $$.val.i = $1; }
|
|
|
|
| ipa { $$ = $1; }
|
|
|
|
| prefix { $$ = $1; }
|
1999-04-13 03:58:18 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
set_item:
|
2000-03-09 22:47:43 +08:00
|
|
|
set_atom {
|
|
|
|
$$ = f_new_tree();
|
|
|
|
$$->from = $1;
|
|
|
|
if ($1.type != T_PREFIX)
|
|
|
|
$$->to = $1;
|
|
|
|
else {
|
|
|
|
$$->to = $1;
|
|
|
|
$$->to.val.px.ip = ipa_or( $$->to.val.px.ip, ipa_not( ipa_mkmask( $$->to.val.px.len ) ));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
| set_atom '.' '.' set_atom {
|
|
|
|
$$ = f_new_tree();
|
|
|
|
$$->from = $1;
|
|
|
|
$$->to = $4;
|
|
|
|
if (($1.type == T_PREFIX) || ($4.type == T_PREFIX)) cf_error( "You can not use prefixes for range" );
|
|
|
|
}
|
1999-04-13 03:58:18 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
set_items:
|
|
|
|
set_item { $$ = $1; }
|
|
|
|
| set_items ',' set_item { $$ = $3; $$->left = $1; }
|
|
|
|
;
|
|
|
|
|
1999-10-29 05:03:36 +08:00
|
|
|
switch_body: /* EMPTY */ { $$ = NULL; }
|
|
|
|
| set_item ':' cmds switch_body {
|
|
|
|
$$ = $1;
|
|
|
|
$$->data = $3;
|
|
|
|
$$->left = $4;
|
|
|
|
}
|
|
|
|
| ELSE ':' cmds {
|
|
|
|
$$ = f_new_tree();
|
|
|
|
$$->from.type = T_VOID;
|
|
|
|
$$->to.type = T_VOID;
|
|
|
|
$$->data = $3;
|
|
|
|
}
|
|
|
|
;
|
1999-10-12 14:27:42 +08:00
|
|
|
|
2000-03-09 21:21:40 +08:00
|
|
|
/* CONST '(' expr ')' { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_INT; $$->a2.i = $3; } */
|
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
constant:
|
2000-03-09 21:21:40 +08:00
|
|
|
NUM { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_INT; $$->a2.i = $1; }
|
1999-11-18 22:01:36 +08:00
|
|
|
| TRUE { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_BOOL; $$->a2.i = 1; }
|
|
|
|
| FALSE { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_BOOL; $$->a2.i = 0; }
|
|
|
|
| TEXT { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_STRING; $$->a2.p = $1; }
|
|
|
|
| pair { $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_PAIR; $$->a2.i = $1; }
|
1999-10-12 14:27:42 +08:00
|
|
|
| ipa { NEW_F_VAL; $$ = f_new_inst(); $$->code = 'C'; $$->a1.p = val; *val = $1; }
|
1999-11-10 21:07:18 +08:00
|
|
|
| prefix_s {NEW_F_VAL; $$ = f_new_inst(); $$->code = 'C'; $$->a1.p = val; *val = $1; }
|
2000-03-03 06:23:18 +08:00
|
|
|
| '[' set_items ']' { DBG( "We've got a set here..." ); $$ = f_new_inst(); $$->code = 'c'; $$->aux = T_SET; $$->a2.p = build_tree($2); DBG( "ook\n" ); }
|
1999-11-18 22:01:36 +08:00
|
|
|
| ENUM { $$ = f_new_inst(); $$->code = 'c'; $$->aux = $1 >> 16; $$->a2.i = $1 & 0xffff; }
|
1999-04-07 20:11:08 +08:00
|
|
|
;
|
|
|
|
|
2000-03-01 19:32:23 +08:00
|
|
|
/*
|
|
|
|
* Maybe there are no dynamic attributes defined by protocols.
|
|
|
|
* For such cases, we force the dynamic_attr list to contain
|
|
|
|
* at least an invalid token, so it's syntantically correct.
|
|
|
|
*/
|
|
|
|
CF_ADDTO(dynamic_attr, INVALID_TOKEN { $$ = NULL; })
|
1999-11-10 20:44:07 +08:00
|
|
|
|
1999-12-08 20:51:26 +08:00
|
|
|
rtadot: /* EMPTY, we are not permitted RTA. prefix */
|
1999-12-08 18:15:51 +08:00
|
|
|
;
|
1999-11-10 20:44:07 +08:00
|
|
|
|
2000-02-25 19:15:26 +08:00
|
|
|
function_call:
|
|
|
|
SYM '(' var_list ')' {
|
|
|
|
struct symbol *sym;
|
|
|
|
struct f_inst *inst = $3;
|
|
|
|
if ($1->class != SYM_FUNCTION)
|
|
|
|
cf_error("You can not call something which is not function. Really.");
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG("You are calling function %s\n", $1->name);
|
2000-02-25 19:15:26 +08:00
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = P('c','a');
|
|
|
|
$$->a1.p = inst;
|
|
|
|
$$->a2.p = $1->aux2;
|
|
|
|
sym = (void *) $1->aux;
|
|
|
|
while (sym || inst) {
|
|
|
|
if (!sym || !inst)
|
|
|
|
cf_error("wrong number of arguments for function %s.", $1->name);
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG( "You should pass parameter called %s\n", sym->name);
|
2000-02-25 19:15:26 +08:00
|
|
|
inst->a1.p = sym;
|
|
|
|
sym = (void *) sym->aux;
|
|
|
|
inst = inst->next;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-03-03 03:49:28 +08:00
|
|
|
term:
|
1999-11-10 20:44:07 +08:00
|
|
|
'(' term ')' { $$ = $2; }
|
2000-03-03 06:23:18 +08:00
|
|
|
| term '+' term { $$ = f_new_inst(); $$->code = '+'; $$->a1.p = $1; $$->a2.p = $3; }
|
2000-02-25 19:15:26 +08:00
|
|
|
| term '=' term { $$ = f_new_inst(); $$->code = P('=','='); $$->a1.p = $1; $$->a2.p = $3; }
|
2000-03-03 06:23:18 +08:00
|
|
|
| term NEQ term { $$ = f_new_inst(); $$->code = P('!','='); $$->a1.p = $1; $$->a2.p = $3; }
|
|
|
|
| term '<' term { $$ = f_new_inst(); $$->code = '<'; $$->a1.p = $1; $$->a2.p = $3; }
|
|
|
|
| term LEQ term { $$ = f_new_inst(); $$->code = P('<','='); $$->a1.p = $1; $$->a2.p = $3; }
|
|
|
|
| term '>' term { $$ = f_new_inst(); $$->code = '<'; $$->a1.p = $3; $$->a2.p = $1; }
|
|
|
|
| term GEQ term { $$ = f_new_inst(); $$->code = P('<','='); $$->a1.p = $3; $$->a2.p = $1; }
|
|
|
|
| term '~' term { $$ = f_new_inst(); $$->code = '~'; $$->a1.p = $1; $$->a2.p = $3; }
|
2000-03-09 22:47:43 +08:00
|
|
|
| '!' term { $$ = f_new_inst(); $$->code = '!'; $$->a1.p = $2; }
|
2000-02-25 19:15:26 +08:00
|
|
|
| DEFINED '(' term ')' { $$ = f_new_inst(); $$->code = P('d','e'); $$->a1.p = $3; }
|
1999-04-07 20:11:08 +08:00
|
|
|
|
1999-11-10 21:59:13 +08:00
|
|
|
| constant { $$ = $1; }
|
1999-03-09 22:45:27 +08:00
|
|
|
| SYM {
|
|
|
|
$$ = f_new_inst();
|
|
|
|
switch ($1->class) {
|
1999-03-30 04:21:28 +08:00
|
|
|
case SYM_VARIABLE | T_INT:
|
1999-10-12 14:27:42 +08:00
|
|
|
case SYM_VARIABLE | T_PAIR:
|
|
|
|
case SYM_VARIABLE | T_PREFIX:
|
|
|
|
case SYM_VARIABLE | T_IP:
|
|
|
|
$$->code = 'C';
|
|
|
|
$$->a1.p = $1->aux2;
|
1999-03-09 22:45:27 +08:00
|
|
|
break;
|
|
|
|
default:
|
1999-11-10 21:59:13 +08:00
|
|
|
cf_error("Can not use this class of symbol (%s,%x) as variable.", $1->name, $1->class );
|
1999-03-09 22:45:27 +08:00
|
|
|
}
|
|
|
|
}
|
1999-11-11 21:55:39 +08:00
|
|
|
|
1999-12-08 18:15:51 +08:00
|
|
|
| rtadot FROM { $$ = f_new_inst(); $$->code = 'a'; $$->aux = T_IP; $$->a2.i = OFFSETOF(struct rta, from); }
|
1999-04-20 02:41:56 +08:00
|
|
|
|
1999-12-08 18:15:51 +08:00
|
|
|
| rtadot GW { $$ = f_new_inst(); $$->code = 'a'; $$->aux = T_IP; $$->a2.i = OFFSETOF(struct rta, gw); }
|
|
|
|
| rtadot NET { $$ = f_new_inst(); $$->code = 'a'; $$->aux = T_PREFIX; $$->a2.i = 0x12345678; }
|
|
|
|
| rtadot SOURCE { $$ = f_new_inst(); $$->code = 'a'; $$->aux = T_ENUM_RTS; $$->a2.i = OFFSETOF(struct rta, gw); }
|
1999-11-04 06:23:01 +08:00
|
|
|
|
2000-03-01 19:32:23 +08:00
|
|
|
| rtadot dynamic_attr { $$ = $2; $$->code = P('e','a'); }
|
1999-04-20 02:41:56 +08:00
|
|
|
|
2000-02-25 19:15:26 +08:00
|
|
|
| term '.' IP { $$ = f_new_inst(); $$->code = P('c','p'); $$->a1.p = $1; $$->aux = T_IP; }
|
|
|
|
| term '.' LEN { $$ = f_new_inst(); $$->code = P('c','p'); $$->a1.p = $1; $$->aux = T_INT; }
|
|
|
|
| term '.' MASK '(' term ')' { $$ = f_new_inst(); $$->code = P('i','M'); $$->a1.p = $1; $$->a2.p = $5; }
|
2000-03-09 22:47:43 +08:00
|
|
|
/* function_call is inlined here */
|
|
|
|
| SYM '(' var_list ')' {
|
|
|
|
struct symbol *sym;
|
|
|
|
struct f_inst *inst = $3;
|
|
|
|
if ($1->class != SYM_FUNCTION)
|
|
|
|
cf_error("You can not call something which is not function. Really.");
|
|
|
|
DBG("You are calling function %s\n", $1->name);
|
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = P('c','a');
|
|
|
|
$$->a1.p = inst;
|
|
|
|
$$->a2.p = $1->aux2;
|
|
|
|
sym = (void *) $1->aux;
|
|
|
|
while (sym || inst) {
|
|
|
|
if (!sym || !inst)
|
|
|
|
cf_error("wrong number of arguments for function %s.", $1->name);
|
|
|
|
DBG( "You should pass parameter called %s\n", sym->name);
|
|
|
|
inst->a1.p = sym;
|
|
|
|
sym = (void *) sym->aux;
|
|
|
|
inst = inst->next;
|
|
|
|
}
|
|
|
|
}
|
1999-03-30 04:21:28 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
break_command:
|
|
|
|
QUITBIRD { $$ = F_QUITBIRD }
|
|
|
|
| ACCEPT { $$ = F_ACCEPT }
|
|
|
|
| REJECT { $$ = F_REJECT }
|
|
|
|
| ERROR { $$ = F_ERROR }
|
1999-04-07 20:11:08 +08:00
|
|
|
| PRINT { $$ = F_NOP }
|
1999-10-12 14:27:42 +08:00
|
|
|
| PRINTN { $$ = F_NONL }
|
1999-03-30 04:21:28 +08:00
|
|
|
;
|
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
print_one:
|
1999-04-10 17:45:08 +08:00
|
|
|
term { $$ = f_new_inst(); $$->code = 'p'; $$->a1.p = $1; $$->a2.p = NULL; }
|
1999-04-07 20:11:08 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
print_list: /* EMPTY */ { $$ = NULL; }
|
2000-03-09 22:47:43 +08:00
|
|
|
| print_one { $$ = $1; }
|
|
|
|
| print_one ',' print_list {
|
1999-04-07 20:11:08 +08:00
|
|
|
if ($1) {
|
2000-03-09 22:47:43 +08:00
|
|
|
$1->next = $3;
|
1999-04-07 20:11:08 +08:00
|
|
|
$$ = $1;
|
2000-03-09 22:47:43 +08:00
|
|
|
} else $$ = $3;
|
1999-04-07 20:11:08 +08:00
|
|
|
}
|
2000-03-09 22:47:43 +08:00
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
;
|
|
|
|
|
1999-11-04 06:23:01 +08:00
|
|
|
var_listn: term {
|
1999-10-12 14:27:42 +08:00
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = 's';
|
|
|
|
$$->a1.p = NULL;
|
|
|
|
$$->a2.p = $1;
|
|
|
|
$$->next = NULL;
|
|
|
|
}
|
1999-11-04 06:23:01 +08:00
|
|
|
| term ',' var_listn {
|
1999-07-01 17:11:21 +08:00
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = 's';
|
|
|
|
$$->a1.p = NULL;
|
|
|
|
$$->a2.p = $1;
|
|
|
|
$$->next = $3;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-11-04 06:23:01 +08:00
|
|
|
var_list: /* EMPTY */ { $$ = NULL; }
|
|
|
|
| var_listn { $$ = $1; }
|
|
|
|
;
|
|
|
|
|
1999-04-07 20:11:08 +08:00
|
|
|
cmd:
|
1999-11-10 21:05:57 +08:00
|
|
|
IF term THEN block {
|
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = '?';
|
|
|
|
$$->a1.p = $2;
|
|
|
|
$$->a2.p = $4;
|
1999-04-07 20:11:08 +08:00
|
|
|
}
|
1999-11-10 21:05:57 +08:00
|
|
|
| IF term THEN block ELSE block {
|
|
|
|
struct f_inst *i = f_new_inst();
|
|
|
|
i->code = '?';
|
|
|
|
i->a1.p = $2;
|
|
|
|
i->a2.p = $4;
|
1999-04-07 20:11:08 +08:00
|
|
|
$$ = f_new_inst();
|
|
|
|
$$->code = '?';
|
1999-11-10 21:05:57 +08:00
|
|
|
$$->a1.p = i;
|
|
|
|
$$->a2.p = $6;
|
1999-04-07 20:11:08 +08:00
|
|
|
}
|
1999-03-30 04:21:28 +08:00
|
|
|
| SYM '=' term ';' {
|
1999-03-03 03:49:28 +08:00
|
|
|
$$ = f_new_inst();
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG( "Ook, we'll set value\n" );
|
1999-03-30 04:21:28 +08:00
|
|
|
if (($1->class & ~T_MASK) != SYM_VARIABLE)
|
|
|
|
cf_error( "You may only set variables, and this is %x.\n", $1->class );
|
1999-04-07 20:11:08 +08:00
|
|
|
$$->code = 's';
|
1999-04-10 17:45:08 +08:00
|
|
|
$$->a1.p = $1;
|
|
|
|
$$->a2.p = $3;
|
1999-01-16 00:49:17 +08:00
|
|
|
}
|
2000-02-25 19:15:26 +08:00
|
|
|
| RETURN term ';' {
|
|
|
|
$$ = f_new_inst();
|
2000-03-03 06:23:18 +08:00
|
|
|
DBG( "Ook, we'll return the value\n" );
|
2000-02-25 19:15:26 +08:00
|
|
|
$$->code = 'r';
|
|
|
|
$$->a1.p = $2;
|
|
|
|
}
|
2000-03-01 19:32:23 +08:00
|
|
|
| rtadot dynamic_attr '=' term ';' {
|
1999-12-08 18:15:51 +08:00
|
|
|
$$ = $2;
|
2000-02-25 19:15:26 +08:00
|
|
|
$$->code = P('e','S');
|
1999-12-08 18:15:51 +08:00
|
|
|
$$->a1.p = $4;
|
1999-11-18 22:29:10 +08:00
|
|
|
}
|
2000-03-01 19:32:23 +08:00
|
|
|
| UNSET '(' rtadot dynamic_attr ')' ';' {
|
1999-12-08 18:15:51 +08:00
|
|
|
$$ = $4;
|
2000-03-05 06:30:44 +08:00
|
|
|
$$->aux = EAF_TYPE_UNDEF | EAF_TEMP;
|
2000-02-25 19:15:26 +08:00
|
|
|
$$->code = P('e','S');
|
1999-11-24 20:04:32 +08:00
|
|
|
$$->a1.p = NULL;
|
1999-11-18 22:01:36 +08:00
|
|
|
}
|
2000-02-25 19:15:26 +08:00
|
|
|
| break_command print_list ';' { $$ = f_new_inst(); $$->code = P('p',','); $$->a1.p = $2; $$->a2.i = $1; }
|
|
|
|
| function_call ';' { $$ = $1; }
|
1999-09-29 22:24:58 +08:00
|
|
|
| CASE term '{' switch_body '}' {
|
|
|
|
$$ = f_new_inst();
|
2000-02-25 19:15:26 +08:00
|
|
|
$$->code = P('S','W');
|
1999-09-29 22:24:58 +08:00
|
|
|
$$->a1.p = $2;
|
1999-10-29 05:03:36 +08:00
|
|
|
$$->a2.p = build_tree( $4 );
|
1999-09-29 22:24:58 +08:00
|
|
|
}
|
1999-01-16 00:49:17 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
CF_END
|