mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
38 lines
1.2 KiB
Diff
38 lines
1.2 KiB
Diff
|
From f52d6739f6a67cf1c918a4557e88b519b9135930 Mon Sep 17 00:00:00 2001
|
||
|
From: Eric Dumazet <edumazet@google.com>
|
||
|
Date: Tue, 09 May 2017 06:29:19 -0700
|
||
|
Subject: [PATCH] dccp/tcp: do not inherit mc_list from parent
|
||
|
|
||
|
syzkaller found a way to trigger double frees from ip_mc_drop_socket()
|
||
|
|
||
|
It turns out that leave a copy of parent mc_list at accept() time,
|
||
|
which is very bad.
|
||
|
|
||
|
Very similar to commit 8b485ce69876 ("tcp: do not inherit
|
||
|
fastopen_req from parent")
|
||
|
|
||
|
Initial report from Pray3r, completed by Andrey one.
|
||
|
Thanks a lot to them !
|
||
|
|
||
|
Change-Id: I2eac7b825a5b597af14a0573b76b685131c46726
|
||
|
Signed-off-by: Eric Dumazet <edumazet@google.com>
|
||
|
Reported-by: Pray3r <pray3r.z@gmail.com>
|
||
|
Reported-by: Andrey Konovalov <andreyknvl@google.com>
|
||
|
Tested-by: Andrey Konovalov <andreyknvl@google.com>
|
||
|
Signed-off-by: David S. Miller <davem@davemloft.net>
|
||
|
---
|
||
|
|
||
|
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c
|
||
|
index fb10d58..325edfe 100644
|
||
|
--- a/net/ipv4/inet_connection_sock.c
|
||
|
+++ b/net/ipv4/inet_connection_sock.c
|
||
|
@@ -618,6 +618,8 @@
|
||
|
inet_sk(newsk)->inet_sport = inet_rsk(req)->loc_port;
|
||
|
newsk->sk_write_space = sk_stream_write_space;
|
||
|
|
||
|
+ inet_sk(newsk)->mc_list = NULL;
|
||
|
+
|
||
|
newsk->sk_mark = inet_rsk(req)->ir_mark;
|
||
|
|
||
|
newicsk->icsk_retransmits = 0;
|