Merge git://git.kernel.org/pub/scm/linux/kernel/git/pablo/nf-next
[linux-2.6-microblaze.git] / net / netfilter / nf_tables_api.c
index 6e548d7..fec814d 100644 (file)
@@ -2295,15 +2295,52 @@ struct nft_rule_dump_ctx {
        char *chain;
 };
 
+static int __nf_tables_dump_rules(struct sk_buff *skb,
+                                 unsigned int *idx,
+                                 struct netlink_callback *cb,
+                                 const struct nft_table *table,
+                                 const struct nft_chain *chain)
+{
+       struct net *net = sock_net(skb->sk);
+       unsigned int s_idx = cb->args[0];
+       const struct nft_rule *rule;
+       int rc = 1;
+
+       list_for_each_entry_rcu(rule, &chain->rules, list) {
+               if (!nft_is_active(net, rule))
+                       goto cont;
+               if (*idx < s_idx)
+                       goto cont;
+               if (*idx > s_idx) {
+                       memset(&cb->args[1], 0,
+                                       sizeof(cb->args) - sizeof(cb->args[0]));
+               }
+               if (nf_tables_fill_rule_info(skb, net, NETLINK_CB(cb->skb).portid,
+                                       cb->nlh->nlmsg_seq,
+                                       NFT_MSG_NEWRULE,
+                                       NLM_F_MULTI | NLM_F_APPEND,
+                                       table->family,
+                                       table, chain, rule) < 0)
+                       goto out_unfinished;
+
+               nl_dump_check_consistent(cb, nlmsg_hdr(skb));
+cont:
+               (*idx)++;
+       }
+       rc = 0;
+out_unfinished:
+       cb->args[0] = *idx;
+       return rc;
+}
+
 static int nf_tables_dump_rules(struct sk_buff *skb,
                                struct netlink_callback *cb)
 {
        const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
        const struct nft_rule_dump_ctx *ctx = cb->data;
-       const struct nft_table *table;
+       struct nft_table *table;
        const struct nft_chain *chain;
-       const struct nft_rule *rule;
-       unsigned int idx = 0, s_idx = cb->args[0];
+       unsigned int idx = 0;
        struct net *net = sock_net(skb->sk);
        int family = nfmsg->nfgen_family;
 
@@ -2317,37 +2354,34 @@ static int nf_tables_dump_rules(struct sk_buff *skb,
                if (ctx && ctx->table && strcmp(ctx->table, table->name) != 0)
                        continue;
 
-               list_for_each_entry_rcu(chain, &table->chains, list) {
-                       if (ctx && ctx->chain &&
-                           strcmp(ctx->chain, chain->name) != 0)
-                               continue;
+               if (ctx && ctx->chain) {
+                       struct rhlist_head *list, *tmp;
 
-                       list_for_each_entry_rcu(rule, &chain->rules, list) {
-                               if (!nft_is_active(net, rule))
-                                       goto cont;
-                               if (idx < s_idx)
-                                       goto cont;
-                               if (idx > s_idx)
-                                       memset(&cb->args[1], 0,
-                                              sizeof(cb->args) - sizeof(cb->args[0]));
-                               if (nf_tables_fill_rule_info(skb, net, NETLINK_CB(cb->skb).portid,
-                                                             cb->nlh->nlmsg_seq,
-                                                             NFT_MSG_NEWRULE,
-                                                             NLM_F_MULTI | NLM_F_APPEND,
-                                                             table->family,
-                                                             table, chain, rule) < 0)
-                                       goto done;
-
-                               nl_dump_check_consistent(cb, nlmsg_hdr(skb));
-cont:
-                               idx++;
+                       list = rhltable_lookup(&table->chains_ht, ctx->chain,
+                                              nft_chain_ht_params);
+                       if (!list)
+                               goto done;
+
+                       rhl_for_each_entry_rcu(chain, tmp, list, rhlhead) {
+                               if (!nft_is_active(net, chain))
+                                       continue;
+                               __nf_tables_dump_rules(skb, &idx,
+                                                      cb, table, chain);
+                               break;
                        }
+                       goto done;
                }
+
+               list_for_each_entry_rcu(chain, &table->chains, list) {
+                       if (__nf_tables_dump_rules(skb, &idx, cb, table, chain))
+                               goto done;
+               }
+
+               if (ctx && ctx->table)
+                       break;
        }
 done:
        rcu_read_unlock();
-
-       cb->args[0] = idx;
        return skb->len;
 }