blob: 8746ff9a83571d97b3991dced7ad3f968c15bdfa [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
Patrick McHardy96518512013-10-14 11:00:02 +0200130/*
131 * Tables
132 */
133
134static struct nft_table *nft_table_lookup(const struct nft_af_info *afi,
135 const struct nlattr *nla)
136{
137 struct nft_table *table;
138
139 list_for_each_entry(table, &afi->tables, list) {
140 if (!nla_strcmp(nla, table->name))
141 return table;
142 }
143 return NULL;
144}
145
146static struct nft_table *nf_tables_table_lookup(const struct nft_af_info *afi,
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200147 const struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +0200148{
149 struct nft_table *table;
150
151 if (nla == NULL)
152 return ERR_PTR(-EINVAL);
153
154 table = nft_table_lookup(afi, nla);
155 if (table != NULL)
156 return table;
157
Patrick McHardy96518512013-10-14 11:00:02 +0200158 return ERR_PTR(-ENOENT);
159}
160
161static inline u64 nf_tables_alloc_handle(struct nft_table *table)
162{
163 return ++table->hgenerator;
164}
165
Patrick McHardy2a37d752014-01-09 18:42:37 +0000166static const struct nf_chain_type *chain_type[AF_MAX][NFT_CHAIN_T_MAX];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200167
Patrick McHardy2a37d752014-01-09 18:42:37 +0000168static const struct nf_chain_type *
Patrick McHardybaae3e62014-01-09 18:42:34 +0000169__nf_tables_chain_type_lookup(int family, const struct nlattr *nla)
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200170{
171 int i;
172
Patrick McHardybaae3e62014-01-09 18:42:34 +0000173 for (i = 0; i < NFT_CHAIN_T_MAX; i++) {
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200174 if (chain_type[family][i] != NULL &&
175 !nla_strcmp(nla, chain_type[family][i]->name))
Patrick McHardybaae3e62014-01-09 18:42:34 +0000176 return chain_type[family][i];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200177 }
Patrick McHardybaae3e62014-01-09 18:42:34 +0000178 return NULL;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200179}
180
Patrick McHardy2a37d752014-01-09 18:42:37 +0000181static const struct nf_chain_type *
Patrick McHardybaae3e62014-01-09 18:42:34 +0000182nf_tables_chain_type_lookup(const struct nft_af_info *afi,
183 const struct nlattr *nla,
184 bool autoload)
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200185{
Patrick McHardy2a37d752014-01-09 18:42:37 +0000186 const struct nf_chain_type *type;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200187
188 type = __nf_tables_chain_type_lookup(afi->family, nla);
Patrick McHardy93b08062014-01-09 18:42:36 +0000189 if (type != NULL)
190 return type;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200191#ifdef CONFIG_MODULES
Patrick McHardy93b08062014-01-09 18:42:36 +0000192 if (autoload) {
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200193 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso2fec6bb2014-03-31 12:26:39 +0200194 request_module("nft-chain-%u-%.*s", afi->family,
195 nla_len(nla), (const char *)nla_data(nla));
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200196 nfnl_lock(NFNL_SUBSYS_NFTABLES);
197 type = __nf_tables_chain_type_lookup(afi->family, nla);
Patrick McHardy93b08062014-01-09 18:42:36 +0000198 if (type != NULL)
199 return ERR_PTR(-EAGAIN);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200200 }
201#endif
Patrick McHardy93b08062014-01-09 18:42:36 +0000202 return ERR_PTR(-ENOENT);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200203}
204
Patrick McHardy96518512013-10-14 11:00:02 +0200205static const struct nla_policy nft_table_policy[NFTA_TABLE_MAX + 1] = {
206 [NFTA_TABLE_NAME] = { .type = NLA_STRING },
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200207 [NFTA_TABLE_FLAGS] = { .type = NLA_U32 },
Patrick McHardy96518512013-10-14 11:00:02 +0200208};
209
210static int nf_tables_fill_table_info(struct sk_buff *skb, u32 portid, u32 seq,
211 int event, u32 flags, int family,
212 const struct nft_table *table)
213{
214 struct nlmsghdr *nlh;
215 struct nfgenmsg *nfmsg;
216
217 event |= NFNL_SUBSYS_NFTABLES << 8;
218 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
219 if (nlh == NULL)
220 goto nla_put_failure;
221
222 nfmsg = nlmsg_data(nlh);
223 nfmsg->nfgen_family = family;
224 nfmsg->version = NFNETLINK_V0;
225 nfmsg->res_id = 0;
226
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200227 if (nla_put_string(skb, NFTA_TABLE_NAME, table->name) ||
Tomasz Bursztykad8bcc7682013-12-12 15:00:42 +0200228 nla_put_be32(skb, NFTA_TABLE_FLAGS, htonl(table->flags)) ||
229 nla_put_be32(skb, NFTA_TABLE_USE, htonl(table->use)))
Patrick McHardy96518512013-10-14 11:00:02 +0200230 goto nla_put_failure;
231
232 return nlmsg_end(skb, nlh);
233
234nla_put_failure:
235 nlmsg_trim(skb, nlh);
236 return -1;
237}
238
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200239static int nf_tables_table_notify(const struct nft_ctx *ctx, int event)
Patrick McHardy96518512013-10-14 11:00:02 +0200240{
241 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +0200242 int err;
243
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200244 if (!ctx->report &&
245 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +0200246 return 0;
247
248 err = -ENOBUFS;
249 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
250 if (skb == NULL)
251 goto err;
252
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200253 err = nf_tables_fill_table_info(skb, ctx->portid, ctx->seq, event, 0,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200254 ctx->afi->family, ctx->table);
Patrick McHardy96518512013-10-14 11:00:02 +0200255 if (err < 0) {
256 kfree_skb(skb);
257 goto err;
258 }
259
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200260 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
261 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +0200262err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200263 if (err < 0) {
264 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
265 err);
266 }
Patrick McHardy96518512013-10-14 11:00:02 +0200267 return err;
268}
269
270static int nf_tables_dump_tables(struct sk_buff *skb,
271 struct netlink_callback *cb)
272{
273 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
274 const struct nft_af_info *afi;
275 const struct nft_table *table;
276 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200277 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200278 int family = nfmsg->nfgen_family;
279
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200280 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200281 cb->seq = net->nft.base_seq;
282
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200283 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200284 if (family != NFPROTO_UNSPEC && family != afi->family)
285 continue;
286
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200287 list_for_each_entry_rcu(table, &afi->tables, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200288 if (idx < s_idx)
289 goto cont;
290 if (idx > s_idx)
291 memset(&cb->args[1], 0,
292 sizeof(cb->args) - sizeof(cb->args[0]));
293 if (nf_tables_fill_table_info(skb,
294 NETLINK_CB(cb->skb).portid,
295 cb->nlh->nlmsg_seq,
296 NFT_MSG_NEWTABLE,
297 NLM_F_MULTI,
298 afi->family, table) < 0)
299 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200300
301 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +0200302cont:
303 idx++;
304 }
305 }
306done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200307 rcu_read_unlock();
Patrick McHardy96518512013-10-14 11:00:02 +0200308 cb->args[0] = idx;
309 return skb->len;
310}
311
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200312/* Internal table flags */
313#define NFT_TABLE_INACTIVE (1 << 15)
314
Patrick McHardy96518512013-10-14 11:00:02 +0200315static int nf_tables_gettable(struct sock *nlsk, struct sk_buff *skb,
316 const struct nlmsghdr *nlh,
317 const struct nlattr * const nla[])
318{
319 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
320 const struct nft_af_info *afi;
321 const struct nft_table *table;
322 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200323 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200324 int family = nfmsg->nfgen_family;
325 int err;
326
327 if (nlh->nlmsg_flags & NLM_F_DUMP) {
328 struct netlink_dump_control c = {
329 .dump = nf_tables_dump_tables,
330 };
331 return netlink_dump_start(nlsk, skb, nlh, &c);
332 }
333
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200334 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +0200335 if (IS_ERR(afi))
336 return PTR_ERR(afi);
337
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200338 table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
Patrick McHardy96518512013-10-14 11:00:02 +0200339 if (IS_ERR(table))
340 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200341 if (table->flags & NFT_TABLE_INACTIVE)
342 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200343
344 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
345 if (!skb2)
346 return -ENOMEM;
347
348 err = nf_tables_fill_table_info(skb2, NETLINK_CB(skb).portid,
349 nlh->nlmsg_seq, NFT_MSG_NEWTABLE, 0,
350 family, table);
351 if (err < 0)
352 goto err;
353
354 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
355
356err:
357 kfree_skb(skb2);
358 return err;
359}
360
Patrick McHardy115a60b2014-01-03 12:16:15 +0000361static int nf_tables_table_enable(const struct nft_af_info *afi,
362 struct nft_table *table)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200363{
364 struct nft_chain *chain;
365 int err, i = 0;
366
367 list_for_each_entry(chain, &table->chains, list) {
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100368 if (!(chain->flags & NFT_BASE_CHAIN))
369 continue;
370
Patrick McHardy115a60b2014-01-03 12:16:15 +0000371 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200372 if (err < 0)
373 goto err;
374
375 i++;
376 }
377 return 0;
378err:
379 list_for_each_entry(chain, &table->chains, list) {
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100380 if (!(chain->flags & NFT_BASE_CHAIN))
381 continue;
382
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200383 if (i-- <= 0)
384 break;
385
Patrick McHardy115a60b2014-01-03 12:16:15 +0000386 nf_unregister_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200387 }
388 return err;
389}
390
Pablo Neira Ayusof75edf52014-03-30 14:04:52 +0200391static void nf_tables_table_disable(const struct nft_af_info *afi,
Patrick McHardy115a60b2014-01-03 12:16:15 +0000392 struct nft_table *table)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200393{
394 struct nft_chain *chain;
395
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100396 list_for_each_entry(chain, &table->chains, list) {
397 if (chain->flags & NFT_BASE_CHAIN)
Patrick McHardy115a60b2014-01-03 12:16:15 +0000398 nf_unregister_hooks(nft_base_chain(chain)->ops,
399 afi->nops);
Pablo Neira Ayusod2012972013-12-27 10:44:23 +0100400 }
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200401}
402
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200403static int nf_tables_updtable(struct nft_ctx *ctx)
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200404{
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200405 struct nft_trans *trans;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200406 u32 flags;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200407 int ret = 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200408
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200409 if (!ctx->nla[NFTA_TABLE_FLAGS])
410 return 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200411
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200412 flags = ntohl(nla_get_be32(ctx->nla[NFTA_TABLE_FLAGS]));
413 if (flags & ~NFT_TABLE_F_DORMANT)
414 return -EINVAL;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200415
Pablo Neira Ayuso63283dd2014-06-27 18:51:39 +0200416 if (flags == ctx->table->flags)
417 return 0;
418
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200419 trans = nft_trans_alloc(ctx, NFT_MSG_NEWTABLE,
420 sizeof(struct nft_trans_table));
421 if (trans == NULL)
422 return -ENOMEM;
423
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200424 if ((flags & NFT_TABLE_F_DORMANT) &&
425 !(ctx->table->flags & NFT_TABLE_F_DORMANT)) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200426 nft_trans_table_enable(trans) = false;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200427 } else if (!(flags & NFT_TABLE_F_DORMANT) &&
428 ctx->table->flags & NFT_TABLE_F_DORMANT) {
429 ret = nf_tables_table_enable(ctx->afi, ctx->table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200430 if (ret >= 0) {
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200431 ctx->table->flags &= ~NFT_TABLE_F_DORMANT;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200432 nft_trans_table_enable(trans) = true;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200433 }
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200434 }
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200435 if (ret < 0)
436 goto err;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200437
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200438 nft_trans_table_update(trans) = true;
439 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
440 return 0;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200441err:
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200442 nft_trans_destroy(trans);
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200443 return ret;
444}
445
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200446static int nft_trans_table_add(struct nft_ctx *ctx, int msg_type)
447{
448 struct nft_trans *trans;
449
450 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_table));
451 if (trans == NULL)
452 return -ENOMEM;
453
454 if (msg_type == NFT_MSG_NEWTABLE)
455 ctx->table->flags |= NFT_TABLE_INACTIVE;
456
457 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
458 return 0;
459}
460
Patrick McHardy96518512013-10-14 11:00:02 +0200461static int nf_tables_newtable(struct sock *nlsk, struct sk_buff *skb,
462 const struct nlmsghdr *nlh,
463 const struct nlattr * const nla[])
464{
465 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
466 const struct nlattr *name;
467 struct nft_af_info *afi;
468 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200469 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200470 int family = nfmsg->nfgen_family;
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000471 u32 flags = 0;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200472 struct nft_ctx ctx;
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200473 int err;
Patrick McHardy96518512013-10-14 11:00:02 +0200474
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200475 afi = nf_tables_afinfo_lookup(net, family, true);
Patrick McHardy96518512013-10-14 11:00:02 +0200476 if (IS_ERR(afi))
477 return PTR_ERR(afi);
478
479 name = nla[NFTA_TABLE_NAME];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200480 table = nf_tables_table_lookup(afi, name);
Patrick McHardy96518512013-10-14 11:00:02 +0200481 if (IS_ERR(table)) {
482 if (PTR_ERR(table) != -ENOENT)
483 return PTR_ERR(table);
484 table = NULL;
485 }
486
487 if (table != NULL) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200488 if (table->flags & NFT_TABLE_INACTIVE)
489 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200490 if (nlh->nlmsg_flags & NLM_F_EXCL)
491 return -EEXIST;
492 if (nlh->nlmsg_flags & NLM_F_REPLACE)
493 return -EOPNOTSUPP;
Pablo Neira Ayusoe1aaca92014-03-30 14:04:53 +0200494
495 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
496 return nf_tables_updtable(&ctx);
Patrick McHardy96518512013-10-14 11:00:02 +0200497 }
498
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000499 if (nla[NFTA_TABLE_FLAGS]) {
500 flags = ntohl(nla_get_be32(nla[NFTA_TABLE_FLAGS]));
501 if (flags & ~NFT_TABLE_F_DORMANT)
502 return -EINVAL;
503 }
504
Patrick McHardy7047f9d2014-01-09 18:42:40 +0000505 if (!try_module_get(afi->owner))
506 return -EAFNOSUPPORT;
507
Patrick McHardy96518512013-10-14 11:00:02 +0200508 table = kzalloc(sizeof(*table) + nla_len(name), GFP_KERNEL);
Patrick McHardy7047f9d2014-01-09 18:42:40 +0000509 if (table == NULL) {
510 module_put(afi->owner);
Patrick McHardy96518512013-10-14 11:00:02 +0200511 return -ENOMEM;
Patrick McHardy7047f9d2014-01-09 18:42:40 +0000512 }
Patrick McHardy96518512013-10-14 11:00:02 +0200513
514 nla_strlcpy(table->name, name, nla_len(name));
515 INIT_LIST_HEAD(&table->chains);
Patrick McHardy20a69342013-10-11 12:06:22 +0200516 INIT_LIST_HEAD(&table->sets);
Patrick McHardyc5c1f972014-01-09 18:42:39 +0000517 table->flags = flags;
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +0200518
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200519 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
520 err = nft_trans_table_add(&ctx, NFT_MSG_NEWTABLE);
521 if (err < 0) {
522 kfree(table);
523 module_put(afi->owner);
524 return err;
525 }
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200526 list_add_tail_rcu(&table->list, &afi->tables);
Patrick McHardy96518512013-10-14 11:00:02 +0200527 return 0;
528}
529
530static int nf_tables_deltable(struct sock *nlsk, struct sk_buff *skb,
531 const struct nlmsghdr *nlh,
532 const struct nlattr * const nla[])
533{
534 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
535 struct nft_af_info *afi;
536 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200537 struct net *net = sock_net(skb->sk);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200538 int family = nfmsg->nfgen_family, err;
539 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +0200540
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200541 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +0200542 if (IS_ERR(afi))
543 return PTR_ERR(afi);
544
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200545 table = nf_tables_table_lookup(afi, nla[NFTA_TABLE_NAME]);
Patrick McHardy96518512013-10-14 11:00:02 +0200546 if (IS_ERR(table))
547 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200548 if (table->flags & NFT_TABLE_INACTIVE)
549 return -ENOENT;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +0200550 if (table->use > 0)
Patrick McHardy96518512013-10-14 11:00:02 +0200551 return -EBUSY;
552
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200553 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
554 err = nft_trans_table_add(&ctx, NFT_MSG_DELTABLE);
555 if (err < 0)
556 return err;
557
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200558 list_del_rcu(&table->list);
Patrick McHardy96518512013-10-14 11:00:02 +0200559 return 0;
560}
561
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200562static void nf_tables_table_destroy(struct nft_ctx *ctx)
563{
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +0200564 BUG_ON(ctx->table->use > 0);
565
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200566 kfree(ctx->table);
567 module_put(ctx->afi->owner);
568}
569
Patrick McHardy2a37d752014-01-09 18:42:37 +0000570int nft_register_chain_type(const struct nf_chain_type *ctype)
Patrick McHardy96518512013-10-14 11:00:02 +0200571{
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200572 int err = 0;
Patrick McHardy96518512013-10-14 11:00:02 +0200573
574 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200575 if (chain_type[ctype->family][ctype->type] != NULL) {
576 err = -EBUSY;
577 goto out;
Patrick McHardy96518512013-10-14 11:00:02 +0200578 }
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200579 chain_type[ctype->family][ctype->type] = ctype;
580out:
Patrick McHardy96518512013-10-14 11:00:02 +0200581 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
582 return err;
583}
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200584EXPORT_SYMBOL_GPL(nft_register_chain_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200585
Patrick McHardy2a37d752014-01-09 18:42:37 +0000586void nft_unregister_chain_type(const struct nf_chain_type *ctype)
Patrick McHardy96518512013-10-14 11:00:02 +0200587{
Patrick McHardy96518512013-10-14 11:00:02 +0200588 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200589 chain_type[ctype->family][ctype->type] = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +0200590 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
591}
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200592EXPORT_SYMBOL_GPL(nft_unregister_chain_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200593
594/*
595 * Chains
596 */
597
598static struct nft_chain *
599nf_tables_chain_lookup_byhandle(const struct nft_table *table, u64 handle)
600{
601 struct nft_chain *chain;
602
603 list_for_each_entry(chain, &table->chains, list) {
604 if (chain->handle == handle)
605 return chain;
606 }
607
608 return ERR_PTR(-ENOENT);
609}
610
611static struct nft_chain *nf_tables_chain_lookup(const struct nft_table *table,
612 const struct nlattr *nla)
613{
614 struct nft_chain *chain;
615
616 if (nla == NULL)
617 return ERR_PTR(-EINVAL);
618
619 list_for_each_entry(chain, &table->chains, list) {
620 if (!nla_strcmp(nla, chain->name))
621 return chain;
622 }
623
624 return ERR_PTR(-ENOENT);
625}
626
627static const struct nla_policy nft_chain_policy[NFTA_CHAIN_MAX + 1] = {
628 [NFTA_CHAIN_TABLE] = { .type = NLA_STRING },
629 [NFTA_CHAIN_HANDLE] = { .type = NLA_U64 },
630 [NFTA_CHAIN_NAME] = { .type = NLA_STRING,
631 .len = NFT_CHAIN_MAXNAMELEN - 1 },
632 [NFTA_CHAIN_HOOK] = { .type = NLA_NESTED },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200633 [NFTA_CHAIN_POLICY] = { .type = NLA_U32 },
Pablo Neira4c1f7812014-03-31 17:43:47 +0200634 [NFTA_CHAIN_TYPE] = { .type = NLA_STRING },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200635 [NFTA_CHAIN_COUNTERS] = { .type = NLA_NESTED },
Patrick McHardy96518512013-10-14 11:00:02 +0200636};
637
638static const struct nla_policy nft_hook_policy[NFTA_HOOK_MAX + 1] = {
639 [NFTA_HOOK_HOOKNUM] = { .type = NLA_U32 },
640 [NFTA_HOOK_PRIORITY] = { .type = NLA_U32 },
641};
642
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200643static int nft_dump_stats(struct sk_buff *skb, struct nft_stats __percpu *stats)
644{
645 struct nft_stats *cpu_stats, total;
646 struct nlattr *nest;
Eric Dumazetce355e22014-07-09 15:14:06 +0200647 unsigned int seq;
648 u64 pkts, bytes;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200649 int cpu;
650
651 memset(&total, 0, sizeof(total));
652 for_each_possible_cpu(cpu) {
653 cpu_stats = per_cpu_ptr(stats, cpu);
Eric Dumazetce355e22014-07-09 15:14:06 +0200654 do {
655 seq = u64_stats_fetch_begin_irq(&cpu_stats->syncp);
656 pkts = cpu_stats->pkts;
657 bytes = cpu_stats->bytes;
658 } while (u64_stats_fetch_retry_irq(&cpu_stats->syncp, seq));
659 total.pkts += pkts;
660 total.bytes += bytes;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200661 }
662 nest = nla_nest_start(skb, NFTA_CHAIN_COUNTERS);
663 if (nest == NULL)
664 goto nla_put_failure;
665
666 if (nla_put_be64(skb, NFTA_COUNTER_PACKETS, cpu_to_be64(total.pkts)) ||
667 nla_put_be64(skb, NFTA_COUNTER_BYTES, cpu_to_be64(total.bytes)))
668 goto nla_put_failure;
669
670 nla_nest_end(skb, nest);
671 return 0;
672
673nla_put_failure:
674 return -ENOSPC;
675}
676
Patrick McHardy96518512013-10-14 11:00:02 +0200677static int nf_tables_fill_chain_info(struct sk_buff *skb, u32 portid, u32 seq,
678 int event, u32 flags, int family,
679 const struct nft_table *table,
680 const struct nft_chain *chain)
681{
682 struct nlmsghdr *nlh;
683 struct nfgenmsg *nfmsg;
684
685 event |= NFNL_SUBSYS_NFTABLES << 8;
686 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg), flags);
687 if (nlh == NULL)
688 goto nla_put_failure;
689
690 nfmsg = nlmsg_data(nlh);
691 nfmsg->nfgen_family = family;
692 nfmsg->version = NFNETLINK_V0;
693 nfmsg->res_id = 0;
694
695 if (nla_put_string(skb, NFTA_CHAIN_TABLE, table->name))
696 goto nla_put_failure;
697 if (nla_put_be64(skb, NFTA_CHAIN_HANDLE, cpu_to_be64(chain->handle)))
698 goto nla_put_failure;
699 if (nla_put_string(skb, NFTA_CHAIN_NAME, chain->name))
700 goto nla_put_failure;
701
702 if (chain->flags & NFT_BASE_CHAIN) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200703 const struct nft_base_chain *basechain = nft_base_chain(chain);
Patrick McHardy115a60b2014-01-03 12:16:15 +0000704 const struct nf_hook_ops *ops = &basechain->ops[0];
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200705 struct nlattr *nest;
706
707 nest = nla_nest_start(skb, NFTA_CHAIN_HOOK);
Patrick McHardy96518512013-10-14 11:00:02 +0200708 if (nest == NULL)
709 goto nla_put_failure;
710 if (nla_put_be32(skb, NFTA_HOOK_HOOKNUM, htonl(ops->hooknum)))
711 goto nla_put_failure;
712 if (nla_put_be32(skb, NFTA_HOOK_PRIORITY, htonl(ops->priority)))
713 goto nla_put_failure;
714 nla_nest_end(skb, nest);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200715
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200716 if (nla_put_be32(skb, NFTA_CHAIN_POLICY,
717 htonl(basechain->policy)))
718 goto nla_put_failure;
719
Patrick McHardybaae3e62014-01-09 18:42:34 +0000720 if (nla_put_string(skb, NFTA_CHAIN_TYPE, basechain->type->name))
721 goto nla_put_failure;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200722
723 if (nft_dump_stats(skb, nft_base_chain(chain)->stats))
724 goto nla_put_failure;
Patrick McHardy96518512013-10-14 11:00:02 +0200725 }
726
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200727 if (nla_put_be32(skb, NFTA_CHAIN_USE, htonl(chain->use)))
728 goto nla_put_failure;
729
Patrick McHardy96518512013-10-14 11:00:02 +0200730 return nlmsg_end(skb, nlh);
731
732nla_put_failure:
733 nlmsg_trim(skb, nlh);
734 return -1;
735}
736
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200737static int nf_tables_chain_notify(const struct nft_ctx *ctx, int event)
Patrick McHardy96518512013-10-14 11:00:02 +0200738{
739 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +0200740 int err;
741
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200742 if (!ctx->report &&
743 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +0200744 return 0;
745
746 err = -ENOBUFS;
747 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
748 if (skb == NULL)
749 goto err;
750
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200751 err = nf_tables_fill_chain_info(skb, ctx->portid, ctx->seq, event, 0,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +0200752 ctx->afi->family, ctx->table,
753 ctx->chain);
Patrick McHardy96518512013-10-14 11:00:02 +0200754 if (err < 0) {
755 kfree_skb(skb);
756 goto err;
757 }
758
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200759 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
760 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +0200761err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +0200762 if (err < 0) {
763 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
764 err);
765 }
Patrick McHardy96518512013-10-14 11:00:02 +0200766 return err;
767}
768
769static int nf_tables_dump_chains(struct sk_buff *skb,
770 struct netlink_callback *cb)
771{
772 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
773 const struct nft_af_info *afi;
774 const struct nft_table *table;
775 const struct nft_chain *chain;
776 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200777 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200778 int family = nfmsg->nfgen_family;
779
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200780 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200781 cb->seq = net->nft.base_seq;
782
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200783 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200784 if (family != NFPROTO_UNSPEC && family != afi->family)
785 continue;
786
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200787 list_for_each_entry_rcu(table, &afi->tables, list) {
788 list_for_each_entry_rcu(chain, &table->chains, list) {
Patrick McHardy96518512013-10-14 11:00:02 +0200789 if (idx < s_idx)
790 goto cont;
791 if (idx > s_idx)
792 memset(&cb->args[1], 0,
793 sizeof(cb->args) - sizeof(cb->args[0]));
794 if (nf_tables_fill_chain_info(skb, NETLINK_CB(cb->skb).portid,
795 cb->nlh->nlmsg_seq,
796 NFT_MSG_NEWCHAIN,
797 NLM_F_MULTI,
798 afi->family, table, chain) < 0)
799 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +0200800
801 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +0200802cont:
803 idx++;
804 }
805 }
806 }
807done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +0200808 rcu_read_unlock();
Patrick McHardy96518512013-10-14 11:00:02 +0200809 cb->args[0] = idx;
810 return skb->len;
811}
812
Patrick McHardy96518512013-10-14 11:00:02 +0200813static int nf_tables_getchain(struct sock *nlsk, struct sk_buff *skb,
814 const struct nlmsghdr *nlh,
815 const struct nlattr * const nla[])
816{
817 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
818 const struct nft_af_info *afi;
819 const struct nft_table *table;
820 const struct nft_chain *chain;
821 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200822 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200823 int family = nfmsg->nfgen_family;
824 int err;
825
826 if (nlh->nlmsg_flags & NLM_F_DUMP) {
827 struct netlink_dump_control c = {
828 .dump = nf_tables_dump_chains,
829 };
830 return netlink_dump_start(nlsk, skb, nlh, &c);
831 }
832
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200833 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +0200834 if (IS_ERR(afi))
835 return PTR_ERR(afi);
836
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200837 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +0200838 if (IS_ERR(table))
839 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +0200840 if (table->flags & NFT_TABLE_INACTIVE)
841 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200842
843 chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
844 if (IS_ERR(chain))
845 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +0200846 if (chain->flags & NFT_CHAIN_INACTIVE)
847 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +0200848
849 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
850 if (!skb2)
851 return -ENOMEM;
852
853 err = nf_tables_fill_chain_info(skb2, NETLINK_CB(skb).portid,
854 nlh->nlmsg_seq, NFT_MSG_NEWCHAIN, 0,
855 family, table, chain);
856 if (err < 0)
857 goto err;
858
859 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
860
861err:
862 kfree_skb(skb2);
863 return err;
864}
865
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200866static const struct nla_policy nft_counter_policy[NFTA_COUNTER_MAX + 1] = {
867 [NFTA_COUNTER_PACKETS] = { .type = NLA_U64 },
868 [NFTA_COUNTER_BYTES] = { .type = NLA_U64 },
869};
870
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200871static struct nft_stats __percpu *nft_stats_alloc(const struct nlattr *attr)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200872{
873 struct nlattr *tb[NFTA_COUNTER_MAX+1];
874 struct nft_stats __percpu *newstats;
875 struct nft_stats *stats;
876 int err;
877
878 err = nla_parse_nested(tb, NFTA_COUNTER_MAX, attr, nft_counter_policy);
879 if (err < 0)
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200880 return ERR_PTR(err);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200881
882 if (!tb[NFTA_COUNTER_BYTES] || !tb[NFTA_COUNTER_PACKETS])
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200883 return ERR_PTR(-EINVAL);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200884
Eric Dumazetce355e22014-07-09 15:14:06 +0200885 newstats = netdev_alloc_pcpu_stats(struct nft_stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200886 if (newstats == NULL)
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200887 return ERR_PTR(-ENOMEM);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200888
889 /* Restore old counters on this cpu, no problem. Per-cpu statistics
890 * are not exposed to userspace.
891 */
892 stats = this_cpu_ptr(newstats);
893 stats->bytes = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_BYTES]));
894 stats->pkts = be64_to_cpu(nla_get_be64(tb[NFTA_COUNTER_PACKETS]));
895
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200896 return newstats;
897}
898
899static void nft_chain_stats_replace(struct nft_base_chain *chain,
900 struct nft_stats __percpu *newstats)
901{
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200902 if (chain->stats) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200903 struct nft_stats __percpu *oldstats =
Patrick McHardy67a8fc22014-02-18 18:06:49 +0000904 nft_dereference(chain->stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200905
906 rcu_assign_pointer(chain->stats, newstats);
907 synchronize_rcu();
908 free_percpu(oldstats);
909 } else
910 rcu_assign_pointer(chain->stats, newstats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200911}
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200912
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +0200913static int nft_trans_chain_add(struct nft_ctx *ctx, int msg_type)
914{
915 struct nft_trans *trans;
916
917 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_chain));
918 if (trans == NULL)
919 return -ENOMEM;
920
921 if (msg_type == NFT_MSG_NEWCHAIN)
922 ctx->chain->flags |= NFT_CHAIN_INACTIVE;
923
924 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200925 return 0;
926}
927
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +0200928static void nf_tables_chain_destroy(struct nft_chain *chain)
929{
930 BUG_ON(chain->use > 0);
931
932 if (chain->flags & NFT_BASE_CHAIN) {
933 module_put(nft_base_chain(chain)->type->owner);
934 free_percpu(nft_base_chain(chain)->stats);
935 kfree(nft_base_chain(chain));
936 } else {
937 kfree(chain);
938 }
939}
940
Patrick McHardy96518512013-10-14 11:00:02 +0200941static int nf_tables_newchain(struct sock *nlsk, struct sk_buff *skb,
942 const struct nlmsghdr *nlh,
943 const struct nlattr * const nla[])
944{
945 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
946 const struct nlattr * uninitialized_var(name);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +0200947 struct nft_af_info *afi;
Patrick McHardy96518512013-10-14 11:00:02 +0200948 struct nft_table *table;
949 struct nft_chain *chain;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200950 struct nft_base_chain *basechain = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +0200951 struct nlattr *ha[NFTA_HOOK_MAX + 1];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200952 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +0200953 int family = nfmsg->nfgen_family;
Patrick McHardy57de2a02014-01-09 18:42:31 +0000954 u8 policy = NF_ACCEPT;
Patrick McHardy96518512013-10-14 11:00:02 +0200955 u64 handle = 0;
Patrick McHardy115a60b2014-01-03 12:16:15 +0000956 unsigned int i;
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +0200957 struct nft_stats __percpu *stats;
Patrick McHardy96518512013-10-14 11:00:02 +0200958 int err;
959 bool create;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +0200960 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +0200961
962 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
963
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +0200964 afi = nf_tables_afinfo_lookup(net, family, true);
Patrick McHardy96518512013-10-14 11:00:02 +0200965 if (IS_ERR(afi))
966 return PTR_ERR(afi);
967
Pablo Neira Ayuso93707612013-10-10 23:21:26 +0200968 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +0200969 if (IS_ERR(table))
970 return PTR_ERR(table);
971
Patrick McHardy96518512013-10-14 11:00:02 +0200972 chain = NULL;
973 name = nla[NFTA_CHAIN_NAME];
974
975 if (nla[NFTA_CHAIN_HANDLE]) {
976 handle = be64_to_cpu(nla_get_be64(nla[NFTA_CHAIN_HANDLE]));
977 chain = nf_tables_chain_lookup_byhandle(table, handle);
978 if (IS_ERR(chain))
979 return PTR_ERR(chain);
980 } else {
981 chain = nf_tables_chain_lookup(table, name);
982 if (IS_ERR(chain)) {
983 if (PTR_ERR(chain) != -ENOENT)
984 return PTR_ERR(chain);
985 chain = NULL;
986 }
987 }
988
Patrick McHardy57de2a02014-01-09 18:42:31 +0000989 if (nla[NFTA_CHAIN_POLICY]) {
990 if ((chain != NULL &&
991 !(chain->flags & NFT_BASE_CHAIN)) ||
992 nla[NFTA_CHAIN_HOOK] == NULL)
993 return -EOPNOTSUPP;
994
Pablo Neira Ayuso8f46df12014-01-10 15:11:25 +0100995 policy = ntohl(nla_get_be32(nla[NFTA_CHAIN_POLICY]));
Patrick McHardy57de2a02014-01-09 18:42:31 +0000996 switch (policy) {
997 case NF_DROP:
998 case NF_ACCEPT:
999 break;
1000 default:
1001 return -EINVAL;
1002 }
1003 }
1004
Patrick McHardy96518512013-10-14 11:00:02 +02001005 if (chain != NULL) {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001006 struct nft_stats *stats = NULL;
1007 struct nft_trans *trans;
1008
1009 if (chain->flags & NFT_CHAIN_INACTIVE)
1010 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001011 if (nlh->nlmsg_flags & NLM_F_EXCL)
1012 return -EEXIST;
1013 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1014 return -EOPNOTSUPP;
1015
1016 if (nla[NFTA_CHAIN_HANDLE] && name &&
1017 !IS_ERR(nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME])))
1018 return -EEXIST;
1019
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001020 if (nla[NFTA_CHAIN_COUNTERS]) {
1021 if (!(chain->flags & NFT_BASE_CHAIN))
1022 return -EOPNOTSUPP;
1023
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001024 stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1025 if (IS_ERR(stats))
1026 return PTR_ERR(stats);
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001027 }
1028
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001029 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1030 trans = nft_trans_alloc(&ctx, NFT_MSG_NEWCHAIN,
1031 sizeof(struct nft_trans_chain));
1032 if (trans == NULL)
1033 return -ENOMEM;
1034
1035 nft_trans_chain_stats(trans) = stats;
1036 nft_trans_chain_update(trans) = true;
1037
Patrick McHardy4401a862014-01-09 18:42:32 +00001038 if (nla[NFTA_CHAIN_POLICY])
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001039 nft_trans_chain_policy(trans) = policy;
1040 else
1041 nft_trans_chain_policy(trans) = -1;
Patrick McHardy4401a862014-01-09 18:42:32 +00001042
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001043 if (nla[NFTA_CHAIN_HANDLE] && name) {
1044 nla_strlcpy(nft_trans_chain_name(trans), name,
1045 NFT_CHAIN_MAXNAMELEN);
1046 }
1047 list_add_tail(&trans->list, &net->nft.commit_list);
1048 return 0;
Patrick McHardy96518512013-10-14 11:00:02 +02001049 }
1050
Patrick McHardy75820672014-01-09 18:42:33 +00001051 if (table->use == UINT_MAX)
1052 return -EOVERFLOW;
1053
Patrick McHardy96518512013-10-14 11:00:02 +02001054 if (nla[NFTA_CHAIN_HOOK]) {
Patrick McHardy2a37d752014-01-09 18:42:37 +00001055 const struct nf_chain_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001056 struct nf_hook_ops *ops;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001057 nf_hookfn *hookfn;
Patrick McHardy115a60b2014-01-03 12:16:15 +00001058 u32 hooknum, priority;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001059
Patrick McHardybaae3e62014-01-09 18:42:34 +00001060 type = chain_type[family][NFT_CHAIN_T_DEFAULT];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001061 if (nla[NFTA_CHAIN_TYPE]) {
1062 type = nf_tables_chain_type_lookup(afi,
1063 nla[NFTA_CHAIN_TYPE],
1064 create);
Patrick McHardy93b08062014-01-09 18:42:36 +00001065 if (IS_ERR(type))
1066 return PTR_ERR(type);
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001067 }
Patrick McHardy96518512013-10-14 11:00:02 +02001068
1069 err = nla_parse_nested(ha, NFTA_HOOK_MAX, nla[NFTA_CHAIN_HOOK],
1070 nft_hook_policy);
1071 if (err < 0)
1072 return err;
1073 if (ha[NFTA_HOOK_HOOKNUM] == NULL ||
1074 ha[NFTA_HOOK_PRIORITY] == NULL)
1075 return -EINVAL;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001076
1077 hooknum = ntohl(nla_get_be32(ha[NFTA_HOOK_HOOKNUM]));
1078 if (hooknum >= afi->nhooks)
Patrick McHardy96518512013-10-14 11:00:02 +02001079 return -EINVAL;
Patrick McHardy115a60b2014-01-03 12:16:15 +00001080 priority = ntohl(nla_get_be32(ha[NFTA_HOOK_PRIORITY]));
Patrick McHardy96518512013-10-14 11:00:02 +02001081
Patrick McHardybaae3e62014-01-09 18:42:34 +00001082 if (!(type->hook_mask & (1 << hooknum)))
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001083 return -EOPNOTSUPP;
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001084 if (!try_module_get(type->owner))
Patrick McHardybaae3e62014-01-09 18:42:34 +00001085 return -ENOENT;
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001086 hookfn = type->hooks[hooknum];
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001087
Patrick McHardy96518512013-10-14 11:00:02 +02001088 basechain = kzalloc(sizeof(*basechain), GFP_KERNEL);
1089 if (basechain == NULL)
1090 return -ENOMEM;
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001091
Patrick McHardy4401a862014-01-09 18:42:32 +00001092 if (nla[NFTA_CHAIN_COUNTERS]) {
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001093 stats = nft_stats_alloc(nla[NFTA_CHAIN_COUNTERS]);
1094 if (IS_ERR(stats)) {
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001095 module_put(type->owner);
Patrick McHardy4401a862014-01-09 18:42:32 +00001096 kfree(basechain);
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001097 return PTR_ERR(stats);
Patrick McHardy4401a862014-01-09 18:42:32 +00001098 }
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001099 basechain->stats = stats;
Patrick McHardy4401a862014-01-09 18:42:32 +00001100 } else {
Eric Dumazetce355e22014-07-09 15:14:06 +02001101 stats = netdev_alloc_pcpu_stats(struct nft_stats);
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001102 if (IS_ERR(stats)) {
Patrick McHardyfa2c1de2014-01-09 18:42:38 +00001103 module_put(type->owner);
Patrick McHardy4401a862014-01-09 18:42:32 +00001104 kfree(basechain);
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001105 return PTR_ERR(stats);
Patrick McHardy4401a862014-01-09 18:42:32 +00001106 }
Pablo Neira Ayusoff3cd7b2014-04-09 11:53:06 +02001107 rcu_assign_pointer(basechain->stats, stats);
Patrick McHardy4401a862014-01-09 18:42:32 +00001108 }
1109
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001110 basechain->type = type;
Patrick McHardy96518512013-10-14 11:00:02 +02001111 chain = &basechain->chain;
1112
Patrick McHardy115a60b2014-01-03 12:16:15 +00001113 for (i = 0; i < afi->nops; i++) {
1114 ops = &basechain->ops[i];
1115 ops->pf = family;
1116 ops->owner = afi->owner;
1117 ops->hooknum = hooknum;
1118 ops->priority = priority;
1119 ops->priv = chain;
1120 ops->hook = afi->hooks[ops->hooknum];
1121 if (hookfn)
1122 ops->hook = hookfn;
1123 if (afi->hook_ops_init)
1124 afi->hook_ops_init(ops, i);
1125 }
Patrick McHardy96518512013-10-14 11:00:02 +02001126
1127 chain->flags |= NFT_BASE_CHAIN;
Patrick McHardy57de2a02014-01-09 18:42:31 +00001128 basechain->policy = policy;
Patrick McHardy96518512013-10-14 11:00:02 +02001129 } else {
1130 chain = kzalloc(sizeof(*chain), GFP_KERNEL);
1131 if (chain == NULL)
1132 return -ENOMEM;
1133 }
1134
1135 INIT_LIST_HEAD(&chain->rules);
1136 chain->handle = nf_tables_alloc_handle(table);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001137 chain->net = net;
Pablo Neira Ayusob5bc89b2013-10-10 16:49:19 +02001138 chain->table = table;
Patrick McHardy96518512013-10-14 11:00:02 +02001139 nla_strlcpy(chain->name, name, NFT_CHAIN_MAXNAMELEN);
1140
Pablo Neira Ayuso9ddf6322013-10-10 13:26:33 +02001141 if (!(table->flags & NFT_TABLE_F_DORMANT) &&
1142 chain->flags & NFT_BASE_CHAIN) {
Patrick McHardy115a60b2014-01-03 12:16:15 +00001143 err = nf_register_hooks(nft_base_chain(chain)->ops, afi->nops);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001144 if (err < 0)
1145 goto err1;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001146 }
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001147
1148 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1149 err = nft_trans_chain_add(&ctx, NFT_MSG_NEWCHAIN);
1150 if (err < 0)
1151 goto err2;
1152
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001153 table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001154 list_add_tail_rcu(&chain->list, &table->chains);
Patrick McHardy96518512013-10-14 11:00:02 +02001155 return 0;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001156err2:
1157 if (!(table->flags & NFT_TABLE_F_DORMANT) &&
1158 chain->flags & NFT_BASE_CHAIN) {
1159 nf_unregister_hooks(nft_base_chain(chain)->ops,
1160 afi->nops);
1161 }
1162err1:
1163 nf_tables_chain_destroy(chain);
1164 return err;
Patrick McHardy96518512013-10-14 11:00:02 +02001165}
1166
1167static int nf_tables_delchain(struct sock *nlsk, struct sk_buff *skb,
1168 const struct nlmsghdr *nlh,
1169 const struct nlattr * const nla[])
1170{
1171 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001172 struct nft_af_info *afi;
Patrick McHardy96518512013-10-14 11:00:02 +02001173 struct nft_table *table;
1174 struct nft_chain *chain;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001175 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001176 int family = nfmsg->nfgen_family;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001177 struct nft_ctx ctx;
1178 int err;
Patrick McHardy96518512013-10-14 11:00:02 +02001179
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001180 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001181 if (IS_ERR(afi))
1182 return PTR_ERR(afi);
1183
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001184 table = nf_tables_table_lookup(afi, nla[NFTA_CHAIN_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001185 if (IS_ERR(table))
1186 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001187 if (table->flags & NFT_TABLE_INACTIVE)
1188 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001189
1190 chain = nf_tables_chain_lookup(table, nla[NFTA_CHAIN_NAME]);
1191 if (IS_ERR(chain))
1192 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001193 if (chain->flags & NFT_CHAIN_INACTIVE)
1194 return -ENOENT;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001195 if (chain->use > 0)
Patrick McHardy96518512013-10-14 11:00:02 +02001196 return -EBUSY;
1197
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001198 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1199 err = nft_trans_chain_add(&ctx, NFT_MSG_DELCHAIN);
1200 if (err < 0)
1201 return err;
1202
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001203 table->use--;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001204 list_del_rcu(&chain->list);
Patrick McHardy96518512013-10-14 11:00:02 +02001205 return 0;
1206}
1207
Patrick McHardy96518512013-10-14 11:00:02 +02001208/*
1209 * Expressions
1210 */
1211
1212/**
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001213 * nft_register_expr - register nf_tables expr type
1214 * @ops: expr type
Patrick McHardy96518512013-10-14 11:00:02 +02001215 *
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001216 * Registers the expr type for use with nf_tables. Returns zero on
Patrick McHardy96518512013-10-14 11:00:02 +02001217 * success or a negative errno code otherwise.
1218 */
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001219int nft_register_expr(struct nft_expr_type *type)
Patrick McHardy96518512013-10-14 11:00:02 +02001220{
1221 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Tomasz Bursztyka758dbce2014-04-14 15:41:26 +03001222 if (type->family == NFPROTO_UNSPEC)
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001223 list_add_tail_rcu(&type->list, &nf_tables_expressions);
Tomasz Bursztyka758dbce2014-04-14 15:41:26 +03001224 else
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001225 list_add_rcu(&type->list, &nf_tables_expressions);
Patrick McHardy96518512013-10-14 11:00:02 +02001226 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1227 return 0;
1228}
1229EXPORT_SYMBOL_GPL(nft_register_expr);
1230
1231/**
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001232 * nft_unregister_expr - unregister nf_tables expr type
1233 * @ops: expr type
Patrick McHardy96518512013-10-14 11:00:02 +02001234 *
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001235 * Unregisters the expr typefor use with nf_tables.
Patrick McHardy96518512013-10-14 11:00:02 +02001236 */
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001237void nft_unregister_expr(struct nft_expr_type *type)
Patrick McHardy96518512013-10-14 11:00:02 +02001238{
1239 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001240 list_del_rcu(&type->list);
Patrick McHardy96518512013-10-14 11:00:02 +02001241 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1242}
1243EXPORT_SYMBOL_GPL(nft_unregister_expr);
1244
Patrick McHardy64d46802014-02-05 15:03:37 +00001245static const struct nft_expr_type *__nft_expr_type_get(u8 family,
1246 struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +02001247{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001248 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001249
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001250 list_for_each_entry(type, &nf_tables_expressions, list) {
Patrick McHardy64d46802014-02-05 15:03:37 +00001251 if (!nla_strcmp(nla, type->name) &&
1252 (!type->family || type->family == family))
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001253 return type;
Patrick McHardy96518512013-10-14 11:00:02 +02001254 }
1255 return NULL;
1256}
1257
Patrick McHardy64d46802014-02-05 15:03:37 +00001258static const struct nft_expr_type *nft_expr_type_get(u8 family,
1259 struct nlattr *nla)
Patrick McHardy96518512013-10-14 11:00:02 +02001260{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001261 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001262
1263 if (nla == NULL)
1264 return ERR_PTR(-EINVAL);
1265
Patrick McHardy64d46802014-02-05 15:03:37 +00001266 type = __nft_expr_type_get(family, nla);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001267 if (type != NULL && try_module_get(type->owner))
1268 return type;
Patrick McHardy96518512013-10-14 11:00:02 +02001269
1270#ifdef CONFIG_MODULES
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001271 if (type == NULL) {
Patrick McHardy96518512013-10-14 11:00:02 +02001272 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy64d46802014-02-05 15:03:37 +00001273 request_module("nft-expr-%u-%.*s", family,
1274 nla_len(nla), (char *)nla_data(nla));
1275 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1276 if (__nft_expr_type_get(family, nla))
1277 return ERR_PTR(-EAGAIN);
1278
1279 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy96518512013-10-14 11:00:02 +02001280 request_module("nft-expr-%.*s",
1281 nla_len(nla), (char *)nla_data(nla));
1282 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Patrick McHardy64d46802014-02-05 15:03:37 +00001283 if (__nft_expr_type_get(family, nla))
Patrick McHardy96518512013-10-14 11:00:02 +02001284 return ERR_PTR(-EAGAIN);
1285 }
1286#endif
1287 return ERR_PTR(-ENOENT);
1288}
1289
1290static const struct nla_policy nft_expr_policy[NFTA_EXPR_MAX + 1] = {
1291 [NFTA_EXPR_NAME] = { .type = NLA_STRING },
1292 [NFTA_EXPR_DATA] = { .type = NLA_NESTED },
1293};
1294
1295static int nf_tables_fill_expr_info(struct sk_buff *skb,
1296 const struct nft_expr *expr)
1297{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001298 if (nla_put_string(skb, NFTA_EXPR_NAME, expr->ops->type->name))
Patrick McHardy96518512013-10-14 11:00:02 +02001299 goto nla_put_failure;
1300
1301 if (expr->ops->dump) {
1302 struct nlattr *data = nla_nest_start(skb, NFTA_EXPR_DATA);
1303 if (data == NULL)
1304 goto nla_put_failure;
1305 if (expr->ops->dump(skb, expr) < 0)
1306 goto nla_put_failure;
1307 nla_nest_end(skb, data);
1308 }
1309
1310 return skb->len;
1311
1312nla_put_failure:
1313 return -1;
1314};
1315
1316struct nft_expr_info {
1317 const struct nft_expr_ops *ops;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001318 struct nlattr *tb[NFT_EXPR_MAXATTR + 1];
Patrick McHardy96518512013-10-14 11:00:02 +02001319};
1320
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001321static int nf_tables_expr_parse(const struct nft_ctx *ctx,
1322 const struct nlattr *nla,
Patrick McHardy96518512013-10-14 11:00:02 +02001323 struct nft_expr_info *info)
1324{
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001325 const struct nft_expr_type *type;
Patrick McHardy96518512013-10-14 11:00:02 +02001326 const struct nft_expr_ops *ops;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001327 struct nlattr *tb[NFTA_EXPR_MAX + 1];
Patrick McHardy96518512013-10-14 11:00:02 +02001328 int err;
1329
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001330 err = nla_parse_nested(tb, NFTA_EXPR_MAX, nla, nft_expr_policy);
Patrick McHardy96518512013-10-14 11:00:02 +02001331 if (err < 0)
1332 return err;
1333
Patrick McHardy64d46802014-02-05 15:03:37 +00001334 type = nft_expr_type_get(ctx->afi->family, tb[NFTA_EXPR_NAME]);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001335 if (IS_ERR(type))
1336 return PTR_ERR(type);
1337
1338 if (tb[NFTA_EXPR_DATA]) {
1339 err = nla_parse_nested(info->tb, type->maxattr,
1340 tb[NFTA_EXPR_DATA], type->policy);
1341 if (err < 0)
1342 goto err1;
1343 } else
1344 memset(info->tb, 0, sizeof(info->tb[0]) * (type->maxattr + 1));
1345
1346 if (type->select_ops != NULL) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001347 ops = type->select_ops(ctx,
1348 (const struct nlattr * const *)info->tb);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001349 if (IS_ERR(ops)) {
1350 err = PTR_ERR(ops);
1351 goto err1;
1352 }
1353 } else
1354 ops = type->ops;
1355
Patrick McHardy96518512013-10-14 11:00:02 +02001356 info->ops = ops;
1357 return 0;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001358
1359err1:
1360 module_put(type->owner);
1361 return err;
Patrick McHardy96518512013-10-14 11:00:02 +02001362}
1363
1364static int nf_tables_newexpr(const struct nft_ctx *ctx,
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001365 const struct nft_expr_info *info,
Patrick McHardy96518512013-10-14 11:00:02 +02001366 struct nft_expr *expr)
1367{
1368 const struct nft_expr_ops *ops = info->ops;
1369 int err;
1370
1371 expr->ops = ops;
1372 if (ops->init) {
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001373 err = ops->init(ctx, expr, (const struct nlattr **)info->tb);
Patrick McHardy96518512013-10-14 11:00:02 +02001374 if (err < 0)
1375 goto err1;
1376 }
1377
Patrick McHardy96518512013-10-14 11:00:02 +02001378 return 0;
1379
1380err1:
1381 expr->ops = NULL;
1382 return err;
1383}
1384
Patrick McHardy62472bc2014-03-07 19:08:30 +01001385static void nf_tables_expr_destroy(const struct nft_ctx *ctx,
1386 struct nft_expr *expr)
Patrick McHardy96518512013-10-14 11:00:02 +02001387{
1388 if (expr->ops->destroy)
Patrick McHardy62472bc2014-03-07 19:08:30 +01001389 expr->ops->destroy(ctx, expr);
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001390 module_put(expr->ops->type->owner);
Patrick McHardy96518512013-10-14 11:00:02 +02001391}
1392
1393/*
1394 * Rules
1395 */
1396
1397static struct nft_rule *__nf_tables_rule_lookup(const struct nft_chain *chain,
1398 u64 handle)
1399{
1400 struct nft_rule *rule;
1401
1402 // FIXME: this sucks
1403 list_for_each_entry(rule, &chain->rules, list) {
1404 if (handle == rule->handle)
1405 return rule;
1406 }
1407
1408 return ERR_PTR(-ENOENT);
1409}
1410
1411static struct nft_rule *nf_tables_rule_lookup(const struct nft_chain *chain,
1412 const struct nlattr *nla)
1413{
1414 if (nla == NULL)
1415 return ERR_PTR(-EINVAL);
1416
1417 return __nf_tables_rule_lookup(chain, be64_to_cpu(nla_get_be64(nla)));
1418}
1419
1420static const struct nla_policy nft_rule_policy[NFTA_RULE_MAX + 1] = {
1421 [NFTA_RULE_TABLE] = { .type = NLA_STRING },
1422 [NFTA_RULE_CHAIN] = { .type = NLA_STRING,
1423 .len = NFT_CHAIN_MAXNAMELEN - 1 },
1424 [NFTA_RULE_HANDLE] = { .type = NLA_U64 },
1425 [NFTA_RULE_EXPRESSIONS] = { .type = NLA_NESTED },
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001426 [NFTA_RULE_COMPAT] = { .type = NLA_NESTED },
Eric Leblond5e948462013-10-10 13:41:44 +02001427 [NFTA_RULE_POSITION] = { .type = NLA_U64 },
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001428 [NFTA_RULE_USERDATA] = { .type = NLA_BINARY,
1429 .len = NFT_USERDATA_MAXLEN },
Patrick McHardy96518512013-10-14 11:00:02 +02001430};
1431
1432static int nf_tables_fill_rule_info(struct sk_buff *skb, u32 portid, u32 seq,
1433 int event, u32 flags, int family,
1434 const struct nft_table *table,
1435 const struct nft_chain *chain,
1436 const struct nft_rule *rule)
1437{
1438 struct nlmsghdr *nlh;
1439 struct nfgenmsg *nfmsg;
1440 const struct nft_expr *expr, *next;
1441 struct nlattr *list;
Eric Leblond5e948462013-10-10 13:41:44 +02001442 const struct nft_rule *prule;
1443 int type = event | NFNL_SUBSYS_NFTABLES << 8;
Patrick McHardy96518512013-10-14 11:00:02 +02001444
Eric Leblond5e948462013-10-10 13:41:44 +02001445 nlh = nlmsg_put(skb, portid, seq, type, sizeof(struct nfgenmsg),
Patrick McHardy96518512013-10-14 11:00:02 +02001446 flags);
1447 if (nlh == NULL)
1448 goto nla_put_failure;
1449
1450 nfmsg = nlmsg_data(nlh);
1451 nfmsg->nfgen_family = family;
1452 nfmsg->version = NFNETLINK_V0;
1453 nfmsg->res_id = 0;
1454
1455 if (nla_put_string(skb, NFTA_RULE_TABLE, table->name))
1456 goto nla_put_failure;
1457 if (nla_put_string(skb, NFTA_RULE_CHAIN, chain->name))
1458 goto nla_put_failure;
1459 if (nla_put_be64(skb, NFTA_RULE_HANDLE, cpu_to_be64(rule->handle)))
1460 goto nla_put_failure;
1461
Eric Leblond5e948462013-10-10 13:41:44 +02001462 if ((event != NFT_MSG_DELRULE) && (rule->list.prev != &chain->rules)) {
1463 prule = list_entry(rule->list.prev, struct nft_rule, list);
1464 if (nla_put_be64(skb, NFTA_RULE_POSITION,
1465 cpu_to_be64(prule->handle)))
1466 goto nla_put_failure;
1467 }
1468
Patrick McHardy96518512013-10-14 11:00:02 +02001469 list = nla_nest_start(skb, NFTA_RULE_EXPRESSIONS);
1470 if (list == NULL)
1471 goto nla_put_failure;
1472 nft_rule_for_each_expr(expr, next, rule) {
1473 struct nlattr *elem = nla_nest_start(skb, NFTA_LIST_ELEM);
1474 if (elem == NULL)
1475 goto nla_put_failure;
1476 if (nf_tables_fill_expr_info(skb, expr) < 0)
1477 goto nla_put_failure;
1478 nla_nest_end(skb, elem);
1479 }
1480 nla_nest_end(skb, list);
1481
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001482 if (rule->ulen &&
1483 nla_put(skb, NFTA_RULE_USERDATA, rule->ulen, nft_userdata(rule)))
1484 goto nla_put_failure;
1485
Patrick McHardy96518512013-10-14 11:00:02 +02001486 return nlmsg_end(skb, nlh);
1487
1488nla_put_failure:
1489 nlmsg_trim(skb, nlh);
1490 return -1;
1491}
1492
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001493static int nf_tables_rule_notify(const struct nft_ctx *ctx,
Patrick McHardy96518512013-10-14 11:00:02 +02001494 const struct nft_rule *rule,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001495 int event)
Patrick McHardy96518512013-10-14 11:00:02 +02001496{
1497 struct sk_buff *skb;
Patrick McHardy96518512013-10-14 11:00:02 +02001498 int err;
1499
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001500 if (!ctx->report &&
1501 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy96518512013-10-14 11:00:02 +02001502 return 0;
1503
1504 err = -ENOBUFS;
1505 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
1506 if (skb == NULL)
1507 goto err;
1508
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001509 err = nf_tables_fill_rule_info(skb, ctx->portid, ctx->seq, event, 0,
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02001510 ctx->afi->family, ctx->table,
1511 ctx->chain, rule);
Patrick McHardy96518512013-10-14 11:00:02 +02001512 if (err < 0) {
1513 kfree_skb(skb);
1514 goto err;
1515 }
1516
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001517 err = nfnetlink_send(skb, ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1518 ctx->report, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +02001519err:
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02001520 if (err < 0) {
1521 nfnetlink_set_err(ctx->net, ctx->portid, NFNLGRP_NFTABLES,
1522 err);
1523 }
Patrick McHardy96518512013-10-14 11:00:02 +02001524 return err;
1525}
1526
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001527static inline bool
1528nft_rule_is_active(struct net *net, const struct nft_rule *rule)
1529{
1530 return (rule->genmask & (1 << net->nft.gencursor)) == 0;
1531}
1532
1533static inline int gencursor_next(struct net *net)
1534{
1535 return net->nft.gencursor+1 == 1 ? 1 : 0;
1536}
1537
1538static inline int
1539nft_rule_is_active_next(struct net *net, const struct nft_rule *rule)
1540{
1541 return (rule->genmask & (1 << gencursor_next(net))) == 0;
1542}
1543
1544static inline void
1545nft_rule_activate_next(struct net *net, struct nft_rule *rule)
1546{
1547 /* Now inactive, will be active in the future */
1548 rule->genmask = (1 << net->nft.gencursor);
1549}
1550
1551static inline void
1552nft_rule_disactivate_next(struct net *net, struct nft_rule *rule)
1553{
1554 rule->genmask = (1 << gencursor_next(net));
1555}
1556
1557static inline void nft_rule_clear(struct net *net, struct nft_rule *rule)
1558{
1559 rule->genmask = 0;
1560}
1561
Patrick McHardy96518512013-10-14 11:00:02 +02001562static int nf_tables_dump_rules(struct sk_buff *skb,
1563 struct netlink_callback *cb)
1564{
1565 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
1566 const struct nft_af_info *afi;
1567 const struct nft_table *table;
1568 const struct nft_chain *chain;
1569 const struct nft_rule *rule;
1570 unsigned int idx = 0, s_idx = cb->args[0];
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001571 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001572 int family = nfmsg->nfgen_family;
1573
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001574 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001575 cb->seq = net->nft.base_seq;
1576
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001577 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Patrick McHardy96518512013-10-14 11:00:02 +02001578 if (family != NFPROTO_UNSPEC && family != afi->family)
1579 continue;
1580
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001581 list_for_each_entry_rcu(table, &afi->tables, list) {
1582 list_for_each_entry_rcu(chain, &table->chains, list) {
1583 list_for_each_entry_rcu(rule, &chain->rules, list) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001584 if (!nft_rule_is_active(net, rule))
1585 goto cont;
Patrick McHardy96518512013-10-14 11:00:02 +02001586 if (idx < s_idx)
1587 goto cont;
1588 if (idx > s_idx)
1589 memset(&cb->args[1], 0,
1590 sizeof(cb->args) - sizeof(cb->args[0]));
1591 if (nf_tables_fill_rule_info(skb, NETLINK_CB(cb->skb).portid,
1592 cb->nlh->nlmsg_seq,
1593 NFT_MSG_NEWRULE,
1594 NLM_F_MULTI | NLM_F_APPEND,
1595 afi->family, table, chain, rule) < 0)
1596 goto done;
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02001597
1598 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy96518512013-10-14 11:00:02 +02001599cont:
1600 idx++;
1601 }
1602 }
1603 }
1604 }
1605done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001606 rcu_read_unlock();
1607
Patrick McHardy96518512013-10-14 11:00:02 +02001608 cb->args[0] = idx;
1609 return skb->len;
1610}
1611
1612static int nf_tables_getrule(struct sock *nlsk, struct sk_buff *skb,
1613 const struct nlmsghdr *nlh,
1614 const struct nlattr * const nla[])
1615{
1616 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
1617 const struct nft_af_info *afi;
1618 const struct nft_table *table;
1619 const struct nft_chain *chain;
1620 const struct nft_rule *rule;
1621 struct sk_buff *skb2;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001622 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001623 int family = nfmsg->nfgen_family;
1624 int err;
1625
1626 if (nlh->nlmsg_flags & NLM_F_DUMP) {
1627 struct netlink_dump_control c = {
1628 .dump = nf_tables_dump_rules,
1629 };
1630 return netlink_dump_start(nlsk, skb, nlh, &c);
1631 }
1632
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001633 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001634 if (IS_ERR(afi))
1635 return PTR_ERR(afi);
1636
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001637 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001638 if (IS_ERR(table))
1639 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001640 if (table->flags & NFT_TABLE_INACTIVE)
1641 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001642
1643 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1644 if (IS_ERR(chain))
1645 return PTR_ERR(chain);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02001646 if (chain->flags & NFT_CHAIN_INACTIVE)
1647 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001648
1649 rule = nf_tables_rule_lookup(chain, nla[NFTA_RULE_HANDLE]);
1650 if (IS_ERR(rule))
1651 return PTR_ERR(rule);
1652
1653 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
1654 if (!skb2)
1655 return -ENOMEM;
1656
1657 err = nf_tables_fill_rule_info(skb2, NETLINK_CB(skb).portid,
1658 nlh->nlmsg_seq, NFT_MSG_NEWRULE, 0,
1659 family, table, chain, rule);
1660 if (err < 0)
1661 goto err;
1662
1663 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
1664
1665err:
1666 kfree_skb(skb2);
1667 return err;
1668}
1669
Patrick McHardy62472bc2014-03-07 19:08:30 +01001670static void nf_tables_rule_destroy(const struct nft_ctx *ctx,
1671 struct nft_rule *rule)
Patrick McHardy96518512013-10-14 11:00:02 +02001672{
Patrick McHardy96518512013-10-14 11:00:02 +02001673 struct nft_expr *expr;
1674
1675 /*
1676 * Careful: some expressions might not be initialized in case this
1677 * is called on error from nf_tables_newrule().
1678 */
1679 expr = nft_expr_first(rule);
1680 while (expr->ops && expr != nft_expr_last(rule)) {
Patrick McHardy62472bc2014-03-07 19:08:30 +01001681 nf_tables_expr_destroy(ctx, expr);
Patrick McHardy96518512013-10-14 11:00:02 +02001682 expr = nft_expr_next(expr);
1683 }
1684 kfree(rule);
1685}
1686
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02001687static struct nft_trans *nft_trans_rule_add(struct nft_ctx *ctx, int msg_type,
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001688 struct nft_rule *rule)
1689{
1690 struct nft_trans *trans;
1691
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02001692 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_rule));
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001693 if (trans == NULL)
1694 return NULL;
1695
1696 nft_trans_rule(trans) = rule;
1697 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
1698
1699 return trans;
1700}
1701
Patrick McHardy96518512013-10-14 11:00:02 +02001702#define NFT_RULE_MAXEXPRS 128
1703
1704static struct nft_expr_info *info;
1705
1706static int nf_tables_newrule(struct sock *nlsk, struct sk_buff *skb,
1707 const struct nlmsghdr *nlh,
1708 const struct nlattr * const nla[])
1709{
1710 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001711 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001712 struct net *net = sock_net(skb->sk);
Patrick McHardy96518512013-10-14 11:00:02 +02001713 struct nft_table *table;
1714 struct nft_chain *chain;
1715 struct nft_rule *rule, *old_rule = NULL;
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001716 struct nft_trans *trans = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +02001717 struct nft_expr *expr;
1718 struct nft_ctx ctx;
1719 struct nlattr *tmp;
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001720 unsigned int size, i, n, ulen = 0;
Patrick McHardy96518512013-10-14 11:00:02 +02001721 int err, rem;
1722 bool create;
Eric Leblond5e948462013-10-10 13:41:44 +02001723 u64 handle, pos_handle;
Patrick McHardy96518512013-10-14 11:00:02 +02001724
1725 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
1726
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001727 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
Patrick McHardy96518512013-10-14 11:00:02 +02001728 if (IS_ERR(afi))
1729 return PTR_ERR(afi);
1730
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001731 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001732 if (IS_ERR(table))
1733 return PTR_ERR(table);
1734
1735 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1736 if (IS_ERR(chain))
1737 return PTR_ERR(chain);
1738
1739 if (nla[NFTA_RULE_HANDLE]) {
1740 handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_HANDLE]));
1741 rule = __nf_tables_rule_lookup(chain, handle);
1742 if (IS_ERR(rule))
1743 return PTR_ERR(rule);
1744
1745 if (nlh->nlmsg_flags & NLM_F_EXCL)
1746 return -EEXIST;
1747 if (nlh->nlmsg_flags & NLM_F_REPLACE)
1748 old_rule = rule;
1749 else
1750 return -EOPNOTSUPP;
1751 } else {
1752 if (!create || nlh->nlmsg_flags & NLM_F_REPLACE)
1753 return -EINVAL;
1754 handle = nf_tables_alloc_handle(table);
Pablo Neira Ayusoa0a73792014-06-10 10:53:01 +02001755
1756 if (chain->use == UINT_MAX)
1757 return -EOVERFLOW;
Patrick McHardy96518512013-10-14 11:00:02 +02001758 }
1759
Eric Leblond5e948462013-10-10 13:41:44 +02001760 if (nla[NFTA_RULE_POSITION]) {
1761 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
1762 return -EOPNOTSUPP;
1763
1764 pos_handle = be64_to_cpu(nla_get_be64(nla[NFTA_RULE_POSITION]));
1765 old_rule = __nf_tables_rule_lookup(chain, pos_handle);
1766 if (IS_ERR(old_rule))
1767 return PTR_ERR(old_rule);
1768 }
1769
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001770 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1771
Patrick McHardy96518512013-10-14 11:00:02 +02001772 n = 0;
1773 size = 0;
1774 if (nla[NFTA_RULE_EXPRESSIONS]) {
1775 nla_for_each_nested(tmp, nla[NFTA_RULE_EXPRESSIONS], rem) {
1776 err = -EINVAL;
1777 if (nla_type(tmp) != NFTA_LIST_ELEM)
1778 goto err1;
1779 if (n == NFT_RULE_MAXEXPRS)
1780 goto err1;
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02001781 err = nf_tables_expr_parse(&ctx, tmp, &info[n]);
Patrick McHardy96518512013-10-14 11:00:02 +02001782 if (err < 0)
1783 goto err1;
1784 size += info[n].ops->size;
1785 n++;
1786 }
1787 }
1788
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001789 if (nla[NFTA_RULE_USERDATA])
1790 ulen = nla_len(nla[NFTA_RULE_USERDATA]);
1791
Patrick McHardy96518512013-10-14 11:00:02 +02001792 err = -ENOMEM;
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001793 rule = kzalloc(sizeof(*rule) + size + ulen, GFP_KERNEL);
Patrick McHardy96518512013-10-14 11:00:02 +02001794 if (rule == NULL)
1795 goto err1;
1796
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001797 nft_rule_activate_next(net, rule);
1798
Patrick McHardy96518512013-10-14 11:00:02 +02001799 rule->handle = handle;
1800 rule->dlen = size;
Pablo Neira Ayuso0768b3b2014-02-19 17:27:06 +01001801 rule->ulen = ulen;
1802
1803 if (ulen)
1804 nla_memcpy(nft_userdata(rule), nla[NFTA_RULE_USERDATA], ulen);
Patrick McHardy96518512013-10-14 11:00:02 +02001805
Patrick McHardy96518512013-10-14 11:00:02 +02001806 expr = nft_expr_first(rule);
1807 for (i = 0; i < n; i++) {
1808 err = nf_tables_newexpr(&ctx, &info[i], expr);
1809 if (err < 0)
1810 goto err2;
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001811 info[i].ops = NULL;
Patrick McHardy96518512013-10-14 11:00:02 +02001812 expr = nft_expr_next(expr);
1813 }
1814
Patrick McHardy96518512013-10-14 11:00:02 +02001815 if (nlh->nlmsg_flags & NLM_F_REPLACE) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001816 if (nft_rule_is_active_next(net, old_rule)) {
Pablo Neira Ayusoac904ac2014-06-10 10:53:03 +02001817 trans = nft_trans_rule_add(&ctx, NFT_MSG_DELRULE,
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02001818 old_rule);
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001819 if (trans == NULL) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001820 err = -ENOMEM;
1821 goto err2;
1822 }
1823 nft_rule_disactivate_next(net, old_rule);
Pablo Neira Ayusoac34b862014-06-10 10:53:02 +02001824 chain->use--;
Pablo Neira Ayuso5bc5c302014-06-10 10:53:00 +02001825 list_add_tail_rcu(&rule->list, &old_rule->list);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001826 } else {
1827 err = -ENOENT;
1828 goto err2;
1829 }
Patrick McHardy96518512013-10-14 11:00:02 +02001830 } else if (nlh->nlmsg_flags & NLM_F_APPEND)
Eric Leblond5e948462013-10-10 13:41:44 +02001831 if (old_rule)
1832 list_add_rcu(&rule->list, &old_rule->list);
1833 else
1834 list_add_tail_rcu(&rule->list, &chain->rules);
1835 else {
1836 if (old_rule)
1837 list_add_tail_rcu(&rule->list, &old_rule->list);
1838 else
1839 list_add_rcu(&rule->list, &chain->rules);
1840 }
Patrick McHardy96518512013-10-14 11:00:02 +02001841
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02001842 if (nft_trans_rule_add(&ctx, NFT_MSG_NEWRULE, rule) == NULL) {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001843 err = -ENOMEM;
1844 goto err3;
1845 }
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001846 chain->use++;
Patrick McHardy96518512013-10-14 11:00:02 +02001847 return 0;
1848
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001849err3:
1850 list_del_rcu(&rule->list);
Pablo Neira Ayuso1081d112014-04-04 01:24:07 +02001851 if (trans) {
1852 list_del_rcu(&nft_trans_rule(trans)->list);
1853 nft_rule_clear(net, nft_trans_rule(trans));
1854 nft_trans_destroy(trans);
Pablo Neira Ayusoac34b862014-06-10 10:53:02 +02001855 chain->use++;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001856 }
Patrick McHardy96518512013-10-14 11:00:02 +02001857err2:
Patrick McHardy62472bc2014-03-07 19:08:30 +01001858 nf_tables_rule_destroy(&ctx, rule);
Patrick McHardy96518512013-10-14 11:00:02 +02001859err1:
1860 for (i = 0; i < n; i++) {
1861 if (info[i].ops != NULL)
Patrick McHardyef1f7df2013-10-10 11:41:20 +02001862 module_put(info[i].ops->type->owner);
Patrick McHardy96518512013-10-14 11:00:02 +02001863 }
1864 return err;
1865}
1866
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001867static int
1868nf_tables_delrule_one(struct nft_ctx *ctx, struct nft_rule *rule)
1869{
1870 /* You cannot delete the same rule twice */
1871 if (nft_rule_is_active_next(ctx->net, rule)) {
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02001872 if (nft_trans_rule_add(ctx, NFT_MSG_DELRULE, rule) == NULL)
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001873 return -ENOMEM;
1874 nft_rule_disactivate_next(ctx->net, rule);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02001875 ctx->chain->use--;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001876 return 0;
1877 }
1878 return -ENOENT;
1879}
1880
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01001881static int nf_table_delrule_by_chain(struct nft_ctx *ctx)
1882{
1883 struct nft_rule *rule;
1884 int err;
1885
1886 list_for_each_entry(rule, &ctx->chain->rules, list) {
1887 err = nf_tables_delrule_one(ctx, rule);
1888 if (err < 0)
1889 return err;
1890 }
1891 return 0;
1892}
1893
Patrick McHardy96518512013-10-14 11:00:02 +02001894static int nf_tables_delrule(struct sock *nlsk, struct sk_buff *skb,
1895 const struct nlmsghdr *nlh,
1896 const struct nlattr * const nla[])
1897{
1898 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001899 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001900 struct net *net = sock_net(skb->sk);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02001901 struct nft_table *table;
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01001902 struct nft_chain *chain = NULL;
1903 struct nft_rule *rule;
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001904 int family = nfmsg->nfgen_family, err = 0;
1905 struct nft_ctx ctx;
Patrick McHardy96518512013-10-14 11:00:02 +02001906
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02001907 afi = nf_tables_afinfo_lookup(net, family, false);
Patrick McHardy96518512013-10-14 11:00:02 +02001908 if (IS_ERR(afi))
1909 return PTR_ERR(afi);
1910
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02001911 table = nf_tables_table_lookup(afi, nla[NFTA_RULE_TABLE]);
Patrick McHardy96518512013-10-14 11:00:02 +02001912 if (IS_ERR(table))
1913 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02001914 if (table->flags & NFT_TABLE_INACTIVE)
1915 return -ENOENT;
Patrick McHardy96518512013-10-14 11:00:02 +02001916
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01001917 if (nla[NFTA_RULE_CHAIN]) {
1918 chain = nf_tables_chain_lookup(table, nla[NFTA_RULE_CHAIN]);
1919 if (IS_ERR(chain))
1920 return PTR_ERR(chain);
1921 }
Patrick McHardy96518512013-10-14 11:00:02 +02001922
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001923 nft_ctx_init(&ctx, skb, nlh, afi, table, chain, nla);
1924
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01001925 if (chain) {
1926 if (nla[NFTA_RULE_HANDLE]) {
1927 rule = nf_tables_rule_lookup(chain,
1928 nla[NFTA_RULE_HANDLE]);
1929 if (IS_ERR(rule))
1930 return PTR_ERR(rule);
Patrick McHardy96518512013-10-14 11:00:02 +02001931
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001932 err = nf_tables_delrule_one(&ctx, rule);
Pablo Neira Ayusocf9dc092013-11-24 20:39:10 +01001933 } else {
1934 err = nf_table_delrule_by_chain(&ctx);
1935 }
1936 } else {
1937 list_for_each_entry(chain, &table->chains, list) {
1938 ctx.chain = chain;
1939 err = nf_table_delrule_by_chain(&ctx);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001940 if (err < 0)
1941 break;
Patrick McHardy96518512013-10-14 11:00:02 +02001942 }
1943 }
1944
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02001945 return err;
1946}
1947
Patrick McHardy20a69342013-10-11 12:06:22 +02001948/*
1949 * Sets
1950 */
1951
1952static LIST_HEAD(nf_tables_set_ops);
1953
1954int nft_register_set(struct nft_set_ops *ops)
1955{
1956 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001957 list_add_tail_rcu(&ops->list, &nf_tables_set_ops);
Patrick McHardy20a69342013-10-11 12:06:22 +02001958 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1959 return 0;
1960}
1961EXPORT_SYMBOL_GPL(nft_register_set);
1962
1963void nft_unregister_set(struct nft_set_ops *ops)
1964{
1965 nfnl_lock(NFNL_SUBSYS_NFTABLES);
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02001966 list_del_rcu(&ops->list);
Patrick McHardy20a69342013-10-11 12:06:22 +02001967 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1968}
1969EXPORT_SYMBOL_GPL(nft_unregister_set);
1970
Patrick McHardyc50b9602014-03-28 10:19:47 +00001971/*
1972 * Select a set implementation based on the data characteristics and the
1973 * given policy. The total memory use might not be known if no size is
1974 * given, in that case the amount of memory per element is used.
1975 */
1976static const struct nft_set_ops *
1977nft_select_set_ops(const struct nlattr * const nla[],
1978 const struct nft_set_desc *desc,
1979 enum nft_set_policies policy)
Patrick McHardy20a69342013-10-11 12:06:22 +02001980{
Patrick McHardyc50b9602014-03-28 10:19:47 +00001981 const struct nft_set_ops *ops, *bops;
1982 struct nft_set_estimate est, best;
Patrick McHardy20a69342013-10-11 12:06:22 +02001983 u32 features;
1984
1985#ifdef CONFIG_MODULES
1986 if (list_empty(&nf_tables_set_ops)) {
1987 nfnl_unlock(NFNL_SUBSYS_NFTABLES);
1988 request_module("nft-set");
1989 nfnl_lock(NFNL_SUBSYS_NFTABLES);
1990 if (!list_empty(&nf_tables_set_ops))
1991 return ERR_PTR(-EAGAIN);
1992 }
1993#endif
1994 features = 0;
1995 if (nla[NFTA_SET_FLAGS] != NULL) {
1996 features = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
1997 features &= NFT_SET_INTERVAL | NFT_SET_MAP;
1998 }
1999
Patrick McHardyc50b9602014-03-28 10:19:47 +00002000 bops = NULL;
2001 best.size = ~0;
2002 best.class = ~0;
2003
Patrick McHardy20a69342013-10-11 12:06:22 +02002004 list_for_each_entry(ops, &nf_tables_set_ops, list) {
2005 if ((ops->features & features) != features)
2006 continue;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002007 if (!ops->estimate(desc, features, &est))
2008 continue;
2009
2010 switch (policy) {
2011 case NFT_SET_POL_PERFORMANCE:
2012 if (est.class < best.class)
2013 break;
2014 if (est.class == best.class && est.size < best.size)
2015 break;
2016 continue;
2017 case NFT_SET_POL_MEMORY:
2018 if (est.size < best.size)
2019 break;
2020 if (est.size == best.size && est.class < best.class)
2021 break;
2022 continue;
2023 default:
2024 break;
2025 }
2026
Patrick McHardy20a69342013-10-11 12:06:22 +02002027 if (!try_module_get(ops->owner))
2028 continue;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002029 if (bops != NULL)
2030 module_put(bops->owner);
2031
2032 bops = ops;
2033 best = est;
Patrick McHardy20a69342013-10-11 12:06:22 +02002034 }
2035
Patrick McHardyc50b9602014-03-28 10:19:47 +00002036 if (bops != NULL)
2037 return bops;
2038
Patrick McHardy20a69342013-10-11 12:06:22 +02002039 return ERR_PTR(-EOPNOTSUPP);
2040}
2041
2042static const struct nla_policy nft_set_policy[NFTA_SET_MAX + 1] = {
2043 [NFTA_SET_TABLE] = { .type = NLA_STRING },
Pablo Neira Ayusoa9bdd832014-03-24 15:10:37 +01002044 [NFTA_SET_NAME] = { .type = NLA_STRING,
2045 .len = IFNAMSIZ - 1 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002046 [NFTA_SET_FLAGS] = { .type = NLA_U32 },
2047 [NFTA_SET_KEY_TYPE] = { .type = NLA_U32 },
2048 [NFTA_SET_KEY_LEN] = { .type = NLA_U32 },
2049 [NFTA_SET_DATA_TYPE] = { .type = NLA_U32 },
2050 [NFTA_SET_DATA_LEN] = { .type = NLA_U32 },
Patrick McHardyc50b9602014-03-28 10:19:47 +00002051 [NFTA_SET_POLICY] = { .type = NLA_U32 },
2052 [NFTA_SET_DESC] = { .type = NLA_NESTED },
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002053 [NFTA_SET_ID] = { .type = NLA_U32 },
Patrick McHardyc50b9602014-03-28 10:19:47 +00002054};
2055
2056static const struct nla_policy nft_set_desc_policy[NFTA_SET_DESC_MAX + 1] = {
2057 [NFTA_SET_DESC_SIZE] = { .type = NLA_U32 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002058};
2059
2060static int nft_ctx_init_from_setattr(struct nft_ctx *ctx,
2061 const struct sk_buff *skb,
2062 const struct nlmsghdr *nlh,
2063 const struct nlattr * const nla[])
2064{
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002065 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002066 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002067 struct nft_af_info *afi = NULL;
2068 struct nft_table *table = NULL;
Patrick McHardy20a69342013-10-11 12:06:22 +02002069
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002070 if (nfmsg->nfgen_family != NFPROTO_UNSPEC) {
2071 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
2072 if (IS_ERR(afi))
2073 return PTR_ERR(afi);
2074 }
Patrick McHardy20a69342013-10-11 12:06:22 +02002075
2076 if (nla[NFTA_SET_TABLE] != NULL) {
Patrick McHardyec2c9932014-02-05 15:03:35 +00002077 if (afi == NULL)
2078 return -EAFNOSUPPORT;
2079
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002080 table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002081 if (IS_ERR(table))
2082 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002083 if (table->flags & NFT_TABLE_INACTIVE)
2084 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002085 }
2086
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002087 nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002088 return 0;
2089}
2090
2091struct nft_set *nf_tables_set_lookup(const struct nft_table *table,
2092 const struct nlattr *nla)
2093{
2094 struct nft_set *set;
2095
2096 if (nla == NULL)
2097 return ERR_PTR(-EINVAL);
2098
2099 list_for_each_entry(set, &table->sets, list) {
2100 if (!nla_strcmp(nla, set->name))
2101 return set;
2102 }
2103 return ERR_PTR(-ENOENT);
2104}
2105
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002106struct nft_set *nf_tables_set_lookup_byid(const struct net *net,
2107 const struct nlattr *nla)
2108{
2109 struct nft_trans *trans;
2110 u32 id = ntohl(nla_get_be32(nla));
2111
2112 list_for_each_entry(trans, &net->nft.commit_list, list) {
2113 if (trans->msg_type == NFT_MSG_NEWSET &&
2114 id == nft_trans_set_id(trans))
2115 return nft_trans_set(trans);
2116 }
2117 return ERR_PTR(-ENOENT);
2118}
2119
Patrick McHardy20a69342013-10-11 12:06:22 +02002120static int nf_tables_set_alloc_name(struct nft_ctx *ctx, struct nft_set *set,
2121 const char *name)
2122{
2123 const struct nft_set *i;
2124 const char *p;
2125 unsigned long *inuse;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002126 unsigned int n = 0, min = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002127
2128 p = strnchr(name, IFNAMSIZ, '%');
2129 if (p != NULL) {
2130 if (p[1] != 'd' || strchr(p + 2, '%'))
2131 return -EINVAL;
2132
2133 inuse = (unsigned long *)get_zeroed_page(GFP_KERNEL);
2134 if (inuse == NULL)
2135 return -ENOMEM;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002136cont:
Patrick McHardy20a69342013-10-11 12:06:22 +02002137 list_for_each_entry(i, &ctx->table->sets, list) {
Daniel Borkmann14662912013-12-31 12:40:05 +01002138 int tmp;
2139
2140 if (!sscanf(i->name, name, &tmp))
Patrick McHardy20a69342013-10-11 12:06:22 +02002141 continue;
Patrick McHardy60eb1892014-03-07 12:34:05 +01002142 if (tmp < min || tmp >= min + BITS_PER_BYTE * PAGE_SIZE)
Patrick McHardy20a69342013-10-11 12:06:22 +02002143 continue;
Daniel Borkmann14662912013-12-31 12:40:05 +01002144
Patrick McHardy60eb1892014-03-07 12:34:05 +01002145 set_bit(tmp - min, inuse);
Patrick McHardy20a69342013-10-11 12:06:22 +02002146 }
2147
Patrick McHardy53b70282014-02-05 12:26:22 +01002148 n = find_first_zero_bit(inuse, BITS_PER_BYTE * PAGE_SIZE);
Patrick McHardy60eb1892014-03-07 12:34:05 +01002149 if (n >= BITS_PER_BYTE * PAGE_SIZE) {
2150 min += BITS_PER_BYTE * PAGE_SIZE;
2151 memset(inuse, 0, PAGE_SIZE);
2152 goto cont;
2153 }
Patrick McHardy20a69342013-10-11 12:06:22 +02002154 free_page((unsigned long)inuse);
2155 }
2156
Patrick McHardy60eb1892014-03-07 12:34:05 +01002157 snprintf(set->name, sizeof(set->name), name, min + n);
Patrick McHardy20a69342013-10-11 12:06:22 +02002158 list_for_each_entry(i, &ctx->table->sets, list) {
2159 if (!strcmp(set->name, i->name))
2160 return -ENFILE;
2161 }
2162 return 0;
2163}
2164
2165static int nf_tables_fill_set(struct sk_buff *skb, const struct nft_ctx *ctx,
2166 const struct nft_set *set, u16 event, u16 flags)
2167{
2168 struct nfgenmsg *nfmsg;
2169 struct nlmsghdr *nlh;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002170 struct nlattr *desc;
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002171 u32 portid = ctx->portid;
2172 u32 seq = ctx->seq;
Patrick McHardy20a69342013-10-11 12:06:22 +02002173
2174 event |= NFNL_SUBSYS_NFTABLES << 8;
2175 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2176 flags);
2177 if (nlh == NULL)
2178 goto nla_put_failure;
2179
2180 nfmsg = nlmsg_data(nlh);
2181 nfmsg->nfgen_family = ctx->afi->family;
2182 nfmsg->version = NFNETLINK_V0;
2183 nfmsg->res_id = 0;
2184
2185 if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
2186 goto nla_put_failure;
2187 if (nla_put_string(skb, NFTA_SET_NAME, set->name))
2188 goto nla_put_failure;
2189 if (set->flags != 0)
2190 if (nla_put_be32(skb, NFTA_SET_FLAGS, htonl(set->flags)))
2191 goto nla_put_failure;
2192
2193 if (nla_put_be32(skb, NFTA_SET_KEY_TYPE, htonl(set->ktype)))
2194 goto nla_put_failure;
2195 if (nla_put_be32(skb, NFTA_SET_KEY_LEN, htonl(set->klen)))
2196 goto nla_put_failure;
2197 if (set->flags & NFT_SET_MAP) {
2198 if (nla_put_be32(skb, NFTA_SET_DATA_TYPE, htonl(set->dtype)))
2199 goto nla_put_failure;
2200 if (nla_put_be32(skb, NFTA_SET_DATA_LEN, htonl(set->dlen)))
2201 goto nla_put_failure;
2202 }
2203
Patrick McHardyc50b9602014-03-28 10:19:47 +00002204 desc = nla_nest_start(skb, NFTA_SET_DESC);
2205 if (desc == NULL)
2206 goto nla_put_failure;
2207 if (set->size &&
2208 nla_put_be32(skb, NFTA_SET_DESC_SIZE, htonl(set->size)))
2209 goto nla_put_failure;
2210 nla_nest_end(skb, desc);
2211
Patrick McHardy20a69342013-10-11 12:06:22 +02002212 return nlmsg_end(skb, nlh);
2213
2214nla_put_failure:
2215 nlmsg_trim(skb, nlh);
2216 return -1;
2217}
2218
2219static int nf_tables_set_notify(const struct nft_ctx *ctx,
2220 const struct nft_set *set,
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002221 int event, gfp_t gfp_flags)
Patrick McHardy20a69342013-10-11 12:06:22 +02002222{
2223 struct sk_buff *skb;
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002224 u32 portid = ctx->portid;
Patrick McHardy20a69342013-10-11 12:06:22 +02002225 int err;
2226
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002227 if (!ctx->report &&
2228 !nfnetlink_has_listeners(ctx->net, NFNLGRP_NFTABLES))
Patrick McHardy20a69342013-10-11 12:06:22 +02002229 return 0;
2230
2231 err = -ENOBUFS;
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002232 skb = nlmsg_new(NLMSG_GOODSIZE, gfp_flags);
Patrick McHardy20a69342013-10-11 12:06:22 +02002233 if (skb == NULL)
2234 goto err;
2235
2236 err = nf_tables_fill_set(skb, ctx, set, event, 0);
2237 if (err < 0) {
2238 kfree_skb(skb);
2239 goto err;
2240 }
2241
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02002242 err = nfnetlink_send(skb, ctx->net, portid, NFNLGRP_NFTABLES,
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002243 ctx->report, gfp_flags);
Patrick McHardy20a69342013-10-11 12:06:22 +02002244err:
2245 if (err < 0)
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002246 nfnetlink_set_err(ctx->net, portid, NFNLGRP_NFTABLES, err);
Patrick McHardy20a69342013-10-11 12:06:22 +02002247 return err;
2248}
2249
2250static int nf_tables_dump_sets_table(struct nft_ctx *ctx, struct sk_buff *skb,
2251 struct netlink_callback *cb)
2252{
2253 const struct nft_set *set;
2254 unsigned int idx = 0, s_idx = cb->args[0];
2255
2256 if (cb->args[1])
2257 return skb->len;
2258
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002259 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002260 cb->seq = ctx->net->nft.base_seq;
2261
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002262 list_for_each_entry_rcu(set, &ctx->table->sets, list) {
Patrick McHardy20a69342013-10-11 12:06:22 +02002263 if (idx < s_idx)
2264 goto cont;
2265 if (nf_tables_fill_set(skb, ctx, set, NFT_MSG_NEWSET,
2266 NLM_F_MULTI) < 0) {
2267 cb->args[0] = idx;
2268 goto done;
2269 }
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002270 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy20a69342013-10-11 12:06:22 +02002271cont:
2272 idx++;
2273 }
2274 cb->args[1] = 1;
2275done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002276 rcu_read_unlock();
Patrick McHardy20a69342013-10-11 12:06:22 +02002277 return skb->len;
2278}
2279
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002280static int nf_tables_dump_sets_family(struct nft_ctx *ctx, struct sk_buff *skb,
2281 struct netlink_callback *cb)
Patrick McHardy20a69342013-10-11 12:06:22 +02002282{
2283 const struct nft_set *set;
Pablo Neira Ayusoe38195b2013-12-24 18:32:35 +01002284 unsigned int idx, s_idx = cb->args[0];
Patrick McHardy20a69342013-10-11 12:06:22 +02002285 struct nft_table *table, *cur_table = (struct nft_table *)cb->args[2];
2286
2287 if (cb->args[1])
2288 return skb->len;
2289
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002290 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002291 cb->seq = ctx->net->nft.base_seq;
2292
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002293 list_for_each_entry_rcu(table, &ctx->afi->tables, list) {
Pablo Neira Ayusoe38195b2013-12-24 18:32:35 +01002294 if (cur_table) {
2295 if (cur_table != table)
2296 continue;
Patrick McHardy20a69342013-10-11 12:06:22 +02002297
Pablo Neira Ayusoe38195b2013-12-24 18:32:35 +01002298 cur_table = NULL;
2299 }
Patrick McHardy20a69342013-10-11 12:06:22 +02002300 ctx->table = table;
Pablo Neira Ayusoe38195b2013-12-24 18:32:35 +01002301 idx = 0;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002302 list_for_each_entry_rcu(set, &ctx->table->sets, list) {
Patrick McHardy20a69342013-10-11 12:06:22 +02002303 if (idx < s_idx)
2304 goto cont;
2305 if (nf_tables_fill_set(skb, ctx, set, NFT_MSG_NEWSET,
2306 NLM_F_MULTI) < 0) {
2307 cb->args[0] = idx;
2308 cb->args[2] = (unsigned long) table;
2309 goto done;
2310 }
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002311 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Patrick McHardy20a69342013-10-11 12:06:22 +02002312cont:
2313 idx++;
2314 }
2315 }
2316 cb->args[1] = 1;
2317done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002318 rcu_read_unlock();
Patrick McHardy20a69342013-10-11 12:06:22 +02002319 return skb->len;
2320}
2321
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002322static int nf_tables_dump_sets_all(struct nft_ctx *ctx, struct sk_buff *skb,
2323 struct netlink_callback *cb)
2324{
2325 const struct nft_set *set;
2326 unsigned int idx, s_idx = cb->args[0];
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002327 struct nft_af_info *afi;
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002328 struct nft_table *table, *cur_table = (struct nft_table *)cb->args[2];
2329 struct net *net = sock_net(skb->sk);
2330 int cur_family = cb->args[3];
2331
2332 if (cb->args[1])
2333 return skb->len;
2334
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002335 rcu_read_lock();
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002336 cb->seq = net->nft.base_seq;
2337
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002338 list_for_each_entry_rcu(afi, &net->nft.af_info, list) {
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002339 if (cur_family) {
2340 if (afi->family != cur_family)
2341 continue;
2342
2343 cur_family = 0;
2344 }
2345
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002346 list_for_each_entry_rcu(table, &afi->tables, list) {
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002347 if (cur_table) {
2348 if (cur_table != table)
2349 continue;
2350
2351 cur_table = NULL;
2352 }
2353
2354 ctx->table = table;
2355 ctx->afi = afi;
2356 idx = 0;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002357 list_for_each_entry_rcu(set, &ctx->table->sets, list) {
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002358 if (idx < s_idx)
2359 goto cont;
2360 if (nf_tables_fill_set(skb, ctx, set,
2361 NFT_MSG_NEWSET,
2362 NLM_F_MULTI) < 0) {
2363 cb->args[0] = idx;
2364 cb->args[2] = (unsigned long) table;
2365 cb->args[3] = afi->family;
2366 goto done;
2367 }
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02002368 nl_dump_check_consistent(cb, nlmsg_hdr(skb));
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002369cont:
2370 idx++;
2371 }
2372 if (s_idx)
2373 s_idx = 0;
2374 }
2375 }
2376 cb->args[1] = 1;
2377done:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002378 rcu_read_unlock();
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002379 return skb->len;
2380}
2381
Patrick McHardy20a69342013-10-11 12:06:22 +02002382static int nf_tables_dump_sets(struct sk_buff *skb, struct netlink_callback *cb)
2383{
2384 const struct nfgenmsg *nfmsg = nlmsg_data(cb->nlh);
2385 struct nlattr *nla[NFTA_SET_MAX + 1];
2386 struct nft_ctx ctx;
2387 int err, ret;
2388
2389 err = nlmsg_parse(cb->nlh, sizeof(*nfmsg), nla, NFTA_SET_MAX,
2390 nft_set_policy);
2391 if (err < 0)
2392 return err;
2393
2394 err = nft_ctx_init_from_setattr(&ctx, cb->skb, cb->nlh, (void *)nla);
2395 if (err < 0)
2396 return err;
2397
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002398 if (ctx.table == NULL) {
2399 if (ctx.afi == NULL)
2400 ret = nf_tables_dump_sets_all(&ctx, skb, cb);
2401 else
2402 ret = nf_tables_dump_sets_family(&ctx, skb, cb);
2403 } else
Patrick McHardy20a69342013-10-11 12:06:22 +02002404 ret = nf_tables_dump_sets_table(&ctx, skb, cb);
2405
2406 return ret;
2407}
2408
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002409#define NFT_SET_INACTIVE (1 << 15) /* Internal set flag */
2410
Patrick McHardy20a69342013-10-11 12:06:22 +02002411static int nf_tables_getset(struct sock *nlsk, struct sk_buff *skb,
2412 const struct nlmsghdr *nlh,
2413 const struct nlattr * const nla[])
2414{
2415 const struct nft_set *set;
2416 struct nft_ctx ctx;
2417 struct sk_buff *skb2;
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002418 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Patrick McHardy20a69342013-10-11 12:06:22 +02002419 int err;
2420
2421 /* Verify existance before starting dump */
2422 err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2423 if (err < 0)
2424 return err;
2425
2426 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2427 struct netlink_dump_control c = {
2428 .dump = nf_tables_dump_sets,
2429 };
2430 return netlink_dump_start(nlsk, skb, nlh, &c);
2431 }
2432
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002433 /* Only accept unspec with dump */
2434 if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2435 return -EAFNOSUPPORT;
2436
Patrick McHardy20a69342013-10-11 12:06:22 +02002437 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2438 if (IS_ERR(set))
2439 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002440 if (set->flags & NFT_SET_INACTIVE)
2441 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002442
2443 skb2 = alloc_skb(NLMSG_GOODSIZE, GFP_KERNEL);
2444 if (skb2 == NULL)
2445 return -ENOMEM;
2446
2447 err = nf_tables_fill_set(skb2, &ctx, set, NFT_MSG_NEWSET, 0);
2448 if (err < 0)
2449 goto err;
2450
2451 return nlmsg_unicast(nlsk, skb2, NETLINK_CB(skb).portid);
2452
2453err:
2454 kfree_skb(skb2);
2455 return err;
2456}
2457
Patrick McHardyc50b9602014-03-28 10:19:47 +00002458static int nf_tables_set_desc_parse(const struct nft_ctx *ctx,
2459 struct nft_set_desc *desc,
2460 const struct nlattr *nla)
2461{
2462 struct nlattr *da[NFTA_SET_DESC_MAX + 1];
2463 int err;
2464
2465 err = nla_parse_nested(da, NFTA_SET_DESC_MAX, nla, nft_set_desc_policy);
2466 if (err < 0)
2467 return err;
2468
2469 if (da[NFTA_SET_DESC_SIZE] != NULL)
2470 desc->size = ntohl(nla_get_be32(da[NFTA_SET_DESC_SIZE]));
2471
2472 return 0;
2473}
2474
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002475static int nft_trans_set_add(struct nft_ctx *ctx, int msg_type,
2476 struct nft_set *set)
2477{
2478 struct nft_trans *trans;
2479
2480 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_set));
2481 if (trans == NULL)
2482 return -ENOMEM;
2483
2484 if (msg_type == NFT_MSG_NEWSET && ctx->nla[NFTA_SET_ID] != NULL) {
2485 nft_trans_set_id(trans) =
2486 ntohl(nla_get_be32(ctx->nla[NFTA_SET_ID]));
2487 set->flags |= NFT_SET_INACTIVE;
2488 }
2489 nft_trans_set(trans) = set;
2490 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
2491
2492 return 0;
2493}
2494
Patrick McHardy20a69342013-10-11 12:06:22 +02002495static int nf_tables_newset(struct sock *nlsk, struct sk_buff *skb,
2496 const struct nlmsghdr *nlh,
2497 const struct nlattr * const nla[])
2498{
2499 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
2500 const struct nft_set_ops *ops;
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002501 struct nft_af_info *afi;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002502 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002503 struct nft_table *table;
2504 struct nft_set *set;
2505 struct nft_ctx ctx;
2506 char name[IFNAMSIZ];
2507 unsigned int size;
2508 bool create;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002509 u32 ktype, dtype, flags, policy;
2510 struct nft_set_desc desc;
Patrick McHardy20a69342013-10-11 12:06:22 +02002511 int err;
2512
2513 if (nla[NFTA_SET_TABLE] == NULL ||
2514 nla[NFTA_SET_NAME] == NULL ||
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002515 nla[NFTA_SET_KEY_LEN] == NULL ||
2516 nla[NFTA_SET_ID] == NULL)
Patrick McHardy20a69342013-10-11 12:06:22 +02002517 return -EINVAL;
2518
Patrick McHardyc50b9602014-03-28 10:19:47 +00002519 memset(&desc, 0, sizeof(desc));
2520
Patrick McHardy20a69342013-10-11 12:06:22 +02002521 ktype = NFT_DATA_VALUE;
2522 if (nla[NFTA_SET_KEY_TYPE] != NULL) {
2523 ktype = ntohl(nla_get_be32(nla[NFTA_SET_KEY_TYPE]));
2524 if ((ktype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK)
2525 return -EINVAL;
2526 }
2527
Patrick McHardyc50b9602014-03-28 10:19:47 +00002528 desc.klen = ntohl(nla_get_be32(nla[NFTA_SET_KEY_LEN]));
2529 if (desc.klen == 0 || desc.klen > FIELD_SIZEOF(struct nft_data, data))
Patrick McHardy20a69342013-10-11 12:06:22 +02002530 return -EINVAL;
2531
2532 flags = 0;
2533 if (nla[NFTA_SET_FLAGS] != NULL) {
2534 flags = ntohl(nla_get_be32(nla[NFTA_SET_FLAGS]));
2535 if (flags & ~(NFT_SET_ANONYMOUS | NFT_SET_CONSTANT |
2536 NFT_SET_INTERVAL | NFT_SET_MAP))
2537 return -EINVAL;
2538 }
2539
2540 dtype = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02002541 if (nla[NFTA_SET_DATA_TYPE] != NULL) {
2542 if (!(flags & NFT_SET_MAP))
2543 return -EINVAL;
2544
2545 dtype = ntohl(nla_get_be32(nla[NFTA_SET_DATA_TYPE]));
2546 if ((dtype & NFT_DATA_RESERVED_MASK) == NFT_DATA_RESERVED_MASK &&
2547 dtype != NFT_DATA_VERDICT)
2548 return -EINVAL;
2549
2550 if (dtype != NFT_DATA_VERDICT) {
2551 if (nla[NFTA_SET_DATA_LEN] == NULL)
2552 return -EINVAL;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002553 desc.dlen = ntohl(nla_get_be32(nla[NFTA_SET_DATA_LEN]));
2554 if (desc.dlen == 0 ||
2555 desc.dlen > FIELD_SIZEOF(struct nft_data, data))
Patrick McHardy20a69342013-10-11 12:06:22 +02002556 return -EINVAL;
2557 } else
Patrick McHardyc50b9602014-03-28 10:19:47 +00002558 desc.dlen = sizeof(struct nft_data);
Patrick McHardy20a69342013-10-11 12:06:22 +02002559 } else if (flags & NFT_SET_MAP)
2560 return -EINVAL;
2561
Patrick McHardyc50b9602014-03-28 10:19:47 +00002562 policy = NFT_SET_POL_PERFORMANCE;
2563 if (nla[NFTA_SET_POLICY] != NULL)
2564 policy = ntohl(nla_get_be32(nla[NFTA_SET_POLICY]));
2565
2566 if (nla[NFTA_SET_DESC] != NULL) {
2567 err = nf_tables_set_desc_parse(&ctx, &desc, nla[NFTA_SET_DESC]);
2568 if (err < 0)
2569 return err;
2570 }
2571
Patrick McHardy20a69342013-10-11 12:06:22 +02002572 create = nlh->nlmsg_flags & NLM_F_CREATE ? true : false;
2573
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002574 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, create);
Patrick McHardy20a69342013-10-11 12:06:22 +02002575 if (IS_ERR(afi))
2576 return PTR_ERR(afi);
2577
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002578 table = nf_tables_table_lookup(afi, nla[NFTA_SET_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002579 if (IS_ERR(table))
2580 return PTR_ERR(table);
2581
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002582 nft_ctx_init(&ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002583
2584 set = nf_tables_set_lookup(table, nla[NFTA_SET_NAME]);
2585 if (IS_ERR(set)) {
2586 if (PTR_ERR(set) != -ENOENT)
2587 return PTR_ERR(set);
2588 set = NULL;
2589 }
2590
2591 if (set != NULL) {
2592 if (nlh->nlmsg_flags & NLM_F_EXCL)
2593 return -EEXIST;
2594 if (nlh->nlmsg_flags & NLM_F_REPLACE)
2595 return -EOPNOTSUPP;
2596 return 0;
2597 }
2598
2599 if (!(nlh->nlmsg_flags & NLM_F_CREATE))
2600 return -ENOENT;
2601
Patrick McHardyc50b9602014-03-28 10:19:47 +00002602 ops = nft_select_set_ops(nla, &desc, policy);
Patrick McHardy20a69342013-10-11 12:06:22 +02002603 if (IS_ERR(ops))
2604 return PTR_ERR(ops);
2605
2606 size = 0;
2607 if (ops->privsize != NULL)
2608 size = ops->privsize(nla);
2609
2610 err = -ENOMEM;
2611 set = kzalloc(sizeof(*set) + size, GFP_KERNEL);
2612 if (set == NULL)
2613 goto err1;
2614
2615 nla_strlcpy(name, nla[NFTA_SET_NAME], sizeof(set->name));
2616 err = nf_tables_set_alloc_name(&ctx, set, name);
2617 if (err < 0)
2618 goto err2;
2619
2620 INIT_LIST_HEAD(&set->bindings);
2621 set->ops = ops;
2622 set->ktype = ktype;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002623 set->klen = desc.klen;
Patrick McHardy20a69342013-10-11 12:06:22 +02002624 set->dtype = dtype;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002625 set->dlen = desc.dlen;
Patrick McHardy20a69342013-10-11 12:06:22 +02002626 set->flags = flags;
Patrick McHardyc50b9602014-03-28 10:19:47 +00002627 set->size = desc.size;
Patrick McHardy20a69342013-10-11 12:06:22 +02002628
Patrick McHardyc50b9602014-03-28 10:19:47 +00002629 err = ops->init(set, &desc, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002630 if (err < 0)
2631 goto err2;
2632
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002633 err = nft_trans_set_add(&ctx, NFT_MSG_NEWSET, set);
Patrick McHardy20a69342013-10-11 12:06:22 +02002634 if (err < 0)
2635 goto err2;
2636
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002637 list_add_tail_rcu(&set->list, &table->sets);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02002638 table->use++;
Patrick McHardy20a69342013-10-11 12:06:22 +02002639 return 0;
2640
2641err2:
2642 kfree(set);
2643err1:
2644 module_put(ops->owner);
2645 return err;
2646}
2647
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002648static void nft_set_destroy(struct nft_set *set)
2649{
2650 set->ops->destroy(set);
2651 module_put(set->ops->owner);
2652 kfree(set);
2653}
2654
Patrick McHardy20a69342013-10-11 12:06:22 +02002655static void nf_tables_set_destroy(const struct nft_ctx *ctx, struct nft_set *set)
2656{
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002657 list_del_rcu(&set->list);
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02002658 nf_tables_set_notify(ctx, set, NFT_MSG_DELSET, GFP_ATOMIC);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002659 nft_set_destroy(set);
Patrick McHardy20a69342013-10-11 12:06:22 +02002660}
2661
2662static int nf_tables_delset(struct sock *nlsk, struct sk_buff *skb,
2663 const struct nlmsghdr *nlh,
2664 const struct nlattr * const nla[])
2665{
Pablo Neira Ayusoc9c8e482013-12-26 16:49:03 +01002666 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Patrick McHardy20a69342013-10-11 12:06:22 +02002667 struct nft_set *set;
2668 struct nft_ctx ctx;
2669 int err;
2670
Patrick McHardyec2c9932014-02-05 15:03:35 +00002671 if (nfmsg->nfgen_family == NFPROTO_UNSPEC)
2672 return -EAFNOSUPPORT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002673 if (nla[NFTA_SET_TABLE] == NULL)
2674 return -EINVAL;
2675
2676 err = nft_ctx_init_from_setattr(&ctx, skb, nlh, nla);
2677 if (err < 0)
2678 return err;
2679
2680 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_NAME]);
2681 if (IS_ERR(set))
2682 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002683 if (set->flags & NFT_SET_INACTIVE)
2684 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002685 if (!list_empty(&set->bindings))
2686 return -EBUSY;
2687
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002688 err = nft_trans_set_add(&ctx, NFT_MSG_DELSET, set);
2689 if (err < 0)
2690 return err;
2691
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002692 list_del_rcu(&set->list);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02002693 ctx.table->use--;
Patrick McHardy20a69342013-10-11 12:06:22 +02002694 return 0;
2695}
2696
2697static int nf_tables_bind_check_setelem(const struct nft_ctx *ctx,
2698 const struct nft_set *set,
2699 const struct nft_set_iter *iter,
2700 const struct nft_set_elem *elem)
2701{
2702 enum nft_registers dreg;
2703
2704 dreg = nft_type_to_reg(set->dtype);
Pablo Neira Ayuso2ee0d3c2013-12-28 00:59:38 +01002705 return nft_validate_data_load(ctx, dreg, &elem->data,
2706 set->dtype == NFT_DATA_VERDICT ?
2707 NFT_DATA_VERDICT : NFT_DATA_VALUE);
Patrick McHardy20a69342013-10-11 12:06:22 +02002708}
2709
2710int nf_tables_bind_set(const struct nft_ctx *ctx, struct nft_set *set,
2711 struct nft_set_binding *binding)
2712{
2713 struct nft_set_binding *i;
2714 struct nft_set_iter iter;
2715
2716 if (!list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS)
2717 return -EBUSY;
2718
2719 if (set->flags & NFT_SET_MAP) {
2720 /* If the set is already bound to the same chain all
2721 * jumps are already validated for that chain.
2722 */
2723 list_for_each_entry(i, &set->bindings, list) {
2724 if (i->chain == binding->chain)
2725 goto bind;
2726 }
2727
2728 iter.skip = 0;
2729 iter.count = 0;
2730 iter.err = 0;
2731 iter.fn = nf_tables_bind_check_setelem;
2732
2733 set->ops->walk(ctx, set, &iter);
2734 if (iter.err < 0) {
2735 /* Destroy anonymous sets if binding fails */
2736 if (set->flags & NFT_SET_ANONYMOUS)
2737 nf_tables_set_destroy(ctx, set);
2738
2739 return iter.err;
2740 }
2741 }
2742bind:
2743 binding->chain = ctx->chain;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002744 list_add_tail_rcu(&binding->list, &set->bindings);
Patrick McHardy20a69342013-10-11 12:06:22 +02002745 return 0;
2746}
2747
2748void nf_tables_unbind_set(const struct nft_ctx *ctx, struct nft_set *set,
2749 struct nft_set_binding *binding)
2750{
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02002751 list_del_rcu(&binding->list);
Patrick McHardy20a69342013-10-11 12:06:22 +02002752
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002753 if (list_empty(&set->bindings) && set->flags & NFT_SET_ANONYMOUS &&
2754 !(set->flags & NFT_SET_INACTIVE))
Patrick McHardy20a69342013-10-11 12:06:22 +02002755 nf_tables_set_destroy(ctx, set);
2756}
2757
2758/*
2759 * Set elements
2760 */
2761
2762static const struct nla_policy nft_set_elem_policy[NFTA_SET_ELEM_MAX + 1] = {
2763 [NFTA_SET_ELEM_KEY] = { .type = NLA_NESTED },
2764 [NFTA_SET_ELEM_DATA] = { .type = NLA_NESTED },
2765 [NFTA_SET_ELEM_FLAGS] = { .type = NLA_U32 },
2766};
2767
2768static const struct nla_policy nft_set_elem_list_policy[NFTA_SET_ELEM_LIST_MAX + 1] = {
2769 [NFTA_SET_ELEM_LIST_TABLE] = { .type = NLA_STRING },
2770 [NFTA_SET_ELEM_LIST_SET] = { .type = NLA_STRING },
2771 [NFTA_SET_ELEM_LIST_ELEMENTS] = { .type = NLA_NESTED },
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002772 [NFTA_SET_ELEM_LIST_SET_ID] = { .type = NLA_U32 },
Patrick McHardy20a69342013-10-11 12:06:22 +02002773};
2774
2775static int nft_ctx_init_from_elemattr(struct nft_ctx *ctx,
2776 const struct sk_buff *skb,
2777 const struct nlmsghdr *nlh,
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002778 const struct nlattr * const nla[],
2779 bool trans)
Patrick McHardy20a69342013-10-11 12:06:22 +02002780{
2781 const struct nfgenmsg *nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02002782 struct nft_af_info *afi;
2783 struct nft_table *table;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002784 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02002785
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02002786 afi = nf_tables_afinfo_lookup(net, nfmsg->nfgen_family, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02002787 if (IS_ERR(afi))
2788 return PTR_ERR(afi);
2789
Pablo Neira Ayuso93707612013-10-10 23:21:26 +02002790 table = nf_tables_table_lookup(afi, nla[NFTA_SET_ELEM_LIST_TABLE]);
Patrick McHardy20a69342013-10-11 12:06:22 +02002791 if (IS_ERR(table))
2792 return PTR_ERR(table);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002793 if (!trans && (table->flags & NFT_TABLE_INACTIVE))
2794 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002795
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02002796 nft_ctx_init(ctx, skb, nlh, afi, table, NULL, nla);
Patrick McHardy20a69342013-10-11 12:06:22 +02002797 return 0;
2798}
2799
2800static int nf_tables_fill_setelem(struct sk_buff *skb,
2801 const struct nft_set *set,
2802 const struct nft_set_elem *elem)
2803{
2804 unsigned char *b = skb_tail_pointer(skb);
2805 struct nlattr *nest;
2806
2807 nest = nla_nest_start(skb, NFTA_LIST_ELEM);
2808 if (nest == NULL)
2809 goto nla_put_failure;
2810
2811 if (nft_data_dump(skb, NFTA_SET_ELEM_KEY, &elem->key, NFT_DATA_VALUE,
2812 set->klen) < 0)
2813 goto nla_put_failure;
2814
2815 if (set->flags & NFT_SET_MAP &&
2816 !(elem->flags & NFT_SET_ELEM_INTERVAL_END) &&
2817 nft_data_dump(skb, NFTA_SET_ELEM_DATA, &elem->data,
2818 set->dtype == NFT_DATA_VERDICT ? NFT_DATA_VERDICT : NFT_DATA_VALUE,
2819 set->dlen) < 0)
2820 goto nla_put_failure;
2821
2822 if (elem->flags != 0)
2823 if (nla_put_be32(skb, NFTA_SET_ELEM_FLAGS, htonl(elem->flags)))
2824 goto nla_put_failure;
2825
2826 nla_nest_end(skb, nest);
2827 return 0;
2828
2829nla_put_failure:
2830 nlmsg_trim(skb, b);
2831 return -EMSGSIZE;
2832}
2833
2834struct nft_set_dump_args {
2835 const struct netlink_callback *cb;
2836 struct nft_set_iter iter;
2837 struct sk_buff *skb;
2838};
2839
2840static int nf_tables_dump_setelem(const struct nft_ctx *ctx,
2841 const struct nft_set *set,
2842 const struct nft_set_iter *iter,
2843 const struct nft_set_elem *elem)
2844{
2845 struct nft_set_dump_args *args;
2846
2847 args = container_of(iter, struct nft_set_dump_args, iter);
2848 return nf_tables_fill_setelem(args->skb, set, elem);
2849}
2850
2851static int nf_tables_dump_set(struct sk_buff *skb, struct netlink_callback *cb)
2852{
2853 const struct nft_set *set;
2854 struct nft_set_dump_args args;
2855 struct nft_ctx ctx;
2856 struct nlattr *nla[NFTA_SET_ELEM_LIST_MAX + 1];
2857 struct nfgenmsg *nfmsg;
2858 struct nlmsghdr *nlh;
2859 struct nlattr *nest;
2860 u32 portid, seq;
2861 int event, err;
2862
Michal Nazarewicz720e0df2014-01-01 06:27:19 +01002863 err = nlmsg_parse(cb->nlh, sizeof(struct nfgenmsg), nla,
2864 NFTA_SET_ELEM_LIST_MAX, nft_set_elem_list_policy);
Patrick McHardy20a69342013-10-11 12:06:22 +02002865 if (err < 0)
2866 return err;
2867
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002868 err = nft_ctx_init_from_elemattr(&ctx, cb->skb, cb->nlh, (void *)nla,
2869 false);
Patrick McHardy20a69342013-10-11 12:06:22 +02002870 if (err < 0)
2871 return err;
2872
2873 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
2874 if (IS_ERR(set))
2875 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002876 if (set->flags & NFT_SET_INACTIVE)
2877 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002878
2879 event = NFT_MSG_NEWSETELEM;
2880 event |= NFNL_SUBSYS_NFTABLES << 8;
2881 portid = NETLINK_CB(cb->skb).portid;
2882 seq = cb->nlh->nlmsg_seq;
2883
2884 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2885 NLM_F_MULTI);
2886 if (nlh == NULL)
2887 goto nla_put_failure;
2888
2889 nfmsg = nlmsg_data(nlh);
Pablo Neira Ayuso6403d962014-06-11 19:05:28 +02002890 nfmsg->nfgen_family = ctx.afi->family;
Patrick McHardy20a69342013-10-11 12:06:22 +02002891 nfmsg->version = NFNETLINK_V0;
2892 nfmsg->res_id = 0;
2893
2894 if (nla_put_string(skb, NFTA_SET_ELEM_LIST_TABLE, ctx.table->name))
2895 goto nla_put_failure;
2896 if (nla_put_string(skb, NFTA_SET_ELEM_LIST_SET, set->name))
2897 goto nla_put_failure;
2898
2899 nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
2900 if (nest == NULL)
2901 goto nla_put_failure;
2902
2903 args.cb = cb;
2904 args.skb = skb;
2905 args.iter.skip = cb->args[0];
2906 args.iter.count = 0;
2907 args.iter.err = 0;
2908 args.iter.fn = nf_tables_dump_setelem;
2909 set->ops->walk(&ctx, set, &args.iter);
2910
2911 nla_nest_end(skb, nest);
2912 nlmsg_end(skb, nlh);
2913
2914 if (args.iter.err && args.iter.err != -EMSGSIZE)
2915 return args.iter.err;
2916 if (args.iter.count == cb->args[0])
2917 return 0;
2918
2919 cb->args[0] = args.iter.count;
2920 return skb->len;
2921
2922nla_put_failure:
2923 return -ENOSPC;
2924}
2925
2926static int nf_tables_getsetelem(struct sock *nlsk, struct sk_buff *skb,
2927 const struct nlmsghdr *nlh,
2928 const struct nlattr * const nla[])
2929{
2930 const struct nft_set *set;
2931 struct nft_ctx ctx;
2932 int err;
2933
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02002934 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02002935 if (err < 0)
2936 return err;
2937
2938 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
2939 if (IS_ERR(set))
2940 return PTR_ERR(set);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02002941 if (set->flags & NFT_SET_INACTIVE)
2942 return -ENOENT;
Patrick McHardy20a69342013-10-11 12:06:22 +02002943
2944 if (nlh->nlmsg_flags & NLM_F_DUMP) {
2945 struct netlink_dump_control c = {
2946 .dump = nf_tables_dump_set,
2947 };
2948 return netlink_dump_start(nlsk, skb, nlh, &c);
2949 }
2950 return -EOPNOTSUPP;
2951}
2952
Arturo Borrerod60ce622014-04-01 14:06:07 +02002953static int nf_tables_fill_setelem_info(struct sk_buff *skb,
2954 const struct nft_ctx *ctx, u32 seq,
2955 u32 portid, int event, u16 flags,
2956 const struct nft_set *set,
2957 const struct nft_set_elem *elem)
2958{
2959 struct nfgenmsg *nfmsg;
2960 struct nlmsghdr *nlh;
2961 struct nlattr *nest;
2962 int err;
2963
2964 event |= NFNL_SUBSYS_NFTABLES << 8;
2965 nlh = nlmsg_put(skb, portid, seq, event, sizeof(struct nfgenmsg),
2966 flags);
2967 if (nlh == NULL)
2968 goto nla_put_failure;
2969
2970 nfmsg = nlmsg_data(nlh);
2971 nfmsg->nfgen_family = ctx->afi->family;
2972 nfmsg->version = NFNETLINK_V0;
2973 nfmsg->res_id = 0;
2974
2975 if (nla_put_string(skb, NFTA_SET_TABLE, ctx->table->name))
2976 goto nla_put_failure;
2977 if (nla_put_string(skb, NFTA_SET_NAME, set->name))
2978 goto nla_put_failure;
2979
2980 nest = nla_nest_start(skb, NFTA_SET_ELEM_LIST_ELEMENTS);
2981 if (nest == NULL)
2982 goto nla_put_failure;
2983
2984 err = nf_tables_fill_setelem(skb, set, elem);
2985 if (err < 0)
2986 goto nla_put_failure;
2987
2988 nla_nest_end(skb, nest);
2989
2990 return nlmsg_end(skb, nlh);
2991
2992nla_put_failure:
2993 nlmsg_trim(skb, nlh);
2994 return -1;
2995}
2996
2997static int nf_tables_setelem_notify(const struct nft_ctx *ctx,
2998 const struct nft_set *set,
2999 const struct nft_set_elem *elem,
3000 int event, u16 flags)
3001{
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003002 struct net *net = ctx->net;
3003 u32 portid = ctx->portid;
Arturo Borrerod60ce622014-04-01 14:06:07 +02003004 struct sk_buff *skb;
3005 int err;
3006
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003007 if (!ctx->report && !nfnetlink_has_listeners(net, NFNLGRP_NFTABLES))
Arturo Borrerod60ce622014-04-01 14:06:07 +02003008 return 0;
3009
3010 err = -ENOBUFS;
3011 skb = nlmsg_new(NLMSG_GOODSIZE, GFP_KERNEL);
3012 if (skb == NULL)
3013 goto err;
3014
3015 err = nf_tables_fill_setelem_info(skb, ctx, 0, portid, event, flags,
3016 set, elem);
3017 if (err < 0) {
3018 kfree_skb(skb);
3019 goto err;
3020 }
3021
Pablo Neira Ayuso128ad332014-05-09 17:14:24 +02003022 err = nfnetlink_send(skb, net, portid, NFNLGRP_NFTABLES, ctx->report,
Arturo Borrerod60ce622014-04-01 14:06:07 +02003023 GFP_KERNEL);
3024err:
3025 if (err < 0)
3026 nfnetlink_set_err(net, portid, NFNLGRP_NFTABLES, err);
3027 return err;
3028}
3029
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003030static struct nft_trans *nft_trans_elem_alloc(struct nft_ctx *ctx,
3031 int msg_type,
3032 struct nft_set *set)
3033{
3034 struct nft_trans *trans;
3035
3036 trans = nft_trans_alloc(ctx, msg_type, sizeof(struct nft_trans_elem));
3037 if (trans == NULL)
3038 return NULL;
3039
3040 nft_trans_elem_set(trans) = set;
3041 return trans;
3042}
3043
3044static int nft_add_set_elem(struct nft_ctx *ctx, struct nft_set *set,
Patrick McHardy20a69342013-10-11 12:06:22 +02003045 const struct nlattr *attr)
3046{
3047 struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3048 struct nft_data_desc d1, d2;
3049 struct nft_set_elem elem;
3050 struct nft_set_binding *binding;
3051 enum nft_registers dreg;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003052 struct nft_trans *trans;
Patrick McHardy20a69342013-10-11 12:06:22 +02003053 int err;
3054
Patrick McHardyc50b9602014-03-28 10:19:47 +00003055 if (set->size && set->nelems == set->size)
3056 return -ENFILE;
3057
Patrick McHardy20a69342013-10-11 12:06:22 +02003058 err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3059 nft_set_elem_policy);
3060 if (err < 0)
3061 return err;
3062
3063 if (nla[NFTA_SET_ELEM_KEY] == NULL)
3064 return -EINVAL;
3065
3066 elem.flags = 0;
3067 if (nla[NFTA_SET_ELEM_FLAGS] != NULL) {
3068 elem.flags = ntohl(nla_get_be32(nla[NFTA_SET_ELEM_FLAGS]));
3069 if (elem.flags & ~NFT_SET_ELEM_INTERVAL_END)
3070 return -EINVAL;
3071 }
3072
3073 if (set->flags & NFT_SET_MAP) {
3074 if (nla[NFTA_SET_ELEM_DATA] == NULL &&
3075 !(elem.flags & NFT_SET_ELEM_INTERVAL_END))
3076 return -EINVAL;
Pablo Neira Ayusobd7fc642014-02-07 12:53:07 +01003077 if (nla[NFTA_SET_ELEM_DATA] != NULL &&
3078 elem.flags & NFT_SET_ELEM_INTERVAL_END)
3079 return -EINVAL;
Patrick McHardy20a69342013-10-11 12:06:22 +02003080 } else {
3081 if (nla[NFTA_SET_ELEM_DATA] != NULL)
3082 return -EINVAL;
3083 }
3084
3085 err = nft_data_init(ctx, &elem.key, &d1, nla[NFTA_SET_ELEM_KEY]);
3086 if (err < 0)
3087 goto err1;
3088 err = -EINVAL;
3089 if (d1.type != NFT_DATA_VALUE || d1.len != set->klen)
3090 goto err2;
3091
3092 err = -EEXIST;
3093 if (set->ops->get(set, &elem) == 0)
3094 goto err2;
3095
3096 if (nla[NFTA_SET_ELEM_DATA] != NULL) {
3097 err = nft_data_init(ctx, &elem.data, &d2, nla[NFTA_SET_ELEM_DATA]);
3098 if (err < 0)
3099 goto err2;
3100
3101 err = -EINVAL;
3102 if (set->dtype != NFT_DATA_VERDICT && d2.len != set->dlen)
3103 goto err3;
3104
3105 dreg = nft_type_to_reg(set->dtype);
3106 list_for_each_entry(binding, &set->bindings, list) {
3107 struct nft_ctx bind_ctx = {
3108 .afi = ctx->afi,
3109 .table = ctx->table,
Pablo Neira Ayuso7c95f6d2014-04-04 01:22:45 +02003110 .chain = (struct nft_chain *)binding->chain,
Patrick McHardy20a69342013-10-11 12:06:22 +02003111 };
3112
3113 err = nft_validate_data_load(&bind_ctx, dreg,
3114 &elem.data, d2.type);
3115 if (err < 0)
3116 goto err3;
3117 }
3118 }
3119
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003120 trans = nft_trans_elem_alloc(ctx, NFT_MSG_NEWSETELEM, set);
3121 if (trans == NULL)
Patrick McHardy20a69342013-10-11 12:06:22 +02003122 goto err3;
3123
Patrick McHardy20a69342013-10-11 12:06:22 +02003124 err = set->ops->insert(set, &elem);
3125 if (err < 0)
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003126 goto err4;
Patrick McHardy20a69342013-10-11 12:06:22 +02003127
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003128 nft_trans_elem(trans) = elem;
Pablo Neira Ayuso46bbafc2014-05-22 12:36:03 +02003129 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
Patrick McHardy20a69342013-10-11 12:06:22 +02003130 return 0;
3131
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003132err4:
3133 kfree(trans);
Patrick McHardy20a69342013-10-11 12:06:22 +02003134err3:
3135 if (nla[NFTA_SET_ELEM_DATA] != NULL)
3136 nft_data_uninit(&elem.data, d2.type);
3137err2:
3138 nft_data_uninit(&elem.key, d1.type);
3139err1:
3140 return err;
3141}
3142
3143static int nf_tables_newsetelem(struct sock *nlsk, struct sk_buff *skb,
3144 const struct nlmsghdr *nlh,
3145 const struct nlattr * const nla[])
3146{
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003147 struct net *net = sock_net(skb->sk);
Patrick McHardy20a69342013-10-11 12:06:22 +02003148 const struct nlattr *attr;
3149 struct nft_set *set;
3150 struct nft_ctx ctx;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003151 int rem, err = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02003152
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003153 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, true);
Patrick McHardy20a69342013-10-11 12:06:22 +02003154 if (err < 0)
3155 return err;
3156
3157 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003158 if (IS_ERR(set)) {
3159 if (nla[NFTA_SET_ELEM_LIST_SET_ID]) {
3160 set = nf_tables_set_lookup_byid(net,
3161 nla[NFTA_SET_ELEM_LIST_SET_ID]);
3162 }
3163 if (IS_ERR(set))
3164 return PTR_ERR(set);
3165 }
3166
Patrick McHardy20a69342013-10-11 12:06:22 +02003167 if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3168 return -EBUSY;
3169
3170 nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3171 err = nft_add_set_elem(&ctx, set, attr);
3172 if (err < 0)
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003173 break;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003174
3175 set->nelems++;
Patrick McHardy20a69342013-10-11 12:06:22 +02003176 }
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003177 return err;
Patrick McHardy20a69342013-10-11 12:06:22 +02003178}
3179
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003180static int nft_del_setelem(struct nft_ctx *ctx, struct nft_set *set,
Patrick McHardy20a69342013-10-11 12:06:22 +02003181 const struct nlattr *attr)
3182{
3183 struct nlattr *nla[NFTA_SET_ELEM_MAX + 1];
3184 struct nft_data_desc desc;
3185 struct nft_set_elem elem;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003186 struct nft_trans *trans;
Patrick McHardy20a69342013-10-11 12:06:22 +02003187 int err;
3188
3189 err = nla_parse_nested(nla, NFTA_SET_ELEM_MAX, attr,
3190 nft_set_elem_policy);
3191 if (err < 0)
3192 goto err1;
3193
3194 err = -EINVAL;
3195 if (nla[NFTA_SET_ELEM_KEY] == NULL)
3196 goto err1;
3197
3198 err = nft_data_init(ctx, &elem.key, &desc, nla[NFTA_SET_ELEM_KEY]);
3199 if (err < 0)
3200 goto err1;
3201
3202 err = -EINVAL;
3203 if (desc.type != NFT_DATA_VALUE || desc.len != set->klen)
3204 goto err2;
3205
3206 err = set->ops->get(set, &elem);
3207 if (err < 0)
3208 goto err2;
3209
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003210 trans = nft_trans_elem_alloc(ctx, NFT_MSG_DELSETELEM, set);
3211 if (trans == NULL)
3212 goto err2;
Patrick McHardy20a69342013-10-11 12:06:22 +02003213
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003214 nft_trans_elem(trans) = elem;
Pablo Neira Ayuso46bbafc2014-05-22 12:36:03 +02003215 list_add_tail(&trans->list, &ctx->net->nft.commit_list);
Patrick McHardy20a69342013-10-11 12:06:22 +02003216
3217 nft_data_uninit(&elem.key, NFT_DATA_VALUE);
3218 if (set->flags & NFT_SET_MAP)
3219 nft_data_uninit(&elem.data, set->dtype);
3220
3221err2:
3222 nft_data_uninit(&elem.key, desc.type);
3223err1:
3224 return err;
3225}
3226
3227static int nf_tables_delsetelem(struct sock *nlsk, struct sk_buff *skb,
3228 const struct nlmsghdr *nlh,
3229 const struct nlattr * const nla[])
3230{
3231 const struct nlattr *attr;
3232 struct nft_set *set;
3233 struct nft_ctx ctx;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003234 int rem, err = 0;
Patrick McHardy20a69342013-10-11 12:06:22 +02003235
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003236 err = nft_ctx_init_from_elemattr(&ctx, skb, nlh, nla, false);
Patrick McHardy20a69342013-10-11 12:06:22 +02003237 if (err < 0)
3238 return err;
3239
3240 set = nf_tables_set_lookup(ctx.table, nla[NFTA_SET_ELEM_LIST_SET]);
3241 if (IS_ERR(set))
3242 return PTR_ERR(set);
3243 if (!list_empty(&set->bindings) && set->flags & NFT_SET_CONSTANT)
3244 return -EBUSY;
3245
3246 nla_for_each_nested(attr, nla[NFTA_SET_ELEM_LIST_ELEMENTS], rem) {
3247 err = nft_del_setelem(&ctx, set, attr);
3248 if (err < 0)
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003249 break;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003250
3251 set->nelems--;
Patrick McHardy20a69342013-10-11 12:06:22 +02003252 }
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003253 return err;
Patrick McHardy20a69342013-10-11 12:06:22 +02003254}
3255
Patrick McHardy96518512013-10-14 11:00:02 +02003256static const struct nfnl_callback nf_tables_cb[NFT_MSG_MAX] = {
3257 [NFT_MSG_NEWTABLE] = {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003258 .call_batch = nf_tables_newtable,
Patrick McHardy96518512013-10-14 11:00:02 +02003259 .attr_count = NFTA_TABLE_MAX,
3260 .policy = nft_table_policy,
3261 },
3262 [NFT_MSG_GETTABLE] = {
3263 .call = nf_tables_gettable,
3264 .attr_count = NFTA_TABLE_MAX,
3265 .policy = nft_table_policy,
3266 },
3267 [NFT_MSG_DELTABLE] = {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003268 .call_batch = nf_tables_deltable,
Patrick McHardy96518512013-10-14 11:00:02 +02003269 .attr_count = NFTA_TABLE_MAX,
3270 .policy = nft_table_policy,
3271 },
3272 [NFT_MSG_NEWCHAIN] = {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003273 .call_batch = nf_tables_newchain,
Patrick McHardy96518512013-10-14 11:00:02 +02003274 .attr_count = NFTA_CHAIN_MAX,
3275 .policy = nft_chain_policy,
3276 },
3277 [NFT_MSG_GETCHAIN] = {
3278 .call = nf_tables_getchain,
3279 .attr_count = NFTA_CHAIN_MAX,
3280 .policy = nft_chain_policy,
3281 },
3282 [NFT_MSG_DELCHAIN] = {
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003283 .call_batch = nf_tables_delchain,
Patrick McHardy96518512013-10-14 11:00:02 +02003284 .attr_count = NFTA_CHAIN_MAX,
3285 .policy = nft_chain_policy,
3286 },
3287 [NFT_MSG_NEWRULE] = {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003288 .call_batch = nf_tables_newrule,
Patrick McHardy96518512013-10-14 11:00:02 +02003289 .attr_count = NFTA_RULE_MAX,
3290 .policy = nft_rule_policy,
3291 },
3292 [NFT_MSG_GETRULE] = {
3293 .call = nf_tables_getrule,
3294 .attr_count = NFTA_RULE_MAX,
3295 .policy = nft_rule_policy,
3296 },
3297 [NFT_MSG_DELRULE] = {
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003298 .call_batch = nf_tables_delrule,
Patrick McHardy96518512013-10-14 11:00:02 +02003299 .attr_count = NFTA_RULE_MAX,
3300 .policy = nft_rule_policy,
3301 },
Patrick McHardy20a69342013-10-11 12:06:22 +02003302 [NFT_MSG_NEWSET] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003303 .call_batch = nf_tables_newset,
Patrick McHardy20a69342013-10-11 12:06:22 +02003304 .attr_count = NFTA_SET_MAX,
3305 .policy = nft_set_policy,
3306 },
3307 [NFT_MSG_GETSET] = {
3308 .call = nf_tables_getset,
3309 .attr_count = NFTA_SET_MAX,
3310 .policy = nft_set_policy,
3311 },
3312 [NFT_MSG_DELSET] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003313 .call_batch = nf_tables_delset,
Patrick McHardy20a69342013-10-11 12:06:22 +02003314 .attr_count = NFTA_SET_MAX,
3315 .policy = nft_set_policy,
3316 },
3317 [NFT_MSG_NEWSETELEM] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003318 .call_batch = nf_tables_newsetelem,
Patrick McHardy20a69342013-10-11 12:06:22 +02003319 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3320 .policy = nft_set_elem_list_policy,
3321 },
3322 [NFT_MSG_GETSETELEM] = {
3323 .call = nf_tables_getsetelem,
3324 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3325 .policy = nft_set_elem_list_policy,
3326 },
3327 [NFT_MSG_DELSETELEM] = {
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003328 .call_batch = nf_tables_delsetelem,
Patrick McHardy20a69342013-10-11 12:06:22 +02003329 .attr_count = NFTA_SET_ELEM_LIST_MAX,
3330 .policy = nft_set_elem_list_policy,
3331 },
Patrick McHardy96518512013-10-14 11:00:02 +02003332};
3333
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003334static void nft_chain_commit_update(struct nft_trans *trans)
3335{
3336 struct nft_base_chain *basechain;
3337
3338 if (nft_trans_chain_name(trans)[0])
3339 strcpy(trans->ctx.chain->name, nft_trans_chain_name(trans));
3340
3341 if (!(trans->ctx.chain->flags & NFT_BASE_CHAIN))
3342 return;
3343
3344 basechain = nft_base_chain(trans->ctx.chain);
3345 nft_chain_stats_replace(basechain, nft_trans_chain_stats(trans));
3346
3347 switch (nft_trans_chain_policy(trans)) {
3348 case NF_DROP:
3349 case NF_ACCEPT:
3350 basechain->policy = nft_trans_chain_policy(trans);
3351 break;
3352 }
3353}
3354
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003355/* Schedule objects for release via rcu to make sure no packets are accesing
3356 * removed rules.
3357 */
3358static void nf_tables_commit_release_rcu(struct rcu_head *rt)
3359{
3360 struct nft_trans *trans = container_of(rt, struct nft_trans, rcu_head);
3361
3362 switch (trans->msg_type) {
3363 case NFT_MSG_DELTABLE:
3364 nf_tables_table_destroy(&trans->ctx);
3365 break;
3366 case NFT_MSG_DELCHAIN:
3367 nf_tables_chain_destroy(trans->ctx.chain);
3368 break;
3369 case NFT_MSG_DELRULE:
3370 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3371 break;
3372 case NFT_MSG_DELSET:
3373 nft_set_destroy(nft_trans_set(trans));
3374 break;
3375 }
3376 kfree(trans);
3377}
3378
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003379static int nf_tables_commit(struct sk_buff *skb)
3380{
3381 struct net *net = sock_net(skb->sk);
3382 struct nft_trans *trans, *next;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003383 struct nft_set *set;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003384
3385 /* Bump generation counter, invalidate any dump in progress */
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02003386 while (++net->nft.base_seq == 0);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003387
3388 /* A new generation has just started */
3389 net->nft.gencursor = gencursor_next(net);
3390
3391 /* Make sure all packets have left the previous generation before
3392 * purging old rules.
3393 */
3394 synchronize_rcu();
3395
3396 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003397 switch (trans->msg_type) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003398 case NFT_MSG_NEWTABLE:
3399 if (nft_trans_table_update(trans)) {
3400 if (!nft_trans_table_enable(trans)) {
3401 nf_tables_table_disable(trans->ctx.afi,
3402 trans->ctx.table);
3403 trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3404 }
3405 } else {
3406 trans->ctx.table->flags &= ~NFT_TABLE_INACTIVE;
3407 }
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003408 nf_tables_table_notify(&trans->ctx, NFT_MSG_NEWTABLE);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003409 nft_trans_destroy(trans);
3410 break;
3411 case NFT_MSG_DELTABLE:
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003412 nf_tables_table_notify(&trans->ctx, NFT_MSG_DELTABLE);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003413 break;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003414 case NFT_MSG_NEWCHAIN:
3415 if (nft_trans_chain_update(trans))
3416 nft_chain_commit_update(trans);
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003417 else
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003418 trans->ctx.chain->flags &= ~NFT_CHAIN_INACTIVE;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003419
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003420 nf_tables_chain_notify(&trans->ctx, NFT_MSG_NEWCHAIN);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003421 nft_trans_destroy(trans);
3422 break;
3423 case NFT_MSG_DELCHAIN:
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003424 nf_tables_chain_notify(&trans->ctx, NFT_MSG_DELCHAIN);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003425 if (!(trans->ctx.table->flags & NFT_TABLE_F_DORMANT) &&
3426 trans->ctx.chain->flags & NFT_BASE_CHAIN) {
3427 nf_unregister_hooks(nft_base_chain(trans->ctx.chain)->ops,
3428 trans->ctx.afi->nops);
3429 }
3430 break;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003431 case NFT_MSG_NEWRULE:
3432 nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003433 nf_tables_rule_notify(&trans->ctx,
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003434 nft_trans_rule(trans),
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003435 NFT_MSG_NEWRULE);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003436 nft_trans_destroy(trans);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003437 break;
3438 case NFT_MSG_DELRULE:
3439 list_del_rcu(&nft_trans_rule(trans)->list);
Pablo Neira Ayuso35151d82014-05-05 17:12:40 +02003440 nf_tables_rule_notify(&trans->ctx,
3441 nft_trans_rule(trans),
3442 NFT_MSG_DELRULE);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003443 break;
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003444 case NFT_MSG_NEWSET:
3445 nft_trans_set(trans)->flags &= ~NFT_SET_INACTIVE;
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003446 /* This avoids hitting -EBUSY when deleting the table
3447 * from the transaction.
3448 */
3449 if (nft_trans_set(trans)->flags & NFT_SET_ANONYMOUS &&
3450 !list_empty(&nft_trans_set(trans)->bindings))
3451 trans->ctx.table->use--;
3452
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003453 nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02003454 NFT_MSG_NEWSET, GFP_KERNEL);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003455 nft_trans_destroy(trans);
3456 break;
3457 case NFT_MSG_DELSET:
3458 nf_tables_set_notify(&trans->ctx, nft_trans_set(trans),
Pablo Neira Ayuso31f84412014-05-29 10:29:58 +02003459 NFT_MSG_DELSET, GFP_KERNEL);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003460 break;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003461 case NFT_MSG_NEWSETELEM:
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003462 nf_tables_setelem_notify(&trans->ctx,
3463 nft_trans_elem_set(trans),
3464 &nft_trans_elem(trans),
3465 NFT_MSG_NEWSETELEM, 0);
3466 nft_trans_destroy(trans);
3467 break;
3468 case NFT_MSG_DELSETELEM:
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003469 nf_tables_setelem_notify(&trans->ctx,
3470 nft_trans_elem_set(trans),
3471 &nft_trans_elem(trans),
3472 NFT_MSG_DELSETELEM, 0);
3473 set = nft_trans_elem_set(trans);
3474 set->ops->get(set, &nft_trans_elem(trans));
3475 set->ops->remove(set, &nft_trans_elem(trans));
3476 nft_trans_destroy(trans);
3477 break;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003478 }
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003479 }
3480
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003481 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003482 list_del(&trans->list);
3483 trans->ctx.nla = NULL;
3484 call_rcu(&trans->rcu_head, nf_tables_commit_release_rcu);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003485 }
3486
3487 return 0;
3488}
3489
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003490/* Schedule objects for release via rcu to make sure no packets are accesing
3491 * aborted rules.
3492 */
3493static void nf_tables_abort_release_rcu(struct rcu_head *rt)
3494{
3495 struct nft_trans *trans = container_of(rt, struct nft_trans, rcu_head);
3496
3497 switch (trans->msg_type) {
3498 case NFT_MSG_NEWTABLE:
3499 nf_tables_table_destroy(&trans->ctx);
3500 break;
3501 case NFT_MSG_NEWCHAIN:
3502 nf_tables_chain_destroy(trans->ctx.chain);
3503 break;
3504 case NFT_MSG_NEWRULE:
3505 nf_tables_rule_destroy(&trans->ctx, nft_trans_rule(trans));
3506 break;
3507 case NFT_MSG_NEWSET:
3508 nft_set_destroy(nft_trans_set(trans));
3509 break;
3510 }
3511 kfree(trans);
3512}
3513
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003514static int nf_tables_abort(struct sk_buff *skb)
3515{
3516 struct net *net = sock_net(skb->sk);
3517 struct nft_trans *trans, *next;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003518 struct nft_set *set;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003519
3520 list_for_each_entry_safe(trans, next, &net->nft.commit_list, list) {
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003521 switch (trans->msg_type) {
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003522 case NFT_MSG_NEWTABLE:
3523 if (nft_trans_table_update(trans)) {
3524 if (nft_trans_table_enable(trans)) {
3525 nf_tables_table_disable(trans->ctx.afi,
3526 trans->ctx.table);
3527 trans->ctx.table->flags |= NFT_TABLE_F_DORMANT;
3528 }
3529 nft_trans_destroy(trans);
3530 } else {
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003531 list_del_rcu(&trans->ctx.table->list);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003532 }
3533 break;
3534 case NFT_MSG_DELTABLE:
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003535 list_add_tail_rcu(&trans->ctx.table->list,
3536 &trans->ctx.afi->tables);
Pablo Neira Ayuso55dd6f92014-04-03 11:53:37 +02003537 nft_trans_destroy(trans);
3538 break;
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003539 case NFT_MSG_NEWCHAIN:
3540 if (nft_trans_chain_update(trans)) {
3541 if (nft_trans_chain_stats(trans))
3542 free_percpu(nft_trans_chain_stats(trans));
3543
3544 nft_trans_destroy(trans);
3545 } else {
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003546 trans->ctx.table->use--;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003547 list_del_rcu(&trans->ctx.chain->list);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003548 if (!(trans->ctx.table->flags & NFT_TABLE_F_DORMANT) &&
3549 trans->ctx.chain->flags & NFT_BASE_CHAIN) {
3550 nf_unregister_hooks(nft_base_chain(trans->ctx.chain)->ops,
3551 trans->ctx.afi->nops);
3552 }
3553 }
3554 break;
3555 case NFT_MSG_DELCHAIN:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003556 trans->ctx.table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003557 list_add_tail_rcu(&trans->ctx.chain->list,
3558 &trans->ctx.table->chains);
Pablo Neira Ayuso91c7b382014-04-09 11:58:08 +02003559 nft_trans_destroy(trans);
3560 break;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003561 case NFT_MSG_NEWRULE:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003562 trans->ctx.chain->use--;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003563 list_del_rcu(&nft_trans_rule(trans)->list);
3564 break;
3565 case NFT_MSG_DELRULE:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003566 trans->ctx.chain->use++;
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003567 nft_rule_clear(trans->ctx.net, nft_trans_rule(trans));
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003568 nft_trans_destroy(trans);
Pablo Neira Ayusob380e5c2014-04-04 01:38:51 +02003569 break;
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003570 case NFT_MSG_NEWSET:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003571 trans->ctx.table->use--;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003572 list_del_rcu(&nft_trans_set(trans)->list);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003573 break;
3574 case NFT_MSG_DELSET:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003575 trans->ctx.table->use++;
Pablo Neira Ayusoe688a7f2014-07-01 11:49:18 +02003576 list_add_tail_rcu(&nft_trans_set(trans)->list,
3577 &trans->ctx.table->sets);
Pablo Neira Ayuso958bee12014-04-03 11:48:44 +02003578 nft_trans_destroy(trans);
3579 break;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003580 case NFT_MSG_NEWSETELEM:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003581 nft_trans_elem_set(trans)->nelems--;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003582 set = nft_trans_elem_set(trans);
3583 set->ops->get(set, &nft_trans_elem(trans));
3584 set->ops->remove(set, &nft_trans_elem(trans));
3585 nft_trans_destroy(trans);
3586 break;
3587 case NFT_MSG_DELSETELEM:
Pablo Neira Ayuso4fefee52014-05-23 12:39:26 +02003588 nft_trans_elem_set(trans)->nelems++;
Pablo Neira Ayuso60319eb2014-04-04 03:36:42 +02003589 nft_trans_destroy(trans);
3590 break;
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003591 }
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003592 }
3593
Pablo Neira Ayusoa1cee072014-05-23 11:09:42 +02003594 list_for_each_entry_safe_reverse(trans, next,
3595 &net->nft.commit_list, list) {
Pablo Neira Ayusoc7c32e72014-04-10 00:31:10 +02003596 list_del(&trans->list);
3597 trans->ctx.nla = NULL;
3598 call_rcu(&trans->rcu_head, nf_tables_abort_release_rcu);
Pablo Neira Ayuso37082f92014-04-03 11:56:37 +02003599 }
3600
3601 return 0;
3602}
3603
Patrick McHardy96518512013-10-14 11:00:02 +02003604static const struct nfnetlink_subsystem nf_tables_subsys = {
3605 .name = "nf_tables",
3606 .subsys_id = NFNL_SUBSYS_NFTABLES,
3607 .cb_count = NFT_MSG_MAX,
3608 .cb = nf_tables_cb,
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003609 .commit = nf_tables_commit,
3610 .abort = nf_tables_abort,
Patrick McHardy96518512013-10-14 11:00:02 +02003611};
3612
Patrick McHardy20a69342013-10-11 12:06:22 +02003613/*
3614 * Loop detection - walk through the ruleset beginning at the destination chain
3615 * of a new jump until either the source chain is reached (loop) or all
3616 * reachable chains have been traversed.
3617 *
3618 * The loop check is performed whenever a new jump verdict is added to an
3619 * expression or verdict map or a verdict map is bound to a new chain.
3620 */
3621
3622static int nf_tables_check_loops(const struct nft_ctx *ctx,
3623 const struct nft_chain *chain);
3624
3625static int nf_tables_loop_check_setelem(const struct nft_ctx *ctx,
3626 const struct nft_set *set,
3627 const struct nft_set_iter *iter,
3628 const struct nft_set_elem *elem)
3629{
Pablo Neira Ayuso62f9c8b2014-02-07 14:45:01 +01003630 if (elem->flags & NFT_SET_ELEM_INTERVAL_END)
3631 return 0;
3632
Patrick McHardy20a69342013-10-11 12:06:22 +02003633 switch (elem->data.verdict) {
3634 case NFT_JUMP:
3635 case NFT_GOTO:
3636 return nf_tables_check_loops(ctx, elem->data.chain);
3637 default:
3638 return 0;
3639 }
3640}
3641
3642static int nf_tables_check_loops(const struct nft_ctx *ctx,
3643 const struct nft_chain *chain)
3644{
3645 const struct nft_rule *rule;
3646 const struct nft_expr *expr, *last;
Patrick McHardy20a69342013-10-11 12:06:22 +02003647 const struct nft_set *set;
3648 struct nft_set_binding *binding;
3649 struct nft_set_iter iter;
Patrick McHardy20a69342013-10-11 12:06:22 +02003650
3651 if (ctx->chain == chain)
3652 return -ELOOP;
3653
3654 list_for_each_entry(rule, &chain->rules, list) {
3655 nft_rule_for_each_expr(expr, last, rule) {
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02003656 const struct nft_data *data = NULL;
3657 int err;
3658
3659 if (!expr->ops->validate)
Patrick McHardy20a69342013-10-11 12:06:22 +02003660 continue;
3661
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02003662 err = expr->ops->validate(ctx, expr, &data);
3663 if (err < 0)
3664 return err;
3665
Patrick McHardy20a69342013-10-11 12:06:22 +02003666 if (data == NULL)
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +02003667 continue;
Patrick McHardy20a69342013-10-11 12:06:22 +02003668
3669 switch (data->verdict) {
3670 case NFT_JUMP:
3671 case NFT_GOTO:
3672 err = nf_tables_check_loops(ctx, data->chain);
3673 if (err < 0)
3674 return err;
3675 default:
3676 break;
3677 }
3678 }
3679 }
3680
3681 list_for_each_entry(set, &ctx->table->sets, list) {
3682 if (!(set->flags & NFT_SET_MAP) ||
3683 set->dtype != NFT_DATA_VERDICT)
3684 continue;
3685
3686 list_for_each_entry(binding, &set->bindings, list) {
3687 if (binding->chain != chain)
3688 continue;
3689
3690 iter.skip = 0;
3691 iter.count = 0;
3692 iter.err = 0;
3693 iter.fn = nf_tables_loop_check_setelem;
3694
3695 set->ops->walk(ctx, set, &iter);
3696 if (iter.err < 0)
3697 return iter.err;
3698 }
3699 }
3700
3701 return 0;
3702}
3703
Patrick McHardy96518512013-10-14 11:00:02 +02003704/**
3705 * nft_validate_input_register - validate an expressions' input register
3706 *
3707 * @reg: the register number
3708 *
3709 * Validate that the input register is one of the general purpose
3710 * registers.
3711 */
3712int nft_validate_input_register(enum nft_registers reg)
3713{
3714 if (reg <= NFT_REG_VERDICT)
3715 return -EINVAL;
3716 if (reg > NFT_REG_MAX)
3717 return -ERANGE;
3718 return 0;
3719}
3720EXPORT_SYMBOL_GPL(nft_validate_input_register);
3721
3722/**
3723 * nft_validate_output_register - validate an expressions' output register
3724 *
3725 * @reg: the register number
3726 *
3727 * Validate that the output register is one of the general purpose
3728 * registers or the verdict register.
3729 */
3730int nft_validate_output_register(enum nft_registers reg)
3731{
3732 if (reg < NFT_REG_VERDICT)
3733 return -EINVAL;
3734 if (reg > NFT_REG_MAX)
3735 return -ERANGE;
3736 return 0;
3737}
3738EXPORT_SYMBOL_GPL(nft_validate_output_register);
3739
3740/**
3741 * nft_validate_data_load - validate an expressions' data load
3742 *
3743 * @ctx: context of the expression performing the load
3744 * @reg: the destination register number
3745 * @data: the data to load
3746 * @type: the data type
3747 *
3748 * Validate that a data load uses the appropriate data type for
3749 * the destination register. A value of NULL for the data means
3750 * that its runtime gathered data, which is always of type
3751 * NFT_DATA_VALUE.
3752 */
3753int nft_validate_data_load(const struct nft_ctx *ctx, enum nft_registers reg,
3754 const struct nft_data *data,
3755 enum nft_data_types type)
3756{
Patrick McHardy20a69342013-10-11 12:06:22 +02003757 int err;
3758
Patrick McHardy96518512013-10-14 11:00:02 +02003759 switch (reg) {
3760 case NFT_REG_VERDICT:
3761 if (data == NULL || type != NFT_DATA_VERDICT)
3762 return -EINVAL;
Patrick McHardy20a69342013-10-11 12:06:22 +02003763
3764 if (data->verdict == NFT_GOTO || data->verdict == NFT_JUMP) {
3765 err = nf_tables_check_loops(ctx, data->chain);
3766 if (err < 0)
3767 return err;
3768
3769 if (ctx->chain->level + 1 > data->chain->level) {
3770 if (ctx->chain->level + 1 == NFT_JUMP_STACK_SIZE)
3771 return -EMLINK;
3772 data->chain->level = ctx->chain->level + 1;
3773 }
3774 }
3775
Patrick McHardy96518512013-10-14 11:00:02 +02003776 return 0;
3777 default:
3778 if (data != NULL && type != NFT_DATA_VALUE)
3779 return -EINVAL;
3780 return 0;
3781 }
3782}
3783EXPORT_SYMBOL_GPL(nft_validate_data_load);
3784
3785static const struct nla_policy nft_verdict_policy[NFTA_VERDICT_MAX + 1] = {
3786 [NFTA_VERDICT_CODE] = { .type = NLA_U32 },
3787 [NFTA_VERDICT_CHAIN] = { .type = NLA_STRING,
3788 .len = NFT_CHAIN_MAXNAMELEN - 1 },
3789};
3790
3791static int nft_verdict_init(const struct nft_ctx *ctx, struct nft_data *data,
3792 struct nft_data_desc *desc, const struct nlattr *nla)
3793{
3794 struct nlattr *tb[NFTA_VERDICT_MAX + 1];
3795 struct nft_chain *chain;
3796 int err;
3797
3798 err = nla_parse_nested(tb, NFTA_VERDICT_MAX, nla, nft_verdict_policy);
3799 if (err < 0)
3800 return err;
3801
3802 if (!tb[NFTA_VERDICT_CODE])
3803 return -EINVAL;
3804 data->verdict = ntohl(nla_get_be32(tb[NFTA_VERDICT_CODE]));
3805
3806 switch (data->verdict) {
Patrick McHardye0abdad2014-02-18 18:06:50 +00003807 default:
3808 switch (data->verdict & NF_VERDICT_MASK) {
3809 case NF_ACCEPT:
3810 case NF_DROP:
3811 case NF_QUEUE:
3812 break;
3813 default:
3814 return -EINVAL;
3815 }
3816 /* fall through */
Patrick McHardy96518512013-10-14 11:00:02 +02003817 case NFT_CONTINUE:
3818 case NFT_BREAK:
3819 case NFT_RETURN:
3820 desc->len = sizeof(data->verdict);
3821 break;
3822 case NFT_JUMP:
3823 case NFT_GOTO:
3824 if (!tb[NFTA_VERDICT_CHAIN])
3825 return -EINVAL;
3826 chain = nf_tables_chain_lookup(ctx->table,
3827 tb[NFTA_VERDICT_CHAIN]);
3828 if (IS_ERR(chain))
3829 return PTR_ERR(chain);
3830 if (chain->flags & NFT_BASE_CHAIN)
3831 return -EOPNOTSUPP;
3832
Patrick McHardy96518512013-10-14 11:00:02 +02003833 chain->use++;
3834 data->chain = chain;
3835 desc->len = sizeof(data);
3836 break;
Patrick McHardy96518512013-10-14 11:00:02 +02003837 }
3838
3839 desc->type = NFT_DATA_VERDICT;
3840 return 0;
3841}
3842
3843static void nft_verdict_uninit(const struct nft_data *data)
3844{
3845 switch (data->verdict) {
3846 case NFT_JUMP:
3847 case NFT_GOTO:
3848 data->chain->use--;
3849 break;
3850 }
3851}
3852
3853static int nft_verdict_dump(struct sk_buff *skb, const struct nft_data *data)
3854{
3855 struct nlattr *nest;
3856
3857 nest = nla_nest_start(skb, NFTA_DATA_VERDICT);
3858 if (!nest)
3859 goto nla_put_failure;
3860
3861 if (nla_put_be32(skb, NFTA_VERDICT_CODE, htonl(data->verdict)))
3862 goto nla_put_failure;
3863
3864 switch (data->verdict) {
3865 case NFT_JUMP:
3866 case NFT_GOTO:
3867 if (nla_put_string(skb, NFTA_VERDICT_CHAIN, data->chain->name))
3868 goto nla_put_failure;
3869 }
3870 nla_nest_end(skb, nest);
3871 return 0;
3872
3873nla_put_failure:
3874 return -1;
3875}
3876
3877static int nft_value_init(const struct nft_ctx *ctx, struct nft_data *data,
3878 struct nft_data_desc *desc, const struct nlattr *nla)
3879{
3880 unsigned int len;
3881
3882 len = nla_len(nla);
3883 if (len == 0)
3884 return -EINVAL;
3885 if (len > sizeof(data->data))
3886 return -EOVERFLOW;
3887
3888 nla_memcpy(data->data, nla, sizeof(data->data));
3889 desc->type = NFT_DATA_VALUE;
3890 desc->len = len;
3891 return 0;
3892}
3893
3894static int nft_value_dump(struct sk_buff *skb, const struct nft_data *data,
3895 unsigned int len)
3896{
3897 return nla_put(skb, NFTA_DATA_VALUE, len, data->data);
3898}
3899
3900static const struct nla_policy nft_data_policy[NFTA_DATA_MAX + 1] = {
3901 [NFTA_DATA_VALUE] = { .type = NLA_BINARY,
3902 .len = FIELD_SIZEOF(struct nft_data, data) },
3903 [NFTA_DATA_VERDICT] = { .type = NLA_NESTED },
3904};
3905
3906/**
3907 * nft_data_init - parse nf_tables data netlink attributes
3908 *
3909 * @ctx: context of the expression using the data
3910 * @data: destination struct nft_data
3911 * @desc: data description
3912 * @nla: netlink attribute containing data
3913 *
3914 * Parse the netlink data attributes and initialize a struct nft_data.
3915 * The type and length of data are returned in the data description.
3916 *
3917 * The caller can indicate that it only wants to accept data of type
3918 * NFT_DATA_VALUE by passing NULL for the ctx argument.
3919 */
3920int nft_data_init(const struct nft_ctx *ctx, struct nft_data *data,
3921 struct nft_data_desc *desc, const struct nlattr *nla)
3922{
3923 struct nlattr *tb[NFTA_DATA_MAX + 1];
3924 int err;
3925
3926 err = nla_parse_nested(tb, NFTA_DATA_MAX, nla, nft_data_policy);
3927 if (err < 0)
3928 return err;
3929
3930 if (tb[NFTA_DATA_VALUE])
3931 return nft_value_init(ctx, data, desc, tb[NFTA_DATA_VALUE]);
3932 if (tb[NFTA_DATA_VERDICT] && ctx != NULL)
3933 return nft_verdict_init(ctx, data, desc, tb[NFTA_DATA_VERDICT]);
3934 return -EINVAL;
3935}
3936EXPORT_SYMBOL_GPL(nft_data_init);
3937
3938/**
3939 * nft_data_uninit - release a nft_data item
3940 *
3941 * @data: struct nft_data to release
3942 * @type: type of data
3943 *
3944 * Release a nft_data item. NFT_DATA_VALUE types can be silently discarded,
3945 * all others need to be released by calling this function.
3946 */
3947void nft_data_uninit(const struct nft_data *data, enum nft_data_types type)
3948{
3949 switch (type) {
3950 case NFT_DATA_VALUE:
3951 return;
3952 case NFT_DATA_VERDICT:
3953 return nft_verdict_uninit(data);
3954 default:
3955 WARN_ON(1);
3956 }
3957}
3958EXPORT_SYMBOL_GPL(nft_data_uninit);
3959
3960int nft_data_dump(struct sk_buff *skb, int attr, const struct nft_data *data,
3961 enum nft_data_types type, unsigned int len)
3962{
3963 struct nlattr *nest;
3964 int err;
3965
3966 nest = nla_nest_start(skb, attr);
3967 if (nest == NULL)
3968 return -1;
3969
3970 switch (type) {
3971 case NFT_DATA_VALUE:
3972 err = nft_value_dump(skb, data, len);
3973 break;
3974 case NFT_DATA_VERDICT:
3975 err = nft_verdict_dump(skb, data);
3976 break;
3977 default:
3978 err = -EINVAL;
3979 WARN_ON(1);
3980 }
3981
3982 nla_nest_end(skb, nest);
3983 return err;
3984}
3985EXPORT_SYMBOL_GPL(nft_data_dump);
3986
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02003987static int nf_tables_init_net(struct net *net)
3988{
3989 INIT_LIST_HEAD(&net->nft.af_info);
Pablo Neira Ayuso0628b122013-10-14 11:05:33 +02003990 INIT_LIST_HEAD(&net->nft.commit_list);
Pablo Neira Ayuso38e029f2014-07-01 12:23:12 +02003991 net->nft.base_seq = 1;
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02003992 return 0;
3993}
3994
3995static struct pernet_operations nf_tables_net_ops = {
3996 .init = nf_tables_init_net,
3997};
3998
Patrick McHardy96518512013-10-14 11:00:02 +02003999static int __init nf_tables_module_init(void)
4000{
4001 int err;
4002
4003 info = kmalloc(sizeof(struct nft_expr_info) * NFT_RULE_MAXEXPRS,
4004 GFP_KERNEL);
4005 if (info == NULL) {
4006 err = -ENOMEM;
4007 goto err1;
4008 }
4009
4010 err = nf_tables_core_module_init();
4011 if (err < 0)
4012 goto err2;
4013
4014 err = nfnetlink_subsys_register(&nf_tables_subsys);
4015 if (err < 0)
4016 goto err3;
4017
4018 pr_info("nf_tables: (c) 2007-2009 Patrick McHardy <kaber@trash.net>\n");
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004019 return register_pernet_subsys(&nf_tables_net_ops);
Patrick McHardy96518512013-10-14 11:00:02 +02004020err3:
4021 nf_tables_core_module_exit();
4022err2:
4023 kfree(info);
4024err1:
4025 return err;
4026}
4027
4028static void __exit nf_tables_module_exit(void)
4029{
Pablo Neira Ayuso99633ab2013-10-10 23:28:33 +02004030 unregister_pernet_subsys(&nf_tables_net_ops);
Patrick McHardy96518512013-10-14 11:00:02 +02004031 nfnetlink_subsys_unregister(&nf_tables_subsys);
4032 nf_tables_core_module_exit();
4033 kfree(info);
4034}
4035
4036module_init(nf_tables_module_init);
4037module_exit(nf_tables_module_exit);
4038
4039MODULE_LICENSE("GPL");
4040MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
4041MODULE_ALIAS_NFNL_SUBSYS(NFNL_SUBSYS_NFTABLES);