accept & reject should now work
This commit is contained in:
parent
c1f8dc9149
commit
d36d838df5
3 changed files with 85 additions and 35 deletions
|
@ -19,7 +19,8 @@ CF_HDR
|
||||||
|
|
||||||
CF_DECLS
|
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 <x> term
|
%type <x> term
|
||||||
%type <x> block
|
%type <x> block
|
||||||
|
@ -30,11 +31,12 @@ CF_GRAMMAR
|
||||||
CF_ADDTO(conf, function)
|
CF_ADDTO(conf, function)
|
||||||
function:
|
function:
|
||||||
FUNCTION SYM '(' ')' '{' cmds '}' {
|
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" );
|
if ($2->class != SYM_VOID) cf_error("Symbol already defined" );
|
||||||
$2->class = SYM_FUNCTION;
|
$2->class = SYM_FUNCTION;
|
||||||
$2->def = $6;
|
$2->def = $6;
|
||||||
last_func = $6;
|
if (!strcasecmp($2->name, "autoexec"))
|
||||||
|
autoexec_func = $6;
|
||||||
printf("Hmm, we've got one function here\n");
|
printf("Hmm, we've got one function here\n");
|
||||||
}
|
}
|
||||||
;
|
;
|
||||||
|
@ -150,9 +152,25 @@ term:
|
||||||
$$->code = 'd';
|
$$->code = 'd';
|
||||||
$$->arg1 = $3;
|
$$->arg1 = $3;
|
||||||
}
|
}
|
||||||
| DIE {
|
| QUITBIRD {
|
||||||
$$ = f_new_inst();
|
$$ = f_new_inst();
|
||||||
$$->code = '!';
|
$$->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 {
|
| PRINTDEBUG {
|
||||||
$$ = f_new_inst();
|
$$ = f_new_inst();
|
||||||
|
|
|
@ -10,6 +10,7 @@
|
||||||
#include <fcntl.h>
|
#include <fcntl.h>
|
||||||
#include <unistd.h>
|
#include <unistd.h>
|
||||||
#include <sys/signal.h>
|
#include <sys/signal.h>
|
||||||
|
#include <setjmp.h>
|
||||||
|
|
||||||
#include "nest/bird.h"
|
#include "nest/bird.h"
|
||||||
#include "lib/lists.h"
|
#include "lib/lists.h"
|
||||||
|
@ -21,9 +22,23 @@
|
||||||
#include "conf/conf.h"
|
#include "conf/conf.h"
|
||||||
#include "filter/filter.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
|
static struct f_val
|
||||||
interpret(struct f_inst *what)
|
interpret(struct f_inst *what)
|
||||||
|
@ -37,12 +52,10 @@ interpret(struct f_inst *what)
|
||||||
|
|
||||||
switch(what->code) {
|
switch(what->code) {
|
||||||
case ',':
|
case ',':
|
||||||
interpret(what->arg1);
|
TWOARGS;
|
||||||
interpret(what->arg2);
|
|
||||||
break;
|
break;
|
||||||
case '+':
|
case '+':
|
||||||
v1 = interpret(what->arg1);
|
TWOARGS;
|
||||||
v2 = interpret(what->arg2);
|
|
||||||
if (v1.type != v2.type)
|
if (v1.type != v2.type)
|
||||||
runtime( "Can not operate with values of incompatible types" );
|
runtime( "Can not operate with values of incompatible types" );
|
||||||
|
|
||||||
|
@ -53,14 +66,14 @@ interpret(struct f_inst *what)
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case '=':
|
case '=':
|
||||||
v1 = interpret(what->arg2);
|
ARG(v2, arg2);
|
||||||
sym = what->arg1;
|
sym = what->arg1;
|
||||||
switch (res.type = v1.type) {
|
switch (res.type = v2.type) {
|
||||||
case T_VOID: runtime( "Can not assign void values" );
|
case T_VOID: runtime( "Can not assign void values" );
|
||||||
case T_INT:
|
case T_INT:
|
||||||
if (sym->class != SYM_VARIABLE_INT)
|
if (sym->class != SYM_VARIABLE_INT)
|
||||||
runtime( "Variable of bad type" );
|
runtime( "Variable of bad type" );
|
||||||
sym->aux = v1.val.i;
|
sym->aux = v2.val.i;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -73,7 +86,7 @@ interpret(struct f_inst *what)
|
||||||
res.val.i = * ((int *) what->arg1);
|
res.val.i = * ((int *) what->arg1);
|
||||||
break;
|
break;
|
||||||
case 'p':
|
case 'p':
|
||||||
v1 = interpret(what->arg1);
|
ONEARG;
|
||||||
printf( "Printing: " );
|
printf( "Printing: " );
|
||||||
switch (v1.type) {
|
switch (v1.type) {
|
||||||
case T_VOID: printf( "(void)" ); break;
|
case T_VOID: printf( "(void)" ); break;
|
||||||
|
@ -83,11 +96,12 @@ interpret(struct f_inst *what)
|
||||||
printf( "\n" );
|
printf( "\n" );
|
||||||
break;
|
break;
|
||||||
case '?':
|
case '?':
|
||||||
v1 = interpret(what->arg1);
|
ONEARG;
|
||||||
if (v1.type != T_INT)
|
if (v1.type != T_INT)
|
||||||
runtime( "If requires integer expression" );
|
runtime( "If requires integer expression" );
|
||||||
if (v1.val.i)
|
if (v1.val.i) {
|
||||||
res = interpret(what->arg2);
|
ARG(res,arg2);
|
||||||
|
}
|
||||||
break;
|
break;
|
||||||
case 'D':
|
case 'D':
|
||||||
printf( "DEBUGGING PRINT\n" );
|
printf( "DEBUGGING PRINT\n" );
|
||||||
|
@ -96,28 +110,31 @@ interpret(struct f_inst *what)
|
||||||
printf( "No operation\n" );
|
printf( "No operation\n" );
|
||||||
break;
|
break;
|
||||||
case 'd':
|
case 'd':
|
||||||
printf( "Puts: %s\n", what->arg1 );
|
printf( "Puts: %s\n", (char *) what->arg1 );
|
||||||
break;
|
break;
|
||||||
case '!':
|
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:
|
default:
|
||||||
die( "Unknown insruction %d(%c)", what->code, what->code & 0xff);
|
bug( "Unknown instruction %d (%c)", what->code, what->code & 0xff);
|
||||||
}
|
}
|
||||||
if (what->next)
|
if (what->next)
|
||||||
return interpret(what->next);
|
return interpret(what->next);
|
||||||
return res;
|
return res;
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
|
||||||
filters_postconfig(void)
|
|
||||||
{
|
|
||||||
if (!last_func)
|
|
||||||
printf( "No function defined\n" );
|
|
||||||
else {
|
|
||||||
interpret(last_func);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
struct f_inst *
|
struct f_inst *
|
||||||
f_new_inst(void)
|
f_new_inst(void)
|
||||||
{
|
{
|
||||||
|
@ -132,10 +149,20 @@ int
|
||||||
f_run(struct symbol *filter, struct rte *rtein, struct rte **rteout)
|
f_run(struct symbol *filter, struct rte *rtein, struct rte **rteout)
|
||||||
{
|
{
|
||||||
struct f_inst *inst;
|
struct f_inst *inst;
|
||||||
|
struct f_val res;
|
||||||
debug( "Running filter `%s'...", filter->name );
|
debug( "Running filter `%s'...", filter->name );
|
||||||
|
|
||||||
inst = filter->def;
|
inst = filter->def;
|
||||||
interpret(inst);
|
res = interpret(inst);
|
||||||
debug( "done\n" );
|
if (res.type != T_RETURN)
|
||||||
return F_ACCEPT;
|
return F_ERROR;
|
||||||
|
debug( "done (%d)\n", res.val.i );
|
||||||
|
return res.val.i;
|
||||||
|
}
|
||||||
|
|
||||||
|
void
|
||||||
|
filters_postconfig(void)
|
||||||
|
{
|
||||||
|
if (autoexec_func)
|
||||||
|
interpret(autoexec_func);
|
||||||
}
|
}
|
||||||
|
|
|
@ -30,9 +30,14 @@ struct f_inst *f_new_inst(void);
|
||||||
#define F_ACCEPT 1
|
#define F_ACCEPT 1
|
||||||
#define F_REJECT 2
|
#define F_REJECT 2
|
||||||
#define F_MODIFY 3
|
#define F_MODIFY 3
|
||||||
|
#define F_ERROR 4
|
||||||
|
#define F_QUITBIRD 5
|
||||||
|
|
||||||
#define T_VOID 0
|
#define T_VOID 0
|
||||||
#define T_INT 1
|
#define T_RETURN 1
|
||||||
#define T_PX 2
|
#define T_INT 10
|
||||||
|
#define T_PX 11 /* prefix */
|
||||||
|
#define T_INTLIST 12
|
||||||
|
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in a new issue