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>
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
)
26 return pskb_expand_head(skb
, nhead
, 0, GFP_ATOMIC
);
28 /* Check tail too... */
32 static int xfrm_state_check(struct xfrm_state
*x
, struct sk_buff
*skb
)
34 int err
= xfrm_state_check_expire(x
);
37 err
= xfrm_state_check_space(x
, skb
);
42 int xfrm_output(struct sk_buff
*skb
)
44 struct dst_entry
*dst
= skb
->dst
;
45 struct xfrm_state
*x
= dst
->xfrm
;
48 if (skb
->ip_summed
== CHECKSUM_PARTIAL
) {
49 err
= skb_checksum_help(skb
);
55 spin_lock_bh(&x
->lock
);
56 err
= xfrm_state_check(x
, skb
);
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
);
70 x
->curlft
.bytes
+= skb
->len
;
73 spin_unlock_bh(&x
->lock
);
75 err
= x
->type
->output(x
, skb
);
79 if (!(skb
->dst
= dst_pop(dst
))) {
85 } while (x
&& !(x
->outer_mode
->flags
& XFRM_MODE_FLAG_TUNNEL
));
92 spin_unlock_bh(&x
->lock
);
95 EXPORT_SYMBOL_GPL(xfrm_output
);