gnunet-svn
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[gnurl] 22/411: select: fix poll-based check not detecting connect failu


From: gnunet
Subject: [gnurl] 22/411: select: fix poll-based check not detecting connect failure
Date: Wed, 13 Jan 2021 01:17:17 +0100

This is an automated email from the git hooks/post-receive script.

nikita pushed a commit to branch master
in repository gnurl.

commit e21bd22f842dc07ee953fac6a1edd0c054f123d4
Author: Marc Hoersken <info@marc-hoersken.de>
AuthorDate: Tue Jul 21 20:17:01 2020 +0200

    select: fix poll-based check not detecting connect failure
    
    This commit changes Curl_socket_check to use POLLPRI to
    check for connect failure on the write socket, because
    POLLPRI maps to fds_err. This is in line with select(2).
    
    The select-based socket check correctly checks for connect
    failures by adding the write socket also to fds_err.
    
    The poll-based implementation (which internally can itself
    fallback to select again) did not previously check for
    connect failure by using POLLPRI with the write socket.
    
    See the follow up commit to this for more information.
    
    This commit makes sure connect failures can be detected
    and handled if HAVE_POLL_FINE is defined, eg. on msys2-devel.
    
    Reviewed-by: Daniel Stenberg
    Reviewed-by: Jay Satiro
    
    Replaces #5509
    Prepares #5707
---
 lib/select.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/select.c b/lib/select.c
index abb124ae8..3928b12dc 100644
--- a/lib/select.c
+++ b/lib/select.c
@@ -288,7 +288,7 @@ int Curl_socket_check(curl_socket_t readfd0, /* two sockets 
to read from */
   }
   if(writefd != CURL_SOCKET_BAD) {
     pfd[num].fd = writefd;
-    pfd[num].events = POLLWRNORM|POLLOUT;
+    pfd[num].events = POLLWRNORM|POLLOUT|POLLPRI;
     pfd[num].revents = 0;
     num++;
   }
@@ -316,7 +316,7 @@ int Curl_socket_check(curl_socket_t readfd0, /* two sockets 
to read from */
   if(writefd != CURL_SOCKET_BAD) {
     if(pfd[num].revents & (POLLWRNORM|POLLOUT))
       ret |= CURL_CSELECT_OUT;
-    if(pfd[num].revents & (POLLERR|POLLHUP|POLLNVAL))
+    if(pfd[num].revents & (POLLERR|POLLHUP|POLLPRI|POLLNVAL))
       ret |= CURL_CSELECT_ERR;
   }
 

-- 
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]