summaryrefslogtreecommitdiffstats
path: root/filter/config.Y
blob: 6d51dc746cd1f1db8e9af9a2dba98d8191cf6bb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
/*
 *	BIRD - filters
 *
 *	Copyright 1998 Pavel Machek
 *
 *	Can be freely distributed and used under the terms of the GNU GPL.
 */

CF_HDR

#include "nest/bird.h"
#include "lib/resource.h"
#include "lib/socket.h"
#include "lib/timer.h"
#include "nest/protocol.h"
#include "nest/iface.h"
#include "nest/route.h"

CF_DECLS

CF_KEYWORDS(FUNCTION, FILTER, PRINTDEBUG, INT, PRINT, CONST, VAR, PUTS, IF, 
	ACCEPT, REJECT, ERROR, QUITBIRD)

%type <x> term
%type <x> block
%type <x> cmds
%type <f> filter filter_body

CF_GRAMMAR

CF_ADDTO(conf, function)
function:
   FUNCTION SYM '(' ')' '{' cmds '}' { 
     extern struct f_inst *autoexec_func;
     if ($2->class != SYM_VOID) cf_error("Symbol already defined" );
     $2->class = SYM_FUNCTION;
     $2->def = $6;
     if (!strcasecmp($2->name, "autoexec"))
	autoexec_func = $6;
     printf("Hmm, we've got one function here\n"); 
   }
 ;

CF_ADDTO(conf, filter_def)
filter_def:
   FILTER SYM filter_body {
     if ($2->class != SYM_VOID) cf_error("Symbol already defined" );
     $2->class = SYM_FILTER;
     $2->def = $3;
     $3->name = $2->name;
     printf( "We have new filter defined (%s)\n", $2->name )
   }
 ;

filter_body:
   '{' cmds '}' {
     struct filter *f = cfg_alloc(sizeof(struct filter));
     f->name = NULL;
     f->root = $2;
     $$ = f;
   }
 ;

filter:
   SYM {
     if ($1->class != SYM_FILTER) cf_error("No such filter");
     $$ = $1->def;
   }
 | filter_body
 ;

/* Programs */

cmds:
   term {
     if ($1) {
       $1->next = NULL;
       $$ = $1;
     } else $$ = NULL;
   }
 | term ';' cmds {
     if ($1) {
       $1->next = $3;
       $$ = $1;
     } else $$ = $3;
   }
 ;

block:
   term ';' {
     $$=$1;
   }
 | '{' cmds '}' {
     $$=$2;
   }
 ;

term:
   /* EMPTY */ { 
     $$ = NULL;
   }
 | term '+' term {
     $$ = f_new_inst();
     $$->code = '+';
     $$->arg1 = $1;
     $$->arg2 = $3;
   }
 | IF '(' term ')' block {
     $$ = f_new_inst();
     $$->code = '?';
     $$->arg1 = $3;
     $$->arg2 = $5;
   }
 | INT SYM {
     if ($2->class != SYM_VOID) cf_error("Symbol already defined, can not use as variable\n" );
     $2->class = SYM_VARIABLE_INT;
     printf( "New variable\n" );
     $$ = NULL;
   }
 | SYM {
     $$ = f_new_inst();
     switch ($1->class) {
       case SYM_VARIABLE_INT:
	 $$->code = 'i';
         $$->arg1 = &($1->aux);
	 break;
       default:
	 cf_error("Can not use this class of symbol as variable" );
     }
   }
 | VAR '(' SYM ')' {
     $$ = f_new_inst();
     switch ($3->class) {
       case SYM_VARIABLE_INT:
	 $$->code = 'i';
         $$->arg1 = &($3->aux);
	 break;
       default:
	 cf_error("Can not use this class of symbol as variable" );
     }
   }
 | NUM {
     $$ = f_new_inst();
     $$->code = 'c';
     $$->arg1 = $1
   }
 | CONST '(' expr ')' {
     $$ = f_new_inst();
     $$->code = 'c';
     $$->arg1 = $3;
   }
 | SYM '=' term {
     $$ = f_new_inst();
     printf( "Ook, we'll set value\n" );
     if ($1->class != SYM_VARIABLE_INT)
       cf_error( "You may only set variables\n" );
     $$->code = '=';
     $$->arg1 = $1;
     $$->arg2 = $3;
   }
 | PRINT '(' term ')' {
     $$ = f_new_inst();
     printf( "Ook, we'll print something\n" );
     $$->code = 'p';
     $$->arg1 = $3;
     $$->arg2 = NULL;
   }
 | PUTS '(' TEXT ')' {
     $$ = f_new_inst();
     $$->code = 'd';
     $$->arg1 = $3;
   }
 | 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();
     $$->code = 'D';
     $$->arg1 = $$->arg2 = NULL;
 }
 ;

CF_END