]> git.proxmox.com Git - qemu-server.git/blob - PVE/QemuServer.pm
bug 597: hotplug fix
[qemu-server.git] / PVE / QemuServer.pm
1 package PVE::QemuServer;
2
3 use strict;
4 use warnings;
5 use POSIX;
6 use IO::Handle;
7 use IO::Select;
8 use IO::File;
9 use IO::Dir;
10 use IO::Socket::UNIX;
11 use File::Basename;
12 use File::Path;
13 use File::stat;
14 use Getopt::Long;
15 use Digest::SHA;
16 use Fcntl ':flock';
17 use Cwd 'abs_path';
18 use IPC::Open3;
19 use JSON;
20 use Fcntl;
21 use PVE::SafeSyslog;
22 use Storable qw(dclone);
23 use PVE::Exception qw(raise raise_param_exc);
24 use PVE::Storage;
25 use PVE::Tools qw(run_command lock_file lock_file_full file_read_firstline dir_glob_foreach);
26 use PVE::JSONSchema qw(get_standard_option);
27 use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
28 use PVE::INotify;
29 use PVE::ProcFSTools;
30 use PVE::QMPClient;
31 use PVE::RPCEnvironment;
32 use Time::HiRes qw(gettimeofday);
33
34 my $cpuinfo = PVE::ProcFSTools::read_cpuinfo();
35
36 # Note about locking: we use flock on the config file protect
37 # against concurent actions.
38 # Aditionaly, we have a 'lock' setting in the config file. This
39 # can be set to 'migrate', 'backup', 'snapshot' or 'rollback'. Most actions are not
40 # allowed when such lock is set. But you can ignore this kind of
41 # lock with the --skiplock flag.
42
43 cfs_register_file('/qemu-server/',
44 \&parse_vm_config,
45 \&write_vm_config);
46
47 PVE::JSONSchema::register_standard_option('skiplock', {
48 description => "Ignore locks - only root is allowed to use this option.",
49 type => 'boolean',
50 optional => 1,
51 });
52
53 PVE::JSONSchema::register_standard_option('pve-qm-stateuri', {
54 description => "Some command save/restore state from this location.",
55 type => 'string',
56 maxLength => 128,
57 optional => 1,
58 });
59
60 PVE::JSONSchema::register_standard_option('pve-snapshot-name', {
61 description => "The name of the snapshot.",
62 type => 'string', format => 'pve-configid',
63 maxLength => 40,
64 });
65
66 #no warnings 'redefine';
67
68 unless(defined(&_VZSYSCALLS_H_)) {
69 eval 'sub _VZSYSCALLS_H_ () {1;}' unless defined(&_VZSYSCALLS_H_);
70 require 'sys/syscall.ph';
71 if(defined(&__x86_64__)) {
72 eval 'sub __NR_fairsched_vcpus () {499;}' unless defined(&__NR_fairsched_vcpus);
73 eval 'sub __NR_fairsched_mknod () {504;}' unless defined(&__NR_fairsched_mknod);
74 eval 'sub __NR_fairsched_rmnod () {505;}' unless defined(&__NR_fairsched_rmnod);
75 eval 'sub __NR_fairsched_chwt () {506;}' unless defined(&__NR_fairsched_chwt);
76 eval 'sub __NR_fairsched_mvpr () {507;}' unless defined(&__NR_fairsched_mvpr);
77 eval 'sub __NR_fairsched_rate () {508;}' unless defined(&__NR_fairsched_rate);
78 eval 'sub __NR_setluid () {501;}' unless defined(&__NR_setluid);
79 eval 'sub __NR_setublimit () {502;}' unless defined(&__NR_setublimit);
80 }
81 elsif(defined( &__i386__) ) {
82 eval 'sub __NR_fairsched_mknod () {500;}' unless defined(&__NR_fairsched_mknod);
83 eval 'sub __NR_fairsched_rmnod () {501;}' unless defined(&__NR_fairsched_rmnod);
84 eval 'sub __NR_fairsched_chwt () {502;}' unless defined(&__NR_fairsched_chwt);
85 eval 'sub __NR_fairsched_mvpr () {503;}' unless defined(&__NR_fairsched_mvpr);
86 eval 'sub __NR_fairsched_rate () {504;}' unless defined(&__NR_fairsched_rate);
87 eval 'sub __NR_fairsched_vcpus () {505;}' unless defined(&__NR_fairsched_vcpus);
88 eval 'sub __NR_setluid () {511;}' unless defined(&__NR_setluid);
89 eval 'sub __NR_setublimit () {512;}' unless defined(&__NR_setublimit);
90 } else {
91 die("no fairsched syscall for this arch");
92 }
93 require 'asm/ioctl.ph';
94 eval 'sub KVM_GET_API_VERSION () { &_IO(0xAE, 0x);}' unless defined(&KVM_GET_API_VERSION);
95 }
96
97 sub fairsched_mknod {
98 my ($parent, $weight, $desired) = @_;
99
100 return syscall(&__NR_fairsched_mknod, int($parent), int($weight), int($desired));
101 }
102
103 sub fairsched_rmnod {
104 my ($id) = @_;
105
106 return syscall(&__NR_fairsched_rmnod, int($id));
107 }
108
109 sub fairsched_mvpr {
110 my ($pid, $newid) = @_;
111
112 return syscall(&__NR_fairsched_mvpr, int($pid), int($newid));
113 }
114
115 sub fairsched_vcpus {
116 my ($id, $vcpus) = @_;
117
118 return syscall(&__NR_fairsched_vcpus, int($id), int($vcpus));
119 }
120
121 sub fairsched_rate {
122 my ($id, $op, $rate) = @_;
123
124 return syscall(&__NR_fairsched_rate, int($id), int($op), int($rate));
125 }
126
127 use constant FAIRSCHED_SET_RATE => 0;
128 use constant FAIRSCHED_DROP_RATE => 1;
129 use constant FAIRSCHED_GET_RATE => 2;
130
131 sub fairsched_cpulimit {
132 my ($id, $limit) = @_;
133
134 my $cpulim1024 = int($limit * 1024 / 100);
135 my $op = $cpulim1024 ? FAIRSCHED_SET_RATE : FAIRSCHED_DROP_RATE;
136
137 return fairsched_rate($id, $op, $cpulim1024);
138 }
139
140 my $nodename = PVE::INotify::nodename();
141
142 mkdir "/etc/pve/nodes/$nodename";
143 my $confdir = "/etc/pve/nodes/$nodename/qemu-server";
144 mkdir $confdir;
145
146 my $var_run_tmpdir = "/var/run/qemu-server";
147 mkdir $var_run_tmpdir;
148
149 my $lock_dir = "/var/lock/qemu-server";
150 mkdir $lock_dir;
151
152 my $pcisysfs = "/sys/bus/pci";
153
154 my $confdesc = {
155 iothread => {
156 optional => 1,
157 type => 'boolean',
158 description => "Enable iothread dataplane.",
159 default => 0,
160 },
161 onboot => {
162 optional => 1,
163 type => 'boolean',
164 description => "Specifies whether a VM will be started during system bootup.",
165 default => 0,
166 },
167 autostart => {
168 optional => 1,
169 type => 'boolean',
170 description => "Automatic restart after crash (currently ignored).",
171 default => 0,
172 },
173 hotplug => {
174 optional => 1,
175 type => 'string', format => 'pve-hotplug-features',
176 description => "Selectively enable hotplug features. This is a comma separated list of hotplug features: 'network', 'disk', 'cpu', 'memory' and 'usb'. Use '0' to disable hotplug completely. Value '1' is an alias for the default 'network,disk,usb'.",
177 default => 'network,disk,usb',
178 },
179 reboot => {
180 optional => 1,
181 type => 'boolean',
182 description => "Allow reboot. If set to '0' the VM exit on reboot.",
183 default => 1,
184 },
185 lock => {
186 optional => 1,
187 type => 'string',
188 description => "Lock/unlock the VM.",
189 enum => [qw(migrate backup snapshot rollback)],
190 },
191 cpulimit => {
192 optional => 1,
193 type => 'integer',
194 description => "Limit of CPU usage in per cent. Note if the computer has 2 CPUs, it has total of 200% CPU time. Value '0' indicates no CPU limit.\n\nNOTE: This option is currently ignored.",
195 minimum => 0,
196 default => 0,
197 },
198 cpuunits => {
199 optional => 1,
200 type => 'integer',
201 description => "CPU weight for a VM. Argument is used in the kernel fair scheduler. The larger the number is, the more CPU time this VM gets. Number is relative to weights of all the other running VMs.\n\nNOTE: You can disable fair-scheduler configuration by setting this to 0.",
202 minimum => 0,
203 maximum => 500000,
204 default => 1000,
205 },
206 memory => {
207 optional => 1,
208 type => 'integer',
209 description => "Amount of RAM for the VM in MB. This is the maximum available memory when you use the balloon device.",
210 minimum => 16,
211 default => 512,
212 },
213 balloon => {
214 optional => 1,
215 type => 'integer',
216 description => "Amount of target RAM for the VM in MB. Using zero disables the ballon driver.",
217 minimum => 0,
218 },
219 shares => {
220 optional => 1,
221 type => 'integer',
222 description => "Amount of memory shares for auto-ballooning. The larger the number is, the more memory this VM gets. Number is relative to weights of all other running VMs. Using zero disables auto-ballooning",
223 minimum => 0,
224 maximum => 50000,
225 default => 1000,
226 },
227 keyboard => {
228 optional => 1,
229 type => 'string',
230 description => "Keybord layout for vnc server. Default is read from the datacenter configuration file.",
231 enum => PVE::Tools::kvmkeymaplist(),
232 default => 'en-us',
233 },
234 name => {
235 optional => 1,
236 type => 'string', format => 'dns-name',
237 description => "Set a name for the VM. Only used on the configuration web interface.",
238 },
239 scsihw => {
240 optional => 1,
241 type => 'string',
242 description => "scsi controller model",
243 enum => [qw(lsi lsi53c810 virtio-scsi-pci megasas pvscsi)],
244 default => 'lsi',
245 },
246 description => {
247 optional => 1,
248 type => 'string',
249 description => "Description for the VM. Only used on the configuration web interface. This is saved as comment inside the configuration file.",
250 },
251 ostype => {
252 optional => 1,
253 type => 'string',
254 enum => [qw(other wxp w2k w2k3 w2k8 wvista win7 win8 l24 l26 solaris)],
255 description => <<EODESC,
256 Used to enable special optimization/features for specific
257 operating systems:
258
259 other => unspecified OS
260 wxp => Microsoft Windows XP
261 w2k => Microsoft Windows 2000
262 w2k3 => Microsoft Windows 2003
263 w2k8 => Microsoft Windows 2008
264 wvista => Microsoft Windows Vista
265 win7 => Microsoft Windows 7
266 win8 => Microsoft Windows 8/2012
267 l24 => Linux 2.4 Kernel
268 l26 => Linux 2.6/3.X Kernel
269 solaris => solaris/opensolaris/openindiania kernel
270
271 other|l24|l26|solaris ... no special behaviour
272 wxp|w2k|w2k3|w2k8|wvista|win7|win8 ... use --localtime switch
273 EODESC
274 },
275 boot => {
276 optional => 1,
277 type => 'string',
278 description => "Boot on floppy (a), hard disk (c), CD-ROM (d), or network (n).",
279 pattern => '[acdn]{1,4}',
280 default => 'cdn',
281 },
282 bootdisk => {
283 optional => 1,
284 type => 'string', format => 'pve-qm-bootdisk',
285 description => "Enable booting from specified disk.",
286 pattern => '(ide|sata|scsi|virtio)\d+',
287 },
288 smp => {
289 optional => 1,
290 type => 'integer',
291 description => "The number of CPUs. Please use option -sockets instead.",
292 minimum => 1,
293 default => 1,
294 },
295 sockets => {
296 optional => 1,
297 type => 'integer',
298 description => "The number of CPU sockets.",
299 minimum => 1,
300 default => 1,
301 },
302 cores => {
303 optional => 1,
304 type => 'integer',
305 description => "The number of cores per socket.",
306 minimum => 1,
307 default => 1,
308 },
309 numa => {
310 optional => 1,
311 type => 'boolean',
312 description => "Enable/disable Numa.",
313 default => 0,
314 },
315 vcpus => {
316 optional => 1,
317 type => 'integer',
318 description => "Number of hotplugged vcpus.",
319 minimum => 1,
320 default => 0,
321 },
322 acpi => {
323 optional => 1,
324 type => 'boolean',
325 description => "Enable/disable ACPI.",
326 default => 1,
327 },
328 agent => {
329 optional => 1,
330 type => 'boolean',
331 description => "Enable/disable Qemu GuestAgent.",
332 default => 0,
333 },
334 kvm => {
335 optional => 1,
336 type => 'boolean',
337 description => "Enable/disable KVM hardware virtualization.",
338 default => 1,
339 },
340 tdf => {
341 optional => 1,
342 type => 'boolean',
343 description => "Enable/disable time drift fix.",
344 default => 0,
345 },
346 localtime => {
347 optional => 1,
348 type => 'boolean',
349 description => "Set the real time clock to local time. This is enabled by default if ostype indicates a Microsoft OS.",
350 },
351 freeze => {
352 optional => 1,
353 type => 'boolean',
354 description => "Freeze CPU at startup (use 'c' monitor command to start execution).",
355 },
356 vga => {
357 optional => 1,
358 type => 'string',
359 description => "Select VGA type. If you want to use high resolution modes (>= 1280x1024x16) then you should use option 'std' or 'vmware'. Default is 'std' for win8/win7/w2k8, and 'cirrur' for other OS types. Option 'qxl' enables the SPICE display sever. You can also run without any graphic card using a serial devive as terminal.",
360 enum => [qw(std cirrus vmware qxl serial0 serial1 serial2 serial3 qxl2 qxl3 qxl4)],
361 },
362 watchdog => {
363 optional => 1,
364 type => 'string', format => 'pve-qm-watchdog',
365 typetext => '[[model=]i6300esb|ib700] [,[action=]reset|shutdown|poweroff|pause|debug|none]',
366 description => "Create a virtual hardware watchdog device. Once enabled (by a guest action), the watchdog must be periodically polled by an agent inside the guest or else the guest will be restarted (or execute the action specified)",
367 },
368 startdate => {
369 optional => 1,
370 type => 'string',
371 typetext => "(now | YYYY-MM-DD | YYYY-MM-DDTHH:MM:SS)",
372 description => "Set the initial date of the real time clock. Valid format for date are: 'now' or '2006-06-17T16:01:21' or '2006-06-17'.",
373 pattern => '(now|\d{4}-\d{1,2}-\d{1,2}(T\d{1,2}:\d{1,2}:\d{1,2})?)',
374 default => 'now',
375 },
376 startup => {
377 optional => 1,
378 type => 'string', format => 'pve-qm-startup',
379 typetext => '[[order=]\d+] [,up=\d+] [,down=\d+] ',
380 description => "Startup and shutdown behavior. Order is a non-negative number defining the general startup order. Shutdown in done with reverse ordering. Additionally you can set the 'up' or 'down' delay in seconds, which specifies a delay to wait before the next VM is started or stopped.",
381 },
382 template => {
383 optional => 1,
384 type => 'boolean',
385 description => "Enable/disable Template.",
386 default => 0,
387 },
388 args => {
389 optional => 1,
390 type => 'string',
391 description => <<EODESCR,
392 Note: this option is for experts only. It allows you to pass arbitrary arguments to kvm, for example:
393
394 args: -no-reboot -no-hpet
395 EODESCR
396 },
397 tablet => {
398 optional => 1,
399 type => 'boolean',
400 default => 1,
401 description => "Enable/disable the usb tablet device. This device is usually needed to allow absolute mouse positioning with VNC. Else the mouse runs out of sync with normal VNC clients. If you're running lots of console-only guests on one host, you may consider disabling this to save some context switches. This is turned of by default if you use spice (vga=qxl).",
402 },
403 migrate_speed => {
404 optional => 1,
405 type => 'integer',
406 description => "Set maximum speed (in MB/s) for migrations. Value 0 is no limit.",
407 minimum => 0,
408 default => 0,
409 },
410 migrate_downtime => {
411 optional => 1,
412 type => 'number',
413 description => "Set maximum tolerated downtime (in seconds) for migrations.",
414 minimum => 0,
415 default => 0.1,
416 },
417 cdrom => {
418 optional => 1,
419 type => 'string', format => 'pve-qm-drive',
420 typetext => 'volume',
421 description => "This is an alias for option -ide2",
422 },
423 cpu => {
424 optional => 1,
425 description => "Emulated CPU type.",
426 type => 'string',
427 enum => [ qw(486 athlon pentium pentium2 pentium3 coreduo core2duo kvm32 kvm64 qemu32 qemu64 phenom Conroe Penryn Nehalem Westmere SandyBridge Haswell Broadwell Opteron_G1 Opteron_G2 Opteron_G3 Opteron_G4 Opteron_G5 host) ],
428 default => 'kvm64',
429 },
430 parent => get_standard_option('pve-snapshot-name', {
431 optional => 1,
432 description => "Parent snapshot name. This is used internally, and should not be modified.",
433 }),
434 snaptime => {
435 optional => 1,
436 description => "Timestamp for snapshots.",
437 type => 'integer',
438 minimum => 0,
439 },
440 vmstate => {
441 optional => 1,
442 type => 'string', format => 'pve-volume-id',
443 description => "Reference to a volume which stores the VM state. This is used internally for snapshots.",
444 },
445 machine => {
446 description => "Specific the Qemu machine type.",
447 type => 'string',
448 pattern => '(pc|pc(-i440fx)?-\d+\.\d+|q35|pc-q35-\d+\.\d+)',
449 maxLength => 40,
450 optional => 1,
451 },
452 smbios1 => {
453 description => "Specify SMBIOS type 1 fields.",
454 type => 'string', format => 'pve-qm-smbios1',
455 typetext => "[manufacturer=str][,product=str][,version=str][,serial=str] [,uuid=uuid][,sku=str][,family=str]",
456 maxLength => 256,
457 optional => 1,
458 },
459 };
460
461 # what about other qemu settings ?
462 #cpu => 'string',
463 #machine => 'string',
464 #fda => 'file',
465 #fdb => 'file',
466 #mtdblock => 'file',
467 #sd => 'file',
468 #pflash => 'file',
469 #snapshot => 'bool',
470 #bootp => 'file',
471 ##tftp => 'dir',
472 ##smb => 'dir',
473 #kernel => 'file',
474 #append => 'string',
475 #initrd => 'file',
476 ##soundhw => 'string',
477
478 while (my ($k, $v) = each %$confdesc) {
479 PVE::JSONSchema::register_standard_option("pve-qm-$k", $v);
480 }
481
482 my $MAX_IDE_DISKS = 4;
483 my $MAX_SCSI_DISKS = 14;
484 my $MAX_VIRTIO_DISKS = 16;
485 my $MAX_SATA_DISKS = 6;
486 my $MAX_USB_DEVICES = 5;
487 my $MAX_NETS = 32;
488 my $MAX_UNUSED_DISKS = 8;
489 my $MAX_HOSTPCI_DEVICES = 4;
490 my $MAX_SERIAL_PORTS = 4;
491 my $MAX_PARALLEL_PORTS = 3;
492 my $MAX_NUMA = 8;
493 my $MAX_MEM = 4194304;
494 my $STATICMEM = 1024;
495
496 my $numadesc = {
497 optional => 1,
498 type => 'string', format => 'pve-qm-numanode',
499 typetext => "cpus=<id[-id],memory=<mb>[[,hostnodes=<id[-id]>] [,policy=<preferred|bind|interleave>]]",
500 description => "numa topology",
501 };
502 PVE::JSONSchema::register_standard_option("pve-qm-numanode", $numadesc);
503
504 for (my $i = 0; $i < $MAX_NUMA; $i++) {
505 $confdesc->{"numa$i"} = $numadesc;
506 }
507
508 my $nic_model_list = ['rtl8139', 'ne2k_pci', 'e1000', 'pcnet', 'virtio',
509 'ne2k_isa', 'i82551', 'i82557b', 'i82559er', 'vmxnet3',
510 'e1000-82540em', 'e1000-82544gc', 'e1000-82545em'];
511 my $nic_model_list_txt = join(' ', sort @$nic_model_list);
512
513 my $netdesc = {
514 optional => 1,
515 type => 'string', format => 'pve-qm-net',
516 typetext => "MODEL=XX:XX:XX:XX:XX:XX [,bridge=<dev>][,queues=<nbqueues>][,rate=<mbps>] [,tag=<vlanid>][,firewall=0|1],link_down=0|1]",
517 description => <<EODESCR,
518 Specify network devices.
519
520 MODEL is one of: $nic_model_list_txt
521
522 XX:XX:XX:XX:XX:XX should be an unique MAC address. This is
523 automatically generated if not specified.
524
525 The bridge parameter can be used to automatically add the interface to a bridge device. The Proxmox VE standard bridge is called 'vmbr0'.
526
527 Option 'rate' is used to limit traffic bandwidth from and to this interface. It is specified as floating point number, unit is 'Megabytes per second'.
528
529 If you specify no bridge, we create a kvm 'user' (NATed) network device, which provides DHCP and DNS services. The following addresses are used:
530
531 10.0.2.2 Gateway
532 10.0.2.3 DNS Server
533 10.0.2.4 SMB Server
534
535 The DHCP server assign addresses to the guest starting from 10.0.2.15.
536
537 EODESCR
538 };
539 PVE::JSONSchema::register_standard_option("pve-qm-net", $netdesc);
540
541 for (my $i = 0; $i < $MAX_NETS; $i++) {
542 $confdesc->{"net$i"} = $netdesc;
543 }
544
545 my $drivename_hash;
546
547 my $idedesc = {
548 optional => 1,
549 type => 'string', format => 'pve-qm-drive',
550 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
551 description => "Use volume as IDE hard disk or CD-ROM (n is 0 to " .($MAX_IDE_DISKS -1) . ").",
552 };
553 PVE::JSONSchema::register_standard_option("pve-qm-ide", $idedesc);
554
555 my $scsidesc = {
556 optional => 1,
557 type => 'string', format => 'pve-qm-drive',
558 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
559 description => "Use volume as SCSI hard disk or CD-ROM (n is 0 to " . ($MAX_SCSI_DISKS - 1) . ").",
560 };
561 PVE::JSONSchema::register_standard_option("pve-qm-scsi", $scsidesc);
562
563 my $satadesc = {
564 optional => 1,
565 type => 'string', format => 'pve-qm-drive',
566 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
567 description => "Use volume as SATA hard disk or CD-ROM (n is 0 to " . ($MAX_SATA_DISKS - 1). ").",
568 };
569 PVE::JSONSchema::register_standard_option("pve-qm-sata", $satadesc);
570
571 my $virtiodesc = {
572 optional => 1,
573 type => 'string', format => 'pve-qm-drive',
574 typetext => '[volume=]volume,] [,media=cdrom|disk] [,cyls=c,heads=h,secs=s[,trans=t]] [,snapshot=on|off] [,cache=none|writethrough|writeback|unsafe|directsync] [,format=f] [,backup=yes|no] [,rerror=ignore|report|stop] [,werror=enospc|ignore|report|stop] [,aio=native|threads] [,discard=ignore|on]',
575 description => "Use volume as VIRTIO hard disk (n is 0 to " . ($MAX_VIRTIO_DISKS - 1) . ").",
576 };
577 PVE::JSONSchema::register_standard_option("pve-qm-virtio", $virtiodesc);
578
579 my $usbdesc = {
580 optional => 1,
581 type => 'string', format => 'pve-qm-usb-device',
582 typetext => 'host=HOSTUSBDEVICE|spice',
583 description => <<EODESCR,
584 Configure an USB device (n is 0 to 4). This can be used to
585 pass-through usb devices to the guest. HOSTUSBDEVICE syntax is:
586
587 'bus-port(.port)*' (decimal numbers) or
588 'vendor_id:product_id' (hexadeciaml numbers)
589
590 You can use the 'lsusb -t' command to list existing usb devices.
591
592 Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
593
594 The value 'spice' can be used to add a usb redirection devices for spice.
595
596 EODESCR
597 };
598 PVE::JSONSchema::register_standard_option("pve-qm-usb", $usbdesc);
599
600 my $hostpcidesc = {
601 optional => 1,
602 type => 'string', format => 'pve-qm-hostpci',
603 typetext => "[host=]HOSTPCIDEVICE [,driver=kvm|vfio] [,rombar=on|off] [,pcie=0|1] [,x-vga=on|off]",
604 description => <<EODESCR,
605 Map host pci devices. HOSTPCIDEVICE syntax is:
606
607 'bus:dev.func' (hexadecimal numbers)
608
609 You can us the 'lspci' command to list existing pci devices.
610
611 The 'rombar' option determines whether or not the device's ROM will be visible in the guest's memory map (default is 'on').
612
613 Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
614
615 Experimental: user reported problems with this option.
616 EODESCR
617 };
618 PVE::JSONSchema::register_standard_option("pve-qm-hostpci", $hostpcidesc);
619
620 my $serialdesc = {
621 optional => 1,
622 type => 'string',
623 pattern => '(/dev/.+|socket)',
624 description => <<EODESCR,
625 Create a serial device inside the VM (n is 0 to 3), and pass through a host serial device (i.e. /dev/ttyS0), or create a unix socket on the host side (use 'qm terminal' to open a terminal connection).
626
627 Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
628
629 Experimental: user reported problems with this option.
630 EODESCR
631 };
632
633 my $paralleldesc= {
634 optional => 1,
635 type => 'string',
636 pattern => '/dev/parport\d+|/dev/usb/lp\d+',
637 description => <<EODESCR,
638 Map host parallel devices (n is 0 to 2).
639
640 Note: This option allows direct access to host hardware. So it is no longer possible to migrate such machines - use with special care.
641
642 Experimental: user reported problems with this option.
643 EODESCR
644 };
645
646 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
647 $confdesc->{"parallel$i"} = $paralleldesc;
648 }
649
650 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
651 $confdesc->{"serial$i"} = $serialdesc;
652 }
653
654 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
655 $confdesc->{"hostpci$i"} = $hostpcidesc;
656 }
657
658 for (my $i = 0; $i < $MAX_IDE_DISKS; $i++) {
659 $drivename_hash->{"ide$i"} = 1;
660 $confdesc->{"ide$i"} = $idedesc;
661 }
662
663 for (my $i = 0; $i < $MAX_SATA_DISKS; $i++) {
664 $drivename_hash->{"sata$i"} = 1;
665 $confdesc->{"sata$i"} = $satadesc;
666 }
667
668 for (my $i = 0; $i < $MAX_SCSI_DISKS; $i++) {
669 $drivename_hash->{"scsi$i"} = 1;
670 $confdesc->{"scsi$i"} = $scsidesc ;
671 }
672
673 for (my $i = 0; $i < $MAX_VIRTIO_DISKS; $i++) {
674 $drivename_hash->{"virtio$i"} = 1;
675 $confdesc->{"virtio$i"} = $virtiodesc;
676 }
677
678 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
679 $confdesc->{"usb$i"} = $usbdesc;
680 }
681
682 my $unuseddesc = {
683 optional => 1,
684 type => 'string', format => 'pve-volume-id',
685 description => "Reference to unused volumes.",
686 };
687
688 for (my $i = 0; $i < $MAX_UNUSED_DISKS; $i++) {
689 $confdesc->{"unused$i"} = $unuseddesc;
690 }
691
692 my $kvm_api_version = 0;
693
694 sub kvm_version {
695
696 return $kvm_api_version if $kvm_api_version;
697
698 my $fh = IO::File->new("</dev/kvm") ||
699 return 0;
700
701 if (my $v = $fh->ioctl(KVM_GET_API_VERSION(), 0)) {
702 $kvm_api_version = $v;
703 }
704
705 $fh->close();
706
707 return $kvm_api_version;
708 }
709
710 my $kvm_user_version;
711
712 sub kvm_user_version {
713
714 return $kvm_user_version if $kvm_user_version;
715
716 $kvm_user_version = 'unknown';
717
718 my $tmp = `kvm -help 2>/dev/null`;
719
720 if ($tmp =~ m/^QEMU( PC)? emulator version (\d+\.\d+(\.\d+)?)[,\s]/) {
721 $kvm_user_version = $2;
722 }
723
724 return $kvm_user_version;
725
726 }
727
728 my $kernel_has_vhost_net = -c '/dev/vhost-net';
729
730 sub disknames {
731 # order is important - used to autoselect boot disk
732 return ((map { "ide$_" } (0 .. ($MAX_IDE_DISKS - 1))),
733 (map { "scsi$_" } (0 .. ($MAX_SCSI_DISKS - 1))),
734 (map { "virtio$_" } (0 .. ($MAX_VIRTIO_DISKS - 1))),
735 (map { "sata$_" } (0 .. ($MAX_SATA_DISKS - 1))));
736 }
737
738 sub valid_drivename {
739 my $dev = shift;
740
741 return defined($drivename_hash->{$dev});
742 }
743
744 sub option_exists {
745 my $key = shift;
746 return defined($confdesc->{$key});
747 }
748
749 sub nic_models {
750 return $nic_model_list;
751 }
752
753 sub os_list_description {
754
755 return {
756 other => 'Other',
757 wxp => 'Windows XP',
758 w2k => 'Windows 2000',
759 w2k3 =>, 'Windows 2003',
760 w2k8 => 'Windows 2008',
761 wvista => 'Windows Vista',
762 win7 => 'Windows 7',
763 win8 => 'Windows 8/2012',
764 l24 => 'Linux 2.4',
765 l26 => 'Linux 2.6',
766 };
767 }
768
769 my $cdrom_path;
770
771 sub get_cdrom_path {
772
773 return $cdrom_path if $cdrom_path;
774
775 return $cdrom_path = "/dev/cdrom" if -l "/dev/cdrom";
776 return $cdrom_path = "/dev/cdrom1" if -l "/dev/cdrom1";
777 return $cdrom_path = "/dev/cdrom2" if -l "/dev/cdrom2";
778 }
779
780 sub get_iso_path {
781 my ($storecfg, $vmid, $cdrom) = @_;
782
783 if ($cdrom eq 'cdrom') {
784 return get_cdrom_path();
785 } elsif ($cdrom eq 'none') {
786 return '';
787 } elsif ($cdrom =~ m|^/|) {
788 return $cdrom;
789 } else {
790 return PVE::Storage::path($storecfg, $cdrom);
791 }
792 }
793
794 # try to convert old style file names to volume IDs
795 sub filename_to_volume_id {
796 my ($vmid, $file, $media) = @_;
797
798 if (!($file eq 'none' || $file eq 'cdrom' ||
799 $file =~ m|^/dev/.+| || $file =~ m/^([^:]+):(.+)$/)) {
800
801 return undef if $file =~ m|/|;
802
803 if ($media && $media eq 'cdrom') {
804 $file = "local:iso/$file";
805 } else {
806 $file = "local:$vmid/$file";
807 }
808 }
809
810 return $file;
811 }
812
813 sub verify_media_type {
814 my ($opt, $vtype, $media) = @_;
815
816 return if !$media;
817
818 my $etype;
819 if ($media eq 'disk') {
820 $etype = 'images';
821 } elsif ($media eq 'cdrom') {
822 $etype = 'iso';
823 } else {
824 die "internal error";
825 }
826
827 return if ($vtype eq $etype);
828
829 raise_param_exc({ $opt => "unexpected media type ($vtype != $etype)" });
830 }
831
832 sub cleanup_drive_path {
833 my ($opt, $storecfg, $drive) = @_;
834
835 # try to convert filesystem paths to volume IDs
836
837 if (($drive->{file} !~ m/^(cdrom|none)$/) &&
838 ($drive->{file} !~ m|^/dev/.+|) &&
839 ($drive->{file} !~ m/^([^:]+):(.+)$/) &&
840 ($drive->{file} !~ m/^\d+$/)) {
841 my ($vtype, $volid) = PVE::Storage::path_to_volume_id($storecfg, $drive->{file});
842 raise_param_exc({ $opt => "unable to associate path '$drive->{file}' to any storage"}) if !$vtype;
843 $drive->{media} = 'cdrom' if !$drive->{media} && $vtype eq 'iso';
844 verify_media_type($opt, $vtype, $drive->{media});
845 $drive->{file} = $volid;
846 }
847
848 $drive->{media} = 'cdrom' if !$drive->{media} && $drive->{file} =~ m/^(cdrom|none)$/;
849 }
850
851 sub create_conf_nolock {
852 my ($vmid, $settings) = @_;
853
854 my $filename = config_file($vmid);
855
856 die "configuration file '$filename' already exists\n" if -f $filename;
857
858 my $defaults = load_defaults();
859
860 $settings->{name} = "vm$vmid" if !$settings->{name};
861 $settings->{memory} = $defaults->{memory} if !$settings->{memory};
862
863 my $data = '';
864 foreach my $opt (keys %$settings) {
865 next if !$confdesc->{$opt};
866
867 my $value = $settings->{$opt};
868 next if !$value;
869
870 $data .= "$opt: $value\n";
871 }
872
873 PVE::Tools::file_set_contents($filename, $data);
874 }
875
876 sub parse_hotplug_features {
877 my ($data) = @_;
878
879 my $res = {};
880
881 return $res if $data eq '0';
882
883 $data = $confdesc->{hotplug}->{default} if $data eq '1';
884
885 foreach my $feature (PVE::Tools::split_list($data)) {
886 if ($feature =~ m/^(network|disk|cpu|memory|usb)$/) {
887 $res->{$1} = 1;
888 } else {
889 warn "ignoring unknown hotplug feature '$feature'\n";
890 }
891 }
892 return $res;
893 }
894
895 PVE::JSONSchema::register_format('pve-hotplug-features', \&pve_verify_hotplug_features);
896 sub pve_verify_hotplug_features {
897 my ($value, $noerr) = @_;
898
899 return $value if parse_hotplug_features($value);
900
901 return undef if $noerr;
902
903 die "unable to parse hotplug option\n";
904 }
905
906 my $parse_size = sub {
907 my ($value) = @_;
908
909 return undef if $value !~ m/^(\d+(\.\d+)?)([KMG])?$/;
910 my ($size, $unit) = ($1, $3);
911 if ($unit) {
912 if ($unit eq 'K') {
913 $size = $size * 1024;
914 } elsif ($unit eq 'M') {
915 $size = $size * 1024 * 1024;
916 } elsif ($unit eq 'G') {
917 $size = $size * 1024 * 1024 * 1024;
918 }
919 }
920 return int($size);
921 };
922
923 my $format_size = sub {
924 my ($size) = @_;
925
926 $size = int($size);
927
928 my $kb = int($size/1024);
929 return $size if $kb*1024 != $size;
930
931 my $mb = int($kb/1024);
932 return "${kb}K" if $mb*1024 != $kb;
933
934 my $gb = int($mb/1024);
935 return "${mb}M" if $gb*1024 != $mb;
936
937 return "${gb}G";
938 };
939
940 # ideX = [volume=]volume-id[,media=d][,cyls=c,heads=h,secs=s[,trans=t]]
941 # [,snapshot=on|off][,cache=on|off][,format=f][,backup=yes|no]
942 # [,rerror=ignore|report|stop][,werror=enospc|ignore|report|stop]
943 # [,aio=native|threads][,discard=ignore|on]
944
945 sub parse_drive {
946 my ($key, $data) = @_;
947
948 my $res = {};
949
950 # $key may be undefined - used to verify JSON parameters
951 if (!defined($key)) {
952 $res->{interface} = 'unknown'; # should not harm when used to verify parameters
953 $res->{index} = 0;
954 } elsif ($key =~ m/^([^\d]+)(\d+)$/) {
955 $res->{interface} = $1;
956 $res->{index} = $2;
957 } else {
958 return undef;
959 }
960
961 foreach my $p (split (/,/, $data)) {
962 next if $p =~ m/^\s*$/;
963
964 if ($p =~ m/^(file|volume|cyls|heads|secs|trans|media|snapshot|cache|format|rerror|werror|backup|aio|bps|mbps|mbps_max|bps_rd|mbps_rd|mbps_rd_max|bps_wr|mbps_wr|mbps_wr_max|iops|iops_max|iops_rd|iops_rd_max|iops_wr|iops_wr_max|size|discard)=(.+)$/) {
965 my ($k, $v) = ($1, $2);
966
967 $k = 'file' if $k eq 'volume';
968
969 return undef if defined $res->{$k};
970
971 if ($k eq 'bps' || $k eq 'bps_rd' || $k eq 'bps_wr') {
972 return undef if !$v || $v !~ m/^\d+/;
973 $k = "m$k";
974 $v = sprintf("%.3f", $v / (1024*1024));
975 }
976 $res->{$k} = $v;
977 } else {
978 if (!$res->{file} && $p !~ m/=/) {
979 $res->{file} = $p;
980 } else {
981 return undef;
982 }
983 }
984 }
985
986 return undef if !$res->{file};
987
988 if($res->{file} =~ m/\.(raw|cow|qcow|qcow2|vmdk|cloop)$/){
989 $res->{format} = $1;
990 }
991
992 return undef if $res->{cache} &&
993 $res->{cache} !~ m/^(off|none|writethrough|writeback|unsafe|directsync)$/;
994 return undef if $res->{snapshot} && $res->{snapshot} !~ m/^(on|off)$/;
995 return undef if $res->{cyls} && $res->{cyls} !~ m/^\d+$/;
996 return undef if $res->{heads} && $res->{heads} !~ m/^\d+$/;
997 return undef if $res->{secs} && $res->{secs} !~ m/^\d+$/;
998 return undef if $res->{media} && $res->{media} !~ m/^(disk|cdrom)$/;
999 return undef if $res->{trans} && $res->{trans} !~ m/^(none|lba|auto)$/;
1000 return undef if $res->{format} && $res->{format} !~ m/^(raw|cow|qcow|qcow2|vmdk|cloop)$/;
1001 return undef if $res->{rerror} && $res->{rerror} !~ m/^(ignore|report|stop)$/;
1002 return undef if $res->{werror} && $res->{werror} !~ m/^(enospc|ignore|report|stop)$/;
1003 return undef if $res->{backup} && $res->{backup} !~ m/^(yes|no)$/;
1004 return undef if $res->{aio} && $res->{aio} !~ m/^(native|threads)$/;
1005 return undef if $res->{discard} && $res->{discard} !~ m/^(ignore|on)$/;
1006
1007 return undef if $res->{mbps_rd} && $res->{mbps};
1008 return undef if $res->{mbps_wr} && $res->{mbps};
1009
1010 return undef if $res->{mbps} && $res->{mbps} !~ m/^\d+(\.\d+)?$/;
1011 return undef if $res->{mbps_max} && $res->{mbps_max} !~ m/^\d+(\.\d+)?$/;
1012 return undef if $res->{mbps_rd} && $res->{mbps_rd} !~ m/^\d+(\.\d+)?$/;
1013 return undef if $res->{mbps_rd_max} && $res->{mbps_rd_max} !~ m/^\d+(\.\d+)?$/;
1014 return undef if $res->{mbps_wr} && $res->{mbps_wr} !~ m/^\d+(\.\d+)?$/;
1015 return undef if $res->{mbps_wr_max} && $res->{mbps_wr_max} !~ m/^\d+(\.\d+)?$/;
1016
1017 return undef if $res->{iops_rd} && $res->{iops};
1018 return undef if $res->{iops_wr} && $res->{iops};
1019
1020
1021 return undef if $res->{iops} && $res->{iops} !~ m/^\d+$/;
1022 return undef if $res->{iops_max} && $res->{iops_max} !~ m/^\d+$/;
1023 return undef if $res->{iops_rd} && $res->{iops_rd} !~ m/^\d+$/;
1024 return undef if $res->{iops_rd_max} && $res->{iops_rd_max} !~ m/^\d+$/;
1025 return undef if $res->{iops_wr} && $res->{iops_wr} !~ m/^\d+$/;
1026 return undef if $res->{iops_wr_max} && $res->{iops_wr_max} !~ m/^\d+$/;
1027
1028
1029 if ($res->{size}) {
1030 return undef if !defined($res->{size} = &$parse_size($res->{size}));
1031 }
1032
1033 if ($res->{media} && ($res->{media} eq 'cdrom')) {
1034 return undef if $res->{snapshot} || $res->{trans} || $res->{format};
1035 return undef if $res->{heads} || $res->{secs} || $res->{cyls};
1036 return undef if $res->{interface} eq 'virtio';
1037 }
1038
1039 # rerror does not work with scsi drives
1040 if ($res->{rerror}) {
1041 return undef if $res->{interface} eq 'scsi';
1042 }
1043
1044 return $res;
1045 }
1046
1047 my @qemu_drive_options = qw(heads secs cyls trans media format cache snapshot rerror werror aio discard iops iops_rd iops_wr iops_max iops_rd_max iops_wr_max);
1048
1049 sub print_drive {
1050 my ($vmid, $drive) = @_;
1051
1052 my $opts = '';
1053 foreach my $o (@qemu_drive_options, 'mbps', 'mbps_rd', 'mbps_wr', 'mbps_max', 'mbps_rd_max', 'mbps_wr_max', 'backup') {
1054 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
1055 }
1056
1057 if ($drive->{size}) {
1058 $opts .= ",size=" . &$format_size($drive->{size});
1059 }
1060
1061 return "$drive->{file}$opts";
1062 }
1063
1064 sub scsi_inquiry {
1065 my($fh, $noerr) = @_;
1066
1067 my $SG_IO = 0x2285;
1068 my $SG_GET_VERSION_NUM = 0x2282;
1069
1070 my $versionbuf = "\x00" x 8;
1071 my $ret = ioctl($fh, $SG_GET_VERSION_NUM, $versionbuf);
1072 if (!$ret) {
1073 die "scsi ioctl SG_GET_VERSION_NUM failoed - $!\n" if !$noerr;
1074 return undef;
1075 }
1076 my $version = unpack("I", $versionbuf);
1077 if ($version < 30000) {
1078 die "scsi generic interface too old\n" if !$noerr;
1079 return undef;
1080 }
1081
1082 my $buf = "\x00" x 36;
1083 my $sensebuf = "\x00" x 8;
1084 my $cmd = pack("C x3 C x1", 0x12, 36);
1085
1086 # see /usr/include/scsi/sg.h
1087 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";
1088
1089 my $packet = pack($sg_io_hdr_t, ord('S'), -3, length($cmd),
1090 length($sensebuf), 0, length($buf), $buf,
1091 $cmd, $sensebuf, 6000);
1092
1093 $ret = ioctl($fh, $SG_IO, $packet);
1094 if (!$ret) {
1095 die "scsi ioctl SG_IO failed - $!\n" if !$noerr;
1096 return undef;
1097 }
1098
1099 my @res = unpack($sg_io_hdr_t, $packet);
1100 if ($res[17] || $res[18]) {
1101 die "scsi ioctl SG_IO status error - $!\n" if !$noerr;
1102 return undef;
1103 }
1104
1105 my $res = {};
1106 (my $byte0, my $byte1, $res->{vendor},
1107 $res->{product}, $res->{revision}) = unpack("C C x6 A8 A16 A4", $buf);
1108
1109 $res->{removable} = $byte1 & 128 ? 1 : 0;
1110 $res->{type} = $byte0 & 31;
1111
1112 return $res;
1113 }
1114
1115 sub path_is_scsi {
1116 my ($path) = @_;
1117
1118 my $fh = IO::File->new("+<$path") || return undef;
1119 my $res = scsi_inquiry($fh, 1);
1120 close($fh);
1121
1122 return $res;
1123 }
1124
1125 sub machine_type_is_q35 {
1126 my ($conf) = @_;
1127
1128 return $conf->{machine} && ($conf->{machine} =~ m/q35/) ? 1 : 0;
1129 }
1130
1131 sub print_tabletdevice_full {
1132 my ($conf) = @_;
1133
1134 my $q35 = machine_type_is_q35($conf);
1135
1136 # we use uhci for old VMs because tablet driver was buggy in older qemu
1137 my $usbbus = $q35 ? "ehci" : "uhci";
1138
1139 return "usb-tablet,id=tablet,bus=$usbbus.0,port=1";
1140 }
1141
1142 sub print_drivedevice_full {
1143 my ($storecfg, $conf, $vmid, $drive, $bridges) = @_;
1144
1145 my $device = '';
1146 my $maxdev = 0;
1147
1148 if ($drive->{interface} eq 'virtio') {
1149 my $pciaddr = print_pci_addr("$drive->{interface}$drive->{index}", $bridges);
1150 $device = "virtio-blk-pci,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}$pciaddr";
1151 $device .= ",iothread=iothread0" if $conf->{iothread};
1152 } elsif ($drive->{interface} eq 'scsi') {
1153 $maxdev = ($conf->{scsihw} && ($conf->{scsihw} !~ m/^lsi/)) ? 256 : 7;
1154 my $controller = int($drive->{index} / $maxdev);
1155 my $unit = $drive->{index} % $maxdev;
1156 my $devicetype = 'hd';
1157 my $path = '';
1158 if (drive_is_cdrom($drive)) {
1159 $devicetype = 'cd';
1160 } else {
1161 if ($drive->{file} =~ m|^/|) {
1162 $path = $drive->{file};
1163 } else {
1164 $path = PVE::Storage::path($storecfg, $drive->{file});
1165 }
1166
1167 if($path =~ m/^iscsi\:\/\//){
1168 $devicetype = 'generic';
1169 } else {
1170 if (my $info = path_is_scsi($path)) {
1171 if ($info->{type} == 0) {
1172 $devicetype = 'block';
1173 } elsif ($info->{type} == 1) { # tape
1174 $devicetype = 'generic';
1175 }
1176 }
1177 }
1178 }
1179
1180 if (!$conf->{scsihw} || ($conf->{scsihw} =~ m/^lsi/)){
1181 $device = "scsi-$devicetype,bus=scsihw$controller.0,scsi-id=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
1182 } else {
1183 $device = "scsi-$devicetype,bus=scsihw$controller.0,channel=0,scsi-id=0,lun=$drive->{index},drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
1184 }
1185
1186 } elsif ($drive->{interface} eq 'ide'){
1187 $maxdev = 2;
1188 my $controller = int($drive->{index} / $maxdev);
1189 my $unit = $drive->{index} % $maxdev;
1190 my $devicetype = ($drive->{media} && $drive->{media} eq 'cdrom') ? "cd" : "hd";
1191
1192 $device = "ide-$devicetype,bus=ide.$controller,unit=$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
1193 } elsif ($drive->{interface} eq 'sata'){
1194 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
1195 my $unit = $drive->{index} % $MAX_SATA_DISKS;
1196 $device = "ide-drive,bus=ahci$controller.$unit,drive=drive-$drive->{interface}$drive->{index},id=$drive->{interface}$drive->{index}";
1197 } elsif ($drive->{interface} eq 'usb') {
1198 die "implement me";
1199 # -device ide-drive,bus=ide.1,unit=0,drive=drive-ide0-1-0,id=ide0-1-0
1200 } else {
1201 die "unsupported interface type";
1202 }
1203
1204 $device .= ",bootindex=$drive->{bootindex}" if $drive->{bootindex};
1205
1206 return $device;
1207 }
1208
1209 sub get_initiator_name {
1210 my $initiator;
1211
1212 my $fh = IO::File->new('/etc/iscsi/initiatorname.iscsi') || return undef;
1213 while (defined(my $line = <$fh>)) {
1214 next if $line !~ m/^\s*InitiatorName\s*=\s*([\.\-:\w]+)/;
1215 $initiator = $1;
1216 last;
1217 }
1218 $fh->close();
1219
1220 return $initiator;
1221 }
1222
1223 sub print_drive_full {
1224 my ($storecfg, $vmid, $drive) = @_;
1225
1226 my $opts = '';
1227 foreach my $o (@qemu_drive_options) {
1228 next if $o eq 'bootindex';
1229 $opts .= ",$o=$drive->{$o}" if $drive->{$o};
1230 }
1231
1232 foreach my $o (qw(bps bps_rd bps_wr)) {
1233 my $v = $drive->{"m$o"};
1234 $opts .= ",$o=" . int($v*1024*1024) if $v;
1235 }
1236
1237 # use linux-aio by default (qemu default is threads)
1238 $opts .= ",aio=native" if !$drive->{aio};
1239
1240 my $path;
1241 my $volid = $drive->{file};
1242 if (drive_is_cdrom($drive)) {
1243 $path = get_iso_path($storecfg, $vmid, $volid);
1244 } else {
1245 if ($volid =~ m|^/|) {
1246 $path = $volid;
1247 } else {
1248 $path = PVE::Storage::path($storecfg, $volid);
1249 }
1250 }
1251
1252 $opts .= ",cache=none" if !$drive->{cache} && !drive_is_cdrom($drive);
1253
1254 my $detectzeroes = $drive->{discard} ? "unmap" : "on";
1255 $opts .= ",detect-zeroes=$detectzeroes" if !drive_is_cdrom($drive);
1256
1257 my $pathinfo = $path ? "file=$path," : '';
1258
1259 return "${pathinfo}if=none,id=drive-$drive->{interface}$drive->{index}$opts";
1260 }
1261
1262 sub print_netdevice_full {
1263 my ($vmid, $conf, $net, $netid, $bridges) = @_;
1264
1265 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
1266
1267 my $device = $net->{model};
1268 if ($net->{model} eq 'virtio') {
1269 $device = 'virtio-net-pci';
1270 };
1271
1272 my $pciaddr = print_pci_addr("$netid", $bridges);
1273 my $tmpstr = "$device,mac=$net->{macaddr},netdev=$netid$pciaddr,id=$netid";
1274 if ($net->{queues} && $net->{queues} > 1 && $net->{model} eq 'virtio'){
1275 #Consider we have N queues, the number of vectors needed is 2*N + 2 (plus one config interrupt and control vq)
1276 my $vectors = $net->{queues} * 2 + 2;
1277 $tmpstr .= ",vectors=$vectors,mq=on";
1278 }
1279 $tmpstr .= ",bootindex=$net->{bootindex}" if $net->{bootindex} ;
1280 return $tmpstr;
1281 }
1282
1283 sub print_netdev_full {
1284 my ($vmid, $conf, $net, $netid) = @_;
1285
1286 my $i = '';
1287 if ($netid =~ m/^net(\d+)$/) {
1288 $i = int($1);
1289 }
1290
1291 die "got strange net id '$i'\n" if $i >= ${MAX_NETS};
1292
1293 my $ifname = "tap${vmid}i$i";
1294
1295 # kvm uses TUNSETIFF ioctl, and that limits ifname length
1296 die "interface name '$ifname' is too long (max 15 character)\n"
1297 if length($ifname) >= 16;
1298
1299 my $vhostparam = '';
1300 $vhostparam = ',vhost=on' if $kernel_has_vhost_net && $net->{model} eq 'virtio';
1301
1302 my $vmname = $conf->{name} || "vm$vmid";
1303
1304 my $netdev = "";
1305
1306 if ($net->{bridge}) {
1307 $netdev = "type=tap,id=$netid,ifname=${ifname},script=/var/lib/qemu-server/pve-bridge,downscript=/var/lib/qemu-server/pve-bridgedown$vhostparam";
1308 } else {
1309 $netdev = "type=user,id=$netid,hostname=$vmname";
1310 }
1311
1312 $netdev .= ",queues=$net->{queues}" if ($net->{queues} && $net->{model} eq 'virtio');
1313
1314 return $netdev;
1315 }
1316
1317 sub drive_is_cdrom {
1318 my ($drive) = @_;
1319
1320 return $drive && $drive->{media} && ($drive->{media} eq 'cdrom');
1321
1322 }
1323
1324 sub parse_numa {
1325 my ($data) = @_;
1326
1327 my $res = {};
1328
1329 foreach my $kvp (split(/,/, $data)) {
1330
1331 if ($kvp =~ m/^memory=(\S+)$/) {
1332 $res->{memory} = $1;
1333 } elsif ($kvp =~ m/^policy=(preferred|bind|interleave)$/) {
1334 $res->{policy} = $1;
1335 } elsif ($kvp =~ m/^cpus=(\d+)(-(\d+))?$/) {
1336 $res->{cpus}->{start} = $1;
1337 $res->{cpus}->{end} = $3;
1338 } elsif ($kvp =~ m/^hostnodes=(\d+)(-(\d+))?$/) {
1339 $res->{hostnodes}->{start} = $1;
1340 $res->{hostnodes}->{end} = $3;
1341 } else {
1342 return undef;
1343 }
1344 }
1345
1346 return $res;
1347 }
1348
1349 sub parse_hostpci {
1350 my ($value) = @_;
1351
1352 return undef if !$value;
1353
1354
1355 my @list = split(/,/, $value);
1356 my $found;
1357
1358 my $res = {};
1359 foreach my $kv (@list) {
1360
1361 if ($kv =~ m/^(host=)?([a-f0-9]{2}:[a-f0-9]{2})(\.([a-f0-9]))?$/) {
1362 $found = 1;
1363 if(defined($4)){
1364 push @{$res->{pciid}}, { id => $2 , function => $4};
1365
1366 }else{
1367 my $pcidevices = lspci($2);
1368 $res->{pciid} = $pcidevices->{$2};
1369 }
1370 } elsif ($kv =~ m/^driver=(kvm|vfio)$/) {
1371 $res->{driver} = $1;
1372 } elsif ($kv =~ m/^rombar=(on|off)$/) {
1373 $res->{rombar} = $1;
1374 } elsif ($kv =~ m/^x-vga=(on|off)$/) {
1375 $res->{'x-vga'} = $1;
1376 } elsif ($kv =~ m/^pcie=(\d+)$/) {
1377 $res->{pcie} = 1 if $1 == 1;
1378 } else {
1379 warn "unknown hostpci setting '$kv'\n";
1380 }
1381 }
1382
1383 return undef if !$found;
1384
1385 return $res;
1386 }
1387
1388 # netX: e1000=XX:XX:XX:XX:XX:XX,bridge=vmbr0,rate=<mbps>
1389 sub parse_net {
1390 my ($data) = @_;
1391
1392 my $res = {};
1393
1394 foreach my $kvp (split(/,/, $data)) {
1395
1396 if ($kvp =~ m/^(ne2k_pci|e1000|e1000-82540em|e1000-82544gc|e1000-82545em|rtl8139|pcnet|virtio|ne2k_isa|i82551|i82557b|i82559er|vmxnet3)(=([0-9a-f]{2}(:[0-9a-f]{2}){5}))?$/i) {
1397 my $model = lc($1);
1398 my $mac = defined($3) ? uc($3) : PVE::Tools::random_ether_addr();
1399 $res->{model} = $model;
1400 $res->{macaddr} = $mac;
1401 } elsif ($kvp =~ m/^bridge=(\S+)$/) {
1402 $res->{bridge} = $1;
1403 } elsif ($kvp =~ m/^queues=(\d+)$/) {
1404 $res->{queues} = $1;
1405 } elsif ($kvp =~ m/^rate=(\d+(\.\d+)?)$/) {
1406 $res->{rate} = $1;
1407 } elsif ($kvp =~ m/^tag=(\d+)$/) {
1408 $res->{tag} = $1;
1409 } elsif ($kvp =~ m/^firewall=([01])$/) {
1410 $res->{firewall} = $1;
1411 } elsif ($kvp =~ m/^link_down=([01])$/) {
1412 $res->{link_down} = $1;
1413 } else {
1414 return undef;
1415 }
1416
1417 }
1418
1419 return undef if !$res->{model};
1420
1421 return $res;
1422 }
1423
1424 sub print_net {
1425 my $net = shift;
1426
1427 my $res = "$net->{model}";
1428 $res .= "=$net->{macaddr}" if $net->{macaddr};
1429 $res .= ",bridge=$net->{bridge}" if $net->{bridge};
1430 $res .= ",rate=$net->{rate}" if $net->{rate};
1431 $res .= ",tag=$net->{tag}" if $net->{tag};
1432 $res .= ",firewall=1" if $net->{firewall};
1433 $res .= ",link_down=1" if $net->{link_down};
1434
1435 return $res;
1436 }
1437
1438 sub add_random_macs {
1439 my ($settings) = @_;
1440
1441 foreach my $opt (keys %$settings) {
1442 next if $opt !~ m/^net(\d+)$/;
1443 my $net = parse_net($settings->{$opt});
1444 next if !$net;
1445 $settings->{$opt} = print_net($net);
1446 }
1447 }
1448
1449 sub add_unused_volume {
1450 my ($config, $volid) = @_;
1451
1452 my $key;
1453 for (my $ind = $MAX_UNUSED_DISKS - 1; $ind >= 0; $ind--) {
1454 my $test = "unused$ind";
1455 if (my $vid = $config->{$test}) {
1456 return if $vid eq $volid; # do not add duplicates
1457 } else {
1458 $key = $test;
1459 }
1460 }
1461
1462 die "To many unused volume - please delete them first.\n" if !$key;
1463
1464 $config->{$key} = $volid;
1465
1466 return $key;
1467 }
1468
1469 sub vm_is_volid_owner {
1470 my ($storecfg, $vmid, $volid) = @_;
1471
1472 if ($volid !~ m|^/|) {
1473 my ($path, $owner);
1474 eval { ($path, $owner) = PVE::Storage::path($storecfg, $volid); };
1475 if ($owner && ($owner == $vmid)) {
1476 return 1;
1477 }
1478 }
1479
1480 return undef;
1481 }
1482
1483 sub vmconfig_delete_pending_option {
1484 my ($conf, $key) = @_;
1485
1486 delete $conf->{pending}->{$key};
1487 my $pending_delete_hash = { $key => 1 };
1488 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
1489 $pending_delete_hash->{$opt} = 1;
1490 }
1491 $conf->{pending}->{delete} = join(',', keys %$pending_delete_hash);
1492 }
1493
1494 sub vmconfig_undelete_pending_option {
1495 my ($conf, $key) = @_;
1496
1497 my $pending_delete_hash = {};
1498 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
1499 $pending_delete_hash->{$opt} = 1;
1500 }
1501 delete $pending_delete_hash->{$key};
1502
1503 my @keylist = keys %$pending_delete_hash;
1504 if (scalar(@keylist)) {
1505 $conf->{pending}->{delete} = join(',', @keylist);
1506 } else {
1507 delete $conf->{pending}->{delete};
1508 }
1509 }
1510
1511 sub vmconfig_register_unused_drive {
1512 my ($storecfg, $vmid, $conf, $drive) = @_;
1513
1514 if (!drive_is_cdrom($drive)) {
1515 my $volid = $drive->{file};
1516 if (vm_is_volid_owner($storecfg, $vmid, $volid)) {
1517 add_unused_volume($conf, $volid, $vmid);
1518 }
1519 }
1520 }
1521
1522 sub vmconfig_cleanup_pending {
1523 my ($conf) = @_;
1524
1525 # remove pending changes when nothing changed
1526 my $changes;
1527 foreach my $opt (keys %{$conf->{pending}}) {
1528 if (defined($conf->{$opt}) && ($conf->{pending}->{$opt} eq $conf->{$opt})) {
1529 $changes = 1;
1530 delete $conf->{pending}->{$opt};
1531 }
1532 }
1533
1534 # remove delete if option is not set
1535 my $pending_delete_hash = {};
1536 foreach my $opt (PVE::Tools::split_list($conf->{pending}->{delete})) {
1537 if (defined($conf->{$opt})) {
1538 $pending_delete_hash->{$opt} = 1;
1539 } else {
1540 $changes = 1;
1541 }
1542 }
1543
1544 my @keylist = keys %$pending_delete_hash;
1545 if (scalar(@keylist)) {
1546 $conf->{pending}->{delete} = join(',', @keylist);
1547 } else {
1548 delete $conf->{pending}->{delete};
1549 }
1550
1551 return $changes;
1552 }
1553
1554 my $valid_smbios1_options = {
1555 manufacturer => '\S+',
1556 product => '\S+',
1557 version => '\S+',
1558 serial => '\S+',
1559 uuid => '[a-fA-F0-9]{8}(?:-[a-fA-F0-9]{4}){3}-[a-fA-F0-9]{12}',
1560 sku => '\S+',
1561 family => '\S+',
1562 };
1563
1564 # smbios: [manufacturer=str][,product=str][,version=str][,serial=str][,uuid=uuid][,sku=str][,family=str]
1565 sub parse_smbios1 {
1566 my ($data) = @_;
1567
1568 my $res = {};
1569
1570 foreach my $kvp (split(/,/, $data)) {
1571 return undef if $kvp !~ m/^(\S+)=(.+)$/;
1572 my ($k, $v) = split(/=/, $kvp);
1573 return undef if !defined($k) || !defined($v);
1574 return undef if !$valid_smbios1_options->{$k};
1575 return undef if $v !~ m/^$valid_smbios1_options->{$k}$/;
1576 $res->{$k} = $v;
1577 }
1578
1579 return $res;
1580 }
1581
1582 sub print_smbios1 {
1583 my ($smbios1) = @_;
1584
1585 my $data = '';
1586 foreach my $k (keys %$smbios1) {
1587 next if !defined($smbios1->{$k});
1588 next if !$valid_smbios1_options->{$k};
1589 $data .= ',' if $data;
1590 $data .= "$k=$smbios1->{$k}";
1591 }
1592 return $data;
1593 }
1594
1595 PVE::JSONSchema::register_format('pve-qm-smbios1', \&verify_smbios1);
1596 sub verify_smbios1 {
1597 my ($value, $noerr) = @_;
1598
1599 return $value if parse_smbios1($value);
1600
1601 return undef if $noerr;
1602
1603 die "unable to parse smbios (type 1) options\n";
1604 }
1605
1606 PVE::JSONSchema::register_format('pve-qm-bootdisk', \&verify_bootdisk);
1607 sub verify_bootdisk {
1608 my ($value, $noerr) = @_;
1609
1610 return $value if valid_drivename($value);
1611
1612 return undef if $noerr;
1613
1614 die "invalid boot disk '$value'\n";
1615 }
1616
1617 PVE::JSONSchema::register_format('pve-qm-numanode', \&verify_numa);
1618 sub verify_numa {
1619 my ($value, $noerr) = @_;
1620
1621 return $value if parse_numa($value);
1622
1623 return undef if $noerr;
1624
1625 die "unable to parse numa options\n";
1626 }
1627
1628 PVE::JSONSchema::register_format('pve-qm-net', \&verify_net);
1629 sub verify_net {
1630 my ($value, $noerr) = @_;
1631
1632 return $value if parse_net($value);
1633
1634 return undef if $noerr;
1635
1636 die "unable to parse network options\n";
1637 }
1638
1639 PVE::JSONSchema::register_format('pve-qm-drive', \&verify_drive);
1640 sub verify_drive {
1641 my ($value, $noerr) = @_;
1642
1643 return $value if parse_drive(undef, $value);
1644
1645 return undef if $noerr;
1646
1647 die "unable to parse drive options\n";
1648 }
1649
1650 PVE::JSONSchema::register_format('pve-qm-hostpci', \&verify_hostpci);
1651 sub verify_hostpci {
1652 my ($value, $noerr) = @_;
1653
1654 return $value if parse_hostpci($value);
1655
1656 return undef if $noerr;
1657
1658 die "unable to parse pci id\n";
1659 }
1660
1661 PVE::JSONSchema::register_format('pve-qm-watchdog', \&verify_watchdog);
1662 sub verify_watchdog {
1663 my ($value, $noerr) = @_;
1664
1665 return $value if parse_watchdog($value);
1666
1667 return undef if $noerr;
1668
1669 die "unable to parse watchdog options\n";
1670 }
1671
1672 sub parse_watchdog {
1673 my ($value) = @_;
1674
1675 return undef if !$value;
1676
1677 my $res = {};
1678
1679 foreach my $p (split(/,/, $value)) {
1680 next if $p =~ m/^\s*$/;
1681
1682 if ($p =~ m/^(model=)?(i6300esb|ib700)$/) {
1683 $res->{model} = $2;
1684 } elsif ($p =~ m/^(action=)?(reset|shutdown|poweroff|pause|debug|none)$/) {
1685 $res->{action} = $2;
1686 } else {
1687 return undef;
1688 }
1689 }
1690
1691 return $res;
1692 }
1693
1694 PVE::JSONSchema::register_format('pve-qm-startup', \&verify_startup);
1695 sub verify_startup {
1696 my ($value, $noerr) = @_;
1697
1698 return $value if parse_startup($value);
1699
1700 return undef if $noerr;
1701
1702 die "unable to parse startup options\n";
1703 }
1704
1705 sub parse_startup {
1706 my ($value) = @_;
1707
1708 return undef if !$value;
1709
1710 my $res = {};
1711
1712 foreach my $p (split(/,/, $value)) {
1713 next if $p =~ m/^\s*$/;
1714
1715 if ($p =~ m/^(order=)?(\d+)$/) {
1716 $res->{order} = $2;
1717 } elsif ($p =~ m/^up=(\d+)$/) {
1718 $res->{up} = $1;
1719 } elsif ($p =~ m/^down=(\d+)$/) {
1720 $res->{down} = $1;
1721 } else {
1722 return undef;
1723 }
1724 }
1725
1726 return $res;
1727 }
1728
1729 sub parse_usb_device {
1730 my ($value) = @_;
1731
1732 return undef if !$value;
1733
1734 my @dl = split(/,/, $value);
1735 my $found;
1736
1737 my $res = {};
1738 foreach my $v (@dl) {
1739 if ($v =~ m/^host=(0x)?([0-9A-Fa-f]{4}):(0x)?([0-9A-Fa-f]{4})$/) {
1740 $found = 1;
1741 $res->{vendorid} = $2;
1742 $res->{productid} = $4;
1743 } elsif ($v =~ m/^host=(\d+)\-(\d+(\.\d+)*)$/) {
1744 $found = 1;
1745 $res->{hostbus} = $1;
1746 $res->{hostport} = $2;
1747 } elsif ($v =~ m/^spice$/) {
1748 $found = 1;
1749 $res->{spice} = 1;
1750 } else {
1751 return undef;
1752 }
1753 }
1754 return undef if !$found;
1755
1756 return $res;
1757 }
1758
1759 PVE::JSONSchema::register_format('pve-qm-usb-device', \&verify_usb_device);
1760 sub verify_usb_device {
1761 my ($value, $noerr) = @_;
1762
1763 return $value if parse_usb_device($value);
1764
1765 return undef if $noerr;
1766
1767 die "unable to parse usb device\n";
1768 }
1769
1770 # add JSON properties for create and set function
1771 sub json_config_properties {
1772 my $prop = shift;
1773
1774 foreach my $opt (keys %$confdesc) {
1775 next if $opt eq 'parent' || $opt eq 'snaptime' || $opt eq 'vmstate';
1776 $prop->{$opt} = $confdesc->{$opt};
1777 }
1778
1779 return $prop;
1780 }
1781
1782 sub check_type {
1783 my ($key, $value) = @_;
1784
1785 die "unknown setting '$key'\n" if !$confdesc->{$key};
1786
1787 my $type = $confdesc->{$key}->{type};
1788
1789 if (!defined($value)) {
1790 die "got undefined value\n";
1791 }
1792
1793 if ($value =~ m/[\n\r]/) {
1794 die "property contains a line feed\n";
1795 }
1796
1797 if ($type eq 'boolean') {
1798 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
1799 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
1800 die "type check ('boolean') failed - got '$value'\n";
1801 } elsif ($type eq 'integer') {
1802 return int($1) if $value =~ m/^(\d+)$/;
1803 die "type check ('integer') failed - got '$value'\n";
1804 } elsif ($type eq 'number') {
1805 return $value if $value =~ m/^(\d+)(\.\d+)?$/;
1806 die "type check ('number') failed - got '$value'\n";
1807 } elsif ($type eq 'string') {
1808 if (my $fmt = $confdesc->{$key}->{format}) {
1809 if ($fmt eq 'pve-qm-drive') {
1810 # special case - we need to pass $key to parse_drive()
1811 my $drive = parse_drive($key, $value);
1812 return $value if $drive;
1813 die "unable to parse drive options\n";
1814 }
1815 PVE::JSONSchema::check_format($fmt, $value);
1816 return $value;
1817 }
1818 $value =~ s/^\"(.*)\"$/$1/;
1819 return $value;
1820 } else {
1821 die "internal error"
1822 }
1823 }
1824
1825 sub lock_config_full {
1826 my ($vmid, $timeout, $code, @param) = @_;
1827
1828 my $filename = config_file_lock($vmid);
1829
1830 my $res = lock_file($filename, $timeout, $code, @param);
1831
1832 die $@ if $@;
1833
1834 return $res;
1835 }
1836
1837 sub lock_config_mode {
1838 my ($vmid, $timeout, $shared, $code, @param) = @_;
1839
1840 my $filename = config_file_lock($vmid);
1841
1842 my $res = lock_file_full($filename, $timeout, $shared, $code, @param);
1843
1844 die $@ if $@;
1845
1846 return $res;
1847 }
1848
1849 sub lock_config {
1850 my ($vmid, $code, @param) = @_;
1851
1852 return lock_config_full($vmid, 10, $code, @param);
1853 }
1854
1855 sub cfs_config_path {
1856 my ($vmid, $node) = @_;
1857
1858 $node = $nodename if !$node;
1859 return "nodes/$node/qemu-server/$vmid.conf";
1860 }
1861
1862 sub check_iommu_support{
1863 #fixme : need to check IOMMU support
1864 #http://www.linux-kvm.org/page/How_to_assign_devices_with_VT-d_in_KVM
1865
1866 my $iommu=1;
1867 return $iommu;
1868
1869 }
1870
1871 sub config_file {
1872 my ($vmid, $node) = @_;
1873
1874 my $cfspath = cfs_config_path($vmid, $node);
1875 return "/etc/pve/$cfspath";
1876 }
1877
1878 sub config_file_lock {
1879 my ($vmid) = @_;
1880
1881 return "$lock_dir/lock-$vmid.conf";
1882 }
1883
1884 sub touch_config {
1885 my ($vmid) = @_;
1886
1887 my $conf = config_file($vmid);
1888 utime undef, undef, $conf;
1889 }
1890
1891 sub destroy_vm {
1892 my ($storecfg, $vmid, $keep_empty_config) = @_;
1893
1894 my $conffile = config_file($vmid);
1895
1896 my $conf = load_config($vmid);
1897
1898 check_lock($conf);
1899
1900 # only remove disks owned by this VM
1901 foreach_drive($conf, sub {
1902 my ($ds, $drive) = @_;
1903
1904 return if drive_is_cdrom($drive);
1905
1906 my $volid = $drive->{file};
1907
1908 return if !$volid || $volid =~ m|^/|;
1909
1910 my ($path, $owner) = PVE::Storage::path($storecfg, $volid);
1911 return if !$path || !$owner || ($owner != $vmid);
1912
1913 PVE::Storage::vdisk_free($storecfg, $volid);
1914 });
1915
1916 if ($keep_empty_config) {
1917 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
1918 } else {
1919 unlink $conffile;
1920 }
1921
1922 # also remove unused disk
1923 eval {
1924 my $dl = PVE::Storage::vdisk_list($storecfg, undef, $vmid);
1925
1926 eval {
1927 PVE::Storage::foreach_volid($dl, sub {
1928 my ($volid, $sid, $volname, $d) = @_;
1929 PVE::Storage::vdisk_free($storecfg, $volid);
1930 });
1931 };
1932 warn $@ if $@;
1933
1934 };
1935 warn $@ if $@;
1936 }
1937
1938 sub load_config {
1939 my ($vmid, $node) = @_;
1940
1941 my $cfspath = cfs_config_path($vmid, $node);
1942
1943 my $conf = PVE::Cluster::cfs_read_file($cfspath);
1944
1945 die "no such VM ('$vmid')\n" if !defined($conf);
1946
1947 return $conf;
1948 }
1949
1950 sub parse_vm_config {
1951 my ($filename, $raw) = @_;
1952
1953 return undef if !defined($raw);
1954
1955 my $res = {
1956 digest => Digest::SHA::sha1_hex($raw),
1957 snapshots => {},
1958 pending => {},
1959 };
1960
1961 $filename =~ m|/qemu-server/(\d+)\.conf$|
1962 || die "got strange filename '$filename'";
1963
1964 my $vmid = $1;
1965
1966 my $conf = $res;
1967 my $descr = '';
1968 my $section = '';
1969
1970 my @lines = split(/\n/, $raw);
1971 foreach my $line (@lines) {
1972 next if $line =~ m/^\s*$/;
1973
1974 if ($line =~ m/^\[PENDING\]\s*$/i) {
1975 $section = 'pending';
1976 $conf->{description} = $descr if $descr;
1977 $descr = '';
1978 $conf = $res->{$section} = {};
1979 next;
1980
1981 } elsif ($line =~ m/^\[([a-z][a-z0-9_\-]+)\]\s*$/i) {
1982 $section = $1;
1983 $conf->{description} = $descr if $descr;
1984 $descr = '';
1985 $conf = $res->{snapshots}->{$section} = {};
1986 next;
1987 }
1988
1989 if ($line =~ m/^\#(.*)\s*$/) {
1990 $descr .= PVE::Tools::decode_text($1) . "\n";
1991 next;
1992 }
1993
1994 if ($line =~ m/^(description):\s*(.*\S)\s*$/) {
1995 $descr .= PVE::Tools::decode_text($2);
1996 } elsif ($line =~ m/snapstate:\s*(prepare|delete)\s*$/) {
1997 $conf->{snapstate} = $1;
1998 } elsif ($line =~ m/^(args):\s*(.*\S)\s*$/) {
1999 my $key = $1;
2000 my $value = $2;
2001 $conf->{$key} = $value;
2002 } elsif ($line =~ m/^delete:\s*(.*\S)\s*$/) {
2003 my $value = $1;
2004 if ($section eq 'pending') {
2005 $conf->{delete} = $value; # we parse this later
2006 } else {
2007 warn "vm $vmid - propertry 'delete' is only allowed in [PENDING]\n";
2008 }
2009 } elsif ($line =~ m/^([a-z][a-z_]*\d*):\s*(\S+)\s*$/) {
2010 my $key = $1;
2011 my $value = $2;
2012 eval { $value = check_type($key, $value); };
2013 if ($@) {
2014 warn "vm $vmid - unable to parse value of '$key' - $@";
2015 } else {
2016 my $fmt = $confdesc->{$key}->{format};
2017 if ($fmt && $fmt eq 'pve-qm-drive') {
2018 my $v = parse_drive($key, $value);
2019 if (my $volid = filename_to_volume_id($vmid, $v->{file}, $v->{media})) {
2020 $v->{file} = $volid;
2021 $value = print_drive($vmid, $v);
2022 } else {
2023 warn "vm $vmid - unable to parse value of '$key'\n";
2024 next;
2025 }
2026 }
2027
2028 if ($key eq 'cdrom') {
2029 $conf->{ide2} = $value;
2030 } else {
2031 $conf->{$key} = $value;
2032 }
2033 }
2034 }
2035 }
2036
2037 $conf->{description} = $descr if $descr;
2038
2039 delete $res->{snapstate}; # just to be sure
2040
2041 return $res;
2042 }
2043
2044 sub write_vm_config {
2045 my ($filename, $conf) = @_;
2046
2047 delete $conf->{snapstate}; # just to be sure
2048
2049 if ($conf->{cdrom}) {
2050 die "option ide2 conflicts with cdrom\n" if $conf->{ide2};
2051 $conf->{ide2} = $conf->{cdrom};
2052 delete $conf->{cdrom};
2053 }
2054
2055 # we do not use 'smp' any longer
2056 if ($conf->{sockets}) {
2057 delete $conf->{smp};
2058 } elsif ($conf->{smp}) {
2059 $conf->{sockets} = $conf->{smp};
2060 delete $conf->{cores};
2061 delete $conf->{smp};
2062 }
2063
2064 my $used_volids = {};
2065
2066 my $cleanup_config = sub {
2067 my ($cref, $pending, $snapname) = @_;
2068
2069 foreach my $key (keys %$cref) {
2070 next if $key eq 'digest' || $key eq 'description' || $key eq 'snapshots' ||
2071 $key eq 'snapstate' || $key eq 'pending';
2072 my $value = $cref->{$key};
2073 if ($key eq 'delete') {
2074 die "propertry 'delete' is only allowed in [PENDING]\n"
2075 if !$pending;
2076 # fixme: check syntax?
2077 next;
2078 }
2079 eval { $value = check_type($key, $value); };
2080 die "unable to parse value of '$key' - $@" if $@;
2081
2082 $cref->{$key} = $value;
2083
2084 if (!$snapname && valid_drivename($key)) {
2085 my $drive = parse_drive($key, $value);
2086 $used_volids->{$drive->{file}} = 1 if $drive && $drive->{file};
2087 }
2088 }
2089 };
2090
2091 &$cleanup_config($conf);
2092
2093 &$cleanup_config($conf->{pending}, 1);
2094
2095 foreach my $snapname (keys %{$conf->{snapshots}}) {
2096 die "internal error" if $snapname eq 'pending';
2097 &$cleanup_config($conf->{snapshots}->{$snapname}, undef, $snapname);
2098 }
2099
2100 # remove 'unusedX' settings if we re-add a volume
2101 foreach my $key (keys %$conf) {
2102 my $value = $conf->{$key};
2103 if ($key =~ m/^unused/ && $used_volids->{$value}) {
2104 delete $conf->{$key};
2105 }
2106 }
2107
2108 my $generate_raw_config = sub {
2109 my ($conf) = @_;
2110
2111 my $raw = '';
2112
2113 # add description as comment to top of file
2114 my $descr = $conf->{description} || '';
2115 foreach my $cl (split(/\n/, $descr)) {
2116 $raw .= '#' . PVE::Tools::encode_text($cl) . "\n";
2117 }
2118
2119 foreach my $key (sort keys %$conf) {
2120 next if $key eq 'digest' || $key eq 'description' || $key eq 'pending' || $key eq 'snapshots';
2121 $raw .= "$key: $conf->{$key}\n";
2122 }
2123 return $raw;
2124 };
2125
2126 my $raw = &$generate_raw_config($conf);
2127
2128 if (scalar(keys %{$conf->{pending}})){
2129 $raw .= "\n[PENDING]\n";
2130 $raw .= &$generate_raw_config($conf->{pending});
2131 }
2132
2133 foreach my $snapname (sort keys %{$conf->{snapshots}}) {
2134 $raw .= "\n[$snapname]\n";
2135 $raw .= &$generate_raw_config($conf->{snapshots}->{$snapname});
2136 }
2137
2138 return $raw;
2139 }
2140
2141 sub update_config_nolock {
2142 my ($vmid, $conf, $skiplock) = @_;
2143
2144 check_lock($conf) if !$skiplock;
2145
2146 my $cfspath = cfs_config_path($vmid);
2147
2148 PVE::Cluster::cfs_write_file($cfspath, $conf);
2149 }
2150
2151 sub update_config {
2152 my ($vmid, $conf, $skiplock) = @_;
2153
2154 lock_config($vmid, &update_config_nolock, $conf, $skiplock);
2155 }
2156
2157 sub load_defaults {
2158
2159 my $res = {};
2160
2161 # we use static defaults from our JSON schema configuration
2162 foreach my $key (keys %$confdesc) {
2163 if (defined(my $default = $confdesc->{$key}->{default})) {
2164 $res->{$key} = $default;
2165 }
2166 }
2167
2168 my $conf = PVE::Cluster::cfs_read_file('datacenter.cfg');
2169 $res->{keyboard} = $conf->{keyboard} if $conf->{keyboard};
2170
2171 return $res;
2172 }
2173
2174 sub config_list {
2175 my $vmlist = PVE::Cluster::get_vmlist();
2176 my $res = {};
2177 return $res if !$vmlist || !$vmlist->{ids};
2178 my $ids = $vmlist->{ids};
2179
2180 foreach my $vmid (keys %$ids) {
2181 my $d = $ids->{$vmid};
2182 next if !$d->{node} || $d->{node} ne $nodename;
2183 next if !$d->{type} || $d->{type} ne 'qemu';
2184 $res->{$vmid}->{exists} = 1;
2185 }
2186 return $res;
2187 }
2188
2189 # test if VM uses local resources (to prevent migration)
2190 sub check_local_resources {
2191 my ($conf, $noerr) = @_;
2192
2193 my $loc_res = 0;
2194
2195 $loc_res = 1 if $conf->{hostusb}; # old syntax
2196 $loc_res = 1 if $conf->{hostpci}; # old syntax
2197
2198 foreach my $k (keys %$conf) {
2199 next if $k =~ m/^usb/ && ($conf->{$k} eq 'spice');
2200 $loc_res = 1 if $k =~ m/^(usb|hostpci|serial|parallel)\d+$/;
2201 }
2202
2203 die "VM uses local resources\n" if $loc_res && !$noerr;
2204
2205 return $loc_res;
2206 }
2207
2208 # check if used storages are available on all nodes (use by migrate)
2209 sub check_storage_availability {
2210 my ($storecfg, $conf, $node) = @_;
2211
2212 foreach_drive($conf, sub {
2213 my ($ds, $drive) = @_;
2214
2215 my $volid = $drive->{file};
2216 return if !$volid;
2217
2218 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2219 return if !$sid;
2220
2221 # check if storage is available on both nodes
2222 my $scfg = PVE::Storage::storage_check_node($storecfg, $sid);
2223 PVE::Storage::storage_check_node($storecfg, $sid, $node);
2224 });
2225 }
2226
2227 # list nodes where all VM images are available (used by has_feature API)
2228 sub shared_nodes {
2229 my ($conf, $storecfg) = @_;
2230
2231 my $nodelist = PVE::Cluster::get_nodelist();
2232 my $nodehash = { map { $_ => 1 } @$nodelist };
2233 my $nodename = PVE::INotify::nodename();
2234
2235 foreach_drive($conf, sub {
2236 my ($ds, $drive) = @_;
2237
2238 my $volid = $drive->{file};
2239 return if !$volid;
2240
2241 my ($storeid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
2242 if ($storeid) {
2243 my $scfg = PVE::Storage::storage_config($storecfg, $storeid);
2244 if ($scfg->{disable}) {
2245 $nodehash = {};
2246 } elsif (my $avail = $scfg->{nodes}) {
2247 foreach my $node (keys %$nodehash) {
2248 delete $nodehash->{$node} if !$avail->{$node};
2249 }
2250 } elsif (!$scfg->{shared}) {
2251 foreach my $node (keys %$nodehash) {
2252 delete $nodehash->{$node} if $node ne $nodename
2253 }
2254 }
2255 }
2256 });
2257
2258 return $nodehash
2259 }
2260
2261 sub check_lock {
2262 my ($conf) = @_;
2263
2264 die "VM is locked ($conf->{lock})\n" if $conf->{lock};
2265 }
2266
2267 sub check_cmdline {
2268 my ($pidfile, $pid) = @_;
2269
2270 my $fh = IO::File->new("/proc/$pid/cmdline", "r");
2271 if (defined($fh)) {
2272 my $line = <$fh>;
2273 $fh->close;
2274 return undef if !$line;
2275 my @param = split(/\0/, $line);
2276
2277 my $cmd = $param[0];
2278 return if !$cmd || ($cmd !~ m|kvm$| && $cmd !~ m|qemu-system-x86_64$|);
2279
2280 for (my $i = 0; $i < scalar (@param); $i++) {
2281 my $p = $param[$i];
2282 next if !$p;
2283 if (($p eq '-pidfile') || ($p eq '--pidfile')) {
2284 my $p = $param[$i+1];
2285 return 1 if $p && ($p eq $pidfile);
2286 return undef;
2287 }
2288 }
2289 }
2290 return undef;
2291 }
2292
2293 sub check_running {
2294 my ($vmid, $nocheck, $node) = @_;
2295
2296 my $filename = config_file($vmid, $node);
2297
2298 die "unable to find configuration file for VM $vmid - no such machine\n"
2299 if !$nocheck && ! -f $filename;
2300
2301 my $pidfile = pidfile_name($vmid);
2302
2303 if (my $fd = IO::File->new("<$pidfile")) {
2304 my $st = stat($fd);
2305 my $line = <$fd>;
2306 close($fd);
2307
2308 my $mtime = $st->mtime;
2309 if ($mtime > time()) {
2310 warn "file '$filename' modified in future\n";
2311 }
2312
2313 if ($line =~ m/^(\d+)$/) {
2314 my $pid = $1;
2315 if (check_cmdline($pidfile, $pid)) {
2316 if (my $pinfo = PVE::ProcFSTools::check_process_running($pid)) {
2317 return $pid;
2318 }
2319 }
2320 }
2321 }
2322
2323 return undef;
2324 }
2325
2326 sub vzlist {
2327
2328 my $vzlist = config_list();
2329
2330 my $fd = IO::Dir->new($var_run_tmpdir) || return $vzlist;
2331
2332 while (defined(my $de = $fd->read)) {
2333 next if $de !~ m/^(\d+)\.pid$/;
2334 my $vmid = $1;
2335 next if !defined($vzlist->{$vmid});
2336 if (my $pid = check_running($vmid)) {
2337 $vzlist->{$vmid}->{pid} = $pid;
2338 }
2339 }
2340
2341 return $vzlist;
2342 }
2343
2344 sub disksize {
2345 my ($storecfg, $conf) = @_;
2346
2347 my $bootdisk = $conf->{bootdisk};
2348 return undef if !$bootdisk;
2349 return undef if !valid_drivename($bootdisk);
2350
2351 return undef if !$conf->{$bootdisk};
2352
2353 my $drive = parse_drive($bootdisk, $conf->{$bootdisk});
2354 return undef if !defined($drive);
2355
2356 return undef if drive_is_cdrom($drive);
2357
2358 my $volid = $drive->{file};
2359 return undef if !$volid;
2360
2361 return $drive->{size};
2362 }
2363
2364 my $last_proc_pid_stat;
2365
2366 # get VM status information
2367 # This must be fast and should not block ($full == false)
2368 # We only query KVM using QMP if $full == true (this can be slow)
2369 sub vmstatus {
2370 my ($opt_vmid, $full) = @_;
2371
2372 my $res = {};
2373
2374 my $storecfg = PVE::Storage::config();
2375
2376 my $list = vzlist();
2377 my ($uptime) = PVE::ProcFSTools::read_proc_uptime(1);
2378
2379 my $cpucount = $cpuinfo->{cpus} || 1;
2380
2381 foreach my $vmid (keys %$list) {
2382 next if $opt_vmid && ($vmid ne $opt_vmid);
2383
2384 my $cfspath = cfs_config_path($vmid);
2385 my $conf = PVE::Cluster::cfs_read_file($cfspath) || {};
2386
2387 my $d = {};
2388 $d->{pid} = $list->{$vmid}->{pid};
2389
2390 # fixme: better status?
2391 $d->{status} = $list->{$vmid}->{pid} ? 'running' : 'stopped';
2392
2393 my $size = disksize($storecfg, $conf);
2394 if (defined($size)) {
2395 $d->{disk} = 0; # no info available
2396 $d->{maxdisk} = $size;
2397 } else {
2398 $d->{disk} = 0;
2399 $d->{maxdisk} = 0;
2400 }
2401
2402 $d->{cpus} = ($conf->{sockets} || 1) * ($conf->{cores} || 1);
2403 $d->{cpus} = $cpucount if $d->{cpus} > $cpucount;
2404
2405 $d->{name} = $conf->{name} || "VM $vmid";
2406 $d->{maxmem} = $conf->{memory} ? $conf->{memory}*(1024*1024) : 0;
2407
2408 if ($conf->{balloon}) {
2409 $d->{balloon_min} = $conf->{balloon}*(1024*1024);
2410 $d->{shares} = defined($conf->{shares}) ? $conf->{shares} : 1000;
2411 }
2412
2413 $d->{uptime} = 0;
2414 $d->{cpu} = 0;
2415 $d->{mem} = 0;
2416
2417 $d->{netout} = 0;
2418 $d->{netin} = 0;
2419
2420 $d->{diskread} = 0;
2421 $d->{diskwrite} = 0;
2422
2423 $d->{template} = is_template($conf);
2424
2425 $res->{$vmid} = $d;
2426 }
2427
2428 my $netdev = PVE::ProcFSTools::read_proc_net_dev();
2429 foreach my $dev (keys %$netdev) {
2430 next if $dev !~ m/^tap([1-9]\d*)i/;
2431 my $vmid = $1;
2432 my $d = $res->{$vmid};
2433 next if !$d;
2434
2435 $d->{netout} += $netdev->{$dev}->{receive};
2436 $d->{netin} += $netdev->{$dev}->{transmit};
2437 }
2438
2439 my $ctime = gettimeofday;
2440
2441 foreach my $vmid (keys %$list) {
2442
2443 my $d = $res->{$vmid};
2444 my $pid = $d->{pid};
2445 next if !$pid;
2446
2447 my $pstat = PVE::ProcFSTools::read_proc_pid_stat($pid);
2448 next if !$pstat; # not running
2449
2450 my $used = $pstat->{utime} + $pstat->{stime};
2451
2452 $d->{uptime} = int(($uptime - $pstat->{starttime})/$cpuinfo->{user_hz});
2453
2454 if ($pstat->{vsize}) {
2455 $d->{mem} = int(($pstat->{rss}/$pstat->{vsize})*$d->{maxmem});
2456 }
2457
2458 my $old = $last_proc_pid_stat->{$pid};
2459 if (!$old) {
2460 $last_proc_pid_stat->{$pid} = {
2461 time => $ctime,
2462 used => $used,
2463 cpu => 0,
2464 };
2465 next;
2466 }
2467
2468 my $dtime = ($ctime - $old->{time}) * $cpucount * $cpuinfo->{user_hz};
2469
2470 if ($dtime > 1000) {
2471 my $dutime = $used - $old->{used};
2472
2473 $d->{cpu} = (($dutime/$dtime)* $cpucount) / $d->{cpus};
2474 $last_proc_pid_stat->{$pid} = {
2475 time => $ctime,
2476 used => $used,
2477 cpu => $d->{cpu},
2478 };
2479 } else {
2480 $d->{cpu} = $old->{cpu};
2481 }
2482 }
2483
2484 return $res if !$full;
2485
2486 my $qmpclient = PVE::QMPClient->new();
2487
2488 my $ballooncb = sub {
2489 my ($vmid, $resp) = @_;
2490
2491 my $info = $resp->{'return'};
2492 return if !$info->{max_mem};
2493
2494 my $d = $res->{$vmid};
2495
2496 # use memory assigned to VM
2497 $d->{maxmem} = $info->{max_mem};
2498 $d->{balloon} = $info->{actual};
2499
2500 if (defined($info->{total_mem}) && defined($info->{free_mem})) {
2501 $d->{mem} = $info->{total_mem} - $info->{free_mem};
2502 $d->{freemem} = $info->{free_mem};
2503 }
2504
2505 };
2506
2507 my $blockstatscb = sub {
2508 my ($vmid, $resp) = @_;
2509 my $data = $resp->{'return'} || [];
2510 my $totalrdbytes = 0;
2511 my $totalwrbytes = 0;
2512 for my $blockstat (@$data) {
2513 $totalrdbytes = $totalrdbytes + $blockstat->{stats}->{rd_bytes};
2514 $totalwrbytes = $totalwrbytes + $blockstat->{stats}->{wr_bytes};
2515 }
2516 $res->{$vmid}->{diskread} = $totalrdbytes;
2517 $res->{$vmid}->{diskwrite} = $totalwrbytes;
2518 };
2519
2520 my $statuscb = sub {
2521 my ($vmid, $resp) = @_;
2522
2523 $qmpclient->queue_cmd($vmid, $blockstatscb, 'query-blockstats');
2524 # this fails if ballon driver is not loaded, so this must be
2525 # the last commnand (following command are aborted if this fails).
2526 $qmpclient->queue_cmd($vmid, $ballooncb, 'query-balloon');
2527
2528 my $status = 'unknown';
2529 if (!defined($status = $resp->{'return'}->{status})) {
2530 warn "unable to get VM status\n";
2531 return;
2532 }
2533
2534 $res->{$vmid}->{qmpstatus} = $resp->{'return'}->{status};
2535 };
2536
2537 foreach my $vmid (keys %$list) {
2538 next if $opt_vmid && ($vmid ne $opt_vmid);
2539 next if !$res->{$vmid}->{pid}; # not running
2540 $qmpclient->queue_cmd($vmid, $statuscb, 'query-status');
2541 }
2542
2543 $qmpclient->queue_execute(undef, 1);
2544
2545 foreach my $vmid (keys %$list) {
2546 next if $opt_vmid && ($vmid ne $opt_vmid);
2547 $res->{$vmid}->{qmpstatus} = $res->{$vmid}->{status} if !$res->{$vmid}->{qmpstatus};
2548 }
2549
2550 return $res;
2551 }
2552
2553 sub foreach_dimm {
2554 my ($conf, $vmid, $memory, $sockets, $func) = @_;
2555
2556 my $dimm_id = 0;
2557 my $current_size = 1024;
2558 my $dimm_size = 512;
2559 return if $current_size == $memory;
2560
2561 for (my $j = 0; $j < 8; $j++) {
2562 for (my $i = 0; $i < 32; $i++) {
2563 my $name = "dimm${dimm_id}";
2564 $dimm_id++;
2565 my $numanode = $i % $sockets;
2566 $current_size += $dimm_size;
2567 &$func($conf, $vmid, $name, $dimm_size, $numanode, $current_size, $memory);
2568 return $current_size if $current_size >= $memory;
2569 }
2570 $dimm_size *= 2;
2571 }
2572 }
2573
2574 sub foreach_drive {
2575 my ($conf, $func) = @_;
2576
2577 foreach my $ds (keys %$conf) {
2578 next if !valid_drivename($ds);
2579
2580 my $drive = parse_drive($ds, $conf->{$ds});
2581 next if !$drive;
2582
2583 &$func($ds, $drive);
2584 }
2585 }
2586
2587 sub foreach_volid {
2588 my ($conf, $func) = @_;
2589
2590 my $volhash = {};
2591
2592 my $test_volid = sub {
2593 my ($volid, $is_cdrom) = @_;
2594
2595 return if !$volid;
2596
2597 $volhash->{$volid} = $is_cdrom || 0;
2598 };
2599
2600 foreach_drive($conf, sub {
2601 my ($ds, $drive) = @_;
2602 &$test_volid($drive->{file}, drive_is_cdrom($drive));
2603 });
2604
2605 foreach my $snapname (keys %{$conf->{snapshots}}) {
2606 my $snap = $conf->{snapshots}->{$snapname};
2607 &$test_volid($snap->{vmstate}, 0);
2608 foreach_drive($snap, sub {
2609 my ($ds, $drive) = @_;
2610 &$test_volid($drive->{file}, drive_is_cdrom($drive));
2611 });
2612 }
2613
2614 foreach my $volid (keys %$volhash) {
2615 &$func($volid, $volhash->{$volid});
2616 }
2617 }
2618
2619 sub vga_conf_has_spice {
2620 my ($vga) = @_;
2621
2622 return 0 if !$vga || $vga !~ m/^qxl([234])?$/;
2623
2624 return $1 || 1;
2625 }
2626
2627 sub config_to_command {
2628 my ($storecfg, $vmid, $conf, $defaults, $forcemachine) = @_;
2629
2630 my $cmd = [];
2631 my $globalFlags = [];
2632 my $machineFlags = [];
2633 my $rtcFlags = [];
2634 my $cpuFlags = [];
2635 my $devices = [];
2636 my $pciaddr = '';
2637 my $bridges = {};
2638 my $kvmver = kvm_user_version();
2639 my $vernum = 0; # unknown
2640 if ($kvmver =~ m/^(\d+)\.(\d+)$/) {
2641 $vernum = $1*1000000+$2*1000;
2642 } elsif ($kvmver =~ m/^(\d+)\.(\d+)\.(\d+)$/) {
2643 $vernum = $1*1000000+$2*1000+$3;
2644 }
2645
2646 die "detected old qemu-kvm binary ($kvmver)\n" if $vernum < 15000;
2647
2648 my $have_ovz = -f '/proc/vz/vestat';
2649
2650 my $q35 = machine_type_is_q35($conf);
2651 my $hotplug_features = parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1');
2652
2653 push @$cmd, '/usr/bin/kvm';
2654
2655 push @$cmd, '-id', $vmid;
2656
2657 my $use_virtio = 0;
2658
2659 my $qmpsocket = qmp_socket($vmid);
2660 push @$cmd, '-chardev', "socket,id=qmp,path=$qmpsocket,server,nowait";
2661 push @$cmd, '-mon', "chardev=qmp,mode=control";
2662
2663 my $socket = vnc_socket($vmid);
2664 push @$cmd, '-vnc', "unix:$socket,x509,password";
2665
2666 push @$cmd, '-pidfile' , pidfile_name($vmid);
2667
2668 push @$cmd, '-daemonize';
2669
2670 if ($conf->{smbios1}) {
2671 push @$cmd, '-smbios', "type=1,$conf->{smbios1}";
2672 }
2673
2674 push @$cmd, '-object', "iothread,id=iothread0" if $conf->{iothread};
2675
2676 if ($q35) {
2677 # the q35 chipset support native usb2, so we enable usb controller
2678 # by default for this machine type
2679 push @$devices, '-readconfig', '/usr/share/qemu-server/pve-q35.cfg';
2680 } else {
2681 $pciaddr = print_pci_addr("piix3", $bridges);
2682 push @$devices, '-device', "piix3-usb-uhci,id=uhci$pciaddr.0x2";
2683
2684 my $use_usb2 = 0;
2685 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
2686 next if !$conf->{"usb$i"};
2687 $use_usb2 = 1;
2688 }
2689 # include usb device config
2690 push @$devices, '-readconfig', '/usr/share/qemu-server/pve-usb.cfg' if $use_usb2;
2691 }
2692
2693 my $vga = $conf->{vga};
2694
2695 my $qxlnum = vga_conf_has_spice($vga);
2696 $vga = 'qxl' if $qxlnum;
2697
2698 if (!$vga) {
2699 if ($conf->{ostype} && ($conf->{ostype} eq 'win8' ||
2700 $conf->{ostype} eq 'win7' ||
2701 $conf->{ostype} eq 'w2k8')) {
2702 $vga = 'std';
2703 } else {
2704 $vga = 'cirrus';
2705 }
2706 }
2707
2708 # enable absolute mouse coordinates (needed by vnc)
2709 my $tablet;
2710 if (defined($conf->{tablet})) {
2711 $tablet = $conf->{tablet};
2712 } else {
2713 $tablet = $defaults->{tablet};
2714 $tablet = 0 if $qxlnum; # disable for spice because it is not needed
2715 $tablet = 0 if $vga =~ m/^serial\d+$/; # disable if we use serial terminal (no vga card)
2716 }
2717
2718 push @$devices, '-device', print_tabletdevice_full($conf) if $tablet;
2719
2720 # host pci devices
2721 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
2722 my $d = parse_hostpci($conf->{"hostpci$i"});
2723 next if !$d;
2724
2725 my $pcie = $d->{pcie};
2726 if($pcie){
2727 die "q35 machine model is not enabled" if !$q35;
2728 $pciaddr = print_pcie_addr("hostpci$i");
2729 }else{
2730 $pciaddr = print_pci_addr("hostpci$i", $bridges);
2731 }
2732
2733 my $rombar = $d->{rombar} && $d->{rombar} eq 'off' ? ",rombar=0" : "";
2734 my $driver = $d->{driver} && $d->{driver} eq 'vfio' ? "vfio-pci" : "pci-assign";
2735 my $xvga = $d->{'x-vga'} && $d->{'x-vga'} eq 'on' ? ",x-vga=on" : "";
2736 if ($xvga && $xvga ne '') {
2737 push @$cpuFlags, 'kvm=off';
2738 $vga = 'none';
2739 }
2740 $driver = "vfio-pci" if $xvga ne '';
2741 my $pcidevices = $d->{pciid};
2742 my $multifunction = 1 if @$pcidevices > 1;
2743
2744 my $j=0;
2745 foreach my $pcidevice (@$pcidevices) {
2746
2747 my $id = "hostpci$i";
2748 $id .= ".$j" if $multifunction;
2749 my $addr = $pciaddr;
2750 $addr .= ".$j" if $multifunction;
2751 my $devicestr = "$driver,host=$pcidevice->{id}.$pcidevice->{function},id=$id$addr";
2752
2753 if($j == 0){
2754 $devicestr .= "$rombar$xvga";
2755 $devicestr .= ",multifunction=on" if $multifunction;
2756 }
2757
2758 push @$devices, '-device', $devicestr;
2759 $j++;
2760 }
2761 }
2762
2763 # usb devices
2764 for (my $i = 0; $i < $MAX_USB_DEVICES; $i++) {
2765 my $d = parse_usb_device($conf->{"usb$i"});
2766 next if !$d;
2767 if ($d->{vendorid} && $d->{productid}) {
2768 push @$devices, '-device', "usb-host,vendorid=0x$d->{vendorid},productid=0x$d->{productid}";
2769 } elsif (defined($d->{hostbus}) && defined($d->{hostport})) {
2770 push @$devices, '-device', "usb-host,hostbus=$d->{hostbus},hostport=$d->{hostport}";
2771 } elsif ($d->{spice}) {
2772 # usb redir support for spice
2773 push @$devices, '-chardev', "spicevmc,id=usbredirchardev$i,name=usbredir";
2774 push @$devices, '-device', "usb-redir,chardev=usbredirchardev$i,id=usbredirdev$i,bus=ehci.0";
2775 }
2776 }
2777
2778 # serial devices
2779 for (my $i = 0; $i < $MAX_SERIAL_PORTS; $i++) {
2780 if (my $path = $conf->{"serial$i"}) {
2781 if ($path eq 'socket') {
2782 my $socket = "/var/run/qemu-server/${vmid}.serial$i";
2783 push @$devices, '-chardev', "socket,id=serial$i,path=$socket,server,nowait";
2784 push @$devices, '-device', "isa-serial,chardev=serial$i";
2785 } else {
2786 die "no such serial device\n" if ! -c $path;
2787 push @$devices, '-chardev', "tty,id=serial$i,path=$path";
2788 push @$devices, '-device', "isa-serial,chardev=serial$i";
2789 }
2790 }
2791 }
2792
2793 # parallel devices
2794 for (my $i = 0; $i < $MAX_PARALLEL_PORTS; $i++) {
2795 if (my $path = $conf->{"parallel$i"}) {
2796 die "no such parallel device\n" if ! -c $path;
2797 my $devtype = $path =~ m!^/dev/usb/lp! ? 'tty' : 'parport';
2798 push @$devices, '-chardev', "$devtype,id=parallel$i,path=$path";
2799 push @$devices, '-device', "isa-parallel,chardev=parallel$i";
2800 }
2801 }
2802
2803 my $vmname = $conf->{name} || "vm$vmid";
2804
2805 push @$cmd, '-name', $vmname;
2806
2807 my $sockets = 1;
2808 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
2809 $sockets = $conf->{sockets} if $conf->{sockets};
2810
2811 my $cores = $conf->{cores} || 1;
2812
2813 my $maxcpus = $sockets * $cores;
2814
2815 my $vcpus = $conf->{vcpus} ? $conf->{vcpus} : $maxcpus;
2816
2817 my $allowed_vcpus = $cpuinfo->{cpus};
2818
2819 die "MAX $maxcpus vcpus allowed per VM on this node\n"
2820 if ($allowed_vcpus < $maxcpus);
2821
2822 push @$cmd, '-smp', "$vcpus,sockets=$sockets,cores=$cores,maxcpus=$maxcpus";
2823
2824 push @$cmd, '-nodefaults';
2825
2826 my $bootorder = $conf->{boot} || $confdesc->{boot}->{default};
2827
2828 my $bootindex_hash = {};
2829 my $i = 1;
2830 foreach my $o (split(//, $bootorder)) {
2831 $bootindex_hash->{$o} = $i*100;
2832 $i++;
2833 }
2834
2835 push @$cmd, '-boot', "menu=on,strict=on,reboot-timeout=1000";
2836
2837 push @$cmd, '-no-acpi' if defined($conf->{acpi}) && $conf->{acpi} == 0;
2838
2839 push @$cmd, '-no-reboot' if defined($conf->{reboot}) && $conf->{reboot} == 0;
2840
2841 push @$cmd, '-vga', $vga if $vga && $vga !~ m/^serial\d+$/; # for kvm 77 and later
2842
2843 # time drift fix
2844 my $tdf = defined($conf->{tdf}) ? $conf->{tdf} : $defaults->{tdf};
2845
2846 my $nokvm = defined($conf->{kvm}) && $conf->{kvm} == 0 ? 1 : 0;
2847 my $useLocaltime = $conf->{localtime};
2848
2849 if (my $ost = $conf->{ostype}) {
2850 # other, wxp, w2k, w2k3, w2k8, wvista, win7, win8, l24, l26, solaris
2851
2852 if ($ost =~ m/^w/) { # windows
2853 $useLocaltime = 1 if !defined($conf->{localtime});
2854
2855 # use time drift fix when acpi is enabled
2856 if (!(defined($conf->{acpi}) && $conf->{acpi} == 0)) {
2857 $tdf = 1 if !defined($conf->{tdf});
2858 }
2859 }
2860
2861 if ($ost eq 'win7' || $ost eq 'win8' || $ost eq 'w2k8' ||
2862 $ost eq 'wvista') {
2863 push @$globalFlags, 'kvm-pit.lost_tick_policy=discard';
2864 push @$cmd, '-no-hpet';
2865 #push @$cpuFlags , 'hv_vapic" if !$nokvm; #fixme, my win2008R2 hang at boot with this
2866 push @$cpuFlags , 'hv_spinlocks=0xffff' if !$nokvm;
2867 }
2868
2869 if ($ost eq 'win7' || $ost eq 'win8') {
2870 push @$cpuFlags , 'hv_relaxed' if !$nokvm;
2871 }
2872 }
2873
2874 push @$rtcFlags, 'driftfix=slew' if $tdf;
2875
2876 if ($nokvm) {
2877 push @$machineFlags, 'accel=tcg';
2878 } else {
2879 die "No accelerator found!\n" if !$cpuinfo->{hvm};
2880 }
2881
2882 my $machine_type = $forcemachine || $conf->{machine};
2883 if ($machine_type) {
2884 push @$machineFlags, "type=${machine_type}";
2885 }
2886
2887 if ($conf->{startdate}) {
2888 push @$rtcFlags, "base=$conf->{startdate}";
2889 } elsif ($useLocaltime) {
2890 push @$rtcFlags, 'base=localtime';
2891 }
2892
2893 my $cpu = $nokvm ? "qemu64" : "kvm64";
2894 $cpu = $conf->{cpu} if $conf->{cpu};
2895
2896 push @$cpuFlags , '+lahf_lm' if $cpu eq 'kvm64';
2897
2898 push @$cpuFlags , '+x2apic' if !$nokvm && $conf->{ostype} ne 'solaris';
2899
2900 push @$cpuFlags , '-x2apic' if $conf->{ostype} eq 'solaris';
2901
2902 push @$cpuFlags, '+sep' if $cpu eq 'kvm64' || $cpu eq 'kvm32';
2903
2904 $cpu .= "," . join(',', @$cpuFlags) if scalar(@$cpuFlags);
2905
2906 # Note: enforce needs kernel 3.10, so we do not use it for now
2907 # push @$cmd, '-cpu', "$cpu,enforce";
2908 push @$cmd, '-cpu', $cpu;
2909
2910 my $memory = $conf->{memory} || $defaults->{memory};
2911 my $static_memory = 0;
2912 my $dimm_memory = 0;
2913
2914 if ($hotplug_features->{memory}) {
2915 die "Numa need to be enabled for memory hotplug" if !$conf->{numa};
2916 die "Total memory is bigger than $MAX_MEM MB" if $memory > $MAX_MEM;
2917 $static_memory = $STATICMEM;
2918 die "minimum memory must be $static_memory"."MB" if($memory < $static_memory);
2919 $dimm_memory = $memory - $static_memory;
2920 push @$cmd, '-m', "size=".$static_memory.",slots=255,maxmem=".$MAX_MEM."M";
2921
2922 } else {
2923
2924 $static_memory = $memory;
2925 push @$cmd, '-m', $static_memory;
2926 }
2927
2928 if ($conf->{numa}) {
2929
2930 my $numa_totalmemory = undef;
2931 for (my $i = 0; $i < $MAX_NUMA; $i++) {
2932 next if !$conf->{"numa$i"};
2933 my $numa = parse_numa($conf->{"numa$i"});
2934 next if !$numa;
2935 # memory
2936 die "missing numa node$i memory value\n" if !$numa->{memory};
2937 my $numa_memory = $numa->{memory};
2938 $numa_totalmemory += $numa_memory;
2939 my $numa_object = "memory-backend-ram,id=ram-node$i,size=$numa_memory"."M";
2940
2941 # cpus
2942 my $cpus_start = $numa->{cpus}->{start};
2943 die "missing numa node$i cpus\n" if !defined($cpus_start);
2944 my $cpus_end = $numa->{cpus}->{end} if defined($numa->{cpus}->{end});
2945 my $cpus = $cpus_start;
2946 if (defined($cpus_end)) {
2947 $cpus .= "-$cpus_end";
2948 die "numa node$i : cpu range $cpus is incorrect\n" if $cpus_end <= $cpus_start;
2949 }
2950
2951 # hostnodes
2952 my $hostnodes_start = $numa->{hostnodes}->{start};
2953 if (defined($hostnodes_start)) {
2954 my $hostnodes_end = $numa->{hostnodes}->{end} if defined($numa->{hostnodes}->{end});
2955 my $hostnodes = $hostnodes_start;
2956 if (defined($hostnodes_end)) {
2957 $hostnodes .= "-$hostnodes_end";
2958 die "host node $hostnodes range is incorrect\n" if $hostnodes_end <= $hostnodes_start;
2959 }
2960
2961 my $hostnodes_end_range = defined($hostnodes_end) ? $hostnodes_end : $hostnodes_start;
2962 for (my $i = $hostnodes_start; $i <= $hostnodes_end_range; $i++ ) {
2963 die "host numa node$i don't exist\n" if ! -d "/sys/devices/system/node/node$i/";
2964 }
2965
2966 # policy
2967 my $policy = $numa->{policy};
2968 die "you need to define a policy for hostnode $hostnodes\n" if !$policy;
2969 $numa_object .= ",host-nodes=$hostnodes,policy=$policy";
2970 }
2971
2972 push @$cmd, '-object', $numa_object;
2973 push @$cmd, '-numa', "node,nodeid=$i,cpus=$cpus,memdev=ram-node$i";
2974 }
2975
2976 die "total memory for NUMA nodes must be equal to vm static memory\n"
2977 if $numa_totalmemory && $numa_totalmemory != $static_memory;
2978
2979 #if no custom tology, we split memory and cores across numa nodes
2980 if(!$numa_totalmemory) {
2981
2982 my $numa_memory = ($static_memory / $sockets) . "M";
2983
2984 for (my $i = 0; $i < $sockets; $i++) {
2985
2986 my $cpustart = ($cores * $i);
2987 my $cpuend = ($cpustart + $cores - 1) if $cores && $cores > 1;
2988 my $cpus = $cpustart;
2989 $cpus .= "-$cpuend" if $cpuend;
2990
2991 push @$cmd, '-object', "memory-backend-ram,size=$numa_memory,id=ram-node$i";
2992 push @$cmd, '-numa', "node,nodeid=$i,cpus=$cpus,memdev=ram-node$i";
2993 }
2994 }
2995 }
2996
2997 if ($hotplug_features->{memory}) {
2998 foreach_dimm($conf, $vmid, $memory, $sockets, sub {
2999 my ($conf, $vmid, $name, $dimm_size, $numanode, $current_size, $memory) = @_;
3000 push @$cmd, "-object" , "memory-backend-ram,id=mem-$name,size=$dimm_size"."M";
3001 push @$cmd, "-device", "pc-dimm,id=$name,memdev=mem-$name,node=$numanode";
3002
3003 #if dimm_memory is not aligned to dimm map
3004 if($current_size > $memory) {
3005 $conf->{memory} = $current_size;
3006 update_config_nolock($vmid, $conf, 1);
3007 }
3008 });
3009 }
3010
3011 push @$cmd, '-S' if $conf->{freeze};
3012
3013 # set keyboard layout
3014 my $kb = $conf->{keyboard} || $defaults->{keyboard};
3015 push @$cmd, '-k', $kb if $kb;
3016
3017 # enable sound
3018 #my $soundhw = $conf->{soundhw} || $defaults->{soundhw};
3019 #push @$cmd, '-soundhw', 'es1370';
3020 #push @$cmd, '-soundhw', $soundhw if $soundhw;
3021
3022 if($conf->{agent}) {
3023 my $qgasocket = qmp_socket($vmid, 1);
3024 my $pciaddr = print_pci_addr("qga0", $bridges);
3025 push @$devices, '-chardev', "socket,path=$qgasocket,server,nowait,id=qga0";
3026 push @$devices, '-device', "virtio-serial,id=qga0$pciaddr";
3027 push @$devices, '-device', 'virtserialport,chardev=qga0,name=org.qemu.guest_agent.0';
3028 }
3029
3030 my $spice_port;
3031
3032 if ($qxlnum) {
3033 if ($qxlnum > 1) {
3034 if ($conf->{ostype} && $conf->{ostype} =~ m/^w/){
3035 for(my $i = 1; $i < $qxlnum; $i++){
3036 my $pciaddr = print_pci_addr("vga$i", $bridges);
3037 push @$cmd, '-device', "qxl,id=vga$i,ram_size=67108864,vram_size=33554432$pciaddr";
3038 }
3039 } else {
3040 # assume other OS works like Linux
3041 push @$cmd, '-global', 'qxl-vga.ram_size=134217728';
3042 push @$cmd, '-global', 'qxl-vga.vram_size=67108864';
3043 }
3044 }
3045
3046 my $pciaddr = print_pci_addr("spice", $bridges);
3047
3048 $spice_port = PVE::Tools::next_spice_port();
3049
3050 push @$devices, '-spice', "tls-port=${spice_port},addr=127.0.0.1,tls-ciphers=DES-CBC3-SHA,seamless-migration=on";
3051
3052 push @$devices, '-device', "virtio-serial,id=spice$pciaddr";
3053 push @$devices, '-chardev', "spicevmc,id=vdagent,name=vdagent";
3054 push @$devices, '-device', "virtserialport,chardev=vdagent,name=com.redhat.spice.0";
3055 }
3056
3057 # enable balloon by default, unless explicitly disabled
3058 if (!defined($conf->{balloon}) || $conf->{balloon}) {
3059 $pciaddr = print_pci_addr("balloon0", $bridges);
3060 push @$devices, '-device', "virtio-balloon-pci,id=balloon0$pciaddr";
3061 }
3062
3063 if ($conf->{watchdog}) {
3064 my $wdopts = parse_watchdog($conf->{watchdog});
3065 $pciaddr = print_pci_addr("watchdog", $bridges);
3066 my $watchdog = $wdopts->{model} || 'i6300esb';
3067 push @$devices, '-device', "$watchdog$pciaddr";
3068 push @$devices, '-watchdog-action', $wdopts->{action} if $wdopts->{action};
3069 }
3070
3071 my $vollist = [];
3072 my $scsicontroller = {};
3073 my $ahcicontroller = {};
3074 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : $defaults->{scsihw};
3075
3076 # Add iscsi initiator name if available
3077 if (my $initiator = get_initiator_name()) {
3078 push @$devices, '-iscsi', "initiator-name=$initiator";
3079 }
3080
3081 foreach_drive($conf, sub {
3082 my ($ds, $drive) = @_;
3083
3084 if (PVE::Storage::parse_volume_id($drive->{file}, 1)) {
3085 push @$vollist, $drive->{file};
3086 }
3087
3088 $use_virtio = 1 if $ds =~ m/^virtio/;
3089
3090 if (drive_is_cdrom ($drive)) {
3091 if ($bootindex_hash->{d}) {
3092 $drive->{bootindex} = $bootindex_hash->{d};
3093 $bootindex_hash->{d} += 1;
3094 }
3095 } else {
3096 if ($bootindex_hash->{c}) {
3097 $drive->{bootindex} = $bootindex_hash->{c} if $conf->{bootdisk} && ($conf->{bootdisk} eq $ds);
3098 $bootindex_hash->{c} += 1;
3099 }
3100 }
3101
3102 if ($drive->{interface} eq 'scsi') {
3103
3104 my $maxdev = ($scsihw !~ m/^lsi/) ? 256 : 7;
3105 my $controller = int($drive->{index} / $maxdev);
3106 $pciaddr = print_pci_addr("scsihw$controller", $bridges);
3107 push @$devices, '-device', "$scsihw,id=scsihw$controller$pciaddr" if !$scsicontroller->{$controller};
3108 $scsicontroller->{$controller}=1;
3109 }
3110
3111 if ($drive->{interface} eq 'sata') {
3112 my $controller = int($drive->{index} / $MAX_SATA_DISKS);
3113 $pciaddr = print_pci_addr("ahci$controller", $bridges);
3114 push @$devices, '-device', "ahci,id=ahci$controller,multifunction=on$pciaddr" if !$ahcicontroller->{$controller};
3115 $ahcicontroller->{$controller}=1;
3116 }
3117
3118 my $drive_cmd = print_drive_full($storecfg, $vmid, $drive);
3119 push @$devices, '-drive',$drive_cmd;
3120 push @$devices, '-device', print_drivedevice_full($storecfg, $conf, $vmid, $drive, $bridges);
3121 });
3122
3123 for (my $i = 0; $i < $MAX_NETS; $i++) {
3124 next if !$conf->{"net$i"};
3125 my $d = parse_net($conf->{"net$i"});
3126 next if !$d;
3127
3128 $use_virtio = 1 if $d->{model} eq 'virtio';
3129
3130 if ($bootindex_hash->{n}) {
3131 $d->{bootindex} = $bootindex_hash->{n};
3132 $bootindex_hash->{n} += 1;
3133 }
3134
3135 my $netdevfull = print_netdev_full($vmid,$conf,$d,"net$i");
3136 push @$devices, '-netdev', $netdevfull;
3137
3138 my $netdevicefull = print_netdevice_full($vmid,$conf,$d,"net$i",$bridges);
3139 push @$devices, '-device', $netdevicefull;
3140 }
3141
3142 if (!$q35) {
3143 # add pci bridges
3144 while (my ($k, $v) = each %$bridges) {
3145 $pciaddr = print_pci_addr("pci.$k");
3146 unshift @$devices, '-device', "pci-bridge,id=pci.$k,chassis_nr=$k$pciaddr" if $k > 0;
3147 }
3148 }
3149
3150 # hack: virtio with fairsched is unreliable, so we do not use fairsched
3151 # when the VM uses virtio devices.
3152 if (!$use_virtio && $have_ovz) {
3153
3154 my $cpuunits = defined($conf->{cpuunits}) ?
3155 $conf->{cpuunits} : $defaults->{cpuunits};
3156
3157 push @$cmd, '-cpuunits', $cpuunits if $cpuunits;
3158
3159 # fixme: cpulimit is currently ignored
3160 #push @$cmd, '-cpulimit', $conf->{cpulimit} if $conf->{cpulimit};
3161 }
3162
3163 # add custom args
3164 if ($conf->{args}) {
3165 my $aa = PVE::Tools::split_args($conf->{args});
3166 push @$cmd, @$aa;
3167 }
3168
3169 push @$cmd, @$devices;
3170 push @$cmd, '-rtc', join(',', @$rtcFlags)
3171 if scalar(@$rtcFlags);
3172 push @$cmd, '-machine', join(',', @$machineFlags)
3173 if scalar(@$machineFlags);
3174 push @$cmd, '-global', join(',', @$globalFlags)
3175 if scalar(@$globalFlags);
3176
3177 return wantarray ? ($cmd, $vollist, $spice_port) : $cmd;
3178 }
3179
3180 sub vnc_socket {
3181 my ($vmid) = @_;
3182 return "${var_run_tmpdir}/$vmid.vnc";
3183 }
3184
3185 sub spice_port {
3186 my ($vmid) = @_;
3187
3188 my $res = vm_mon_cmd($vmid, 'query-spice');
3189
3190 return $res->{'tls-port'} || $res->{'port'} || die "no spice port\n";
3191 }
3192
3193 sub qmp_socket {
3194 my ($vmid, $qga) = @_;
3195 my $sockettype = $qga ? 'qga' : 'qmp';
3196 return "${var_run_tmpdir}/$vmid.$sockettype";
3197 }
3198
3199 sub pidfile_name {
3200 my ($vmid) = @_;
3201 return "${var_run_tmpdir}/$vmid.pid";
3202 }
3203
3204 sub vm_devices_list {
3205 my ($vmid) = @_;
3206
3207 my $res = vm_mon_cmd($vmid, 'query-pci');
3208 my $devices = {};
3209 foreach my $pcibus (@$res) {
3210 foreach my $device (@{$pcibus->{devices}}) {
3211 next if !$device->{'qdev_id'};
3212 $devices->{$device->{'qdev_id'}} = 1;
3213 }
3214 }
3215
3216 my $resblock = vm_mon_cmd($vmid, 'query-block');
3217 foreach my $block (@$resblock) {
3218 if($block->{device} =~ m/^drive-(\S+)/){
3219 $devices->{$1} = 1;
3220 }
3221 }
3222
3223 my $resmice = vm_mon_cmd($vmid, 'query-mice');
3224 foreach my $mice (@$resmice) {
3225 if ($mice->{name} eq 'QEMU HID Tablet') {
3226 $devices->{tablet} = 1;
3227 last;
3228 }
3229 }
3230
3231 return $devices;
3232 }
3233
3234 sub vm_deviceplug {
3235 my ($storecfg, $conf, $vmid, $deviceid, $device) = @_;
3236
3237 my $q35 = machine_type_is_q35($conf);
3238
3239 my $devices_list = vm_devices_list($vmid);
3240 return 1 if defined($devices_list->{$deviceid});
3241
3242 qemu_add_pci_bridge($storecfg, $conf, $vmid, $deviceid); # add PCI bridge if we need it for the device
3243
3244 if ($deviceid eq 'tablet') {
3245
3246 qemu_deviceadd($vmid, print_tabletdevice_full($conf));
3247
3248 } elsif ($deviceid =~ m/^(virtio)(\d+)$/) {
3249
3250 qemu_driveadd($storecfg, $vmid, $device);
3251 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
3252
3253 qemu_deviceadd($vmid, $devicefull);
3254 eval { qemu_deviceaddverify($vmid, $deviceid); };
3255 if (my $err = $@) {
3256 eval { qemu_drivedel($vmid, $deviceid); };
3257 warn $@ if $@;
3258 die $err;
3259 }
3260
3261 } elsif ($deviceid =~ m/^(scsihw)(\d+)$/) {
3262
3263 my $scsihw = defined($conf->{scsihw}) ? $conf->{scsihw} : "lsi";
3264 my $pciaddr = print_pci_addr($deviceid);
3265 my $devicefull = "$scsihw,id=$deviceid$pciaddr";
3266
3267 qemu_deviceadd($vmid, $devicefull);
3268 qemu_deviceaddverify($vmid, $deviceid);
3269
3270 } elsif ($deviceid =~ m/^(scsi)(\d+)$/) {
3271
3272 qemu_findorcreatescsihw($storecfg,$conf, $vmid, $device);
3273 qemu_driveadd($storecfg, $vmid, $device);
3274
3275 my $devicefull = print_drivedevice_full($storecfg, $conf, $vmid, $device);
3276 eval { qemu_deviceadd($vmid, $devicefull); };
3277 if (my $err = $@) {
3278 eval { qemu_drivedel($vmid, $deviceid); };
3279 warn $@ if $@;
3280 die $err;
3281 }
3282
3283 } elsif ($deviceid =~ m/^(net)(\d+)$/) {
3284
3285 return undef if !qemu_netdevadd($vmid, $conf, $device, $deviceid);
3286 my $netdevicefull = print_netdevice_full($vmid, $conf, $device, $deviceid);
3287 qemu_deviceadd($vmid, $netdevicefull);
3288 eval { qemu_deviceaddverify($vmid, $deviceid); };
3289 if (my $err = $@) {
3290 eval { qemu_netdevdel($vmid, $deviceid); };
3291 warn $@ if $@;
3292 die $err;
3293 }
3294
3295 } elsif (!$q35 && $deviceid =~ m/^(pci\.)(\d+)$/) {
3296
3297 my $bridgeid = $2;
3298 my $pciaddr = print_pci_addr($deviceid);
3299 my $devicefull = "pci-bridge,id=pci.$bridgeid,chassis_nr=$bridgeid$pciaddr";
3300
3301 qemu_deviceadd($vmid, $devicefull);
3302 qemu_deviceaddverify($vmid, $deviceid);
3303
3304 } else {
3305 die "can't hotplug device '$deviceid'\n";
3306 }
3307
3308 return 1;
3309 }
3310
3311 # fixme: this should raise exceptions on error!
3312 sub vm_deviceunplug {
3313 my ($vmid, $conf, $deviceid) = @_;
3314
3315 my $devices_list = vm_devices_list($vmid);
3316 return 1 if !defined($devices_list->{$deviceid});
3317
3318 die "can't unplug bootdisk" if $conf->{bootdisk} && $conf->{bootdisk} eq $deviceid;
3319
3320 if ($deviceid eq 'tablet') {
3321
3322 qemu_devicedel($vmid, $deviceid);
3323
3324 } elsif ($deviceid =~ m/^(virtio)(\d+)$/) {
3325
3326 qemu_devicedel($vmid, $deviceid);
3327 qemu_devicedelverify($vmid, $deviceid);
3328 qemu_drivedel($vmid, $deviceid);
3329
3330 } elsif ($deviceid =~ m/^(lsi)(\d+)$/) {
3331
3332 qemu_devicedel($vmid, $deviceid);
3333
3334 } elsif ($deviceid =~ m/^(scsi)(\d+)$/) {
3335
3336 qemu_devicedel($vmid, $deviceid);
3337 qemu_drivedel($vmid, $deviceid);
3338
3339 } elsif ($deviceid =~ m/^(net)(\d+)$/) {
3340
3341 qemu_devicedel($vmid, $deviceid);
3342 qemu_devicedelverify($vmid, $deviceid);
3343 qemu_netdevdel($vmid, $deviceid);
3344
3345 } else {
3346 die "can't unplug device '$deviceid'\n";
3347 }
3348
3349 return 1;
3350 }
3351
3352 sub qemu_deviceadd {
3353 my ($vmid, $devicefull) = @_;
3354
3355 $devicefull = "driver=".$devicefull;
3356 my %options = split(/[=,]/, $devicefull);
3357
3358 vm_mon_cmd($vmid, "device_add" , %options);
3359 }
3360
3361 sub qemu_devicedel {
3362 my ($vmid, $deviceid) = @_;
3363
3364 my $ret = vm_mon_cmd($vmid, "device_del", id => $deviceid);
3365 }
3366
3367 sub qemu_objectadd {
3368 my($vmid, $objectid, $qomtype) = @_;
3369
3370 vm_mon_cmd($vmid, "object-add", id => $objectid, "qom-type" => $qomtype);
3371
3372 return 1;
3373 }
3374
3375 sub qemu_objectdel {
3376 my($vmid, $objectid) = @_;
3377
3378 vm_mon_cmd($vmid, "object-del", id => $objectid);
3379
3380 return 1;
3381 }
3382
3383 sub qemu_driveadd {
3384 my ($storecfg, $vmid, $device) = @_;
3385
3386 my $drive = print_drive_full($storecfg, $vmid, $device);
3387 my $ret = vm_human_monitor_command($vmid, "drive_add auto \"$drive\"");
3388
3389 # If the command succeeds qemu prints: "OK"
3390 return 1 if $ret =~ m/OK/s;
3391
3392 die "adding drive failed: $ret\n";
3393 }
3394
3395 sub qemu_drivedel {
3396 my($vmid, $deviceid) = @_;
3397
3398 my $ret = vm_human_monitor_command($vmid, "drive_del drive-$deviceid");
3399 $ret =~ s/^\s+//;
3400
3401 return 1 if $ret eq "";
3402
3403 # NB: device not found errors mean the drive was auto-deleted and we ignore the error
3404 return 1 if $ret =~ m/Device \'.*?\' not found/s;
3405
3406 die "deleting drive $deviceid failed : $ret\n";
3407 }
3408
3409 sub qemu_deviceaddverify {
3410 my ($vmid, $deviceid) = @_;
3411
3412 for (my $i = 0; $i <= 5; $i++) {
3413 my $devices_list = vm_devices_list($vmid);
3414 return 1 if defined($devices_list->{$deviceid});
3415 sleep 1;
3416 }
3417
3418 die "error on hotplug device '$deviceid'\n";
3419 }
3420
3421
3422 sub qemu_devicedelverify {
3423 my ($vmid, $deviceid) = @_;
3424
3425 # need to verify that the device is correctly removed as device_del
3426 # is async and empty return is not reliable
3427
3428 for (my $i = 0; $i <= 5; $i++) {
3429 my $devices_list = vm_devices_list($vmid);
3430 return 1 if !defined($devices_list->{$deviceid});
3431 sleep 1;
3432 }
3433
3434 die "error on hot-unplugging device '$deviceid'\n";
3435 }
3436
3437 sub qemu_findorcreatescsihw {
3438 my ($storecfg, $conf, $vmid, $device) = @_;
3439
3440 my $maxdev = ($conf->{scsihw} && ($conf->{scsihw} !~ m/^lsi/)) ? 256 : 7;
3441 my $controller = int($device->{index} / $maxdev);
3442 my $scsihwid="scsihw$controller";
3443 my $devices_list = vm_devices_list($vmid);
3444
3445 if(!defined($devices_list->{$scsihwid})) {
3446 vm_deviceplug($storecfg, $conf, $vmid, $scsihwid);
3447 }
3448
3449 return 1;
3450 }
3451
3452 sub qemu_add_pci_bridge {
3453 my ($storecfg, $conf, $vmid, $device) = @_;
3454
3455 my $bridges = {};
3456
3457 my $bridgeid;
3458
3459 print_pci_addr($device, $bridges);
3460
3461 while (my ($k, $v) = each %$bridges) {
3462 $bridgeid = $k;
3463 }
3464 return 1 if !defined($bridgeid) || $bridgeid < 1;
3465
3466 my $bridge = "pci.$bridgeid";
3467 my $devices_list = vm_devices_list($vmid);
3468
3469 if (!defined($devices_list->{$bridge})) {
3470 vm_deviceplug($storecfg, $conf, $vmid, $bridge);
3471 }
3472
3473 return 1;
3474 }
3475
3476 sub qemu_set_link_status {
3477 my ($vmid, $device, $up) = @_;
3478
3479 vm_mon_cmd($vmid, "set_link", name => $device,
3480 up => $up ? JSON::true : JSON::false);
3481 }
3482
3483 sub qemu_netdevadd {
3484 my ($vmid, $conf, $device, $deviceid) = @_;
3485
3486 my $netdev = print_netdev_full($vmid, $conf, $device, $deviceid);
3487 my %options = split(/[=,]/, $netdev);
3488
3489 vm_mon_cmd($vmid, "netdev_add", %options);
3490 return 1;
3491 }
3492
3493 sub qemu_netdevdel {
3494 my ($vmid, $deviceid) = @_;
3495
3496 vm_mon_cmd($vmid, "netdev_del", id => $deviceid);
3497 }
3498
3499 sub qemu_cpu_hotplug {
3500 my ($vmid, $conf, $vcpus) = @_;
3501
3502 my $sockets = 1;
3503 $sockets = $conf->{smp} if $conf->{smp}; # old style - no longer iused
3504 $sockets = $conf->{sockets} if $conf->{sockets};
3505 my $cores = $conf->{cores} || 1;
3506 my $maxcpus = $sockets * $cores;
3507
3508 $vcpus = $maxcpus if !$vcpus;
3509
3510 die "you can't add more vcpus than maxcpus\n"
3511 if $vcpus > $maxcpus;
3512
3513 my $currentvcpus = $conf->{vcpus} || $maxcpus;
3514 die "online cpu unplug is not yet possible\n"
3515 if $vcpus < $currentvcpus;
3516
3517 my $currentrunningvcpus = vm_mon_cmd($vmid, "query-cpus");
3518 die "vcpus in running vm is different than configuration\n"
3519 if scalar(@{$currentrunningvcpus}) != $currentvcpus;
3520
3521 for (my $i = $currentvcpus; $i < $vcpus; $i++) {
3522 vm_mon_cmd($vmid, "cpu-add", id => int($i));
3523 }
3524 }
3525
3526 sub qemu_memory_hotplug {
3527 my ($vmid, $conf, $defaults, $opt, $value) = @_;
3528
3529 return $value if !check_running($vmid);
3530
3531 my $memory = $conf->{memory} || $defaults->{memory};
3532 $value = $defaults->{memory} if !$value;
3533 return $value if $value == $memory;
3534
3535 my $static_memory = $STATICMEM;
3536 my $dimm_memory = $memory - $static_memory;
3537
3538 die "memory can't be lower than $static_memory MB" if $value < $static_memory;
3539 die "memory unplug is not yet available" if $value < $memory;
3540 die "you cannot add more memory than $MAX_MEM MB!\n" if $memory > $MAX_MEM;
3541
3542
3543 my $sockets = 1;
3544 $sockets = $conf->{sockets} if $conf->{sockets};
3545
3546 foreach_dimm($conf, $vmid, $value, $sockets, sub {
3547 my ($conf, $vmid, $name, $dimm_size, $numanode, $current_size, $memory) = @_;
3548
3549 return if $current_size <= $conf->{memory};
3550
3551 eval { vm_mon_cmd($vmid, "object-add", 'qom-type' => "memory-backend-ram", id => "mem-$name", props => { size => int($dimm_size*1024*1024) } ) };
3552 if (my $err = $@) {
3553 eval { qemu_objectdel($vmid, "mem-$name"); };
3554 die $err;
3555 }
3556
3557 eval { vm_mon_cmd($vmid, "device_add", driver => "pc-dimm", id => "$name", memdev => "mem-$name", node => $numanode) };
3558 if (my $err = $@) {
3559 eval { qemu_objectdel($vmid, "mem-$name"); };
3560 die $err;
3561 }
3562 #update conf after each succesful module hotplug
3563 $conf->{memory} = $current_size;
3564 update_config_nolock($vmid, $conf, 1);
3565 });
3566 }
3567
3568 sub qemu_block_set_io_throttle {
3569 my ($vmid, $deviceid, $bps, $bps_rd, $bps_wr, $iops, $iops_rd, $iops_wr) = @_;
3570
3571 return if !check_running($vmid) ;
3572
3573 vm_mon_cmd($vmid, "block_set_io_throttle", device => $deviceid, bps => int($bps), bps_rd => int($bps_rd), bps_wr => int($bps_wr), iops => int($iops), iops_rd => int($iops_rd), iops_wr => int($iops_wr));
3574
3575 }
3576
3577 # old code, only used to shutdown old VM after update
3578 sub __read_avail {
3579 my ($fh, $timeout) = @_;
3580
3581 my $sel = new IO::Select;
3582 $sel->add($fh);
3583
3584 my $res = '';
3585 my $buf;
3586
3587 my @ready;
3588 while (scalar (@ready = $sel->can_read($timeout))) {
3589 my $count;
3590 if ($count = $fh->sysread($buf, 8192)) {
3591 if ($buf =~ /^(.*)\(qemu\) $/s) {
3592 $res .= $1;
3593 last;
3594 } else {
3595 $res .= $buf;
3596 }
3597 } else {
3598 if (!defined($count)) {
3599 die "$!\n";
3600 }
3601 last;
3602 }
3603 }
3604
3605 die "monitor read timeout\n" if !scalar(@ready);
3606
3607 return $res;
3608 }
3609
3610 # old code, only used to shutdown old VM after update
3611 sub vm_monitor_command {
3612 my ($vmid, $cmdstr, $nocheck) = @_;
3613
3614 my $res;
3615
3616 eval {
3617 die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
3618
3619 my $sname = "${var_run_tmpdir}/$vmid.mon";
3620
3621 my $sock = IO::Socket::UNIX->new( Peer => $sname ) ||
3622 die "unable to connect to VM $vmid socket - $!\n";
3623
3624 my $timeout = 3;
3625
3626 # hack: migrate sometime blocks the monitor (when migrate_downtime
3627 # is set)
3628 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
3629 $timeout = 60*60; # 1 hour
3630 }
3631
3632 # read banner;
3633 my $data = __read_avail($sock, $timeout);
3634
3635 if ($data !~ m/^QEMU\s+(\S+)\s+monitor\s/) {
3636 die "got unexpected qemu monitor banner\n";
3637 }
3638
3639 my $sel = new IO::Select;
3640 $sel->add($sock);
3641
3642 if (!scalar(my @ready = $sel->can_write($timeout))) {
3643 die "monitor write error - timeout";
3644 }
3645
3646 my $fullcmd = "$cmdstr\r";
3647
3648 # syslog('info', "VM $vmid monitor command: $cmdstr");
3649
3650 my $b;
3651 if (!($b = $sock->syswrite($fullcmd)) || ($b != length($fullcmd))) {
3652 die "monitor write error - $!";
3653 }
3654
3655 return if ($cmdstr eq 'q') || ($cmdstr eq 'quit');
3656
3657 $timeout = 20;
3658
3659 if ($cmdstr =~ m/^(info\s+migrate|migrate\s)/) {
3660 $timeout = 60*60; # 1 hour
3661 } elsif ($cmdstr =~ m/^(eject|change)/) {
3662 $timeout = 60; # note: cdrom mount command is slow
3663 }
3664 if ($res = __read_avail($sock, $timeout)) {
3665
3666 my @lines = split("\r?\n", $res);
3667
3668 shift @lines if $lines[0] !~ m/^unknown command/; # skip echo
3669
3670 $res = join("\n", @lines);
3671 $res .= "\n";
3672 }
3673 };
3674
3675 my $err = $@;
3676
3677 if ($err) {
3678 syslog("err", "VM $vmid monitor command failed - $err");
3679 die $err;
3680 }
3681
3682 return $res;
3683 }
3684
3685 sub qemu_block_resize {
3686 my ($vmid, $deviceid, $storecfg, $volid, $size) = @_;
3687
3688 my $running = check_running($vmid);
3689
3690 return if !PVE::Storage::volume_resize($storecfg, $volid, $size, $running);
3691
3692 return if !$running;
3693
3694 vm_mon_cmd($vmid, "block_resize", device => $deviceid, size => int($size));
3695
3696 }
3697
3698 sub qemu_volume_snapshot {
3699 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
3700
3701 my $running = check_running($vmid);
3702
3703 return if !PVE::Storage::volume_snapshot($storecfg, $volid, $snap, $running);
3704
3705 return if !$running;
3706
3707 vm_mon_cmd($vmid, "snapshot-drive", device => $deviceid, name => $snap);
3708
3709 }
3710
3711 sub qemu_volume_snapshot_delete {
3712 my ($vmid, $deviceid, $storecfg, $volid, $snap) = @_;
3713
3714 my $running = check_running($vmid);
3715
3716 return if !PVE::Storage::volume_snapshot_delete($storecfg, $volid, $snap, $running);
3717
3718 return if !$running;
3719
3720 vm_mon_cmd($vmid, "delete-drive-snapshot", device => $deviceid, name => $snap);
3721 }
3722
3723 sub set_migration_caps {
3724 my ($vmid) = @_;
3725
3726 my $cap_ref = [];
3727
3728 my $enabled_cap = {
3729 "auto-converge" => 1,
3730 "xbzrle" => 0,
3731 "x-rdma-pin-all" => 0,
3732 "zero-blocks" => 0,
3733 };
3734
3735 my $supported_capabilities = vm_mon_cmd_nocheck($vmid, "query-migrate-capabilities");
3736
3737 for my $supported_capability (@$supported_capabilities) {
3738 push @$cap_ref, {
3739 capability => $supported_capability->{capability},
3740 state => $enabled_cap->{$supported_capability->{capability}} ? JSON::true : JSON::false,
3741 };
3742 }
3743
3744 vm_mon_cmd_nocheck($vmid, "migrate-set-capabilities", capabilities => $cap_ref);
3745 }
3746
3747 my $fast_plug_option = {
3748 'name' => 1,
3749 'onboot' => 1,
3750 'shares' => 1,
3751 'startup' => 1,
3752 };
3753
3754 # hotplug changes in [PENDING]
3755 # $selection hash can be used to only apply specified options, for
3756 # example: { cores => 1 } (only apply changed 'cores')
3757 # $errors ref is used to return error messages
3758 sub vmconfig_hotplug_pending {
3759 my ($vmid, $conf, $storecfg, $selection, $errors) = @_;
3760
3761 my $defaults = load_defaults();
3762
3763 # commit values which do not have any impact on running VM first
3764 # Note: those option cannot raise errors, we we do not care about
3765 # $selection and always apply them.
3766
3767 my $add_error = sub {
3768 my ($opt, $msg) = @_;
3769 $errors->{$opt} = "hotplug problem - $msg";
3770 };
3771
3772 my $changes = 0;
3773 foreach my $opt (keys %{$conf->{pending}}) { # add/change
3774 if ($fast_plug_option->{$opt}) {
3775 $conf->{$opt} = $conf->{pending}->{$opt};
3776 delete $conf->{pending}->{$opt};
3777 $changes = 1;
3778 }
3779 }
3780
3781 if ($changes) {
3782 update_config_nolock($vmid, $conf, 1);
3783 $conf = load_config($vmid); # update/reload
3784 }
3785
3786 my $hotplug_features = parse_hotplug_features(defined($conf->{hotplug}) ? $conf->{hotplug} : '1');
3787
3788 my @delete = PVE::Tools::split_list($conf->{pending}->{delete});
3789 foreach my $opt (@delete) {
3790 next if $selection && !$selection->{$opt};
3791 eval {
3792 if ($opt eq 'hotplug') {
3793 die "skip\n" if ($conf->{hotplug} =~ /memory/);
3794 } elsif ($opt eq 'tablet') {
3795 die "skip\n" if !$hotplug_features->{usb};
3796 if ($defaults->{tablet}) {
3797 vm_deviceplug($storecfg, $conf, $vmid, $opt);
3798 } else {
3799 vm_deviceunplug($vmid, $conf, $opt);
3800 }
3801 } elsif ($opt eq 'vcpus') {
3802 die "skip\n" if !$hotplug_features->{cpu};
3803 qemu_cpu_hotplug($vmid, $conf, undef);
3804 } elsif ($opt eq 'balloon') {
3805 # enable balloon device is not hotpluggable
3806 die "skip\n" if !defined($conf->{balloon}) || $conf->{balloon};
3807 } elsif ($fast_plug_option->{$opt}) {
3808 # do nothing
3809 } elsif ($opt =~ m/^net(\d+)$/) {
3810 die "skip\n" if !$hotplug_features->{network};
3811 vm_deviceunplug($vmid, $conf, $opt);
3812 } elsif (valid_drivename($opt)) {
3813 die "skip\n" if !$hotplug_features->{disk} || $opt =~ m/(ide|sata)(\d+)/;
3814 vm_deviceunplug($vmid, $conf, $opt);
3815 vmconfig_register_unused_drive($storecfg, $vmid, $conf, parse_drive($opt, $conf->{$opt}));
3816 } elsif ($opt =~ m/^memory$/) {
3817 die "skip\n" if !$hotplug_features->{memory};
3818 qemu_memory_hotplug($vmid, $conf, $defaults, $opt);
3819 } else {
3820 die "skip\n";
3821 }
3822 };
3823 if (my $err = $@) {
3824 &$add_error($opt, $err) if $err ne "skip\n";
3825 } else {
3826 # save new config if hotplug was successful
3827 delete $conf->{$opt};
3828 vmconfig_undelete_pending_option($conf, $opt);
3829 update_config_nolock($vmid, $conf, 1);
3830 $conf = load_config($vmid); # update/reload
3831 }
3832 }
3833
3834 foreach my $opt (keys %{$conf->{pending}}) {
3835 next if $selection && !$selection->{$opt};
3836 my $value = $conf->{pending}->{$opt};
3837 eval {
3838 if ($opt eq 'hotplug') {
3839 die "skip\n" if ($value =~ /memory/) || ($value !~ /memory/ && $conf->{hotplug} =~ /memory/);
3840 } elsif ($opt eq 'tablet') {
3841 die "skip\n" if !$hotplug_features->{usb};
3842 if ($value == 1) {
3843 vm_deviceplug($storecfg, $conf, $vmid, $opt);
3844 } elsif ($value == 0) {
3845 vm_deviceunplug($vmid, $conf, $opt);
3846 }
3847 } elsif ($opt eq 'vcpus') {
3848 die "skip\n" if !$hotplug_features->{cpu};
3849 qemu_cpu_hotplug($vmid, $conf, $value);
3850 } elsif ($opt eq 'balloon') {
3851 # enable/disable balloning device is not hotpluggable
3852 my $old_balloon_enabled = !!(!defined($conf->{balloon}) || $conf->{balloon});
3853 my $new_balloon_enabled = !!(!defined($conf->{pending}->{balloon}) || $conf->{pending}->{balloon});
3854 die "skip\n" if $old_balloon_enabled != $new_balloon_enabled;
3855
3856 # allow manual ballooning if shares is set to zero
3857 if (!(defined($conf->{shares}) && ($conf->{shares} == 0))) {
3858 my $balloon = $conf->{pending}->{balloon} || $conf->{memory} || $defaults->{memory};
3859 vm_mon_cmd($vmid, "balloon", value => $balloon*1024*1024);
3860 }
3861 } elsif ($opt =~ m/^net(\d+)$/) {
3862 # some changes can be done without hotplug
3863 vmconfig_update_net($storecfg, $conf, $hotplug_features->{network},
3864 $vmid, $opt, $value);
3865 } elsif (valid_drivename($opt)) {
3866 # some changes can be done without hotplug
3867 vmconfig_update_disk($storecfg, $conf, $hotplug_features->{disk},
3868 $vmid, $opt, $value, 1);
3869 } elsif ($opt =~ m/^memory$/) { #dimms
3870 die "skip\n" if !$hotplug_features->{memory};
3871 $value = qemu_memory_hotplug($vmid, $conf, $defaults, $opt, $value);
3872 } else {
3873 die "skip\n"; # skip non-hot-pluggable options
3874 }
3875 };
3876 if (my $err = $@) {
3877 &$add_error($opt, $err) if $err ne "skip\n";
3878 } else {
3879 # save new config if hotplug was successful
3880 $conf->{$opt} = $value;
3881 delete $conf->{pending}->{$opt};
3882 update_config_nolock($vmid, $conf, 1);
3883 $conf = load_config($vmid); # update/reload
3884 }
3885 }
3886 }
3887
3888 sub vmconfig_apply_pending {
3889 my ($vmid, $conf, $storecfg) = @_;
3890
3891 # cold plug
3892
3893 my @delete = PVE::Tools::split_list($conf->{pending}->{delete});
3894 foreach my $opt (@delete) { # delete
3895 die "internal error" if $opt =~ m/^unused/;
3896 $conf = load_config($vmid); # update/reload
3897 if (!defined($conf->{$opt})) {
3898 vmconfig_undelete_pending_option($conf, $opt);
3899 update_config_nolock($vmid, $conf, 1);
3900 } elsif (valid_drivename($opt)) {
3901 vmconfig_register_unused_drive($storecfg, $vmid, $conf, parse_drive($opt, $conf->{$opt}));
3902 vmconfig_undelete_pending_option($conf, $opt);
3903 delete $conf->{$opt};
3904 update_config_nolock($vmid, $conf, 1);
3905 } else {
3906 vmconfig_undelete_pending_option($conf, $opt);
3907 delete $conf->{$opt};
3908 update_config_nolock($vmid, $conf, 1);
3909 }
3910 }
3911
3912 $conf = load_config($vmid); # update/reload
3913
3914 foreach my $opt (keys %{$conf->{pending}}) { # add/change
3915 $conf = load_config($vmid); # update/reload
3916
3917 if (defined($conf->{$opt}) && ($conf->{$opt} eq $conf->{pending}->{$opt})) {
3918 # skip if nothing changed
3919 } elsif (valid_drivename($opt)) {
3920 vmconfig_register_unused_drive($storecfg, $vmid, $conf, parse_drive($opt, $conf->{$opt}))
3921 if defined($conf->{$opt});
3922 $conf->{$opt} = $conf->{pending}->{$opt};
3923 } else {
3924 $conf->{$opt} = $conf->{pending}->{$opt};
3925 }
3926
3927 delete $conf->{pending}->{$opt};
3928 update_config_nolock($vmid, $conf, 1);
3929 }
3930 }
3931
3932 my $safe_num_ne = sub {
3933 my ($a, $b) = @_;
3934
3935 return 0 if !defined($a) && !defined($b);
3936 return 1 if !defined($a);
3937 return 1 if !defined($b);
3938
3939 return $a != $b;
3940 };
3941
3942 my $safe_string_ne = sub {
3943 my ($a, $b) = @_;
3944
3945 return 0 if !defined($a) && !defined($b);
3946 return 1 if !defined($a);
3947 return 1 if !defined($b);
3948
3949 return $a ne $b;
3950 };
3951
3952 sub vmconfig_update_net {
3953 my ($storecfg, $conf, $hotplug, $vmid, $opt, $value) = @_;
3954
3955 my $newnet = parse_net($value);
3956
3957 if ($conf->{$opt}) {
3958 my $oldnet = parse_net($conf->{$opt});
3959
3960 if (&$safe_string_ne($oldnet->{model}, $newnet->{model}) ||
3961 &$safe_string_ne($oldnet->{macaddr}, $newnet->{macaddr}) ||
3962 &$safe_num_ne($oldnet->{queues}, $newnet->{queues}) ||
3963 !($newnet->{bridge} && $oldnet->{bridge})) { # bridge/nat mode change
3964
3965 # for non online change, we try to hot-unplug
3966 die "skip\n" if !$hotplug;
3967 vm_deviceunplug($vmid, $conf, $opt);
3968 } else {
3969
3970 die "internal error" if $opt !~ m/net(\d+)/;
3971 my $iface = "tap${vmid}i$1";
3972
3973 if (&$safe_num_ne($oldnet->{rate}, $newnet->{rate})) {
3974 PVE::Network::tap_rate_limit($iface, $newnet->{rate});
3975 }
3976
3977 if (&$safe_string_ne($oldnet->{bridge}, $newnet->{bridge}) ||
3978 &$safe_num_ne($oldnet->{tag}, $newnet->{tag}) ||
3979 &$safe_num_ne($oldnet->{firewall}, $newnet->{firewall})) {
3980 PVE::Network::tap_unplug($iface);
3981 PVE::Network::tap_plug($iface, $newnet->{bridge}, $newnet->{tag}, $newnet->{firewall});
3982 }
3983
3984 if (&$safe_string_ne($oldnet->{link_down}, $newnet->{link_down})) {
3985 qemu_set_link_status($vmid, $opt, !$newnet->{link_down});
3986 }
3987
3988 return 1;
3989 }
3990 }
3991
3992 if ($hotplug) {
3993 vm_deviceplug($storecfg, $conf, $vmid, $opt, $newnet);
3994 } else {
3995 die "skip\n";
3996 }
3997 }
3998
3999 sub vmconfig_update_disk {
4000 my ($storecfg, $conf, $hotplug, $vmid, $opt, $value, $force) = @_;
4001
4002 # fixme: do we need force?
4003
4004 my $drive = parse_drive($opt, $value);
4005
4006 if ($conf->{$opt}) {
4007
4008 if (my $old_drive = parse_drive($opt, $conf->{$opt})) {
4009
4010 my $media = $drive->{media} || 'disk';
4011 my $oldmedia = $old_drive->{media} || 'disk';
4012 die "unable to change media type\n" if $media ne $oldmedia;
4013
4014 if (!drive_is_cdrom($old_drive)) {
4015
4016 if ($drive->{file} ne $old_drive->{file}) {
4017
4018 die "skip\n" if !$hotplug;
4019
4020 # unplug and register as unused
4021 vm_deviceunplug($vmid, $conf, $opt);
4022 vmconfig_register_unused_drive($storecfg, $vmid, $conf, $old_drive)
4023
4024 } else {
4025 # update existing disk
4026
4027 # skip non hotpluggable value
4028 if (&$safe_num_ne($drive->{discard}, $old_drive->{discard}) ||
4029 &$safe_string_ne($drive->{cache}, $old_drive->{cache})) {
4030 die "skip\n";
4031 }
4032
4033 # apply throttle
4034 if (&$safe_num_ne($drive->{mbps}, $old_drive->{mbps}) ||
4035 &$safe_num_ne($drive->{mbps_rd}, $old_drive->{mbps_rd}) ||
4036 &$safe_num_ne($drive->{mbps_wr}, $old_drive->{mbps_wr}) ||
4037 &$safe_num_ne($drive->{iops}, $old_drive->{iops}) ||
4038 &$safe_num_ne($drive->{iops_rd}, $old_drive->{iops_rd}) ||
4039 &$safe_num_ne($drive->{iops_wr}, $old_drive->{iops_wr}) ||
4040 &$safe_num_ne($drive->{mbps_max}, $old_drive->{mbps_max}) ||
4041 &$safe_num_ne($drive->{mbps_rd_max}, $old_drive->{mbps_rd_max}) ||
4042 &$safe_num_ne($drive->{mbps_wr_max}, $old_drive->{mbps_wr_max}) ||
4043 &$safe_num_ne($drive->{iops_max}, $old_drive->{iops_max}) ||
4044 &$safe_num_ne($drive->{iops_rd_max}, $old_drive->{iops_rd_max}) ||
4045 &$safe_num_ne($drive->{iops_wr_max}, $old_drive->{iops_wr_max})) {
4046
4047 qemu_block_set_io_throttle($vmid,"drive-$opt",
4048 ($drive->{mbps} || 0)*1024*1024,
4049 ($drive->{mbps_rd} || 0)*1024*1024,
4050 ($drive->{mbps_wr} || 0)*1024*1024,
4051 $drive->{iops} || 0,
4052 $drive->{iops_rd} || 0,
4053 $drive->{iops_wr} || 0,
4054 ($drive->{mbps_max} || 0)*1024*1024,
4055 ($drive->{mbps_rd_max} || 0)*1024*1024,
4056 ($drive->{mbps_wr_max} || 0)*1024*1024,
4057 $drive->{iops_max} || 0,
4058 $drive->{iops_rd_max} || 0,
4059 $drive->{iops_wr_max} || 0);
4060
4061 }
4062
4063 return 1;
4064 }
4065 }
4066 }
4067 }
4068
4069 if (drive_is_cdrom($drive)) { # cdrom
4070
4071 if ($drive->{file} eq 'none') {
4072 vm_mon_cmd($vmid, "eject",force => JSON::true,device => "drive-$opt");
4073 } else {
4074 my $path = get_iso_path($storecfg, $vmid, $drive->{file});
4075 vm_mon_cmd($vmid, "eject", force => JSON::true,device => "drive-$opt"); # force eject if locked
4076 vm_mon_cmd($vmid, "change", device => "drive-$opt",target => "$path") if $path;
4077 }
4078
4079 } else {
4080 die "skip\n" if !$hotplug || $opt =~ m/(ide|sata)(\d+)/;
4081 # hotplug new disks
4082 vm_deviceplug($storecfg, $conf, $vmid, $opt, $drive);
4083 }
4084 }
4085
4086 sub vm_start {
4087 my ($storecfg, $vmid, $statefile, $skiplock, $migratedfrom, $paused, $forcemachine, $spice_ticket) = @_;
4088
4089 lock_config($vmid, sub {
4090 my $conf = load_config($vmid, $migratedfrom);
4091
4092 die "you can't start a vm if it's a template\n" if is_template($conf);
4093
4094 check_lock($conf) if !$skiplock;
4095
4096 die "VM $vmid already running\n" if check_running($vmid, undef, $migratedfrom);
4097
4098 if (!$statefile && scalar(keys %{$conf->{pending}})) {
4099 vmconfig_apply_pending($vmid, $conf, $storecfg);
4100 $conf = load_config($vmid); # update/reload
4101 }
4102
4103 my $defaults = load_defaults();
4104
4105 # set environment variable useful inside network script
4106 $ENV{PVE_MIGRATED_FROM} = $migratedfrom if $migratedfrom;
4107
4108 my ($cmd, $vollist, $spice_port) = config_to_command($storecfg, $vmid, $conf, $defaults, $forcemachine);
4109
4110 my $migrate_port = 0;
4111 my $migrate_uri;
4112 if ($statefile) {
4113 if ($statefile eq 'tcp') {
4114 my $localip = "localhost";
4115 my $datacenterconf = PVE::Cluster::cfs_read_file('datacenter.cfg');
4116 if ($datacenterconf->{migration_unsecure}) {
4117 my $nodename = PVE::INotify::nodename();
4118 $localip = PVE::Cluster::remote_node_ip($nodename, 1);
4119 }
4120 $migrate_port = PVE::Tools::next_migrate_port();
4121 $migrate_uri = "tcp:${localip}:${migrate_port}";
4122 push @$cmd, '-incoming', $migrate_uri;
4123 push @$cmd, '-S';
4124 } else {
4125 push @$cmd, '-loadstate', $statefile;
4126 }
4127 } elsif ($paused) {
4128 push @$cmd, '-S';
4129 }
4130
4131 # host pci devices
4132 for (my $i = 0; $i < $MAX_HOSTPCI_DEVICES; $i++) {
4133 my $d = parse_hostpci($conf->{"hostpci$i"});
4134 next if !$d;
4135 my $pcidevices = $d->{pciid};
4136 foreach my $pcidevice (@$pcidevices) {
4137 my $pciid = $pcidevice->{id}.".".$pcidevice->{function};
4138
4139 my $info = pci_device_info("0000:$pciid");
4140 die "IOMMU not present\n" if !check_iommu_support();
4141 die "no pci device info for device '$pciid'\n" if !$info;
4142
4143 if ($d->{driver} && $d->{driver} eq "vfio") {
4144 die "can't unbind/bind pci group to vfio '$pciid'\n" if !pci_dev_group_bind_to_vfio($pciid);
4145 } else {
4146 die "can't unbind/bind to stub pci device '$pciid'\n" if !pci_dev_bind_to_stub($info);
4147 }
4148
4149 die "can't reset pci device '$pciid'\n" if $info->{has_fl_reset} and !pci_dev_reset($info);
4150 }
4151 }
4152
4153 PVE::Storage::activate_volumes($storecfg, $vollist);
4154
4155 eval { run_command($cmd, timeout => $statefile ? undef : 30,
4156 umask => 0077); };
4157 my $err = $@;
4158 die "start failed: $err" if $err;
4159
4160 print "migration listens on $migrate_uri\n" if $migrate_uri;
4161
4162 if ($statefile && $statefile ne 'tcp') {
4163 eval { vm_mon_cmd_nocheck($vmid, "cont"); };
4164 warn $@ if $@;
4165 }
4166
4167 if ($migratedfrom) {
4168
4169 eval {
4170 set_migration_caps($vmid);
4171 };
4172 warn $@ if $@;
4173
4174 if ($spice_port) {
4175 print "spice listens on port $spice_port\n";
4176 if ($spice_ticket) {
4177 vm_mon_cmd_nocheck($vmid, "set_password", protocol => 'spice', password => $spice_ticket);
4178 vm_mon_cmd_nocheck($vmid, "expire_password", protocol => 'spice', time => "+30");
4179 }
4180 }
4181
4182 } else {
4183
4184 if (!$statefile && (!defined($conf->{balloon}) || $conf->{balloon})) {
4185 vm_mon_cmd_nocheck($vmid, "balloon", value => $conf->{balloon}*1024*1024)
4186 if $conf->{balloon};
4187 vm_mon_cmd_nocheck($vmid, 'qom-set',
4188 path => "machine/peripheral/balloon0",
4189 property => "guest-stats-polling-interval",
4190 value => 2);
4191 }
4192
4193 foreach my $opt (keys %$conf) {
4194 next if $opt !~ m/^net\d+$/;
4195 my $nicconf = parse_net($conf->{$opt});
4196 qemu_set_link_status($vmid, $opt, 0) if $nicconf->{link_down};
4197 }
4198 }
4199 });
4200 }
4201
4202 sub vm_mon_cmd {
4203 my ($vmid, $execute, %params) = @_;
4204
4205 my $cmd = { execute => $execute, arguments => \%params };
4206 vm_qmp_command($vmid, $cmd);
4207 }
4208
4209 sub vm_mon_cmd_nocheck {
4210 my ($vmid, $execute, %params) = @_;
4211
4212 my $cmd = { execute => $execute, arguments => \%params };
4213 vm_qmp_command($vmid, $cmd, 1);
4214 }
4215
4216 sub vm_qmp_command {
4217 my ($vmid, $cmd, $nocheck) = @_;
4218
4219 my $res;
4220
4221 my $timeout;
4222 if ($cmd->{arguments} && $cmd->{arguments}->{timeout}) {
4223 $timeout = $cmd->{arguments}->{timeout};
4224 delete $cmd->{arguments}->{timeout};
4225 }
4226
4227 eval {
4228 die "VM $vmid not running\n" if !check_running($vmid, $nocheck);
4229 my $sname = qmp_socket($vmid);
4230 if (-e $sname) { # test if VM is reasonambe new and supports qmp/qga
4231 my $qmpclient = PVE::QMPClient->new();
4232
4233 $res = $qmpclient->cmd($vmid, $cmd, $timeout);
4234 } elsif (-e "${var_run_tmpdir}/$vmid.mon") {
4235 die "can't execute complex command on old monitor - stop/start your vm to fix the problem\n"
4236 if scalar(%{$cmd->{arguments}});
4237 vm_monitor_command($vmid, $cmd->{execute}, $nocheck);
4238 } else {
4239 die "unable to open monitor socket\n";
4240 }
4241 };
4242 if (my $err = $@) {
4243 syslog("err", "VM $vmid qmp command failed - $err");
4244 die $err;
4245 }
4246
4247 return $res;
4248 }
4249
4250 sub vm_human_monitor_command {
4251 my ($vmid, $cmdline) = @_;
4252
4253 my $res;
4254
4255 my $cmd = {
4256 execute => 'human-monitor-command',
4257 arguments => { 'command-line' => $cmdline},
4258 };
4259
4260 return vm_qmp_command($vmid, $cmd);
4261 }
4262
4263 sub vm_commandline {
4264 my ($storecfg, $vmid) = @_;
4265
4266 my $conf = load_config($vmid);
4267
4268 my $defaults = load_defaults();
4269
4270 my $cmd = config_to_command($storecfg, $vmid, $conf, $defaults);
4271
4272 return join(' ', @$cmd);
4273 }
4274
4275 sub vm_reset {
4276 my ($vmid, $skiplock) = @_;
4277
4278 lock_config($vmid, sub {
4279
4280 my $conf = load_config($vmid);
4281
4282 check_lock($conf) if !$skiplock;
4283
4284 vm_mon_cmd($vmid, "system_reset");
4285 });
4286 }
4287
4288 sub get_vm_volumes {
4289 my ($conf) = @_;
4290
4291 my $vollist = [];
4292 foreach_volid($conf, sub {
4293 my ($volid, $is_cdrom) = @_;
4294
4295 return if $volid =~ m|^/|;
4296
4297 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
4298 return if !$sid;
4299
4300 push @$vollist, $volid;
4301 });
4302
4303 return $vollist;
4304 }
4305
4306 sub vm_stop_cleanup {
4307 my ($storecfg, $vmid, $conf, $keepActive, $apply_pending_changes) = @_;
4308
4309 eval {
4310 fairsched_rmnod($vmid); # try to destroy group
4311
4312 if (!$keepActive) {
4313 my $vollist = get_vm_volumes($conf);
4314 PVE::Storage::deactivate_volumes($storecfg, $vollist);
4315 }
4316
4317 foreach my $ext (qw(mon qmp pid vnc qga)) {
4318 unlink "/var/run/qemu-server/${vmid}.$ext";
4319 }
4320
4321 vmconfig_apply_pending($vmid, $conf, $storecfg) if $apply_pending_changes;
4322 };
4323 warn $@ if $@; # avoid errors - just warn
4324 }
4325
4326 # Note: use $nockeck to skip tests if VM configuration file exists.
4327 # We need that when migration VMs to other nodes (files already moved)
4328 # Note: we set $keepActive in vzdump stop mode - volumes need to stay active
4329 sub vm_stop {
4330 my ($storecfg, $vmid, $skiplock, $nocheck, $timeout, $shutdown, $force, $keepActive, $migratedfrom) = @_;
4331
4332 $force = 1 if !defined($force) && !$shutdown;
4333
4334 if ($migratedfrom){
4335 my $pid = check_running($vmid, $nocheck, $migratedfrom);
4336 kill 15, $pid if $pid;
4337 my $conf = load_config($vmid, $migratedfrom);
4338 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 0);
4339 return;
4340 }
4341
4342 lock_config($vmid, sub {
4343
4344 my $pid = check_running($vmid, $nocheck);
4345 return if !$pid;
4346
4347 my $conf;
4348 if (!$nocheck) {
4349 $conf = load_config($vmid);
4350 check_lock($conf) if !$skiplock;
4351 if (!defined($timeout) && $shutdown && $conf->{startup}) {
4352 my $opts = parse_startup($conf->{startup});
4353 $timeout = $opts->{down} if $opts->{down};
4354 }
4355 }
4356
4357 $timeout = 60 if !defined($timeout);
4358
4359 eval {
4360 if ($shutdown) {
4361 if (defined($conf) && $conf->{agent}) {
4362 vm_qmp_command($vmid, { execute => "guest-shutdown" }, $nocheck);
4363 } else {
4364 vm_qmp_command($vmid, { execute => "system_powerdown" }, $nocheck);
4365 }
4366 } else {
4367 vm_qmp_command($vmid, { execute => "quit" }, $nocheck);
4368 }
4369 };
4370 my $err = $@;
4371
4372 if (!$err) {
4373 my $count = 0;
4374 while (($count < $timeout) && check_running($vmid, $nocheck)) {
4375 $count++;
4376 sleep 1;
4377 }
4378
4379 if ($count >= $timeout) {
4380 if ($force) {
4381 warn "VM still running - terminating now with SIGTERM\n";
4382 kill 15, $pid;
4383 } else {
4384 die "VM quit/powerdown failed - got timeout\n";
4385 }
4386 } else {
4387 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 1) if $conf;
4388 return;
4389 }
4390 } else {
4391 if ($force) {
4392 warn "VM quit/powerdown failed - terminating now with SIGTERM\n";
4393 kill 15, $pid;
4394 } else {
4395 die "VM quit/powerdown failed\n";
4396 }
4397 }
4398
4399 # wait again
4400 $timeout = 10;
4401
4402 my $count = 0;
4403 while (($count < $timeout) && check_running($vmid, $nocheck)) {
4404 $count++;
4405 sleep 1;
4406 }
4407
4408 if ($count >= $timeout) {
4409 warn "VM still running - terminating now with SIGKILL\n";
4410 kill 9, $pid;
4411 sleep 1;
4412 }
4413
4414 vm_stop_cleanup($storecfg, $vmid, $conf, $keepActive, 1) if $conf;
4415 });
4416 }
4417
4418 sub vm_suspend {
4419 my ($vmid, $skiplock) = @_;
4420
4421 lock_config($vmid, sub {
4422
4423 my $conf = load_config($vmid);
4424
4425 check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
4426
4427 vm_mon_cmd($vmid, "stop");
4428 });
4429 }
4430
4431 sub vm_resume {
4432 my ($vmid, $skiplock) = @_;
4433
4434 lock_config($vmid, sub {
4435
4436 my $conf = load_config($vmid);
4437
4438 check_lock($conf) if !($skiplock || ($conf->{lock} && $conf->{lock} eq 'backup'));
4439
4440 vm_mon_cmd($vmid, "cont");
4441 });
4442 }
4443
4444 sub vm_sendkey {
4445 my ($vmid, $skiplock, $key) = @_;
4446
4447 lock_config($vmid, sub {
4448
4449 my $conf = load_config($vmid);
4450
4451 # there is no qmp command, so we use the human monitor command
4452 vm_human_monitor_command($vmid, "sendkey $key");
4453 });
4454 }
4455
4456 sub vm_destroy {
4457 my ($storecfg, $vmid, $skiplock) = @_;
4458
4459 lock_config($vmid, sub {
4460
4461 my $conf = load_config($vmid);
4462
4463 check_lock($conf) if !$skiplock;
4464
4465 if (!check_running($vmid)) {
4466 fairsched_rmnod($vmid); # try to destroy group
4467 destroy_vm($storecfg, $vmid);
4468 } else {
4469 die "VM $vmid is running - destroy failed\n";
4470 }
4471 });
4472 }
4473
4474 # pci helpers
4475
4476 sub file_write {
4477 my ($filename, $buf) = @_;
4478
4479 my $fh = IO::File->new($filename, "w");
4480 return undef if !$fh;
4481
4482 my $res = print $fh $buf;
4483
4484 $fh->close();
4485
4486 return $res;
4487 }
4488
4489 sub pci_device_info {
4490 my ($name) = @_;
4491
4492 my $res;
4493
4494 return undef if $name !~ m/^([a-f0-9]{4}):([a-f0-9]{2}):([a-f0-9]{2})\.([a-f0-9])$/;
4495 my ($domain, $bus, $slot, $func) = ($1, $2, $3, $4);
4496
4497 my $irq = file_read_firstline("$pcisysfs/devices/$name/irq");
4498 return undef if !defined($irq) || $irq !~ m/^\d+$/;
4499
4500 my $vendor = file_read_firstline("$pcisysfs/devices/$name/vendor");
4501 return undef if !defined($vendor) || $vendor !~ s/^0x//;
4502
4503 my $product = file_read_firstline("$pcisysfs/devices/$name/device");
4504 return undef if !defined($product) || $product !~ s/^0x//;
4505
4506 $res = {
4507 name => $name,
4508 vendor => $vendor,
4509 product => $product,
4510 domain => $domain,
4511 bus => $bus,
4512 slot => $slot,
4513 func => $func,
4514 irq => $irq,
4515 has_fl_reset => -f "$pcisysfs/devices/$name/reset" || 0,
4516 };
4517
4518 return $res;
4519 }
4520
4521 sub pci_dev_reset {
4522 my ($dev) = @_;
4523
4524 my $name = $dev->{name};
4525
4526 my $fn = "$pcisysfs/devices/$name/reset";
4527
4528 return file_write($fn, "1");
4529 }
4530
4531 sub pci_dev_bind_to_stub {
4532 my ($dev) = @_;
4533
4534 my $name = $dev->{name};
4535
4536 my $testdir = "$pcisysfs/drivers/pci-stub/$name";
4537 return 1 if -d $testdir;
4538
4539 my $data = "$dev->{vendor} $dev->{product}";
4540 return undef if !file_write("$pcisysfs/drivers/pci-stub/new_id", $data);
4541
4542 my $fn = "$pcisysfs/devices/$name/driver/unbind";
4543 if (!file_write($fn, $name)) {
4544 return undef if -f $fn;
4545 }
4546
4547 $fn = "$pcisysfs/drivers/pci-stub/bind";
4548 if (! -d $testdir) {
4549 return undef if !file_write($fn, $name);
4550 }
4551
4552 return -d $testdir;
4553 }
4554
4555 sub pci_dev_bind_to_vfio {
4556 my ($dev) = @_;
4557
4558 my $name = $dev->{name};
4559
4560 my $vfio_basedir = "$pcisysfs/drivers/vfio-pci";
4561
4562 if (!-d $vfio_basedir) {
4563 system("/sbin/modprobe vfio-pci >/dev/null 2>/dev/null");
4564 }
4565 die "Cannot find vfio-pci module!\n" if !-d $vfio_basedir;
4566
4567 my $testdir = "$vfio_basedir/$name";
4568 return 1 if -d $testdir;
4569
4570 my $data = "$dev->{vendor} $dev->{product}";
4571 return undef if !file_write("$vfio_basedir/new_id", $data);
4572
4573 my $fn = "$pcisysfs/devices/$name/driver/unbind";
4574 if (!file_write($fn, $name)) {
4575 return undef if -f $fn;
4576 }
4577
4578 $fn = "$vfio_basedir/bind";
4579 if (! -d $testdir) {
4580 return undef if !file_write($fn, $name);
4581 }
4582
4583 return -d $testdir;
4584 }
4585
4586 sub pci_dev_group_bind_to_vfio {
4587 my ($pciid) = @_;
4588
4589 my $vfio_basedir = "$pcisysfs/drivers/vfio-pci";
4590
4591 if (!-d $vfio_basedir) {
4592 system("/sbin/modprobe vfio-pci >/dev/null 2>/dev/null");
4593 }
4594 die "Cannot find vfio-pci module!\n" if !-d $vfio_basedir;
4595
4596 # get IOMMU group devices
4597 opendir(my $D, "$pcisysfs/devices/0000:$pciid/iommu_group/devices/") || die "Cannot open iommu_group: $!\n";
4598 my @devs = grep /^0000:/, readdir($D);
4599 closedir($D);
4600
4601 foreach my $pciid (@devs) {
4602 $pciid =~ m/^([:\.\da-f]+)$/ or die "PCI ID $pciid not valid!\n";
4603 my $info = pci_device_info($1);
4604 pci_dev_bind_to_vfio($info) || die "Cannot bind $pciid to vfio\n";
4605 }
4606
4607 return 1;
4608 }
4609
4610 sub print_pci_addr {
4611 my ($id, $bridges) = @_;
4612
4613 my $res = '';
4614 my $devices = {
4615 piix3 => { bus => 0, addr => 1 },
4616 #addr2 : first videocard
4617 balloon0 => { bus => 0, addr => 3 },
4618 watchdog => { bus => 0, addr => 4 },
4619 scsihw0 => { bus => 0, addr => 5 },
4620 scsihw1 => { bus => 0, addr => 6 },
4621 ahci0 => { bus => 0, addr => 7 },
4622 qga0 => { bus => 0, addr => 8 },
4623 spice => { bus => 0, addr => 9 },
4624 virtio0 => { bus => 0, addr => 10 },
4625 virtio1 => { bus => 0, addr => 11 },
4626 virtio2 => { bus => 0, addr => 12 },
4627 virtio3 => { bus => 0, addr => 13 },
4628 virtio4 => { bus => 0, addr => 14 },
4629 virtio5 => { bus => 0, addr => 15 },
4630 hostpci0 => { bus => 0, addr => 16 },
4631 hostpci1 => { bus => 0, addr => 17 },
4632 net0 => { bus => 0, addr => 18 },
4633 net1 => { bus => 0, addr => 19 },
4634 net2 => { bus => 0, addr => 20 },
4635 net3 => { bus => 0, addr => 21 },
4636 net4 => { bus => 0, addr => 22 },
4637 net5 => { bus => 0, addr => 23 },
4638 vga1 => { bus => 0, addr => 24 },
4639 vga2 => { bus => 0, addr => 25 },
4640 vga3 => { bus => 0, addr => 26 },
4641 hostpci2 => { bus => 0, addr => 27 },
4642 hostpci3 => { bus => 0, addr => 28 },
4643 #addr29 : usb-host (pve-usb.cfg)
4644 'pci.1' => { bus => 0, addr => 30 },
4645 'pci.2' => { bus => 0, addr => 31 },
4646 'net6' => { bus => 1, addr => 1 },
4647 'net7' => { bus => 1, addr => 2 },
4648 'net8' => { bus => 1, addr => 3 },
4649 'net9' => { bus => 1, addr => 4 },
4650 'net10' => { bus => 1, addr => 5 },
4651 'net11' => { bus => 1, addr => 6 },
4652 'net12' => { bus => 1, addr => 7 },
4653 'net13' => { bus => 1, addr => 8 },
4654 'net14' => { bus => 1, addr => 9 },
4655 'net15' => { bus => 1, addr => 10 },
4656 'net16' => { bus => 1, addr => 11 },
4657 'net17' => { bus => 1, addr => 12 },
4658 'net18' => { bus => 1, addr => 13 },
4659 'net19' => { bus => 1, addr => 14 },
4660 'net20' => { bus => 1, addr => 15 },
4661 'net21' => { bus => 1, addr => 16 },
4662 'net22' => { bus => 1, addr => 17 },
4663 'net23' => { bus => 1, addr => 18 },
4664 'net24' => { bus => 1, addr => 19 },
4665 'net25' => { bus => 1, addr => 20 },
4666 'net26' => { bus => 1, addr => 21 },
4667 'net27' => { bus => 1, addr => 22 },
4668 'net28' => { bus => 1, addr => 23 },
4669 'net29' => { bus => 1, addr => 24 },
4670 'net30' => { bus => 1, addr => 25 },
4671 'net31' => { bus => 1, addr => 26 },
4672 'virtio6' => { bus => 2, addr => 1 },
4673 'virtio7' => { bus => 2, addr => 2 },
4674 'virtio8' => { bus => 2, addr => 3 },
4675 'virtio9' => { bus => 2, addr => 4 },
4676 'virtio10' => { bus => 2, addr => 5 },
4677 'virtio11' => { bus => 2, addr => 6 },
4678 'virtio12' => { bus => 2, addr => 7 },
4679 'virtio13' => { bus => 2, addr => 8 },
4680 'virtio14' => { bus => 2, addr => 9 },
4681 'virtio15' => { bus => 2, addr => 10 },
4682 };
4683
4684 if (defined($devices->{$id}->{bus}) && defined($devices->{$id}->{addr})) {
4685 my $addr = sprintf("0x%x", $devices->{$id}->{addr});
4686 my $bus = $devices->{$id}->{bus};
4687 $res = ",bus=pci.$bus,addr=$addr";
4688 $bridges->{$bus} = 1 if $bridges;
4689 }
4690 return $res;
4691
4692 }
4693
4694 sub print_pcie_addr {
4695 my ($id) = @_;
4696
4697 my $res = '';
4698 my $devices = {
4699 hostpci0 => { bus => "ich9-pcie-port-1", addr => 0 },
4700 hostpci1 => { bus => "ich9-pcie-port-2", addr => 0 },
4701 hostpci2 => { bus => "ich9-pcie-port-3", addr => 0 },
4702 hostpci3 => { bus => "ich9-pcie-port-4", addr => 0 },
4703 };
4704
4705 if (defined($devices->{$id}->{bus}) && defined($devices->{$id}->{addr})) {
4706 my $addr = sprintf("0x%x", $devices->{$id}->{addr});
4707 my $bus = $devices->{$id}->{bus};
4708 $res = ",bus=$bus,addr=$addr";
4709 }
4710 return $res;
4711
4712 }
4713
4714 # vzdump restore implementaion
4715
4716 sub tar_archive_read_firstfile {
4717 my $archive = shift;
4718
4719 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
4720
4721 # try to detect archive type first
4722 my $pid = open (TMP, "tar tf '$archive'|") ||
4723 die "unable to open file '$archive'\n";
4724 my $firstfile = <TMP>;
4725 kill 15, $pid;
4726 close TMP;
4727
4728 die "ERROR: archive contaions no data\n" if !$firstfile;
4729 chomp $firstfile;
4730
4731 return $firstfile;
4732 }
4733
4734 sub tar_restore_cleanup {
4735 my ($storecfg, $statfile) = @_;
4736
4737 print STDERR "starting cleanup\n";
4738
4739 if (my $fd = IO::File->new($statfile, "r")) {
4740 while (defined(my $line = <$fd>)) {
4741 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
4742 my $volid = $2;
4743 eval {
4744 if ($volid =~ m|^/|) {
4745 unlink $volid || die 'unlink failed\n';
4746 } else {
4747 PVE::Storage::vdisk_free($storecfg, $volid);
4748 }
4749 print STDERR "temporary volume '$volid' sucessfuly removed\n";
4750 };
4751 print STDERR "unable to cleanup '$volid' - $@" if $@;
4752 } else {
4753 print STDERR "unable to parse line in statfile - $line";
4754 }
4755 }
4756 $fd->close();
4757 }
4758 }
4759
4760 sub restore_archive {
4761 my ($archive, $vmid, $user, $opts) = @_;
4762
4763 my $format = $opts->{format};
4764 my $comp;
4765
4766 if ($archive =~ m/\.tgz$/ || $archive =~ m/\.tar\.gz$/) {
4767 $format = 'tar' if !$format;
4768 $comp = 'gzip';
4769 } elsif ($archive =~ m/\.tar$/) {
4770 $format = 'tar' if !$format;
4771 } elsif ($archive =~ m/.tar.lzo$/) {
4772 $format = 'tar' if !$format;
4773 $comp = 'lzop';
4774 } elsif ($archive =~ m/\.vma$/) {
4775 $format = 'vma' if !$format;
4776 } elsif ($archive =~ m/\.vma\.gz$/) {
4777 $format = 'vma' if !$format;
4778 $comp = 'gzip';
4779 } elsif ($archive =~ m/\.vma\.lzo$/) {
4780 $format = 'vma' if !$format;
4781 $comp = 'lzop';
4782 } else {
4783 $format = 'vma' if !$format; # default
4784 }
4785
4786 # try to detect archive format
4787 if ($format eq 'tar') {
4788 return restore_tar_archive($archive, $vmid, $user, $opts);
4789 } else {
4790 return restore_vma_archive($archive, $vmid, $user, $opts, $comp);
4791 }
4792 }
4793
4794 sub restore_update_config_line {
4795 my ($outfd, $cookie, $vmid, $map, $line, $unique) = @_;
4796
4797 return if $line =~ m/^\#qmdump\#/;
4798 return if $line =~ m/^\#vzdump\#/;
4799 return if $line =~ m/^lock:/;
4800 return if $line =~ m/^unused\d+:/;
4801 return if $line =~ m/^parent:/;
4802 return if $line =~ m/^template:/; # restored VM is never a template
4803
4804 if (($line =~ m/^(vlan(\d+)):\s*(\S+)\s*$/)) {
4805 # try to convert old 1.X settings
4806 my ($id, $ind, $ethcfg) = ($1, $2, $3);
4807 foreach my $devconfig (PVE::Tools::split_list($ethcfg)) {
4808 my ($model, $macaddr) = split(/\=/, $devconfig);
4809 $macaddr = PVE::Tools::random_ether_addr() if !$macaddr || $unique;
4810 my $net = {
4811 model => $model,
4812 bridge => "vmbr$ind",
4813 macaddr => $macaddr,
4814 };
4815 my $netstr = print_net($net);
4816
4817 print $outfd "net$cookie->{netcount}: $netstr\n";
4818 $cookie->{netcount}++;
4819 }
4820 } elsif (($line =~ m/^(net\d+):\s*(\S+)\s*$/) && $unique) {
4821 my ($id, $netstr) = ($1, $2);
4822 my $net = parse_net($netstr);
4823 $net->{macaddr} = PVE::Tools::random_ether_addr() if $net->{macaddr};
4824 $netstr = print_net($net);
4825 print $outfd "$id: $netstr\n";
4826 } elsif ($line =~ m/^((ide|scsi|virtio|sata)\d+):\s*(\S+)\s*$/) {
4827 my $virtdev = $1;
4828 my $value = $3;
4829 if ($line =~ m/backup=no/) {
4830 print $outfd "#$line";
4831 } elsif ($virtdev && $map->{$virtdev}) {
4832 my $di = parse_drive($virtdev, $value);
4833 delete $di->{format}; # format can change on restore
4834 $di->{file} = $map->{$virtdev};
4835 $value = print_drive($vmid, $di);
4836 print $outfd "$virtdev: $value\n";
4837 } else {
4838 print $outfd $line;
4839 }
4840 } else {
4841 print $outfd $line;
4842 }
4843 }
4844
4845 sub scan_volids {
4846 my ($cfg, $vmid) = @_;
4847
4848 my $info = PVE::Storage::vdisk_list($cfg, undef, $vmid);
4849
4850 my $volid_hash = {};
4851 foreach my $storeid (keys %$info) {
4852 foreach my $item (@{$info->{$storeid}}) {
4853 next if !($item->{volid} && $item->{size});
4854 $item->{path} = PVE::Storage::path($cfg, $item->{volid});
4855 $volid_hash->{$item->{volid}} = $item;
4856 }
4857 }
4858
4859 return $volid_hash;
4860 }
4861
4862 sub get_used_paths {
4863 my ($vmid, $storecfg, $conf, $scan_snapshots, $skip_drive) = @_;
4864
4865 my $used_path = {};
4866
4867 my $scan_config = sub {
4868 my ($cref, $snapname) = @_;
4869
4870 foreach my $key (keys %$cref) {
4871 my $value = $cref->{$key};
4872 if (valid_drivename($key)) {
4873 next if $skip_drive && $key eq $skip_drive;
4874 my $drive = parse_drive($key, $value);
4875 next if !$drive || !$drive->{file} || drive_is_cdrom($drive);
4876 if ($drive->{file} =~ m!^/!) {
4877 $used_path->{$drive->{file}}++; # = 1;
4878 } else {
4879 my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file}, 1);
4880 next if !$storeid;
4881 my $scfg = PVE::Storage::storage_config($storecfg, $storeid, 1);
4882 next if !$scfg;
4883 my $path = PVE::Storage::path($storecfg, $drive->{file}, $snapname);
4884 $used_path->{$path}++; # = 1;
4885 }
4886 }
4887 }
4888 };
4889
4890 &$scan_config($conf);
4891
4892 undef $skip_drive;
4893
4894 if ($scan_snapshots) {
4895 foreach my $snapname (keys %{$conf->{snapshots}}) {
4896 &$scan_config($conf->{snapshots}->{$snapname}, $snapname);
4897 }
4898 }
4899
4900 return $used_path;
4901 }
4902
4903 sub update_disksize {
4904 my ($vmid, $conf, $volid_hash) = @_;
4905
4906 my $changes;
4907
4908 my $used = {};
4909
4910 # Note: it is allowed to define multiple storages with same path (alias), so
4911 # we need to check both 'volid' and real 'path' (two different volid can point
4912 # to the same path).
4913
4914 my $usedpath = {};
4915
4916 # update size info
4917 foreach my $opt (keys %$conf) {
4918 if (valid_drivename($opt)) {
4919 my $drive = parse_drive($opt, $conf->{$opt});
4920 my $volid = $drive->{file};
4921 next if !$volid;
4922
4923 $used->{$volid} = 1;
4924 if ($volid_hash->{$volid} &&
4925 (my $path = $volid_hash->{$volid}->{path})) {
4926 $usedpath->{$path} = 1;
4927 }
4928
4929 next if drive_is_cdrom($drive);
4930 next if !$volid_hash->{$volid};
4931
4932 $drive->{size} = $volid_hash->{$volid}->{size};
4933 my $new = print_drive($vmid, $drive);
4934 if ($new ne $conf->{$opt}) {
4935 $changes = 1;
4936 $conf->{$opt} = $new;
4937 }
4938 }
4939 }
4940
4941 # remove 'unusedX' entry if volume is used
4942 foreach my $opt (keys %$conf) {
4943 next if $opt !~ m/^unused\d+$/;
4944 my $volid = $conf->{$opt};
4945 my $path = $volid_hash->{$volid}->{path} if $volid_hash->{$volid};
4946 if ($used->{$volid} || ($path && $usedpath->{$path})) {
4947 $changes = 1;
4948 delete $conf->{$opt};
4949 }
4950 }
4951
4952 foreach my $volid (sort keys %$volid_hash) {
4953 next if $volid =~ m/vm-$vmid-state-/;
4954 next if $used->{$volid};
4955 my $path = $volid_hash->{$volid}->{path};
4956 next if !$path; # just to be sure
4957 next if $usedpath->{$path};
4958 $changes = 1;
4959 add_unused_volume($conf, $volid);
4960 $usedpath->{$path} = 1; # avoid to add more than once (aliases)
4961 }
4962
4963 return $changes;
4964 }
4965
4966 sub rescan {
4967 my ($vmid, $nolock) = @_;
4968
4969 my $cfg = PVE::Cluster::cfs_read_file("storage.cfg");
4970
4971 my $volid_hash = scan_volids($cfg, $vmid);
4972
4973 my $updatefn = sub {
4974 my ($vmid) = @_;
4975
4976 my $conf = load_config($vmid);
4977
4978 check_lock($conf);
4979
4980 my $vm_volids = {};
4981 foreach my $volid (keys %$volid_hash) {
4982 my $info = $volid_hash->{$volid};
4983 $vm_volids->{$volid} = $info if $info->{vmid} && $info->{vmid} == $vmid;
4984 }
4985
4986 my $changes = update_disksize($vmid, $conf, $vm_volids);
4987
4988 update_config_nolock($vmid, $conf, 1) if $changes;
4989 };
4990
4991 if (defined($vmid)) {
4992 if ($nolock) {
4993 &$updatefn($vmid);
4994 } else {
4995 lock_config($vmid, $updatefn, $vmid);
4996 }
4997 } else {
4998 my $vmlist = config_list();
4999 foreach my $vmid (keys %$vmlist) {
5000 if ($nolock) {
5001 &$updatefn($vmid);
5002 } else {
5003 lock_config($vmid, $updatefn, $vmid);
5004 }
5005 }
5006 }
5007 }
5008
5009 sub restore_vma_archive {
5010 my ($archive, $vmid, $user, $opts, $comp) = @_;
5011
5012 my $input = $archive eq '-' ? "<&STDIN" : undef;
5013 my $readfrom = $archive;
5014
5015 my $uncomp = '';
5016 if ($comp) {
5017 $readfrom = '-';
5018 my $qarchive = PVE::Tools::shellquote($archive);
5019 if ($comp eq 'gzip') {
5020 $uncomp = "zcat $qarchive|";
5021 } elsif ($comp eq 'lzop') {
5022 $uncomp = "lzop -d -c $qarchive|";
5023 } else {
5024 die "unknown compression method '$comp'\n";
5025 }
5026
5027 }
5028
5029 my $tmpdir = "/var/tmp/vzdumptmp$$";
5030 rmtree $tmpdir;
5031
5032 # disable interrupts (always do cleanups)
5033 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
5034 warn "got interrupt - ignored\n";
5035 };
5036
5037 my $mapfifo = "/var/tmp/vzdumptmp$$.fifo";
5038 POSIX::mkfifo($mapfifo, 0600);
5039 my $fifofh;
5040
5041 my $openfifo = sub {
5042 open($fifofh, '>', $mapfifo) || die $!;
5043 };
5044
5045 my $cmd = "${uncomp}vma extract -v -r $mapfifo $readfrom $tmpdir";
5046
5047 my $oldtimeout;
5048 my $timeout = 5;
5049
5050 my $devinfo = {};
5051
5052 my $rpcenv = PVE::RPCEnvironment::get();
5053
5054 my $conffile = config_file($vmid);
5055 my $tmpfn = "$conffile.$$.tmp";
5056
5057 # Note: $oldconf is undef if VM does not exists
5058 my $oldconf = PVE::Cluster::cfs_read_file(cfs_config_path($vmid));
5059
5060 my $print_devmap = sub {
5061 my $virtdev_hash = {};
5062
5063 my $cfgfn = "$tmpdir/qemu-server.conf";
5064
5065 # we can read the config - that is already extracted
5066 my $fh = IO::File->new($cfgfn, "r") ||
5067 "unable to read qemu-server.conf - $!\n";
5068
5069 while (defined(my $line = <$fh>)) {
5070 if ($line =~ m/^\#qmdump\#map:(\S+):(\S+):(\S*):(\S*):$/) {
5071 my ($virtdev, $devname, $storeid, $format) = ($1, $2, $3, $4);
5072 die "archive does not contain data for drive '$virtdev'\n"
5073 if !$devinfo->{$devname};
5074 if (defined($opts->{storage})) {
5075 $storeid = $opts->{storage} || 'local';
5076 } elsif (!$storeid) {
5077 $storeid = 'local';
5078 }
5079 $format = 'raw' if !$format;
5080 $devinfo->{$devname}->{devname} = $devname;
5081 $devinfo->{$devname}->{virtdev} = $virtdev;
5082 $devinfo->{$devname}->{format} = $format;
5083 $devinfo->{$devname}->{storeid} = $storeid;
5084
5085 # check permission on storage
5086 my $pool = $opts->{pool}; # todo: do we need that?
5087 if ($user ne 'root@pam') {
5088 $rpcenv->check($user, "/storage/$storeid", ['Datastore.AllocateSpace']);
5089 }
5090
5091 $virtdev_hash->{$virtdev} = $devinfo->{$devname};
5092 }
5093 }
5094
5095 foreach my $devname (keys %$devinfo) {
5096 die "found no device mapping information for device '$devname'\n"
5097 if !$devinfo->{$devname}->{virtdev};
5098 }
5099
5100 my $cfg = cfs_read_file('storage.cfg');
5101
5102 # create empty/temp config
5103 if ($oldconf) {
5104 PVE::Tools::file_set_contents($conffile, "memory: 128\n");
5105 foreach_drive($oldconf, sub {
5106 my ($ds, $drive) = @_;
5107
5108 return if drive_is_cdrom($drive);
5109
5110 my $volid = $drive->{file};
5111
5112 return if !$volid || $volid =~ m|^/|;
5113
5114 my ($path, $owner) = PVE::Storage::path($cfg, $volid);
5115 return if !$path || !$owner || ($owner != $vmid);
5116
5117 # Note: only delete disk we want to restore
5118 # other volumes will become unused
5119 if ($virtdev_hash->{$ds}) {
5120 PVE::Storage::vdisk_free($cfg, $volid);
5121 }
5122 });
5123 }
5124
5125 my $map = {};
5126 foreach my $virtdev (sort keys %$virtdev_hash) {
5127 my $d = $virtdev_hash->{$virtdev};
5128 my $alloc_size = int(($d->{size} + 1024 - 1)/1024);
5129 my $scfg = PVE::Storage::storage_config($cfg, $d->{storeid});
5130
5131 # test if requested format is supported
5132 my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($cfg, $d->{storeid});
5133 my $supported = grep { $_ eq $d->{format} } @$validFormats;
5134 $d->{format} = $defFormat if !$supported;
5135
5136 my $volid = PVE::Storage::vdisk_alloc($cfg, $d->{storeid}, $vmid,
5137 $d->{format}, undef, $alloc_size);
5138 print STDERR "new volume ID is '$volid'\n";
5139 $d->{volid} = $volid;
5140 my $path = PVE::Storage::path($cfg, $volid);
5141
5142 my $write_zeros = 1;
5143 # fixme: what other storages types initialize volumes with zero?
5144 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs' || $scfg->{type} eq 'glusterfs' ||
5145 $scfg->{type} eq 'sheepdog' || $scfg->{type} eq 'rbd') {
5146 $write_zeros = 0;
5147 }
5148
5149 print $fifofh "${write_zeros}:$d->{devname}=$path\n";
5150
5151 print "map '$d->{devname}' to '$path' (write zeros = ${write_zeros})\n";
5152 $map->{$virtdev} = $volid;
5153 }
5154
5155 $fh->seek(0, 0) || die "seek failed - $!\n";
5156
5157 my $outfd = new IO::File ($tmpfn, "w") ||
5158 die "unable to write config for VM $vmid\n";
5159
5160 my $cookie = { netcount => 0 };
5161 while (defined(my $line = <$fh>)) {
5162 restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
5163 }
5164
5165 $fh->close();
5166 $outfd->close();
5167 };
5168
5169 eval {
5170 # enable interrupts
5171 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
5172 die "interrupted by signal\n";
5173 };
5174 local $SIG{ALRM} = sub { die "got timeout\n"; };
5175
5176 $oldtimeout = alarm($timeout);
5177
5178 my $parser = sub {
5179 my $line = shift;
5180
5181 print "$line\n";
5182
5183 if ($line =~ m/^DEV:\sdev_id=(\d+)\ssize:\s(\d+)\sdevname:\s(\S+)$/) {
5184 my ($dev_id, $size, $devname) = ($1, $2, $3);
5185 $devinfo->{$devname} = { size => $size, dev_id => $dev_id };
5186 } elsif ($line =~ m/^CTIME: /) {
5187 # we correctly received the vma config, so we can disable
5188 # the timeout now for disk allocation (set to 10 minutes, so
5189 # that we always timeout if something goes wrong)
5190 alarm(600);
5191 &$print_devmap();
5192 print $fifofh "done\n";
5193 my $tmp = $oldtimeout || 0;
5194 $oldtimeout = undef;
5195 alarm($tmp);
5196 close($fifofh);
5197 }
5198 };
5199
5200 print "restore vma archive: $cmd\n";
5201 run_command($cmd, input => $input, outfunc => $parser, afterfork => $openfifo);
5202 };
5203 my $err = $@;
5204
5205 alarm($oldtimeout) if $oldtimeout;
5206
5207 unlink $mapfifo;
5208
5209 if ($err) {
5210 rmtree $tmpdir;
5211 unlink $tmpfn;
5212
5213 my $cfg = cfs_read_file('storage.cfg');
5214 foreach my $devname (keys %$devinfo) {
5215 my $volid = $devinfo->{$devname}->{volid};
5216 next if !$volid;
5217 eval {
5218 if ($volid =~ m|^/|) {
5219 unlink $volid || die 'unlink failed\n';
5220 } else {
5221 PVE::Storage::vdisk_free($cfg, $volid);
5222 }
5223 print STDERR "temporary volume '$volid' sucessfuly removed\n";
5224 };
5225 print STDERR "unable to cleanup '$volid' - $@" if $@;
5226 }
5227 die $err;
5228 }
5229
5230 rmtree $tmpdir;
5231
5232 rename($tmpfn, $conffile) ||
5233 die "unable to commit configuration file '$conffile'\n";
5234
5235 PVE::Cluster::cfs_update(); # make sure we read new file
5236
5237 eval { rescan($vmid, 1); };
5238 warn $@ if $@;
5239 }
5240
5241 sub restore_tar_archive {
5242 my ($archive, $vmid, $user, $opts) = @_;
5243
5244 if ($archive ne '-') {
5245 my $firstfile = tar_archive_read_firstfile($archive);
5246 die "ERROR: file '$archive' dos not lock like a QemuServer vzdump backup\n"
5247 if $firstfile ne 'qemu-server.conf';
5248 }
5249
5250 my $storecfg = cfs_read_file('storage.cfg');
5251
5252 # destroy existing data - keep empty config
5253 my $vmcfgfn = config_file($vmid);
5254 destroy_vm($storecfg, $vmid, 1) if -f $vmcfgfn;
5255
5256 my $tocmd = "/usr/lib/qemu-server/qmextract";
5257
5258 $tocmd .= " --storage " . PVE::Tools::shellquote($opts->{storage}) if $opts->{storage};
5259 $tocmd .= " --pool " . PVE::Tools::shellquote($opts->{pool}) if $opts->{pool};
5260 $tocmd .= ' --prealloc' if $opts->{prealloc};
5261 $tocmd .= ' --info' if $opts->{info};
5262
5263 # tar option "xf" does not autodetect compression when read from STDIN,
5264 # so we pipe to zcat
5265 my $cmd = "zcat -f|tar xf " . PVE::Tools::shellquote($archive) . " " .
5266 PVE::Tools::shellquote("--to-command=$tocmd");
5267
5268 my $tmpdir = "/var/tmp/vzdumptmp$$";
5269 mkpath $tmpdir;
5270
5271 local $ENV{VZDUMP_TMPDIR} = $tmpdir;
5272 local $ENV{VZDUMP_VMID} = $vmid;
5273 local $ENV{VZDUMP_USER} = $user;
5274
5275 my $conffile = config_file($vmid);
5276 my $tmpfn = "$conffile.$$.tmp";
5277
5278 # disable interrupts (always do cleanups)
5279 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = sub {
5280 print STDERR "got interrupt - ignored\n";
5281 };
5282
5283 eval {
5284 # enable interrupts
5285 local $SIG{INT} = $SIG{TERM} = $SIG{QUIT} = $SIG{HUP} = $SIG{PIPE} = sub {
5286 die "interrupted by signal\n";
5287 };
5288
5289 if ($archive eq '-') {
5290 print "extracting archive from STDIN\n";
5291 run_command($cmd, input => "<&STDIN");
5292 } else {
5293 print "extracting archive '$archive'\n";
5294 run_command($cmd);
5295 }
5296
5297 return if $opts->{info};
5298
5299 # read new mapping
5300 my $map = {};
5301 my $statfile = "$tmpdir/qmrestore.stat";
5302 if (my $fd = IO::File->new($statfile, "r")) {
5303 while (defined (my $line = <$fd>)) {
5304 if ($line =~ m/vzdump:([^\s:]*):(\S+)$/) {
5305 $map->{$1} = $2 if $1;
5306 } else {
5307 print STDERR "unable to parse line in statfile - $line\n";
5308 }
5309 }
5310 $fd->close();
5311 }
5312
5313 my $confsrc = "$tmpdir/qemu-server.conf";
5314
5315 my $srcfd = new IO::File($confsrc, "r") ||
5316 die "unable to open file '$confsrc'\n";
5317
5318 my $outfd = new IO::File ($tmpfn, "w") ||
5319 die "unable to write config for VM $vmid\n";
5320
5321 my $cookie = { netcount => 0 };
5322 while (defined (my $line = <$srcfd>)) {
5323 restore_update_config_line($outfd, $cookie, $vmid, $map, $line, $opts->{unique});
5324 }
5325
5326 $srcfd->close();
5327 $outfd->close();
5328 };
5329 my $err = $@;
5330
5331 if ($err) {
5332
5333 unlink $tmpfn;
5334
5335 tar_restore_cleanup($storecfg, "$tmpdir/qmrestore.stat") if !$opts->{info};
5336
5337 die $err;
5338 }
5339
5340 rmtree $tmpdir;
5341
5342 rename $tmpfn, $conffile ||
5343 die "unable to commit configuration file '$conffile'\n";
5344
5345 PVE::Cluster::cfs_update(); # make sure we read new file
5346
5347 eval { rescan($vmid, 1); };
5348 warn $@ if $@;
5349 };
5350
5351
5352 # Internal snapshots
5353
5354 # NOTE: Snapshot create/delete involves several non-atomic
5355 # action, and can take a long time.
5356 # So we try to avoid locking the file and use 'lock' variable
5357 # inside the config file instead.
5358
5359 my $snapshot_copy_config = sub {
5360 my ($source, $dest) = @_;
5361
5362 foreach my $k (keys %$source) {
5363 next if $k eq 'snapshots';
5364 next if $k eq 'snapstate';
5365 next if $k eq 'snaptime';
5366 next if $k eq 'vmstate';
5367 next if $k eq 'lock';
5368 next if $k eq 'digest';
5369 next if $k eq 'description';
5370 next if $k =~ m/^unused\d+$/;
5371
5372 $dest->{$k} = $source->{$k};
5373 }
5374 };
5375
5376 my $snapshot_apply_config = sub {
5377 my ($conf, $snap) = @_;
5378
5379 # copy snapshot list
5380 my $newconf = {
5381 snapshots => $conf->{snapshots},
5382 };
5383
5384 # keep description and list of unused disks
5385 foreach my $k (keys %$conf) {
5386 next if !($k =~ m/^unused\d+$/ || $k eq 'description');
5387 $newconf->{$k} = $conf->{$k};
5388 }
5389
5390 &$snapshot_copy_config($snap, $newconf);
5391
5392 return $newconf;
5393 };
5394
5395 sub foreach_writable_storage {
5396 my ($conf, $func) = @_;
5397
5398 my $sidhash = {};
5399
5400 foreach my $ds (keys %$conf) {
5401 next if !valid_drivename($ds);
5402
5403 my $drive = parse_drive($ds, $conf->{$ds});
5404 next if !$drive;
5405 next if drive_is_cdrom($drive);
5406
5407 my $volid = $drive->{file};
5408
5409 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
5410 $sidhash->{$sid} = $sid if $sid;
5411 }
5412
5413 foreach my $sid (sort keys %$sidhash) {
5414 &$func($sid);
5415 }
5416 }
5417
5418 my $alloc_vmstate_volid = sub {
5419 my ($storecfg, $vmid, $conf, $snapname) = @_;
5420
5421 # Note: we try to be smart when selecting a $target storage
5422
5423 my $target;
5424
5425 # search shared storage first
5426 foreach_writable_storage($conf, sub {
5427 my ($sid) = @_;
5428 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
5429 return if !$scfg->{shared};
5430
5431 $target = $sid if !$target || $scfg->{path}; # prefer file based storage
5432 });
5433
5434 if (!$target) {
5435 # now search local storage
5436 foreach_writable_storage($conf, sub {
5437 my ($sid) = @_;
5438 my $scfg = PVE::Storage::storage_config($storecfg, $sid);
5439 return if $scfg->{shared};
5440
5441 $target = $sid if !$target || $scfg->{path}; # prefer file based storage;
5442 });
5443 }
5444
5445 $target = 'local' if !$target;
5446
5447 my $driver_state_size = 500; # assume 32MB is enough to safe all driver state;
5448 # we abort live save after $conf->{memory}, so we need at max twice that space
5449 my $size = $conf->{memory}*2 + $driver_state_size;
5450
5451 my $name = "vm-$vmid-state-$snapname";
5452 my $scfg = PVE::Storage::storage_config($storecfg, $target);
5453 $name .= ".raw" if $scfg->{path}; # add filename extension for file base storage
5454 my $volid = PVE::Storage::vdisk_alloc($storecfg, $target, $vmid, 'raw', $name, $size*1024);
5455
5456 return $volid;
5457 };
5458
5459 my $snapshot_prepare = sub {
5460 my ($vmid, $snapname, $save_vmstate, $comment) = @_;
5461
5462 my $snap;
5463
5464 my $updatefn = sub {
5465
5466 my $conf = load_config($vmid);
5467
5468 die "you can't take a snapshot if it's a template\n"
5469 if is_template($conf);
5470
5471 check_lock($conf);
5472
5473 $conf->{lock} = 'snapshot';
5474
5475 die "snapshot name '$snapname' already used\n"
5476 if defined($conf->{snapshots}->{$snapname});
5477
5478 my $storecfg = PVE::Storage::config();
5479 die "snapshot feature is not available" if !has_feature('snapshot', $conf, $storecfg);
5480
5481 $snap = $conf->{snapshots}->{$snapname} = {};
5482
5483 if ($save_vmstate && check_running($vmid)) {
5484 $snap->{vmstate} = &$alloc_vmstate_volid($storecfg, $vmid, $conf, $snapname);
5485 }
5486
5487 &$snapshot_copy_config($conf, $snap);
5488
5489 $snap->{snapstate} = "prepare";
5490 $snap->{snaptime} = time();
5491 $snap->{description} = $comment if $comment;
5492
5493 # always overwrite machine if we save vmstate. This makes sure we
5494 # can restore it later using correct machine type
5495 $snap->{machine} = get_current_qemu_machine($vmid) if $snap->{vmstate};
5496
5497 update_config_nolock($vmid, $conf, 1);
5498 };
5499
5500 lock_config($vmid, $updatefn);
5501
5502 return $snap;
5503 };
5504
5505 my $snapshot_commit = sub {
5506 my ($vmid, $snapname) = @_;
5507
5508 my $updatefn = sub {
5509
5510 my $conf = load_config($vmid);
5511
5512 die "missing snapshot lock\n"
5513 if !($conf->{lock} && $conf->{lock} eq 'snapshot');
5514
5515 my $has_machine_config = defined($conf->{machine});
5516
5517 my $snap = $conf->{snapshots}->{$snapname};
5518
5519 die "snapshot '$snapname' does not exist\n" if !defined($snap);
5520
5521 die "wrong snapshot state\n"
5522 if !($snap->{snapstate} && $snap->{snapstate} eq "prepare");
5523
5524 delete $snap->{snapstate};
5525 delete $conf->{lock};
5526
5527 my $newconf = &$snapshot_apply_config($conf, $snap);
5528
5529 delete $newconf->{machine} if !$has_machine_config;
5530
5531 $newconf->{parent} = $snapname;
5532
5533 update_config_nolock($vmid, $newconf, 1);
5534 };
5535
5536 lock_config($vmid, $updatefn);
5537 };
5538
5539 sub snapshot_rollback {
5540 my ($vmid, $snapname) = @_;
5541
5542 my $snap;
5543
5544 my $prepare = 1;
5545
5546 my $storecfg = PVE::Storage::config();
5547
5548 my $updatefn = sub {
5549
5550 my $conf = load_config($vmid);
5551
5552 die "you can't rollback if vm is a template\n" if is_template($conf);
5553
5554 $snap = $conf->{snapshots}->{$snapname};
5555
5556 die "snapshot '$snapname' does not exist\n" if !defined($snap);
5557
5558 die "unable to rollback to incomplete snapshot (snapstate = $snap->{snapstate})\n"
5559 if $snap->{snapstate};
5560
5561 if ($prepare) {
5562 check_lock($conf);
5563 vm_stop($storecfg, $vmid, undef, undef, 5, undef, undef);
5564 }
5565
5566 die "unable to rollback vm $vmid: vm is running\n"
5567 if check_running($vmid);
5568
5569 if ($prepare) {
5570 $conf->{lock} = 'rollback';
5571 } else {
5572 die "got wrong lock\n" if !($conf->{lock} && $conf->{lock} eq 'rollback');
5573 delete $conf->{lock};
5574 }
5575
5576 my $forcemachine;
5577
5578 if (!$prepare) {
5579 my $has_machine_config = defined($conf->{machine});
5580
5581 # copy snapshot config to current config
5582 $conf = &$snapshot_apply_config($conf, $snap);
5583 $conf->{parent} = $snapname;
5584
5585 # Note: old code did not store 'machine', so we try to be smart
5586 # and guess the snapshot was generated with kvm 1.4 (pc-i440fx-1.4).
5587 $forcemachine = $conf->{machine} || 'pc-i440fx-1.4';
5588 # we remove the 'machine' configuration if not explicitly specified
5589 # in the original config.
5590 delete $conf->{machine} if $snap->{vmstate} && !$has_machine_config;
5591 }
5592
5593 update_config_nolock($vmid, $conf, 1);
5594
5595 if (!$prepare && $snap->{vmstate}) {
5596 my $statefile = PVE::Storage::path($storecfg, $snap->{vmstate});
5597 vm_start($storecfg, $vmid, $statefile, undef, undef, undef, $forcemachine);
5598 }
5599 };
5600
5601 lock_config($vmid, $updatefn);
5602
5603 foreach_drive($snap, sub {
5604 my ($ds, $drive) = @_;
5605
5606 return if drive_is_cdrom($drive);
5607
5608 my $volid = $drive->{file};
5609 my $device = "drive-$ds";
5610
5611 PVE::Storage::volume_snapshot_rollback($storecfg, $volid, $snapname);
5612 });
5613
5614 $prepare = 0;
5615 lock_config($vmid, $updatefn);
5616 }
5617
5618 my $savevm_wait = sub {
5619 my ($vmid) = @_;
5620
5621 for(;;) {
5622 my $stat = vm_mon_cmd_nocheck($vmid, "query-savevm");
5623 if (!$stat->{status}) {
5624 die "savevm not active\n";
5625 } elsif ($stat->{status} eq 'active') {
5626 sleep(1);
5627 next;
5628 } elsif ($stat->{status} eq 'completed') {
5629 last;
5630 } else {
5631 die "query-savevm returned status '$stat->{status}'\n";
5632 }
5633 }
5634 };
5635
5636 sub snapshot_create {
5637 my ($vmid, $snapname, $save_vmstate, $comment) = @_;
5638
5639 my $snap = &$snapshot_prepare($vmid, $snapname, $save_vmstate, $comment);
5640
5641 $save_vmstate = 0 if !$snap->{vmstate}; # vm is not running
5642
5643 my $config = load_config($vmid);
5644
5645 my $running = check_running($vmid);
5646
5647 my $freezefs = $running && $config->{agent};
5648 $freezefs = 0 if $snap->{vmstate}; # not needed if we save RAM
5649
5650 my $drivehash = {};
5651
5652 if ($freezefs) {
5653 eval { vm_mon_cmd($vmid, "guest-fsfreeze-freeze"); };
5654 warn "guest-fsfreeze-freeze problems - $@" if $@;
5655 }
5656
5657 eval {
5658 # create internal snapshots of all drives
5659
5660 my $storecfg = PVE::Storage::config();
5661
5662 if ($running) {
5663 if ($snap->{vmstate}) {
5664 my $path = PVE::Storage::path($storecfg, $snap->{vmstate});
5665 vm_mon_cmd($vmid, "savevm-start", statefile => $path);
5666 &$savevm_wait($vmid);
5667 } else {
5668 vm_mon_cmd($vmid, "savevm-start");
5669 }
5670 };
5671
5672 foreach_drive($snap, sub {
5673 my ($ds, $drive) = @_;
5674
5675 return if drive_is_cdrom($drive);
5676
5677 my $volid = $drive->{file};
5678 my $device = "drive-$ds";
5679
5680 qemu_volume_snapshot($vmid, $device, $storecfg, $volid, $snapname);
5681 $drivehash->{$ds} = 1;
5682 });
5683 };
5684 my $err = $@;
5685
5686 if ($running) {
5687 eval { vm_mon_cmd($vmid, "savevm-end") };
5688 warn $@ if $@;
5689
5690 if ($freezefs) {
5691 eval { vm_mon_cmd($vmid, "guest-fsfreeze-thaw"); };
5692 warn "guest-fsfreeze-thaw problems - $@" if $@;
5693 }
5694
5695 # savevm-end is async, we need to wait
5696 for (;;) {
5697 my $stat = vm_mon_cmd_nocheck($vmid, "query-savevm");
5698 if (!$stat->{bytes}) {
5699 last;
5700 } else {
5701 print "savevm not yet finished\n";
5702 sleep(1);
5703 next;
5704 }
5705 }
5706 }
5707
5708 if ($err) {
5709 warn "snapshot create failed: starting cleanup\n";
5710 eval { snapshot_delete($vmid, $snapname, 0, $drivehash); };
5711 warn $@ if $@;
5712 die $err;
5713 }
5714
5715 &$snapshot_commit($vmid, $snapname);
5716 }
5717
5718 # Note: $drivehash is only set when called from snapshot_create.
5719 sub snapshot_delete {
5720 my ($vmid, $snapname, $force, $drivehash) = @_;
5721
5722 my $prepare = 1;
5723
5724 my $snap;
5725 my $unused = [];
5726
5727 my $unlink_parent = sub {
5728 my ($confref, $new_parent) = @_;
5729
5730 if ($confref->{parent} && $confref->{parent} eq $snapname) {
5731 if ($new_parent) {
5732 $confref->{parent} = $new_parent;
5733 } else {
5734 delete $confref->{parent};
5735 }
5736 }
5737 };
5738
5739 my $updatefn = sub {
5740 my ($remove_drive) = @_;
5741
5742 my $conf = load_config($vmid);
5743
5744 if (!$drivehash) {
5745 check_lock($conf);
5746 die "you can't delete a snapshot if vm is a template\n"
5747 if is_template($conf);
5748 }
5749
5750 $snap = $conf->{snapshots}->{$snapname};
5751
5752 die "snapshot '$snapname' does not exist\n" if !defined($snap);
5753
5754 # remove parent refs
5755 if (!$prepare) {
5756 &$unlink_parent($conf, $snap->{parent});
5757 foreach my $sn (keys %{$conf->{snapshots}}) {
5758 next if $sn eq $snapname;
5759 &$unlink_parent($conf->{snapshots}->{$sn}, $snap->{parent});
5760 }
5761 }
5762
5763 if ($remove_drive) {
5764 if ($remove_drive eq 'vmstate') {
5765 delete $snap->{$remove_drive};
5766 } else {
5767 my $drive = parse_drive($remove_drive, $snap->{$remove_drive});
5768 my $volid = $drive->{file};
5769 delete $snap->{$remove_drive};
5770 add_unused_volume($conf, $volid);
5771 }
5772 }
5773
5774 if ($prepare) {
5775 $snap->{snapstate} = 'delete';
5776 } else {
5777 delete $conf->{snapshots}->{$snapname};
5778 delete $conf->{lock} if $drivehash;
5779 foreach my $volid (@$unused) {
5780 add_unused_volume($conf, $volid);
5781 }
5782 }
5783
5784 update_config_nolock($vmid, $conf, 1);
5785 };
5786
5787 lock_config($vmid, $updatefn);
5788
5789 # now remove vmstate file
5790
5791 my $storecfg = PVE::Storage::config();
5792
5793 if ($snap->{vmstate}) {
5794 eval { PVE::Storage::vdisk_free($storecfg, $snap->{vmstate}); };
5795 if (my $err = $@) {
5796 die $err if !$force;
5797 warn $err;
5798 }
5799 # save changes (remove vmstate from snapshot)
5800 lock_config($vmid, $updatefn, 'vmstate') if !$force;
5801 };
5802
5803 # now remove all internal snapshots
5804 foreach_drive($snap, sub {
5805 my ($ds, $drive) = @_;
5806
5807 return if drive_is_cdrom($drive);
5808
5809 my $volid = $drive->{file};
5810 my $device = "drive-$ds";
5811
5812 if (!$drivehash || $drivehash->{$ds}) {
5813 eval { qemu_volume_snapshot_delete($vmid, $device, $storecfg, $volid, $snapname); };
5814 if (my $err = $@) {
5815 die $err if !$force;
5816 warn $err;
5817 }
5818 }
5819
5820 # save changes (remove drive fron snapshot)
5821 lock_config($vmid, $updatefn, $ds) if !$force;
5822 push @$unused, $volid;
5823 });
5824
5825 # now cleanup config
5826 $prepare = 0;
5827 lock_config($vmid, $updatefn);
5828 }
5829
5830 sub has_feature {
5831 my ($feature, $conf, $storecfg, $snapname, $running) = @_;
5832
5833 my $err;
5834 foreach_drive($conf, sub {
5835 my ($ds, $drive) = @_;
5836
5837 return if drive_is_cdrom($drive);
5838 my $volid = $drive->{file};
5839 $err = 1 if !PVE::Storage::volume_has_feature($storecfg, $feature, $volid, $snapname, $running);
5840 });
5841
5842 return $err ? 0 : 1;
5843 }
5844
5845 sub template_create {
5846 my ($vmid, $conf, $disk) = @_;
5847
5848 my $storecfg = PVE::Storage::config();
5849
5850 foreach_drive($conf, sub {
5851 my ($ds, $drive) = @_;
5852
5853 return if drive_is_cdrom($drive);
5854 return if $disk && $ds ne $disk;
5855
5856 my $volid = $drive->{file};
5857 return if !PVE::Storage::volume_has_feature($storecfg, 'template', $volid);
5858
5859 my $voliddst = PVE::Storage::vdisk_create_base($storecfg, $volid);
5860 $drive->{file} = $voliddst;
5861 $conf->{$ds} = print_drive($vmid, $drive);
5862 update_config_nolock($vmid, $conf, 1);
5863 });
5864 }
5865
5866 sub is_template {
5867 my ($conf) = @_;
5868
5869 return 1 if defined $conf->{template} && $conf->{template} == 1;
5870 }
5871
5872 sub qemu_img_convert {
5873 my ($src_volid, $dst_volid, $size, $snapname) = @_;
5874
5875 my $storecfg = PVE::Storage::config();
5876 my ($src_storeid, $src_volname) = PVE::Storage::parse_volume_id($src_volid, 1);
5877 my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid, 1);
5878
5879 if ($src_storeid && $dst_storeid) {
5880 my $src_scfg = PVE::Storage::storage_config($storecfg, $src_storeid);
5881 my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
5882
5883 my $src_format = qemu_img_format($src_scfg, $src_volname);
5884 my $dst_format = qemu_img_format($dst_scfg, $dst_volname);
5885
5886 my $src_path = PVE::Storage::path($storecfg, $src_volid, $snapname);
5887 my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
5888
5889 my $cmd = [];
5890 push @$cmd, '/usr/bin/qemu-img', 'convert', '-t', 'writeback', '-p', '-n';
5891 push @$cmd, '-s', $snapname if($snapname && $src_format eq "qcow2");
5892 push @$cmd, '-f', $src_format, '-O', $dst_format, $src_path, $dst_path;
5893
5894 my $parser = sub {
5895 my $line = shift;
5896 if($line =~ m/\((\S+)\/100\%\)/){
5897 my $percent = $1;
5898 my $transferred = int($size * $percent / 100);
5899 my $remaining = $size - $transferred;
5900
5901 print "transferred: $transferred bytes remaining: $remaining bytes total: $size bytes progression: $percent %\n";
5902 }
5903
5904 };
5905
5906 eval { run_command($cmd, timeout => undef, outfunc => $parser); };
5907 my $err = $@;
5908 die "copy failed: $err" if $err;
5909 }
5910 }
5911
5912 sub qemu_img_format {
5913 my ($scfg, $volname) = @_;
5914
5915 if ($scfg->{path} && $volname =~ m/\.(raw|qcow2|qed|vmdk)$/) {
5916 return $1;
5917 } elsif ($scfg->{type} eq 'iscsi') {
5918 return "host_device";
5919 } else {
5920 return "raw";
5921 }
5922 }
5923
5924 sub qemu_drive_mirror {
5925 my ($vmid, $drive, $dst_volid, $vmiddst) = @_;
5926
5927 my $count = 0;
5928 my $old_len = 0;
5929 my $frozen = undef;
5930 my $maxwait = 120;
5931
5932 my $storecfg = PVE::Storage::config();
5933 my ($dst_storeid, $dst_volname) = PVE::Storage::parse_volume_id($dst_volid);
5934
5935 my $dst_scfg = PVE::Storage::storage_config($storecfg, $dst_storeid);
5936
5937 my $format;
5938 if ($dst_volname =~ m/\.(raw|qcow2)$/){
5939 $format = $1;
5940 }
5941
5942 my $dst_path = PVE::Storage::path($storecfg, $dst_volid);
5943
5944 my $opts = { timeout => 10, device => "drive-$drive", mode => "existing", sync => "full", target => $dst_path };
5945 $opts->{format} = $format if $format;
5946
5947 #fixme : sometime drive-mirror timeout, but works fine after.
5948 # (I have see the problem with big volume > 200GB), so we need to eval
5949 eval { vm_mon_cmd($vmid, "drive-mirror", %$opts); };
5950 # ignore errors here
5951
5952 eval {
5953 while (1) {
5954 my $stats = vm_mon_cmd($vmid, "query-block-jobs");
5955 my $stat = @$stats[0];
5956 die "mirroring job seem to have die. Maybe do you have bad sectors?" if !$stat;
5957 die "error job is not mirroring" if $stat->{type} ne "mirror";
5958
5959 my $busy = $stat->{busy};
5960
5961 if (my $total = $stat->{len}) {
5962 my $transferred = $stat->{offset} || 0;
5963 my $remaining = $total - $transferred;
5964 my $percent = sprintf "%.2f", ($transferred * 100 / $total);
5965
5966 print "transferred: $transferred bytes remaining: $remaining bytes total: $total bytes progression: $percent % busy: $busy\n";
5967 }
5968
5969 if ($stat->{len} == $stat->{offset}) {
5970 if ($busy eq 'false') {
5971
5972 last if $vmiddst != $vmid;
5973
5974 # try to switch the disk if source and destination are on the same guest
5975 eval { vm_mon_cmd($vmid, "block-job-complete", device => "drive-$drive") };
5976 last if !$@;
5977 die $@ if $@ !~ m/cannot be completed/;
5978 }
5979
5980 if ($count > $maxwait) {
5981 # if too much writes to disk occurs at the end of migration
5982 #the disk needs to be freezed to be able to complete the migration
5983 vm_suspend($vmid,1);
5984 $frozen = 1;
5985 }
5986 $count ++
5987 }
5988 $old_len = $stat->{offset};
5989 sleep 1;
5990 }
5991
5992 vm_resume($vmid, 1) if $frozen;
5993
5994 };
5995 my $err = $@;
5996
5997 my $cancel_job = sub {
5998 vm_mon_cmd($vmid, "block-job-cancel", device => "drive-$drive");
5999 while (1) {
6000 my $stats = vm_mon_cmd($vmid, "query-block-jobs");
6001 my $stat = @$stats[0];
6002 last if !$stat;
6003 sleep 1;
6004 }
6005 };
6006
6007 if ($err) {
6008 eval { &$cancel_job(); };
6009 die "mirroring error: $err";
6010 }
6011
6012 if ($vmiddst != $vmid) {
6013 # if we clone a disk for a new target vm, we don't switch the disk
6014 &$cancel_job(); # so we call block-job-cancel
6015 }
6016 }
6017
6018 sub clone_disk {
6019 my ($storecfg, $vmid, $running, $drivename, $drive, $snapname,
6020 $newvmid, $storage, $format, $full, $newvollist) = @_;
6021
6022 my $newvolid;
6023
6024 if (!$full) {
6025 print "create linked clone of drive $drivename ($drive->{file})\n";
6026 $newvolid = PVE::Storage::vdisk_clone($storecfg, $drive->{file}, $newvmid, $snapname);
6027 push @$newvollist, $newvolid;
6028 } else {
6029 my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file});
6030 $storeid = $storage if $storage;
6031
6032 my ($defFormat, $validFormats) = PVE::Storage::storage_default_format($storecfg, $storeid);
6033 if (!$format) {
6034 $format = $drive->{format} || $defFormat;
6035 }
6036
6037 # test if requested format is supported - else use default
6038 my $supported = grep { $_ eq $format } @$validFormats;
6039 $format = $defFormat if !$supported;
6040
6041 my ($size) = PVE::Storage::volume_size_info($storecfg, $drive->{file}, 3);
6042
6043 print "create full clone of drive $drivename ($drive->{file})\n";
6044 $newvolid = PVE::Storage::vdisk_alloc($storecfg, $storeid, $newvmid, $format, undef, ($size/1024));
6045 push @$newvollist, $newvolid;
6046
6047 if (!$running || $snapname) {
6048 qemu_img_convert($drive->{file}, $newvolid, $size, $snapname);
6049 } else {
6050 qemu_drive_mirror($vmid, $drivename, $newvolid, $newvmid);
6051 }
6052 }
6053
6054 my ($size) = PVE::Storage::volume_size_info($storecfg, $newvolid, 3);
6055
6056 my $disk = $drive;
6057 $disk->{format} = undef;
6058 $disk->{file} = $newvolid;
6059 $disk->{size} = $size;
6060
6061 return $disk;
6062 }
6063
6064 # this only works if VM is running
6065 sub get_current_qemu_machine {
6066 my ($vmid) = @_;
6067
6068 my $cmd = { execute => 'query-machines', arguments => {} };
6069 my $res = vm_qmp_command($vmid, $cmd);
6070
6071 my ($current, $default);
6072 foreach my $e (@$res) {
6073 $default = $e->{name} if $e->{'is-default'};
6074 $current = $e->{name} if $e->{'is-current'};
6075 }
6076
6077 # fallback to the default machine if current is not supported by qemu
6078 return $current || $default || 'pc';
6079 }
6080
6081 sub lspci {
6082
6083 my $devices = {};
6084
6085 dir_glob_foreach("$pcisysfs/devices", '[a-f0-9]{4}:([a-f0-9]{2}:[a-f0-9]{2})\.([0-9])', sub {
6086 my (undef, $id, $function) = @_;
6087 my $res = { id => $id, function => $function};
6088 push @{$devices->{$id}}, $res;
6089 });
6090
6091 return $devices;
6092 }
6093
6094 1;