[POWERPC] iSeries: don't printk with HV spinlock held
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / net / xfrm / xfrm_output.c
blobf4bfd6c4565119f9f3be6cb80547922b930b4f73
1 /*
2 * xfrm_output.c - Common IPsec encapsulation code.
4 * Copyright (c) 2007 Herbert Xu <herbert@gondor.apana.org.au>
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License
8 * as published by the Free Software Foundation; either version
9 * 2 of the License, or (at your option) any later version.
12 #include <linux/errno.h>
13 #include <linux/module.h>
14 #include <linux/netdevice.h>
15 #include <linux/skbuff.h>
16 #include <linux/spinlock.h>
17 #include <net/dst.h>
18 #include <net/xfrm.h>
20 static int xfrm_state_check_space(struct xfrm_state *x, struct sk_buff *skb)
22 int nhead = x->props.header_len + LL_RESERVED_SPACE(skb->dst->dev)
23 - skb_headroom(skb);
25 if (nhead > 0)
26 return pskb_expand_head(skb, nhead, 0, GFP_ATOMIC);
28 /* Check tail too... */
29 return 0;
32 static int xfrm_state_check(struct xfrm_state *x, struct sk_buff *skb)
34 int err = xfrm_state_check_expire(x);
35 if (err < 0)
36 goto err;
37 err = xfrm_state_check_space(x, skb);
38 err:
39 return err;
42 int xfrm_output(struct sk_buff *skb)
44 struct dst_entry *dst = skb->dst;
45 struct xfrm_state *x = dst->xfrm;
46 int err;
48 if (skb->ip_summed == CHECKSUM_PARTIAL) {
49 err = skb_checksum_help(skb);
50 if (err)
51 goto error_nolock;
54 do {
55 spin_lock_bh(&x->lock);
56 err = xfrm_state_check(x, skb);
57 if (err)
58 goto error;
60 if (x->type->flags & XFRM_TYPE_REPLAY_PROT) {
61 XFRM_SKB_CB(skb)->seq = ++x->replay.oseq;
62 if (xfrm_aevent_is_on())
63 xfrm_replay_notify(x, XFRM_REPLAY_UPDATE);
66 err = x->outer_mode->output(x, skb);
67 if (err)
68 goto error;
70 x->curlft.bytes += skb->len;
71 x->curlft.packets++;
73 spin_unlock_bh(&x->lock);
75 err = x->type->output(x, skb);
76 if (err)
77 goto error_nolock;
79 if (!(skb->dst = dst_pop(dst))) {
80 err = -EHOSTUNREACH;
81 goto error_nolock;
83 dst = skb->dst;
84 x = dst->xfrm;
85 } while (x && !(x->outer_mode->flags & XFRM_MODE_FLAG_TUNNEL));
87 err = 0;
89 error_nolock:
90 return err;
91 error:
92 spin_unlock_bh(&x->lock);
93 goto error_nolock;
95 EXPORT_SYMBOL_GPL(xfrm_output);