GNU bug report logs -
#49449
28: TLS connection never gets to "open" stage
Previous Next
Full log
View this message in rfc822 format
10 juli 2021 kl. 21.31 skrev Eli Zaretskii <eliz <at> gnu.org>:
> That's my question: why cannot the sentinel be called in this case?
> what prevents it from being called?
In the failing case, wait_reading_process_output calls gnutls_try_handshake early on, which succeeds and this leads to finish_after_tls_connection being called. Here, we have the condition
else if ((fd_callback_info[p->outfd].flags & NON_BLOCKING_CONNECT_FD) == 0)
which gates further progress, but this condition is false because the flags have NON_BLOCKING_CONNECT_FD set.
In the successful case, the first call to gnutls_try_handshake from wait_reading_process_output fails because things haven't had the time to be set up yet. This leads to a select being called on the socket for writing (since it's in a nonblocking connect), and when ready, the NON_BLOCKING_CONNECT_FD bit is cleared from the flags.
This is a simplified view. The state is clearly more complex and things need to be done in the proper order.
This bug report was last modified 3 years and 310 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.