netfilter: nf_tables: add set element timeout support
[linux-block.git] / net / netfilter / nf_tables_api.c
1 /*
2  * Copyright (c) 2007-2009 Patrick McHardy <kaber@trash.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * Development of this code funded by Astaro AG (http://www.astaro.com/)
9  */
10
11 #include <linux/module.h>
12 #include <linux/init.h>
13 #include <linux/list.h>
14 #include <linux/skbuff.h>
15 #include <linux/netlink.h>
16 #include <linux/netfilter.h>
17 #include <linux/netfilter/nfnetlink.h>
18 #include <linux/netfilter/nf_tables.h>
19 #include <net/netfilter/nf_tables_core.h>
20 #include <net/netfilter/nf_tables.h>
21 #include <net/net_namespace.h>
22 #include <net/sock.h>
23
24 static LIST_HEAD(nf_tables_expressions);
25
26 /**
27  *      nft_register_afinfo - register nf_tables address family info
28  *
29  *      @afi: address family info to register
30  *
31  *      Register the address family for use with nf_tables. Returns zero on
32  *      success or a negative errno code otherwise.
33  */
34 int nft_register_afinfo(struct net *net, struct nft_af_info *afi)
35 {
36         INIT_LIST_HEAD(&afi->tables);
37         nfnl_lock(NFNL_SUBSYS_NFTABLES);
38         list_add_tail_rcu(&afi->list, &net->nft.af_info);
39         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
40         return 0;
41 }
42 EXPORT_SYMBOL_GPL(nft_register_afinfo);
43
44 /**
45  *      nft_unregister_afinfo - unregister nf_tables address family info
46  *
47  *      @afi: address family info to unregister
48  *
49  *      Unregister the address family for use with nf_tables.
50  */
51 void nft_unregister_afinfo(struct nft_af_info *afi)
52 {
53         nfnl_lock(NFNL_SUBSYS_NFTABLES);
54         list_del_rcu(&afi->list);
55         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
56 }
57 EXPORT_SYMBOL_GPL(nft_unregister_afinfo);
58
59 static struct nft_af_info *nft_afinfo_lookup(struct net *net, int family)
60 {
61         struct nft_af_info *afi;
62
63         list_for_each_entry(afi, &net->nft.af_info, list) {
64                 if (afi->family == family)
65                         return afi;
66         }
67         return NULL;
68 }
69
70 static struct nft_af_info *
71 nf_tables_afinfo_lookup(struct net *net, int family, bool autoload)
72 {
73         struct nft_af_info *afi;
74
75         afi = nft_afinfo_lookup(net, family);
76         if (afi != NULL)
77                 return afi;
78 #ifdef CONFIG_MODULES
79         if (autoload) {
80                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
81                 request_module("nft-afinfo-%u", family);
82                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
83                 afi = nft_afinfo_lookup(net, family);
84                 if (afi != NULL)
85                         return ERR_PTR(-EAGAIN);
86         }
87 #endif
88         return ERR_PTR(-EAFNOSUPPORT);
89 }
90
91 static void nft_ctx_init(struct nft_ctx *ctx,
92                          const struct sk_buff *skb,
93                          const struct nlmsghdr *nlh,
94                          struct nft_af_info *afi,
95                          struct nft_table *table,
96                          struct nft_chain *chain,
97                          const struct nlattr * const *nla)
98 {
99         ctx->net        = sock_net(skb->sk);
100         ctx->afi        = afi;
101         ctx->table      = table;
102         ctx->chain      = chain;
103         ctx->nla        = nla;
104         ctx->portid     = NETLINK_CB(skb).portid;
105         ctx->report     = nlmsg_report(nlh);
106         ctx->seq        = nlh->nlmsg_seq;
107 }
108
109 static struct nft_trans *nft_trans_alloc(struct nft_ctx *ctx, int msg_type,
110                                          u32 size)
111 {
112         struct nft_trans *trans;
113
114         trans = kzalloc(sizeof(struct nft_trans) + size, GFP_KERNEL);
115         if (trans == NULL)
116                 return NULL;
117
118         trans->msg_type = msg_type;
119         trans->ctx      = *ctx;
120
121         return trans;
122 }
123
124 static void nft_trans_destroy(struct nft_trans *trans)
125 {
126         list_del(&trans->list);
127         kfree(trans);
128 }
129
130 static void nf_tables_unregister_hooks(const struct nft_table *table,
131                                        const struct nft_chain *chain,
132                                        unsigned int hook_nops)
133 {
134         if (!(table->flags & NFT_TABLE_F_DORMANT) &&
135             chain->flags & NFT_BASE_CHAIN)
136                 nf_unregister_hooks(nft_base_chain(chain)->ops, hook_nops);
137 }
138
139 /* Internal table flags */
140 #define NFT_TABLE_INACTIVE      (1 << 15)
141
142 static int nft_trans_table_add(struct nft_ctx *ctx, int msg_type)
143 {
144         struct nft_trans *trans;
145
146         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_table));
147         if (trans == NULL)
148                 return -ENOMEM;
149
150         if (msg_type == NFT_MSG_NEWTABLE)
151                 ctx->table->flags |= NFT_TABLE_INACTIVE;
152
153         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
154         return 0;
155 }
156
157 static int nft_deltable(struct nft_ctx *ctx)
158 {
159         int err;
160
161         err = nft_trans_table_add(ctx, NFT_MSG_DELTABLE);
162         if (err < 0)
163                 return err;
164
165         list_del_rcu(&ctx->table->list);
166         return err;
167 }
168
169 static int nft_trans_chain_add(struct nft_ctx *ctx, int msg_type)
170 {
171         struct nft_trans *trans;
172
173         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_chain));
174         if (trans == NULL)
175                 return -ENOMEM;
176
177         if (msg_type == NFT_MSG_NEWCHAIN)
178                 ctx->chain->flags |= NFT_CHAIN_INACTIVE;
179
180         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
181         return 0;
182 }
183
184 static int nft_delchain(struct nft_ctx *ctx)
185 {
186         int err;
187
188         err = nft_trans_chain_add(ctx, NFT_MSG_DELCHAIN);
189         if (err < 0)
190                 return err;
191
192         ctx->table->use--;
193         list_del_rcu(&ctx->chain->list);
194
195         return err;
196 }
197
198 static inline bool
199 nft_rule_is_active(struct net *net, const struct nft_rule *rule)
200 {
201         return (rule->genmask & nft_genmask_cur(net)) == 0;
202 }
203
204 static inline int
205 nft_rule_is_active_next(struct net *net, const struct nft_rule *rule)
206 {
207         return (rule->genmask & nft_genmask_next(net)) == 0;
208 }
209
210 static inline void
211 nft_rule_activate_next(struct net *net, struct nft_rule *rule)
212 {
213         /* Now inactive, will be active in the future */
214         rule->genmask = nft_genmask_cur(net);
215 }
216
217 static inline void
218 nft_rule_deactivate_next(struct net *net, struct nft_rule *rule)
219 {
220         rule->genmask = nft_genmask_next(net);
221 }
222
223 static inline void nft_rule_clear(struct net *net, struct nft_rule *rule)
224 {
225         rule->genmask &= ~nft_genmask_next(net);
226 }
227
228 static int
229 nf_tables_delrule_deactivate(struct nft_ctx *ctx, struct nft_rule *rule)
230 {
231         /* You cannot delete the same rule twice */
232         if (nft_rule_is_active_next(ctx->net, rule)) {
233                 nft_rule_deactivate_next(ctx->net, rule);
234                 ctx->chain->use--;
235                 return 0;
236         }
237         return -ENOENT;
238 }
239
240 static struct nft_trans *nft_trans_rule_add(struct nft_ctx *ctx, int msg_type,
241                                             struct nft_rule *rule)
242 {
243         struct nft_trans *trans;
244
245         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_rule));
246         if (trans == NULL)
247                 return NULL;
248
249         nft_trans_rule(trans) = rule;
250         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
251
252         return trans;
253 }
254
255 static int nft_delrule(struct nft_ctx *ctx, struct nft_rule *rule)
256 {
257         struct nft_trans *trans;
258         int err;
259
260         trans = nft_trans_rule_add(ctx, NFT_MSG_DELRULE, rule);
261         if (trans == NULL)
262                 return -ENOMEM;
263
264         err = nf_tables_delrule_deactivate(ctx, rule);
265         if (err < 0) {
266                 nft_trans_destroy(trans);
267                 return err;
268         }
269
270         return 0;
271 }
272
273 static int nft_delrule_by_chain(struct nft_ctx *ctx)
274 {
275         struct nft_rule *rule;
276         int err;
277
278         list_for_each_entry(rule, &ctx->chain->rules, list) {
279                 err = nft_delrule(ctx, rule);
280                 if (err < 0)
281                         return err;
282         }
283         return 0;
284 }
285
286 /* Internal set flag */
287 #define NFT_SET_INACTIVE        (1 << 15)
288
289 static int nft_trans_set_add(struct nft_ctx *ctx, int msg_type,
290                              struct nft_set *set)
291 {
292         struct nft_trans *trans;
293
294         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_set));
295         if (trans == NULL)
296                 return -ENOMEM;
297
298         if (msg_type == NFT_MSG_NEWSET && ctx->nla[NFTA_SET_ID] != NULL) {
299                 nft_trans_set_id(trans) =
300                         ntohl(nla_get_be32(ctx->nla[NFTA_SET_ID]));
301                 set->flags |= NFT_SET_INACTIVE;
302         }
303         nft_trans_set(trans) = set;
304         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
305
306         return 0;
307 }
308
309 static int nft_delset(struct nft_ctx *ctx, struct nft_set *set)
310 {
311         int err;
312
313         err = nft_trans_set_add(ctx, NFT_MSG_DELSET, set);
314         if (err < 0)
315                 return err;
316
317         list_del_rcu(&set->list);
318         ctx->table->use--;
319
320         return err;
321 }
322
323 /*
324  * Tables
325  */
326
327 static struct nft_table *nft_table_lookup(const struct nft_af_info *afi,
328                                           const struct nlattr *nla)
329 {
330         struct nft_table *table;
331
332         list_for_each_entry(table, &afi->tables, list) {
333                 if (!nla_strcmp(nla, table->name))
334                         return table;
335         }
336         return NULL;
337 }
338
339 static struct nft_table *nf_tables_table_lookup(const struct nft_af_info *afi,
340                                                 const struct nlattr *nla)
341 {
342         struct nft_table *table;
343
344         if (nla == NULL)
345                 return ERR_PTR(-EINVAL);
346
347         table = nft_table_lookup(afi, nla);
348         if (table != NULL)
349                 return table;
350
351         return ERR_PTR(-ENOENT);
352 }
353
354 static inline u64 nf_tables_alloc_handle(struct nft_table *table)
355 {
356         return ++table->hgenerator;
357 }
358
359 static const struct nf_chain_type *chain_type[AF_MAX][NFT_CHAIN_T_MAX];
360
361 static const struct nf_chain_type *
362 __nf_tables_chain_type_lookup(int family, const struct nlattr *nla)
363 {
364         int i;
365
366         for (i = 0; i < NFT_CHAIN_T_MAX; i++) {
367                 if (chain_type[family][i] != NULL &&
368                     !nla_strcmp(nla, chain_type[family][i]->name))
369                         return chain_type[family][i];
370         }
371         return NULL;
372 }
373
374 static const struct nf_chain_type *
375 nf_tables_chain_type_lookup(const struct nft_af_info *afi,
376                             const struct nlattr *nla,
377                             bool autoload)
378 {
379         const struct nf_chain_type *type;
380
381         type = __nf_tables_chain_type_lookup(afi->family, nla);
382         if (type != NULL)
383                 return type;
384 #ifdef CONFIG_MODULES
385         if (autoload) {
386                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
387                 request_module("nft-chain-%u-%.*s", afi->family,
388                                nla_len(nla), (const char *)nla_data(nla));
389                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
390                 type = __nf_tables_chain_type_lookup(afi->family, nla);
391                 if (type != NULL)
392                         return ERR_PTR(-EAGAIN);
393         }
394 #endif
395         return ERR_PTR(-ENOENT);
396 }
397
398 static const struct nla_policy nft_table_policy[NFTA_TABLE_MAX + 1] = {
399         [NFTA_TABLE_NAME]       = { .type = NLA_STRING,
400                                     .len = NFT_TABLE_MAXNAMELEN - 1 },
401         [NFTA_TABLE_FLAGS]      = { .type = NLA_U32 },
402 };
403
404 static int nf_tables_fill_table_info(struct sk_buff *skb, struct net *net,
405                                      u32 portid, u32 seq, int event, u32 flags,
406                                      int family, const struct nft_table *table)
407 {
408         struct nlmsghdr *nlh;
409         struct nfgenmsg *nfmsg;
410
411         event |= NFNL_SUBSYS_NFTABLES << 8;
412         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
413         if (nlh == NULL)
414                 goto nla_put_failure;
415
416         nfmsg = nlmsg_data(nlh);
417         nfmsg->nfgen_family     = family;
418         nfmsg->version          = NFNETLINK_V0;
419         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
420
421         if (nla_put_string(skb, NFTA_TABLE_NAME, table->name) ||
422             nla_put_be32(skb, NFTA_TABLE_FLAGS, htonl(table->flags)) ||
423             nla_put_be32(skb, NFTA_TABLE_USE, htonl(table->use)))
424                 goto nla_put_failure;
425
426         nlmsg_end(skb, nlh);
427         return 0;
428
429 nla_put_failure:
430         nlmsg_trim(skb, nlh);
431         return -1;
432 }
433
434 static int nf_tables_table_notify(const struct nft_ctx *ctx, int event)
435 {
436         struct sk_buff *skb;
437         int err;
438
439         if (!ctx->report &&
440             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
441                 return 0;
442
443         err = -ENOBUFS;
444         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
445         if (skb == NULL)
446                 goto err;
447
448         err = nf_tables_fill_table_info(skb, ctx->net, ctx->portid, ctx->seq,
449                                         event, 0, ctx->afi->family, ctx->table);
450         if (err < 0) {
451                 kfree_skb(skb);
452                 goto err;
453         }
454
455         err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
456                              ctx->report, GFP_KERNEL);
457 err:
458         if (err < 0) {
459                 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
460                                   err);
461         }
462         return err;
463 }
464
465 static int nf_tables_dump_tables(struct sk_buff *skb,
466                                  struct netlink_callback *cb)
467 {
468         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
469         const struct nft_af_info *afi;
470         const struct nft_table *table;
471         unsigned int idx = 0, s_idx = cb->args[0];
472         struct net *net = sock_net(skb->sk);
473         int family = nfmsg->nfgen_family;
474
475         rcu_read_lock();
476         cb->seq = net->nft.base_seq;
477
478         list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
479                 if (family != NFPROTO_UNSPEC && family != afi->family)
480                         continue;
481
482                 list_for_each_entry_rcu(table, &afi->tables, list) {
483                         if (idx < s_idx)
484                                 goto cont;
485                         if (idx > s_idx)
486                                 memset(&cb->args[1], 0,
487                                        sizeof(cb->args) - sizeof(cb->args[0]));
488                         if (nf_tables_fill_table_info(skb, net,
489                                                       NETLINK_CB(cb->skb).portid,
490                                                       cb->nlh->nlmsg_seq,
491                                                       NFT_MSG_NEWTABLE,
492                                                       NLM_F_MULTI,
493                                                       afi->family, table) < 0)
494                                 goto done;
495
496                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
497 cont:
498                         idx++;
499                 }
500         }
501 done:
502         rcu_read_unlock();
503         cb->args[0] = idx;
504         return skb->len;
505 }
506
507 static int nf_tables_gettable(struct sock *nlsk, struct sk_buff *skb,
508                               const struct nlmsghdr *nlh,
509                               const struct nlattr * const nla[])
510 {
511         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
512         const struct nft_af_info *afi;
513         const struct nft_table *table;
514         struct sk_buff *skb2;
515         struct net *net = sock_net(skb->sk);
516         int family = nfmsg->nfgen_family;
517         int err;
518
519         if (nlh->nlmsg_flags & NLM_F_DUMP) {
520                 struct netlink_dump_control c = {
521                         .dump = nf_tables_dump_tables,
522                 };
523                 return netlink_dump_start(nlsk, skb, nlh, &c);
524         }
525
526         afi = nf_tables_afinfo_lookup(net, family, false);
527         if (IS_ERR(afi))
528                 return PTR_ERR(afi);
529
530         table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
531         if (IS_ERR(table))
532                 return PTR_ERR(table);
533         if (table->flags & NFT_TABLE_INACTIVE)
534                 return -ENOENT;
535
536         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
537         if (!skb2)
538                 return -ENOMEM;
539
540         err = nf_tables_fill_table_info(skb2, net, NETLINK_CB(skb).portid,
541                                         nlh->nlmsg_seq, NFT_MSG_NEWTABLE, 0,
542                                         family, table);
543         if (err < 0)
544                 goto err;
545
546         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
547
548 err:
549         kfree_skb(skb2);
550         return err;
551 }
552
553 static int nf_tables_table_enable(const struct nft_af_info *afi,
554                                   struct nft_table *table)
555 {
556         struct nft_chain *chain;
557         int err, i = 0;
558
559         list_for_each_entry(chain, &table->chains, list) {
560                 if (!(chain->flags & NFT_BASE_CHAIN))
561                         continue;
562
563                 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
564                 if (err < 0)
565                         goto err;
566
567                 i++;
568         }
569         return 0;
570 err:
571         list_for_each_entry(chain, &table->chains, list) {
572                 if (!(chain->flags & NFT_BASE_CHAIN))
573                         continue;
574
575                 if (i-- <= 0)
576                         break;
577
578                 nf_unregister_hooks(nft_base_chain(chain)->ops, afi->nops);
579         }
580         return err;
581 }
582
583 static void nf_tables_table_disable(const struct nft_af_info *afi,
584                                    struct nft_table *table)
585 {
586         struct nft_chain *chain;
587
588         list_for_each_entry(chain, &table->chains, list) {
589                 if (chain->flags & NFT_BASE_CHAIN)
590                         nf_unregister_hooks(nft_base_chain(chain)->ops,
591                                             afi->nops);
592         }
593 }
594
595 static int nf_tables_updtable(struct nft_ctx *ctx)
596 {
597         struct nft_trans *trans;
598         u32 flags;
599         int ret = 0;
600
601         if (!ctx->nla[NFTA_TABLE_FLAGS])
602                 return 0;
603
604         flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
605         if (flags & ~NFT_TABLE_F_DORMANT)
606                 return -EINVAL;
607
608         if (flags == ctx->table->flags)
609                 return 0;
610
611         trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE,
612                                 sizeof(struct nft_trans_table));
613         if (trans == NULL)
614                 return -ENOMEM;
615
616         if ((flags & NFT_TABLE_F_DORMANT) &&
617             !(ctx->table->flags & NFT_TABLE_F_DORMANT)) {
618                 nft_trans_table_enable(trans) = false;
619         } else if (!(flags & NFT_TABLE_F_DORMANT) &&
620                    ctx->table->flags & NFT_TABLE_F_DORMANT) {
621                 ret = nf_tables_table_enable(ctx->afi, ctx->table);
622                 if (ret >= 0) {
623                         ctx->table->flags &= ~NFT_TABLE_F_DORMANT;
624                         nft_trans_table_enable(trans) = true;
625                 }
626         }
627         if (ret < 0)
628                 goto err;
629
630         nft_trans_table_update(trans) = true;
631         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
632         return 0;
633 err:
634         nft_trans_destroy(trans);
635         return ret;
636 }
637
638 static int nf_tables_newtable(struct sock *nlsk, struct sk_buff *skb,
639                               const struct nlmsghdr *nlh,
640                               const struct nlattr * const nla[])
641 {
642         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
643         const struct nlattr *name;
644         struct nft_af_info *afi;
645         struct nft_table *table;
646         struct net *net = sock_net(skb->sk);
647         int family = nfmsg->nfgen_family;
648         u32 flags = 0;
649         struct nft_ctx ctx;
650         int err;
651
652         afi = nf_tables_afinfo_lookup(net, family, true);
653         if (IS_ERR(afi))
654                 return PTR_ERR(afi);
655
656         name = nla[NFTA_TABLE_NAME];
657         table = nf_tables_table_lookup(afi, name);
658         if (IS_ERR(table)) {
659                 if (PTR_ERR(table) != -ENOENT)
660                         return PTR_ERR(table);
661                 table = NULL;
662         }
663
664         if (table != NULL) {
665                 if (table->flags & NFT_TABLE_INACTIVE)
666                         return -ENOENT;
667                 if (nlh->nlmsg_flags & NLM_F_EXCL)
668                         return -EEXIST;
669                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
670                         return -EOPNOTSUPP;
671
672                 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
673                 return nf_tables_updtable(&ctx);
674         }
675
676         if (nla[NFTA_TABLE_FLAGS]) {
677                 flags = ntohl(nla_get_be32(nla[NFTA_TABLE_FLAGS]));
678                 if (flags & ~NFT_TABLE_F_DORMANT)
679                         return -EINVAL;
680         }
681
682         if (!try_module_get(afi->owner))
683                 return -EAFNOSUPPORT;
684
685         err = -ENOMEM;
686         table = kzalloc(sizeof(*table), GFP_KERNEL);
687         if (table == NULL)
688                 goto err1;
689
690         nla_strlcpy(table->name, name, NFT_TABLE_MAXNAMELEN);
691         INIT_LIST_HEAD(&table->chains);
692         INIT_LIST_HEAD(&table->sets);
693         table->flags = flags;
694
695         nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
696         err = nft_trans_table_add(&ctx, NFT_MSG_NEWTABLE);
697         if (err < 0)
698                 goto err2;
699
700         list_add_tail_rcu(&table->list, &afi->tables);
701         return 0;
702 err2:
703         kfree(table);
704 err1:
705         module_put(afi->owner);
706         return err;
707 }
708
709 static int nft_flush_table(struct nft_ctx *ctx)
710 {
711         int err;
712         struct nft_chain *chain, *nc;
713         struct nft_set *set, *ns;
714
715         list_for_each_entry(chain, &ctx->table->chains, list) {
716                 ctx->chain = chain;
717
718                 err = nft_delrule_by_chain(ctx);
719                 if (err < 0)
720                         goto out;
721         }
722
723         list_for_each_entry_safe(set, ns, &ctx->table->sets, list) {
724                 if (set->flags & NFT_SET_ANONYMOUS &&
725                     !list_empty(&set->bindings))
726                         continue;
727
728                 err = nft_delset(ctx, set);
729                 if (err < 0)
730                         goto out;
731         }
732
733         list_for_each_entry_safe(chain, nc, &ctx->table->chains, list) {
734                 ctx->chain = chain;
735
736                 err = nft_delchain(ctx);
737                 if (err < 0)
738                         goto out;
739         }
740
741         err = nft_deltable(ctx);
742 out:
743         return err;
744 }
745
746 static int nft_flush(struct nft_ctx *ctx, int family)
747 {
748         struct nft_af_info *afi;
749         struct nft_table *table, *nt;
750         const struct nlattr * const *nla = ctx->nla;
751         int err = 0;
752
753         list_for_each_entry(afi, &ctx->net->nft.af_info, list) {
754                 if (family != AF_UNSPEC && afi->family != family)
755                         continue;
756
757                 ctx->afi = afi;
758                 list_for_each_entry_safe(table, nt, &afi->tables, list) {
759                         if (nla[NFTA_TABLE_NAME] &&
760                             nla_strcmp(nla[NFTA_TABLE_NAME], table->name) != 0)
761                                 continue;
762
763                         ctx->table = table;
764
765                         err = nft_flush_table(ctx);
766                         if (err < 0)
767                                 goto out;
768                 }
769         }
770 out:
771         return err;
772 }
773
774 static int nf_tables_deltable(struct sock *nlsk, struct sk_buff *skb,
775                               const struct nlmsghdr *nlh,
776                               const struct nlattr * const nla[])
777 {
778         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
779         struct nft_af_info *afi;
780         struct nft_table *table;
781         struct net *net = sock_net(skb->sk);
782         int family = nfmsg->nfgen_family;
783         struct nft_ctx ctx;
784
785         nft_ctx_init(&ctx, skb, nlh, NULL, NULL, NULL, nla);
786         if (family == AF_UNSPEC || nla[NFTA_TABLE_NAME] == NULL)
787                 return nft_flush(&ctx, family);
788
789         afi = nf_tables_afinfo_lookup(net, family, false);
790         if (IS_ERR(afi))
791                 return PTR_ERR(afi);
792
793         table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
794         if (IS_ERR(table))
795                 return PTR_ERR(table);
796         if (table->flags & NFT_TABLE_INACTIVE)
797                 return -ENOENT;
798
799         ctx.afi = afi;
800         ctx.table = table;
801
802         return nft_flush_table(&ctx);
803 }
804
805 static void nf_tables_table_destroy(struct nft_ctx *ctx)
806 {
807         BUG_ON(ctx->table->use > 0);
808
809         kfree(ctx->table);
810         module_put(ctx->afi->owner);
811 }
812
813 int nft_register_chain_type(const struct nf_chain_type *ctype)
814 {
815         int err = 0;
816
817         nfnl_lock(NFNL_SUBSYS_NFTABLES);
818         if (chain_type[ctype->family][ctype->type] != NULL) {
819                 err = -EBUSY;
820                 goto out;
821         }
822         chain_type[ctype->family][ctype->type] = ctype;
823 out:
824         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
825         return err;
826 }
827 EXPORT_SYMBOL_GPL(nft_register_chain_type);
828
829 void nft_unregister_chain_type(const struct nf_chain_type *ctype)
830 {
831         nfnl_lock(NFNL_SUBSYS_NFTABLES);
832         chain_type[ctype->family][ctype->type] = NULL;
833         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
834 }
835 EXPORT_SYMBOL_GPL(nft_unregister_chain_type);
836
837 /*
838  * Chains
839  */
840
841 static struct nft_chain *
842 nf_tables_chain_lookup_byhandle(const struct nft_table *table, u64 handle)
843 {
844         struct nft_chain *chain;
845
846         list_for_each_entry(chain, &table->chains, list) {
847                 if (chain->handle == handle)
848                         return chain;
849         }
850
851         return ERR_PTR(-ENOENT);
852 }
853
854 static struct nft_chain *nf_tables_chain_lookup(const struct nft_table *table,
855                                                 const struct nlattr *nla)
856 {
857         struct nft_chain *chain;
858
859         if (nla == NULL)
860                 return ERR_PTR(-EINVAL);
861
862         list_for_each_entry(chain, &table->chains, list) {
863                 if (!nla_strcmp(nla, chain->name))
864                         return chain;
865         }
866
867         return ERR_PTR(-ENOENT);
868 }
869
870 static const struct nla_policy nft_chain_policy[NFTA_CHAIN_MAX + 1] = {
871         [NFTA_CHAIN_TABLE]      = { .type = NLA_STRING },
872         [NFTA_CHAIN_HANDLE]     = { .type = NLA_U64 },
873         [NFTA_CHAIN_NAME]       = { .type = NLA_STRING,
874                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
875         [NFTA_CHAIN_HOOK]       = { .type = NLA_NESTED },
876         [NFTA_CHAIN_POLICY]     = { .type = NLA_U32 },
877         [NFTA_CHAIN_TYPE]       = { .type = NLA_STRING },
878         [NFTA_CHAIN_COUNTERS]   = { .type = NLA_NESTED },
879 };
880
881 static const struct nla_policy nft_hook_policy[NFTA_HOOK_MAX + 1] = {
882         [NFTA_HOOK_HOOKNUM]     = { .type = NLA_U32 },
883         [NFTA_HOOK_PRIORITY]    = { .type = NLA_U32 },
884 };
885
886 static int nft_dump_stats(struct sk_buff *skb, struct nft_stats __percpu *stats)
887 {
888         struct nft_stats *cpu_stats, total;
889         struct nlattr *nest;
890         unsigned int seq;
891         u64 pkts, bytes;
892         int cpu;
893
894         memset(&total, 0, sizeof(total));
895         for_each_possible_cpu(cpu) {
896                 cpu_stats = per_cpu_ptr(stats, cpu);
897                 do {
898                         seq = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
899                         pkts = cpu_stats->pkts;
900                         bytes = cpu_stats->bytes;
901                 } while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, seq));
902                 total.pkts += pkts;
903                 total.bytes += bytes;
904         }
905         nest = nla_nest_start(skb, NFTA_CHAIN_COUNTERS);
906         if (nest == NULL)
907                 goto nla_put_failure;
908
909         if (nla_put_be64(skb, NFTA_COUNTER_PACKETS, cpu_to_be64(total.pkts)) ||
910             nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes)))
911                 goto nla_put_failure;
912
913         nla_nest_end(skb, nest);
914         return 0;
915
916 nla_put_failure:
917         return -ENOSPC;
918 }
919
920 static int nf_tables_fill_chain_info(struct sk_buff *skb, struct net *net,
921                                      u32 portid, u32 seq, int event, u32 flags,
922                                      int family, const struct nft_table *table,
923                                      const struct nft_chain *chain)
924 {
925         struct nlmsghdr *nlh;
926         struct nfgenmsg *nfmsg;
927
928         event |= NFNL_SUBSYS_NFTABLES << 8;
929         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
930         if (nlh == NULL)
931                 goto nla_put_failure;
932
933         nfmsg = nlmsg_data(nlh);
934         nfmsg->nfgen_family     = family;
935         nfmsg->version          = NFNETLINK_V0;
936         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
937
938         if (nla_put_string(skb, NFTA_CHAIN_TABLE, table->name))
939                 goto nla_put_failure;
940         if (nla_put_be64(skb, NFTA_CHAIN_HANDLE, cpu_to_be64(chain->handle)))
941                 goto nla_put_failure;
942         if (nla_put_string(skb, NFTA_CHAIN_NAME, chain->name))
943                 goto nla_put_failure;
944
945         if (chain->flags & NFT_BASE_CHAIN) {
946                 const struct nft_base_chain *basechain = nft_base_chain(chain);
947                 const struct nf_hook_ops *ops = &basechain->ops[0];
948                 struct nlattr *nest;
949
950                 nest = nla_nest_start(skb, NFTA_CHAIN_HOOK);
951                 if (nest == NULL)
952                         goto nla_put_failure;
953                 if (nla_put_be32(skb, NFTA_HOOK_HOOKNUM, htonl(ops->hooknum)))
954                         goto nla_put_failure;
955                 if (nla_put_be32(skb, NFTA_HOOK_PRIORITY, htonl(ops->priority)))
956                         goto nla_put_failure;
957                 nla_nest_end(skb, nest);
958
959                 if (nla_put_be32(skb, NFTA_CHAIN_POLICY,
960                                  htonl(basechain->policy)))
961                         goto nla_put_failure;
962
963                 if (nla_put_string(skb, NFTA_CHAIN_TYPE, basechain->type->name))
964                         goto nla_put_failure;
965
966                 if (nft_dump_stats(skb, nft_base_chain(chain)->stats))
967                         goto nla_put_failure;
968         }
969
970         if (nla_put_be32(skb, NFTA_CHAIN_USE, htonl(chain->use)))
971                 goto nla_put_failure;
972
973         nlmsg_end(skb, nlh);
974         return 0;
975
976 nla_put_failure:
977         nlmsg_trim(skb, nlh);
978         return -1;
979 }
980
981 static int nf_tables_chain_notify(const struct nft_ctx *ctx, int event)
982 {
983         struct sk_buff *skb;
984         int err;
985
986         if (!ctx->report &&
987             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
988                 return 0;
989
990         err = -ENOBUFS;
991         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
992         if (skb == NULL)
993                 goto err;
994
995         err = nf_tables_fill_chain_info(skb, ctx->net, ctx->portid, ctx->seq,
996                                         event, 0, ctx->afi->family, ctx->table,
997                                         ctx->chain);
998         if (err < 0) {
999                 kfree_skb(skb);
1000                 goto err;
1001         }
1002
1003         err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1004                              ctx->report, GFP_KERNEL);
1005 err:
1006         if (err < 0) {
1007                 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1008                                   err);
1009         }
1010         return err;
1011 }
1012
1013 static int nf_tables_dump_chains(struct sk_buff *skb,
1014                                  struct netlink_callback *cb)
1015 {
1016         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1017         const struct nft_af_info *afi;
1018         const struct nft_table *table;
1019         const struct nft_chain *chain;
1020         unsigned int idx = 0, s_idx = cb->args[0];
1021         struct net *net = sock_net(skb->sk);
1022         int family = nfmsg->nfgen_family;
1023
1024         rcu_read_lock();
1025         cb->seq = net->nft.base_seq;
1026
1027         list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
1028                 if (family != NFPROTO_UNSPEC && family != afi->family)
1029                         continue;
1030
1031                 list_for_each_entry_rcu(table, &afi->tables, list) {
1032                         list_for_each_entry_rcu(chain, &table->chains, list) {
1033                                 if (idx < s_idx)
1034                                         goto cont;
1035                                 if (idx > s_idx)
1036                                         memset(&cb->args[1], 0,
1037                                                sizeof(cb->args) - sizeof(cb->args[0]));
1038                                 if (nf_tables_fill_chain_info(skb, net,
1039                                                               NETLINK_CB(cb->skb).portid,
1040                                                               cb->nlh->nlmsg_seq,
1041                                                               NFT_MSG_NEWCHAIN,
1042                                                               NLM_F_MULTI,
1043                                                               afi->family, table, chain) < 0)
1044                                         goto done;
1045
1046                                 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1047 cont:
1048                                 idx++;
1049                         }
1050                 }
1051         }
1052 done:
1053         rcu_read_unlock();
1054         cb->args[0] = idx;
1055         return skb->len;
1056 }
1057
1058 static int nf_tables_getchain(struct sock *nlsk, struct sk_buff *skb,
1059                               const struct nlmsghdr *nlh,
1060                               const struct nlattr * const nla[])
1061 {
1062         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1063         const struct nft_af_info *afi;
1064         const struct nft_table *table;
1065         const struct nft_chain *chain;
1066         struct sk_buff *skb2;
1067         struct net *net = sock_net(skb->sk);
1068         int family = nfmsg->nfgen_family;
1069         int err;
1070
1071         if (nlh->nlmsg_flags & NLM_F_DUMP) {
1072                 struct netlink_dump_control c = {
1073                         .dump = nf_tables_dump_chains,
1074                 };
1075                 return netlink_dump_start(nlsk, skb, nlh, &c);
1076         }
1077
1078         afi = nf_tables_afinfo_lookup(net, family, false);
1079         if (IS_ERR(afi))
1080                 return PTR_ERR(afi);
1081
1082         table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
1083         if (IS_ERR(table))
1084                 return PTR_ERR(table);
1085         if (table->flags & NFT_TABLE_INACTIVE)
1086                 return -ENOENT;
1087
1088         chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
1089         if (IS_ERR(chain))
1090                 return PTR_ERR(chain);
1091         if (chain->flags & NFT_CHAIN_INACTIVE)
1092                 return -ENOENT;
1093
1094         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1095         if (!skb2)
1096                 return -ENOMEM;
1097
1098         err = nf_tables_fill_chain_info(skb2, net, NETLINK_CB(skb).portid,
1099                                         nlh->nlmsg_seq, NFT_MSG_NEWCHAIN, 0,
1100                                         family, table, chain);
1101         if (err < 0)
1102                 goto err;
1103
1104         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1105
1106 err:
1107         kfree_skb(skb2);
1108         return err;
1109 }
1110
1111 static const struct nla_policy nft_counter_policy[NFTA_COUNTER_MAX + 1] = {
1112         [NFTA_COUNTER_PACKETS]  = { .type = NLA_U64 },
1113         [NFTA_COUNTER_BYTES]    = { .type = NLA_U64 },
1114 };
1115
1116 static struct nft_stats __percpu *nft_stats_alloc(const struct nlattr *attr)
1117 {
1118         struct nlattr *tb[NFTA_COUNTER_MAX+1];
1119         struct nft_stats __percpu *newstats;
1120         struct nft_stats *stats;
1121         int err;
1122
1123         err = nla_parse_nested(tb, NFTA_COUNTER_MAX, attr, nft_counter_policy);
1124         if (err < 0)
1125                 return ERR_PTR(err);
1126
1127         if (!tb[NFTA_COUNTER_BYTES] || !tb[NFTA_COUNTER_PACKETS])
1128                 return ERR_PTR(-EINVAL);
1129
1130         newstats = netdev_alloc_pcpu_stats(struct nft_stats);
1131         if (newstats == NULL)
1132                 return ERR_PTR(-ENOMEM);
1133
1134         /* Restore old counters on this cpu, no problem. Per-cpu statistics
1135          * are not exposed to userspace.
1136          */
1137         preempt_disable();
1138         stats = this_cpu_ptr(newstats);
1139         stats->bytes = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_BYTES]));
1140         stats->pkts = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_PACKETS]));
1141         preempt_enable();
1142
1143         return newstats;
1144 }
1145
1146 static void nft_chain_stats_replace(struct nft_base_chain *chain,
1147                                     struct nft_stats __percpu *newstats)
1148 {
1149         if (newstats == NULL)
1150                 return;
1151
1152         if (chain->stats) {
1153                 struct nft_stats __percpu *oldstats =
1154                                 nft_dereference(chain->stats);
1155
1156                 rcu_assign_pointer(chain->stats, newstats);
1157                 synchronize_rcu();
1158                 free_percpu(oldstats);
1159         } else
1160                 rcu_assign_pointer(chain->stats, newstats);
1161 }
1162
1163 static void nf_tables_chain_destroy(struct nft_chain *chain)
1164 {
1165         BUG_ON(chain->use > 0);
1166
1167         if (chain->flags & NFT_BASE_CHAIN) {
1168                 module_put(nft_base_chain(chain)->type->owner);
1169                 free_percpu(nft_base_chain(chain)->stats);
1170                 kfree(nft_base_chain(chain));
1171         } else {
1172                 kfree(chain);
1173         }
1174 }
1175
1176 static int nf_tables_newchain(struct sock *nlsk, struct sk_buff *skb,
1177                               const struct nlmsghdr *nlh,
1178                               const struct nlattr * const nla[])
1179 {
1180         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1181         const struct nlattr * uninitialized_var(name);
1182         struct nft_af_info *afi;
1183         struct nft_table *table;
1184         struct nft_chain *chain;
1185         struct nft_base_chain *basechain = NULL;
1186         struct nlattr *ha[NFTA_HOOK_MAX + 1];
1187         struct net *net = sock_net(skb->sk);
1188         int family = nfmsg->nfgen_family;
1189         u8 policy = NF_ACCEPT;
1190         u64 handle = 0;
1191         unsigned int i;
1192         struct nft_stats __percpu *stats;
1193         int err;
1194         bool create;
1195         struct nft_ctx ctx;
1196
1197         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1198
1199         afi = nf_tables_afinfo_lookup(net, family, true);
1200         if (IS_ERR(afi))
1201                 return PTR_ERR(afi);
1202
1203         table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
1204         if (IS_ERR(table))
1205                 return PTR_ERR(table);
1206
1207         chain = NULL;
1208         name = nla[NFTA_CHAIN_NAME];
1209
1210         if (nla[NFTA_CHAIN_HANDLE]) {
1211                 handle = be64_to_cpu(nla_get_be64(nla[NFTA_CHAIN_HANDLE]));
1212                 chain = nf_tables_chain_lookup_byhandle(table, handle);
1213                 if (IS_ERR(chain))
1214                         return PTR_ERR(chain);
1215         } else {
1216                 chain = nf_tables_chain_lookup(table, name);
1217                 if (IS_ERR(chain)) {
1218                         if (PTR_ERR(chain) != -ENOENT)
1219                                 return PTR_ERR(chain);
1220                         chain = NULL;
1221                 }
1222         }
1223
1224         if (nla[NFTA_CHAIN_POLICY]) {
1225                 if ((chain != NULL &&
1226                     !(chain->flags & NFT_BASE_CHAIN)))
1227                         return -EOPNOTSUPP;
1228
1229                 if (chain == NULL &&
1230                     nla[NFTA_CHAIN_HOOK] == NULL)
1231                         return -EOPNOTSUPP;
1232
1233                 policy = ntohl(nla_get_be32(nla[NFTA_CHAIN_POLICY]));
1234                 switch (policy) {
1235                 case NF_DROP:
1236                 case NF_ACCEPT:
1237                         break;
1238                 default:
1239                         return -EINVAL;
1240                 }
1241         }
1242
1243         if (chain != NULL) {
1244                 struct nft_stats *stats = NULL;
1245                 struct nft_trans *trans;
1246
1247                 if (chain->flags & NFT_CHAIN_INACTIVE)
1248                         return -ENOENT;
1249                 if (nlh->nlmsg_flags & NLM_F_EXCL)
1250                         return -EEXIST;
1251                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1252                         return -EOPNOTSUPP;
1253
1254                 if (nla[NFTA_CHAIN_HANDLE] && name &&
1255                     !IS_ERR(nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME])))
1256                         return -EEXIST;
1257
1258                 if (nla[NFTA_CHAIN_COUNTERS]) {
1259                         if (!(chain->flags & NFT_BASE_CHAIN))
1260                                 return -EOPNOTSUPP;
1261
1262                         stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1263                         if (IS_ERR(stats))
1264                                 return PTR_ERR(stats);
1265                 }
1266
1267                 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1268                 trans = nft_trans_alloc(&ctx, NFT_MSG_NEWCHAIN,
1269                                         sizeof(struct nft_trans_chain));
1270                 if (trans == NULL) {
1271                         free_percpu(stats);
1272                         return -ENOMEM;
1273                 }
1274
1275                 nft_trans_chain_stats(trans) = stats;
1276                 nft_trans_chain_update(trans) = true;
1277
1278                 if (nla[NFTA_CHAIN_POLICY])
1279                         nft_trans_chain_policy(trans) = policy;
1280                 else
1281                         nft_trans_chain_policy(trans) = -1;
1282
1283                 if (nla[NFTA_CHAIN_HANDLE] && name) {
1284                         nla_strlcpy(nft_trans_chain_name(trans), name,
1285                                     NFT_CHAIN_MAXNAMELEN);
1286                 }
1287                 list_add_tail(&trans->list, &net->nft.commit_list);
1288                 return 0;
1289         }
1290
1291         if (table->use == UINT_MAX)
1292                 return -EOVERFLOW;
1293
1294         if (nla[NFTA_CHAIN_HOOK]) {
1295                 const struct nf_chain_type *type;
1296                 struct nf_hook_ops *ops;
1297                 nf_hookfn *hookfn;
1298                 u32 hooknum, priority;
1299
1300                 type = chain_type[family][NFT_CHAIN_T_DEFAULT];
1301                 if (nla[NFTA_CHAIN_TYPE]) {
1302                         type = nf_tables_chain_type_lookup(afi,
1303                                                            nla[NFTA_CHAIN_TYPE],
1304                                                            create);
1305                         if (IS_ERR(type))
1306                                 return PTR_ERR(type);
1307                 }
1308
1309                 err = nla_parse_nested(ha, NFTA_HOOK_MAX, nla[NFTA_CHAIN_HOOK],
1310                                        nft_hook_policy);
1311                 if (err < 0)
1312                         return err;
1313                 if (ha[NFTA_HOOK_HOOKNUM] == NULL ||
1314                     ha[NFTA_HOOK_PRIORITY] == NULL)
1315                         return -EINVAL;
1316
1317                 hooknum = ntohl(nla_get_be32(ha[NFTA_HOOK_HOOKNUM]));
1318                 if (hooknum >= afi->nhooks)
1319                         return -EINVAL;
1320                 priority = ntohl(nla_get_be32(ha[NFTA_HOOK_PRIORITY]));
1321
1322                 if (!(type->hook_mask & (1 << hooknum)))
1323                         return -EOPNOTSUPP;
1324                 if (!try_module_get(type->owner))
1325                         return -ENOENT;
1326                 hookfn = type->hooks[hooknum];
1327
1328                 basechain = kzalloc(sizeof(*basechain), GFP_KERNEL);
1329                 if (basechain == NULL) {
1330                         module_put(type->owner);
1331                         return -ENOMEM;
1332                 }
1333
1334                 if (nla[NFTA_CHAIN_COUNTERS]) {
1335                         stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1336                         if (IS_ERR(stats)) {
1337                                 module_put(type->owner);
1338                                 kfree(basechain);
1339                                 return PTR_ERR(stats);
1340                         }
1341                         basechain->stats = stats;
1342                 } else {
1343                         stats = netdev_alloc_pcpu_stats(struct nft_stats);
1344                         if (stats == NULL) {
1345                                 module_put(type->owner);
1346                                 kfree(basechain);
1347                                 return -ENOMEM;
1348                         }
1349                         rcu_assign_pointer(basechain->stats, stats);
1350                 }
1351
1352                 write_pnet(&basechain->pnet, net);
1353                 basechain->type = type;
1354                 chain = &basechain->chain;
1355
1356                 for (i = 0; i < afi->nops; i++) {
1357                         ops = &basechain->ops[i];
1358                         ops->pf         = family;
1359                         ops->owner      = afi->owner;
1360                         ops->hooknum    = hooknum;
1361                         ops->priority   = priority;
1362                         ops->priv       = chain;
1363                         ops->hook       = afi->hooks[ops->hooknum];
1364                         if (hookfn)
1365                                 ops->hook = hookfn;
1366                         if (afi->hook_ops_init)
1367                                 afi->hook_ops_init(ops, i);
1368                 }
1369
1370                 chain->flags |= NFT_BASE_CHAIN;
1371                 basechain->policy = policy;
1372         } else {
1373                 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
1374                 if (chain == NULL)
1375                         return -ENOMEM;
1376         }
1377
1378         INIT_LIST_HEAD(&chain->rules);
1379         chain->handle = nf_tables_alloc_handle(table);
1380         chain->table = table;
1381         nla_strlcpy(chain->name, name, NFT_CHAIN_MAXNAMELEN);
1382
1383         if (!(table->flags & NFT_TABLE_F_DORMANT) &&
1384             chain->flags & NFT_BASE_CHAIN) {
1385                 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
1386                 if (err < 0)
1387                         goto err1;
1388         }
1389
1390         nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1391         err = nft_trans_chain_add(&ctx, NFT_MSG_NEWCHAIN);
1392         if (err < 0)
1393                 goto err2;
1394
1395         table->use++;
1396         list_add_tail_rcu(&chain->list, &table->chains);
1397         return 0;
1398 err2:
1399         nf_tables_unregister_hooks(table, chain, afi->nops);
1400 err1:
1401         nf_tables_chain_destroy(chain);
1402         return err;
1403 }
1404
1405 static int nf_tables_delchain(struct sock *nlsk, struct sk_buff *skb,
1406                               const struct nlmsghdr *nlh,
1407                               const struct nlattr * const nla[])
1408 {
1409         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1410         struct nft_af_info *afi;
1411         struct nft_table *table;
1412         struct nft_chain *chain;
1413         struct net *net = sock_net(skb->sk);
1414         int family = nfmsg->nfgen_family;
1415         struct nft_ctx ctx;
1416
1417         afi = nf_tables_afinfo_lookup(net, family, false);
1418         if (IS_ERR(afi))
1419                 return PTR_ERR(afi);
1420
1421         table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
1422         if (IS_ERR(table))
1423                 return PTR_ERR(table);
1424         if (table->flags & NFT_TABLE_INACTIVE)
1425                 return -ENOENT;
1426
1427         chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
1428         if (IS_ERR(chain))
1429                 return PTR_ERR(chain);
1430         if (chain->flags & NFT_CHAIN_INACTIVE)
1431                 return -ENOENT;
1432         if (chain->use > 0)
1433                 return -EBUSY;
1434
1435         nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1436
1437         return nft_delchain(&ctx);
1438 }
1439
1440 /*
1441  * Expressions
1442  */
1443
1444 /**
1445  *      nft_register_expr - register nf_tables expr type
1446  *      @ops: expr type
1447  *
1448  *      Registers the expr type for use with nf_tables. Returns zero on
1449  *      success or a negative errno code otherwise.
1450  */
1451 int nft_register_expr(struct nft_expr_type *type)
1452 {
1453         nfnl_lock(NFNL_SUBSYS_NFTABLES);
1454         if (type->family == NFPROTO_UNSPEC)
1455                 list_add_tail_rcu(&type->list, &nf_tables_expressions);
1456         else
1457                 list_add_rcu(&type->list, &nf_tables_expressions);
1458         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1459         return 0;
1460 }
1461 EXPORT_SYMBOL_GPL(nft_register_expr);
1462
1463 /**
1464  *      nft_unregister_expr - unregister nf_tables expr type
1465  *      @ops: expr type
1466  *
1467  *      Unregisters the expr typefor use with nf_tables.
1468  */
1469 void nft_unregister_expr(struct nft_expr_type *type)
1470 {
1471         nfnl_lock(NFNL_SUBSYS_NFTABLES);
1472         list_del_rcu(&type->list);
1473         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1474 }
1475 EXPORT_SYMBOL_GPL(nft_unregister_expr);
1476
1477 static const struct nft_expr_type *__nft_expr_type_get(u8 family,
1478                                                        struct nlattr *nla)
1479 {
1480         const struct nft_expr_type *type;
1481
1482         list_for_each_entry(type, &nf_tables_expressions, list) {
1483                 if (!nla_strcmp(nla, type->name) &&
1484                     (!type->family || type->family == family))
1485                         return type;
1486         }
1487         return NULL;
1488 }
1489
1490 static const struct nft_expr_type *nft_expr_type_get(u8 family,
1491                                                      struct nlattr *nla)
1492 {
1493         const struct nft_expr_type *type;
1494
1495         if (nla == NULL)
1496                 return ERR_PTR(-EINVAL);
1497
1498         type = __nft_expr_type_get(family, nla);
1499         if (type != NULL && try_module_get(type->owner))
1500                 return type;
1501
1502 #ifdef CONFIG_MODULES
1503         if (type == NULL) {
1504                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1505                 request_module("nft-expr-%u-%.*s", family,
1506                                nla_len(nla), (char *)nla_data(nla));
1507                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1508                 if (__nft_expr_type_get(family, nla))
1509                         return ERR_PTR(-EAGAIN);
1510
1511                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1512                 request_module("nft-expr-%.*s",
1513                                nla_len(nla), (char *)nla_data(nla));
1514                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1515                 if (__nft_expr_type_get(family, nla))
1516                         return ERR_PTR(-EAGAIN);
1517         }
1518 #endif
1519         return ERR_PTR(-ENOENT);
1520 }
1521
1522 static const struct nla_policy nft_expr_policy[NFTA_EXPR_MAX + 1] = {
1523         [NFTA_EXPR_NAME]        = { .type = NLA_STRING },
1524         [NFTA_EXPR_DATA]        = { .type = NLA_NESTED },
1525 };
1526
1527 static int nf_tables_fill_expr_info(struct sk_buff *skb,
1528                                     const struct nft_expr *expr)
1529 {
1530         if (nla_put_string(skb, NFTA_EXPR_NAME, expr->ops->type->name))
1531                 goto nla_put_failure;
1532
1533         if (expr->ops->dump) {
1534                 struct nlattr *data = nla_nest_start(skb, NFTA_EXPR_DATA);
1535                 if (data == NULL)
1536                         goto nla_put_failure;
1537                 if (expr->ops->dump(skb, expr) < 0)
1538                         goto nla_put_failure;
1539                 nla_nest_end(skb, data);
1540         }
1541
1542         return skb->len;
1543
1544 nla_put_failure:
1545         return -1;
1546 };
1547
1548 struct nft_expr_info {
1549         const struct nft_expr_ops       *ops;
1550         struct nlattr                   *tb[NFT_EXPR_MAXATTR + 1];
1551 };
1552
1553 static int nf_tables_expr_parse(const struct nft_ctx *ctx,
1554                                 const struct nlattr *nla,
1555                                 struct nft_expr_info *info)
1556 {
1557         const struct nft_expr_type *type;
1558         const struct nft_expr_ops *ops;
1559         struct nlattr *tb[NFTA_EXPR_MAX + 1];
1560         int err;
1561
1562         err = nla_parse_nested(tb, NFTA_EXPR_MAX, nla, nft_expr_policy);
1563         if (err < 0)
1564                 return err;
1565
1566         type = nft_expr_type_get(ctx->afi->family, tb[NFTA_EXPR_NAME]);
1567         if (IS_ERR(type))
1568                 return PTR_ERR(type);
1569
1570         if (tb[NFTA_EXPR_DATA]) {
1571                 err = nla_parse_nested(info->tb, type->maxattr,
1572                                        tb[NFTA_EXPR_DATA], type->policy);
1573                 if (err < 0)
1574                         goto err1;
1575         } else
1576                 memset(info->tb, 0, sizeof(info->tb[0]) * (type->maxattr + 1));
1577
1578         if (type->select_ops != NULL) {
1579                 ops = type->select_ops(ctx,
1580                                        (const struct nlattr * const *)info->tb);
1581                 if (IS_ERR(ops)) {
1582                         err = PTR_ERR(ops);
1583                         goto err1;
1584                 }
1585         } else
1586                 ops = type->ops;
1587
1588         info->ops = ops;
1589         return 0;
1590
1591 err1:
1592         module_put(type->owner);
1593         return err;
1594 }
1595
1596 static int nf_tables_newexpr(const struct nft_ctx *ctx,
1597                              const struct nft_expr_info *info,
1598                              struct nft_expr *expr)
1599 {
1600         const struct nft_expr_ops *ops = info->ops;
1601         int err;
1602
1603         expr->ops = ops;
1604         if (ops->init) {
1605                 err = ops->init(ctx, expr, (const struct nlattr **)info->tb);
1606                 if (err < 0)
1607                         goto err1;
1608         }
1609
1610         return 0;
1611
1612 err1:
1613         expr->ops = NULL;
1614         return err;
1615 }
1616
1617 static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
1618                                    struct nft_expr *expr)
1619 {
1620         if (expr->ops->destroy)
1621                 expr->ops->destroy(ctx, expr);
1622         module_put(expr->ops->type->owner);
1623 }
1624
1625 /*
1626  * Rules
1627  */
1628
1629 static struct nft_rule *__nf_tables_rule_lookup(const struct nft_chain *chain,
1630                                                 u64 handle)
1631 {
1632         struct nft_rule *rule;
1633
1634         // FIXME: this sucks
1635         list_for_each_entry(rule, &chain->rules, list) {
1636                 if (handle == rule->handle)
1637                         return rule;
1638         }
1639
1640         return ERR_PTR(-ENOENT);
1641 }
1642
1643 static struct nft_rule *nf_tables_rule_lookup(const struct nft_chain *chain,
1644                                               const struct nlattr *nla)
1645 {
1646         if (nla == NULL)
1647                 return ERR_PTR(-EINVAL);
1648
1649         return __nf_tables_rule_lookup(chain, be64_to_cpu(nla_get_be64(nla)));
1650 }
1651
1652 static const struct nla_policy nft_rule_policy[NFTA_RULE_MAX + 1] = {
1653         [NFTA_RULE_TABLE]       = { .type = NLA_STRING },
1654         [NFTA_RULE_CHAIN]       = { .type = NLA_STRING,
1655                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
1656         [NFTA_RULE_HANDLE]      = { .type = NLA_U64 },
1657         [NFTA_RULE_EXPRESSIONS] = { .type = NLA_NESTED },
1658         [NFTA_RULE_COMPAT]      = { .type = NLA_NESTED },
1659         [NFTA_RULE_POSITION]    = { .type = NLA_U64 },
1660         [NFTA_RULE_USERDATA]    = { .type = NLA_BINARY,
1661                                     .len = NFT_USERDATA_MAXLEN },
1662 };
1663
1664 static int nf_tables_fill_rule_info(struct sk_buff *skb, struct net *net,
1665                                     u32 portid, u32 seq, int event,
1666                                     u32 flags, int family,
1667                                     const struct nft_table *table,
1668                                     const struct nft_chain *chain,
1669                                     const struct nft_rule *rule)
1670 {
1671         struct nlmsghdr *nlh;
1672         struct nfgenmsg *nfmsg;
1673         const struct nft_expr *expr, *next;
1674         struct nlattr *list;
1675         const struct nft_rule *prule;
1676         int type = event | NFNL_SUBSYS_NFTABLES << 8;
1677
1678         nlh = nlmsg_put(skb, portid, seq, type, sizeof(struct nfgenmsg),
1679                         flags);
1680         if (nlh == NULL)
1681                 goto nla_put_failure;
1682
1683         nfmsg = nlmsg_data(nlh);
1684         nfmsg->nfgen_family     = family;
1685         nfmsg->version          = NFNETLINK_V0;
1686         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
1687
1688         if (nla_put_string(skb, NFTA_RULE_TABLE, table->name))
1689                 goto nla_put_failure;
1690         if (nla_put_string(skb, NFTA_RULE_CHAIN, chain->name))
1691                 goto nla_put_failure;
1692         if (nla_put_be64(skb, NFTA_RULE_HANDLE, cpu_to_be64(rule->handle)))
1693                 goto nla_put_failure;
1694
1695         if ((event != NFT_MSG_DELRULE) && (rule->list.prev != &chain->rules)) {
1696                 prule = list_entry(rule->list.prev, struct nft_rule, list);
1697                 if (nla_put_be64(skb, NFTA_RULE_POSITION,
1698                                  cpu_to_be64(prule->handle)))
1699                         goto nla_put_failure;
1700         }
1701
1702         list = nla_nest_start(skb, NFTA_RULE_EXPRESSIONS);
1703         if (list == NULL)
1704                 goto nla_put_failure;
1705         nft_rule_for_each_expr(expr, next, rule) {
1706                 struct nlattr *elem = nla_nest_start(skb, NFTA_LIST_ELEM);
1707                 if (elem == NULL)
1708                         goto nla_put_failure;
1709                 if (nf_tables_fill_expr_info(skb, expr) < 0)
1710                         goto nla_put_failure;
1711                 nla_nest_end(skb, elem);
1712         }
1713         nla_nest_end(skb, list);
1714
1715         if (rule->udata) {
1716                 struct nft_userdata *udata = nft_userdata(rule);
1717                 if (nla_put(skb, NFTA_RULE_USERDATA, udata->len + 1,
1718                             udata->data) < 0)
1719                         goto nla_put_failure;
1720         }
1721
1722         nlmsg_end(skb, nlh);
1723         return 0;
1724
1725 nla_put_failure:
1726         nlmsg_trim(skb, nlh);
1727         return -1;
1728 }
1729
1730 static int nf_tables_rule_notify(const struct nft_ctx *ctx,
1731                                  const struct nft_rule *rule,
1732                                  int event)
1733 {
1734         struct sk_buff *skb;
1735         int err;
1736
1737         if (!ctx->report &&
1738             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
1739                 return 0;
1740
1741         err = -ENOBUFS;
1742         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1743         if (skb == NULL)
1744                 goto err;
1745
1746         err = nf_tables_fill_rule_info(skb, ctx->net, ctx->portid, ctx->seq,
1747                                        event, 0, ctx->afi->family, ctx->table,
1748                                        ctx->chain, rule);
1749         if (err < 0) {
1750                 kfree_skb(skb);
1751                 goto err;
1752         }
1753
1754         err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1755                              ctx->report, GFP_KERNEL);
1756 err:
1757         if (err < 0) {
1758                 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1759                                   err);
1760         }
1761         return err;
1762 }
1763
1764 static int nf_tables_dump_rules(struct sk_buff *skb,
1765                                 struct netlink_callback *cb)
1766 {
1767         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1768         const struct nft_af_info *afi;
1769         const struct nft_table *table;
1770         const struct nft_chain *chain;
1771         const struct nft_rule *rule;
1772         unsigned int idx = 0, s_idx = cb->args[0];
1773         struct net *net = sock_net(skb->sk);
1774         int family = nfmsg->nfgen_family;
1775
1776         rcu_read_lock();
1777         cb->seq = net->nft.base_seq;
1778
1779         list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
1780                 if (family != NFPROTO_UNSPEC && family != afi->family)
1781                         continue;
1782
1783                 list_for_each_entry_rcu(table, &afi->tables, list) {
1784                         list_for_each_entry_rcu(chain, &table->chains, list) {
1785                                 list_for_each_entry_rcu(rule, &chain->rules, list) {
1786                                         if (!nft_rule_is_active(net, rule))
1787                                                 goto cont;
1788                                         if (idx < s_idx)
1789                                                 goto cont;
1790                                         if (idx > s_idx)
1791                                                 memset(&cb->args[1], 0,
1792                                                        sizeof(cb->args) - sizeof(cb->args[0]));
1793                                         if (nf_tables_fill_rule_info(skb, net, NETLINK_CB(cb->skb).portid,
1794                                                                       cb->nlh->nlmsg_seq,
1795                                                                       NFT_MSG_NEWRULE,
1796                                                                       NLM_F_MULTI | NLM_F_APPEND,
1797                                                                       afi->family, table, chain, rule) < 0)
1798                                                 goto done;
1799
1800                                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1801 cont:
1802                                         idx++;
1803                                 }
1804                         }
1805                 }
1806         }
1807 done:
1808         rcu_read_unlock();
1809
1810         cb->args[0] = idx;
1811         return skb->len;
1812 }
1813
1814 static int nf_tables_getrule(struct sock *nlsk, struct sk_buff *skb,
1815                              const struct nlmsghdr *nlh,
1816                              const struct nlattr * const nla[])
1817 {
1818         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1819         const struct nft_af_info *afi;
1820         const struct nft_table *table;
1821         const struct nft_chain *chain;
1822         const struct nft_rule *rule;
1823         struct sk_buff *skb2;
1824         struct net *net = sock_net(skb->sk);
1825         int family = nfmsg->nfgen_family;
1826         int err;
1827
1828         if (nlh->nlmsg_flags & NLM_F_DUMP) {
1829                 struct netlink_dump_control c = {
1830                         .dump = nf_tables_dump_rules,
1831                 };
1832                 return netlink_dump_start(nlsk, skb, nlh, &c);
1833         }
1834
1835         afi = nf_tables_afinfo_lookup(net, family, false);
1836         if (IS_ERR(afi))
1837                 return PTR_ERR(afi);
1838
1839         table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
1840         if (IS_ERR(table))
1841                 return PTR_ERR(table);
1842         if (table->flags & NFT_TABLE_INACTIVE)
1843                 return -ENOENT;
1844
1845         chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1846         if (IS_ERR(chain))
1847                 return PTR_ERR(chain);
1848         if (chain->flags & NFT_CHAIN_INACTIVE)
1849                 return -ENOENT;
1850
1851         rule = nf_tables_rule_lookup(chain, nla[NFTA_RULE_HANDLE]);
1852         if (IS_ERR(rule))
1853                 return PTR_ERR(rule);
1854
1855         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1856         if (!skb2)
1857                 return -ENOMEM;
1858
1859         err = nf_tables_fill_rule_info(skb2, net, NETLINK_CB(skb).portid,
1860                                        nlh->nlmsg_seq, NFT_MSG_NEWRULE, 0,
1861                                        family, table, chain, rule);
1862         if (err < 0)
1863                 goto err;
1864
1865         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1866
1867 err:
1868         kfree_skb(skb2);
1869         return err;
1870 }
1871
1872 static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
1873                                    struct nft_rule *rule)
1874 {
1875         struct nft_expr *expr;
1876
1877         /*
1878          * Careful: some expressions might not be initialized in case this
1879          * is called on error from nf_tables_newrule().
1880          */
1881         expr = nft_expr_first(rule);
1882         while (expr->ops && expr != nft_expr_last(rule)) {
1883                 nf_tables_expr_destroy(ctx, expr);
1884                 expr = nft_expr_next(expr);
1885         }
1886         kfree(rule);
1887 }
1888
1889 #define NFT_RULE_MAXEXPRS       128
1890
1891 static struct nft_expr_info *info;
1892
1893 static int nf_tables_newrule(struct sock *nlsk, struct sk_buff *skb,
1894                              const struct nlmsghdr *nlh,
1895                              const struct nlattr * const nla[])
1896 {
1897         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1898         struct nft_af_info *afi;
1899         struct net *net = sock_net(skb->sk);
1900         struct nft_table *table;
1901         struct nft_chain *chain;
1902         struct nft_rule *rule, *old_rule = NULL;
1903         struct nft_userdata *udata;
1904         struct nft_trans *trans = NULL;
1905         struct nft_expr *expr;
1906         struct nft_ctx ctx;
1907         struct nlattr *tmp;
1908         unsigned int size, i, n, ulen = 0, usize = 0;
1909         int err, rem;
1910         bool create;
1911         u64 handle, pos_handle;
1912
1913         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1914
1915         afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
1916         if (IS_ERR(afi))
1917                 return PTR_ERR(afi);
1918
1919         table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
1920         if (IS_ERR(table))
1921                 return PTR_ERR(table);
1922
1923         chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1924         if (IS_ERR(chain))
1925                 return PTR_ERR(chain);
1926
1927         if (nla[NFTA_RULE_HANDLE]) {
1928                 handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_HANDLE]));
1929                 rule = __nf_tables_rule_lookup(chain, handle);
1930                 if (IS_ERR(rule))
1931                         return PTR_ERR(rule);
1932
1933                 if (nlh->nlmsg_flags & NLM_F_EXCL)
1934                         return -EEXIST;
1935                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1936                         old_rule = rule;
1937                 else
1938                         return -EOPNOTSUPP;
1939         } else {
1940                 if (!create || nlh->nlmsg_flags & NLM_F_REPLACE)
1941                         return -EINVAL;
1942                 handle = nf_tables_alloc_handle(table);
1943
1944                 if (chain->use == UINT_MAX)
1945                         return -EOVERFLOW;
1946         }
1947
1948         if (nla[NFTA_RULE_POSITION]) {
1949                 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1950                         return -EOPNOTSUPP;
1951
1952                 pos_handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_POSITION]));
1953                 old_rule = __nf_tables_rule_lookup(chain, pos_handle);
1954                 if (IS_ERR(old_rule))
1955                         return PTR_ERR(old_rule);
1956         }
1957
1958         nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1959
1960         n = 0;
1961         size = 0;
1962         if (nla[NFTA_RULE_EXPRESSIONS]) {
1963                 nla_for_each_nested(tmp, nla[NFTA_RULE_EXPRESSIONS], rem) {
1964                         err = -EINVAL;
1965                         if (nla_type(tmp) != NFTA_LIST_ELEM)
1966                                 goto err1;
1967                         if (n == NFT_RULE_MAXEXPRS)
1968                                 goto err1;
1969                         err = nf_tables_expr_parse(&ctx, tmp, &info[n]);
1970                         if (err < 0)
1971                                 goto err1;
1972                         size += info[n].ops->size;
1973                         n++;
1974                 }
1975         }
1976         /* Check for overflow of dlen field */
1977         err = -EFBIG;
1978         if (size >= 1 << 12)
1979                 goto err1;
1980
1981         if (nla[NFTA_RULE_USERDATA]) {
1982                 ulen = nla_len(nla[NFTA_RULE_USERDATA]);
1983                 if (ulen > 0)
1984                         usize = sizeof(struct nft_userdata) + ulen;
1985         }
1986
1987         err = -ENOMEM;
1988         rule = kzalloc(sizeof(*rule) + size + usize, GFP_KERNEL);
1989         if (rule == NULL)
1990                 goto err1;
1991
1992         nft_rule_activate_next(net, rule);
1993
1994         rule->handle = handle;
1995         rule->dlen   = size;
1996         rule->udata  = ulen ? 1 : 0;
1997
1998         if (ulen) {
1999                 udata = nft_userdata(rule);
2000                 udata->len = ulen - 1;
2001                 nla_memcpy(udata->data, nla[NFTA_RULE_USERDATA], ulen);
2002         }
2003
2004         expr = nft_expr_first(rule);
2005         for (i = 0; i < n; i++) {
2006                 err = nf_tables_newexpr(&ctx, &info[i], expr);
2007                 if (err < 0)
2008                         goto err2;
2009                 info[i].ops = NULL;
2010                 expr = nft_expr_next(expr);
2011         }
2012
2013         if (nlh->nlmsg_flags & NLM_F_REPLACE) {
2014                 if (nft_rule_is_active_next(net, old_rule)) {
2015                         trans = nft_trans_rule_add(&ctx, NFT_MSG_DELRULE,
2016                                                    old_rule);
2017                         if (trans == NULL) {
2018                                 err = -ENOMEM;
2019                                 goto err2;
2020                         }
2021                         nft_rule_deactivate_next(net, old_rule);
2022                         chain->use--;
2023                         list_add_tail_rcu(&rule->list, &old_rule->list);
2024                 } else {
2025                         err = -ENOENT;
2026                         goto err2;
2027                 }
2028         } else if (nlh->nlmsg_flags & NLM_F_APPEND)
2029                 if (old_rule)
2030                         list_add_rcu(&rule->list, &old_rule->list);
2031                 else
2032                         list_add_tail_rcu(&rule->list, &chain->rules);
2033         else {
2034                 if (old_rule)
2035                         list_add_tail_rcu(&rule->list, &old_rule->list);
2036                 else
2037                         list_add_rcu(&rule->list, &chain->rules);
2038         }
2039
2040         if (nft_trans_rule_add(&ctx, NFT_MSG_NEWRULE, rule) == NULL) {
2041                 err = -ENOMEM;
2042                 goto err3;
2043         }
2044         chain->use++;
2045         return 0;
2046
2047 err3:
2048         list_del_rcu(&rule->list);
2049 err2:
2050         nf_tables_rule_destroy(&ctx, rule);
2051 err1:
2052         for (i = 0; i < n; i++) {
2053                 if (info[i].ops != NULL)
2054                         module_put(info[i].ops->type->owner);
2055         }
2056         return err;
2057 }
2058
2059 static int nf_tables_delrule(struct sock *nlsk, struct sk_buff *skb,
2060                              const struct nlmsghdr *nlh,
2061                              const struct nlattr * const nla[])
2062 {
2063         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2064         struct nft_af_info *afi;
2065         struct net *net = sock_net(skb->sk);
2066         struct nft_table *table;
2067         struct nft_chain *chain = NULL;
2068         struct nft_rule *rule;
2069         int family = nfmsg->nfgen_family, err = 0;
2070         struct nft_ctx ctx;
2071
2072         afi = nf_tables_afinfo_lookup(net, family, false);
2073         if (IS_ERR(afi))
2074                 return PTR_ERR(afi);
2075
2076         table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
2077         if (IS_ERR(table))
2078                 return PTR_ERR(table);
2079         if (table->flags & NFT_TABLE_INACTIVE)
2080                 return -ENOENT;
2081
2082         if (nla[NFTA_RULE_CHAIN]) {
2083                 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
2084                 if (IS_ERR(chain))
2085                         return PTR_ERR(chain);
2086         }
2087
2088         nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
2089
2090         if (chain) {
2091                 if (nla[NFTA_RULE_HANDLE]) {
2092                         rule = nf_tables_rule_lookup(chain,
2093                                                      nla[NFTA_RULE_HANDLE]);
2094                         if (IS_ERR(rule))
2095                                 return PTR_ERR(rule);
2096
2097                         err = nft_delrule(&ctx, rule);
2098                 } else {
2099                         err = nft_delrule_by_chain(&ctx);
2100                 }
2101         } else {
2102                 list_for_each_entry(chain, &table->chains, list) {
2103                         ctx.chain = chain;
2104                         err = nft_delrule_by_chain(&ctx);
2105                         if (err < 0)
2106                                 break;
2107                 }
2108         }
2109
2110         return err;
2111 }
2112
2113 /*
2114  * Sets
2115  */
2116
2117 static LIST_HEAD(nf_tables_set_ops);
2118
2119 int nft_register_set(struct nft_set_ops *ops)
2120 {
2121         nfnl_lock(NFNL_SUBSYS_NFTABLES);
2122         list_add_tail_rcu(&ops->list, &nf_tables_set_ops);
2123         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2124         return 0;
2125 }
2126 EXPORT_SYMBOL_GPL(nft_register_set);
2127
2128 void nft_unregister_set(struct nft_set_ops *ops)
2129 {
2130         nfnl_lock(NFNL_SUBSYS_NFTABLES);
2131         list_del_rcu(&ops->list);
2132         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2133 }
2134 EXPORT_SYMBOL_GPL(nft_unregister_set);
2135
2136 /*
2137  * Select a set implementation based on the data characteristics and the
2138  * given policy. The total memory use might not be known if no size is
2139  * given, in that case the amount of memory per element is used.
2140  */
2141 static const struct nft_set_ops *
2142 nft_select_set_ops(const struct nlattr * const nla[],
2143                    const struct nft_set_desc *desc,
2144                    enum nft_set_policies policy)
2145 {
2146         const struct nft_set_ops *ops, *bops;
2147         struct nft_set_estimate est, best;
2148         u32 features;
2149
2150 #ifdef CONFIG_MODULES
2151         if (list_empty(&nf_tables_set_ops)) {
2152                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2153                 request_module("nft-set");
2154                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
2155                 if (!list_empty(&nf_tables_set_ops))
2156                         return ERR_PTR(-EAGAIN);
2157         }
2158 #endif
2159         features = 0;
2160         if (nla[NFTA_SET_FLAGS] != NULL) {
2161                 features = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
2162                 features &= NFT_SET_INTERVAL | NFT_SET_MAP;
2163         }
2164
2165         bops       = NULL;
2166         best.size  = ~0;
2167         best.class = ~0;
2168
2169         list_for_each_entry(ops, &nf_tables_set_ops, list) {
2170                 if ((ops->features & features) != features)
2171                         continue;
2172                 if (!ops->estimate(desc, features, &est))
2173                         continue;
2174
2175                 switch (policy) {
2176                 case NFT_SET_POL_PERFORMANCE:
2177                         if (est.class < best.class)
2178                                 break;
2179                         if (est.class == best.class && est.size < best.size)
2180                                 break;
2181                         continue;
2182                 case NFT_SET_POL_MEMORY:
2183                         if (est.size < best.size)
2184                                 break;
2185                         if (est.size == best.size && est.class < best.class)
2186                                 break;
2187                         continue;
2188                 default:
2189                         break;
2190                 }
2191
2192                 if (!try_module_get(ops->owner))
2193                         continue;
2194                 if (bops != NULL)
2195                         module_put(bops->owner);
2196
2197                 bops = ops;
2198                 best = est;
2199         }
2200
2201         if (bops != NULL)
2202                 return bops;
2203
2204         return ERR_PTR(-EOPNOTSUPP);
2205 }
2206
2207 static const struct nla_policy nft_set_policy[NFTA_SET_MAX + 1] = {
2208         [NFTA_SET_TABLE]                = { .type = NLA_STRING },
2209         [NFTA_SET_NAME]                 = { .type = NLA_STRING,
2210                                             .len = IFNAMSIZ - 1 },
2211         [NFTA_SET_FLAGS]                = { .type = NLA_U32 },
2212         [NFTA_SET_KEY_TYPE]             = { .type = NLA_U32 },
2213         [NFTA_SET_KEY_LEN]              = { .type = NLA_U32 },
2214         [NFTA_SET_DATA_TYPE]            = { .type = NLA_U32 },
2215         [NFTA_SET_DATA_LEN]             = { .type = NLA_U32 },
2216         [NFTA_SET_POLICY]               = { .type = NLA_U32 },
2217         [NFTA_SET_DESC]                 = { .type = NLA_NESTED },
2218         [NFTA_SET_ID]                   = { .type = NLA_U32 },
2219         [NFTA_SET_TIMEOUT]              = { .type = NLA_U64 },
2220         [NFTA_SET_GC_INTERVAL]          = { .type = NLA_U32 },
2221 };
2222
2223 static const struct nla_policy nft_set_desc_policy[NFTA_SET_DESC_MAX + 1] = {
2224         [NFTA_SET_DESC_SIZE]            = { .type = NLA_U32 },
2225 };
2226
2227 static int nft_ctx_init_from_setattr(struct nft_ctx *ctx,
2228                                      const struct sk_buff *skb,
2229                                      const struct nlmsghdr *nlh,
2230                                      const struct nlattr * const nla[])
2231 {
2232         struct net *net = sock_net(skb->sk);
2233         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2234         struct nft_af_info *afi = NULL;
2235         struct nft_table *table = NULL;
2236
2237         if (nfmsg->nfgen_family != NFPROTO_UNSPEC) {
2238                 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
2239                 if (IS_ERR(afi))
2240                         return PTR_ERR(afi);
2241         }
2242
2243         if (nla[NFTA_SET_TABLE] != NULL) {
2244                 if (afi == NULL)
2245                         return -EAFNOSUPPORT;
2246
2247                 table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
2248                 if (IS_ERR(table))
2249                         return PTR_ERR(table);
2250                 if (table->flags & NFT_TABLE_INACTIVE)
2251                         return -ENOENT;
2252         }
2253
2254         nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
2255         return 0;
2256 }
2257
2258 struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
2259                                      const struct nlattr *nla)
2260 {
2261         struct nft_set *set;
2262
2263         if (nla == NULL)
2264                 return ERR_PTR(-EINVAL);
2265
2266         list_for_each_entry(set, &table->sets, list) {
2267                 if (!nla_strcmp(nla, set->name))
2268                         return set;
2269         }
2270         return ERR_PTR(-ENOENT);
2271 }
2272
2273 struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
2274                                           const struct nlattr *nla)
2275 {
2276         struct nft_trans *trans;
2277         u32 id = ntohl(nla_get_be32(nla));
2278
2279         list_for_each_entry(trans, &net->nft.commit_list, list) {
2280                 if (trans->msg_type == NFT_MSG_NEWSET &&
2281                     id == nft_trans_set_id(trans))
2282                         return nft_trans_set(trans);
2283         }
2284         return ERR_PTR(-ENOENT);
2285 }
2286
2287 static int nf_tables_set_alloc_name(struct nft_ctx *ctx, struct nft_set *set,
2288                                     const char *name)
2289 {
2290         const struct nft_set *i;
2291         const char *p;
2292         unsigned long *inuse;
2293         unsigned int n = 0, min = 0;
2294
2295         p = strnchr(name, IFNAMSIZ, '%');
2296         if (p != NULL) {
2297                 if (p[1] != 'd' || strchr(p + 2, '%'))
2298                         return -EINVAL;
2299
2300                 inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL);
2301                 if (inuse == NULL)
2302                         return -ENOMEM;
2303 cont:
2304                 list_for_each_entry(i, &ctx->table->sets, list) {
2305                         int tmp;
2306
2307                         if (!sscanf(i->name, name, &tmp))
2308                                 continue;
2309                         if (tmp < min || tmp >= min + BITS_PER_BYTE * PAGE_SIZE)
2310                                 continue;
2311
2312                         set_bit(tmp - min, inuse);
2313                 }
2314
2315                 n = find_first_zero_bit(inuse, BITS_PER_BYTE * PAGE_SIZE);
2316                 if (n >= BITS_PER_BYTE * PAGE_SIZE) {
2317                         min += BITS_PER_BYTE * PAGE_SIZE;
2318                         memset(inuse, 0, PAGE_SIZE);
2319                         goto cont;
2320                 }
2321                 free_page((unsigned long)inuse);
2322         }
2323
2324         snprintf(set->name, sizeof(set->name), name, min + n);
2325         list_for_each_entry(i, &ctx->table->sets, list) {
2326                 if (!strcmp(set->name, i->name))
2327                         return -ENFILE;
2328         }
2329         return 0;
2330 }
2331
2332 static int nf_tables_fill_set(struct sk_buff *skb, const struct nft_ctx *ctx,
2333                               const struct nft_set *set, u16 event, u16 flags)
2334 {
2335         struct nfgenmsg *nfmsg;
2336         struct nlmsghdr *nlh;
2337         struct nlattr *desc;
2338         u32 portid = ctx->portid;
2339         u32 seq = ctx->seq;
2340
2341         event |= NFNL_SUBSYS_NFTABLES << 8;
2342         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2343                         flags);
2344         if (nlh == NULL)
2345                 goto nla_put_failure;
2346
2347         nfmsg = nlmsg_data(nlh);
2348         nfmsg->nfgen_family     = ctx->afi->family;
2349         nfmsg->version          = NFNETLINK_V0;
2350         nfmsg->res_id           = htons(ctx->net->nft.base_seq & 0xffff);
2351
2352         if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
2353                 goto nla_put_failure;
2354         if (nla_put_string(skb, NFTA_SET_NAME, set->name))
2355                 goto nla_put_failure;
2356         if (set->flags != 0)
2357                 if (nla_put_be32(skb, NFTA_SET_FLAGS, htonl(set->flags)))
2358                         goto nla_put_failure;
2359
2360         if (nla_put_be32(skb, NFTA_SET_KEY_TYPE, htonl(set->ktype)))
2361                 goto nla_put_failure;
2362         if (nla_put_be32(skb, NFTA_SET_KEY_LEN, htonl(set->klen)))
2363                 goto nla_put_failure;
2364         if (set->flags & NFT_SET_MAP) {
2365                 if (nla_put_be32(skb, NFTA_SET_DATA_TYPE, htonl(set->dtype)))
2366                         goto nla_put_failure;
2367                 if (nla_put_be32(skb, NFTA_SET_DATA_LEN, htonl(set->dlen)))
2368                         goto nla_put_failure;
2369         }
2370
2371         if (set->timeout &&
2372             nla_put_be64(skb, NFTA_SET_TIMEOUT, cpu_to_be64(set->timeout)))
2373                 goto nla_put_failure;
2374         if (set->gc_int &&
2375             nla_put_be32(skb, NFTA_SET_GC_INTERVAL, htonl(set->gc_int)))
2376                 goto nla_put_failure;
2377
2378         if (set->policy != NFT_SET_POL_PERFORMANCE) {
2379                 if (nla_put_be32(skb, NFTA_SET_POLICY, htonl(set->policy)))
2380                         goto nla_put_failure;
2381         }
2382
2383         desc = nla_nest_start(skb, NFTA_SET_DESC);
2384         if (desc == NULL)
2385                 goto nla_put_failure;
2386         if (set->size &&
2387             nla_put_be32(skb, NFTA_SET_DESC_SIZE, htonl(set->size)))
2388                 goto nla_put_failure;
2389         nla_nest_end(skb, desc);
2390
2391         nlmsg_end(skb, nlh);
2392         return 0;
2393
2394 nla_put_failure:
2395         nlmsg_trim(skb, nlh);
2396         return -1;
2397 }
2398
2399 static int nf_tables_set_notify(const struct nft_ctx *ctx,
2400                                 const struct nft_set *set,
2401                                 int event, gfp_t gfp_flags)
2402 {
2403         struct sk_buff *skb;
2404         u32 portid = ctx->portid;
2405         int err;
2406
2407         if (!ctx->report &&
2408             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
2409                 return 0;
2410
2411         err = -ENOBUFS;
2412         skb = nlmsg_new(NLMSG_GOODSIZE, gfp_flags);
2413         if (skb == NULL)
2414                 goto err;
2415
2416         err = nf_tables_fill_set(skb, ctx, set, event, 0);
2417         if (err < 0) {
2418                 kfree_skb(skb);
2419                 goto err;
2420         }
2421
2422         err = nfnetlink_send(skb, ctx->net, portid, NFNLGRP_NFTABLES,
2423                              ctx->report, gfp_flags);
2424 err:
2425         if (err < 0)
2426                 nfnetlink_set_err(ctx->net, portid, NFNLGRP_NFTABLES, err);
2427         return err;
2428 }
2429
2430 static int nf_tables_dump_sets(struct sk_buff *skb, struct netlink_callback *cb)
2431 {
2432         const struct nft_set *set;
2433         unsigned int idx, s_idx = cb->args[0];
2434         struct nft_af_info *afi;
2435         struct nft_table *table, *cur_table = (struct nft_table *)cb->args[2];
2436         struct net *net = sock_net(skb->sk);
2437         int cur_family = cb->args[3];
2438         struct nft_ctx *ctx = cb->data, ctx_set;
2439
2440         if (cb->args[1])
2441                 return skb->len;
2442
2443         rcu_read_lock();
2444         cb->seq = net->nft.base_seq;
2445
2446         list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
2447                 if (ctx->afi && ctx->afi != afi)
2448                         continue;
2449
2450                 if (cur_family) {
2451                         if (afi->family != cur_family)
2452                                 continue;
2453
2454                         cur_family = 0;
2455                 }
2456                 list_for_each_entry_rcu(table, &afi->tables, list) {
2457                         if (ctx->table && ctx->table != table)
2458                                 continue;
2459
2460                         if (cur_table) {
2461                                 if (cur_table != table)
2462                                         continue;
2463
2464                                 cur_table = NULL;
2465                         }
2466                         idx = 0;
2467                         list_for_each_entry_rcu(set, &table->sets, list) {
2468                                 if (idx < s_idx)
2469                                         goto cont;
2470
2471                                 ctx_set = *ctx;
2472                                 ctx_set.table = table;
2473                                 ctx_set.afi = afi;
2474                                 if (nf_tables_fill_set(skb, &ctx_set, set,
2475                                                        NFT_MSG_NEWSET,
2476                                                        NLM_F_MULTI) < 0) {
2477                                         cb->args[0] = idx;
2478                                         cb->args[2] = (unsigned long) table;
2479                                         cb->args[3] = afi->family;
2480                                         goto done;
2481                                 }
2482                                 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
2483 cont:
2484                                 idx++;
2485                         }
2486                         if (s_idx)
2487                                 s_idx = 0;
2488                 }
2489         }
2490         cb->args[1] = 1;
2491 done:
2492         rcu_read_unlock();
2493         return skb->len;
2494 }
2495
2496 static int nf_tables_dump_sets_done(struct netlink_callback *cb)
2497 {
2498         kfree(cb->data);
2499         return 0;
2500 }
2501
2502 static int nf_tables_getset(struct sock *nlsk, struct sk_buff *skb,
2503                             const struct nlmsghdr *nlh,
2504                             const struct nlattr * const nla[])
2505 {
2506         const struct nft_set *set;
2507         struct nft_ctx ctx;
2508         struct sk_buff *skb2;
2509         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2510         int err;
2511
2512         /* Verify existence before starting dump */
2513         err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2514         if (err < 0)
2515                 return err;
2516
2517         if (nlh->nlmsg_flags & NLM_F_DUMP) {
2518                 struct netlink_dump_control c = {
2519                         .dump = nf_tables_dump_sets,
2520                         .done = nf_tables_dump_sets_done,
2521                 };
2522                 struct nft_ctx *ctx_dump;
2523
2524                 ctx_dump = kmalloc(sizeof(*ctx_dump), GFP_KERNEL);
2525                 if (ctx_dump == NULL)
2526                         return -ENOMEM;
2527
2528                 *ctx_dump = ctx;
2529                 c.data = ctx_dump;
2530
2531                 return netlink_dump_start(nlsk, skb, nlh, &c);
2532         }
2533
2534         /* Only accept unspec with dump */
2535         if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2536                 return -EAFNOSUPPORT;
2537
2538         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2539         if (IS_ERR(set))
2540                 return PTR_ERR(set);
2541         if (set->flags & NFT_SET_INACTIVE)
2542                 return -ENOENT;
2543
2544         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2545         if (skb2 == NULL)
2546                 return -ENOMEM;
2547
2548         err = nf_tables_fill_set(skb2, &ctx, set, NFT_MSG_NEWSET, 0);
2549         if (err < 0)
2550                 goto err;
2551
2552         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
2553
2554 err:
2555         kfree_skb(skb2);
2556         return err;
2557 }
2558
2559 static int nf_tables_set_desc_parse(const struct nft_ctx *ctx,
2560                                     struct nft_set_desc *desc,
2561                                     const struct nlattr *nla)
2562 {
2563         struct nlattr *da[NFTA_SET_DESC_MAX + 1];
2564         int err;
2565
2566         err = nla_parse_nested(da, NFTA_SET_DESC_MAX, nla, nft_set_desc_policy);
2567         if (err < 0)
2568                 return err;
2569
2570         if (da[NFTA_SET_DESC_SIZE] != NULL)
2571                 desc->size = ntohl(nla_get_be32(da[NFTA_SET_DESC_SIZE]));
2572
2573         return 0;
2574 }
2575
2576 static int nf_tables_newset(struct sock *nlsk, struct sk_buff *skb,
2577                             const struct nlmsghdr *nlh,
2578                             const struct nlattr * const nla[])
2579 {
2580         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2581         const struct nft_set_ops *ops;
2582         struct nft_af_info *afi;
2583         struct net *net = sock_net(skb->sk);
2584         struct nft_table *table;
2585         struct nft_set *set;
2586         struct nft_ctx ctx;
2587         char name[IFNAMSIZ];
2588         unsigned int size;
2589         bool create;
2590         u64 timeout;
2591         u32 ktype, dtype, flags, policy, gc_int;
2592         struct nft_set_desc desc;
2593         int err;
2594
2595         if (nla[NFTA_SET_TABLE] == NULL ||
2596             nla[NFTA_SET_NAME] == NULL ||
2597             nla[NFTA_SET_KEY_LEN] == NULL ||
2598             nla[NFTA_SET_ID] == NULL)
2599                 return -EINVAL;
2600
2601         memset(&desc, 0, sizeof(desc));
2602
2603         ktype = NFT_DATA_VALUE;
2604         if (nla[NFTA_SET_KEY_TYPE] != NULL) {
2605                 ktype = ntohl(nla_get_be32(nla[NFTA_SET_KEY_TYPE]));
2606                 if ((ktype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK)
2607                         return -EINVAL;
2608         }
2609
2610         desc.klen = ntohl(nla_get_be32(nla[NFTA_SET_KEY_LEN]));
2611         if (desc.klen == 0 || desc.klen > FIELD_SIZEOF(struct nft_data, data))
2612                 return -EINVAL;
2613
2614         flags = 0;
2615         if (nla[NFTA_SET_FLAGS] != NULL) {
2616                 flags = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
2617                 if (flags & ~(NFT_SET_ANONYMOUS | NFT_SET_CONSTANT |
2618                               NFT_SET_INTERVAL | NFT_SET_MAP |
2619                               NFT_SET_TIMEOUT))
2620                         return -EINVAL;
2621         }
2622
2623         dtype = 0;
2624         if (nla[NFTA_SET_DATA_TYPE] != NULL) {
2625                 if (!(flags & NFT_SET_MAP))
2626                         return -EINVAL;
2627
2628                 dtype = ntohl(nla_get_be32(nla[NFTA_SET_DATA_TYPE]));
2629                 if ((dtype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK &&
2630                     dtype != NFT_DATA_VERDICT)
2631                         return -EINVAL;
2632
2633                 if (dtype != NFT_DATA_VERDICT) {
2634                         if (nla[NFTA_SET_DATA_LEN] == NULL)
2635                                 return -EINVAL;
2636                         desc.dlen = ntohl(nla_get_be32(nla[NFTA_SET_DATA_LEN]));
2637                         if (desc.dlen == 0 ||
2638                             desc.dlen > FIELD_SIZEOF(struct nft_data, data))
2639                                 return -EINVAL;
2640                 } else
2641                         desc.dlen = sizeof(struct nft_data);
2642         } else if (flags & NFT_SET_MAP)
2643                 return -EINVAL;
2644
2645         timeout = 0;
2646         if (nla[NFTA_SET_TIMEOUT] != NULL) {
2647                 if (!(flags & NFT_SET_TIMEOUT))
2648                         return -EINVAL;
2649                 timeout = be64_to_cpu(nla_get_be64(nla[NFTA_SET_TIMEOUT]));
2650         }
2651         gc_int = 0;
2652         if (nla[NFTA_SET_GC_INTERVAL] != NULL) {
2653                 if (!(flags & NFT_SET_TIMEOUT))
2654                         return -EINVAL;
2655                 gc_int = ntohl(nla_get_be32(nla[NFTA_SET_GC_INTERVAL]));
2656         }
2657
2658         policy = NFT_SET_POL_PERFORMANCE;
2659         if (nla[NFTA_SET_POLICY] != NULL)
2660                 policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY]));
2661
2662         if (nla[NFTA_SET_DESC] != NULL) {
2663                 err = nf_tables_set_desc_parse(&ctx, &desc, nla[NFTA_SET_DESC]);
2664                 if (err < 0)
2665                         return err;
2666         }
2667
2668         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
2669
2670         afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
2671         if (IS_ERR(afi))
2672                 return PTR_ERR(afi);
2673
2674         table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
2675         if (IS_ERR(table))
2676                 return PTR_ERR(table);
2677
2678         nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
2679
2680         set = nf_tables_set_lookup(table, nla[NFTA_SET_NAME]);
2681         if (IS_ERR(set)) {
2682                 if (PTR_ERR(set) != -ENOENT)
2683                         return PTR_ERR(set);
2684                 set = NULL;
2685         }
2686
2687         if (set != NULL) {
2688                 if (nlh->nlmsg_flags & NLM_F_EXCL)
2689                         return -EEXIST;
2690                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2691                         return -EOPNOTSUPP;
2692                 return 0;
2693         }
2694
2695         if (!(nlh->nlmsg_flags & NLM_F_CREATE))
2696                 return -ENOENT;
2697
2698         ops = nft_select_set_ops(nla, &desc, policy);
2699         if (IS_ERR(ops))
2700                 return PTR_ERR(ops);
2701
2702         size = 0;
2703         if (ops->privsize != NULL)
2704                 size = ops->privsize(nla);
2705
2706         err = -ENOMEM;
2707         set = kzalloc(sizeof(*set) + size, GFP_KERNEL);
2708         if (set == NULL)
2709                 goto err1;
2710
2711         nla_strlcpy(name, nla[NFTA_SET_NAME], sizeof(set->name));
2712         err = nf_tables_set_alloc_name(&ctx, set, name);
2713         if (err < 0)
2714                 goto err2;
2715
2716         INIT_LIST_HEAD(&set->bindings);
2717         write_pnet(&set->pnet, net);
2718         set->ops   = ops;
2719         set->ktype = ktype;
2720         set->klen  = desc.klen;
2721         set->dtype = dtype;
2722         set->dlen  = desc.dlen;
2723         set->flags = flags;
2724         set->size  = desc.size;
2725         set->policy = policy;
2726         set->timeout = timeout;
2727         set->gc_int = gc_int;
2728
2729         err = ops->init(set, &desc, nla);
2730         if (err < 0)
2731                 goto err2;
2732
2733         err = nft_trans_set_add(&ctx, NFT_MSG_NEWSET, set);
2734         if (err < 0)
2735                 goto err2;
2736
2737         list_add_tail_rcu(&set->list, &table->sets);
2738         table->use++;
2739         return 0;
2740
2741 err2:
2742         kfree(set);
2743 err1:
2744         module_put(ops->owner);
2745         return err;
2746 }
2747
2748 static void nft_set_destroy(struct nft_set *set)
2749 {
2750         set->ops->destroy(set);
2751         module_put(set->ops->owner);
2752         kfree(set);
2753 }
2754
2755 static void nf_tables_set_destroy(const struct nft_ctx *ctx, struct nft_set *set)
2756 {
2757         list_del_rcu(&set->list);
2758         nf_tables_set_notify(ctx, set, NFT_MSG_DELSET, GFP_ATOMIC);
2759         nft_set_destroy(set);
2760 }
2761
2762 static int nf_tables_delset(struct sock *nlsk, struct sk_buff *skb,
2763                             const struct nlmsghdr *nlh,
2764                             const struct nlattr * const nla[])
2765 {
2766         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2767         struct nft_set *set;
2768         struct nft_ctx ctx;
2769         int err;
2770
2771         if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2772                 return -EAFNOSUPPORT;
2773         if (nla[NFTA_SET_TABLE] == NULL)
2774                 return -EINVAL;
2775
2776         err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2777         if (err < 0)
2778                 return err;
2779
2780         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2781         if (IS_ERR(set))
2782                 return PTR_ERR(set);
2783         if (set->flags & NFT_SET_INACTIVE)
2784                 return -ENOENT;
2785         if (!list_empty(&set->bindings))
2786                 return -EBUSY;
2787
2788         return nft_delset(&ctx, set);
2789 }
2790
2791 static int nf_tables_bind_check_setelem(const struct nft_ctx *ctx,
2792                                         const struct nft_set *set,
2793                                         const struct nft_set_iter *iter,
2794                                         const struct nft_set_elem *elem)
2795 {
2796         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
2797         enum nft_registers dreg;
2798
2799         dreg = nft_type_to_reg(set->dtype);
2800         return nft_validate_data_load(ctx, dreg, nft_set_ext_data(ext),
2801                                       set->dtype == NFT_DATA_VERDICT ?
2802                                       NFT_DATA_VERDICT : NFT_DATA_VALUE);
2803 }
2804
2805 int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
2806                        struct nft_set_binding *binding)
2807 {
2808         struct nft_set_binding *i;
2809         struct nft_set_iter iter;
2810
2811         if (!list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS)
2812                 return -EBUSY;
2813
2814         if (set->flags & NFT_SET_MAP) {
2815                 /* If the set is already bound to the same chain all
2816                  * jumps are already validated for that chain.
2817                  */
2818                 list_for_each_entry(i, &set->bindings, list) {
2819                         if (i->chain == binding->chain)
2820                                 goto bind;
2821                 }
2822
2823                 iter.skip       = 0;
2824                 iter.count      = 0;
2825                 iter.err        = 0;
2826                 iter.fn         = nf_tables_bind_check_setelem;
2827
2828                 set->ops->walk(ctx, set, &iter);
2829                 if (iter.err < 0) {
2830                         /* Destroy anonymous sets if binding fails */
2831                         if (set->flags & NFT_SET_ANONYMOUS)
2832                                 nf_tables_set_destroy(ctx, set);
2833
2834                         return iter.err;
2835                 }
2836         }
2837 bind:
2838         binding->chain = ctx->chain;
2839         list_add_tail_rcu(&binding->list, &set->bindings);
2840         return 0;
2841 }
2842
2843 void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
2844                           struct nft_set_binding *binding)
2845 {
2846         list_del_rcu(&binding->list);
2847
2848         if (list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS &&
2849             !(set->flags & NFT_SET_INACTIVE))
2850                 nf_tables_set_destroy(ctx, set);
2851 }
2852
2853 const struct nft_set_ext_type nft_set_ext_types[] = {
2854         [NFT_SET_EXT_KEY]               = {
2855                 .len    = sizeof(struct nft_data),
2856                 .align  = __alignof__(struct nft_data),
2857         },
2858         [NFT_SET_EXT_DATA]              = {
2859                 .len    = sizeof(struct nft_data),
2860                 .align  = __alignof__(struct nft_data),
2861         },
2862         [NFT_SET_EXT_FLAGS]             = {
2863                 .len    = sizeof(u8),
2864                 .align  = __alignof__(u8),
2865         },
2866         [NFT_SET_EXT_TIMEOUT]           = {
2867                 .len    = sizeof(u64),
2868                 .align  = __alignof__(u64),
2869         },
2870         [NFT_SET_EXT_EXPIRATION]        = {
2871                 .len    = sizeof(unsigned long),
2872                 .align  = __alignof__(unsigned long),
2873         },
2874 };
2875 EXPORT_SYMBOL_GPL(nft_set_ext_types);
2876
2877 /*
2878  * Set elements
2879  */
2880
2881 static const struct nla_policy nft_set_elem_policy[NFTA_SET_ELEM_MAX + 1] = {
2882         [NFTA_SET_ELEM_KEY]             = { .type = NLA_NESTED },
2883         [NFTA_SET_ELEM_DATA]            = { .type = NLA_NESTED },
2884         [NFTA_SET_ELEM_FLAGS]           = { .type = NLA_U32 },
2885         [NFTA_SET_ELEM_TIMEOUT]         = { .type = NLA_U64 },
2886 };
2887
2888 static const struct nla_policy nft_set_elem_list_policy[NFTA_SET_ELEM_LIST_MAX + 1] = {
2889         [NFTA_SET_ELEM_LIST_TABLE]      = { .type = NLA_STRING },
2890         [NFTA_SET_ELEM_LIST_SET]        = { .type = NLA_STRING },
2891         [NFTA_SET_ELEM_LIST_ELEMENTS]   = { .type = NLA_NESTED },
2892         [NFTA_SET_ELEM_LIST_SET_ID]     = { .type = NLA_U32 },
2893 };
2894
2895 static int nft_ctx_init_from_elemattr(struct nft_ctx *ctx,
2896                                       const struct sk_buff *skb,
2897                                       const struct nlmsghdr *nlh,
2898                                       const struct nlattr * const nla[],
2899                                       bool trans)
2900 {
2901         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2902         struct nft_af_info *afi;
2903         struct nft_table *table;
2904         struct net *net = sock_net(skb->sk);
2905
2906         afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
2907         if (IS_ERR(afi))
2908                 return PTR_ERR(afi);
2909
2910         table = nf_tables_table_lookup(afi, nla[NFTA_SET_ELEM_LIST_TABLE]);
2911         if (IS_ERR(table))
2912                 return PTR_ERR(table);
2913         if (!trans && (table->flags & NFT_TABLE_INACTIVE))
2914                 return -ENOENT;
2915
2916         nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
2917         return 0;
2918 }
2919
2920 static int nf_tables_fill_setelem(struct sk_buff *skb,
2921                                   const struct nft_set *set,
2922                                   const struct nft_set_elem *elem)
2923 {
2924         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
2925         unsigned char *b = skb_tail_pointer(skb);
2926         struct nlattr *nest;
2927
2928         nest = nla_nest_start(skb, NFTA_LIST_ELEM);
2929         if (nest == NULL)
2930                 goto nla_put_failure;
2931
2932         if (nft_data_dump(skb, NFTA_SET_ELEM_KEY, nft_set_ext_key(ext),
2933                           NFT_DATA_VALUE, set->klen) < 0)
2934                 goto nla_put_failure;
2935
2936         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA) &&
2937             nft_data_dump(skb, NFTA_SET_ELEM_DATA, nft_set_ext_data(ext),
2938                           set->dtype == NFT_DATA_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE,
2939                           set->dlen) < 0)
2940                 goto nla_put_failure;
2941
2942         if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
2943             nla_put_be32(skb, NFTA_SET_ELEM_FLAGS,
2944                          htonl(*nft_set_ext_flags(ext))))
2945                 goto nla_put_failure;
2946
2947         if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT) &&
2948             nla_put_be64(skb, NFTA_SET_ELEM_TIMEOUT,
2949                          cpu_to_be64(*nft_set_ext_timeout(ext))))
2950                 goto nla_put_failure;
2951
2952         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
2953                 unsigned long expires, now = jiffies;
2954
2955                 expires = *nft_set_ext_expiration(ext);
2956                 if (time_before(now, expires))
2957                         expires -= now;
2958                 else
2959                         expires = 0;
2960
2961                 if (nla_put_be64(skb, NFTA_SET_ELEM_EXPIRATION,
2962                                  cpu_to_be64(jiffies_to_msecs(expires))))
2963                         goto nla_put_failure;
2964         }
2965
2966         nla_nest_end(skb, nest);
2967         return 0;
2968
2969 nla_put_failure:
2970         nlmsg_trim(skb, b);
2971         return -EMSGSIZE;
2972 }
2973
2974 struct nft_set_dump_args {
2975         const struct netlink_callback   *cb;
2976         struct nft_set_iter             iter;
2977         struct sk_buff                  *skb;
2978 };
2979
2980 static int nf_tables_dump_setelem(const struct nft_ctx *ctx,
2981                                   const struct nft_set *set,
2982                                   const struct nft_set_iter *iter,
2983                                   const struct nft_set_elem *elem)
2984 {
2985         struct nft_set_dump_args *args;
2986
2987         args = container_of(iter, struct nft_set_dump_args, iter);
2988         return nf_tables_fill_setelem(args->skb, set, elem);
2989 }
2990
2991 static int nf_tables_dump_set(struct sk_buff *skb, struct netlink_callback *cb)
2992 {
2993         const struct nft_set *set;
2994         struct nft_set_dump_args args;
2995         struct nft_ctx ctx;
2996         struct nlattr *nla[NFTA_SET_ELEM_LIST_MAX + 1];
2997         struct nfgenmsg *nfmsg;
2998         struct nlmsghdr *nlh;
2999         struct nlattr *nest;
3000         u32 portid, seq;
3001         int event, err;
3002
3003         err = nlmsg_parse(cb->nlh, sizeof(struct nfgenmsg), nla,
3004                           NFTA_SET_ELEM_LIST_MAX, nft_set_elem_list_policy);
3005         if (err < 0)
3006                 return err;
3007
3008         err = nft_ctx_init_from_elemattr(&ctx, cb->skb, cb->nlh, (void *)nla,
3009                                          false);
3010         if (err < 0)
3011                 return err;
3012
3013         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3014         if (IS_ERR(set))
3015                 return PTR_ERR(set);
3016         if (set->flags & NFT_SET_INACTIVE)
3017                 return -ENOENT;
3018
3019         event  = NFT_MSG_NEWSETELEM;
3020         event |= NFNL_SUBSYS_NFTABLES << 8;
3021         portid = NETLINK_CB(cb->skb).portid;
3022         seq    = cb->nlh->nlmsg_seq;
3023
3024         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3025                         NLM_F_MULTI);
3026         if (nlh == NULL)
3027                 goto nla_put_failure;
3028
3029         nfmsg = nlmsg_data(nlh);
3030         nfmsg->nfgen_family = ctx.afi->family;
3031         nfmsg->version      = NFNETLINK_V0;
3032         nfmsg->res_id       = htons(ctx.net->nft.base_seq & 0xffff);
3033
3034         if (nla_put_string(skb, NFTA_SET_ELEM_LIST_TABLE, ctx.table->name))
3035                 goto nla_put_failure;
3036         if (nla_put_string(skb, NFTA_SET_ELEM_LIST_SET, set->name))
3037                 goto nla_put_failure;
3038
3039         nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3040         if (nest == NULL)
3041                 goto nla_put_failure;
3042
3043         args.cb         = cb;
3044         args.skb        = skb;
3045         args.iter.skip  = cb->args[0];
3046         args.iter.count = 0;
3047         args.iter.err   = 0;
3048         args.iter.fn    = nf_tables_dump_setelem;
3049         set->ops->walk(&ctx, set, &args.iter);
3050
3051         nla_nest_end(skb, nest);
3052         nlmsg_end(skb, nlh);
3053
3054         if (args.iter.err && args.iter.err != -EMSGSIZE)
3055                 return args.iter.err;
3056         if (args.iter.count == cb->args[0])
3057                 return 0;
3058
3059         cb->args[0] = args.iter.count;
3060         return skb->len;
3061
3062 nla_put_failure:
3063         return -ENOSPC;
3064 }
3065
3066 static int nf_tables_getsetelem(struct sock *nlsk, struct sk_buff *skb,
3067                                 const struct nlmsghdr *nlh,
3068                                 const struct nlattr * const nla[])
3069 {
3070         const struct nft_set *set;
3071         struct nft_ctx ctx;
3072         int err;
3073
3074         err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
3075         if (err < 0)
3076                 return err;
3077
3078         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3079         if (IS_ERR(set))
3080                 return PTR_ERR(set);
3081         if (set->flags & NFT_SET_INACTIVE)
3082                 return -ENOENT;
3083
3084         if (nlh->nlmsg_flags & NLM_F_DUMP) {
3085                 struct netlink_dump_control c = {
3086                         .dump = nf_tables_dump_set,
3087                 };
3088                 return netlink_dump_start(nlsk, skb, nlh, &c);
3089         }
3090         return -EOPNOTSUPP;
3091 }
3092
3093 static int nf_tables_fill_setelem_info(struct sk_buff *skb,
3094                                        const struct nft_ctx *ctx, u32 seq,
3095                                        u32 portid, int event, u16 flags,
3096                                        const struct nft_set *set,
3097                                        const struct nft_set_elem *elem)
3098 {
3099         struct nfgenmsg *nfmsg;
3100         struct nlmsghdr *nlh;
3101         struct nlattr *nest;
3102         int err;
3103
3104         event |= NFNL_SUBSYS_NFTABLES << 8;
3105         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3106                         flags);
3107         if (nlh == NULL)
3108                 goto nla_put_failure;
3109
3110         nfmsg = nlmsg_data(nlh);
3111         nfmsg->nfgen_family     = ctx->afi->family;
3112         nfmsg->version          = NFNETLINK_V0;
3113         nfmsg->res_id           = htons(ctx->net->nft.base_seq & 0xffff);
3114
3115         if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
3116                 goto nla_put_failure;
3117         if (nla_put_string(skb, NFTA_SET_NAME, set->name))
3118                 goto nla_put_failure;
3119
3120         nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3121         if (nest == NULL)
3122                 goto nla_put_failure;
3123
3124         err = nf_tables_fill_setelem(skb, set, elem);
3125         if (err < 0)
3126                 goto nla_put_failure;
3127
3128         nla_nest_end(skb, nest);
3129
3130         nlmsg_end(skb, nlh);
3131         return 0;
3132
3133 nla_put_failure:
3134         nlmsg_trim(skb, nlh);
3135         return -1;
3136 }
3137
3138 static int nf_tables_setelem_notify(const struct nft_ctx *ctx,
3139                                     const struct nft_set *set,
3140                                     const struct nft_set_elem *elem,
3141                                     int event, u16 flags)
3142 {
3143         struct net *net = ctx->net;
3144         u32 portid = ctx->portid;
3145         struct sk_buff *skb;
3146         int err;
3147
3148         if (!ctx->report && !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
3149                 return 0;
3150
3151         err = -ENOBUFS;
3152         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3153         if (skb == NULL)
3154                 goto err;
3155
3156         err = nf_tables_fill_setelem_info(skb, ctx, 0, portid, event, flags,
3157                                           set, elem);
3158         if (err < 0) {
3159                 kfree_skb(skb);
3160                 goto err;
3161         }
3162
3163         err = nfnetlink_send(skb, net, portid, NFNLGRP_NFTABLES, ctx->report,
3164                              GFP_KERNEL);
3165 err:
3166         if (err < 0)
3167                 nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, err);
3168         return err;
3169 }
3170
3171 static struct nft_trans *nft_trans_elem_alloc(struct nft_ctx *ctx,
3172                                               int msg_type,
3173                                               struct nft_set *set)
3174 {
3175         struct nft_trans *trans;
3176
3177         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_elem));
3178         if (trans == NULL)
3179                 return NULL;
3180
3181         nft_trans_elem_set(trans) = set;
3182         return trans;
3183 }
3184
3185 static void *nft_set_elem_init(const struct nft_set *set,
3186                                const struct nft_set_ext_tmpl *tmpl,
3187                                const struct nft_data *key,
3188                                const struct nft_data *data,
3189                                u64 timeout, gfp_t gfp)
3190 {
3191         struct nft_set_ext *ext;
3192         void *elem;
3193
3194         elem = kzalloc(set->ops->elemsize + tmpl->len, gfp);
3195         if (elem == NULL)
3196                 return NULL;
3197
3198         ext = nft_set_elem_ext(set, elem);
3199         nft_set_ext_init(ext, tmpl);
3200
3201         memcpy(nft_set_ext_key(ext), key, set->klen);
3202         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3203                 memcpy(nft_set_ext_data(ext), data, set->dlen);
3204         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION))
3205                 *nft_set_ext_expiration(ext) =
3206                         jiffies + msecs_to_jiffies(timeout);
3207         if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT))
3208                 *nft_set_ext_timeout(ext) = timeout;
3209
3210         return elem;
3211 }
3212
3213 void nft_set_elem_destroy(const struct nft_set *set, void *elem)
3214 {
3215         struct nft_set_ext *ext = nft_set_elem_ext(set, elem);
3216
3217         nft_data_uninit(nft_set_ext_key(ext), NFT_DATA_VALUE);
3218         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3219                 nft_data_uninit(nft_set_ext_data(ext), set->dtype);
3220
3221         kfree(elem);
3222 }
3223 EXPORT_SYMBOL_GPL(nft_set_elem_destroy);
3224
3225 static int nft_add_set_elem(struct nft_ctx *ctx, struct nft_set *set,
3226                             const struct nlattr *attr)
3227 {
3228         struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3229         struct nft_data_desc d1, d2;
3230         struct nft_set_ext_tmpl tmpl;
3231         struct nft_set_ext *ext;
3232         struct nft_set_elem elem;
3233         struct nft_set_binding *binding;
3234         struct nft_data data;
3235         enum nft_registers dreg;
3236         struct nft_trans *trans;
3237         u64 timeout;
3238         u32 flags;
3239         int err;
3240
3241         if (set->size && set->nelems == set->size)
3242                 return -ENFILE;
3243
3244         err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3245                                nft_set_elem_policy);
3246         if (err < 0)
3247                 return err;
3248
3249         if (nla[NFTA_SET_ELEM_KEY] == NULL)
3250                 return -EINVAL;
3251
3252         nft_set_ext_prepare(&tmpl);
3253
3254         flags = 0;
3255         if (nla[NFTA_SET_ELEM_FLAGS] != NULL) {
3256                 flags = ntohl(nla_get_be32(nla[NFTA_SET_ELEM_FLAGS]));
3257                 if (flags & ~NFT_SET_ELEM_INTERVAL_END)
3258                         return -EINVAL;
3259                 if (!(set->flags & NFT_SET_INTERVAL) &&
3260                     flags & NFT_SET_ELEM_INTERVAL_END)
3261                         return -EINVAL;
3262                 if (flags != 0)
3263                         nft_set_ext_add(&tmpl, NFT_SET_EXT_FLAGS);
3264         }
3265
3266         if (set->flags & NFT_SET_MAP) {
3267                 if (nla[NFTA_SET_ELEM_DATA] == NULL &&
3268                     !(flags & NFT_SET_ELEM_INTERVAL_END))
3269                         return -EINVAL;
3270                 if (nla[NFTA_SET_ELEM_DATA] != NULL &&
3271                     flags & NFT_SET_ELEM_INTERVAL_END)
3272                         return -EINVAL;
3273         } else {
3274                 if (nla[NFTA_SET_ELEM_DATA] != NULL)
3275                         return -EINVAL;
3276         }
3277
3278         timeout = 0;
3279         if (nla[NFTA_SET_ELEM_TIMEOUT] != NULL) {
3280                 if (!(set->flags & NFT_SET_TIMEOUT))
3281                         return -EINVAL;
3282                 timeout = be64_to_cpu(nla_get_be64(nla[NFTA_SET_ELEM_TIMEOUT]));
3283         } else if (set->flags & NFT_SET_TIMEOUT) {
3284                 timeout = set->timeout;
3285         }
3286
3287         err = nft_data_init(ctx, &elem.key, &d1, nla[NFTA_SET_ELEM_KEY]);
3288         if (err < 0)
3289                 goto err1;
3290         err = -EINVAL;
3291         if (d1.type != NFT_DATA_VALUE || d1.len != set->klen)
3292                 goto err2;
3293
3294         nft_set_ext_add(&tmpl, NFT_SET_EXT_KEY);
3295         if (timeout > 0) {
3296                 nft_set_ext_add(&tmpl, NFT_SET_EXT_EXPIRATION);
3297                 if (timeout != set->timeout)
3298                         nft_set_ext_add(&tmpl, NFT_SET_EXT_TIMEOUT);
3299         }
3300
3301         if (nla[NFTA_SET_ELEM_DATA] != NULL) {
3302                 err = nft_data_init(ctx, &data, &d2, nla[NFTA_SET_ELEM_DATA]);
3303                 if (err < 0)
3304                         goto err2;
3305
3306                 err = -EINVAL;
3307                 if (set->dtype != NFT_DATA_VERDICT && d2.len != set->dlen)
3308                         goto err3;
3309
3310                 dreg = nft_type_to_reg(set->dtype);
3311                 list_for_each_entry(binding, &set->bindings, list) {
3312                         struct nft_ctx bind_ctx = {
3313                                 .afi    = ctx->afi,
3314                                 .table  = ctx->table,
3315                                 .chain  = (struct nft_chain *)binding->chain,
3316                         };
3317
3318                         err = nft_validate_data_load(&bind_ctx, dreg,
3319                                                      &data, d2.type);
3320                         if (err < 0)
3321                                 goto err3;
3322                 }
3323
3324                 nft_set_ext_add(&tmpl, NFT_SET_EXT_DATA);
3325         }
3326
3327         err = -ENOMEM;
3328         elem.priv = nft_set_elem_init(set, &tmpl, &elem.key, &data,
3329                                       timeout, GFP_KERNEL);
3330         if (elem.priv == NULL)
3331                 goto err3;
3332
3333         ext = nft_set_elem_ext(set, elem.priv);
3334         if (flags)
3335                 *nft_set_ext_flags(ext) = flags;
3336
3337         trans = nft_trans_elem_alloc(ctx, NFT_MSG_NEWSETELEM, set);
3338         if (trans == NULL)
3339                 goto err4;
3340
3341         ext->genmask = nft_genmask_cur(ctx->net);
3342         err = set->ops->insert(set, &elem);
3343         if (err < 0)
3344                 goto err5;
3345
3346         nft_trans_elem(trans) = elem;
3347         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
3348         return 0;
3349
3350 err5:
3351         kfree(trans);
3352 err4:
3353         kfree(elem.priv);
3354 err3:
3355         if (nla[NFTA_SET_ELEM_DATA] != NULL)
3356                 nft_data_uninit(&data, d2.type);
3357 err2:
3358         nft_data_uninit(&elem.key, d1.type);
3359 err1:
3360         return err;
3361 }
3362
3363 static int nf_tables_newsetelem(struct sock *nlsk, struct sk_buff *skb,
3364                                 const struct nlmsghdr *nlh,
3365                                 const struct nlattr * const nla[])
3366 {
3367         struct net *net = sock_net(skb->sk);
3368         const struct nlattr *attr;
3369         struct nft_set *set;
3370         struct nft_ctx ctx;
3371         int rem, err = 0;
3372
3373         if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL)
3374                 return -EINVAL;
3375
3376         err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, true);
3377         if (err < 0)
3378                 return err;
3379
3380         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3381         if (IS_ERR(set)) {
3382                 if (nla[NFTA_SET_ELEM_LIST_SET_ID]) {
3383                         set = nf_tables_set_lookup_byid(net,
3384                                         nla[NFTA_SET_ELEM_LIST_SET_ID]);
3385                 }
3386                 if (IS_ERR(set))
3387                         return PTR_ERR(set);
3388         }
3389
3390         if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3391                 return -EBUSY;
3392
3393         nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3394                 err = nft_add_set_elem(&ctx, set, attr);
3395                 if (err < 0)
3396                         break;
3397
3398                 set->nelems++;
3399         }
3400         return err;
3401 }
3402
3403 static int nft_del_setelem(struct nft_ctx *ctx, struct nft_set *set,
3404                            const struct nlattr *attr)
3405 {
3406         struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3407         struct nft_data_desc desc;
3408         struct nft_set_elem elem;
3409         struct nft_trans *trans;
3410         int err;
3411
3412         err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3413                                nft_set_elem_policy);
3414         if (err < 0)
3415                 goto err1;
3416
3417         err = -EINVAL;
3418         if (nla[NFTA_SET_ELEM_KEY] == NULL)
3419                 goto err1;
3420
3421         err = nft_data_init(ctx, &elem.key, &desc, nla[NFTA_SET_ELEM_KEY]);
3422         if (err < 0)
3423                 goto err1;
3424
3425         err = -EINVAL;
3426         if (desc.type != NFT_DATA_VALUE || desc.len != set->klen)
3427                 goto err2;
3428
3429         trans = nft_trans_elem_alloc(ctx, NFT_MSG_DELSETELEM, set);
3430         if (trans == NULL) {
3431                 err = -ENOMEM;
3432                 goto err2;
3433         }
3434
3435         elem.priv = set->ops->deactivate(set, &elem);
3436         if (elem.priv == NULL) {
3437                 err = -ENOENT;
3438                 goto err3;
3439         }
3440
3441         nft_trans_elem(trans) = elem;
3442         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
3443         return 0;
3444
3445 err3:
3446         kfree(trans);
3447 err2:
3448         nft_data_uninit(&elem.key, desc.type);
3449 err1:
3450         return err;
3451 }
3452
3453 static int nf_tables_delsetelem(struct sock *nlsk, struct sk_buff *skb,
3454                                 const struct nlmsghdr *nlh,
3455                                 const struct nlattr * const nla[])
3456 {
3457         const struct nlattr *attr;
3458         struct nft_set *set;
3459         struct nft_ctx ctx;
3460         int rem, err = 0;
3461
3462         if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL)
3463                 return -EINVAL;
3464
3465         err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
3466         if (err < 0)
3467                 return err;
3468
3469         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3470         if (IS_ERR(set))
3471                 return PTR_ERR(set);
3472         if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3473                 return -EBUSY;
3474
3475         nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3476                 err = nft_del_setelem(&ctx, set, attr);
3477                 if (err < 0)
3478                         break;
3479
3480                 set->nelems--;
3481         }
3482         return err;
3483 }
3484
3485 static int nf_tables_fill_gen_info(struct sk_buff *skb, struct net *net,
3486                                    u32 portid, u32 seq)
3487 {
3488         struct nlmsghdr *nlh;
3489         struct nfgenmsg *nfmsg;
3490         int event = (NFNL_SUBSYS_NFTABLES << 8) | NFT_MSG_NEWGEN;
3491
3492         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), 0);
3493         if (nlh == NULL)
3494                 goto nla_put_failure;
3495
3496         nfmsg = nlmsg_data(nlh);
3497         nfmsg->nfgen_family     = AF_UNSPEC;
3498         nfmsg->version          = NFNETLINK_V0;
3499         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
3500
3501         if (nla_put_be32(skb, NFTA_GEN_ID, htonl(net->nft.base_seq)))
3502                 goto nla_put_failure;
3503
3504         nlmsg_end(skb, nlh);
3505         return 0;
3506
3507 nla_put_failure:
3508         nlmsg_trim(skb, nlh);
3509         return -EMSGSIZE;
3510 }
3511
3512 static int nf_tables_gen_notify(struct net *net, struct sk_buff *skb, int event)
3513 {
3514         struct nlmsghdr *nlh = nlmsg_hdr(skb);
3515         struct sk_buff *skb2;
3516         int err;
3517
3518         if (nlmsg_report(nlh) &&
3519             !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
3520                 return 0;
3521
3522         err = -ENOBUFS;
3523         skb2 = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3524         if (skb2 == NULL)
3525                 goto err;
3526
3527         err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
3528                                       nlh->nlmsg_seq);
3529         if (err < 0) {
3530                 kfree_skb(skb2);
3531                 goto err;
3532         }
3533
3534         err = nfnetlink_send(skb2, net, NETLINK_CB(skb).portid,
3535                              NFNLGRP_NFTABLES, nlmsg_report(nlh), GFP_KERNEL);
3536 err:
3537         if (err < 0) {
3538                 nfnetlink_set_err(net, NETLINK_CB(skb).portid, NFNLGRP_NFTABLES,
3539                                   err);
3540         }
3541         return err;
3542 }
3543
3544 static int nf_tables_getgen(struct sock *nlsk, struct sk_buff *skb,
3545                             const struct nlmsghdr *nlh,
3546                             const struct nlattr * const nla[])
3547 {
3548         struct net *net = sock_net(skb->sk);
3549         struct sk_buff *skb2;
3550         int err;
3551
3552         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
3553         if (skb2 == NULL)
3554                 return -ENOMEM;
3555
3556         err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
3557                                       nlh->nlmsg_seq);
3558         if (err < 0)
3559                 goto err;
3560
3561         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
3562 err:
3563         kfree_skb(skb2);
3564         return err;
3565 }
3566
3567 static const struct nfnl_callback nf_tables_cb[NFT_MSG_MAX] = {
3568         [NFT_MSG_NEWTABLE] = {
3569                 .call_batch     = nf_tables_newtable,
3570                 .attr_count     = NFTA_TABLE_MAX,
3571                 .policy         = nft_table_policy,
3572         },
3573         [NFT_MSG_GETTABLE] = {
3574                 .call           = nf_tables_gettable,
3575                 .attr_count     = NFTA_TABLE_MAX,
3576                 .policy         = nft_table_policy,
3577         },
3578         [NFT_MSG_DELTABLE] = {
3579                 .call_batch     = nf_tables_deltable,
3580                 .attr_count     = NFTA_TABLE_MAX,
3581                 .policy         = nft_table_policy,
3582         },
3583         [NFT_MSG_NEWCHAIN] = {
3584                 .call_batch     = nf_tables_newchain,
3585                 .attr_count     = NFTA_CHAIN_MAX,
3586                 .policy         = nft_chain_policy,
3587         },
3588         [NFT_MSG_GETCHAIN] = {
3589                 .call           = nf_tables_getchain,
3590                 .attr_count     = NFTA_CHAIN_MAX,
3591                 .policy         = nft_chain_policy,
3592         },
3593         [NFT_MSG_DELCHAIN] = {
3594                 .call_batch     = nf_tables_delchain,
3595                 .attr_count     = NFTA_CHAIN_MAX,
3596                 .policy         = nft_chain_policy,
3597         },
3598         [NFT_MSG_NEWRULE] = {
3599                 .call_batch     = nf_tables_newrule,
3600                 .attr_count     = NFTA_RULE_MAX,
3601                 .policy         = nft_rule_policy,
3602         },
3603         [NFT_MSG_GETRULE] = {
3604                 .call           = nf_tables_getrule,
3605                 .attr_count     = NFTA_RULE_MAX,
3606                 .policy         = nft_rule_policy,
3607         },
3608         [NFT_MSG_DELRULE] = {
3609                 .call_batch     = nf_tables_delrule,
3610                 .attr_count     = NFTA_RULE_MAX,
3611                 .policy         = nft_rule_policy,
3612         },
3613         [NFT_MSG_NEWSET] = {
3614                 .call_batch     = nf_tables_newset,
3615                 .attr_count     = NFTA_SET_MAX,
3616                 .policy         = nft_set_policy,
3617         },
3618         [NFT_MSG_GETSET] = {
3619                 .call           = nf_tables_getset,
3620                 .attr_count     = NFTA_SET_MAX,
3621                 .policy         = nft_set_policy,
3622         },
3623         [NFT_MSG_DELSET] = {
3624                 .call_batch     = nf_tables_delset,
3625                 .attr_count     = NFTA_SET_MAX,
3626                 .policy         = nft_set_policy,
3627         },
3628         [NFT_MSG_NEWSETELEM] = {
3629                 .call_batch     = nf_tables_newsetelem,
3630                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
3631                 .policy         = nft_set_elem_list_policy,
3632         },
3633         [NFT_MSG_GETSETELEM] = {
3634                 .call           = nf_tables_getsetelem,
3635                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
3636                 .policy         = nft_set_elem_list_policy,
3637         },
3638         [NFT_MSG_DELSETELEM] = {
3639                 .call_batch     = nf_tables_delsetelem,
3640                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
3641                 .policy         = nft_set_elem_list_policy,
3642         },
3643         [NFT_MSG_GETGEN] = {
3644                 .call           = nf_tables_getgen,
3645         },
3646 };
3647
3648 static void nft_chain_commit_update(struct nft_trans *trans)
3649 {
3650         struct nft_base_chain *basechain;
3651
3652         if (nft_trans_chain_name(trans)[0])
3653                 strcpy(trans->ctx.chain->name, nft_trans_chain_name(trans));
3654
3655         if (!(trans->ctx.chain->flags & NFT_BASE_CHAIN))
3656                 return;
3657
3658         basechain = nft_base_chain(trans->ctx.chain);
3659         nft_chain_stats_replace(basechain, nft_trans_chain_stats(trans));
3660
3661         switch (nft_trans_chain_policy(trans)) {
3662         case NF_DROP:
3663         case NF_ACCEPT:
3664                 basechain->policy = nft_trans_chain_policy(trans);
3665                 break;
3666         }
3667 }
3668
3669 static void nf_tables_commit_release(struct nft_trans *trans)
3670 {
3671         switch (trans->msg_type) {
3672         case NFT_MSG_DELTABLE:
3673                 nf_tables_table_destroy(&trans->ctx);
3674                 break;
3675         case NFT_MSG_DELCHAIN:
3676                 nf_tables_chain_destroy(trans->ctx.chain);
3677                 break;
3678         case NFT_MSG_DELRULE:
3679                 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3680                 break;
3681         case NFT_MSG_DELSET:
3682                 nft_set_destroy(nft_trans_set(trans));
3683                 break;
3684         case NFT_MSG_DELSETELEM:
3685                 nft_set_elem_destroy(nft_trans_elem_set(trans),
3686                                      nft_trans_elem(trans).priv);
3687                 break;
3688         }
3689         kfree(trans);
3690 }
3691
3692 static int nf_tables_commit(struct sk_buff *skb)
3693 {
3694         struct net *net = sock_net(skb->sk);
3695         struct nft_trans *trans, *next;
3696         struct nft_trans_elem *te;
3697
3698         /* Bump generation counter, invalidate any dump in progress */
3699         while (++net->nft.base_seq == 0);
3700
3701         /* A new generation has just started */
3702         net->nft.gencursor = nft_gencursor_next(net);
3703
3704         /* Make sure all packets have left the previous generation before
3705          * purging old rules.
3706          */
3707         synchronize_rcu();
3708
3709         list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
3710                 switch (trans->msg_type) {
3711                 case NFT_MSG_NEWTABLE:
3712                         if (nft_trans_table_update(trans)) {
3713                                 if (!nft_trans_table_enable(trans)) {
3714                                         nf_tables_table_disable(trans->ctx.afi,
3715                                                                 trans->ctx.table);
3716                                         trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3717                                 }
3718                         } else {
3719                                 trans->ctx.table->flags &= ~NFT_TABLE_INACTIVE;
3720                         }
3721                         nf_tables_table_notify(&trans->ctx, NFT_MSG_NEWTABLE);
3722                         nft_trans_destroy(trans);
3723                         break;
3724                 case NFT_MSG_DELTABLE:
3725                         nf_tables_table_notify(&trans->ctx, NFT_MSG_DELTABLE);
3726                         break;
3727                 case NFT_MSG_NEWCHAIN:
3728                         if (nft_trans_chain_update(trans))
3729                                 nft_chain_commit_update(trans);
3730                         else
3731                                 trans->ctx.chain->flags &= ~NFT_CHAIN_INACTIVE;
3732
3733                         nf_tables_chain_notify(&trans->ctx, NFT_MSG_NEWCHAIN);
3734                         nft_trans_destroy(trans);
3735                         break;
3736                 case NFT_MSG_DELCHAIN:
3737                         nf_tables_chain_notify(&trans->ctx, NFT_MSG_DELCHAIN);
3738                         nf_tables_unregister_hooks(trans->ctx.table,
3739                                                    trans->ctx.chain,
3740                                                    trans->ctx.afi->nops);
3741                         break;
3742                 case NFT_MSG_NEWRULE:
3743                         nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
3744                         nf_tables_rule_notify(&trans->ctx,
3745                                               nft_trans_rule(trans),
3746                                               NFT_MSG_NEWRULE);
3747                         nft_trans_destroy(trans);
3748                         break;
3749                 case NFT_MSG_DELRULE:
3750                         list_del_rcu(&nft_trans_rule(trans)->list);
3751                         nf_tables_rule_notify(&trans->ctx,
3752                                               nft_trans_rule(trans),
3753                                               NFT_MSG_DELRULE);
3754                         break;
3755                 case NFT_MSG_NEWSET:
3756                         nft_trans_set(trans)->flags &= ~NFT_SET_INACTIVE;
3757                         /* This avoids hitting -EBUSY when deleting the table
3758                          * from the transaction.
3759                          */
3760                         if (nft_trans_set(trans)->flags & NFT_SET_ANONYMOUS &&
3761                             !list_empty(&nft_trans_set(trans)->bindings))
3762                                 trans->ctx.table->use--;
3763
3764                         nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
3765                                              NFT_MSG_NEWSET, GFP_KERNEL);
3766                         nft_trans_destroy(trans);
3767                         break;
3768                 case NFT_MSG_DELSET:
3769                         nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
3770                                              NFT_MSG_DELSET, GFP_KERNEL);
3771                         break;
3772                 case NFT_MSG_NEWSETELEM:
3773                         te = (struct nft_trans_elem *)trans->data;
3774
3775                         te->set->ops->activate(te->set, &te->elem);
3776                         nf_tables_setelem_notify(&trans->ctx, te->set,
3777                                                  &te->elem,
3778                                                  NFT_MSG_NEWSETELEM, 0);
3779                         nft_trans_destroy(trans);
3780                         break;
3781                 case NFT_MSG_DELSETELEM:
3782                         te = (struct nft_trans_elem *)trans->data;
3783
3784                         nf_tables_setelem_notify(&trans->ctx, te->set,
3785                                                  &te->elem,
3786                                                  NFT_MSG_DELSETELEM, 0);
3787                         te->set->ops->remove(te->set, &te->elem);
3788                         break;
3789                 }
3790         }
3791
3792         synchronize_rcu();
3793
3794         list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
3795                 list_del(&trans->list);
3796                 nf_tables_commit_release(trans);
3797         }
3798
3799         nf_tables_gen_notify(net, skb, NFT_MSG_NEWGEN);
3800
3801         return 0;
3802 }
3803
3804 static void nf_tables_abort_release(struct nft_trans *trans)
3805 {
3806         switch (trans->msg_type) {
3807         case NFT_MSG_NEWTABLE:
3808                 nf_tables_table_destroy(&trans->ctx);
3809                 break;
3810         case NFT_MSG_NEWCHAIN:
3811                 nf_tables_chain_destroy(trans->ctx.chain);
3812                 break;
3813         case NFT_MSG_NEWRULE:
3814                 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3815                 break;
3816         case NFT_MSG_NEWSET:
3817                 nft_set_destroy(nft_trans_set(trans));
3818                 break;
3819         case NFT_MSG_NEWSETELEM:
3820                 nft_set_elem_destroy(nft_trans_elem_set(trans),
3821                                      nft_trans_elem(trans).priv);
3822                 break;
3823         }
3824         kfree(trans);
3825 }
3826
3827 static int nf_tables_abort(struct sk_buff *skb)
3828 {
3829         struct net *net = sock_net(skb->sk);
3830         struct nft_trans *trans, *next;
3831         struct nft_trans_elem *te;
3832
3833         list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
3834                 switch (trans->msg_type) {
3835                 case NFT_MSG_NEWTABLE:
3836                         if (nft_trans_table_update(trans)) {
3837                                 if (nft_trans_table_enable(trans)) {
3838                                         nf_tables_table_disable(trans->ctx.afi,
3839                                                                 trans->ctx.table);
3840                                         trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3841                                 }
3842                                 nft_trans_destroy(trans);
3843                         } else {
3844                                 list_del_rcu(&trans->ctx.table->list);
3845                         }
3846                         break;
3847                 case NFT_MSG_DELTABLE:
3848                         list_add_tail_rcu(&trans->ctx.table->list,
3849                                           &trans->ctx.afi->tables);
3850                         nft_trans_destroy(trans);
3851                         break;
3852                 case NFT_MSG_NEWCHAIN:
3853                         if (nft_trans_chain_update(trans)) {
3854                                 free_percpu(nft_trans_chain_stats(trans));
3855
3856                                 nft_trans_destroy(trans);
3857                         } else {
3858                                 trans->ctx.table->use--;
3859                                 list_del_rcu(&trans->ctx.chain->list);
3860                                 nf_tables_unregister_hooks(trans->ctx.table,
3861                                                            trans->ctx.chain,
3862                                                            trans->ctx.afi->nops);
3863                         }
3864                         break;
3865                 case NFT_MSG_DELCHAIN:
3866                         trans->ctx.table->use++;
3867                         list_add_tail_rcu(&trans->ctx.chain->list,
3868                                           &trans->ctx.table->chains);
3869                         nft_trans_destroy(trans);
3870                         break;
3871                 case NFT_MSG_NEWRULE:
3872                         trans->ctx.chain->use--;
3873                         list_del_rcu(&nft_trans_rule(trans)->list);
3874                         break;
3875                 case NFT_MSG_DELRULE:
3876                         trans->ctx.chain->use++;
3877                         nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
3878                         nft_trans_destroy(trans);
3879                         break;
3880                 case NFT_MSG_NEWSET:
3881                         trans->ctx.table->use--;
3882                         list_del_rcu(&nft_trans_set(trans)->list);
3883                         break;
3884                 case NFT_MSG_DELSET:
3885                         trans->ctx.table->use++;
3886                         list_add_tail_rcu(&nft_trans_set(trans)->list,
3887                                           &trans->ctx.table->sets);
3888                         nft_trans_destroy(trans);
3889                         break;
3890                 case NFT_MSG_NEWSETELEM:
3891                         nft_trans_elem_set(trans)->nelems--;
3892                         te = (struct nft_trans_elem *)trans->data;
3893
3894                         te->set->ops->remove(te->set, &te->elem);
3895                         break;
3896                 case NFT_MSG_DELSETELEM:
3897                         te = (struct nft_trans_elem *)trans->data;
3898
3899                         nft_trans_elem_set(trans)->nelems++;
3900                         te->set->ops->activate(te->set, &te->elem);
3901
3902                         nft_trans_destroy(trans);
3903                         break;
3904                 }
3905         }
3906
3907         synchronize_rcu();
3908
3909         list_for_each_entry_safe_reverse(trans, next,
3910                                          &net->nft.commit_list, list) {
3911                 list_del(&trans->list);
3912                 nf_tables_abort_release(trans);
3913         }
3914
3915         return 0;
3916 }
3917
3918 static const struct nfnetlink_subsystem nf_tables_subsys = {
3919         .name           = "nf_tables",
3920         .subsys_id      = NFNL_SUBSYS_NFTABLES,
3921         .cb_count       = NFT_MSG_MAX,
3922         .cb             = nf_tables_cb,
3923         .commit         = nf_tables_commit,
3924         .abort          = nf_tables_abort,
3925 };
3926
3927 int nft_chain_validate_dependency(const struct nft_chain *chain,
3928                                   enum nft_chain_type type)
3929 {
3930         const struct nft_base_chain *basechain;
3931
3932         if (chain->flags & NFT_BASE_CHAIN) {
3933                 basechain = nft_base_chain(chain);
3934                 if (basechain->type->type != type)
3935                         return -EOPNOTSUPP;
3936         }
3937         return 0;
3938 }
3939 EXPORT_SYMBOL_GPL(nft_chain_validate_dependency);
3940
3941 int nft_chain_validate_hooks(const struct nft_chain *chain,
3942                              unsigned int hook_flags)
3943 {
3944         struct nft_base_chain *basechain;
3945
3946         if (chain->flags & NFT_BASE_CHAIN) {
3947                 basechain = nft_base_chain(chain);
3948
3949                 if ((1 << basechain->ops[0].hooknum) & hook_flags)
3950                         return 0;
3951
3952                 return -EOPNOTSUPP;
3953         }
3954
3955         return 0;
3956 }
3957 EXPORT_SYMBOL_GPL(nft_chain_validate_hooks);
3958
3959 /*
3960  * Loop detection - walk through the ruleset beginning at the destination chain
3961  * of a new jump until either the source chain is reached (loop) or all
3962  * reachable chains have been traversed.
3963  *
3964  * The loop check is performed whenever a new jump verdict is added to an
3965  * expression or verdict map or a verdict map is bound to a new chain.
3966  */
3967
3968 static int nf_tables_check_loops(const struct nft_ctx *ctx,
3969                                  const struct nft_chain *chain);
3970
3971 static int nf_tables_loop_check_setelem(const struct nft_ctx *ctx,
3972                                         const struct nft_set *set,
3973                                         const struct nft_set_iter *iter,
3974                                         const struct nft_set_elem *elem)
3975 {
3976         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
3977         const struct nft_data *data;
3978
3979         if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
3980             *nft_set_ext_flags(ext) & NFT_SET_ELEM_INTERVAL_END)
3981                 return 0;
3982
3983         data = nft_set_ext_data(ext);
3984         switch (data->verdict) {
3985         case NFT_JUMP:
3986         case NFT_GOTO:
3987                 return nf_tables_check_loops(ctx, data->chain);
3988         default:
3989                 return 0;
3990         }
3991 }
3992
3993 static int nf_tables_check_loops(const struct nft_ctx *ctx,
3994                                  const struct nft_chain *chain)
3995 {
3996         const struct nft_rule *rule;
3997         const struct nft_expr *expr, *last;
3998         const struct nft_set *set;
3999         struct nft_set_binding *binding;
4000         struct nft_set_iter iter;
4001
4002         if (ctx->chain == chain)
4003                 return -ELOOP;
4004
4005         list_for_each_entry(rule, &chain->rules, list) {
4006                 nft_rule_for_each_expr(expr, last, rule) {
4007                         const struct nft_data *data = NULL;
4008                         int err;
4009
4010                         if (!expr->ops->validate)
4011                                 continue;
4012
4013                         err = expr->ops->validate(ctx, expr, &data);
4014                         if (err < 0)
4015                                 return err;
4016
4017                         if (data == NULL)
4018                                 continue;
4019
4020                         switch (data->verdict) {
4021                         case NFT_JUMP:
4022                         case NFT_GOTO:
4023                                 err = nf_tables_check_loops(ctx, data->chain);
4024                                 if (err < 0)
4025                                         return err;
4026                         default:
4027                                 break;
4028                         }
4029                 }
4030         }
4031
4032         list_for_each_entry(set, &ctx->table->sets, list) {
4033                 if (!(set->flags & NFT_SET_MAP) ||
4034                     set->dtype != NFT_DATA_VERDICT)
4035                         continue;
4036
4037                 list_for_each_entry(binding, &set->bindings, list) {
4038                         if (binding->chain != chain)
4039                                 continue;
4040
4041                         iter.skip       = 0;
4042                         iter.count      = 0;
4043                         iter.err        = 0;
4044                         iter.fn         = nf_tables_loop_check_setelem;
4045
4046                         set->ops->walk(ctx, set, &iter);
4047                         if (iter.err < 0)
4048                                 return iter.err;
4049                 }
4050         }
4051
4052         return 0;
4053 }
4054
4055 /**
4056  *      nft_validate_input_register - validate an expressions' input register
4057  *
4058  *      @reg: the register number
4059  *
4060  *      Validate that the input register is one of the general purpose
4061  *      registers.
4062  */
4063 int nft_validate_input_register(enum nft_registers reg)
4064 {
4065         if (reg <= NFT_REG_VERDICT)
4066                 return -EINVAL;
4067         if (reg > NFT_REG_MAX)
4068                 return -ERANGE;
4069         return 0;
4070 }
4071 EXPORT_SYMBOL_GPL(nft_validate_input_register);
4072
4073 /**
4074  *      nft_validate_output_register - validate an expressions' output register
4075  *
4076  *      @reg: the register number
4077  *
4078  *      Validate that the output register is one of the general purpose
4079  *      registers or the verdict register.
4080  */
4081 int nft_validate_output_register(enum nft_registers reg)
4082 {
4083         if (reg < NFT_REG_VERDICT)
4084                 return -EINVAL;
4085         if (reg > NFT_REG_MAX)
4086                 return -ERANGE;
4087         return 0;
4088 }
4089 EXPORT_SYMBOL_GPL(nft_validate_output_register);
4090
4091 /**
4092  *      nft_validate_data_load - validate an expressions' data load
4093  *
4094  *      @ctx: context of the expression performing the load
4095  *      @reg: the destination register number
4096  *      @data: the data to load
4097  *      @type: the data type
4098  *
4099  *      Validate that a data load uses the appropriate data type for
4100  *      the destination register. A value of NULL for the data means
4101  *      that its runtime gathered data, which is always of type
4102  *      NFT_DATA_VALUE.
4103  */
4104 int nft_validate_data_load(const struct nft_ctx *ctx, enum nft_registers reg,
4105                            const struct nft_data *data,
4106                            enum nft_data_types type)
4107 {
4108         int err;
4109
4110         switch (reg) {
4111         case NFT_REG_VERDICT:
4112                 if (data == NULL || type != NFT_DATA_VERDICT)
4113                         return -EINVAL;
4114
4115                 if (data->verdict == NFT_GOTO || data->verdict == NFT_JUMP) {
4116                         err = nf_tables_check_loops(ctx, data->chain);
4117                         if (err < 0)
4118                                 return err;
4119
4120                         if (ctx->chain->level + 1 > data->chain->level) {
4121                                 if (ctx->chain->level + 1 == NFT_JUMP_STACK_SIZE)
4122                                         return -EMLINK;
4123                                 data->chain->level = ctx->chain->level + 1;
4124                         }
4125                 }
4126
4127                 return 0;
4128         default:
4129                 if (data != NULL && type != NFT_DATA_VALUE)
4130                         return -EINVAL;
4131                 return 0;
4132         }
4133 }
4134 EXPORT_SYMBOL_GPL(nft_validate_data_load);
4135
4136 static const struct nla_policy nft_verdict_policy[NFTA_VERDICT_MAX + 1] = {
4137         [NFTA_VERDICT_CODE]     = { .type = NLA_U32 },
4138         [NFTA_VERDICT_CHAIN]    = { .type = NLA_STRING,
4139                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
4140 };
4141
4142 static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
4143                             struct nft_data_desc *desc, const struct nlattr *nla)
4144 {
4145         struct nlattr *tb[NFTA_VERDICT_MAX + 1];
4146         struct nft_chain *chain;
4147         int err;
4148
4149         err = nla_parse_nested(tb, NFTA_VERDICT_MAX, nla, nft_verdict_policy);
4150         if (err < 0)
4151                 return err;
4152
4153         if (!tb[NFTA_VERDICT_CODE])
4154                 return -EINVAL;
4155         data->verdict = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE]));
4156
4157         switch (data->verdict) {
4158         default:
4159                 switch (data->verdict & NF_VERDICT_MASK) {
4160                 case NF_ACCEPT:
4161                 case NF_DROP:
4162                 case NF_QUEUE:
4163                         break;
4164                 default:
4165                         return -EINVAL;
4166                 }
4167                 /* fall through */
4168         case NFT_CONTINUE:
4169         case NFT_BREAK:
4170         case NFT_RETURN:
4171                 desc->len = sizeof(data->verdict);
4172                 break;
4173         case NFT_JUMP:
4174         case NFT_GOTO:
4175                 if (!tb[NFTA_VERDICT_CHAIN])
4176                         return -EINVAL;
4177                 chain = nf_tables_chain_lookup(ctx->table,
4178                                                tb[NFTA_VERDICT_CHAIN]);
4179                 if (IS_ERR(chain))
4180                         return PTR_ERR(chain);
4181                 if (chain->flags & NFT_BASE_CHAIN)
4182                         return -EOPNOTSUPP;
4183
4184                 chain->use++;
4185                 data->chain = chain;
4186                 desc->len = sizeof(data);
4187                 break;
4188         }
4189
4190         desc->type = NFT_DATA_VERDICT;
4191         return 0;
4192 }
4193
4194 static void nft_verdict_uninit(const struct nft_data *data)
4195 {
4196         switch (data->verdict) {
4197         case NFT_JUMP:
4198         case NFT_GOTO:
4199                 data->chain->use--;
4200                 break;
4201         }
4202 }
4203
4204 static int nft_verdict_dump(struct sk_buff *skb, const struct nft_data *data)
4205 {
4206         struct nlattr *nest;
4207
4208         nest = nla_nest_start(skb, NFTA_DATA_VERDICT);
4209         if (!nest)
4210                 goto nla_put_failure;
4211
4212         if (nla_put_be32(skb, NFTA_VERDICT_CODE, htonl(data->verdict)))
4213                 goto nla_put_failure;
4214
4215         switch (data->verdict) {
4216         case NFT_JUMP:
4217         case NFT_GOTO:
4218                 if (nla_put_string(skb, NFTA_VERDICT_CHAIN, data->chain->name))
4219                         goto nla_put_failure;
4220         }
4221         nla_nest_end(skb, nest);
4222         return 0;
4223
4224 nla_put_failure:
4225         return -1;
4226 }
4227
4228 static int nft_value_init(const struct nft_ctx *ctx, struct nft_data *data,
4229                           struct nft_data_desc *desc, const struct nlattr *nla)
4230 {
4231         unsigned int len;
4232
4233         len = nla_len(nla);
4234         if (len == 0)
4235                 return -EINVAL;
4236         if (len > sizeof(data->data))
4237                 return -EOVERFLOW;
4238
4239         nla_memcpy(data->data, nla, sizeof(data->data));
4240         desc->type = NFT_DATA_VALUE;
4241         desc->len  = len;
4242         return 0;
4243 }
4244
4245 static int nft_value_dump(struct sk_buff *skb, const struct nft_data *data,
4246                           unsigned int len)
4247 {
4248         return nla_put(skb, NFTA_DATA_VALUE, len, data->data);
4249 }
4250
4251 static const struct nla_policy nft_data_policy[NFTA_DATA_MAX + 1] = {
4252         [NFTA_DATA_VALUE]       = { .type = NLA_BINARY,
4253                                     .len  = FIELD_SIZEOF(struct nft_data, data) },
4254         [NFTA_DATA_VERDICT]     = { .type = NLA_NESTED },
4255 };
4256
4257 /**
4258  *      nft_data_init - parse nf_tables data netlink attributes
4259  *
4260  *      @ctx: context of the expression using the data
4261  *      @data: destination struct nft_data
4262  *      @desc: data description
4263  *      @nla: netlink attribute containing data
4264  *
4265  *      Parse the netlink data attributes and initialize a struct nft_data.
4266  *      The type and length of data are returned in the data description.
4267  *
4268  *      The caller can indicate that it only wants to accept data of type
4269  *      NFT_DATA_VALUE by passing NULL for the ctx argument.
4270  */
4271 int nft_data_init(const struct nft_ctx *ctx, struct nft_data *data,
4272                   struct nft_data_desc *desc, const struct nlattr *nla)
4273 {
4274         struct nlattr *tb[NFTA_DATA_MAX + 1];
4275         int err;
4276
4277         err = nla_parse_nested(tb, NFTA_DATA_MAX, nla, nft_data_policy);
4278         if (err < 0)
4279                 return err;
4280
4281         if (tb[NFTA_DATA_VALUE])
4282                 return nft_value_init(ctx, data, desc, tb[NFTA_DATA_VALUE]);
4283         if (tb[NFTA_DATA_VERDICT] && ctx != NULL)
4284                 return nft_verdict_init(ctx, data, desc, tb[NFTA_DATA_VERDICT]);
4285         return -EINVAL;
4286 }
4287 EXPORT_SYMBOL_GPL(nft_data_init);
4288
4289 /**
4290  *      nft_data_uninit - release a nft_data item
4291  *
4292  *      @data: struct nft_data to release
4293  *      @type: type of data
4294  *
4295  *      Release a nft_data item. NFT_DATA_VALUE types can be silently discarded,
4296  *      all others need to be released by calling this function.
4297  */
4298 void nft_data_uninit(const struct nft_data *data, enum nft_data_types type)
4299 {
4300         switch (type) {
4301         case NFT_DATA_VALUE:
4302                 return;
4303         case NFT_DATA_VERDICT:
4304                 return nft_verdict_uninit(data);
4305         default:
4306                 WARN_ON(1);
4307         }
4308 }
4309 EXPORT_SYMBOL_GPL(nft_data_uninit);
4310
4311 int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
4312                   enum nft_data_types type, unsigned int len)
4313 {
4314         struct nlattr *nest;
4315         int err;
4316
4317         nest = nla_nest_start(skb, attr);
4318         if (nest == NULL)
4319                 return -1;
4320
4321         switch (type) {
4322         case NFT_DATA_VALUE:
4323                 err = nft_value_dump(skb, data, len);
4324                 break;
4325         case NFT_DATA_VERDICT:
4326                 err = nft_verdict_dump(skb, data);
4327                 break;
4328         default:
4329                 err = -EINVAL;
4330                 WARN_ON(1);
4331         }
4332
4333         nla_nest_end(skb, nest);
4334         return err;
4335 }
4336 EXPORT_SYMBOL_GPL(nft_data_dump);
4337
4338 static int nf_tables_init_net(struct net *net)
4339 {
4340         INIT_LIST_HEAD(&net->nft.af_info);
4341         INIT_LIST_HEAD(&net->nft.commit_list);
4342         net->nft.base_seq = 1;
4343         return 0;
4344 }
4345
4346 static struct pernet_operations nf_tables_net_ops = {
4347         .init   = nf_tables_init_net,
4348 };
4349
4350 static int __init nf_tables_module_init(void)
4351 {
4352         int err;
4353
4354         info = kmalloc(sizeof(struct nft_expr_info) * NFT_RULE_MAXEXPRS,
4355                        GFP_KERNEL);
4356         if (info == NULL) {
4357                 err = -ENOMEM;
4358                 goto err1;
4359         }
4360
4361         err = nf_tables_core_module_init();
4362         if (err < 0)
4363                 goto err2;
4364
4365         err = nfnetlink_subsys_register(&nf_tables_subsys);
4366         if (err < 0)
4367                 goto err3;
4368
4369         pr_info("nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>\n");
4370         return register_pernet_subsys(&nf_tables_net_ops);
4371 err3:
4372         nf_tables_core_module_exit();
4373 err2:
4374         kfree(info);
4375 err1:
4376         return err;
4377 }
4378
4379 static void __exit nf_tables_module_exit(void)
4380 {
4381         unregister_pernet_subsys(&nf_tables_net_ops);
4382         nfnetlink_subsys_unregister(&nf_tables_subsys);
4383         rcu_barrier();
4384         nf_tables_core_module_exit();
4385         kfree(info);
4386 }
4387
4388 module_init(nf_tables_module_init);
4389 module_exit(nf_tables_module_exit);
4390
4391 MODULE_LICENSE("GPL");
4392 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
4393 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFTABLES);