xfrm_output.c 3.7 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 28 29 30 31 32 33 34 35
		- skb_headroom(skb);

	if (nhead > 0)
		return pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);

	/* Check tail too... */
	return 0;
}

36
static int xfrm_output_one(struct sk_buff *skb, int err)
37 38 39 40
{
	struct dst_entry *dst = skb->dst;
	struct xfrm_state *x = dst->xfrm;

41 42
	if (err <= 0)
		goto resume;
43 44

	do {
45
		err = xfrm_state_check_space(x, skb);
46 47
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
48
			goto error_nolock;
49
		}
50

51
		err = x->outer_mode->output(x, skb);
52 53
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEMODEERROR);
54
			goto error_nolock;
55
		}
56

57
		spin_lock_bh(&x->lock);
58
		err = xfrm_state_check_expire(x);
59 60
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEEXPIRED);
61
			goto error;
62
		}
63

64 65
		if (x->type->flags & XFRM_TYPE_REPLAY_PROT) {
			XFRM_SKB_CB(skb)->seq = ++x->replay.oseq;
66 67
			if (unlikely(x->replay.oseq == 0)) {
				x->replay.oseq--;
P
Paul Moore 已提交
68
				xfrm_audit_state_replay_overflow(x, skb);
69 70
				goto error;
			}
H
Herbert Xu 已提交
71 72
			if (xfrm_aevent_is_on())
				xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
73 74
		}

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

		spin_unlock_bh(&x->lock);

80
		err = x->type->output(x, skb);
81 82

resume:
83 84
		if (err) {
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTSTATEPROTOERROR);
85
			goto error_nolock;
86
		}
87

88
		if (!(skb->dst = dst_pop(dst))) {
89
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
90 91 92 93 94
			err = -EHOSTUNREACH;
			goto error_nolock;
		}
		dst = skb->dst;
		x = dst->xfrm;
95
	} while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
96 97 98

	err = 0;

99
out_exit:
100 101 102
	return err;
error:
	spin_unlock_bh(&x->lock);
103 104 105 106 107
error_nolock:
	kfree_skb(skb);
	goto out_exit;
}

108
int xfrm_output_resume(struct sk_buff *skb, int err)
109
{
110
	while (likely((err = xfrm_output_one(skb, err)) == 0)) {
111 112 113 114 115 116
		struct xfrm_state *x;

		nf_reset(skb);

		err = skb->dst->ops->local_out(skb);
		if (unlikely(err != 1))
117
			goto out;
118 119 120 121 122 123

		x = skb->dst->xfrm;
		if (!x)
			return dst_output(skb);

		err = nf_hook(x->inner_mode->afinfo->family,
124
			      NF_INET_POST_ROUTING, skb,
125 126
			      NULL, skb->dst->dev, xfrm_output2);
		if (unlikely(err != 1))
127
			goto out;
128 129
	}

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

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

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

143 144 145
static int xfrm_output_gso(struct sk_buff *skb)
{
	struct sk_buff *segs;
146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171

	segs = skb_gso_segment(skb, 0);
	kfree_skb(skb);
	if (unlikely(IS_ERR(segs)))
		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;
172
}
173 174 175 176 177 178 179 180 181 182 183

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) {
184
			XFRM_INC_STATS(LINUX_MIB_XFRMOUTERROR);
185 186 187 188 189 190 191
			kfree_skb(skb);
			return err;
		}
	}

	return xfrm_output2(skb);
}
192
EXPORT_SYMBOL_GPL(xfrm_output);