diff options
author | Eric Dumazet <eric.dumazet@gmail.com> | 2010-05-29 03:20:48 -0400 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2010-05-29 03:20:48 -0400 |
commit | 2903037400a26e7c0cc93ab75a7d62abfacdf485 (patch) | |
tree | c29d8b3199d8fa52856e5edcd374411f962d7c11 /net/ipv4 | |
parent | 7dfde179c38056b91d51e60f3d50902387f27c84 (diff) |
net: fix sk_forward_alloc corruptions
As David found out, sock_queue_err_skb() should be called with socket
lock hold, or we risk sk_forward_alloc corruption, since we use non
atomic operations to update this field.
This patch adds bh_lock_sock()/bh_unlock_sock() pair to three spots.
(BH already disabled)
1) skb_tstamp_tx()
2) Before calling ip_icmp_error(), in __udp4_lib_err()
3) Before calling ipv6_icmp_error(), in __udp6_lib_err()
Reported-by: Anton Blanchard <anton@samba.org>
Signed-off-by: Eric Dumazet <eric.dumazet@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'net/ipv4')
-rw-r--r-- | net/ipv4/udp.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/net/ipv4/udp.c b/net/ipv4/udp.c index b9d0d409516f..acdc9be833cc 100644 --- a/net/ipv4/udp.c +++ b/net/ipv4/udp.c | |||
@@ -634,7 +634,9 @@ void __udp4_lib_err(struct sk_buff *skb, u32 info, struct udp_table *udptable) | |||
634 | if (!harderr || sk->sk_state != TCP_ESTABLISHED) | 634 | if (!harderr || sk->sk_state != TCP_ESTABLISHED) |
635 | goto out; | 635 | goto out; |
636 | } else { | 636 | } else { |
637 | bh_lock_sock(sk); | ||
637 | ip_icmp_error(sk, skb, err, uh->dest, info, (u8 *)(uh+1)); | 638 | ip_icmp_error(sk, skb, err, uh->dest, info, (u8 *)(uh+1)); |
639 | bh_unlock_sock(sk); | ||
638 | } | 640 | } |
639 | sk->sk_err = err; | 641 | sk->sk_err = err; |
640 | sk->sk_error_report(sk); | 642 | sk->sk_error_report(sk); |