blob: c96070e237e73fca90f48a198240249f0e28d39c [file] [log] [blame]
Patrick McHardy96518512013-10-14 11:00:02 +02001/*
Patrick McHardy20a69342013-10-11 12:06:22 +02002 * Copyright (c) 2007-2009 Patrick McHardy <kaber@trash.net>
Patrick McHardy96518512013-10-14 11:00:02 +02003 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Development of this code funded by Astaro AG (http://www.astaro.com/)
9 */
10
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/list.h>
14#include <linux/skbuff.h>
15#include <linux/netlink.h>
16#include <linux/netfilter.h>
17#include <linux/netfilter/nfnetlink.h>
18#include <linux/netfilter/nf_tables.h>
19#include <net/netfilter/nf_tables_core.h>
20#include <net/netfilter/nf_tables.h>
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020021#include <net/net_namespace.h>
Patrick McHardy96518512013-10-14 11:00:02 +020022#include <net/sock.h>
23
Patrick McHardy96518512013-10-14 11:00:02 +020024static LIST_HEAD(nf_tables_expressions);
25
26/**
27 * nft_register_afinfo - register nf_tables address family info
28 *
29 * @afi: address family info to register
30 *
31 * Register the address family for use with nf_tables. Returns zero on
32 * success or a negative errno code otherwise.
33 */
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020034int nft_register_afinfo(struct net *net, struct nft_af_info *afi)
Patrick McHardy96518512013-10-14 11:00:02 +020035{
36 INIT_LIST_HEAD(&afi->tables);
37 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +020038 list_add_tail_rcu(&afi->list, &net->nft.af_info);
Patrick McHardy96518512013-10-14 11:00:02 +020039 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
40 return 0;
41}
42EXPORT_SYMBOL_GPL(nft_register_afinfo);
43
44/**
45 * nft_unregister_afinfo - unregister nf_tables address family info
46 *
47 * @afi: address family info to unregister
48 *
49 * Unregister the address family for use with nf_tables.
50 */
51void nft_unregister_afinfo(struct nft_af_info *afi)
52{
53 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +020054 list_del_rcu(&afi->list);
Patrick McHardy96518512013-10-14 11:00:02 +020055 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
56}
57EXPORT_SYMBOL_GPL(nft_unregister_afinfo);
58
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020059static struct nft_af_info *nft_afinfo_lookup(struct net *net, int family)
Patrick McHardy96518512013-10-14 11:00:02 +020060{
61 struct nft_af_info *afi;
62
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020063 list_for_each_entry(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +020064 if (afi->family == family)
65 return afi;
66 }
67 return NULL;
68}
69
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020070static struct nft_af_info *
71nf_tables_afinfo_lookup(struct net *net, int family, bool autoload)
Patrick McHardy96518512013-10-14 11:00:02 +020072{
73 struct nft_af_info *afi;
74
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020075 afi = nft_afinfo_lookup(net, family);
Patrick McHardy96518512013-10-14 11:00:02 +020076 if (afi != NULL)
77 return afi;
78#ifdef CONFIG_MODULES
79 if (autoload) {
80 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
81 request_module("nft-afinfo-%u", family);
82 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +020083 afi = nft_afinfo_lookup(net, family);
Patrick McHardy96518512013-10-14 11:00:02 +020084 if (afi != NULL)
85 return ERR_PTR(-EAGAIN);
86 }
87#endif
88 return ERR_PTR(-EAFNOSUPPORT);
89}
90
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +020091static void nft_ctx_init(struct nft_ctx *ctx,
92 const struct sk_buff *skb,
93 const struct nlmsghdr *nlh,
94 struct nft_af_info *afi,
95 struct nft_table *table,
96 struct nft_chain *chain,
97 const struct nlattr * const *nla)
98{
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +020099 ctx->net = sock_net(skb->sk);
100 ctx->afi = afi;
101 ctx->table = table;
102 ctx->chain = chain;
103 ctx->nla = nla;
104 ctx->portid = NETLINK_CB(skb).portid;
105 ctx->report = nlmsg_report(nlh);
106 ctx->seq = nlh->nlmsg_seq;
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +0200107}
108
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +0200109static struct nft_trans *nft_trans_alloc(struct nft_ctx *ctx, int msg_type,
110 u32 size)
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +0200111{
112 struct nft_trans *trans;
113
114 trans = kzalloc(sizeof(struct nft_trans) + size, GFP_KERNEL);
115 if (trans == NULL)
116 return NULL;
117
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +0200118 trans->msg_type = msg_type;
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +0200119 trans->ctx = *ctx;
120
121 return trans;
122}
123
124static void nft_trans_destroy(struct nft_trans *trans)
125{
126 list_del(&trans->list);
127 kfree(trans);
128}
129
Arturo Borreroc5598792014-09-02 16:42:23 +0200130static void nf_tables_unregister_hooks(const struct nft_table *table,
131 const struct nft_chain *chain,
132 unsigned int hook_nops)
133{
134 if (!(table->flags & NFT_TABLE_F_DORMANT) &&
135 chain->flags & NFT_BASE_CHAIN)
136 nf_unregister_hooks(nft_base_chain(chain)->ops, hook_nops);
137}
138
Arturo Borreroee01d542014-09-02 16:42:25 +0200139/* Internal table flags */
140#define NFT_TABLE_INACTIVE (1 << 15)
141
142static int nft_trans_table_add(struct nft_ctx *ctx, int msg_type)
143{
144 struct nft_trans *trans;
145
146 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_table));
147 if (trans == NULL)
148 return -ENOMEM;
149
150 if (msg_type == NFT_MSG_NEWTABLE)
151 ctx->table->flags |= NFT_TABLE_INACTIVE;
152
153 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
154 return 0;
155}
156
157static int nft_deltable(struct nft_ctx *ctx)
158{
159 int err;
160
161 err = nft_trans_table_add(ctx, NFT_MSG_DELTABLE);
162 if (err < 0)
163 return err;
164
165 list_del_rcu(&ctx->table->list);
166 return err;
167}
168
169static int nft_trans_chain_add(struct nft_ctx *ctx, int msg_type)
170{
171 struct nft_trans *trans;
172
173 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_chain));
174 if (trans == NULL)
175 return -ENOMEM;
176
177 if (msg_type == NFT_MSG_NEWCHAIN)
178 ctx->chain->flags |= NFT_CHAIN_INACTIVE;
179
180 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
181 return 0;
182}
183
184static int nft_delchain(struct nft_ctx *ctx)
185{
186 int err;
187
188 err = nft_trans_chain_add(ctx, NFT_MSG_DELCHAIN);
189 if (err < 0)
190 return err;
191
192 ctx->table->use--;
193 list_del_rcu(&ctx->chain->list);
194
195 return err;
196}
197
198static inline bool
199nft_rule_is_active(struct net *net, const struct nft_rule *rule)
200{
Patrick McHardyea4bd992015-03-25 14:08:49 +0000201 return (rule->genmask & nft_genmask_cur(net)) == 0;
Arturo Borreroee01d542014-09-02 16:42:25 +0200202}
203
204static inline int
205nft_rule_is_active_next(struct net *net, const struct nft_rule *rule)
206{
Patrick McHardyea4bd992015-03-25 14:08:49 +0000207 return (rule->genmask & nft_genmask_next(net)) == 0;
Arturo Borreroee01d542014-09-02 16:42:25 +0200208}
209
210static inline void
211nft_rule_activate_next(struct net *net, struct nft_rule *rule)
212{
213 /* Now inactive, will be active in the future */
Patrick McHardyea4bd992015-03-25 14:08:49 +0000214 rule->genmask = nft_genmask_cur(net);
Arturo Borreroee01d542014-09-02 16:42:25 +0200215}
216
217static inline void
218nft_rule_deactivate_next(struct net *net, struct nft_rule *rule)
219{
Patrick McHardyea4bd992015-03-25 14:08:49 +0000220 rule->genmask = nft_genmask_next(net);
Arturo Borreroee01d542014-09-02 16:42:25 +0200221}
222
223static inline void nft_rule_clear(struct net *net, struct nft_rule *rule)
224{
Patrick McHardyea4bd992015-03-25 14:08:49 +0000225 rule->genmask &= ~nft_genmask_next(net);
Arturo Borreroee01d542014-09-02 16:42:25 +0200226}
227
228static int
229nf_tables_delrule_deactivate(struct nft_ctx *ctx, struct nft_rule *rule)
230{
231 /* You cannot delete the same rule twice */
232 if (nft_rule_is_active_next(ctx->net, rule)) {
233 nft_rule_deactivate_next(ctx->net, rule);
234 ctx->chain->use--;
235 return 0;
236 }
237 return -ENOENT;
238}
239
240static struct nft_trans *nft_trans_rule_add(struct nft_ctx *ctx, int msg_type,
241 struct nft_rule *rule)
242{
243 struct nft_trans *trans;
244
245 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_rule));
246 if (trans == NULL)
247 return NULL;
248
249 nft_trans_rule(trans) = rule;
250 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
251
252 return trans;
253}
254
255static int nft_delrule(struct nft_ctx *ctx, struct nft_rule *rule)
256{
257 struct nft_trans *trans;
258 int err;
259
260 trans = nft_trans_rule_add(ctx, NFT_MSG_DELRULE, rule);
261 if (trans == NULL)
262 return -ENOMEM;
263
264 err = nf_tables_delrule_deactivate(ctx, rule);
265 if (err < 0) {
266 nft_trans_destroy(trans);
267 return err;
268 }
269
270 return 0;
271}
272
273static int nft_delrule_by_chain(struct nft_ctx *ctx)
274{
275 struct nft_rule *rule;
276 int err;
277
278 list_for_each_entry(rule, &ctx->chain->rules, list) {
279 err = nft_delrule(ctx, rule);
280 if (err < 0)
281 return err;
282 }
283 return 0;
284}
285
286/* Internal set flag */
287#define NFT_SET_INACTIVE (1 << 15)
288
289static int nft_trans_set_add(struct nft_ctx *ctx, int msg_type,
290 struct nft_set *set)
291{
292 struct nft_trans *trans;
293
294 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_set));
295 if (trans == NULL)
296 return -ENOMEM;
297
298 if (msg_type == NFT_MSG_NEWSET && ctx->nla[NFTA_SET_ID] != NULL) {
299 nft_trans_set_id(trans) =
300 ntohl(nla_get_be32(ctx->nla[NFTA_SET_ID]));
301 set->flags |= NFT_SET_INACTIVE;
302 }
303 nft_trans_set(trans) = set;
304 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
305
306 return 0;
307}
308
309static int nft_delset(struct nft_ctx *ctx, struct nft_set *set)
310{
311 int err;
312
313 err = nft_trans_set_add(ctx, NFT_MSG_DELSET, set);
314 if (err < 0)
315 return err;
316
317 list_del_rcu(&set->list);
318 ctx->table->use--;
319
320 return err;
321}
322
Patrick McHardy96518512013-10-14 11:00:02 +0200323/*
324 * Tables
325 */
326
327static struct nft_table *nft_table_lookup(const struct nft_af_info *afi,
328 const struct nlattr *nla)
329{
330 struct nft_table *table;
331
332 list_for_each_entry(table, &afi->tables, list) {
333 if (!nla_strcmp(nla, table->name))
334 return table;
335 }
336 return NULL;
337}
338
339static struct nft_table *nf_tables_table_lookup(const struct nft_af_info *afi,
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200340 const struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +0200341{
342 struct nft_table *table;
343
344 if (nla == NULL)
345 return ERR_PTR(-EINVAL);
346
347 table = nft_table_lookup(afi, nla);
348 if (table != NULL)
349 return table;
350
Patrick McHardy96518512013-10-14 11:00:02 +0200351 return ERR_PTR(-ENOENT);
352}
353
354static inline u64 nf_tables_alloc_handle(struct nft_table *table)
355{
356 return ++table->hgenerator;
357}
358
Patrick McHardy2a37d752014-01-09 18:42:37 +0000359static const struct nf_chain_type *chain_type[AF_MAX][NFT_CHAIN_T_MAX];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200360
Patrick McHardy2a37d752014-01-09 18:42:37 +0000361static const struct nf_chain_type *
Patrick McHardybaae3e62014-01-09 18:42:34 +0000362__nf_tables_chain_type_lookup(int family, const struct nlattr *nla)
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200363{
364 int i;
365
Patrick McHardybaae3e62014-01-09 18:42:34 +0000366 for (i = 0; i < NFT_CHAIN_T_MAX; i++) {
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200367 if (chain_type[family][i] != NULL &&
368 !nla_strcmp(nla, chain_type[family][i]->name))
Patrick McHardybaae3e62014-01-09 18:42:34 +0000369 return chain_type[family][i];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200370 }
Patrick McHardybaae3e62014-01-09 18:42:34 +0000371 return NULL;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200372}
373
Patrick McHardy2a37d752014-01-09 18:42:37 +0000374static const struct nf_chain_type *
Patrick McHardybaae3e62014-01-09 18:42:34 +0000375nf_tables_chain_type_lookup(const struct nft_af_info *afi,
376 const struct nlattr *nla,
377 bool autoload)
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200378{
Patrick McHardy2a37d752014-01-09 18:42:37 +0000379 const struct nf_chain_type *type;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200380
381 type = __nf_tables_chain_type_lookup(afi->family, nla);
Patrick McHardy93b08062014-01-09 18:42:36 +0000382 if (type != NULL)
383 return type;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200384#ifdef CONFIG_MODULES
Patrick McHardy93b08062014-01-09 18:42:36 +0000385 if (autoload) {
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200386 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso2fec6bb2014-03-31 12:26:39 +0200387 request_module("nft-chain-%u-%.*s", afi->family,
388 nla_len(nla), (const char *)nla_data(nla));
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200389 nfnl_lock(NFNL_SUBSYS_NFTABLES);
390 type = __nf_tables_chain_type_lookup(afi->family, nla);
Patrick McHardy93b08062014-01-09 18:42:36 +0000391 if (type != NULL)
392 return ERR_PTR(-EAGAIN);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200393 }
394#endif
Patrick McHardy93b08062014-01-09 18:42:36 +0000395 return ERR_PTR(-ENOENT);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200396}
397
Patrick McHardy96518512013-10-14 11:00:02 +0200398static const struct nla_policy nft_table_policy[NFTA_TABLE_MAX + 1] = {
Pablo Neira Ayuso1cae5652015-03-05 15:05:36 +0100399 [NFTA_TABLE_NAME] = { .type = NLA_STRING,
400 .len = NFT_TABLE_MAXNAMELEN - 1 },
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200401 [NFTA_TABLE_FLAGS] = { .type = NLA_U32 },
Patrick McHardy96518512013-10-14 11:00:02 +0200402};
403
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200404static int nf_tables_fill_table_info(struct sk_buff *skb, struct net *net,
405 u32 portid, u32 seq, int event, u32 flags,
406 int family, const struct nft_table *table)
Patrick McHardy96518512013-10-14 11:00:02 +0200407{
408 struct nlmsghdr *nlh;
409 struct nfgenmsg *nfmsg;
410
411 event |= NFNL_SUBSYS_NFTABLES << 8;
412 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
413 if (nlh == NULL)
414 goto nla_put_failure;
415
416 nfmsg = nlmsg_data(nlh);
417 nfmsg->nfgen_family = family;
418 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200419 nfmsg->res_id = htons(net->nft.base_seq & 0xffff);
Patrick McHardy96518512013-10-14 11:00:02 +0200420
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200421 if (nla_put_string(skb, NFTA_TABLE_NAME, table->name) ||
Tomasz Bursztykad8bcc7682013-12-12 15:00:42 +0200422 nla_put_be32(skb, NFTA_TABLE_FLAGS, htonl(table->flags)) ||
423 nla_put_be32(skb, NFTA_TABLE_USE, htonl(table->use)))
Patrick McHardy96518512013-10-14 11:00:02 +0200424 goto nla_put_failure;
425
Johannes Berg053c0952015-01-16 22:09:00 +0100426 nlmsg_end(skb, nlh);
427 return 0;
Patrick McHardy96518512013-10-14 11:00:02 +0200428
429nla_put_failure:
430 nlmsg_trim(skb, nlh);
431 return -1;
432}
433
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200434static int nf_tables_table_notify(const struct nft_ctx *ctx, int event)
Patrick McHardy96518512013-10-14 11:00:02 +0200435{
436 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +0200437 int err;
438
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200439 if (!ctx->report &&
440 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +0200441 return 0;
442
443 err = -ENOBUFS;
444 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
445 if (skb == NULL)
446 goto err;
447
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200448 err = nf_tables_fill_table_info(skb, ctx->net, ctx->portid, ctx->seq,
449 event, 0, ctx->afi->family, ctx->table);
Patrick McHardy96518512013-10-14 11:00:02 +0200450 if (err < 0) {
451 kfree_skb(skb);
452 goto err;
453 }
454
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200455 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
456 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +0200457err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200458 if (err < 0) {
459 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
460 err);
461 }
Patrick McHardy96518512013-10-14 11:00:02 +0200462 return err;
463}
464
465static int nf_tables_dump_tables(struct sk_buff *skb,
466 struct netlink_callback *cb)
467{
468 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
469 const struct nft_af_info *afi;
470 const struct nft_table *table;
471 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200472 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200473 int family = nfmsg->nfgen_family;
474
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200475 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200476 cb->seq = net->nft.base_seq;
477
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200478 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200479 if (family != NFPROTO_UNSPEC && family != afi->family)
480 continue;
481
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200482 list_for_each_entry_rcu(table, &afi->tables, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200483 if (idx < s_idx)
484 goto cont;
485 if (idx > s_idx)
486 memset(&cb->args[1], 0,
487 sizeof(cb->args) - sizeof(cb->args[0]));
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200488 if (nf_tables_fill_table_info(skb, net,
Patrick McHardy96518512013-10-14 11:00:02 +0200489 NETLINK_CB(cb->skb).portid,
490 cb->nlh->nlmsg_seq,
491 NFT_MSG_NEWTABLE,
492 NLM_F_MULTI,
493 afi->family, table) < 0)
494 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200495
496 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +0200497cont:
498 idx++;
499 }
500 }
501done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200502 rcu_read_unlock();
Patrick McHardy96518512013-10-14 11:00:02 +0200503 cb->args[0] = idx;
504 return skb->len;
505}
506
507static int nf_tables_gettable(struct sock *nlsk, struct sk_buff *skb,
508 const struct nlmsghdr *nlh,
509 const struct nlattr * const nla[])
510{
511 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
512 const struct nft_af_info *afi;
513 const struct nft_table *table;
514 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200515 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200516 int family = nfmsg->nfgen_family;
517 int err;
518
519 if (nlh->nlmsg_flags & NLM_F_DUMP) {
520 struct netlink_dump_control c = {
521 .dump = nf_tables_dump_tables,
522 };
523 return netlink_dump_start(nlsk, skb, nlh, &c);
524 }
525
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200526 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +0200527 if (IS_ERR(afi))
528 return PTR_ERR(afi);
529
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200530 table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
Patrick McHardy96518512013-10-14 11:00:02 +0200531 if (IS_ERR(table))
532 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200533 if (table->flags & NFT_TABLE_INACTIVE)
534 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200535
536 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
537 if (!skb2)
538 return -ENOMEM;
539
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200540 err = nf_tables_fill_table_info(skb2, net, NETLINK_CB(skb).portid,
Patrick McHardy96518512013-10-14 11:00:02 +0200541 nlh->nlmsg_seq, NFT_MSG_NEWTABLE, 0,
542 family, table);
543 if (err < 0)
544 goto err;
545
546 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
547
548err:
549 kfree_skb(skb2);
550 return err;
551}
552
Patrick McHardy115a60b2014-01-03 12:16:15 +0000553static int nf_tables_table_enable(const struct nft_af_info *afi,
554 struct nft_table *table)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200555{
556 struct nft_chain *chain;
557 int err, i = 0;
558
559 list_for_each_entry(chain, &table->chains, list) {
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100560 if (!(chain->flags & NFT_BASE_CHAIN))
561 continue;
562
Patrick McHardy115a60b2014-01-03 12:16:15 +0000563 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200564 if (err < 0)
565 goto err;
566
567 i++;
568 }
569 return 0;
570err:
571 list_for_each_entry(chain, &table->chains, list) {
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100572 if (!(chain->flags & NFT_BASE_CHAIN))
573 continue;
574
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200575 if (i-- <= 0)
576 break;
577
Patrick McHardy115a60b2014-01-03 12:16:15 +0000578 nf_unregister_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200579 }
580 return err;
581}
582
Pablo Neira Ayusof75edf52014-03-30 14:04:52 +0200583static void nf_tables_table_disable(const struct nft_af_info *afi,
Patrick McHardy115a60b2014-01-03 12:16:15 +0000584 struct nft_table *table)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200585{
586 struct nft_chain *chain;
587
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100588 list_for_each_entry(chain, &table->chains, list) {
589 if (chain->flags & NFT_BASE_CHAIN)
Patrick McHardy115a60b2014-01-03 12:16:15 +0000590 nf_unregister_hooks(nft_base_chain(chain)->ops,
591 afi->nops);
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100592 }
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200593}
594
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200595static int nf_tables_updtable(struct nft_ctx *ctx)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200596{
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200597 struct nft_trans *trans;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200598 u32 flags;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200599 int ret = 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200600
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200601 if (!ctx->nla[NFTA_TABLE_FLAGS])
602 return 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200603
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200604 flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
605 if (flags & ~NFT_TABLE_F_DORMANT)
606 return -EINVAL;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200607
Pablo Neira Ayuso63283dd2014-06-27 18:51:39 +0200608 if (flags == ctx->table->flags)
609 return 0;
610
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200611 trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE,
612 sizeof(struct nft_trans_table));
613 if (trans == NULL)
614 return -ENOMEM;
615
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200616 if ((flags & NFT_TABLE_F_DORMANT) &&
617 !(ctx->table->flags & NFT_TABLE_F_DORMANT)) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200618 nft_trans_table_enable(trans) = false;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200619 } else if (!(flags & NFT_TABLE_F_DORMANT) &&
620 ctx->table->flags & NFT_TABLE_F_DORMANT) {
621 ret = nf_tables_table_enable(ctx->afi, ctx->table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200622 if (ret >= 0) {
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200623 ctx->table->flags &= ~NFT_TABLE_F_DORMANT;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200624 nft_trans_table_enable(trans) = true;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200625 }
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200626 }
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200627 if (ret < 0)
628 goto err;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200629
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200630 nft_trans_table_update(trans) = true;
631 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
632 return 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200633err:
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200634 nft_trans_destroy(trans);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200635 return ret;
636}
637
Patrick McHardy96518512013-10-14 11:00:02 +0200638static int nf_tables_newtable(struct sock *nlsk, struct sk_buff *skb,
639 const struct nlmsghdr *nlh,
640 const struct nlattr * const nla[])
641{
642 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
643 const struct nlattr *name;
644 struct nft_af_info *afi;
645 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200646 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200647 int family = nfmsg->nfgen_family;
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000648 u32 flags = 0;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200649 struct nft_ctx ctx;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200650 int err;
Patrick McHardy96518512013-10-14 11:00:02 +0200651
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200652 afi = nf_tables_afinfo_lookup(net, family, true);
Patrick McHardy96518512013-10-14 11:00:02 +0200653 if (IS_ERR(afi))
654 return PTR_ERR(afi);
655
656 name = nla[NFTA_TABLE_NAME];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200657 table = nf_tables_table_lookup(afi, name);
Patrick McHardy96518512013-10-14 11:00:02 +0200658 if (IS_ERR(table)) {
659 if (PTR_ERR(table) != -ENOENT)
660 return PTR_ERR(table);
661 table = NULL;
662 }
663
664 if (table != NULL) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200665 if (table->flags & NFT_TABLE_INACTIVE)
666 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200667 if (nlh->nlmsg_flags & NLM_F_EXCL)
668 return -EEXIST;
669 if (nlh->nlmsg_flags & NLM_F_REPLACE)
670 return -EOPNOTSUPP;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200671
672 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
673 return nf_tables_updtable(&ctx);
Patrick McHardy96518512013-10-14 11:00:02 +0200674 }
675
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000676 if (nla[NFTA_TABLE_FLAGS]) {
677 flags = ntohl(nla_get_be32(nla[NFTA_TABLE_FLAGS]));
678 if (flags & ~NFT_TABLE_F_DORMANT)
679 return -EINVAL;
680 }
681
Patrick McHardy7047f9d2014-01-09 18:42:40 +0000682 if (!try_module_get(afi->owner))
683 return -EAFNOSUPPORT;
684
Pablo Neira Ayusoffdb2102015-03-17 19:53:23 +0100685 err = -ENOMEM;
Pablo Neira Ayuso1cae5652015-03-05 15:05:36 +0100686 table = kzalloc(sizeof(*table), GFP_KERNEL);
Pablo Neira Ayusoffdb2102015-03-17 19:53:23 +0100687 if (table == NULL)
688 goto err1;
Patrick McHardy96518512013-10-14 11:00:02 +0200689
Pablo Neira Ayuso1cae5652015-03-05 15:05:36 +0100690 nla_strlcpy(table->name, name, NFT_TABLE_MAXNAMELEN);
Patrick McHardy96518512013-10-14 11:00:02 +0200691 INIT_LIST_HEAD(&table->chains);
Patrick McHardy20a69342013-10-11 12:06:22 +0200692 INIT_LIST_HEAD(&table->sets);
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000693 table->flags = flags;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200694
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200695 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
696 err = nft_trans_table_add(&ctx, NFT_MSG_NEWTABLE);
Pablo Neira Ayusoffdb2102015-03-17 19:53:23 +0100697 if (err < 0)
698 goto err2;
699
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200700 list_add_tail_rcu(&table->list, &afi->tables);
Patrick McHardy96518512013-10-14 11:00:02 +0200701 return 0;
Pablo Neira Ayusoffdb2102015-03-17 19:53:23 +0100702err2:
703 kfree(table);
704err1:
705 module_put(afi->owner);
706 return err;
Patrick McHardy96518512013-10-14 11:00:02 +0200707}
708
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200709static int nft_flush_table(struct nft_ctx *ctx)
710{
711 int err;
712 struct nft_chain *chain, *nc;
713 struct nft_set *set, *ns;
714
Pablo Neira Ayusoa2f18db2015-01-04 15:14:22 +0100715 list_for_each_entry(chain, &ctx->table->chains, list) {
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200716 ctx->chain = chain;
717
718 err = nft_delrule_by_chain(ctx);
719 if (err < 0)
720 goto out;
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200721 }
722
723 list_for_each_entry_safe(set, ns, &ctx->table->sets, list) {
724 if (set->flags & NFT_SET_ANONYMOUS &&
725 !list_empty(&set->bindings))
726 continue;
727
728 err = nft_delset(ctx, set);
729 if (err < 0)
730 goto out;
731 }
732
Pablo Neira Ayusoa2f18db2015-01-04 15:14:22 +0100733 list_for_each_entry_safe(chain, nc, &ctx->table->chains, list) {
734 ctx->chain = chain;
735
736 err = nft_delchain(ctx);
737 if (err < 0)
738 goto out;
739 }
740
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200741 err = nft_deltable(ctx);
742out:
743 return err;
744}
745
746static int nft_flush(struct nft_ctx *ctx, int family)
747{
748 struct nft_af_info *afi;
749 struct nft_table *table, *nt;
750 const struct nlattr * const *nla = ctx->nla;
751 int err = 0;
752
753 list_for_each_entry(afi, &ctx->net->nft.af_info, list) {
754 if (family != AF_UNSPEC && afi->family != family)
755 continue;
756
757 ctx->afi = afi;
758 list_for_each_entry_safe(table, nt, &afi->tables, list) {
759 if (nla[NFTA_TABLE_NAME] &&
760 nla_strcmp(nla[NFTA_TABLE_NAME], table->name) != 0)
761 continue;
762
763 ctx->table = table;
764
765 err = nft_flush_table(ctx);
766 if (err < 0)
767 goto out;
768 }
769 }
770out:
771 return err;
772}
773
Patrick McHardy96518512013-10-14 11:00:02 +0200774static int nf_tables_deltable(struct sock *nlsk, struct sk_buff *skb,
775 const struct nlmsghdr *nlh,
776 const struct nlattr * const nla[])
777{
778 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
779 struct nft_af_info *afi;
780 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200781 struct net *net = sock_net(skb->sk);
Arturo Borreroee01d542014-09-02 16:42:25 +0200782 int family = nfmsg->nfgen_family;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200783 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +0200784
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200785 nft_ctx_init(&ctx, skb, nlh, NULL, NULL, NULL, nla);
786 if (family == AF_UNSPEC || nla[NFTA_TABLE_NAME] == NULL)
787 return nft_flush(&ctx, family);
788
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200789 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +0200790 if (IS_ERR(afi))
791 return PTR_ERR(afi);
792
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200793 table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
Patrick McHardy96518512013-10-14 11:00:02 +0200794 if (IS_ERR(table))
795 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200796 if (table->flags & NFT_TABLE_INACTIVE)
797 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200798
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200799 ctx.afi = afi;
800 ctx.table = table;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200801
Arturo Borrerob9ac12e2014-09-02 16:42:26 +0200802 return nft_flush_table(&ctx);
Patrick McHardy96518512013-10-14 11:00:02 +0200803}
804
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200805static void nf_tables_table_destroy(struct nft_ctx *ctx)
806{
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +0200807 BUG_ON(ctx->table->use > 0);
808
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200809 kfree(ctx->table);
810 module_put(ctx->afi->owner);
811}
812
Patrick McHardy2a37d752014-01-09 18:42:37 +0000813int nft_register_chain_type(const struct nf_chain_type *ctype)
Patrick McHardy96518512013-10-14 11:00:02 +0200814{
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200815 int err = 0;
Patrick McHardy96518512013-10-14 11:00:02 +0200816
817 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200818 if (chain_type[ctype->family][ctype->type] != NULL) {
819 err = -EBUSY;
820 goto out;
Patrick McHardy96518512013-10-14 11:00:02 +0200821 }
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200822 chain_type[ctype->family][ctype->type] = ctype;
823out:
Patrick McHardy96518512013-10-14 11:00:02 +0200824 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
825 return err;
826}
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200827EXPORT_SYMBOL_GPL(nft_register_chain_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200828
Patrick McHardy2a37d752014-01-09 18:42:37 +0000829void nft_unregister_chain_type(const struct nf_chain_type *ctype)
Patrick McHardy96518512013-10-14 11:00:02 +0200830{
Patrick McHardy96518512013-10-14 11:00:02 +0200831 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200832 chain_type[ctype->family][ctype->type] = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +0200833 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
834}
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200835EXPORT_SYMBOL_GPL(nft_unregister_chain_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200836
837/*
838 * Chains
839 */
840
841static struct nft_chain *
842nf_tables_chain_lookup_byhandle(const struct nft_table *table, u64 handle)
843{
844 struct nft_chain *chain;
845
846 list_for_each_entry(chain, &table->chains, list) {
847 if (chain->handle == handle)
848 return chain;
849 }
850
851 return ERR_PTR(-ENOENT);
852}
853
854static struct nft_chain *nf_tables_chain_lookup(const struct nft_table *table,
855 const struct nlattr *nla)
856{
857 struct nft_chain *chain;
858
859 if (nla == NULL)
860 return ERR_PTR(-EINVAL);
861
862 list_for_each_entry(chain, &table->chains, list) {
863 if (!nla_strcmp(nla, chain->name))
864 return chain;
865 }
866
867 return ERR_PTR(-ENOENT);
868}
869
870static const struct nla_policy nft_chain_policy[NFTA_CHAIN_MAX + 1] = {
871 [NFTA_CHAIN_TABLE] = { .type = NLA_STRING },
872 [NFTA_CHAIN_HANDLE] = { .type = NLA_U64 },
873 [NFTA_CHAIN_NAME] = { .type = NLA_STRING,
874 .len = NFT_CHAIN_MAXNAMELEN - 1 },
875 [NFTA_CHAIN_HOOK] = { .type = NLA_NESTED },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200876 [NFTA_CHAIN_POLICY] = { .type = NLA_U32 },
Pablo Neira4c1f7812014-03-31 17:43:47 +0200877 [NFTA_CHAIN_TYPE] = { .type = NLA_STRING },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200878 [NFTA_CHAIN_COUNTERS] = { .type = NLA_NESTED },
Patrick McHardy96518512013-10-14 11:00:02 +0200879};
880
881static const struct nla_policy nft_hook_policy[NFTA_HOOK_MAX + 1] = {
882 [NFTA_HOOK_HOOKNUM] = { .type = NLA_U32 },
883 [NFTA_HOOK_PRIORITY] = { .type = NLA_U32 },
884};
885
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200886static int nft_dump_stats(struct sk_buff *skb, struct nft_stats __percpu *stats)
887{
888 struct nft_stats *cpu_stats, total;
889 struct nlattr *nest;
Eric Dumazetce355e22014-07-09 15:14:06 +0200890 unsigned int seq;
891 u64 pkts, bytes;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200892 int cpu;
893
894 memset(&total, 0, sizeof(total));
895 for_each_possible_cpu(cpu) {
896 cpu_stats = per_cpu_ptr(stats, cpu);
Eric Dumazetce355e22014-07-09 15:14:06 +0200897 do {
898 seq = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
899 pkts = cpu_stats->pkts;
900 bytes = cpu_stats->bytes;
901 } while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, seq));
902 total.pkts += pkts;
903 total.bytes += bytes;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200904 }
905 nest = nla_nest_start(skb, NFTA_CHAIN_COUNTERS);
906 if (nest == NULL)
907 goto nla_put_failure;
908
909 if (nla_put_be64(skb, NFTA_COUNTER_PACKETS, cpu_to_be64(total.pkts)) ||
910 nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes)))
911 goto nla_put_failure;
912
913 nla_nest_end(skb, nest);
914 return 0;
915
916nla_put_failure:
917 return -ENOSPC;
918}
919
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200920static int nf_tables_fill_chain_info(struct sk_buff *skb, struct net *net,
921 u32 portid, u32 seq, int event, u32 flags,
922 int family, const struct nft_table *table,
Patrick McHardy96518512013-10-14 11:00:02 +0200923 const struct nft_chain *chain)
924{
925 struct nlmsghdr *nlh;
926 struct nfgenmsg *nfmsg;
927
928 event |= NFNL_SUBSYS_NFTABLES << 8;
929 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
930 if (nlh == NULL)
931 goto nla_put_failure;
932
933 nfmsg = nlmsg_data(nlh);
934 nfmsg->nfgen_family = family;
935 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200936 nfmsg->res_id = htons(net->nft.base_seq & 0xffff);
Patrick McHardy96518512013-10-14 11:00:02 +0200937
938 if (nla_put_string(skb, NFTA_CHAIN_TABLE, table->name))
939 goto nla_put_failure;
940 if (nla_put_be64(skb, NFTA_CHAIN_HANDLE, cpu_to_be64(chain->handle)))
941 goto nla_put_failure;
942 if (nla_put_string(skb, NFTA_CHAIN_NAME, chain->name))
943 goto nla_put_failure;
944
945 if (chain->flags & NFT_BASE_CHAIN) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200946 const struct nft_base_chain *basechain = nft_base_chain(chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000947 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200948 struct nlattr *nest;
949
950 nest = nla_nest_start(skb, NFTA_CHAIN_HOOK);
Patrick McHardy96518512013-10-14 11:00:02 +0200951 if (nest == NULL)
952 goto nla_put_failure;
953 if (nla_put_be32(skb, NFTA_HOOK_HOOKNUM, htonl(ops->hooknum)))
954 goto nla_put_failure;
955 if (nla_put_be32(skb, NFTA_HOOK_PRIORITY, htonl(ops->priority)))
956 goto nla_put_failure;
957 nla_nest_end(skb, nest);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200958
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200959 if (nla_put_be32(skb, NFTA_CHAIN_POLICY,
960 htonl(basechain->policy)))
961 goto nla_put_failure;
962
Patrick McHardybaae3e62014-01-09 18:42:34 +0000963 if (nla_put_string(skb, NFTA_CHAIN_TYPE, basechain->type->name))
964 goto nla_put_failure;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200965
966 if (nft_dump_stats(skb, nft_base_chain(chain)->stats))
967 goto nla_put_failure;
Patrick McHardy96518512013-10-14 11:00:02 +0200968 }
969
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200970 if (nla_put_be32(skb, NFTA_CHAIN_USE, htonl(chain->use)))
971 goto nla_put_failure;
972
Johannes Berg053c0952015-01-16 22:09:00 +0100973 nlmsg_end(skb, nlh);
974 return 0;
Patrick McHardy96518512013-10-14 11:00:02 +0200975
976nla_put_failure:
977 nlmsg_trim(skb, nlh);
978 return -1;
979}
980
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200981static int nf_tables_chain_notify(const struct nft_ctx *ctx, int event)
Patrick McHardy96518512013-10-14 11:00:02 +0200982{
983 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +0200984 int err;
985
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200986 if (!ctx->report &&
987 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +0200988 return 0;
989
990 err = -ENOBUFS;
991 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
992 if (skb == NULL)
993 goto err;
994
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +0200995 err = nf_tables_fill_chain_info(skb, ctx->net, ctx->portid, ctx->seq,
996 event, 0, ctx->afi->family, ctx->table,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200997 ctx->chain);
Patrick McHardy96518512013-10-14 11:00:02 +0200998 if (err < 0) {
999 kfree_skb(skb);
1000 goto err;
1001 }
1002
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001003 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1004 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +02001005err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001006 if (err < 0) {
1007 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1008 err);
1009 }
Patrick McHardy96518512013-10-14 11:00:02 +02001010 return err;
1011}
1012
1013static int nf_tables_dump_chains(struct sk_buff *skb,
1014 struct netlink_callback *cb)
1015{
1016 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1017 const struct nft_af_info *afi;
1018 const struct nft_table *table;
1019 const struct nft_chain *chain;
1020 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001021 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001022 int family = nfmsg->nfgen_family;
1023
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001024 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001025 cb->seq = net->nft.base_seq;
1026
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001027 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +02001028 if (family != NFPROTO_UNSPEC && family != afi->family)
1029 continue;
1030
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001031 list_for_each_entry_rcu(table, &afi->tables, list) {
1032 list_for_each_entry_rcu(chain, &table->chains, list) {
Patrick McHardy96518512013-10-14 11:00:02 +02001033 if (idx < s_idx)
1034 goto cont;
1035 if (idx > s_idx)
1036 memset(&cb->args[1], 0,
1037 sizeof(cb->args) - sizeof(cb->args[0]));
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001038 if (nf_tables_fill_chain_info(skb, net,
1039 NETLINK_CB(cb->skb).portid,
Patrick McHardy96518512013-10-14 11:00:02 +02001040 cb->nlh->nlmsg_seq,
1041 NFT_MSG_NEWCHAIN,
1042 NLM_F_MULTI,
1043 afi->family, table, chain) < 0)
1044 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001045
1046 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +02001047cont:
1048 idx++;
1049 }
1050 }
1051 }
1052done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001053 rcu_read_unlock();
Patrick McHardy96518512013-10-14 11:00:02 +02001054 cb->args[0] = idx;
1055 return skb->len;
1056}
1057
Patrick McHardy96518512013-10-14 11:00:02 +02001058static int nf_tables_getchain(struct sock *nlsk, struct sk_buff *skb,
1059 const struct nlmsghdr *nlh,
1060 const struct nlattr * const nla[])
1061{
1062 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1063 const struct nft_af_info *afi;
1064 const struct nft_table *table;
1065 const struct nft_chain *chain;
1066 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001067 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001068 int family = nfmsg->nfgen_family;
1069 int err;
1070
1071 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1072 struct netlink_dump_control c = {
1073 .dump = nf_tables_dump_chains,
1074 };
1075 return netlink_dump_start(nlsk, skb, nlh, &c);
1076 }
1077
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001078 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001079 if (IS_ERR(afi))
1080 return PTR_ERR(afi);
1081
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001082 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001083 if (IS_ERR(table))
1084 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001085 if (table->flags & NFT_TABLE_INACTIVE)
1086 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001087
1088 chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
1089 if (IS_ERR(chain))
1090 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001091 if (chain->flags & NFT_CHAIN_INACTIVE)
1092 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001093
1094 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1095 if (!skb2)
1096 return -ENOMEM;
1097
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001098 err = nf_tables_fill_chain_info(skb2, net, NETLINK_CB(skb).portid,
Patrick McHardy96518512013-10-14 11:00:02 +02001099 nlh->nlmsg_seq, NFT_MSG_NEWCHAIN, 0,
1100 family, table, chain);
1101 if (err < 0)
1102 goto err;
1103
1104 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1105
1106err:
1107 kfree_skb(skb2);
1108 return err;
1109}
1110
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001111static const struct nla_policy nft_counter_policy[NFTA_COUNTER_MAX + 1] = {
1112 [NFTA_COUNTER_PACKETS] = { .type = NLA_U64 },
1113 [NFTA_COUNTER_BYTES] = { .type = NLA_U64 },
1114};
1115
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001116static struct nft_stats __percpu *nft_stats_alloc(const struct nlattr *attr)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001117{
1118 struct nlattr *tb[NFTA_COUNTER_MAX+1];
1119 struct nft_stats __percpu *newstats;
1120 struct nft_stats *stats;
1121 int err;
1122
1123 err = nla_parse_nested(tb, NFTA_COUNTER_MAX, attr, nft_counter_policy);
1124 if (err < 0)
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001125 return ERR_PTR(err);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001126
1127 if (!tb[NFTA_COUNTER_BYTES] || !tb[NFTA_COUNTER_PACKETS])
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001128 return ERR_PTR(-EINVAL);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001129
Eric Dumazetce355e22014-07-09 15:14:06 +02001130 newstats = netdev_alloc_pcpu_stats(struct nft_stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001131 if (newstats == NULL)
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001132 return ERR_PTR(-ENOMEM);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001133
1134 /* Restore old counters on this cpu, no problem. Per-cpu statistics
1135 * are not exposed to userspace.
1136 */
Pablo Neira Ayusoe8781f72015-01-21 18:04:18 +01001137 preempt_disable();
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001138 stats = this_cpu_ptr(newstats);
1139 stats->bytes = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_BYTES]));
1140 stats->pkts = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_PACKETS]));
Pablo Neira Ayusoe8781f72015-01-21 18:04:18 +01001141 preempt_enable();
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001142
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001143 return newstats;
1144}
1145
1146static void nft_chain_stats_replace(struct nft_base_chain *chain,
1147 struct nft_stats __percpu *newstats)
1148{
Pablo Neira Ayusob88825d2014-08-05 17:25:59 +02001149 if (newstats == NULL)
1150 return;
1151
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001152 if (chain->stats) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001153 struct nft_stats __percpu *oldstats =
Patrick McHardy67a8fc22014-02-18 18:06:49 +00001154 nft_dereference(chain->stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001155
1156 rcu_assign_pointer(chain->stats, newstats);
1157 synchronize_rcu();
1158 free_percpu(oldstats);
1159 } else
1160 rcu_assign_pointer(chain->stats, newstats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001161}
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001162
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001163static void nf_tables_chain_destroy(struct nft_chain *chain)
1164{
1165 BUG_ON(chain->use > 0);
1166
1167 if (chain->flags & NFT_BASE_CHAIN) {
1168 module_put(nft_base_chain(chain)->type->owner);
1169 free_percpu(nft_base_chain(chain)->stats);
1170 kfree(nft_base_chain(chain));
1171 } else {
1172 kfree(chain);
1173 }
1174}
1175
Patrick McHardy96518512013-10-14 11:00:02 +02001176static int nf_tables_newchain(struct sock *nlsk, struct sk_buff *skb,
1177 const struct nlmsghdr *nlh,
1178 const struct nlattr * const nla[])
1179{
1180 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1181 const struct nlattr * uninitialized_var(name);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001182 struct nft_af_info *afi;
Patrick McHardy96518512013-10-14 11:00:02 +02001183 struct nft_table *table;
1184 struct nft_chain *chain;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001185 struct nft_base_chain *basechain = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +02001186 struct nlattr *ha[NFTA_HOOK_MAX + 1];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001187 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001188 int family = nfmsg->nfgen_family;
Patrick McHardy57de2a02014-01-09 18:42:31 +00001189 u8 policy = NF_ACCEPT;
Patrick McHardy96518512013-10-14 11:00:02 +02001190 u64 handle = 0;
Patrick McHardy115a60b2014-01-03 12:16:15 +00001191 unsigned int i;
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001192 struct nft_stats __percpu *stats;
Patrick McHardy96518512013-10-14 11:00:02 +02001193 int err;
1194 bool create;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001195 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +02001196
1197 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1198
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001199 afi = nf_tables_afinfo_lookup(net, family, true);
Patrick McHardy96518512013-10-14 11:00:02 +02001200 if (IS_ERR(afi))
1201 return PTR_ERR(afi);
1202
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001203 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001204 if (IS_ERR(table))
1205 return PTR_ERR(table);
1206
Patrick McHardy96518512013-10-14 11:00:02 +02001207 chain = NULL;
1208 name = nla[NFTA_CHAIN_NAME];
1209
1210 if (nla[NFTA_CHAIN_HANDLE]) {
1211 handle = be64_to_cpu(nla_get_be64(nla[NFTA_CHAIN_HANDLE]));
1212 chain = nf_tables_chain_lookup_byhandle(table, handle);
1213 if (IS_ERR(chain))
1214 return PTR_ERR(chain);
1215 } else {
1216 chain = nf_tables_chain_lookup(table, name);
1217 if (IS_ERR(chain)) {
1218 if (PTR_ERR(chain) != -ENOENT)
1219 return PTR_ERR(chain);
1220 chain = NULL;
1221 }
1222 }
1223
Patrick McHardy57de2a02014-01-09 18:42:31 +00001224 if (nla[NFTA_CHAIN_POLICY]) {
1225 if ((chain != NULL &&
Pablo Neira Ayusod6b6cb12015-03-17 13:21:42 +01001226 !(chain->flags & NFT_BASE_CHAIN)))
1227 return -EOPNOTSUPP;
1228
1229 if (chain == NULL &&
Patrick McHardy57de2a02014-01-09 18:42:31 +00001230 nla[NFTA_CHAIN_HOOK] == NULL)
1231 return -EOPNOTSUPP;
1232
Pablo Neira Ayuso8f46df12014-01-10 15:11:25 +01001233 policy = ntohl(nla_get_be32(nla[NFTA_CHAIN_POLICY]));
Patrick McHardy57de2a02014-01-09 18:42:31 +00001234 switch (policy) {
1235 case NF_DROP:
1236 case NF_ACCEPT:
1237 break;
1238 default:
1239 return -EINVAL;
1240 }
1241 }
1242
Patrick McHardy96518512013-10-14 11:00:02 +02001243 if (chain != NULL) {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001244 struct nft_stats *stats = NULL;
1245 struct nft_trans *trans;
1246
1247 if (chain->flags & NFT_CHAIN_INACTIVE)
1248 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001249 if (nlh->nlmsg_flags & NLM_F_EXCL)
1250 return -EEXIST;
1251 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1252 return -EOPNOTSUPP;
1253
1254 if (nla[NFTA_CHAIN_HANDLE] && name &&
1255 !IS_ERR(nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME])))
1256 return -EEXIST;
1257
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001258 if (nla[NFTA_CHAIN_COUNTERS]) {
1259 if (!(chain->flags & NFT_BASE_CHAIN))
1260 return -EOPNOTSUPP;
1261
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001262 stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1263 if (IS_ERR(stats))
1264 return PTR_ERR(stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001265 }
1266
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001267 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1268 trans = nft_trans_alloc(&ctx, NFT_MSG_NEWCHAIN,
1269 sizeof(struct nft_trans_chain));
Pablo Neira Ayusof5553c12015-01-29 19:08:09 +01001270 if (trans == NULL) {
1271 free_percpu(stats);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001272 return -ENOMEM;
Pablo Neira Ayusof5553c12015-01-29 19:08:09 +01001273 }
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001274
1275 nft_trans_chain_stats(trans) = stats;
1276 nft_trans_chain_update(trans) = true;
1277
Patrick McHardy4401a862014-01-09 18:42:32 +00001278 if (nla[NFTA_CHAIN_POLICY])
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001279 nft_trans_chain_policy(trans) = policy;
1280 else
1281 nft_trans_chain_policy(trans) = -1;
Patrick McHardy4401a862014-01-09 18:42:32 +00001282
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001283 if (nla[NFTA_CHAIN_HANDLE] && name) {
1284 nla_strlcpy(nft_trans_chain_name(trans), name,
1285 NFT_CHAIN_MAXNAMELEN);
1286 }
1287 list_add_tail(&trans->list, &net->nft.commit_list);
1288 return 0;
Patrick McHardy96518512013-10-14 11:00:02 +02001289 }
1290
Patrick McHardy75820672014-01-09 18:42:33 +00001291 if (table->use == UINT_MAX)
1292 return -EOVERFLOW;
1293
Patrick McHardy96518512013-10-14 11:00:02 +02001294 if (nla[NFTA_CHAIN_HOOK]) {
Patrick McHardy2a37d752014-01-09 18:42:37 +00001295 const struct nf_chain_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001296 struct nf_hook_ops *ops;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001297 nf_hookfn *hookfn;
Patrick McHardy115a60b2014-01-03 12:16:15 +00001298 u32 hooknum, priority;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001299
Patrick McHardybaae3e62014-01-09 18:42:34 +00001300 type = chain_type[family][NFT_CHAIN_T_DEFAULT];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001301 if (nla[NFTA_CHAIN_TYPE]) {
1302 type = nf_tables_chain_type_lookup(afi,
1303 nla[NFTA_CHAIN_TYPE],
1304 create);
Patrick McHardy93b08062014-01-09 18:42:36 +00001305 if (IS_ERR(type))
1306 return PTR_ERR(type);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001307 }
Patrick McHardy96518512013-10-14 11:00:02 +02001308
1309 err = nla_parse_nested(ha, NFTA_HOOK_MAX, nla[NFTA_CHAIN_HOOK],
1310 nft_hook_policy);
1311 if (err < 0)
1312 return err;
1313 if (ha[NFTA_HOOK_HOOKNUM] == NULL ||
1314 ha[NFTA_HOOK_PRIORITY] == NULL)
1315 return -EINVAL;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001316
1317 hooknum = ntohl(nla_get_be32(ha[NFTA_HOOK_HOOKNUM]));
1318 if (hooknum >= afi->nhooks)
Patrick McHardy96518512013-10-14 11:00:02 +02001319 return -EINVAL;
Patrick McHardy115a60b2014-01-03 12:16:15 +00001320 priority = ntohl(nla_get_be32(ha[NFTA_HOOK_PRIORITY]));
Patrick McHardy96518512013-10-14 11:00:02 +02001321
Patrick McHardybaae3e62014-01-09 18:42:34 +00001322 if (!(type->hook_mask & (1 << hooknum)))
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001323 return -EOPNOTSUPP;
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001324 if (!try_module_get(type->owner))
Patrick McHardybaae3e62014-01-09 18:42:34 +00001325 return -ENOENT;
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001326 hookfn = type->hooks[hooknum];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001327
Patrick McHardy96518512013-10-14 11:00:02 +02001328 basechain = kzalloc(sizeof(*basechain), GFP_KERNEL);
Pablo Neira Ayusof5553c12015-01-29 19:08:09 +01001329 if (basechain == NULL) {
1330 module_put(type->owner);
Patrick McHardy96518512013-10-14 11:00:02 +02001331 return -ENOMEM;
Pablo Neira Ayusof5553c12015-01-29 19:08:09 +01001332 }
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001333
Patrick McHardy4401a862014-01-09 18:42:32 +00001334 if (nla[NFTA_CHAIN_COUNTERS]) {
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001335 stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1336 if (IS_ERR(stats)) {
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001337 module_put(type->owner);
Patrick McHardy4401a862014-01-09 18:42:32 +00001338 kfree(basechain);
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001339 return PTR_ERR(stats);
Patrick McHardy4401a862014-01-09 18:42:32 +00001340 }
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001341 basechain->stats = stats;
Patrick McHardy4401a862014-01-09 18:42:32 +00001342 } else {
Eric Dumazetce355e22014-07-09 15:14:06 +02001343 stats = netdev_alloc_pcpu_stats(struct nft_stats);
Sabrina Dubrocac123bb72014-10-21 11:08:21 +02001344 if (stats == NULL) {
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001345 module_put(type->owner);
Patrick McHardy4401a862014-01-09 18:42:32 +00001346 kfree(basechain);
Sabrina Dubrocac123bb72014-10-21 11:08:21 +02001347 return -ENOMEM;
Patrick McHardy4401a862014-01-09 18:42:32 +00001348 }
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001349 rcu_assign_pointer(basechain->stats, stats);
Patrick McHardy4401a862014-01-09 18:42:32 +00001350 }
1351
Patrick McHardy5ebb3352015-03-21 15:19:15 +00001352 write_pnet(&basechain->pnet, net);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001353 basechain->type = type;
Patrick McHardy96518512013-10-14 11:00:02 +02001354 chain = &basechain->chain;
1355
Patrick McHardy115a60b2014-01-03 12:16:15 +00001356 for (i = 0; i < afi->nops; i++) {
1357 ops = &basechain->ops[i];
1358 ops->pf = family;
1359 ops->owner = afi->owner;
1360 ops->hooknum = hooknum;
1361 ops->priority = priority;
1362 ops->priv = chain;
1363 ops->hook = afi->hooks[ops->hooknum];
1364 if (hookfn)
1365 ops->hook = hookfn;
1366 if (afi->hook_ops_init)
1367 afi->hook_ops_init(ops, i);
1368 }
Patrick McHardy96518512013-10-14 11:00:02 +02001369
1370 chain->flags |= NFT_BASE_CHAIN;
Patrick McHardy57de2a02014-01-09 18:42:31 +00001371 basechain->policy = policy;
Patrick McHardy96518512013-10-14 11:00:02 +02001372 } else {
1373 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
1374 if (chain == NULL)
1375 return -ENOMEM;
1376 }
1377
1378 INIT_LIST_HEAD(&chain->rules);
1379 chain->handle = nf_tables_alloc_handle(table);
Pablo Neira Ayusob5bc89b2013-10-10 16:49:19 +02001380 chain->table = table;
Patrick McHardy96518512013-10-14 11:00:02 +02001381 nla_strlcpy(chain->name, name, NFT_CHAIN_MAXNAMELEN);
1382
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +02001383 if (!(table->flags & NFT_TABLE_F_DORMANT) &&
1384 chain->flags & NFT_BASE_CHAIN) {
Patrick McHardy115a60b2014-01-03 12:16:15 +00001385 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001386 if (err < 0)
1387 goto err1;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001388 }
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001389
1390 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1391 err = nft_trans_chain_add(&ctx, NFT_MSG_NEWCHAIN);
1392 if (err < 0)
1393 goto err2;
1394
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001395 table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001396 list_add_tail_rcu(&chain->list, &table->chains);
Patrick McHardy96518512013-10-14 11:00:02 +02001397 return 0;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001398err2:
Arturo Borreroc5598792014-09-02 16:42:23 +02001399 nf_tables_unregister_hooks(table, chain, afi->nops);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001400err1:
1401 nf_tables_chain_destroy(chain);
1402 return err;
Patrick McHardy96518512013-10-14 11:00:02 +02001403}
1404
1405static int nf_tables_delchain(struct sock *nlsk, struct sk_buff *skb,
1406 const struct nlmsghdr *nlh,
1407 const struct nlattr * const nla[])
1408{
1409 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001410 struct nft_af_info *afi;
Patrick McHardy96518512013-10-14 11:00:02 +02001411 struct nft_table *table;
1412 struct nft_chain *chain;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001413 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001414 int family = nfmsg->nfgen_family;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001415 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +02001416
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001417 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001418 if (IS_ERR(afi))
1419 return PTR_ERR(afi);
1420
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001421 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001422 if (IS_ERR(table))
1423 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001424 if (table->flags & NFT_TABLE_INACTIVE)
1425 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001426
1427 chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
1428 if (IS_ERR(chain))
1429 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001430 if (chain->flags & NFT_CHAIN_INACTIVE)
1431 return -ENOENT;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001432 if (chain->use > 0)
Patrick McHardy96518512013-10-14 11:00:02 +02001433 return -EBUSY;
1434
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001435 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001436
Arturo Borreroee01d542014-09-02 16:42:25 +02001437 return nft_delchain(&ctx);
Patrick McHardy96518512013-10-14 11:00:02 +02001438}
1439
Patrick McHardy96518512013-10-14 11:00:02 +02001440/*
1441 * Expressions
1442 */
1443
1444/**
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001445 * nft_register_expr - register nf_tables expr type
1446 * @ops: expr type
Patrick McHardy96518512013-10-14 11:00:02 +02001447 *
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001448 * Registers the expr type for use with nf_tables. Returns zero on
Patrick McHardy96518512013-10-14 11:00:02 +02001449 * success or a negative errno code otherwise.
1450 */
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001451int nft_register_expr(struct nft_expr_type *type)
Patrick McHardy96518512013-10-14 11:00:02 +02001452{
1453 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Tomasz Bursztyka758dbce2014-04-14 15:41:26 +03001454 if (type->family == NFPROTO_UNSPEC)
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001455 list_add_tail_rcu(&type->list, &nf_tables_expressions);
Tomasz Bursztyka758dbce2014-04-14 15:41:26 +03001456 else
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001457 list_add_rcu(&type->list, &nf_tables_expressions);
Patrick McHardy96518512013-10-14 11:00:02 +02001458 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1459 return 0;
1460}
1461EXPORT_SYMBOL_GPL(nft_register_expr);
1462
1463/**
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001464 * nft_unregister_expr - unregister nf_tables expr type
1465 * @ops: expr type
Patrick McHardy96518512013-10-14 11:00:02 +02001466 *
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001467 * Unregisters the expr typefor use with nf_tables.
Patrick McHardy96518512013-10-14 11:00:02 +02001468 */
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001469void nft_unregister_expr(struct nft_expr_type *type)
Patrick McHardy96518512013-10-14 11:00:02 +02001470{
1471 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001472 list_del_rcu(&type->list);
Patrick McHardy96518512013-10-14 11:00:02 +02001473 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1474}
1475EXPORT_SYMBOL_GPL(nft_unregister_expr);
1476
Patrick McHardy64d46802014-02-05 15:03:37 +00001477static const struct nft_expr_type *__nft_expr_type_get(u8 family,
1478 struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +02001479{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001480 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001481
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001482 list_for_each_entry(type, &nf_tables_expressions, list) {
Patrick McHardy64d46802014-02-05 15:03:37 +00001483 if (!nla_strcmp(nla, type->name) &&
1484 (!type->family || type->family == family))
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001485 return type;
Patrick McHardy96518512013-10-14 11:00:02 +02001486 }
1487 return NULL;
1488}
1489
Patrick McHardy64d46802014-02-05 15:03:37 +00001490static const struct nft_expr_type *nft_expr_type_get(u8 family,
1491 struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +02001492{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001493 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001494
1495 if (nla == NULL)
1496 return ERR_PTR(-EINVAL);
1497
Patrick McHardy64d46802014-02-05 15:03:37 +00001498 type = __nft_expr_type_get(family, nla);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001499 if (type != NULL && try_module_get(type->owner))
1500 return type;
Patrick McHardy96518512013-10-14 11:00:02 +02001501
1502#ifdef CONFIG_MODULES
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001503 if (type == NULL) {
Patrick McHardy96518512013-10-14 11:00:02 +02001504 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy64d46802014-02-05 15:03:37 +00001505 request_module("nft-expr-%u-%.*s", family,
1506 nla_len(nla), (char *)nla_data(nla));
1507 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1508 if (__nft_expr_type_get(family, nla))
1509 return ERR_PTR(-EAGAIN);
1510
1511 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy96518512013-10-14 11:00:02 +02001512 request_module("nft-expr-%.*s",
1513 nla_len(nla), (char *)nla_data(nla));
1514 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy64d46802014-02-05 15:03:37 +00001515 if (__nft_expr_type_get(family, nla))
Patrick McHardy96518512013-10-14 11:00:02 +02001516 return ERR_PTR(-EAGAIN);
1517 }
1518#endif
1519 return ERR_PTR(-ENOENT);
1520}
1521
1522static const struct nla_policy nft_expr_policy[NFTA_EXPR_MAX + 1] = {
1523 [NFTA_EXPR_NAME] = { .type = NLA_STRING },
1524 [NFTA_EXPR_DATA] = { .type = NLA_NESTED },
1525};
1526
1527static int nf_tables_fill_expr_info(struct sk_buff *skb,
1528 const struct nft_expr *expr)
1529{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001530 if (nla_put_string(skb, NFTA_EXPR_NAME, expr->ops->type->name))
Patrick McHardy96518512013-10-14 11:00:02 +02001531 goto nla_put_failure;
1532
1533 if (expr->ops->dump) {
1534 struct nlattr *data = nla_nest_start(skb, NFTA_EXPR_DATA);
1535 if (data == NULL)
1536 goto nla_put_failure;
1537 if (expr->ops->dump(skb, expr) < 0)
1538 goto nla_put_failure;
1539 nla_nest_end(skb, data);
1540 }
1541
1542 return skb->len;
1543
1544nla_put_failure:
1545 return -1;
1546};
1547
1548struct nft_expr_info {
1549 const struct nft_expr_ops *ops;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001550 struct nlattr *tb[NFT_EXPR_MAXATTR + 1];
Patrick McHardy96518512013-10-14 11:00:02 +02001551};
1552
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001553static int nf_tables_expr_parse(const struct nft_ctx *ctx,
1554 const struct nlattr *nla,
Patrick McHardy96518512013-10-14 11:00:02 +02001555 struct nft_expr_info *info)
1556{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001557 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001558 const struct nft_expr_ops *ops;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001559 struct nlattr *tb[NFTA_EXPR_MAX + 1];
Patrick McHardy96518512013-10-14 11:00:02 +02001560 int err;
1561
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001562 err = nla_parse_nested(tb, NFTA_EXPR_MAX, nla, nft_expr_policy);
Patrick McHardy96518512013-10-14 11:00:02 +02001563 if (err < 0)
1564 return err;
1565
Patrick McHardy64d46802014-02-05 15:03:37 +00001566 type = nft_expr_type_get(ctx->afi->family, tb[NFTA_EXPR_NAME]);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001567 if (IS_ERR(type))
1568 return PTR_ERR(type);
1569
1570 if (tb[NFTA_EXPR_DATA]) {
1571 err = nla_parse_nested(info->tb, type->maxattr,
1572 tb[NFTA_EXPR_DATA], type->policy);
1573 if (err < 0)
1574 goto err1;
1575 } else
1576 memset(info->tb, 0, sizeof(info->tb[0]) * (type->maxattr + 1));
1577
1578 if (type->select_ops != NULL) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001579 ops = type->select_ops(ctx,
1580 (const struct nlattr * const *)info->tb);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001581 if (IS_ERR(ops)) {
1582 err = PTR_ERR(ops);
1583 goto err1;
1584 }
1585 } else
1586 ops = type->ops;
1587
Patrick McHardy96518512013-10-14 11:00:02 +02001588 info->ops = ops;
1589 return 0;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001590
1591err1:
1592 module_put(type->owner);
1593 return err;
Patrick McHardy96518512013-10-14 11:00:02 +02001594}
1595
1596static int nf_tables_newexpr(const struct nft_ctx *ctx,
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001597 const struct nft_expr_info *info,
Patrick McHardy96518512013-10-14 11:00:02 +02001598 struct nft_expr *expr)
1599{
1600 const struct nft_expr_ops *ops = info->ops;
1601 int err;
1602
1603 expr->ops = ops;
1604 if (ops->init) {
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001605 err = ops->init(ctx, expr, (const struct nlattr **)info->tb);
Patrick McHardy96518512013-10-14 11:00:02 +02001606 if (err < 0)
1607 goto err1;
1608 }
1609
Patrick McHardy96518512013-10-14 11:00:02 +02001610 return 0;
1611
1612err1:
1613 expr->ops = NULL;
1614 return err;
1615}
1616
Patrick McHardy62472bc2014-03-07 19:08:30 +01001617static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
1618 struct nft_expr *expr)
Patrick McHardy96518512013-10-14 11:00:02 +02001619{
1620 if (expr->ops->destroy)
Patrick McHardy62472bc2014-03-07 19:08:30 +01001621 expr->ops->destroy(ctx, expr);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001622 module_put(expr->ops->type->owner);
Patrick McHardy96518512013-10-14 11:00:02 +02001623}
1624
1625/*
1626 * Rules
1627 */
1628
1629static struct nft_rule *__nf_tables_rule_lookup(const struct nft_chain *chain,
1630 u64 handle)
1631{
1632 struct nft_rule *rule;
1633
1634 // FIXME: this sucks
1635 list_for_each_entry(rule, &chain->rules, list) {
1636 if (handle == rule->handle)
1637 return rule;
1638 }
1639
1640 return ERR_PTR(-ENOENT);
1641}
1642
1643static struct nft_rule *nf_tables_rule_lookup(const struct nft_chain *chain,
1644 const struct nlattr *nla)
1645{
1646 if (nla == NULL)
1647 return ERR_PTR(-EINVAL);
1648
1649 return __nf_tables_rule_lookup(chain, be64_to_cpu(nla_get_be64(nla)));
1650}
1651
1652static const struct nla_policy nft_rule_policy[NFTA_RULE_MAX + 1] = {
1653 [NFTA_RULE_TABLE] = { .type = NLA_STRING },
1654 [NFTA_RULE_CHAIN] = { .type = NLA_STRING,
1655 .len = NFT_CHAIN_MAXNAMELEN - 1 },
1656 [NFTA_RULE_HANDLE] = { .type = NLA_U64 },
1657 [NFTA_RULE_EXPRESSIONS] = { .type = NLA_NESTED },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001658 [NFTA_RULE_COMPAT] = { .type = NLA_NESTED },
Eric Leblond5e948462013-10-10 13:41:44 +02001659 [NFTA_RULE_POSITION] = { .type = NLA_U64 },
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001660 [NFTA_RULE_USERDATA] = { .type = NLA_BINARY,
1661 .len = NFT_USERDATA_MAXLEN },
Patrick McHardy96518512013-10-14 11:00:02 +02001662};
1663
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001664static int nf_tables_fill_rule_info(struct sk_buff *skb, struct net *net,
1665 u32 portid, u32 seq, int event,
1666 u32 flags, int family,
Patrick McHardy96518512013-10-14 11:00:02 +02001667 const struct nft_table *table,
1668 const struct nft_chain *chain,
1669 const struct nft_rule *rule)
1670{
1671 struct nlmsghdr *nlh;
1672 struct nfgenmsg *nfmsg;
1673 const struct nft_expr *expr, *next;
1674 struct nlattr *list;
Eric Leblond5e948462013-10-10 13:41:44 +02001675 const struct nft_rule *prule;
1676 int type = event | NFNL_SUBSYS_NFTABLES << 8;
Patrick McHardy96518512013-10-14 11:00:02 +02001677
Eric Leblond5e948462013-10-10 13:41:44 +02001678 nlh = nlmsg_put(skb, portid, seq, type, sizeof(struct nfgenmsg),
Patrick McHardy96518512013-10-14 11:00:02 +02001679 flags);
1680 if (nlh == NULL)
1681 goto nla_put_failure;
1682
1683 nfmsg = nlmsg_data(nlh);
1684 nfmsg->nfgen_family = family;
1685 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001686 nfmsg->res_id = htons(net->nft.base_seq & 0xffff);
Patrick McHardy96518512013-10-14 11:00:02 +02001687
1688 if (nla_put_string(skb, NFTA_RULE_TABLE, table->name))
1689 goto nla_put_failure;
1690 if (nla_put_string(skb, NFTA_RULE_CHAIN, chain->name))
1691 goto nla_put_failure;
1692 if (nla_put_be64(skb, NFTA_RULE_HANDLE, cpu_to_be64(rule->handle)))
1693 goto nla_put_failure;
1694
Eric Leblond5e948462013-10-10 13:41:44 +02001695 if ((event != NFT_MSG_DELRULE) && (rule->list.prev != &chain->rules)) {
1696 prule = list_entry(rule->list.prev, struct nft_rule, list);
1697 if (nla_put_be64(skb, NFTA_RULE_POSITION,
1698 cpu_to_be64(prule->handle)))
1699 goto nla_put_failure;
1700 }
1701
Patrick McHardy96518512013-10-14 11:00:02 +02001702 list = nla_nest_start(skb, NFTA_RULE_EXPRESSIONS);
1703 if (list == NULL)
1704 goto nla_put_failure;
1705 nft_rule_for_each_expr(expr, next, rule) {
1706 struct nlattr *elem = nla_nest_start(skb, NFTA_LIST_ELEM);
1707 if (elem == NULL)
1708 goto nla_put_failure;
1709 if (nf_tables_fill_expr_info(skb, expr) < 0)
1710 goto nla_put_failure;
1711 nla_nest_end(skb, elem);
1712 }
1713 nla_nest_end(skb, list);
1714
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001715 if (rule->udata) {
1716 struct nft_userdata *udata = nft_userdata(rule);
1717 if (nla_put(skb, NFTA_RULE_USERDATA, udata->len + 1,
1718 udata->data) < 0)
1719 goto nla_put_failure;
1720 }
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001721
Johannes Berg053c0952015-01-16 22:09:00 +01001722 nlmsg_end(skb, nlh);
1723 return 0;
Patrick McHardy96518512013-10-14 11:00:02 +02001724
1725nla_put_failure:
1726 nlmsg_trim(skb, nlh);
1727 return -1;
1728}
1729
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001730static int nf_tables_rule_notify(const struct nft_ctx *ctx,
Patrick McHardy96518512013-10-14 11:00:02 +02001731 const struct nft_rule *rule,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001732 int event)
Patrick McHardy96518512013-10-14 11:00:02 +02001733{
1734 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +02001735 int err;
1736
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001737 if (!ctx->report &&
1738 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +02001739 return 0;
1740
1741 err = -ENOBUFS;
1742 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1743 if (skb == NULL)
1744 goto err;
1745
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001746 err = nf_tables_fill_rule_info(skb, ctx->net, ctx->portid, ctx->seq,
1747 event, 0, ctx->afi->family, ctx->table,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001748 ctx->chain, rule);
Patrick McHardy96518512013-10-14 11:00:02 +02001749 if (err < 0) {
1750 kfree_skb(skb);
1751 goto err;
1752 }
1753
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001754 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1755 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +02001756err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001757 if (err < 0) {
1758 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1759 err);
1760 }
Patrick McHardy96518512013-10-14 11:00:02 +02001761 return err;
1762}
1763
1764static int nf_tables_dump_rules(struct sk_buff *skb,
1765 struct netlink_callback *cb)
1766{
1767 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1768 const struct nft_af_info *afi;
1769 const struct nft_table *table;
1770 const struct nft_chain *chain;
1771 const struct nft_rule *rule;
1772 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001773 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001774 int family = nfmsg->nfgen_family;
1775
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001776 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001777 cb->seq = net->nft.base_seq;
1778
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001779 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +02001780 if (family != NFPROTO_UNSPEC && family != afi->family)
1781 continue;
1782
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001783 list_for_each_entry_rcu(table, &afi->tables, list) {
1784 list_for_each_entry_rcu(chain, &table->chains, list) {
1785 list_for_each_entry_rcu(rule, &chain->rules, list) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001786 if (!nft_rule_is_active(net, rule))
1787 goto cont;
Patrick McHardy96518512013-10-14 11:00:02 +02001788 if (idx < s_idx)
1789 goto cont;
1790 if (idx > s_idx)
1791 memset(&cb->args[1], 0,
1792 sizeof(cb->args) - sizeof(cb->args[0]));
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001793 if (nf_tables_fill_rule_info(skb, net, NETLINK_CB(cb->skb).portid,
Patrick McHardy96518512013-10-14 11:00:02 +02001794 cb->nlh->nlmsg_seq,
1795 NFT_MSG_NEWRULE,
1796 NLM_F_MULTI | NLM_F_APPEND,
1797 afi->family, table, chain, rule) < 0)
1798 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001799
1800 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +02001801cont:
1802 idx++;
1803 }
1804 }
1805 }
1806 }
1807done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001808 rcu_read_unlock();
1809
Patrick McHardy96518512013-10-14 11:00:02 +02001810 cb->args[0] = idx;
1811 return skb->len;
1812}
1813
1814static int nf_tables_getrule(struct sock *nlsk, struct sk_buff *skb,
1815 const struct nlmsghdr *nlh,
1816 const struct nlattr * const nla[])
1817{
1818 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1819 const struct nft_af_info *afi;
1820 const struct nft_table *table;
1821 const struct nft_chain *chain;
1822 const struct nft_rule *rule;
1823 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001824 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001825 int family = nfmsg->nfgen_family;
1826 int err;
1827
1828 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1829 struct netlink_dump_control c = {
1830 .dump = nf_tables_dump_rules,
1831 };
1832 return netlink_dump_start(nlsk, skb, nlh, &c);
1833 }
1834
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001835 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001836 if (IS_ERR(afi))
1837 return PTR_ERR(afi);
1838
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001839 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001840 if (IS_ERR(table))
1841 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001842 if (table->flags & NFT_TABLE_INACTIVE)
1843 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001844
1845 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1846 if (IS_ERR(chain))
1847 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001848 if (chain->flags & NFT_CHAIN_INACTIVE)
1849 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001850
1851 rule = nf_tables_rule_lookup(chain, nla[NFTA_RULE_HANDLE]);
1852 if (IS_ERR(rule))
1853 return PTR_ERR(rule);
1854
1855 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1856 if (!skb2)
1857 return -ENOMEM;
1858
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02001859 err = nf_tables_fill_rule_info(skb2, net, NETLINK_CB(skb).portid,
Patrick McHardy96518512013-10-14 11:00:02 +02001860 nlh->nlmsg_seq, NFT_MSG_NEWRULE, 0,
1861 family, table, chain, rule);
1862 if (err < 0)
1863 goto err;
1864
1865 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1866
1867err:
1868 kfree_skb(skb2);
1869 return err;
1870}
1871
Patrick McHardy62472bc2014-03-07 19:08:30 +01001872static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
1873 struct nft_rule *rule)
Patrick McHardy96518512013-10-14 11:00:02 +02001874{
Patrick McHardy96518512013-10-14 11:00:02 +02001875 struct nft_expr *expr;
1876
1877 /*
1878 * Careful: some expressions might not be initialized in case this
1879 * is called on error from nf_tables_newrule().
1880 */
1881 expr = nft_expr_first(rule);
1882 while (expr->ops && expr != nft_expr_last(rule)) {
Patrick McHardy62472bc2014-03-07 19:08:30 +01001883 nf_tables_expr_destroy(ctx, expr);
Patrick McHardy96518512013-10-14 11:00:02 +02001884 expr = nft_expr_next(expr);
1885 }
1886 kfree(rule);
1887}
1888
Patrick McHardy96518512013-10-14 11:00:02 +02001889#define NFT_RULE_MAXEXPRS 128
1890
1891static struct nft_expr_info *info;
1892
1893static int nf_tables_newrule(struct sock *nlsk, struct sk_buff *skb,
1894 const struct nlmsghdr *nlh,
1895 const struct nlattr * const nla[])
1896{
1897 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001898 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001899 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001900 struct nft_table *table;
1901 struct nft_chain *chain;
1902 struct nft_rule *rule, *old_rule = NULL;
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001903 struct nft_userdata *udata;
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001904 struct nft_trans *trans = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +02001905 struct nft_expr *expr;
1906 struct nft_ctx ctx;
1907 struct nlattr *tmp;
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001908 unsigned int size, i, n, ulen = 0, usize = 0;
Patrick McHardy96518512013-10-14 11:00:02 +02001909 int err, rem;
1910 bool create;
Eric Leblond5e948462013-10-10 13:41:44 +02001911 u64 handle, pos_handle;
Patrick McHardy96518512013-10-14 11:00:02 +02001912
1913 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1914
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001915 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
Patrick McHardy96518512013-10-14 11:00:02 +02001916 if (IS_ERR(afi))
1917 return PTR_ERR(afi);
1918
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001919 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001920 if (IS_ERR(table))
1921 return PTR_ERR(table);
1922
1923 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1924 if (IS_ERR(chain))
1925 return PTR_ERR(chain);
1926
1927 if (nla[NFTA_RULE_HANDLE]) {
1928 handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_HANDLE]));
1929 rule = __nf_tables_rule_lookup(chain, handle);
1930 if (IS_ERR(rule))
1931 return PTR_ERR(rule);
1932
1933 if (nlh->nlmsg_flags & NLM_F_EXCL)
1934 return -EEXIST;
1935 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1936 old_rule = rule;
1937 else
1938 return -EOPNOTSUPP;
1939 } else {
1940 if (!create || nlh->nlmsg_flags & NLM_F_REPLACE)
1941 return -EINVAL;
1942 handle = nf_tables_alloc_handle(table);
Pablo Neira Ayusoa0a73792014-06-10 10:53:01 +02001943
1944 if (chain->use == UINT_MAX)
1945 return -EOVERFLOW;
Patrick McHardy96518512013-10-14 11:00:02 +02001946 }
1947
Eric Leblond5e948462013-10-10 13:41:44 +02001948 if (nla[NFTA_RULE_POSITION]) {
1949 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1950 return -EOPNOTSUPP;
1951
1952 pos_handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_POSITION]));
1953 old_rule = __nf_tables_rule_lookup(chain, pos_handle);
1954 if (IS_ERR(old_rule))
1955 return PTR_ERR(old_rule);
1956 }
1957
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001958 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1959
Patrick McHardy96518512013-10-14 11:00:02 +02001960 n = 0;
1961 size = 0;
1962 if (nla[NFTA_RULE_EXPRESSIONS]) {
1963 nla_for_each_nested(tmp, nla[NFTA_RULE_EXPRESSIONS], rem) {
1964 err = -EINVAL;
1965 if (nla_type(tmp) != NFTA_LIST_ELEM)
1966 goto err1;
1967 if (n == NFT_RULE_MAXEXPRS)
1968 goto err1;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001969 err = nf_tables_expr_parse(&ctx, tmp, &info[n]);
Patrick McHardy96518512013-10-14 11:00:02 +02001970 if (err < 0)
1971 goto err1;
1972 size += info[n].ops->size;
1973 n++;
1974 }
1975 }
Patrick McHardy98898402015-03-03 20:04:19 +00001976 /* Check for overflow of dlen field */
1977 err = -EFBIG;
1978 if (size >= 1 << 12)
1979 goto err1;
Patrick McHardy96518512013-10-14 11:00:02 +02001980
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001981 if (nla[NFTA_RULE_USERDATA]) {
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001982 ulen = nla_len(nla[NFTA_RULE_USERDATA]);
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001983 if (ulen > 0)
1984 usize = sizeof(struct nft_userdata) + ulen;
1985 }
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001986
Patrick McHardy96518512013-10-14 11:00:02 +02001987 err = -ENOMEM;
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001988 rule = kzalloc(sizeof(*rule) + size + usize, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +02001989 if (rule == NULL)
1990 goto err1;
1991
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001992 nft_rule_activate_next(net, rule);
1993
Patrick McHardy96518512013-10-14 11:00:02 +02001994 rule->handle = handle;
1995 rule->dlen = size;
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001996 rule->udata = ulen ? 1 : 0;
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001997
Patrick McHardy86f1ec32015-03-03 20:04:20 +00001998 if (ulen) {
1999 udata = nft_userdata(rule);
2000 udata->len = ulen - 1;
2001 nla_memcpy(udata->data, nla[NFTA_RULE_USERDATA], ulen);
2002 }
Patrick McHardy96518512013-10-14 11:00:02 +02002003
Patrick McHardy96518512013-10-14 11:00:02 +02002004 expr = nft_expr_first(rule);
2005 for (i = 0; i < n; i++) {
2006 err = nf_tables_newexpr(&ctx, &info[i], expr);
2007 if (err < 0)
2008 goto err2;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02002009 info[i].ops = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +02002010 expr = nft_expr_next(expr);
2011 }
2012
Patrick McHardy96518512013-10-14 11:00:02 +02002013 if (nlh->nlmsg_flags & NLM_F_REPLACE) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002014 if (nft_rule_is_active_next(net, old_rule)) {
Pablo Neira Ayusoac904ac2014-06-10 10:53:03 +02002015 trans = nft_trans_rule_add(&ctx, NFT_MSG_DELRULE,
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02002016 old_rule);
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02002017 if (trans == NULL) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002018 err = -ENOMEM;
2019 goto err2;
2020 }
Arturo Borreroee01d542014-09-02 16:42:25 +02002021 nft_rule_deactivate_next(net, old_rule);
Pablo Neira Ayusoac34b862014-06-10 10:53:02 +02002022 chain->use--;
Pablo Neira Ayuso5bc5c302014-06-10 10:53:00 +02002023 list_add_tail_rcu(&rule->list, &old_rule->list);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002024 } else {
2025 err = -ENOENT;
2026 goto err2;
2027 }
Patrick McHardy96518512013-10-14 11:00:02 +02002028 } else if (nlh->nlmsg_flags & NLM_F_APPEND)
Eric Leblond5e948462013-10-10 13:41:44 +02002029 if (old_rule)
2030 list_add_rcu(&rule->list, &old_rule->list);
2031 else
2032 list_add_tail_rcu(&rule->list, &chain->rules);
2033 else {
2034 if (old_rule)
2035 list_add_tail_rcu(&rule->list, &old_rule->list);
2036 else
2037 list_add_rcu(&rule->list, &chain->rules);
2038 }
Patrick McHardy96518512013-10-14 11:00:02 +02002039
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02002040 if (nft_trans_rule_add(&ctx, NFT_MSG_NEWRULE, rule) == NULL) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002041 err = -ENOMEM;
2042 goto err3;
2043 }
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02002044 chain->use++;
Patrick McHardy96518512013-10-14 11:00:02 +02002045 return 0;
2046
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002047err3:
2048 list_del_rcu(&rule->list);
Patrick McHardy96518512013-10-14 11:00:02 +02002049err2:
Patrick McHardy62472bc2014-03-07 19:08:30 +01002050 nf_tables_rule_destroy(&ctx, rule);
Patrick McHardy96518512013-10-14 11:00:02 +02002051err1:
2052 for (i = 0; i < n; i++) {
2053 if (info[i].ops != NULL)
Patrick McHardyef1f7df2013-10-10 11:41:20 +02002054 module_put(info[i].ops->type->owner);
Patrick McHardy96518512013-10-14 11:00:02 +02002055 }
2056 return err;
2057}
2058
2059static int nf_tables_delrule(struct sock *nlsk, struct sk_buff *skb,
2060 const struct nlmsghdr *nlh,
2061 const struct nlattr * const nla[])
2062{
2063 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002064 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002065 struct net *net = sock_net(skb->sk);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002066 struct nft_table *table;
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01002067 struct nft_chain *chain = NULL;
2068 struct nft_rule *rule;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002069 int family = nfmsg->nfgen_family, err = 0;
2070 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +02002071
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002072 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02002073 if (IS_ERR(afi))
2074 return PTR_ERR(afi);
2075
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002076 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02002077 if (IS_ERR(table))
2078 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002079 if (table->flags & NFT_TABLE_INACTIVE)
2080 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02002081
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01002082 if (nla[NFTA_RULE_CHAIN]) {
2083 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
2084 if (IS_ERR(chain))
2085 return PTR_ERR(chain);
2086 }
Patrick McHardy96518512013-10-14 11:00:02 +02002087
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002088 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
2089
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01002090 if (chain) {
2091 if (nla[NFTA_RULE_HANDLE]) {
2092 rule = nf_tables_rule_lookup(chain,
2093 nla[NFTA_RULE_HANDLE]);
2094 if (IS_ERR(rule))
2095 return PTR_ERR(rule);
Patrick McHardy96518512013-10-14 11:00:02 +02002096
Arturo Borrero5e266fe2014-09-02 16:42:21 +02002097 err = nft_delrule(&ctx, rule);
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01002098 } else {
Arturo Borreroce24b722014-09-02 16:42:24 +02002099 err = nft_delrule_by_chain(&ctx);
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01002100 }
2101 } else {
2102 list_for_each_entry(chain, &table->chains, list) {
2103 ctx.chain = chain;
Arturo Borreroce24b722014-09-02 16:42:24 +02002104 err = nft_delrule_by_chain(&ctx);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002105 if (err < 0)
2106 break;
Patrick McHardy96518512013-10-14 11:00:02 +02002107 }
2108 }
2109
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02002110 return err;
2111}
2112
Patrick McHardy20a69342013-10-11 12:06:22 +02002113/*
2114 * Sets
2115 */
2116
2117static LIST_HEAD(nf_tables_set_ops);
2118
2119int nft_register_set(struct nft_set_ops *ops)
2120{
2121 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002122 list_add_tail_rcu(&ops->list, &nf_tables_set_ops);
Patrick McHardy20a69342013-10-11 12:06:22 +02002123 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2124 return 0;
2125}
2126EXPORT_SYMBOL_GPL(nft_register_set);
2127
2128void nft_unregister_set(struct nft_set_ops *ops)
2129{
2130 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002131 list_del_rcu(&ops->list);
Patrick McHardy20a69342013-10-11 12:06:22 +02002132 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2133}
2134EXPORT_SYMBOL_GPL(nft_unregister_set);
2135
Patrick McHardyc50b9602014-03-28 10:19:47 +00002136/*
2137 * Select a set implementation based on the data characteristics and the
2138 * given policy. The total memory use might not be known if no size is
2139 * given, in that case the amount of memory per element is used.
2140 */
2141static const struct nft_set_ops *
2142nft_select_set_ops(const struct nlattr * const nla[],
2143 const struct nft_set_desc *desc,
2144 enum nft_set_policies policy)
Patrick McHardy20a69342013-10-11 12:06:22 +02002145{
Patrick McHardyc50b9602014-03-28 10:19:47 +00002146 const struct nft_set_ops *ops, *bops;
2147 struct nft_set_estimate est, best;
Patrick McHardy20a69342013-10-11 12:06:22 +02002148 u32 features;
2149
2150#ifdef CONFIG_MODULES
2151 if (list_empty(&nf_tables_set_ops)) {
2152 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
2153 request_module("nft-set");
2154 nfnl_lock(NFNL_SUBSYS_NFTABLES);
2155 if (!list_empty(&nf_tables_set_ops))
2156 return ERR_PTR(-EAGAIN);
2157 }
2158#endif
2159 features = 0;
2160 if (nla[NFTA_SET_FLAGS] != NULL) {
2161 features = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
Patrick McHardy4a8678e2015-04-05 14:41:05 +02002162 features &= NFT_SET_INTERVAL | NFT_SET_MAP | NFT_SET_TIMEOUT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002163 }
2164
Patrick McHardyc50b9602014-03-28 10:19:47 +00002165 bops = NULL;
2166 best.size = ~0;
2167 best.class = ~0;
2168
Patrick McHardy20a69342013-10-11 12:06:22 +02002169 list_for_each_entry(ops, &nf_tables_set_ops, list) {
2170 if ((ops->features & features) != features)
2171 continue;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002172 if (!ops->estimate(desc, features, &est))
2173 continue;
2174
2175 switch (policy) {
2176 case NFT_SET_POL_PERFORMANCE:
2177 if (est.class < best.class)
2178 break;
2179 if (est.class == best.class && est.size < best.size)
2180 break;
2181 continue;
2182 case NFT_SET_POL_MEMORY:
2183 if (est.size < best.size)
2184 break;
2185 if (est.size == best.size && est.class < best.class)
2186 break;
2187 continue;
2188 default:
2189 break;
2190 }
2191
Patrick McHardy20a69342013-10-11 12:06:22 +02002192 if (!try_module_get(ops->owner))
2193 continue;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002194 if (bops != NULL)
2195 module_put(bops->owner);
2196
2197 bops = ops;
2198 best = est;
Patrick McHardy20a69342013-10-11 12:06:22 +02002199 }
2200
Patrick McHardyc50b9602014-03-28 10:19:47 +00002201 if (bops != NULL)
2202 return bops;
2203
Patrick McHardy20a69342013-10-11 12:06:22 +02002204 return ERR_PTR(-EOPNOTSUPP);
2205}
2206
2207static const struct nla_policy nft_set_policy[NFTA_SET_MAX + 1] = {
2208 [NFTA_SET_TABLE] = { .type = NLA_STRING },
Pablo Neira Ayusoa9bdd832014-03-24 15:10:37 +01002209 [NFTA_SET_NAME] = { .type = NLA_STRING,
2210 .len = IFNAMSIZ - 1 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002211 [NFTA_SET_FLAGS] = { .type = NLA_U32 },
2212 [NFTA_SET_KEY_TYPE] = { .type = NLA_U32 },
2213 [NFTA_SET_KEY_LEN] = { .type = NLA_U32 },
2214 [NFTA_SET_DATA_TYPE] = { .type = NLA_U32 },
2215 [NFTA_SET_DATA_LEN] = { .type = NLA_U32 },
Patrick McHardyc50b9602014-03-28 10:19:47 +00002216 [NFTA_SET_POLICY] = { .type = NLA_U32 },
2217 [NFTA_SET_DESC] = { .type = NLA_NESTED },
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002218 [NFTA_SET_ID] = { .type = NLA_U32 },
Patrick McHardy761da292015-03-26 12:39:36 +00002219 [NFTA_SET_TIMEOUT] = { .type = NLA_U64 },
2220 [NFTA_SET_GC_INTERVAL] = { .type = NLA_U32 },
Patrick McHardyc50b9602014-03-28 10:19:47 +00002221};
2222
2223static const struct nla_policy nft_set_desc_policy[NFTA_SET_DESC_MAX + 1] = {
2224 [NFTA_SET_DESC_SIZE] = { .type = NLA_U32 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002225};
2226
2227static int nft_ctx_init_from_setattr(struct nft_ctx *ctx,
2228 const struct sk_buff *skb,
2229 const struct nlmsghdr *nlh,
2230 const struct nlattr * const nla[])
2231{
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002232 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002233 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002234 struct nft_af_info *afi = NULL;
2235 struct nft_table *table = NULL;
Patrick McHardy20a69342013-10-11 12:06:22 +02002236
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002237 if (nfmsg->nfgen_family != NFPROTO_UNSPEC) {
2238 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
2239 if (IS_ERR(afi))
2240 return PTR_ERR(afi);
2241 }
Patrick McHardy20a69342013-10-11 12:06:22 +02002242
2243 if (nla[NFTA_SET_TABLE] != NULL) {
Patrick McHardyec2c9932014-02-05 15:03:35 +00002244 if (afi == NULL)
2245 return -EAFNOSUPPORT;
2246
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002247 table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002248 if (IS_ERR(table))
2249 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002250 if (table->flags & NFT_TABLE_INACTIVE)
2251 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002252 }
2253
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002254 nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002255 return 0;
2256}
2257
2258struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
2259 const struct nlattr *nla)
2260{
2261 struct nft_set *set;
2262
2263 if (nla == NULL)
2264 return ERR_PTR(-EINVAL);
2265
2266 list_for_each_entry(set, &table->sets, list) {
2267 if (!nla_strcmp(nla, set->name))
2268 return set;
2269 }
2270 return ERR_PTR(-ENOENT);
2271}
2272
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002273struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
2274 const struct nlattr *nla)
2275{
2276 struct nft_trans *trans;
2277 u32 id = ntohl(nla_get_be32(nla));
2278
2279 list_for_each_entry(trans, &net->nft.commit_list, list) {
2280 if (trans->msg_type == NFT_MSG_NEWSET &&
2281 id == nft_trans_set_id(trans))
2282 return nft_trans_set(trans);
2283 }
2284 return ERR_PTR(-ENOENT);
2285}
2286
Patrick McHardy20a69342013-10-11 12:06:22 +02002287static int nf_tables_set_alloc_name(struct nft_ctx *ctx, struct nft_set *set,
2288 const char *name)
2289{
2290 const struct nft_set *i;
2291 const char *p;
2292 unsigned long *inuse;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002293 unsigned int n = 0, min = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002294
2295 p = strnchr(name, IFNAMSIZ, '%');
2296 if (p != NULL) {
2297 if (p[1] != 'd' || strchr(p + 2, '%'))
2298 return -EINVAL;
2299
2300 inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL);
2301 if (inuse == NULL)
2302 return -ENOMEM;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002303cont:
Patrick McHardy20a69342013-10-11 12:06:22 +02002304 list_for_each_entry(i, &ctx->table->sets, list) {
Daniel Borkmann14662912013-12-31 12:40:05 +01002305 int tmp;
2306
2307 if (!sscanf(i->name, name, &tmp))
Patrick McHardy20a69342013-10-11 12:06:22 +02002308 continue;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002309 if (tmp < min || tmp >= min + BITS_PER_BYTE * PAGE_SIZE)
Patrick McHardy20a69342013-10-11 12:06:22 +02002310 continue;
Daniel Borkmann14662912013-12-31 12:40:05 +01002311
Patrick McHardy60eb1892014-03-07 12:34:05 +01002312 set_bit(tmp - min, inuse);
Patrick McHardy20a69342013-10-11 12:06:22 +02002313 }
2314
Patrick McHardy53b70282014-02-05 12:26:22 +01002315 n = find_first_zero_bit(inuse, BITS_PER_BYTE * PAGE_SIZE);
Patrick McHardy60eb1892014-03-07 12:34:05 +01002316 if (n >= BITS_PER_BYTE * PAGE_SIZE) {
2317 min += BITS_PER_BYTE * PAGE_SIZE;
2318 memset(inuse, 0, PAGE_SIZE);
2319 goto cont;
2320 }
Patrick McHardy20a69342013-10-11 12:06:22 +02002321 free_page((unsigned long)inuse);
2322 }
2323
Patrick McHardy60eb1892014-03-07 12:34:05 +01002324 snprintf(set->name, sizeof(set->name), name, min + n);
Patrick McHardy20a69342013-10-11 12:06:22 +02002325 list_for_each_entry(i, &ctx->table->sets, list) {
2326 if (!strcmp(set->name, i->name))
2327 return -ENFILE;
2328 }
2329 return 0;
2330}
2331
2332static int nf_tables_fill_set(struct sk_buff *skb, const struct nft_ctx *ctx,
2333 const struct nft_set *set, u16 event, u16 flags)
2334{
2335 struct nfgenmsg *nfmsg;
2336 struct nlmsghdr *nlh;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002337 struct nlattr *desc;
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002338 u32 portid = ctx->portid;
2339 u32 seq = ctx->seq;
Patrick McHardy20a69342013-10-11 12:06:22 +02002340
2341 event |= NFNL_SUBSYS_NFTABLES << 8;
2342 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2343 flags);
2344 if (nlh == NULL)
2345 goto nla_put_failure;
2346
2347 nfmsg = nlmsg_data(nlh);
2348 nfmsg->nfgen_family = ctx->afi->family;
2349 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02002350 nfmsg->res_id = htons(ctx->net->nft.base_seq & 0xffff);
Patrick McHardy20a69342013-10-11 12:06:22 +02002351
2352 if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
2353 goto nla_put_failure;
2354 if (nla_put_string(skb, NFTA_SET_NAME, set->name))
2355 goto nla_put_failure;
2356 if (set->flags != 0)
2357 if (nla_put_be32(skb, NFTA_SET_FLAGS, htonl(set->flags)))
2358 goto nla_put_failure;
2359
2360 if (nla_put_be32(skb, NFTA_SET_KEY_TYPE, htonl(set->ktype)))
2361 goto nla_put_failure;
2362 if (nla_put_be32(skb, NFTA_SET_KEY_LEN, htonl(set->klen)))
2363 goto nla_put_failure;
2364 if (set->flags & NFT_SET_MAP) {
2365 if (nla_put_be32(skb, NFTA_SET_DATA_TYPE, htonl(set->dtype)))
2366 goto nla_put_failure;
2367 if (nla_put_be32(skb, NFTA_SET_DATA_LEN, htonl(set->dlen)))
2368 goto nla_put_failure;
2369 }
2370
Patrick McHardy761da292015-03-26 12:39:36 +00002371 if (set->timeout &&
2372 nla_put_be64(skb, NFTA_SET_TIMEOUT, cpu_to_be64(set->timeout)))
2373 goto nla_put_failure;
2374 if (set->gc_int &&
2375 nla_put_be32(skb, NFTA_SET_GC_INTERVAL, htonl(set->gc_int)))
2376 goto nla_put_failure;
2377
Arturo Borrero9363dc42014-09-23 13:30:41 +02002378 if (set->policy != NFT_SET_POL_PERFORMANCE) {
2379 if (nla_put_be32(skb, NFTA_SET_POLICY, htonl(set->policy)))
2380 goto nla_put_failure;
2381 }
2382
Patrick McHardyc50b9602014-03-28 10:19:47 +00002383 desc = nla_nest_start(skb, NFTA_SET_DESC);
2384 if (desc == NULL)
2385 goto nla_put_failure;
2386 if (set->size &&
2387 nla_put_be32(skb, NFTA_SET_DESC_SIZE, htonl(set->size)))
2388 goto nla_put_failure;
2389 nla_nest_end(skb, desc);
2390
Johannes Berg053c0952015-01-16 22:09:00 +01002391 nlmsg_end(skb, nlh);
2392 return 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002393
2394nla_put_failure:
2395 nlmsg_trim(skb, nlh);
2396 return -1;
2397}
2398
2399static int nf_tables_set_notify(const struct nft_ctx *ctx,
2400 const struct nft_set *set,
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002401 int event, gfp_t gfp_flags)
Patrick McHardy20a69342013-10-11 12:06:22 +02002402{
2403 struct sk_buff *skb;
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002404 u32 portid = ctx->portid;
Patrick McHardy20a69342013-10-11 12:06:22 +02002405 int err;
2406
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002407 if (!ctx->report &&
2408 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy20a69342013-10-11 12:06:22 +02002409 return 0;
2410
2411 err = -ENOBUFS;
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002412 skb = nlmsg_new(NLMSG_GOODSIZE, gfp_flags);
Patrick McHardy20a69342013-10-11 12:06:22 +02002413 if (skb == NULL)
2414 goto err;
2415
2416 err = nf_tables_fill_set(skb, ctx, set, event, 0);
2417 if (err < 0) {
2418 kfree_skb(skb);
2419 goto err;
2420 }
2421
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002422 err = nfnetlink_send(skb, ctx->net, portid, NFNLGRP_NFTABLES,
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002423 ctx->report, gfp_flags);
Patrick McHardy20a69342013-10-11 12:06:22 +02002424err:
2425 if (err < 0)
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002426 nfnetlink_set_err(ctx->net, portid, NFNLGRP_NFTABLES, err);
Patrick McHardy20a69342013-10-11 12:06:22 +02002427 return err;
2428}
2429
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002430static int nf_tables_dump_sets(struct sk_buff *skb, struct netlink_callback *cb)
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002431{
2432 const struct nft_set *set;
2433 unsigned int idx, s_idx = cb->args[0];
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002434 struct nft_af_info *afi;
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002435 struct nft_table *table, *cur_table = (struct nft_table *)cb->args[2];
2436 struct net *net = sock_net(skb->sk);
2437 int cur_family = cb->args[3];
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002438 struct nft_ctx *ctx = cb->data, ctx_set;
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002439
2440 if (cb->args[1])
2441 return skb->len;
2442
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002443 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002444 cb->seq = net->nft.base_seq;
2445
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002446 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002447 if (ctx->afi && ctx->afi != afi)
2448 continue;
2449
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002450 if (cur_family) {
2451 if (afi->family != cur_family)
2452 continue;
2453
2454 cur_family = 0;
2455 }
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002456 list_for_each_entry_rcu(table, &afi->tables, list) {
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002457 if (ctx->table && ctx->table != table)
2458 continue;
2459
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002460 if (cur_table) {
2461 if (cur_table != table)
2462 continue;
2463
2464 cur_table = NULL;
2465 }
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002466 idx = 0;
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002467 list_for_each_entry_rcu(set, &table->sets, list) {
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002468 if (idx < s_idx)
2469 goto cont;
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002470
2471 ctx_set = *ctx;
2472 ctx_set.table = table;
2473 ctx_set.afi = afi;
2474 if (nf_tables_fill_set(skb, &ctx_set, set,
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002475 NFT_MSG_NEWSET,
2476 NLM_F_MULTI) < 0) {
2477 cb->args[0] = idx;
2478 cb->args[2] = (unsigned long) table;
2479 cb->args[3] = afi->family;
2480 goto done;
2481 }
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002482 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002483cont:
2484 idx++;
2485 }
2486 if (s_idx)
2487 s_idx = 0;
2488 }
2489 }
2490 cb->args[1] = 1;
2491done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002492 rcu_read_unlock();
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002493 return skb->len;
2494}
2495
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002496static int nf_tables_dump_sets_done(struct netlink_callback *cb)
Patrick McHardy20a69342013-10-11 12:06:22 +02002497{
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002498 kfree(cb->data);
2499 return 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002500}
2501
2502static int nf_tables_getset(struct sock *nlsk, struct sk_buff *skb,
2503 const struct nlmsghdr *nlh,
2504 const struct nlattr * const nla[])
2505{
2506 const struct nft_set *set;
2507 struct nft_ctx ctx;
2508 struct sk_buff *skb2;
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002509 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Patrick McHardy20a69342013-10-11 12:06:22 +02002510 int err;
2511
stephen hemminger01cfa0a2014-10-29 22:57:19 -07002512 /* Verify existence before starting dump */
Patrick McHardy20a69342013-10-11 12:06:22 +02002513 err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2514 if (err < 0)
2515 return err;
2516
2517 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2518 struct netlink_dump_control c = {
2519 .dump = nf_tables_dump_sets,
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002520 .done = nf_tables_dump_sets_done,
Patrick McHardy20a69342013-10-11 12:06:22 +02002521 };
Pablo Neira Ayuso5b96af72014-07-16 17:35:18 +02002522 struct nft_ctx *ctx_dump;
2523
2524 ctx_dump = kmalloc(sizeof(*ctx_dump), GFP_KERNEL);
2525 if (ctx_dump == NULL)
2526 return -ENOMEM;
2527
2528 *ctx_dump = ctx;
2529 c.data = ctx_dump;
2530
Patrick McHardy20a69342013-10-11 12:06:22 +02002531 return netlink_dump_start(nlsk, skb, nlh, &c);
2532 }
2533
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002534 /* Only accept unspec with dump */
2535 if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2536 return -EAFNOSUPPORT;
2537
Patrick McHardy20a69342013-10-11 12:06:22 +02002538 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2539 if (IS_ERR(set))
2540 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002541 if (set->flags & NFT_SET_INACTIVE)
2542 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002543
2544 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2545 if (skb2 == NULL)
2546 return -ENOMEM;
2547
2548 err = nf_tables_fill_set(skb2, &ctx, set, NFT_MSG_NEWSET, 0);
2549 if (err < 0)
2550 goto err;
2551
2552 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
2553
2554err:
2555 kfree_skb(skb2);
2556 return err;
2557}
2558
Patrick McHardyc50b9602014-03-28 10:19:47 +00002559static int nf_tables_set_desc_parse(const struct nft_ctx *ctx,
2560 struct nft_set_desc *desc,
2561 const struct nlattr *nla)
2562{
2563 struct nlattr *da[NFTA_SET_DESC_MAX + 1];
2564 int err;
2565
2566 err = nla_parse_nested(da, NFTA_SET_DESC_MAX, nla, nft_set_desc_policy);
2567 if (err < 0)
2568 return err;
2569
2570 if (da[NFTA_SET_DESC_SIZE] != NULL)
2571 desc->size = ntohl(nla_get_be32(da[NFTA_SET_DESC_SIZE]));
2572
2573 return 0;
2574}
2575
Patrick McHardy20a69342013-10-11 12:06:22 +02002576static int nf_tables_newset(struct sock *nlsk, struct sk_buff *skb,
2577 const struct nlmsghdr *nlh,
2578 const struct nlattr * const nla[])
2579{
2580 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2581 const struct nft_set_ops *ops;
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002582 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002583 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002584 struct nft_table *table;
2585 struct nft_set *set;
2586 struct nft_ctx ctx;
2587 char name[IFNAMSIZ];
2588 unsigned int size;
2589 bool create;
Patrick McHardy761da292015-03-26 12:39:36 +00002590 u64 timeout;
2591 u32 ktype, dtype, flags, policy, gc_int;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002592 struct nft_set_desc desc;
Patrick McHardy20a69342013-10-11 12:06:22 +02002593 int err;
2594
2595 if (nla[NFTA_SET_TABLE] == NULL ||
2596 nla[NFTA_SET_NAME] == NULL ||
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002597 nla[NFTA_SET_KEY_LEN] == NULL ||
2598 nla[NFTA_SET_ID] == NULL)
Patrick McHardy20a69342013-10-11 12:06:22 +02002599 return -EINVAL;
2600
Patrick McHardyc50b9602014-03-28 10:19:47 +00002601 memset(&desc, 0, sizeof(desc));
2602
Patrick McHardy20a69342013-10-11 12:06:22 +02002603 ktype = NFT_DATA_VALUE;
2604 if (nla[NFTA_SET_KEY_TYPE] != NULL) {
2605 ktype = ntohl(nla_get_be32(nla[NFTA_SET_KEY_TYPE]));
2606 if ((ktype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK)
2607 return -EINVAL;
2608 }
2609
Patrick McHardyc50b9602014-03-28 10:19:47 +00002610 desc.klen = ntohl(nla_get_be32(nla[NFTA_SET_KEY_LEN]));
2611 if (desc.klen == 0 || desc.klen > FIELD_SIZEOF(struct nft_data, data))
Patrick McHardy20a69342013-10-11 12:06:22 +02002612 return -EINVAL;
2613
2614 flags = 0;
2615 if (nla[NFTA_SET_FLAGS] != NULL) {
2616 flags = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
2617 if (flags & ~(NFT_SET_ANONYMOUS | NFT_SET_CONSTANT |
Patrick McHardy761da292015-03-26 12:39:36 +00002618 NFT_SET_INTERVAL | NFT_SET_MAP |
2619 NFT_SET_TIMEOUT))
Patrick McHardy20a69342013-10-11 12:06:22 +02002620 return -EINVAL;
2621 }
2622
2623 dtype = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002624 if (nla[NFTA_SET_DATA_TYPE] != NULL) {
2625 if (!(flags & NFT_SET_MAP))
2626 return -EINVAL;
2627
2628 dtype = ntohl(nla_get_be32(nla[NFTA_SET_DATA_TYPE]));
2629 if ((dtype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK &&
2630 dtype != NFT_DATA_VERDICT)
2631 return -EINVAL;
2632
2633 if (dtype != NFT_DATA_VERDICT) {
2634 if (nla[NFTA_SET_DATA_LEN] == NULL)
2635 return -EINVAL;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002636 desc.dlen = ntohl(nla_get_be32(nla[NFTA_SET_DATA_LEN]));
2637 if (desc.dlen == 0 ||
2638 desc.dlen > FIELD_SIZEOF(struct nft_data, data))
Patrick McHardy20a69342013-10-11 12:06:22 +02002639 return -EINVAL;
2640 } else
Patrick McHardyc50b9602014-03-28 10:19:47 +00002641 desc.dlen = sizeof(struct nft_data);
Patrick McHardy20a69342013-10-11 12:06:22 +02002642 } else if (flags & NFT_SET_MAP)
2643 return -EINVAL;
2644
Patrick McHardy761da292015-03-26 12:39:36 +00002645 timeout = 0;
2646 if (nla[NFTA_SET_TIMEOUT] != NULL) {
2647 if (!(flags & NFT_SET_TIMEOUT))
2648 return -EINVAL;
2649 timeout = be64_to_cpu(nla_get_be64(nla[NFTA_SET_TIMEOUT]));
2650 }
2651 gc_int = 0;
2652 if (nla[NFTA_SET_GC_INTERVAL] != NULL) {
2653 if (!(flags & NFT_SET_TIMEOUT))
2654 return -EINVAL;
2655 gc_int = ntohl(nla_get_be32(nla[NFTA_SET_GC_INTERVAL]));
2656 }
2657
Patrick McHardyc50b9602014-03-28 10:19:47 +00002658 policy = NFT_SET_POL_PERFORMANCE;
2659 if (nla[NFTA_SET_POLICY] != NULL)
2660 policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY]));
2661
2662 if (nla[NFTA_SET_DESC] != NULL) {
2663 err = nf_tables_set_desc_parse(&ctx, &desc, nla[NFTA_SET_DESC]);
2664 if (err < 0)
2665 return err;
2666 }
2667
Patrick McHardy20a69342013-10-11 12:06:22 +02002668 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
2669
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002670 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
Patrick McHardy20a69342013-10-11 12:06:22 +02002671 if (IS_ERR(afi))
2672 return PTR_ERR(afi);
2673
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002674 table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002675 if (IS_ERR(table))
2676 return PTR_ERR(table);
2677
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002678 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002679
2680 set = nf_tables_set_lookup(table, nla[NFTA_SET_NAME]);
2681 if (IS_ERR(set)) {
2682 if (PTR_ERR(set) != -ENOENT)
2683 return PTR_ERR(set);
2684 set = NULL;
2685 }
2686
2687 if (set != NULL) {
2688 if (nlh->nlmsg_flags & NLM_F_EXCL)
2689 return -EEXIST;
2690 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2691 return -EOPNOTSUPP;
2692 return 0;
2693 }
2694
2695 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
2696 return -ENOENT;
2697
Patrick McHardyc50b9602014-03-28 10:19:47 +00002698 ops = nft_select_set_ops(nla, &desc, policy);
Patrick McHardy20a69342013-10-11 12:06:22 +02002699 if (IS_ERR(ops))
2700 return PTR_ERR(ops);
2701
2702 size = 0;
2703 if (ops->privsize != NULL)
2704 size = ops->privsize(nla);
2705
2706 err = -ENOMEM;
2707 set = kzalloc(sizeof(*set) + size, GFP_KERNEL);
2708 if (set == NULL)
2709 goto err1;
2710
2711 nla_strlcpy(name, nla[NFTA_SET_NAME], sizeof(set->name));
2712 err = nf_tables_set_alloc_name(&ctx, set, name);
2713 if (err < 0)
2714 goto err2;
2715
2716 INIT_LIST_HEAD(&set->bindings);
Patrick McHardycc02e452015-03-25 14:08:50 +00002717 write_pnet(&set->pnet, net);
Patrick McHardy20a69342013-10-11 12:06:22 +02002718 set->ops = ops;
2719 set->ktype = ktype;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002720 set->klen = desc.klen;
Patrick McHardy20a69342013-10-11 12:06:22 +02002721 set->dtype = dtype;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002722 set->dlen = desc.dlen;
Patrick McHardy20a69342013-10-11 12:06:22 +02002723 set->flags = flags;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002724 set->size = desc.size;
Arturo Borrero9363dc42014-09-23 13:30:41 +02002725 set->policy = policy;
Patrick McHardy761da292015-03-26 12:39:36 +00002726 set->timeout = timeout;
2727 set->gc_int = gc_int;
Patrick McHardy20a69342013-10-11 12:06:22 +02002728
Patrick McHardyc50b9602014-03-28 10:19:47 +00002729 err = ops->init(set, &desc, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002730 if (err < 0)
2731 goto err2;
2732
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002733 err = nft_trans_set_add(&ctx, NFT_MSG_NEWSET, set);
Patrick McHardy20a69342013-10-11 12:06:22 +02002734 if (err < 0)
2735 goto err2;
2736
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002737 list_add_tail_rcu(&set->list, &table->sets);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02002738 table->use++;
Patrick McHardy20a69342013-10-11 12:06:22 +02002739 return 0;
2740
2741err2:
2742 kfree(set);
2743err1:
2744 module_put(ops->owner);
2745 return err;
2746}
2747
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002748static void nft_set_destroy(struct nft_set *set)
2749{
2750 set->ops->destroy(set);
2751 module_put(set->ops->owner);
2752 kfree(set);
2753}
2754
Patrick McHardy20a69342013-10-11 12:06:22 +02002755static void nf_tables_set_destroy(const struct nft_ctx *ctx, struct nft_set *set)
2756{
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002757 list_del_rcu(&set->list);
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002758 nf_tables_set_notify(ctx, set, NFT_MSG_DELSET, GFP_ATOMIC);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002759 nft_set_destroy(set);
Patrick McHardy20a69342013-10-11 12:06:22 +02002760}
2761
2762static int nf_tables_delset(struct sock *nlsk, struct sk_buff *skb,
2763 const struct nlmsghdr *nlh,
2764 const struct nlattr * const nla[])
2765{
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002766 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Patrick McHardy20a69342013-10-11 12:06:22 +02002767 struct nft_set *set;
2768 struct nft_ctx ctx;
2769 int err;
2770
Patrick McHardyec2c9932014-02-05 15:03:35 +00002771 if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2772 return -EAFNOSUPPORT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002773 if (nla[NFTA_SET_TABLE] == NULL)
2774 return -EINVAL;
2775
2776 err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2777 if (err < 0)
2778 return err;
2779
2780 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2781 if (IS_ERR(set))
2782 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002783 if (set->flags & NFT_SET_INACTIVE)
2784 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002785 if (!list_empty(&set->bindings))
2786 return -EBUSY;
2787
Arturo Borreroee01d542014-09-02 16:42:25 +02002788 return nft_delset(&ctx, set);
Patrick McHardy20a69342013-10-11 12:06:22 +02002789}
2790
2791static int nf_tables_bind_check_setelem(const struct nft_ctx *ctx,
2792 const struct nft_set *set,
2793 const struct nft_set_iter *iter,
2794 const struct nft_set_elem *elem)
2795{
Patrick McHardyfe2811e2015-03-25 13:07:50 +00002796 const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
Patrick McHardy20a69342013-10-11 12:06:22 +02002797 enum nft_registers dreg;
2798
2799 dreg = nft_type_to_reg(set->dtype);
Patrick McHardy1ec10212015-04-11 02:27:27 +01002800 return nft_validate_register_store(ctx, dreg, nft_set_ext_data(ext),
2801 set->dtype == NFT_DATA_VERDICT ?
2802 NFT_DATA_VERDICT : NFT_DATA_VALUE,
2803 set->dlen);
Patrick McHardy20a69342013-10-11 12:06:22 +02002804}
2805
2806int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
2807 struct nft_set_binding *binding)
2808{
2809 struct nft_set_binding *i;
2810 struct nft_set_iter iter;
2811
2812 if (!list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS)
2813 return -EBUSY;
2814
Patrick McHardy11113e12015-04-05 14:41:07 +02002815 if (binding->flags & NFT_SET_MAP) {
Patrick McHardy20a69342013-10-11 12:06:22 +02002816 /* If the set is already bound to the same chain all
2817 * jumps are already validated for that chain.
2818 */
2819 list_for_each_entry(i, &set->bindings, list) {
Patrick McHardy11113e12015-04-05 14:41:07 +02002820 if (binding->flags & NFT_SET_MAP &&
2821 i->chain == binding->chain)
Patrick McHardy20a69342013-10-11 12:06:22 +02002822 goto bind;
2823 }
2824
2825 iter.skip = 0;
2826 iter.count = 0;
2827 iter.err = 0;
2828 iter.fn = nf_tables_bind_check_setelem;
2829
2830 set->ops->walk(ctx, set, &iter);
2831 if (iter.err < 0) {
2832 /* Destroy anonymous sets if binding fails */
2833 if (set->flags & NFT_SET_ANONYMOUS)
2834 nf_tables_set_destroy(ctx, set);
2835
2836 return iter.err;
2837 }
2838 }
2839bind:
2840 binding->chain = ctx->chain;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002841 list_add_tail_rcu(&binding->list, &set->bindings);
Patrick McHardy20a69342013-10-11 12:06:22 +02002842 return 0;
2843}
2844
2845void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
2846 struct nft_set_binding *binding)
2847{
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002848 list_del_rcu(&binding->list);
Patrick McHardy20a69342013-10-11 12:06:22 +02002849
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002850 if (list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS &&
2851 !(set->flags & NFT_SET_INACTIVE))
Patrick McHardy20a69342013-10-11 12:06:22 +02002852 nf_tables_set_destroy(ctx, set);
2853}
2854
Patrick McHardy3ac4c072015-03-25 13:07:49 +00002855const struct nft_set_ext_type nft_set_ext_types[] = {
2856 [NFT_SET_EXT_KEY] = {
2857 .len = sizeof(struct nft_data),
2858 .align = __alignof__(struct nft_data),
2859 },
2860 [NFT_SET_EXT_DATA] = {
2861 .len = sizeof(struct nft_data),
2862 .align = __alignof__(struct nft_data),
2863 },
2864 [NFT_SET_EXT_FLAGS] = {
2865 .len = sizeof(u8),
2866 .align = __alignof__(u8),
2867 },
Patrick McHardyc3e1b002015-03-26 12:39:37 +00002868 [NFT_SET_EXT_TIMEOUT] = {
2869 .len = sizeof(u64),
2870 .align = __alignof__(u64),
2871 },
2872 [NFT_SET_EXT_EXPIRATION] = {
2873 .len = sizeof(unsigned long),
2874 .align = __alignof__(unsigned long),
2875 },
Patrick McHardy68e942e2015-04-05 14:43:38 +02002876 [NFT_SET_EXT_USERDATA] = {
2877 .len = sizeof(struct nft_userdata),
2878 .align = __alignof__(struct nft_userdata),
2879 },
Patrick McHardy3ac4c072015-03-25 13:07:49 +00002880};
2881EXPORT_SYMBOL_GPL(nft_set_ext_types);
2882
Patrick McHardy20a69342013-10-11 12:06:22 +02002883/*
2884 * Set elements
2885 */
2886
2887static const struct nla_policy nft_set_elem_policy[NFTA_SET_ELEM_MAX + 1] = {
2888 [NFTA_SET_ELEM_KEY] = { .type = NLA_NESTED },
2889 [NFTA_SET_ELEM_DATA] = { .type = NLA_NESTED },
2890 [NFTA_SET_ELEM_FLAGS] = { .type = NLA_U32 },
Patrick McHardyc3e1b002015-03-26 12:39:37 +00002891 [NFTA_SET_ELEM_TIMEOUT] = { .type = NLA_U64 },
Patrick McHardy68e942e2015-04-05 14:43:38 +02002892 [NFTA_SET_ELEM_USERDATA] = { .type = NLA_BINARY,
2893 .len = NFT_USERDATA_MAXLEN },
Patrick McHardy20a69342013-10-11 12:06:22 +02002894};
2895
2896static const struct nla_policy nft_set_elem_list_policy[NFTA_SET_ELEM_LIST_MAX + 1] = {
2897 [NFTA_SET_ELEM_LIST_TABLE] = { .type = NLA_STRING },
2898 [NFTA_SET_ELEM_LIST_SET] = { .type = NLA_STRING },
2899 [NFTA_SET_ELEM_LIST_ELEMENTS] = { .type = NLA_NESTED },
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002900 [NFTA_SET_ELEM_LIST_SET_ID] = { .type = NLA_U32 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002901};
2902
2903static int nft_ctx_init_from_elemattr(struct nft_ctx *ctx,
2904 const struct sk_buff *skb,
2905 const struct nlmsghdr *nlh,
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002906 const struct nlattr * const nla[],
2907 bool trans)
Patrick McHardy20a69342013-10-11 12:06:22 +02002908{
2909 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002910 struct nft_af_info *afi;
2911 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002912 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002913
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002914 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02002915 if (IS_ERR(afi))
2916 return PTR_ERR(afi);
2917
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002918 table = nf_tables_table_lookup(afi, nla[NFTA_SET_ELEM_LIST_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002919 if (IS_ERR(table))
2920 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002921 if (!trans && (table->flags & NFT_TABLE_INACTIVE))
2922 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002923
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002924 nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002925 return 0;
2926}
2927
2928static int nf_tables_fill_setelem(struct sk_buff *skb,
2929 const struct nft_set *set,
2930 const struct nft_set_elem *elem)
2931{
Patrick McHardyfe2811e2015-03-25 13:07:50 +00002932 const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
Patrick McHardy20a69342013-10-11 12:06:22 +02002933 unsigned char *b = skb_tail_pointer(skb);
2934 struct nlattr *nest;
2935
2936 nest = nla_nest_start(skb, NFTA_LIST_ELEM);
2937 if (nest == NULL)
2938 goto nla_put_failure;
2939
Patrick McHardyfe2811e2015-03-25 13:07:50 +00002940 if (nft_data_dump(skb, NFTA_SET_ELEM_KEY, nft_set_ext_key(ext),
2941 NFT_DATA_VALUE, set->klen) < 0)
Patrick McHardy20a69342013-10-11 12:06:22 +02002942 goto nla_put_failure;
2943
Patrick McHardyfe2811e2015-03-25 13:07:50 +00002944 if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA) &&
2945 nft_data_dump(skb, NFTA_SET_ELEM_DATA, nft_set_ext_data(ext),
Patrick McHardy20a69342013-10-11 12:06:22 +02002946 set->dtype == NFT_DATA_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE,
2947 set->dlen) < 0)
2948 goto nla_put_failure;
2949
Patrick McHardyfe2811e2015-03-25 13:07:50 +00002950 if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
2951 nla_put_be32(skb, NFTA_SET_ELEM_FLAGS,
2952 htonl(*nft_set_ext_flags(ext))))
2953 goto nla_put_failure;
Patrick McHardy20a69342013-10-11 12:06:22 +02002954
Patrick McHardyc3e1b002015-03-26 12:39:37 +00002955 if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT) &&
2956 nla_put_be64(skb, NFTA_SET_ELEM_TIMEOUT,
2957 cpu_to_be64(*nft_set_ext_timeout(ext))))
2958 goto nla_put_failure;
2959
2960 if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
2961 unsigned long expires, now = jiffies;
2962
2963 expires = *nft_set_ext_expiration(ext);
2964 if (time_before(now, expires))
2965 expires -= now;
2966 else
2967 expires = 0;
2968
2969 if (nla_put_be64(skb, NFTA_SET_ELEM_EXPIRATION,
2970 cpu_to_be64(jiffies_to_msecs(expires))))
2971 goto nla_put_failure;
2972 }
2973
Patrick McHardy68e942e2015-04-05 14:43:38 +02002974 if (nft_set_ext_exists(ext, NFT_SET_EXT_USERDATA)) {
2975 struct nft_userdata *udata;
2976
2977 udata = nft_set_ext_userdata(ext);
2978 if (nla_put(skb, NFTA_SET_ELEM_USERDATA,
2979 udata->len + 1, udata->data))
2980 goto nla_put_failure;
2981 }
2982
Patrick McHardy20a69342013-10-11 12:06:22 +02002983 nla_nest_end(skb, nest);
2984 return 0;
2985
2986nla_put_failure:
2987 nlmsg_trim(skb, b);
2988 return -EMSGSIZE;
2989}
2990
2991struct nft_set_dump_args {
2992 const struct netlink_callback *cb;
2993 struct nft_set_iter iter;
2994 struct sk_buff *skb;
2995};
2996
2997static int nf_tables_dump_setelem(const struct nft_ctx *ctx,
2998 const struct nft_set *set,
2999 const struct nft_set_iter *iter,
3000 const struct nft_set_elem *elem)
3001{
3002 struct nft_set_dump_args *args;
3003
3004 args = container_of(iter, struct nft_set_dump_args, iter);
3005 return nf_tables_fill_setelem(args->skb, set, elem);
3006}
3007
3008static int nf_tables_dump_set(struct sk_buff *skb, struct netlink_callback *cb)
3009{
3010 const struct nft_set *set;
3011 struct nft_set_dump_args args;
3012 struct nft_ctx ctx;
3013 struct nlattr *nla[NFTA_SET_ELEM_LIST_MAX + 1];
3014 struct nfgenmsg *nfmsg;
3015 struct nlmsghdr *nlh;
3016 struct nlattr *nest;
3017 u32 portid, seq;
3018 int event, err;
3019
Michal Nazarewicz720e0df2014-01-01 06:27:19 +01003020 err = nlmsg_parse(cb->nlh, sizeof(struct nfgenmsg), nla,
3021 NFTA_SET_ELEM_LIST_MAX, nft_set_elem_list_policy);
Patrick McHardy20a69342013-10-11 12:06:22 +02003022 if (err < 0)
3023 return err;
3024
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003025 err = nft_ctx_init_from_elemattr(&ctx, cb->skb, cb->nlh, (void *)nla,
3026 false);
Patrick McHardy20a69342013-10-11 12:06:22 +02003027 if (err < 0)
3028 return err;
3029
3030 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3031 if (IS_ERR(set))
3032 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003033 if (set->flags & NFT_SET_INACTIVE)
3034 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02003035
3036 event = NFT_MSG_NEWSETELEM;
3037 event |= NFNL_SUBSYS_NFTABLES << 8;
3038 portid = NETLINK_CB(cb->skb).portid;
3039 seq = cb->nlh->nlmsg_seq;
3040
3041 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3042 NLM_F_MULTI);
3043 if (nlh == NULL)
3044 goto nla_put_failure;
3045
3046 nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso6403d962014-06-11 19:05:28 +02003047 nfmsg->nfgen_family = ctx.afi->family;
Patrick McHardy20a69342013-10-11 12:06:22 +02003048 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003049 nfmsg->res_id = htons(ctx.net->nft.base_seq & 0xffff);
Patrick McHardy20a69342013-10-11 12:06:22 +02003050
3051 if (nla_put_string(skb, NFTA_SET_ELEM_LIST_TABLE, ctx.table->name))
3052 goto nla_put_failure;
3053 if (nla_put_string(skb, NFTA_SET_ELEM_LIST_SET, set->name))
3054 goto nla_put_failure;
3055
3056 nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3057 if (nest == NULL)
3058 goto nla_put_failure;
3059
3060 args.cb = cb;
3061 args.skb = skb;
3062 args.iter.skip = cb->args[0];
3063 args.iter.count = 0;
3064 args.iter.err = 0;
3065 args.iter.fn = nf_tables_dump_setelem;
3066 set->ops->walk(&ctx, set, &args.iter);
3067
3068 nla_nest_end(skb, nest);
3069 nlmsg_end(skb, nlh);
3070
3071 if (args.iter.err && args.iter.err != -EMSGSIZE)
3072 return args.iter.err;
3073 if (args.iter.count == cb->args[0])
3074 return 0;
3075
3076 cb->args[0] = args.iter.count;
3077 return skb->len;
3078
3079nla_put_failure:
3080 return -ENOSPC;
3081}
3082
3083static int nf_tables_getsetelem(struct sock *nlsk, struct sk_buff *skb,
3084 const struct nlmsghdr *nlh,
3085 const struct nlattr * const nla[])
3086{
3087 const struct nft_set *set;
3088 struct nft_ctx ctx;
3089 int err;
3090
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003091 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02003092 if (err < 0)
3093 return err;
3094
3095 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3096 if (IS_ERR(set))
3097 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003098 if (set->flags & NFT_SET_INACTIVE)
3099 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02003100
3101 if (nlh->nlmsg_flags & NLM_F_DUMP) {
3102 struct netlink_dump_control c = {
3103 .dump = nf_tables_dump_set,
3104 };
3105 return netlink_dump_start(nlsk, skb, nlh, &c);
3106 }
3107 return -EOPNOTSUPP;
3108}
3109
Arturo Borrerod60ce622014-04-01 14:06:07 +02003110static int nf_tables_fill_setelem_info(struct sk_buff *skb,
3111 const struct nft_ctx *ctx, u32 seq,
3112 u32 portid, int event, u16 flags,
3113 const struct nft_set *set,
3114 const struct nft_set_elem *elem)
3115{
3116 struct nfgenmsg *nfmsg;
3117 struct nlmsghdr *nlh;
3118 struct nlattr *nest;
3119 int err;
3120
3121 event |= NFNL_SUBSYS_NFTABLES << 8;
3122 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
3123 flags);
3124 if (nlh == NULL)
3125 goto nla_put_failure;
3126
3127 nfmsg = nlmsg_data(nlh);
3128 nfmsg->nfgen_family = ctx->afi->family;
3129 nfmsg->version = NFNETLINK_V0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003130 nfmsg->res_id = htons(ctx->net->nft.base_seq & 0xffff);
Arturo Borrerod60ce622014-04-01 14:06:07 +02003131
3132 if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
3133 goto nla_put_failure;
3134 if (nla_put_string(skb, NFTA_SET_NAME, set->name))
3135 goto nla_put_failure;
3136
3137 nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
3138 if (nest == NULL)
3139 goto nla_put_failure;
3140
3141 err = nf_tables_fill_setelem(skb, set, elem);
3142 if (err < 0)
3143 goto nla_put_failure;
3144
3145 nla_nest_end(skb, nest);
3146
Johannes Berg053c0952015-01-16 22:09:00 +01003147 nlmsg_end(skb, nlh);
3148 return 0;
Arturo Borrerod60ce622014-04-01 14:06:07 +02003149
3150nla_put_failure:
3151 nlmsg_trim(skb, nlh);
3152 return -1;
3153}
3154
3155static int nf_tables_setelem_notify(const struct nft_ctx *ctx,
3156 const struct nft_set *set,
3157 const struct nft_set_elem *elem,
3158 int event, u16 flags)
3159{
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003160 struct net *net = ctx->net;
3161 u32 portid = ctx->portid;
Arturo Borrerod60ce622014-04-01 14:06:07 +02003162 struct sk_buff *skb;
3163 int err;
3164
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003165 if (!ctx->report && !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
Arturo Borrerod60ce622014-04-01 14:06:07 +02003166 return 0;
3167
3168 err = -ENOBUFS;
3169 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3170 if (skb == NULL)
3171 goto err;
3172
3173 err = nf_tables_fill_setelem_info(skb, ctx, 0, portid, event, flags,
3174 set, elem);
3175 if (err < 0) {
3176 kfree_skb(skb);
3177 goto err;
3178 }
3179
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003180 err = nfnetlink_send(skb, net, portid, NFNLGRP_NFTABLES, ctx->report,
Arturo Borrerod60ce622014-04-01 14:06:07 +02003181 GFP_KERNEL);
3182err:
3183 if (err < 0)
3184 nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, err);
3185 return err;
3186}
3187
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003188static struct nft_trans *nft_trans_elem_alloc(struct nft_ctx *ctx,
3189 int msg_type,
3190 struct nft_set *set)
3191{
3192 struct nft_trans *trans;
3193
3194 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_elem));
3195 if (trans == NULL)
3196 return NULL;
3197
3198 nft_trans_elem_set(trans) = set;
3199 return trans;
3200}
3201
Patrick McHardy22fe54d2015-04-05 14:41:08 +02003202void *nft_set_elem_init(const struct nft_set *set,
3203 const struct nft_set_ext_tmpl *tmpl,
3204 const struct nft_data *key,
3205 const struct nft_data *data,
3206 u64 timeout, gfp_t gfp)
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003207{
3208 struct nft_set_ext *ext;
3209 void *elem;
3210
3211 elem = kzalloc(set->ops->elemsize + tmpl->len, gfp);
3212 if (elem == NULL)
3213 return NULL;
3214
3215 ext = nft_set_elem_ext(set, elem);
3216 nft_set_ext_init(ext, tmpl);
3217
3218 memcpy(nft_set_ext_key(ext), key, set->klen);
3219 if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3220 memcpy(nft_set_ext_data(ext), data, set->dlen);
Patrick McHardyc3e1b002015-03-26 12:39:37 +00003221 if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION))
3222 *nft_set_ext_expiration(ext) =
3223 jiffies + msecs_to_jiffies(timeout);
3224 if (nft_set_ext_exists(ext, NFT_SET_EXT_TIMEOUT))
3225 *nft_set_ext_timeout(ext) = timeout;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003226
3227 return elem;
3228}
3229
Patrick McHardy61edafb2015-03-25 14:08:47 +00003230void nft_set_elem_destroy(const struct nft_set *set, void *elem)
3231{
3232 struct nft_set_ext *ext = nft_set_elem_ext(set, elem);
3233
3234 nft_data_uninit(nft_set_ext_key(ext), NFT_DATA_VALUE);
3235 if (nft_set_ext_exists(ext, NFT_SET_EXT_DATA))
3236 nft_data_uninit(nft_set_ext_data(ext), set->dtype);
3237
3238 kfree(elem);
3239}
3240EXPORT_SYMBOL_GPL(nft_set_elem_destroy);
3241
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003242static int nft_add_set_elem(struct nft_ctx *ctx, struct nft_set *set,
Patrick McHardy20a69342013-10-11 12:06:22 +02003243 const struct nlattr *attr)
3244{
3245 struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3246 struct nft_data_desc d1, d2;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003247 struct nft_set_ext_tmpl tmpl;
3248 struct nft_set_ext *ext;
Patrick McHardy20a69342013-10-11 12:06:22 +02003249 struct nft_set_elem elem;
3250 struct nft_set_binding *binding;
Patrick McHardy68e942e2015-04-05 14:43:38 +02003251 struct nft_userdata *udata;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003252 struct nft_data data;
Patrick McHardy20a69342013-10-11 12:06:22 +02003253 enum nft_registers dreg;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003254 struct nft_trans *trans;
Patrick McHardyc3e1b002015-03-26 12:39:37 +00003255 u64 timeout;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003256 u32 flags;
Patrick McHardy68e942e2015-04-05 14:43:38 +02003257 u8 ulen;
Patrick McHardy20a69342013-10-11 12:06:22 +02003258 int err;
3259
3260 err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3261 nft_set_elem_policy);
3262 if (err < 0)
3263 return err;
3264
3265 if (nla[NFTA_SET_ELEM_KEY] == NULL)
3266 return -EINVAL;
3267
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003268 nft_set_ext_prepare(&tmpl);
3269
3270 flags = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02003271 if (nla[NFTA_SET_ELEM_FLAGS] != NULL) {
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003272 flags = ntohl(nla_get_be32(nla[NFTA_SET_ELEM_FLAGS]));
3273 if (flags & ~NFT_SET_ELEM_INTERVAL_END)
Patrick McHardy20a69342013-10-11 12:06:22 +02003274 return -EINVAL;
Patrick McHardy55df35d2015-03-21 15:19:16 +00003275 if (!(set->flags & NFT_SET_INTERVAL) &&
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003276 flags & NFT_SET_ELEM_INTERVAL_END)
Patrick McHardy55df35d2015-03-21 15:19:16 +00003277 return -EINVAL;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003278 if (flags != 0)
3279 nft_set_ext_add(&tmpl, NFT_SET_EXT_FLAGS);
Patrick McHardy20a69342013-10-11 12:06:22 +02003280 }
3281
3282 if (set->flags & NFT_SET_MAP) {
3283 if (nla[NFTA_SET_ELEM_DATA] == NULL &&
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003284 !(flags & NFT_SET_ELEM_INTERVAL_END))
Patrick McHardy20a69342013-10-11 12:06:22 +02003285 return -EINVAL;
Pablo Neira Ayusobd7fc642014-02-07 12:53:07 +01003286 if (nla[NFTA_SET_ELEM_DATA] != NULL &&
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003287 flags & NFT_SET_ELEM_INTERVAL_END)
Pablo Neira Ayusobd7fc642014-02-07 12:53:07 +01003288 return -EINVAL;
Patrick McHardy20a69342013-10-11 12:06:22 +02003289 } else {
3290 if (nla[NFTA_SET_ELEM_DATA] != NULL)
3291 return -EINVAL;
3292 }
3293
Patrick McHardyc3e1b002015-03-26 12:39:37 +00003294 timeout = 0;
3295 if (nla[NFTA_SET_ELEM_TIMEOUT] != NULL) {
3296 if (!(set->flags & NFT_SET_TIMEOUT))
3297 return -EINVAL;
3298 timeout = be64_to_cpu(nla_get_be64(nla[NFTA_SET_ELEM_TIMEOUT]));
3299 } else if (set->flags & NFT_SET_TIMEOUT) {
3300 timeout = set->timeout;
3301 }
3302
Patrick McHardy20a69342013-10-11 12:06:22 +02003303 err = nft_data_init(ctx, &elem.key, &d1, nla[NFTA_SET_ELEM_KEY]);
3304 if (err < 0)
3305 goto err1;
3306 err = -EINVAL;
3307 if (d1.type != NFT_DATA_VALUE || d1.len != set->klen)
3308 goto err2;
3309
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003310 nft_set_ext_add(&tmpl, NFT_SET_EXT_KEY);
Patrick McHardyc3e1b002015-03-26 12:39:37 +00003311 if (timeout > 0) {
3312 nft_set_ext_add(&tmpl, NFT_SET_EXT_EXPIRATION);
3313 if (timeout != set->timeout)
3314 nft_set_ext_add(&tmpl, NFT_SET_EXT_TIMEOUT);
3315 }
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003316
Patrick McHardy20a69342013-10-11 12:06:22 +02003317 if (nla[NFTA_SET_ELEM_DATA] != NULL) {
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003318 err = nft_data_init(ctx, &data, &d2, nla[NFTA_SET_ELEM_DATA]);
Patrick McHardy20a69342013-10-11 12:06:22 +02003319 if (err < 0)
3320 goto err2;
3321
3322 err = -EINVAL;
3323 if (set->dtype != NFT_DATA_VERDICT && d2.len != set->dlen)
3324 goto err3;
3325
3326 dreg = nft_type_to_reg(set->dtype);
3327 list_for_each_entry(binding, &set->bindings, list) {
3328 struct nft_ctx bind_ctx = {
3329 .afi = ctx->afi,
3330 .table = ctx->table,
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02003331 .chain = (struct nft_chain *)binding->chain,
Patrick McHardy20a69342013-10-11 12:06:22 +02003332 };
3333
Patrick McHardy11113e12015-04-05 14:41:07 +02003334 if (!(binding->flags & NFT_SET_MAP))
3335 continue;
3336
Patrick McHardy1ec10212015-04-11 02:27:27 +01003337 err = nft_validate_register_store(&bind_ctx, dreg,
3338 &data,
3339 d2.type, d2.len);
Patrick McHardy20a69342013-10-11 12:06:22 +02003340 if (err < 0)
3341 goto err3;
3342 }
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003343
3344 nft_set_ext_add(&tmpl, NFT_SET_EXT_DATA);
Patrick McHardy20a69342013-10-11 12:06:22 +02003345 }
3346
Patrick McHardy68e942e2015-04-05 14:43:38 +02003347 /* The full maximum length of userdata can exceed the maximum
3348 * offset value (U8_MAX) for following extensions, therefor it
3349 * must be the last extension added.
3350 */
3351 ulen = 0;
3352 if (nla[NFTA_SET_ELEM_USERDATA] != NULL) {
3353 ulen = nla_len(nla[NFTA_SET_ELEM_USERDATA]);
3354 if (ulen > 0)
3355 nft_set_ext_add_length(&tmpl, NFT_SET_EXT_USERDATA,
3356 ulen);
3357 }
3358
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003359 err = -ENOMEM;
Patrick McHardyc3e1b002015-03-26 12:39:37 +00003360 elem.priv = nft_set_elem_init(set, &tmpl, &elem.key, &data,
3361 timeout, GFP_KERNEL);
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003362 if (elem.priv == NULL)
3363 goto err3;
3364
3365 ext = nft_set_elem_ext(set, elem.priv);
3366 if (flags)
3367 *nft_set_ext_flags(ext) = flags;
Patrick McHardy68e942e2015-04-05 14:43:38 +02003368 if (ulen > 0) {
3369 udata = nft_set_ext_userdata(ext);
3370 udata->len = ulen - 1;
3371 nla_memcpy(&udata->data, nla[NFTA_SET_ELEM_USERDATA], ulen);
3372 }
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003373
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003374 trans = nft_trans_elem_alloc(ctx, NFT_MSG_NEWSETELEM, set);
3375 if (trans == NULL)
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003376 goto err4;
Patrick McHardy20a69342013-10-11 12:06:22 +02003377
Patrick McHardy69086652015-03-26 12:39:39 +00003378 ext->genmask = nft_genmask_cur(ctx->net) | NFT_SET_ELEM_BUSY_MASK;
Patrick McHardy20a69342013-10-11 12:06:22 +02003379 err = set->ops->insert(set, &elem);
3380 if (err < 0)
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003381 goto err5;
Patrick McHardy20a69342013-10-11 12:06:22 +02003382
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003383 nft_trans_elem(trans) = elem;
Pablo Neira Ayuso46bbafc2014-05-22 12:36:03 +02003384 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
Patrick McHardy20a69342013-10-11 12:06:22 +02003385 return 0;
3386
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003387err5:
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003388 kfree(trans);
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003389err4:
3390 kfree(elem.priv);
Patrick McHardy20a69342013-10-11 12:06:22 +02003391err3:
3392 if (nla[NFTA_SET_ELEM_DATA] != NULL)
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003393 nft_data_uninit(&data, d2.type);
Patrick McHardy20a69342013-10-11 12:06:22 +02003394err2:
3395 nft_data_uninit(&elem.key, d1.type);
3396err1:
3397 return err;
3398}
3399
3400static int nf_tables_newsetelem(struct sock *nlsk, struct sk_buff *skb,
3401 const struct nlmsghdr *nlh,
3402 const struct nlattr * const nla[])
3403{
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003404 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02003405 const struct nlattr *attr;
3406 struct nft_set *set;
3407 struct nft_ctx ctx;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003408 int rem, err = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02003409
Pablo Neira Ayuso7d5570c2014-07-25 13:15:36 +02003410 if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL)
3411 return -EINVAL;
3412
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003413 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, true);
Patrick McHardy20a69342013-10-11 12:06:22 +02003414 if (err < 0)
3415 return err;
3416
3417 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003418 if (IS_ERR(set)) {
3419 if (nla[NFTA_SET_ELEM_LIST_SET_ID]) {
3420 set = nf_tables_set_lookup_byid(net,
3421 nla[NFTA_SET_ELEM_LIST_SET_ID]);
3422 }
3423 if (IS_ERR(set))
3424 return PTR_ERR(set);
3425 }
3426
Patrick McHardy20a69342013-10-11 12:06:22 +02003427 if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3428 return -EBUSY;
3429
3430 nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
Patrick McHardy3dd06732015-04-05 14:41:06 +02003431 if (set->size &&
3432 !atomic_add_unless(&set->nelems, 1, set->size + set->ndeact))
3433 return -ENFILE;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003434
Patrick McHardy3dd06732015-04-05 14:41:06 +02003435 err = nft_add_set_elem(&ctx, set, attr);
3436 if (err < 0) {
3437 atomic_dec(&set->nelems);
3438 break;
3439 }
Patrick McHardy20a69342013-10-11 12:06:22 +02003440 }
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003441 return err;
Patrick McHardy20a69342013-10-11 12:06:22 +02003442}
3443
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003444static int nft_del_setelem(struct nft_ctx *ctx, struct nft_set *set,
Patrick McHardy20a69342013-10-11 12:06:22 +02003445 const struct nlattr *attr)
3446{
3447 struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3448 struct nft_data_desc desc;
3449 struct nft_set_elem elem;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003450 struct nft_trans *trans;
Patrick McHardy20a69342013-10-11 12:06:22 +02003451 int err;
3452
3453 err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3454 nft_set_elem_policy);
3455 if (err < 0)
3456 goto err1;
3457
3458 err = -EINVAL;
3459 if (nla[NFTA_SET_ELEM_KEY] == NULL)
3460 goto err1;
3461
3462 err = nft_data_init(ctx, &elem.key, &desc, nla[NFTA_SET_ELEM_KEY]);
3463 if (err < 0)
3464 goto err1;
3465
3466 err = -EINVAL;
3467 if (desc.type != NFT_DATA_VALUE || desc.len != set->klen)
3468 goto err2;
3469
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003470 trans = nft_trans_elem_alloc(ctx, NFT_MSG_DELSETELEM, set);
Julia Lawall609ccf02014-08-07 14:49:08 +02003471 if (trans == NULL) {
3472 err = -ENOMEM;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003473 goto err2;
Julia Lawall609ccf02014-08-07 14:49:08 +02003474 }
Patrick McHardy20a69342013-10-11 12:06:22 +02003475
Patrick McHardycc02e452015-03-25 14:08:50 +00003476 elem.priv = set->ops->deactivate(set, &elem);
3477 if (elem.priv == NULL) {
3478 err = -ENOENT;
3479 goto err3;
3480 }
3481
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003482 nft_trans_elem(trans) = elem;
Pablo Neira Ayuso46bbafc2014-05-22 12:36:03 +02003483 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
Thomas Graf0dc13622014-08-01 17:25:38 +02003484 return 0;
Patrick McHardycc02e452015-03-25 14:08:50 +00003485
3486err3:
3487 kfree(trans);
Patrick McHardy20a69342013-10-11 12:06:22 +02003488err2:
3489 nft_data_uninit(&elem.key, desc.type);
3490err1:
3491 return err;
3492}
3493
3494static int nf_tables_delsetelem(struct sock *nlsk, struct sk_buff *skb,
3495 const struct nlmsghdr *nlh,
3496 const struct nlattr * const nla[])
3497{
3498 const struct nlattr *attr;
3499 struct nft_set *set;
3500 struct nft_ctx ctx;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003501 int rem, err = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02003502
Pablo Neira Ayuso7d5570c2014-07-25 13:15:36 +02003503 if (nla[NFTA_SET_ELEM_LIST_ELEMENTS] == NULL)
3504 return -EINVAL;
3505
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003506 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02003507 if (err < 0)
3508 return err;
3509
3510 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3511 if (IS_ERR(set))
3512 return PTR_ERR(set);
3513 if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3514 return -EBUSY;
3515
3516 nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3517 err = nft_del_setelem(&ctx, set, attr);
3518 if (err < 0)
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003519 break;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003520
Patrick McHardy3dd06732015-04-05 14:41:06 +02003521 set->ndeact++;
Patrick McHardy20a69342013-10-11 12:06:22 +02003522 }
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003523 return err;
Patrick McHardy20a69342013-10-11 12:06:22 +02003524}
3525
Patrick McHardycfed7e12015-03-26 12:39:38 +00003526void nft_set_gc_batch_release(struct rcu_head *rcu)
3527{
3528 struct nft_set_gc_batch *gcb;
3529 unsigned int i;
3530
3531 gcb = container_of(rcu, struct nft_set_gc_batch, head.rcu);
3532 for (i = 0; i < gcb->head.cnt; i++)
3533 nft_set_elem_destroy(gcb->head.set, gcb->elems[i]);
3534 kfree(gcb);
3535}
3536EXPORT_SYMBOL_GPL(nft_set_gc_batch_release);
3537
3538struct nft_set_gc_batch *nft_set_gc_batch_alloc(const struct nft_set *set,
3539 gfp_t gfp)
3540{
3541 struct nft_set_gc_batch *gcb;
3542
3543 gcb = kzalloc(sizeof(*gcb), gfp);
3544 if (gcb == NULL)
3545 return gcb;
3546 gcb->head.set = set;
3547 return gcb;
3548}
3549EXPORT_SYMBOL_GPL(nft_set_gc_batch_alloc);
3550
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003551static int nf_tables_fill_gen_info(struct sk_buff *skb, struct net *net,
3552 u32 portid, u32 seq)
3553{
3554 struct nlmsghdr *nlh;
3555 struct nfgenmsg *nfmsg;
3556 int event = (NFNL_SUBSYS_NFTABLES << 8) | NFT_MSG_NEWGEN;
3557
3558 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), 0);
3559 if (nlh == NULL)
3560 goto nla_put_failure;
3561
3562 nfmsg = nlmsg_data(nlh);
3563 nfmsg->nfgen_family = AF_UNSPEC;
3564 nfmsg->version = NFNETLINK_V0;
3565 nfmsg->res_id = htons(net->nft.base_seq & 0xffff);
3566
3567 if (nla_put_be32(skb, NFTA_GEN_ID, htonl(net->nft.base_seq)))
3568 goto nla_put_failure;
3569
Johannes Berg053c0952015-01-16 22:09:00 +01003570 nlmsg_end(skb, nlh);
3571 return 0;
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003572
3573nla_put_failure:
3574 nlmsg_trim(skb, nlh);
3575 return -EMSGSIZE;
3576}
3577
3578static int nf_tables_gen_notify(struct net *net, struct sk_buff *skb, int event)
3579{
3580 struct nlmsghdr *nlh = nlmsg_hdr(skb);
3581 struct sk_buff *skb2;
3582 int err;
3583
3584 if (nlmsg_report(nlh) &&
3585 !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
3586 return 0;
3587
3588 err = -ENOBUFS;
3589 skb2 = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3590 if (skb2 == NULL)
3591 goto err;
3592
3593 err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
3594 nlh->nlmsg_seq);
3595 if (err < 0) {
3596 kfree_skb(skb2);
3597 goto err;
3598 }
3599
3600 err = nfnetlink_send(skb2, net, NETLINK_CB(skb).portid,
3601 NFNLGRP_NFTABLES, nlmsg_report(nlh), GFP_KERNEL);
3602err:
3603 if (err < 0) {
3604 nfnetlink_set_err(net, NETLINK_CB(skb).portid, NFNLGRP_NFTABLES,
3605 err);
3606 }
3607 return err;
3608}
3609
3610static int nf_tables_getgen(struct sock *nlsk, struct sk_buff *skb,
3611 const struct nlmsghdr *nlh,
3612 const struct nlattr * const nla[])
3613{
3614 struct net *net = sock_net(skb->sk);
3615 struct sk_buff *skb2;
3616 int err;
3617
3618 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
3619 if (skb2 == NULL)
3620 return -ENOMEM;
3621
3622 err = nf_tables_fill_gen_info(skb2, net, NETLINK_CB(skb).portid,
3623 nlh->nlmsg_seq);
3624 if (err < 0)
3625 goto err;
3626
3627 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
3628err:
3629 kfree_skb(skb2);
3630 return err;
3631}
3632
Patrick McHardy96518512013-10-14 11:00:02 +02003633static const struct nfnl_callback nf_tables_cb[NFT_MSG_MAX] = {
3634 [NFT_MSG_NEWTABLE] = {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003635 .call_batch = nf_tables_newtable,
Patrick McHardy96518512013-10-14 11:00:02 +02003636 .attr_count = NFTA_TABLE_MAX,
3637 .policy = nft_table_policy,
3638 },
3639 [NFT_MSG_GETTABLE] = {
3640 .call = nf_tables_gettable,
3641 .attr_count = NFTA_TABLE_MAX,
3642 .policy = nft_table_policy,
3643 },
3644 [NFT_MSG_DELTABLE] = {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003645 .call_batch = nf_tables_deltable,
Patrick McHardy96518512013-10-14 11:00:02 +02003646 .attr_count = NFTA_TABLE_MAX,
3647 .policy = nft_table_policy,
3648 },
3649 [NFT_MSG_NEWCHAIN] = {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003650 .call_batch = nf_tables_newchain,
Patrick McHardy96518512013-10-14 11:00:02 +02003651 .attr_count = NFTA_CHAIN_MAX,
3652 .policy = nft_chain_policy,
3653 },
3654 [NFT_MSG_GETCHAIN] = {
3655 .call = nf_tables_getchain,
3656 .attr_count = NFTA_CHAIN_MAX,
3657 .policy = nft_chain_policy,
3658 },
3659 [NFT_MSG_DELCHAIN] = {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003660 .call_batch = nf_tables_delchain,
Patrick McHardy96518512013-10-14 11:00:02 +02003661 .attr_count = NFTA_CHAIN_MAX,
3662 .policy = nft_chain_policy,
3663 },
3664 [NFT_MSG_NEWRULE] = {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003665 .call_batch = nf_tables_newrule,
Patrick McHardy96518512013-10-14 11:00:02 +02003666 .attr_count = NFTA_RULE_MAX,
3667 .policy = nft_rule_policy,
3668 },
3669 [NFT_MSG_GETRULE] = {
3670 .call = nf_tables_getrule,
3671 .attr_count = NFTA_RULE_MAX,
3672 .policy = nft_rule_policy,
3673 },
3674 [NFT_MSG_DELRULE] = {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003675 .call_batch = nf_tables_delrule,
Patrick McHardy96518512013-10-14 11:00:02 +02003676 .attr_count = NFTA_RULE_MAX,
3677 .policy = nft_rule_policy,
3678 },
Patrick McHardy20a69342013-10-11 12:06:22 +02003679 [NFT_MSG_NEWSET] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003680 .call_batch = nf_tables_newset,
Patrick McHardy20a69342013-10-11 12:06:22 +02003681 .attr_count = NFTA_SET_MAX,
3682 .policy = nft_set_policy,
3683 },
3684 [NFT_MSG_GETSET] = {
3685 .call = nf_tables_getset,
3686 .attr_count = NFTA_SET_MAX,
3687 .policy = nft_set_policy,
3688 },
3689 [NFT_MSG_DELSET] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003690 .call_batch = nf_tables_delset,
Patrick McHardy20a69342013-10-11 12:06:22 +02003691 .attr_count = NFTA_SET_MAX,
3692 .policy = nft_set_policy,
3693 },
3694 [NFT_MSG_NEWSETELEM] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003695 .call_batch = nf_tables_newsetelem,
Patrick McHardy20a69342013-10-11 12:06:22 +02003696 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3697 .policy = nft_set_elem_list_policy,
3698 },
3699 [NFT_MSG_GETSETELEM] = {
3700 .call = nf_tables_getsetelem,
3701 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3702 .policy = nft_set_elem_list_policy,
3703 },
3704 [NFT_MSG_DELSETELEM] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003705 .call_batch = nf_tables_delsetelem,
Patrick McHardy20a69342013-10-11 12:06:22 +02003706 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3707 .policy = nft_set_elem_list_policy,
3708 },
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003709 [NFT_MSG_GETGEN] = {
3710 .call = nf_tables_getgen,
3711 },
Patrick McHardy96518512013-10-14 11:00:02 +02003712};
3713
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003714static void nft_chain_commit_update(struct nft_trans *trans)
3715{
3716 struct nft_base_chain *basechain;
3717
3718 if (nft_trans_chain_name(trans)[0])
3719 strcpy(trans->ctx.chain->name, nft_trans_chain_name(trans));
3720
3721 if (!(trans->ctx.chain->flags & NFT_BASE_CHAIN))
3722 return;
3723
3724 basechain = nft_base_chain(trans->ctx.chain);
3725 nft_chain_stats_replace(basechain, nft_trans_chain_stats(trans));
3726
3727 switch (nft_trans_chain_policy(trans)) {
3728 case NF_DROP:
3729 case NF_ACCEPT:
3730 basechain->policy = nft_trans_chain_policy(trans);
3731 break;
3732 }
3733}
3734
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003735static void nf_tables_commit_release(struct nft_trans *trans)
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003736{
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003737 switch (trans->msg_type) {
3738 case NFT_MSG_DELTABLE:
3739 nf_tables_table_destroy(&trans->ctx);
3740 break;
3741 case NFT_MSG_DELCHAIN:
3742 nf_tables_chain_destroy(trans->ctx.chain);
3743 break;
3744 case NFT_MSG_DELRULE:
3745 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3746 break;
3747 case NFT_MSG_DELSET:
3748 nft_set_destroy(nft_trans_set(trans));
3749 break;
Patrick McHardy61edafb2015-03-25 14:08:47 +00003750 case NFT_MSG_DELSETELEM:
3751 nft_set_elem_destroy(nft_trans_elem_set(trans),
3752 nft_trans_elem(trans).priv);
3753 break;
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003754 }
3755 kfree(trans);
3756}
3757
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003758static int nf_tables_commit(struct sk_buff *skb)
3759{
3760 struct net *net = sock_net(skb->sk);
3761 struct nft_trans *trans, *next;
Pablo Neira Ayusoa3716e72014-08-01 19:32:41 +02003762 struct nft_trans_elem *te;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003763
3764 /* Bump generation counter, invalidate any dump in progress */
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02003765 while (++net->nft.base_seq == 0);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003766
3767 /* A new generation has just started */
Patrick McHardyea4bd992015-03-25 14:08:49 +00003768 net->nft.gencursor = nft_gencursor_next(net);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003769
3770 /* Make sure all packets have left the previous generation before
3771 * purging old rules.
3772 */
3773 synchronize_rcu();
3774
3775 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003776 switch (trans->msg_type) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003777 case NFT_MSG_NEWTABLE:
3778 if (nft_trans_table_update(trans)) {
3779 if (!nft_trans_table_enable(trans)) {
3780 nf_tables_table_disable(trans->ctx.afi,
3781 trans->ctx.table);
3782 trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3783 }
3784 } else {
3785 trans->ctx.table->flags &= ~NFT_TABLE_INACTIVE;
3786 }
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003787 nf_tables_table_notify(&trans->ctx, NFT_MSG_NEWTABLE);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003788 nft_trans_destroy(trans);
3789 break;
3790 case NFT_MSG_DELTABLE:
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003791 nf_tables_table_notify(&trans->ctx, NFT_MSG_DELTABLE);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003792 break;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003793 case NFT_MSG_NEWCHAIN:
3794 if (nft_trans_chain_update(trans))
3795 nft_chain_commit_update(trans);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003796 else
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003797 trans->ctx.chain->flags &= ~NFT_CHAIN_INACTIVE;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003798
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003799 nf_tables_chain_notify(&trans->ctx, NFT_MSG_NEWCHAIN);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003800 nft_trans_destroy(trans);
3801 break;
3802 case NFT_MSG_DELCHAIN:
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003803 nf_tables_chain_notify(&trans->ctx, NFT_MSG_DELCHAIN);
Arturo Borreroc5598792014-09-02 16:42:23 +02003804 nf_tables_unregister_hooks(trans->ctx.table,
3805 trans->ctx.chain,
3806 trans->ctx.afi->nops);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003807 break;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003808 case NFT_MSG_NEWRULE:
3809 nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003810 nf_tables_rule_notify(&trans->ctx,
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003811 nft_trans_rule(trans),
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003812 NFT_MSG_NEWRULE);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003813 nft_trans_destroy(trans);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003814 break;
3815 case NFT_MSG_DELRULE:
3816 list_del_rcu(&nft_trans_rule(trans)->list);
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003817 nf_tables_rule_notify(&trans->ctx,
3818 nft_trans_rule(trans),
3819 NFT_MSG_DELRULE);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003820 break;
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003821 case NFT_MSG_NEWSET:
3822 nft_trans_set(trans)->flags &= ~NFT_SET_INACTIVE;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003823 /* This avoids hitting -EBUSY when deleting the table
3824 * from the transaction.
3825 */
3826 if (nft_trans_set(trans)->flags & NFT_SET_ANONYMOUS &&
3827 !list_empty(&nft_trans_set(trans)->bindings))
3828 trans->ctx.table->use--;
3829
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003830 nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02003831 NFT_MSG_NEWSET, GFP_KERNEL);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003832 nft_trans_destroy(trans);
3833 break;
3834 case NFT_MSG_DELSET:
3835 nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02003836 NFT_MSG_DELSET, GFP_KERNEL);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003837 break;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003838 case NFT_MSG_NEWSETELEM:
Patrick McHardycc02e452015-03-25 14:08:50 +00003839 te = (struct nft_trans_elem *)trans->data;
3840
3841 te->set->ops->activate(te->set, &te->elem);
3842 nf_tables_setelem_notify(&trans->ctx, te->set,
3843 &te->elem,
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003844 NFT_MSG_NEWSETELEM, 0);
3845 nft_trans_destroy(trans);
3846 break;
3847 case NFT_MSG_DELSETELEM:
Pablo Neira Ayusoa3716e72014-08-01 19:32:41 +02003848 te = (struct nft_trans_elem *)trans->data;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003849
Pablo Neira Ayusoa3716e72014-08-01 19:32:41 +02003850 nf_tables_setelem_notify(&trans->ctx, te->set,
3851 &te->elem,
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003852 NFT_MSG_DELSETELEM, 0);
Pablo Neira Ayuso02263db2015-02-20 17:11:10 +01003853 te->set->ops->remove(te->set, &te->elem);
Patrick McHardy3dd06732015-04-05 14:41:06 +02003854 atomic_dec(&te->set->nelems);
3855 te->set->ndeact--;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003856 break;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003857 }
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003858 }
3859
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003860 synchronize_rcu();
3861
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003862 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003863 list_del(&trans->list);
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003864 nf_tables_commit_release(trans);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003865 }
3866
Pablo Neira Ayuso84d7fce2014-09-04 14:30:22 +02003867 nf_tables_gen_notify(net, skb, NFT_MSG_NEWGEN);
3868
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003869 return 0;
3870}
3871
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003872static void nf_tables_abort_release(struct nft_trans *trans)
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003873{
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003874 switch (trans->msg_type) {
3875 case NFT_MSG_NEWTABLE:
3876 nf_tables_table_destroy(&trans->ctx);
3877 break;
3878 case NFT_MSG_NEWCHAIN:
3879 nf_tables_chain_destroy(trans->ctx.chain);
3880 break;
3881 case NFT_MSG_NEWRULE:
3882 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3883 break;
3884 case NFT_MSG_NEWSET:
3885 nft_set_destroy(nft_trans_set(trans));
3886 break;
Patrick McHardy61edafb2015-03-25 14:08:47 +00003887 case NFT_MSG_NEWSETELEM:
3888 nft_set_elem_destroy(nft_trans_elem_set(trans),
3889 nft_trans_elem(trans).priv);
3890 break;
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003891 }
3892 kfree(trans);
3893}
3894
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003895static int nf_tables_abort(struct sk_buff *skb)
3896{
3897 struct net *net = sock_net(skb->sk);
3898 struct nft_trans *trans, *next;
Pablo Neira Ayuso02263db2015-02-20 17:11:10 +01003899 struct nft_trans_elem *te;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003900
3901 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003902 switch (trans->msg_type) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003903 case NFT_MSG_NEWTABLE:
3904 if (nft_trans_table_update(trans)) {
3905 if (nft_trans_table_enable(trans)) {
3906 nf_tables_table_disable(trans->ctx.afi,
3907 trans->ctx.table);
3908 trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3909 }
3910 nft_trans_destroy(trans);
3911 } else {
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003912 list_del_rcu(&trans->ctx.table->list);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003913 }
3914 break;
3915 case NFT_MSG_DELTABLE:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003916 list_add_tail_rcu(&trans->ctx.table->list,
3917 &trans->ctx.afi->tables);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003918 nft_trans_destroy(trans);
3919 break;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003920 case NFT_MSG_NEWCHAIN:
3921 if (nft_trans_chain_update(trans)) {
Markus Elfring982f4052014-11-18 20:37:05 +01003922 free_percpu(nft_trans_chain_stats(trans));
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003923
3924 nft_trans_destroy(trans);
3925 } else {
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003926 trans->ctx.table->use--;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003927 list_del_rcu(&trans->ctx.chain->list);
Arturo Borreroc5598792014-09-02 16:42:23 +02003928 nf_tables_unregister_hooks(trans->ctx.table,
3929 trans->ctx.chain,
3930 trans->ctx.afi->nops);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003931 }
3932 break;
3933 case NFT_MSG_DELCHAIN:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003934 trans->ctx.table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003935 list_add_tail_rcu(&trans->ctx.chain->list,
3936 &trans->ctx.table->chains);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003937 nft_trans_destroy(trans);
3938 break;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003939 case NFT_MSG_NEWRULE:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003940 trans->ctx.chain->use--;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003941 list_del_rcu(&nft_trans_rule(trans)->list);
3942 break;
3943 case NFT_MSG_DELRULE:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003944 trans->ctx.chain->use++;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003945 nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003946 nft_trans_destroy(trans);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003947 break;
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003948 case NFT_MSG_NEWSET:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003949 trans->ctx.table->use--;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003950 list_del_rcu(&nft_trans_set(trans)->list);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003951 break;
3952 case NFT_MSG_DELSET:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003953 trans->ctx.table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003954 list_add_tail_rcu(&nft_trans_set(trans)->list,
3955 &trans->ctx.table->sets);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003956 nft_trans_destroy(trans);
3957 break;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003958 case NFT_MSG_NEWSETELEM:
Pablo Neira Ayuso02263db2015-02-20 17:11:10 +01003959 te = (struct nft_trans_elem *)trans->data;
Patrick McHardyfe2811e2015-03-25 13:07:50 +00003960
Pablo Neira Ayuso02263db2015-02-20 17:11:10 +01003961 te->set->ops->remove(te->set, &te->elem);
Patrick McHardy3dd06732015-04-05 14:41:06 +02003962 atomic_dec(&te->set->nelems);
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003963 break;
3964 case NFT_MSG_DELSETELEM:
Patrick McHardycc02e452015-03-25 14:08:50 +00003965 te = (struct nft_trans_elem *)trans->data;
3966
Patrick McHardycc02e452015-03-25 14:08:50 +00003967 te->set->ops->activate(te->set, &te->elem);
Patrick McHardy3dd06732015-04-05 14:41:06 +02003968 te->set->ndeact--;
Patrick McHardycc02e452015-03-25 14:08:50 +00003969
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003970 nft_trans_destroy(trans);
3971 break;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003972 }
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003973 }
3974
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003975 synchronize_rcu();
3976
Pablo Neira Ayusoa1cee072014-05-23 11:09:42 +02003977 list_for_each_entry_safe_reverse(trans, next,
3978 &net->nft.commit_list, list) {
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003979 list_del(&trans->list);
Pablo Neira Ayusob326dd32014-11-10 21:14:12 +01003980 nf_tables_abort_release(trans);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003981 }
3982
3983 return 0;
3984}
3985
Patrick McHardy96518512013-10-14 11:00:02 +02003986static const struct nfnetlink_subsystem nf_tables_subsys = {
3987 .name = "nf_tables",
3988 .subsys_id = NFNL_SUBSYS_NFTABLES,
3989 .cb_count = NFT_MSG_MAX,
3990 .cb = nf_tables_cb,
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003991 .commit = nf_tables_commit,
3992 .abort = nf_tables_abort,
Patrick McHardy96518512013-10-14 11:00:02 +02003993};
3994
Pablo Neira Ayuso7210e4e2014-10-13 19:50:22 +02003995int nft_chain_validate_dependency(const struct nft_chain *chain,
3996 enum nft_chain_type type)
3997{
3998 const struct nft_base_chain *basechain;
3999
4000 if (chain->flags & NFT_BASE_CHAIN) {
4001 basechain = nft_base_chain(chain);
4002 if (basechain->type->type != type)
4003 return -EOPNOTSUPP;
4004 }
4005 return 0;
4006}
4007EXPORT_SYMBOL_GPL(nft_chain_validate_dependency);
4008
Pablo Neira Ayuso75e8d062015-01-14 15:33:57 +01004009int nft_chain_validate_hooks(const struct nft_chain *chain,
4010 unsigned int hook_flags)
4011{
4012 struct nft_base_chain *basechain;
4013
4014 if (chain->flags & NFT_BASE_CHAIN) {
4015 basechain = nft_base_chain(chain);
4016
4017 if ((1 << basechain->ops[0].hooknum) & hook_flags)
4018 return 0;
4019
4020 return -EOPNOTSUPP;
4021 }
4022
4023 return 0;
4024}
4025EXPORT_SYMBOL_GPL(nft_chain_validate_hooks);
4026
Patrick McHardy20a69342013-10-11 12:06:22 +02004027/*
4028 * Loop detection - walk through the ruleset beginning at the destination chain
4029 * of a new jump until either the source chain is reached (loop) or all
4030 * reachable chains have been traversed.
4031 *
4032 * The loop check is performed whenever a new jump verdict is added to an
4033 * expression or verdict map or a verdict map is bound to a new chain.
4034 */
4035
4036static int nf_tables_check_loops(const struct nft_ctx *ctx,
4037 const struct nft_chain *chain);
4038
4039static int nf_tables_loop_check_setelem(const struct nft_ctx *ctx,
4040 const struct nft_set *set,
4041 const struct nft_set_iter *iter,
4042 const struct nft_set_elem *elem)
4043{
Patrick McHardyfe2811e2015-03-25 13:07:50 +00004044 const struct nft_set_ext *ext = nft_set_elem_ext(set, elem->priv);
4045 const struct nft_data *data;
4046
4047 if (nft_set_ext_exists(ext, NFT_SET_EXT_FLAGS) &&
4048 *nft_set_ext_flags(ext) & NFT_SET_ELEM_INTERVAL_END)
Pablo Neira Ayuso62f9c8b2014-02-07 14:45:01 +01004049 return 0;
4050
Patrick McHardyfe2811e2015-03-25 13:07:50 +00004051 data = nft_set_ext_data(ext);
4052 switch (data->verdict) {
Patrick McHardy20a69342013-10-11 12:06:22 +02004053 case NFT_JUMP:
4054 case NFT_GOTO:
Patrick McHardyfe2811e2015-03-25 13:07:50 +00004055 return nf_tables_check_loops(ctx, data->chain);
Patrick McHardy20a69342013-10-11 12:06:22 +02004056 default:
4057 return 0;
4058 }
4059}
4060
4061static int nf_tables_check_loops(const struct nft_ctx *ctx,
4062 const struct nft_chain *chain)
4063{
4064 const struct nft_rule *rule;
4065 const struct nft_expr *expr, *last;
Patrick McHardy20a69342013-10-11 12:06:22 +02004066 const struct nft_set *set;
4067 struct nft_set_binding *binding;
4068 struct nft_set_iter iter;
Patrick McHardy20a69342013-10-11 12:06:22 +02004069
4070 if (ctx->chain == chain)
4071 return -ELOOP;
4072
4073 list_for_each_entry(rule, &chain->rules, list) {
4074 nft_rule_for_each_expr(expr, last, rule) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02004075 const struct nft_data *data = NULL;
4076 int err;
4077
4078 if (!expr->ops->validate)
Patrick McHardy20a69342013-10-11 12:06:22 +02004079 continue;
4080
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02004081 err = expr->ops->validate(ctx, expr, &data);
4082 if (err < 0)
4083 return err;
4084
Patrick McHardy20a69342013-10-11 12:06:22 +02004085 if (data == NULL)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02004086 continue;
Patrick McHardy20a69342013-10-11 12:06:22 +02004087
4088 switch (data->verdict) {
4089 case NFT_JUMP:
4090 case NFT_GOTO:
4091 err = nf_tables_check_loops(ctx, data->chain);
4092 if (err < 0)
4093 return err;
4094 default:
4095 break;
4096 }
4097 }
4098 }
4099
4100 list_for_each_entry(set, &ctx->table->sets, list) {
4101 if (!(set->flags & NFT_SET_MAP) ||
4102 set->dtype != NFT_DATA_VERDICT)
4103 continue;
4104
4105 list_for_each_entry(binding, &set->bindings, list) {
Patrick McHardy11113e12015-04-05 14:41:07 +02004106 if (!(binding->flags & NFT_SET_MAP) ||
4107 binding->chain != chain)
Patrick McHardy20a69342013-10-11 12:06:22 +02004108 continue;
4109
4110 iter.skip = 0;
4111 iter.count = 0;
4112 iter.err = 0;
4113 iter.fn = nf_tables_loop_check_setelem;
4114
4115 set->ops->walk(ctx, set, &iter);
4116 if (iter.err < 0)
4117 return iter.err;
4118 }
4119 }
4120
4121 return 0;
4122}
4123
Patrick McHardy96518512013-10-14 11:00:02 +02004124/**
4125 * nft_validate_input_register - validate an expressions' input register
4126 *
4127 * @reg: the register number
4128 *
4129 * Validate that the input register is one of the general purpose
4130 * registers.
4131 */
4132int nft_validate_input_register(enum nft_registers reg)
4133{
4134 if (reg <= NFT_REG_VERDICT)
4135 return -EINVAL;
4136 if (reg > NFT_REG_MAX)
4137 return -ERANGE;
4138 return 0;
4139}
4140EXPORT_SYMBOL_GPL(nft_validate_input_register);
4141
4142/**
4143 * nft_validate_output_register - validate an expressions' output register
4144 *
4145 * @reg: the register number
4146 *
4147 * Validate that the output register is one of the general purpose
4148 * registers or the verdict register.
4149 */
4150int nft_validate_output_register(enum nft_registers reg)
4151{
4152 if (reg < NFT_REG_VERDICT)
4153 return -EINVAL;
4154 if (reg > NFT_REG_MAX)
4155 return -ERANGE;
4156 return 0;
4157}
4158EXPORT_SYMBOL_GPL(nft_validate_output_register);
4159
4160/**
Patrick McHardy1ec10212015-04-11 02:27:27 +01004161 * nft_validate_register_store - validate an expressions' register store
Patrick McHardy96518512013-10-14 11:00:02 +02004162 *
4163 * @ctx: context of the expression performing the load
4164 * @reg: the destination register number
4165 * @data: the data to load
4166 * @type: the data type
Patrick McHardy45d9bcd2015-04-11 02:27:26 +01004167 * @len: the length of the data
Patrick McHardy96518512013-10-14 11:00:02 +02004168 *
4169 * Validate that a data load uses the appropriate data type for
Patrick McHardy45d9bcd2015-04-11 02:27:26 +01004170 * the destination register and the length is within the bounds.
4171 * A value of NULL for the data means that its runtime gathered
Patrick McHardy58f40ab2015-04-11 02:27:28 +01004172 * data.
Patrick McHardy96518512013-10-14 11:00:02 +02004173 */
Patrick McHardy1ec10212015-04-11 02:27:27 +01004174int nft_validate_register_store(const struct nft_ctx *ctx,
4175 enum nft_registers reg,
4176 const struct nft_data *data,
4177 enum nft_data_types type, unsigned int len)
Patrick McHardy96518512013-10-14 11:00:02 +02004178{
Patrick McHardy20a69342013-10-11 12:06:22 +02004179 int err;
4180
Patrick McHardy96518512013-10-14 11:00:02 +02004181 switch (reg) {
4182 case NFT_REG_VERDICT:
Patrick McHardy58f40ab2015-04-11 02:27:28 +01004183 if (type != NFT_DATA_VERDICT)
Patrick McHardy96518512013-10-14 11:00:02 +02004184 return -EINVAL;
Patrick McHardy20a69342013-10-11 12:06:22 +02004185
Patrick McHardy58f40ab2015-04-11 02:27:28 +01004186 if (data != NULL &&
4187 (data->verdict == NFT_GOTO || data->verdict == NFT_JUMP)) {
Patrick McHardy20a69342013-10-11 12:06:22 +02004188 err = nf_tables_check_loops(ctx, data->chain);
4189 if (err < 0)
4190 return err;
4191
4192 if (ctx->chain->level + 1 > data->chain->level) {
4193 if (ctx->chain->level + 1 == NFT_JUMP_STACK_SIZE)
4194 return -EMLINK;
4195 data->chain->level = ctx->chain->level + 1;
4196 }
4197 }
4198
Patrick McHardy96518512013-10-14 11:00:02 +02004199 return 0;
4200 default:
Patrick McHardy45d9bcd2015-04-11 02:27:26 +01004201 if (len == 0)
4202 return -EINVAL;
4203 if (len > FIELD_SIZEOF(struct nft_data, data))
4204 return -ERANGE;
Patrick McHardy96518512013-10-14 11:00:02 +02004205 if (data != NULL && type != NFT_DATA_VALUE)
4206 return -EINVAL;
4207 return 0;
4208 }
4209}
Patrick McHardy1ec10212015-04-11 02:27:27 +01004210EXPORT_SYMBOL_GPL(nft_validate_register_store);
Patrick McHardy96518512013-10-14 11:00:02 +02004211
4212static const struct nla_policy nft_verdict_policy[NFTA_VERDICT_MAX + 1] = {
4213 [NFTA_VERDICT_CODE] = { .type = NLA_U32 },
4214 [NFTA_VERDICT_CHAIN] = { .type = NLA_STRING,
4215 .len = NFT_CHAIN_MAXNAMELEN - 1 },
4216};
4217
4218static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
4219 struct nft_data_desc *desc, const struct nlattr *nla)
4220{
4221 struct nlattr *tb[NFTA_VERDICT_MAX + 1];
4222 struct nft_chain *chain;
4223 int err;
4224
4225 err = nla_parse_nested(tb, NFTA_VERDICT_MAX, nla, nft_verdict_policy);
4226 if (err < 0)
4227 return err;
4228
4229 if (!tb[NFTA_VERDICT_CODE])
4230 return -EINVAL;
4231 data->verdict = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE]));
4232
4233 switch (data->verdict) {
Patrick McHardye0abdad2014-02-18 18:06:50 +00004234 default:
4235 switch (data->verdict & NF_VERDICT_MASK) {
4236 case NF_ACCEPT:
4237 case NF_DROP:
4238 case NF_QUEUE:
4239 break;
4240 default:
4241 return -EINVAL;
4242 }
4243 /* fall through */
Patrick McHardy96518512013-10-14 11:00:02 +02004244 case NFT_CONTINUE:
4245 case NFT_BREAK:
4246 case NFT_RETURN:
4247 desc->len = sizeof(data->verdict);
4248 break;
4249 case NFT_JUMP:
4250 case NFT_GOTO:
4251 if (!tb[NFTA_VERDICT_CHAIN])
4252 return -EINVAL;
4253 chain = nf_tables_chain_lookup(ctx->table,
4254 tb[NFTA_VERDICT_CHAIN]);
4255 if (IS_ERR(chain))
4256 return PTR_ERR(chain);
4257 if (chain->flags & NFT_BASE_CHAIN)
4258 return -EOPNOTSUPP;
4259
Patrick McHardy96518512013-10-14 11:00:02 +02004260 chain->use++;
4261 data->chain = chain;
4262 desc->len = sizeof(data);
4263 break;
Patrick McHardy96518512013-10-14 11:00:02 +02004264 }
4265
4266 desc->type = NFT_DATA_VERDICT;
4267 return 0;
4268}
4269
4270static void nft_verdict_uninit(const struct nft_data *data)
4271{
4272 switch (data->verdict) {
4273 case NFT_JUMP:
4274 case NFT_GOTO:
4275 data->chain->use--;
4276 break;
4277 }
4278}
4279
4280static int nft_verdict_dump(struct sk_buff *skb, const struct nft_data *data)
4281{
4282 struct nlattr *nest;
4283
4284 nest = nla_nest_start(skb, NFTA_DATA_VERDICT);
4285 if (!nest)
4286 goto nla_put_failure;
4287
4288 if (nla_put_be32(skb, NFTA_VERDICT_CODE, htonl(data->verdict)))
4289 goto nla_put_failure;
4290
4291 switch (data->verdict) {
4292 case NFT_JUMP:
4293 case NFT_GOTO:
4294 if (nla_put_string(skb, NFTA_VERDICT_CHAIN, data->chain->name))
4295 goto nla_put_failure;
4296 }
4297 nla_nest_end(skb, nest);
4298 return 0;
4299
4300nla_put_failure:
4301 return -1;
4302}
4303
4304static int nft_value_init(const struct nft_ctx *ctx, struct nft_data *data,
4305 struct nft_data_desc *desc, const struct nlattr *nla)
4306{
4307 unsigned int len;
4308
4309 len = nla_len(nla);
4310 if (len == 0)
4311 return -EINVAL;
4312 if (len > sizeof(data->data))
4313 return -EOVERFLOW;
4314
4315 nla_memcpy(data->data, nla, sizeof(data->data));
4316 desc->type = NFT_DATA_VALUE;
4317 desc->len = len;
4318 return 0;
4319}
4320
4321static int nft_value_dump(struct sk_buff *skb, const struct nft_data *data,
4322 unsigned int len)
4323{
4324 return nla_put(skb, NFTA_DATA_VALUE, len, data->data);
4325}
4326
4327static const struct nla_policy nft_data_policy[NFTA_DATA_MAX + 1] = {
4328 [NFTA_DATA_VALUE] = { .type = NLA_BINARY,
4329 .len = FIELD_SIZEOF(struct nft_data, data) },
4330 [NFTA_DATA_VERDICT] = { .type = NLA_NESTED },
4331};
4332
4333/**
4334 * nft_data_init - parse nf_tables data netlink attributes
4335 *
4336 * @ctx: context of the expression using the data
4337 * @data: destination struct nft_data
4338 * @desc: data description
4339 * @nla: netlink attribute containing data
4340 *
4341 * Parse the netlink data attributes and initialize a struct nft_data.
4342 * The type and length of data are returned in the data description.
4343 *
4344 * The caller can indicate that it only wants to accept data of type
4345 * NFT_DATA_VALUE by passing NULL for the ctx argument.
4346 */
4347int nft_data_init(const struct nft_ctx *ctx, struct nft_data *data,
4348 struct nft_data_desc *desc, const struct nlattr *nla)
4349{
4350 struct nlattr *tb[NFTA_DATA_MAX + 1];
4351 int err;
4352
4353 err = nla_parse_nested(tb, NFTA_DATA_MAX, nla, nft_data_policy);
4354 if (err < 0)
4355 return err;
4356
4357 if (tb[NFTA_DATA_VALUE])
4358 return nft_value_init(ctx, data, desc, tb[NFTA_DATA_VALUE]);
4359 if (tb[NFTA_DATA_VERDICT] && ctx != NULL)
4360 return nft_verdict_init(ctx, data, desc, tb[NFTA_DATA_VERDICT]);
4361 return -EINVAL;
4362}
4363EXPORT_SYMBOL_GPL(nft_data_init);
4364
4365/**
4366 * nft_data_uninit - release a nft_data item
4367 *
4368 * @data: struct nft_data to release
4369 * @type: type of data
4370 *
4371 * Release a nft_data item. NFT_DATA_VALUE types can be silently discarded,
4372 * all others need to be released by calling this function.
4373 */
4374void nft_data_uninit(const struct nft_data *data, enum nft_data_types type)
4375{
4376 switch (type) {
4377 case NFT_DATA_VALUE:
4378 return;
4379 case NFT_DATA_VERDICT:
4380 return nft_verdict_uninit(data);
4381 default:
4382 WARN_ON(1);
4383 }
4384}
4385EXPORT_SYMBOL_GPL(nft_data_uninit);
4386
4387int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
4388 enum nft_data_types type, unsigned int len)
4389{
4390 struct nlattr *nest;
4391 int err;
4392
4393 nest = nla_nest_start(skb, attr);
4394 if (nest == NULL)
4395 return -1;
4396
4397 switch (type) {
4398 case NFT_DATA_VALUE:
4399 err = nft_value_dump(skb, data, len);
4400 break;
4401 case NFT_DATA_VERDICT:
4402 err = nft_verdict_dump(skb, data);
4403 break;
4404 default:
4405 err = -EINVAL;
4406 WARN_ON(1);
4407 }
4408
4409 nla_nest_end(skb, nest);
4410 return err;
4411}
4412EXPORT_SYMBOL_GPL(nft_data_dump);
4413
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004414static int nf_tables_init_net(struct net *net)
4415{
4416 INIT_LIST_HEAD(&net->nft.af_info);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02004417 INIT_LIST_HEAD(&net->nft.commit_list);
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02004418 net->nft.base_seq = 1;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004419 return 0;
4420}
4421
4422static struct pernet_operations nf_tables_net_ops = {
4423 .init = nf_tables_init_net,
4424};
4425
Patrick McHardy96518512013-10-14 11:00:02 +02004426static int __init nf_tables_module_init(void)
4427{
4428 int err;
4429
4430 info = kmalloc(sizeof(struct nft_expr_info) * NFT_RULE_MAXEXPRS,
4431 GFP_KERNEL);
4432 if (info == NULL) {
4433 err = -ENOMEM;
4434 goto err1;
4435 }
4436
4437 err = nf_tables_core_module_init();
4438 if (err < 0)
4439 goto err2;
4440
4441 err = nfnetlink_subsys_register(&nf_tables_subsys);
4442 if (err < 0)
4443 goto err3;
4444
4445 pr_info("nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>\n");
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004446 return register_pernet_subsys(&nf_tables_net_ops);
Patrick McHardy96518512013-10-14 11:00:02 +02004447err3:
4448 nf_tables_core_module_exit();
4449err2:
4450 kfree(info);
4451err1:
4452 return err;
4453}
4454
4455static void __exit nf_tables_module_exit(void)
4456{
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004457 unregister_pernet_subsys(&nf_tables_net_ops);
Patrick McHardy96518512013-10-14 11:00:02 +02004458 nfnetlink_subsys_unregister(&nf_tables_subsys);
Pablo Neira Ayuso1b1bc492014-10-01 13:53:20 +02004459 rcu_barrier();
Patrick McHardy96518512013-10-14 11:00:02 +02004460 nf_tables_core_module_exit();
4461 kfree(info);
4462}
4463
4464module_init(nf_tables_module_init);
4465module_exit(nf_tables_module_exit);
4466
4467MODULE_LICENSE("GPL");
4468MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
4469MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFTABLES);