Add detection of IBM PowerVM Lx86 Linux/x86 emulator.
[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 -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         -v|--version) echo $VERSION; exit 0 ;;
54         --) shift; break ;;
55         *) fail "internal error" ;;
56     esac
57 done
58
59 # Check we're running as root.
60
61 uid=`id -u`
62 if [ "$uid" != 0 ]; then
63     fail "this script must be run as root"
64 fi
65
66 # Add /sbin and /usr/sbin to the path so we can find system
67 # binaries like dmicode.
68 # Add /usr/libexec to the path so we can find the helper binary.
69 prefix=@prefix@
70 exec_prefix=@exec_prefix@
71 PATH=@libexecdir@:/sbin:/usr/sbin:$PATH
72
73 # Many fullvirt hypervisors give an indication through CPUID.  Use the
74 # helper program to get this information.
75
76 cpuid=`virt-what-cpuid-helper`
77
78 # Check for various products in the BIOS information.
79
80 dmi=`dmidecode 2>&1`
81
82 # Check for VMware.
83 # cpuid check added by Chetan Loke.
84
85 if [ "$cpuid" = "VMwareVMware" ]; then
86     echo vmware
87 elif echo "$dmi" | grep -q 'Manufacturer: VMware'; then
88     echo vmware
89 fi
90
91 # Check for Hyper-V.
92 # http://blogs.msdn.com/b/sqlosteam/archive/2010/10/30/is-this-real-the-metaphysics-of-hardware-virtualization.aspx
93 if [ "$cpuid" = "Microsoft Hv" ]; then
94     echo hyperv
95 fi
96
97 # Check for VirtualPC.
98
99 if echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
100     echo virtualpc
101 fi
102
103 # Check for VirtualBox.
104 # Added by Laurent Léonard.
105 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
106     echo virtualbox
107 fi
108
109 # Check for OpenVZ / Virtuozzo.
110 # Added by Evgeniy Sokolov.
111 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
112 # container)
113 # /proc/bc - exists on node, but not inside container.
114
115 if [ -d /proc/vz -a ! -d /proc/bc ]; then
116     echo openvz
117 fi
118
119 # Check for UML.
120 # Added by Laurent Léonard.
121 if grep -q 'UML' /proc/cpuinfo; then
122     echo uml
123 fi
124
125 # Check for IBM PowerVM Lx86 Linux/x86 emulator.
126 if grep -q '^vendor_id.*PowerVM Lx86' /proc/cpuinfo; then
127     echo powervm_lx86
128 fi
129
130 # Check for Xen.
131
132 if [ "$cpuid" = "XenVMMXenVMM" ]; then
133     echo xen; echo xen-hvm
134     is_xen=1
135 elif [ -f /proc/xen/capabilities ]; then
136     echo xen
137     if grep -q "control_d" /proc/xen/capabilities; then
138         echo xen-dom0
139     else
140         echo xen-domU
141     fi
142     is_xen=1
143 elif [ -d /proc/xen ]; then
144     # This directory can be present when Xen paravirt drivers are
145     # installed, even on baremetal.  Don't confuse people by
146     # printing anything.
147     :
148 fi
149
150 # Check for QEMU/KVM.
151
152 if [ ! "$is_xen" ]; then
153     # Disable this test if we know this is Xen already, because Xen
154     # uses QEMU for its device model.
155
156     if grep -q 'QEMU' /proc/cpuinfo; then
157         if [ "$cpuid" = "KVMKVMKVM" ]; then
158             echo kvm
159         else
160             echo qemu
161         fi
162     fi
163 fi