Add /sys/hypervisor test files from RHEL 5 Xen Dom0.
[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
104 if echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
105     echo virtualpc
106 fi
107
108 # Check for VirtualBox.
109 # Added by Laurent Léonard.
110 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
111     echo virtualbox
112 fi
113
114 # Check for OpenVZ / Virtuozzo.
115 # Added by Evgeniy Sokolov.
116 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
117 # container)
118 # /proc/bc - exists on node, but not inside container.
119
120 if [ -d $root/proc/vz -a ! -d $root/proc/bc ]; then
121     echo openvz
122 fi
123
124 # Check for Linux-VServer
125 if cat $root/proc/self/status | grep -q "VxID: [0-9]*"; then
126     echo linux_vserver
127 fi
128
129 # Check for UML.
130 # Added by Laurent Léonard.
131 if grep -q 'UML' $root/proc/cpuinfo; then
132     echo uml
133 fi
134
135 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
136 if grep -q '^vendor_id.*PowerVM Lx86' $root/proc/cpuinfo; then
137     echo powervm_lx86
138 fi
139
140 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
141 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
142    echo "$dmi" | grep -q 'Product.*HVM LPAR'; then
143     echo virtage
144 fi
145
146 # Check for IBM SystemZ.
147 if grep -q '^vendor_id.*IBM/S390' $root/proc/cpuinfo; then
148     echo ibm_systemz
149     if [ -f $root/proc/sysinfo ]; then
150         if grep -q 'VM.*Control Program.*z/VM' $root/proc/sysinfo; then
151             echo ibm_systemz-zvm
152         elif grep -q '^LPAR' $root/proc/sysinfo; then
153             echo ibm_systemz-lpar
154         else
155             # This is unlikely to be correct.
156             echo ibm_systemz-direct
157         fi
158     fi
159 fi
160
161 # Check for Xen.
162
163 if [ "$cpuid" = "XenVMMXenVMM" ]; then
164     echo xen; echo xen-hvm
165     is_xen=1
166 elif [ -f $root/proc/xen/capabilities ]; then
167     echo xen
168     if grep -q "control_d" $root/proc/xen/capabilities; then
169         echo xen-dom0
170     else
171         echo xen-domU
172     fi
173     is_xen=1
174 elif [ -f $root/sys/hypervisor/type ] &&
175     grep -q "xen" $root/sys/hypervisor/type; then
176     # Ordinary kernel with pv_ops.  There does not seem to be
177     # enough information at present to tell whether this is dom0
178     # or domU.  XXX
179     echo xen
180 fi
181
182 # Check for QEMU/KVM.
183
184 if [ ! "$is_xen" ]; then
185     # Disable this test if we know this is Xen already, because Xen
186     # uses QEMU for its device model.
187
188     if grep -q 'QEMU' $root/proc/cpuinfo; then
189         if [ "$cpuid" = "KVMKVMKVM" ]; then
190             echo kvm
191         else
192             echo qemu
193         fi
194     fi
195 fi