Loading...
1/*
2 * Copyright (c) 2016 Laura Garcia <nevola@gmail.com>
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 */
9
10#include <linux/kernel.h>
11#include <linux/init.h>
12#include <linux/module.h>
13#include <linux/netlink.h>
14#include <linux/netfilter.h>
15#include <linux/netfilter/nf_tables.h>
16#include <net/netfilter/nf_tables.h>
17#include <net/netfilter/nf_tables_core.h>
18#include <linux/jhash.h>
19
20struct nft_hash {
21 enum nft_registers sreg:8;
22 enum nft_registers dreg:8;
23 u8 len;
24 u32 modulus;
25 u32 seed;
26 u32 offset;
27};
28
29static void nft_hash_eval(const struct nft_expr *expr,
30 struct nft_regs *regs,
31 const struct nft_pktinfo *pkt)
32{
33 struct nft_hash *priv = nft_expr_priv(expr);
34 const void *data = ®s->data[priv->sreg];
35 u32 h;
36
37 h = reciprocal_scale(jhash(data, priv->len, priv->seed), priv->modulus);
38 regs->data[priv->dreg] = h + priv->offset;
39}
40
41static const struct nla_policy nft_hash_policy[NFTA_HASH_MAX + 1] = {
42 [NFTA_HASH_SREG] = { .type = NLA_U32 },
43 [NFTA_HASH_DREG] = { .type = NLA_U32 },
44 [NFTA_HASH_LEN] = { .type = NLA_U32 },
45 [NFTA_HASH_MODULUS] = { .type = NLA_U32 },
46 [NFTA_HASH_SEED] = { .type = NLA_U32 },
47 [NFTA_HASH_OFFSET] = { .type = NLA_U32 },
48};
49
50static int nft_hash_init(const struct nft_ctx *ctx,
51 const struct nft_expr *expr,
52 const struct nlattr * const tb[])
53{
54 struct nft_hash *priv = nft_expr_priv(expr);
55 u32 len;
56 int err;
57
58 if (!tb[NFTA_HASH_SREG] ||
59 !tb[NFTA_HASH_DREG] ||
60 !tb[NFTA_HASH_LEN] ||
61 !tb[NFTA_HASH_MODULUS])
62 return -EINVAL;
63
64 if (tb[NFTA_HASH_OFFSET])
65 priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
66
67 priv->sreg = nft_parse_register(tb[NFTA_HASH_SREG]);
68 priv->dreg = nft_parse_register(tb[NFTA_HASH_DREG]);
69
70 err = nft_parse_u32_check(tb[NFTA_HASH_LEN], U8_MAX, &len);
71 if (err < 0)
72 return err;
73 if (len == 0)
74 return -ERANGE;
75
76 priv->len = len;
77
78 priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
79 if (priv->modulus <= 1)
80 return -ERANGE;
81
82 if (priv->offset + priv->modulus - 1 < priv->offset)
83 return -EOVERFLOW;
84
85 if (tb[NFTA_HASH_SEED])
86 priv->seed = ntohl(nla_get_be32(tb[NFTA_HASH_SEED]));
87 else
88 get_random_bytes(&priv->seed, sizeof(priv->seed));
89
90 return nft_validate_register_load(priv->sreg, len) &&
91 nft_validate_register_store(ctx, priv->dreg, NULL,
92 NFT_DATA_VALUE, sizeof(u32));
93}
94
95static int nft_hash_dump(struct sk_buff *skb,
96 const struct nft_expr *expr)
97{
98 const struct nft_hash *priv = nft_expr_priv(expr);
99
100 if (nft_dump_register(skb, NFTA_HASH_SREG, priv->sreg))
101 goto nla_put_failure;
102 if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
103 goto nla_put_failure;
104 if (nla_put_be32(skb, NFTA_HASH_LEN, htonl(priv->len)))
105 goto nla_put_failure;
106 if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
107 goto nla_put_failure;
108 if (nla_put_be32(skb, NFTA_HASH_SEED, htonl(priv->seed)))
109 goto nla_put_failure;
110 if (priv->offset != 0)
111 if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
112 goto nla_put_failure;
113 return 0;
114
115nla_put_failure:
116 return -1;
117}
118
119static struct nft_expr_type nft_hash_type;
120static const struct nft_expr_ops nft_hash_ops = {
121 .type = &nft_hash_type,
122 .size = NFT_EXPR_SIZE(sizeof(struct nft_hash)),
123 .eval = nft_hash_eval,
124 .init = nft_hash_init,
125 .dump = nft_hash_dump,
126};
127
128static struct nft_expr_type nft_hash_type __read_mostly = {
129 .name = "hash",
130 .ops = &nft_hash_ops,
131 .policy = nft_hash_policy,
132 .maxattr = NFTA_HASH_MAX,
133 .owner = THIS_MODULE,
134};
135
136static int __init nft_hash_module_init(void)
137{
138 return nft_register_expr(&nft_hash_type);
139}
140
141static void __exit nft_hash_module_exit(void)
142{
143 nft_unregister_expr(&nft_hash_type);
144}
145
146module_init(nft_hash_module_init);
147module_exit(nft_hash_module_exit);
148
149MODULE_LICENSE("GPL");
150MODULE_AUTHOR("Laura Garcia <nevola@gmail.com>");
151MODULE_ALIAS_NFT_EXPR("hash");
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (c) 2016 Laura Garcia <nevola@gmail.com>
4 */
5
6#include <linux/kernel.h>
7#include <linux/init.h>
8#include <linux/module.h>
9#include <linux/netlink.h>
10#include <linux/netfilter.h>
11#include <linux/netfilter/nf_tables.h>
12#include <net/netfilter/nf_tables.h>
13#include <net/netfilter/nf_tables_core.h>
14#include <linux/jhash.h>
15
16struct nft_jhash {
17 u8 sreg;
18 u8 dreg;
19 u8 len;
20 bool autogen_seed:1;
21 u32 modulus;
22 u32 seed;
23 u32 offset;
24};
25
26static void nft_jhash_eval(const struct nft_expr *expr,
27 struct nft_regs *regs,
28 const struct nft_pktinfo *pkt)
29{
30 struct nft_jhash *priv = nft_expr_priv(expr);
31 const void *data = ®s->data[priv->sreg];
32 u32 h;
33
34 h = reciprocal_scale(jhash(data, priv->len, priv->seed),
35 priv->modulus);
36
37 regs->data[priv->dreg] = h + priv->offset;
38}
39
40struct nft_symhash {
41 u8 dreg;
42 u32 modulus;
43 u32 offset;
44};
45
46static void nft_symhash_eval(const struct nft_expr *expr,
47 struct nft_regs *regs,
48 const struct nft_pktinfo *pkt)
49{
50 struct nft_symhash *priv = nft_expr_priv(expr);
51 struct sk_buff *skb = pkt->skb;
52 u32 h;
53
54 h = reciprocal_scale(__skb_get_hash_symmetric_net(nft_net(pkt), skb),
55 priv->modulus);
56
57 regs->data[priv->dreg] = h + priv->offset;
58}
59
60static const struct nla_policy nft_hash_policy[NFTA_HASH_MAX + 1] = {
61 [NFTA_HASH_SREG] = { .type = NLA_U32 },
62 [NFTA_HASH_DREG] = { .type = NLA_U32 },
63 [NFTA_HASH_LEN] = NLA_POLICY_MAX(NLA_BE32, 255),
64 [NFTA_HASH_MODULUS] = { .type = NLA_U32 },
65 [NFTA_HASH_SEED] = { .type = NLA_U32 },
66 [NFTA_HASH_OFFSET] = { .type = NLA_U32 },
67 [NFTA_HASH_TYPE] = { .type = NLA_U32 },
68};
69
70static int nft_jhash_init(const struct nft_ctx *ctx,
71 const struct nft_expr *expr,
72 const struct nlattr * const tb[])
73{
74 struct nft_jhash *priv = nft_expr_priv(expr);
75 u32 len;
76 int err;
77
78 if (!tb[NFTA_HASH_SREG] ||
79 !tb[NFTA_HASH_DREG] ||
80 !tb[NFTA_HASH_LEN] ||
81 !tb[NFTA_HASH_MODULUS])
82 return -EINVAL;
83
84 if (tb[NFTA_HASH_OFFSET])
85 priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
86
87 err = nft_parse_u32_check(tb[NFTA_HASH_LEN], U8_MAX, &len);
88 if (err < 0)
89 return err;
90 if (len == 0)
91 return -ERANGE;
92
93 priv->len = len;
94
95 err = nft_parse_register_load(ctx, tb[NFTA_HASH_SREG], &priv->sreg, len);
96 if (err < 0)
97 return err;
98
99 priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
100 if (priv->modulus < 1)
101 return -ERANGE;
102
103 if (priv->offset + priv->modulus - 1 < priv->offset)
104 return -EOVERFLOW;
105
106 if (tb[NFTA_HASH_SEED]) {
107 priv->seed = ntohl(nla_get_be32(tb[NFTA_HASH_SEED]));
108 } else {
109 priv->autogen_seed = true;
110 get_random_bytes(&priv->seed, sizeof(priv->seed));
111 }
112
113 return nft_parse_register_store(ctx, tb[NFTA_HASH_DREG], &priv->dreg,
114 NULL, NFT_DATA_VALUE, sizeof(u32));
115}
116
117static int nft_symhash_init(const struct nft_ctx *ctx,
118 const struct nft_expr *expr,
119 const struct nlattr * const tb[])
120{
121 struct nft_symhash *priv = nft_expr_priv(expr);
122
123 if (!tb[NFTA_HASH_DREG] ||
124 !tb[NFTA_HASH_MODULUS])
125 return -EINVAL;
126
127 if (tb[NFTA_HASH_OFFSET])
128 priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
129
130 priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
131 if (priv->modulus < 1)
132 return -ERANGE;
133
134 if (priv->offset + priv->modulus - 1 < priv->offset)
135 return -EOVERFLOW;
136
137 return nft_parse_register_store(ctx, tb[NFTA_HASH_DREG],
138 &priv->dreg, NULL, NFT_DATA_VALUE,
139 sizeof(u32));
140}
141
142static int nft_jhash_dump(struct sk_buff *skb,
143 const struct nft_expr *expr, bool reset)
144{
145 const struct nft_jhash *priv = nft_expr_priv(expr);
146
147 if (nft_dump_register(skb, NFTA_HASH_SREG, priv->sreg))
148 goto nla_put_failure;
149 if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
150 goto nla_put_failure;
151 if (nla_put_be32(skb, NFTA_HASH_LEN, htonl(priv->len)))
152 goto nla_put_failure;
153 if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
154 goto nla_put_failure;
155 if (!priv->autogen_seed &&
156 nla_put_be32(skb, NFTA_HASH_SEED, htonl(priv->seed)))
157 goto nla_put_failure;
158 if (priv->offset != 0)
159 if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
160 goto nla_put_failure;
161 if (nla_put_be32(skb, NFTA_HASH_TYPE, htonl(NFT_HASH_JENKINS)))
162 goto nla_put_failure;
163 return 0;
164
165nla_put_failure:
166 return -1;
167}
168
169static bool nft_jhash_reduce(struct nft_regs_track *track,
170 const struct nft_expr *expr)
171{
172 const struct nft_jhash *priv = nft_expr_priv(expr);
173
174 nft_reg_track_cancel(track, priv->dreg, sizeof(u32));
175
176 return false;
177}
178
179static int nft_symhash_dump(struct sk_buff *skb,
180 const struct nft_expr *expr, bool reset)
181{
182 const struct nft_symhash *priv = nft_expr_priv(expr);
183
184 if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
185 goto nla_put_failure;
186 if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
187 goto nla_put_failure;
188 if (priv->offset != 0)
189 if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
190 goto nla_put_failure;
191 if (nla_put_be32(skb, NFTA_HASH_TYPE, htonl(NFT_HASH_SYM)))
192 goto nla_put_failure;
193 return 0;
194
195nla_put_failure:
196 return -1;
197}
198
199static bool nft_symhash_reduce(struct nft_regs_track *track,
200 const struct nft_expr *expr)
201{
202 struct nft_symhash *priv = nft_expr_priv(expr);
203 struct nft_symhash *symhash;
204
205 if (!nft_reg_track_cmp(track, expr, priv->dreg)) {
206 nft_reg_track_update(track, expr, priv->dreg, sizeof(u32));
207 return false;
208 }
209
210 symhash = nft_expr_priv(track->regs[priv->dreg].selector);
211 if (priv->offset != symhash->offset ||
212 priv->modulus != symhash->modulus) {
213 nft_reg_track_update(track, expr, priv->dreg, sizeof(u32));
214 return false;
215 }
216
217 if (!track->regs[priv->dreg].bitwise)
218 return true;
219
220 return false;
221}
222
223static struct nft_expr_type nft_hash_type;
224static const struct nft_expr_ops nft_jhash_ops = {
225 .type = &nft_hash_type,
226 .size = NFT_EXPR_SIZE(sizeof(struct nft_jhash)),
227 .eval = nft_jhash_eval,
228 .init = nft_jhash_init,
229 .dump = nft_jhash_dump,
230 .reduce = nft_jhash_reduce,
231};
232
233static const struct nft_expr_ops nft_symhash_ops = {
234 .type = &nft_hash_type,
235 .size = NFT_EXPR_SIZE(sizeof(struct nft_symhash)),
236 .eval = nft_symhash_eval,
237 .init = nft_symhash_init,
238 .dump = nft_symhash_dump,
239 .reduce = nft_symhash_reduce,
240};
241
242static const struct nft_expr_ops *
243nft_hash_select_ops(const struct nft_ctx *ctx,
244 const struct nlattr * const tb[])
245{
246 u32 type;
247
248 if (!tb[NFTA_HASH_TYPE])
249 return &nft_jhash_ops;
250
251 type = ntohl(nla_get_be32(tb[NFTA_HASH_TYPE]));
252 switch (type) {
253 case NFT_HASH_SYM:
254 return &nft_symhash_ops;
255 case NFT_HASH_JENKINS:
256 return &nft_jhash_ops;
257 default:
258 break;
259 }
260 return ERR_PTR(-EOPNOTSUPP);
261}
262
263static struct nft_expr_type nft_hash_type __read_mostly = {
264 .name = "hash",
265 .select_ops = nft_hash_select_ops,
266 .policy = nft_hash_policy,
267 .maxattr = NFTA_HASH_MAX,
268 .owner = THIS_MODULE,
269};
270
271static int __init nft_hash_module_init(void)
272{
273 return nft_register_expr(&nft_hash_type);
274}
275
276static void __exit nft_hash_module_exit(void)
277{
278 nft_unregister_expr(&nft_hash_type);
279}
280
281module_init(nft_hash_module_init);
282module_exit(nft_hash_module_exit);
283
284MODULE_LICENSE("GPL");
285MODULE_AUTHOR("Laura Garcia <nevola@gmail.com>");
286MODULE_ALIAS_NFT_EXPR("hash");
287MODULE_DESCRIPTION("Netfilter nftables hash module");