From d36d838df5f726e1f6845fe0e6e5c188426ac00d Mon Sep 17 00:00:00 2001 From: Pavel Machek Date: Wed, 17 Mar 1999 10:19:07 +0000 Subject: accept & reject should now work --- filter/config.Y | 26 +++++++++++++++--- filter/f-util.c | 85 +++++++++++++++++++++++++++++++++++++-------------------- filter/filter.h | 9 ++++-- 3 files changed, 85 insertions(+), 35 deletions(-) diff --git a/filter/config.Y b/filter/config.Y index 103acd8..3577b19 100644 --- a/filter/config.Y +++ b/filter/config.Y @@ -19,7 +19,8 @@ CF_HDR CF_DECLS -CF_KEYWORDS(FUNCTION, FILTER, PRINTDEBUG, INT, PRINT, CONST, VAR, PUTS, DIE, IF) +CF_KEYWORDS(FUNCTION, FILTER, PRINTDEBUG, INT, PRINT, CONST, VAR, PUTS, IF, + ACCEPT, REJECT, ERROR, QUITBIRD) %type term %type block @@ -30,11 +31,12 @@ CF_GRAMMAR CF_ADDTO(conf, function) function: FUNCTION SYM '(' ')' '{' cmds '}' { - extern struct f_inst *last_func; + extern struct f_inst *autoexec_func; if ($2->class != SYM_VOID) cf_error("Symbol already defined" ); $2->class = SYM_FUNCTION; $2->def = $6; - last_func = $6; + if (!strcasecmp($2->name, "autoexec")) + autoexec_func = $6; printf("Hmm, we've got one function here\n"); } ; @@ -150,9 +152,25 @@ term: $$->code = 'd'; $$->arg1 = $3; } - | DIE { + | QUITBIRD { $$ = f_new_inst(); $$->code = '!'; + (int) $$->arg1 = F_QUITBIRD; + } + | ACCEPT { + $$ = f_new_inst(); + $$->code = '!'; + (int) $$->arg1 = F_ACCEPT; + } + | REJECT { + $$ = f_new_inst(); + $$->code = '!'; + (int) $$->arg1 = F_REJECT; + } + | ERROR { + $$ = f_new_inst(); + $$->code = '!'; + (int) $$->arg1 = F_ERROR; } | PRINTDEBUG { $$ = f_new_inst(); diff --git a/filter/f-util.c b/filter/f-util.c index ba74804..47c9144 100644 --- a/filter/f-util.c +++ b/filter/f-util.c @@ -10,6 +10,7 @@ #include #include #include +#include #include "nest/bird.h" #include "lib/lists.h" @@ -21,9 +22,23 @@ #include "conf/conf.h" #include "filter/filter.h" -struct f_inst *last_func = NULL; +struct f_inst *autoexec_func = NULL; -#define runtime die +#define runtime(x) do { \ + log( L_ERR, x ); \ + res.type = T_RETURN; \ + res.val.i = F_ERROR; \ + return res; \ + } while(0) + +#define ARG(x,y) \ + x = interpret(what->y); \ + if (x.type == T_RETURN) \ + return x; + +#define ONEARG ARG(v1, arg1) +#define TWOARGS ARG(v1, arg1) \ + ARG(v2, arg2) static struct f_val interpret(struct f_inst *what) @@ -37,12 +52,10 @@ interpret(struct f_inst *what) switch(what->code) { case ',': - interpret(what->arg1); - interpret(what->arg2); + TWOARGS; break; case '+': - v1 = interpret(what->arg1); - v2 = interpret(what->arg2); + TWOARGS; if (v1.type != v2.type) runtime( "Can not operate with values of incompatible types" ); @@ -53,14 +66,14 @@ interpret(struct f_inst *what) } break; case '=': - v1 = interpret(what->arg2); + ARG(v2, arg2); sym = what->arg1; - switch (res.type = v1.type) { + switch (res.type = v2.type) { case T_VOID: runtime( "Can not assign void values" ); case T_INT: if (sym->class != SYM_VARIABLE_INT) runtime( "Variable of bad type" ); - sym->aux = v1.val.i; + sym->aux = v2.val.i; break; } break; @@ -73,7 +86,7 @@ interpret(struct f_inst *what) res.val.i = * ((int *) what->arg1); break; case 'p': - v1 = interpret(what->arg1); + ONEARG; printf( "Printing: " ); switch (v1.type) { case T_VOID: printf( "(void)" ); break; @@ -83,11 +96,12 @@ interpret(struct f_inst *what) printf( "\n" ); break; case '?': - v1 = interpret(what->arg1); + ONEARG; if (v1.type != T_INT) runtime( "If requires integer expression" ); - if (v1.val.i) - res = interpret(what->arg2); + if (v1.val.i) { + ARG(res,arg2); + } break; case 'D': printf( "DEBUGGING PRINT\n" ); @@ -96,28 +110,31 @@ interpret(struct f_inst *what) printf( "No operation\n" ); break; case 'd': - printf( "Puts: %s\n", what->arg1 ); + printf( "Puts: %s\n", (char *) what->arg1 ); break; case '!': - die( "Filter asked me to die" ); + switch ((int) what->arg1) { + case F_QUITBIRD: + die( "Filter asked me to die" ); + case F_ACCEPT: + /* Should take care about turning ACCEPT into MODIFY */ + case F_ERROR: + case F_REJECT: + res.type = T_RETURN; + res.val = (int) what->arg1; + break; + default: + bug( "unknown return type: can not happen"); + } + break; default: - die( "Unknown insruction %d(%c)", what->code, what->code & 0xff); + bug( "Unknown instruction %d (%c)", what->code, what->code & 0xff); } if (what->next) return interpret(what->next); return res; } -void -filters_postconfig(void) -{ - if (!last_func) - printf( "No function defined\n" ); - else { - interpret(last_func); - } -} - struct f_inst * f_new_inst(void) { @@ -132,10 +149,20 @@ int f_run(struct symbol *filter, struct rte *rtein, struct rte **rteout) { struct f_inst *inst; + struct f_val res; debug( "Running filter `%s'...", filter->name ); inst = filter->def; - interpret(inst); - debug( "done\n" ); - return F_ACCEPT; + res = interpret(inst); + if (res.type != T_RETURN) + return F_ERROR; + debug( "done (%d)\n", res.val.i ); + return res.val.i; } + +void +filters_postconfig(void) +{ + if (autoexec_func) + interpret(autoexec_func); +} diff --git a/filter/filter.h b/filter/filter.h index e0f4723..8ea6b94 100644 --- a/filter/filter.h +++ b/filter/filter.h @@ -30,9 +30,14 @@ struct f_inst *f_new_inst(void); #define F_ACCEPT 1 #define F_REJECT 2 #define F_MODIFY 3 +#define F_ERROR 4 +#define F_QUITBIRD 5 #define T_VOID 0 -#define T_INT 1 -#define T_PX 2 +#define T_RETURN 1 +#define T_INT 10 +#define T_PX 11 /* prefix */ +#define T_INTLIST 12 + #endif -- cgit v1.2.3