blob: b7e1c58864cfcbda9aeb84fa01cab1f913212d40 [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 McHardy96518512013-10-14 11:00:02 +020078 err = nft_data_init(NULL, &priv->data, &desc, tb[NFTA_CMP_DATA]);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +020079 BUG_ON(err < 0);
Patrick McHardy96518512013-10-14 11:00:02 +020080
Patrick McHardyd07db982015-04-11 02:27:30 +010081 priv->sreg = ntohl(nla_get_be32(tb[NFTA_CMP_SREG]));
82 err = nft_validate_register_load(priv->sreg, desc.len);
83 if (err < 0)
84 return err;
85
86 priv->op = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
Patrick McHardy96518512013-10-14 11:00:02 +020087 priv->len = desc.len;
88 return 0;
89}
90
91static int nft_cmp_dump(struct sk_buff *skb, const struct nft_expr *expr)
92{
93 const struct nft_cmp_expr *priv = nft_expr_priv(expr);
94
95 if (nla_put_be32(skb, NFTA_CMP_SREG, htonl(priv->sreg)))
96 goto nla_put_failure;
97 if (nla_put_be32(skb, NFTA_CMP_OP, htonl(priv->op)))
98 goto nla_put_failure;
99
100 if (nft_data_dump(skb, NFTA_CMP_DATA, &priv->data,
101 NFT_DATA_VALUE, priv->len) < 0)
102 goto nla_put_failure;
103 return 0;
104
105nla_put_failure:
106 return -1;
107}
108
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200109static struct nft_expr_type nft_cmp_type;
110static const struct nft_expr_ops nft_cmp_ops = {
111 .type = &nft_cmp_type,
Patrick McHardy96518512013-10-14 11:00:02 +0200112 .size = NFT_EXPR_SIZE(sizeof(struct nft_cmp_expr)),
Patrick McHardy96518512013-10-14 11:00:02 +0200113 .eval = nft_cmp_eval,
114 .init = nft_cmp_init,
115 .dump = nft_cmp_dump,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200116};
117
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200118static int nft_cmp_fast_init(const struct nft_ctx *ctx,
119 const struct nft_expr *expr,
120 const struct nlattr * const tb[])
121{
122 struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
123 struct nft_data_desc desc;
124 struct nft_data data;
125 u32 mask;
126 int err;
127
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200128 err = nft_data_init(NULL, &data, &desc, tb[NFTA_CMP_DATA]);
129 BUG_ON(err < 0);
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200130
Patrick McHardyd07db982015-04-11 02:27:30 +0100131 priv->sreg = ntohl(nla_get_be32(tb[NFTA_CMP_SREG]));
132 err = nft_validate_register_load(priv->sreg, desc.len);
133 if (err < 0)
134 return err;
135
136 desc.len *= BITS_PER_BYTE;
Patrick McHardyb855d412014-04-12 13:17:57 +0200137 mask = nft_cmp_fast_mask(desc.len);
Patrick McHardyd07db982015-04-11 02:27:30 +0100138
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200139 priv->data = data.data[0] & mask;
140 priv->len = desc.len;
141 return 0;
142}
143
144static int nft_cmp_fast_dump(struct sk_buff *skb, const struct nft_expr *expr)
145{
146 const struct nft_cmp_fast_expr *priv = nft_expr_priv(expr);
147 struct nft_data data;
148
149 if (nla_put_be32(skb, NFTA_CMP_SREG, htonl(priv->sreg)))
150 goto nla_put_failure;
151 if (nla_put_be32(skb, NFTA_CMP_OP, htonl(NFT_CMP_EQ)))
152 goto nla_put_failure;
153
154 data.data[0] = priv->data;
155 if (nft_data_dump(skb, NFTA_CMP_DATA, &data,
156 NFT_DATA_VALUE, priv->len / BITS_PER_BYTE) < 0)
157 goto nla_put_failure;
158 return 0;
159
160nla_put_failure:
161 return -1;
162}
163
164const struct nft_expr_ops nft_cmp_fast_ops = {
165 .type = &nft_cmp_type,
166 .size = NFT_EXPR_SIZE(sizeof(struct nft_cmp_fast_expr)),
167 .eval = NULL, /* inlined */
168 .init = nft_cmp_fast_init,
169 .dump = nft_cmp_fast_dump,
170};
171
Pablo Neira Ayuso0ca743a2013-10-14 00:06:06 +0200172static const struct nft_expr_ops *
173nft_cmp_select_ops(const struct nft_ctx *ctx, const struct nlattr * const tb[])
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200174{
175 struct nft_data_desc desc;
176 struct nft_data data;
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200177 enum nft_cmp_ops op;
178 int err;
179
180 if (tb[NFTA_CMP_SREG] == NULL ||
181 tb[NFTA_CMP_OP] == NULL ||
182 tb[NFTA_CMP_DATA] == NULL)
183 return ERR_PTR(-EINVAL);
184
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200185 op = ntohl(nla_get_be32(tb[NFTA_CMP_OP]));
186 switch (op) {
187 case NFT_CMP_EQ:
188 case NFT_CMP_NEQ:
189 case NFT_CMP_LT:
190 case NFT_CMP_LTE:
191 case NFT_CMP_GT:
192 case NFT_CMP_GTE:
193 break;
194 default:
195 return ERR_PTR(-EINVAL);
196 }
197
198 err = nft_data_init(NULL, &data, &desc, tb[NFTA_CMP_DATA]);
199 if (err < 0)
200 return ERR_PTR(err);
201
202 if (desc.len <= sizeof(u32) && op == NFT_CMP_EQ)
203 return &nft_cmp_fast_ops;
204 else
205 return &nft_cmp_ops;
206}
207
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200208static struct nft_expr_type nft_cmp_type __read_mostly = {
209 .name = "cmp",
Patrick McHardycb7dbfd2013-10-10 23:35:40 +0200210 .select_ops = nft_cmp_select_ops,
Patrick McHardy96518512013-10-14 11:00:02 +0200211 .policy = nft_cmp_policy,
212 .maxattr = NFTA_CMP_MAX,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200213 .owner = THIS_MODULE,
Patrick McHardy96518512013-10-14 11:00:02 +0200214};
215
216int __init nft_cmp_module_init(void)
217{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200218 return nft_register_expr(&nft_cmp_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200219}
220
221void nft_cmp_module_exit(void)
222{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200223 nft_unregister_expr(&nft_cmp_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200224}