blob: 31c15ed2e5fcb1cce63c620650d17bc0942a8ce2 [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_bitwise {
21 enum nft_registers sreg:8;
22 enum nft_registers dreg:8;
23 u8 len;
24 struct nft_data mask;
25 struct nft_data xor;
26};
27
28static void nft_bitwise_eval(const struct nft_expr *expr,
Patrick McHardya55e22e2015-04-11 02:27:31 +010029 struct nft_regs *regs,
Patrick McHardy96518512013-10-14 11:00:02 +020030 const struct nft_pktinfo *pkt)
31{
32 const struct nft_bitwise *priv = nft_expr_priv(expr);
Patrick McHardy49499c32015-04-11 02:27:37 +010033 const u32 *src = &regs->data[priv->sreg];
34 u32 *dst = &regs->data[priv->dreg];
Patrick McHardy96518512013-10-14 11:00:02 +020035 unsigned int i;
36
Patrick McHardyfad136e2015-04-11 02:27:33 +010037 for (i = 0; i < DIV_ROUND_UP(priv->len, 4); i++)
38 dst[i] = (src[i] & priv->mask.data[i]) ^ priv->xor.data[i];
Patrick McHardy96518512013-10-14 11:00:02 +020039}
40
41static const struct nla_policy nft_bitwise_policy[NFTA_BITWISE_MAX + 1] = {
42 [NFTA_BITWISE_SREG] = { .type = NLA_U32 },
43 [NFTA_BITWISE_DREG] = { .type = NLA_U32 },
44 [NFTA_BITWISE_LEN] = { .type = NLA_U32 },
45 [NFTA_BITWISE_MASK] = { .type = NLA_NESTED },
46 [NFTA_BITWISE_XOR] = { .type = NLA_NESTED },
47};
48
49static int nft_bitwise_init(const struct nft_ctx *ctx,
50 const struct nft_expr *expr,
51 const struct nlattr * const tb[])
52{
53 struct nft_bitwise *priv = nft_expr_priv(expr);
54 struct nft_data_desc d1, d2;
Laura Garcia Liebana36b701f2016-09-14 15:00:02 +020055 u32 len;
Patrick McHardy96518512013-10-14 11:00:02 +020056 int err;
57
58 if (tb[NFTA_BITWISE_SREG] == NULL ||
59 tb[NFTA_BITWISE_DREG] == NULL ||
60 tb[NFTA_BITWISE_LEN] == NULL ||
61 tb[NFTA_BITWISE_MASK] == NULL ||
62 tb[NFTA_BITWISE_XOR] == NULL)
63 return -EINVAL;
64
Laura Garcia Liebana36b701f2016-09-14 15:00:02 +020065 err = nft_parse_u32_check(tb[NFTA_BITWISE_LEN], U8_MAX, &len);
66 if (err < 0)
67 return err;
68
69 priv->len = len;
70
Patrick McHardyb1c96ed2015-04-11 02:27:36 +010071 priv->sreg = nft_parse_register(tb[NFTA_BITWISE_SREG]);
Patrick McHardyd07db982015-04-11 02:27:30 +010072 err = nft_validate_register_load(priv->sreg, priv->len);
Patrick McHardy96518512013-10-14 11:00:02 +020073 if (err < 0)
74 return err;
75
Patrick McHardyb1c96ed2015-04-11 02:27:36 +010076 priv->dreg = nft_parse_register(tb[NFTA_BITWISE_DREG]);
Patrick McHardy1ec10212015-04-11 02:27:27 +010077 err = nft_validate_register_store(ctx, priv->dreg, NULL,
78 NFT_DATA_VALUE, priv->len);
Patrick McHardy96518512013-10-14 11:00:02 +020079 if (err < 0)
80 return err;
81
Patrick McHardyd0a11fc2015-04-11 02:27:38 +010082 err = nft_data_init(NULL, &priv->mask, sizeof(priv->mask), &d1,
83 tb[NFTA_BITWISE_MASK]);
Patrick McHardy96518512013-10-14 11:00:02 +020084 if (err < 0)
85 return err;
86 if (d1.len != priv->len)
87 return -EINVAL;
88
Patrick McHardyd0a11fc2015-04-11 02:27:38 +010089 err = nft_data_init(NULL, &priv->xor, sizeof(priv->xor), &d2,
90 tb[NFTA_BITWISE_XOR]);
Patrick McHardy96518512013-10-14 11:00:02 +020091 if (err < 0)
92 return err;
93 if (d2.len != priv->len)
94 return -EINVAL;
95
96 return 0;
97}
98
99static int nft_bitwise_dump(struct sk_buff *skb, const struct nft_expr *expr)
100{
101 const struct nft_bitwise *priv = nft_expr_priv(expr);
102
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100103 if (nft_dump_register(skb, NFTA_BITWISE_SREG, priv->sreg))
Patrick McHardy96518512013-10-14 11:00:02 +0200104 goto nla_put_failure;
Patrick McHardyb1c96ed2015-04-11 02:27:36 +0100105 if (nft_dump_register(skb, NFTA_BITWISE_DREG, priv->dreg))
Patrick McHardy96518512013-10-14 11:00:02 +0200106 goto nla_put_failure;
107 if (nla_put_be32(skb, NFTA_BITWISE_LEN, htonl(priv->len)))
108 goto nla_put_failure;
109
110 if (nft_data_dump(skb, NFTA_BITWISE_MASK, &priv->mask,
111 NFT_DATA_VALUE, priv->len) < 0)
112 goto nla_put_failure;
113
114 if (nft_data_dump(skb, NFTA_BITWISE_XOR, &priv->xor,
115 NFT_DATA_VALUE, priv->len) < 0)
116 goto nla_put_failure;
117
118 return 0;
119
120nla_put_failure:
121 return -1;
122}
123
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200124static struct nft_expr_type nft_bitwise_type;
125static const struct nft_expr_ops nft_bitwise_ops = {
126 .type = &nft_bitwise_type,
Patrick McHardy96518512013-10-14 11:00:02 +0200127 .size = NFT_EXPR_SIZE(sizeof(struct nft_bitwise)),
Patrick McHardy96518512013-10-14 11:00:02 +0200128 .eval = nft_bitwise_eval,
129 .init = nft_bitwise_init,
130 .dump = nft_bitwise_dump,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200131};
132
133static struct nft_expr_type nft_bitwise_type __read_mostly = {
134 .name = "bitwise",
135 .ops = &nft_bitwise_ops,
Patrick McHardy96518512013-10-14 11:00:02 +0200136 .policy = nft_bitwise_policy,
137 .maxattr = NFTA_BITWISE_MAX,
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200138 .owner = THIS_MODULE,
Patrick McHardy96518512013-10-14 11:00:02 +0200139};
140
141int __init nft_bitwise_module_init(void)
142{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200143 return nft_register_expr(&nft_bitwise_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200144}
145
146void nft_bitwise_module_exit(void)
147{
Patrick McHardyef1f7df2013-10-10 11:41:20 +0200148 nft_unregister_expr(&nft_bitwise_type);
Patrick McHardy96518512013-10-14 11:00:02 +0200149}