xfrm6_input.c 2.9 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * xfrm6_input.c: based on net/ipv4/xfrm4_input.c
 *
 * Authors:
 *	Mitsuru KANDA @USAGI
 * 	Kazunori MIYAZAWA @USAGI
 * 	Kunihiro Ishiguro <kunihiro@ipinfusion.com>
 *	YOSHIFUJI Hideaki @USAGI
 *		IPv6 support
 */

#include <linux/module.h>
#include <linux/string.h>
14 15
#include <linux/netfilter.h>
#include <linux/netfilter_ipv6.h>
L
Linus Torvalds 已提交
16 17 18
#include <net/ipv6.h>
#include <net/xfrm.h>

19 20 21 22 23
int xfrm6_extract_input(struct xfrm_state *x, struct sk_buff *skb)
{
	return xfrm6_extract_header(skb);
}

24
int xfrm6_rcv_spi(struct sk_buff *skb, int nexthdr, __be32 spi)
L
Linus Torvalds 已提交
25
{
26
	XFRM_SPI_SKB_CB(skb)->family = AF_INET6;
27 28 29 30
	XFRM_SPI_SKB_CB(skb)->daddroff = offsetof(struct ipv6hdr, daddr);
	return xfrm_input(skb, nexthdr, spi, 0);
}
EXPORT_SYMBOL(xfrm6_rcv_spi);
31

32 33
int xfrm6_transport_finish(struct sk_buff *skb, int async)
{
34 35 36
	skb_network_header(skb)[IP6CB(skb)->nhoff] =
		XFRM_MODE_SKB_CB(skb)->protocol;

37 38 39 40 41
#ifndef CONFIG_NETFILTER
	if (!async)
		return 1;
#endif

42 43
	ipv6_hdr(skb)->payload_len = htons(skb->len);
	__skb_push(skb, skb->data - skb_network_header(skb));
44

45
	NF_HOOK(PF_INET6, NF_INET_PRE_ROUTING, skb, skb->dev, NULL,
46 47
		ip6_rcv_finish);
	return -1;
L
Linus Torvalds 已提交
48 49
}

50
int xfrm6_rcv(struct sk_buff *skb)
L
Linus Torvalds 已提交
51
{
52 53
	return xfrm6_rcv_spi(skb, skb_network_header(skb)[IP6CB(skb)->nhoff],
			     0);
L
Linus Torvalds 已提交
54
}
55

56 57
EXPORT_SYMBOL(xfrm6_rcv);

58 59 60
int xfrm6_input_addr(struct sk_buff *skb, xfrm_address_t *daddr,
		     xfrm_address_t *saddr, u8 proto)
{
61
	struct xfrm_state *x = NULL;
62 63
	int i = 0;

64 65 66 67 68 69
	/* Allocate new secpath or COW existing one. */
	if (!skb->sp || atomic_read(&skb->sp->refcnt) != 1) {
		struct sec_path *sp;

		sp = secpath_dup(skb->sp);
		if (!sp) {
70
			XFRM_INC_STATS(LINUX_MIB_XFRMINERROR);
71 72 73 74 75 76 77 78
			goto drop;
		}
		if (skb->sp)
			secpath_put(skb->sp);
		skb->sp = sp;
	}

	if (1 + skb->sp->len == XFRM_MAX_DEPTH) {
79
		XFRM_INC_STATS(LINUX_MIB_XFRMINBUFFERERROR);
80 81 82
		goto drop;
	}

83 84
	for (i = 0; i < 3; i++) {
		xfrm_address_t *dst, *src;
85

86 87 88 89 90 91 92 93
		switch (i) {
		case 0:
			dst = daddr;
			src = saddr;
			break;
		case 1:
			/* lookup state with wild-card source address */
			dst = daddr;
94
			src = (xfrm_address_t *)&in6addr_any;
95 96
			break;
		default:
97
			/* lookup state with wild-card addresses */
98 99
			dst = (xfrm_address_t *)&in6addr_any;
			src = (xfrm_address_t *)&in6addr_any;
100
			break;
101
		}
102 103 104 105 106 107 108

		x = xfrm_state_lookup_byaddr(dst, src, proto, AF_INET6);
		if (!x)
			continue;

		spin_lock(&x->lock);

109 110 111
		if ((!i || (x->props.flags & XFRM_STATE_WILDRECV)) &&
		    likely(x->km.state == XFRM_STATE_VALID) &&
		    !xfrm_state_check_expire(x)) {
112
			spin_unlock(&x->lock);
113 114 115 116 117
			if (x->type->input(x, skb) > 0) {
				/* found a valid state */
				break;
			}
		} else
118 119
			spin_unlock(&x->lock);

120 121
		xfrm_state_put(x);
		x = NULL;
122 123
	}

124
	if (!x) {
125
		XFRM_INC_STATS(LINUX_MIB_XFRMINNOSTATES);
P
Paul Moore 已提交
126
		xfrm_audit_state_notfound_simple(skb, AF_INET6);
127 128 129
		goto drop;
	}

130 131 132
	skb->sp->xvec[skb->sp->len++] = x;

	spin_lock(&x->lock);
133

134 135 136 137
	x->curlft.bytes += skb->len;
	x->curlft.packets++;

	spin_unlock(&x->lock);
138 139

	return 1;
140

141 142 143
drop:
	return -1;
}
144 145

EXPORT_SYMBOL(xfrm6_input_addr);