Confirm Microsoft Hyper-V, and add a regression test.
[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
85 dmi=`LANG=C dmidecode 2>&1`
86
87 # Check for VMware.
88 # cpuid check added by Chetan Loke.
89
90 if [ "$cpuid" = "VMwareVMware" ]; then
91     echo vmware
92 elif echo "$dmi" | grep -q 'Manufacturer: VMware'; then
93     echo vmware
94 fi
95
96 # Check for Hyper-V.
97 # http://blogs.msdn.com/b/sqlosteam/archive/2010/10/30/is-this-real-the-metaphysics-of-hardware-virtualization.aspx
98 if [ "$cpuid" = "Microsoft Hv" ]; then
99     echo hyperv
100 fi
101
102 # Check for VirtualPC.
103 # The negative check for cpuid is to distinguish this from Hyper-V
104 # which also has the same manufacturer string in the SM-BIOS data.
105 if [ "$cpuid" != "Microsoft Hv" ] &&
106     echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
107     echo virtualpc
108 fi
109
110 # Check for VirtualBox.
111 # Added by Laurent Léonard.
112 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
113     echo virtualbox
114 fi
115
116 # Check for OpenVZ / Virtuozzo.
117 # Added by Evgeniy Sokolov.
118 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
119 # container)
120 # /proc/bc - exists on node, but not inside container.
121
122 if [ -d $root/proc/vz -a ! -d $root/proc/bc ]; then
123     echo openvz
124 fi
125
126 # Check for Linux-VServer
127 if cat $root/proc/self/status | grep -q "VxID: [0-9]*"; then
128     echo linux_vserver
129 fi
130
131 # Check for UML.
132 # Added by Laurent Léonard.
133 if grep -q 'UML' $root/proc/cpuinfo; then
134     echo uml
135 fi
136
137 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
138 if grep -q '^vendor_id.*PowerVM Lx86' $root/proc/cpuinfo; then
139     echo powervm_lx86
140 fi
141
142 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
143 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
144    echo "$dmi" | grep -q 'Product.*HVM LPAR'; then
145     echo virtage
146 fi
147
148 # Check for IBM SystemZ.
149 if grep -q '^vendor_id.*IBM/S390' $root/proc/cpuinfo; then
150     echo ibm_systemz
151     if [ -f $root/proc/sysinfo ]; then
152         if grep -q 'VM.*Control Program.*z/VM' $root/proc/sysinfo; then
153             echo ibm_systemz-zvm
154         elif grep -q '^LPAR' $root/proc/sysinfo; then
155             echo ibm_systemz-lpar
156         else
157             # This is unlikely to be correct.
158             echo ibm_systemz-direct
159         fi
160     fi
161 fi
162
163 # Check for Parallels.
164 if echo "$dmi" | grep -q 'Vendor: Parallels'; then
165     echo parallels
166 fi
167
168 # Check for Xen.
169
170 if [ "$cpuid" = "XenVMMXenVMM" ]; then
171     echo xen; echo xen-hvm
172     is_xen=1
173 elif [ -f $root/proc/xen/capabilities ]; then
174     echo xen
175     if grep -q "control_d" $root/proc/xen/capabilities; then
176         echo xen-dom0
177     else
178         echo xen-domU
179     fi
180     is_xen=1
181 elif [ -f $root/sys/hypervisor/type ] &&
182     grep -q "xen" $root/sys/hypervisor/type; then
183     # Ordinary kernel with pv_ops.  There does not seem to be
184     # enough information at present to tell whether this is dom0
185     # or domU.  XXX
186     echo xen
187 fi
188
189 # Check for QEMU/KVM.
190
191 if [ ! "$is_xen" ]; then
192     # Disable this test if we know this is Xen already, because Xen
193     # uses QEMU for its device model.
194
195     if grep -q 'QEMU' $root/proc/cpuinfo; then
196         if [ "$cpuid" = "KVMKVMKVM" ]; then
197             echo kvm
198         else
199             echo qemu
200         fi
201     fi
202 fi