]> git.proxmox.com Git - mirror_ubuntu-zesty-kernel.git/blame - net/netfilter/nft_ct.c
netfilter: nf_tables: kill nft_validate_output_register()
[mirror_ubuntu-zesty-kernel.git] / net / netfilter / nft_ct.c
CommitLineData
96518518 1/*
ef1f7df9 2 * Copyright (c) 2008-2009 Patrick McHardy <kaber@trash.net>
96518518
PM
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
7 *
8 * Development of this code funded by Astaro AG (http://www.astaro.com/)
9 */
10
11#include <linux/kernel.h>
12#include <linux/init.h>
13#include <linux/module.h>
14#include <linux/netlink.h>
15#include <linux/netfilter.h>
16#include <linux/netfilter/nf_tables.h>
17#include <net/netfilter/nf_tables.h>
18#include <net/netfilter/nf_conntrack.h>
19#include <net/netfilter/nf_conntrack_tuple.h>
20#include <net/netfilter/nf_conntrack_helper.h>
c4ede3d3 21#include <net/netfilter/nf_conntrack_ecache.h>
d2bf2f34 22#include <net/netfilter/nf_conntrack_labels.h>
96518518
PM
23
24struct nft_ct {
25 enum nft_ct_keys key:8;
26 enum ip_conntrack_dir dir:8;
d46f2cd2 27 union {
c4ede3d3
KE
28 enum nft_registers dreg:8;
29 enum nft_registers sreg:8;
30 };
96518518
PM
31};
32
c4ede3d3
KE
33static void nft_ct_get_eval(const struct nft_expr *expr,
34 struct nft_data data[NFT_REG_MAX + 1],
35 const struct nft_pktinfo *pkt)
96518518
PM
36{
37 const struct nft_ct *priv = nft_expr_priv(expr);
38 struct nft_data *dest = &data[priv->dreg];
39 enum ip_conntrack_info ctinfo;
40 const struct nf_conn *ct;
41 const struct nf_conn_help *help;
42 const struct nf_conntrack_tuple *tuple;
43 const struct nf_conntrack_helper *helper;
44 long diff;
45 unsigned int state;
46
47 ct = nf_ct_get(pkt->skb, &ctinfo);
48
49 switch (priv->key) {
50 case NFT_CT_STATE:
51 if (ct == NULL)
52 state = NF_CT_STATE_INVALID_BIT;
53 else if (nf_ct_is_untracked(ct))
54 state = NF_CT_STATE_UNTRACKED_BIT;
55 else
56 state = NF_CT_STATE_BIT(ctinfo);
57 dest->data[0] = state;
58 return;
c1f86676
DM
59 default:
60 break;
96518518
PM
61 }
62
63 if (ct == NULL)
64 goto err;
65
66 switch (priv->key) {
67 case NFT_CT_DIRECTION:
68 dest->data[0] = CTINFO2DIR(ctinfo);
69 return;
70 case NFT_CT_STATUS:
71 dest->data[0] = ct->status;
72 return;
73#ifdef CONFIG_NF_CONNTRACK_MARK
74 case NFT_CT_MARK:
75 dest->data[0] = ct->mark;
76 return;
77#endif
78#ifdef CONFIG_NF_CONNTRACK_SECMARK
79 case NFT_CT_SECMARK:
80 dest->data[0] = ct->secmark;
81 return;
82#endif
83 case NFT_CT_EXPIRATION:
84 diff = (long)jiffies - (long)ct->timeout.expires;
85 if (diff < 0)
86 diff = 0;
87 dest->data[0] = jiffies_to_msecs(diff);
88 return;
89 case NFT_CT_HELPER:
90 if (ct->master == NULL)
91 goto err;
92 help = nfct_help(ct->master);
93 if (help == NULL)
94 goto err;
95 helper = rcu_dereference(help->helper);
96 if (helper == NULL)
97 goto err;
96518518
PM
98 strncpy((char *)dest->data, helper->name, sizeof(dest->data));
99 return;
d2bf2f34
FW
100#ifdef CONFIG_NF_CONNTRACK_LABELS
101 case NFT_CT_LABELS: {
102 struct nf_conn_labels *labels = nf_ct_labels_find(ct);
103 unsigned int size;
104
105 if (!labels) {
106 memset(dest->data, 0, sizeof(dest->data));
107 return;
108 }
109
d2bf2f34 110 size = labels->words * sizeof(long);
d2bf2f34
FW
111 memcpy(dest->data, labels->bits, size);
112 if (size < sizeof(dest->data))
113 memset(((char *) dest->data) + size, 0,
114 sizeof(dest->data) - size);
115 return;
116 }
117#endif
c1f86676
DM
118 default:
119 break;
96518518
PM
120 }
121
122 tuple = &ct->tuplehash[priv->dir].tuple;
123 switch (priv->key) {
124 case NFT_CT_L3PROTOCOL:
125 dest->data[0] = nf_ct_l3num(ct);
126 return;
127 case NFT_CT_SRC:
128 memcpy(dest->data, tuple->src.u3.all,
129 nf_ct_l3num(ct) == NFPROTO_IPV4 ? 4 : 16);
130 return;
131 case NFT_CT_DST:
132 memcpy(dest->data, tuple->dst.u3.all,
133 nf_ct_l3num(ct) == NFPROTO_IPV4 ? 4 : 16);
134 return;
135 case NFT_CT_PROTOCOL:
136 dest->data[0] = nf_ct_protonum(ct);
137 return;
138 case NFT_CT_PROTO_SRC:
139 dest->data[0] = (__force __u16)tuple->src.u.all;
140 return;
141 case NFT_CT_PROTO_DST:
142 dest->data[0] = (__force __u16)tuple->dst.u.all;
143 return;
c1f86676
DM
144 default:
145 break;
96518518
PM
146 }
147 return;
148err:
149 data[NFT_REG_VERDICT].verdict = NFT_BREAK;
150}
151
c4ede3d3
KE
152static void nft_ct_set_eval(const struct nft_expr *expr,
153 struct nft_data data[NFT_REG_MAX + 1],
154 const struct nft_pktinfo *pkt)
155{
156 const struct nft_ct *priv = nft_expr_priv(expr);
157 struct sk_buff *skb = pkt->skb;
847c8e29 158#ifdef CONFIG_NF_CONNTRACK_MARK
c4ede3d3 159 u32 value = data[priv->sreg].data[0];
847c8e29 160#endif
c4ede3d3
KE
161 enum ip_conntrack_info ctinfo;
162 struct nf_conn *ct;
163
164 ct = nf_ct_get(skb, &ctinfo);
165 if (ct == NULL)
166 return;
167
168 switch (priv->key) {
169#ifdef CONFIG_NF_CONNTRACK_MARK
170 case NFT_CT_MARK:
171 if (ct->mark != value) {
172 ct->mark = value;
173 nf_conntrack_event_cache(IPCT_MARK, ct);
174 }
175 break;
176#endif
c1f86676
DM
177 default:
178 break;
c4ede3d3
KE
179 }
180}
181
96518518
PM
182static const struct nla_policy nft_ct_policy[NFTA_CT_MAX + 1] = {
183 [NFTA_CT_DREG] = { .type = NLA_U32 },
184 [NFTA_CT_KEY] = { .type = NLA_U32 },
185 [NFTA_CT_DIRECTION] = { .type = NLA_U8 },
c4ede3d3 186 [NFTA_CT_SREG] = { .type = NLA_U32 },
96518518
PM
187};
188
9638f33e
PM
189static int nft_ct_l3proto_try_module_get(uint8_t family)
190{
191 int err;
192
193 if (family == NFPROTO_INET) {
194 err = nf_ct_l3proto_try_module_get(NFPROTO_IPV4);
195 if (err < 0)
196 goto err1;
197 err = nf_ct_l3proto_try_module_get(NFPROTO_IPV6);
198 if (err < 0)
199 goto err2;
200 } else {
201 err = nf_ct_l3proto_try_module_get(family);
202 if (err < 0)
203 goto err1;
204 }
205 return 0;
206
207err2:
208 nf_ct_l3proto_module_put(NFPROTO_IPV4);
209err1:
210 return err;
211}
212
213static void nft_ct_l3proto_module_put(uint8_t family)
214{
215 if (family == NFPROTO_INET) {
216 nf_ct_l3proto_module_put(NFPROTO_IPV4);
217 nf_ct_l3proto_module_put(NFPROTO_IPV6);
218 } else
219 nf_ct_l3proto_module_put(family);
220}
221
fe92ca45
PM
222static int nft_ct_get_init(const struct nft_ctx *ctx,
223 const struct nft_expr *expr,
224 const struct nlattr * const tb[])
96518518
PM
225{
226 struct nft_ct *priv = nft_expr_priv(expr);
45d9bcda 227 unsigned int len;
fe92ca45 228 int err;
96518518 229
fe92ca45 230 priv->key = ntohl(nla_get_be32(tb[NFTA_CT_KEY]));
96518518 231 switch (priv->key) {
96518518 232 case NFT_CT_DIRECTION:
45d9bcda
PM
233 if (tb[NFTA_CT_DIRECTION] != NULL)
234 return -EINVAL;
235 len = sizeof(u8);
236 break;
237 case NFT_CT_STATE:
96518518
PM
238 case NFT_CT_STATUS:
239#ifdef CONFIG_NF_CONNTRACK_MARK
240 case NFT_CT_MARK:
241#endif
242#ifdef CONFIG_NF_CONNTRACK_SECMARK
243 case NFT_CT_SECMARK:
d2bf2f34 244#endif
45d9bcda
PM
245 case NFT_CT_EXPIRATION:
246 if (tb[NFTA_CT_DIRECTION] != NULL)
247 return -EINVAL;
248 len = sizeof(u32);
249 break;
d2bf2f34
FW
250#ifdef CONFIG_NF_CONNTRACK_LABELS
251 case NFT_CT_LABELS:
45d9bcda
PM
252 if (tb[NFTA_CT_DIRECTION] != NULL)
253 return -EINVAL;
254 len = NF_CT_LABELS_MAX_SIZE;
255 break;
96518518 256#endif
96518518
PM
257 case NFT_CT_HELPER:
258 if (tb[NFTA_CT_DIRECTION] != NULL)
259 return -EINVAL;
45d9bcda 260 len = NF_CT_HELPER_NAME_LEN;
96518518 261 break;
45d9bcda 262
51292c07 263 case NFT_CT_L3PROTOCOL:
96518518 264 case NFT_CT_PROTOCOL:
45d9bcda
PM
265 if (tb[NFTA_CT_DIRECTION] == NULL)
266 return -EINVAL;
267 len = sizeof(u8);
268 break;
96518518
PM
269 case NFT_CT_SRC:
270 case NFT_CT_DST:
45d9bcda
PM
271 if (tb[NFTA_CT_DIRECTION] == NULL)
272 return -EINVAL;
273
274 switch (ctx->afi->family) {
275 case NFPROTO_IPV4:
276 len = FIELD_SIZEOF(struct nf_conntrack_tuple,
277 src.u3.ip);
278 break;
279 case NFPROTO_IPV6:
280 case NFPROTO_INET:
281 len = FIELD_SIZEOF(struct nf_conntrack_tuple,
282 src.u3.ip6);
283 break;
284 default:
285 return -EAFNOSUPPORT;
286 }
287 break;
96518518
PM
288 case NFT_CT_PROTO_SRC:
289 case NFT_CT_PROTO_DST:
290 if (tb[NFTA_CT_DIRECTION] == NULL)
291 return -EINVAL;
45d9bcda 292 len = FIELD_SIZEOF(struct nf_conntrack_tuple, src.u.all);
96518518
PM
293 break;
294 default:
295 return -EOPNOTSUPP;
296 }
297
fe92ca45
PM
298 if (tb[NFTA_CT_DIRECTION] != NULL) {
299 priv->dir = nla_get_u8(tb[NFTA_CT_DIRECTION]);
300 switch (priv->dir) {
301 case IP_CT_DIR_ORIGINAL:
302 case IP_CT_DIR_REPLY:
303 break;
304 default:
305 return -EINVAL;
306 }
307 }
308
309 priv->dreg = ntohl(nla_get_be32(tb[NFTA_CT_DREG]));
1ec10212
PM
310 err = nft_validate_register_store(ctx, priv->dreg, NULL,
311 NFT_DATA_VALUE, len);
fe92ca45
PM
312 if (err < 0)
313 return err;
314
315 err = nft_ct_l3proto_try_module_get(ctx->afi->family);
316 if (err < 0)
317 return err;
318
c4ede3d3
KE
319 return 0;
320}
321
fe92ca45
PM
322static int nft_ct_set_init(const struct nft_ctx *ctx,
323 const struct nft_expr *expr,
324 const struct nlattr * const tb[])
c4ede3d3 325{
fe92ca45
PM
326 struct nft_ct *priv = nft_expr_priv(expr);
327 int err;
328
329 priv->key = ntohl(nla_get_be32(tb[NFTA_CT_KEY]));
330 switch (priv->key) {
e88e514e 331#ifdef CONFIG_NF_CONNTRACK_MARK
c4ede3d3
KE
332 case NFT_CT_MARK:
333 break;
e88e514e 334#endif
c4ede3d3
KE
335 default:
336 return -EOPNOTSUPP;
337 }
338
fe92ca45
PM
339 priv->sreg = ntohl(nla_get_be32(tb[NFTA_CT_SREG]));
340 err = nft_validate_input_register(priv->sreg);
341 if (err < 0)
342 return err;
c4ede3d3 343
9638f33e 344 err = nft_ct_l3proto_try_module_get(ctx->afi->family);
96518518
PM
345 if (err < 0)
346 return err;
96518518 347
96518518 348 return 0;
96518518
PM
349}
350
62472bce
PM
351static void nft_ct_destroy(const struct nft_ctx *ctx,
352 const struct nft_expr *expr)
96518518 353{
d46f2cd2 354 nft_ct_l3proto_module_put(ctx->afi->family);
96518518
PM
355}
356
c4ede3d3 357static int nft_ct_get_dump(struct sk_buff *skb, const struct nft_expr *expr)
96518518
PM
358{
359 const struct nft_ct *priv = nft_expr_priv(expr);
360
361 if (nla_put_be32(skb, NFTA_CT_DREG, htonl(priv->dreg)))
362 goto nla_put_failure;
363 if (nla_put_be32(skb, NFTA_CT_KEY, htonl(priv->key)))
364 goto nla_put_failure;
2a53bfb3
AB
365
366 switch (priv->key) {
367 case NFT_CT_PROTOCOL:
368 case NFT_CT_SRC:
369 case NFT_CT_DST:
370 case NFT_CT_PROTO_SRC:
371 case NFT_CT_PROTO_DST:
372 if (nla_put_u8(skb, NFTA_CT_DIRECTION, priv->dir))
373 goto nla_put_failure;
374 default:
375 break;
376 }
377
96518518
PM
378 return 0;
379
380nla_put_failure:
381 return -1;
382}
383
c4ede3d3
KE
384static int nft_ct_set_dump(struct sk_buff *skb, const struct nft_expr *expr)
385{
386 const struct nft_ct *priv = nft_expr_priv(expr);
387
388 if (nla_put_be32(skb, NFTA_CT_SREG, htonl(priv->sreg)))
389 goto nla_put_failure;
390 if (nla_put_be32(skb, NFTA_CT_KEY, htonl(priv->key)))
391 goto nla_put_failure;
392 return 0;
393
394nla_put_failure:
395 return -1;
396}
397
ef1f7df9 398static struct nft_expr_type nft_ct_type;
c4ede3d3 399static const struct nft_expr_ops nft_ct_get_ops = {
ef1f7df9 400 .type = &nft_ct_type,
96518518 401 .size = NFT_EXPR_SIZE(sizeof(struct nft_ct)),
c4ede3d3 402 .eval = nft_ct_get_eval,
fe92ca45 403 .init = nft_ct_get_init,
96518518 404 .destroy = nft_ct_destroy,
c4ede3d3 405 .dump = nft_ct_get_dump,
ef1f7df9
PM
406};
407
c4ede3d3
KE
408static const struct nft_expr_ops nft_ct_set_ops = {
409 .type = &nft_ct_type,
410 .size = NFT_EXPR_SIZE(sizeof(struct nft_ct)),
411 .eval = nft_ct_set_eval,
fe92ca45 412 .init = nft_ct_set_init,
c4ede3d3
KE
413 .destroy = nft_ct_destroy,
414 .dump = nft_ct_set_dump,
415};
416
417static const struct nft_expr_ops *
418nft_ct_select_ops(const struct nft_ctx *ctx,
419 const struct nlattr * const tb[])
420{
421 if (tb[NFTA_CT_KEY] == NULL)
422 return ERR_PTR(-EINVAL);
423
424 if (tb[NFTA_CT_DREG] && tb[NFTA_CT_SREG])
425 return ERR_PTR(-EINVAL);
426
427 if (tb[NFTA_CT_DREG])
428 return &nft_ct_get_ops;
429
430 if (tb[NFTA_CT_SREG])
431 return &nft_ct_set_ops;
432
433 return ERR_PTR(-EINVAL);
434}
435
ef1f7df9
PM
436static struct nft_expr_type nft_ct_type __read_mostly = {
437 .name = "ct",
c4ede3d3 438 .select_ops = &nft_ct_select_ops,
96518518
PM
439 .policy = nft_ct_policy,
440 .maxattr = NFTA_CT_MAX,
ef1f7df9 441 .owner = THIS_MODULE,
96518518
PM
442};
443
444static int __init nft_ct_module_init(void)
445{
ef1f7df9 446 return nft_register_expr(&nft_ct_type);
96518518
PM
447}
448
449static void __exit nft_ct_module_exit(void)
450{
ef1f7df9 451 nft_unregister_expr(&nft_ct_type);
96518518
PM
452}
453
454module_init(nft_ct_module_init);
455module_exit(nft_ct_module_exit);
456
457MODULE_LICENSE("GPL");
458MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
459MODULE_ALIAS_NFT_EXPR("ct");