blob: 2e53739812b1712af2f60762ed5c8a029facd5a0 [file] [log] [blame]
Patrick McHardy96518512013-10-14 11:00:02 +02001/*
Patrick McHardyef1f7df2013-10-10 11:41:20 +02002 * Copyright (c) 2008-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/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
20struct nft_cmp_expr {
21 struct nft_data data;
22 enum nft_registers sreg:8;
23 u8 len;
24 enum nft_cmp_ops op:8;
25};
26
27static void nft_cmp_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010028 struct nft_regs *regs,
Patrick McHardy96518512013-10-14 11:00:02 +020029 const struct nft_pktinfo *pkt)
30{
31 const struct nft_cmp_expr *priv = nft_expr_priv(expr);
32 int d;
33
Patrick McHardye562d862015-04-11 02:27:34 +010034 d = memcmp(&regs->data[priv->sreg], &priv->data, priv->len);
Patrick McHardy96518512013-10-14 11:00:02 +020035 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 case NFT_CMP_LTE:
48 if (d > 0)
49 goto mismatch;
50 break;
51 case NFT_CMP_GT:
52 if (d == 0)
53 goto mismatch;
54 case NFT_CMP_GTE:
55 if (d < 0)
56 goto mismatch;
57 break;
58 }
59 return;
60
61mismatch:
Patrick McHardya55e22e2015-04-11 02:27:31 +010062 regs->verdict.code = NFT_BREAK;
Patrick McHardy96518512013-10-14 11:00:02 +020063}
64
65static const struct nla_policy nft_cmp_policy[NFTA_CMP_MAX + 1] = {
66 [NFTA_CMP_SREG] = { .type = NLA_U32 },
67 [NFTA_CMP_OP] = { .type = NLA_U32 },
68 [NFTA_CMP_DATA] = { .type = NLA_NESTED },
69};
70
71static int nft_cmp_init(const struct nft_ctx *ctx, const struct nft_expr *expr,
72 const struct nlattr * const tb[])
73{
74 struct nft_cmp_expr *priv = nft_expr_priv(expr);
75 struct nft_data_desc desc;
76 int err;
77
Patrick McHardyd0a11fc2015-04-11 02:27:38 +010078 err = nft_data_init(NULL, &priv->data, sizeof(priv->data), &desc,
79 tb[NFTA_CMP_DATA]);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +020080 BUG_ON(err < 0);
Patrick McHardy96518512013-10-14 11:00:02 +020081
Patrick McHardyb1c96ed2015-04-11 02:27:36 +010082 priv->sreg = nft_parse_register(tb[NFTA_CMP_SREG]);
Patrick McHardyd07db982015-04-11 02:27:30 +010083 err = nft_validate_register_load(priv->sreg, desc.len);
84 if (err < 0)
85 return err;
86
Laura Garcia Liebana36b701f2016-09-14 15:00:02 +020087 if (desc.len > U8_MAX)
88 return -ERANGE;
89
Patrick McHardyd07db982015-04-11 02:27:30 +010090 priv->op = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
Patrick McHardy96518512013-10-14 11:00:02 +020091 priv->len = desc.len;
92 return 0;
93}
94
95static int nft_cmp_dump(struct sk_buff *skb, const struct nft_expr *expr)
96{
97 const struct nft_cmp_expr *priv = nft_expr_priv(expr);
98
Patrick McHardyb1c96ed2015-04-11 02:27:36 +010099 if (nft_dump_register(skb, NFTA_CMP_SREG, priv->sreg))
Patrick McHardy96518512013-10-14 11:00:02 +0200100 goto nla_put_failure;
101 if (nla_put_be32(skb, NFTA_CMP_OP, htonl(priv->op)))
102 goto nla_put_failure;
103
104 if (nft_data_dump(skb, NFTA_CMP_DATA, &priv->data,
105 NFT_DATA_VALUE, priv->len) < 0)
106 goto nla_put_failure;
107 return 0;
108
109nla_put_failure:
110 return -1;
111}
112
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200113static struct nft_expr_type nft_cmp_type;
114static const struct nft_expr_ops nft_cmp_ops = {
115 .type = &nft_cmp_type,
Patrick McHardy96518512013-10-14 11:00:02 +0200116 .size = NFT_EXPR_SIZE(sizeof(struct nft_cmp_expr)),
Patrick McHardy96518512013-10-14 11:00:02 +0200117 .eval = nft_cmp_eval,
118 .init = nft_cmp_init,
119 .dump = nft_cmp_dump,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200120};
121
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200122static int nft_cmp_fast_init(const struct nft_ctx *ctx,
123 const struct nft_expr *expr,
124 const struct nlattr * const tb[])
125{
126 struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
127 struct nft_data_desc desc;
128 struct nft_data data;
129 u32 mask;
130 int err;
131
Patrick McHardyd0a11fc2015-04-11 02:27:38 +0100132 err = nft_data_init(NULL, &data, sizeof(data), &desc,
133 tb[NFTA_CMP_DATA]);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200134 BUG_ON(err < 0);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200135
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100136 priv->sreg = nft_parse_register(tb[NFTA_CMP_SREG]);
Patrick McHardyd07db982015-04-11 02:27:30 +0100137 err = nft_validate_register_load(priv->sreg, desc.len);
138 if (err < 0)
139 return err;
140
141 desc.len *= BITS_PER_BYTE;
Patrick McHardyb855d412014-04-12 13:17:57 +0200142 mask = nft_cmp_fast_mask(desc.len);
Patrick McHardyd07db982015-04-11 02:27:30 +0100143
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200144 priv->data = data.data[0] & mask;
145 priv->len = desc.len;
146 return 0;
147}
148
149static int nft_cmp_fast_dump(struct sk_buff *skb, const struct nft_expr *expr)
150{
151 const struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
152 struct nft_data data;
153
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100154 if (nft_dump_register(skb, NFTA_CMP_SREG, priv->sreg))
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200155 goto nla_put_failure;
156 if (nla_put_be32(skb, NFTA_CMP_OP, htonl(NFT_CMP_EQ)))
157 goto nla_put_failure;
158
159 data.data[0] = priv->data;
160 if (nft_data_dump(skb, NFTA_CMP_DATA, &data,
161 NFT_DATA_VALUE, priv->len / BITS_PER_BYTE) < 0)
162 goto nla_put_failure;
163 return 0;
164
165nla_put_failure:
166 return -1;
167}
168
169const struct nft_expr_ops nft_cmp_fast_ops = {
170 .type = &nft_cmp_type,
171 .size = NFT_EXPR_SIZE(sizeof(struct nft_cmp_fast_expr)),
172 .eval = NULL, /* inlined */
173 .init = nft_cmp_fast_init,
174 .dump = nft_cmp_fast_dump,
175};
176
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200177static const struct nft_expr_ops *
178nft_cmp_select_ops(const struct nft_ctx *ctx, const struct nlattr * const tb[])
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200179{
180 struct nft_data_desc desc;
181 struct nft_data data;
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200182 enum nft_cmp_ops op;
183 int err;
184
185 if (tb[NFTA_CMP_SREG] == NULL ||
186 tb[NFTA_CMP_OP] == NULL ||
187 tb[NFTA_CMP_DATA] == NULL)
188 return ERR_PTR(-EINVAL);
189
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200190 op = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
191 switch (op) {
192 case NFT_CMP_EQ:
193 case NFT_CMP_NEQ:
194 case NFT_CMP_LT:
195 case NFT_CMP_LTE:
196 case NFT_CMP_GT:
197 case NFT_CMP_GTE:
198 break;
199 default:
200 return ERR_PTR(-EINVAL);
201 }
202
Patrick McHardyd0a11fc2015-04-11 02:27:38 +0100203 err = nft_data_init(NULL, &data, sizeof(data), &desc,
204 tb[NFTA_CMP_DATA]);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200205 if (err < 0)
206 return ERR_PTR(err);
207
208 if (desc.len <= sizeof(u32) && op == NFT_CMP_EQ)
209 return &nft_cmp_fast_ops;
210 else
211 return &nft_cmp_ops;
212}
213
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200214static struct nft_expr_type nft_cmp_type __read_mostly = {
215 .name = "cmp",
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200216 .select_ops = nft_cmp_select_ops,
Patrick McHardy96518512013-10-14 11:00:02 +0200217 .policy = nft_cmp_policy,
218 .maxattr = NFTA_CMP_MAX,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200219 .owner = THIS_MODULE,
Patrick McHardy96518512013-10-14 11:00:02 +0200220};
221
222int __init nft_cmp_module_init(void)
223{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200224 return nft_register_expr(&nft_cmp_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200225}
226
227void nft_cmp_module_exit(void)
228{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200229 nft_unregister_expr(&nft_cmp_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200230}