nft_exthdr.c 6.6 KB
Newer Older
P
Patrick McHardy 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * Copyright (c) 2008 Patrick McHardy <kaber@trash.net>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 as
 * published by the Free Software Foundation.
 *
 * Development of this code funded by Astaro AG (http://www.astaro.com/)
 */

#include <linux/kernel.h>
#include <linux/init.h>
#include <linux/module.h>
#include <linux/netlink.h>
#include <linux/netfilter.h>
#include <linux/netfilter/nf_tables.h>
#include <net/netfilter/nf_tables.h>
18
#include <net/tcp.h>
P
Patrick McHardy 已提交
19 20 21 22 23

struct nft_exthdr {
	u8			type;
	u8			offset;
	u8			len;
24
	u8			op;
P
Patrick McHardy 已提交
25
	enum nft_registers	dreg:8;
26
	u8			flags;
P
Patrick McHardy 已提交
27 28
};

29 30 31 32 33 34 35 36 37 38 39 40
static unsigned int optlen(const u8 *opt, unsigned int offset)
{
	/* Beware zero-length options: make finite progress */
	if (opt[offset] <= TCPOPT_NOP || opt[offset + 1] == 0)
		return 1;
	else
		return opt[offset + 1];
}

static void nft_exthdr_ipv6_eval(const struct nft_expr *expr,
				 struct nft_regs *regs,
				 const struct nft_pktinfo *pkt)
P
Patrick McHardy 已提交
41 42
{
	struct nft_exthdr *priv = nft_expr_priv(expr);
43
	u32 *dest = &regs->data[priv->dreg];
44
	unsigned int offset = 0;
P
Patrick McHardy 已提交
45 46 47
	int err;

	err = ipv6_find_hdr(pkt->skb, &offset, priv->type, NULL, NULL);
48 49 50 51
	if (priv->flags & NFT_EXTHDR_F_PRESENT) {
		*dest = (err >= 0);
		return;
	} else if (err < 0) {
P
Patrick McHardy 已提交
52
		goto err;
53
	}
P
Patrick McHardy 已提交
54 55
	offset += priv->offset;

56
	dest[priv->len / NFT_REG32_SIZE] = 0;
57
	if (skb_copy_bits(pkt->skb, offset, dest, priv->len) < 0)
P
Patrick McHardy 已提交
58 59 60
		goto err;
	return;
err:
61
	regs->verdict.code = NFT_BREAK;
P
Patrick McHardy 已提交
62 63
}

64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83
static void *
nft_tcp_header_pointer(const struct nft_pktinfo *pkt,
		       unsigned int len, void *buffer, unsigned int *tcphdr_len)
{
	struct tcphdr *tcph;

	if (!pkt->tprot_set || pkt->tprot != IPPROTO_TCP)
		return NULL;

	tcph = skb_header_pointer(pkt->skb, pkt->xt.thoff, sizeof(*tcph), buffer);
	if (!tcph)
		return NULL;

	*tcphdr_len = __tcp_hdrlen(tcph);
	if (*tcphdr_len < sizeof(*tcph) || *tcphdr_len > len)
		return NULL;

	return skb_header_pointer(pkt->skb, pkt->xt.thoff, *tcphdr_len, buffer);
}

84 85 86 87 88 89 90 91 92 93 94
static void nft_exthdr_tcp_eval(const struct nft_expr *expr,
				struct nft_regs *regs,
				const struct nft_pktinfo *pkt)
{
	u8 buff[sizeof(struct tcphdr) + MAX_TCP_OPTION_SPACE];
	struct nft_exthdr *priv = nft_expr_priv(expr);
	unsigned int i, optl, tcphdr_len, offset;
	u32 *dest = &regs->data[priv->dreg];
	struct tcphdr *tcph;
	u8 *opt;

95
	tcph = nft_tcp_header_pointer(pkt, sizeof(buff), buff, &tcphdr_len);
96 97 98 99 100 101 102 103 104 105 106 107 108 109
	if (!tcph)
		goto err;

	opt = (u8 *)tcph;
	for (i = sizeof(*tcph); i < tcphdr_len - 1; i += optl) {
		optl = optlen(opt, i);

		if (priv->type != opt[i])
			continue;

		if (i + optl > tcphdr_len || priv->len + priv->offset > optl)
			goto err;

		offset = i + priv->offset;
110 111 112 113 114 115
		if (priv->flags & NFT_EXTHDR_F_PRESENT) {
			*dest = 1;
		} else {
			dest[priv->len / NFT_REG32_SIZE] = 0;
			memcpy(dest, opt + offset, priv->len);
		}
116 117 118 119 120

		return;
	}

err:
121 122 123 124
	if (priv->flags & NFT_EXTHDR_F_PRESENT)
		*dest = 0;
	else
		regs->verdict.code = NFT_BREAK;
125 126
}

P
Patrick McHardy 已提交
127 128 129 130 131
static const struct nla_policy nft_exthdr_policy[NFTA_EXTHDR_MAX + 1] = {
	[NFTA_EXTHDR_DREG]		= { .type = NLA_U32 },
	[NFTA_EXTHDR_TYPE]		= { .type = NLA_U8 },
	[NFTA_EXTHDR_OFFSET]		= { .type = NLA_U32 },
	[NFTA_EXTHDR_LEN]		= { .type = NLA_U32 },
132
	[NFTA_EXTHDR_FLAGS]		= { .type = NLA_U32 },
P
Patrick McHardy 已提交
133 134 135 136 137 138 139
};

static int nft_exthdr_init(const struct nft_ctx *ctx,
			   const struct nft_expr *expr,
			   const struct nlattr * const tb[])
{
	struct nft_exthdr *priv = nft_expr_priv(expr);
140
	u32 offset, len, flags = 0, op = NFT_EXTHDR_OP_IPV6;
141
	int err;
P
Patrick McHardy 已提交
142

143 144 145 146
	if (!tb[NFTA_EXTHDR_DREG] ||
	    !tb[NFTA_EXTHDR_TYPE] ||
	    !tb[NFTA_EXTHDR_OFFSET] ||
	    !tb[NFTA_EXTHDR_LEN])
P
Patrick McHardy 已提交
147 148
		return -EINVAL;

149 150 151
	err = nft_parse_u32_check(tb[NFTA_EXTHDR_OFFSET], U8_MAX, &offset);
	if (err < 0)
		return err;
152

153 154 155
	err = nft_parse_u32_check(tb[NFTA_EXTHDR_LEN], U8_MAX, &len);
	if (err < 0)
		return err;
156

157 158 159 160 161 162 163 164 165
	if (tb[NFTA_EXTHDR_FLAGS]) {
		err = nft_parse_u32_check(tb[NFTA_EXTHDR_FLAGS], U8_MAX, &flags);
		if (err < 0)
			return err;

		if (flags & ~NFT_EXTHDR_F_PRESENT)
			return -EINVAL;
	}

166 167 168 169 170 171
	if (tb[NFTA_EXTHDR_OP]) {
		err = nft_parse_u32_check(tb[NFTA_EXTHDR_OP], U8_MAX, &op);
		if (err < 0)
			return err;
	}

P
Patrick McHardy 已提交
172
	priv->type   = nla_get_u8(tb[NFTA_EXTHDR_TYPE]);
173 174
	priv->offset = offset;
	priv->len    = len;
175
	priv->dreg   = nft_parse_register(tb[NFTA_EXTHDR_DREG]);
176
	priv->flags  = flags;
177
	priv->op     = op;
P
Patrick McHardy 已提交
178

179 180
	return nft_validate_register_store(ctx, priv->dreg, NULL,
					   NFT_DATA_VALUE, priv->len);
P
Patrick McHardy 已提交
181 182
}

183
static int nft_exthdr_dump_common(struct sk_buff *skb, const struct nft_exthdr *priv)
P
Patrick McHardy 已提交
184 185 186 187 188 189 190
{
	if (nla_put_u8(skb, NFTA_EXTHDR_TYPE, priv->type))
		goto nla_put_failure;
	if (nla_put_be32(skb, NFTA_EXTHDR_OFFSET, htonl(priv->offset)))
		goto nla_put_failure;
	if (nla_put_be32(skb, NFTA_EXTHDR_LEN, htonl(priv->len)))
		goto nla_put_failure;
191 192
	if (nla_put_be32(skb, NFTA_EXTHDR_FLAGS, htonl(priv->flags)))
		goto nla_put_failure;
193 194
	if (nla_put_be32(skb, NFTA_EXTHDR_OP, htonl(priv->op)))
		goto nla_put_failure;
P
Patrick McHardy 已提交
195 196 197 198 199 200
	return 0;

nla_put_failure:
	return -1;
}

201 202 203 204 205 206 207 208 209 210
static int nft_exthdr_dump(struct sk_buff *skb, const struct nft_expr *expr)
{
	const struct nft_exthdr *priv = nft_expr_priv(expr);

	if (nft_dump_register(skb, NFTA_EXTHDR_DREG, priv->dreg))
		return -1;

	return nft_exthdr_dump_common(skb, priv);
}

211
static struct nft_expr_type nft_exthdr_type;
212 213 214 215 216 217 218 219 220
static const struct nft_expr_ops nft_exthdr_ipv6_ops = {
	.type		= &nft_exthdr_type,
	.size		= NFT_EXPR_SIZE(sizeof(struct nft_exthdr)),
	.eval		= nft_exthdr_ipv6_eval,
	.init		= nft_exthdr_init,
	.dump		= nft_exthdr_dump,
};

static const struct nft_expr_ops nft_exthdr_tcp_ops = {
221
	.type		= &nft_exthdr_type,
P
Patrick McHardy 已提交
222
	.size		= NFT_EXPR_SIZE(sizeof(struct nft_exthdr)),
223
	.eval		= nft_exthdr_tcp_eval,
P
Patrick McHardy 已提交
224 225
	.init		= nft_exthdr_init,
	.dump		= nft_exthdr_dump,
226 227
};

228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247
static const struct nft_expr_ops *
nft_exthdr_select_ops(const struct nft_ctx *ctx,
		      const struct nlattr * const tb[])
{
	u32 op;

	if (!tb[NFTA_EXTHDR_OP])
		return &nft_exthdr_ipv6_ops;

	op = ntohl(nla_get_u32(tb[NFTA_EXTHDR_OP]));
	switch (op) {
	case NFT_EXTHDR_OP_TCPOPT:
		return &nft_exthdr_tcp_ops;
	case NFT_EXTHDR_OP_IPV6:
		return &nft_exthdr_ipv6_ops;
	}

	return ERR_PTR(-EOPNOTSUPP);
}

248 249
static struct nft_expr_type nft_exthdr_type __read_mostly = {
	.name		= "exthdr",
250
	.select_ops	= nft_exthdr_select_ops,
P
Patrick McHardy 已提交
251 252
	.policy		= nft_exthdr_policy,
	.maxattr	= NFTA_EXTHDR_MAX,
253
	.owner		= THIS_MODULE,
P
Patrick McHardy 已提交
254 255 256 257
};

static int __init nft_exthdr_module_init(void)
{
258
	return nft_register_expr(&nft_exthdr_type);
P
Patrick McHardy 已提交
259 260 261 262
}

static void __exit nft_exthdr_module_exit(void)
{
263
	nft_unregister_expr(&nft_exthdr_type);
P
Patrick McHardy 已提交
264 265 266 267 268 269 270 271
}

module_init(nft_exthdr_module_init);
module_exit(nft_exthdr_module_exit);

MODULE_LICENSE("GPL");
MODULE_AUTHOR("Patrick McHardy <kaber@trash.net>");
MODULE_ALIAS_NFT_EXPR("exthdr");