netfilter: nf_tables: cache device name in flowtable object
[platform/kernel/linux-rpi.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/vmalloc.h>
17 #include <linux/netfilter.h>
18 #include <linux/netfilter/nfnetlink.h>
19 #include <linux/netfilter/nf_tables.h>
20 #include <net/netfilter/nf_flow_table.h>
21 #include <net/netfilter/nf_tables_core.h>
22 #include <net/netfilter/nf_tables.h>
23 #include <net/net_namespace.h>
24 #include <net/sock.h>
25
26 static LIST_HEAD(nf_tables_expressions);
27 static LIST_HEAD(nf_tables_objects);
28 static LIST_HEAD(nf_tables_flowtables);
29 static u64 table_handle;
30
31 static void nft_ctx_init(struct nft_ctx *ctx,
32                          struct net *net,
33                          const struct sk_buff *skb,
34                          const struct nlmsghdr *nlh,
35                          u8 family,
36                          struct nft_table *table,
37                          struct nft_chain *chain,
38                          const struct nlattr * const *nla)
39 {
40         ctx->net        = net;
41         ctx->family     = family;
42         ctx->table      = table;
43         ctx->chain      = chain;
44         ctx->nla        = nla;
45         ctx->portid     = NETLINK_CB(skb).portid;
46         ctx->report     = nlmsg_report(nlh);
47         ctx->seq        = nlh->nlmsg_seq;
48 }
49
50 static struct nft_trans *nft_trans_alloc_gfp(const struct nft_ctx *ctx,
51                                              int msg_type, u32 size, gfp_t gfp)
52 {
53         struct nft_trans *trans;
54
55         trans = kzalloc(sizeof(struct nft_trans) + size, gfp);
56         if (trans == NULL)
57                 return NULL;
58
59         trans->msg_type = msg_type;
60         trans->ctx      = *ctx;
61
62         return trans;
63 }
64
65 static struct nft_trans *nft_trans_alloc(const struct nft_ctx *ctx,
66                                          int msg_type, u32 size)
67 {
68         return nft_trans_alloc_gfp(ctx, msg_type, size, GFP_KERNEL);
69 }
70
71 static void nft_trans_destroy(struct nft_trans *trans)
72 {
73         list_del(&trans->list);
74         kfree(trans);
75 }
76
77 /* removal requests are queued in the commit_list, but not acted upon
78  * until after all new rules are in place.
79  *
80  * Therefore, nf_register_net_hook(net, &nat_hook) runs before pending
81  * nf_unregister_net_hook().
82  *
83  * nf_register_net_hook thus fails if a nat hook is already in place
84  * even if the conflicting hook is about to be removed.
85  *
86  * If collision is detected, search commit_log for DELCHAIN matching
87  * the new nat hooknum; if we find one collision is temporary:
88  *
89  * Either transaction is aborted (new/colliding hook is removed), or
90  * transaction is committed (old hook is removed).
91  */
92 static bool nf_tables_allow_nat_conflict(const struct net *net,
93                                          const struct nf_hook_ops *ops)
94 {
95         const struct nft_trans *trans;
96         bool ret = false;
97
98         if (!ops->nat_hook)
99                 return false;
100
101         list_for_each_entry(trans, &net->nft.commit_list, list) {
102                 const struct nf_hook_ops *pending_ops;
103                 const struct nft_chain *pending;
104
105                 if (trans->msg_type != NFT_MSG_NEWCHAIN &&
106                     trans->msg_type != NFT_MSG_DELCHAIN)
107                         continue;
108
109                 pending = trans->ctx.chain;
110                 if (!nft_is_base_chain(pending))
111                         continue;
112
113                 pending_ops = &nft_base_chain(pending)->ops;
114                 if (pending_ops->nat_hook &&
115                     pending_ops->pf == ops->pf &&
116                     pending_ops->hooknum == ops->hooknum) {
117                         /* other hook registration already pending? */
118                         if (trans->msg_type == NFT_MSG_NEWCHAIN)
119                                 return false;
120
121                         ret = true;
122                 }
123         }
124
125         return ret;
126 }
127
128 static int nf_tables_register_hook(struct net *net,
129                                    const struct nft_table *table,
130                                    struct nft_chain *chain)
131 {
132         struct nf_hook_ops *ops;
133         int ret;
134
135         if (table->flags & NFT_TABLE_F_DORMANT ||
136             !nft_is_base_chain(chain))
137                 return 0;
138
139         ops = &nft_base_chain(chain)->ops;
140         ret = nf_register_net_hook(net, ops);
141         if (ret == -EBUSY && nf_tables_allow_nat_conflict(net, ops)) {
142                 ops->nat_hook = false;
143                 ret = nf_register_net_hook(net, ops);
144                 ops->nat_hook = true;
145         }
146
147         return ret;
148 }
149
150 static void nf_tables_unregister_hook(struct net *net,
151                                       const struct nft_table *table,
152                                       struct nft_chain *chain)
153 {
154         if (table->flags & NFT_TABLE_F_DORMANT ||
155             !nft_is_base_chain(chain))
156                 return;
157
158         nf_unregister_net_hook(net, &nft_base_chain(chain)->ops);
159 }
160
161 static int nft_trans_table_add(struct nft_ctx *ctx, int msg_type)
162 {
163         struct nft_trans *trans;
164
165         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_table));
166         if (trans == NULL)
167                 return -ENOMEM;
168
169         if (msg_type == NFT_MSG_NEWTABLE)
170                 nft_activate_next(ctx->net, ctx->table);
171
172         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
173         return 0;
174 }
175
176 static int nft_deltable(struct nft_ctx *ctx)
177 {
178         int err;
179
180         err = nft_trans_table_add(ctx, NFT_MSG_DELTABLE);
181         if (err < 0)
182                 return err;
183
184         nft_deactivate_next(ctx->net, ctx->table);
185         return err;
186 }
187
188 static int nft_trans_chain_add(struct nft_ctx *ctx, int msg_type)
189 {
190         struct nft_trans *trans;
191
192         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_chain));
193         if (trans == NULL)
194                 return -ENOMEM;
195
196         if (msg_type == NFT_MSG_NEWCHAIN)
197                 nft_activate_next(ctx->net, ctx->chain);
198
199         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
200         return 0;
201 }
202
203 static int nft_delchain(struct nft_ctx *ctx)
204 {
205         int err;
206
207         err = nft_trans_chain_add(ctx, NFT_MSG_DELCHAIN);
208         if (err < 0)
209                 return err;
210
211         ctx->table->use--;
212         nft_deactivate_next(ctx->net, ctx->chain);
213
214         return err;
215 }
216
217 static int
218 nf_tables_delrule_deactivate(struct nft_ctx *ctx, struct nft_rule *rule)
219 {
220         /* You cannot delete the same rule twice */
221         if (nft_is_active_next(ctx->net, rule)) {
222                 nft_deactivate_next(ctx->net, rule);
223                 ctx->chain->use--;
224                 return 0;
225         }
226         return -ENOENT;
227 }
228
229 static struct nft_trans *nft_trans_rule_add(struct nft_ctx *ctx, int msg_type,
230                                             struct nft_rule *rule)
231 {
232         struct nft_trans *trans;
233
234         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_rule));
235         if (trans == NULL)
236                 return NULL;
237
238         if (msg_type == NFT_MSG_NEWRULE && ctx->nla[NFTA_RULE_ID] != NULL) {
239                 nft_trans_rule_id(trans) =
240                         ntohl(nla_get_be32(ctx->nla[NFTA_RULE_ID]));
241         }
242         nft_trans_rule(trans) = rule;
243         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
244
245         return trans;
246 }
247
248 static int nft_delrule(struct nft_ctx *ctx, struct nft_rule *rule)
249 {
250         struct nft_trans *trans;
251         int err;
252
253         trans = nft_trans_rule_add(ctx, NFT_MSG_DELRULE, rule);
254         if (trans == NULL)
255                 return -ENOMEM;
256
257         err = nf_tables_delrule_deactivate(ctx, rule);
258         if (err < 0) {
259                 nft_trans_destroy(trans);
260                 return err;
261         }
262
263         return 0;
264 }
265
266 static int nft_delrule_by_chain(struct nft_ctx *ctx)
267 {
268         struct nft_rule *rule;
269         int err;
270
271         list_for_each_entry(rule, &ctx->chain->rules, list) {
272                 err = nft_delrule(ctx, rule);
273                 if (err < 0)
274                         return err;
275         }
276         return 0;
277 }
278
279 static int nft_trans_set_add(struct nft_ctx *ctx, int msg_type,
280                              struct nft_set *set)
281 {
282         struct nft_trans *trans;
283
284         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_set));
285         if (trans == NULL)
286                 return -ENOMEM;
287
288         if (msg_type == NFT_MSG_NEWSET && ctx->nla[NFTA_SET_ID] != NULL) {
289                 nft_trans_set_id(trans) =
290                         ntohl(nla_get_be32(ctx->nla[NFTA_SET_ID]));
291                 nft_activate_next(ctx->net, set);
292         }
293         nft_trans_set(trans) = set;
294         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
295
296         return 0;
297 }
298
299 static int nft_delset(struct nft_ctx *ctx, struct nft_set *set)
300 {
301         int err;
302
303         err = nft_trans_set_add(ctx, NFT_MSG_DELSET, set);
304         if (err < 0)
305                 return err;
306
307         nft_deactivate_next(ctx->net, set);
308         ctx->table->use--;
309
310         return err;
311 }
312
313 static int nft_trans_obj_add(struct nft_ctx *ctx, int msg_type,
314                              struct nft_object *obj)
315 {
316         struct nft_trans *trans;
317
318         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_obj));
319         if (trans == NULL)
320                 return -ENOMEM;
321
322         if (msg_type == NFT_MSG_NEWOBJ)
323                 nft_activate_next(ctx->net, obj);
324
325         nft_trans_obj(trans) = obj;
326         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
327
328         return 0;
329 }
330
331 static int nft_delobj(struct nft_ctx *ctx, struct nft_object *obj)
332 {
333         int err;
334
335         err = nft_trans_obj_add(ctx, NFT_MSG_DELOBJ, obj);
336         if (err < 0)
337                 return err;
338
339         nft_deactivate_next(ctx->net, obj);
340         ctx->table->use--;
341
342         return err;
343 }
344
345 static int nft_trans_flowtable_add(struct nft_ctx *ctx, int msg_type,
346                                    struct nft_flowtable *flowtable)
347 {
348         struct nft_trans *trans;
349
350         trans = nft_trans_alloc(ctx, msg_type,
351                                 sizeof(struct nft_trans_flowtable));
352         if (trans == NULL)
353                 return -ENOMEM;
354
355         if (msg_type == NFT_MSG_NEWFLOWTABLE)
356                 nft_activate_next(ctx->net, flowtable);
357
358         nft_trans_flowtable(trans) = flowtable;
359         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
360
361         return 0;
362 }
363
364 static int nft_delflowtable(struct nft_ctx *ctx,
365                             struct nft_flowtable *flowtable)
366 {
367         int err;
368
369         err = nft_trans_flowtable_add(ctx, NFT_MSG_DELFLOWTABLE, flowtable);
370         if (err < 0)
371                 return err;
372
373         nft_deactivate_next(ctx->net, flowtable);
374         ctx->table->use--;
375
376         return err;
377 }
378
379 /*
380  * Tables
381  */
382
383 static struct nft_table *nft_table_lookup(const struct net *net,
384                                           const struct nlattr *nla,
385                                           u8 family, u8 genmask)
386 {
387         struct nft_table *table;
388
389         list_for_each_entry(table, &net->nft.tables, list) {
390                 if (!nla_strcmp(nla, table->name) &&
391                     table->family == family &&
392                     nft_active_genmask(table, genmask))
393                         return table;
394         }
395         return NULL;
396 }
397
398 static struct nft_table *nft_table_lookup_byhandle(const struct net *net,
399                                                    const struct nlattr *nla,
400                                                    u8 genmask)
401 {
402         struct nft_table *table;
403
404         list_for_each_entry(table, &net->nft.tables, list) {
405                 if (be64_to_cpu(nla_get_be64(nla)) == table->handle &&
406                     nft_active_genmask(table, genmask))
407                         return table;
408         }
409         return NULL;
410 }
411
412 static struct nft_table *nf_tables_table_lookup(const struct net *net,
413                                                 const struct nlattr *nla,
414                                                 u8 family, u8 genmask)
415 {
416         struct nft_table *table;
417
418         if (nla == NULL)
419                 return ERR_PTR(-EINVAL);
420
421         table = nft_table_lookup(net, nla, family, genmask);
422         if (table != NULL)
423                 return table;
424
425         return ERR_PTR(-ENOENT);
426 }
427
428 static struct nft_table *nf_tables_table_lookup_byhandle(const struct net *net,
429                                                          const struct nlattr *nla,
430                                                          u8 genmask)
431 {
432         struct nft_table *table;
433
434         if (nla == NULL)
435                 return ERR_PTR(-EINVAL);
436
437         table = nft_table_lookup_byhandle(net, nla, genmask);
438         if (table != NULL)
439                 return table;
440
441         return ERR_PTR(-ENOENT);
442 }
443
444 static inline u64 nf_tables_alloc_handle(struct nft_table *table)
445 {
446         return ++table->hgenerator;
447 }
448
449 static const struct nf_chain_type *chain_type[NFPROTO_NUMPROTO][NFT_CHAIN_T_MAX];
450
451 static const struct nf_chain_type *
452 __nf_tables_chain_type_lookup(const struct nlattr *nla, u8 family)
453 {
454         int i;
455
456         for (i = 0; i < NFT_CHAIN_T_MAX; i++) {
457                 if (chain_type[family][i] != NULL &&
458                     !nla_strcmp(nla, chain_type[family][i]->name))
459                         return chain_type[family][i];
460         }
461         return NULL;
462 }
463
464 static const struct nf_chain_type *
465 nf_tables_chain_type_lookup(const struct nlattr *nla, u8 family, bool autoload)
466 {
467         const struct nf_chain_type *type;
468
469         type = __nf_tables_chain_type_lookup(nla, family);
470         if (type != NULL)
471                 return type;
472 #ifdef CONFIG_MODULES
473         if (autoload) {
474                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
475                 request_module("nft-chain-%u-%.*s", family,
476                                nla_len(nla), (const char *)nla_data(nla));
477                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
478                 type = __nf_tables_chain_type_lookup(nla, family);
479                 if (type != NULL)
480                         return ERR_PTR(-EAGAIN);
481         }
482 #endif
483         return ERR_PTR(-ENOENT);
484 }
485
486 static const struct nla_policy nft_table_policy[NFTA_TABLE_MAX + 1] = {
487         [NFTA_TABLE_NAME]       = { .type = NLA_STRING,
488                                     .len = NFT_TABLE_MAXNAMELEN - 1 },
489         [NFTA_TABLE_FLAGS]      = { .type = NLA_U32 },
490         [NFTA_TABLE_HANDLE]     = { .type = NLA_U64 },
491 };
492
493 static int nf_tables_fill_table_info(struct sk_buff *skb, struct net *net,
494                                      u32 portid, u32 seq, int event, u32 flags,
495                                      int family, const struct nft_table *table)
496 {
497         struct nlmsghdr *nlh;
498         struct nfgenmsg *nfmsg;
499
500         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
501         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
502         if (nlh == NULL)
503                 goto nla_put_failure;
504
505         nfmsg = nlmsg_data(nlh);
506         nfmsg->nfgen_family     = family;
507         nfmsg->version          = NFNETLINK_V0;
508         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
509
510         if (nla_put_string(skb, NFTA_TABLE_NAME, table->name) ||
511             nla_put_be32(skb, NFTA_TABLE_FLAGS, htonl(table->flags)) ||
512             nla_put_be32(skb, NFTA_TABLE_USE, htonl(table->use)) ||
513             nla_put_be64(skb, NFTA_TABLE_HANDLE, cpu_to_be64(table->handle),
514                          NFTA_TABLE_PAD))
515                 goto nla_put_failure;
516
517         nlmsg_end(skb, nlh);
518         return 0;
519
520 nla_put_failure:
521         nlmsg_trim(skb, nlh);
522         return -1;
523 }
524
525 static void nf_tables_table_notify(const struct nft_ctx *ctx, int event)
526 {
527         struct sk_buff *skb;
528         int err;
529
530         if (!ctx->report &&
531             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
532                 return;
533
534         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
535         if (skb == NULL)
536                 goto err;
537
538         err = nf_tables_fill_table_info(skb, ctx->net, ctx->portid, ctx->seq,
539                                         event, 0, ctx->family, ctx->table);
540         if (err < 0) {
541                 kfree_skb(skb);
542                 goto err;
543         }
544
545         nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
546                        ctx->report, GFP_KERNEL);
547         return;
548 err:
549         nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES, -ENOBUFS);
550 }
551
552 static int nf_tables_dump_tables(struct sk_buff *skb,
553                                  struct netlink_callback *cb)
554 {
555         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
556         const struct nft_table *table;
557         unsigned int idx = 0, s_idx = cb->args[0];
558         struct net *net = sock_net(skb->sk);
559         int family = nfmsg->nfgen_family;
560
561         rcu_read_lock();
562         cb->seq = net->nft.base_seq;
563
564         list_for_each_entry_rcu(table, &net->nft.tables, list) {
565                 if (family != NFPROTO_UNSPEC && family != table->family)
566                         continue;
567
568                 if (idx < s_idx)
569                         goto cont;
570                 if (idx > s_idx)
571                         memset(&cb->args[1], 0,
572                                sizeof(cb->args) - sizeof(cb->args[0]));
573                 if (!nft_is_active(net, table))
574                         continue;
575                 if (nf_tables_fill_table_info(skb, net,
576                                               NETLINK_CB(cb->skb).portid,
577                                               cb->nlh->nlmsg_seq,
578                                               NFT_MSG_NEWTABLE, NLM_F_MULTI,
579                                               table->family, table) < 0)
580                         goto done;
581
582                 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
583 cont:
584                 idx++;
585         }
586 done:
587         rcu_read_unlock();
588         cb->args[0] = idx;
589         return skb->len;
590 }
591
592 static int nf_tables_gettable(struct net *net, struct sock *nlsk,
593                               struct sk_buff *skb, const struct nlmsghdr *nlh,
594                               const struct nlattr * const nla[],
595                               struct netlink_ext_ack *extack)
596 {
597         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
598         u8 genmask = nft_genmask_cur(net);
599         const struct nft_table *table;
600         struct sk_buff *skb2;
601         int family = nfmsg->nfgen_family;
602         int err;
603
604         if (nlh->nlmsg_flags & NLM_F_DUMP) {
605                 struct netlink_dump_control c = {
606                         .dump = nf_tables_dump_tables,
607                 };
608                 return netlink_dump_start(nlsk, skb, nlh, &c);
609         }
610
611         table = nf_tables_table_lookup(net, nla[NFTA_TABLE_NAME], family,
612                                        genmask);
613         if (IS_ERR(table))
614                 return PTR_ERR(table);
615
616         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
617         if (!skb2)
618                 return -ENOMEM;
619
620         err = nf_tables_fill_table_info(skb2, net, NETLINK_CB(skb).portid,
621                                         nlh->nlmsg_seq, NFT_MSG_NEWTABLE, 0,
622                                         family, table);
623         if (err < 0)
624                 goto err;
625
626         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
627
628 err:
629         kfree_skb(skb2);
630         return err;
631 }
632
633 static void nft_table_disable(struct net *net, struct nft_table *table, u32 cnt)
634 {
635         struct nft_chain *chain;
636         u32 i = 0;
637
638         list_for_each_entry(chain, &table->chains, list) {
639                 if (!nft_is_active_next(net, chain))
640                         continue;
641                 if (!nft_is_base_chain(chain))
642                         continue;
643
644                 if (cnt && i++ == cnt)
645                         break;
646
647                 nf_unregister_net_hook(net, &nft_base_chain(chain)->ops);
648         }
649 }
650
651 static int nf_tables_table_enable(struct net *net, struct nft_table *table)
652 {
653         struct nft_chain *chain;
654         int err, i = 0;
655
656         list_for_each_entry(chain, &table->chains, list) {
657                 if (!nft_is_active_next(net, chain))
658                         continue;
659                 if (!nft_is_base_chain(chain))
660                         continue;
661
662                 err = nf_register_net_hook(net, &nft_base_chain(chain)->ops);
663                 if (err < 0)
664                         goto err;
665
666                 i++;
667         }
668         return 0;
669 err:
670         if (i)
671                 nft_table_disable(net, table, i);
672         return err;
673 }
674
675 static void nf_tables_table_disable(struct net *net, struct nft_table *table)
676 {
677         nft_table_disable(net, table, 0);
678 }
679
680 static int nf_tables_updtable(struct nft_ctx *ctx)
681 {
682         struct nft_trans *trans;
683         u32 flags;
684         int ret = 0;
685
686         if (!ctx->nla[NFTA_TABLE_FLAGS])
687                 return 0;
688
689         flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
690         if (flags & ~NFT_TABLE_F_DORMANT)
691                 return -EINVAL;
692
693         if (flags == ctx->table->flags)
694                 return 0;
695
696         trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE,
697                                 sizeof(struct nft_trans_table));
698         if (trans == NULL)
699                 return -ENOMEM;
700
701         if ((flags & NFT_TABLE_F_DORMANT) &&
702             !(ctx->table->flags & NFT_TABLE_F_DORMANT)) {
703                 nft_trans_table_enable(trans) = false;
704         } else if (!(flags & NFT_TABLE_F_DORMANT) &&
705                    ctx->table->flags & NFT_TABLE_F_DORMANT) {
706                 ret = nf_tables_table_enable(ctx->net, ctx->table);
707                 if (ret >= 0) {
708                         ctx->table->flags &= ~NFT_TABLE_F_DORMANT;
709                         nft_trans_table_enable(trans) = true;
710                 }
711         }
712         if (ret < 0)
713                 goto err;
714
715         nft_trans_table_update(trans) = true;
716         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
717         return 0;
718 err:
719         nft_trans_destroy(trans);
720         return ret;
721 }
722
723 static int nf_tables_newtable(struct net *net, struct sock *nlsk,
724                               struct sk_buff *skb, const struct nlmsghdr *nlh,
725                               const struct nlattr * const nla[],
726                               struct netlink_ext_ack *extack)
727 {
728         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
729         u8 genmask = nft_genmask_next(net);
730         const struct nlattr *name;
731         struct nft_table *table;
732         int family = nfmsg->nfgen_family;
733         u32 flags = 0;
734         struct nft_ctx ctx;
735         int err;
736
737         name = nla[NFTA_TABLE_NAME];
738         table = nf_tables_table_lookup(net, name, family, genmask);
739         if (IS_ERR(table)) {
740                 if (PTR_ERR(table) != -ENOENT)
741                         return PTR_ERR(table);
742         } else {
743                 if (nlh->nlmsg_flags & NLM_F_EXCL)
744                         return -EEXIST;
745                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
746                         return -EOPNOTSUPP;
747
748                 nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
749                 return nf_tables_updtable(&ctx);
750         }
751
752         if (nla[NFTA_TABLE_FLAGS]) {
753                 flags = ntohl(nla_get_be32(nla[NFTA_TABLE_FLAGS]));
754                 if (flags & ~NFT_TABLE_F_DORMANT)
755                         return -EINVAL;
756         }
757
758         err = -ENOMEM;
759         table = kzalloc(sizeof(*table), GFP_KERNEL);
760         if (table == NULL)
761                 goto err_kzalloc;
762
763         table->name = nla_strdup(name, GFP_KERNEL);
764         if (table->name == NULL)
765                 goto err_strdup;
766
767         INIT_LIST_HEAD(&table->chains);
768         INIT_LIST_HEAD(&table->sets);
769         INIT_LIST_HEAD(&table->objects);
770         INIT_LIST_HEAD(&table->flowtables);
771         table->family = family;
772         table->flags = flags;
773         table->handle = ++table_handle;
774
775         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
776         err = nft_trans_table_add(&ctx, NFT_MSG_NEWTABLE);
777         if (err < 0)
778                 goto err_trans;
779
780         list_add_tail_rcu(&table->list, &net->nft.tables);
781         return 0;
782 err_trans:
783         kfree(table->name);
784 err_strdup:
785         kfree(table);
786 err_kzalloc:
787         return err;
788 }
789
790 static int nft_flush_table(struct nft_ctx *ctx)
791 {
792         struct nft_flowtable *flowtable, *nft;
793         struct nft_chain *chain, *nc;
794         struct nft_object *obj, *ne;
795         struct nft_set *set, *ns;
796         int err;
797
798         list_for_each_entry(chain, &ctx->table->chains, list) {
799                 if (!nft_is_active_next(ctx->net, chain))
800                         continue;
801
802                 ctx->chain = chain;
803
804                 err = nft_delrule_by_chain(ctx);
805                 if (err < 0)
806                         goto out;
807         }
808
809         list_for_each_entry_safe(set, ns, &ctx->table->sets, list) {
810                 if (!nft_is_active_next(ctx->net, set))
811                         continue;
812
813                 if (nft_set_is_anonymous(set) &&
814                     !list_empty(&set->bindings))
815                         continue;
816
817                 err = nft_delset(ctx, set);
818                 if (err < 0)
819                         goto out;
820         }
821
822         list_for_each_entry_safe(flowtable, nft, &ctx->table->flowtables, list) {
823                 err = nft_delflowtable(ctx, flowtable);
824                 if (err < 0)
825                         goto out;
826         }
827
828         list_for_each_entry_safe(obj, ne, &ctx->table->objects, list) {
829                 err = nft_delobj(ctx, obj);
830                 if (err < 0)
831                         goto out;
832         }
833
834         list_for_each_entry_safe(chain, nc, &ctx->table->chains, list) {
835                 if (!nft_is_active_next(ctx->net, chain))
836                         continue;
837
838                 ctx->chain = chain;
839
840                 err = nft_delchain(ctx);
841                 if (err < 0)
842                         goto out;
843         }
844
845         err = nft_deltable(ctx);
846 out:
847         return err;
848 }
849
850 static int nft_flush(struct nft_ctx *ctx, int family)
851 {
852         struct nft_table *table, *nt;
853         const struct nlattr * const *nla = ctx->nla;
854         int err = 0;
855
856         list_for_each_entry_safe(table, nt, &ctx->net->nft.tables, list) {
857                 if (family != AF_UNSPEC && table->family != family)
858                         continue;
859
860                 ctx->family = table->family;
861
862                 if (!nft_is_active_next(ctx->net, table))
863                         continue;
864
865                 if (nla[NFTA_TABLE_NAME] &&
866                     nla_strcmp(nla[NFTA_TABLE_NAME], table->name) != 0)
867                         continue;
868
869                 ctx->table = table;
870
871                 err = nft_flush_table(ctx);
872                 if (err < 0)
873                         goto out;
874         }
875 out:
876         return err;
877 }
878
879 static int nf_tables_deltable(struct net *net, struct sock *nlsk,
880                               struct sk_buff *skb, const struct nlmsghdr *nlh,
881                               const struct nlattr * const nla[],
882                               struct netlink_ext_ack *extack)
883 {
884         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
885         u8 genmask = nft_genmask_next(net);
886         struct nft_table *table;
887         int family = nfmsg->nfgen_family;
888         struct nft_ctx ctx;
889
890         nft_ctx_init(&ctx, net, skb, nlh, 0, NULL, NULL, nla);
891         if (family == AF_UNSPEC ||
892             (!nla[NFTA_TABLE_NAME] && !nla[NFTA_TABLE_HANDLE]))
893                 return nft_flush(&ctx, family);
894
895         if (nla[NFTA_TABLE_HANDLE])
896                 table = nf_tables_table_lookup_byhandle(net,
897                                                         nla[NFTA_TABLE_HANDLE],
898                                                         genmask);
899         else
900                 table = nf_tables_table_lookup(net, nla[NFTA_TABLE_NAME],
901                                                family, genmask);
902
903         if (IS_ERR(table))
904                 return PTR_ERR(table);
905
906         if (nlh->nlmsg_flags & NLM_F_NONREC &&
907             table->use > 0)
908                 return -EBUSY;
909
910         ctx.family = family;
911         ctx.table = table;
912
913         return nft_flush_table(&ctx);
914 }
915
916 static void nf_tables_table_destroy(struct nft_ctx *ctx)
917 {
918         BUG_ON(ctx->table->use > 0);
919
920         kfree(ctx->table->name);
921         kfree(ctx->table);
922 }
923
924 int nft_register_chain_type(const struct nf_chain_type *ctype)
925 {
926         int err = 0;
927
928         if (WARN_ON(ctype->family >= NFPROTO_NUMPROTO))
929                 return -EINVAL;
930
931         nfnl_lock(NFNL_SUBSYS_NFTABLES);
932         if (chain_type[ctype->family][ctype->type] != NULL) {
933                 err = -EBUSY;
934                 goto out;
935         }
936         chain_type[ctype->family][ctype->type] = ctype;
937 out:
938         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
939         return err;
940 }
941 EXPORT_SYMBOL_GPL(nft_register_chain_type);
942
943 void nft_unregister_chain_type(const struct nf_chain_type *ctype)
944 {
945         nfnl_lock(NFNL_SUBSYS_NFTABLES);
946         chain_type[ctype->family][ctype->type] = NULL;
947         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
948 }
949 EXPORT_SYMBOL_GPL(nft_unregister_chain_type);
950
951 /*
952  * Chains
953  */
954
955 static struct nft_chain *
956 nf_tables_chain_lookup_byhandle(const struct nft_table *table, u64 handle,
957                                 u8 genmask)
958 {
959         struct nft_chain *chain;
960
961         list_for_each_entry(chain, &table->chains, list) {
962                 if (chain->handle == handle &&
963                     nft_active_genmask(chain, genmask))
964                         return chain;
965         }
966
967         return ERR_PTR(-ENOENT);
968 }
969
970 static struct nft_chain *nf_tables_chain_lookup(const struct nft_table *table,
971                                                 const struct nlattr *nla,
972                                                 u8 genmask)
973 {
974         struct nft_chain *chain;
975
976         if (nla == NULL)
977                 return ERR_PTR(-EINVAL);
978
979         list_for_each_entry(chain, &table->chains, list) {
980                 if (!nla_strcmp(nla, chain->name) &&
981                     nft_active_genmask(chain, genmask))
982                         return chain;
983         }
984
985         return ERR_PTR(-ENOENT);
986 }
987
988 static const struct nla_policy nft_chain_policy[NFTA_CHAIN_MAX + 1] = {
989         [NFTA_CHAIN_TABLE]      = { .type = NLA_STRING,
990                                     .len = NFT_TABLE_MAXNAMELEN - 1 },
991         [NFTA_CHAIN_HANDLE]     = { .type = NLA_U64 },
992         [NFTA_CHAIN_NAME]       = { .type = NLA_STRING,
993                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
994         [NFTA_CHAIN_HOOK]       = { .type = NLA_NESTED },
995         [NFTA_CHAIN_POLICY]     = { .type = NLA_U32 },
996         [NFTA_CHAIN_TYPE]       = { .type = NLA_STRING },
997         [NFTA_CHAIN_COUNTERS]   = { .type = NLA_NESTED },
998 };
999
1000 static const struct nla_policy nft_hook_policy[NFTA_HOOK_MAX + 1] = {
1001         [NFTA_HOOK_HOOKNUM]     = { .type = NLA_U32 },
1002         [NFTA_HOOK_PRIORITY]    = { .type = NLA_U32 },
1003         [NFTA_HOOK_DEV]         = { .type = NLA_STRING,
1004                                     .len = IFNAMSIZ - 1 },
1005 };
1006
1007 static int nft_dump_stats(struct sk_buff *skb, struct nft_stats __percpu *stats)
1008 {
1009         struct nft_stats *cpu_stats, total;
1010         struct nlattr *nest;
1011         unsigned int seq;
1012         u64 pkts, bytes;
1013         int cpu;
1014
1015         memset(&total, 0, sizeof(total));
1016         for_each_possible_cpu(cpu) {
1017                 cpu_stats = per_cpu_ptr(stats, cpu);
1018                 do {
1019                         seq = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
1020                         pkts = cpu_stats->pkts;
1021                         bytes = cpu_stats->bytes;
1022                 } while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, seq));
1023                 total.pkts += pkts;
1024                 total.bytes += bytes;
1025         }
1026         nest = nla_nest_start(skb, NFTA_CHAIN_COUNTERS);
1027         if (nest == NULL)
1028                 goto nla_put_failure;
1029
1030         if (nla_put_be64(skb, NFTA_COUNTER_PACKETS, cpu_to_be64(total.pkts),
1031                          NFTA_COUNTER_PAD) ||
1032             nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes),
1033                          NFTA_COUNTER_PAD))
1034                 goto nla_put_failure;
1035
1036         nla_nest_end(skb, nest);
1037         return 0;
1038
1039 nla_put_failure:
1040         return -ENOSPC;
1041 }
1042
1043 static int nf_tables_fill_chain_info(struct sk_buff *skb, struct net *net,
1044                                      u32 portid, u32 seq, int event, u32 flags,
1045                                      int family, const struct nft_table *table,
1046                                      const struct nft_chain *chain)
1047 {
1048         struct nlmsghdr *nlh;
1049         struct nfgenmsg *nfmsg;
1050
1051         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
1052         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
1053         if (nlh == NULL)
1054                 goto nla_put_failure;
1055
1056         nfmsg = nlmsg_data(nlh);
1057         nfmsg->nfgen_family     = family;
1058         nfmsg->version          = NFNETLINK_V0;
1059         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
1060
1061         if (nla_put_string(skb, NFTA_CHAIN_TABLE, table->name))
1062                 goto nla_put_failure;
1063         if (nla_put_be64(skb, NFTA_CHAIN_HANDLE, cpu_to_be64(chain->handle),
1064                          NFTA_CHAIN_PAD))
1065                 goto nla_put_failure;
1066         if (nla_put_string(skb, NFTA_CHAIN_NAME, chain->name))
1067                 goto nla_put_failure;
1068
1069         if (nft_is_base_chain(chain)) {
1070                 const struct nft_base_chain *basechain = nft_base_chain(chain);
1071                 const struct nf_hook_ops *ops = &basechain->ops;
1072                 struct nlattr *nest;
1073
1074                 nest = nla_nest_start(skb, NFTA_CHAIN_HOOK);
1075                 if (nest == NULL)
1076                         goto nla_put_failure;
1077                 if (nla_put_be32(skb, NFTA_HOOK_HOOKNUM, htonl(ops->hooknum)))
1078                         goto nla_put_failure;
1079                 if (nla_put_be32(skb, NFTA_HOOK_PRIORITY, htonl(ops->priority)))
1080                         goto nla_put_failure;
1081                 if (basechain->dev_name[0] &&
1082                     nla_put_string(skb, NFTA_HOOK_DEV, basechain->dev_name))
1083                         goto nla_put_failure;
1084                 nla_nest_end(skb, nest);
1085
1086                 if (nla_put_be32(skb, NFTA_CHAIN_POLICY,
1087                                  htonl(basechain->policy)))
1088                         goto nla_put_failure;
1089
1090                 if (nla_put_string(skb, NFTA_CHAIN_TYPE, basechain->type->name))
1091                         goto nla_put_failure;
1092
1093                 if (basechain->stats && nft_dump_stats(skb, basechain->stats))
1094                         goto nla_put_failure;
1095         }
1096
1097         if (nla_put_be32(skb, NFTA_CHAIN_USE, htonl(chain->use)))
1098                 goto nla_put_failure;
1099
1100         nlmsg_end(skb, nlh);
1101         return 0;
1102
1103 nla_put_failure:
1104         nlmsg_trim(skb, nlh);
1105         return -1;
1106 }
1107
1108 static void nf_tables_chain_notify(const struct nft_ctx *ctx, int event)
1109 {
1110         struct sk_buff *skb;
1111         int err;
1112
1113         if (!ctx->report &&
1114             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
1115                 return;
1116
1117         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1118         if (skb == NULL)
1119                 goto err;
1120
1121         err = nf_tables_fill_chain_info(skb, ctx->net, ctx->portid, ctx->seq,
1122                                         event, 0, ctx->family, ctx->table,
1123                                         ctx->chain);
1124         if (err < 0) {
1125                 kfree_skb(skb);
1126                 goto err;
1127         }
1128
1129         nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1130                        ctx->report, GFP_KERNEL);
1131         return;
1132 err:
1133         nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES, -ENOBUFS);
1134 }
1135
1136 static int nf_tables_dump_chains(struct sk_buff *skb,
1137                                  struct netlink_callback *cb)
1138 {
1139         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1140         const struct nft_table *table;
1141         const struct nft_chain *chain;
1142         unsigned int idx = 0, s_idx = cb->args[0];
1143         struct net *net = sock_net(skb->sk);
1144         int family = nfmsg->nfgen_family;
1145
1146         rcu_read_lock();
1147         cb->seq = net->nft.base_seq;
1148
1149         list_for_each_entry_rcu(table, &net->nft.tables, list) {
1150                 if (family != NFPROTO_UNSPEC && family != table->family)
1151                         continue;
1152
1153                 list_for_each_entry_rcu(chain, &table->chains, list) {
1154                         if (idx < s_idx)
1155                                 goto cont;
1156                         if (idx > s_idx)
1157                                 memset(&cb->args[1], 0,
1158                                        sizeof(cb->args) - sizeof(cb->args[0]));
1159                         if (!nft_is_active(net, chain))
1160                                 continue;
1161                         if (nf_tables_fill_chain_info(skb, net,
1162                                                       NETLINK_CB(cb->skb).portid,
1163                                                       cb->nlh->nlmsg_seq,
1164                                                       NFT_MSG_NEWCHAIN,
1165                                                       NLM_F_MULTI,
1166                                                       table->family, table,
1167                                                       chain) < 0)
1168                                 goto done;
1169
1170                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
1171 cont:
1172                         idx++;
1173                 }
1174         }
1175 done:
1176         rcu_read_unlock();
1177         cb->args[0] = idx;
1178         return skb->len;
1179 }
1180
1181 static int nf_tables_getchain(struct net *net, struct sock *nlsk,
1182                               struct sk_buff *skb, const struct nlmsghdr *nlh,
1183                               const struct nlattr * const nla[],
1184                               struct netlink_ext_ack *extack)
1185 {
1186         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1187         u8 genmask = nft_genmask_cur(net);
1188         const struct nft_table *table;
1189         const struct nft_chain *chain;
1190         struct sk_buff *skb2;
1191         int family = nfmsg->nfgen_family;
1192         int err;
1193
1194         if (nlh->nlmsg_flags & NLM_F_DUMP) {
1195                 struct netlink_dump_control c = {
1196                         .dump = nf_tables_dump_chains,
1197                 };
1198                 return netlink_dump_start(nlsk, skb, nlh, &c);
1199         }
1200
1201         table = nf_tables_table_lookup(net, nla[NFTA_CHAIN_TABLE], family,
1202                                        genmask);
1203         if (IS_ERR(table))
1204                 return PTR_ERR(table);
1205
1206         chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME], genmask);
1207         if (IS_ERR(chain))
1208                 return PTR_ERR(chain);
1209
1210         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1211         if (!skb2)
1212                 return -ENOMEM;
1213
1214         err = nf_tables_fill_chain_info(skb2, net, NETLINK_CB(skb).portid,
1215                                         nlh->nlmsg_seq, NFT_MSG_NEWCHAIN, 0,
1216                                         family, table, chain);
1217         if (err < 0)
1218                 goto err;
1219
1220         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1221
1222 err:
1223         kfree_skb(skb2);
1224         return err;
1225 }
1226
1227 static const struct nla_policy nft_counter_policy[NFTA_COUNTER_MAX + 1] = {
1228         [NFTA_COUNTER_PACKETS]  = { .type = NLA_U64 },
1229         [NFTA_COUNTER_BYTES]    = { .type = NLA_U64 },
1230 };
1231
1232 static struct nft_stats __percpu *nft_stats_alloc(const struct nlattr *attr)
1233 {
1234         struct nlattr *tb[NFTA_COUNTER_MAX+1];
1235         struct nft_stats __percpu *newstats;
1236         struct nft_stats *stats;
1237         int err;
1238
1239         err = nla_parse_nested(tb, NFTA_COUNTER_MAX, attr, nft_counter_policy,
1240                                NULL);
1241         if (err < 0)
1242                 return ERR_PTR(err);
1243
1244         if (!tb[NFTA_COUNTER_BYTES] || !tb[NFTA_COUNTER_PACKETS])
1245                 return ERR_PTR(-EINVAL);
1246
1247         newstats = netdev_alloc_pcpu_stats(struct nft_stats);
1248         if (newstats == NULL)
1249                 return ERR_PTR(-ENOMEM);
1250
1251         /* Restore old counters on this cpu, no problem. Per-cpu statistics
1252          * are not exposed to userspace.
1253          */
1254         preempt_disable();
1255         stats = this_cpu_ptr(newstats);
1256         stats->bytes = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_BYTES]));
1257         stats->pkts = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_PACKETS]));
1258         preempt_enable();
1259
1260         return newstats;
1261 }
1262
1263 static void nft_chain_stats_replace(struct nft_base_chain *chain,
1264                                     struct nft_stats __percpu *newstats)
1265 {
1266         struct nft_stats __percpu *oldstats;
1267
1268         if (newstats == NULL)
1269                 return;
1270
1271         if (chain->stats) {
1272                 oldstats = nfnl_dereference(chain->stats, NFNL_SUBSYS_NFTABLES);
1273                 rcu_assign_pointer(chain->stats, newstats);
1274                 synchronize_rcu();
1275                 free_percpu(oldstats);
1276         } else
1277                 rcu_assign_pointer(chain->stats, newstats);
1278 }
1279
1280 static void nf_tables_chain_destroy(struct nft_chain *chain)
1281 {
1282         BUG_ON(chain->use > 0);
1283
1284         if (nft_is_base_chain(chain)) {
1285                 struct nft_base_chain *basechain = nft_base_chain(chain);
1286
1287                 module_put(basechain->type->owner);
1288                 free_percpu(basechain->stats);
1289                 if (basechain->stats)
1290                         static_branch_dec(&nft_counters_enabled);
1291                 if (basechain->ops.dev != NULL)
1292                         dev_put(basechain->ops.dev);
1293                 kfree(chain->name);
1294                 kfree(basechain);
1295         } else {
1296                 kfree(chain->name);
1297                 kfree(chain);
1298         }
1299 }
1300
1301 struct nft_chain_hook {
1302         u32                             num;
1303         s32                             priority;
1304         const struct nf_chain_type      *type;
1305         struct net_device               *dev;
1306 };
1307
1308 static int nft_chain_parse_hook(struct net *net,
1309                                 const struct nlattr * const nla[],
1310                                 struct nft_chain_hook *hook, u8 family,
1311                                 bool create)
1312 {
1313         struct nlattr *ha[NFTA_HOOK_MAX + 1];
1314         const struct nf_chain_type *type;
1315         struct net_device *dev;
1316         int err;
1317
1318         err = nla_parse_nested(ha, NFTA_HOOK_MAX, nla[NFTA_CHAIN_HOOK],
1319                                nft_hook_policy, NULL);
1320         if (err < 0)
1321                 return err;
1322
1323         if (ha[NFTA_HOOK_HOOKNUM] == NULL ||
1324             ha[NFTA_HOOK_PRIORITY] == NULL)
1325                 return -EINVAL;
1326
1327         hook->num = ntohl(nla_get_be32(ha[NFTA_HOOK_HOOKNUM]));
1328         hook->priority = ntohl(nla_get_be32(ha[NFTA_HOOK_PRIORITY]));
1329
1330         type = chain_type[family][NFT_CHAIN_T_DEFAULT];
1331         if (nla[NFTA_CHAIN_TYPE]) {
1332                 type = nf_tables_chain_type_lookup(nla[NFTA_CHAIN_TYPE],
1333                                                    family, create);
1334                 if (IS_ERR(type))
1335                         return PTR_ERR(type);
1336         }
1337         if (!(type->hook_mask & (1 << hook->num)))
1338                 return -EOPNOTSUPP;
1339
1340         if (type->type == NFT_CHAIN_T_NAT &&
1341             hook->priority <= NF_IP_PRI_CONNTRACK)
1342                 return -EOPNOTSUPP;
1343
1344         if (!try_module_get(type->owner))
1345                 return -ENOENT;
1346
1347         hook->type = type;
1348
1349         hook->dev = NULL;
1350         if (family == NFPROTO_NETDEV) {
1351                 char ifname[IFNAMSIZ];
1352
1353                 if (!ha[NFTA_HOOK_DEV]) {
1354                         module_put(type->owner);
1355                         return -EOPNOTSUPP;
1356                 }
1357
1358                 nla_strlcpy(ifname, ha[NFTA_HOOK_DEV], IFNAMSIZ);
1359                 dev = dev_get_by_name(net, ifname);
1360                 if (!dev) {
1361                         module_put(type->owner);
1362                         return -ENOENT;
1363                 }
1364                 hook->dev = dev;
1365         } else if (ha[NFTA_HOOK_DEV]) {
1366                 module_put(type->owner);
1367                 return -EOPNOTSUPP;
1368         }
1369
1370         return 0;
1371 }
1372
1373 static void nft_chain_release_hook(struct nft_chain_hook *hook)
1374 {
1375         module_put(hook->type->owner);
1376         if (hook->dev != NULL)
1377                 dev_put(hook->dev);
1378 }
1379
1380 static int nf_tables_addchain(struct nft_ctx *ctx, u8 family, u8 genmask,
1381                               u8 policy, bool create)
1382 {
1383         const struct nlattr * const *nla = ctx->nla;
1384         struct nft_table *table = ctx->table;
1385         struct nft_base_chain *basechain;
1386         struct nft_stats __percpu *stats;
1387         struct net *net = ctx->net;
1388         struct nft_chain *chain;
1389         int err;
1390
1391         if (table->use == UINT_MAX)
1392                 return -EOVERFLOW;
1393
1394         if (nla[NFTA_CHAIN_HOOK]) {
1395                 struct nft_chain_hook hook;
1396                 struct nf_hook_ops *ops;
1397
1398                 err = nft_chain_parse_hook(net, nla, &hook, family, create);
1399                 if (err < 0)
1400                         return err;
1401
1402                 basechain = kzalloc(sizeof(*basechain), GFP_KERNEL);
1403                 if (basechain == NULL) {
1404                         nft_chain_release_hook(&hook);
1405                         return -ENOMEM;
1406                 }
1407
1408                 if (hook.dev != NULL)
1409                         strncpy(basechain->dev_name, hook.dev->name, IFNAMSIZ);
1410
1411                 if (nla[NFTA_CHAIN_COUNTERS]) {
1412                         stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1413                         if (IS_ERR(stats)) {
1414                                 nft_chain_release_hook(&hook);
1415                                 kfree(basechain);
1416                                 return PTR_ERR(stats);
1417                         }
1418                         basechain->stats = stats;
1419                         static_branch_inc(&nft_counters_enabled);
1420                 }
1421
1422                 basechain->type = hook.type;
1423                 chain = &basechain->chain;
1424
1425                 ops             = &basechain->ops;
1426                 ops->pf         = family;
1427                 ops->hooknum    = hook.num;
1428                 ops->priority   = hook.priority;
1429                 ops->priv       = chain;
1430                 ops->hook       = hook.type->hooks[ops->hooknum];
1431                 ops->dev        = hook.dev;
1432
1433                 if (basechain->type->type == NFT_CHAIN_T_NAT)
1434                         ops->nat_hook = true;
1435
1436                 chain->flags |= NFT_BASE_CHAIN;
1437                 basechain->policy = policy;
1438         } else {
1439                 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
1440                 if (chain == NULL)
1441                         return -ENOMEM;
1442         }
1443         INIT_LIST_HEAD(&chain->rules);
1444         chain->handle = nf_tables_alloc_handle(table);
1445         chain->table = table;
1446         chain->name = nla_strdup(nla[NFTA_CHAIN_NAME], GFP_KERNEL);
1447         if (!chain->name) {
1448                 err = -ENOMEM;
1449                 goto err1;
1450         }
1451
1452         err = nf_tables_register_hook(net, table, chain);
1453         if (err < 0)
1454                 goto err1;
1455
1456         ctx->chain = chain;
1457         err = nft_trans_chain_add(ctx, NFT_MSG_NEWCHAIN);
1458         if (err < 0)
1459                 goto err2;
1460
1461         table->use++;
1462         list_add_tail_rcu(&chain->list, &table->chains);
1463
1464         return 0;
1465 err2:
1466         nf_tables_unregister_hook(net, table, chain);
1467 err1:
1468         nf_tables_chain_destroy(chain);
1469
1470         return err;
1471 }
1472
1473 static int nf_tables_updchain(struct nft_ctx *ctx, u8 genmask, u8 policy,
1474                               bool create)
1475 {
1476         const struct nlattr * const *nla = ctx->nla;
1477         struct nft_table *table = ctx->table;
1478         struct nft_chain *chain = ctx->chain;
1479         struct nft_base_chain *basechain;
1480         struct nft_stats *stats = NULL;
1481         struct nft_chain_hook hook;
1482         const struct nlattr *name;
1483         struct nf_hook_ops *ops;
1484         struct nft_trans *trans;
1485         int err;
1486
1487         if (nla[NFTA_CHAIN_HOOK]) {
1488                 if (!nft_is_base_chain(chain))
1489                         return -EBUSY;
1490
1491                 err = nft_chain_parse_hook(ctx->net, nla, &hook, ctx->family,
1492                                            create);
1493                 if (err < 0)
1494                         return err;
1495
1496                 basechain = nft_base_chain(chain);
1497                 if (basechain->type != hook.type) {
1498                         nft_chain_release_hook(&hook);
1499                         return -EBUSY;
1500                 }
1501
1502                 ops = &basechain->ops;
1503                 if (ops->hooknum != hook.num ||
1504                     ops->priority != hook.priority ||
1505                     ops->dev != hook.dev) {
1506                         nft_chain_release_hook(&hook);
1507                         return -EBUSY;
1508                 }
1509                 nft_chain_release_hook(&hook);
1510         }
1511
1512         if (nla[NFTA_CHAIN_HANDLE] &&
1513             nla[NFTA_CHAIN_NAME]) {
1514                 struct nft_chain *chain2;
1515
1516                 chain2 = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME],
1517                                                 genmask);
1518                 if (!IS_ERR(chain2))
1519                         return -EEXIST;
1520         }
1521
1522         if (nla[NFTA_CHAIN_COUNTERS]) {
1523                 if (!nft_is_base_chain(chain))
1524                         return -EOPNOTSUPP;
1525
1526                 stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1527                 if (IS_ERR(stats))
1528                         return PTR_ERR(stats);
1529         }
1530
1531         trans = nft_trans_alloc(ctx, NFT_MSG_NEWCHAIN,
1532                                 sizeof(struct nft_trans_chain));
1533         if (trans == NULL) {
1534                 free_percpu(stats);
1535                 return -ENOMEM;
1536         }
1537
1538         nft_trans_chain_stats(trans) = stats;
1539         nft_trans_chain_update(trans) = true;
1540
1541         if (nla[NFTA_CHAIN_POLICY])
1542                 nft_trans_chain_policy(trans) = policy;
1543         else
1544                 nft_trans_chain_policy(trans) = -1;
1545
1546         name = nla[NFTA_CHAIN_NAME];
1547         if (nla[NFTA_CHAIN_HANDLE] && name) {
1548                 nft_trans_chain_name(trans) =
1549                         nla_strdup(name, GFP_KERNEL);
1550                 if (!nft_trans_chain_name(trans)) {
1551                         kfree(trans);
1552                         free_percpu(stats);
1553                         return -ENOMEM;
1554                 }
1555         }
1556         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
1557
1558         return 0;
1559 }
1560
1561 static int nf_tables_newchain(struct net *net, struct sock *nlsk,
1562                               struct sk_buff *skb, const struct nlmsghdr *nlh,
1563                               const struct nlattr * const nla[],
1564                               struct netlink_ext_ack *extack)
1565 {
1566         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1567         const struct nlattr * uninitialized_var(name);
1568         u8 genmask = nft_genmask_next(net);
1569         int family = nfmsg->nfgen_family;
1570         struct nft_table *table;
1571         struct nft_chain *chain;
1572         u8 policy = NF_ACCEPT;
1573         struct nft_ctx ctx;
1574         u64 handle = 0;
1575         bool create;
1576
1577         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1578
1579         table = nf_tables_table_lookup(net, nla[NFTA_CHAIN_TABLE], family,
1580                                        genmask);
1581         if (IS_ERR(table))
1582                 return PTR_ERR(table);
1583
1584         chain = NULL;
1585         name = nla[NFTA_CHAIN_NAME];
1586
1587         if (nla[NFTA_CHAIN_HANDLE]) {
1588                 handle = be64_to_cpu(nla_get_be64(nla[NFTA_CHAIN_HANDLE]));
1589                 chain = nf_tables_chain_lookup_byhandle(table, handle, genmask);
1590                 if (IS_ERR(chain))
1591                         return PTR_ERR(chain);
1592         } else {
1593                 chain = nf_tables_chain_lookup(table, name, genmask);
1594                 if (IS_ERR(chain)) {
1595                         if (PTR_ERR(chain) != -ENOENT)
1596                                 return PTR_ERR(chain);
1597                         chain = NULL;
1598                 }
1599         }
1600
1601         if (nla[NFTA_CHAIN_POLICY]) {
1602                 if (chain != NULL &&
1603                     !nft_is_base_chain(chain))
1604                         return -EOPNOTSUPP;
1605
1606                 if (chain == NULL &&
1607                     nla[NFTA_CHAIN_HOOK] == NULL)
1608                         return -EOPNOTSUPP;
1609
1610                 policy = ntohl(nla_get_be32(nla[NFTA_CHAIN_POLICY]));
1611                 switch (policy) {
1612                 case NF_DROP:
1613                 case NF_ACCEPT:
1614                         break;
1615                 default:
1616                         return -EINVAL;
1617                 }
1618         }
1619
1620         nft_ctx_init(&ctx, net, skb, nlh, family, table, chain, nla);
1621
1622         if (chain != NULL) {
1623                 if (nlh->nlmsg_flags & NLM_F_EXCL)
1624                         return -EEXIST;
1625                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1626                         return -EOPNOTSUPP;
1627
1628                 return nf_tables_updchain(&ctx, genmask, policy, create);
1629         }
1630
1631         return nf_tables_addchain(&ctx, family, genmask, policy, create);
1632 }
1633
1634 static int nf_tables_delchain(struct net *net, struct sock *nlsk,
1635                               struct sk_buff *skb, const struct nlmsghdr *nlh,
1636                               const struct nlattr * const nla[],
1637                               struct netlink_ext_ack *extack)
1638 {
1639         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1640         u8 genmask = nft_genmask_next(net);
1641         struct nft_table *table;
1642         struct nft_chain *chain;
1643         struct nft_rule *rule;
1644         int family = nfmsg->nfgen_family;
1645         struct nft_ctx ctx;
1646         u64 handle;
1647         u32 use;
1648         int err;
1649
1650         table = nf_tables_table_lookup(net, nla[NFTA_CHAIN_TABLE], family,
1651                                        genmask);
1652         if (IS_ERR(table))
1653                 return PTR_ERR(table);
1654
1655         if (nla[NFTA_CHAIN_HANDLE]) {
1656                 handle = be64_to_cpu(nla_get_be64(nla[NFTA_CHAIN_HANDLE]));
1657                 chain = nf_tables_chain_lookup_byhandle(table, handle, genmask);
1658         } else {
1659                 chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME], genmask);
1660         }
1661         if (IS_ERR(chain))
1662                 return PTR_ERR(chain);
1663
1664         if (nlh->nlmsg_flags & NLM_F_NONREC &&
1665             chain->use > 0)
1666                 return -EBUSY;
1667
1668         nft_ctx_init(&ctx, net, skb, nlh, family, table, chain, nla);
1669
1670         use = chain->use;
1671         list_for_each_entry(rule, &chain->rules, list) {
1672                 if (!nft_is_active_next(net, rule))
1673                         continue;
1674                 use--;
1675
1676                 err = nft_delrule(&ctx, rule);
1677                 if (err < 0)
1678                         return err;
1679         }
1680
1681         /* There are rules and elements that are still holding references to us,
1682          * we cannot do a recursive removal in this case.
1683          */
1684         if (use > 0)
1685                 return -EBUSY;
1686
1687         return nft_delchain(&ctx);
1688 }
1689
1690 /*
1691  * Expressions
1692  */
1693
1694 /**
1695  *      nft_register_expr - register nf_tables expr type
1696  *      @ops: expr type
1697  *
1698  *      Registers the expr type for use with nf_tables. Returns zero on
1699  *      success or a negative errno code otherwise.
1700  */
1701 int nft_register_expr(struct nft_expr_type *type)
1702 {
1703         nfnl_lock(NFNL_SUBSYS_NFTABLES);
1704         if (type->family == NFPROTO_UNSPEC)
1705                 list_add_tail_rcu(&type->list, &nf_tables_expressions);
1706         else
1707                 list_add_rcu(&type->list, &nf_tables_expressions);
1708         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1709         return 0;
1710 }
1711 EXPORT_SYMBOL_GPL(nft_register_expr);
1712
1713 /**
1714  *      nft_unregister_expr - unregister nf_tables expr type
1715  *      @ops: expr type
1716  *
1717  *      Unregisters the expr typefor use with nf_tables.
1718  */
1719 void nft_unregister_expr(struct nft_expr_type *type)
1720 {
1721         nfnl_lock(NFNL_SUBSYS_NFTABLES);
1722         list_del_rcu(&type->list);
1723         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1724 }
1725 EXPORT_SYMBOL_GPL(nft_unregister_expr);
1726
1727 static const struct nft_expr_type *__nft_expr_type_get(u8 family,
1728                                                        struct nlattr *nla)
1729 {
1730         const struct nft_expr_type *type;
1731
1732         list_for_each_entry(type, &nf_tables_expressions, list) {
1733                 if (!nla_strcmp(nla, type->name) &&
1734                     (!type->family || type->family == family))
1735                         return type;
1736         }
1737         return NULL;
1738 }
1739
1740 static const struct nft_expr_type *nft_expr_type_get(u8 family,
1741                                                      struct nlattr *nla)
1742 {
1743         const struct nft_expr_type *type;
1744
1745         if (nla == NULL)
1746                 return ERR_PTR(-EINVAL);
1747
1748         type = __nft_expr_type_get(family, nla);
1749         if (type != NULL && try_module_get(type->owner))
1750                 return type;
1751
1752 #ifdef CONFIG_MODULES
1753         if (type == NULL) {
1754                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1755                 request_module("nft-expr-%u-%.*s", family,
1756                                nla_len(nla), (char *)nla_data(nla));
1757                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1758                 if (__nft_expr_type_get(family, nla))
1759                         return ERR_PTR(-EAGAIN);
1760
1761                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1762                 request_module("nft-expr-%.*s",
1763                                nla_len(nla), (char *)nla_data(nla));
1764                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1765                 if (__nft_expr_type_get(family, nla))
1766                         return ERR_PTR(-EAGAIN);
1767         }
1768 #endif
1769         return ERR_PTR(-ENOENT);
1770 }
1771
1772 static const struct nla_policy nft_expr_policy[NFTA_EXPR_MAX + 1] = {
1773         [NFTA_EXPR_NAME]        = { .type = NLA_STRING },
1774         [NFTA_EXPR_DATA]        = { .type = NLA_NESTED },
1775 };
1776
1777 static int nf_tables_fill_expr_info(struct sk_buff *skb,
1778                                     const struct nft_expr *expr)
1779 {
1780         if (nla_put_string(skb, NFTA_EXPR_NAME, expr->ops->type->name))
1781                 goto nla_put_failure;
1782
1783         if (expr->ops->dump) {
1784                 struct nlattr *data = nla_nest_start(skb, NFTA_EXPR_DATA);
1785                 if (data == NULL)
1786                         goto nla_put_failure;
1787                 if (expr->ops->dump(skb, expr) < 0)
1788                         goto nla_put_failure;
1789                 nla_nest_end(skb, data);
1790         }
1791
1792         return skb->len;
1793
1794 nla_put_failure:
1795         return -1;
1796 };
1797
1798 int nft_expr_dump(struct sk_buff *skb, unsigned int attr,
1799                   const struct nft_expr *expr)
1800 {
1801         struct nlattr *nest;
1802
1803         nest = nla_nest_start(skb, attr);
1804         if (!nest)
1805                 goto nla_put_failure;
1806         if (nf_tables_fill_expr_info(skb, expr) < 0)
1807                 goto nla_put_failure;
1808         nla_nest_end(skb, nest);
1809         return 0;
1810
1811 nla_put_failure:
1812         return -1;
1813 }
1814
1815 struct nft_expr_info {
1816         const struct nft_expr_ops       *ops;
1817         struct nlattr                   *tb[NFT_EXPR_MAXATTR + 1];
1818 };
1819
1820 static int nf_tables_expr_parse(const struct nft_ctx *ctx,
1821                                 const struct nlattr *nla,
1822                                 struct nft_expr_info *info)
1823 {
1824         const struct nft_expr_type *type;
1825         const struct nft_expr_ops *ops;
1826         struct nlattr *tb[NFTA_EXPR_MAX + 1];
1827         int err;
1828
1829         err = nla_parse_nested(tb, NFTA_EXPR_MAX, nla, nft_expr_policy, NULL);
1830         if (err < 0)
1831                 return err;
1832
1833         type = nft_expr_type_get(ctx->family, tb[NFTA_EXPR_NAME]);
1834         if (IS_ERR(type))
1835                 return PTR_ERR(type);
1836
1837         if (tb[NFTA_EXPR_DATA]) {
1838                 err = nla_parse_nested(info->tb, type->maxattr,
1839                                        tb[NFTA_EXPR_DATA], type->policy, NULL);
1840                 if (err < 0)
1841                         goto err1;
1842         } else
1843                 memset(info->tb, 0, sizeof(info->tb[0]) * (type->maxattr + 1));
1844
1845         if (type->select_ops != NULL) {
1846                 ops = type->select_ops(ctx,
1847                                        (const struct nlattr * const *)info->tb);
1848                 if (IS_ERR(ops)) {
1849                         err = PTR_ERR(ops);
1850                         goto err1;
1851                 }
1852         } else
1853                 ops = type->ops;
1854
1855         info->ops = ops;
1856         return 0;
1857
1858 err1:
1859         module_put(type->owner);
1860         return err;
1861 }
1862
1863 static int nf_tables_newexpr(const struct nft_ctx *ctx,
1864                              const struct nft_expr_info *info,
1865                              struct nft_expr *expr)
1866 {
1867         const struct nft_expr_ops *ops = info->ops;
1868         int err;
1869
1870         expr->ops = ops;
1871         if (ops->init) {
1872                 err = ops->init(ctx, expr, (const struct nlattr **)info->tb);
1873                 if (err < 0)
1874                         goto err1;
1875         }
1876
1877         if (ops->validate) {
1878                 const struct nft_data *data = NULL;
1879
1880                 err = ops->validate(ctx, expr, &data);
1881                 if (err < 0)
1882                         goto err2;
1883         }
1884
1885         return 0;
1886
1887 err2:
1888         if (ops->destroy)
1889                 ops->destroy(ctx, expr);
1890 err1:
1891         expr->ops = NULL;
1892         return err;
1893 }
1894
1895 static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
1896                                    struct nft_expr *expr)
1897 {
1898         if (expr->ops->destroy)
1899                 expr->ops->destroy(ctx, expr);
1900         module_put(expr->ops->type->owner);
1901 }
1902
1903 struct nft_expr *nft_expr_init(const struct nft_ctx *ctx,
1904                                const struct nlattr *nla)
1905 {
1906         struct nft_expr_info info;
1907         struct nft_expr *expr;
1908         int err;
1909
1910         err = nf_tables_expr_parse(ctx, nla, &info);
1911         if (err < 0)
1912                 goto err1;
1913
1914         err = -ENOMEM;
1915         expr = kzalloc(info.ops->size, GFP_KERNEL);
1916         if (expr == NULL)
1917                 goto err2;
1918
1919         err = nf_tables_newexpr(ctx, &info, expr);
1920         if (err < 0)
1921                 goto err3;
1922
1923         return expr;
1924 err3:
1925         kfree(expr);
1926 err2:
1927         module_put(info.ops->type->owner);
1928 err1:
1929         return ERR_PTR(err);
1930 }
1931
1932 void nft_expr_destroy(const struct nft_ctx *ctx, struct nft_expr *expr)
1933 {
1934         nf_tables_expr_destroy(ctx, expr);
1935         kfree(expr);
1936 }
1937
1938 /*
1939  * Rules
1940  */
1941
1942 static struct nft_rule *__nf_tables_rule_lookup(const struct nft_chain *chain,
1943                                                 u64 handle)
1944 {
1945         struct nft_rule *rule;
1946
1947         // FIXME: this sucks
1948         list_for_each_entry(rule, &chain->rules, list) {
1949                 if (handle == rule->handle)
1950                         return rule;
1951         }
1952
1953         return ERR_PTR(-ENOENT);
1954 }
1955
1956 static struct nft_rule *nf_tables_rule_lookup(const struct nft_chain *chain,
1957                                               const struct nlattr *nla)
1958 {
1959         if (nla == NULL)
1960                 return ERR_PTR(-EINVAL);
1961
1962         return __nf_tables_rule_lookup(chain, be64_to_cpu(nla_get_be64(nla)));
1963 }
1964
1965 static const struct nla_policy nft_rule_policy[NFTA_RULE_MAX + 1] = {
1966         [NFTA_RULE_TABLE]       = { .type = NLA_STRING,
1967                                     .len = NFT_TABLE_MAXNAMELEN - 1 },
1968         [NFTA_RULE_CHAIN]       = { .type = NLA_STRING,
1969                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
1970         [NFTA_RULE_HANDLE]      = { .type = NLA_U64 },
1971         [NFTA_RULE_EXPRESSIONS] = { .type = NLA_NESTED },
1972         [NFTA_RULE_COMPAT]      = { .type = NLA_NESTED },
1973         [NFTA_RULE_POSITION]    = { .type = NLA_U64 },
1974         [NFTA_RULE_USERDATA]    = { .type = NLA_BINARY,
1975                                     .len = NFT_USERDATA_MAXLEN },
1976         [NFTA_RULE_ID]          = { .type = NLA_U32 },
1977 };
1978
1979 static int nf_tables_fill_rule_info(struct sk_buff *skb, struct net *net,
1980                                     u32 portid, u32 seq, int event,
1981                                     u32 flags, int family,
1982                                     const struct nft_table *table,
1983                                     const struct nft_chain *chain,
1984                                     const struct nft_rule *rule)
1985 {
1986         struct nlmsghdr *nlh;
1987         struct nfgenmsg *nfmsg;
1988         const struct nft_expr *expr, *next;
1989         struct nlattr *list;
1990         const struct nft_rule *prule;
1991         u16 type = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
1992
1993         nlh = nlmsg_put(skb, portid, seq, type, sizeof(struct nfgenmsg), flags);
1994         if (nlh == NULL)
1995                 goto nla_put_failure;
1996
1997         nfmsg = nlmsg_data(nlh);
1998         nfmsg->nfgen_family     = family;
1999         nfmsg->version          = NFNETLINK_V0;
2000         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
2001
2002         if (nla_put_string(skb, NFTA_RULE_TABLE, table->name))
2003                 goto nla_put_failure;
2004         if (nla_put_string(skb, NFTA_RULE_CHAIN, chain->name))
2005                 goto nla_put_failure;
2006         if (nla_put_be64(skb, NFTA_RULE_HANDLE, cpu_to_be64(rule->handle),
2007                          NFTA_RULE_PAD))
2008                 goto nla_put_failure;
2009
2010         if ((event != NFT_MSG_DELRULE) && (rule->list.prev != &chain->rules)) {
2011                 prule = list_prev_entry(rule, list);
2012                 if (nla_put_be64(skb, NFTA_RULE_POSITION,
2013                                  cpu_to_be64(prule->handle),
2014                                  NFTA_RULE_PAD))
2015                         goto nla_put_failure;
2016         }
2017
2018         list = nla_nest_start(skb, NFTA_RULE_EXPRESSIONS);
2019         if (list == NULL)
2020                 goto nla_put_failure;
2021         nft_rule_for_each_expr(expr, next, rule) {
2022                 if (nft_expr_dump(skb, NFTA_LIST_ELEM, expr) < 0)
2023                         goto nla_put_failure;
2024         }
2025         nla_nest_end(skb, list);
2026
2027         if (rule->udata) {
2028                 struct nft_userdata *udata = nft_userdata(rule);
2029                 if (nla_put(skb, NFTA_RULE_USERDATA, udata->len + 1,
2030                             udata->data) < 0)
2031                         goto nla_put_failure;
2032         }
2033
2034         nlmsg_end(skb, nlh);
2035         return 0;
2036
2037 nla_put_failure:
2038         nlmsg_trim(skb, nlh);
2039         return -1;
2040 }
2041
2042 static void nf_tables_rule_notify(const struct nft_ctx *ctx,
2043                                   const struct nft_rule *rule, int event)
2044 {
2045         struct sk_buff *skb;
2046         int err;
2047
2048         if (!ctx->report &&
2049             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
2050                 return;
2051
2052         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
2053         if (skb == NULL)
2054                 goto err;
2055
2056         err = nf_tables_fill_rule_info(skb, ctx->net, ctx->portid, ctx->seq,
2057                                        event, 0, ctx->family, ctx->table,
2058                                        ctx->chain, rule);
2059         if (err < 0) {
2060                 kfree_skb(skb);
2061                 goto err;
2062         }
2063
2064         nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
2065                        ctx->report, GFP_KERNEL);
2066         return;
2067 err:
2068         nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES, -ENOBUFS);
2069 }
2070
2071 struct nft_rule_dump_ctx {
2072         char *table;
2073         char *chain;
2074 };
2075
2076 static int nf_tables_dump_rules(struct sk_buff *skb,
2077                                 struct netlink_callback *cb)
2078 {
2079         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2080         const struct nft_rule_dump_ctx *ctx = cb->data;
2081         const struct nft_table *table;
2082         const struct nft_chain *chain;
2083         const struct nft_rule *rule;
2084         unsigned int idx = 0, s_idx = cb->args[0];
2085         struct net *net = sock_net(skb->sk);
2086         int family = nfmsg->nfgen_family;
2087
2088         rcu_read_lock();
2089         cb->seq = net->nft.base_seq;
2090
2091         list_for_each_entry_rcu(table, &net->nft.tables, list) {
2092                 if (family != NFPROTO_UNSPEC && family != table->family)
2093                         continue;
2094
2095                 if (ctx && ctx->table && strcmp(ctx->table, table->name) != 0)
2096                         continue;
2097
2098                 list_for_each_entry_rcu(chain, &table->chains, list) {
2099                         if (ctx && ctx->chain &&
2100                             strcmp(ctx->chain, chain->name) != 0)
2101                                 continue;
2102
2103                         list_for_each_entry_rcu(rule, &chain->rules, list) {
2104                                 if (!nft_is_active(net, rule))
2105                                         goto cont;
2106                                 if (idx < s_idx)
2107                                         goto cont;
2108                                 if (idx > s_idx)
2109                                         memset(&cb->args[1], 0,
2110                                                sizeof(cb->args) - sizeof(cb->args[0]));
2111                                 if (nf_tables_fill_rule_info(skb, net, NETLINK_CB(cb->skb).portid,
2112                                                               cb->nlh->nlmsg_seq,
2113                                                               NFT_MSG_NEWRULE,
2114                                                               NLM_F_MULTI | NLM_F_APPEND,
2115                                                               table->family,
2116                                                               table, chain, rule) < 0)
2117                                         goto done;
2118
2119                                 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
2120 cont:
2121                                 idx++;
2122                         }
2123                 }
2124         }
2125 done:
2126         rcu_read_unlock();
2127
2128         cb->args[0] = idx;
2129         return skb->len;
2130 }
2131
2132 static int nf_tables_dump_rules_done(struct netlink_callback *cb)
2133 {
2134         struct nft_rule_dump_ctx *ctx = cb->data;
2135
2136         if (ctx) {
2137                 kfree(ctx->table);
2138                 kfree(ctx->chain);
2139                 kfree(ctx);
2140         }
2141         return 0;
2142 }
2143
2144 static int nf_tables_getrule(struct net *net, struct sock *nlsk,
2145                              struct sk_buff *skb, const struct nlmsghdr *nlh,
2146                              const struct nlattr * const nla[],
2147                              struct netlink_ext_ack *extack)
2148 {
2149         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2150         u8 genmask = nft_genmask_cur(net);
2151         const struct nft_table *table;
2152         const struct nft_chain *chain;
2153         const struct nft_rule *rule;
2154         struct sk_buff *skb2;
2155         int family = nfmsg->nfgen_family;
2156         int err;
2157
2158         if (nlh->nlmsg_flags & NLM_F_DUMP) {
2159                 struct netlink_dump_control c = {
2160                         .dump = nf_tables_dump_rules,
2161                         .done = nf_tables_dump_rules_done,
2162                 };
2163
2164                 if (nla[NFTA_RULE_TABLE] || nla[NFTA_RULE_CHAIN]) {
2165                         struct nft_rule_dump_ctx *ctx;
2166
2167                         ctx = kzalloc(sizeof(*ctx), GFP_KERNEL);
2168                         if (!ctx)
2169                                 return -ENOMEM;
2170
2171                         if (nla[NFTA_RULE_TABLE]) {
2172                                 ctx->table = nla_strdup(nla[NFTA_RULE_TABLE],
2173                                                         GFP_KERNEL);
2174                                 if (!ctx->table) {
2175                                         kfree(ctx);
2176                                         return -ENOMEM;
2177                                 }
2178                         }
2179                         if (nla[NFTA_RULE_CHAIN]) {
2180                                 ctx->chain = nla_strdup(nla[NFTA_RULE_CHAIN],
2181                                                         GFP_KERNEL);
2182                                 if (!ctx->chain) {
2183                                         kfree(ctx->table);
2184                                         kfree(ctx);
2185                                         return -ENOMEM;
2186                                 }
2187                         }
2188                         c.data = ctx;
2189                 }
2190
2191                 return netlink_dump_start(nlsk, skb, nlh, &c);
2192         }
2193
2194         table = nf_tables_table_lookup(net, nla[NFTA_RULE_TABLE], family,
2195                                        genmask);
2196         if (IS_ERR(table))
2197                 return PTR_ERR(table);
2198
2199         chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN], genmask);
2200         if (IS_ERR(chain))
2201                 return PTR_ERR(chain);
2202
2203         rule = nf_tables_rule_lookup(chain, nla[NFTA_RULE_HANDLE]);
2204         if (IS_ERR(rule))
2205                 return PTR_ERR(rule);
2206
2207         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2208         if (!skb2)
2209                 return -ENOMEM;
2210
2211         err = nf_tables_fill_rule_info(skb2, net, NETLINK_CB(skb).portid,
2212                                        nlh->nlmsg_seq, NFT_MSG_NEWRULE, 0,
2213                                        family, table, chain, rule);
2214         if (err < 0)
2215                 goto err;
2216
2217         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
2218
2219 err:
2220         kfree_skb(skb2);
2221         return err;
2222 }
2223
2224 static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
2225                                    struct nft_rule *rule)
2226 {
2227         struct nft_expr *expr;
2228
2229         /*
2230          * Careful: some expressions might not be initialized in case this
2231          * is called on error from nf_tables_newrule().
2232          */
2233         expr = nft_expr_first(rule);
2234         while (expr != nft_expr_last(rule) && expr->ops) {
2235                 nf_tables_expr_destroy(ctx, expr);
2236                 expr = nft_expr_next(expr);
2237         }
2238         kfree(rule);
2239 }
2240
2241 #define NFT_RULE_MAXEXPRS       128
2242
2243 static struct nft_expr_info *info;
2244
2245 static int nf_tables_newrule(struct net *net, struct sock *nlsk,
2246                              struct sk_buff *skb, const struct nlmsghdr *nlh,
2247                              const struct nlattr * const nla[],
2248                              struct netlink_ext_ack *extack)
2249 {
2250         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2251         u8 genmask = nft_genmask_next(net);
2252         int family = nfmsg->nfgen_family;
2253         struct nft_table *table;
2254         struct nft_chain *chain;
2255         struct nft_rule *rule, *old_rule = NULL;
2256         struct nft_userdata *udata;
2257         struct nft_trans *trans = NULL;
2258         struct nft_expr *expr;
2259         struct nft_ctx ctx;
2260         struct nlattr *tmp;
2261         unsigned int size, i, n, ulen = 0, usize = 0;
2262         int err, rem;
2263         bool create;
2264         u64 handle, pos_handle;
2265
2266         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
2267
2268         table = nf_tables_table_lookup(net, nla[NFTA_RULE_TABLE], family,
2269                                        genmask);
2270         if (IS_ERR(table))
2271                 return PTR_ERR(table);
2272
2273         chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN], genmask);
2274         if (IS_ERR(chain))
2275                 return PTR_ERR(chain);
2276
2277         if (nla[NFTA_RULE_HANDLE]) {
2278                 handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_HANDLE]));
2279                 rule = __nf_tables_rule_lookup(chain, handle);
2280                 if (IS_ERR(rule))
2281                         return PTR_ERR(rule);
2282
2283                 if (nlh->nlmsg_flags & NLM_F_EXCL)
2284                         return -EEXIST;
2285                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2286                         old_rule = rule;
2287                 else
2288                         return -EOPNOTSUPP;
2289         } else {
2290                 if (!create || nlh->nlmsg_flags & NLM_F_REPLACE)
2291                         return -EINVAL;
2292                 handle = nf_tables_alloc_handle(table);
2293
2294                 if (chain->use == UINT_MAX)
2295                         return -EOVERFLOW;
2296         }
2297
2298         if (nla[NFTA_RULE_POSITION]) {
2299                 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
2300                         return -EOPNOTSUPP;
2301
2302                 pos_handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_POSITION]));
2303                 old_rule = __nf_tables_rule_lookup(chain, pos_handle);
2304                 if (IS_ERR(old_rule))
2305                         return PTR_ERR(old_rule);
2306         }
2307
2308         nft_ctx_init(&ctx, net, skb, nlh, family, table, chain, nla);
2309
2310         n = 0;
2311         size = 0;
2312         if (nla[NFTA_RULE_EXPRESSIONS]) {
2313                 nla_for_each_nested(tmp, nla[NFTA_RULE_EXPRESSIONS], rem) {
2314                         err = -EINVAL;
2315                         if (nla_type(tmp) != NFTA_LIST_ELEM)
2316                                 goto err1;
2317                         if (n == NFT_RULE_MAXEXPRS)
2318                                 goto err1;
2319                         err = nf_tables_expr_parse(&ctx, tmp, &info[n]);
2320                         if (err < 0)
2321                                 goto err1;
2322                         size += info[n].ops->size;
2323                         n++;
2324                 }
2325         }
2326         /* Check for overflow of dlen field */
2327         err = -EFBIG;
2328         if (size >= 1 << 12)
2329                 goto err1;
2330
2331         if (nla[NFTA_RULE_USERDATA]) {
2332                 ulen = nla_len(nla[NFTA_RULE_USERDATA]);
2333                 if (ulen > 0)
2334                         usize = sizeof(struct nft_userdata) + ulen;
2335         }
2336
2337         err = -ENOMEM;
2338         rule = kzalloc(sizeof(*rule) + size + usize, GFP_KERNEL);
2339         if (rule == NULL)
2340                 goto err1;
2341
2342         nft_activate_next(net, rule);
2343
2344         rule->handle = handle;
2345         rule->dlen   = size;
2346         rule->udata  = ulen ? 1 : 0;
2347
2348         if (ulen) {
2349                 udata = nft_userdata(rule);
2350                 udata->len = ulen - 1;
2351                 nla_memcpy(udata->data, nla[NFTA_RULE_USERDATA], ulen);
2352         }
2353
2354         expr = nft_expr_first(rule);
2355         for (i = 0; i < n; i++) {
2356                 err = nf_tables_newexpr(&ctx, &info[i], expr);
2357                 if (err < 0)
2358                         goto err2;
2359                 info[i].ops = NULL;
2360                 expr = nft_expr_next(expr);
2361         }
2362
2363         if (nlh->nlmsg_flags & NLM_F_REPLACE) {
2364                 if (nft_is_active_next(net, old_rule)) {
2365                         trans = nft_trans_rule_add(&ctx, NFT_MSG_DELRULE,
2366                                                    old_rule);
2367                         if (trans == NULL) {
2368                                 err = -ENOMEM;
2369                                 goto err2;
2370                         }
2371                         nft_deactivate_next(net, old_rule);
2372                         chain->use--;
2373                         list_add_tail_rcu(&rule->list, &old_rule->list);
2374                 } else {
2375                         err = -ENOENT;
2376                         goto err2;
2377                 }
2378         } else if (nlh->nlmsg_flags & NLM_F_APPEND)
2379                 if (old_rule)
2380                         list_add_rcu(&rule->list, &old_rule->list);
2381                 else
2382                         list_add_tail_rcu(&rule->list, &chain->rules);
2383         else {
2384                 if (old_rule)
2385                         list_add_tail_rcu(&rule->list, &old_rule->list);
2386                 else
2387                         list_add_rcu(&rule->list, &chain->rules);
2388         }
2389
2390         if (nft_trans_rule_add(&ctx, NFT_MSG_NEWRULE, rule) == NULL) {
2391                 err = -ENOMEM;
2392                 goto err3;
2393         }
2394         chain->use++;
2395         return 0;
2396
2397 err3:
2398         list_del_rcu(&rule->list);
2399 err2:
2400         nf_tables_rule_destroy(&ctx, rule);
2401 err1:
2402         for (i = 0; i < n; i++) {
2403                 if (info[i].ops != NULL)
2404                         module_put(info[i].ops->type->owner);
2405         }
2406         return err;
2407 }
2408
2409 static struct nft_rule *nft_rule_lookup_byid(const struct net *net,
2410                                              const struct nlattr *nla)
2411 {
2412         u32 id = ntohl(nla_get_be32(nla));
2413         struct nft_trans *trans;
2414
2415         list_for_each_entry(trans, &net->nft.commit_list, list) {
2416                 struct nft_rule *rule = nft_trans_rule(trans);
2417
2418                 if (trans->msg_type == NFT_MSG_NEWRULE &&
2419                     id == nft_trans_rule_id(trans))
2420                         return rule;
2421         }
2422         return ERR_PTR(-ENOENT);
2423 }
2424
2425 static int nf_tables_delrule(struct net *net, struct sock *nlsk,
2426                              struct sk_buff *skb, const struct nlmsghdr *nlh,
2427                              const struct nlattr * const nla[],
2428                              struct netlink_ext_ack *extack)
2429 {
2430         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2431         u8 genmask = nft_genmask_next(net);
2432         struct nft_table *table;
2433         struct nft_chain *chain = NULL;
2434         struct nft_rule *rule;
2435         int family = nfmsg->nfgen_family, err = 0;
2436         struct nft_ctx ctx;
2437
2438         table = nf_tables_table_lookup(net, nla[NFTA_RULE_TABLE], family,
2439                                        genmask);
2440         if (IS_ERR(table))
2441                 return PTR_ERR(table);
2442
2443         if (nla[NFTA_RULE_CHAIN]) {
2444                 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN],
2445                                                genmask);
2446                 if (IS_ERR(chain))
2447                         return PTR_ERR(chain);
2448         }
2449
2450         nft_ctx_init(&ctx, net, skb, nlh, family, table, chain, nla);
2451
2452         if (chain) {
2453                 if (nla[NFTA_RULE_HANDLE]) {
2454                         rule = nf_tables_rule_lookup(chain,
2455                                                      nla[NFTA_RULE_HANDLE]);
2456                         if (IS_ERR(rule))
2457                                 return PTR_ERR(rule);
2458
2459                         err = nft_delrule(&ctx, rule);
2460                 } else if (nla[NFTA_RULE_ID]) {
2461                         rule = nft_rule_lookup_byid(net, nla[NFTA_RULE_ID]);
2462                         if (IS_ERR(rule))
2463                                 return PTR_ERR(rule);
2464
2465                         err = nft_delrule(&ctx, rule);
2466                 } else {
2467                         err = nft_delrule_by_chain(&ctx);
2468                 }
2469         } else {
2470                 list_for_each_entry(chain, &table->chains, list) {
2471                         if (!nft_is_active_next(net, chain))
2472                                 continue;
2473
2474                         ctx.chain = chain;
2475                         err = nft_delrule_by_chain(&ctx);
2476                         if (err < 0)
2477                                 break;
2478                 }
2479         }
2480
2481         return err;
2482 }
2483
2484 /*
2485  * Sets
2486  */
2487
2488 static LIST_HEAD(nf_tables_set_types);
2489
2490 int nft_register_set(struct nft_set_type *type)
2491 {
2492         nfnl_lock(NFNL_SUBSYS_NFTABLES);
2493         list_add_tail_rcu(&type->list, &nf_tables_set_types);
2494         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2495         return 0;
2496 }
2497 EXPORT_SYMBOL_GPL(nft_register_set);
2498
2499 void nft_unregister_set(struct nft_set_type *type)
2500 {
2501         nfnl_lock(NFNL_SUBSYS_NFTABLES);
2502         list_del_rcu(&type->list);
2503         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2504 }
2505 EXPORT_SYMBOL_GPL(nft_unregister_set);
2506
2507 #define NFT_SET_FEATURES        (NFT_SET_INTERVAL | NFT_SET_MAP | \
2508                                  NFT_SET_TIMEOUT | NFT_SET_OBJECT)
2509
2510 static bool nft_set_ops_candidate(const struct nft_set_ops *ops, u32 flags)
2511 {
2512         if ((flags & NFT_SET_EVAL) && !ops->update)
2513                 return false;
2514
2515         return (flags & ops->features) == (flags & NFT_SET_FEATURES);
2516 }
2517
2518 /*
2519  * Select a set implementation based on the data characteristics and the
2520  * given policy. The total memory use might not be known if no size is
2521  * given, in that case the amount of memory per element is used.
2522  */
2523 static const struct nft_set_ops *
2524 nft_select_set_ops(const struct nft_ctx *ctx,
2525                    const struct nlattr * const nla[],
2526                    const struct nft_set_desc *desc,
2527                    enum nft_set_policies policy)
2528 {
2529         const struct nft_set_ops *ops, *bops;
2530         struct nft_set_estimate est, best;
2531         const struct nft_set_type *type;
2532         u32 flags = 0;
2533
2534 #ifdef CONFIG_MODULES
2535         if (list_empty(&nf_tables_set_types)) {
2536                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2537                 request_module("nft-set");
2538                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
2539                 if (!list_empty(&nf_tables_set_types))
2540                         return ERR_PTR(-EAGAIN);
2541         }
2542 #endif
2543         if (nla[NFTA_SET_FLAGS] != NULL)
2544                 flags = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
2545
2546         bops        = NULL;
2547         best.size   = ~0;
2548         best.lookup = ~0;
2549         best.space  = ~0;
2550
2551         list_for_each_entry(type, &nf_tables_set_types, list) {
2552                 if (!type->select_ops)
2553                         ops = type->ops;
2554                 else
2555                         ops = type->select_ops(ctx, desc, flags);
2556                 if (!ops)
2557                         continue;
2558
2559                 if (!nft_set_ops_candidate(ops, flags))
2560                         continue;
2561                 if (!ops->estimate(desc, flags, &est))
2562                         continue;
2563
2564                 switch (policy) {
2565                 case NFT_SET_POL_PERFORMANCE:
2566                         if (est.lookup < best.lookup)
2567                                 break;
2568                         if (est.lookup == best.lookup &&
2569                             est.space < best.space)
2570                                 break;
2571                         continue;
2572                 case NFT_SET_POL_MEMORY:
2573                         if (!desc->size) {
2574                                 if (est.space < best.space)
2575                                         break;
2576                                 if (est.space == best.space &&
2577                                     est.lookup < best.lookup)
2578                                         break;
2579                         } else if (est.size < best.size || !bops) {
2580                                 break;
2581                         }
2582                         continue;
2583                 default:
2584                         break;
2585                 }
2586
2587                 if (!try_module_get(type->owner))
2588                         continue;
2589                 if (bops != NULL)
2590                         module_put(bops->type->owner);
2591
2592                 bops = ops;
2593                 best = est;
2594         }
2595
2596         if (bops != NULL)
2597                 return bops;
2598
2599         return ERR_PTR(-EOPNOTSUPP);
2600 }
2601
2602 static const struct nla_policy nft_set_policy[NFTA_SET_MAX + 1] = {
2603         [NFTA_SET_TABLE]                = { .type = NLA_STRING,
2604                                             .len = NFT_TABLE_MAXNAMELEN - 1 },
2605         [NFTA_SET_NAME]                 = { .type = NLA_STRING,
2606                                             .len = NFT_SET_MAXNAMELEN - 1 },
2607         [NFTA_SET_FLAGS]                = { .type = NLA_U32 },
2608         [NFTA_SET_KEY_TYPE]             = { .type = NLA_U32 },
2609         [NFTA_SET_KEY_LEN]              = { .type = NLA_U32 },
2610         [NFTA_SET_DATA_TYPE]            = { .type = NLA_U32 },
2611         [NFTA_SET_DATA_LEN]             = { .type = NLA_U32 },
2612         [NFTA_SET_POLICY]               = { .type = NLA_U32 },
2613         [NFTA_SET_DESC]                 = { .type = NLA_NESTED },
2614         [NFTA_SET_ID]                   = { .type = NLA_U32 },
2615         [NFTA_SET_TIMEOUT]              = { .type = NLA_U64 },
2616         [NFTA_SET_GC_INTERVAL]          = { .type = NLA_U32 },
2617         [NFTA_SET_USERDATA]             = { .type = NLA_BINARY,
2618                                             .len  = NFT_USERDATA_MAXLEN },
2619         [NFTA_SET_OBJ_TYPE]             = { .type = NLA_U32 },
2620         [NFTA_SET_HANDLE]               = { .type = NLA_U64 },
2621 };
2622
2623 static const struct nla_policy nft_set_desc_policy[NFTA_SET_DESC_MAX + 1] = {
2624         [NFTA_SET_DESC_SIZE]            = { .type = NLA_U32 },
2625 };
2626
2627 static int nft_ctx_init_from_setattr(struct nft_ctx *ctx, struct net *net,
2628                                      const struct sk_buff *skb,
2629                                      const struct nlmsghdr *nlh,
2630                                      const struct nlattr * const nla[],
2631                                      u8 genmask)
2632 {
2633         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2634         int family = nfmsg->nfgen_family;
2635         struct nft_table *table = NULL;
2636
2637         if (nla[NFTA_SET_TABLE] != NULL) {
2638                 table = nf_tables_table_lookup(net, nla[NFTA_SET_TABLE],
2639                                                family, genmask);
2640                 if (IS_ERR(table))
2641                         return PTR_ERR(table);
2642         }
2643
2644         nft_ctx_init(ctx, net, skb, nlh, family, table, NULL, nla);
2645         return 0;
2646 }
2647
2648 static struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
2649                                             const struct nlattr *nla, u8 genmask)
2650 {
2651         struct nft_set *set;
2652
2653         if (nla == NULL)
2654                 return ERR_PTR(-EINVAL);
2655
2656         list_for_each_entry(set, &table->sets, list) {
2657                 if (!nla_strcmp(nla, set->name) &&
2658                     nft_active_genmask(set, genmask))
2659                         return set;
2660         }
2661         return ERR_PTR(-ENOENT);
2662 }
2663
2664 static struct nft_set *nf_tables_set_lookup_byhandle(const struct nft_table *table,
2665                                                      const struct nlattr *nla, u8 genmask)
2666 {
2667         struct nft_set *set;
2668
2669         if (nla == NULL)
2670                 return ERR_PTR(-EINVAL);
2671
2672         list_for_each_entry(set, &table->sets, list) {
2673                 if (be64_to_cpu(nla_get_be64(nla)) == set->handle &&
2674                     nft_active_genmask(set, genmask))
2675                         return set;
2676         }
2677         return ERR_PTR(-ENOENT);
2678 }
2679
2680 static struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
2681                                                  const struct nlattr *nla,
2682                                                  u8 genmask)
2683 {
2684         struct nft_trans *trans;
2685         u32 id = ntohl(nla_get_be32(nla));
2686
2687         list_for_each_entry(trans, &net->nft.commit_list, list) {
2688                 struct nft_set *set = nft_trans_set(trans);
2689
2690                 if (trans->msg_type == NFT_MSG_NEWSET &&
2691                     id == nft_trans_set_id(trans) &&
2692                     nft_active_genmask(set, genmask))
2693                         return set;
2694         }
2695         return ERR_PTR(-ENOENT);
2696 }
2697
2698 struct nft_set *nft_set_lookup(const struct net *net,
2699                                const struct nft_table *table,
2700                                const struct nlattr *nla_set_name,
2701                                const struct nlattr *nla_set_id,
2702                                u8 genmask)
2703 {
2704         struct nft_set *set;
2705
2706         set = nf_tables_set_lookup(table, nla_set_name, genmask);
2707         if (IS_ERR(set)) {
2708                 if (!nla_set_id)
2709                         return set;
2710
2711                 set = nf_tables_set_lookup_byid(net, nla_set_id, genmask);
2712         }
2713         return set;
2714 }
2715 EXPORT_SYMBOL_GPL(nft_set_lookup);
2716
2717 static int nf_tables_set_alloc_name(struct nft_ctx *ctx, struct nft_set *set,
2718                                     const char *name)
2719 {
2720         const struct nft_set *i;
2721         const char *p;
2722         unsigned long *inuse;
2723         unsigned int n = 0, min = 0;
2724
2725         p = strchr(name, '%');
2726         if (p != NULL) {
2727                 if (p[1] != 'd' || strchr(p + 2, '%'))
2728                         return -EINVAL;
2729
2730                 inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL);
2731                 if (inuse == NULL)
2732                         return -ENOMEM;
2733 cont:
2734                 list_for_each_entry(i, &ctx->table->sets, list) {
2735                         int tmp;
2736
2737                         if (!nft_is_active_next(ctx->net, set))
2738                                 continue;
2739                         if (!sscanf(i->name, name, &tmp))
2740                                 continue;
2741                         if (tmp < min || tmp >= min + BITS_PER_BYTE * PAGE_SIZE)
2742                                 continue;
2743
2744                         set_bit(tmp - min, inuse);
2745                 }
2746
2747                 n = find_first_zero_bit(inuse, BITS_PER_BYTE * PAGE_SIZE);
2748                 if (n >= BITS_PER_BYTE * PAGE_SIZE) {
2749                         min += BITS_PER_BYTE * PAGE_SIZE;
2750                         memset(inuse, 0, PAGE_SIZE);
2751                         goto cont;
2752                 }
2753                 free_page((unsigned long)inuse);
2754         }
2755
2756         set->name = kasprintf(GFP_KERNEL, name, min + n);
2757         if (!set->name)
2758                 return -ENOMEM;
2759
2760         list_for_each_entry(i, &ctx->table->sets, list) {
2761                 if (!nft_is_active_next(ctx->net, i))
2762                         continue;
2763                 if (!strcmp(set->name, i->name)) {
2764                         kfree(set->name);
2765                         return -ENFILE;
2766                 }
2767         }
2768         return 0;
2769 }
2770
2771 static int nf_tables_fill_set(struct sk_buff *skb, const struct nft_ctx *ctx,
2772                               const struct nft_set *set, u16 event, u16 flags)
2773 {
2774         struct nfgenmsg *nfmsg;
2775         struct nlmsghdr *nlh;
2776         struct nlattr *desc;
2777         u32 portid = ctx->portid;
2778         u32 seq = ctx->seq;
2779
2780         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
2781         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2782                         flags);
2783         if (nlh == NULL)
2784                 goto nla_put_failure;
2785
2786         nfmsg = nlmsg_data(nlh);
2787         nfmsg->nfgen_family     = ctx->family;
2788         nfmsg->version          = NFNETLINK_V0;
2789         nfmsg->res_id           = htons(ctx->net->nft.base_seq & 0xffff);
2790
2791         if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
2792                 goto nla_put_failure;
2793         if (nla_put_string(skb, NFTA_SET_NAME, set->name))
2794                 goto nla_put_failure;
2795         if (nla_put_be64(skb, NFTA_SET_HANDLE, cpu_to_be64(set->handle),
2796                          NFTA_SET_PAD))
2797                 goto nla_put_failure;
2798         if (set->flags != 0)
2799                 if (nla_put_be32(skb, NFTA_SET_FLAGS, htonl(set->flags)))
2800                         goto nla_put_failure;
2801
2802         if (nla_put_be32(skb, NFTA_SET_KEY_TYPE, htonl(set->ktype)))
2803                 goto nla_put_failure;
2804         if (nla_put_be32(skb, NFTA_SET_KEY_LEN, htonl(set->klen)))
2805                 goto nla_put_failure;
2806         if (set->flags & NFT_SET_MAP) {
2807                 if (nla_put_be32(skb, NFTA_SET_DATA_TYPE, htonl(set->dtype)))
2808                         goto nla_put_failure;
2809                 if (nla_put_be32(skb, NFTA_SET_DATA_LEN, htonl(set->dlen)))
2810                         goto nla_put_failure;
2811         }
2812         if (set->flags & NFT_SET_OBJECT &&
2813             nla_put_be32(skb, NFTA_SET_OBJ_TYPE, htonl(set->objtype)))
2814                 goto nla_put_failure;
2815
2816         if (set->timeout &&
2817             nla_put_be64(skb, NFTA_SET_TIMEOUT,
2818                          cpu_to_be64(jiffies_to_msecs(set->timeout)),
2819                          NFTA_SET_PAD))
2820                 goto nla_put_failure;
2821         if (set->gc_int &&
2822             nla_put_be32(skb, NFTA_SET_GC_INTERVAL, htonl(set->gc_int)))
2823                 goto nla_put_failure;
2824
2825         if (set->policy != NFT_SET_POL_PERFORMANCE) {
2826                 if (nla_put_be32(skb, NFTA_SET_POLICY, htonl(set->policy)))
2827                         goto nla_put_failure;
2828         }
2829
2830         if (nla_put(skb, NFTA_SET_USERDATA, set->udlen, set->udata))
2831                 goto nla_put_failure;
2832
2833         desc = nla_nest_start(skb, NFTA_SET_DESC);
2834         if (desc == NULL)
2835                 goto nla_put_failure;
2836         if (set->size &&
2837             nla_put_be32(skb, NFTA_SET_DESC_SIZE, htonl(set->size)))
2838                 goto nla_put_failure;
2839         nla_nest_end(skb, desc);
2840
2841         nlmsg_end(skb, nlh);
2842         return 0;
2843
2844 nla_put_failure:
2845         nlmsg_trim(skb, nlh);
2846         return -1;
2847 }
2848
2849 static void nf_tables_set_notify(const struct nft_ctx *ctx,
2850                                  const struct nft_set *set, int event,
2851                                  gfp_t gfp_flags)
2852 {
2853         struct sk_buff *skb;
2854         u32 portid = ctx->portid;
2855         int err;
2856
2857         if (!ctx->report &&
2858             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
2859                 return;
2860
2861         skb = nlmsg_new(NLMSG_GOODSIZE, gfp_flags);
2862         if (skb == NULL)
2863                 goto err;
2864
2865         err = nf_tables_fill_set(skb, ctx, set, event, 0);
2866         if (err < 0) {
2867                 kfree_skb(skb);
2868                 goto err;
2869         }
2870
2871         nfnetlink_send(skb, ctx->net, portid, NFNLGRP_NFTABLES, ctx->report,
2872                        gfp_flags);
2873         return;
2874 err:
2875         nfnetlink_set_err(ctx->net, portid, NFNLGRP_NFTABLES, -ENOBUFS);
2876 }
2877
2878 static int nf_tables_dump_sets(struct sk_buff *skb, struct netlink_callback *cb)
2879 {
2880         const struct nft_set *set;
2881         unsigned int idx, s_idx = cb->args[0];
2882         struct nft_table *table, *cur_table = (struct nft_table *)cb->args[2];
2883         struct net *net = sock_net(skb->sk);
2884         struct nft_ctx *ctx = cb->data, ctx_set;
2885
2886         if (cb->args[1])
2887                 return skb->len;
2888
2889         rcu_read_lock();
2890         cb->seq = net->nft.base_seq;
2891
2892         list_for_each_entry_rcu(table, &net->nft.tables, list) {
2893                 if (ctx->family != NFPROTO_UNSPEC &&
2894                     ctx->family != table->family)
2895                         continue;
2896
2897                 if (ctx->table && ctx->table != table)
2898                         continue;
2899
2900                 if (cur_table) {
2901                         if (cur_table != table)
2902                                 continue;
2903
2904                         cur_table = NULL;
2905                 }
2906                 idx = 0;
2907                 list_for_each_entry_rcu(set, &table->sets, list) {
2908                         if (idx < s_idx)
2909                                 goto cont;
2910                         if (!nft_is_active(net, set))
2911                                 goto cont;
2912
2913                         ctx_set = *ctx;
2914                         ctx_set.table = table;
2915                         ctx_set.family = table->family;
2916
2917                         if (nf_tables_fill_set(skb, &ctx_set, set,
2918                                                NFT_MSG_NEWSET,
2919                                                NLM_F_MULTI) < 0) {
2920                                 cb->args[0] = idx;
2921                                 cb->args[2] = (unsigned long) table;
2922                                 goto done;
2923                         }
2924                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
2925 cont:
2926                         idx++;
2927                 }
2928                 if (s_idx)
2929                         s_idx = 0;
2930         }
2931         cb->args[1] = 1;
2932 done:
2933         rcu_read_unlock();
2934         return skb->len;
2935 }
2936
2937 static int nf_tables_dump_sets_done(struct netlink_callback *cb)
2938 {
2939         kfree(cb->data);
2940         return 0;
2941 }
2942
2943 static int nf_tables_getset(struct net *net, struct sock *nlsk,
2944                             struct sk_buff *skb, const struct nlmsghdr *nlh,
2945                             const struct nlattr * const nla[],
2946                             struct netlink_ext_ack *extack)
2947 {
2948         u8 genmask = nft_genmask_cur(net);
2949         const struct nft_set *set;
2950         struct nft_ctx ctx;
2951         struct sk_buff *skb2;
2952         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2953         int err;
2954
2955         /* Verify existence before starting dump */
2956         err = nft_ctx_init_from_setattr(&ctx, net, skb, nlh, nla, genmask);
2957         if (err < 0)
2958                 return err;
2959
2960         if (nlh->nlmsg_flags & NLM_F_DUMP) {
2961                 struct netlink_dump_control c = {
2962                         .dump = nf_tables_dump_sets,
2963                         .done = nf_tables_dump_sets_done,
2964                 };
2965                 struct nft_ctx *ctx_dump;
2966
2967                 ctx_dump = kmalloc(sizeof(*ctx_dump), GFP_KERNEL);
2968                 if (ctx_dump == NULL)
2969                         return -ENOMEM;
2970
2971                 *ctx_dump = ctx;
2972                 c.data = ctx_dump;
2973
2974                 return netlink_dump_start(nlsk, skb, nlh, &c);
2975         }
2976
2977         /* Only accept unspec with dump */
2978         if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2979                 return -EAFNOSUPPORT;
2980         if (!nla[NFTA_SET_TABLE])
2981                 return -EINVAL;
2982
2983         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME], genmask);
2984         if (IS_ERR(set))
2985                 return PTR_ERR(set);
2986
2987         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2988         if (skb2 == NULL)
2989                 return -ENOMEM;
2990
2991         err = nf_tables_fill_set(skb2, &ctx, set, NFT_MSG_NEWSET, 0);
2992         if (err < 0)
2993                 goto err;
2994
2995         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
2996
2997 err:
2998         kfree_skb(skb2);
2999         return err;
3000 }
3001
3002 static int nf_tables_set_desc_parse(const struct nft_ctx *ctx,
3003                                     struct nft_set_desc *desc,
3004                                     const struct nlattr *nla)
3005 {
3006         struct nlattr *da[NFTA_SET_DESC_MAX + 1];
3007         int err;
3008
3009         err = nla_parse_nested(da, NFTA_SET_DESC_MAX, nla,
3010                                nft_set_desc_policy, NULL);
3011         if (err < 0)
3012                 return err;
3013
3014         if (da[NFTA_SET_DESC_SIZE] != NULL)
3015                 desc->size = ntohl(nla_get_be32(da[NFTA_SET_DESC_SIZE]));
3016
3017         return 0;
3018 }
3019
3020 static int nf_tables_newset(struct net *net, struct sock *nlsk,
3021                             struct sk_buff *skb, const struct nlmsghdr *nlh,
3022                             const struct nlattr * const nla[],
3023                             struct netlink_ext_ack *extack)
3024 {
3025         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
3026         u8 genmask = nft_genmask_next(net);
3027         int family = nfmsg->nfgen_family;
3028         const struct nft_set_ops *ops;
3029         struct nft_table *table;
3030         struct nft_set *set;
3031         struct nft_ctx ctx;
3032         char *name;
3033         unsigned int size;
3034         bool create;
3035         u64 timeout;
3036         u32 ktype, dtype, flags, policy, gc_int, objtype;
3037         struct nft_set_desc desc;
3038         unsigned char *udata;
3039         u16 udlen;
3040         int err;
3041
3042         if (nla[NFTA_SET_TABLE] == NULL ||
3043             nla[NFTA_SET_NAME] == NULL ||
3044             nla[NFTA_SET_KEY_LEN] == NULL ||
3045             nla[NFTA_SET_ID] == NULL)
3046                 return -EINVAL;
3047
3048         memset(&desc, 0, sizeof(desc));
3049
3050         ktype = NFT_DATA_VALUE;
3051         if (nla[NFTA_SET_KEY_TYPE] != NULL) {
3052                 ktype = ntohl(nla_get_be32(nla[NFTA_SET_KEY_TYPE]));
3053                 if ((ktype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK)
3054                         return -EINVAL;
3055         }
3056
3057         desc.klen = ntohl(nla_get_be32(nla[NFTA_SET_KEY_LEN]));
3058         if (desc.klen == 0 || desc.klen > NFT_DATA_VALUE_MAXLEN)
3059                 return -EINVAL;
3060
3061         flags = 0;
3062         if (nla[NFTA_SET_FLAGS] != NULL) {
3063                 flags = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
3064                 if (flags & ~(NFT_SET_ANONYMOUS | NFT_SET_CONSTANT |
3065                               NFT_SET_INTERVAL | NFT_SET_TIMEOUT |
3066                               NFT_SET_MAP | NFT_SET_EVAL |
3067                               NFT_SET_OBJECT))
3068                         return -EINVAL;
3069                 /* Only one of these operations is supported */
3070                 if ((flags & (NFT_SET_MAP | NFT_SET_EVAL | NFT_SET_OBJECT)) ==
3071                              (NFT_SET_MAP | NFT_SET_EVAL | NFT_SET_OBJECT))
3072                         return -EOPNOTSUPP;
3073         }
3074
3075         dtype = 0;
3076         if (nla[NFTA_SET_DATA_TYPE] != NULL) {
3077                 if (!(flags & NFT_SET_MAP))
3078                         return -EINVAL;
3079
3080                 dtype = ntohl(nla_get_be32(nla[NFTA_SET_DATA_TYPE]));
3081                 if ((dtype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK &&
3082                     dtype != NFT_DATA_VERDICT)
3083                         return -EINVAL;
3084
3085                 if (dtype != NFT_DATA_VERDICT) {
3086                         if (nla[NFTA_SET_DATA_LEN] == NULL)
3087                                 return -EINVAL;
3088                         desc.dlen = ntohl(nla_get_be32(nla[NFTA_SET_DATA_LEN]));
3089                         if (desc.dlen == 0 || desc.dlen > NFT_DATA_VALUE_MAXLEN)
3090                                 return -EINVAL;
3091                 } else
3092                         desc.dlen = sizeof(struct nft_verdict);
3093         } else if (flags & NFT_SET_MAP)
3094                 return -EINVAL;
3095
3096         if (nla[NFTA_SET_OBJ_TYPE] != NULL) {
3097                 if (!(flags & NFT_SET_OBJECT))
3098                         return -EINVAL;
3099
3100                 objtype = ntohl(nla_get_be32(nla[NFTA_SET_OBJ_TYPE]));
3101                 if (objtype == NFT_OBJECT_UNSPEC ||
3102                     objtype > NFT_OBJECT_MAX)
3103                         return -EINVAL;
3104         } else if (flags & NFT_SET_OBJECT)
3105                 return -EINVAL;
3106         else
3107                 objtype = NFT_OBJECT_UNSPEC;
3108
3109         timeout = 0;
3110         if (nla[NFTA_SET_TIMEOUT] != NULL) {
3111                 if (!(flags & NFT_SET_TIMEOUT))
3112                         return -EINVAL;
3113                 timeout = msecs_to_jiffies(be64_to_cpu(nla_get_be64(
3114                                                 nla[NFTA_SET_TIMEOUT])));
3115         }
3116         gc_int = 0;
3117         if (nla[NFTA_SET_GC_INTERVAL] != NULL) {
3118                 if (!(flags & NFT_SET_TIMEOUT))
3119                         return -EINVAL;
3120                 gc_int = ntohl(nla_get_be32(nla[NFTA_SET_GC_INTERVAL]));
3121         }
3122
3123         policy = NFT_SET_POL_PERFORMANCE;
3124         if (nla[NFTA_SET_POLICY] != NULL)
3125                 policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY]));
3126
3127         if (nla[NFTA_SET_DESC] != NULL) {
3128                 err = nf_tables_set_desc_parse(&ctx, &desc, nla[NFTA_SET_DESC]);
3129                 if (err < 0)
3130                         return err;
3131         }
3132
3133         create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
3134
3135         table = nf_tables_table_lookup(net, nla[NFTA_SET_TABLE], family,
3136                                        genmask);
3137         if (IS_ERR(table))
3138                 return PTR_ERR(table);
3139
3140         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
3141
3142         set = nf_tables_set_lookup(table, nla[NFTA_SET_NAME], genmask);
3143         if (IS_ERR(set)) {
3144                 if (PTR_ERR(set) != -ENOENT)
3145                         return PTR_ERR(set);
3146         } else {
3147                 if (nlh->nlmsg_flags & NLM_F_EXCL)
3148                         return -EEXIST;
3149                 if (nlh->nlmsg_flags & NLM_F_REPLACE)
3150                         return -EOPNOTSUPP;
3151                 return 0;
3152         }
3153
3154         if (!(nlh->nlmsg_flags & NLM_F_CREATE))
3155                 return -ENOENT;
3156
3157         ops = nft_select_set_ops(&ctx, nla, &desc, policy);
3158         if (IS_ERR(ops))
3159                 return PTR_ERR(ops);
3160
3161         udlen = 0;
3162         if (nla[NFTA_SET_USERDATA])
3163                 udlen = nla_len(nla[NFTA_SET_USERDATA]);
3164
3165         size = 0;
3166         if (ops->privsize != NULL)
3167                 size = ops->privsize(nla, &desc);
3168
3169         set = kvzalloc(sizeof(*set) + size + udlen, GFP_KERNEL);
3170         if (!set) {
3171                 err = -ENOMEM;
3172                 goto err1;
3173         }
3174
3175         name = nla_strdup(nla[NFTA_SET_NAME], GFP_KERNEL);
3176         if (!name) {
3177                 err = -ENOMEM;
3178                 goto err2;
3179         }
3180
3181         err = nf_tables_set_alloc_name(&ctx, set, name);
3182         kfree(name);
3183         if (err < 0)
3184                 goto err2;
3185
3186         udata = NULL;
3187         if (udlen) {
3188                 udata = set->data + size;
3189                 nla_memcpy(udata, nla[NFTA_SET_USERDATA], udlen);
3190         }
3191
3192         INIT_LIST_HEAD(&set->bindings);
3193         set->ops   = ops;
3194         set->ktype = ktype;
3195         set->klen  = desc.klen;
3196         set->dtype = dtype;
3197         set->objtype = objtype;
3198         set->dlen  = desc.dlen;
3199         set->flags = flags;
3200         set->size  = desc.size;
3201         set->policy = policy;
3202         set->udlen  = udlen;
3203         set->udata  = udata;
3204         set->timeout = timeout;
3205         set->gc_int = gc_int;
3206         set->handle = nf_tables_alloc_handle(table);
3207
3208         err = ops->init(set, &desc, nla);
3209         if (err < 0)
3210                 goto err2;
3211
3212         err = nft_trans_set_add(&ctx, NFT_MSG_NEWSET, set);
3213         if (err < 0)
3214                 goto err3;
3215
3216         list_add_tail_rcu(&set->list, &table->sets);
3217         table->use++;
3218         return 0;
3219
3220 err3:
3221         ops->destroy(set);
3222 err2:
3223         kvfree(set);
3224 err1:
3225         module_put(ops->type->owner);
3226         return err;
3227 }
3228
3229 static void nft_set_destroy(struct nft_set *set)
3230 {
3231         set->ops->destroy(set);
3232         module_put(set->ops->type->owner);
3233         kfree(set->name);
3234         kvfree(set);
3235 }
3236
3237 static void nf_tables_set_destroy(const struct nft_ctx *ctx, struct nft_set *set)
3238 {
3239         list_del_rcu(&set->list);
3240         nf_tables_set_notify(ctx, set, NFT_MSG_DELSET, GFP_ATOMIC);
3241         nft_set_destroy(set);
3242 }
3243
3244 static int nf_tables_delset(struct net *net, struct sock *nlsk,
3245                             struct sk_buff *skb, const struct nlmsghdr *nlh,
3246                             const struct nlattr * const nla[],
3247                             struct netlink_ext_ack *extack)
3248 {
3249         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
3250         u8 genmask = nft_genmask_next(net);
3251         struct nft_set *set;
3252         struct nft_ctx ctx;
3253         int err;
3254
3255         if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
3256                 return -EAFNOSUPPORT;
3257         if (nla[NFTA_SET_TABLE] == NULL)
3258                 return -EINVAL;
3259
3260         err = nft_ctx_init_from_setattr(&ctx, net, skb, nlh, nla, genmask);
3261         if (err < 0)
3262                 return err;
3263
3264         if (nla[NFTA_SET_HANDLE])
3265                 set = nf_tables_set_lookup_byhandle(ctx.table, nla[NFTA_SET_HANDLE], genmask);
3266         else
3267                 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME], genmask);
3268         if (IS_ERR(set))
3269                 return PTR_ERR(set);
3270
3271         if (!list_empty(&set->bindings) ||
3272             (nlh->nlmsg_flags & NLM_F_NONREC && atomic_read(&set->nelems) > 0))
3273                 return -EBUSY;
3274
3275         return nft_delset(&ctx, set);
3276 }
3277
3278 static int nf_tables_bind_check_setelem(const struct nft_ctx *ctx,
3279                                         struct nft_set *set,
3280                                         const struct nft_set_iter *iter,
3281                                         struct nft_set_elem *elem)
3282 {
3283         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
3284         enum nft_registers dreg;
3285
3286         dreg = nft_type_to_reg(set->dtype);
3287         return nft_validate_register_store(ctx, dreg, nft_set_ext_data(ext),
3288                                            set->dtype == NFT_DATA_VERDICT ?
3289                                            NFT_DATA_VERDICT : NFT_DATA_VALUE,
3290                                            set->dlen);
3291 }
3292
3293 int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
3294                        struct nft_set_binding *binding)
3295 {
3296         struct nft_set_binding *i;
3297         struct nft_set_iter iter;
3298
3299         if (!list_empty(&set->bindings) && nft_set_is_anonymous(set))
3300                 return -EBUSY;
3301
3302         if (binding->flags & NFT_SET_MAP) {
3303                 /* If the set is already bound to the same chain all
3304                  * jumps are already validated for that chain.
3305                  */
3306                 list_for_each_entry(i, &set->bindings, list) {
3307                         if (i->flags & NFT_SET_MAP &&
3308                             i->chain == binding->chain)
3309                                 goto bind;
3310                 }
3311
3312                 iter.genmask    = nft_genmask_next(ctx->net);
3313                 iter.skip       = 0;
3314                 iter.count      = 0;
3315                 iter.err        = 0;
3316                 iter.fn         = nf_tables_bind_check_setelem;
3317
3318                 set->ops->walk(ctx, set, &iter);
3319                 if (iter.err < 0)
3320                         return iter.err;
3321         }
3322 bind:
3323         binding->chain = ctx->chain;
3324         list_add_tail_rcu(&binding->list, &set->bindings);
3325         return 0;
3326 }
3327 EXPORT_SYMBOL_GPL(nf_tables_bind_set);
3328
3329 void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
3330                           struct nft_set_binding *binding)
3331 {
3332         list_del_rcu(&binding->list);
3333
3334         if (list_empty(&set->bindings) && nft_set_is_anonymous(set) &&
3335             nft_is_active(ctx->net, set))
3336                 nf_tables_set_destroy(ctx, set);
3337 }
3338 EXPORT_SYMBOL_GPL(nf_tables_unbind_set);
3339
3340 const struct nft_set_ext_type nft_set_ext_types[] = {
3341         [NFT_SET_EXT_KEY]               = {
3342                 .align  = __alignof__(u32),
3343         },
3344         [NFT_SET_EXT_DATA]              = {
3345                 .align  = __alignof__(u32),
3346         },
3347         [NFT_SET_EXT_EXPR]              = {
3348                 .align  = __alignof__(struct nft_expr),
3349         },
3350         [NFT_SET_EXT_OBJREF]            = {
3351                 .len    = sizeof(struct nft_object *),
3352                 .align  = __alignof__(struct nft_object *),
3353         },
3354         [NFT_SET_EXT_FLAGS]             = {
3355                 .len    = sizeof(u8),
3356                 .align  = __alignof__(u8),
3357         },
3358         [NFT_SET_EXT_TIMEOUT]           = {
3359                 .len    = sizeof(u64),
3360                 .align  = __alignof__(u64),
3361         },
3362         [NFT_SET_EXT_EXPIRATION]        = {
3363                 .len    = sizeof(unsigned long),
3364                 .align  = __alignof__(unsigned long),
3365         },
3366         [NFT_SET_EXT_USERDATA]          = {
3367                 .len    = sizeof(struct nft_userdata),
3368                 .align  = __alignof__(struct nft_userdata),
3369         },
3370 };
3371 EXPORT_SYMBOL_GPL(nft_set_ext_types);
3372
3373 /*
3374  * Set elements
3375  */
3376
3377 static const struct nla_policy nft_set_elem_policy[NFTA_SET_ELEM_MAX + 1] = {
3378         [NFTA_SET_ELEM_KEY]             = { .type = NLA_NESTED },
3379         [NFTA_SET_ELEM_DATA]            = { .type = NLA_NESTED },
3380         [NFTA_SET_ELEM_FLAGS]           = { .type = NLA_U32 },
3381         [NFTA_SET_ELEM_TIMEOUT]         = { .type = NLA_U64 },
3382         [NFTA_SET_ELEM_USERDATA]        = { .type = NLA_BINARY,
3383                                             .len = NFT_USERDATA_MAXLEN },
3384         [NFTA_SET_ELEM_EXPR]            = { .type = NLA_NESTED },
3385         [NFTA_SET_ELEM_OBJREF]          = { .type = NLA_STRING },
3386 };
3387
3388 static const struct nla_policy nft_set_elem_list_policy[NFTA_SET_ELEM_LIST_MAX + 1] = {
3389         [NFTA_SET_ELEM_LIST_TABLE]      = { .type = NLA_STRING,
3390                                             .len = NFT_TABLE_MAXNAMELEN - 1 },
3391         [NFTA_SET_ELEM_LIST_SET]        = { .type = NLA_STRING,
3392                                             .len = NFT_SET_MAXNAMELEN - 1 },
3393         [NFTA_SET_ELEM_LIST_ELEMENTS]   = { .type = NLA_NESTED },
3394         [NFTA_SET_ELEM_LIST_SET_ID]     = { .type = NLA_U32 },
3395 };
3396
3397 static int nft_ctx_init_from_elemattr(struct nft_ctx *ctx, struct net *net,
3398                                       const struct sk_buff *skb,
3399                                       const struct nlmsghdr *nlh,
3400                                       const struct nlattr * const nla[],
3401                                       u8 genmask)
3402 {
3403         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
3404         int family = nfmsg->nfgen_family;
3405         struct nft_table *table;
3406
3407         table = nf_tables_table_lookup(net, nla[NFTA_SET_ELEM_LIST_TABLE],
3408                                        family, genmask);
3409         if (IS_ERR(table))
3410                 return PTR_ERR(table);
3411
3412         nft_ctx_init(ctx, net, skb, nlh, family, table, NULL, nla);
3413         return 0;
3414 }
3415
3416 static int nf_tables_fill_setelem(struct sk_buff *skb,
3417                                   const struct nft_set *set,
3418                                   const struct nft_set_elem *elem)
3419 {
3420         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
3421         unsigned char *b = skb_tail_pointer(skb);
3422         struct nlattr *nest;
3423
3424         nest = nla_nest_start(skb, NFTA_LIST_ELEM);
3425         if (nest == NULL)
3426                 goto nla_put_failure;
3427
3428         if (nft_data_dump(skb, NFTA_SET_ELEM_KEY, nft_set_ext_key(ext),
3429                           NFT_DATA_VALUE, set->klen) < 0)
3430                 goto nla_put_failure;
3431
3432         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA) &&
3433             nft_data_dump(skb, NFTA_SET_ELEM_DATA, nft_set_ext_data(ext),
3434                           set->dtype == NFT_DATA_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE,
3435                           set->dlen) < 0)
3436                 goto nla_put_failure;
3437
3438         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPR) &&
3439             nft_expr_dump(skb, NFTA_SET_ELEM_EXPR, nft_set_ext_expr(ext)) < 0)
3440                 goto nla_put_failure;
3441
3442         if (nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF) &&
3443             nla_put_string(skb, NFTA_SET_ELEM_OBJREF,
3444                            (*nft_set_ext_obj(ext))->name) < 0)
3445                 goto nla_put_failure;
3446
3447         if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
3448             nla_put_be32(skb, NFTA_SET_ELEM_FLAGS,
3449                          htonl(*nft_set_ext_flags(ext))))
3450                 goto nla_put_failure;
3451
3452         if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT) &&
3453             nla_put_be64(skb, NFTA_SET_ELEM_TIMEOUT,
3454                          cpu_to_be64(jiffies_to_msecs(
3455                                                 *nft_set_ext_timeout(ext))),
3456                          NFTA_SET_ELEM_PAD))
3457                 goto nla_put_failure;
3458
3459         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
3460                 unsigned long expires, now = jiffies;
3461
3462                 expires = *nft_set_ext_expiration(ext);
3463                 if (time_before(now, expires))
3464                         expires -= now;
3465                 else
3466                         expires = 0;
3467
3468                 if (nla_put_be64(skb, NFTA_SET_ELEM_EXPIRATION,
3469                                  cpu_to_be64(jiffies_to_msecs(expires)),
3470                                  NFTA_SET_ELEM_PAD))
3471                         goto nla_put_failure;
3472         }
3473
3474         if (nft_set_ext_exists(ext, NFT_SET_EXT_USERDATA)) {
3475                 struct nft_userdata *udata;
3476
3477                 udata = nft_set_ext_userdata(ext);
3478                 if (nla_put(skb, NFTA_SET_ELEM_USERDATA,
3479                             udata->len + 1, udata->data))
3480                         goto nla_put_failure;
3481         }
3482
3483         nla_nest_end(skb, nest);
3484         return 0;
3485
3486 nla_put_failure:
3487         nlmsg_trim(skb, b);
3488         return -EMSGSIZE;
3489 }
3490
3491 struct nft_set_dump_args {
3492         const struct netlink_callback   *cb;
3493         struct nft_set_iter             iter;
3494         struct sk_buff                  *skb;
3495 };
3496
3497 static int nf_tables_dump_setelem(const struct nft_ctx *ctx,
3498                                   struct nft_set *set,
3499                                   const struct nft_set_iter *iter,
3500                                   struct nft_set_elem *elem)
3501 {
3502         struct nft_set_dump_args *args;
3503
3504         args = container_of(iter, struct nft_set_dump_args, iter);
3505         return nf_tables_fill_setelem(args->skb, set, elem);
3506 }
3507
3508 struct nft_set_dump_ctx {
3509         const struct nft_set    *set;
3510         struct nft_ctx          ctx;
3511 };
3512
3513 static int nf_tables_dump_set(struct sk_buff *skb, struct netlink_callback *cb)
3514 {
3515         struct nft_set_dump_ctx *dump_ctx = cb->data;
3516         struct net *net = sock_net(skb->sk);
3517         struct nft_table *table;
3518         struct nft_set *set;
3519         struct nft_set_dump_args args;
3520         bool set_found = false;
3521         struct nfgenmsg *nfmsg;
3522         struct nlmsghdr *nlh;
3523         struct nlattr *nest;
3524         u32 portid, seq;
3525         int event;
3526
3527         rcu_read_lock();
3528         list_for_each_entry_rcu(table, &net->nft.tables, list) {
3529                 if (dump_ctx->ctx.family != NFPROTO_UNSPEC &&
3530                     dump_ctx->ctx.family != table->family)
3531                         continue;
3532
3533                 if (table != dump_ctx->ctx.table)
3534                         continue;
3535
3536                 list_for_each_entry_rcu(set, &table->sets, list) {
3537                         if (set == dump_ctx->set) {
3538                                 set_found = true;
3539                                 break;
3540                         }
3541                 }
3542                 break;
3543         }
3544
3545         if (!set_found) {
3546                 rcu_read_unlock();
3547                 return -ENOENT;
3548         }
3549
3550         event  = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, NFT_MSG_NEWSETELEM);
3551         portid = NETLINK_CB(cb->skb).portid;
3552         seq    = cb->nlh->nlmsg_seq;
3553
3554         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3555                         NLM_F_MULTI);
3556         if (nlh == NULL)
3557                 goto nla_put_failure;
3558
3559         nfmsg = nlmsg_data(nlh);
3560         nfmsg->nfgen_family = table->family;
3561         nfmsg->version      = NFNETLINK_V0;
3562         nfmsg->res_id       = htons(net->nft.base_seq & 0xffff);
3563
3564         if (nla_put_string(skb, NFTA_SET_ELEM_LIST_TABLE, table->name))
3565                 goto nla_put_failure;
3566         if (nla_put_string(skb, NFTA_SET_ELEM_LIST_SET, set->name))
3567                 goto nla_put_failure;
3568
3569         nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3570         if (nest == NULL)
3571                 goto nla_put_failure;
3572
3573         args.cb                 = cb;
3574         args.skb                = skb;
3575         args.iter.genmask       = nft_genmask_cur(net);
3576         args.iter.skip          = cb->args[0];
3577         args.iter.count         = 0;
3578         args.iter.err           = 0;
3579         args.iter.fn            = nf_tables_dump_setelem;
3580         set->ops->walk(&dump_ctx->ctx, set, &args.iter);
3581         rcu_read_unlock();
3582
3583         nla_nest_end(skb, nest);
3584         nlmsg_end(skb, nlh);
3585
3586         if (args.iter.err && args.iter.err != -EMSGSIZE)
3587                 return args.iter.err;
3588         if (args.iter.count == cb->args[0])
3589                 return 0;
3590
3591         cb->args[0] = args.iter.count;
3592         return skb->len;
3593
3594 nla_put_failure:
3595         rcu_read_unlock();
3596         return -ENOSPC;
3597 }
3598
3599 static int nf_tables_dump_set_done(struct netlink_callback *cb)
3600 {
3601         kfree(cb->data);
3602         return 0;
3603 }
3604
3605 static int nf_tables_fill_setelem_info(struct sk_buff *skb,
3606                                        const struct nft_ctx *ctx, u32 seq,
3607                                        u32 portid, int event, u16 flags,
3608                                        const struct nft_set *set,
3609                                        const struct nft_set_elem *elem)
3610 {
3611         struct nfgenmsg *nfmsg;
3612         struct nlmsghdr *nlh;
3613         struct nlattr *nest;
3614         int err;
3615
3616         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
3617         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3618                         flags);
3619         if (nlh == NULL)
3620                 goto nla_put_failure;
3621
3622         nfmsg = nlmsg_data(nlh);
3623         nfmsg->nfgen_family     = ctx->family;
3624         nfmsg->version          = NFNETLINK_V0;
3625         nfmsg->res_id           = htons(ctx->net->nft.base_seq & 0xffff);
3626
3627         if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
3628                 goto nla_put_failure;
3629         if (nla_put_string(skb, NFTA_SET_NAME, set->name))
3630                 goto nla_put_failure;
3631
3632         nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3633         if (nest == NULL)
3634                 goto nla_put_failure;
3635
3636         err = nf_tables_fill_setelem(skb, set, elem);
3637         if (err < 0)
3638                 goto nla_put_failure;
3639
3640         nla_nest_end(skb, nest);
3641
3642         nlmsg_end(skb, nlh);
3643         return 0;
3644
3645 nla_put_failure:
3646         nlmsg_trim(skb, nlh);
3647         return -1;
3648 }
3649
3650 static int nft_setelem_parse_flags(const struct nft_set *set,
3651                                    const struct nlattr *attr, u32 *flags)
3652 {
3653         if (attr == NULL)
3654                 return 0;
3655
3656         *flags = ntohl(nla_get_be32(attr));
3657         if (*flags & ~NFT_SET_ELEM_INTERVAL_END)
3658                 return -EINVAL;
3659         if (!(set->flags & NFT_SET_INTERVAL) &&
3660             *flags & NFT_SET_ELEM_INTERVAL_END)
3661                 return -EINVAL;
3662
3663         return 0;
3664 }
3665
3666 static int nft_get_set_elem(struct nft_ctx *ctx, struct nft_set *set,
3667                             const struct nlattr *attr)
3668 {
3669         struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3670         const struct nft_set_ext *ext;
3671         struct nft_data_desc desc;
3672         struct nft_set_elem elem;
3673         struct sk_buff *skb;
3674         uint32_t flags = 0;
3675         void *priv;
3676         int err;
3677
3678         err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3679                                nft_set_elem_policy, NULL);
3680         if (err < 0)
3681                 return err;
3682
3683         if (!nla[NFTA_SET_ELEM_KEY])
3684                 return -EINVAL;
3685
3686         err = nft_setelem_parse_flags(set, nla[NFTA_SET_ELEM_FLAGS], &flags);
3687         if (err < 0)
3688                 return err;
3689
3690         err = nft_data_init(ctx, &elem.key.val, sizeof(elem.key), &desc,
3691                             nla[NFTA_SET_ELEM_KEY]);
3692         if (err < 0)
3693                 return err;
3694
3695         err = -EINVAL;
3696         if (desc.type != NFT_DATA_VALUE || desc.len != set->klen)
3697                 return err;
3698
3699         priv = set->ops->get(ctx->net, set, &elem, flags);
3700         if (IS_ERR(priv))
3701                 return PTR_ERR(priv);
3702
3703         elem.priv = priv;
3704         ext = nft_set_elem_ext(set, &elem);
3705
3706         err = -ENOMEM;
3707         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3708         if (skb == NULL)
3709                 goto err1;
3710
3711         err = nf_tables_fill_setelem_info(skb, ctx, ctx->seq, ctx->portid,
3712                                           NFT_MSG_NEWSETELEM, 0, set, &elem);
3713         if (err < 0)
3714                 goto err2;
3715
3716         err = nfnetlink_unicast(skb, ctx->net, ctx->portid, MSG_DONTWAIT);
3717         /* This avoids a loop in nfnetlink. */
3718         if (err < 0)
3719                 goto err1;
3720
3721         return 0;
3722 err2:
3723         kfree_skb(skb);
3724 err1:
3725         /* this avoids a loop in nfnetlink. */
3726         return err == -EAGAIN ? -ENOBUFS : err;
3727 }
3728
3729 static int nf_tables_getsetelem(struct net *net, struct sock *nlsk,
3730                                 struct sk_buff *skb, const struct nlmsghdr *nlh,
3731                                 const struct nlattr * const nla[],
3732                                 struct netlink_ext_ack *extack)
3733 {
3734         u8 genmask = nft_genmask_cur(net);
3735         struct nft_set *set;
3736         struct nlattr *attr;
3737         struct nft_ctx ctx;
3738         int rem, err = 0;
3739
3740         err = nft_ctx_init_from_elemattr(&ctx, net, skb, nlh, nla, genmask);
3741         if (err < 0)
3742                 return err;
3743
3744         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET],
3745                                    genmask);
3746         if (IS_ERR(set))
3747                 return PTR_ERR(set);
3748
3749         if (nlh->nlmsg_flags & NLM_F_DUMP) {
3750                 struct netlink_dump_control c = {
3751                         .dump = nf_tables_dump_set,
3752                         .done = nf_tables_dump_set_done,
3753                 };
3754                 struct nft_set_dump_ctx *dump_ctx;
3755
3756                 dump_ctx = kmalloc(sizeof(*dump_ctx), GFP_KERNEL);
3757                 if (!dump_ctx)
3758                         return -ENOMEM;
3759
3760                 dump_ctx->set = set;
3761                 dump_ctx->ctx = ctx;
3762
3763                 c.data = dump_ctx;
3764                 return netlink_dump_start(nlsk, skb, nlh, &c);
3765         }
3766
3767         if (!nla[NFTA_SET_ELEM_LIST_ELEMENTS])
3768                 return -EINVAL;
3769
3770         nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3771                 err = nft_get_set_elem(&ctx, set, attr);
3772                 if (err < 0)
3773                         break;
3774         }
3775
3776         return err;
3777 }
3778
3779 static void nf_tables_setelem_notify(const struct nft_ctx *ctx,
3780                                      const struct nft_set *set,
3781                                      const struct nft_set_elem *elem,
3782                                      int event, u16 flags)
3783 {
3784         struct net *net = ctx->net;
3785         u32 portid = ctx->portid;
3786         struct sk_buff *skb;
3787         int err;
3788
3789         if (!ctx->report && !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
3790                 return;
3791
3792         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3793         if (skb == NULL)
3794                 goto err;
3795
3796         err = nf_tables_fill_setelem_info(skb, ctx, 0, portid, event, flags,
3797                                           set, elem);
3798         if (err < 0) {
3799                 kfree_skb(skb);
3800                 goto err;
3801         }
3802
3803         nfnetlink_send(skb, net, portid, NFNLGRP_NFTABLES, ctx->report,
3804                        GFP_KERNEL);
3805         return;
3806 err:
3807         nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, -ENOBUFS);
3808 }
3809
3810 static struct nft_trans *nft_trans_elem_alloc(struct nft_ctx *ctx,
3811                                               int msg_type,
3812                                               struct nft_set *set)
3813 {
3814         struct nft_trans *trans;
3815
3816         trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_elem));
3817         if (trans == NULL)
3818                 return NULL;
3819
3820         nft_trans_elem_set(trans) = set;
3821         return trans;
3822 }
3823
3824 void *nft_set_elem_init(const struct nft_set *set,
3825                         const struct nft_set_ext_tmpl *tmpl,
3826                         const u32 *key, const u32 *data,
3827                         u64 timeout, gfp_t gfp)
3828 {
3829         struct nft_set_ext *ext;
3830         void *elem;
3831
3832         elem = kzalloc(set->ops->elemsize + tmpl->len, gfp);
3833         if (elem == NULL)
3834                 return NULL;
3835
3836         ext = nft_set_elem_ext(set, elem);
3837         nft_set_ext_init(ext, tmpl);
3838
3839         memcpy(nft_set_ext_key(ext), key, set->klen);
3840         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3841                 memcpy(nft_set_ext_data(ext), data, set->dlen);
3842         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION))
3843                 *nft_set_ext_expiration(ext) =
3844                         jiffies + timeout;
3845         if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT))
3846                 *nft_set_ext_timeout(ext) = timeout;
3847
3848         return elem;
3849 }
3850
3851 void nft_set_elem_destroy(const struct nft_set *set, void *elem,
3852                           bool destroy_expr)
3853 {
3854         struct nft_set_ext *ext = nft_set_elem_ext(set, elem);
3855
3856         nft_data_release(nft_set_ext_key(ext), NFT_DATA_VALUE);
3857         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3858                 nft_data_release(nft_set_ext_data(ext), set->dtype);
3859         if (destroy_expr && nft_set_ext_exists(ext, NFT_SET_EXT_EXPR))
3860                 nf_tables_expr_destroy(NULL, nft_set_ext_expr(ext));
3861         if (nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF))
3862                 (*nft_set_ext_obj(ext))->use--;
3863         kfree(elem);
3864 }
3865 EXPORT_SYMBOL_GPL(nft_set_elem_destroy);
3866
3867 /* Only called from commit path, nft_set_elem_deactivate() already deals with
3868  * the refcounting from the preparation phase.
3869  */
3870 static void nf_tables_set_elem_destroy(const struct nft_set *set, void *elem)
3871 {
3872         struct nft_set_ext *ext = nft_set_elem_ext(set, elem);
3873
3874         if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPR))
3875                 nf_tables_expr_destroy(NULL, nft_set_ext_expr(ext));
3876         kfree(elem);
3877 }
3878
3879 static int nft_add_set_elem(struct nft_ctx *ctx, struct nft_set *set,
3880                             const struct nlattr *attr, u32 nlmsg_flags)
3881 {
3882         struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3883         u8 genmask = nft_genmask_next(ctx->net);
3884         struct nft_data_desc d1, d2;
3885         struct nft_set_ext_tmpl tmpl;
3886         struct nft_set_ext *ext, *ext2;
3887         struct nft_set_elem elem;
3888         struct nft_set_binding *binding;
3889         struct nft_object *obj = NULL;
3890         struct nft_userdata *udata;
3891         struct nft_data data;
3892         enum nft_registers dreg;
3893         struct nft_trans *trans;
3894         u32 flags = 0;
3895         u64 timeout;
3896         u8 ulen;
3897         int err;
3898
3899         err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3900                                nft_set_elem_policy, NULL);
3901         if (err < 0)
3902                 return err;
3903
3904         if (nla[NFTA_SET_ELEM_KEY] == NULL)
3905                 return -EINVAL;
3906
3907         nft_set_ext_prepare(&tmpl);
3908
3909         err = nft_setelem_parse_flags(set, nla[NFTA_SET_ELEM_FLAGS], &flags);
3910         if (err < 0)
3911                 return err;
3912         if (flags != 0)
3913                 nft_set_ext_add(&tmpl, NFT_SET_EXT_FLAGS);
3914
3915         if (set->flags & NFT_SET_MAP) {
3916                 if (nla[NFTA_SET_ELEM_DATA] == NULL &&
3917                     !(flags & NFT_SET_ELEM_INTERVAL_END))
3918                         return -EINVAL;
3919                 if (nla[NFTA_SET_ELEM_DATA] != NULL &&
3920                     flags & NFT_SET_ELEM_INTERVAL_END)
3921                         return -EINVAL;
3922         } else {
3923                 if (nla[NFTA_SET_ELEM_DATA] != NULL)
3924                         return -EINVAL;
3925         }
3926
3927         timeout = 0;
3928         if (nla[NFTA_SET_ELEM_TIMEOUT] != NULL) {
3929                 if (!(set->flags & NFT_SET_TIMEOUT))
3930                         return -EINVAL;
3931                 timeout = msecs_to_jiffies(be64_to_cpu(nla_get_be64(
3932                                         nla[NFTA_SET_ELEM_TIMEOUT])));
3933         } else if (set->flags & NFT_SET_TIMEOUT) {
3934                 timeout = set->timeout;
3935         }
3936
3937         err = nft_data_init(ctx, &elem.key.val, sizeof(elem.key), &d1,
3938                             nla[NFTA_SET_ELEM_KEY]);
3939         if (err < 0)
3940                 goto err1;
3941         err = -EINVAL;
3942         if (d1.type != NFT_DATA_VALUE || d1.len != set->klen)
3943                 goto err2;
3944
3945         nft_set_ext_add_length(&tmpl, NFT_SET_EXT_KEY, d1.len);
3946         if (timeout > 0) {
3947                 nft_set_ext_add(&tmpl, NFT_SET_EXT_EXPIRATION);
3948                 if (timeout != set->timeout)
3949                         nft_set_ext_add(&tmpl, NFT_SET_EXT_TIMEOUT);
3950         }
3951
3952         if (nla[NFTA_SET_ELEM_OBJREF] != NULL) {
3953                 if (!(set->flags & NFT_SET_OBJECT)) {
3954                         err = -EINVAL;
3955                         goto err2;
3956                 }
3957                 obj = nf_tables_obj_lookup(ctx->table, nla[NFTA_SET_ELEM_OBJREF],
3958                                            set->objtype, genmask);
3959                 if (IS_ERR(obj)) {
3960                         err = PTR_ERR(obj);
3961                         goto err2;
3962                 }
3963                 nft_set_ext_add(&tmpl, NFT_SET_EXT_OBJREF);
3964         }
3965
3966         if (nla[NFTA_SET_ELEM_DATA] != NULL) {
3967                 err = nft_data_init(ctx, &data, sizeof(data), &d2,
3968                                     nla[NFTA_SET_ELEM_DATA]);
3969                 if (err < 0)
3970                         goto err2;
3971
3972                 err = -EINVAL;
3973                 if (set->dtype != NFT_DATA_VERDICT && d2.len != set->dlen)
3974                         goto err3;
3975
3976                 dreg = nft_type_to_reg(set->dtype);
3977                 list_for_each_entry(binding, &set->bindings, list) {
3978                         struct nft_ctx bind_ctx = {
3979                                 .net    = ctx->net,
3980                                 .family = ctx->family,
3981                                 .table  = ctx->table,
3982                                 .chain  = (struct nft_chain *)binding->chain,
3983                         };
3984
3985                         if (!(binding->flags & NFT_SET_MAP))
3986                                 continue;
3987
3988                         err = nft_validate_register_store(&bind_ctx, dreg,
3989                                                           &data,
3990                                                           d2.type, d2.len);
3991                         if (err < 0)
3992                                 goto err3;
3993                 }
3994
3995                 nft_set_ext_add_length(&tmpl, NFT_SET_EXT_DATA, d2.len);
3996         }
3997
3998         /* The full maximum length of userdata can exceed the maximum
3999          * offset value (U8_MAX) for following extensions, therefor it
4000          * must be the last extension added.
4001          */
4002         ulen = 0;
4003         if (nla[NFTA_SET_ELEM_USERDATA] != NULL) {
4004                 ulen = nla_len(nla[NFTA_SET_ELEM_USERDATA]);
4005                 if (ulen > 0)
4006                         nft_set_ext_add_length(&tmpl, NFT_SET_EXT_USERDATA,
4007                                                ulen);
4008         }
4009
4010         err = -ENOMEM;
4011         elem.priv = nft_set_elem_init(set, &tmpl, elem.key.val.data, data.data,
4012                                       timeout, GFP_KERNEL);
4013         if (elem.priv == NULL)
4014                 goto err3;
4015
4016         ext = nft_set_elem_ext(set, elem.priv);
4017         if (flags)
4018                 *nft_set_ext_flags(ext) = flags;
4019         if (ulen > 0) {
4020                 udata = nft_set_ext_userdata(ext);
4021                 udata->len = ulen - 1;
4022                 nla_memcpy(&udata->data, nla[NFTA_SET_ELEM_USERDATA], ulen);
4023         }
4024         if (obj) {
4025                 *nft_set_ext_obj(ext) = obj;
4026                 obj->use++;
4027         }
4028
4029         trans = nft_trans_elem_alloc(ctx, NFT_MSG_NEWSETELEM, set);
4030         if (trans == NULL)
4031                 goto err4;
4032
4033         ext->genmask = nft_genmask_cur(ctx->net) | NFT_SET_ELEM_BUSY_MASK;
4034         err = set->ops->insert(ctx->net, set, &elem, &ext2);
4035         if (err) {
4036                 if (err == -EEXIST) {
4037                         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA) ^
4038                             nft_set_ext_exists(ext2, NFT_SET_EXT_DATA) ||
4039                             nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF) ^
4040                             nft_set_ext_exists(ext2, NFT_SET_EXT_OBJREF))
4041                                 return -EBUSY;
4042                         if ((nft_set_ext_exists(ext, NFT_SET_EXT_DATA) &&
4043                              nft_set_ext_exists(ext2, NFT_SET_EXT_DATA) &&
4044                              memcmp(nft_set_ext_data(ext),
4045                                     nft_set_ext_data(ext2), set->dlen) != 0) ||
4046                             (nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF) &&
4047                              nft_set_ext_exists(ext2, NFT_SET_EXT_OBJREF) &&
4048                              *nft_set_ext_obj(ext) != *nft_set_ext_obj(ext2)))
4049                                 err = -EBUSY;
4050                         else if (!(nlmsg_flags & NLM_F_EXCL))
4051                                 err = 0;
4052                 }
4053                 goto err5;
4054         }
4055
4056         if (set->size &&
4057             !atomic_add_unless(&set->nelems, 1, set->size + set->ndeact)) {
4058                 err = -ENFILE;
4059                 goto err6;
4060         }
4061
4062         nft_trans_elem(trans) = elem;
4063         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
4064         return 0;
4065
4066 err6:
4067         set->ops->remove(ctx->net, set, &elem);
4068 err5:
4069         kfree(trans);
4070 err4:
4071         kfree(elem.priv);
4072 err3:
4073         if (nla[NFTA_SET_ELEM_DATA] != NULL)
4074                 nft_data_release(&data, d2.type);
4075 err2:
4076         nft_data_release(&elem.key.val, d1.type);
4077 err1:
4078         return err;
4079 }
4080
4081 static int nf_tables_newsetelem(struct net *net, struct sock *nlsk,
4082                                 struct sk_buff *skb, const struct nlmsghdr *nlh,
4083                                 const struct nlattr * const nla[],
4084                                 struct netlink_ext_ack *extack)
4085 {
4086         u8 genmask = nft_genmask_next(net);
4087         const struct nlattr *attr;
4088         struct nft_set *set;
4089         struct nft_ctx ctx;
4090         int rem, err = 0;
4091
4092         if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL)
4093                 return -EINVAL;
4094
4095         err = nft_ctx_init_from_elemattr(&ctx, net, skb, nlh, nla, genmask);
4096         if (err < 0)
4097                 return err;
4098
4099         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET],
4100                                    genmask);
4101         if (IS_ERR(set)) {
4102                 if (nla[NFTA_SET_ELEM_LIST_SET_ID]) {
4103                         set = nf_tables_set_lookup_byid(net,
4104                                         nla[NFTA_SET_ELEM_LIST_SET_ID],
4105                                         genmask);
4106                 }
4107                 if (IS_ERR(set))
4108                         return PTR_ERR(set);
4109         }
4110
4111         if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
4112                 return -EBUSY;
4113
4114         nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
4115                 err = nft_add_set_elem(&ctx, set, attr, nlh->nlmsg_flags);
4116                 if (err < 0)
4117                         break;
4118         }
4119         return err;
4120 }
4121
4122 /**
4123  *      nft_data_hold - hold a nft_data item
4124  *
4125  *      @data: struct nft_data to release
4126  *      @type: type of data
4127  *
4128  *      Hold a nft_data item. NFT_DATA_VALUE types can be silently discarded,
4129  *      NFT_DATA_VERDICT bumps the reference to chains in case of NFT_JUMP and
4130  *      NFT_GOTO verdicts. This function must be called on active data objects
4131  *      from the second phase of the commit protocol.
4132  */
4133 static void nft_data_hold(const struct nft_data *data, enum nft_data_types type)
4134 {
4135         if (type == NFT_DATA_VERDICT) {
4136                 switch (data->verdict.code) {
4137                 case NFT_JUMP:
4138                 case NFT_GOTO:
4139                         data->verdict.chain->use++;
4140                         break;
4141                 }
4142         }
4143 }
4144
4145 static void nft_set_elem_activate(const struct net *net,
4146                                   const struct nft_set *set,
4147                                   struct nft_set_elem *elem)
4148 {
4149         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
4150
4151         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
4152                 nft_data_hold(nft_set_ext_data(ext), set->dtype);
4153         if (nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF))
4154                 (*nft_set_ext_obj(ext))->use++;
4155 }
4156
4157 static void nft_set_elem_deactivate(const struct net *net,
4158                                     const struct nft_set *set,
4159                                     struct nft_set_elem *elem)
4160 {
4161         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
4162
4163         if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
4164                 nft_data_release(nft_set_ext_data(ext), set->dtype);
4165         if (nft_set_ext_exists(ext, NFT_SET_EXT_OBJREF))
4166                 (*nft_set_ext_obj(ext))->use--;
4167 }
4168
4169 static int nft_del_setelem(struct nft_ctx *ctx, struct nft_set *set,
4170                            const struct nlattr *attr)
4171 {
4172         struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
4173         struct nft_set_ext_tmpl tmpl;
4174         struct nft_data_desc desc;
4175         struct nft_set_elem elem;
4176         struct nft_set_ext *ext;
4177         struct nft_trans *trans;
4178         u32 flags = 0;
4179         void *priv;
4180         int err;
4181
4182         err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
4183                                nft_set_elem_policy, NULL);
4184         if (err < 0)
4185                 goto err1;
4186
4187         err = -EINVAL;
4188         if (nla[NFTA_SET_ELEM_KEY] == NULL)
4189                 goto err1;
4190
4191         nft_set_ext_prepare(&tmpl);
4192
4193         err = nft_setelem_parse_flags(set, nla[NFTA_SET_ELEM_FLAGS], &flags);
4194         if (err < 0)
4195                 return err;
4196         if (flags != 0)
4197                 nft_set_ext_add(&tmpl, NFT_SET_EXT_FLAGS);
4198
4199         err = nft_data_init(ctx, &elem.key.val, sizeof(elem.key), &desc,
4200                             nla[NFTA_SET_ELEM_KEY]);
4201         if (err < 0)
4202                 goto err1;
4203
4204         err = -EINVAL;
4205         if (desc.type != NFT_DATA_VALUE || desc.len != set->klen)
4206                 goto err2;
4207
4208         nft_set_ext_add_length(&tmpl, NFT_SET_EXT_KEY, desc.len);
4209
4210         err = -ENOMEM;
4211         elem.priv = nft_set_elem_init(set, &tmpl, elem.key.val.data, NULL, 0,
4212                                       GFP_KERNEL);
4213         if (elem.priv == NULL)
4214                 goto err2;
4215
4216         ext = nft_set_elem_ext(set, elem.priv);
4217         if (flags)
4218                 *nft_set_ext_flags(ext) = flags;
4219
4220         trans = nft_trans_elem_alloc(ctx, NFT_MSG_DELSETELEM, set);
4221         if (trans == NULL) {
4222                 err = -ENOMEM;
4223                 goto err3;
4224         }
4225
4226         priv = set->ops->deactivate(ctx->net, set, &elem);
4227         if (priv == NULL) {
4228                 err = -ENOENT;
4229                 goto err4;
4230         }
4231         kfree(elem.priv);
4232         elem.priv = priv;
4233
4234         nft_set_elem_deactivate(ctx->net, set, &elem);
4235
4236         nft_trans_elem(trans) = elem;
4237         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
4238         return 0;
4239
4240 err4:
4241         kfree(trans);
4242 err3:
4243         kfree(elem.priv);
4244 err2:
4245         nft_data_release(&elem.key.val, desc.type);
4246 err1:
4247         return err;
4248 }
4249
4250 static int nft_flush_set(const struct nft_ctx *ctx,
4251                          struct nft_set *set,
4252                          const struct nft_set_iter *iter,
4253                          struct nft_set_elem *elem)
4254 {
4255         struct nft_trans *trans;
4256         int err;
4257
4258         trans = nft_trans_alloc_gfp(ctx, NFT_MSG_DELSETELEM,
4259                                     sizeof(struct nft_trans_elem), GFP_ATOMIC);
4260         if (!trans)
4261                 return -ENOMEM;
4262
4263         if (!set->ops->flush(ctx->net, set, elem->priv)) {
4264                 err = -ENOENT;
4265                 goto err1;
4266         }
4267         set->ndeact++;
4268
4269         nft_trans_elem_set(trans) = set;
4270         nft_trans_elem(trans) = *elem;
4271         list_add_tail(&trans->list, &ctx->net->nft.commit_list);
4272
4273         return 0;
4274 err1:
4275         kfree(trans);
4276         return err;
4277 }
4278
4279 static int nf_tables_delsetelem(struct net *net, struct sock *nlsk,
4280                                 struct sk_buff *skb, const struct nlmsghdr *nlh,
4281                                 const struct nlattr * const nla[],
4282                                 struct netlink_ext_ack *extack)
4283 {
4284         u8 genmask = nft_genmask_next(net);
4285         const struct nlattr *attr;
4286         struct nft_set *set;
4287         struct nft_ctx ctx;
4288         int rem, err = 0;
4289
4290         err = nft_ctx_init_from_elemattr(&ctx, net, skb, nlh, nla, genmask);
4291         if (err < 0)
4292                 return err;
4293
4294         set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET],
4295                                    genmask);
4296         if (IS_ERR(set))
4297                 return PTR_ERR(set);
4298         if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
4299                 return -EBUSY;
4300
4301         if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL) {
4302                 struct nft_set_iter iter = {
4303                         .genmask        = genmask,
4304                         .fn             = nft_flush_set,
4305                 };
4306                 set->ops->walk(&ctx, set, &iter);
4307
4308                 return iter.err;
4309         }
4310
4311         nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
4312                 err = nft_del_setelem(&ctx, set, attr);
4313                 if (err < 0)
4314                         break;
4315
4316                 set->ndeact++;
4317         }
4318         return err;
4319 }
4320
4321 void nft_set_gc_batch_release(struct rcu_head *rcu)
4322 {
4323         struct nft_set_gc_batch *gcb;
4324         unsigned int i;
4325
4326         gcb = container_of(rcu, struct nft_set_gc_batch, head.rcu);
4327         for (i = 0; i < gcb->head.cnt; i++)
4328                 nft_set_elem_destroy(gcb->head.set, gcb->elems[i], true);
4329         kfree(gcb);
4330 }
4331 EXPORT_SYMBOL_GPL(nft_set_gc_batch_release);
4332
4333 struct nft_set_gc_batch *nft_set_gc_batch_alloc(const struct nft_set *set,
4334                                                 gfp_t gfp)
4335 {
4336         struct nft_set_gc_batch *gcb;
4337
4338         gcb = kzalloc(sizeof(*gcb), gfp);
4339         if (gcb == NULL)
4340                 return gcb;
4341         gcb->head.set = set;
4342         return gcb;
4343 }
4344 EXPORT_SYMBOL_GPL(nft_set_gc_batch_alloc);
4345
4346 /*
4347  * Stateful objects
4348  */
4349
4350 /**
4351  *      nft_register_obj- register nf_tables stateful object type
4352  *      @obj: object type
4353  *
4354  *      Registers the object type for use with nf_tables. Returns zero on
4355  *      success or a negative errno code otherwise.
4356  */
4357 int nft_register_obj(struct nft_object_type *obj_type)
4358 {
4359         if (obj_type->type == NFT_OBJECT_UNSPEC)
4360                 return -EINVAL;
4361
4362         nfnl_lock(NFNL_SUBSYS_NFTABLES);
4363         list_add_rcu(&obj_type->list, &nf_tables_objects);
4364         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
4365         return 0;
4366 }
4367 EXPORT_SYMBOL_GPL(nft_register_obj);
4368
4369 /**
4370  *      nft_unregister_obj - unregister nf_tables object type
4371  *      @obj: object type
4372  *
4373  *      Unregisters the object type for use with nf_tables.
4374  */
4375 void nft_unregister_obj(struct nft_object_type *obj_type)
4376 {
4377         nfnl_lock(NFNL_SUBSYS_NFTABLES);
4378         list_del_rcu(&obj_type->list);
4379         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
4380 }
4381 EXPORT_SYMBOL_GPL(nft_unregister_obj);
4382
4383 struct nft_object *nf_tables_obj_lookup(const struct nft_table *table,
4384                                         const struct nlattr *nla,
4385                                         u32 objtype, u8 genmask)
4386 {
4387         struct nft_object *obj;
4388
4389         list_for_each_entry(obj, &table->objects, list) {
4390                 if (!nla_strcmp(nla, obj->name) &&
4391                     objtype == obj->ops->type->type &&
4392                     nft_active_genmask(obj, genmask))
4393                         return obj;
4394         }
4395         return ERR_PTR(-ENOENT);
4396 }
4397 EXPORT_SYMBOL_GPL(nf_tables_obj_lookup);
4398
4399 struct nft_object *nf_tables_obj_lookup_byhandle(const struct nft_table *table,
4400                                                  const struct nlattr *nla,
4401                                                  u32 objtype, u8 genmask)
4402 {
4403         struct nft_object *obj;
4404
4405         list_for_each_entry(obj, &table->objects, list) {
4406                 if (be64_to_cpu(nla_get_be64(nla)) == obj->handle &&
4407                     objtype == obj->ops->type->type &&
4408                     nft_active_genmask(obj, genmask))
4409                         return obj;
4410         }
4411         return ERR_PTR(-ENOENT);
4412 }
4413
4414 static const struct nla_policy nft_obj_policy[NFTA_OBJ_MAX + 1] = {
4415         [NFTA_OBJ_TABLE]        = { .type = NLA_STRING,
4416                                     .len = NFT_TABLE_MAXNAMELEN - 1 },
4417         [NFTA_OBJ_NAME]         = { .type = NLA_STRING,
4418                                     .len = NFT_OBJ_MAXNAMELEN - 1 },
4419         [NFTA_OBJ_TYPE]         = { .type = NLA_U32 },
4420         [NFTA_OBJ_DATA]         = { .type = NLA_NESTED },
4421         [NFTA_OBJ_HANDLE]       = { .type = NLA_U64},
4422 };
4423
4424 static struct nft_object *nft_obj_init(const struct nft_ctx *ctx,
4425                                        const struct nft_object_type *type,
4426                                        const struct nlattr *attr)
4427 {
4428         struct nlattr *tb[type->maxattr + 1];
4429         const struct nft_object_ops *ops;
4430         struct nft_object *obj;
4431         int err;
4432
4433         if (attr) {
4434                 err = nla_parse_nested(tb, type->maxattr, attr, type->policy,
4435                                        NULL);
4436                 if (err < 0)
4437                         goto err1;
4438         } else {
4439                 memset(tb, 0, sizeof(tb[0]) * (type->maxattr + 1));
4440         }
4441
4442         if (type->select_ops) {
4443                 ops = type->select_ops(ctx, (const struct nlattr * const *)tb);
4444                 if (IS_ERR(ops)) {
4445                         err = PTR_ERR(ops);
4446                         goto err1;
4447                 }
4448         } else {
4449                 ops = type->ops;
4450         }
4451
4452         err = -ENOMEM;
4453         obj = kzalloc(sizeof(*obj) + ops->size, GFP_KERNEL);
4454         if (obj == NULL)
4455                 goto err1;
4456
4457         err = ops->init(ctx, (const struct nlattr * const *)tb, obj);
4458         if (err < 0)
4459                 goto err2;
4460
4461         obj->ops = ops;
4462
4463         return obj;
4464 err2:
4465         kfree(obj);
4466 err1:
4467         return ERR_PTR(err);
4468 }
4469
4470 static int nft_object_dump(struct sk_buff *skb, unsigned int attr,
4471                            struct nft_object *obj, bool reset)
4472 {
4473         struct nlattr *nest;
4474
4475         nest = nla_nest_start(skb, attr);
4476         if (!nest)
4477                 goto nla_put_failure;
4478         if (obj->ops->dump(skb, obj, reset) < 0)
4479                 goto nla_put_failure;
4480         nla_nest_end(skb, nest);
4481         return 0;
4482
4483 nla_put_failure:
4484         return -1;
4485 }
4486
4487 static const struct nft_object_type *__nft_obj_type_get(u32 objtype)
4488 {
4489         const struct nft_object_type *type;
4490
4491         list_for_each_entry(type, &nf_tables_objects, list) {
4492                 if (objtype == type->type)
4493                         return type;
4494         }
4495         return NULL;
4496 }
4497
4498 static const struct nft_object_type *nft_obj_type_get(u32 objtype)
4499 {
4500         const struct nft_object_type *type;
4501
4502         type = __nft_obj_type_get(objtype);
4503         if (type != NULL && try_module_get(type->owner))
4504                 return type;
4505
4506 #ifdef CONFIG_MODULES
4507         if (type == NULL) {
4508                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
4509                 request_module("nft-obj-%u", objtype);
4510                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
4511                 if (__nft_obj_type_get(objtype))
4512                         return ERR_PTR(-EAGAIN);
4513         }
4514 #endif
4515         return ERR_PTR(-ENOENT);
4516 }
4517
4518 static int nf_tables_newobj(struct net *net, struct sock *nlsk,
4519                             struct sk_buff *skb, const struct nlmsghdr *nlh,
4520                             const struct nlattr * const nla[],
4521                             struct netlink_ext_ack *extack)
4522 {
4523         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
4524         const struct nft_object_type *type;
4525         u8 genmask = nft_genmask_next(net);
4526         int family = nfmsg->nfgen_family;
4527         struct nft_table *table;
4528         struct nft_object *obj;
4529         struct nft_ctx ctx;
4530         u32 objtype;
4531         int err;
4532
4533         if (!nla[NFTA_OBJ_TYPE] ||
4534             !nla[NFTA_OBJ_NAME] ||
4535             !nla[NFTA_OBJ_DATA])
4536                 return -EINVAL;
4537
4538         table = nf_tables_table_lookup(net, nla[NFTA_OBJ_TABLE], family,
4539                                        genmask);
4540         if (IS_ERR(table))
4541                 return PTR_ERR(table);
4542
4543         objtype = ntohl(nla_get_be32(nla[NFTA_OBJ_TYPE]));
4544         obj = nf_tables_obj_lookup(table, nla[NFTA_OBJ_NAME], objtype, genmask);
4545         if (IS_ERR(obj)) {
4546                 err = PTR_ERR(obj);
4547                 if (err != -ENOENT)
4548                         return err;
4549
4550         } else {
4551                 if (nlh->nlmsg_flags & NLM_F_EXCL)
4552                         return -EEXIST;
4553
4554                 return 0;
4555         }
4556
4557         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
4558
4559         type = nft_obj_type_get(objtype);
4560         if (IS_ERR(type))
4561                 return PTR_ERR(type);
4562
4563         obj = nft_obj_init(&ctx, type, nla[NFTA_OBJ_DATA]);
4564         if (IS_ERR(obj)) {
4565                 err = PTR_ERR(obj);
4566                 goto err1;
4567         }
4568         obj->table = table;
4569         obj->handle = nf_tables_alloc_handle(table);
4570
4571         obj->name = nla_strdup(nla[NFTA_OBJ_NAME], GFP_KERNEL);
4572         if (!obj->name) {
4573                 err = -ENOMEM;
4574                 goto err2;
4575         }
4576
4577         err = nft_trans_obj_add(&ctx, NFT_MSG_NEWOBJ, obj);
4578         if (err < 0)
4579                 goto err3;
4580
4581         list_add_tail_rcu(&obj->list, &table->objects);
4582         table->use++;
4583         return 0;
4584 err3:
4585         kfree(obj->name);
4586 err2:
4587         if (obj->ops->destroy)
4588                 obj->ops->destroy(obj);
4589         kfree(obj);
4590 err1:
4591         module_put(type->owner);
4592         return err;
4593 }
4594
4595 static int nf_tables_fill_obj_info(struct sk_buff *skb, struct net *net,
4596                                    u32 portid, u32 seq, int event, u32 flags,
4597                                    int family, const struct nft_table *table,
4598                                    struct nft_object *obj, bool reset)
4599 {
4600         struct nfgenmsg *nfmsg;
4601         struct nlmsghdr *nlh;
4602
4603         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
4604         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
4605         if (nlh == NULL)
4606                 goto nla_put_failure;
4607
4608         nfmsg = nlmsg_data(nlh);
4609         nfmsg->nfgen_family     = family;
4610         nfmsg->version          = NFNETLINK_V0;
4611         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
4612
4613         if (nla_put_string(skb, NFTA_OBJ_TABLE, table->name) ||
4614             nla_put_string(skb, NFTA_OBJ_NAME, obj->name) ||
4615             nla_put_be32(skb, NFTA_OBJ_TYPE, htonl(obj->ops->type->type)) ||
4616             nla_put_be32(skb, NFTA_OBJ_USE, htonl(obj->use)) ||
4617             nft_object_dump(skb, NFTA_OBJ_DATA, obj, reset) ||
4618             nla_put_be64(skb, NFTA_OBJ_HANDLE, cpu_to_be64(obj->handle),
4619                          NFTA_OBJ_PAD))
4620                 goto nla_put_failure;
4621
4622         nlmsg_end(skb, nlh);
4623         return 0;
4624
4625 nla_put_failure:
4626         nlmsg_trim(skb, nlh);
4627         return -1;
4628 }
4629
4630 struct nft_obj_filter {
4631         char            *table;
4632         u32             type;
4633 };
4634
4635 static int nf_tables_dump_obj(struct sk_buff *skb, struct netlink_callback *cb)
4636 {
4637         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
4638         const struct nft_table *table;
4639         unsigned int idx = 0, s_idx = cb->args[0];
4640         struct nft_obj_filter *filter = cb->data;
4641         struct net *net = sock_net(skb->sk);
4642         int family = nfmsg->nfgen_family;
4643         struct nft_object *obj;
4644         bool reset = false;
4645
4646         if (NFNL_MSG_TYPE(cb->nlh->nlmsg_type) == NFT_MSG_GETOBJ_RESET)
4647                 reset = true;
4648
4649         rcu_read_lock();
4650         cb->seq = net->nft.base_seq;
4651
4652         list_for_each_entry_rcu(table, &net->nft.tables, list) {
4653                 if (family != NFPROTO_UNSPEC && family != table->family)
4654                         continue;
4655
4656                 list_for_each_entry_rcu(obj, &table->objects, list) {
4657                         if (!nft_is_active(net, obj))
4658                                 goto cont;
4659                         if (idx < s_idx)
4660                                 goto cont;
4661                         if (idx > s_idx)
4662                                 memset(&cb->args[1], 0,
4663                                        sizeof(cb->args) - sizeof(cb->args[0]));
4664                         if (filter && filter->table[0] &&
4665                             strcmp(filter->table, table->name))
4666                                 goto cont;
4667                         if (filter &&
4668                             filter->type != NFT_OBJECT_UNSPEC &&
4669                             obj->ops->type->type != filter->type)
4670                                 goto cont;
4671
4672                         if (nf_tables_fill_obj_info(skb, net, NETLINK_CB(cb->skb).portid,
4673                                                     cb->nlh->nlmsg_seq,
4674                                                     NFT_MSG_NEWOBJ,
4675                                                     NLM_F_MULTI | NLM_F_APPEND,
4676                                                     table->family, table,
4677                                                     obj, reset) < 0)
4678                                 goto done;
4679
4680                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
4681 cont:
4682                         idx++;
4683                 }
4684         }
4685 done:
4686         rcu_read_unlock();
4687
4688         cb->args[0] = idx;
4689         return skb->len;
4690 }
4691
4692 static int nf_tables_dump_obj_done(struct netlink_callback *cb)
4693 {
4694         struct nft_obj_filter *filter = cb->data;
4695
4696         if (filter) {
4697                 kfree(filter->table);
4698                 kfree(filter);
4699         }
4700
4701         return 0;
4702 }
4703
4704 static struct nft_obj_filter *
4705 nft_obj_filter_alloc(const struct nlattr * const nla[])
4706 {
4707         struct nft_obj_filter *filter;
4708
4709         filter = kzalloc(sizeof(*filter), GFP_KERNEL);
4710         if (!filter)
4711                 return ERR_PTR(-ENOMEM);
4712
4713         if (nla[NFTA_OBJ_TABLE]) {
4714                 filter->table = nla_strdup(nla[NFTA_OBJ_TABLE], GFP_KERNEL);
4715                 if (!filter->table) {
4716                         kfree(filter);
4717                         return ERR_PTR(-ENOMEM);
4718                 }
4719         }
4720         if (nla[NFTA_OBJ_TYPE])
4721                 filter->type = ntohl(nla_get_be32(nla[NFTA_OBJ_TYPE]));
4722
4723         return filter;
4724 }
4725
4726 static int nf_tables_getobj(struct net *net, struct sock *nlsk,
4727                             struct sk_buff *skb, const struct nlmsghdr *nlh,
4728                             const struct nlattr * const nla[],
4729                             struct netlink_ext_ack *extack)
4730 {
4731         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
4732         u8 genmask = nft_genmask_cur(net);
4733         int family = nfmsg->nfgen_family;
4734         const struct nft_table *table;
4735         struct nft_object *obj;
4736         struct sk_buff *skb2;
4737         bool reset = false;
4738         u32 objtype;
4739         int err;
4740
4741         if (nlh->nlmsg_flags & NLM_F_DUMP) {
4742                 struct netlink_dump_control c = {
4743                         .dump = nf_tables_dump_obj,
4744                         .done = nf_tables_dump_obj_done,
4745                 };
4746
4747                 if (nla[NFTA_OBJ_TABLE] ||
4748                     nla[NFTA_OBJ_TYPE]) {
4749                         struct nft_obj_filter *filter;
4750
4751                         filter = nft_obj_filter_alloc(nla);
4752                         if (IS_ERR(filter))
4753                                 return -ENOMEM;
4754
4755                         c.data = filter;
4756                 }
4757                 return netlink_dump_start(nlsk, skb, nlh, &c);
4758         }
4759
4760         if (!nla[NFTA_OBJ_NAME] ||
4761             !nla[NFTA_OBJ_TYPE])
4762                 return -EINVAL;
4763
4764         table = nf_tables_table_lookup(net, nla[NFTA_OBJ_TABLE], family,
4765                                        genmask);
4766         if (IS_ERR(table))
4767                 return PTR_ERR(table);
4768
4769         objtype = ntohl(nla_get_be32(nla[NFTA_OBJ_TYPE]));
4770         obj = nf_tables_obj_lookup(table, nla[NFTA_OBJ_NAME], objtype, genmask);
4771         if (IS_ERR(obj))
4772                 return PTR_ERR(obj);
4773
4774         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
4775         if (!skb2)
4776                 return -ENOMEM;
4777
4778         if (NFNL_MSG_TYPE(nlh->nlmsg_type) == NFT_MSG_GETOBJ_RESET)
4779                 reset = true;
4780
4781         err = nf_tables_fill_obj_info(skb2, net, NETLINK_CB(skb).portid,
4782                                       nlh->nlmsg_seq, NFT_MSG_NEWOBJ, 0,
4783                                       family, table, obj, reset);
4784         if (err < 0)
4785                 goto err;
4786
4787         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
4788 err:
4789         kfree_skb(skb2);
4790         return err;
4791 }
4792
4793 static void nft_obj_destroy(struct nft_object *obj)
4794 {
4795         if (obj->ops->destroy)
4796                 obj->ops->destroy(obj);
4797
4798         module_put(obj->ops->type->owner);
4799         kfree(obj->name);
4800         kfree(obj);
4801 }
4802
4803 static int nf_tables_delobj(struct net *net, struct sock *nlsk,
4804                             struct sk_buff *skb, const struct nlmsghdr *nlh,
4805                             const struct nlattr * const nla[],
4806                             struct netlink_ext_ack *extack)
4807 {
4808         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
4809         u8 genmask = nft_genmask_next(net);
4810         int family = nfmsg->nfgen_family;
4811         struct nft_table *table;
4812         struct nft_object *obj;
4813         struct nft_ctx ctx;
4814         u32 objtype;
4815
4816         if (!nla[NFTA_OBJ_TYPE] ||
4817             (!nla[NFTA_OBJ_NAME] && !nla[NFTA_OBJ_HANDLE]))
4818                 return -EINVAL;
4819
4820         table = nf_tables_table_lookup(net, nla[NFTA_OBJ_TABLE], family,
4821                                        genmask);
4822         if (IS_ERR(table))
4823                 return PTR_ERR(table);
4824
4825         objtype = ntohl(nla_get_be32(nla[NFTA_OBJ_TYPE]));
4826         if (nla[NFTA_OBJ_HANDLE])
4827                 obj = nf_tables_obj_lookup_byhandle(table, nla[NFTA_OBJ_HANDLE],
4828                                                     objtype, genmask);
4829         else
4830                 obj = nf_tables_obj_lookup(table, nla[NFTA_OBJ_NAME],
4831                                            objtype, genmask);
4832         if (IS_ERR(obj))
4833                 return PTR_ERR(obj);
4834         if (obj->use > 0)
4835                 return -EBUSY;
4836
4837         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
4838
4839         return nft_delobj(&ctx, obj);
4840 }
4841
4842 void nft_obj_notify(struct net *net, struct nft_table *table,
4843                     struct nft_object *obj, u32 portid, u32 seq, int event,
4844                     int family, int report, gfp_t gfp)
4845 {
4846         struct sk_buff *skb;
4847         int err;
4848
4849         if (!report &&
4850             !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
4851                 return;
4852
4853         skb = nlmsg_new(NLMSG_GOODSIZE, gfp);
4854         if (skb == NULL)
4855                 goto err;
4856
4857         err = nf_tables_fill_obj_info(skb, net, portid, seq, event, 0, family,
4858                                       table, obj, false);
4859         if (err < 0) {
4860                 kfree_skb(skb);
4861                 goto err;
4862         }
4863
4864         nfnetlink_send(skb, net, portid, NFNLGRP_NFTABLES, report, gfp);
4865         return;
4866 err:
4867         nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, -ENOBUFS);
4868 }
4869 EXPORT_SYMBOL_GPL(nft_obj_notify);
4870
4871 static void nf_tables_obj_notify(const struct nft_ctx *ctx,
4872                                  struct nft_object *obj, int event)
4873 {
4874         nft_obj_notify(ctx->net, ctx->table, obj, ctx->portid, ctx->seq, event,
4875                        ctx->family, ctx->report, GFP_KERNEL);
4876 }
4877
4878 /*
4879  * Flow tables
4880  */
4881 void nft_register_flowtable_type(struct nf_flowtable_type *type)
4882 {
4883         nfnl_lock(NFNL_SUBSYS_NFTABLES);
4884         list_add_tail_rcu(&type->list, &nf_tables_flowtables);
4885         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
4886 }
4887 EXPORT_SYMBOL_GPL(nft_register_flowtable_type);
4888
4889 void nft_unregister_flowtable_type(struct nf_flowtable_type *type)
4890 {
4891         nfnl_lock(NFNL_SUBSYS_NFTABLES);
4892         list_del_rcu(&type->list);
4893         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
4894 }
4895 EXPORT_SYMBOL_GPL(nft_unregister_flowtable_type);
4896
4897 static const struct nla_policy nft_flowtable_policy[NFTA_FLOWTABLE_MAX + 1] = {
4898         [NFTA_FLOWTABLE_TABLE]          = { .type = NLA_STRING,
4899                                             .len = NFT_NAME_MAXLEN - 1 },
4900         [NFTA_FLOWTABLE_NAME]           = { .type = NLA_STRING,
4901                                             .len = NFT_NAME_MAXLEN - 1 },
4902         [NFTA_FLOWTABLE_HOOK]           = { .type = NLA_NESTED },
4903         [NFTA_FLOWTABLE_HANDLE]         = { .type = NLA_U64 },
4904 };
4905
4906 struct nft_flowtable *nf_tables_flowtable_lookup(const struct nft_table *table,
4907                                                  const struct nlattr *nla,
4908                                                  u8 genmask)
4909 {
4910         struct nft_flowtable *flowtable;
4911
4912         list_for_each_entry(flowtable, &table->flowtables, list) {
4913                 if (!nla_strcmp(nla, flowtable->name) &&
4914                     nft_active_genmask(flowtable, genmask))
4915                         return flowtable;
4916         }
4917         return ERR_PTR(-ENOENT);
4918 }
4919 EXPORT_SYMBOL_GPL(nf_tables_flowtable_lookup);
4920
4921 struct nft_flowtable *
4922 nf_tables_flowtable_lookup_byhandle(const struct nft_table *table,
4923                                     const struct nlattr *nla, u8 genmask)
4924 {
4925        struct nft_flowtable *flowtable;
4926
4927        list_for_each_entry(flowtable, &table->flowtables, list) {
4928                if (be64_to_cpu(nla_get_be64(nla)) == flowtable->handle &&
4929                    nft_active_genmask(flowtable, genmask))
4930                        return flowtable;
4931        }
4932        return ERR_PTR(-ENOENT);
4933 }
4934
4935 static int nf_tables_parse_devices(const struct nft_ctx *ctx,
4936                                    const struct nlattr *attr,
4937                                    struct net_device *dev_array[], int *len)
4938 {
4939         const struct nlattr *tmp;
4940         struct net_device *dev;
4941         char ifname[IFNAMSIZ];
4942         int rem, n = 0, err;
4943
4944         nla_for_each_nested(tmp, attr, rem) {
4945                 if (nla_type(tmp) != NFTA_DEVICE_NAME) {
4946                         err = -EINVAL;
4947                         goto err1;
4948                 }
4949
4950                 nla_strlcpy(ifname, tmp, IFNAMSIZ);
4951                 dev = dev_get_by_name(ctx->net, ifname);
4952                 if (!dev) {
4953                         err = -ENOENT;
4954                         goto err1;
4955                 }
4956
4957                 dev_array[n++] = dev;
4958                 if (n == NFT_FLOWTABLE_DEVICE_MAX) {
4959                         err = -EFBIG;
4960                         goto err1;
4961                 }
4962         }
4963         if (!len)
4964                 return -EINVAL;
4965
4966         err = 0;
4967 err1:
4968         *len = n;
4969         return err;
4970 }
4971
4972 static const struct nla_policy nft_flowtable_hook_policy[NFTA_FLOWTABLE_HOOK_MAX + 1] = {
4973         [NFTA_FLOWTABLE_HOOK_NUM]       = { .type = NLA_U32 },
4974         [NFTA_FLOWTABLE_HOOK_PRIORITY]  = { .type = NLA_U32 },
4975         [NFTA_FLOWTABLE_HOOK_DEVS]      = { .type = NLA_NESTED },
4976 };
4977
4978 static int nf_tables_flowtable_parse_hook(const struct nft_ctx *ctx,
4979                                           const struct nlattr *attr,
4980                                           struct nft_flowtable *flowtable)
4981 {
4982         struct net_device *dev_array[NFT_FLOWTABLE_DEVICE_MAX];
4983         struct nlattr *tb[NFTA_FLOWTABLE_HOOK_MAX + 1];
4984         struct nf_hook_ops *ops;
4985         int hooknum, priority;
4986         int err, n = 0, i;
4987
4988         err = nla_parse_nested(tb, NFTA_FLOWTABLE_HOOK_MAX, attr,
4989                                nft_flowtable_hook_policy, NULL);
4990         if (err < 0)
4991                 return err;
4992
4993         if (!tb[NFTA_FLOWTABLE_HOOK_NUM] ||
4994             !tb[NFTA_FLOWTABLE_HOOK_PRIORITY] ||
4995             !tb[NFTA_FLOWTABLE_HOOK_DEVS])
4996                 return -EINVAL;
4997
4998         hooknum = ntohl(nla_get_be32(tb[NFTA_FLOWTABLE_HOOK_NUM]));
4999         if (hooknum != NF_NETDEV_INGRESS)
5000                 return -EINVAL;
5001
5002         priority = ntohl(nla_get_be32(tb[NFTA_FLOWTABLE_HOOK_PRIORITY]));
5003
5004         err = nf_tables_parse_devices(ctx, tb[NFTA_FLOWTABLE_HOOK_DEVS],
5005                                       dev_array, &n);
5006         if (err < 0)
5007                 return err;
5008
5009         ops = kzalloc(sizeof(struct nf_hook_ops) * n, GFP_KERNEL);
5010         if (!ops) {
5011                 err = -ENOMEM;
5012                 goto err1;
5013         }
5014
5015         flowtable->hooknum      = hooknum;
5016         flowtable->priority     = priority;
5017         flowtable->ops          = ops;
5018         flowtable->ops_len      = n;
5019
5020         for (i = 0; i < n; i++) {
5021                 flowtable->ops[i].pf            = NFPROTO_NETDEV;
5022                 flowtable->ops[i].hooknum       = hooknum;
5023                 flowtable->ops[i].priority      = priority;
5024                 flowtable->ops[i].priv          = &flowtable->data.rhashtable;
5025                 flowtable->ops[i].hook          = flowtable->data.type->hook;
5026                 flowtable->ops[i].dev           = dev_array[i];
5027                 flowtable->dev_name[i]          = kstrdup(dev_array[i]->name,
5028                                                           GFP_KERNEL);
5029         }
5030
5031         err = 0;
5032 err1:
5033         for (i = 0; i < n; i++)
5034                 dev_put(dev_array[i]);
5035
5036         return err;
5037 }
5038
5039 static const struct nf_flowtable_type *__nft_flowtable_type_get(u8 family)
5040 {
5041         const struct nf_flowtable_type *type;
5042
5043         list_for_each_entry(type, &nf_tables_flowtables, list) {
5044                 if (family == type->family)
5045                         return type;
5046         }
5047         return NULL;
5048 }
5049
5050 static const struct nf_flowtable_type *nft_flowtable_type_get(u8 family)
5051 {
5052         const struct nf_flowtable_type *type;
5053
5054         type = __nft_flowtable_type_get(family);
5055         if (type != NULL && try_module_get(type->owner))
5056                 return type;
5057
5058 #ifdef CONFIG_MODULES
5059         if (type == NULL) {
5060                 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
5061                 request_module("nf-flowtable-%u", family);
5062                 nfnl_lock(NFNL_SUBSYS_NFTABLES);
5063                 if (__nft_flowtable_type_get(family))
5064                         return ERR_PTR(-EAGAIN);
5065         }
5066 #endif
5067         return ERR_PTR(-ENOENT);
5068 }
5069
5070 void nft_flow_table_iterate(struct net *net,
5071                             void (*iter)(struct nf_flowtable *flowtable, void *data),
5072                             void *data)
5073 {
5074         struct nft_flowtable *flowtable;
5075         const struct nft_table *table;
5076
5077         nfnl_lock(NFNL_SUBSYS_NFTABLES);
5078         list_for_each_entry(table, &net->nft.tables, list) {
5079                 list_for_each_entry(flowtable, &table->flowtables, list) {
5080                         iter(&flowtable->data, data);
5081                 }
5082         }
5083         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
5084 }
5085 EXPORT_SYMBOL_GPL(nft_flow_table_iterate);
5086
5087 static void nft_unregister_flowtable_net_hooks(struct net *net,
5088                                                struct nft_flowtable *flowtable)
5089 {
5090         int i;
5091
5092         for (i = 0; i < flowtable->ops_len; i++) {
5093                 if (!flowtable->ops[i].dev)
5094                         continue;
5095
5096                 nf_unregister_net_hook(net, &flowtable->ops[i]);
5097         }
5098 }
5099
5100 static int nf_tables_newflowtable(struct net *net, struct sock *nlsk,
5101                                   struct sk_buff *skb,
5102                                   const struct nlmsghdr *nlh,
5103                                   const struct nlattr * const nla[],
5104                                   struct netlink_ext_ack *extack)
5105 {
5106         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
5107         const struct nf_flowtable_type *type;
5108         struct nft_flowtable *flowtable, *ft;
5109         u8 genmask = nft_genmask_next(net);
5110         int family = nfmsg->nfgen_family;
5111         struct nft_table *table;
5112         struct nft_ctx ctx;
5113         int err, i, k;
5114
5115         if (!nla[NFTA_FLOWTABLE_TABLE] ||
5116             !nla[NFTA_FLOWTABLE_NAME] ||
5117             !nla[NFTA_FLOWTABLE_HOOK])
5118                 return -EINVAL;
5119
5120         table = nf_tables_table_lookup(net, nla[NFTA_FLOWTABLE_TABLE],
5121                                        family, genmask);
5122         if (IS_ERR(table))
5123                 return PTR_ERR(table);
5124
5125         flowtable = nf_tables_flowtable_lookup(table, nla[NFTA_FLOWTABLE_NAME],
5126                                                genmask);
5127         if (IS_ERR(flowtable)) {
5128                 err = PTR_ERR(flowtable);
5129                 if (err != -ENOENT)
5130                         return err;
5131         } else {
5132                 if (nlh->nlmsg_flags & NLM_F_EXCL)
5133                         return -EEXIST;
5134
5135                 return 0;
5136         }
5137
5138         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
5139
5140         flowtable = kzalloc(sizeof(*flowtable), GFP_KERNEL);
5141         if (!flowtable)
5142                 return -ENOMEM;
5143
5144         flowtable->table = table;
5145         flowtable->handle = nf_tables_alloc_handle(table);
5146
5147         flowtable->name = nla_strdup(nla[NFTA_FLOWTABLE_NAME], GFP_KERNEL);
5148         if (!flowtable->name) {
5149                 err = -ENOMEM;
5150                 goto err1;
5151         }
5152
5153         type = nft_flowtable_type_get(family);
5154         if (IS_ERR(type)) {
5155                 err = PTR_ERR(type);
5156                 goto err2;
5157         }
5158
5159         flowtable->data.type = type;
5160         err = rhashtable_init(&flowtable->data.rhashtable, type->params);
5161         if (err < 0)
5162                 goto err3;
5163
5164         err = nf_tables_flowtable_parse_hook(&ctx, nla[NFTA_FLOWTABLE_HOOK],
5165                                              flowtable);
5166         if (err < 0)
5167                 goto err3;
5168
5169         for (i = 0; i < flowtable->ops_len; i++) {
5170                 if (!flowtable->ops[i].dev)
5171                         continue;
5172
5173                 list_for_each_entry(ft, &table->flowtables, list) {
5174                         for (k = 0; k < ft->ops_len; k++) {
5175                                 if (!ft->ops[k].dev)
5176                                         continue;
5177
5178                                 if (flowtable->ops[i].dev == ft->ops[k].dev &&
5179                                     flowtable->ops[i].pf == ft->ops[k].pf) {
5180                                         err = -EBUSY;
5181                                         goto err4;
5182                                 }
5183                         }
5184                 }
5185
5186                 err = nf_register_net_hook(net, &flowtable->ops[i]);
5187                 if (err < 0)
5188                         goto err4;
5189         }
5190
5191         err = nft_trans_flowtable_add(&ctx, NFT_MSG_NEWFLOWTABLE, flowtable);
5192         if (err < 0)
5193                 goto err5;
5194
5195         INIT_DEFERRABLE_WORK(&flowtable->data.gc_work, type->gc);
5196         queue_delayed_work(system_power_efficient_wq,
5197                            &flowtable->data.gc_work, HZ);
5198
5199         list_add_tail_rcu(&flowtable->list, &table->flowtables);
5200         table->use++;
5201
5202         return 0;
5203 err5:
5204         i = flowtable->ops_len;
5205 err4:
5206         for (k = i - 1; k >= 0; k--) {
5207                 kfree(flowtable->dev_name[k]);
5208                 nf_unregister_net_hook(net, &flowtable->ops[k]);
5209         }
5210
5211         kfree(flowtable->ops);
5212 err3:
5213         module_put(type->owner);
5214 err2:
5215         kfree(flowtable->name);
5216 err1:
5217         kfree(flowtable);
5218         return err;
5219 }
5220
5221 static int nf_tables_delflowtable(struct net *net, struct sock *nlsk,
5222                                   struct sk_buff *skb,
5223                                   const struct nlmsghdr *nlh,
5224                                   const struct nlattr * const nla[],
5225                                   struct netlink_ext_ack *extack)
5226 {
5227         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
5228         u8 genmask = nft_genmask_next(net);
5229         int family = nfmsg->nfgen_family;
5230         struct nft_flowtable *flowtable;
5231         struct nft_table *table;
5232         struct nft_ctx ctx;
5233
5234         if (!nla[NFTA_FLOWTABLE_TABLE] ||
5235             (!nla[NFTA_FLOWTABLE_NAME] &&
5236              !nla[NFTA_FLOWTABLE_HANDLE]))
5237                 return -EINVAL;
5238
5239         table = nf_tables_table_lookup(net, nla[NFTA_FLOWTABLE_TABLE],
5240                                        family, genmask);
5241         if (IS_ERR(table))
5242                 return PTR_ERR(table);
5243
5244         if (nla[NFTA_FLOWTABLE_HANDLE])
5245                 flowtable = nf_tables_flowtable_lookup_byhandle(table,
5246                                                                 nla[NFTA_FLOWTABLE_HANDLE],
5247                                                                 genmask);
5248         else
5249                 flowtable = nf_tables_flowtable_lookup(table,
5250                                                        nla[NFTA_FLOWTABLE_NAME],
5251                                                        genmask);
5252         if (IS_ERR(flowtable))
5253                 return PTR_ERR(flowtable);
5254         if (flowtable->use > 0)
5255                 return -EBUSY;
5256
5257         nft_ctx_init(&ctx, net, skb, nlh, family, table, NULL, nla);
5258
5259         return nft_delflowtable(&ctx, flowtable);
5260 }
5261
5262 static int nf_tables_fill_flowtable_info(struct sk_buff *skb, struct net *net,
5263                                          u32 portid, u32 seq, int event,
5264                                          u32 flags, int family,
5265                                          struct nft_flowtable *flowtable)
5266 {
5267         struct nlattr *nest, *nest_devs;
5268         struct nfgenmsg *nfmsg;
5269         struct nlmsghdr *nlh;
5270         int i;
5271
5272         event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, event);
5273         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
5274         if (nlh == NULL)
5275                 goto nla_put_failure;
5276
5277         nfmsg = nlmsg_data(nlh);
5278         nfmsg->nfgen_family     = family;
5279         nfmsg->version          = NFNETLINK_V0;
5280         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
5281
5282         if (nla_put_string(skb, NFTA_FLOWTABLE_TABLE, flowtable->table->name) ||
5283             nla_put_string(skb, NFTA_FLOWTABLE_NAME, flowtable->name) ||
5284             nla_put_be32(skb, NFTA_FLOWTABLE_USE, htonl(flowtable->use)) ||
5285             nla_put_be64(skb, NFTA_FLOWTABLE_HANDLE, cpu_to_be64(flowtable->handle),
5286                          NFTA_FLOWTABLE_PAD))
5287                 goto nla_put_failure;
5288
5289         nest = nla_nest_start(skb, NFTA_FLOWTABLE_HOOK);
5290         if (nla_put_be32(skb, NFTA_FLOWTABLE_HOOK_NUM, htonl(flowtable->hooknum)) ||
5291             nla_put_be32(skb, NFTA_FLOWTABLE_HOOK_PRIORITY, htonl(flowtable->priority)))
5292                 goto nla_put_failure;
5293
5294         nest_devs = nla_nest_start(skb, NFTA_FLOWTABLE_HOOK_DEVS);
5295         if (!nest_devs)
5296                 goto nla_put_failure;
5297
5298         for (i = 0; i < flowtable->ops_len; i++) {
5299                 if (flowtable->dev_name[i][0] &&
5300                     nla_put_string(skb, NFTA_DEVICE_NAME,
5301                                    flowtable->dev_name[i]))
5302                         goto nla_put_failure;
5303         }
5304         nla_nest_end(skb, nest_devs);
5305         nla_nest_end(skb, nest);
5306
5307         nlmsg_end(skb, nlh);
5308         return 0;
5309
5310 nla_put_failure:
5311         nlmsg_trim(skb, nlh);
5312         return -1;
5313 }
5314
5315 struct nft_flowtable_filter {
5316         char            *table;
5317 };
5318
5319 static int nf_tables_dump_flowtable(struct sk_buff *skb,
5320                                     struct netlink_callback *cb)
5321 {
5322         const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
5323         struct nft_flowtable_filter *filter = cb->data;
5324         unsigned int idx = 0, s_idx = cb->args[0];
5325         struct net *net = sock_net(skb->sk);
5326         int family = nfmsg->nfgen_family;
5327         struct nft_flowtable *flowtable;
5328         const struct nft_table *table;
5329
5330         rcu_read_lock();
5331         cb->seq = net->nft.base_seq;
5332
5333         list_for_each_entry_rcu(table, &net->nft.tables, list) {
5334                 if (family != NFPROTO_UNSPEC && family != table->family)
5335                         continue;
5336
5337                 list_for_each_entry_rcu(flowtable, &table->flowtables, list) {
5338                         if (!nft_is_active(net, flowtable))
5339                                 goto cont;
5340                         if (idx < s_idx)
5341                                 goto cont;
5342                         if (idx > s_idx)
5343                                 memset(&cb->args[1], 0,
5344                                        sizeof(cb->args) - sizeof(cb->args[0]));
5345                         if (filter && filter->table[0] &&
5346                             strcmp(filter->table, table->name))
5347                                 goto cont;
5348
5349                         if (nf_tables_fill_flowtable_info(skb, net, NETLINK_CB(cb->skb).portid,
5350                                                           cb->nlh->nlmsg_seq,
5351                                                           NFT_MSG_NEWFLOWTABLE,
5352                                                           NLM_F_MULTI | NLM_F_APPEND,
5353                                                           table->family, flowtable) < 0)
5354                                 goto done;
5355
5356                         nl_dump_check_consistent(cb, nlmsg_hdr(skb));
5357 cont:
5358                         idx++;
5359                 }
5360         }
5361 done:
5362         rcu_read_unlock();
5363
5364         cb->args[0] = idx;
5365         return skb->len;
5366 }
5367
5368 static int nf_tables_dump_flowtable_done(struct netlink_callback *cb)
5369 {
5370         struct nft_flowtable_filter *filter = cb->data;
5371
5372         if (!filter)
5373                 return 0;
5374
5375         kfree(filter->table);
5376         kfree(filter);
5377
5378         return 0;
5379 }
5380
5381 static struct nft_flowtable_filter *
5382 nft_flowtable_filter_alloc(const struct nlattr * const nla[])
5383 {
5384         struct nft_flowtable_filter *filter;
5385
5386         filter = kzalloc(sizeof(*filter), GFP_KERNEL);
5387         if (!filter)
5388                 return ERR_PTR(-ENOMEM);
5389
5390         if (nla[NFTA_FLOWTABLE_TABLE]) {
5391                 filter->table = nla_strdup(nla[NFTA_FLOWTABLE_TABLE],
5392                                            GFP_KERNEL);
5393                 if (!filter->table) {
5394                         kfree(filter);
5395                         return ERR_PTR(-ENOMEM);
5396                 }
5397         }
5398         return filter;
5399 }
5400
5401 static int nf_tables_getflowtable(struct net *net, struct sock *nlsk,
5402                                   struct sk_buff *skb,
5403                                   const struct nlmsghdr *nlh,
5404                                   const struct nlattr * const nla[],
5405                                   struct netlink_ext_ack *extack)
5406 {
5407         const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
5408         u8 genmask = nft_genmask_cur(net);
5409         int family = nfmsg->nfgen_family;
5410         struct nft_flowtable *flowtable;
5411         const struct nft_table *table;
5412         struct sk_buff *skb2;
5413         int err;
5414
5415         if (nlh->nlmsg_flags & NLM_F_DUMP) {
5416                 struct netlink_dump_control c = {
5417                         .dump = nf_tables_dump_flowtable,
5418                         .done = nf_tables_dump_flowtable_done,
5419                 };
5420
5421                 if (nla[NFTA_FLOWTABLE_TABLE]) {
5422                         struct nft_flowtable_filter *filter;
5423
5424                         filter = nft_flowtable_filter_alloc(nla);
5425                         if (IS_ERR(filter))
5426                                 return -ENOMEM;
5427
5428                         c.data = filter;
5429                 }
5430                 return netlink_dump_start(nlsk, skb, nlh, &c);
5431         }
5432
5433         if (!nla[NFTA_FLOWTABLE_NAME])
5434                 return -EINVAL;
5435
5436         table = nf_tables_table_lookup(net, nla[NFTA_FLOWTABLE_TABLE],
5437                                        family, genmask);
5438         if (IS_ERR(table))
5439                 return PTR_ERR(table);
5440
5441         flowtable = nf_tables_flowtable_lookup(table, nla[NFTA_FLOWTABLE_NAME],
5442                                                genmask);
5443         if (IS_ERR(flowtable))
5444                 return PTR_ERR(flowtable);
5445
5446         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
5447         if (!skb2)
5448                 return -ENOMEM;
5449
5450         err = nf_tables_fill_flowtable_info(skb2, net, NETLINK_CB(skb).portid,
5451                                             nlh->nlmsg_seq,
5452                                             NFT_MSG_NEWFLOWTABLE, 0, family,
5453                                             flowtable);
5454         if (err < 0)
5455                 goto err;
5456
5457         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
5458 err:
5459         kfree_skb(skb2);
5460         return err;
5461 }
5462
5463 static void nf_tables_flowtable_notify(struct nft_ctx *ctx,
5464                                        struct nft_flowtable *flowtable,
5465                                        int event)
5466 {
5467         struct sk_buff *skb;
5468         int err;
5469
5470         if (ctx->report &&
5471             !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
5472                 return;
5473
5474         skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
5475         if (skb == NULL)
5476                 goto err;
5477
5478         err = nf_tables_fill_flowtable_info(skb, ctx->net, ctx->portid,
5479                                             ctx->seq, event, 0,
5480                                             ctx->family, flowtable);
5481         if (err < 0) {
5482                 kfree_skb(skb);
5483                 goto err;
5484         }
5485
5486         nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
5487                        ctx->report, GFP_KERNEL);
5488         return;
5489 err:
5490         nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES, -ENOBUFS);
5491 }
5492
5493 static void nf_tables_flowtable_destroy(struct nft_flowtable *flowtable)
5494 {
5495         cancel_delayed_work_sync(&flowtable->data.gc_work);
5496         kfree(flowtable->ops);
5497         kfree(flowtable->name);
5498         flowtable->data.type->free(&flowtable->data);
5499         rhashtable_destroy(&flowtable->data.rhashtable);
5500         module_put(flowtable->data.type->owner);
5501 }
5502
5503 static int nf_tables_fill_gen_info(struct sk_buff *skb, struct net *net,
5504                                    u32 portid, u32 seq)
5505 {
5506         struct nlmsghdr *nlh;
5507         struct nfgenmsg *nfmsg;
5508         char buf[TASK_COMM_LEN];
5509         int event = nfnl_msg_type(NFNL_SUBSYS_NFTABLES, NFT_MSG_NEWGEN);
5510
5511         nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), 0);
5512         if (nlh == NULL)
5513                 goto nla_put_failure;
5514
5515         nfmsg = nlmsg_data(nlh);
5516         nfmsg->nfgen_family     = AF_UNSPEC;
5517         nfmsg->version          = NFNETLINK_V0;
5518         nfmsg->res_id           = htons(net->nft.base_seq & 0xffff);
5519
5520         if (nla_put_be32(skb, NFTA_GEN_ID, htonl(net->nft.base_seq)) ||
5521             nla_put_be32(skb, NFTA_GEN_PROC_PID, htonl(task_pid_nr(current))) ||
5522             nla_put_string(skb, NFTA_GEN_PROC_NAME, get_task_comm(buf, current)))
5523                 goto nla_put_failure;
5524
5525         nlmsg_end(skb, nlh);
5526         return 0;
5527
5528 nla_put_failure:
5529         nlmsg_trim(skb, nlh);
5530         return -EMSGSIZE;
5531 }
5532
5533 static void nft_flowtable_event(unsigned long event, struct net_device *dev,
5534                                 struct nft_flowtable *flowtable)
5535 {
5536         int i;
5537
5538         for (i = 0; i < flowtable->ops_len; i++) {
5539                 if (flowtable->ops[i].dev != dev)
5540                         continue;
5541
5542                 nf_unregister_net_hook(dev_net(dev), &flowtable->ops[i]);
5543                 flowtable->dev_name[i][0] = '\0';
5544                 flowtable->ops[i].dev = NULL;
5545                 break;
5546         }
5547 }
5548
5549 static int nf_tables_flowtable_event(struct notifier_block *this,
5550                                      unsigned long event, void *ptr)
5551 {
5552         struct net_device *dev = netdev_notifier_info_to_dev(ptr);
5553         struct nft_flowtable *flowtable;
5554         struct nft_table *table;
5555
5556         if (event != NETDEV_UNREGISTER)
5557                 return 0;
5558
5559         nfnl_lock(NFNL_SUBSYS_NFTABLES);
5560         list_for_each_entry(table, &dev_net(dev)->nft.tables, list) {
5561                 list_for_each_entry(flowtable, &table->flowtables, list) {
5562                         nft_flowtable_event(event, dev, flowtable);
5563                 }
5564         }
5565         nfnl_unlock(NFNL_SUBSYS_NFTABLES);
5566
5567         return NOTIFY_DONE;
5568 }
5569
5570 static struct notifier_block nf_tables_flowtable_notifier = {
5571         .notifier_call  = nf_tables_flowtable_event,
5572 };
5573
5574 static void nf_tables_gen_notify(struct net *net, struct sk_buff *skb,
5575                                  int event)
5576 {
5577         struct nlmsghdr *nlh = nlmsg_hdr(skb);
5578         struct sk_buff *skb2;
5579         int err;
5580
5581         if (nlmsg_report(nlh) &&
5582             !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
5583                 return;
5584
5585         skb2 = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
5586         if (skb2 == NULL)
5587                 goto err;
5588
5589         err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
5590                                       nlh->nlmsg_seq);
5591         if (err < 0) {
5592                 kfree_skb(skb2);
5593                 goto err;
5594         }
5595
5596         nfnetlink_send(skb2, net, NETLINK_CB(skb).portid, NFNLGRP_NFTABLES,
5597                        nlmsg_report(nlh), GFP_KERNEL);
5598         return;
5599 err:
5600         nfnetlink_set_err(net, NETLINK_CB(skb).portid, NFNLGRP_NFTABLES,
5601                           -ENOBUFS);
5602 }
5603
5604 static int nf_tables_getgen(struct net *net, struct sock *nlsk,
5605                             struct sk_buff *skb, const struct nlmsghdr *nlh,
5606                             const struct nlattr * const nla[],
5607                             struct netlink_ext_ack *extack)
5608 {
5609         struct sk_buff *skb2;
5610         int err;
5611
5612         skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
5613         if (skb2 == NULL)
5614                 return -ENOMEM;
5615
5616         err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
5617                                       nlh->nlmsg_seq);
5618         if (err < 0)
5619                 goto err;
5620
5621         return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
5622 err:
5623         kfree_skb(skb2);
5624         return err;
5625 }
5626
5627 static const struct nfnl_callback nf_tables_cb[NFT_MSG_MAX] = {
5628         [NFT_MSG_NEWTABLE] = {
5629                 .call_batch     = nf_tables_newtable,
5630                 .attr_count     = NFTA_TABLE_MAX,
5631                 .policy         = nft_table_policy,
5632         },
5633         [NFT_MSG_GETTABLE] = {
5634                 .call           = nf_tables_gettable,
5635                 .attr_count     = NFTA_TABLE_MAX,
5636                 .policy         = nft_table_policy,
5637         },
5638         [NFT_MSG_DELTABLE] = {
5639                 .call_batch     = nf_tables_deltable,
5640                 .attr_count     = NFTA_TABLE_MAX,
5641                 .policy         = nft_table_policy,
5642         },
5643         [NFT_MSG_NEWCHAIN] = {
5644                 .call_batch     = nf_tables_newchain,
5645                 .attr_count     = NFTA_CHAIN_MAX,
5646                 .policy         = nft_chain_policy,
5647         },
5648         [NFT_MSG_GETCHAIN] = {
5649                 .call           = nf_tables_getchain,
5650                 .attr_count     = NFTA_CHAIN_MAX,
5651                 .policy         = nft_chain_policy,
5652         },
5653         [NFT_MSG_DELCHAIN] = {
5654                 .call_batch     = nf_tables_delchain,
5655                 .attr_count     = NFTA_CHAIN_MAX,
5656                 .policy         = nft_chain_policy,
5657         },
5658         [NFT_MSG_NEWRULE] = {
5659                 .call_batch     = nf_tables_newrule,
5660                 .attr_count     = NFTA_RULE_MAX,
5661                 .policy         = nft_rule_policy,
5662         },
5663         [NFT_MSG_GETRULE] = {
5664                 .call           = nf_tables_getrule,
5665                 .attr_count     = NFTA_RULE_MAX,
5666                 .policy         = nft_rule_policy,
5667         },
5668         [NFT_MSG_DELRULE] = {
5669                 .call_batch     = nf_tables_delrule,
5670                 .attr_count     = NFTA_RULE_MAX,
5671                 .policy         = nft_rule_policy,
5672         },
5673         [NFT_MSG_NEWSET] = {
5674                 .call_batch     = nf_tables_newset,
5675                 .attr_count     = NFTA_SET_MAX,
5676                 .policy         = nft_set_policy,
5677         },
5678         [NFT_MSG_GETSET] = {
5679                 .call           = nf_tables_getset,
5680                 .attr_count     = NFTA_SET_MAX,
5681                 .policy         = nft_set_policy,
5682         },
5683         [NFT_MSG_DELSET] = {
5684                 .call_batch     = nf_tables_delset,
5685                 .attr_count     = NFTA_SET_MAX,
5686                 .policy         = nft_set_policy,
5687         },
5688         [NFT_MSG_NEWSETELEM] = {
5689                 .call_batch     = nf_tables_newsetelem,
5690                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
5691                 .policy         = nft_set_elem_list_policy,
5692         },
5693         [NFT_MSG_GETSETELEM] = {
5694                 .call           = nf_tables_getsetelem,
5695                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
5696                 .policy         = nft_set_elem_list_policy,
5697         },
5698         [NFT_MSG_DELSETELEM] = {
5699                 .call_batch     = nf_tables_delsetelem,
5700                 .attr_count     = NFTA_SET_ELEM_LIST_MAX,
5701                 .policy         = nft_set_elem_list_policy,
5702         },
5703         [NFT_MSG_GETGEN] = {
5704                 .call           = nf_tables_getgen,
5705         },
5706         [NFT_MSG_NEWOBJ] = {
5707                 .call_batch     = nf_tables_newobj,
5708                 .attr_count     = NFTA_OBJ_MAX,
5709                 .policy         = nft_obj_policy,
5710         },
5711         [NFT_MSG_GETOBJ] = {
5712                 .call           = nf_tables_getobj,
5713                 .attr_count     = NFTA_OBJ_MAX,
5714                 .policy         = nft_obj_policy,
5715         },
5716         [NFT_MSG_DELOBJ] = {
5717                 .call_batch     = nf_tables_delobj,
5718                 .attr_count     = NFTA_OBJ_MAX,
5719                 .policy         = nft_obj_policy,
5720         },
5721         [NFT_MSG_GETOBJ_RESET] = {
5722                 .call           = nf_tables_getobj,
5723                 .attr_count     = NFTA_OBJ_MAX,
5724                 .policy         = nft_obj_policy,
5725         },
5726         [NFT_MSG_NEWFLOWTABLE] = {
5727                 .call_batch     = nf_tables_newflowtable,
5728                 .attr_count     = NFTA_FLOWTABLE_MAX,
5729                 .policy         = nft_flowtable_policy,
5730         },
5731         [NFT_MSG_GETFLOWTABLE] = {
5732                 .call           = nf_tables_getflowtable,
5733                 .attr_count     = NFTA_FLOWTABLE_MAX,
5734                 .policy         = nft_flowtable_policy,
5735         },
5736         [NFT_MSG_DELFLOWTABLE] = {
5737                 .call_batch     = nf_tables_delflowtable,
5738                 .attr_count     = NFTA_FLOWTABLE_MAX,
5739                 .policy         = nft_flowtable_policy,
5740         },
5741 };
5742
5743 static void nft_chain_commit_update(struct nft_trans *trans)
5744 {
5745         struct nft_base_chain *basechain;
5746
5747         if (nft_trans_chain_name(trans))
5748                 strcpy(trans->ctx.chain->name, nft_trans_chain_name(trans));
5749
5750         if (!nft_is_base_chain(trans->ctx.chain))
5751                 return;
5752
5753         basechain = nft_base_chain(trans->ctx.chain);
5754         nft_chain_stats_replace(basechain, nft_trans_chain_stats(trans));
5755
5756         switch (nft_trans_chain_policy(trans)) {
5757         case NF_DROP:
5758         case NF_ACCEPT:
5759                 basechain->policy = nft_trans_chain_policy(trans);
5760                 break;
5761         }
5762 }
5763
5764 static void nf_tables_commit_release(struct nft_trans *trans)
5765 {
5766         switch (trans->msg_type) {
5767         case NFT_MSG_DELTABLE:
5768                 nf_tables_table_destroy(&trans->ctx);
5769                 break;
5770         case NFT_MSG_DELCHAIN:
5771                 nf_tables_chain_destroy(trans->ctx.chain);
5772                 break;
5773         case NFT_MSG_DELRULE:
5774                 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
5775                 break;
5776         case NFT_MSG_DELSET:
5777                 nft_set_destroy(nft_trans_set(trans));
5778                 break;
5779         case NFT_MSG_DELSETELEM:
5780                 nf_tables_set_elem_destroy(nft_trans_elem_set(trans),
5781                                            nft_trans_elem(trans).priv);
5782                 break;
5783         case NFT_MSG_DELOBJ:
5784                 nft_obj_destroy(nft_trans_obj(trans));
5785                 break;
5786         case NFT_MSG_DELFLOWTABLE:
5787                 nf_tables_flowtable_destroy(nft_trans_flowtable(trans));
5788                 break;
5789         }
5790         kfree(trans);
5791 }
5792
5793 static int nf_tables_commit(struct net *net, struct sk_buff *skb)
5794 {
5795         struct nft_trans *trans, *next;
5796         struct nft_trans_elem *te;
5797
5798         /* Bump generation counter, invalidate any dump in progress */
5799         while (++net->nft.base_seq == 0);
5800
5801         /* A new generation has just started */
5802         net->nft.gencursor = nft_gencursor_next(net);
5803
5804         /* Make sure all packets have left the previous generation before
5805          * purging old rules.
5806          */
5807         synchronize_rcu();
5808
5809         list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
5810                 switch (trans->msg_type) {
5811                 case NFT_MSG_NEWTABLE:
5812                         if (nft_trans_table_update(trans)) {
5813                                 if (!nft_trans_table_enable(trans)) {
5814                                         nf_tables_table_disable(net,
5815                                                                 trans->ctx.table);
5816                                         trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
5817                                 }
5818                         } else {
5819                                 nft_clear(net, trans->ctx.table);
5820                         }
5821                         nf_tables_table_notify(&trans->ctx, NFT_MSG_NEWTABLE);
5822                         nft_trans_destroy(trans);
5823                         break;
5824                 case NFT_MSG_DELTABLE:
5825                         list_del_rcu(&trans->ctx.table->list);
5826                         nf_tables_table_notify(&trans->ctx, NFT_MSG_DELTABLE);
5827                         break;
5828                 case NFT_MSG_NEWCHAIN:
5829                         if (nft_trans_chain_update(trans))
5830                                 nft_chain_commit_update(trans);
5831                         else
5832                                 nft_clear(net, trans->ctx.chain);
5833
5834                         nf_tables_chain_notify(&trans->ctx, NFT_MSG_NEWCHAIN);
5835                         nft_trans_destroy(trans);
5836                         break;
5837                 case NFT_MSG_DELCHAIN:
5838                         list_del_rcu(&trans->ctx.chain->list);
5839                         nf_tables_chain_notify(&trans->ctx, NFT_MSG_DELCHAIN);
5840                         nf_tables_unregister_hook(trans->ctx.net,
5841                                                   trans->ctx.table,
5842                                                   trans->ctx.chain);
5843                         break;
5844                 case NFT_MSG_NEWRULE:
5845                         nft_clear(trans->ctx.net, nft_trans_rule(trans));
5846                         nf_tables_rule_notify(&trans->ctx,
5847                                               nft_trans_rule(trans),
5848                                               NFT_MSG_NEWRULE);
5849                         nft_trans_destroy(trans);
5850                         break;
5851                 case NFT_MSG_DELRULE:
5852                         list_del_rcu(&nft_trans_rule(trans)->list);
5853                         nf_tables_rule_notify(&trans->ctx,
5854                                               nft_trans_rule(trans),
5855                                               NFT_MSG_DELRULE);
5856                         break;
5857                 case NFT_MSG_NEWSET:
5858                         nft_clear(net, nft_trans_set(trans));
5859                         /* This avoids hitting -EBUSY when deleting the table
5860                          * from the transaction.
5861                          */
5862                         if (nft_set_is_anonymous(nft_trans_set(trans)) &&
5863                             !list_empty(&nft_trans_set(trans)->bindings))
5864                                 trans->ctx.table->use--;
5865
5866                         nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
5867                                              NFT_MSG_NEWSET, GFP_KERNEL);
5868                         nft_trans_destroy(trans);
5869                         break;
5870                 case NFT_MSG_DELSET:
5871                         list_del_rcu(&nft_trans_set(trans)->list);
5872                         nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
5873                                              NFT_MSG_DELSET, GFP_KERNEL);
5874                         break;
5875                 case NFT_MSG_NEWSETELEM:
5876                         te = (struct nft_trans_elem *)trans->data;
5877
5878                         te->set->ops->activate(net, te->set, &te->elem);
5879                         nf_tables_setelem_notify(&trans->ctx, te->set,
5880                                                  &te->elem,
5881                                                  NFT_MSG_NEWSETELEM, 0);
5882                         nft_trans_destroy(trans);
5883                         break;
5884                 case NFT_MSG_DELSETELEM:
5885                         te = (struct nft_trans_elem *)trans->data;
5886
5887                         nf_tables_setelem_notify(&trans->ctx, te->set,
5888                                                  &te->elem,
5889                                                  NFT_MSG_DELSETELEM, 0);
5890                         te->set->ops->remove(net, te->set, &te->elem);
5891                         atomic_dec(&te->set->nelems);
5892                         te->set->ndeact--;
5893                         break;
5894                 case NFT_MSG_NEWOBJ:
5895                         nft_clear(net, nft_trans_obj(trans));
5896                         nf_tables_obj_notify(&trans->ctx, nft_trans_obj(trans),
5897                                              NFT_MSG_NEWOBJ);
5898                         nft_trans_destroy(trans);
5899                         break;
5900                 case NFT_MSG_DELOBJ:
5901                         list_del_rcu(&nft_trans_obj(trans)->list);
5902                         nf_tables_obj_notify(&trans->ctx, nft_trans_obj(trans),
5903                                              NFT_MSG_DELOBJ);
5904                         break;
5905                 case NFT_MSG_NEWFLOWTABLE:
5906                         nft_clear(net, nft_trans_flowtable(trans));
5907                         nf_tables_flowtable_notify(&trans->ctx,
5908                                                    nft_trans_flowtable(trans),
5909                                                    NFT_MSG_NEWFLOWTABLE);
5910                         nft_trans_destroy(trans);
5911                         break;
5912                 case NFT_MSG_DELFLOWTABLE:
5913                         list_del_rcu(&nft_trans_flowtable(trans)->list);
5914                         nf_tables_flowtable_notify(&trans->ctx,
5915                                                    nft_trans_flowtable(trans),
5916                                                    NFT_MSG_DELFLOWTABLE);
5917                         nft_unregister_flowtable_net_hooks(net,
5918                                         nft_trans_flowtable(trans));
5919                         break;
5920                 }
5921         }
5922
5923         synchronize_rcu();
5924
5925         list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
5926                 list_del(&trans->list);
5927                 nf_tables_commit_release(trans);
5928         }
5929
5930         nf_tables_gen_notify(net, skb, NFT_MSG_NEWGEN);
5931
5932         return 0;
5933 }
5934
5935 static void nf_tables_abort_release(struct nft_trans *trans)
5936 {
5937         switch (trans->msg_type) {
5938         case NFT_MSG_NEWTABLE:
5939                 nf_tables_table_destroy(&trans->ctx);
5940                 break;
5941         case NFT_MSG_NEWCHAIN:
5942                 nf_tables_chain_destroy(trans->ctx.chain);
5943                 break;
5944         case NFT_MSG_NEWRULE:
5945                 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
5946                 break;
5947         case NFT_MSG_NEWSET:
5948                 nft_set_destroy(nft_trans_set(trans));
5949                 break;
5950         case NFT_MSG_NEWSETELEM:
5951                 nft_set_elem_destroy(nft_trans_elem_set(trans),
5952                                      nft_trans_elem(trans).priv, true);
5953                 break;
5954         case NFT_MSG_NEWOBJ:
5955                 nft_obj_destroy(nft_trans_obj(trans));
5956                 break;
5957         case NFT_MSG_NEWFLOWTABLE:
5958                 nf_tables_flowtable_destroy(nft_trans_flowtable(trans));
5959                 break;
5960         }
5961         kfree(trans);
5962 }
5963
5964 static int nf_tables_abort(struct net *net, struct sk_buff *skb)
5965 {
5966         struct nft_trans *trans, *next;
5967         struct nft_trans_elem *te;
5968
5969         list_for_each_entry_safe_reverse(trans, next, &net->nft.commit_list,
5970                                          list) {
5971                 switch (trans->msg_type) {
5972                 case NFT_MSG_NEWTABLE:
5973                         if (nft_trans_table_update(trans)) {
5974                                 if (nft_trans_table_enable(trans)) {
5975                                         nf_tables_table_disable(net,
5976                                                                 trans->ctx.table);
5977                                         trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
5978                                 }
5979                                 nft_trans_destroy(trans);
5980                         } else {
5981                                 list_del_rcu(&trans->ctx.table->list);
5982                         }
5983                         break;
5984                 case NFT_MSG_DELTABLE:
5985                         nft_clear(trans->ctx.net, trans->ctx.table);
5986                         nft_trans_destroy(trans);
5987                         break;
5988                 case NFT_MSG_NEWCHAIN:
5989                         if (nft_trans_chain_update(trans)) {
5990                                 free_percpu(nft_trans_chain_stats(trans));
5991
5992                                 nft_trans_destroy(trans);
5993                         } else {
5994                                 trans->ctx.table->use--;
5995                                 list_del_rcu(&trans->ctx.chain->list);
5996                                 nf_tables_unregister_hook(trans->ctx.net,
5997                                                           trans->ctx.table,
5998                                                           trans->ctx.chain);
5999                         }
6000                         break;
6001                 case NFT_MSG_DELCHAIN:
6002                         trans->ctx.table->use++;
6003                         nft_clear(trans->ctx.net, trans->ctx.chain);
6004                         nft_trans_destroy(trans);
6005                         break;
6006                 case NFT_MSG_NEWRULE:
6007                         trans->ctx.chain->use--;
6008                         list_del_rcu(&nft_trans_rule(trans)->list);
6009                         break;
6010                 case NFT_MSG_DELRULE:
6011                         trans->ctx.chain->use++;
6012                         nft_clear(trans->ctx.net, nft_trans_rule(trans));
6013                         nft_trans_destroy(trans);
6014                         break;
6015                 case NFT_MSG_NEWSET:
6016                         trans->ctx.table->use--;
6017                         list_del_rcu(&nft_trans_set(trans)->list);
6018                         break;
6019                 case NFT_MSG_DELSET:
6020                         trans->ctx.table->use++;
6021                         nft_clear(trans->ctx.net, nft_trans_set(trans));
6022                         nft_trans_destroy(trans);
6023                         break;
6024                 case NFT_MSG_NEWSETELEM:
6025                         te = (struct nft_trans_elem *)trans->data;
6026
6027                         te->set->ops->remove(net, te->set, &te->elem);
6028                         atomic_dec(&te->set->nelems);
6029                         break;
6030                 case NFT_MSG_DELSETELEM:
6031                         te = (struct nft_trans_elem *)trans->data;
6032
6033                         nft_set_elem_activate(net, te->set, &te->elem);
6034                         te->set->ops->activate(net, te->set, &te->elem);
6035                         te->set->ndeact--;
6036
6037                         nft_trans_destroy(trans);
6038                         break;
6039                 case NFT_MSG_NEWOBJ:
6040                         trans->ctx.table->use--;
6041                         list_del_rcu(&nft_trans_obj(trans)->list);
6042                         break;
6043                 case NFT_MSG_DELOBJ:
6044                         trans->ctx.table->use++;
6045                         nft_clear(trans->ctx.net, nft_trans_obj(trans));
6046                         nft_trans_destroy(trans);
6047                         break;
6048                 case NFT_MSG_NEWFLOWTABLE:
6049                         trans->ctx.table->use--;
6050                         list_del_rcu(&nft_trans_flowtable(trans)->list);
6051                         nft_unregister_flowtable_net_hooks(net,
6052                                         nft_trans_flowtable(trans));
6053                         break;
6054                 case NFT_MSG_DELFLOWTABLE:
6055                         trans->ctx.table->use++;
6056                         nft_clear(trans->ctx.net, nft_trans_flowtable(trans));
6057                         nft_trans_destroy(trans);
6058                         break;
6059                 }
6060         }
6061
6062         synchronize_rcu();
6063
6064         list_for_each_entry_safe_reverse(trans, next,
6065                                          &net->nft.commit_list, list) {
6066                 list_del(&trans->list);
6067                 nf_tables_abort_release(trans);
6068         }
6069
6070         return 0;
6071 }
6072
6073 static bool nf_tables_valid_genid(struct net *net, u32 genid)
6074 {
6075         return net->nft.base_seq == genid;
6076 }
6077
6078 static const struct nfnetlink_subsystem nf_tables_subsys = {
6079         .name           = "nf_tables",
6080         .subsys_id      = NFNL_SUBSYS_NFTABLES,
6081         .cb_count       = NFT_MSG_MAX,
6082         .cb             = nf_tables_cb,
6083         .commit         = nf_tables_commit,
6084         .abort          = nf_tables_abort,
6085         .valid_genid    = nf_tables_valid_genid,
6086 };
6087
6088 int nft_chain_validate_dependency(const struct nft_chain *chain,
6089                                   enum nft_chain_type type)
6090 {
6091         const struct nft_base_chain *basechain;
6092
6093         if (nft_is_base_chain(chain)) {
6094                 basechain = nft_base_chain(chain);
6095                 if (basechain->type->type != type)
6096                         return -EOPNOTSUPP;
6097         }
6098         return 0;
6099 }
6100 EXPORT_SYMBOL_GPL(nft_chain_validate_dependency);
6101
6102 int nft_chain_validate_hooks(const struct nft_chain *chain,
6103                              unsigned int hook_flags)
6104 {
6105         struct nft_base_chain *basechain;
6106
6107         if (nft_is_base_chain(chain)) {
6108                 basechain = nft_base_chain(chain);
6109
6110                 if ((1 << basechain->ops.hooknum) & hook_flags)
6111                         return 0;
6112
6113                 return -EOPNOTSUPP;
6114         }
6115
6116         return 0;
6117 }
6118 EXPORT_SYMBOL_GPL(nft_chain_validate_hooks);
6119
6120 /*
6121  * Loop detection - walk through the ruleset beginning at the destination chain
6122  * of a new jump until either the source chain is reached (loop) or all
6123  * reachable chains have been traversed.
6124  *
6125  * The loop check is performed whenever a new jump verdict is added to an
6126  * expression or verdict map or a verdict map is bound to a new chain.
6127  */
6128
6129 static int nf_tables_check_loops(const struct nft_ctx *ctx,
6130                                  const struct nft_chain *chain);
6131
6132 static int nf_tables_loop_check_setelem(const struct nft_ctx *ctx,
6133                                         struct nft_set *set,
6134                                         const struct nft_set_iter *iter,
6135                                         struct nft_set_elem *elem)
6136 {
6137         const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
6138         const struct nft_data *data;
6139
6140         if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
6141             *nft_set_ext_flags(ext) & NFT_SET_ELEM_INTERVAL_END)
6142                 return 0;
6143
6144         data = nft_set_ext_data(ext);
6145         switch (data->verdict.code) {
6146         case NFT_JUMP:
6147         case NFT_GOTO:
6148                 return nf_tables_check_loops(ctx, data->verdict.chain);
6149         default:
6150                 return 0;
6151         }
6152 }
6153
6154 static int nf_tables_check_loops(const struct nft_ctx *ctx,
6155                                  const struct nft_chain *chain)
6156 {
6157         const struct nft_rule *rule;
6158         const struct nft_expr *expr, *last;
6159         struct nft_set *set;
6160         struct nft_set_binding *binding;
6161         struct nft_set_iter iter;
6162
6163         if (ctx->chain == chain)
6164                 return -ELOOP;
6165
6166         list_for_each_entry(rule, &chain->rules, list) {
6167                 nft_rule_for_each_expr(expr, last, rule) {
6168                         const struct nft_data *data = NULL;
6169                         int err;
6170
6171                         if (!expr->ops->validate)
6172                                 continue;
6173
6174                         err = expr->ops->validate(ctx, expr, &data);
6175                         if (err < 0)
6176                                 return err;
6177
6178                         if (data == NULL)
6179                                 continue;
6180
6181                         switch (data->verdict.code) {
6182                         case NFT_JUMP:
6183                         case NFT_GOTO:
6184                                 err = nf_tables_check_loops(ctx,
6185                                                         data->verdict.chain);
6186                                 if (err < 0)
6187                                         return err;
6188                         default:
6189                                 break;
6190                         }
6191                 }
6192         }
6193
6194         list_for_each_entry(set, &ctx->table->sets, list) {
6195                 if (!nft_is_active_next(ctx->net, set))
6196                         continue;
6197                 if (!(set->flags & NFT_SET_MAP) ||
6198                     set->dtype != NFT_DATA_VERDICT)
6199                         continue;
6200
6201                 list_for_each_entry(binding, &set->bindings, list) {
6202                         if (!(binding->flags & NFT_SET_MAP) ||
6203                             binding->chain != chain)
6204                                 continue;
6205
6206                         iter.genmask    = nft_genmask_next(ctx->net);
6207                         iter.skip       = 0;
6208                         iter.count      = 0;
6209                         iter.err        = 0;
6210                         iter.fn         = nf_tables_loop_check_setelem;
6211
6212                         set->ops->walk(ctx, set, &iter);
6213                         if (iter.err < 0)
6214                                 return iter.err;
6215                 }
6216         }
6217
6218         return 0;
6219 }
6220
6221 /**
6222  *      nft_parse_u32_check - fetch u32 attribute and check for maximum value
6223  *
6224  *      @attr: netlink attribute to fetch value from
6225  *      @max: maximum value to be stored in dest
6226  *      @dest: pointer to the variable
6227  *
6228  *      Parse, check and store a given u32 netlink attribute into variable.
6229  *      This function returns -ERANGE if the value goes over maximum value.
6230  *      Otherwise a 0 is returned and the attribute value is stored in the
6231  *      destination variable.
6232  */
6233 int nft_parse_u32_check(const struct nlattr *attr, int max, u32 *dest)
6234 {
6235         u32 val;
6236
6237         val = ntohl(nla_get_be32(attr));
6238         if (val > max)
6239                 return -ERANGE;
6240
6241         *dest = val;
6242         return 0;
6243 }
6244 EXPORT_SYMBOL_GPL(nft_parse_u32_check);
6245
6246 /**
6247  *      nft_parse_register - parse a register value from a netlink attribute
6248  *
6249  *      @attr: netlink attribute
6250  *
6251  *      Parse and translate a register value from a netlink attribute.
6252  *      Registers used to be 128 bit wide, these register numbers will be
6253  *      mapped to the corresponding 32 bit register numbers.
6254  */
6255 unsigned int nft_parse_register(const struct nlattr *attr)
6256 {
6257         unsigned int reg;
6258
6259         reg = ntohl(nla_get_be32(attr));
6260         switch (reg) {
6261         case NFT_REG_VERDICT...NFT_REG_4:
6262                 return reg * NFT_REG_SIZE / NFT_REG32_SIZE;
6263         default:
6264                 return reg + NFT_REG_SIZE / NFT_REG32_SIZE - NFT_REG32_00;
6265         }
6266 }
6267 EXPORT_SYMBOL_GPL(nft_parse_register);
6268
6269 /**
6270  *      nft_dump_register - dump a register value to a netlink attribute
6271  *
6272  *      @skb: socket buffer
6273  *      @attr: attribute number
6274  *      @reg: register number
6275  *
6276  *      Construct a netlink attribute containing the register number. For
6277  *      compatibility reasons, register numbers being a multiple of 4 are
6278  *      translated to the corresponding 128 bit register numbers.
6279  */
6280 int nft_dump_register(struct sk_buff *skb, unsigned int attr, unsigned int reg)
6281 {
6282         if (reg % (NFT_REG_SIZE / NFT_REG32_SIZE) == 0)
6283                 reg = reg / (NFT_REG_SIZE / NFT_REG32_SIZE);
6284         else
6285                 reg = reg - NFT_REG_SIZE / NFT_REG32_SIZE + NFT_REG32_00;
6286
6287         return nla_put_be32(skb, attr, htonl(reg));
6288 }
6289 EXPORT_SYMBOL_GPL(nft_dump_register);
6290
6291 /**
6292  *      nft_validate_register_load - validate a load from a register
6293  *
6294  *      @reg: the register number
6295  *      @len: the length of the data
6296  *
6297  *      Validate that the input register is one of the general purpose
6298  *      registers and that the length of the load is within the bounds.
6299  */
6300 int nft_validate_register_load(enum nft_registers reg, unsigned int len)
6301 {
6302         if (reg < NFT_REG_1 * NFT_REG_SIZE / NFT_REG32_SIZE)
6303                 return -EINVAL;
6304         if (len == 0)
6305                 return -EINVAL;
6306         if (reg * NFT_REG32_SIZE + len > FIELD_SIZEOF(struct nft_regs, data))
6307                 return -ERANGE;
6308
6309         return 0;
6310 }
6311 EXPORT_SYMBOL_GPL(nft_validate_register_load);
6312
6313 /**
6314  *      nft_validate_register_store - validate an expressions' register store
6315  *
6316  *      @ctx: context of the expression performing the load
6317  *      @reg: the destination register number
6318  *      @data: the data to load
6319  *      @type: the data type
6320  *      @len: the length of the data
6321  *
6322  *      Validate that a data load uses the appropriate data type for
6323  *      the destination register and the length is within the bounds.
6324  *      A value of NULL for the data means that its runtime gathered
6325  *      data.
6326  */
6327 int nft_validate_register_store(const struct nft_ctx *ctx,
6328                                 enum nft_registers reg,
6329                                 const struct nft_data *data,
6330                                 enum nft_data_types type, unsigned int len)
6331 {
6332         int err;
6333
6334         switch (reg) {
6335         case NFT_REG_VERDICT:
6336                 if (type != NFT_DATA_VERDICT)
6337                         return -EINVAL;
6338
6339                 if (data != NULL &&
6340                     (data->verdict.code == NFT_GOTO ||
6341                      data->verdict.code == NFT_JUMP)) {
6342                         err = nf_tables_check_loops(ctx, data->verdict.chain);
6343                         if (err < 0)
6344                                 return err;
6345
6346                         if (ctx->chain->level + 1 >
6347                             data->verdict.chain->level) {
6348                                 if (ctx->chain->level + 1 == NFT_JUMP_STACK_SIZE)
6349                                         return -EMLINK;
6350                                 data->verdict.chain->level = ctx->chain->level + 1;
6351                         }
6352                 }
6353
6354                 return 0;
6355         default:
6356                 if (reg < NFT_REG_1 * NFT_REG_SIZE / NFT_REG32_SIZE)
6357                         return -EINVAL;
6358                 if (len == 0)
6359                         return -EINVAL;
6360                 if (reg * NFT_REG32_SIZE + len >
6361                     FIELD_SIZEOF(struct nft_regs, data))
6362                         return -ERANGE;
6363
6364                 if (data != NULL && type != NFT_DATA_VALUE)
6365                         return -EINVAL;
6366                 return 0;
6367         }
6368 }
6369 EXPORT_SYMBOL_GPL(nft_validate_register_store);
6370
6371 static const struct nla_policy nft_verdict_policy[NFTA_VERDICT_MAX + 1] = {
6372         [NFTA_VERDICT_CODE]     = { .type = NLA_U32 },
6373         [NFTA_VERDICT_CHAIN]    = { .type = NLA_STRING,
6374                                     .len = NFT_CHAIN_MAXNAMELEN - 1 },
6375 };
6376
6377 static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
6378                             struct nft_data_desc *desc, const struct nlattr *nla)
6379 {
6380         u8 genmask = nft_genmask_next(ctx->net);
6381         struct nlattr *tb[NFTA_VERDICT_MAX + 1];
6382         struct nft_chain *chain;
6383         int err;
6384
6385         err = nla_parse_nested(tb, NFTA_VERDICT_MAX, nla, nft_verdict_policy,
6386                                NULL);
6387         if (err < 0)
6388                 return err;
6389
6390         if (!tb[NFTA_VERDICT_CODE])
6391                 return -EINVAL;
6392         data->verdict.code = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE]));
6393
6394         switch (data->verdict.code) {
6395         default:
6396                 switch (data->verdict.code & NF_VERDICT_MASK) {
6397                 case NF_ACCEPT:
6398                 case NF_DROP:
6399                 case NF_QUEUE:
6400                         break;
6401                 default:
6402                         return -EINVAL;
6403                 }
6404                 /* fall through */
6405         case NFT_CONTINUE:
6406         case NFT_BREAK:
6407         case NFT_RETURN:
6408                 break;
6409         case NFT_JUMP:
6410         case NFT_GOTO:
6411                 if (!tb[NFTA_VERDICT_CHAIN])
6412                         return -EINVAL;
6413                 chain = nf_tables_chain_lookup(ctx->table,
6414                                                tb[NFTA_VERDICT_CHAIN], genmask);
6415                 if (IS_ERR(chain))
6416                         return PTR_ERR(chain);
6417                 if (nft_is_base_chain(chain))
6418                         return -EOPNOTSUPP;
6419
6420                 chain->use++;
6421                 data->verdict.chain = chain;
6422                 break;
6423         }
6424
6425         desc->len = sizeof(data->verdict);
6426         desc->type = NFT_DATA_VERDICT;
6427         return 0;
6428 }
6429
6430 static void nft_verdict_uninit(const struct nft_data *data)
6431 {
6432         switch (data->verdict.code) {
6433         case NFT_JUMP:
6434         case NFT_GOTO:
6435                 data->verdict.chain->use--;
6436                 break;
6437         }
6438 }
6439
6440 int nft_verdict_dump(struct sk_buff *skb, int type, const struct nft_verdict *v)
6441 {
6442         struct nlattr *nest;
6443
6444         nest = nla_nest_start(skb, type);
6445         if (!nest)
6446                 goto nla_put_failure;
6447
6448         if (nla_put_be32(skb, NFTA_VERDICT_CODE, htonl(v->code)))
6449                 goto nla_put_failure;
6450
6451         switch (v->code) {
6452         case NFT_JUMP:
6453         case NFT_GOTO:
6454                 if (nla_put_string(skb, NFTA_VERDICT_CHAIN,
6455                                    v->chain->name))
6456                         goto nla_put_failure;
6457         }
6458         nla_nest_end(skb, nest);
6459         return 0;
6460
6461 nla_put_failure:
6462         return -1;
6463 }
6464
6465 static int nft_value_init(const struct nft_ctx *ctx,
6466                           struct nft_data *data, unsigned int size,
6467                           struct nft_data_desc *desc, const struct nlattr *nla)
6468 {
6469         unsigned int len;
6470
6471         len = nla_len(nla);
6472         if (len == 0)
6473                 return -EINVAL;
6474         if (len > size)
6475                 return -EOVERFLOW;
6476
6477         nla_memcpy(data->data, nla, len);
6478         desc->type = NFT_DATA_VALUE;
6479         desc->len  = len;
6480         return 0;
6481 }
6482
6483 static int nft_value_dump(struct sk_buff *skb, const struct nft_data *data,
6484                           unsigned int len)
6485 {
6486         return nla_put(skb, NFTA_DATA_VALUE, len, data->data);
6487 }
6488
6489 static const struct nla_policy nft_data_policy[NFTA_DATA_MAX + 1] = {
6490         [NFTA_DATA_VALUE]       = { .type = NLA_BINARY },
6491         [NFTA_DATA_VERDICT]     = { .type = NLA_NESTED },
6492 };
6493
6494 /**
6495  *      nft_data_init - parse nf_tables data netlink attributes
6496  *
6497  *      @ctx: context of the expression using the data
6498  *      @data: destination struct nft_data
6499  *      @size: maximum data length
6500  *      @desc: data description
6501  *      @nla: netlink attribute containing data
6502  *
6503  *      Parse the netlink data attributes and initialize a struct nft_data.
6504  *      The type and length of data are returned in the data description.
6505  *
6506  *      The caller can indicate that it only wants to accept data of type
6507  *      NFT_DATA_VALUE by passing NULL for the ctx argument.
6508  */
6509 int nft_data_init(const struct nft_ctx *ctx,
6510                   struct nft_data *data, unsigned int size,
6511                   struct nft_data_desc *desc, const struct nlattr *nla)
6512 {
6513         struct nlattr *tb[NFTA_DATA_MAX + 1];
6514         int err;
6515
6516         err = nla_parse_nested(tb, NFTA_DATA_MAX, nla, nft_data_policy, NULL);
6517         if (err < 0)
6518                 return err;
6519
6520         if (tb[NFTA_DATA_VALUE])
6521                 return nft_value_init(ctx, data, size, desc,
6522                                       tb[NFTA_DATA_VALUE]);
6523         if (tb[NFTA_DATA_VERDICT] && ctx != NULL)
6524                 return nft_verdict_init(ctx, data, desc, tb[NFTA_DATA_VERDICT]);
6525         return -EINVAL;
6526 }
6527 EXPORT_SYMBOL_GPL(nft_data_init);
6528
6529 /**
6530  *      nft_data_release - release a nft_data item
6531  *
6532  *      @data: struct nft_data to release
6533  *      @type: type of data
6534  *
6535  *      Release a nft_data item. NFT_DATA_VALUE types can be silently discarded,
6536  *      all others need to be released by calling this function.
6537  */
6538 void nft_data_release(const struct nft_data *data, enum nft_data_types type)
6539 {
6540         if (type < NFT_DATA_VERDICT)
6541                 return;
6542         switch (type) {
6543         case NFT_DATA_VERDICT:
6544                 return nft_verdict_uninit(data);
6545         default:
6546                 WARN_ON(1);
6547         }
6548 }
6549 EXPORT_SYMBOL_GPL(nft_data_release);
6550
6551 int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
6552                   enum nft_data_types type, unsigned int len)
6553 {
6554         struct nlattr *nest;
6555         int err;
6556
6557         nest = nla_nest_start(skb, attr);
6558         if (nest == NULL)
6559                 return -1;
6560
6561         switch (type) {
6562         case NFT_DATA_VALUE:
6563                 err = nft_value_dump(skb, data, len);
6564                 break;
6565         case NFT_DATA_VERDICT:
6566                 err = nft_verdict_dump(skb, NFTA_DATA_VERDICT, &data->verdict);
6567                 break;
6568         default:
6569                 err = -EINVAL;
6570                 WARN_ON(1);
6571         }
6572
6573         nla_nest_end(skb, nest);
6574         return err;
6575 }
6576 EXPORT_SYMBOL_GPL(nft_data_dump);
6577
6578 int __nft_release_basechain(struct nft_ctx *ctx)
6579 {
6580         struct nft_rule *rule, *nr;
6581
6582         BUG_ON(!nft_is_base_chain(ctx->chain));
6583
6584         nf_tables_unregister_hook(ctx->net, ctx->chain->table, ctx->chain);
6585         list_for_each_entry_safe(rule, nr, &ctx->chain->rules, list) {
6586                 list_del(&rule->list);
6587                 ctx->chain->use--;
6588                 nf_tables_rule_destroy(ctx, rule);
6589         }
6590         list_del(&ctx->chain->list);
6591         ctx->table->use--;
6592         nf_tables_chain_destroy(ctx->chain);
6593
6594         return 0;
6595 }
6596 EXPORT_SYMBOL_GPL(__nft_release_basechain);
6597
6598 static void __nft_release_tables(struct net *net)
6599 {
6600         struct nft_flowtable *flowtable, *nf;
6601         struct nft_table *table, *nt;
6602         struct nft_chain *chain, *nc;
6603         struct nft_object *obj, *ne;
6604         struct nft_rule *rule, *nr;
6605         struct nft_set *set, *ns;
6606         struct nft_ctx ctx = {
6607                 .net    = net,
6608         };
6609
6610         list_for_each_entry_safe(table, nt, &net->nft.tables, list) {
6611                 ctx.family = table->family;
6612
6613                 list_for_each_entry(chain, &table->chains, list)
6614                         nf_tables_unregister_hook(net, table, chain);
6615                 list_for_each_entry(flowtable, &table->flowtables, list)
6616                         nf_unregister_net_hooks(net, flowtable->ops,
6617                                                 flowtable->ops_len);
6618                 /* No packets are walking on these chains anymore. */
6619                 ctx.table = table;
6620                 list_for_each_entry(chain, &table->chains, list) {
6621                         ctx.chain = chain;
6622                         list_for_each_entry_safe(rule, nr, &chain->rules, list) {
6623                                 list_del(&rule->list);
6624                                 chain->use--;
6625                                 nf_tables_rule_destroy(&ctx, rule);
6626                         }
6627                 }
6628                 list_for_each_entry_safe(flowtable, nf, &table->flowtables, list) {
6629                         list_del(&flowtable->list);
6630                         table->use--;
6631                         nf_tables_flowtable_destroy(flowtable);
6632                 }
6633                 list_for_each_entry_safe(set, ns, &table->sets, list) {
6634                         list_del(&set->list);
6635                         table->use--;
6636                         nft_set_destroy(set);
6637                 }
6638                 list_for_each_entry_safe(obj, ne, &table->objects, list) {
6639                         list_del(&obj->list);
6640                         table->use--;
6641                         nft_obj_destroy(obj);
6642                 }
6643                 list_for_each_entry_safe(chain, nc, &table->chains, list) {
6644                         list_del(&chain->list);
6645                         table->use--;
6646                         nf_tables_chain_destroy(chain);
6647                 }
6648                 list_del(&table->list);
6649                 nf_tables_table_destroy(&ctx);
6650         }
6651 }
6652
6653 static int __net_init nf_tables_init_net(struct net *net)
6654 {
6655         INIT_LIST_HEAD(&net->nft.tables);
6656         INIT_LIST_HEAD(&net->nft.commit_list);
6657         net->nft.base_seq = 1;
6658         return 0;
6659 }
6660
6661 static void __net_exit nf_tables_exit_net(struct net *net)
6662 {
6663         __nft_release_tables(net);
6664         WARN_ON_ONCE(!list_empty(&net->nft.tables));
6665         WARN_ON_ONCE(!list_empty(&net->nft.commit_list));
6666 }
6667
6668 static struct pernet_operations nf_tables_net_ops = {
6669         .init   = nf_tables_init_net,
6670         .exit   = nf_tables_exit_net,
6671 };
6672
6673 static int __init nf_tables_module_init(void)
6674 {
6675         int err;
6676
6677         info = kmalloc(sizeof(struct nft_expr_info) * NFT_RULE_MAXEXPRS,
6678                        GFP_KERNEL);
6679         if (info == NULL) {
6680                 err = -ENOMEM;
6681                 goto err1;
6682         }
6683
6684         err = nf_tables_core_module_init();
6685         if (err < 0)
6686                 goto err2;
6687
6688         err = nfnetlink_subsys_register(&nf_tables_subsys);
6689         if (err < 0)
6690                 goto err3;
6691
6692         register_netdevice_notifier(&nf_tables_flowtable_notifier);
6693
6694         return register_pernet_subsys(&nf_tables_net_ops);
6695 err3:
6696         nf_tables_core_module_exit();
6697 err2:
6698         kfree(info);
6699 err1:
6700         return err;
6701 }
6702
6703 static void __exit nf_tables_module_exit(void)
6704 {
6705         unregister_pernet_subsys(&nf_tables_net_ops);
6706         nfnetlink_subsys_unregister(&nf_tables_subsys);
6707         unregister_netdevice_notifier(&nf_tables_flowtable_notifier);
6708         rcu_barrier();
6709         nf_tables_core_module_exit();
6710         kfree(info);
6711 }
6712
6713 module_init(nf_tables_module_init);
6714 module_exit(nf_tables_module_exit);
6715
6716 MODULE_LICENSE("GPL");
6717 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
6718 MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFTABLES);