blob: 1118fd470a4c7418a2431b7907e5c28d429cd7a5 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
with Interfaces; use Interfaces;
with System.Machine_Code; use System.Machine_Code;
with Ada.Strings.Unbounded;
with Ada.Text_IO;
with Ada.Text_IO.Unbounded_IO;
with Config;
package Hypervisor_Check is
package IO renames Ada.Text_IO;
package US renames Ada.Strings.Unbounded;
package UIO renames Ada.Text_IO.Unbounded_IO;
function Get_Vendor_Name return US.Unbounded_String;
function Hypervisor_Present return Boolean;
function Get_DMI_Vendor_Name return US.Unbounded_String;
private
Hypervisor_Leaf : constant := 16#40000000#;
type CPUID_Registers is array (1 .. 4) of Unsigned_32;
Linux_Sys_Vendor_File : constant String := "/sys/class/dmi/id/sys_vendor";
-- SMBIOS vendor strings
VMWare_DMI_Pattern : constant String := "VMware, Inc.";
HyperV_DMI_Pattern : constant String := "Microsoft Corporation";
VirtualBox_DMI_Pattern : constant String := "innotek GmbH";
Parallels_DMI_Pattern : constant String := "Parallels";
-- Vendor names for human consumption
VMWare : constant String := "VMWare";
Xen : constant String := "Xen";
KVM : constant String := "KVM";
HyperV : constant String := "Microsoft Hyper-V";
VirtualBox : constant String := "VirtualBox";
Parallels : constant String := "Parallels";
function CPUID (Arg : Unsigned_32) return CPUID_Registers;
function String_of_U32 (Arg : Unsigned_32) return US.Unbounded_String;
function Get_Vendor_String return US.Unbounded_String;
function Head_Of_File (Path : String) return US.Unbounded_String;
function Contains (Haystack : US.Unbounded_String; Needle : String) return Boolean;
function Get_DMI_Vendor_String return US.Unbounded_String;
end Hypervisor_Check;
|