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