All of lore.kernel.org
 help / color / mirror / Atom feed
* [Ocfs2-devel] [Patch 2/3] ocfs2-tools: ocfs2_controld leaves std(in|out|err) unassigned
@ 2008-11-18 10:18 Andrew Beekhof
  2008-11-18 23:02 ` Joel Becker
  0 siblings, 1 reply; 2+ messages in thread
From: Andrew Beekhof @ 2008-11-18 10:18 UTC (permalink / raw)
  To: ocfs2-devel

Leaving std(in|out|err) unassigned causes havoc when included code (in  
this case openais libraries) print to std(err|out).
Specifically, this often leads to memory corruption since the output  
is sent to IPC sockets.

The safest approach is to reopen std(in|out|err) and have them point  
to /dev/null

Signed-off-by: Andrew Beekhof <abeekhof@suse.de>

--- upstream/ocfs2_controld/main.c	2008-10-27 14:55:50.000000000 +0100
+++ dev/ocfs2_controld/main.c	2008-10-27 14:57:24.000000000 +0100
@@ -1027,6 +1027,7 @@ static void lockfile(void)

  static void daemonize(void)
  {
+	int fd;
  	pid_t pid = fork();
  	if (pid < 0) {
  		perror("main: cannot fork");
@@ -1040,6 +1041,18 @@ static void daemonize(void)
  	close(0);
  	close(1);
  	close(2);
+	fd = open("/dev/null", O_RDWR);
+	if (fd >= 0) {
+		/* dup2 to 0 / 1 / 2 (stdin / stdout / stderr) */
+		dup2(fd, STDIN_FILENO);  /* 0 */
+		dup2(fd, STDOUT_FILENO); /* 1 */
+		dup2(fd, STDERR_FILENO); /* 2 */
+
+		/* Should be 0, but just in case it isn't... */
+		if (fd > 2) {
+			close(fd);
+		}
+	}
  	openlog("ocfs2_controld", LOG_PID, LOG_DAEMON);

  	lockfile();

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

end of thread, other threads:[~2008-11-18 23:02 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-11-18 10:18 [Ocfs2-devel] [Patch 2/3] ocfs2-tools: ocfs2_controld leaves std(in|out|err) unassigned Andrew Beekhof
2008-11-18 23:02 ` Joel Becker

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.