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 17 18 19 20
#include <linux/skbuff.h>
#include <linux/spinlock.h>
#include <net/dst.h>
#include <net/xfrm.h>

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

23 24
static int xfrm_state_check_space(struct xfrm_state *x, struct sk_buff *skb)
{
25 26
	struct dst_entry *dst = skb->dst;
	int nhead = dst->header_len + LL_RESERVED_SPACE(dst->dev)
27
		- skb_headroom(skb);
28
	int ntail = dst->dev->needed_tailroom - skb_tailroom(skb);
29

30 31 32 33 34 35 36 37
	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);
38 39
}

40
static int xfrm_output_one(struct sk_buff *skb, int err)
41 42 43 44
{
	struct dst_entry *dst = skb->dst;
	struct xfrm_state *x = dst->xfrm;

45 46
	if (err <= 0)
		goto resume;
47 48

	do {
49
		err = xfrm_state_check_space(x, skb);
50 51
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
52
			goto error_nolock;
53
		}
54

55
		err = x->outer_mode->output(x, skb);
56 57
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEMODEERROR);
58
			goto error_nolock;
59
		}
60

61
		spin_lock_bh(&x->lock);
62
		err = xfrm_state_check_expire(x);
63 64
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEEXPIRED);
65
			goto error;
66
		}
67

68
		if (x->type->flags & XFRM_TYPE_REPLAY_PROT) {
69
			XFRM_SKB_CB(skb)->seq.output = ++x->replay.oseq;
70
			if (unlikely(x->replay.oseq == 0)) {
M
Masahide NAKAMURA 已提交
71
				XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATESEQERROR);
72
				x->replay.oseq--;
P
Paul Moore 已提交
73
				xfrm_audit_state_replay_overflow(x, skb);
74
				err = -EOVERFLOW;
75 76
				goto error;
			}
H
Herbert Xu 已提交
77 78
			if (xfrm_aevent_is_on())
				xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
79 80
		}

81 82 83 84 85
		x->curlft.bytes += skb->len;
		x->curlft.packets++;

		spin_unlock_bh(&x->lock);

86
		err = x->type->output(x, skb);
87 88
		if (err == -EINPROGRESS)
			goto out_exit;
89 90

resume:
91 92
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEPROTOERROR);
93
			goto error_nolock;
94
		}
95

96
		if (!(skb->dst = dst_pop(dst))) {
97
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
98 99 100 101 102
			err = -EHOSTUNREACH;
			goto error_nolock;
		}
		dst = skb->dst;
		x = dst->xfrm;
103
	} while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
104 105 106

	err = 0;

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

116
int xfrm_output_resume(struct sk_buff *skb, int err)
117
{
118
	while (likely((err = xfrm_output_one(skb, err)) == 0)) {
119 120 121 122
		nf_reset(skb);

		err = skb->dst->ops->local_out(skb);
		if (unlikely(err != 1))
123
			goto out;
124

125
		if (!skb->dst->xfrm)
126 127
			return dst_output(skb);

128
		err = nf_hook(skb->dst->ops->family,
129
			      NF_INET_POST_ROUTING, skb,
130 131
			      NULL, skb->dst->dev, xfrm_output2);
		if (unlikely(err != 1))
132
			goto out;
133 134
	}

135 136 137 138
	if (err == -EINPROGRESS)
		err = 0;

out:
139 140
	return err;
}
141
EXPORT_SYMBOL_GPL(xfrm_output_resume);
142

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

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

	segs = skb_gso_segment(skb, 0);
	kfree_skb(skb);
154
	if (IS_ERR(segs))
155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176
		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;
177
}
178 179 180 181 182 183 184 185 186 187 188

int xfrm_output(struct sk_buff *skb)
{
	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) {
189
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
190 191 192 193 194 195 196
			kfree_skb(skb);
			return err;
		}
	}

	return xfrm_output2(skb);
}
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211

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,
				xfrm_af2proto(skb->dst->ops->family));
	else
		inner_mode = x->inner_mode;

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

212
EXPORT_SYMBOL_GPL(xfrm_output);
213
EXPORT_SYMBOL_GPL(xfrm_inner_extract_output);