rt2x00usb: fix anchor initialization
[linux/fpc-iii.git] / net / netfilter / nft_hash.c
blobd5447a22275c0649cb125364730986a52436816d
1 /*
2 * Copyright (c) 2016 Laura Garcia <nevola@gmail.com>
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.
8 */
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>
20 struct 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;
29 static void nft_hash_eval(const struct nft_expr *expr,
30 struct nft_regs *regs,
31 const struct nft_pktinfo *pkt)
33 struct nft_hash *priv = nft_expr_priv(expr);
34 const void *data = &regs->data[priv->sreg];
35 u32 h;
37 h = reciprocal_scale(jhash(data, priv->len, priv->seed), priv->modulus);
38 regs->data[priv->dreg] = h + priv->offset;
41 static 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 },
50 static int nft_hash_init(const struct nft_ctx *ctx,
51 const struct nft_expr *expr,
52 const struct nlattr * const tb[])
54 struct nft_hash *priv = nft_expr_priv(expr);
55 u32 len;
56 int err;
58 if (!tb[NFTA_HASH_SREG] ||
59 !tb[NFTA_HASH_DREG] ||
60 !tb[NFTA_HASH_LEN] ||
61 !tb[NFTA_HASH_SEED] ||
62 !tb[NFTA_HASH_MODULUS])
63 return -EINVAL;
65 if (tb[NFTA_HASH_OFFSET])
66 priv->offset = ntohl(nla_get_be32(tb[NFTA_HASH_OFFSET]));
68 priv->sreg = nft_parse_register(tb[NFTA_HASH_SREG]);
69 priv->dreg = nft_parse_register(tb[NFTA_HASH_DREG]);
71 err = nft_parse_u32_check(tb[NFTA_HASH_LEN], U8_MAX, &len);
72 if (err < 0)
73 return err;
74 if (len == 0)
75 return -ERANGE;
77 priv->len = len;
79 priv->modulus = ntohl(nla_get_be32(tb[NFTA_HASH_MODULUS]));
80 if (priv->modulus <= 1)
81 return -ERANGE;
83 if (priv->offset + priv->modulus - 1 < priv->offset)
84 return -EOVERFLOW;
86 priv->seed = ntohl(nla_get_be32(tb[NFTA_HASH_SEED]));
88 return nft_validate_register_load(priv->sreg, len) &&
89 nft_validate_register_store(ctx, priv->dreg, NULL,
90 NFT_DATA_VALUE, sizeof(u32));
93 static int nft_hash_dump(struct sk_buff *skb,
94 const struct nft_expr *expr)
96 const struct nft_hash *priv = nft_expr_priv(expr);
98 if (nft_dump_register(skb, NFTA_HASH_SREG, priv->sreg))
99 goto nla_put_failure;
100 if (nft_dump_register(skb, NFTA_HASH_DREG, priv->dreg))
101 goto nla_put_failure;
102 if (nla_put_be32(skb, NFTA_HASH_LEN, htonl(priv->len)))
103 goto nla_put_failure;
104 if (nla_put_be32(skb, NFTA_HASH_MODULUS, htonl(priv->modulus)))
105 goto nla_put_failure;
106 if (nla_put_be32(skb, NFTA_HASH_SEED, htonl(priv->seed)))
107 goto nla_put_failure;
108 if (priv->offset != 0)
109 if (nla_put_be32(skb, NFTA_HASH_OFFSET, htonl(priv->offset)))
110 goto nla_put_failure;
111 return 0;
113 nla_put_failure:
114 return -1;
117 static struct nft_expr_type nft_hash_type;
118 static const struct nft_expr_ops nft_hash_ops = {
119 .type = &nft_hash_type,
120 .size = NFT_EXPR_SIZE(sizeof(struct nft_hash)),
121 .eval = nft_hash_eval,
122 .init = nft_hash_init,
123 .dump = nft_hash_dump,
126 static struct nft_expr_type nft_hash_type __read_mostly = {
127 .name = "hash",
128 .ops = &nft_hash_ops,
129 .policy = nft_hash_policy,
130 .maxattr = NFTA_HASH_MAX,
131 .owner = THIS_MODULE,
134 static int __init nft_hash_module_init(void)
136 return nft_register_expr(&nft_hash_type);
139 static void __exit nft_hash_module_exit(void)
141 nft_unregister_expr(&nft_hash_type);
144 module_init(nft_hash_module_init);
145 module_exit(nft_hash_module_exit);
147 MODULE_LICENSE("GPL");
148 MODULE_AUTHOR("Laura Garcia <nevola@gmail.com>");
149 MODULE_ALIAS_NFT_EXPR("hash");