daemon: Factor out code into new function daemonize_post_detach().
authorBen Pfaff <blp@nicira.com>
Mon, 21 May 2012 18:08:59 +0000 (11:08 -0700)
committerBen Pfaff <blp@nicira.com>
Wed, 18 Jul 2012 17:30:49 +0000 (10:30 -0700)
This code will have another user in an upcoming commit.

Signed-off-by: Ben Pfaff <blp@nicira.com>
lib/daemon.c
lib/daemon.h

index a2eff07c038c0c3c53ccbbce57de9d2086ae2a85..84ed6147169e6bddf57cda35f28cd591c2046ee3 100644 (file)
@@ -39,7 +39,8 @@
 VLOG_DEFINE_THIS_MODULE(daemon);
 
 /* --detach: Should we run in the background? */
-static bool detach;
+static bool detach;             /* Was --detach specified? */
+static bool detached;           /* Have we already detached? */
 
 /* --pidfile: Name of pidfile (null if none). */
 static char *pidfile;
@@ -513,22 +514,38 @@ daemonize_start(void)
 }
 
 /* If daemonization is configured, then this function notifies the parent
- * process that the child process has completed startup successfully.
+ * process that the child process has completed startup successfully.  It also
+ * call daemonize_post_detach().
  *
  * Calling this function more than once has no additional effect. */
 void
 daemonize_complete(void)
 {
-    fork_notify_startup(daemonize_fd);
-    daemonize_fd = -1;
+    if (!detached) {
+        detached = true;
+
+        fork_notify_startup(daemonize_fd);
+        daemonize_fd = -1;
+        daemonize_post_detach();
+    }
+}
 
+/* If daemonization is configured, then this function does traditional Unix
+ * daemonization behavior: join a new session, chdir to the root (if not
+ * disabled), and close the standard file descriptors.
+ *
+ * It only makes sense to call this function as part of an implementation of a
+ * special daemon subprocess.  A normal daemon should just call
+ * daemonize_complete(). */
+void
+daemonize_post_detach(void)
+{
     if (detach) {
         setsid();
         if (chdir_) {
             ignore(chdir("/"));
         }
         close_standard_fds();
-        detach = false;
     }
 }
 
index 63b64b99f0b8ee3714718e55a070a5e6fed8924e..8cbcfafe2442472eb1e16ea65269a2980ea498af 100644 (file)
@@ -74,5 +74,6 @@ pid_t read_pidfile(const char *name);
 pid_t read_pidfile_if_exists(const char *name);
 
 pid_t fork_and_clean_up(void);
+void daemonize_post_detach(void);
 
 #endif /* daemon.h */