1 package PVE
::QemuServer
;
11 use File
::Copy
qw(copy);
24 use Storable
qw(dclone);
25 use Time
::HiRes
qw(gettimeofday usleep);
29 use PVE
::Cluster
qw(cfs_register_file cfs_read_file cfs_write_file);
31 use PVE
::DataCenterConfig
;
32 use PVE
::Exception
qw(raise raise_param_exc);
33 use PVE
::Format
qw(render_duration render_bytes);
34 use PVE
::GuestHelpers
qw(safe_string_ne safe_num_ne safe_boolean_ne);
36 use PVE
::JSONSchema
qw(get_standard_option parse_property_string);
39 use PVE
::RPCEnvironment
;
43 use PVE
::Tools
qw(run_command file_read_firstline file_get_contents dir_glob_foreach get_host_arch $IPV6RE);
47 use PVE
::QemuServer
::Helpers
qw(min_version config_aware_timeout);
48 use PVE
::QemuServer
::Cloudinit
;
49 use PVE
::QemuServer
::CGroup
;
50 use PVE
::QemuServer
::CPUConfig
qw(print_cpu_device get_cpu_options);
51 use PVE
::QemuServer
::Drive
qw(is_valid_drivename drive_is_cloudinit drive_is_cdrom drive_is_read_only parse_drive print_drive);
52 use PVE
::QemuServer
::Machine
;
53 use PVE
::QemuServer
::Memory
;
54 use PVE
::QemuServer
::Monitor
qw(mon_cmd);
55 use PVE
::QemuServer
::PCI
qw(print_pci_addr print_pcie_addr print_pcie_root_port parse_hostpci);
56 use PVE
::QemuServer
::USB
qw(parse_usb_device);
60 require PVE
::Network
::SDN
::Zones
;
64 my $EDK2_FW_BASE = '/usr/share/pve-edk2-firmware/';
68 "$EDK2_FW_BASE/OVMF_CODE_4M.fd",
69 "$EDK2_FW_BASE/OVMF_VARS_4M.fd",
72 "$EDK2_FW_BASE/OVMF_CODE_4M.fd",
73 "$EDK2_FW_BASE/OVMF_VARS_4M.ms.fd",
76 "$EDK2_FW_BASE/OVMF_CODE_4M.secboot.fd",
77 "$EDK2_FW_BASE/OVMF_VARS_4M.fd",
80 "$EDK2_FW_BASE/OVMF_CODE_4M.secboot.fd",
81 "$EDK2_FW_BASE/OVMF_VARS_4M.ms.fd",
84 "$EDK2_FW_BASE/OVMF_CODE.fd",
85 "$EDK2_FW_BASE/OVMF_VARS.fd",
90 "$EDK2_FW_BASE/AAVMF_CODE.fd",
91 "$EDK2_FW_BASE/AAVMF_VARS.fd",
96 my $cpuinfo = PVE
::ProcFSTools
::read_cpuinfo
();
98 # Note about locking: we use flock on the config file protect against concurent actions.
99 # Aditionaly, we have a 'lock' setting in the config file. This can be set to 'migrate',
100 # 'backup', 'snapshot' or 'rollback'. Most actions are not allowed when such lock is set.
101 # But you can ignore this kind of lock with the --skiplock flag.
103 cfs_register_file
('/qemu-server/',
107 PVE
::JSONSchema
::register_standard_option
('pve-qm-stateuri', {
108 description
=> "Some command save/restore state from this location.",
114 PVE
::JSONSchema
::register_standard_option
('pve-qemu-machine', {
115 description
=> "Specifies the Qemu machine type.",
117 pattern
=> '(pc|pc(-i440fx)?-\d+(\.\d+)+(\+pve\d+)?(\.pxe)?|q35|pc-q35-\d+(\.\d+)+(\+pve\d+)?(\.pxe)?|virt(?:-\d+(\.\d+)+)?(\+pve\d+)?)',
122 PVE
::JSONSchema
::register_standard_option
('pve-targetstorage', {
123 description
=> "Mapping from source to target storages. Providing only a single storage ID maps all source storages to that storage. Providing the special value '1' will map each source storage to itself.",
125 format
=> 'storage-pair-list',
129 #no warnings 'redefine';
133 $nodename_cache //= PVE
::INotify
::nodename
();
134 return $nodename_cache;
141 enum
=> [qw(i6300esb ib700)],
142 description
=> "Watchdog type to emulate.",
143 default => 'i6300esb',
148 enum
=> [qw(reset shutdown poweroff pause debug none)],
149 description
=> "The action to perform if after activation the guest fails to poll the watchdog in time.",
153 PVE
::JSONSchema
::register_format
('pve-qm-watchdog', $watchdog_fmt);
157 description
=> "Enable/disable communication with a Qemu Guest Agent (QGA) running in the VM.",
162 fstrim_cloned_disks
=> {
163 description
=> "Run fstrim after moving a disk or migrating the VM.",
169 description
=> "Select the agent type",
173 enum
=> [qw(virtio isa)],
179 description
=> "Select the VGA type.",
184 enum
=> [qw(cirrus qxl qxl2 qxl3 qxl4 none serial0 serial1 serial2 serial3 std virtio virtio-gl vmware)],
187 description
=> "Sets the VGA memory (in MiB). Has no effect with serial display.",
199 description
=> "The size of the file in MB.",
203 pattern
=> '[a-zA-Z0-9\-]+',
205 format_description
=> 'string',
206 description
=> "The name of the file. Will be prefixed with 'pve-shm-'. Default is the VMID. Will be deleted when the VM is stopped.",
213 enum
=> [qw(ich9-intel-hda intel-hda AC97)],
214 description
=> "Configure an audio device."
218 enum
=> ['spice', 'none'],
221 description
=> "Driver backend for the audio device."
225 my $spice_enhancements_fmt = {
230 description
=> "Enable folder sharing via SPICE. Needs Spice-WebDAV daemon installed in the VM."
234 enum
=> ['off', 'all', 'filter'],
237 description
=> "Enable video streaming. Uses compression for detected video streams."
244 enum
=> ['/dev/urandom', '/dev/random', '/dev/hwrng'],
246 description
=> "The file on the host to gather entropy from. In most cases '/dev/urandom'"
247 ." should be preferred over '/dev/random' to avoid entropy-starvation issues on the"
248 ." host. Using urandom does *not* decrease security in any meaningful way, as it's"
249 ." still seeded from real entropy, and the bytes provided will most likely be mixed"
250 ." with real entropy on the guest as well. '/dev/hwrng' can be used to pass through"
251 ." a hardware RNG from the host.",
255 description
=> "Maximum bytes of entropy allowed to get injected into the guest every"
256 ." 'period' milliseconds. Prefer a lower value when using '/dev/random' as source. Use"
257 ." `0` to disable limiting (potentially dangerous!).",
260 # default is 1 KiB/s, provides enough entropy to the guest to avoid boot-starvation issues
261 # (e.g. systemd etc...) while allowing no chance of overwhelming the host, provided we're
262 # reading from /dev/urandom
267 description
=> "Every 'period' milliseconds the entropy-injection quota is reset, allowing"
268 ." the guest to retrieve another 'max_bytes' of entropy.",
274 my $meta_info_fmt = {
277 description
=> "The guest creation timestamp as UNIX epoch time",
283 description
=> "The QEMU (machine) version from the time this VM was created.",
284 pattern
=> '\d+(\.\d+)+',
293 description
=> "Specifies whether a VM will be started during system bootup.",
299 description
=> "Automatic restart after crash (currently ignored).",
304 type
=> 'string', format
=> 'pve-hotplug-features',
305 description
=> "Selectively enable hotplug features. This is a comma separated list of"
306 ." hotplug features: 'network', 'disk', 'cpu', 'memory' and 'usb'. Use '0' to disable"
307 ." hotplug completely. Using '1' as value is an alias for the default `network,disk,usb`.",
308 default => 'network,disk,usb',
313 description
=> "Allow reboot. If set to '0' the VM exit on reboot.",
319 description
=> "Lock/unlock the VM.",
320 enum
=> [qw(backup clone create migrate rollback snapshot snapshot-delete suspending suspended)],
325 description
=> "Limit of CPU usage.",
326 verbose_description
=> "Limit of CPU usage.\n\nNOTE: If the computer has 2 CPUs, it has"
327 ." total of '2' CPU time. Value '0' indicates no CPU limit.",
335 description
=> "CPU weight for a VM, will be clamped to [1, 10000] in cgroup v2.",
336 verbose_description
=> "CPU weight for a VM. Argument is used in the kernel fair scheduler."
337 ." The larger the number is, the more CPU time this VM gets. Number is relative to"
338 ." weights of all the other running VMs.",
341 default => 'cgroup v1: 1024, cgroup v2: 100',
346 description
=> "Amount of RAM for the VM in MB. This is the maximum available memory when"
347 ." you use the balloon device.",
354 description
=> "Amount of target RAM for the VM in MB. Using zero disables the ballon driver.",
360 description
=> "Amount of memory shares for auto-ballooning. The larger the number is, the"
361 ." more memory this VM gets. Number is relative to weights of all other running VMs."
362 ." Using zero disables auto-ballooning. Auto-ballooning is done by pvestatd.",
370 description
=> "Keyboard layout for VNC server. This option is generally not required and"
371 ." is often better handled from within the guest OS.",
372 enum
=> PVE
::Tools
::kvmkeymaplist
(),
377 type
=> 'string', format
=> 'dns-name',
378 description
=> "Set a name for the VM. Only used on the configuration web interface.",
383 description
=> "SCSI controller model",
384 enum
=> [qw(lsi lsi53c810 virtio-scsi-pci virtio-scsi-single megasas pvscsi)],
390 description
=> "Description for the VM. Shown in the web-interface VM's summary."
391 ." This is saved as comment inside the configuration file.",
392 maxLength
=> 1024 * 8,
397 enum
=> [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 win10 win11 l24 l26 solaris)],
398 description
=> "Specify guest operating system.",
399 verbose_description
=> <<EODESC,
400 Specify guest operating system. This is used to enable special
401 optimization/features for specific operating systems:
404 other;; unspecified OS
405 wxp;; Microsoft Windows XP
406 w2k;; Microsoft Windows 2000
407 w2k3;; Microsoft Windows 2003
408 w2k8;; Microsoft Windows 2008
409 wvista;; Microsoft Windows Vista
410 win7;; Microsoft Windows 7
411 win8;; Microsoft Windows 8/2012/2012r2
412 win10;; Microsoft Windows 10/2016/2019
413 win11;; Microsoft Windows 11/2022
414 l24;; Linux 2.4 Kernel
415 l26;; Linux 2.6 - 5.X Kernel
416 solaris;; Solaris/OpenSolaris/OpenIndiania kernel
421 type
=> 'string', format
=> 'pve-qm-boot',
422 description
=> "Specify guest boot order. Use the 'order=' sub-property as usage with no"
423 ." key or 'legacy=' is deprecated.",
427 type
=> 'string', format
=> 'pve-qm-bootdisk',
428 description
=> "Enable booting from specified disk. Deprecated: Use 'boot: order=foo;bar' instead.",
429 pattern
=> '(ide|sata|scsi|virtio)\d+',
434 description
=> "The number of CPUs. Please use option -sockets instead.",
441 description
=> "The number of CPU sockets.",
448 description
=> "The number of cores per socket.",
455 description
=> "Enable/disable NUMA.",
461 description
=> "Enable/disable hugepages memory.",
462 enum
=> [qw(any 2 1024)],
468 description
=> "Use together with hugepages. If enabled, hugepages will not not be deleted"
469 ." after VM shutdown and can be used for subsequent starts.",
474 description
=> "Number of hotplugged vcpus.",
481 description
=> "Enable/disable ACPI.",
486 description
=> "Enable/disable communication with the Qemu Guest Agent and its properties.",
488 format
=> $agent_fmt,
493 description
=> "Enable/disable KVM hardware virtualization.",
499 description
=> "Enable/disable time drift fix.",
505 description
=> "Set the real time clock (RTC) to local time. This is enabled by default if"
506 ." the `ostype` indicates a Microsoft Windows OS.",
511 description
=> "Freeze CPU at startup (use 'c' monitor command to start execution).",
515 type
=> 'string', format
=> $vga_fmt,
516 description
=> "Configure the VGA hardware.",
517 verbose_description
=> "Configure the VGA Hardware. If you want to use high resolution"
518 ." modes (>= 1280x1024x16) you may need to increase the vga memory option. Since QEMU"
519 ." 2.9 the default VGA display type is 'std' for all OS types besides some Windows"
520 ." versions (XP and older) which use 'cirrus'. The 'qxl' option enables the SPICE"
521 ." display server. For win* OS you can select how many independent displays you want,"
522 ." Linux guests can add displays them self.\nYou can also run without any graphic card,"
523 ." using a serial device as terminal.",
527 type
=> 'string', format
=> 'pve-qm-watchdog',
528 description
=> "Create a virtual hardware watchdog device.",
529 verbose_description
=> "Create a virtual hardware watchdog device. Once enabled (by a guest"
530 ." action), the watchdog must be periodically polled by an agent inside the guest or"
531 ." else the watchdog will reset the guest (or execute the respective action specified)",
536 typetext
=> "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
537 description
=> "Set the initial date of the real time clock. Valid format for date are:"
538 ."'now' or '2006-06-17T16:01:21' or '2006-06-17'.",
539 pattern
=> '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
542 startup
=> get_standard_option
('pve-startup-order'),
546 description
=> "Enable/disable Template.",
552 description
=> "Arbitrary arguments passed to kvm.",
553 verbose_description
=> <<EODESCR,
554 Arbitrary arguments passed to kvm, for example:
556 args: -no-reboot -no-hpet
558 NOTE: this option is for experts only.
565 description
=> "Enable/disable the USB tablet device.",
566 verbose_description
=> "Enable/disable the USB tablet device. This device is usually needed"
567 ." to allow absolute mouse positioning with VNC. Else the mouse runs out of sync with"
568 ." normal VNC clients. If you're running lots of console-only guests on one host, you"
569 ." may consider disabling this to save some context switches. This is turned off by"
570 ." default if you use spice (`qm set <vmid> --vga qxl`).",
575 description
=> "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
579 migrate_downtime
=> {
582 description
=> "Set maximum tolerated downtime (in seconds) for migrations.",
588 type
=> 'string', format
=> 'pve-qm-ide',
589 typetext
=> '<volume>',
590 description
=> "This is an alias for option -ide2",
594 description
=> "Emulated CPU type.",
596 format
=> 'pve-vm-cpu-conf',
598 parent
=> get_standard_option
('pve-snapshot-name', {
600 description
=> "Parent snapshot name. This is used internally, and should not be modified.",
604 description
=> "Timestamp for snapshots.",
610 type
=> 'string', format
=> 'pve-volume-id',
611 description
=> "Reference to a volume which stores the VM state. This is used internally"
614 vmstatestorage
=> get_standard_option
('pve-storage-id', {
615 description
=> "Default storage for VM state volumes/files.",
618 runningmachine
=> get_standard_option
('pve-qemu-machine', {
619 description
=> "Specifies the QEMU machine type of the running vm. This is used internally"
623 description
=> "Specifies the QEMU '-cpu' parameter of the running vm. This is used"
624 ." internally for snapshots.",
627 pattern
=> $PVE::QemuServer
::CPUConfig
::qemu_cmdline_cpu_re
,
628 format_description
=> 'QEMU -cpu parameter'
630 machine
=> get_standard_option
('pve-qemu-machine'),
632 description
=> "Virtual processor architecture. Defaults to the host.",
635 enum
=> [qw(x86_64 aarch64)],
638 description
=> "Specify SMBIOS type 1 fields.",
639 type
=> 'string', format
=> 'pve-qm-smbios1',
646 description
=> "Sets the protection flag of the VM. This will disable the remove VM and"
647 ." remove disk operations.",
653 enum
=> [ qw(seabios ovmf) ],
654 description
=> "Select BIOS implementation.",
655 default => 'seabios',
659 pattern
=> '(?:[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}|[01])',
660 format_description
=> 'UUID',
661 description
=> "Set VM Generation ID. Use '1' to autogenerate on create or update, pass '0'"
662 ." to disable explicitly.",
663 verbose_description
=> "The VM generation ID (vmgenid) device exposes a 128-bit integer"
664 ." value identifier to the guest OS. This allows to notify the guest operating system"
665 ." when the virtual machine is executed with a different configuration (e.g. snapshot"
666 ." execution or creation from a template). The guest operating system notices the"
667 ." change, and is then able to react as appropriate by marking its copies of"
668 ." distributed databases as dirty, re-initializing its random number generator, etc.\n"
669 ."Note that auto-creation only works when done through API/CLI create or update methods"
670 .", but not when manually editing the config file.",
671 default => "1 (autogenerated)",
676 format
=> 'pve-volume-id',
678 description
=> "Script that will be executed during various steps in the vms lifetime.",
682 format
=> $ivshmem_fmt,
683 description
=> "Inter-VM shared memory. Useful for direct communication between VMs, or to"
689 format
=> $audio_fmt,
690 description
=> "Configure a audio device, useful in combination with QXL/Spice.",
693 spice_enhancements
=> {
695 format
=> $spice_enhancements_fmt,
696 description
=> "Configure additional enhancements for SPICE.",
700 type
=> 'string', format
=> 'pve-tag-list',
701 description
=> 'Tags of the VM. This is only meta information.',
707 description
=> "Configure a VirtIO-based Random Number Generator.",
712 format
=> $meta_info_fmt,
713 description
=> "Some (read-only) meta-information about this guest.",
722 description
=> 'Specify a custom file containing all meta data passed to the VM via"
723 ." cloud-init. This is provider specific meaning configdrive2 and nocloud differ.',
724 format
=> 'pve-volume-id',
725 format_description
=> 'volume',
730 description
=> 'Specify a custom file containing all network data passed to the VM via'
732 format
=> 'pve-volume-id',
733 format_description
=> 'volume',
738 description
=> 'Specify a custom file containing all user data passed to the VM via'
740 format
=> 'pve-volume-id',
741 format_description
=> 'volume',
746 description
=> 'Specify a custom file containing all vendor data passed to the VM via'
748 format
=> 'pve-volume-id',
749 format_description
=> 'volume',
752 PVE
::JSONSchema
::register_format
('pve-qm-cicustom', $cicustom_fmt);
754 my $confdesc_cloudinit = {
758 description
=> 'Specifies the cloud-init configuration format. The default depends on the'
759 .' configured operating system type (`ostype`. We use the `nocloud` format for Linux,'
760 .' and `configdrive2` for windows.',
761 enum
=> ['configdrive2', 'nocloud', 'opennebula'],
766 description
=> "cloud-init: User name to change ssh keys and password for instead of the"
767 ." image's configured default user.",
772 description
=> 'cloud-init: Password to assign the user. Using this is generally not'
773 .' recommended. Use ssh keys instead. Also note that older cloud-init versions do not'
774 .' support hashed passwords.',
779 description
=> 'cloud-init: Specify custom files to replace the automatically generated'
781 format
=> 'pve-qm-cicustom',
786 description
=> 'cloud-init: Sets DNS search domains for a container. Create will'
787 .' automatically use the setting from the host if neither searchdomain nor nameserver'
792 type
=> 'string', format
=> 'address-list',
793 description
=> 'cloud-init: Sets DNS server IP address for a container. Create will'
794 .' automatically use the setting from the host if neither searchdomain nor nameserver'
800 format
=> 'urlencoded',
801 description
=> "cloud-init: Setup public SSH keys (one key per line, OpenSSH format).",
805 # what about other qemu settings ?
807 #machine => 'string',
820 ##soundhw => 'string',
822 while (my ($k, $v) = each %$confdesc) {
823 PVE
::JSONSchema
::register_standard_option
("pve-qm-$k", $v);
826 my $MAX_USB_DEVICES = 5;
828 my $MAX_SERIAL_PORTS = 4;
829 my $MAX_PARALLEL_PORTS = 3;
835 pattern
=> qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
836 description
=> "CPUs accessing this NUMA node.",
837 format_description
=> "id[-id];...",
841 description
=> "Amount of memory this NUMA node provides.",
846 pattern
=> qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
847 description
=> "Host NUMA nodes to use.",
848 format_description
=> "id[-id];...",
853 enum
=> [qw(preferred bind interleave)],
854 description
=> "NUMA allocation policy.",
858 PVE
::JSONSchema
::register_format
('pve-qm-numanode', $numa_fmt);
861 type
=> 'string', format
=> $numa_fmt,
862 description
=> "NUMA topology.",
864 PVE
::JSONSchema
::register_standard_option
("pve-qm-numanode", $numadesc);
866 for (my $i = 0; $i < $MAX_NUMA; $i++) {
867 $confdesc->{"numa$i"} = $numadesc;
870 my $nic_model_list = [
886 my $nic_model_list_txt = join(' ', sort @$nic_model_list);
888 my $net_fmt_bridge_descr = <<__EOD__;
889 Bridge to attach the network device to. The Proxmox VE standard bridge
892 If you do not specify a bridge, we create a kvm user (NATed) network
893 device, which provides DHCP and DNS services. The following addresses
900 The DHCP server assign addresses to the guest starting from 10.0.2.15.
904 macaddr
=> get_standard_option
('mac-addr', {
905 description
=> "MAC address. That address must be unique withing your network. This is"
906 ." automatically generated if not specified.",
910 description
=> "Network Card Model. The 'virtio' model provides the best performance with"
911 ." very low CPU overhead. If your guest does not support this driver, it is usually"
912 ." best to use 'e1000'.",
913 enum
=> $nic_model_list,
916 (map { $_ => { keyAlias
=> 'model', alias
=> 'macaddr' }} @$nic_model_list),
917 bridge
=> get_standard_option
('pve-bridge-id', {
918 description
=> $net_fmt_bridge_descr,
923 minimum
=> 0, maximum
=> 16,
924 description
=> 'Number of packet queues to be used on the device.',
930 description
=> "Rate limit in mbps (megabytes per second) as floating point number.",
935 minimum
=> 1, maximum
=> 4094,
936 description
=> 'VLAN tag to apply to packets on this interface.',
941 pattern
=> qr/\d+(?:-\d+)?(?:;\d+(?:-\d+)?)*/,
942 description
=> 'VLAN trunks to pass through this interface.',
943 format_description
=> 'vlanid[;vlanid...]',
948 description
=> 'Whether this interface should be protected by the firewall.',
953 description
=> 'Whether this interface should be disconnected (like pulling the plug).',
958 minimum
=> 1, maximum
=> 65520,
959 description
=> "Force MTU, for VirtIO only. Set to '1' to use the bridge MTU",
966 type
=> 'string', format
=> $net_fmt,
967 description
=> "Specify network devices.",
970 PVE
::JSONSchema
::register_standard_option
("pve-qm-net", $netdesc);
975 format
=> 'pve-ipv4-config',
976 format_description
=> 'IPv4Format/CIDR',
977 description
=> 'IPv4 address in CIDR format.',
984 format_description
=> 'GatewayIPv4',
985 description
=> 'Default gateway for IPv4 traffic.',
991 format
=> 'pve-ipv6-config',
992 format_description
=> 'IPv6Format/CIDR',
993 description
=> 'IPv6 address in CIDR format.',
1000 format_description
=> 'GatewayIPv6',
1001 description
=> 'Default gateway for IPv6 traffic.',
1006 PVE
::JSONSchema
::register_format
('pve-qm-ipconfig', $ipconfig_fmt);
1007 my $ipconfigdesc = {
1009 type
=> 'string', format
=> 'pve-qm-ipconfig',
1010 description
=> <<'EODESCR',
1011 cloud-init: Specify IP addresses and gateways for the corresponding interface.
1013 IP addresses use CIDR notation, gateways are optional but need an IP of the same type specified.
1015 The special string 'dhcp' can be used for IP addresses to use DHCP, in which case no explicit
1016 gateway should be provided.
1017 For IPv6 the special string 'auto' can be used to use stateless autoconfiguration. This requires
1018 cloud-init 19.4 or newer.
1020 If cloud-init is enabled and neither an IPv4 nor an IPv6 address is specified, it defaults to using
1024 PVE
::JSONSchema
::register_standard_option
("pve-qm-ipconfig", $netdesc);
1026 for (my $i = 0; $i < $MAX_NETS; $i++) {
1027 $confdesc->{"net$i"} = $netdesc;
1028 $confdesc_cloudinit->{"ipconfig$i"} = $ipconfigdesc;
1031 foreach my $key (keys %$confdesc_cloudinit) {
1032 $confdesc->{$key} = $confdesc_cloudinit->{$key};
1035 PVE
::JSONSchema
::register_format
('pve-volume-id-or-qm-path', \
&verify_volume_id_or_qm_path
);
1036 sub verify_volume_id_or_qm_path
{
1037 my ($volid, $noerr) = @_;
1039 return $volid if $volid eq 'none' || $volid eq 'cdrom';
1041 return verify_volume_id_or_absolute_path
($volid, $noerr);
1044 PVE
::JSONSchema
::register_format
('pve-volume-id-or-absolute-path', \
&verify_volume_id_or_absolute_path
);
1045 sub verify_volume_id_or_absolute_path
{
1046 my ($volid, $noerr) = @_;
1048 return $volid if $volid =~ m
|^/|;
1050 $volid = eval { PVE
::JSONSchema
::check_format
('pve-volume-id', $volid, '') };
1061 type
=> 'string', format
=> 'pve-qm-usb-device',
1062 format_description
=> 'HOSTUSBDEVICE|spice',
1063 description
=> <<EODESCR,
1064 The Host USB device or port or the value 'spice'. HOSTUSBDEVICE syntax is:
1066 'bus-port(.port)*' (decimal numbers) or
1067 'vendor_id:product_id' (hexadeciaml numbers) or
1070 You can use the 'lsusb -t' command to list existing usb devices.
1072 NOTE: This option allows direct access to host hardware. So it is no longer possible to migrate such
1073 machines - use with special care.
1075 The value 'spice' can be used to add a usb redirection devices for spice.
1081 description
=> "Specifies whether if given host option is a USB3 device or port.",
1088 type
=> 'string', format
=> $usb_fmt,
1089 description
=> "Configure an USB device (n is 0 to 4).",
1091 PVE
::JSONSchema
::register_standard_option
("pve-qm-usb", $usbdesc);
1096 pattern
=> '(/dev/.+|socket)',
1097 description
=> "Create a serial device inside the VM (n is 0 to 3)",
1098 verbose_description
=> <<EODESCR,
1099 Create a serial device inside the VM (n is 0 to 3), and pass through a
1100 host serial device (i.e. /dev/ttyS0), or create a unix socket on the
1101 host side (use 'qm terminal' to open a terminal connection).
1103 NOTE: If you pass through a host serial device, it is no longer possible to migrate such machines -
1104 use with special care.
1106 CAUTION: Experimental! User reported problems with this option.
1113 pattern
=> '/dev/parport\d+|/dev/usb/lp\d+',
1114 description
=> "Map host parallel devices (n is 0 to 2).",
1115 verbose_description
=> <<EODESCR,
1116 Map host parallel devices (n is 0 to 2).
1118 NOTE: This option allows direct access to host hardware. So it is no longer possible to migrate such
1119 machines - use with special care.
1121 CAUTION: Experimental! User reported problems with this option.
1125 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
1126 $confdesc->{"parallel$i"} = $paralleldesc;
1129 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
1130 $confdesc->{"serial$i"} = $serialdesc;
1133 for (my $i = 0; $i < $PVE::QemuServer
::PCI
::MAX_HOSTPCI_DEVICES
; $i++) {
1134 $confdesc->{"hostpci$i"} = $PVE::QemuServer
::PCI
::hostpcidesc
;
1137 for my $key (keys %{$PVE::QemuServer
::Drive
::drivedesc_hash
}) {
1138 $confdesc->{$key} = $PVE::QemuServer
::Drive
::drivedesc_hash-
>{$key};
1141 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
1142 $confdesc->{"usb$i"} = $usbdesc;
1150 description
=> "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n)."
1151 . " Deprecated, use 'order=' instead.",
1152 pattern
=> '[acdn]{1,4}',
1153 format_description
=> "[acdn]{1,4}",
1155 # note: this is also the fallback if boot: is not given at all
1161 format
=> 'pve-qm-bootdev-list',
1162 format_description
=> "device[;device...]",
1163 description
=> <<EODESC,
1164 The guest will attempt to boot from devices in the order they appear here.
1166 Disks, optical drives and passed-through storage USB devices will be directly
1167 booted from, NICs will load PXE, and PCIe devices will either behave like disks
1168 (e.g. NVMe) or load an option ROM (e.g. RAID controller, hardware NIC).
1170 Note that only devices in this list will be marked as bootable and thus loaded
1171 by the guest firmware (BIOS/UEFI). If you require multiple disks for booting
1172 (e.g. software-raid), you need to specify all of them here.
1174 Overrides the deprecated 'legacy=[acdn]*' value when given.
1178 PVE
::JSONSchema
::register_format
('pve-qm-boot', $boot_fmt);
1180 PVE
::JSONSchema
::register_format
('pve-qm-bootdev', \
&verify_bootdev
);
1181 sub verify_bootdev
{
1182 my ($dev, $noerr) = @_;
1184 my $special = $dev =~ m/^efidisk/ || $dev =~ m/^tpmstate/;
1185 return $dev if PVE
::QemuServer
::Drive
::is_valid_drivename
($dev) && !$special;
1189 return 0 if $dev !~ m/^$base\d+$/;
1190 return 0 if !$confdesc->{$dev};
1194 return $dev if $check->("net");
1195 return $dev if $check->("usb");
1196 return $dev if $check->("hostpci");
1199 die "invalid boot device '$dev'\n";
1202 sub print_bootorder
{
1204 return "" if !@$devs;
1205 my $data = { order
=> join(';', @$devs) };
1206 return PVE
::JSONSchema
::print_property_string
($data, $boot_fmt);
1209 my $kvm_api_version = 0;
1212 return $kvm_api_version if $kvm_api_version;
1214 open my $fh, '<', '/dev/kvm' or return;
1216 # 0xae00 => KVM_GET_API_VERSION
1217 $kvm_api_version = ioctl($fh, 0xae00, 0);
1220 return $kvm_api_version;
1223 my $kvm_user_version = {};
1226 sub kvm_user_version
{
1229 $binary //= get_command_for_arch
(get_host_arch
()); # get the native arch by default
1230 my $st = stat($binary);
1232 my $cachedmtime = $kvm_mtime->{$binary} // -1;
1233 return $kvm_user_version->{$binary} if $kvm_user_version->{$binary} &&
1234 $cachedmtime == $st->mtime;
1236 $kvm_user_version->{$binary} = 'unknown';
1237 $kvm_mtime->{$binary} = $st->mtime;
1241 if ($line =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?)(\.\d+)?[,\s]/) {
1242 $kvm_user_version->{$binary} = $2;
1246 eval { run_command
([$binary, '--version'], outfunc
=> $code); };
1249 return $kvm_user_version->{$binary};
1252 my sub extract_version
{
1253 my ($machine_type, $version) = @_;
1254 $version = kvm_user_version
() if !defined($version);
1255 return PVE
::QemuServer
::Machine
::extract_version
($machine_type, $version)
1258 sub kernel_has_vhost_net
{
1259 return -c
'/dev/vhost-net';
1264 return defined($confdesc->{$key});
1268 sub get_cdrom_path
{
1270 return $cdrom_path if $cdrom_path;
1272 return $cdrom_path = "/dev/cdrom" if -l
"/dev/cdrom";
1273 return $cdrom_path = "/dev/cdrom1" if -l
"/dev/cdrom1";
1274 return $cdrom_path = "/dev/cdrom2" if -l
"/dev/cdrom2";
1278 my ($storecfg, $vmid, $cdrom) = @_;
1280 if ($cdrom eq 'cdrom') {
1281 return get_cdrom_path
();
1282 } elsif ($cdrom eq 'none') {
1284 } elsif ($cdrom =~ m
|^/|) {
1287 return PVE
::Storage
::path
($storecfg, $cdrom);
1291 # try to convert old style file names to volume IDs
1292 sub filename_to_volume_id
{
1293 my ($vmid, $file, $media) = @_;
1295 if (!($file eq 'none' || $file eq 'cdrom' ||
1296 $file =~ m
|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
1298 return if $file =~ m
|/|;
1300 if ($media && $media eq 'cdrom') {
1301 $file = "local:iso/$file";
1303 $file = "local:$vmid/$file";
1310 sub verify_media_type
{
1311 my ($opt, $vtype, $media) = @_;
1316 if ($media eq 'disk') {
1318 } elsif ($media eq 'cdrom') {
1321 die "internal error";
1324 return if ($vtype eq $etype);
1326 raise_param_exc
({ $opt => "unexpected media type ($vtype != $etype)" });
1329 sub cleanup_drive_path
{
1330 my ($opt, $storecfg, $drive) = @_;
1332 # try to convert filesystem paths to volume IDs
1334 if (($drive->{file
} !~ m/^(cdrom|none)$/) &&
1335 ($drive->{file
} !~ m
|^/dev/.+|) &&
1336 ($drive->{file
} !~ m/^([^:]+):(.+)$/) &&
1337 ($drive->{file
} !~ m/^\d+$/)) {
1338 my ($vtype, $volid) = PVE
::Storage
::path_to_volume_id
($storecfg, $drive->{file
});
1339 raise_param_exc
({ $opt => "unable to associate path '$drive->{file}' to any storage"})
1341 $drive->{media
} = 'cdrom' if !$drive->{media
} && $vtype eq 'iso';
1342 verify_media_type
($opt, $vtype, $drive->{media
});
1343 $drive->{file
} = $volid;
1346 $drive->{media
} = 'cdrom' if !$drive->{media
} && $drive->{file
} =~ m/^(cdrom|none)$/;
1349 sub parse_hotplug_features
{
1354 return $res if $data eq '0';
1356 $data = $confdesc->{hotplug
}->{default} if $data eq '1';
1358 foreach my $feature (PVE
::Tools
::split_list
($data)) {
1359 if ($feature =~ m/^(network|disk|cpu|memory|usb)$/) {
1362 die "invalid hotplug feature '$feature'\n";
1368 PVE
::JSONSchema
::register_format
('pve-hotplug-features', \
&pve_verify_hotplug_features
);
1369 sub pve_verify_hotplug_features
{
1370 my ($value, $noerr) = @_;
1372 return $value if parse_hotplug_features
($value);
1376 die "unable to parse hotplug option\n";
1380 my($fh, $noerr) = @_;
1383 my $SG_GET_VERSION_NUM = 0x2282;
1385 my $versionbuf = "\x00" x
8;
1386 my $ret = ioctl($fh, $SG_GET_VERSION_NUM, $versionbuf);
1388 die "scsi ioctl SG_GET_VERSION_NUM failoed - $!\n" if !$noerr;
1391 my $version = unpack("I", $versionbuf);
1392 if ($version < 30000) {
1393 die "scsi generic interface too old\n" if !$noerr;
1397 my $buf = "\x00" x
36;
1398 my $sensebuf = "\x00" x
8;
1399 my $cmd = pack("C x3 C x1", 0x12, 36);
1401 # see /usr/include/scsi/sg.h
1402 my $sg_io_hdr_t = "i i C C s I P P P I I i P C C C C S S i I I";
1405 $sg_io_hdr_t, ord('S'), -3, length($cmd), length($sensebuf), 0, length($buf), $buf, $cmd, $sensebuf, 6000
1408 $ret = ioctl($fh, $SG_IO, $packet);
1410 die "scsi ioctl SG_IO failed - $!\n" if !$noerr;
1414 my @res = unpack($sg_io_hdr_t, $packet);
1415 if ($res[17] || $res[18]) {
1416 die "scsi ioctl SG_IO status error - $!\n" if !$noerr;
1421 $res->@{qw(type removable vendor product revision)} = unpack("C C x6 A8 A16 A4", $buf);
1423 $res->{removable
} = $res->{removable
} & 128 ?
1 : 0;
1424 $res->{type
} &= 0x1F;
1432 my $fh = IO
::File-
>new("+<$path") || return;
1433 my $res = scsi_inquiry
($fh, 1);
1439 sub print_tabletdevice_full
{
1440 my ($conf, $arch) = @_;
1442 my $q35 = PVE
::QemuServer
::Machine
::machine_type_is_q35
($conf);
1444 # we use uhci for old VMs because tablet driver was buggy in older qemu
1446 if (PVE
::QemuServer
::Machine
::machine_type_is_q35
($conf) || $arch eq 'aarch64') {
1452 return "usb-tablet,id=tablet,bus=$usbbus.0,port=1";
1455 sub print_keyboarddevice_full
{
1456 my ($conf, $arch) = @_;
1458 return if $arch ne 'aarch64';
1460 return "usb-kbd,id=keyboard,bus=ehci.0,port=2";
1463 my sub get_drive_id
{
1465 return "$drive->{interface}$drive->{index}";
1468 sub print_drivedevice_full
{
1469 my ($storecfg, $conf, $vmid, $drive, $bridges, $arch, $machine_type) = @_;
1474 my $drive_id = get_drive_id
($drive);
1475 if ($drive->{interface
} eq 'virtio') {
1476 my $pciaddr = print_pci_addr
("$drive_id", $bridges, $arch, $machine_type);
1477 $device = "virtio-blk-pci,drive=drive-$drive_id,id=${drive_id}${pciaddr}";
1478 $device .= ",iothread=iothread-$drive_id" if $drive->{iothread
};
1479 } elsif ($drive->{interface
} eq 'scsi') {
1481 my ($maxdev, $controller, $controller_prefix) = scsihw_infos
($conf, $drive);
1482 my $unit = $drive->{index} % $maxdev;
1483 my $devicetype = 'hd';
1485 if (drive_is_cdrom
($drive)) {
1488 if ($drive->{file
} =~ m
|^/|) {
1489 $path = $drive->{file
};
1490 if (my $info = path_is_scsi
($path)) {
1491 if ($info->{type
} == 0 && $drive->{scsiblock
}) {
1492 $devicetype = 'block';
1493 } elsif ($info->{type
} == 1) { # tape
1494 $devicetype = 'generic';
1498 $path = PVE
::Storage
::path
($storecfg, $drive->{file
});
1501 # for compatibility only, we prefer scsi-hd (#2408, #2355, #2380)
1502 my $version = extract_version
($machine_type, kvm_user_version
());
1503 if ($path =~ m/^iscsi\:\/\
// &&
1504 !min_version
($version, 4, 1)) {
1505 $devicetype = 'generic';
1509 if (!$conf->{scsihw
} || $conf->{scsihw
} =~ m/^lsi/ || $conf->{scsihw
} eq 'pvscsi') {
1510 $device = "scsi-$devicetype,bus=$controller_prefix$controller.0,scsi-id=$unit";
1512 $device = "scsi-$devicetype,bus=$controller_prefix$controller.0,channel=0,scsi-id=0"
1513 .",lun=$drive->{index}";
1515 $device .= ",drive=drive-$drive_id,id=$drive_id";
1517 if ($drive->{ssd
} && ($devicetype eq 'block' || $devicetype eq 'hd')) {
1518 $device .= ",rotation_rate=1";
1520 $device .= ",wwn=$drive->{wwn}" if $drive->{wwn
};
1522 } elsif ($drive->{interface
} eq 'ide' || $drive->{interface
} eq 'sata') {
1523 my $maxdev = ($drive->{interface
} eq 'sata') ?
$PVE::QemuServer
::Drive
::MAX_SATA_DISKS
: 2;
1524 my $controller = int($drive->{index} / $maxdev);
1525 my $unit = $drive->{index} % $maxdev;
1526 my $devicetype = ($drive->{media
} && $drive->{media
} eq 'cdrom') ?
"cd" : "hd";
1528 $device = "ide-$devicetype";
1529 if ($drive->{interface
} eq 'ide') {
1530 $device .= ",bus=ide.$controller,unit=$unit";
1532 $device .= ",bus=ahci$controller.$unit";
1534 $device .= ",drive=drive-$drive_id,id=$drive_id";
1536 if ($devicetype eq 'hd') {
1537 if (my $model = $drive->{model
}) {
1538 $model = URI
::Escape
::uri_unescape
($model);
1539 $device .= ",model=$model";
1541 if ($drive->{ssd
}) {
1542 $device .= ",rotation_rate=1";
1545 $device .= ",wwn=$drive->{wwn}" if $drive->{wwn
};
1546 } elsif ($drive->{interface
} eq 'usb') {
1548 # -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
1550 die "unsupported interface type";
1553 $device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex
};
1555 if (my $serial = $drive->{serial
}) {
1556 $serial = URI
::Escape
::uri_unescape
($serial);
1557 $device .= ",serial=$serial";
1564 sub get_initiator_name
{
1567 my $fh = IO
::File-
>new('/etc/iscsi/initiatorname.iscsi') || return;
1568 while (defined(my $line = <$fh>)) {
1569 next if $line !~ m/^\s*InitiatorName\s*=\s*([\.\-:\w]+)/;
1578 sub print_drive_commandline_full
{
1579 my ($storecfg, $vmid, $drive, $pbs_name, $io_uring) = @_;
1582 my $volid = $drive->{file
};
1583 my $format = $drive->{format
};
1584 my $drive_id = get_drive_id
($drive);
1586 my ($storeid, $volname) = PVE
::Storage
::parse_volume_id
($volid, 1);
1587 my $scfg = $storeid ? PVE
::Storage
::storage_config
($storecfg, $storeid) : undef;
1589 if (drive_is_cdrom
($drive)) {
1590 $path = get_iso_path
($storecfg, $vmid, $volid);
1591 die "$drive_id: cannot back cdrom drive with PBS snapshot\n" if $pbs_name;
1594 $path = PVE
::Storage
::path
($storecfg, $volid);
1595 $format //= qemu_img_format
($scfg, $volname);
1602 my $is_rbd = $path =~ m/^rbd:/;
1605 my @qemu_drive_options = qw(heads secs cyls trans media cache rerror werror aio discard);
1606 foreach my $o (@qemu_drive_options) {
1607 $opts .= ",$o=$drive->{$o}" if defined($drive->{$o});
1610 # snapshot only accepts on|off
1611 if (defined($drive->{snapshot
})) {
1612 my $v = $drive->{snapshot
} ?
'on' : 'off';
1613 $opts .= ",snapshot=$v";
1616 if (defined($drive->{ro
})) { # ro maps to QEMUs `readonly`, which accepts `on` or `off` only
1617 $opts .= ",readonly=" . ($drive->{ro
} ?
'on' : 'off');
1620 foreach my $type (['', '-total'], [_rd
=> '-read'], [_wr
=> '-write']) {
1621 my ($dir, $qmpname) = @$type;
1622 if (my $v = $drive->{"mbps$dir"}) {
1623 $opts .= ",throttling.bps$qmpname=".int($v*1024*1024);
1625 if (my $v = $drive->{"mbps${dir}_max"}) {
1626 $opts .= ",throttling.bps$qmpname-max=".int($v*1024*1024);
1628 if (my $v = $drive->{"bps${dir}_max_length"}) {
1629 $opts .= ",throttling.bps$qmpname-max-length=$v";
1631 if (my $v = $drive->{"iops${dir}"}) {
1632 $opts .= ",throttling.iops$qmpname=$v";
1634 if (my $v = $drive->{"iops${dir}_max"}) {
1635 $opts .= ",throttling.iops$qmpname-max=$v";
1637 if (my $v = $drive->{"iops${dir}_max_length"}) {
1638 $opts .= ",throttling.iops$qmpname-max-length=$v";
1643 $format = "rbd" if $is_rbd;
1644 die "$drive_id: Proxmox Backup Server backed drive cannot auto-detect the format\n"
1646 $opts .= ",format=alloc-track,file.driver=$format";
1648 $opts .= ",format=$format";
1651 my $cache_direct = 0;
1653 if (my $cache = $drive->{cache
}) {
1654 $cache_direct = $cache =~ /^(?:off|none|directsync)$/;
1655 } elsif (!drive_is_cdrom
($drive) && !($scfg && $scfg->{type
} eq 'btrfs' && !$scfg->{nocow
})) {
1656 $opts .= ",cache=none";
1660 # io_uring with cache mode writeback or writethrough on krbd will hang...
1661 my $rbd_no_io_uring = $scfg && $scfg->{type
} eq 'rbd' && $scfg->{krbd
} && !$cache_direct;
1663 # io_uring with cache mode writeback or writethrough on LVM will hang, without cache only
1664 # sometimes, just plain disable...
1665 my $lvm_no_io_uring = $scfg && $scfg->{type
} eq 'lvm';
1667 if (!$drive->{aio
}) {
1668 if ($io_uring && !$rbd_no_io_uring && !$lvm_no_io_uring) {
1669 # io_uring supports all cache modes
1670 $opts .= ",aio=io_uring";
1672 # aio native works only with O_DIRECT
1674 $opts .= ",aio=native";
1676 $opts .= ",aio=threads";
1681 if (!drive_is_cdrom
($drive)) {
1683 if (defined($drive->{detect_zeroes
}) && !$drive->{detect_zeroes
}) {
1684 $detectzeroes = 'off';
1685 } elsif ($drive->{discard
}) {
1686 $detectzeroes = $drive->{discard
} eq 'on' ?
'unmap' : 'on';
1688 # This used to be our default with discard not being specified:
1689 $detectzeroes = 'on';
1692 # note: 'detect-zeroes' works per blockdev and we want it to persist
1693 # after the alloc-track is removed, so put it on 'file' directly
1694 my $dz_param = $pbs_name ?
"file.detect-zeroes" : "detect-zeroes";
1695 $opts .= ",$dz_param=$detectzeroes" if $detectzeroes;
1699 $opts .= ",backing=$pbs_name";
1700 $opts .= ",auto-remove=on";
1703 # my $file_param = $pbs_name ? "file.file.filename" : "file";
1704 my $file_param = "file";
1706 # non-rbd drivers require the underlying file to be a seperate block
1707 # node, so add a second .file indirection
1708 $file_param .= ".file" if !$is_rbd;
1709 $file_param .= ".filename";
1711 my $pathinfo = $path ?
"$file_param=$path," : '';
1713 return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
1716 sub print_pbs_blockdev
{
1717 my ($pbs_conf, $pbs_name) = @_;
1718 my $blockdev = "driver=pbs,node-name=$pbs_name,read-only=on";
1719 $blockdev .= ",repository=$pbs_conf->{repository}";
1720 $blockdev .= ",namespace=$pbs_conf->{namespace}" if $pbs_conf->{namespace
};
1721 $blockdev .= ",snapshot=$pbs_conf->{snapshot}";
1722 $blockdev .= ",archive=$pbs_conf->{archive}";
1723 $blockdev .= ",keyfile=$pbs_conf->{keyfile}" if $pbs_conf->{keyfile
};
1727 sub print_netdevice_full
{
1728 my ($vmid, $conf, $net, $netid, $bridges, $use_old_bios_files, $arch, $machine_type) = @_;
1730 my $device = $net->{model
};
1731 if ($net->{model
} eq 'virtio') {
1732 $device = 'virtio-net-pci';
1735 my $pciaddr = print_pci_addr
("$netid", $bridges, $arch, $machine_type);
1736 my $tmpstr = "$device,mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
1737 if ($net->{queues
} && $net->{queues
} > 1 && $net->{model
} eq 'virtio'){
1738 # Consider we have N queues, the number of vectors needed is 2 * N + 2, i.e., one per in
1739 # and out of each queue plus one config interrupt and control vector queue
1740 my $vectors = $net->{queues
} * 2 + 2;
1741 $tmpstr .= ",vectors=$vectors,mq=on";
1743 $tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex
} ;
1745 if (my $mtu = $net->{mtu
}) {
1746 if ($net->{model
} eq 'virtio' && $net->{bridge
}) {
1747 my $bridge_mtu = PVE
::Network
::read_bridge_mtu
($net->{bridge
});
1750 } elsif ($mtu < 576) {
1751 die "netdev $netid: MTU '$mtu' is smaller than the IP minimum MTU '576'\n";
1752 } elsif ($mtu > $bridge_mtu) {
1753 die "netdev $netid: MTU '$mtu' is bigger than the bridge MTU '$bridge_mtu'\n";
1755 $tmpstr .= ",host_mtu=$mtu";
1757 warn "WARN: netdev $netid: ignoring MTU '$mtu', not using VirtIO or no bridge configured.\n";
1761 if ($use_old_bios_files) {
1763 if ($device eq 'virtio-net-pci') {
1764 $romfile = 'pxe-virtio.rom';
1765 } elsif ($device eq 'e1000') {
1766 $romfile = 'pxe-e1000.rom';
1767 } elsif ($device eq 'e1000e') {
1768 $romfile = 'pxe-e1000e.rom';
1769 } elsif ($device eq 'ne2k') {
1770 $romfile = 'pxe-ne2k_pci.rom';
1771 } elsif ($device eq 'pcnet') {
1772 $romfile = 'pxe-pcnet.rom';
1773 } elsif ($device eq 'rtl8139') {
1774 $romfile = 'pxe-rtl8139.rom';
1776 $tmpstr .= ",romfile=$romfile" if $romfile;
1782 sub print_netdev_full
{
1783 my ($vmid, $conf, $arch, $net, $netid, $hotplug) = @_;
1786 if ($netid =~ m/^net(\d+)$/) {
1790 die "got strange net id '$i'\n" if $i >= ${MAX_NETS
};
1792 my $ifname = "tap${vmid}i$i";
1794 # kvm uses TUNSETIFF ioctl, and that limits ifname length
1795 die "interface name '$ifname' is too long (max 15 character)\n"
1796 if length($ifname) >= 16;
1798 my $vhostparam = '';
1799 if (is_native
($arch)) {
1800 $vhostparam = ',vhost=on' if kernel_has_vhost_net
() && $net->{model
} eq 'virtio';
1803 my $vmname = $conf->{name
} || "vm$vmid";
1806 my $script = $hotplug ?
"pve-bridge-hotplug" : "pve-bridge";
1808 if ($net->{bridge
}) {
1809 $netdev = "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/$script"
1810 .",downscript=/var/lib/qemu-server/pve-bridgedown$vhostparam";
1812 $netdev = "type=user,id=$netid,hostname=$vmname";
1815 $netdev .= ",queues=$net->{queues}" if ($net->{queues
} && $net->{model
} eq 'virtio');
1821 'cirrus' => 'cirrus-vga',
1823 'vmware' => 'vmware-svga',
1824 'virtio' => 'virtio-vga',
1825 'virtio-gl' => 'virtio-vga-gl',
1828 sub print_vga_device
{
1829 my ($conf, $vga, $arch, $machine_version, $machine, $id, $qxlnum, $bridges) = @_;
1831 my $type = $vga_map->{$vga->{type
}};
1832 if ($arch eq 'aarch64' && defined($type) && $type eq 'virtio-vga') {
1833 $type = 'virtio-gpu';
1835 my $vgamem_mb = $vga->{memory
};
1837 my $max_outputs = '';
1839 $type = $id ?
'qxl' : 'qxl-vga';
1841 if (!$conf->{ostype
} || $conf->{ostype
} =~ m/^(?:l\d\d)|(?:other)$/) {
1842 # set max outputs so linux can have up to 4 qxl displays with one device
1843 if (min_version
($machine_version, 4, 1)) {
1844 $max_outputs = ",max_outputs=4";
1849 die "no devicetype for $vga->{type}\n" if !$type;
1853 if ($vga->{type
} =~ /^virtio/) {
1854 my $bytes = PVE
::Tools
::convert_size
($vgamem_mb, "mb" => "b");
1855 $memory = ",max_hostmem=$bytes";
1857 # from https://www.spice-space.org/multiple-monitors.html
1858 $memory = ",vgamem_mb=$vga->{memory}";
1859 my $ram = $vgamem_mb * 4;
1860 my $vram = $vgamem_mb * 2;
1861 $memory .= ",ram_size_mb=$ram,vram_size_mb=$vram";
1863 $memory = ",vgamem_mb=$vga->{memory}";
1865 } elsif ($qxlnum && $id) {
1866 $memory = ",ram_size=67108864,vram_size=33554432";
1870 if ($type eq 'VGA' && windows_version
($conf->{ostype
})) {
1871 $edidoff=",edid=off" if (!defined($conf->{bios
}) || $conf->{bios
} ne 'ovmf');
1874 my $q35 = PVE
::QemuServer
::Machine
::machine_type_is_q35
($conf);
1875 my $vgaid = "vga" . ($id // '');
1877 if ($q35 && $vgaid eq 'vga') {
1878 # the first display uses pcie.0 bus on q35 machines
1879 $pciaddr = print_pcie_addr
($vgaid, $bridges, $arch, $machine);
1881 $pciaddr = print_pci_addr
($vgaid, $bridges, $arch, $machine);
1884 if ($vga->{type
} eq 'virtio-gl') {
1885 my $base = '/usr/lib/x86_64-linux-gnu/lib';
1886 die "missing libraries for '$vga->{type}' detected! Please install 'libgl1' and 'libegl1'\n"
1887 if !-e
"${base}EGL.so.1" || !-e
"${base}GL.so.1";
1889 die "no DRM render node detected (/dev/dri/renderD*), no GPU? - needed for '$vga->{type}' display\n"
1890 if !PVE
::Tools
::dir_glob_regex
('/dev/dri/', "renderD.*");
1893 return "$type,id=${vgaid}${memory}${max_outputs}${pciaddr}${edidoff}";
1896 sub parse_number_sets
{
1899 foreach my $part (split(/;/, $set)) {
1900 if ($part =~ /^\s*(\d+)(?:-(\d+))?\s*$/) {
1901 die "invalid range: $part ($2 < $1)\n" if defined($2) && $2 < $1;
1902 push @$res, [ $1, $2 ];
1904 die "invalid range: $part\n";
1913 my $res = parse_property_string
($numa_fmt, $data);
1914 $res->{cpus
} = parse_number_sets
($res->{cpus
}) if defined($res->{cpus
});
1915 $res->{hostnodes
} = parse_number_sets
($res->{hostnodes
}) if defined($res->{hostnodes
});
1919 # netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
1923 my $res = eval { parse_property_string
($net_fmt, $data) };
1928 if (!defined($res->{macaddr
})) {
1929 my $dc = PVE
::Cluster
::cfs_read_file
('datacenter.cfg');
1930 $res->{macaddr
} = PVE
::Tools
::random_ether_addr
($dc->{mac_prefix
});
1935 # ipconfigX ip=cidr,gw=ip,ip6=cidr,gw6=ip
1936 sub parse_ipconfig
{
1939 my $res = eval { parse_property_string
($ipconfig_fmt, $data) };
1945 if ($res->{gw
} && !$res->{ip
}) {
1946 warn 'gateway specified without specifying an IP address';
1949 if ($res->{gw6
} && !$res->{ip6
}) {
1950 warn 'IPv6 gateway specified without specifying an IPv6 address';
1953 if ($res->{gw
} && $res->{ip
} eq 'dhcp') {
1954 warn 'gateway specified together with DHCP';
1957 if ($res->{gw6
} && $res->{ip6
} !~ /^$IPV6RE/) {
1959 warn "IPv6 gateway specified together with $res->{ip6} address";
1963 if (!$res->{ip
} && !$res->{ip6
}) {
1964 return { ip
=> 'dhcp', ip6
=> 'dhcp' };
1973 return PVE
::JSONSchema
::print_property_string
($net, $net_fmt);
1976 sub add_random_macs
{
1977 my ($settings) = @_;
1979 foreach my $opt (keys %$settings) {
1980 next if $opt !~ m/^net(\d+)$/;
1981 my $net = parse_net
($settings->{$opt});
1983 $settings->{$opt} = print_net
($net);
1987 sub vm_is_volid_owner
{
1988 my ($storecfg, $vmid, $volid) = @_;
1990 if ($volid !~ m
|^/|) {
1992 eval { ($path, $owner) = PVE
::Storage
::path
($storecfg, $volid); };
1993 if ($owner && ($owner == $vmid)) {
2001 sub vmconfig_register_unused_drive
{
2002 my ($storecfg, $vmid, $conf, $drive) = @_;
2004 if (drive_is_cloudinit
($drive)) {
2005 eval { PVE
::Storage
::vdisk_free
($storecfg, $drive->{file
}) };
2007 } elsif (!drive_is_cdrom
($drive)) {
2008 my $volid = $drive->{file
};
2009 if (vm_is_volid_owner
($storecfg, $vmid, $volid)) {
2010 PVE
::QemuConfig-
>add_unused_volume($conf, $volid, $vmid);
2015 # smbios: [manufacturer=str][,product=str][,version=str][,serial=str][,uuid=uuid][,sku=str][,family=str][,base64=bool]
2019 pattern
=> '[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}',
2020 format_description
=> 'UUID',
2021 description
=> "Set SMBIOS1 UUID.",
2026 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2027 format_description
=> 'Base64 encoded string',
2028 description
=> "Set SMBIOS1 version.",
2033 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2034 format_description
=> 'Base64 encoded string',
2035 description
=> "Set SMBIOS1 serial number.",
2040 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2041 format_description
=> 'Base64 encoded string',
2042 description
=> "Set SMBIOS1 manufacturer.",
2047 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2048 format_description
=> 'Base64 encoded string',
2049 description
=> "Set SMBIOS1 product ID.",
2054 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2055 format_description
=> 'Base64 encoded string',
2056 description
=> "Set SMBIOS1 SKU string.",
2061 pattern
=> '[A-Za-z0-9+\/]+={0,2}',
2062 format_description
=> 'Base64 encoded string',
2063 description
=> "Set SMBIOS1 family string.",
2068 description
=> 'Flag to indicate that the SMBIOS values are base64 encoded',
2076 my $res = eval { parse_property_string
($smbios1_fmt, $data) };
2083 return PVE
::JSONSchema
::print_property_string
($smbios1, $smbios1_fmt);
2086 PVE
::JSONSchema
::register_format
('pve-qm-smbios1', $smbios1_fmt);
2088 sub parse_watchdog
{
2093 my $res = eval { parse_property_string
($watchdog_fmt, $value) };
2098 sub parse_guest_agent
{
2101 return {} if !defined($conf->{agent
});
2103 my $res = eval { parse_property_string
($agent_fmt, $conf->{agent
}) };
2106 # if the agent is disabled ignore the other potentially set properties
2107 return {} if !$res->{enabled
};
2112 my ($conf, $key) = @_;
2113 return undef if !defined($conf->{agent
});
2115 my $agent = parse_guest_agent
($conf);
2116 return $agent->{$key};
2122 return {} if !$value;
2123 my $res = eval { parse_property_string
($vga_fmt, $value) };
2133 my $res = eval { parse_property_string
($rng_fmt, $value) };
2138 sub parse_meta_info
{
2143 my $res = eval { parse_property_string
($meta_info_fmt, $value) };
2148 sub new_meta_info_string
{
2149 my () = @_; # for now do not allow to override any value
2151 return PVE
::JSONSchema
::print_property_string
(
2153 'creation-qemu' => kvm_user_version
(),
2154 ctime
=> "". int(time()),
2160 sub qemu_created_version_fixups
{
2161 my ($conf, $forcemachine, $kvmver) = @_;
2163 my $meta = parse_meta_info
($conf->{meta
}) // {};
2164 my $forced_vers = PVE
::QemuServer
::Machine
::extract_version
($forcemachine);
2166 # check if we need to apply some handling for VMs that always use the latest machine version but
2167 # had a machine version transition happen that affected HW such that, e.g., an OS config change
2168 # would be required (we do not want to pin machine version for non-windows OS type)
2170 (!defined($conf->{machine
}) || $conf->{machine
} =~ m/^(?:pc|q35|virt)$/) # non-versioned machine
2171 && (!defined($meta->{'creation-qemu'}) || !min_version
($meta->{'creation-qemu'}, 6, 1)) # created before 6.1
2172 && (!$forced_vers || min_version
($forced_vers, 6, 1)) # handle snapshot-rollback/migrations
2173 && min_version
($kvmver, 6, 1) # only need to apply the change since 6.1
2175 my $q35 = PVE
::QemuServer
::Machine
::machine_type_is_q35
($conf);
2176 if ($q35 && $conf->{ostype
} && $conf->{ostype
} eq 'l26') {
2177 # this changed to default-on in Q 6.1 for q35 machines, it will mess with PCI slot view
2178 # and thus with the predictable interface naming of systemd
2179 return ['-global', 'ICH9-LPC.acpi-pci-hotplug-with-bridge-support=off'];
2185 PVE
::JSONSchema
::register_format
('pve-qm-usb-device', \
&verify_usb_device
);
2186 sub verify_usb_device
{
2187 my ($value, $noerr) = @_;
2189 return $value if parse_usb_device
($value);
2193 die "unable to parse usb device\n";
2196 # add JSON properties for create and set function
2197 sub json_config_properties
{
2198 my ($prop, $with_disk_alloc) = @_;
2200 my $skip_json_config_opts = {
2204 runningmachine
=> 1,
2209 foreach my $opt (keys %$confdesc) {
2210 next if $skip_json_config_opts->{$opt};
2212 if ($with_disk_alloc && is_valid_drivename
($opt)) {
2213 $prop->{$opt} = $PVE::QemuServer
::Drive
::drivedesc_hash_with_alloc-
>{$opt};
2215 $prop->{$opt} = $confdesc->{$opt};
2222 # Properties that we can read from an OVF file
2223 sub json_ovf_properties
{
2226 for my $device (PVE
::QemuServer
::Drive
::valid_drive_names
()) {
2227 $prop->{$device} = {
2229 format
=> 'pve-volume-id-or-absolute-path',
2230 description
=> "Disk image that gets imported to $device",
2237 description
=> "The number of CPU cores.",
2242 description
=> "Amount of RAM for the VM in MB.",
2247 description
=> "Name of the VM.",
2254 # return copy of $confdesc_cloudinit to generate documentation
2255 sub cloudinit_config_properties
{
2257 return dclone
($confdesc_cloudinit);
2261 my ($key, $value) = @_;
2263 die "unknown setting '$key'\n" if !$confdesc->{$key};
2265 my $type = $confdesc->{$key}->{type
};
2267 if (!defined($value)) {
2268 die "got undefined value\n";
2271 if ($value =~ m/[\n\r]/) {
2272 die "property contains a line feed\n";
2275 if ($type eq 'boolean') {
2276 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
2277 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
2278 die "type check ('boolean') failed - got '$value'\n";
2279 } elsif ($type eq 'integer') {
2280 return int($1) if $value =~ m/^(\d+)$/;
2281 die "type check ('integer') failed - got '$value'\n";
2282 } elsif ($type eq 'number') {
2283 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
2284 die "type check ('number') failed - got '$value'\n";
2285 } elsif ($type eq 'string') {
2286 if (my $fmt = $confdesc->{$key}->{format
}) {
2287 PVE
::JSONSchema
::check_format
($fmt, $value);
2290 $value =~ s/^\"(.*)\"$/$1/;
2293 die "internal error"
2298 my ($storecfg, $vmid, $skiplock, $replacement_conf, $purge_unreferenced) = @_;
2300 my $conf = PVE
::QemuConfig-
>load_config($vmid);
2302 PVE
::QemuConfig-
>check_lock($conf) if !$skiplock;
2304 if ($conf->{template
}) {
2305 # check if any base image is still used by a linked clone
2306 PVE
::QemuConfig-
>foreach_volume_full($conf, { include_unused
=> 1 }, sub {
2307 my ($ds, $drive) = @_;
2308 return if drive_is_cdrom
($drive);
2310 my $volid = $drive->{file
};
2311 return if !$volid || $volid =~ m
|^/|;
2313 die "base volume '$volid' is still in use by linked cloned\n"
2314 if PVE
::Storage
::volume_is_base_and_used
($storecfg, $volid);
2320 my $remove_owned_drive = sub {
2321 my ($ds, $drive) = @_;
2322 return if drive_is_cdrom
($drive, 1);
2324 my $volid = $drive->{file
};
2325 return if !$volid || $volid =~ m
|^/|;
2326 return if $volids->{$volid};
2328 my ($path, $owner) = PVE
::Storage
::path
($storecfg, $volid);
2329 return if !$path || !$owner || ($owner != $vmid);
2331 $volids->{$volid} = 1;
2332 eval { PVE
::Storage
::vdisk_free
($storecfg, $volid) };
2333 warn "Could not remove disk '$volid', check manually: $@" if $@;
2336 # only remove disks owned by this VM (referenced in the config)
2337 my $include_opts = {
2338 include_unused
=> 1,
2339 extra_keys
=> ['vmstate'],
2341 PVE
::QemuConfig-
>foreach_volume_full($conf, $include_opts, $remove_owned_drive);
2343 for my $snap (values %{$conf->{snapshots
}}) {
2344 next if !defined($snap->{vmstate
});
2345 my $drive = PVE
::QemuConfig-
>parse_volume('vmstate', $snap->{vmstate
}, 1);
2346 next if !defined($drive);
2347 $remove_owned_drive->('vmstate', $drive);
2350 PVE
::QemuConfig-
>foreach_volume_full($conf->{pending
}, $include_opts, $remove_owned_drive);
2352 if ($purge_unreferenced) { # also remove unreferenced disk
2353 my $vmdisks = PVE
::Storage
::vdisk_list
($storecfg, undef, $vmid, undef, 'images');
2354 PVE
::Storage
::foreach_volid
($vmdisks, sub {
2355 my ($volid, $sid, $volname, $d) = @_;
2356 eval { PVE
::Storage
::vdisk_free
($storecfg, $volid) };
2361 if (defined $replacement_conf) {
2362 PVE
::QemuConfig-
>write_config($vmid, $replacement_conf);
2364 PVE
::QemuConfig-
>destroy_config($vmid);
2368 sub parse_vm_config
{
2369 my ($filename, $raw, $strict) = @_;
2371 return if !defined($raw);
2374 digest
=> Digest
::SHA
::sha1_hex
($raw),
2379 my $handle_error = sub {
2389 $filename =~ m
|/qemu-server/(\d
+)\
.conf
$|
2390 || die "got strange filename '$filename'";
2398 my @lines = split(/\n/, $raw);
2399 foreach my $line (@lines) {
2400 next if $line =~ m/^\s*$/;
2402 if ($line =~ m/^\[PENDING\]\s*$/i) {
2403 $section = 'pending';
2404 if (defined($descr)) {
2406 $conf->{description
} = $descr;
2409 $conf = $res->{$section} = {};
2412 } elsif ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
2414 if (defined($descr)) {
2416 $conf->{description
} = $descr;
2419 $conf = $res->{snapshots
}->{$section} = {};
2423 if ($line =~ m/^\#(.*)$/) {
2424 $descr = '' if !defined($descr);
2425 $descr .= PVE
::Tools
::decode_text
($1) . "\n";
2429 if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
2430 $descr = '' if !defined($descr);
2431 $descr .= PVE
::Tools
::decode_text
($2);
2432 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
2433 $conf->{snapstate
} = $1;
2434 } elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
2437 $conf->{$key} = $value;
2438 } elsif ($line =~ m/^delete:\s*(.*\S)\s*$/) {
2440 if ($section eq 'pending') {
2441 $conf->{delete} = $value; # we parse this later
2443 $handle_error->("vm $vmid - property 'delete' is only allowed in [PENDING]\n");
2445 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(.+?)\s*$/) {
2448 eval { $value = check_type
($key, $value); };
2450 $handle_error->("vm $vmid - unable to parse value of '$key' - $@");
2452 $key = 'ide2' if $key eq 'cdrom';
2453 my $fmt = $confdesc->{$key}->{format
};
2454 if ($fmt && $fmt =~ /^pve-qm-(?:ide|scsi|virtio|sata)$/) {
2455 my $v = parse_drive
($key, $value);
2456 if (my $volid = filename_to_volume_id
($vmid, $v->{file
}, $v->{media
})) {
2457 $v->{file
} = $volid;
2458 $value = print_drive
($v);
2460 $handle_error->("vm $vmid - unable to parse value of '$key'\n");
2465 $conf->{$key} = $value;
2468 $handle_error->("vm $vmid - unable to parse config: $line\n");
2472 if (defined($descr)) {
2474 $conf->{description
} = $descr;
2476 delete $res->{snapstate
}; # just to be sure
2481 sub write_vm_config
{
2482 my ($filename, $conf) = @_;
2484 delete $conf->{snapstate
}; # just to be sure
2486 if ($conf->{cdrom
}) {
2487 die "option ide2 conflicts with cdrom\n" if $conf->{ide2
};
2488 $conf->{ide2
} = $conf->{cdrom
};
2489 delete $conf->{cdrom
};
2492 # we do not use 'smp' any longer
2493 if ($conf->{sockets
}) {
2494 delete $conf->{smp
};
2495 } elsif ($conf->{smp
}) {
2496 $conf->{sockets
} = $conf->{smp
};
2497 delete $conf->{cores
};
2498 delete $conf->{smp
};
2501 my $used_volids = {};
2503 my $cleanup_config = sub {
2504 my ($cref, $pending, $snapname) = @_;
2506 foreach my $key (keys %$cref) {
2507 next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots' ||
2508 $key eq 'snapstate' || $key eq 'pending';
2509 my $value = $cref->{$key};
2510 if ($key eq 'delete') {
2511 die "propertry 'delete' is only allowed in [PENDING]\n"
2513 # fixme: check syntax?
2516 eval { $value = check_type
($key, $value); };
2517 die "unable to parse value of '$key' - $@" if $@;
2519 $cref->{$key} = $value;
2521 if (!$snapname && is_valid_drivename
($key)) {
2522 my $drive = parse_drive
($key, $value);
2523 $used_volids->{$drive->{file
}} = 1 if $drive && $drive->{file
};
2528 &$cleanup_config($conf);
2530 &$cleanup_config($conf->{pending
}, 1);
2532 foreach my $snapname (keys %{$conf->{snapshots
}}) {
2533 die "internal error: snapshot name '$snapname' is forbidden" if lc($snapname) eq 'pending';
2534 &$cleanup_config($conf->{snapshots
}->{$snapname}, undef, $snapname);
2537 # remove 'unusedX' settings if we re-add a volume
2538 foreach my $key (keys %$conf) {
2539 my $value = $conf->{$key};
2540 if ($key =~ m/^unused/ && $used_volids->{$value}) {
2541 delete $conf->{$key};
2545 my $generate_raw_config = sub {
2546 my ($conf, $pending) = @_;
2550 # add description as comment to top of file
2551 if (defined(my $descr = $conf->{description
})) {
2553 foreach my $cl (split(/\n/, $descr)) {
2554 $raw .= '#' . PVE
::Tools
::encode_text
($cl) . "\n";
2557 $raw .= "#\n" if $pending;
2561 foreach my $key (sort keys %$conf) {
2562 next if $key =~ /^(digest|description|pending|snapshots)$/;
2563 $raw .= "$key: $conf->{$key}\n";
2568 my $raw = &$generate_raw_config($conf);
2570 if (scalar(keys %{$conf->{pending
}})){
2571 $raw .= "\n[PENDING]\n";
2572 $raw .= &$generate_raw_config($conf->{pending
}, 1);
2575 foreach my $snapname (sort keys %{$conf->{snapshots
}}) {
2576 $raw .= "\n[$snapname]\n";
2577 $raw .= &$generate_raw_config($conf->{snapshots
}->{$snapname});
2587 # we use static defaults from our JSON schema configuration
2588 foreach my $key (keys %$confdesc) {
2589 if (defined(my $default = $confdesc->{$key}->{default})) {
2590 $res->{$key} = $default;
2598 my $vmlist = PVE
::Cluster
::get_vmlist
();
2600 return $res if !$vmlist || !$vmlist->{ids
};
2601 my $ids = $vmlist->{ids
};
2602 my $nodename = nodename
();
2604 foreach my $vmid (keys %$ids) {
2605 my $d = $ids->{$vmid};
2606 next if !$d->{node
} || $d->{node
} ne $nodename;
2607 next if !$d->{type
} || $d->{type
} ne 'qemu';
2608 $res->{$vmid}->{exists} = 1;
2613 # test if VM uses local resources (to prevent migration)
2614 sub check_local_resources
{
2615 my ($conf, $noerr) = @_;
2619 push @loc_res, "hostusb" if $conf->{hostusb
}; # old syntax
2620 push @loc_res, "hostpci" if $conf->{hostpci
}; # old syntax
2622 push @loc_res, "ivshmem" if $conf->{ivshmem
};
2624 foreach my $k (keys %$conf) {
2625 next if $k =~ m/^usb/ && ($conf->{$k} =~ m/^spice(?![^,])/);
2626 # sockets are safe: they will recreated be on the target side post-migrate
2627 next if $k =~ m/^serial/ && ($conf->{$k} eq 'socket');
2628 push @loc_res, $k if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
2631 die "VM uses local resources\n" if scalar @loc_res && !$noerr;
2636 # check if used storages are available on all nodes (use by migrate)
2637 sub check_storage_availability
{
2638 my ($storecfg, $conf, $node) = @_;
2640 PVE
::QemuConfig-
>foreach_volume($conf, sub {
2641 my ($ds, $drive) = @_;
2643 my $volid = $drive->{file
};
2646 my ($sid, $volname) = PVE
::Storage
::parse_volume_id
($volid, 1);
2649 # check if storage is available on both nodes
2650 my $scfg = PVE
::Storage
::storage_check_enabled
($storecfg, $sid);
2651 PVE
::Storage
::storage_check_enabled
($storecfg, $sid, $node);
2653 my ($vtype) = PVE
::Storage
::parse_volname
($storecfg, $volid);
2655 die "$volid: content type '$vtype' is not available on storage '$sid'\n"
2656 if !$scfg->{content
}->{$vtype};
2660 # list nodes where all VM images are available (used by has_feature API)
2662 my ($conf, $storecfg) = @_;
2664 my $nodelist = PVE
::Cluster
::get_nodelist
();
2665 my $nodehash = { map { $_ => 1 } @$nodelist };
2666 my $nodename = nodename
();
2668 PVE
::QemuConfig-
>foreach_volume($conf, sub {
2669 my ($ds, $drive) = @_;
2671 my $volid = $drive->{file
};
2674 my ($storeid, $volname) = PVE
::Storage
::parse_volume_id
($volid, 1);
2676 my $scfg = PVE
::Storage
::storage_config
($storecfg, $storeid);
2677 if ($scfg->{disable
}) {
2679 } elsif (my $avail = $scfg->{nodes
}) {
2680 foreach my $node (keys %$nodehash) {
2681 delete $nodehash->{$node} if !$avail->{$node};
2683 } elsif (!$scfg->{shared
}) {
2684 foreach my $node (keys %$nodehash) {
2685 delete $nodehash->{$node} if $node ne $nodename
2694 sub check_local_storage_availability
{
2695 my ($conf, $storecfg) = @_;
2697 my $nodelist = PVE
::Cluster
::get_nodelist
();
2698 my $nodehash = { map { $_ => {} } @$nodelist };
2700 PVE
::QemuConfig-
>foreach_volume($conf, sub {
2701 my ($ds, $drive) = @_;
2703 my $volid = $drive->{file
};
2706 my ($storeid, $volname) = PVE
::Storage
::parse_volume_id
($volid, 1);
2708 my $scfg = PVE
::Storage
::storage_config
($storecfg, $storeid);
2710 if ($scfg->{disable
}) {
2711 foreach my $node (keys %$nodehash) {
2712 $nodehash->{$node}->{unavailable_storages
}->{$storeid} = 1;
2714 } elsif (my $avail = $scfg->{nodes
}) {
2715 foreach my $node (keys %$nodehash) {
2716 if (!$avail->{$node}) {
2717 $nodehash->{$node}->{unavailable_storages
}->{$storeid} = 1;
2724 foreach my $node (values %$nodehash) {
2725 if (my $unavail = $node->{unavailable_storages
}) {
2726 $node->{unavailable_storages
} = [ sort keys %$unavail ];
2733 # Compat only, use assert_config_exists_on_node and vm_running_locally where possible
2735 my ($vmid, $nocheck, $node) = @_;
2737 PVE
::QemuConfig
::assert_config_exists_on_node
($vmid, $node) if !$nocheck;
2738 return PVE
::QemuServer
::Helpers
::vm_running_locally
($vmid);
2743 my $vzlist = config_list
();
2745 my $fd = IO
::Dir-
>new($PVE::QemuServer
::Helpers
::var_run_tmpdir
) || return $vzlist;
2747 while (defined(my $de = $fd->read)) {
2748 next if $de !~ m/^(\d+)\.pid$/;
2750 next if !defined($vzlist->{$vmid});
2751 if (my $pid = check_running
($vmid)) {
2752 $vzlist->{$vmid}->{pid
} = $pid;
2759 our $vmstatus_return_properties = {
2760 vmid
=> get_standard_option
('pve-vmid'),
2762 description
=> "Qemu process status.",
2764 enum
=> ['stopped', 'running'],
2767 description
=> "Maximum memory in bytes.",
2770 renderer
=> 'bytes',
2773 description
=> "Root disk size in bytes.",
2776 renderer
=> 'bytes',
2779 description
=> "VM name.",
2784 description
=> "Qemu QMP agent status.",
2789 description
=> "PID of running qemu process.",
2794 description
=> "Uptime.",
2797 renderer
=> 'duration',
2800 description
=> "Maximum usable CPUs.",
2805 description
=> "The current config lock, if any.",
2810 description
=> "The current configured tags, if any",
2814 'running-machine' => {
2815 description
=> "The currently running machine type (if running).",
2820 description
=> "The currently running QEMU version (if running).",
2826 my $last_proc_pid_stat;
2828 # get VM status information
2829 # This must be fast and should not block ($full == false)
2830 # We only query KVM using QMP if $full == true (this can be slow)
2832 my ($opt_vmid, $full) = @_;
2836 my $storecfg = PVE
::Storage
::config
();
2838 my $list = vzlist
();
2839 my $defaults = load_defaults
();
2841 my ($uptime) = PVE
::ProcFSTools
::read_proc_uptime
(1);
2843 my $cpucount = $cpuinfo->{cpus
} || 1;
2845 foreach my $vmid (keys %$list) {
2846 next if $opt_vmid && ($vmid ne $opt_vmid);
2848 my $conf = PVE
::QemuConfig-
>load_config($vmid);
2850 my $d = { vmid
=> int($vmid) };
2851 $d->{pid
} = int($list->{$vmid}->{pid
}) if $list->{$vmid}->{pid
};
2853 # fixme: better status?
2854 $d->{status
} = $list->{$vmid}->{pid
} ?
'running' : 'stopped';
2856 my $size = PVE
::QemuServer
::Drive
::bootdisk_size
($storecfg, $conf);
2857 if (defined($size)) {
2858 $d->{disk
} = 0; # no info available
2859 $d->{maxdisk
} = $size;
2865 $d->{cpus
} = ($conf->{sockets
} || $defaults->{sockets
})
2866 * ($conf->{cores
} || $defaults->{cores
});
2867 $d->{cpus
} = $cpucount if $d->{cpus
} > $cpucount;
2868 $d->{cpus
} = $conf->{vcpus
} if $conf->{vcpus
};
2870 $d->{name
} = $conf->{name
} || "VM $vmid";
2871 $d->{maxmem
} = $conf->{memory
} ?
$conf->{memory
}*(1024*1024)
2872 : $defaults->{memory
}*(1024*1024);
2874 if ($conf->{balloon
}) {
2875 $d->{balloon_min
} = $conf->{balloon
}*(1024*1024);
2876 $d->{shares
} = defined($conf->{shares
}) ?
$conf->{shares
}
2877 : $defaults->{shares
};
2888 $d->{diskwrite
} = 0;
2890 $d->{template
} = 1 if PVE
::QemuConfig-
>is_template($conf);
2892 $d->{serial
} = 1 if conf_has_serial
($conf);
2893 $d->{lock} = $conf->{lock} if $conf->{lock};
2894 $d->{tags
} = $conf->{tags
} if defined($conf->{tags
});
2899 my $netdev = PVE
::ProcFSTools
::read_proc_net_dev
();
2900 foreach my $dev (keys %$netdev) {
2901 next if $dev !~ m/^tap([1-9]\d*)i/;
2903 my $d = $res->{$vmid};
2906 $d->{netout
} += $netdev->{$dev}->{receive
};
2907 $d->{netin
} += $netdev->{$dev}->{transmit
};
2910 $d->{nics
}->{$dev}->{netout
} = int($netdev->{$dev}->{receive
});
2911 $d->{nics
}->{$dev}->{netin
} = int($netdev->{$dev}->{transmit
});
2916 my $ctime = gettimeofday
;
2918 foreach my $vmid (keys %$list) {
2920 my $d = $res->{$vmid};
2921 my $pid = $d->{pid
};
2924 my $pstat = PVE
::ProcFSTools
::read_proc_pid_stat
($pid);
2925 next if !$pstat; # not running
2927 my $used = $pstat->{utime} + $pstat->{stime
};
2929 $d->{uptime
} = int(($uptime - $pstat->{starttime
})/$cpuinfo->{user_hz
});
2931 if ($pstat->{vsize
}) {
2932 $d->{mem
} = int(($pstat->{rss
}/$pstat->{vsize
})*$d->{maxmem
});
2935 my $old = $last_proc_pid_stat->{$pid};
2937 $last_proc_pid_stat->{$pid} = {
2945 my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz
};
2947 if ($dtime > 1000) {
2948 my $dutime = $used - $old->{used
};
2950 $d->{cpu
} = (($dutime/$dtime)* $cpucount) / $d->{cpus
};
2951 $last_proc_pid_stat->{$pid} = {
2957 $d->{cpu
} = $old->{cpu
};
2961 return $res if !$full;
2963 my $qmpclient = PVE
::QMPClient-
>new();
2965 my $ballooncb = sub {
2966 my ($vmid, $resp) = @_;
2968 my $info = $resp->{'return'};
2969 return if !$info->{max_mem
};
2971 my $d = $res->{$vmid};
2973 # use memory assigned to VM
2974 $d->{maxmem
} = $info->{max_mem
};
2975 $d->{balloon
} = $info->{actual
};
2977 if (defined($info->{total_mem
}) && defined($info->{free_mem
})) {
2978 $d->{mem
} = $info->{total_mem
} - $info->{free_mem
};
2979 $d->{freemem
} = $info->{free_mem
};
2982 $d->{ballooninfo
} = $info;
2985 my $blockstatscb = sub {
2986 my ($vmid, $resp) = @_;
2987 my $data = $resp->{'return'} || [];
2988 my $totalrdbytes = 0;
2989 my $totalwrbytes = 0;
2991 for my $blockstat (@$data) {
2992 $totalrdbytes = $totalrdbytes + $blockstat->{stats
}->{rd_bytes
};
2993 $totalwrbytes = $totalwrbytes + $blockstat->{stats
}->{wr_bytes
};
2995 $blockstat->{device
} =~ s/drive-//;
2996 $res->{$vmid}->{blockstat
}->{$blockstat->{device
}} = $blockstat->{stats
};
2998 $res->{$vmid}->{diskread
} = $totalrdbytes;
2999 $res->{$vmid}->{diskwrite
} = $totalwrbytes;
3002 my $machinecb = sub {
3003 my ($vmid, $resp) = @_;
3004 my $data = $resp->{'return'} || [];
3006 $res->{$vmid}->{'running-machine'} =
3007 PVE
::QemuServer
::Machine
::current_from_query_machines
($data);
3010 my $versioncb = sub {
3011 my ($vmid, $resp) = @_;
3012 my $data = $resp->{'return'} // {};
3013 my $version = 'unknown';
3015 if (my $v = $data->{qemu
}) {
3016 $version = $v->{major
} . "." . $v->{minor
} . "." . $v->{micro
};
3019 $res->{$vmid}->{'running-qemu'} = $version;
3022 my $statuscb = sub {
3023 my ($vmid, $resp) = @_;
3025 $qmpclient->queue_cmd($vmid, $blockstatscb, 'query-blockstats');
3026 $qmpclient->queue_cmd($vmid, $machinecb, 'query-machines');
3027 $qmpclient->queue_cmd($vmid, $versioncb, 'query-version');
3028 # this fails if ballon driver is not loaded, so this must be
3029 # the last commnand (following command are aborted if this fails).
3030 $qmpclient->queue_cmd($vmid, $ballooncb, 'query-balloon');
3032 my $status = 'unknown';
3033 if (!defined($status = $resp->{'return'}->{status
})) {
3034 warn "unable to get VM status\n";
3038 $res->{$vmid}->{qmpstatus
} = $resp->{'return'}->{status
};
3041 foreach my $vmid (keys %$list) {
3042 next if $opt_vmid && ($vmid ne $opt_vmid);
3043 next if !$res->{$vmid}->{pid
}; # not running
3044 $qmpclient->queue_cmd($vmid, $statuscb, 'query-status');
3047 $qmpclient->queue_execute(undef, 2);
3049 foreach my $vmid (keys %$list) {
3050 next if $opt_vmid && ($vmid ne $opt_vmid);
3051 next if !$res->{$vmid}->{pid
}; #not running
3053 # we can't use the $qmpclient since it might have already aborted on
3054 # 'query-balloon', but this might also fail for older versions...
3055 my $qemu_support = eval { mon_cmd
($vmid, "query-proxmox-support") };
3056 $res->{$vmid}->{'proxmox-support'} = $qemu_support // {};
3059 foreach my $vmid (keys %$list) {
3060 next if $opt_vmid && ($vmid ne $opt_vmid);
3061 $res->{$vmid}->{qmpstatus
} = $res->{$vmid}->{status
} if !$res->{$vmid}->{qmpstatus
};
3067 sub conf_has_serial
{
3070 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
3071 if ($conf->{"serial$i"}) {
3079 sub conf_has_audio
{
3080 my ($conf, $id) = @_;
3083 my $audio = $conf->{"audio$id"};
3084 return if !defined($audio);
3086 my $audioproperties = parse_property_string
($audio_fmt, $audio);
3087 my $audiodriver = $audioproperties->{driver
} // 'spice';
3090 dev
=> $audioproperties->{device
},
3091 dev_id
=> "audiodev$id",
3092 backend
=> $audiodriver,
3093 backend_id
=> "$audiodriver-backend${id}",
3098 my ($audio, $audiopciaddr, $machine_version) = @_;
3102 my $id = $audio->{dev_id
};
3104 if (min_version
($machine_version, 4, 2)) {
3105 $audiodev = ",audiodev=$audio->{backend_id}";
3108 if ($audio->{dev
} eq 'AC97') {
3109 push @$devs, '-device', "AC97,id=${id}${audiopciaddr}$audiodev";
3110 } elsif ($audio->{dev
} =~ /intel\-hda$/) {
3111 push @$devs, '-device', "$audio->{dev},id=${id}${audiopciaddr}";
3112 push @$devs, '-device', "hda-micro,id=${id}-codec0,bus=${id}.0,cad=0$audiodev";
3113 push @$devs, '-device', "hda-duplex,id=${id}-codec1,bus=${id}.0,cad=1$audiodev";
3115 die "unkown audio device '$audio->{dev}', implement me!";
3118 push @$devs, '-audiodev', "$audio->{backend},id=$audio->{backend_id}";
3126 socket => "/var/run/qemu-server/$vmid.swtpm",
3127 pid
=> "/var/run/qemu-server/$vmid.swtpm.pid",
3131 sub add_tpm_device
{
3132 my ($vmid, $devices, $conf) = @_;
3134 return if !$conf->{tpmstate0
};
3136 my $paths = get_tpm_paths
($vmid);
3138 push @$devices, "-chardev", "socket,id=tpmchar,path=$paths->{socket}";
3139 push @$devices, "-tpmdev", "emulator,id=tpmdev,chardev=tpmchar";
3140 push @$devices, "-device", "tpm-tis,tpmdev=tpmdev";
3144 my ($storecfg, $vmid, $tpmdrive, $migration) = @_;
3146 return if !$tpmdrive;
3149 my $tpm = parse_drive
("tpmstate0", $tpmdrive);
3150 my ($storeid, $volname) = PVE
::Storage
::parse_volume_id
($tpm->{file
}, 1);
3152 $state = PVE
::Storage
::map_volume
($storecfg, $tpm->{file
});
3154 $state = $tpm->{file
};
3157 my $paths = get_tpm_paths
($vmid);
3159 # during migration, we will get state from remote
3162 # run swtpm_setup to create a new TPM state if it doesn't exist yet
3169 "--create-platform-cert",
3172 "/etc/swtpm_setup.conf", # do not use XDG configs
3174 "0", # force creation as root, error if not possible
3175 "--not-overwrite", # ignore existing state, do not modify
3178 push @$setup_cmd, "--tpm2" if $tpm->{version
} eq 'v2.0';
3179 # TPM 2.0 supports ECC crypto, use if possible
3180 push @$setup_cmd, "--ecc" if $tpm->{version
} eq 'v2.0';
3182 run_command
($setup_cmd, outfunc
=> sub {
3183 print "swtpm_setup: $1\n";
3187 my $emulator_cmd = [
3191 "backend-uri=file://$state,mode=0600",
3193 "type=unixio,path=$paths->{socket},mode=0600",
3195 "file=$paths->{pid}",
3196 "--terminate", # terminate on QEMU disconnect
3199 push @$emulator_cmd, "--tpm2" if $tpm->{version
} eq 'v2.0';
3200 run_command
($emulator_cmd, outfunc
=> sub { print $1; });
3202 my $tries = 100; # swtpm may take a bit to start before daemonizing, wait up to 5s for pid
3203 while (! -e
$paths->{pid
}) {
3204 die "failed to start swtpm: pid file '$paths->{pid}' wasn't created.\n" if --$tries == 0;
3208 # return untainted PID of swtpm daemon so it can be killed on error
3209 file_read_firstline
($paths->{pid
}) =~ m/(\d+)/;
3213 sub vga_conf_has_spice
{
3216 my $vgaconf = parse_vga
($vga);
3217 my $vgatype = $vgaconf->{type
};
3218 return 0 if !$vgatype || $vgatype !~ m/^qxl([234])?$/;
3225 return get_host_arch
() eq $arch;
3230 return $conf->{arch
} // get_host_arch
();
3233 my $default_machines = {
3238 sub get_installed_machine_version
{
3239 my ($kvmversion) = @_;
3240 $kvmversion = kvm_user_version
() if !defined($kvmversion);
3241 $kvmversion =~ m/^(\d+\.\d+)/;
3245 sub windows_get_pinned_machine_version
{
3246 my ($machine, $base_version, $kvmversion) = @_;
3248 my $pin_version = $base_version;
3249 if (!defined($base_version) ||
3250 !PVE
::QemuServer
::Machine
::can_run_pve_machine_version
($base_version, $kvmversion)
3252 $pin_version = get_installed_machine_version
($kvmversion);
3254 if (!$machine || $machine eq 'pc') {
3255 $machine = "pc-i440fx-$pin_version";
3256 } elsif ($machine eq 'q35') {
3257 $machine = "pc-q35-$pin_version";
3258 } elsif ($machine eq 'virt') {
3259 $machine = "virt-$pin_version";
3261 warn "unknown machine type '$machine', not touching that!\n";
3267 sub get_vm_machine
{
3268 my ($conf, $forcemachine, $arch, $add_pve_version, $kvmversion) = @_;
3270 my $machine = $forcemachine || $conf->{machine
};
3272 if (!$machine || $machine =~ m/^(?:pc|q35|virt)$/) {
3273 $kvmversion //= kvm_user_version
();
3274 # we must pin Windows VMs without a specific version to 5.1, as 5.2 fixed a bug in ACPI
3275 # layout which confuses windows quite a bit and may result in various regressions..
3276 # see: https://lists.gnu.org/archive/html/qemu-devel/2021-02/msg08484.html
3277 if (windows_version
($conf->{ostype
})) {
3278 $machine = windows_get_pinned_machine_version
($machine, '5.1', $kvmversion);
3281 $machine ||= $default_machines->{$arch};
3282 if ($add_pve_version) {
3283 my $pvever = PVE
::QemuServer
::Machine
::get_pve_version
($kvmversion);
3284 $machine .= "+pve$pvever";
3288 if ($add_pve_version && $machine !~ m/\+pve\d+?(?:\.pxe)?$/) {
3289 my $is_pxe = $machine =~ m/^(.*?)\.pxe$/;
3290 $machine = $1 if $is_pxe;
3292 # for version-pinned machines that do not include a pve-version (e.g.
3293 # pc-q35-4.1), we assume 0 to keep them stable in case we bump
3294 $machine .= '+pve0';
3296 $machine .= '.pxe' if $is_pxe;
3302 sub get_ovmf_files
($$$) {
3303 my ($arch, $efidisk, $smm) = @_;
3305 my $types = $OVMF->{$arch}
3306 or die "no OVMF images known for architecture '$arch'\n";
3308 my $type = 'default';
3309 if (defined($efidisk->{efitype
}) && $efidisk->{efitype
} eq '4m') {
3310 $type = $smm ?
"4m" : "4m-no-smm";
3311 $type .= '-ms' if $efidisk->{'pre-enrolled-keys'};
3314 return $types->{$type}->@*;
3318 aarch64
=> '/usr/bin/qemu-system-aarch64',
3319 x86_64
=> '/usr/bin/qemu-system-x86_64',
3321 sub get_command_for_arch
($) {