1999-01-15 16:49:17 +00:00
|
|
|
/*
|
|
|
|
* Filters: utility functions
|
|
|
|
*
|
|
|
|
* Copyright 1998 Pavel Machek <pavel@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/signal.h>
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "lib/lists.h"
|
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "nest/route.h"
|
|
|
|
#include "nest/protocol.h"
|
|
|
|
#include "nest/iface.h"
|
|
|
|
#include "conf/conf.h"
|
|
|
|
#include "filter/filter.h"
|
|
|
|
|
1999-03-08 20:30:06 +00:00
|
|
|
struct f_inst *last_func = NULL;
|
1999-01-15 16:49:17 +00:00
|
|
|
|
1999-03-08 20:30:06 +00:00
|
|
|
#define runtime die
|
|
|
|
|
|
|
|
static struct f_val
|
|
|
|
interpret(struct f_inst *what)
|
1999-01-15 16:49:17 +00:00
|
|
|
{
|
|
|
|
struct symbol *sym;
|
1999-03-08 20:30:06 +00:00
|
|
|
struct f_val v1, v2, res;
|
|
|
|
|
|
|
|
res.type = T_VOID;
|
1999-01-15 16:49:17 +00:00
|
|
|
if (!what)
|
1999-03-08 20:30:06 +00:00
|
|
|
return res;
|
|
|
|
|
1999-01-15 16:49:17 +00:00
|
|
|
switch(what->code) {
|
|
|
|
case ',':
|
|
|
|
interpret(what->arg1);
|
|
|
|
interpret(what->arg2);
|
|
|
|
break;
|
1999-03-08 20:30:06 +00:00
|
|
|
case '+':
|
|
|
|
v1 = interpret(what->arg1);
|
|
|
|
v2 = interpret(what->arg2);
|
|
|
|
if (v1.type != v2.type)
|
|
|
|
runtime( "Can not operate with values of incompatible types" );
|
|
|
|
|
|
|
|
switch (res.type = v1.type) {
|
|
|
|
case T_VOID: runtime( "Can not operate with values of type void" );
|
|
|
|
case T_INT: res.val.i = v1.val.i + v2.val.i; break;
|
|
|
|
default: runtime( "Usage of unknown type" );
|
|
|
|
}
|
|
|
|
break;
|
1999-01-15 16:49:17 +00:00
|
|
|
case '=':
|
1999-03-08 20:30:06 +00:00
|
|
|
v1 = interpret(what->arg2);
|
1999-01-15 16:49:17 +00:00
|
|
|
sym = what->arg1;
|
1999-03-08 20:30:06 +00:00
|
|
|
switch (res.type = v1.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;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 'c':
|
|
|
|
res.type = T_INT;
|
|
|
|
res.val.i = (int) what->arg1;
|
|
|
|
break;
|
|
|
|
case 'i':
|
|
|
|
res.type = T_INT;
|
|
|
|
res.val.i = * ((int *) what->arg1);
|
1999-01-15 16:49:17 +00:00
|
|
|
break;
|
|
|
|
case 'p':
|
1999-03-08 20:30:06 +00:00
|
|
|
v1 = interpret(what->arg1);
|
|
|
|
printf( "Printing: " );
|
|
|
|
switch (v1.type) {
|
|
|
|
case T_VOID: printf( "(void)" ); break;
|
|
|
|
case T_INT: printf( "%d", v1.val.i ); break;
|
|
|
|
default: runtime( "Print of variable of unknown type" );
|
1999-01-15 16:49:17 +00:00
|
|
|
}
|
1999-03-08 20:30:06 +00:00
|
|
|
printf( "\n" );
|
|
|
|
break;
|
|
|
|
case '?':
|
|
|
|
v1 = interpret(what->arg1);
|
|
|
|
if (v1.type != T_INT)
|
|
|
|
runtime( "If requires integer expression" );
|
|
|
|
if (v1.val.i)
|
|
|
|
res = interpret(what->arg2);
|
1999-01-15 16:49:17 +00:00
|
|
|
break;
|
|
|
|
case 'D':
|
|
|
|
printf( "DEBUGGING PRINT\n" );
|
|
|
|
break;
|
1999-03-02 19:49:28 +00:00
|
|
|
case '0':
|
|
|
|
printf( "No operation\n" );
|
|
|
|
break;
|
1999-03-08 20:30:06 +00:00
|
|
|
case 'd':
|
|
|
|
printf( "Puts: %s\n", what->arg1 );
|
|
|
|
break;
|
|
|
|
case '!':
|
|
|
|
die( "Filter asked me to die" );
|
|
|
|
default:
|
|
|
|
die( "Unknown insruction %d(%c)", what->code, what->code & 0xff);
|
1999-01-15 16:49:17 +00:00
|
|
|
}
|
1999-03-08 20:30:06 +00:00
|
|
|
if (what->next)
|
|
|
|
return interpret(what->next);
|
|
|
|
return res;
|
1999-01-15 16:49:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void
|
1999-01-15 18:13:55 +00:00
|
|
|
filters_postconfig(void)
|
1999-01-15 16:49:17 +00:00
|
|
|
{
|
|
|
|
if (!last_func)
|
|
|
|
printf( "No function defined\n" );
|
|
|
|
else {
|
|
|
|
interpret(last_func);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1999-03-08 20:30:06 +00:00
|
|
|
struct f_inst *
|
1999-03-02 19:49:28 +00:00
|
|
|
f_new_inst(void)
|
|
|
|
{
|
1999-03-08 20:30:06 +00:00
|
|
|
struct f_inst * ret;
|
|
|
|
ret = cfg_alloc(sizeof(struct f_inst));
|
1999-03-02 19:49:28 +00:00
|
|
|
ret->code = 0;
|
|
|
|
ret->arg1 = ret->arg2 = ret->next = NULL;
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
int
|
|
|
|
f_run(struct symbol *filter, struct rte *rtein, struct rte **rteout)
|
|
|
|
{
|
1999-03-08 20:30:06 +00:00
|
|
|
struct f_inst *inst;
|
1999-03-02 19:49:28 +00:00
|
|
|
debug( "Running filter `%s'...", filter->name );
|
|
|
|
|
|
|
|
inst = filter->def;
|
|
|
|
interpret(inst);
|
|
|
|
debug( "done\n" );
|
|
|
|
return F_ACCEPT;
|
|
|
|
}
|