diff options
author | Herbert Xu <herbert@gondor.apana.org.au> | 2007-10-09 16:33:35 -0400 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2007-10-10 19:55:03 -0400 |
commit | b7c6538cd84f8072fad43bfce530f5bf695edbba (patch) | |
tree | e0ba79ffe7b79355985a45de9961b17a0462764f /net/ipv4/ah4.c | |
parent | 050f009e16f908932070313c1745d09dc69fd62b (diff) |
[IPSEC]: Move state lock into x->type->output
This patch releases the lock on the state before calling x->type->output.
It also adds the lock to the spots where they're currently needed.
Most of those places (all except mip6) are expected to disappear with
async crypto.
Signed-off-by: Herbert Xu <herbert@gondor.apana.org.au>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4/ah4.c')
-rw-r--r-- | net/ipv4/ah4.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/net/ipv4/ah4.c b/net/ipv4/ah4.c index 58af298e1941..3513149c3843 100644 --- a/net/ipv4/ah4.c +++ b/net/ipv4/ah4.c | |||
@@ -5,6 +5,7 @@ | |||
5 | #include <net/ah.h> | 5 | #include <net/ah.h> |
6 | #include <linux/crypto.h> | 6 | #include <linux/crypto.h> |
7 | #include <linux/pfkeyv2.h> | 7 | #include <linux/pfkeyv2.h> |
8 | #include <linux/spinlock.h> | ||
8 | #include <net/icmp.h> | 9 | #include <net/icmp.h> |
9 | #include <net/protocol.h> | 10 | #include <net/protocol.h> |
10 | #include <asm/scatterlist.h> | 11 | #include <asm/scatterlist.h> |
@@ -97,10 +98,14 @@ static int ah_output(struct xfrm_state *x, struct sk_buff *skb) | |||
97 | ah->reserved = 0; | 98 | ah->reserved = 0; |
98 | ah->spi = x->id.spi; | 99 | ah->spi = x->id.spi; |
99 | ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq); | 100 | ah->seq_no = htonl(XFRM_SKB_CB(skb)->seq); |
101 | |||
102 | spin_lock_bh(&x->lock); | ||
100 | err = ah_mac_digest(ahp, skb, ah->auth_data); | 103 | err = ah_mac_digest(ahp, skb, ah->auth_data); |
104 | memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len); | ||
105 | spin_unlock_bh(&x->lock); | ||
106 | |||
101 | if (err) | 107 | if (err) |
102 | goto error; | 108 | goto error; |
103 | memcpy(ah->auth_data, ahp->work_icv, ahp->icv_trunc_len); | ||
104 | 109 | ||
105 | top_iph->tos = iph->tos; | 110 | top_iph->tos = iph->tos; |
106 | top_iph->ttl = iph->ttl; | 111 | top_iph->ttl = iph->ttl; |