svn commit: [26203] trunk/busybox/miscutils

vapier at busybox.net vapier at busybox.net
Sat Apr 25 06:16:37 UTC 2009


Author: vapier
Date: 2009-04-25 06:16:37 +0000 (Sat, 25 Apr 2009)
New Revision: 26203

Log:
we need to daemonize *before* opening the watchdog device

Modified:
   trunk/busybox/miscutils/watchdog.c


Changeset:
Modified: trunk/busybox/miscutils/watchdog.c
===================================================================
--- trunk/busybox/miscutils/watchdog.c	2009-04-24 18:42:18 UTC (rev 26202)
+++ trunk/busybox/miscutils/watchdog.c	2009-04-25 06:16:37 UTC (rev 26203)
@@ -45,6 +45,15 @@
 	opt_complementary = "=1"; /* must have exactly 1 argument */
 	opts = getopt32(argv, "Ft:T:", &st_arg, &ht_arg);
 
+	/* We need to daemonize *before* opening the watchdog as many drivers
+	 * will only allow one process at a time to do so.  Since daemonizing
+	 * is not perfect (child may run before parent finishes exiting), we
+	 * can't rely on parent exiting before us (let alone *cleanly* releasing
+	 * the watchdog fd -- something else that may not even be allowed).
+	 */
+	if (!(opts & OPT_FOREGROUND))
+		bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
+
 	if (opts & OPT_HTIMER)
 		htimer_duration = xatou_sfx(ht_arg, suffixes);
 	stimer_duration = htimer_duration / 2;
@@ -76,10 +85,6 @@
 		stimer_duration, htimer_duration * 1000);
 #endif
 
-	if (!(opts & OPT_FOREGROUND)) {
-		bb_daemonize_or_rexec(DAEMON_CHDIR_ROOT, argv);
-	}
-
 	while (1) {
 		/*
 		 * Make sure we clear the counter before sleeping,



More information about the busybox-cvs mailing list