mailing list of musl libc
 help / color / mirror / code / Atom feed
* [PATCH] save/restore errno around pthread_atfork handlers
@ 2017-11-10 20:58 Bobby Bingham
  2017-11-10 23:31 ` Rich Felker
  0 siblings, 1 reply; 5+ messages in thread
From: Bobby Bingham @ 2017-11-10 20:58 UTC (permalink / raw)
  To: musl

If the syscall fails, errno must be preserved for the caller. There's no
guarantee that the handlers registered with pthread_atfork won't clobber
errno.
---
 src/process/fork.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/src/process/fork.c b/src/process/fork.c
index b96f0024..6602eafc 100644
--- a/src/process/fork.c
+++ b/src/process/fork.c
@@ -15,6 +15,7 @@ pid_t fork(void)
 {
 	pid_t ret;
 	sigset_t set;
+	int olderr;
 	__fork_handler(-1);
 	__block_all_sigs(&set);
 #ifdef SYS_fork
@@ -30,6 +31,10 @@ pid_t fork(void)
 		libc.threads_minus_1 = 0;
 	}
 	__restore_sigs(&set);
+
+	olderr = errno;
 	__fork_handler(!ret);
+	errno = olderr;
+
 	return ret;
 }
-- 
2.15.0



^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2017-11-11  0:37 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-10 20:58 [PATCH] save/restore errno around pthread_atfork handlers Bobby Bingham
2017-11-10 23:31 ` Rich Felker
2017-11-11  0:03   ` Bobby Bingham
2017-11-11  0:16     ` Rich Felker
2017-11-11  0:37       ` Bobby Bingham

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).