]> git.ipfire.org Git - thirdparty/openvpn.git/commit
Fixed port-share bug with DoS potential
authorJames Yonan <james@openvpn.net>
Thu, 3 Mar 2016 07:48:12 +0000 (00:48 -0700)
committerGert Doering <gert@greenie.muc.de>
Mon, 9 May 2016 18:58:17 +0000 (20:58 +0200)
commit007738e9d6030c8989713543e4f7308ff57be30f
treeaa477d512311acd7befe7222747abf57f7d7f90c
parentf40f10ea9607934faeb2b8cd84aefff0e0790189
Fixed port-share bug with DoS potential

Fixed port-share bug that can cause segfault when the number
of concurrent connections is large.

The issue is that the port-share code calls openvpn_connect()
which in turn calls select().  When there are a high number
of concurrent port-share connections, the fd passed to select
can potentially exceed FD_SETSIZE, causing undefined behavior.

The fix is to use poll() (if available) instead of select().

Signed-off-by: James Yonan <james@openvpn.net>
Acked-by: Steffan Karger <steffan.karger@fox-it.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <CAA1Abx+2E2FZN-y6P=mkKpSuZ7bOV5m6rUMTx3V7UP2qPMjZPg@mail.gmail.com>
URL: http://article.gmane.org/gmane.network.openvpn.devel/11626
Signed-off-by: Gert Doering <gert@greenie.muc.de>
src/openvpn/socket.c