Fix for KVM with explicit -cpu model parameter.
[virt-what.git] / virt-what.in
1 #!/bin/bash -
2 # @configure_input@
3 # Copyright (C) 2008-2011 Red Hat Inc.
4 #
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
18
19 # 'virt-what' tries to detect the type of virtualization being
20 # used (or none at all if we're running on bare-metal).  It prints
21 # out one of more lines each being a 'fact' about the virtualization.
22 #
23 # Please see also the manual page virt-what(1).
24 # This script should be run as root.
25 #
26 # The following resources were useful in writing this script:
27 # . http://www.dmo.ca/blog/20080530151107
28
29 VERSION="@VERSION@"
30
31 function fail {
32     echo "virt-what: $1"
33     exit 1
34 }
35
36 function usage {
37     echo "virt-what [options]"
38     echo "Options:"
39     echo "  --help          Display this help"
40     echo "  --version       Display version and exit"
41     exit 0
42 }
43
44 # Handle the command line arguments, if any.
45
46 TEMP=`getopt -o v --long help --long version --long test-root: -n 'virt-what' -- "$@"`
47 if [ $? != 0 ]; then exit 1; fi
48 eval set -- "$TEMP"
49
50 while true; do
51     case "$1" in
52         --help) usage ;;
53         --test-root)
54             # Deliberately undocumented: used for 'make check'.
55             root="$2"
56             shift 2
57             ;;
58         -v|--version) echo $VERSION; exit 0 ;;
59         --) shift; break ;;
60         *) fail "internal error ($1)" ;;
61     esac
62 done
63
64 # Add /sbin and /usr/sbin to the path so we can find system
65 # binaries like dmicode.
66 # Add /usr/libexec to the path so we can find the helper binary.
67 prefix=@prefix@
68 exec_prefix=@exec_prefix@
69 PATH=$root@libexecdir@:$root/sbin:$root/usr/sbin:$PATH
70
71 # Check we're running as root.
72
73 uid=`id -u`
74 if [ "$uid" != 0 ]; then
75     fail "this script must be run as root"
76 fi
77
78 # Many fullvirt hypervisors give an indication through CPUID.  Use the
79 # helper program to get this information.
80
81 cpuid=`virt-what-cpuid-helper`
82
83 # Check for various products in the BIOS information.
84 # Note that dmidecode doesn't exist on non-PC architectures.  On these,
85 # this will return an error which is ignored (error message redirected
86 # into $dmi variable).
87
88 dmi=`LANG=C dmidecode 2>&1`
89
90 # Check for VMware.
91 # cpuid check added by Chetan Loke.
92
93 if [ "$cpuid" = "VMwareVMware" ]; then
94     echo vmware
95 elif echo "$dmi" | grep -q 'Manufacturer: VMware'; then
96     echo vmware
97 fi
98
99 # Check for Hyper-V.
100 # http://blogs.msdn.com/b/sqlosteam/archive/2010/10/30/is-this-real-the-metaphysics-of-hardware-virtualization.aspx
101 if [ "$cpuid" = "Microsoft Hv" ]; then
102     echo hyperv
103 fi
104
105 # Check for VirtualPC.
106 # The negative check for cpuid is to distinguish this from Hyper-V
107 # which also has the same manufacturer string in the SM-BIOS data.
108 if [ "$cpuid" != "Microsoft Hv" ] &&
109     echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
110     echo virtualpc
111 fi
112
113 # Check for VirtualBox.
114 # Added by Laurent Léonard.
115 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
116     echo virtualbox
117 fi
118
119 # Check for OpenVZ / Virtuozzo.
120 # Added by Evgeniy Sokolov.
121 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
122 # container)
123 # /proc/bc - exists on node, but not inside container.
124
125 if [ -d $root/proc/vz -a ! -d $root/proc/bc ]; then
126     echo openvz
127 fi
128
129 # Check for Linux-VServer
130 if cat $root/proc/self/status | grep -q "VxID: [0-9]*"; then
131     echo linux_vserver
132 fi
133
134 # Check for UML.
135 # Added by Laurent Léonard.
136 if grep -q 'UML' $root/proc/cpuinfo; then
137     echo uml
138 fi
139
140 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
141 if grep -q '^vendor_id.*PowerVM Lx86' $root/proc/cpuinfo; then
142     echo powervm_lx86
143 fi
144
145 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
146 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
147    echo "$dmi" | grep -q 'Product.*HVM LPAR'; then
148     echo virtage
149 fi
150
151 # Check for IBM SystemZ.
152 if grep -q '^vendor_id.*IBM/S390' $root/proc/cpuinfo; then
153     echo ibm_systemz
154     if [ -f $root/proc/sysinfo ]; then
155         if grep -q 'VM.*Control Program.*z/VM' $root/proc/sysinfo; then
156             echo ibm_systemz-zvm
157         elif grep -q '^LPAR' $root/proc/sysinfo; then
158             echo ibm_systemz-lpar
159         else
160             # This is unlikely to be correct.
161             echo ibm_systemz-direct
162         fi
163     fi
164 fi
165
166 # Check for Parallels.
167 if echo "$dmi" | grep -q 'Vendor: Parallels'; then
168     echo parallels
169     skip_qemu_kvm=1
170 fi
171
172 # Check for Xen.
173
174 if [ "$cpuid" = "XenVMMXenVMM" ]; then
175     echo xen; echo xen-hvm
176     skip_qemu_kvm=1
177 elif [ -f $root/proc/xen/capabilities ]; then
178     echo xen
179     if grep -q "control_d" $root/proc/xen/capabilities; then
180         echo xen-dom0
181     else
182         echo xen-domU
183     fi
184     skip_qemu_kvm=1
185 elif [ -f $root/sys/hypervisor/type ] &&
186     grep -q "xen" $root/sys/hypervisor/type; then
187     # Ordinary kernel with pv_ops.  There does not seem to be
188     # enough information at present to tell whether this is dom0
189     # or domU.  XXX
190     echo xen
191 fi
192
193 # Check for QEMU/KVM.
194 #
195 # Parallels exports KVMKVMKVM leaf, so skip this test if we've already
196 # seen that it's Parallels.  Xen uses QEMU as the device model, so
197 # skip this test if we know it is Xen.
198
199 if [ ! "$skip_qemu_kvm" ]; then
200     if [ "$cpuid" = "KVMKVMKVM" ]; then
201         echo kvm
202     else
203         # XXX This is known to fail for qemu with the explicit -cpu
204         # option, since /proc/cpuinfo will not contain the QEMU
205         # string.  The long term fix for this would be to export
206         # another CPUID leaf for non-accelerated qemu.
207         if grep -q 'QEMU' $root/proc/cpuinfo; then
208             echo qemu
209         fi
210     fi
211 fi