ebea7a17788fb9719a016948d4f3fcc6497017b3
[virt-what.git] / virt-what.in
1 #!/bin/bash -
2 # @configure_input@
3 # Copyright (C) 2008-2009 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 PATH=/sbin:/usr/sbin:$PATH
67
68 # Check for various products in the BIOS information.
69
70 dmi=`dmidecode 2>&1`
71
72 if echo "$dmi" | grep -q 'Manufacturer: VMware'; then
73     echo vmware
74 fi
75
76 if echo "$dmi" | grep -q 'Manufacturer: Microsoft Corporation'; then
77     echo virtualpc
78 fi
79
80 # Check for VirtualBox.
81
82 if echo "$dmi" | grep -q 'Manufacturer: innotek GmbH'; then
83     echo virtualbox
84 fi
85
86 # Check for OpenVZ / Virtuozzo.
87 # Added by Evgeniy Sokolov.
88 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
89 # container)
90 # /proc/bc - exists on node, but not inside container.
91
92 if [ -d /proc/vz -a ! -d /proc/bc ]; then
93     echo openvz
94 fi
95
96 # Check for UML.
97
98 if grep -q 'UML' /proc/cpuinfo; then
99     echo uml
100 fi
101
102 # To tell if it is Xen and KVM HVM (fully virtualized) we can use this
103 # helper C program.
104
105 cpuid=`virt-what-cpuid-helper`
106
107 # Check for Xen.
108
109 if [ "$cpuid" = "XenVMMXenVMM" ]; then
110     echo xen; echo xen-hvm
111     is_xen=1
112 elif [ -f /proc/xen/privcmd ]; then
113     echo xen; echo xen-dom0
114     is_xen=1
115 elif [ -f /proc/xen/capabilities ]; then
116     echo xen; echo xen-domU
117     is_xen=1
118 elif [ -d /proc/xen ]; then
119     # This directory can be present when Xen paravirt drivers are
120     # installed, even on baremetal.  Don't confuse people by
121     # printing anything.
122     :
123 fi
124
125 # Check for QEMU/KVM.
126
127 if [ ! "$is_xen" ]; then
128     # Disable this test if we know this is Xen already, because Xen
129     # uses QEMU for its device model.
130
131     if grep -q 'QEMU' /proc/cpuinfo; then
132         if [ "$cpuid" = "KVMKVMKVM" ]; then
133             echo kvm
134         else
135             echo qemu
136         fi
137     fi
138 fi