]> git.pond.sub.org Git - empserver/commitdiff
(disassoc): Rewrite for POSIX, return status. Caller changed.
authorMarkus Armbruster <armbru@pond.sub.org>
Tue, 25 Oct 2005 18:42:03 +0000 (18:42 +0000)
committerMarkus Armbruster <armbru@pond.sub.org>
Tue, 25 Oct 2005 18:42:03 +0000 (18:42 +0000)
Problems with the old code:
* Insufficient error checking.
* It used TIOCNOTTY (obsolete BSDism) to get rid of the controlling
  tty, except for hpux || Rel4, where it attempted to use the POSIX
  way, but screwed up.
* It left file descriptors 0, 1, 2 in a somewhat weird state.

include/prototypes.h
src/lib/gen/Makefile
src/lib/gen/disassoc.c
src/server/main.c

index a5862b86f074fddd37b651b276f62da74cb6bcc7..7942246916e74d45c6ceb40212be06d92ae75da6 100644 (file)
@@ -371,7 +371,7 @@ extern void print_config(FILE * fp);
 extern int roll(int);
 extern int roundavg(double);
 extern int chance(double);
-extern void disassoc(void);
+extern int disassoc(void);
 extern int diffx(int, int);
 extern int diffy(int, int);
 extern int deltax(int, int);
index befb7f9c55c21a83ebefccc70abee244ba959f3c..6c3847aeaa9c44c926fb18805f6df29b5249e4ad 100644 (file)
@@ -40,7 +40,7 @@ OBJS =  chance.o copy.o disassoc.o \
        ioqueue.o mapdist.o minmax.o numstr.o onearg.o \
        parse.o plur.o queue.o round.o scthash.o
 
-NTOBJS = chance.obj copy.obj disassoc.obj \
+NTOBJS = chance.obj copy.obj \
        emp_config.obj getstarg.obj getstring.obj \
        io.obj ioqueue.obj mapdist.obj minmax.obj \
        numstr.obj onearg.obj parse.obj plur.obj queue.obj round.obj \
index bd055c6dc6b4550b688037a5d8a01af9669e20f3..11371b8a3859fd9589b264cfa89b9d6816cf9610 100644 (file)
  *
  *  ---
  *
- *  disassoc.c: Fork and close
+ *  disassoc.c: Boilerplate daemonization code
  * 
  *  Known contributors to this file:
  *     Doug Hay, 1998
+ *     Markus Armbruster, 2005
  */
 
 /*
- * boilerplate daemon code; disassociate from
- * the current tty by forking, closing all file
- * descriptors, opening slash, and ioctl-ing
- * TIOCNOTTY
+ * See W. Richard Stevens: UNIX Network Programming, Vol. 1
  */
 
-#include <sys/types.h>
-#if !defined(_WIN32)
-#include <sys/ioctl.h>
-#include <unistd.h>            /* fork close dup2 */
-#endif
 #include <fcntl.h>
-#include "gen.h"
+#include <sys/types.h>
+#include <unistd.h>
+#include "prototypes.h"
 
-void
+int
 disassoc(void)
 {
-#if !defined(_WIN32)
+    pid_t pid;
     int i;
 
-    if (fork() != 0)
-       exit(0);
-    for (i = 0; i < 2; i++)
-       (void)close(i);
-    (void)open("/", O_RDONLY, 0);
-    (void)dup2(0, 1);
-    (void)dup2(0, 2);
-#if defined hpux || defined Rel4
-    setsid();
-#else
-    i = open("/dev/tty", O_RDWR, 0);
-    if (i > 0) {
-       (void)ioctl(i, TIOCNOTTY, 0);
-       (void)close(i);
-    }
-#endif
-#endif
+    if ((pid = fork()) < 0)
+       return -1;
+    else if (pid)
+       _exit(0);               /* parent */
+
+    /* Become session leader of new session, lose controlling tty */
+    if (setsid() < 0)
+       return -1;
+
+    /* Lose session leader status, so we can't acquire a controlling tty */
+    if ((pid = fork()) < 0)
+       return -1;
+    else if (pid)
+       _exit(0);               /* parent */
+    /* Note: no controlling tty, therefore no SIGHUP sent */
+
+    /* datadir is working directory, that's fine */
+
+    /* We opened a bunch of files already, so just close 0..2 */
+    for (i = 0; i < 3; i++)
+       close(i);
+
+    /* Library code may use 0..2; make sure that's safe */
+    open("/dev/null", O_RDWR);
+    dup(0);
+    dup(0);
+
+    return 0;
 }
index d1968063db64dd532e903ec5b805e93f48c5917a..d8cefac0b450c2ebed795f9a142b09ebcbec9b18 100644 (file)
@@ -235,8 +235,12 @@ main(int argc, char **argv)
     }
     daemonize = 0;
 #else  /* !_WIN32 */
-    if (daemonize)
-       disassoc();
+    if (daemonize) {
+       if (disassoc() < 0) {
+           logerror("Can't become daemon (%s)", strerror(errno));
+           _exit(1);
+       }
+    }
 #endif /* !_WIN32 */
     start_server(flags);