Copy initial release from CVS.
[virt-what.git] / virt-what.sh
1 #!/bin/bash -
2 #
3 # Copyright (C) 2008 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 OpenVZ / Virtuozzo.
81 # Added by Evgeniy Sokolov.
82 # /proc/vz - always exists if OpenVZ kernel is running (inside and outside
83 # container)
84 # /proc/bc - exists on node, but not inside container.
85
86 if [ -d /proc/vz -a ! -d /proc/bc ]; then
87     echo openvz
88 fi
89
90 # Check for Xen.
91
92 if [ -f /proc/xen/privcmd ]; then
93     echo xen; echo xen-dom0
94     is_xen=1
95 elif [ -f /proc/xen/capabilities ]; then
96     echo xen; echo xen-domU
97     is_xen=1
98 elif [ -d /proc/xen ]; then
99     # This directory can be present when Xen paravirt drivers are
100     # installed, even on baremetal.  Don't confuse people by
101     # printing anything.
102     :
103 fi
104
105 # Check for QEMU/KVM.
106
107 if [ ! "$is_xen" ]; then
108     # Disable this test if we know this is Xen already, because Xen
109     # uses QEMU for its device model.
110
111     if grep -q 'QEMU' /proc/cpuinfo; then
112         # XXX How to distinguish between QEMU & KVM?
113         echo qemu
114     fi
115 fi