Add detection of Red Hat Enterprise Virtualization hypervisor (RHBZ#1249438).
[virt-what.git] / virt-what.in
index 2de040a..761fc1b 100644 (file)
@@ -54,16 +54,16 @@ usage () {
 # Handle the command line arguments, if any.
 while test $# -gt 0; do
     case "$1" in
-       --help) usage ;;
+        --help) usage ;;
         --test-root=*)
             # Deliberately undocumented: used for 'make check'.
             root=$(echo "$1" | sed 's/.*=//')
             shift 1
             test -z "$root" && fail "--test-root option requires a value"
             ;;
-       -v|--version) echo "$VERSION"; exit 0 ;;
-       --) shift; break ;;
-       *) fail "unrecognized option '$1'";;
+        -v|--version) echo "$VERSION"; exit 0 ;;
+        --) shift; break ;;
+        *) fail "unrecognized option '$1'";;
     esac
 done
 test $# -gt 0 && fail "extra operand '$1'"
@@ -203,6 +203,14 @@ if echo "$dmi" | grep -q 'Vendor: Parallels'; then
     skip_qemu_kvm=true
 fi
 
+# Check for oVirt/RHEV.
+if echo "$dmi" | grep -q 'Manufacturer: oVirt'; then
+    echo ovirt
+fi
+if echo "$dmi" | grep -q 'Product Name: RHEV Hypervisor'; then
+    echo rhev
+fi
+
 # Check for Xen.
 
 if [ "$cpuid" = "XenVMMXenVMM" ]; then
@@ -256,7 +264,15 @@ fi
 
 if ! "$skip_qemu_kvm"; then
     if [ "$cpuid" = "KVMKVMKVM" ]; then
-       echo kvm
+        echo kvm
+    elif echo "$dmi" | grep -q 'Product Name: KVM'; then
+        echo kvm
+        skip_lkvm=true
+    elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then
+        # The test for KVM above failed, so now we know we're
+        # not using KVM acceleration.
+        echo qemu
+        skip_lkvm=true
     elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then
         if [ -d "${root}/proc/device-tree" ] &&
             ls "${root}/proc/device-tree" | grep -q "fw-cfg"; then
@@ -264,11 +280,6 @@ if ! "$skip_qemu_kvm"; then
             # using KVM acceleration or not.
             echo qemu
             skip_lkvm=true
-        elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then
-            # We don't have enough information to determine if we're
-            # using KVM acceleration or not.
-            echo qemu
-            skip_lkvm=true
         fi
     else
         # XXX This is known to fail for qemu with the explicit -cpu
@@ -276,8 +287,8 @@ if ! "$skip_qemu_kvm"; then
         # string.  The long term fix for this would be to export
         # another CPUID leaf for non-accelerated qemu.
         if grep -q 'QEMU' "${root}/proc/cpuinfo"; then
-           echo qemu
-       fi
+            echo qemu
+        fi
     fi
 fi
 
@@ -288,11 +299,35 @@ if ! "$skip_lkvm"; then
         if [ -d "${root}/proc/device-tree" ] &&
             grep -q "dummy-virt" "${root}/proc/device-tree/compatible"; then
             echo lkvm
-       fi
+        fi
     fi
 fi
 
 # Check for Docker.
 if [ -f "${root}/.dockerinit" ]; then
-       echo docker
+    echo docker
+fi
+
+# Check ppc64 lpar, kvm or powerkvm
+
+# example /proc/cpuinfo line indicating 'not baremetal'
+# platform  : pSeries
+#
+# example /proc/ppc64/lparcfg systemtype line
+# system_type=IBM pSeries (emulated by qemu)
+
+if [ "$arch" = "ppc64" ]; then
+    if have_cpuinfo && grep -q 'platform.**pSeries' "${root}/proc/cpuinfo"; then
+        if grep -q 'model.*emulated by qemu' "${root}/proc/cpuinfo"; then
+                echo ibm_power-kvm
+        else
+            # Assume LPAR, now detect shared or dedicated
+            if grep -q 'shared_processor_mode=1' "${root}/proc/ppc64/lparcfg"; then
+                echo ibm_power-lpar_shared
+            else
+                echo ibm_power-lpar_dedicated
+            fi
+        # detect powerkvm?
+        fi
+    fi
 fi