]> xenbits.xensource.com Git - libvirt.git/commitdiff
Look in /usr/libexec for the qemu-kvm binary.
authorChris Lalancette <clalance@redhat.com>
Mon, 25 Jan 2010 15:01:15 +0000 (10:01 -0500)
committerChris Lalancette <clalance@redhat.com>
Mon, 1 Feb 2010 14:39:42 +0000 (09:39 -0500)
On RHEL-5 the qemu-kvm binary is located in /usr/libexec.
To reduce confusion for people trying to run upstream libvirt
on RHEL-5 machines, make the qemu driver look in /usr/libexec
for the qemu-kvm binary.

To make this work, I modified virFindFileInPath to handle an
absolute path correctly.  I also ran into an issue where
NULL was sometimes being passed for the file parameter
to virFindFileInPath; it didn't crash prior to this patch
since it was building paths like /usr/bin/(null).  This
is non-standard behavior, though, so I added a NULL
check at the beginning.

Signed-off-by: Chris Lalancette <clalance@redhat.com>
src/qemu/qemu_conf.c
src/util/util.c

index f4a6c0801e633416393f9c784bd2663a32af68d5..d5e38c2fe2ef0183f29f189e7c59d1d3289934ea 100644 (file)
@@ -804,7 +804,8 @@ qemudCapsInitGuest(virCapsPtr caps,
     if (STREQ(info->arch, hostmachine) ||
         (STREQ(hostmachine, "x86_64") && STREQ(info->arch, "i686"))) {
         if (access("/dev/kvm", F_OK) == 0) {
-            const char *const kvmbins[] = { "qemu-kvm", /* Fedora */
+            const char *const kvmbins[] = { "/usr/libexec/qemu-kvm", /* RHEL */
+                                            "qemu-kvm", /* Fedora */
                                             "kvm" }; /* Upstream .spec */
 
             for (i = 0; i < ARRAY_CARDINALITY(kvmbins); ++i) {
index 701581df68c55c0fe025ebad185d02c7898037d5..3c200d36800197a39dd93f452de718579dce1382 100644 (file)
@@ -1114,6 +1114,19 @@ char *virFindFileInPath(const char *file)
     char *pathseg;
     char fullpath[PATH_MAX];
 
+    if (file == NULL)
+        return NULL;
+
+    /* if we are passed an absolute path (starting with /), return a
+     * copy of that path
+     */
+    if (file[0] == '/') {
+        if (virFileExists(file))
+            return strdup(file);
+        else
+            return NULL;
+    }
+
     /* copy PATH env so we can tweak it */
     if (virStrcpyStatic(pathenv, getenv("PATH")) == NULL)
         return NULL;