]> git.proxmox.com Git - qemu-server.git/blob - PVE/QemuMigrate.pm
fix local disk migration when no target storage is set
[qemu-server.git] / PVE / QemuMigrate.pm
1 package PVE::QemuMigrate;
2
3 use strict;
4 use warnings;
5 use PVE::AbstractMigrate;
6 use IO::File;
7 use IPC::Open2;
8 use POSIX qw( WNOHANG );
9 use PVE::INotify;
10 use PVE::Tools;
11 use PVE::Cluster;
12 use PVE::Storage;
13 use PVE::QemuServer;
14 use Time::HiRes qw( usleep );
15 use PVE::RPCEnvironment;
16 use PVE::ReplicationConfig;
17 use PVE::ReplicationState;
18 use PVE::Replication;
19
20 use base qw(PVE::AbstractMigrate);
21
22 sub fork_command_pipe {
23 my ($self, $cmd) = @_;
24
25 my $reader = IO::File->new();
26 my $writer = IO::File->new();
27
28 my $orig_pid = $$;
29
30 my $cpid;
31
32 eval { $cpid = open2($reader, $writer, @$cmd); };
33
34 my $err = $@;
35
36 # catch exec errors
37 if ($orig_pid != $$) {
38 $self->log('err', "can't fork command pipe\n");
39 POSIX::_exit(1);
40 kill('KILL', $$);
41 }
42
43 die $err if $err;
44
45 return { writer => $writer, reader => $reader, pid => $cpid };
46 }
47
48 sub finish_command_pipe {
49 my ($self, $cmdpipe, $timeout) = @_;
50
51 my $cpid = $cmdpipe->{pid};
52 return if !defined($cpid);
53
54 my $writer = $cmdpipe->{writer};
55 my $reader = $cmdpipe->{reader};
56
57 $writer->close();
58 $reader->close();
59
60 my $collect_child_process = sub {
61 my $res = waitpid($cpid, WNOHANG);
62 if (defined($res) && ($res == $cpid)) {
63 delete $cmdpipe->{cpid};
64 return 1;
65 } else {
66 return 0;
67 }
68 };
69
70 if ($timeout) {
71 for (my $i = 0; $i < $timeout; $i++) {
72 return if &$collect_child_process();
73 sleep(1);
74 }
75 }
76
77 $self->log('info', "ssh tunnel still running - terminating now with SIGTERM\n");
78 kill(15, $cpid);
79
80 # wait again
81 for (my $i = 0; $i < 10; $i++) {
82 return if &$collect_child_process();
83 sleep(1);
84 }
85
86 $self->log('info', "ssh tunnel still running - terminating now with SIGKILL\n");
87 kill 9, $cpid;
88 sleep 1;
89
90 $self->log('err', "ssh tunnel child process (PID $cpid) couldn't be collected\n")
91 if !&$collect_child_process();
92 }
93
94 sub read_tunnel {
95 my ($self, $tunnel, $timeout) = @_;
96
97 $timeout = 60 if !defined($timeout);
98
99 my $reader = $tunnel->{reader};
100
101 my $output;
102 eval {
103 PVE::Tools::run_with_timeout($timeout, sub { $output = <$reader>; });
104 };
105 die "reading from tunnel failed: $@\n" if $@;
106
107 chomp $output;
108
109 return $output;
110 }
111
112 sub write_tunnel {
113 my ($self, $tunnel, $timeout, $command) = @_;
114
115 $timeout = 60 if !defined($timeout);
116
117 my $writer = $tunnel->{writer};
118
119 eval {
120 PVE::Tools::run_with_timeout($timeout, sub {
121 print $writer "$command\n";
122 $writer->flush();
123 });
124 };
125 die "writing to tunnel failed: $@\n" if $@;
126
127 if ($tunnel->{version} && $tunnel->{version} >= 1) {
128 my $res = eval { $self->read_tunnel($tunnel, 10); };
129 die "no reply to command '$command': $@\n" if $@;
130
131 if ($res eq 'OK') {
132 return;
133 } else {
134 die "tunnel replied '$res' to command '$command'\n";
135 }
136 }
137 }
138
139 sub fork_tunnel {
140 my ($self, $tunnel_addr) = @_;
141
142 my @localtunnelinfo = defined($tunnel_addr) ? ('-L' , $tunnel_addr ) : ();
143
144 my $cmd = [@{$self->{rem_ssh}}, '-o ExitOnForwardFailure=yes', @localtunnelinfo, '/usr/sbin/qm', 'mtunnel' ];
145
146 my $tunnel = $self->fork_command_pipe($cmd);
147
148 eval {
149 my $helo = $self->read_tunnel($tunnel, 60);
150 die "no reply\n" if !$helo;
151 die "no quorum on target node\n" if $helo =~ m/^no quorum$/;
152 die "got strange reply from mtunnel ('$helo')\n"
153 if $helo !~ m/^tunnel online$/;
154 };
155 my $err = $@;
156
157 eval {
158 my $ver = $self->read_tunnel($tunnel, 10);
159 if ($ver =~ /^ver (\d+)$/) {
160 $tunnel->{version} = $1;
161 $self->log('info', "ssh tunnel $ver\n");
162 } else {
163 $err = "received invalid tunnel version string '$ver'\n" if !$err;
164 }
165 };
166
167 if ($err) {
168 $self->finish_command_pipe($tunnel);
169 die "can't open migration tunnel - $err";
170 }
171 return $tunnel;
172 }
173
174 sub finish_tunnel {
175 my ($self, $tunnel) = @_;
176
177 eval { $self->write_tunnel($tunnel, 30, 'quit'); };
178 my $err = $@;
179
180 $self->finish_command_pipe($tunnel, 30);
181
182 if ($tunnel->{sock_addr}) {
183 # ssh does not clean up on local host
184 my $cmd = ['rm', '-f', $tunnel->{sock_addr}]; #
185 PVE::Tools::run_command($cmd);
186
187 # .. and just to be sure check on remote side
188 unshift @{$cmd}, @{$self->{rem_ssh}};
189 PVE::Tools::run_command($cmd);
190 }
191
192 die $err if $err;
193 }
194
195 sub lock_vm {
196 my ($self, $vmid, $code, @param) = @_;
197
198 return PVE::QemuConfig->lock_config($vmid, $code, @param);
199 }
200
201 sub prepare {
202 my ($self, $vmid) = @_;
203
204 my $online = $self->{opts}->{online};
205
206 $self->{storecfg} = PVE::Storage::config();
207
208 # test if VM exists
209 my $conf = $self->{vmconf} = PVE::QemuConfig->load_config($vmid);
210
211 PVE::QemuConfig->check_lock($conf);
212
213 my $running = 0;
214 if (my $pid = PVE::QemuServer::check_running($vmid)) {
215 die "can't migrate running VM without --online\n" if !$online;
216 $running = $pid;
217
218 $self->{forcemachine} = PVE::QemuServer::qemu_machine_pxe($vmid, $conf);
219
220 }
221
222 if (my $loc_res = PVE::QemuServer::check_local_resources($conf, 1)) {
223 if ($self->{running} || !$self->{opts}->{force}) {
224 die "can't migrate VM which uses local devices\n";
225 } else {
226 $self->log('info', "migrating VM which uses local devices");
227 }
228 }
229
230 my $vollist = PVE::QemuServer::get_vm_volumes($conf);
231
232 my $need_activate = [];
233 foreach my $volid (@$vollist) {
234 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid, 1);
235
236 # check if storage is available on both nodes
237 my $targetsid = $self->{opts}->{targetstorage} ? $self->{opts}->{targetstorage} : $sid;
238
239 my $scfg = PVE::Storage::storage_check_node($self->{storecfg}, $sid);
240 PVE::Storage::storage_check_node($self->{storecfg}, $targetsid, $self->{node});
241
242 if ($scfg->{shared}) {
243 # PVE::Storage::activate_storage checks this for non-shared storages
244 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
245 warn "Used shared storage '$sid' is not online on source node!\n"
246 if !$plugin->check_connection($sid, $scfg);
247 } else {
248 # only activate if not shared
249 push @$need_activate, $volid;
250 }
251 }
252
253 # activate volumes
254 PVE::Storage::activate_volumes($self->{storecfg}, $need_activate);
255
256 # test ssh connection
257 my $cmd = [ @{$self->{rem_ssh}}, '/bin/true' ];
258 eval { $self->cmd_quiet($cmd); };
259 die "Can't connect to destination address using public key\n" if $@;
260
261 return $running;
262 }
263
264 sub sync_disks {
265 my ($self, $vmid) = @_;
266
267 my $conf = $self->{vmconf};
268
269 # local volumes which have been copied
270 $self->{volumes} = [];
271
272 eval {
273
274 # found local volumes and their origin
275 my $local_volumes = {};
276 my $local_volumes_errors = {};
277 my $other_errors = [];
278 my $abort = 0;
279
280 my $sharedvm = 1;
281
282 my $log_error = sub {
283 my ($msg, $volid) = @_;
284
285 if (defined($volid)) {
286 $local_volumes_errors->{$volid} = $msg;
287 } else {
288 push @$other_errors, $msg;
289 }
290 $abort = 1;
291 };
292
293 my @sids = PVE::Storage::storage_ids($self->{storecfg});
294 foreach my $storeid (@sids) {
295 my $scfg = PVE::Storage::storage_config($self->{storecfg}, $storeid);
296 next if $scfg->{shared};
297 next if !PVE::Storage::storage_check_enabled($self->{storecfg}, $storeid, undef, 1);
298
299 # get list from PVE::Storage (for unused volumes)
300 my $dl = PVE::Storage::vdisk_list($self->{storecfg}, $storeid, $vmid);
301
302 next if @{$dl->{$storeid}} == 0;
303
304 my $targetsid = $self->{opts}->{targetstorage} ? $self->{opts}->{targetstorage} : $storeid;
305
306 # check if storage is available on target node
307 PVE::Storage::storage_check_node($self->{storecfg}, $targetsid, $self->{node});
308 $sharedvm = 0; # there is a non-shared disk
309
310 PVE::Storage::foreach_volid($dl, sub {
311 my ($volid, $sid, $volname) = @_;
312
313 $local_volumes->{$volid}->{ref} = 'storage';
314 });
315 }
316
317 my $test_volid = sub {
318 my ($volid, $attr) = @_;
319
320 if ($volid =~ m|^/|) {
321 return if $attr->{shared};
322 $local_volumes->{$volid}->{ref} = 'config';
323 die "local file/device\n";
324 }
325
326 my $snaprefs = $attr->{referenced_in_snapshot};
327
328 if ($attr->{cdrom}) {
329 if ($volid eq 'cdrom') {
330 my $msg = "can't migrate local cdrom drive";
331 if (defined($snaprefs) && !$attr->{referenced_in_config}) {
332 my $snapnames = join(', ', sort keys %$snaprefs);
333 $msg .= " (referenced in snapshot - $snapnames)";
334 }
335 &$log_error("$msg\n");
336 return;
337 }
338 return if $volid eq 'none';
339 }
340
341 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
342
343 my $targetsid = $self->{opts}->{targetstorage} ? $self->{opts}->{targetstorage} : $sid;
344 # check if storage is available on both nodes
345 my $scfg = PVE::Storage::storage_check_node($self->{storecfg}, $sid);
346 PVE::Storage::storage_check_node($self->{storecfg}, $targetsid, $self->{node});
347
348 return if $scfg->{shared};
349
350 $sharedvm = 0;
351
352 $local_volumes->{$volid}->{ref} = $attr->{referenced_in_config} ? 'config' : 'snapshot';
353
354 die "local cdrom image\n" if $attr->{cdrom};
355
356 my ($path, $owner) = PVE::Storage::path($self->{storecfg}, $volid);
357
358 die "owned by other VM (owner = VM $owner)\n"
359 if !$owner || ($owner != $self->{vmid});
360
361 my $format = PVE::QemuServer::qemu_img_format($scfg, $volname);
362 $local_volumes->{$volid}->{snapshots} = defined($snaprefs) || ($format =~ /^(?:qcow2|vmdk)$/);
363 if (defined($snaprefs)) {
364 # we cannot migrate shapshots on local storage
365 # exceptions: 'zfspool' or 'qcow2' files (on directory storage)
366
367 die "online storage migration not possible if snapshot exists\n" if $self->{running};
368 if (!($scfg->{type} eq 'zfspool' || $format eq 'qcow2')) {
369 die "non-migratable snapshot exists\n";
370 }
371 }
372
373 die "referenced by linked clone(s)\n"
374 if PVE::Storage::volume_is_base_and_used($self->{storecfg}, $volid);
375 };
376
377 PVE::QemuServer::foreach_volid($conf, sub {
378 my ($volid, $attr) = @_;
379 eval { $test_volid->($volid, $attr); };
380 if (my $err = $@) {
381 &$log_error($err, $volid);
382 }
383 });
384
385 foreach my $vol (sort keys %$local_volumes) {
386 my $ref = $local_volumes->{$vol}->{ref};
387 if ($ref eq 'storage') {
388 $self->log('info', "found local disk '$vol' (via storage)\n");
389 } elsif ($ref eq 'config') {
390 &$log_error("can't live migrate attached local disks without with-local-disks option\n", $vol)
391 if $self->{running} && !$self->{opts}->{"with-local-disks"};
392 $self->log('info', "found local disk '$vol' (in current VM config)\n");
393 } elsif ($ref eq 'snapshot') {
394 $self->log('info', "found local disk '$vol' (referenced by snapshot(s))\n");
395 } else {
396 $self->log('info', "found local disk '$vol'\n");
397 }
398 }
399
400 foreach my $vol (sort keys %$local_volumes_errors) {
401 $self->log('warn', "can't migrate local disk '$vol': $local_volumes_errors->{$vol}");
402 }
403 foreach my $err (@$other_errors) {
404 $self->log('warn', "$err");
405 }
406
407 if ($abort) {
408 die "can't migrate VM - check log\n";
409 }
410
411 # additional checks for local storage
412 foreach my $volid (keys %$local_volumes) {
413 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
414 my $scfg = PVE::Storage::storage_config($self->{storecfg}, $sid);
415
416 my $migratable = ($scfg->{type} eq 'dir') || ($scfg->{type} eq 'zfspool') ||
417 ($scfg->{type} eq 'lvmthin') || ($scfg->{type} eq 'lvm');
418
419 die "can't migrate '$volid' - storage type '$scfg->{type}' not supported\n"
420 if !$migratable;
421
422 # image is a linked clone on local storage, se we can't migrate.
423 if (my $basename = (PVE::Storage::parse_volname($self->{storecfg}, $volid))[3]) {
424 die "can't migrate '$volid' as it's a clone of '$basename'";
425 }
426 }
427
428 my $rep_volumes;
429
430 $self->log('info', "copying disk images");
431
432 my $rep_cfg = PVE::ReplicationConfig->new();
433
434 if (my $jobcfg = $rep_cfg->find_local_replication_job($vmid, $self->{node})) {
435 die "can't live migrate VM with replicated volumes\n" if $self->{running};
436 my $start_time = time();
437 my $logfunc = sub { my ($msg) = @_; $self->log('info', $msg); };
438 $rep_volumes = PVE::Replication::run_replication(
439 'PVE::QemuConfig', $jobcfg, $start_time, $start_time, $logfunc);
440 $self->{replicated_volumes} = $rep_volumes;
441 }
442
443 foreach my $volid (keys %$local_volumes) {
444 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
445 my $targetsid = $self->{opts}->{targetstorage} ? $self->{opts}->{targetstorage} : $sid;
446 if ($self->{running} && $local_volumes->{$volid}->{ref} eq 'config') {
447 push @{$self->{online_local_volumes}}, $volid;
448 } else {
449 next if $rep_volumes->{$volid};
450 push @{$self->{volumes}}, $volid;
451 my $insecure = $self->{opts}->{migration_type} eq 'insecure';
452 my $with_snapshots = $local_volumes->{$volid}->{snapshots};
453 PVE::Storage::storage_migrate($self->{storecfg}, $volid, $self->{ssh_info}, $targetsid,
454 undef, undef, undef, undef, $insecure, $with_snapshots);
455 }
456 }
457 };
458 die "Failed to sync data - $@" if $@;
459 }
460
461 sub cleanup_remotedisks {
462 my ($self) = @_;
463
464 foreach my $target_drive (keys %{$self->{target_drive}}) {
465
466 my $drive = PVE::QemuServer::parse_drive($target_drive, $self->{target_drive}->{$target_drive}->{volid});
467 my ($storeid, $volname) = PVE::Storage::parse_volume_id($drive->{file});
468
469 my $cmd = [@{$self->{rem_ssh}}, 'pvesm', 'free', "$storeid:$volname"];
470
471 eval{ PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {}) };
472 if (my $err = $@) {
473 $self->log('err', $err);
474 $self->{errors} = 1;
475 }
476 }
477 }
478
479 sub phase1 {
480 my ($self, $vmid) = @_;
481
482 $self->log('info', "starting migration of VM $vmid to node '$self->{node}' ($self->{nodeip})");
483
484 my $conf = $self->{vmconf};
485
486 # set migrate lock in config file
487 $conf->{lock} = 'migrate';
488 PVE::QemuConfig->write_config($vmid, $conf);
489
490 sync_disks($self, $vmid);
491
492 };
493
494 sub phase1_cleanup {
495 my ($self, $vmid, $err) = @_;
496
497 $self->log('info', "aborting phase 1 - cleanup resources");
498
499 my $conf = $self->{vmconf};
500 delete $conf->{lock};
501 eval { PVE::QemuConfig->write_config($vmid, $conf) };
502 if (my $err = $@) {
503 $self->log('err', $err);
504 }
505
506 if ($self->{volumes}) {
507 foreach my $volid (@{$self->{volumes}}) {
508 $self->log('err', "found stale volume copy '$volid' on node '$self->{node}'");
509 # fixme: try to remove ?
510 }
511 }
512 }
513
514 sub phase2 {
515 my ($self, $vmid) = @_;
516
517 my $conf = $self->{vmconf};
518
519 $self->log('info', "starting VM $vmid on remote node '$self->{node}'");
520
521 my $raddr;
522 my $rport;
523 my $ruri; # the whole migration dst. URI (protocol:address[:port])
524 my $nodename = PVE::INotify::nodename();
525
526 ## start on remote node
527 my $cmd = [@{$self->{rem_ssh}}];
528
529 my $spice_ticket;
530 if (PVE::QemuServer::vga_conf_has_spice($conf->{vga})) {
531 my $res = PVE::QemuServer::vm_mon_cmd($vmid, 'query-spice');
532 $spice_ticket = $res->{ticket};
533 }
534
535 push @$cmd , 'qm', 'start', $vmid, '--skiplock', '--migratedfrom', $nodename;
536
537 my $migration_type = $self->{opts}->{migration_type};
538
539 push @$cmd, '--migration_type', $migration_type;
540
541 push @$cmd, '--migration_network', $self->{opts}->{migration_network}
542 if $self->{opts}->{migration_network};
543
544 if ($migration_type eq 'insecure') {
545 push @$cmd, '--stateuri', 'tcp';
546 } else {
547 push @$cmd, '--stateuri', 'unix';
548 }
549
550 if ($self->{forcemachine}) {
551 push @$cmd, '--machine', $self->{forcemachine};
552 }
553
554 if ($self->{online_local_volumes}) {
555 push @$cmd, '--targetstorage', ($self->{opts}->{targetstorage} // '1');
556 }
557
558 my $spice_port;
559
560 # Note: We try to keep $spice_ticket secret (do not pass via command line parameter)
561 # instead we pipe it through STDIN
562 PVE::Tools::run_command($cmd, input => $spice_ticket, outfunc => sub {
563 my $line = shift;
564
565 if ($line =~ m/^migration listens on tcp:(localhost|[\d\.]+|\[[\d\.:a-fA-F]+\]):(\d+)$/) {
566 $raddr = $1;
567 $rport = int($2);
568 $ruri = "tcp:$raddr:$rport";
569 }
570 elsif ($line =~ m!^migration listens on unix:(/run/qemu-server/(\d+)\.migrate)$!) {
571 $raddr = $1;
572 die "Destination UNIX sockets VMID does not match source VMID" if $vmid ne $2;
573 $ruri = "unix:$raddr";
574 }
575 elsif ($line =~ m/^migration listens on port (\d+)$/) {
576 $raddr = "localhost";
577 $rport = int($1);
578 $ruri = "tcp:$raddr:$rport";
579 }
580 elsif ($line =~ m/^spice listens on port (\d+)$/) {
581 $spice_port = int($1);
582 }
583 elsif ($line =~ m/^storage migration listens on nbd:(localhost|[\d\.]+|\[[\d\.:a-fA-F]+\]):(\d+):exportname=(\S+) volume:(\S+)$/) {
584 my $volid = $4;
585 my $nbd_uri = "nbd:$1:$2:exportname=$3";
586 my $targetdrive = $3;
587 $targetdrive =~ s/drive-//g;
588
589 $self->{target_drive}->{$targetdrive}->{volid} = $volid;
590 $self->{target_drive}->{$targetdrive}->{nbd_uri} = $nbd_uri;
591
592 }
593 }, errfunc => sub {
594 my $line = shift;
595 $self->log('info', $line);
596 });
597
598 die "unable to detect remote migration address\n" if !$raddr;
599
600 $self->log('info', "start remote tunnel");
601
602 if ($migration_type eq 'secure') {
603
604 if ($ruri =~ /^unix:/) {
605 unlink $raddr;
606 $self->{tunnel} = $self->fork_tunnel("$raddr:$raddr");
607 $self->{tunnel}->{sock_addr} = $raddr;
608
609 my $unix_socket_try = 0; # wait for the socket to become ready
610 while (! -S $raddr) {
611 $unix_socket_try++;
612 if ($unix_socket_try > 100) {
613 $self->{errors} = 1;
614 $self->finish_tunnel($self->{tunnel});
615 die "Timeout, migration socket $ruri did not get ready";
616 }
617
618 usleep(50000);
619 }
620
621 } elsif ($ruri =~ /^tcp:/) {
622 my $tunnel_addr;
623 if ($raddr eq "localhost") {
624 # for backwards compatibility with older qemu-server versions
625 my $pfamily = PVE::Tools::get_host_address_family($nodename);
626 my $lport = PVE::Tools::next_migrate_port($pfamily);
627 $tunnel_addr = "$lport:localhost:$rport";
628 }
629
630 $self->{tunnel} = $self->fork_tunnel($tunnel_addr);
631
632 } else {
633 die "unsupported protocol in migration URI: $ruri\n";
634 }
635 } else {
636 #fork tunnel for insecure migration, to send faster commands like resume
637 $self->{tunnel} = $self->fork_tunnel();
638 }
639
640 my $start = time();
641
642 if ($self->{opts}->{targetstorage} && defined($self->{online_local_volumes})) {
643 $self->{storage_migration} = 1;
644 $self->{storage_migration_jobs} = {};
645 $self->log('info', "starting storage migration");
646
647 die "The number of local disks does not match between the source and the destination.\n"
648 if (scalar(keys %{$self->{target_drive}}) != scalar @{$self->{online_local_volumes}});
649 foreach my $drive (keys %{$self->{target_drive}}){
650 my $nbd_uri = $self->{target_drive}->{$drive}->{nbd_uri};
651 $self->log('info', "$drive: start migration to $nbd_uri");
652 PVE::QemuServer::qemu_drive_mirror($vmid, $drive, $nbd_uri, $vmid, undef, $self->{storage_migration_jobs}, 1);
653 }
654 }
655
656 $self->log('info', "starting online/live migration on $ruri");
657 $self->{livemigration} = 1;
658
659 # load_defaults
660 my $defaults = PVE::QemuServer::load_defaults();
661
662 # always set migrate speed (overwrite kvm default of 32m)
663 # we set a very hight default of 8192m which is basically unlimited
664 my $migrate_speed = $defaults->{migrate_speed} || 8192;
665 $migrate_speed = $conf->{migrate_speed} || $migrate_speed;
666 $migrate_speed = $migrate_speed * 1048576;
667 $self->log('info', "migrate_set_speed: $migrate_speed");
668 eval {
669 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate_set_speed", value => int($migrate_speed));
670 };
671 $self->log('info', "migrate_set_speed error: $@") if $@;
672
673 my $migrate_downtime = $defaults->{migrate_downtime};
674 $migrate_downtime = $conf->{migrate_downtime} if defined($conf->{migrate_downtime});
675 if (defined($migrate_downtime)) {
676 $self->log('info', "migrate_set_downtime: $migrate_downtime");
677 eval {
678 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate_set_downtime", value => int($migrate_downtime*100)/100);
679 };
680 $self->log('info', "migrate_set_downtime error: $@") if $@;
681 }
682
683 $self->log('info', "set migration_caps");
684 eval {
685 PVE::QemuServer::set_migration_caps($vmid);
686 };
687 warn $@ if $@;
688
689 # set cachesize to 10% of the total memory
690 my $memory = $conf->{memory} || $defaults->{memory};
691 my $cachesize = int($memory * 1048576 / 10);
692 $cachesize = round_powerof2($cachesize);
693
694 $self->log('info', "set cachesize: $cachesize");
695 eval {
696 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate-set-cache-size", value => int($cachesize));
697 };
698 $self->log('info', "migrate-set-cache-size error: $@") if $@;
699
700 if (PVE::QemuServer::vga_conf_has_spice($conf->{vga})) {
701 my $rpcenv = PVE::RPCEnvironment::get();
702 my $authuser = $rpcenv->get_user();
703
704 my (undef, $proxyticket) = PVE::AccessControl::assemble_spice_ticket($authuser, $vmid, $self->{node});
705
706 my $filename = "/etc/pve/nodes/$self->{node}/pve-ssl.pem";
707 my $subject = PVE::AccessControl::read_x509_subject_spice($filename);
708
709 $self->log('info', "spice client_migrate_info");
710
711 eval {
712 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "client_migrate_info", protocol => 'spice',
713 hostname => $proxyticket, 'tls-port' => $spice_port,
714 'cert-subject' => $subject);
715 };
716 $self->log('info', "client_migrate_info error: $@") if $@;
717
718 }
719
720 $self->log('info', "start migrate command to $ruri");
721 eval {
722 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate", uri => $ruri);
723 };
724 my $merr = $@;
725 $self->log('info', "migrate uri => $ruri failed: $merr") if $merr;
726
727 my $lstat = 0;
728 my $usleep = 1000000;
729 my $i = 0;
730 my $err_count = 0;
731 my $lastrem = undef;
732 my $downtimecounter = 0;
733 while (1) {
734 $i++;
735 my $avglstat = $lstat/$i if $lstat;
736
737 usleep($usleep);
738 my $stat;
739 eval {
740 $stat = PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "query-migrate");
741 };
742 if (my $err = $@) {
743 $err_count++;
744 warn "query migrate failed: $err\n";
745 $self->log('info', "query migrate failed: $err");
746 if ($err_count <= 5) {
747 usleep(1000000);
748 next;
749 }
750 die "too many query migrate failures - aborting\n";
751 }
752
753 if (defined($stat->{status}) && $stat->{status} =~ m/^(setup)$/im) {
754 sleep(1);
755 next;
756 }
757
758 if (defined($stat->{status}) && $stat->{status} =~ m/^(active|completed|failed|cancelled)$/im) {
759 $merr = undef;
760 $err_count = 0;
761 if ($stat->{status} eq 'completed') {
762 my $delay = time() - $start;
763 if ($delay > 0) {
764 my $mbps = sprintf "%.2f", $memory / $delay;
765 my $downtime = $stat->{downtime} || 0;
766 $self->log('info', "migration speed: $mbps MB/s - downtime $downtime ms");
767 }
768 }
769
770 if ($stat->{status} eq 'failed' || $stat->{status} eq 'cancelled') {
771 $self->log('info', "migration status error: $stat->{status}");
772 die "aborting\n"
773 }
774
775 if ($stat->{status} ne 'active') {
776 $self->log('info', "migration status: $stat->{status}");
777 last;
778 }
779
780 if ($stat->{ram}->{transferred} ne $lstat) {
781 my $trans = $stat->{ram}->{transferred} || 0;
782 my $rem = $stat->{ram}->{remaining} || 0;
783 my $total = $stat->{ram}->{total} || 0;
784 my $xbzrlecachesize = $stat->{"xbzrle-cache"}->{"cache-size"} || 0;
785 my $xbzrlebytes = $stat->{"xbzrle-cache"}->{"bytes"} || 0;
786 my $xbzrlepages = $stat->{"xbzrle-cache"}->{"pages"} || 0;
787 my $xbzrlecachemiss = $stat->{"xbzrle-cache"}->{"cache-miss"} || 0;
788 my $xbzrleoverflow = $stat->{"xbzrle-cache"}->{"overflow"} || 0;
789 # reduce sleep if remainig memory is lower than the average transfer speed
790 $usleep = 100000 if $avglstat && $rem < $avglstat;
791
792 $self->log('info', "migration status: $stat->{status} (transferred ${trans}, " .
793 "remaining ${rem}), total ${total})");
794
795 if (${xbzrlecachesize}) {
796 $self->log('info', "migration xbzrle cachesize: ${xbzrlecachesize} transferred ${xbzrlebytes} pages ${xbzrlepages} cachemiss ${xbzrlecachemiss} overflow ${xbzrleoverflow}");
797 }
798
799 if (($lastrem && $rem > $lastrem ) || ($rem == 0)) {
800 $downtimecounter++;
801 }
802 $lastrem = $rem;
803
804 if ($downtimecounter > 5) {
805 $downtimecounter = 0;
806 $migrate_downtime *= 2;
807 $self->log('info', "migrate_set_downtime: $migrate_downtime");
808 eval {
809 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate_set_downtime", value => int($migrate_downtime*100)/100);
810 };
811 $self->log('info', "migrate_set_downtime error: $@") if $@;
812 }
813
814 }
815
816
817 $lstat = $stat->{ram}->{transferred};
818
819 } else {
820 die $merr if $merr;
821 die "unable to parse migration status '$stat->{status}' - aborting\n";
822 }
823 }
824 }
825
826 sub phase2_cleanup {
827 my ($self, $vmid, $err) = @_;
828
829 return if !$self->{errors};
830 $self->{phase2errors} = 1;
831
832 $self->log('info', "aborting phase 2 - cleanup resources");
833
834 $self->log('info', "migrate_cancel");
835 eval {
836 PVE::QemuServer::vm_mon_cmd_nocheck($vmid, "migrate_cancel");
837 };
838 $self->log('info', "migrate_cancel error: $@") if $@;
839
840 my $conf = $self->{vmconf};
841 delete $conf->{lock};
842 eval { PVE::QemuConfig->write_config($vmid, $conf) };
843 if (my $err = $@) {
844 $self->log('err', $err);
845 }
846
847 # cleanup ressources on target host
848 if ($self->{storage_migration}) {
849
850 eval { PVE::QemuServer::qemu_blockjobs_cancel($vmid, $self->{storage_migration_jobs}) };
851 if (my $err = $@) {
852 $self->log('err', $err);
853 }
854
855 eval { PVE::QemuMigrate::cleanup_remotedisks($self) };
856 if (my $err = $@) {
857 $self->log('err', $err);
858 }
859 }
860
861 my $nodename = PVE::INotify::nodename();
862
863 my $cmd = [@{$self->{rem_ssh}}, 'qm', 'stop', $vmid, '--skiplock', '--migratedfrom', $nodename];
864 eval{ PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {}) };
865 if (my $err = $@) {
866 $self->log('err', $err);
867 $self->{errors} = 1;
868 }
869
870 if ($self->{tunnel}) {
871 eval { finish_tunnel($self, $self->{tunnel}); };
872 if (my $err = $@) {
873 $self->log('err', $err);
874 $self->{errors} = 1;
875 }
876 }
877 }
878
879 sub phase3 {
880 my ($self, $vmid) = @_;
881
882 my $volids = $self->{volumes};
883 return if $self->{phase2errors};
884
885 # destroy local copies
886 foreach my $volid (@$volids) {
887 eval { PVE::Storage::vdisk_free($self->{storecfg}, $volid); };
888 if (my $err = $@) {
889 $self->log('err', "removing local copy of '$volid' failed - $err");
890 $self->{errors} = 1;
891 last if $err =~ /^interrupted by signal$/;
892 }
893 }
894 }
895
896 sub phase3_cleanup {
897 my ($self, $vmid, $err) = @_;
898
899 my $conf = $self->{vmconf};
900 return if $self->{phase2errors};
901
902 my $tunnel = $self->{tunnel};
903
904 if ($self->{storage_migration}) {
905 # finish block-job
906 eval { PVE::QemuServer::qemu_drive_mirror_monitor($vmid, undef, $self->{storage_migration_jobs}); };
907
908 if (my $err = $@) {
909 eval { PVE::QemuServer::qemu_blockjobs_cancel($vmid, $self->{storage_migration_jobs}) };
910 eval { PVE::QemuMigrate::cleanup_remotedisks($self) };
911 die "Failed to completed storage migration\n";
912 } else {
913 foreach my $target_drive (keys %{$self->{target_drive}}) {
914 my $drive = PVE::QemuServer::parse_drive($target_drive, $self->{target_drive}->{$target_drive}->{volid});
915 $conf->{$target_drive} = PVE::QemuServer::print_drive($vmid, $drive);
916 PVE::QemuConfig->write_config($vmid, $conf);
917 }
918 }
919 }
920
921 # transfer replication state before move config
922 $self->transfer_replication_state() if $self->{replicated_volumes};
923
924 # move config to remote node
925 my $conffile = PVE::QemuConfig->config_file($vmid);
926 my $newconffile = PVE::QemuConfig->config_file($vmid, $self->{node});
927
928 die "Failed to move config to node '$self->{node}' - rename failed: $!\n"
929 if !rename($conffile, $newconffile);
930
931 $self->switch_replication_job_target() if $self->{replicated_volumes};
932
933 if ($self->{livemigration}) {
934 if ($self->{storage_migration}) {
935 # stop nbd server on remote vm - requirement for resume since 2.9
936 my $cmd = [@{$self->{rem_ssh}}, 'qm', 'nbdstop', $vmid];
937
938 eval{ PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {}) };
939 if (my $err = $@) {
940 $self->log('err', $err);
941 $self->{errors} = 1;
942 }
943 }
944
945 # config moved and nbd server stopped - now we can resume vm on target
946 if ($tunnel && $tunnel->{version} && $tunnel->{version} >= 1) {
947 eval {
948 $self->write_tunnel($tunnel, 30, "resume $vmid");
949 };
950 if (my $err = $@) {
951 $self->log('err', $err);
952 $self->{errors} = 1;
953 }
954 } else {
955 my $cmd = [@{$self->{rem_ssh}}, 'qm', 'resume', $vmid, '--skiplock', '--nocheck'];
956 my $logf = sub {
957 my $line = shift;
958 $self->log('err', $line);
959 };
960 eval { PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => $logf); };
961 if (my $err = $@) {
962 $self->log('err', $err);
963 $self->{errors} = 1;
964 }
965 }
966
967 if ($self->{storage_migration} && PVE::QemuServer::parse_guest_agent($conf)->{fstrim_cloned_disks} && $self->{running}) {
968 my $cmd = [@{$self->{rem_ssh}}, 'qm', 'guest', 'cmd', $vmid, 'fstrim'];
969 eval{ PVE::Tools::run_command($cmd, outfunc => sub {}, errfunc => sub {}) };
970 }
971 }
972
973 # close tunnel on successful migration, on error phase2_cleanup closed it
974 if ($tunnel) {
975 eval { finish_tunnel($self, $tunnel); };
976 if (my $err = $@) {
977 $self->log('err', $err);
978 $self->{errors} = 1;
979 }
980 }
981
982 eval {
983 my $timer = 0;
984 if (PVE::QemuServer::vga_conf_has_spice($conf->{vga}) && $self->{running}) {
985 $self->log('info', "Waiting for spice server migration");
986 while (1) {
987 my $res = PVE::QemuServer::vm_mon_cmd_nocheck($vmid, 'query-spice');
988 last if int($res->{'migrated'}) == 1;
989 last if $timer > 50;
990 $timer ++;
991 usleep(200000);
992 }
993 }
994 };
995
996 # always stop local VM
997 eval { PVE::QemuServer::vm_stop($self->{storecfg}, $vmid, 1, 1); };
998 if (my $err = $@) {
999 $self->log('err', "stopping vm failed - $err");
1000 $self->{errors} = 1;
1001 }
1002
1003 # always deactivate volumes - avoid lvm LVs to be active on several nodes
1004 eval {
1005 my $vollist = PVE::QemuServer::get_vm_volumes($conf);
1006 PVE::Storage::deactivate_volumes($self->{storecfg}, $vollist);
1007 };
1008 if (my $err = $@) {
1009 $self->log('err', $err);
1010 $self->{errors} = 1;
1011 }
1012
1013 if($self->{storage_migration}) {
1014 # destroy local copies
1015 my $volids = $self->{online_local_volumes};
1016
1017 foreach my $volid (@$volids) {
1018 eval { PVE::Storage::vdisk_free($self->{storecfg}, $volid); };
1019 if (my $err = $@) {
1020 $self->log('err', "removing local copy of '$volid' failed - $err");
1021 $self->{errors} = 1;
1022 last if $err =~ /^interrupted by signal$/;
1023 }
1024 }
1025
1026 }
1027
1028 # clear migrate lock
1029 my $cmd = [ @{$self->{rem_ssh}}, 'qm', 'unlock', $vmid ];
1030 $self->cmd_logerr($cmd, errmsg => "failed to clear migrate lock");
1031 }
1032
1033 sub final_cleanup {
1034 my ($self, $vmid) = @_;
1035
1036 # nothing to do
1037 }
1038
1039 sub round_powerof2 {
1040 return 1 if $_[0] < 2;
1041 return 2 << int(log($_[0]-1)/log(2));
1042 }
1043
1044 1;