Skip to content

Commit

Permalink
Conf: Fixed symbol redefinition
Browse files Browse the repository at this point in the history
  • Loading branch information
marenamat committed Jul 30, 2019
1 parent 48addc8 commit 2de1e20
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 14 deletions.
7 changes: 2 additions & 5 deletions conf/confbase.Y
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,6 @@ CF_DECLS
%type <net> net_ip4_ net_ip6_ net_ip6 net_ip_ net_ip net_or_ipa
%type <net_ptr> net_ net_any net_vpn4_ net_vpn6_ net_vpn_ net_roa4_ net_roa6_ net_roa_ net_ip6_sadr_ net_mpls_
%type <mls> label_stack_start label_stack
%type <s> CF_SYM_VOID

%type <t> text opttext
%type <s> symbol
Expand Down Expand Up @@ -147,7 +146,7 @@ conf: ';' ;
conf: definition ;

definition:
DEFINE CF_SYM_VOID '=' term ';' {
DEFINE symbol '=' term ';' {
struct f_val *val = cfg_alloc(sizeof(struct f_val));
if (f_eval(f_linearize($4), cfg_mem, val) > F_RETURN) cf_error("Runtime error");
cf_define_symbol($2, SYM_CONSTANT | val->type, val, val);
Expand All @@ -168,9 +167,7 @@ expr_us:
| expr US { $$ = $1 US_; }
;

CF_SYM_VOID: CF_SYM_UNDEFINED ;

symbol: CF_SYM_VOID | CF_SYM_KNOWN ;
symbol: CF_SYM_UNDEFINED | CF_SYM_KNOWN ;

/* Switches */

Expand Down
12 changes: 6 additions & 6 deletions filter/config.Y
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ CF_GRAMMAR

conf: filter_def ;
filter_def:
FILTER CF_SYM_VOID { $2 = cf_define_symbol($2, SYM_FILTER, filter, NULL); cf_push_scope( $2 ); }
FILTER symbol { $2 = cf_define_symbol($2, SYM_FILTER, filter, NULL); cf_push_scope( $2 ); }
filter_body {
struct filter *f = cfg_alloc(sizeof(struct filter));
*f = (struct filter) { .sym = $2, .root = $4 };
Expand All @@ -483,7 +483,7 @@ filter_eval:
;

conf: custom_attr ;
custom_attr: ATTRIBUTE type CF_SYM_VOID ';' {
custom_attr: ATTRIBUTE type symbol ';' {
cf_define_symbol($3, SYM_ATTRIBUTE, attribute, ca_lookup(new_config->pool, $3->name, $2)->fda);
};

Expand Down Expand Up @@ -555,23 +555,23 @@ type:

function_argsn:
/* EMPTY */
| function_argsn type CF_SYM_VOID ';' {
| function_argsn type symbol ';' {
if ($3->scope->slots >= 0xfe) cf_error("Too many declarations, at most 255 allowed");
cf_define_symbol($3, SYM_VARIABLE | $2, offset, $3->scope->slots++);
}
;

function_args:
'(' ')' { $$ = 0; }
| '(' function_argsn type CF_SYM_VOID ')' {
| '(' function_argsn type symbol ')' {
cf_define_symbol($4, SYM_VARIABLE | $3, offset, $4->scope->slots++);
$$ = $4->scope->slots;
}
;

function_vars:
/* EMPTY */ { $$ = 0; }
| function_vars type CF_SYM_VOID ';' {
| function_vars type symbol ';' {
cf_define_symbol($3, SYM_VARIABLE | $2, offset, $3->scope->slots++);
$$ = $1 + 1;
}
Expand Down Expand Up @@ -607,7 +607,7 @@ function_body:

conf: function_def ;
function_def:
FUNCTION CF_SYM_VOID { DBG( "Beginning of function %s\n", $2->name );
FUNCTION symbol { DBG( "Beginning of function %s\n", $2->name );
$2 = cf_define_symbol($2, SYM_FUNCTION, function, NULL);
cf_push_scope($2);
} function_args function_body {
Expand Down
6 changes: 3 additions & 3 deletions nest/config.Y
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,7 @@ table_sorted:
| SORTED { $$ = 1; }
;

table: net_type TABLE CF_SYM_VOID table_sorted {
table: net_type TABLE symbol table_sorted {
struct rtable_config *cf;
cf = rt_new_table($3, $1);
cf->sorted = $4;
Expand All @@ -180,7 +180,7 @@ proto_name:
s->proto = this_proto;
this_proto->name = s->name;
}
| CF_SYM_VOID {
| symbol {
cf_define_symbol($1, this_proto->class, proto, this_proto);
this_proto->name = $1->name;
}
Expand All @@ -194,7 +194,7 @@ proto_name:

proto_copy_config(this_proto, $2->proto);
}
| CF_SYM_VOID FROM CF_SYM_KNOWN {
| symbol FROM CF_SYM_KNOWN {
if (($3->class != SYM_TEMPLATE) && ($3->class != SYM_PROTO)) cf_error("Template or protocol name expected");

cf_define_symbol($1, this_proto->class, proto, this_proto);
Expand Down

0 comments on commit 2de1e20

Please sign in to comment.