1998-11-28 03:36:06 +08:00
|
|
|
/*
|
|
|
|
* BIRD -- Configuration Parser Top
|
|
|
|
*
|
2000-03-01 19:42:13 +08:00
|
|
|
* (c) 1998--2000 Martin Mares <mj@ucw.cz>
|
1998-11-28 03:36:06 +08:00
|
|
|
*
|
|
|
|
* Can be freely distributed and used under the terms of the GNU GPL.
|
|
|
|
*/
|
|
|
|
|
|
|
|
CF_HDR
|
|
|
|
|
2011-03-13 18:33:50 +08:00
|
|
|
#define PARSER 1
|
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
#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"
|
2000-04-01 07:30:21 +08:00
|
|
|
#include "lib/string.h"
|
1998-11-28 05:09:57 +08:00
|
|
|
#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"
|
Parse CLI commands. We use the same parser as for configuration files (because
we want to allow filter and similar complex constructs to be used in commands
and we should avoid code duplication), only with CLI_MARKER token prepended
before the whole input.
Defined macro CF_CLI(cmd, args, help) for defining CLI commands in .Y files.
The first argument specifies the command itself, the remaining two arguments
are copied to the help file (er, will be copied after the help file starts
to exist). This macro automatically creates a skeleton rule for the command,
you only need to append arguments as in:
CF_CLI(STEAL MONEY, <$>, [[Steal <$> US dollars or equivalent in any other currency]]): NUM {
cli_msg(0, "%d$ stolen", $3);
} ;
Also don't forget to reset lexer state between inputs.
1999-11-01 01:47:47 +08:00
|
|
|
#include "nest/cli.h"
|
1999-01-16 00:49:17 +08:00
|
|
|
#include "filter/filter.h"
|
1998-11-28 03:36:06 +08:00
|
|
|
|
1999-12-02 22:03:25 +08:00
|
|
|
/* FIXME: Turn on YYERROR_VERBOSE and work around lots of bison bugs? */
|
|
|
|
|
2011-05-07 04:00:54 +08:00
|
|
|
CF_DEFINES
|
|
|
|
|
|
|
|
static void
|
|
|
|
check_u16(unsigned val)
|
|
|
|
{
|
|
|
|
if (val > 0xFFFF)
|
|
|
|
cf_error("Value %d out of range (0-65535)", val);
|
|
|
|
}
|
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
CF_DECLS
|
|
|
|
|
|
|
|
%union {
|
|
|
|
int i;
|
1999-08-04 03:36:06 +08:00
|
|
|
u32 i32;
|
1998-11-28 03:36:06 +08:00
|
|
|
ip_addr a;
|
|
|
|
struct symbol *s;
|
|
|
|
char *t;
|
1999-05-18 04:14:52 +08:00
|
|
|
struct rtable_config *r;
|
1999-03-17 22:29:39 +08:00
|
|
|
struct f_inst *x;
|
|
|
|
struct filter *f;
|
1999-04-13 03:58:18 +08:00
|
|
|
struct f_tree *e;
|
2009-03-31 18:55:57 +08:00
|
|
|
struct f_trie *trie;
|
1999-04-13 03:58:18 +08:00
|
|
|
struct f_val v;
|
2000-04-12 21:07:53 +08:00
|
|
|
struct f_path_mask *h;
|
1999-05-26 22:24:32 +08:00
|
|
|
struct password_item *p;
|
1999-12-01 23:10:21 +08:00
|
|
|
struct rt_show_data *ra;
|
2012-03-19 00:32:30 +08:00
|
|
|
struct roa_show_data *ro;
|
2012-03-16 19:47:12 +08:00
|
|
|
struct sym_show_data *sd;
|
2012-03-16 19:12:26 +08:00
|
|
|
struct lsadb_show_data *ld;
|
2012-01-01 19:02:20 +08:00
|
|
|
struct iface *iface;
|
2012-03-19 00:32:30 +08:00
|
|
|
struct roa_table *rot;
|
1999-12-06 21:50:50 +08:00
|
|
|
void *g;
|
2000-03-01 19:42:13 +08:00
|
|
|
bird_clock_t time;
|
2000-05-13 19:17:49 +08:00
|
|
|
struct prefix px;
|
2010-02-20 07:03:31 +08:00
|
|
|
struct proto_spec ps;
|
2010-02-03 07:19:24 +08:00
|
|
|
struct timeformat *tf;
|
1998-11-28 03:36:06 +08:00
|
|
|
}
|
|
|
|
|
2011-05-07 04:00:54 +08:00
|
|
|
%token END CLI_MARKER INVALID_TOKEN ELSECOL DDOT
|
2000-06-01 16:43:29 +08:00
|
|
|
%token GEQ LEQ NEQ AND OR
|
2009-03-14 19:43:10 +08:00
|
|
|
%token PO PC
|
1999-11-15 19:35:41 +08:00
|
|
|
%token <i> NUM ENUM
|
1999-08-04 03:36:06 +08:00
|
|
|
%token <i32> RTRID
|
1998-11-28 03:36:06 +08:00
|
|
|
%token <a> IPA
|
|
|
|
%token <s> SYM
|
|
|
|
%token <t> TEXT
|
2012-01-01 19:02:20 +08:00
|
|
|
%type <iface> ipa_scope
|
1998-11-28 03:36:06 +08:00
|
|
|
|
2015-02-22 20:50:58 +08:00
|
|
|
%type <i> expr bool pxlen
|
2013-09-17 05:57:40 +08:00
|
|
|
%type <i32> expr_us
|
2000-03-01 19:42:13 +08:00
|
|
|
%type <time> datetime
|
2000-05-15 19:48:23 +08:00
|
|
|
%type <a> ipa
|
2000-05-13 19:41:26 +08:00
|
|
|
%type <px> prefix prefix_or_ipa
|
2014-05-30 05:05:03 +08:00
|
|
|
%type <t> text
|
2009-05-30 04:49:30 +08:00
|
|
|
%type <t> text_or_none
|
1998-11-28 05:32:45 +08:00
|
|
|
|
2000-05-16 22:24:33 +08:00
|
|
|
%nonassoc PREFIX_DUMMY
|
2010-01-28 06:45:36 +08:00
|
|
|
%left AND OR
|
2016-09-20 21:13:01 +08:00
|
|
|
%nonassoc '=' '<' '>' '~' GEQ LEQ NEQ NMA PO PC
|
2010-01-28 06:45:36 +08:00
|
|
|
%left '+' '-'
|
1998-11-28 05:32:45 +08:00
|
|
|
%left '*' '/' '%'
|
1999-04-07 20:11:08 +08:00
|
|
|
%left '!'
|
2010-10-08 20:25:53 +08:00
|
|
|
%nonassoc '.'
|
1998-11-28 05:32:45 +08:00
|
|
|
|
2014-10-02 17:33:55 +08:00
|
|
|
CF_KEYWORDS(DEFINE, ON, OFF, YES, NO, S, MS, US, PORT)
|
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 */
|
|
|
|
|
Parse CLI commands. We use the same parser as for configuration files (because
we want to allow filter and similar complex constructs to be used in commands
and we should avoid code duplication), only with CLI_MARKER token prepended
before the whole input.
Defined macro CF_CLI(cmd, args, help) for defining CLI commands in .Y files.
The first argument specifies the command itself, the remaining two arguments
are copied to the help file (er, will be copied after the help file starts
to exist). This macro automatically creates a skeleton rule for the command,
you only need to append arguments as in:
CF_CLI(STEAL MONEY, <$>, [[Steal <$> US dollars or equivalent in any other currency]]): NUM {
cli_msg(0, "%d$ stolen", $3);
} ;
Also don't forget to reset lexer state between inputs.
1999-11-01 01:47:47 +08:00
|
|
|
config: conf_entries END { return 0; }
|
1999-11-17 20:00:21 +08:00
|
|
|
| CLI_MARKER cli_cmd { return 0; }
|
1998-11-28 03:36:06 +08:00
|
|
|
;
|
|
|
|
|
|
|
|
conf_entries:
|
|
|
|
/* EMPTY */
|
1999-03-30 03:04:14 +08:00
|
|
|
| conf_entries conf
|
1998-11-28 03:36:06 +08:00
|
|
|
;
|
|
|
|
|
1999-03-30 03:04:14 +08:00
|
|
|
CF_ADDTO(conf, ';')
|
1998-11-28 03:36:06 +08:00
|
|
|
|
2013-07-26 04:33:57 +08:00
|
|
|
|
1999-01-15 22:41:51 +08:00
|
|
|
/* Constant expressions */
|
1998-11-28 05:32:45 +08:00
|
|
|
|
2013-07-26 04:33:57 +08:00
|
|
|
CF_ADDTO(conf, definition)
|
|
|
|
definition:
|
|
|
|
DEFINE SYM '=' term ';' {
|
|
|
|
struct f_val *val = cfg_alloc(sizeof(struct f_val));
|
|
|
|
*val = f_eval($4, cfg_mem);
|
|
|
|
if (val->type == T_RETURN) cf_error("Runtime error");
|
|
|
|
cf_define_symbol($2, SYM_CONSTANT | val->type, val);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
1999-01-16 02:04:28 +08:00
|
|
|
expr:
|
1998-11-28 05:32:45 +08:00
|
|
|
NUM
|
2000-05-15 20:15:18 +08:00
|
|
|
| '(' term ')' { $$ = f_eval_int($2); }
|
2013-07-26 04:33:57 +08:00
|
|
|
| SYM {
|
|
|
|
if ($1->class != (SYM_CONSTANT | T_INT)) cf_error("Number expected");
|
|
|
|
$$ = SYM_VAL($1).i; }
|
1998-11-28 05:32:45 +08:00
|
|
|
;
|
|
|
|
|
2013-09-17 05:57:40 +08:00
|
|
|
|
|
|
|
expr_us:
|
2013-10-06 02:12:28 +08:00
|
|
|
expr S { $$ = (u32) $1 * 1000000; }
|
|
|
|
| expr MS { $$ = (u32) $1 * 1000; }
|
|
|
|
| expr US { $$ = (u32) $1 * 1; }
|
2013-09-17 05:57:40 +08:00
|
|
|
;
|
|
|
|
|
2011-05-07 04:00:54 +08:00
|
|
|
/* expr_u16: expr { check_u16($1); $$ = $1; }; */
|
|
|
|
|
1998-12-07 01:38:42 +08:00
|
|
|
/* Switches */
|
|
|
|
|
|
|
|
bool:
|
2016-11-09 00:46:29 +08:00
|
|
|
expr { $$ = !!$1; }
|
1998-12-07 01:38:42 +08:00
|
|
|
| ON { $$ = 1; }
|
|
|
|
| YES { $$ = 1; }
|
|
|
|
| OFF { $$ = 0; }
|
|
|
|
| NO { $$ = 0; }
|
|
|
|
| /* Silence means agreement */ { $$ = 1; }
|
|
|
|
;
|
|
|
|
|
2000-05-15 19:48:23 +08:00
|
|
|
/* Addresses, prefixes and netmasks */
|
|
|
|
|
|
|
|
ipa:
|
|
|
|
IPA
|
|
|
|
| SYM {
|
2013-07-26 04:33:57 +08:00
|
|
|
if ($1->class != (SYM_CONSTANT | T_IP)) cf_error("IP address expected");
|
|
|
|
$$ = SYM_VAL($1).px.ip;
|
2000-05-15 19:48:23 +08:00
|
|
|
}
|
|
|
|
;
|
1998-12-07 07:10:45 +08:00
|
|
|
|
2012-01-01 19:02:20 +08:00
|
|
|
ipa_scope:
|
|
|
|
/* empty */ { $$ = NULL; }
|
|
|
|
| '%' SYM { $$ = if_get_by_name($2->name); }
|
|
|
|
;
|
|
|
|
|
2000-05-13 19:17:49 +08:00
|
|
|
prefix:
|
2000-05-15 19:48:23 +08:00
|
|
|
ipa pxlen {
|
2000-05-13 19:17:49 +08:00
|
|
|
if (!ip_is_prefix($1, $2)) cf_error("Invalid prefix");
|
|
|
|
$$.addr = $1; $$.len = $2;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2000-05-13 19:41:26 +08:00
|
|
|
prefix_or_ipa:
|
|
|
|
prefix
|
2000-05-15 19:48:23 +08:00
|
|
|
| ipa { $$.addr = $1; $$.len = BITS_PER_IP_ADDRESS; }
|
2000-05-13 19:41:26 +08:00
|
|
|
;
|
|
|
|
|
1998-12-07 07:10:45 +08:00
|
|
|
pxlen:
|
2000-05-15 19:48:23 +08:00
|
|
|
'/' expr {
|
2000-05-05 04:02:19 +08:00
|
|
|
if ($2 < 0 || $2 > BITS_PER_IP_ADDRESS) cf_error("Invalid prefix length %d", $2);
|
1998-12-07 07:10:45 +08:00
|
|
|
$$ = $2;
|
|
|
|
}
|
2000-05-15 19:48:23 +08:00
|
|
|
| ':' ipa {
|
2014-10-24 17:11:43 +08:00
|
|
|
$$ = ipa_masklen($2);
|
1998-12-07 07:10:45 +08:00
|
|
|
if ($$ < 0) cf_error("Invalid netmask %I", $2);
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2000-03-05 05:27:57 +08:00
|
|
|
datetime:
|
2000-03-01 19:42:13 +08:00
|
|
|
TEXT {
|
2005-02-13 06:27:55 +08:00
|
|
|
$$ = tm_parse_datetime($1);
|
2000-03-01 19:42:13 +08:00
|
|
|
if (!$$)
|
2005-02-13 06:27:55 +08:00
|
|
|
cf_error("Invalid date and time");
|
2000-03-01 19:42:13 +08:00
|
|
|
}
|
1999-05-26 22:24:32 +08:00
|
|
|
;
|
|
|
|
|
2014-05-30 05:05:03 +08:00
|
|
|
text:
|
|
|
|
TEXT
|
|
|
|
| SYM {
|
|
|
|
if ($1->class != (SYM_CONSTANT | T_STRING)) cf_error("String expected");
|
|
|
|
$$ = SYM_VAL($1).s;
|
|
|
|
}
|
|
|
|
;
|
|
|
|
|
2009-05-30 04:49:30 +08:00
|
|
|
text_or_none:
|
|
|
|
TEXT { $$ = $1; }
|
|
|
|
| { $$ = NULL; }
|
|
|
|
;
|
|
|
|
|
1998-11-28 03:36:06 +08:00
|
|
|
CF_CODE
|
|
|
|
|
|
|
|
CF_END
|