summaryrefslogtreecommitdiffstats
path: root/conf
diff options
context:
space:
mode:
authorMartin Mares <mj@ucw.cz>1999-10-31 18:47:47 +0100
committerMartin Mares <mj@ucw.cz>1999-10-31 18:47:47 +0100
commitbc2fb68098faaf09393437a7743285d2af71d102 (patch)
tree94b82b1648296c7a7fdb35063a524a1a7fe90228 /conf
parentb9672a845f7ff7d2441e21746566eacc51f274b7 (diff)
downloadbird-bc2fb68098faaf09393437a7743285d2af71d102.tar
bird-bc2fb68098faaf09393437a7743285d2af71d102.zip
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.
Diffstat (limited to 'conf')
-rw-r--r--conf/cf-lex.l38
-rw-r--r--conf/conf.c17
-rw-r--r--conf/conf.h4
-rw-r--r--conf/confbase.Y10
-rw-r--r--conf/gen_keywords.m46
-rw-r--r--conf/gen_parser.m48
6 files changed, 56 insertions, 27 deletions
diff --git a/conf/cf-lex.l b/conf/cf-lex.l
index 21727a9..258ca7e 100644
--- a/conf/cf-lex.l
+++ b/conf/cf-lex.l
@@ -34,14 +34,12 @@ static struct keyword {
static struct keyword *kw_hash[KW_HASH_SIZE];
static struct symbol **sym_hash;
-static int allow_new_symbols;
int conf_lino;
static int cf_hash(byte *c);
static struct symbol *cf_find_sym(byte *c, unsigned int h0);
-pool *cfg_pool;
linpool *cfg_mem;
int (*cf_read_hook)(byte *buf, unsigned int max);
@@ -54,7 +52,7 @@ int (*cf_read_hook)(byte *buf, unsigned int max);
%option noyywrap
-%x COMMENT CCOMM
+%x COMMENT CCOMM CLI
ALPHA [a-zA-Z_]
DIGIT [0-9]
@@ -121,6 +119,11 @@ WHITE [ \t]
return SYM;
}
+<CLI>! {
+ BEGIN(INITIAL);
+ return CLI_MARKER;
+}
+
[={}:;,()+*/%-<>~\[\]] {
return yytext[0];
}
@@ -174,17 +177,18 @@ static struct symbol *
cf_find_sym(byte *c, unsigned int h0)
{
unsigned int h = h0 & (SYM_HASH_SIZE-1);
- struct symbol *s = sym_hash[h];
+ struct symbol *s;
int l;
- while (s)
- {
- if (!strcmp(s->name, c))
- return s;
- s = s->next;
- }
- if (!allow_new_symbols)
- return NULL;
+ if (!sym_hash)
+ sym_hash = cfg_allocz(SYM_HASH_SIZE * sizeof(struct keyword *));
+ else
+ for(s = sym_hash[h]; s; s=s->next)
+ {
+ if (!strcmp(s->name, c))
+ return s;
+ s = s->next;
+ }
l = strlen(c);
if (l > SYM_MAX_LEN)
cf_error("Symbol too long");
@@ -230,11 +234,15 @@ cf_define_symbol(struct symbol *sym, int type, void *def)
}
void
-cf_lex_init(int flag)
+cf_lex_init(int is_cli)
{
- if (allow_new_symbols = flag)
- sym_hash = cfg_allocz(SYM_HASH_SIZE * sizeof(struct keyword *));
+ sym_hash = NULL;
conf_lino = 1;
+ yyrestart(NULL);
+ if (is_cli)
+ BEGIN(CLI);
+ else
+ BEGIN(INITIAL);
}
void
diff --git a/conf/conf.c b/conf/conf.c
index d9bf9d8..47d4db4 100644
--- a/conf/conf.c
+++ b/conf/conf.c
@@ -39,15 +39,12 @@ config_alloc(byte *name)
int
config_parse(struct config *c)
{
- struct proto_config *p;
-
debug("Parsing configuration file `%s'\n", c->file_name);
new_config = c;
- cfg_pool = c->pool;
cfg_mem = c->mem;
if (setjmp(conf_jmpbuf))
return 0;
- cf_lex_init(1);
+ cf_lex_init(0);
cf_lex_init_tables();
protos_preconfig(c);
rt_preconfig(c);
@@ -61,6 +58,18 @@ config_parse(struct config *c)
return 1;
}
+int
+cli_parse(struct config *c)
+{
+ new_config = c;
+ cfg_mem = c->mem;
+ if (setjmp(conf_jmpbuf))
+ return 0;
+ cf_lex_init(1);
+ cf_parse();
+ return 1;
+}
+
void
config_free(struct config *c)
{
diff --git a/conf/conf.h b/conf/conf.h
index 4f6f030..d62f138 100644
--- a/conf/conf.h
+++ b/conf/conf.h
@@ -30,13 +30,13 @@ extern struct config *config, *new_config;
struct config *config_alloc(byte *name);
int config_parse(struct config *);
+int cli_parse(struct config *);
void config_free(struct config *);
void config_commit(struct config *);
void cf_error(char *msg, ...) NORET;
/* Pools */
-extern pool *cfg_pool;
extern linpool *cfg_mem;
#define cfg_alloc(size) lp_alloc(cfg_mem, size)
@@ -71,7 +71,7 @@ extern int conf_lino;
void cf_lex_init_tables(void);
int cf_lex(void);
-void cf_lex_init(int flag);
+void cf_lex_init(int is_cli);
struct symbol *cf_find_symbol(byte *c);
struct symbol *cf_default_name(char *prefix, int *counter);
void cf_define_symbol(struct symbol *symbol, int type, void *def);
diff --git a/conf/confbase.Y b/conf/confbase.Y
index b266d25..4a94287 100644
--- a/conf/confbase.Y
+++ b/conf/confbase.Y
@@ -16,8 +16,11 @@ CF_HDR
#include "nest/protocol.h"
#include "nest/iface.h"
#include "nest/route.h"
+#include "nest/cli.h"
#include "filter/filter.h"
+#define cli_msg(x...) cli_printf(this_cli, x)
+
CF_DECLS
%union {
@@ -34,7 +37,7 @@ CF_DECLS
struct password_item *p;
}
-%token END
+%token END CLI_MARKER
%token <i> NUM
%token <i32> RTRID
%token <a> IPA
@@ -54,9 +57,8 @@ CF_GRAMMAR
/* Basic config file structure */
-config: conf_entries END {
- return 0;
- }
+config: conf_entries END { return 0; }
+ | CLI_MARKER cli_cmd END { return 0; }
;
conf_entries:
diff --git a/conf/gen_keywords.m4 b/conf/gen_keywords.m4
index 8bbe490..37b882b 100644
--- a/conf/gen_keywords.m4
+++ b/conf/gen_keywords.m4
@@ -2,7 +2,7 @@ m4_divert(-1)m4_dnl
#
# BIRD -- Generator of Configuration Keyword List
#
-# (c) 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+# (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
#
# Can be freely distributed and used under the terms of the GNU GPL.
#
@@ -18,6 +18,10 @@ m4_define(CF_keywd, `m4_ifdef([[CF_tok_$1]],,[[m4_define([[CF_tok_$1]],1)CF_hand
m4_define(CF_KEYWORDS, `m4_define([[CF_toks]],[[]])CF_iterate([[CF_keywd]], [[$@]])m4_ifelse(CF_toks,,,%token[[]]CF_toks
)DNL')
+# CLI commands generate keywords as well
+m4_define(CF_CLI, `CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
+')
+
# As we are processing C source, we must access all M4 primitives via
# m4_* and also set different quoting convention: `[[' and ']]'
m4_changequote([[,]])
diff --git a/conf/gen_parser.m4 b/conf/gen_parser.m4
index a08b330..8441c83 100644
--- a/conf/gen_parser.m4
+++ b/conf/gen_parser.m4
@@ -2,7 +2,7 @@ m4_divert(-1)m4_dnl
#
# BIRD -- Generator of Configuration Grammar
#
-# (c) 1998 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
+# (c) 1998--1999 Martin Mares <mj@atrey.karlin.mff.cuni.cz>
#
# Can be freely distributed and used under the terms of the GNU GPL.
#
@@ -38,6 +38,12 @@ m4_define(CF_dyn_rules,)
m4_define(CF_ADDTO, `m4_define([[CF_rule_$1]],m4_ifdef([[CF_rule_$1]],CF_rule_$1 | ,[[m4_define([[CF_dyn_rules]],CF_dyn_rules[[CF_RULE($1)
]])]])$2)DNL')
+# CLI commands
+m4_define(CF_CLI, `m4_define([[CF_cmd]], cmd_[[]]m4_translit($1, [[ ]], _))DNL
+m4_divert(2)CF_KEYWORDS(m4_translit($1, [[ ]], [[,]]))
+m4_divert(3)CF_ADDTO(cli_cmd, CF_cmd)
+CF_cmd: $1 ')
+
# After all configuration templates end, we finally generate the grammar file.
m4_m4wrap(`
m4_divert(0)DNL