xfrm_output.c 4.3 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14
/*
 * xfrm_output.c - Common IPsec encapsulation code.
 *
 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
 *
 * This program is free software; you can redistribute it and/or
 * modify it under the terms of the GNU General Public License
 * as published by the Free Software Foundation; either version
 * 2 of the License, or (at your option) any later version.
 */

#include <linux/errno.h>
#include <linux/module.h>
#include <linux/netdevice.h>
15
#include <linux/netfilter.h>
16
#include <linux/skbuff.h>
17
#include <linux/slab.h>
18 19 20 21
#include <linux/spinlock.h>
#include <net/dst.h>
#include <net/xfrm.h>

22 23
static int xfrm_output2(struct sk_buff *skb);

24 25
static int xfrm_state_check_space(struct xfrm_state *x, struct sk_buff *skb)
{
E
Eric Dumazet 已提交
26
	struct dst_entry *dst = skb_dst(skb);
27
	int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev)
28
		- skb_headroom(skb);
29
	int ntail = dst->dev->needed_tailroom - skb_tailroom(skb);
30

31 32 33 34 35 36 37 38
	if (nhead <= 0) {
		if (ntail <= 0)
			return 0;
		nhead = 0;
	} else if (ntail < 0)
		ntail = 0;

	return pskb_expand_head(skb, nhead, ntail, GFP_ATOMIC);
39 40
}

41
static int xfrm_output_one(struct sk_buff *skb, int err)
42
{
E
Eric Dumazet 已提交
43
	struct dst_entry *dst = skb_dst(skb);
44
	struct xfrm_state *x = dst->xfrm;
45
	struct net *net = xs_net(x);
46

47 48
	if (err <= 0)
		goto resume;
49 50

	do {
51
		err = xfrm_state_check_space(x, skb);
52
		if (err) {
A
Alexey Dobriyan 已提交
53
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
54
			goto error_nolock;
55
		}
56

57
		err = x->outer_mode->output(x, skb);
58
		if (err) {
A
Alexey Dobriyan 已提交
59
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEMODEERROR);
60
			goto error_nolock;
61
		}
62

63
		spin_lock_bh(&x->lock);
64
		err = xfrm_state_check_expire(x);
65
		if (err) {
A
Alexey Dobriyan 已提交
66
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEEXPIRED);
67
			goto error;
68
		}
69

70 71 72 73
		err = x->repl->overflow(x, skb);
		if (err) {
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATESEQERROR);
			goto error;
74 75
		}

76 77 78 79 80
		x->curlft.bytes += skb->len;
		x->curlft.packets++;

		spin_unlock_bh(&x->lock);

81 82
		skb_dst_force(skb);

83
		err = x->type->output(x, skb);
84 85
		if (err == -EINPROGRESS)
			goto out_exit;
86 87

resume:
88
		if (err) {
A
Alexey Dobriyan 已提交
89
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTSTATEPROTOERROR);
90
			goto error_nolock;
91
		}
92

93
		dst = skb_dst_pop(skb);
E
Eric Dumazet 已提交
94
		if (!dst) {
A
Alexey Dobriyan 已提交
95
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
96 97 98
			err = -EHOSTUNREACH;
			goto error_nolock;
		}
99
		skb_dst_set(skb, dst);
100
		x = dst->xfrm;
101
	} while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
102 103 104

	err = 0;

105
out_exit:
106 107 108
	return err;
error:
	spin_unlock_bh(&x->lock);
109 110 111 112 113
error_nolock:
	kfree_skb(skb);
	goto out_exit;
}

114
int xfrm_output_resume(struct sk_buff *skb, int err)
115
{
116
	while (likely((err = xfrm_output_one(skb, err)) == 0)) {
117 118
		nf_reset(skb);

E
Eric Dumazet 已提交
119
		err = skb_dst(skb)->ops->local_out(skb);
120
		if (unlikely(err != 1))
121
			goto out;
122

E
Eric Dumazet 已提交
123
		if (!skb_dst(skb)->xfrm)
124 125
			return dst_output(skb);

E
Eric Dumazet 已提交
126
		err = nf_hook(skb_dst(skb)->ops->family,
127
			      NF_INET_POST_ROUTING, skb,
E
Eric Dumazet 已提交
128
			      NULL, skb_dst(skb)->dev, xfrm_output2);
129
		if (unlikely(err != 1))
130
			goto out;
131 132
	}

133 134 135 136
	if (err == -EINPROGRESS)
		err = 0;

out:
137 138
	return err;
}
139
EXPORT_SYMBOL_GPL(xfrm_output_resume);
140

141
static int xfrm_output2(struct sk_buff *skb)
142
{
143 144
	return xfrm_output_resume(skb, 1);
}
145

146 147 148
static int xfrm_output_gso(struct sk_buff *skb)
{
	struct sk_buff *segs;
149 150 151

	segs = skb_gso_segment(skb, 0);
	kfree_skb(skb);
152
	if (IS_ERR(segs))
153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
		return PTR_ERR(segs);

	do {
		struct sk_buff *nskb = segs->next;
		int err;

		segs->next = NULL;
		err = xfrm_output2(segs);

		if (unlikely(err)) {
			while ((segs = nskb)) {
				nskb = segs->next;
				segs->next = NULL;
				kfree_skb(segs);
			}
			return err;
		}

		segs = nskb;
	} while (segs);

	return 0;
175
}
176 177 178

int xfrm_output(struct sk_buff *skb)
{
E
Eric Dumazet 已提交
179
	struct net *net = dev_net(skb_dst(skb)->dev);
180 181 182 183 184 185 186 187
	int err;

	if (skb_is_gso(skb))
		return xfrm_output_gso(skb);

	if (skb->ip_summed == CHECKSUM_PARTIAL) {
		err = skb_checksum_help(skb);
		if (err) {
A
Alexey Dobriyan 已提交
188
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
189 190 191 192 193 194 195
			kfree_skb(skb);
			return err;
		}
	}

	return xfrm_output2(skb);
}
196 197 198 199 200 201

int xfrm_inner_extract_output(struct xfrm_state *x, struct sk_buff *skb)
{
	struct xfrm_mode *inner_mode;
	if (x->sel.family == AF_UNSPEC)
		inner_mode = xfrm_ip2inner_mode(x,
E
Eric Dumazet 已提交
202
				xfrm_af2proto(skb_dst(skb)->ops->family));
203 204 205 206 207 208 209 210
	else
		inner_mode = x->inner_mode;

	if (inner_mode == NULL)
		return -EAFNOSUPPORT;
	return inner_mode->afinfo->extract_output(x, skb);
}

211
EXPORT_SYMBOL_GPL(xfrm_output);
212
EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);