Add test files to EXTRA_DIST.
[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 UML.
125 # Added by Laurent Léonard.
126 if grep -q 'UML' $root/proc/cpuinfo; then
127     echo uml
128 fi
129
130 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
131 if grep -q '^vendor_id.*PowerVM Lx86' $root/proc/cpuinfo; then
132     echo powervm_lx86
133 fi
134
135 # Check for Hitachi Virtualization Manager (HVM) Virtage logical partitioning.
136 if echo "$dmi" | grep -q 'Manufacturer.*HITACHI' &&
137    echo "$dmi" | grep -q 'Product.*HVM LPAR'; then
138     echo virtage
139 fi
140
141 # Check for Xen.
142
143 if [ "$cpuid" = "XenVMMXenVMM" ]; then
144     echo xen; echo xen-hvm
145     is_xen=1
146 elif [ -f $root/proc/xen/capabilities ]; then
147     echo xen
148     if grep -q "control_d" $root/proc/xen/capabilities; then
149         echo xen-dom0
150     else
151         echo xen-domU
152     fi
153     is_xen=1
154 elif [ -d $root/proc/xen ]; then
155     # This directory can be present when Xen paravirt drivers are
156     # installed, even on baremetal.  Don't confuse people by
157     # printing anything.
158     :
159 fi
160
161 # Check for QEMU/KVM.
162
163 if [ ! "$is_xen" ]; then
164     # Disable this test if we know this is Xen already, because Xen
165     # uses QEMU for its device model.
166
167     if grep -q 'QEMU' $root/proc/cpuinfo; then
168         if [ "$cpuid" = "KVMKVMKVM" ]; then
169             echo kvm
170         else
171             echo qemu
172         fi
173     fi
174 fi