From da24c01b6d94820aee7222aa3c75854ef47bf355 Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Thu, 18 Apr 2013 12:28:25 +0200 Subject: rule: allow to list of existing tables You can now specify: nft list tables ip to obtain the list of all existing tables. Signed-off-by: Pablo Neira Ayuso --- src/parser.y | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) (limited to 'src/parser.y') diff --git a/src/parser.y b/src/parser.y index fc724588..87602d9f 100644 --- a/src/parser.y +++ b/src/parser.y @@ -157,6 +157,7 @@ static void location_update(struct location *loc, struct location *rhs, int n) %token HOOK "hook" %token HOOKNUM "hooknum" %token TABLE "table" +%token TABLES "tables" %token CHAIN "chain" %token RULE "rule" %token SETS "sets" @@ -332,8 +333,8 @@ static void location_update(struct location *loc, struct location *rhs, int n) %type base_cmd add_cmd insert_cmd delete_cmd list_cmd flush_cmd rename_cmd %destructor { cmd_free($$); } base_cmd add_cmd insert_cmd delete_cmd list_cmd flush_cmd rename_cmd -%type table_spec chain_spec chain_identifier ruleid_spec -%destructor { handle_free(&$$); } table_spec chain_spec chain_identifier ruleid_spec +%type table_spec tables_spec chain_spec chain_identifier ruleid_spec +%destructor { handle_free(&$$); } table_spec tables_spec chain_spec chain_identifier ruleid_spec %type set_spec set_identifier %destructor { handle_free(&$$); } set_spec set_identifier %type handle_spec family_spec @@ -602,6 +603,10 @@ delete_cmd : TABLE table_spec ; list_cmd : TABLE table_spec + { + $$ = cmd_alloc(CMD_LIST, CMD_OBJ_TABLE, &$2, NULL); + } + | TABLES tables_spec { $$ = cmd_alloc(CMD_LIST, CMD_OBJ_TABLE, &$2, NULL); } @@ -789,6 +794,14 @@ table_spec : family_spec identifier } ; +tables_spec : family_spec + { + memset(&$$, 0, sizeof($$)); + $$.family = $1; + $$.table = NULL; + } + ; + chain_spec : table_spec identifier { $$ = $1; -- cgit v1.2.3