]> git.proxmox.com Git - pve-container.git/blob - src/PVE/LXC/Migrate.pm
migrate: pass the with_snapshots parameter
[pve-container.git] / src / PVE / LXC / Migrate.pm
1 package PVE::LXC::Migrate;
2
3 use strict;
4 use warnings;
5 use PVE::AbstractMigrate;
6 use File::Basename;
7 use File::Copy; # fixme: remove
8 use PVE::Tools;
9 use PVE::INotify;
10 use PVE::Cluster;
11 use PVE::Storage;
12 use PVE::LXC::Config;
13 use PVE::LXC;
14 use PVE::ReplicationConfig;
15 use PVE::ReplicationState;
16 use PVE::Replication;
17
18 use base qw(PVE::AbstractMigrate);
19
20 sub lock_vm {
21 my ($self, $vmid, $code, @param) = @_;
22
23 return PVE::LXC::Config->lock_config($vmid, $code, @param);
24 }
25
26 sub prepare {
27 my ($self, $vmid) = @_;
28
29 my $online = $self->{opts}->{online};
30 my $restart= $self->{opts}->{restart};
31
32 $self->{storecfg} = PVE::Storage::config();
33
34 # test if CT exists
35 my $conf = $self->{vmconf} = PVE::LXC::Config->load_config($vmid);
36
37 PVE::LXC::Config->check_lock($conf);
38
39 my $running = 0;
40 if (PVE::LXC::check_running($vmid)) {
41 die "lxc live migration is currently not implemented\n" if $online;
42 die "running container can only be migrated in restart mode" if !$restart;
43 $running = 1;
44 }
45 $self->{was_running} = $running;
46
47 my $force = $self->{opts}->{force} // 0;
48 my $need_activate = [];
49
50 PVE::LXC::Config->foreach_mountpoint($conf, sub {
51 my ($ms, $mountpoint) = @_;
52
53 my $volid = $mountpoint->{volume};
54 my $type = $mountpoint->{type};
55
56 # skip dev/bind mps when forced / shared
57 if ($type ne 'volume') {
58 if ($force) {
59 warn "-force is deprecated, please use the 'shared' property on individual non-volume mount points instead!\n";
60 return;
61 }
62 if ($mountpoint->{shared}) {
63 return;
64 } else {
65 die "cannot migrate local $type mount point '$ms'\n";
66 }
67 }
68
69 my ($storage, $volname) = PVE::Storage::parse_volume_id($volid, 1) if $volid;
70 die "can't determine assigned storage for mount point '$ms'\n" if !$storage;
71
72 # check if storage is available on both nodes
73 my $scfg = PVE::Storage::storage_check_node($self->{storecfg}, $storage);
74 PVE::Storage::storage_check_node($self->{storecfg}, $storage, $self->{node});
75
76
77 if ($scfg->{shared}) {
78 # PVE::Storage::activate_storage checks this for non-shared storages
79 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
80 warn "Used shared storage '$storage' is not online on source node!\n"
81 if !$plugin->check_connection($storage, $scfg);
82 } else {
83 # only activate if not shared
84 push @$need_activate, $volid;
85
86 # unless in restart mode because we shut the container down
87 die "unable to migrate local mount point '$volid' while CT is running"
88 if $running && !$restart;
89 }
90
91 });
92
93 PVE::Storage::activate_volumes($self->{storecfg}, $need_activate);
94
95 # todo: test if VM uses local resources
96
97 # test ssh connection
98 my $cmd = [ @{$self->{rem_ssh}}, '/bin/true' ];
99 eval { $self->cmd_quiet($cmd); };
100 die "Can't connect to destination address using public key\n" if $@;
101
102 # in restart mode, we shutdown the container before migrating
103 if ($restart && $running) {
104 my $timeout = $self->{opts}->{timeout} // 180;
105
106 $self->log('info', "shutdown CT $vmid\n");
107
108 my $cmd = ['lxc-stop', '-n', $vmid, '--timeout', $timeout];
109 $self->cmd($cmd, timeout => $timeout + 5);
110
111 # make sure container is stopped
112 $cmd = ['lxc-wait', '-n', $vmid, '-t', 5, '-s', 'STOPPED'];
113 $self->cmd($cmd);
114
115 $running = 0;
116 }
117
118 return $running;
119 }
120
121 sub phase1 {
122 my ($self, $vmid) = @_;
123
124 $self->log('info', "starting migration of CT $self->{vmid} to node '$self->{node}' ($self->{nodeip})");
125
126 my $conf = $self->{vmconf};
127 $conf->{lock} = 'migrate';
128 PVE::LXC::Config->write_config($vmid, $conf);
129
130 if ($self->{running}) {
131 $self->log('info', "container is running - using online migration");
132 }
133
134 $self->{volumes} = []; # list of already migrated volumes
135 my $volhash = {}; # 'config', 'snapshot' or 'storage' for local volumes
136 my $volhash_errors = {};
137 my $abort = 0;
138
139 my $log_error = sub {
140 my ($msg, $volid) = @_;
141
142 $volhash_errors->{$volid} = $msg if !defined($volhash_errors->{$volid});
143 $abort = 1;
144 };
145
146 my $test_volid = sub {
147 my ($volid, $snapname) = @_;
148
149 return if !$volid;
150
151 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
152
153 # check if storage is available on both nodes
154 my $scfg = PVE::Storage::storage_check_node($self->{storecfg}, $sid);
155 PVE::Storage::storage_check_node($self->{storecfg}, $sid, $self->{node});
156
157 if ($scfg->{shared}) {
158 $self->log('info', "volume '$volid' is on shared storage '$sid'")
159 if !$snapname;
160 return;
161 }
162
163 $volhash->{$volid}->{ref} = defined($snapname) ? 'snapshot' : 'config';
164 $volhash->{$volid}->{snapshots} = defined($snapname);
165
166 my ($path, $owner) = PVE::Storage::path($self->{storecfg}, $volid);
167
168 die "owned by other guest (owner = $owner)\n"
169 if !$owner || ($owner != $self->{vmid});
170
171 if (defined($snapname)) {
172 # we cannot migrate shapshots on local storage
173 # exceptions: 'zfspool'
174 if (($scfg->{type} eq 'zfspool')) {
175 return;
176 }
177 die "non-migratable snapshot exists\n";
178 }
179 };
180
181 my $test_mp = sub {
182 my ($ms, $mountpoint, $snapname) = @_;
183
184 my $volid = $mountpoint->{volume};
185 # already checked in prepare
186 if ($mountpoint->{type} ne 'volume') {
187 $self->log('info', "ignoring shared '$mountpoint->{type}' mount point '$ms' ('$volid')")
188 if !$snapname;
189 return;
190 }
191
192 eval {
193 &$test_volid($volid, $snapname);
194 };
195
196 &$log_error($@, $volid) if $@;
197 };
198
199 # first unused / lost volumes owned by this container
200 my @sids = PVE::Storage::storage_ids($self->{storecfg});
201 foreach my $storeid (@sids) {
202 my $scfg = PVE::Storage::storage_config($self->{storecfg}, $storeid);
203 next if $scfg->{shared};
204 next if !PVE::Storage::storage_check_enabled($self->{storecfg}, $storeid, undef, 1);
205
206 # get list from PVE::Storage (for unused volumes)
207 my $dl = PVE::Storage::vdisk_list($self->{storecfg}, $storeid, $vmid);
208
209 next if @{$dl->{$storeid}} == 0;
210
211 # check if storage is available on target node
212 PVE::Storage::storage_check_node($self->{storecfg}, $storeid, $self->{node});
213
214 PVE::Storage::foreach_volid($dl, sub {
215 my ($volid, $sid, $volname) = @_;
216
217 $volhash->{$volid}->{ref} = 'storage';
218 });
219 }
220
221 # then all volumes referenced in snapshots
222 foreach my $snapname (keys %{$conf->{snapshots}}) {
223 &$test_volid($conf->{snapshots}->{$snapname}->{'vmstate'}, 0, undef)
224 if defined($conf->{snapshots}->{$snapname}->{'vmstate'});
225 PVE::LXC::Config->foreach_mountpoint($conf->{snapshots}->{$snapname}, $test_mp, $snapname);
226 }
227
228 # finally all currently used volumes
229 PVE::LXC::Config->foreach_mountpoint($conf, $test_mp);
230
231
232 # additional checks for local storage
233 foreach my $volid (keys %$volhash) {
234 eval {
235 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
236 my $scfg = PVE::Storage::storage_config($self->{storecfg}, $sid);
237
238 my $migratable = ($scfg->{type} eq 'dir') || ($scfg->{type} eq 'zfspool') ||
239 ($scfg->{type} eq 'lvmthin') || ($scfg->{type} eq 'lvm');
240
241 die "storage type '$scfg->{type}' not supported\n"
242 if !$migratable;
243
244 # image is a linked clone on local storage, se we can't migrate.
245 if (my $basename = (PVE::Storage::parse_volname($self->{storecfg}, $volid))[3]) {
246 die "clone of '$basename'";
247 }
248 };
249 &$log_error($@, $volid) if $@;
250 }
251
252 foreach my $volid (sort keys %$volhash) {
253 my $ref = $volhash->{$volid}->{ref};
254 if ($ref eq 'storage') {
255 $self->log('info', "found local volume '$volid' (via storage)\n");
256 } elsif ($ref eq 'config') {
257 $self->log('info', "found local volume '$volid' (in current VM config)\n");
258 } elsif ($ref eq 'snapshot') {
259 $self->log('info', "found local volume '$volid' (referenced by snapshot(s))\n");
260 } else {
261 $self->log('info', "found local volume '$volid'\n");
262 }
263 }
264
265 foreach my $volid (sort keys %$volhash_errors) {
266 $self->log('warn', "can't migrate local volume '$volid': $volhash_errors->{$volid}");
267 }
268
269 if ($abort) {
270 die "can't migrate CT - check log\n";
271 }
272
273 my $rep_volumes;
274
275 my $rep_cfg = PVE::ReplicationConfig->new();
276
277 if (my $jobcfg = $rep_cfg->find_local_replication_job($vmid, $self->{node})) {
278 die "can't live migrate VM with replicated volumes\n" if $self->{running};
279 my $start_time = time();
280 my $logfunc = sub { my ($msg) = @_; $self->log('info', $msg); };
281 $rep_volumes = PVE::Replication::run_replication(
282 'PVE::LXC::Config', $jobcfg, $start_time, $start_time, $logfunc);
283 }
284
285 my $insecure = $self->{opts}->{migration_type} eq 'insecure';
286 foreach my $volid (keys %$volhash) {
287 next if $rep_volumes->{$volid};
288 my ($sid, $volname) = PVE::Storage::parse_volume_id($volid);
289 push @{$self->{volumes}}, $volid;
290 my $with_snapshots = $volhash->{$volid}->{snapshots};
291 PVE::Storage::storage_migrate($self->{storecfg}, $volid, $self->{ssh_info}, $sid, undef, undef, undef, undef, $insecure, $with_snapshots);
292 }
293
294 my $conffile = PVE::LXC::Config->config_file($vmid);
295 my $newconffile = PVE::LXC::Config->config_file($vmid, $self->{node});
296
297 if ($self->{running}) {
298 die "implement me";
299 }
300
301 # make sure everything on (shared) storage is unmounted
302 # Note: we must be 100% sure, else we get data corruption because
303 # non-shared file system could be mounted twice (on shared storage)
304
305 PVE::LXC::umount_all($vmid, $self->{storecfg}, $conf);
306
307 #to be sure there are no active volumes
308 my $vollist = PVE::LXC::Config->get_vm_volumes($conf);
309 PVE::Storage::deactivate_volumes($self->{storecfg}, $vollist);
310
311 # transfer replication state before move config
312 $self->transfer_replication_state();
313
314 # move config
315 die "Failed to move config to node '$self->{node}' - rename failed: $!\n"
316 if !rename($conffile, $newconffile);
317
318 $self->{conf_migrated} = 1;
319
320 $self->switch_replication_job_target();
321 }
322
323 sub phase1_cleanup {
324 my ($self, $vmid, $err) = @_;
325
326 $self->log('info', "aborting phase 1 - cleanup resources");
327
328 if ($self->{volumes}) {
329 foreach my $volid (@{$self->{volumes}}) {
330 $self->log('err', "found stale volume copy '$volid' on node '$self->{node}'");
331 # fixme: try to remove ?
332 }
333 }
334 }
335
336 sub phase3 {
337 my ($self, $vmid) = @_;
338
339 my $volids = $self->{volumes};
340
341 # destroy local copies
342 foreach my $volid (@$volids) {
343 eval { PVE::Storage::vdisk_free($self->{storecfg}, $volid); };
344 if (my $err = $@) {
345 $self->log('err', "removing local copy of '$volid' failed - $err");
346 $self->{errors} = 1;
347 last if $err =~ /^interrupted by signal$/;
348 }
349 }
350 }
351
352 sub final_cleanup {
353 my ($self, $vmid) = @_;
354
355 $self->log('info', "start final cleanup");
356
357 if (!$self->{conf_migrated}) {
358 my $conf = $self->{vmconf};
359 delete $conf->{lock};
360
361 eval { PVE::LXC::Config->write_config($vmid, $conf); };
362 if (my $err = $@) {
363 $self->log('err', $err);
364 }
365 } else {
366 my $cmd = [ @{$self->{rem_ssh}}, 'pct', 'unlock', $vmid ];
367 $self->cmd_logerr($cmd, errmsg => "failed to clear migrate lock");
368 }
369
370 # in restart mode, we start the container on the target node
371 # after migration
372 if ($self->{opts}->{restart} && $self->{was_running}) {
373 $self->log('info', "start container on target node");
374 my $cmd = [ @{$self->{rem_ssh}}, 'pct', 'start', $vmid];
375 $self->cmd($cmd);
376 }
377 }
378
379 1;