diff options
author | Takashi Yano <takashi.yano@nifty.ne.jp> | 2025-04-03 15:22:29 +0900 |
---|---|---|
committer | Takashi Yano <takashi.yano@nifty.ne.jp> | 2025-04-06 00:26:07 +0900 |
commit | 779e46b5b3ee8d0250f084d1cf2d68c0483a521e (patch) | |
tree | 32480c3935bd85a0181bd8da5eafc8357f491992 /newlib/libc/stdio/viscanf.c | |
parent | 354ad78567031edb3c4e70a49ed78a3454a6600f (diff) | |
download | newlib-master.zip newlib-master.tar.gz newlib-master.tar.bz2 |
Cygwin: fork: Call pthread::atforkchild () after other initializationsHEADgithub/mastergithub/mainmastermain
Previously, the callback registered by pthread_atfork() was called
in pthread::atforkchild() before _my_tls.fixup_after_fork(). This
caused misbehaviour if the callback used TLS-related functions.
More specifically, cygwait() for a mutex at the beginning of
fhandler_fifo_pipe::raw_write() failed because the event handle
_my_tls.signal_arrived, which is used in cygwait() internally and
designed to be initialized in _cygtls::fixup_after_fork(), was not
yet initialized at that point. Due to this problem, subprocesses
of CMake (versions >= 3.29.x) sometimes failed after the commit
7ed9adb356df ("Cygwin: pipe: Switch pipe mode to blocking mode by
default, 2024-09-05"). This commit triggered the issue because it
introduced cygwait() for the mutex in fhandler_fifo_pipe::raw_write().
This patch moves the pthread::atforkchild() at the end of the fork::
child(), i.e. after all initializations for child process is finished.
The reason why the issue happens not always but sometimes:
The event handle signal_arrived was never properly initialized when
fhandler_fifo_pipe::raw_write() was called from the callback. As a
result, its value was merely copied from the parent process during
a fork() operation. Since the event signal_arrived was not created
as inheritable, the handle value was fundamentally invalid. Despite
this, the issue only occurred occasionally. This inconsistency was
due to the handle value often coinciding with other existing handles
because of its small value, such as 0x1ac. As evidence of this, in
many cases where the issue did not manifest, the signal_arrived
handle was not even an event handle.
Addresses: https://cygwin.com/pipermail/cygwin/2025-March/257800.html
Addresses: https://github.com/msys2/msys2-runtime/issues/272
Fixes: f02b22dcee17 ("* fork.cc (frok::child): Change order of cleanup prior to return.")
Reported-by: Christoph Reiter <reiter.christoph@gmail.com>
Reviewed-by: Jeremy Drake <cygwin@jdrake.com>
Signed-off-by: Takashi Yano <takashi.yano@nifty.ne.jp>
Diffstat (limited to 'newlib/libc/stdio/viscanf.c')
0 files changed, 0 insertions, 0 deletions