blob: 31ca94793aa9622f4a77ab852c3a8c1a422ba658 [file] [log] [blame]
Patrick McHardy22fe54d2015-04-05 14:41:08 +02001/*
2 * Copyright (c) 2015 Patrick McHardy <kaber@trash.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 */
9
10#include <linux/kernel.h>
11#include <linux/module.h>
12#include <linux/init.h>
13#include <linux/netlink.h>
14#include <linux/netfilter.h>
15#include <linux/netfilter/nf_tables.h>
16#include <net/netfilter/nf_tables.h>
17#include <net/netfilter/nf_tables_core.h>
18
19struct nft_dynset {
20 struct nft_set *set;
21 struct nft_set_ext_tmpl tmpl;
22 enum nft_dynset_ops op:8;
23 enum nft_registers sreg_key:8;
24 enum nft_registers sreg_data:8;
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +020025 bool invert;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020026 u64 timeout;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010027 struct nft_expr *expr;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020028 struct nft_set_binding binding;
29};
30
31static void *nft_dynset_new(struct nft_set *set, const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010032 struct nft_regs *regs)
Patrick McHardy22fe54d2015-04-05 14:41:08 +020033{
34 const struct nft_dynset *priv = nft_expr_priv(expr);
Patrick McHardy3e135cd2015-04-11 10:46:42 +010035 struct nft_set_ext *ext;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020036 u64 timeout;
37 void *elem;
38
39 if (set->size && !atomic_add_unless(&set->nelems, 1, set->size))
40 return NULL;
41
42 timeout = priv->timeout ? : set->timeout;
43 elem = nft_set_elem_init(set, &priv->tmpl,
Patrick McHardya55e22e2015-04-11 02:27:31 +010044 &regs->data[priv->sreg_key],
45 &regs->data[priv->sreg_data],
Patrick McHardy22fe54d2015-04-05 14:41:08 +020046 timeout, GFP_ATOMIC);
Liping Zhang61f9e292016-10-22 18:51:25 +080047 if (elem == NULL)
48 goto err1;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010049
50 ext = nft_set_elem_ext(set, elem);
Pablo Neira Ayuso086f3322015-11-10 13:39:42 +010051 if (priv->expr != NULL &&
52 nft_expr_clone(nft_set_ext_expr(ext), priv->expr) < 0)
Liping Zhang61f9e292016-10-22 18:51:25 +080053 goto err2;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010054
Patrick McHardy22fe54d2015-04-05 14:41:08 +020055 return elem;
Liping Zhang61f9e292016-10-22 18:51:25 +080056
57err2:
58 nft_set_elem_destroy(set, elem, false);
59err1:
60 if (set->size)
61 atomic_dec(&set->nelems);
62 return NULL;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020063}
64
65static void nft_dynset_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010066 struct nft_regs *regs,
Patrick McHardy22fe54d2015-04-05 14:41:08 +020067 const struct nft_pktinfo *pkt)
68{
69 const struct nft_dynset *priv = nft_expr_priv(expr);
70 struct nft_set *set = priv->set;
71 const struct nft_set_ext *ext;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010072 const struct nft_expr *sexpr;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020073 u64 timeout;
74
Patrick McHardya55e22e2015-04-11 02:27:31 +010075 if (set->ops->update(set, &regs->data[priv->sreg_key], nft_dynset_new,
76 expr, regs, &ext)) {
Patrick McHardy3e135cd2015-04-11 10:46:42 +010077 sexpr = NULL;
78 if (nft_set_ext_exists(ext, NFT_SET_EXT_EXPR))
79 sexpr = nft_set_ext_expr(ext);
80
Patrick McHardy22fe54d2015-04-05 14:41:08 +020081 if (priv->op == NFT_DYNSET_OP_UPDATE &&
82 nft_set_ext_exists(ext, NFT_SET_EXT_EXPIRATION)) {
83 timeout = priv->timeout ? : set->timeout;
84 *nft_set_ext_expiration(ext) = jiffies + timeout;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010085 } else if (sexpr == NULL)
86 goto out;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020087
Patrick McHardy3e135cd2015-04-11 10:46:42 +010088 if (sexpr != NULL)
89 sexpr->ops->eval(sexpr, regs, pkt);
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +020090
91 if (priv->invert)
92 regs->verdict.code = NFT_BREAK;
Patrick McHardy3e135cd2015-04-11 10:46:42 +010093 return;
94 }
95out:
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +020096 if (!priv->invert)
97 regs->verdict.code = NFT_BREAK;
Patrick McHardy22fe54d2015-04-05 14:41:08 +020098}
99
100static const struct nla_policy nft_dynset_policy[NFTA_DYNSET_MAX + 1] = {
101 [NFTA_DYNSET_SET_NAME] = { .type = NLA_STRING },
102 [NFTA_DYNSET_SET_ID] = { .type = NLA_U32 },
103 [NFTA_DYNSET_OP] = { .type = NLA_U32 },
104 [NFTA_DYNSET_SREG_KEY] = { .type = NLA_U32 },
105 [NFTA_DYNSET_SREG_DATA] = { .type = NLA_U32 },
106 [NFTA_DYNSET_TIMEOUT] = { .type = NLA_U64 },
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100107 [NFTA_DYNSET_EXPR] = { .type = NLA_NESTED },
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +0200108 [NFTA_DYNSET_FLAGS] = { .type = NLA_U32 },
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200109};
110
111static int nft_dynset_init(const struct nft_ctx *ctx,
112 const struct nft_expr *expr,
113 const struct nlattr * const tb[])
114{
115 struct nft_dynset *priv = nft_expr_priv(expr);
Pablo Neira Ayuso37a9cc52016-06-12 22:52:45 +0200116 u8 genmask = nft_genmask_next(ctx->net);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200117 struct nft_set *set;
118 u64 timeout;
119 int err;
120
121 if (tb[NFTA_DYNSET_SET_NAME] == NULL ||
122 tb[NFTA_DYNSET_OP] == NULL ||
123 tb[NFTA_DYNSET_SREG_KEY] == NULL)
124 return -EINVAL;
125
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +0200126 if (tb[NFTA_DYNSET_FLAGS]) {
127 u32 flags = ntohl(nla_get_be32(tb[NFTA_DYNSET_FLAGS]));
128
129 if (flags & ~NFT_DYNSET_F_INV)
130 return -EINVAL;
131 if (flags & NFT_DYNSET_F_INV)
132 priv->invert = true;
133 }
134
Pablo Neira Ayuso37a9cc52016-06-12 22:52:45 +0200135 set = nf_tables_set_lookup(ctx->table, tb[NFTA_DYNSET_SET_NAME],
136 genmask);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200137 if (IS_ERR(set)) {
138 if (tb[NFTA_DYNSET_SET_ID])
139 set = nf_tables_set_lookup_byid(ctx->net,
Pablo Neira Ayuso37a9cc52016-06-12 22:52:45 +0200140 tb[NFTA_DYNSET_SET_ID],
141 genmask);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200142 if (IS_ERR(set))
143 return PTR_ERR(set);
144 }
145
Liping Zhangbb6a6e82016-10-22 18:51:24 +0800146 if (set->ops->update == NULL)
147 return -EOPNOTSUPP;
148
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200149 if (set->flags & NFT_SET_CONSTANT)
150 return -EBUSY;
151
152 priv->op = ntohl(nla_get_be32(tb[NFTA_DYNSET_OP]));
153 switch (priv->op) {
154 case NFT_DYNSET_OP_ADD:
155 break;
156 case NFT_DYNSET_OP_UPDATE:
157 if (!(set->flags & NFT_SET_TIMEOUT))
158 return -EOPNOTSUPP;
159 break;
160 default:
161 return -EOPNOTSUPP;
162 }
163
164 timeout = 0;
165 if (tb[NFTA_DYNSET_TIMEOUT] != NULL) {
166 if (!(set->flags & NFT_SET_TIMEOUT))
167 return -EINVAL;
Anders K. Pedersena8b1e362016-10-09 13:49:02 +0000168 timeout = msecs_to_jiffies(be64_to_cpu(nla_get_be64(
169 tb[NFTA_DYNSET_TIMEOUT])));
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200170 }
171
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100172 priv->sreg_key = nft_parse_register(tb[NFTA_DYNSET_SREG_KEY]);
Patrick McHardyd07db982015-04-11 02:27:30 +0100173 err = nft_validate_register_load(priv->sreg_key, set->klen);;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200174 if (err < 0)
175 return err;
176
177 if (tb[NFTA_DYNSET_SREG_DATA] != NULL) {
178 if (!(set->flags & NFT_SET_MAP))
179 return -EINVAL;
180 if (set->dtype == NFT_DATA_VERDICT)
181 return -EOPNOTSUPP;
182
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100183 priv->sreg_data = nft_parse_register(tb[NFTA_DYNSET_SREG_DATA]);
Patrick McHardyd07db982015-04-11 02:27:30 +0100184 err = nft_validate_register_load(priv->sreg_data, set->dlen);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200185 if (err < 0)
186 return err;
187 } else if (set->flags & NFT_SET_MAP)
188 return -EINVAL;
189
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100190 if (tb[NFTA_DYNSET_EXPR] != NULL) {
191 if (!(set->flags & NFT_SET_EVAL))
192 return -EINVAL;
193 if (!(set->flags & NFT_SET_ANONYMOUS))
194 return -EOPNOTSUPP;
195
196 priv->expr = nft_expr_init(ctx, tb[NFTA_DYNSET_EXPR]);
197 if (IS_ERR(priv->expr))
198 return PTR_ERR(priv->expr);
199
200 err = -EOPNOTSUPP;
201 if (!(priv->expr->ops->type->flags & NFT_EXPR_STATEFUL))
202 goto err1;
203 } else if (set->flags & NFT_SET_EVAL)
204 return -EINVAL;
205
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200206 nft_set_ext_prepare(&priv->tmpl);
207 nft_set_ext_add_length(&priv->tmpl, NFT_SET_EXT_KEY, set->klen);
208 if (set->flags & NFT_SET_MAP)
209 nft_set_ext_add_length(&priv->tmpl, NFT_SET_EXT_DATA, set->dlen);
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100210 if (priv->expr != NULL)
211 nft_set_ext_add_length(&priv->tmpl, NFT_SET_EXT_EXPR,
212 priv->expr->ops->size);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200213 if (set->flags & NFT_SET_TIMEOUT) {
214 if (timeout || set->timeout)
215 nft_set_ext_add(&priv->tmpl, NFT_SET_EXT_EXPIRATION);
216 }
217
218 priv->timeout = timeout;
219
220 err = nf_tables_bind_set(ctx, set, &priv->binding);
221 if (err < 0)
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100222 goto err1;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200223
224 priv->set = set;
225 return 0;
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100226
227err1:
228 if (priv->expr != NULL)
229 nft_expr_destroy(ctx, priv->expr);
230 return err;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200231}
232
233static void nft_dynset_destroy(const struct nft_ctx *ctx,
234 const struct nft_expr *expr)
235{
236 struct nft_dynset *priv = nft_expr_priv(expr);
237
238 nf_tables_unbind_set(ctx, priv->set, &priv->binding);
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100239 if (priv->expr != NULL)
240 nft_expr_destroy(ctx, priv->expr);
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200241}
242
243static int nft_dynset_dump(struct sk_buff *skb, const struct nft_expr *expr)
244{
245 const struct nft_dynset *priv = nft_expr_priv(expr);
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +0200246 u32 flags = priv->invert ? NFT_DYNSET_F_INV : 0;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200247
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100248 if (nft_dump_register(skb, NFTA_DYNSET_SREG_KEY, priv->sreg_key))
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200249 goto nla_put_failure;
250 if (priv->set->flags & NFT_SET_MAP &&
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100251 nft_dump_register(skb, NFTA_DYNSET_SREG_DATA, priv->sreg_data))
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200252 goto nla_put_failure;
253 if (nla_put_be32(skb, NFTA_DYNSET_OP, htonl(priv->op)))
254 goto nla_put_failure;
255 if (nla_put_string(skb, NFTA_DYNSET_SET_NAME, priv->set->name))
256 goto nla_put_failure;
Anders K. Pedersena8b1e362016-10-09 13:49:02 +0000257 if (nla_put_be64(skb, NFTA_DYNSET_TIMEOUT,
258 cpu_to_be64(jiffies_to_msecs(priv->timeout)),
Nicolas Dichtelb46f6de2016-04-22 17:31:18 +0200259 NFTA_DYNSET_PAD))
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200260 goto nla_put_failure;
Patrick McHardy3e135cd2015-04-11 10:46:42 +0100261 if (priv->expr && nft_expr_dump(skb, NFTA_DYNSET_EXPR, priv->expr))
262 goto nla_put_failure;
Pablo Neira Ayusodbd2be02016-09-07 12:22:18 +0200263 if (nla_put_be32(skb, NFTA_DYNSET_FLAGS, htonl(flags)))
264 goto nla_put_failure;
Patrick McHardy22fe54d2015-04-05 14:41:08 +0200265 return 0;
266
267nla_put_failure:
268 return -1;
269}
270
271static struct nft_expr_type nft_dynset_type;
272static const struct nft_expr_ops nft_dynset_ops = {
273 .type = &nft_dynset_type,
274 .size = NFT_EXPR_SIZE(sizeof(struct nft_dynset)),
275 .eval = nft_dynset_eval,
276 .init = nft_dynset_init,
277 .destroy = nft_dynset_destroy,
278 .dump = nft_dynset_dump,
279};
280
281static struct nft_expr_type nft_dynset_type __read_mostly = {
282 .name = "dynset",
283 .ops = &nft_dynset_ops,
284 .policy = nft_dynset_policy,
285 .maxattr = NFTA_DYNSET_MAX,
286 .owner = THIS_MODULE,
287};
288
289int __init nft_dynset_module_init(void)
290{
291 return nft_register_expr(&nft_dynset_type);
292}
293
294void nft_dynset_module_exit(void)
295{
296 nft_unregister_expr(&nft_dynset_type);
297}