1998-11-28 03:36:06 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Configuration Parser Top
|
|
|
|
*
|
|
|
|
* (c) 1998 Martin Mares <mj@ucw.cz>
|
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
|
|
|
#include "nest/bird.h"
|
|
|
|
#include "conf/conf.h"
|
1998-11-28 05:09:57 +08:00
|
|
|
#include "lib/resource.h"
|
|
|
|
#include "lib/socket.h"
|
|
|
|
#include "lib/timer.h"
|
|
|
|
#include "nest/protocol.h"
|
1998-11-30 06:03:58 +08:00
|
|
|
#include "nest/iface.h"
|
1998-12-07 01:38:42 +08:00
|
|
|
#include "nest/route.h"
|
1998-11-28 03:36:06 +08:00
|
|
|
|
|
|
|
CF_DECLS
|
|
|
|
|
|
|
|
%union {
|
|
|
|
int i;
|
|
|
|
ip_addr a;
|
|
|
|
struct symbol *s;
|
|
|
|
char *t;
|
|
|
|
}
|
|
|
|
|
|
|
|
%token END
|
|
|
|
%token <i> NUM
|
|
|
|
%token <a> IPA
|
|
|
|
%token <s> SYM
|
|
|
|
%token <t> TEXT
|
|
|
|
|
1998-12-07 07:10:45 +08:00
|
|
|
%type <i> expr bool pxlen
|
1998-11-28 05:32:45 +08:00
|
|
|
|
|
|
|
%left '+' '-'
|
|
|
|
%left '*' '/' '%'
|
|
|
|
|
1998-12-07 01:38:42 +08:00
|
|
|
CF_KEYWORDS(DEFINE, ON, OFF, YES, NO)
|
1998-11-28 05:32:45 +08:00
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
CF_GRAMMAR
|
|
|
|
|
1998-11-28 05:32:45 +08:00
|
|
|
/* Basic config file structure */
|
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
config: conf_entries END {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
|
|
|
conf_entries:
|
|
|
|
/* EMPTY */
|
|
|
|
| conf_entries conf ';'
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_ADDTO(conf, /* EMPTY */)
|
|
|
|
|
1998-11-28 05:32:45 +08:00
|
|
|
/* Expressions */
|
|
|
|
|
|
|
|
expr:
|
|
|
|
NUM
|
|
|
|
| expr '+' expr { $$ = $1 + $3; }
|
|
|
|
| expr '-' expr { $$ = $1 - $3; }
|
|
|
|
| expr '*' expr { $$ = $1 * $3; }
|
|
|
|
| expr '/' expr { if ($3) $$ = $1 / $3; else cf_error("Division by zero"); }
|
|
|
|
| expr '%' expr { if ($3) $$ = $1 % $3; else cf_error("Division by zero"); }
|
|
|
|
| '(' expr ')' { $$ = $2; }
|
|
|
|
| SYM { if ($1->class != SYM_NUMBER) cf_error("Number expected"); else $$ = $1->aux; }
|
|
|
|
;
|
|
|
|
|
|
|
|
CF_ADDTO(conf, definition)
|
|
|
|
definition:
|
|
|
|
DEFINE SYM '=' expr {
|
|
|
|
if ($2->class != SYM_VOID) cf_error("Symbol already defined");
|
|
|
|
$2->class = SYM_NUMBER;
|
|
|
|
$2->aux = $4;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1998-12-07 01:38:42 +08:00
|
|
|
/* Switches */
|
|
|
|
|
|
|
|
bool:
|
|
|
|
expr {$$ = !!$1; }
|
|
|
|
| ON { $$ = 1; }
|
|
|
|
| YES { $$ = 1; }
|
|
|
|
| OFF { $$ = 0; }
|
|
|
|
| NO { $$ = 0; }
|
|
|
|
| /* Silence means agreement */ { $$ = 1; }
|
|
|
|
;
|
|
|
|
|
1998-12-07 07:10:45 +08:00
|
|
|
/* Prefixes and netmasks */
|
|
|
|
|
|
|
|
pxlen:
|
|
|
|
'/' NUM {
|
|
|
|
if ($2 < 0 || $2 > 32) cf_error("Invalid prefix length %d", $2);
|
|
|
|
$$ = $2;
|
|
|
|
}
|
|
|
|
| ':' IPA {
|
|
|
|
$$ = ipa_mklen($2);
|
|
|
|
if ($$ < 0) cf_error("Invalid netmask %I", $2);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
CF_CODE
|
|
|
|
|
|
|
|
CF_END
|