render / rpms / libvirt

Forked from rpms/libvirt 11 months ago
Clone
a54075
From 5217124c8f276a9d35b60470a332d887af4cc446 Mon Sep 17 00:00:00 2001
a54075
From: Martin Kletzander <mkletzan@redhat.com>
a54075
Date: Sun, 7 Sep 2014 19:52:34 +0200
a54075
Subject: [PATCH] remove redundant pidfile path constructions
a54075
a54075
Signed-off-by: Martin Kletzander <mkletzan@redhat.com>
a54075
(cherry picked from commit 8035f2e6f2db7fc0b74b639deb7eff64957692bc)
a54075
---
a54075
 daemon/libvirtd.c         | 41 ++++-----------------------------------
a54075
 src/libvirt_private.syms  |  1 +
a54075
 src/locking/lock_daemon.c | 42 ++++------------------------------------
a54075
 src/util/virpidfile.c     | 49 ++++++++++++++++++++++++++++++++++++++++++++++-
a54075
 src/util/virpidfile.h     |  7 ++++++-
a54075
 5 files changed, 63 insertions(+), 77 deletions(-)
a54075
a54075
diff --git a/daemon/libvirtd.c b/daemon/libvirtd.c
a54075
index 0503cd0..61f5486 100644
a54075
--- a/daemon/libvirtd.c
a54075
+++ b/daemon/libvirtd.c
a54075
@@ -251,41 +251,6 @@ static int daemonForkIntoBackground(const char *argv0)
a54075
 
a54075
 
a54075
 static int
a54075
-daemonPidFilePath(bool privileged,
a54075
-                  char **pidfile)
a54075
-{
a54075
-    if (privileged) {
a54075
-        if (VIR_STRDUP(*pidfile, LOCALSTATEDIR "/run/libvirtd.pid") < 0)
a54075
-            goto error;
a54075
-    } else {
a54075
-        char *rundir = NULL;
a54075
-        mode_t old_umask;
a54075
-
a54075
-        if (!(rundir = virGetUserRuntimeDirectory()))
a54075
-            goto error;
a54075
-
a54075
-        old_umask = umask(077);
a54075
-        if (virFileMakePath(rundir) < 0) {
a54075
-            umask(old_umask);
a54075
-            goto error;
a54075
-        }
a54075
-        umask(old_umask);
a54075
-
a54075
-        if (virAsprintf(pidfile, "%s/libvirtd.pid", rundir) < 0) {
a54075
-            VIR_FREE(rundir);
a54075
-            goto error;
a54075
-        }
a54075
-
a54075
-        VIR_FREE(rundir);
a54075
-    }
a54075
-
a54075
-    return 0;
a54075
-
a54075
- error:
a54075
-    return -1;
a54075
-}
a54075
-
a54075
-static int
a54075
 daemonUnixSocketPaths(struct daemonConfig *config,
a54075
                       bool privileged,
a54075
                       char **sockfile,
a54075
@@ -1313,8 +1278,10 @@ int main(int argc, char **argv) {
a54075
     }
a54075
 
a54075
     if (!pid_file &&
a54075
-        daemonPidFilePath(privileged,
a54075
-                          &pid_file) < 0) {
a54075
+        virPidFileConstructPath(privileged,
a54075
+                                LOCALSTATEDIR,
a54075
+                                "libvirtd",
a54075
+                                &pid_file) < 0) {
a54075
         VIR_ERROR(_("Can't determine pid file path."));
a54075
         exit(EXIT_FAILURE);
a54075
     }
a54075
diff --git a/src/libvirt_private.syms b/src/libvirt_private.syms
a54075
index 71fc063..f8d9b95 100644
a54075
--- a/src/libvirt_private.syms
a54075
+++ b/src/libvirt_private.syms
a54075
@@ -1773,6 +1773,7 @@ virPCIIsVirtualFunction;
a54075
 virPidFileAcquire;
a54075
 virPidFileAcquirePath;
a54075
 virPidFileBuildPath;
a54075
+virPidFileConstructPath;
a54075
 virPidFileDelete;
a54075
 virPidFileDeletePath;
a54075
 virPidFileRead;
a54075
diff --git a/src/locking/lock_daemon.c b/src/locking/lock_daemon.c
a54075
index 02d77e3..fe7cfb8 100644
a54075
--- a/src/locking/lock_daemon.c
a54075
+++ b/src/locking/lock_daemon.c
a54075
@@ -366,42 +366,6 @@ virLockDaemonForkIntoBackground(const char *argv0)
a54075
 
a54075
 
a54075
 static int
a54075
-virLockDaemonPidFilePath(bool privileged,
a54075
-                         char **pidfile)
a54075
-{
a54075
-    if (privileged) {
a54075
-        if (VIR_STRDUP(*pidfile, LOCALSTATEDIR "/run/virtlockd.pid") < 0)
a54075
-            goto error;
a54075
-    } else {
a54075
-        char *rundir = NULL;
a54075
-        mode_t old_umask;
a54075
-
a54075
-        if (!(rundir = virGetUserRuntimeDirectory()))
a54075
-            goto error;
a54075
-
a54075
-        old_umask = umask(077);
a54075
-        if (virFileMakePath(rundir) < 0) {
a54075
-            umask(old_umask);
a54075
-            goto error;
a54075
-        }
a54075
-        umask(old_umask);
a54075
-
a54075
-        if (virAsprintf(pidfile, "%s/virtlockd.pid", rundir) < 0) {
a54075
-            VIR_FREE(rundir);
a54075
-            goto error;
a54075
-        }
a54075
-
a54075
-        VIR_FREE(rundir);
a54075
-    }
a54075
-
a54075
-    return 0;
a54075
-
a54075
- error:
a54075
-    return -1;
a54075
-}
a54075
-
a54075
-
a54075
-static int
a54075
 virLockDaemonUnixSocketPaths(bool privileged,
a54075
                              char **sockfile)
a54075
 {
a54075
@@ -1283,8 +1247,10 @@ int main(int argc, char **argv) {
a54075
     }
a54075
 
a54075
     if (!pid_file &&
a54075
-        virLockDaemonPidFilePath(privileged,
a54075
-                                 &pid_file) < 0) {
a54075
+        virPidFileConstructPath(privileged,
a54075
+                                LOCALSTATEDIR,
a54075
+                                "virtlockd",
a54075
+                                &pid_file) < 0) {
a54075
         VIR_ERROR(_("Can't determine pid file path."));
a54075
         exit(EXIT_FAILURE);
a54075
     }
a54075
diff --git a/src/util/virpidfile.c b/src/util/virpidfile.c
a54075
index 1d9a1c5..19ec103 100644
a54075
--- a/src/util/virpidfile.c
a54075
+++ b/src/util/virpidfile.c
a54075
@@ -1,7 +1,7 @@
a54075
 /*
a54075
  * virpidfile.c: manipulation of pidfiles
a54075
  *
a54075
- * Copyright (C) 2010-2012 Red Hat, Inc.
a54075
+ * Copyright (C) 2010-2012, 2014 Red Hat, Inc.
a54075
  * Copyright (C) 2006, 2007 Binary Karma
a54075
  * Copyright (C) 2006 Shuveb Hussain
a54075
  *
a54075
@@ -521,3 +521,50 @@ int virPidFileRelease(const char *dir,
a54075
     VIR_FREE(pidfile);
a54075
     return rc;
a54075
 }
a54075
+
a54075
+
a54075
+int
a54075
+virPidFileConstructPath(bool privileged,
a54075
+                        const char *statedir,
a54075
+                        const char *progname,
a54075
+                        char **pidfile)
a54075
+{
a54075
+    if (privileged) {
a54075
+        /*
a54075
+         * This is here just to allow calling this function with
a54075
+         * statedir == NULL; of course only when !privileged.
a54075
+         */
a54075
+        if (!statedir) {
a54075
+            virReportError(VIR_ERR_INTERNAL_ERROR,
a54075
+                           "%s", _("No statedir specified"));
a54075
+            goto cleanup;
a54075
+        }
a54075
+        if (virAsprintf(pidfile, "%s/run/%s.pid", statedir, progname) < 0)
a54075
+            goto cleanup;
a54075
+    } else {
a54075
+        char *rundir = NULL;
a54075
+        mode_t old_umask;
a54075
+
a54075
+        if (!(rundir = virGetUserRuntimeDirectory()))
a54075
+            goto error;
a54075
+
a54075
+        old_umask = umask(077);
a54075
+        if (virFileMakePath(rundir) < 0) {
a54075
+            umask(old_umask);
a54075
+            goto error;
a54075
+        }
a54075
+        umask(old_umask);
a54075
+
a54075
+        if (virAsprintf(pidfile, "%s/%s.pid", rundir, progname) < 0) {
a54075
+            VIR_FREE(rundir);
a54075
+            goto error;
a54075
+        }
a54075
+
a54075
+        VIR_FREE(rundir);
a54075
+    }
a54075
+
a54075
+    return 0;
a54075
+
a54075
+ error:
a54075
+    return -1;
a54075
+}
a54075
diff --git a/src/util/virpidfile.h b/src/util/virpidfile.h
a54075
index 2720206..ca1dbff 100644
a54075
--- a/src/util/virpidfile.h
a54075
+++ b/src/util/virpidfile.h
a54075
@@ -1,7 +1,7 @@
a54075
 /*
a54075
  * virpidfile.h: manipulation of pidfiles
a54075
  *
a54075
- * Copyright (C) 2010-2011 Red Hat, Inc.
a54075
+ * Copyright (C) 2010-2011, 2014 Red Hat, Inc.
a54075
  * Copyright (C) 2006, 2007 Binary Karma
a54075
  * Copyright (C) 2006 Shuveb Hussain
a54075
  *
a54075
@@ -69,4 +69,9 @@ int virPidFileRelease(const char *dir,
a54075
                       const char *name,
a54075
                       int fd);
a54075
 
a54075
+int virPidFileConstructPath(bool privileged,
a54075
+                            const char *statedir,
a54075
+                            const char *progname,
a54075
+                            char **pidfile);
a54075
+
a54075
 #endif /* __VIR_PIDFILE_H__ */