]> git.ipfire.org Git - thirdparty/nftables.git/commitdiff
rule: rework list chain
authorPablo Neira Ayuso <pablo@netfilter.org>
Wed, 30 Sep 2015 15:25:43 +0000 (17:25 +0200)
committerPablo Neira Ayuso <pablo@netfilter.org>
Mon, 12 Oct 2015 18:34:22 +0000 (20:34 +0200)
After this patch:

 # nft list chain inet filter forward
 table inet filter {
        chain forward {
                type filter hook forward priority 0; policy drop;
                ct state established,related counter packets 39546074 bytes 11566126287 accept
        }
 }

Before this patch, this was showing the full table definition, including
all chains, which is not what the user is asking for.

Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Acked-by: Arturo Borrero Gonzalez <arturo.borrero.glez@gmail.com>
src/rule.c

index 6c159cae6a5b51cab3721890fb3051498cdf8c6a..0a814693691d4805dd1355969ed60ef510d5b59c 100644 (file)
@@ -1063,6 +1063,26 @@ static void table_print_declaration(struct table *table)
                table->handle.table);
 }
 
+static int do_list_chain(struct netlink_ctx *ctx, struct cmd *cmd,
+                        struct table *table)
+{
+       struct chain *chain;
+
+       table_print_declaration(table);
+
+       list_for_each_entry(chain, &table->chains, list) {
+               if (chain->handle.family != cmd->handle.family ||
+                   strcmp(cmd->handle.chain, chain->handle.chain) != 0)
+                       continue;
+
+               chain_print(chain);
+       }
+
+       printf("}\n");
+
+       return 0;
+}
+
 static int do_list_chains(struct netlink_ctx *ctx, struct cmd *cmd)
 {
        struct table *table;
@@ -1114,7 +1134,7 @@ static int do_command_list(struct netlink_ctx *ctx, struct cmd *cmd)
                        return do_list_tables(ctx, cmd);
                return do_list_table(ctx, cmd, table);
        case CMD_OBJ_CHAIN:
-               return do_list_table(ctx, cmd, table);
+               return do_list_chain(ctx, cmd, table);
        case CMD_OBJ_CHAINS:
                return do_list_chains(ctx, cmd);
        case CMD_OBJ_SETS: