xfrm_output.c 4.2 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
		err = x->type->output(x, skb);
82 83
		if (err == -EINPROGRESS)
			goto out_exit;
84 85

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

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

	err = 0;

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

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

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

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

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

131 132 133 134
	if (err == -EINPROGRESS)
		err = 0;

out:
135 136
	return err;
}
137
EXPORT_SYMBOL_GPL(xfrm_output_resume);
138

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

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

	segs = skb_gso_segment(skb, 0);
	kfree_skb(skb);
150
	if (IS_ERR(segs))
151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172
		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;
173
}
174 175 176

int xfrm_output(struct sk_buff *skb)
{
E
Eric Dumazet 已提交
177
	struct net *net = dev_net(skb_dst(skb)->dev);
178 179 180 181 182 183 184 185
	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 已提交
186
			XFRM_INC_STATS(net, LINUX_MIB_XFRMOUTERROR);
187 188 189 190 191 192 193
			kfree_skb(skb);
			return err;
		}
	}

	return xfrm_output2(skb);
}
194 195 196 197 198 199

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 已提交
200
				xfrm_af2proto(skb_dst(skb)->ops->family));
201 202 203 204 205 206 207 208
	else
		inner_mode = x->inner_mode;

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

209
EXPORT_SYMBOL_GPL(xfrm_output);
210
EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);