]> err.no Git - dpkg/commitdiff
Change start-stop-daemon's --exec option behaviour on GNU/Linux to
authorGuillem Jover <guillem@debian.org>
Mon, 23 Jan 2006 18:38:09 +0000 (18:38 +0000)
committerGuillem Jover <guillem@debian.org>
Mon, 23 Jan 2006 18:38:09 +0000 (18:38 +0000)
compare the filename pointed by '/proc/<pid>/exe' instead of the inode
and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
Closes: #337942
ChangeLog
debian/changelog
utils/start-stop-daemon.c

index c858932bc3c38d51bc79e9cf53472ab29ed1434b..7c7f58fe36a6759b0f8a39bbde626ba90a743924 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2006-01-23  Vasilis Vasaitis  <v.vasaitis@sms.ed.ac.uk>
+
+       * utils/start-stop-daemon.c (pid_is_exec) [OSLinux]: Change function
+       prototype to take a constant string instead of a struct stat. Compare
+       the filename pointed by the '/proc/<pid>/exe' symlink, instead of the
+       stat device and inode numbers. Fix all callers.
+
 2006-01-23  Frank Lichtenheld  <djpig@debian.org>
 
        * scripts/dpkg-shlibdeps.pl: Rewrite of the script
index 8db9763d192650badf629390808f9bb77bb50925..a1f78f28c58d625a8467b8c6fba3762ab8c06a29 100644 (file)
@@ -90,6 +90,10 @@ dpkg (1.13.12) experimental; urgency=low
   * Add support for architecture wildcards, but for now they will only be
     exposed in debian/control files, not in binary nor source packages.
     Closes: #291939
+  * Change start-stop-daemon's --exec option behaviour on GNU/Linux to
+    compare the filename pointed by '/proc/<pid>/exe' instead of the inode
+    and device numbers. Thanks to Vasilis Vasaitis <v.vasaitis@sms.ed.ac.uk>.
+    Closes: #337942
 
  -- Frank Lichtenheld <djpig@debian.org>  Mon, 23 Jan 2006 14:22:59 +0100
 
index 343905f87aec36b8ad8632761ae335a7988621d3..223b4903960f82805e996bff84e01420e63db1a1 100644 (file)
@@ -174,7 +174,9 @@ static void check(pid_t pid);
 static void do_pidfile(const char *name);
 static void do_stop(int signal_nr, int quietmode,
                    int *n_killed, int *n_notkilled, int retry_nr);
-#if defined(OSLinux) || defined(OShpux)
+#if defined(OSLinux)
+static int pid_is_exec(pid_t pid, const char *name);
+#elif defined(OShpux)
 static int pid_is_exec(pid_t pid, const struct stat *esb);
 #endif
 
@@ -608,15 +610,29 @@ parse_options(int argc, char * const *argv)
 
 #if defined(OSLinux)
 static int
-pid_is_exec(pid_t pid, const struct stat *esb)
+pid_is_exec(pid_t pid, const char *name)
 {
-       struct stat sb;
-       char buf[32];
-
-       sprintf(buf, "/proc/%d/exe", pid);
-       if (stat(buf, &sb) != 0)
+       char lname[32];
+       char *lcontents;
+       int lcontlen, nread, res;
+
+       /* Allow one extra character for the link contents, which should
+        * be enough to determine if the file names are the same. */
+       lcontlen = strlen(name) + 1;
+       lcontents = xmalloc(lcontlen);
+       sprintf(lname, "/proc/%d/exe", pid);
+       nread = readlink(lname, lcontents, lcontlen);
+       if (nread == -1) {
+               free(lcontents);
                return 0;
-       return (sb.st_dev == esb->st_dev && sb.st_ino == esb->st_ino);
+       }
+       if (nread < lcontlen)
+               lcontents[nread] = '\0';
+
+       res = (strncmp(lcontents, name, lcontlen) == 0);
+       free(lcontents);
+
+       return res;
 }
 
 
@@ -746,7 +762,9 @@ pid_is_running(pid_t pid)
 static void
 check(pid_t pid)
 {
-#if defined(OSLinux) || defined(OShpux)
+#if defined(OSLinux)
+       if (execname && !pid_is_exec(pid, execname))
+#elif defined(OShpux)
        if (execname && !pid_is_exec(pid, &exec_stat))
 #elif defined(OSHURD) || defined(OSFreeBSD) || defined(OSNetBSD)
     /* I will try this to see if it works */