From 39d8969ae8375a93e7e51364d4e8190cb513401b Mon Sep 17 00:00:00 2001 From: CentOS Sources Date: Tue, 28 Mar 2023 09:33:30 +0000 Subject: [PATCH] import virt-what-1.25-3.el9 --- .gitignore | 1 + .virt-what.metadata | 1 + ...arrange-lxc-test-to-avoid-use-of-cat.patch | 27 + ...ker-and-podman-tests-up-add-comments.patch | 83 ++ ...location-of-test-file-proc-1-environ.patch | 36 + SOURCES/0004-Detect-OCI-containers.patch | 888 ++++++++++++++++++ ...support-for-Alibaba-cloud-on-aarch64.patch | 371 ++++++++ SOURCES/copy-patches.sh | 61 ++ SPECS/virt-what.spec | 301 ++++++ 9 files changed, 1769 insertions(+) create mode 100644 .gitignore create mode 100644 .virt-what.metadata create mode 100644 SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch create mode 100644 SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch create mode 100644 SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch create mode 100644 SOURCES/0004-Detect-OCI-containers.patch create mode 100644 SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch create mode 100755 SOURCES/copy-patches.sh create mode 100644 SPECS/virt-what.spec diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..05fb7c9 --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +SOURCES/virt-what-1.25.tar.gz diff --git a/.virt-what.metadata b/.virt-what.metadata new file mode 100644 index 0000000..a8fd8a8 --- /dev/null +++ b/.virt-what.metadata @@ -0,0 +1 @@ +dcbec6a76eddadd63b5139e296e28f600201c37f SOURCES/virt-what-1.25.tar.gz diff --git a/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch b/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch new file mode 100644 index 0000000..4446201 --- /dev/null +++ b/SOURCES/0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch @@ -0,0 +1,27 @@ +From a29d4a5632ff9f60f939e4f0f36ce97ed43c5650 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Thu, 22 Dec 2022 10:31:47 +0000 +Subject: [PATCH] Rearrange lxc test to avoid use of cat + +Thanks: Elias Probst +--- + virt-what.in | 3 ++- + 1 file changed, 2 insertions(+), 1 deletion(-) + +diff --git a/virt-what.in b/virt-what.in +index d090898e5..170bc24ab 100644 +--- a/virt-what.in ++++ b/virt-what.in +@@ -175,7 +175,8 @@ fi + # Added by Marc Fournier + + if [ -e "${root}/proc/1/environ" ] && +- cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=lxc'; then ++ tr '\000' '\n' < "${root}/proc/1/environ" | ++ grep -Eiq '^container=lxc'; then + echo lxc + fi + +-- +2.31.1 + diff --git a/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch b/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch new file mode 100644 index 0000000..10b115c --- /dev/null +++ b/SOURCES/0002-Move-docker-and-podman-tests-up-add-comments.patch @@ -0,0 +1,83 @@ +From 57966df6adddbebc4f4a6b9db7680d99344b0b1c Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Thu, 22 Dec 2022 10:34:03 +0000 +Subject: [PATCH] Move docker and podman tests up, add comments + +Refactor to bring related tests closer together and make the comments +more uniform. +--- + virt-what.in | 31 +++++++++++++++---------------- + 1 file changed, 15 insertions(+), 16 deletions(-) + +diff --git a/virt-what.in b/virt-what.in +index 170bc24ab..c6e4a1e00 100644 +--- a/virt-what.in ++++ b/virt-what.in +@@ -165,7 +165,6 @@ fi + # /proc/vz - always exists if OpenVZ kernel is running (inside and outside + # container) + # /proc/bc - exists on node, but not inside container. +- + if [ -d "${root}/proc/vz" -a ! -d "${root}/proc/bc" ]; then + echo openvz + fi +@@ -173,13 +172,13 @@ fi + # Check for LXC containers + # http://www.freedesktop.org/wiki/Software/systemd/ContainerInterface + # Added by Marc Fournier +- + if [ -e "${root}/proc/1/environ" ] && + tr '\000' '\n' < "${root}/proc/1/environ" | + grep -Eiq '^container=lxc'; then + echo lxc + fi + ++# Check for Illumos LX + if [ -e "${root}/proc/1/environ" ] && + tr '\0' '\n' < "${root}/proc/1/environ" | grep -q '^container=zone$' && + [ -e "${root}/proc/version" ] && +@@ -187,6 +186,20 @@ if [ -e "${root}/proc/1/environ" ] && + echo illumos-lx + fi + ++# Check for Docker. ++if [ -f "${root}/.dockerenv" ] || [ -f "${root}/.dockerinit" ] || \ ++ grep -qF /docker/ "${root}/proc/self/cgroup" 2>/dev/null; then ++ echo docker ++fi ++ ++# Check for Podman. ++if [ -e "${root}/proc/1/environ" ] && ++ cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then ++ echo podman ++elif grep -qF /libpod- "${root}/proc/self/cgroup" 2>/dev/null; then ++ echo podman ++fi ++ + # Check for Linux-VServer + if test -e "${root}/proc/self/status" \ + && cat "${root}/proc/self/status" | grep -q "VxID: [0-9]*"; then +@@ -381,20 +394,6 @@ if ! "$skip_lkvm"; then + fi + fi + +-# Check for Docker. +-if [ -f "${root}/.dockerenv" ] || [ -f "${root}/.dockerinit" ] || \ +- grep -qF /docker/ "${root}/proc/self/cgroup" 2>/dev/null; then +- echo docker +-fi +- +-# Check for Podman. +-if [ -e "${root}/proc/1/environ" ] && +- cat "${root}/proc/1/environ" | tr '\000' '\n' | grep -Eiq '^container=podman'; then +- echo podman +-elif grep -qF /libpod- "${root}/proc/self/cgroup" 2>/dev/null; then +- echo podman +-fi +- + # Check ppc64 lpar, kvm or powerkvm + + # example /proc/cpuinfo line indicating 'not baremetal' +-- +2.31.1 + diff --git a/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch b/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch new file mode 100644 index 0000000..2ddd094 --- /dev/null +++ b/SOURCES/0003-podman-Fix-location-of-test-file-proc-1-environ.patch @@ -0,0 +1,36 @@ +From 1cbcbb801c86f8f791ecd930c4ac311f034e3e1a Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Thu, 5 Jan 2023 12:48:55 +0000 +Subject: [PATCH] podman: Fix location of test file /proc/1/environ + +Since it was at the wrong location, the file was not even used by the +test. + +Fixes: commit 1df728aa4b ("Add podman support") +--- + tests/podman/Makefile.am | 2 +- + tests/podman/{ => proc}/1/environ | Bin + 2 files changed, 1 insertion(+), 1 deletion(-) + rename tests/podman/{ => proc}/1/environ (100%) + +diff --git a/tests/podman/Makefile.am b/tests/podman/Makefile.am +index 2962f3237..1745ef6c6 100644 +--- a/tests/podman/Makefile.am ++++ b/tests/podman/Makefile.am +@@ -20,8 +20,8 @@ CLEANFILES = *~ + TESTS = test.sh + + EXTRA_DIST = \ +- 1/environ \ + test.sh \ ++ proc/1/environ \ + proc/cpuinfo \ + proc/self/cgroup \ + proc/self/status \ +diff --git a/tests/podman/1/environ b/tests/podman/proc/1/environ +similarity index 100% +rename from tests/podman/1/environ +rename to tests/podman/proc/1/environ +-- +2.31.1 + diff --git a/SOURCES/0004-Detect-OCI-containers.patch b/SOURCES/0004-Detect-OCI-containers.patch new file mode 100644 index 0000000..f8e9a57 --- /dev/null +++ b/SOURCES/0004-Detect-OCI-containers.patch @@ -0,0 +1,888 @@ +From 54c2ad4a764658ec8a9aadc52c749eabf1de73a0 Mon Sep 17 00:00:00 2001 +From: "Richard W.M. Jones" +Date: Thu, 5 Jan 2023 12:34:02 +0000 +Subject: [PATCH] Detect OCI containers + +Podman using OCI containers sets container=oci in PID 1's environment. +Detect that and print "oci" fact. + +This patch was originally contributed by Alessandro Valentini. I +modified it and added tests and documentation. + +Reported-by: Alessandro Valentini +Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2155233 +--- + configure.ac | 2 + + tests/oci/Makefile.am | 28 ++ + tests/oci/proc/1/environ | Bin 0 -> 124 bytes + tests/oci/proc/cpuinfo | 671 ++++++++++++++++++++++++++ + tests/oci/sbin/dmidecode | 7 + + tests/oci/sbin/uname | 2 + + tests/oci/sbin/virt-what-cpuid-helper | 2 + + tests/oci/test.sh | 32 ++ + virt-what.in | 6 + + virt-what.pod | 8 +- + 10 files changed, 757 insertions(+), 1 deletion(-) + create mode 100644 tests/oci/Makefile.am + create mode 100644 tests/oci/proc/1/environ + create mode 100644 tests/oci/proc/cpuinfo + create mode 100755 tests/oci/sbin/dmidecode + create mode 100755 tests/oci/sbin/uname + create mode 100755 tests/oci/sbin/virt-what-cpuid-helper + create mode 100755 tests/oci/test.sh + +diff --git a/configure.ac b/configure.ac +index 8f808a38b..a80a4b6f0 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -56,6 +56,7 @@ tests="\ + lx86 \ + lxc \ + nutanix-ahv \ ++ oci \ + parallels-desktop \ + podman \ + ppc64-baremetal \ +@@ -104,6 +105,7 @@ AC_CONFIG_FILES([Makefile + tests/lx86/Makefile + tests/lxc/Makefile + tests/nutanix-ahv/Makefile ++ tests/oci/Makefile + tests/parallels-desktop/Makefile + tests/podman/Makefile + tests/ppc64-baremetal/Makefile +diff --git a/tests/oci/Makefile.am b/tests/oci/Makefile.am +new file mode 100644 +index 000000000..b2f6f2469 +--- /dev/null ++++ b/tests/oci/Makefile.am +@@ -0,0 +1,28 @@ ++# Makefile for virt-what ++# Copyright (C) 2008-2023 Red Hat Inc. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ ++CLEANFILES = *~ ++ ++TESTS = test.sh ++ ++EXTRA_DIST = \ ++ test.sh \ ++ proc/1/environ \ ++ proc/cpuinfo \ ++ sbin/dmidecode \ ++ sbin/uname \ ++ sbin/virt-what-cpuid-helper +diff --git a/tests/oci/proc/1/environ b/tests/oci/proc/1/environ +new file mode 100644 +index 0000000000000000000000000000000000000000..03d40a45377eaeccef15532734d2f5b7fd42234e +GIT binary patch +literal 124 +zcmWG=4DqnlFD)+8&&f|t%+W7S%FMGu;={QJ39t}^3uH2cxCZ&!R+OX` ++ ++The guest is running in an OCI container. ++ ++Status: contributed by Alessandro Valentini, confirmed by RWMJ ++ + =item B + + The guest appears to be running inside an OpenVZ or Virtuozzo +@@ -226,7 +232,7 @@ Status: contributed by Justin Clift + + =item B + +-This is a Podman container. ++This is a Podman container. (See also C above.) + + Status: contributed by Jordan Webb + +-- +2.31.1 + diff --git a/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch b/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch new file mode 100644 index 0000000..0043482 --- /dev/null +++ b/SOURCES/0005-Add-support-for-Alibaba-cloud-on-aarch64.patch @@ -0,0 +1,371 @@ +From 034981d94bf4ccac4159f013f2d4e2476a23d7e7 Mon Sep 17 00:00:00 2001 +From: Yongkui Guo +Date: Mon, 30 Jan 2023 18:20:32 +0800 +Subject: [PATCH] Add support for Alibaba cloud on aarch64 + +This assumes you are running RHEL or another tenant which supports +ACPI. It probably won't work for guests using device tree. + +Also we assume that the hypervisor is KVM. Since the hypervisor +indicates that it is RHEL 7, this is very likely to be true, but hard +to prove since there is no CPUID on Arm. + +Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=2165285 +(cherry picked from commit 805604762468b754ea60e5dc176fa26f68d211b8) +--- + configure.ac | 2 + + tests/alibaba-cloud-arm/Makefile.am | 28 +++++ + tests/alibaba-cloud-arm/proc/cpuinfo | 18 +++ + tests/alibaba-cloud-arm/proc/self/status | 57 +++++++++ + tests/alibaba-cloud-arm/sbin/dmidecode | 116 ++++++++++++++++++ + tests/alibaba-cloud-arm/sbin/uname | 2 + + .../sbin/virt-what-cpuid-helper | 3 + + tests/alibaba-cloud-arm/test.sh | 33 +++++ + virt-what.in | 5 + + 9 files changed, 264 insertions(+) + create mode 100644 tests/alibaba-cloud-arm/Makefile.am + create mode 100644 tests/alibaba-cloud-arm/proc/cpuinfo + create mode 100644 tests/alibaba-cloud-arm/proc/self/status + create mode 100755 tests/alibaba-cloud-arm/sbin/dmidecode + create mode 100755 tests/alibaba-cloud-arm/sbin/uname + create mode 100755 tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper + create mode 100755 tests/alibaba-cloud-arm/test.sh + +diff --git a/configure.ac b/configure.ac +index a80a4b6f0..cfb7ca371 100644 +--- a/configure.ac ++++ b/configure.ac +@@ -34,6 +34,7 @@ AM_CONDITIONAL([HOST_CPU_IA64], [ test "x$host_cpu" = "xia64" ]) + + dnl List of tests. + tests="\ ++ alibaba-cloud-arm \ + alibaba-cloud-x86 \ + aws-baremetal-x86 \ + aws-kvm-arm \ +@@ -83,6 +84,7 @@ AC_CONFIG_HEADERS([config.h]) + AC_CONFIG_FILES([virt-what],[chmod +x virt-what]) + AC_CONFIG_FILES([Makefile + tests/Makefile ++ tests/alibaba-cloud-arm/Makefile + tests/alibaba-cloud-x86/Makefile + tests/aws-baremetal-x86/Makefile + tests/aws-kvm-arm/Makefile +diff --git a/tests/alibaba-cloud-arm/Makefile.am b/tests/alibaba-cloud-arm/Makefile.am +new file mode 100644 +index 000000000..09ce07861 +--- /dev/null ++++ b/tests/alibaba-cloud-arm/Makefile.am +@@ -0,0 +1,28 @@ ++# Makefile for virt-what ++# Copyright (C) 2008-2023 Red Hat Inc. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ ++CLEANFILES = *~ ++ ++TESTS = test.sh ++ ++EXTRA_DIST = \ ++ test.sh \ ++ proc/cpuinfo \ ++ proc/self/status \ ++ sbin/dmidecode \ ++ sbin/uname \ ++ sbin/virt-what-cpuid-helper +diff --git a/tests/alibaba-cloud-arm/proc/cpuinfo b/tests/alibaba-cloud-arm/proc/cpuinfo +new file mode 100644 +index 000000000..03dbb22ab +--- /dev/null ++++ b/tests/alibaba-cloud-arm/proc/cpuinfo +@@ -0,0 +1,18 @@ ++processor : 0 ++BogoMIPS : 50.00 ++Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp ssbs ++CPU implementer : 0x41 ++CPU architecture: 8 ++CPU variant : 0x3 ++CPU part : 0xd0c ++CPU revision : 1 ++ ++processor : 1 ++BogoMIPS : 50.00 ++Features : fp asimd evtstrm aes pmull sha1 sha2 crc32 atomics fphp asimdhp cpuid asimdrdm lrcpc dcpop asimddp ssbs ++CPU implementer : 0x41 ++CPU architecture: 8 ++CPU variant : 0x3 ++CPU part : 0xd0c ++CPU revision : 1 ++ +diff --git a/tests/alibaba-cloud-arm/proc/self/status b/tests/alibaba-cloud-arm/proc/self/status +new file mode 100644 +index 000000000..08c63e9cb +--- /dev/null ++++ b/tests/alibaba-cloud-arm/proc/self/status +@@ -0,0 +1,57 @@ ++Name: cat ++Umask: 0022 ++State: R (running) ++Tgid: 6341 ++Ngid: 0 ++Pid: 6341 ++PPid: 1588 ++TracerPid: 0 ++Uid: 0 0 0 0 ++Gid: 0 0 0 0 ++FDSize: 256 ++Groups: 0 ++NStgid: 6341 ++NSpid: 6341 ++NSpgid: 6341 ++NSsid: 1588 ++VmPeak: 2352 kB ++VmSize: 2352 kB ++VmLck: 0 kB ++VmPin: 0 kB ++VmHWM: 768 kB ++VmRSS: 768 kB ++RssAnon: 80 kB ++RssFile: 688 kB ++RssShmem: 0 kB ++VmData: 348 kB ++VmStk: 132 kB ++VmExe: 24 kB ++VmLib: 1728 kB ++VmPTE: 44 kB ++VmSwap: 0 kB ++HugetlbPages: 0 kB ++CoreDumping: 0 ++THP_enabled: 1 ++Threads: 1 ++SigQ: 0/29002 ++SigPnd: 0000000000000000 ++ShdPnd: 0000000000000000 ++SigBlk: 0000000000000000 ++SigIgn: 0000000000000000 ++SigCgt: 0000000000000000 ++CapInh: 0000000000000000 ++CapPrm: 000001ffffffffff ++CapEff: 000001ffffffffff ++CapBnd: 000001ffffffffff ++CapAmb: 0000000000000000 ++NoNewPrivs: 0 ++Seccomp: 0 ++Seccomp_filters: 0 ++Speculation_Store_Bypass: thread vulnerable ++SpeculationIndirectBranch: unknown ++Cpus_allowed: 3 ++Cpus_allowed_list: 0-1 ++Mems_allowed: 00000000,00000001 ++Mems_allowed_list: 0 ++voluntary_ctxt_switches: 0 ++nonvoluntary_ctxt_switches: 0 +diff --git a/tests/alibaba-cloud-arm/sbin/dmidecode b/tests/alibaba-cloud-arm/sbin/dmidecode +new file mode 100755 +index 000000000..89fa9a34b +--- /dev/null ++++ b/tests/alibaba-cloud-arm/sbin/dmidecode +@@ -0,0 +1,116 @@ ++#!/bin/sh - ++cat <<'EOF' ++# dmidecode 3.3 ++Getting SMBIOS data from sysfs. ++SMBIOS 3.0.0 present. ++Table at 0x2348C0000. ++ ++Handle 0x0100, DMI type 1, 27 bytes ++System Information ++ Manufacturer: Alibaba Cloud ++ Product Name: Alibaba Cloud ECS ++ Version: virt-rhel7.6.0 ++ Serial Number: 8c43355a-242e-42c2-bdf7-9fae99316221 ++ UUID: 8c43355a-242e-42c2-bdf7-9fae99316221 ++ Wake-up Type: Power Switch ++ SKU Number: Not Specified ++ Family: Red Hat Enterprise Linux ++ ++Handle 0x0300, DMI type 3, 21 bytes ++Chassis Information ++ Manufacturer: Alibaba Cloud ++ Type: Other ++ Lock: Not Present ++ Version: virt-rhel7.6.0 ++ Serial Number: Not Specified ++ Asset Tag: Not Specified ++ Boot-up State: Safe ++ Power Supply State: Safe ++ Thermal State: Safe ++ Security Status: Unknown ++ OEM Information: 0x00000000 ++ Height: Unspecified ++ Number Of Power Cords: Unspecified ++ Contained Elements: 0 ++ ++Handle 0x0400, DMI type 4, 42 bytes ++Processor Information ++ Socket Designation: CPU 0 ++ Type: Central Processor ++ Family: Other ++ Manufacturer: Alibaba Cloud ++ ID: 00 00 00 00 00 00 00 00 ++ Version: virt-rhel7.6.0 ++ Voltage: Unknown ++ External Clock: Unknown ++ Max Speed: 2000 MHz ++ Current Speed: 2000 MHz ++ Status: Populated, Enabled ++ Upgrade: Other ++ L1 Cache Handle: Not Provided ++ L2 Cache Handle: Not Provided ++ L3 Cache Handle: Not Provided ++ Serial Number: Not Specified ++ Asset Tag: Not Specified ++ Part Number: Not Specified ++ Core Count: 2 ++ Core Enabled: 2 ++ Thread Count: 1 ++ Characteristics: None ++ ++Handle 0x1000, DMI type 16, 23 bytes ++Physical Memory Array ++ Location: Other ++ Use: System Memory ++ Error Correction Type: Multi-bit ECC ++ Maximum Capacity: 8 GB ++ Error Information Handle: Not Provided ++ Number Of Devices: 1 ++ ++Handle 0x1100, DMI type 17, 40 bytes ++Memory Device ++ Array Handle: 0x1000 ++ Error Information Handle: Not Provided ++ Total Width: Unknown ++ Data Width: Unknown ++ Size: 8 GB ++ Form Factor: DIMM ++ Set: None ++ Locator: DIMM 0 ++ Bank Locator: Not Specified ++ Type: RAM ++ Type Detail: Other ++ Speed: Unknown ++ Manufacturer: Alibaba Cloud ++ Serial Number: Not Specified ++ Asset Tag: Not Specified ++ Part Number: Not Specified ++ Rank: Unknown ++ Configured Memory Speed: Unknown ++ Minimum Voltage: Unknown ++ Maximum Voltage: Unknown ++ Configured Voltage: Unknown ++ ++Handle 0x2000, DMI type 32, 11 bytes ++System Boot Information ++ Status: No errors detected ++ ++Handle 0x0000, DMI type 0, 26 bytes ++BIOS Information ++ Vendor: EFI Development Kit II / OVMF ++ Version: 0.0.0 ++ Release Date: 02/06/2015 ++ Address: 0xE8000 ++ Runtime Size: 96 kB ++ ROM Size: 64 kB ++ Characteristics: ++ BIOS characteristics not supported ++ Targeted content distribution is supported ++ UEFI is supported ++ System is a virtual machine ++ BIOS Revision: 0.0 ++ ++Handle 0xFEFF, DMI type 127, 4 bytes ++End Of Table ++ ++EOF +diff --git a/tests/alibaba-cloud-arm/sbin/uname b/tests/alibaba-cloud-arm/sbin/uname +new file mode 100755 +index 000000000..bd33a2d73 +--- /dev/null ++++ b/tests/alibaba-cloud-arm/sbin/uname +@@ -0,0 +1,2 @@ ++#!/bin/sh - ++echo aarch64 +diff --git a/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper b/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper +new file mode 100755 +index 000000000..08e293436 +--- /dev/null ++++ b/tests/alibaba-cloud-arm/sbin/virt-what-cpuid-helper +@@ -0,0 +1,3 @@ ++#!/bin/sh - ++# Arm, so no cpuid. ++# No output, exits with 0. +diff --git a/tests/alibaba-cloud-arm/test.sh b/tests/alibaba-cloud-arm/test.sh +new file mode 100755 +index 000000000..1e7360931 +--- /dev/null ++++ b/tests/alibaba-cloud-arm/test.sh +@@ -0,0 +1,33 @@ ++# Test for Alibaba Cloud ++# Copyright (C) 2018-2023 Red Hat Inc. ++# ++# This program is free software; you can redistribute it and/or modify ++# it under the terms of the GNU General Public License as published by ++# the Free Software Foundation; either version 2 of the License, or ++# (at your option) any later version. ++# ++# This program is distributed in the hope that it will be useful, ++# but WITHOUT ANY WARRANTY; without even the implied warranty of ++# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ++# GNU General Public License for more details. ++# ++# You should have received a copy of the GNU General Public License ++# along with this program; if not, write to the Free Software ++# Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. ++ ++output="$(PATH=../..:$PATH virt-what --test-root=. 2>&1)" ++expected="alibaba_cloud ++kvm" ++ ++if [ "$output" != "$expected" ]; then ++ echo "$0: test failed because output did not match expected" ++ echo "Expected output was:" ++ echo "----------------------------------------" ++ echo "$expected" ++ echo "----------------------------------------" ++ echo "But the actual output of the program was:" ++ echo "----------------------------------------" ++ echo "$output" ++ echo "----------------------------------------" ++ exit 1 ++fi +diff --git a/virt-what.in b/virt-what.in +index 102e23f67..fbf8c54c5 100644 +--- a/virt-what.in ++++ b/virt-what.in +@@ -354,6 +354,11 @@ if ! "$skip_qemu_kvm"; then + # This is for AWS Graviton (Arm) systems which don't have CPUID. + echo kvm + skip_lkvm=true ++ elif echo "$dmi" | grep -q 'Manufacturer: Alibaba Cloud' && ++ echo "$dmi" | grep -q 'System is a virtual machine'; then ++ # This is for Alibaba Arm systems which don't have CPUID. ++ echo kvm ++ skip_lkvm=true + elif echo "$dmi" | grep -q 'Manufacturer: QEMU'; then + # The test for KVM above failed, so now we know we're + # not using KVM acceleration. +-- +2.31.1 + diff --git a/SOURCES/copy-patches.sh b/SOURCES/copy-patches.sh new file mode 100755 index 0000000..01507ca --- /dev/null +++ b/SOURCES/copy-patches.sh @@ -0,0 +1,61 @@ +#!/bin/bash - + +set -e + +# Maintainer script to copy patches from the git repo to the current +# directory. It's normally only used downstream (ie. in RHEL). Use +# it like this: +# ./copy-patches.sh + +project=virt-what +rhel_version=9.2 + +# Check we're in the right directory. +if [ ! -f $project.spec ]; then + echo "$0: run this from the directory containing '$project.spec'" + exit 1 +fi + +case `id -un` in + rjones) git_checkout=$HOME/d/$project-rhel-$rhel_version ;; + lacos) git_checkout=$HOME/src/v2v/$project ;; + *) git_checkout=$HOME/d/$project-rhel-$rhel_version ;; +esac +if [ ! -d $git_checkout ]; then + echo "$0: $git_checkout does not exist" + echo "This script is only for use by the maintainer when preparing a" + echo "$project release on RHEL." + exit 1 +fi + +# Get the base version of the project. +version=`grep '^Version:' $project.spec | awk '{print $2}'` +tag="v$version" + +# Remove any existing patches. +git rm -f [0-9]*.patch ||: +rm -f [0-9]*.patch + +# Get the patches. +(cd $git_checkout; rm -f [0-9]*.patch; git -c core.abbrev=9 format-patch -O/dev/null -N --submodule=diff $tag) +mv $git_checkout/[0-9]*.patch . + +# Remove any not to be applied. +rm -f *NOT-FOR-RPM*.patch + +# Add the patches. +git add [0-9]*.patch + +# Print out the patch lines. +echo +echo "--- Copy the following text into $project.spec file" +echo + +echo "# Patches." +for f in [0-9]*.patch; do + n=`echo $f | awk -F- '{print $1}'` + echo "Patch$n: $f" +done + +echo +echo "--- End of text" diff --git a/SPECS/virt-what.spec b/SPECS/virt-what.spec new file mode 100644 index 0000000..5d8c955 --- /dev/null +++ b/SPECS/virt-what.spec @@ -0,0 +1,301 @@ +Name: virt-what +Version: 1.25 +Release: 3%{?dist} +Summary: Detect if we are running in a virtual machine +License: GPLv2+ + +URL: http://people.redhat.com/~rjones/virt-what/ +Source0: http://people.redhat.com/~rjones/virt-what/files/%{name}-%{version}.tar.gz + +# Maintainer script which helps with handling patches. +Source1: copy-patches.sh + +# Patches are maintained in the following repository: +# http://git.annexia.org/?p=virt-what.git;a=shortlog;h=refs/heads/rhel-9.2 + +# Patches. +Patch0001: 0001-Rearrange-lxc-test-to-avoid-use-of-cat.patch +Patch0002: 0002-Move-docker-and-podman-tests-up-add-comments.patch +Patch0003: 0003-podman-Fix-location-of-test-file-proc-1-environ.patch +Patch0004: 0004-Detect-OCI-containers.patch +Patch0005: 0005-Add-support-for-Alibaba-cloud-on-aarch64.patch + +BuildRequires: make +BuildRequires: git +BuildRequires: autoconf, automake, libtool + +# This is provided by the build root, but we make it explicit +# anyway in case this was dropped from the build root in future. +BuildRequires: gcc +BuildRequires: /usr/bin/pod2man + +# Required at build time in order to do 'make check' (for getopt). +BuildRequires: util-linux + +# virt-what script uses dmidecode and getopt (from util-linux). +# RPM cannot detect this so make the dependencies explicit here. +%ifarch aarch64 %{ix86} x86_64 +Requires: dmidecode +%endif +Requires: util-linux + +# Runs the 'which' program to find the helper. +Requires: which + + +%description +virt-what is a shell script which can be used to detect if the program +is running in a virtual machine. + +The program prints out a list of "facts" about the virtual machine, +derived from heuristics. One fact is printed per line. + +If nothing is printed and the script exits with code 0 (no error), +then it can mean either that the program is running on bare-metal or +the program is running inside a type of virtual machine which we don't +know about or can't detect. + +Current types of virtualization detected: + + - alibaba_cloud Alibaba cloud + - alibaba_cloud-ebm + - aws Amazon Web Services + - bhyve FreeBSD hypervisor + - docker Docker container + - google_cloud Google cloud + - hyperv Microsoft Hyper-V + - ibm_power-kvm IBM POWER KVM + - ibm_power-lpar_shared IBM POWER LPAR (hardware partition) + - ibm_power-lpar_dedicated + - ibm_systemz-* IBM SystemZ Direct / LPAR / z/VM / KVM + - illumos-lx Illumos with Linux syscall emulation + - ldoms Oracle VM Server for SPARC Logical Domains + - linux_vserver Linux VServer container + - lxc Linux LXC container + - kvm Linux Kernel Virtual Machine (KVM) + - lkvm LKVM / kvmtool + - nutanix_ahv Nutanix Acropolis Hypervisor (AHV) + - openvz OpenVZ or Virtuozzo + - ovirt oVirt node + - parallels Parallels Virtual Platform + - podman Podman container + - powervm_lx86 IBM PowerVM Lx86 Linux/x86 emulator + - qemu QEMU (unaccelerated) + - redhat Red Hat hypervisor + - rhev Red Hat Enterprise Virtualization + - uml User-Mode Linux (UML) + - virtage Hitachi Virtualization Manager (HVM) Virtage LPAR + - virtualbox VirtualBox + - virtualpc Microsoft VirtualPC + - vmm vmm OpenBSD hypervisor + - vmware VMware + - xen Xen + - xen-dom0 Xen dom0 (privileged domain) + - xen-domU Xen domU (paravirtualized guest domain) + - xen-hvm Xen guest fully virtualized (HVM) + + +%prep +%autosetup -S git + +# Always rebuild upstream autotools files. +autoreconf -i + + +%build +%configure +make + + +%install +%make_install + + +%check +if ! make -k check ; then + find -name test-suite.log -exec cat {} \; + exit 1 +fi + +%files +%doc README COPYING +%{_sbindir}/virt-what +%{_libexecdir}/virt-what-cpuid-helper +%{_mandir}/man1/*.1* + + +%changelog +* Mon Jan 30 2023 Richard W.M. Jones - 1.25-3 +- Add support for Alibaba Cloud on aarch64 + resolves: rhbz#2165285 + +* Thu Jan 05 2023 Richard W.M. Jones - 1.25-2 +- Add support for OCI containers + resolves: rhbz#2155233 + +* Wed Aug 17 2022 Richard W.M. Jones - 1.25-1 +- Rebase to 1.25 + resolves: rhbz#2118997 + +* Tue Aug 09 2022 Richard W.M. Jones - 1.22-2 +- Detect KVM on GCE and AWS Arm instances + resolves: rhbz#2114997 + +* Thu Apr 14 2022 Richard W.M. Jones - 1.22-1 +- New upstream version 1.22. + resolves: rhbz#2074476 +- Fix Source0 line. + +* Tue Aug 10 2021 Mohan Boddu - 1.21-2.2 +- Rebuilt for IMA sigs, glibc 2.34, aarch64 flags + Related: rhbz#1991688 + +* Fri Jun 18 2021 Richard W.M. Jones - 1.21-1.el9.2 +- Support for VMware on aarch64 + resolves: rhbz#1959174 + +* Wed Jun 2 2021 Richard W.M. Jones - 1.21-1.el9.1 +- Add gating tests for RHEL 9 + +* Mon Apr 19 2021 Richard W.M. Jones - 1.21-1 +- New upstream version 1.21. + +* Fri Apr 16 2021 Mohan Boddu - 1.20-6 +- Rebuilt for RHEL 9 BETA on Apr 15th 2021. Related: rhbz#1947937 + +* Wed Jan 27 2021 Fedora Release Engineering - 1.20-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_34_Mass_Rebuild + +* Wed Jul 29 2020 Fedora Release Engineering - 1.20-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_33_Mass_Rebuild + +* Tue Jul 14 2020 Tom Stellard - 1.20-3 +- Use make macros +- https://fedoraproject.org/wiki/Changes/UseMakeBuildInstallMacro + +* Fri Jan 31 2020 Fedora Release Engineering - 1.20-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_32_Mass_Rebuild + +* Thu Oct 3 2019 Richard W.M. Jones - 1.20-1 +- New upstream version 1.20. + +* Sat Jul 27 2019 Fedora Release Engineering - 1.19-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_31_Mass_Rebuild + +* Sun Feb 03 2019 Fedora Release Engineering - 1.19-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_30_Mass_Rebuild + +* Wed Oct 31 2018 Richard W.M. Jones - 1.19-1 +- New upstream version 1.19. +- Fixes support for AWS. +- Remove patches which are now upstream. + +* Sat Jul 14 2018 Fedora Release Engineering - 1.18-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_29_Mass_Rebuild + +* Fri Feb 09 2018 Fedora Release Engineering - 1.18-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_28_Mass_Rebuild + +* Tue Oct 17 2017 Richard W.M. Jones - 1.18-4 +- Include upstream patches since 1.18 was released. +- dmidecode is also available on aarch64. + +* Mon Jul 31 2017 Richard W.M. Jones - 1.18-1 +- New upstream version 1.18. +- Update RPM description section with complete list of supported guests. +- If ‘make check’ fails, dump ‘test-suite.log’. + +* Thu Jul 27 2017 Fedora Release Engineering - 1.15-6 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_27_Mass_Rebuild + +* Sat Feb 11 2017 Fedora Release Engineering - 1.15-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_26_Mass_Rebuild + +* Tue Jun 14 2016 Richard W.M. Jones - 1.15-4 +- Require 'which' program. + +* Fri Feb 05 2016 Fedora Release Engineering - 1.15-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_24_Mass_Rebuild + +* Fri Jun 19 2015 Fedora Release Engineering - 1.15-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_23_Mass_Rebuild + +* Tue Apr 21 2015 Richard W.M. Jones - 1.15-1 +- New upstream version 1.15. +- Remove patches, now upstream. + +* Mon Aug 18 2014 Fedora Release Engineering - 1.13-5 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_22_Mass_Rebuild + +* Sun Jun 08 2014 Fedora Release Engineering - 1.13-4 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_21_Mass_Rebuild + +* Mon Oct 28 2013 Richard W.M. Jones - 1.13-3 +- Suppress warning message on Amazon EC2: + "grep: /proc/xen/capabilities: No such file or directory" + +* Wed Sep 11 2013 Richard W.M. Jones - 1.13-2 +- Include two upstream patches for detecting Xen and Linux VServer better + (RHBZ#973663). +- Modernize the spec file. + +* Mon Jul 29 2013 Richard W.M. Jones - 1.13-1 +- New upstream version 1.13. + +* Fri Feb 15 2013 Fedora Release Engineering - 1.12-3 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_19_Mass_Rebuild + +* Sun Jul 22 2012 Fedora Release Engineering - 1.12-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_18_Mass_Rebuild + +* Sat Mar 17 2012 Richard W.M. Jones - 1.12-1 +- New upstream version 1.12. + +* Wed Feb 29 2012 Richard W.M. Jones - 1.11-3 +- Remove ExclusiveArch, but don't require dmidecode except on + i?86 and x86-64 (RHBZ#791370). + +* Sat Jan 14 2012 Fedora Release Engineering - 1.11-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_17_Mass_Rebuild + +* Fri May 27 2011 Richard W.M. Jones - 1.11-1 +- New upstream version 1.11. + +* Wed May 25 2011 Richard W.M. Jones - 1.10-1 +- New upstream version 1.10. + +* Tue Mar 8 2011 Richard W.M. Jones - 1.9-1 +- New upstream version 1.9. + +* Mon Feb 07 2011 Fedora Release Engineering - 1.8-2 +- Rebuilt for https://fedoraproject.org/wiki/Fedora_15_Mass_Rebuild + +* Mon Jan 31 2011 Richard W.M. Jones - 1.8-1 +- New upstream version 1.8. + +* Thu Jan 20 2011 Richard W.M. Jones - 1.7-1 +- New upstream version 1.7. + +* Wed Jan 19 2011 Richard W.M. Jones - 1.6-2 +- New upstream version 1.6. +- BuildRequires 'getopt' from util-linux-ng. + +* Tue Jan 18 2011 Richard W.M. Jones - 1.5-1 +- New upstream version 1.5. +- Add 'make check' section. + +* Tue Jan 18 2011 Richard W.M. Jones - 1.4-1 +- New upstream version 1.4. +- More hypervisor types detected. + +* Thu Oct 28 2010 Richard W.M. Jones - 1.3-4 +- Move configure into build (not prep). + +* Thu Oct 28 2010 Richard W.M. Jones - 1.3-3 +- Initial import into Fedora. + +* Tue Oct 19 2010 Richard W.M. Jones - 1.3-2 +- Make changes suggested by reviewer (RHBZ#644259). + +* Tue Oct 19 2010 Richard W.M. Jones - 1.3-1 +- Initial release.