* [PATCH net-next] soreuseport: fix merge conflict in tcp bind
@ 2016-02-22 15:45 Craig Gallek
2016-02-24 18:38 ` David Miller
0 siblings, 1 reply; 2+ messages in thread
From: Craig Gallek @ 2016-02-22 15:45 UTC (permalink / raw)
To: netdev, David Miller; +Cc: eric.dumazet
From: Craig Gallek <kraig@google.com>
One of the validation checks for the new array-based TCP SO_REUSEPORT
validation was unintentionally dropped in ea8add2b1903. This adds it back.
Lack of this check allows the user to allocate multiple sock_reuseport
structures (leaking all but the first).
Fixes: ea8add2b1903 ("tcp/dccp: better use of ephemeral ports in bind()")
Signed-off-by: Craig Gallek <kraig@google.com>
---
net/ipv4/inet_connection_sock.c | 1 +
1 file changed, 1 insertion(+)
diff --git a/net/ipv4/inet_connection_sock.c b/net/ipv4/inet_connection_sock.c
index 3d28c6d5c3c3..fb0349acbd45 100644
--- a/net/ipv4/inet_connection_sock.c
+++ b/net/ipv4/inet_connection_sock.c
@@ -202,6 +202,7 @@ tb_found:
if (((tb->fastreuse > 0 && reuse) ||
(tb->fastreuseport > 0 &&
+ !rcu_access_pointer(sk->sk_reuseport_cb) &&
sk->sk_reuseport && uid_eq(tb->fastuid, uid))) &&
smallest_size == -1)
goto success;
--
2.7.0.rc3.207.g0ac5344
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [PATCH net-next] soreuseport: fix merge conflict in tcp bind
2016-02-22 15:45 [PATCH net-next] soreuseport: fix merge conflict in tcp bind Craig Gallek
@ 2016-02-24 18:38 ` David Miller
0 siblings, 0 replies; 2+ messages in thread
From: David Miller @ 2016-02-24 18:38 UTC (permalink / raw)
To: kraigatgoog; +Cc: netdev, eric.dumazet
From: Craig Gallek <kraigatgoog@gmail.com>
Date: Mon, 22 Feb 2016 10:45:29 -0500
> From: Craig Gallek <kraig@google.com>
>
> One of the validation checks for the new array-based TCP SO_REUSEPORT
> validation was unintentionally dropped in ea8add2b1903. This adds it back.
>
> Lack of this check allows the user to allocate multiple sock_reuseport
> structures (leaking all but the first).
>
> Fixes: ea8add2b1903 ("tcp/dccp: better use of ephemeral ports in bind()")
> Signed-off-by: Craig Gallek <kraig@google.com>
Applied, thanks Craig.
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2016-02-24 18:39 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-22 15:45 [PATCH net-next] soreuseport: fix merge conflict in tcp bind Craig Gallek
2016-02-24 18:38 ` David Miller
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).