[PATCH v2 0/2] MR127: ws2_32: Make wait in select alertable

Paul Gofman (@gofman) wine at gitlab.winehq.org
Fri Jun 10 11:32:10 CDT 2022


Fixes V Rising hang on exit.

During exit the main thread wants to terminate the other thread by queuing APC which APC is supposed to raise an exception and abort the thread. That is basically how Unity / Mono aborts threads. The thread being terminated is calling select() in a loop and the wait in select() is currently not alertable (while they should be, as the test suggests).

But with the first patch the things may get more interesting. ws2_32.select() passes on stack io status block to NtDeviceIoControlFile(), then it is killed from APC while waiting for event to be signaled by ioctl async processing. Then, wineserver wants to complete the async. The async owner thread is already terminated and it delivers SIGUSR1 to process the system APC to the main thread. When the APC is processed from USR1 handler it segfaults trying to put the IO status to iosb pointing to already deallocated thread stack. This is segfault on signal stack and as such is unrecoverable. The process is left hanging.

Thus the second patch. In the ideal case we'd probably want to avoid crashing or handle segfault in system APC processing somehow, but I don't yet see a feasible way to do it. In theory the same may happen without ws2_32 if the app does the same, but I don't know that anything hits that case while ws2_32 queues those on stack iosbs, so avoiding that may probably avoid the practical issues.

--
  v2: ws2_32: Make wait in WS2_recv_base() alertable.
      ws2_32: Make wait in select() alertable.
 
https://gitlab.winehq.org/wine/wine/-/merge_requests/127



More information about the wine-devel mailing list