Skip to content

Commit

Permalink
ipv4: Missing sk_nulls_node_init() in ping_unhash().
Browse files Browse the repository at this point in the history
If we don't do that, then the poison value is left in the ->pprev
backlink.

This can cause crashes if we do a disconnect, followed by a connect().

Tested-by: Linus Torvalds <torvalds@linux-foundation.org>
Reported-by: Wen Xu <hotdog3645@gmail.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
(cherry picked from commit a134f08)
  • Loading branch information
davem330 authored and PJBrs committed Apr 6, 2016
1 parent b12565a commit 099a1db
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions net/ipv4/ping.c
Expand Up @@ -153,6 +153,7 @@ void ping_unhash(struct sock *sk)
if (sk_hashed(sk)) {
write_lock_bh(&ping_table.lock);
hlist_nulls_del(&sk->sk_nulls_node);
sk_nulls_node_init(&sk->sk_nulls_node);
sock_put(sk);
isk->inet_num = isk->inet_sport = 0;
sock_prot_inuse_add(sock_net(sk), sk->sk_prot, -1);
Expand Down

0 comments on commit 099a1db

Please sign in to comment.