Add support for KVM on System Z
[virt-what.git] / virt-what.in
1 #!/bin/sh -
2 # @configure_input@
3 # Copyright (C) 2008-2015 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 or 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://dmo.ca/blog/detecting-virtualization-on-linux/
28
29 # Do not allow unset variables, and set defaults.
30 set -u
31 root=''
32 skip_qemu_kvm=false
33 skip_lkvm=false
34
35 VERSION="@VERSION@"
36
37 have_cpuinfo () {
38     test -e "${root}/proc/cpuinfo"
39 }
40
41 fail () {
42     echo "virt-what: $1" >&2
43     exit 1
44 }
45
46 usage () {
47     echo "virt-what [options]"
48     echo "Options:"
49     echo "  --help          Display this help"
50     echo "  --version       Display version and exit"
51     exit 0
52 }
53
54 # Handle the command line arguments, if any.
55 while test $# -gt 0; do
56     case "$1" in
57         --help) usage ;;
58         --test-root=*)
59             # Deliberately undocumented: used for 'make check'.
60             root=$(echo "$1" | sed 's/.*=//')
61             shift 1
62             test -z "$root" && fail "--test-root option requires a value"
63             ;;
64         -v|--version) echo "$VERSION"; exit 0 ;;
65         --) shift; break ;;
66         *) fail "unrecognized option '$1'";;
67     esac
68 done
69 test $# -gt 0 && fail "extra operand '$1'"
70
71 # Add /sbin and /usr/sbin to the path so we can find system
72 # binaries like dmidecode.
73 # Add /usr/libexec to the path so we can find the helper binary.
74 prefix=@prefix@
75 exec_prefix=@exec_prefix@
76 PATH="${root}@libexecdir@:${root}/sbin:${root}/usr/sbin:${PATH}"
77 export PATH
78
79 # Check we're running as root.
80 EFFUID=$(id -u) || fail "failed to get current user id"
81
82 if [ "x$root" = "x" ] && [ "$EFFUID" -ne 0 ]; then
83     fail "this script must be run as root"
84 fi
85
86 # Try to locate the CPU-ID helper program
87 CPUID_HELPER=$(which virt-what-cpuid-helper 2>/dev/null)
88 if [ -z "$CPUID_HELPER" ] ; then
89     fail "virt-what-cpuid-helper program not found in \$PATH"
90 fi
91
92 # Many fullvirt hypervisors give an indication through CPUID.  Use the
93 # helper program to get this information.
94
95 cpuid=$(virt-what-cpuid-helper)
96
97 # Check for various products in the BIOS information.
98 # Note that dmidecode doesn't exist on all architectures.  On the ones
99 # it does not, then this will return an error, which is ignored (error
100 # message redirected into the $dmi variable).
101
102 dmi=$(LANG=C dmidecode 2>&1)
103
104 # Architecture.
105 # Note for the purpose of testing, we only call uname with -p option.
106
107 arch=$(uname -p | sed -e 's/i.86/i386/' | sed -e 's/arm.*/arm/')
108
109 # Check for VMware.
110 # cpuid check added by Chetan Loke.
111
112 if [ "$cpuid" = "VMwareVMware" ]; then
113     echo vmware
114 elif echo "$dmi" | grep -q 'Manufacturer: VMware'; then
115     echo vmware
116 fi
117
118 # Check for Hyper-V.
119 # http://blogs.msdn.com/b/sqlosteam/archive/2010/10/30/is-this-real-the-metaphysics-of-hardware-virtualization.aspx
120 if [ "$cpuid" = "Microsoft Hv" ]; then
121     echo hyperv
122 fi
123
124 # Check for VirtualPC.
125 # The negative check for cpuid is to distinguish this from Hyper-V
126 # which also has the same manufacturer string in the SM-BIOS data.
127 if [ "$cpuid" != "Microsoft Hv" ] &&
128     echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
129     echo virtualpc
130 fi
131
132 # Check for VirtualBox.
133 # Added by Laurent Léonard.
134 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
135     echo virtualbox
136 fi
137
138 # Check for bhyve.
139 if [ "$cpuid" = "bhyve bhyve " ]; then
140   echo bhyve
141 elif echo "$dmi" | grep -q "Vendor: BHYVE"; then
142   echo bhyve
143 fi
144
145 # Check for OpenVZ / Virtuozzo.
146 # Added by Evgeniy Sokolov.
147 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
148 # container)
149 # /proc/bc - exists on node, but not inside container.
150
151 if [ -d "${root}/proc/vz" -a ! -d "${root}/proc/bc" ]; then
152     echo openvz
153 fi
154
155 # Check for LXC containers
156 # http://www.freedesktop.org/wiki/Software/systemd/ContainerInterface
157 # Added by Marc Fournier
158
159 if [ -e "${root}/proc/1/environ" ] &&
160     cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container='; then
161     echo lxc
162 fi
163
164 # Check for Linux-VServer
165 if test -e "${root}/proc/self/status" \
166    && cat "${root}/proc/self/status" | grep -q "VxID: [0-9]*"; then
167     echo linux_vserver
168     if grep -q "VxID: 0$" "${root}/proc/self/status"; then
169         echo linux_vserver-host
170     else
171         echo linux_vserver-guest
172     fi
173 fi
174
175 # Check for UML.
176 # Added by Laurent Léonard.
177 if have_cpuinfo && grep -q 'UML' "${root}/proc/cpuinfo"; then
178     echo uml
179 fi
180
181 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
182 if have_cpuinfo && grep -q '^vendor_id.*PowerVM Lx86' "${root}/proc/cpuinfo"
183 then
184     echo powervm_lx86
185 fi
186
187 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
188 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
189    echo "$dmi" | grep -q 'Product.* LPAR'; then
190     echo virtage
191 fi
192
193 # Check for IBM SystemZ.
194 if have_cpuinfo && grep -q '^vendor_id.*IBM/S390' "${root}/proc/cpuinfo"; then
195     echo ibm_systemz
196     if [ -f "${root}/proc/sysinfo" ]; then
197         if grep -q 'VM.*Control Program.*KVM/Linux' "${root}/proc/sysinfo"; then
198             echo ibm_systemz-kvm
199         elif grep -q 'VM.*Control Program.*z/VM' "${root}/proc/sysinfo"; then
200             echo ibm_systemz-zvm
201         elif grep -q '^LPAR' "${root}/proc/sysinfo"; then
202             echo ibm_systemz-lpar
203         else
204             # This is unlikely to be correct.
205             echo ibm_systemz-direct
206         fi
207     fi
208 fi
209
210 # Check for Parallels.
211 if echo "$dmi" | grep -q 'Vendor: Parallels'; then
212     echo parallels
213     skip_qemu_kvm=true
214 fi
215
216 # Check for oVirt/RHEV.
217 if echo "$dmi" | grep -q 'Manufacturer: oVirt'; then
218     echo ovirt
219 fi
220 if echo "$dmi" | grep -q 'Product Name: RHEV Hypervisor'; then
221     echo rhev
222 fi
223
224 # Check for Xen.
225
226 if [ "$cpuid" = "XenVMMXenVMM" ]; then
227     echo xen; echo xen-hvm
228     skip_qemu_kvm=true
229 elif [ -d "${root}/proc/xen" ]; then
230     echo xen
231     if grep -q "control_d" "${root}/proc/xen/capabilities" 2>/dev/null; then
232         echo xen-dom0
233     else
234         echo xen-domU
235     fi
236     skip_qemu_kvm=true
237     skip_lkvm=true
238 elif [ -f "${root}/sys/hypervisor/type" ] &&
239     grep -q "xen" "${root}/sys/hypervisor/type"; then
240     # Ordinary kernel with pv_ops.  There does not seem to be
241     # enough information at present to tell whether this is dom0
242     # or domU.  XXX
243     echo xen
244 elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then
245     if [ -d "${root}/proc/device-tree/hypervisor" ] &&
246         grep -q "xen" "${root}/proc/device-tree/hypervisor/compatible"; then
247         echo xen
248         skip_qemu_kvm=true
249         skip_lkvm=true
250     fi
251 elif [ "$arch" = "ia64" ]; then
252     if [ -d "${root}/sys/bus/xen" -a ! -d "${root}/sys/bus/xen-backend" ]; then
253         # PV-on-HVM drivers installed in a Xen guest.
254         echo xen
255         echo xen-hvm
256     else
257         # There is no virt leaf on IA64 HVM.  This is a last-ditch
258         # attempt to detect something is virtualized by using a
259         # timing attack.
260         virt-what-ia64-xen-rdtsc-test > /dev/null 2>&1
261         case "$?" in
262             0) ;; # not virtual
263             1) # Could be some sort of virt, or could just be a bit slow.
264                 echo virt
265         esac
266     fi
267 fi
268
269 # Check for QEMU/KVM.
270 #
271 # Parallels exports KVMKVMKVM leaf, so skip this test if we've already
272 # seen that it's Parallels.  Xen uses QEMU as the device model, so
273 # skip this test if we know it is Xen.
274
275 if ! "$skip_qemu_kvm"; then
276     if [ "$cpuid" = "KVMKVMKVM" ]; then
277         echo kvm
278     elif echo "$dmi" | grep -q 'Product Name: KVM'; then
279         echo kvm
280         skip_lkvm=true
281     elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then
282         # The test for KVM above failed, so now we know we're
283         # not using KVM acceleration.
284         echo qemu
285         skip_lkvm=true
286     elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then
287         if [ -d "${root}/proc/device-tree" ] &&
288             ls "${root}/proc/device-tree" | grep -q "fw-cfg"; then
289             # We don't have enough information to determine if we're
290             # using KVM acceleration or not.
291             echo qemu
292             skip_lkvm=true
293         fi
294     elif [ -d /proc/device-tree/hypervisor ] &&
295          grep -q "linux,kvm" /proc/device-tree/hypervisor/compatible; then
296         # We are running as a spapr KVM guest on ppc64
297         echo kvm
298         skip_lkvm=true
299     else
300         # XXX This is known to fail for qemu with the explicit -cpu
301         # option, since /proc/cpuinfo will not contain the QEMU
302         # string.  The long term fix for this would be to export
303         # another CPUID leaf for non-accelerated qemu.
304         if grep -q 'QEMU' "${root}/proc/cpuinfo"; then
305             echo qemu
306         fi
307     fi
308 fi
309
310 if ! "$skip_lkvm"; then
311     if [ "$cpuid" = "LKVMLKVMLKVM" ]; then
312         echo lkvm
313     elif [ "$arch" = "arm" ] || [ "$arch" = "aarch64" ]; then
314         if [ -d "${root}/proc/device-tree" ] &&
315             grep -q "dummy-virt" "${root}/proc/device-tree/compatible"; then
316             echo lkvm
317         fi
318     fi
319 fi
320
321 # Check for Docker.
322 if [ -f "${root}/.dockerinit" ]; then
323     echo docker
324 fi
325
326 # Check ppc64 lpar, kvm or powerkvm
327
328 # example /proc/cpuinfo line indicating 'not baremetal'
329 # platform  : pSeries
330 #
331 # example /proc/ppc64/lparcfg systemtype line
332 # system_type=IBM pSeries (emulated by qemu)
333
334 if [ "$arch" = "ppc64" ]; then
335     if have_cpuinfo && grep -q 'platform.**pSeries' "${root}/proc/cpuinfo"; then
336         if grep -q 'model.*emulated by qemu' "${root}/proc/cpuinfo"; then
337                 echo ibm_power-kvm
338         else
339             # Assume LPAR, now detect shared or dedicated
340             if grep -q 'shared_processor_mode=1' "${root}/proc/ppc64/lparcfg"; then
341                 echo ibm_power-lpar_shared
342             else
343                 echo ibm_power-lpar_dedicated
344             fi
345         # detect powerkvm?
346         fi
347     fi
348 fi