GNU Linux-libre 4.4.288-gnu1
[releases.git] / net / netfilter / nft_exthdr.c
1 /*
2  * Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License version 2 as
6  * published by the Free Software Foundation.
7  *
8  * Development of this code funded by Astaro AG (http://www.astaro.com/)
9  */
10
11 #include <linux/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 // FIXME:
19 #include <net/ipv6.h>
20
21 struct nft_exthdr {
22         u8                      type;
23         u8                      offset;
24         u8                      len;
25         enum nft_registers      dreg:8;
26 };
27
28 static void nft_exthdr_eval(const struct nft_expr *expr,
29                             struct nft_regs *regs,
30                             const struct nft_pktinfo *pkt)
31 {
32         struct nft_exthdr *priv = nft_expr_priv(expr);
33         u32 *dest = &regs->data[priv->dreg];
34         unsigned int offset = 0;
35         int err;
36
37         if (pkt->skb->protocol != htons(ETH_P_IPV6))
38                 goto err;
39
40         err = ipv6_find_hdr(pkt->skb, &offset, priv->type, NULL, NULL);
41         if (err < 0)
42                 goto err;
43         offset += priv->offset;
44
45         dest[priv->len / NFT_REG32_SIZE] = 0;
46         if (skb_copy_bits(pkt->skb, offset, dest, priv->len) < 0)
47                 goto err;
48         return;
49 err:
50         regs->verdict.code = NFT_BREAK;
51 }
52
53 static const struct nla_policy nft_exthdr_policy[NFTA_EXTHDR_MAX + 1] = {
54         [NFTA_EXTHDR_DREG]              = { .type = NLA_U32 },
55         [NFTA_EXTHDR_TYPE]              = { .type = NLA_U8 },
56         [NFTA_EXTHDR_OFFSET]            = { .type = NLA_U32 },
57         [NFTA_EXTHDR_LEN]               = { .type = NLA_U32 },
58 };
59
60 static int nft_exthdr_init(const struct nft_ctx *ctx,
61                            const struct nft_expr *expr,
62                            const struct nlattr * const tb[])
63 {
64         struct nft_exthdr *priv = nft_expr_priv(expr);
65
66         if (tb[NFTA_EXTHDR_DREG] == NULL ||
67             tb[NFTA_EXTHDR_TYPE] == NULL ||
68             tb[NFTA_EXTHDR_OFFSET] == NULL ||
69             tb[NFTA_EXTHDR_LEN] == NULL)
70                 return -EINVAL;
71
72         priv->type   = nla_get_u8(tb[NFTA_EXTHDR_TYPE]);
73         priv->offset = ntohl(nla_get_be32(tb[NFTA_EXTHDR_OFFSET]));
74         priv->len    = ntohl(nla_get_be32(tb[NFTA_EXTHDR_LEN]));
75         priv->dreg   = nft_parse_register(tb[NFTA_EXTHDR_DREG]);
76
77         return nft_validate_register_store(ctx, priv->dreg, NULL,
78                                            NFT_DATA_VALUE, priv->len);
79 }
80
81 static int nft_exthdr_dump(struct sk_buff *skb, const struct nft_expr *expr)
82 {
83         const struct nft_exthdr *priv = nft_expr_priv(expr);
84
85         if (nft_dump_register(skb, NFTA_EXTHDR_DREG, priv->dreg))
86                 goto nla_put_failure;
87         if (nla_put_u8(skb, NFTA_EXTHDR_TYPE, priv->type))
88                 goto nla_put_failure;
89         if (nla_put_be32(skb, NFTA_EXTHDR_OFFSET, htonl(priv->offset)))
90                 goto nla_put_failure;
91         if (nla_put_be32(skb, NFTA_EXTHDR_LEN, htonl(priv->len)))
92                 goto nla_put_failure;
93         return 0;
94
95 nla_put_failure:
96         return -1;
97 }
98
99 static struct nft_expr_type nft_exthdr_type;
100 static const struct nft_expr_ops nft_exthdr_ops = {
101         .type           = &nft_exthdr_type,
102         .size           = NFT_EXPR_SIZE(sizeof(struct nft_exthdr)),
103         .eval           = nft_exthdr_eval,
104         .init           = nft_exthdr_init,
105         .dump           = nft_exthdr_dump,
106 };
107
108 static struct nft_expr_type nft_exthdr_type __read_mostly = {
109         .name           = "exthdr",
110         .ops            = &nft_exthdr_ops,
111         .policy         = nft_exthdr_policy,
112         .maxattr        = NFTA_EXTHDR_MAX,
113         .owner          = THIS_MODULE,
114 };
115
116 static int __init nft_exthdr_module_init(void)
117 {
118         return nft_register_expr(&nft_exthdr_type);
119 }
120
121 static void __exit nft_exthdr_module_exit(void)
122 {
123         nft_unregister_expr(&nft_exthdr_type);
124 }
125
126 module_init(nft_exthdr_module_init);
127 module_exit(nft_exthdr_module_exit);
128
129 MODULE_LICENSE("GPL");
130 MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
131 MODULE_ALIAS_NFT_EXPR("exthdr");