GNU Linux-libre 4.19.314-gnu1
[releases.git] / net / netfilter / nft_cmp.c
1 /*
2  * Copyright (c) 2008-2009 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_core.h>
18 #include <net/netfilter/nf_tables.h>
19
20 struct nft_cmp_expr {
21         struct nft_data         data;
22         u8                      sreg;
23         u8                      len;
24         enum nft_cmp_ops        op:8;
25 };
26
27 static void nft_cmp_eval(const struct nft_expr *expr,
28                          struct nft_regs *regs,
29                          const struct nft_pktinfo *pkt)
30 {
31         const struct nft_cmp_expr *priv = nft_expr_priv(expr);
32         int d;
33
34         d = memcmp(&regs->data[priv->sreg], &priv->data, priv->len);
35         switch (priv->op) {
36         case NFT_CMP_EQ:
37                 if (d != 0)
38                         goto mismatch;
39                 break;
40         case NFT_CMP_NEQ:
41                 if (d == 0)
42                         goto mismatch;
43                 break;
44         case NFT_CMP_LT:
45                 if (d == 0)
46                         goto mismatch;
47                 /* fall through */
48         case NFT_CMP_LTE:
49                 if (d > 0)
50                         goto mismatch;
51                 break;
52         case NFT_CMP_GT:
53                 if (d == 0)
54                         goto mismatch;
55                 /* fall through */
56         case NFT_CMP_GTE:
57                 if (d < 0)
58                         goto mismatch;
59                 break;
60         }
61         return;
62
63 mismatch:
64         regs->verdict.code = NFT_BREAK;
65 }
66
67 static const struct nla_policy nft_cmp_policy[NFTA_CMP_MAX + 1] = {
68         [NFTA_CMP_SREG]         = { .type = NLA_U32 },
69         [NFTA_CMP_OP]           = { .type = NLA_U32 },
70         [NFTA_CMP_DATA]         = { .type = NLA_NESTED },
71 };
72
73 static int nft_cmp_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
74                         const struct nlattr * const tb[])
75 {
76         struct nft_cmp_expr *priv = nft_expr_priv(expr);
77         struct nft_data_desc desc;
78         int err;
79
80         err = nft_data_init(NULL, &priv->data, sizeof(priv->data), &desc,
81                             tb[NFTA_CMP_DATA]);
82         if (err < 0)
83                 return err;
84
85         if (desc.type != NFT_DATA_VALUE) {
86                 err = -EINVAL;
87                 nft_data_release(&priv->data, desc.type);
88                 return err;
89         }
90
91         err = nft_parse_register_load(tb[NFTA_CMP_SREG], &priv->sreg, desc.len);
92         if (err < 0)
93                 return err;
94
95         priv->op  = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
96         priv->len = desc.len;
97         return 0;
98 }
99
100 static int nft_cmp_dump(struct sk_buff *skb, const struct nft_expr *expr)
101 {
102         const struct nft_cmp_expr *priv = nft_expr_priv(expr);
103
104         if (nft_dump_register(skb, NFTA_CMP_SREG, priv->sreg))
105                 goto nla_put_failure;
106         if (nla_put_be32(skb, NFTA_CMP_OP, htonl(priv->op)))
107                 goto nla_put_failure;
108
109         if (nft_data_dump(skb, NFTA_CMP_DATA, &priv->data,
110                           NFT_DATA_VALUE, priv->len) < 0)
111                 goto nla_put_failure;
112         return 0;
113
114 nla_put_failure:
115         return -1;
116 }
117
118 static const struct nft_expr_ops nft_cmp_ops = {
119         .type           = &nft_cmp_type,
120         .size           = NFT_EXPR_SIZE(sizeof(struct nft_cmp_expr)),
121         .eval           = nft_cmp_eval,
122         .init           = nft_cmp_init,
123         .dump           = nft_cmp_dump,
124 };
125
126 static int nft_cmp_fast_init(const struct nft_ctx *ctx,
127                              const struct nft_expr *expr,
128                              const struct nlattr * const tb[])
129 {
130         struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
131         struct nft_data_desc desc;
132         struct nft_data data;
133         u32 mask;
134         int err;
135
136         err = nft_data_init(NULL, &data, sizeof(data), &desc,
137                             tb[NFTA_CMP_DATA]);
138         if (err < 0)
139                 return err;
140
141         err = nft_parse_register_load(tb[NFTA_CMP_SREG], &priv->sreg, desc.len);
142         if (err < 0)
143                 return err;
144
145         desc.len *= BITS_PER_BYTE;
146         mask = nft_cmp_fast_mask(desc.len);
147
148         priv->data = data.data[0] & mask;
149         priv->len  = desc.len;
150         return 0;
151 }
152
153 static int nft_cmp_fast_dump(struct sk_buff *skb, const struct nft_expr *expr)
154 {
155         const struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
156         struct nft_data data;
157
158         if (nft_dump_register(skb, NFTA_CMP_SREG, priv->sreg))
159                 goto nla_put_failure;
160         if (nla_put_be32(skb, NFTA_CMP_OP, htonl(NFT_CMP_EQ)))
161                 goto nla_put_failure;
162
163         data.data[0] = priv->data;
164         if (nft_data_dump(skb, NFTA_CMP_DATA, &data,
165                           NFT_DATA_VALUE, priv->len / BITS_PER_BYTE) < 0)
166                 goto nla_put_failure;
167         return 0;
168
169 nla_put_failure:
170         return -1;
171 }
172
173 const struct nft_expr_ops nft_cmp_fast_ops = {
174         .type           = &nft_cmp_type,
175         .size           = NFT_EXPR_SIZE(sizeof(struct nft_cmp_fast_expr)),
176         .eval           = NULL, /* inlined */
177         .init           = nft_cmp_fast_init,
178         .dump           = nft_cmp_fast_dump,
179 };
180
181 static const struct nft_expr_ops *
182 nft_cmp_select_ops(const struct nft_ctx *ctx, const struct nlattr * const tb[])
183 {
184         struct nft_data_desc desc;
185         struct nft_data data;
186         enum nft_cmp_ops op;
187         int err;
188
189         if (tb[NFTA_CMP_SREG] == NULL ||
190             tb[NFTA_CMP_OP] == NULL ||
191             tb[NFTA_CMP_DATA] == NULL)
192                 return ERR_PTR(-EINVAL);
193
194         op = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
195         switch (op) {
196         case NFT_CMP_EQ:
197         case NFT_CMP_NEQ:
198         case NFT_CMP_LT:
199         case NFT_CMP_LTE:
200         case NFT_CMP_GT:
201         case NFT_CMP_GTE:
202                 break;
203         default:
204                 return ERR_PTR(-EINVAL);
205         }
206
207         err = nft_data_init(NULL, &data, sizeof(data), &desc,
208                             tb[NFTA_CMP_DATA]);
209         if (err < 0)
210                 return ERR_PTR(err);
211
212         if (desc.type != NFT_DATA_VALUE) {
213                 err = -EINVAL;
214                 goto err1;
215         }
216
217         if (desc.len <= sizeof(u32) && op == NFT_CMP_EQ)
218                 return &nft_cmp_fast_ops;
219
220         return &nft_cmp_ops;
221 err1:
222         nft_data_release(&data, desc.type);
223         return ERR_PTR(-EINVAL);
224 }
225
226 struct nft_expr_type nft_cmp_type __read_mostly = {
227         .name           = "cmp",
228         .select_ops     = nft_cmp_select_ops,
229         .policy         = nft_cmp_policy,
230         .maxattr        = NFTA_CMP_MAX,
231         .owner          = THIS_MODULE,
232 };