]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage.pm
migrate: don't include the hostname in rsync's rsh command
[pve-storage.git] / PVE / Storage.pm
CommitLineData
b6cf0a66
DM
1package PVE::Storage;
2
3use strict;
ffd6f2f3 4use warnings;
dec97937 5use Data::Dumper;
ffd6f2f3 6
b6cf0a66
DM
7use POSIX;
8use IO::Select;
b6cf0a66 9use IO::File;
7ba34faa 10use IO::Socket::IP;
b6cf0a66
DM
11use File::Basename;
12use File::Path;
b6cf0a66 13use Cwd 'abs_path';
7a2d5c1a 14use Socket;
b6cf0a66 15
4dee23d3 16use PVE::Tools qw(run_command file_read_firstline dir_glob_foreach $IPV6RE);
83d7192f 17use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
b6cf0a66
DM
18use PVE::Exception qw(raise_param_exc);
19use PVE::JSONSchema;
20use PVE::INotify;
88c3abaf 21use PVE::RPCEnvironment;
b6cf0a66 22
1dc01b9f
DM
23use PVE::Storage::Plugin;
24use PVE::Storage::DirPlugin;
25use PVE::Storage::LVMPlugin;
610798bc 26use PVE::Storage::LvmThinPlugin;
1dc01b9f
DM
27use PVE::Storage::NFSPlugin;
28use PVE::Storage::ISCSIPlugin;
0509010d 29use PVE::Storage::RBDPlugin;
caf1960c 30use PVE::Storage::SheepdogPlugin;
86616554 31use PVE::Storage::ISCSIDirectPlugin;
f4648aef 32use PVE::Storage::GlusterfsPlugin;
85fda4dd 33use PVE::Storage::ZFSPoolPlugin;
4f914e6e 34use PVE::Storage::ZFSPlugin;
14770890 35use PVE::Storage::DRBDPlugin;
b6cf0a66 36
4dee23d3
DP
37# Storage API version. Icrement it on changes in storage API interface.
38use constant APIVER => 1;
39
40# load standard plugins
1dc01b9f
DM
41PVE::Storage::DirPlugin->register();
42PVE::Storage::LVMPlugin->register();
610798bc 43PVE::Storage::LvmThinPlugin->register();
1dc01b9f
DM
44PVE::Storage::NFSPlugin->register();
45PVE::Storage::ISCSIPlugin->register();
0509010d 46PVE::Storage::RBDPlugin->register();
caf1960c 47PVE::Storage::SheepdogPlugin->register();
86616554 48PVE::Storage::ISCSIDirectPlugin->register();
f4648aef 49PVE::Storage::GlusterfsPlugin->register();
85fda4dd 50PVE::Storage::ZFSPoolPlugin->register();
4f914e6e 51PVE::Storage::ZFSPlugin->register();
14770890 52PVE::Storage::DRBDPlugin->register();
4dee23d3
DP
53
54# load third-party plugins
55if ( -d '/usr/share/perl5/PVE/Storage/Custom' ) {
56 dir_glob_foreach('/usr/share/perl5/PVE/Storage/Custom', '.*\.pm$', sub {
57 my ($file) = @_;
58 my $modname = 'PVE::Storage::Custom::' . $file;
59 $modname =~ s!\.pm$!!;
60 $file = 'PVE/Storage/Custom/' . $file;
61
62 eval {
63 require $file;
64 };
65 if ($@) {
66 warn $@;
67 # Check storage API version and that file is really storage plugin.
68 } elsif ($modname->isa('PVE::Storage::Plugin') && $modname->can('api') && $modname->api() == APIVER) {
69 eval {
70 import $file;
71 $modname->register();
72 };
73 warn $@ if $@;
74 } else {
75 warn "Error loading storage plugin \"$modname\" because of API version mismatch. Please, update it.\n"
76 }
77 });
78}
79
80# initialize all plugins
1dc01b9f 81PVE::Storage::Plugin->init();
b6cf0a66 82
1dc01b9f 83my $UDEVADM = '/sbin/udevadm';
b6cf0a66 84
1dc01b9f 85# PVE::Storage utility functions
b6cf0a66
DM
86
87sub config {
88 return cfs_read_file("storage.cfg");
89}
90
83d7192f
FG
91sub write_config {
92 my ($cfg) = @_;
93
94 cfs_write_file('storage.cfg', $cfg);
95}
96
b6cf0a66
DM
97sub lock_storage_config {
98 my ($code, $errmsg) = @_;
99
100 cfs_lock_file("storage.cfg", undef, $code);
101 my $err = $@;
102 if ($err) {
103 $errmsg ? die "$errmsg: $err" : die $err;
104 }
105}
106
b6cf0a66
DM
107sub storage_config {
108 my ($cfg, $storeid, $noerr) = @_;
109
82fc923f 110 die "no storage ID specified\n" if !$storeid;
1a3459ac 111
b6cf0a66
DM
112 my $scfg = $cfg->{ids}->{$storeid};
113
114 die "storage '$storeid' does not exists\n" if (!$noerr && !$scfg);
115
116 return $scfg;
117}
118
119sub storage_check_node {
120 my ($cfg, $storeid, $node, $noerr) = @_;
121
1dc01b9f 122 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
123
124 if ($scfg->{nodes}) {
125 $node = PVE::INotify::nodename() if !$node || ($node eq 'localhost');
126 if (!$scfg->{nodes}->{$node}) {
da156fb3 127 die "storage '$storeid' is not available on node '$node'\n" if !$noerr;
b6cf0a66
DM
128 return undef;
129 }
130 }
131
132 return $scfg;
133}
134
135sub storage_check_enabled {
136 my ($cfg, $storeid, $node, $noerr) = @_;
137
1dc01b9f 138 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
139
140 if ($scfg->{disable}) {
141 die "storage '$storeid' is disabled\n" if !$noerr;
142 return undef;
143 }
144
145 return storage_check_node($cfg, $storeid, $node, $noerr);
146}
147
148sub storage_ids {
149 my ($cfg) = @_;
150
1dc01b9f 151 return keys %{$cfg->{ids}};
b6cf0a66
DM
152}
153
1dc01b9f
DM
154sub file_size_info {
155 my ($filename, $timeout) = @_;
b6cf0a66 156
1dc01b9f 157 return PVE::Storage::Plugin::file_size_info($filename, $timeout);
b6cf0a66
DM
158}
159
20ccac1b
AD
160sub volume_size_info {
161 my ($cfg, $volid, $timeout) = @_;
162
f18199e5
DM
163 my ($storeid, $volname) = parse_volume_id($volid, 1);
164 if ($storeid) {
165 my $scfg = storage_config($cfg, $storeid);
166 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
167 return $plugin->volume_size_info($scfg, $storeid, $volname, $timeout);
168 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
169 return file_size_info($volid, $timeout);
170 } else {
171 return 0;
172 }
20ccac1b
AD
173}
174
7e6c05dc
AD
175sub volume_resize {
176 my ($cfg, $volid, $size, $running) = @_;
177
178 my ($storeid, $volname) = parse_volume_id($volid, 1);
179 if ($storeid) {
180 my $scfg = storage_config($cfg, $storeid);
181 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
182 return $plugin->volume_resize($scfg, $storeid, $volname, $size, $running);
183 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 184 die "resize file/device '$volid' is not possible\n";
7e6c05dc 185 } else {
f824c722 186 die "unable to parse volume ID '$volid'\n";
7e6c05dc
AD
187 }
188}
189
1597f1f9
WL
190sub volume_rollback_is_possible {
191 my ($cfg, $volid, $snap) = @_;
e0852ba7 192
1597f1f9
WL
193 my ($storeid, $volname) = parse_volume_id($volid, 1);
194 if ($storeid) {
195 my $scfg = storage_config($cfg, $storeid);
196 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
197 return $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
198 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 199 die "snapshot rollback file/device '$volid' is not possible\n";
1597f1f9 200 } else {
f824c722 201 die "unable to parse volume ID '$volid'\n";
1597f1f9
WL
202 }
203}
204
db60719c 205sub volume_snapshot {
f5640e7d 206 my ($cfg, $volid, $snap) = @_;
db60719c
AD
207
208 my ($storeid, $volname) = parse_volume_id($volid, 1);
209 if ($storeid) {
210 my $scfg = storage_config($cfg, $storeid);
211 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
f5640e7d 212 return $plugin->volume_snapshot($scfg, $storeid, $volname, $snap);
db60719c 213 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 214 die "snapshot file/device '$volid' is not possible\n";
db60719c 215 } else {
f824c722 216 die "unable to parse volume ID '$volid'\n";
db60719c
AD
217 }
218}
219
22a2a633
AD
220sub volume_snapshot_rollback {
221 my ($cfg, $volid, $snap) = @_;
222
223 my ($storeid, $volname) = parse_volume_id($volid, 1);
224 if ($storeid) {
225 my $scfg = storage_config($cfg, $storeid);
226 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b3f302c6 227 $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
22a2a633
AD
228 return $plugin->volume_snapshot_rollback($scfg, $storeid, $volname, $snap);
229 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 230 die "snapshot rollback file/device '$volid' is not possible\n";
22a2a633 231 } else {
f824c722 232 die "unable to parse volume ID '$volid'\n";
22a2a633
AD
233 }
234}
235
5753c9d1
AD
236sub volume_snapshot_delete {
237 my ($cfg, $volid, $snap, $running) = @_;
238
239 my ($storeid, $volname) = parse_volume_id($volid, 1);
240 if ($storeid) {
241 my $scfg = storage_config($cfg, $storeid);
242 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
27cc55d4 243 return $plugin->volume_snapshot_delete($scfg, $storeid, $volname, $snap, $running);
5753c9d1 244 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 245 die "snapshot delete file/device '$volid' is not possible\n";
5753c9d1 246 } else {
f824c722 247 die "unable to parse volume ID '$volid'\n";
5753c9d1
AD
248 }
249}
250
99473759
AD
251sub volume_has_feature {
252 my ($cfg, $feature, $volid, $snap, $running) = @_;
253
254 my ($storeid, $volname) = parse_volume_id($volid, 1);
255 if ($storeid) {
256 my $scfg = storage_config($cfg, $storeid);
257 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
258 return $plugin->volume_has_feature($scfg, $feature, $storeid, $volname, $snap, $running);
259 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
260 return undef;
261 } else {
262 return undef;
263 }
264}
265
aefe82ea 266sub volume_snapshot_list {
8b622c2d 267 my ($cfg, $volid) = @_;
aefe82ea
WL
268
269 my ($storeid, $volname) = parse_volume_id($volid, 1);
270 if ($storeid) {
271 my $scfg = storage_config($cfg, $storeid);
272 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
8b622c2d 273 return $plugin->volume_snapshot_list($scfg, $storeid, $volname);
aefe82ea
WL
274 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
275 die "send file/device '$volid' is not possible\n";
276 } else {
277 die "unable to parse volume ID '$volid'\n";
278 }
279 # return an empty array if dataset does not exist.
aefe82ea
WL
280}
281
1dc01b9f
DM
282sub get_image_dir {
283 my ($cfg, $storeid, $vmid) = @_;
b6cf0a66 284
1dc01b9f
DM
285 my $scfg = storage_config($cfg, $storeid);
286 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 287
1dc01b9f 288 my $path = $plugin->get_subdir($scfg, 'images');
b6cf0a66 289
1dc01b9f 290 return $vmid ? "$path/$vmid" : $path;
b6cf0a66
DM
291}
292
1dc01b9f 293sub get_private_dir {
b6cf0a66
DM
294 my ($cfg, $storeid, $vmid) = @_;
295
1dc01b9f
DM
296 my $scfg = storage_config($cfg, $storeid);
297 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 298
1dc01b9f 299 my $path = $plugin->get_subdir($scfg, 'rootdir');
d22a6133 300
1dc01b9f 301 return $vmid ? "$path/$vmid" : $path;
d22a6133
DM
302}
303
b6cf0a66
DM
304sub get_iso_dir {
305 my ($cfg, $storeid) = @_;
306
1dc01b9f
DM
307 my $scfg = storage_config($cfg, $storeid);
308 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 309
1dc01b9f 310 return $plugin->get_subdir($scfg, 'iso');
b6cf0a66
DM
311}
312
313sub get_vztmpl_dir {
314 my ($cfg, $storeid) = @_;
315
1dc01b9f
DM
316 my $scfg = storage_config($cfg, $storeid);
317 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 318
1dc01b9f 319 return $plugin->get_subdir($scfg, 'vztmpl');
b6cf0a66
DM
320}
321
568de3d1
DM
322sub get_backup_dir {
323 my ($cfg, $storeid) = @_;
324
1dc01b9f
DM
325 my $scfg = storage_config($cfg, $storeid);
326 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 327
1dc01b9f 328 return $plugin->get_subdir($scfg, 'backup');
b6cf0a66
DM
329}
330
331# library implementation
332
b6cf0a66
DM
333sub parse_vmid {
334 my $vmid = shift;
335
336 die "VMID '$vmid' contains illegal characters\n" if $vmid !~ m/^\d+$/;
337
338 return int($vmid);
339}
340
787624df
FG
341# NOTE: basename and basevmid are always undef for LVM-thin, where the
342# clone -> base reference is not encoded in the volume ID.
343# see note in PVE::Storage::LvmThinPlugin for details.
ec4b0dc7
AD
344sub parse_volname {
345 my ($cfg, $volid) = @_;
346
347 my ($storeid, $volname) = parse_volume_id($volid);
348
349 my $scfg = storage_config($cfg, $storeid);
350
351 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
a6f12626
DM
352
353 # returns ($vtype, $name, $vmid, $basename, $basevmid, $isBase, $format)
354
ec4b0dc7
AD
355 return $plugin->parse_volname($volname);
356}
357
b6cf0a66
DM
358sub parse_volume_id {
359 my ($volid, $noerr) = @_;
360
a7f3d909 361 return PVE::Storage::Plugin::parse_volume_id($volid, $noerr);
b6cf0a66
DM
362}
363
04a13668
DM
364# test if we have read access to volid
365sub check_volume_access {
366 my ($rpcenv, $user, $cfg, $vmid, $volid) = @_;
367
368 my ($sid, $volname) = parse_volume_id($volid, 1);
369 if ($sid) {
370 my ($vtype, undef, $ownervm) = parse_volname($cfg, $volid);
371 if ($vtype eq 'iso' || $vtype eq 'vztmpl') {
372 # we simply allow access
373 } elsif (defined($ownervm) && defined($vmid) && ($ownervm == $vmid)) {
374 # we are owner - allow access
375 } elsif ($vtype eq 'backup' && $ownervm) {
376 $rpcenv->check($user, "/storage/$sid", ['Datastore.AllocateSpace']);
377 $rpcenv->check($user, "/vms/$ownervm", ['VM.Backup']);
378 } else {
379 # allow if we are Datastore administrator
380 $rpcenv->check($user, "/storage/$sid", ['Datastore.Allocate']);
381 }
382 } else {
383 die "Only root can pass arbitrary filesystem paths."
384 if $user ne 'root@pam';
385 }
386
387 return undef;
388}
389
17fb7e42
FG
390my $volume_is_base_and_used__no_lock = sub {
391 my ($scfg, $storeid, $plugin, $volname) = @_;
392
393 my ($vtype, $name, $vmid, undef, undef, $isBase, undef) =
394 $plugin->parse_volname($volname);
395
396 if ($isBase) {
397 my $vollist = $plugin->list_images($storeid, $scfg);
398 foreach my $info (@$vollist) {
399 my (undef, $tmpvolname) = parse_volume_id($info->{volid});
400 my $basename = undef;
401 my $basevmid = undef;
402
403 eval{
404 (undef, undef, undef, $basename, $basevmid) =
405 $plugin->parse_volname($tmpvolname);
406 };
407
408 if ($basename && defined($basevmid) && $basevmid == $vmid && $basename eq $name) {
409 return 1;
410 }
411 }
412 }
413 return 0;
414};
415
787624df
FG
416# NOTE: this check does not work for LVM-thin, where the clone -> base
417# reference is not encoded in the volume ID.
418# see note in PVE::Storage::LvmThinPlugin for details.
17fb7e42
FG
419sub volume_is_base_and_used {
420 my ($cfg, $volid) = @_;
421
422 my ($storeid, $volname) = parse_volume_id($volid);
423 my $scfg = storage_config($cfg, $storeid);
424 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
425
426 $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
427 return &$volume_is_base_and_used__no_lock($scfg, $storeid, $plugin, $volname);
428 });
429}
430
b6cf0a66
DM
431# try to map a filesystem path to a volume identifier
432sub path_to_volume_id {
433 my ($cfg, $path) = @_;
434
435 my $ids = $cfg->{ids};
436
1dc01b9f 437 my ($sid, $volname) = parse_volume_id($path, 1);
b6cf0a66 438 if ($sid) {
1dc01b9f 439 if (my $scfg = $ids->{$sid}) {
188aca38 440 if ($scfg->{path}) {
1dc01b9f
DM
441 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
442 my ($vtype, $name, $vmid) = $plugin->parse_volname($volname);
b6cf0a66
DM
443 return ($vtype, $path);
444 }
445 }
446 return ('');
447 }
448
1a3459ac 449 # Note: abs_path() return undef if $path doesn not exist
75d75990
DM
450 # for example when nfs storage is not mounted
451 $path = abs_path($path) || $path;
b6cf0a66
DM
452
453 foreach my $sid (keys %$ids) {
1dc01b9f
DM
454 my $scfg = $ids->{$sid};
455 next if !$scfg->{path};
456 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
457 my $imagedir = $plugin->get_subdir($scfg, 'images');
458 my $isodir = $plugin->get_subdir($scfg, 'iso');
459 my $tmpldir = $plugin->get_subdir($scfg, 'vztmpl');
460 my $backupdir = $plugin->get_subdir($scfg, 'backup');
461 my $privatedir = $plugin->get_subdir($scfg, 'rootdir');
b6cf0a66
DM
462
463 if ($path =~ m!^$imagedir/(\d+)/([^/\s]+)$!) {
464 my $vmid = $1;
465 my $name = $2;
fcbec654
DM
466
467 my $vollist = $plugin->list_images($sid, $scfg, $vmid);
468 foreach my $info (@$vollist) {
469 my ($storeid, $volname) = parse_volume_id($info->{volid});
470 my $volpath = $plugin->path($scfg, $volname, $storeid);
471 if ($volpath eq $path) {
472 return ('images', $info->{volid});
473 }
474 }
b6cf0a66
DM
475 } elsif ($path =~ m!^$isodir/([^/]+\.[Ii][Ss][Oo])$!) {
476 my $name = $1;
1a3459ac 477 return ('iso', "$sid:iso/$name");
b6cf0a66
DM
478 } elsif ($path =~ m!^$tmpldir/([^/]+\.tar\.gz)$!) {
479 my $name = $1;
480 return ('vztmpl', "$sid:vztmpl/$name");
1ac17c74
DM
481 } elsif ($path =~ m!^$privatedir/(\d+)$!) {
482 my $vmid = $1;
483 return ('rootdir', "$sid:rootdir/$vmid");
a22854e5 484 } elsif ($path =~ m!^$backupdir/([^/]+\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo))$!) {
568de3d1 485 my $name = $1;
1a3459ac 486 return ('iso', "$sid:backup/$name");
b6cf0a66
DM
487 }
488 }
489
490 # can't map path to volume id
491 return ('');
492}
493
494sub path {
207ea852 495 my ($cfg, $volid, $snapname) = @_;
b6cf0a66 496
1dc01b9f 497 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 498
1dc01b9f 499 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 500
1dc01b9f 501 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
207ea852 502 my ($path, $owner, $vtype) = $plugin->path($scfg, $volname, $storeid, $snapname);
2494896a 503 return wantarray ? ($path, $owner, $vtype) : $path;
b6cf0a66
DM
504}
505
35fbb2e6
DM
506sub abs_filesystem_path {
507 my ($cfg, $volid) = @_;
508
509 my $path;
510 if (PVE::Storage::parse_volume_id ($volid, 1)) {
511 PVE::Storage::activate_volumes($cfg, [ $volid ]);
512 $path = PVE::Storage::path($cfg, $volid);
513 } else {
514 if (-f $volid) {
515 my $abspath = abs_path($volid);
516 if ($abspath && $abspath =~ m|^(/.+)$|) {
517 $path = $1; # untaint any path
518 }
519 }
520 }
521
522 die "can't find file '$volid'\n" if !($path && -f $path);
523
524 return $path;
525}
526
b6cf0a66 527sub storage_migrate {
7ba34faa 528 my ($cfg, $volid, $target_sshinfo, $target_storeid, $target_volname, $base_snapshot, $snapshot, $ratelimit_bps, $insecure) = @_;
b6cf0a66 529
6bf56298 530 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66
DM
531 $target_volname = $volname if !$target_volname;
532
6bf56298 533 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
534
535 # no need to migrate shared content
536 return if $storeid eq $target_storeid && $scfg->{shared};
537
6bf56298 538 my $tcfg = storage_config($cfg, $target_storeid);
b6cf0a66
DM
539
540 my $target_volid = "${target_storeid}:${target_volname}";
541
4b4c580d
WB
542 my $target_ip = $target_sshinfo->{ip};
543 my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_sshinfo->{name}'";
b6cf0a66 544
acd27197 545 my $ssh = PVE::Cluster::ssh_info_to_command($target_sshinfo);
47cea194
WB
546 my $ssh_base = PVE::Cluster::ssh_info_to_command_base($target_sshinfo);
547 local $ENV{RSYNC_RSH} = PVE::Tools::cmd2string($ssh_base);
b6cf0a66 548
ac191ec7
WB
549 my $no_incremental = sub {
550 my ($type) = @_;
551 die "incremental migration not supported on storage type $type\n"
552 if defined($base_snapshot);
553 };
dc769537
WB
554 my $no_snapshot = sub {
555 my ($type) = @_;
556 # $snapshot is currently only used by replication
557 die "replicating storage migration not supported on storage type $type\n"
558 if defined($snapshot);
559 };
ac191ec7 560
01f7e902
WB
561 my @cstream = ([ '/usr/bin/cstream', '-t', $ratelimit_bps ])
562 if defined($ratelimit_bps);
563
1dc01b9f
DM
564 # only implemented for file system based storage
565 if ($scfg->{path}) {
ac191ec7 566 $no_incremental->($scfg->{type});
dc769537 567 $no_snapshot->($scfg->{type});
b6cf0a66 568
ac191ec7 569 if ($tcfg->{path}) {
1dc01b9f
DM
570 my $src_plugin = PVE::Storage::Plugin->lookup($scfg->{type});
571 my $dst_plugin = PVE::Storage::Plugin->lookup($tcfg->{type});
6bf56298
DM
572 my $src = $src_plugin->path($scfg, $volname, $storeid);
573 my $dst = $dst_plugin->path($tcfg, $target_volname, $target_storeid);
b6cf0a66 574
1dc01b9f 575 my $dirname = dirname($dst);
b6cf0a66
DM
576
577 if ($tcfg->{shared}) { # we can do a local copy
1a3459ac 578
f81372ac 579 run_command(['/bin/mkdir', '-p', $dirname]);
b6cf0a66 580
1dc01b9f 581 run_command(['/bin/cp', $src, $dst]);
b6cf0a66 582
1dc01b9f 583 } else {
acd27197 584 run_command([@$ssh, '/bin/mkdir', '-p', $dirname]);
b6cf0a66 585
1dc01b9f
DM
586 # we use rsync with --sparse, so we can't use --inplace,
587 # so we remove file on the target if it already exists to
588 # save space
589 my ($size, $format) = PVE::Storage::Plugin::file_size_info($src);
590 if ($format && ($format eq 'raw') && $size) {
acd27197 591 run_command([@$ssh, 'rm', '-f', $dst],
1dc01b9f
DM
592 outfunc => sub {});
593 }
b6cf0a66 594
986303ca 595 my $cmd;
01f7e902 596 my @bwlimit = ("--bwlimit=${ratelimit_bps}b") if defined($ratelimit_bps);
986303ca
WL
597 if ($format eq 'subvol') {
598 $cmd = ['/usr/bin/rsync', '--progress', '-X', '-A', '--numeric-ids',
599 '-aH', '--delete', '--no-whole-file', '--inplace',
01f7e902 600 '--one-file-system', @bwlimit,
4b4c580d 601 "$src/", "[root\@${target_ip}]:$dst"];
986303ca
WL
602 } else {
603 $cmd = ['/usr/bin/rsync', '--progress', '--sparse', '--whole-file',
01f7e902 604 @bwlimit,
4b4c580d 605 $src, "[root\@${target_ip}]:$dst"];
986303ca 606 }
b6cf0a66 607
1dc01b9f 608 my $percent = -1;
b6cf0a66 609
1dc01b9f
DM
610 run_command($cmd, outfunc => sub {
611 my $line = shift;
b6cf0a66 612
1dc01b9f
DM
613 if ($line =~ m/^\s*(\d+\s+(\d+)%\s.*)$/) {
614 if ($2 > $percent) {
615 $percent = $2;
616 print "rsync status: $1\n";
617 *STDOUT->flush();
618 }
619 } else {
620 print "$line\n";
621 *STDOUT->flush();
622 }
623 });
624 }
625 } else {
626 die "$errstr - target type '$tcfg->{type}' not implemented\n";
627 }
e0852ba7 628
3d621977
WL
629 } elsif ($scfg->{type} eq 'zfspool') {
630
e0852ba7 631 if ($tcfg->{type} eq 'zfspool') {
3d621977 632
82fc923f 633 die "$errstr - pool on target does not have the same name as on source!"
e0852ba7 634 if $tcfg->{pool} ne $scfg->{pool};
3d621977 635
b57a863a
WB
636 my $migration_snapshot;
637 if (!defined($snapshot)) {
638 $migration_snapshot = 1;
639 $snapshot = '__migration__';
640 }
dc769537 641
e0852ba7 642 my (undef, $volname) = parse_volname($cfg, $volid);
3d621977
WL
643 my $zfspath = "$scfg->{pool}\/$volname";
644
b57a863a 645 my @formats = volume_transfer_formats($cfg, $volid, $volid, $snapshot, $base_snapshot, 1);
7459cb3d
WB
646 die "cannot migrate from storage type '$scfg->{type}' to '$tcfg->{type}'\n" if !@formats;
647 my $format = $formats[0];
648
7ba34faa
WB
649 my @insecurecmd;
650 if ($insecure) {
651 @insecurecmd = ('pvecm', 'mtunnel', '-run-command', 1);
652 if (my $network = $target_sshinfo->{network}) {
653 push @insecurecmd, '-migration_network', $network;
654 }
655 }
656
b57a863a 657 my $send = ['pvesm', 'export', $volid, $format, '-', '-snapshot', $snapshot, '-with-snapshots', '1'];
7ba34faa 658 my $recv = [@$ssh, @insecurecmd, '--', 'pvesm', 'import', $volid, $format, '-', '-with-snapshots', '1'];
b57a863a
WB
659 if ($migration_snapshot) {
660 push @$recv, '-delete-snapshot', $snapshot;
661 }
3d621977 662
ac191ec7
WB
663 if (defined($base_snapshot)) {
664 # Check if the snapshot exists on the remote side:
7459cb3d 665 push @$send, '-base', $base_snapshot;
ac191ec7
WB
666 push @$recv, '-base', $base_snapshot;
667 }
668
b57a863a 669 volume_snapshot($cfg, $volid, $snapshot) if $migration_snapshot;
7459cb3d 670 eval {
7ba34faa
WB
671 if ($insecure) {
672 my $pid = open(my $info, '-|', @$recv)
673 or die "receive command failed: $!\n";
674 my $ip = <$info> // die "no tunnel IP received\n";
675 my $port = <$info> // die "no tunnel port received\n";
676 chomp($ip, $port);
677 my $socket = IO::Socket::IP->new(PeerHost => $ip, PeerPort => $port, Type => SOCK_STREAM)
678 or die "failed to connect to tunnel at $ip:$port\n";
679 run_command([$send, @cstream], output => '>&'.fileno($socket));
680 } else {
681 run_command([$send, @cstream, $recv]);
682 }
3d621977 683 };
afd0afe4 684 my $err = $@;
865710f4 685 warn "send/receive failed, cleaning up snapshot(s)..\n" if $err;
b57a863a
WB
686 if ($migration_snapshot) {
687 eval { volume_snapshot_delete($cfg, $volid, $snapshot, 0) };
dc769537 688 warn "could not remove source snapshot: $@\n" if $@;
dc769537 689 }
afd0afe4 690 die $err if $err;
3d621977
WL
691 } else {
692 die "$errstr - target type $tcfg->{type} is not valid\n";
693 }
0a29ad61
WL
694
695 } elsif ($scfg->{type} eq 'lvmthin' || $scfg->{type} eq 'lvm') {
ac191ec7 696 $no_incremental->($scfg->{type});
dc769537 697 $no_snapshot->($scfg->{type});
0a29ad61 698
76f13c9e
DM
699 if (($scfg->{type} eq $tcfg->{type}) &&
700 ($tcfg->{type} eq 'lvmthin' || $tcfg->{type} eq 'lvm')) {
0a29ad61 701
84252f67 702 my (undef, $volname, $vmid) = parse_volname($cfg, $volid);
0a29ad61 703 my $size = volume_size_info($cfg, $volid, 5);
84252f67
DM
704 my $src = path($cfg, $volid);
705 my $dst = path($cfg, $target_volid);
0a29ad61 706
acd27197 707 run_command([@$ssh, '--',
0a29ad61 708 'pvesm', 'alloc', $target_storeid, $vmid,
84252f67 709 $target_volname, int($size/1024)]);
0a29ad61
WL
710
711 eval {
e83f7b40 712 if ($tcfg->{type} eq 'lvmthin') {
01f7e902
WB
713 run_command([["dd", "if=$src", "bs=4k"], @cstream,
714 [@$ssh, "dd", 'conv=sparse', "of=$dst", "bs=4k"]]);
e83f7b40 715 } else {
01f7e902
WB
716 run_command([["dd", "if=$src", "bs=4k"], @cstream,
717 [@$ssh, "dd", "of=$dst", "bs=4k"]]);
e83f7b40 718 }
0a29ad61
WL
719 };
720 if (my $err = $@) {
acd27197 721 run_command([@$ssh, 'pvesm', 'free', $target_volid]);
966ecef2 722 die $err;
0a29ad61
WL
723 }
724 } else {
76f13c9e 725 die "$errstr - migrate from source type '$scfg->{type}' to '$tcfg->{type}' not implemented\n";
0a29ad61 726 }
1dc01b9f
DM
727 } else {
728 die "$errstr - source type '$scfg->{type}' not implemented\n";
b6cf0a66
DM
729 }
730}
731
2502b33b 732sub vdisk_clone {
7bbc4004 733 my ($cfg, $volid, $vmid, $snap) = @_;
1a3459ac 734
2502b33b
DM
735 my ($storeid, $volname) = parse_volume_id($volid);
736
737 my $scfg = storage_config($cfg, $storeid);
738
739 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 740
2502b33b
DM
741 activate_storage($cfg, $storeid);
742
743 # lock shared storage
744 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
7bbc4004 745 my $volname = $plugin->clone_image($scfg, $storeid, $volname, $vmid, $snap);
2502b33b
DM
746 return "$storeid:$volname";
747 });
748}
749
750sub vdisk_create_base {
751 my ($cfg, $volid) = @_;
752
753 my ($storeid, $volname) = parse_volume_id($volid);
754
755 my $scfg = storage_config($cfg, $storeid);
756
757 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 758
2502b33b
DM
759 activate_storage($cfg, $storeid);
760
761 # lock shared storage
762 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
763 my $volname = $plugin->create_base($storeid, $scfg, $volname);
764 return "$storeid:$volname";
765 });
766}
767
1dc01b9f
DM
768sub vdisk_alloc {
769 my ($cfg, $storeid, $vmid, $fmt, $name, $size) = @_;
b6cf0a66 770
82fc923f 771 die "no storage ID specified\n" if !$storeid;
b6cf0a66 772
1dc01b9f 773 PVE::JSONSchema::parse_storage_id($storeid);
b6cf0a66 774
1dc01b9f 775 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 776
1dc01b9f 777 die "no VMID specified\n" if !$vmid;
b6cf0a66 778
1dc01b9f 779 $vmid = parse_vmid($vmid);
b6cf0a66 780
1dc01b9f 781 my $defformat = PVE::Storage::Plugin::default_format($scfg);
b6cf0a66 782
1dc01b9f 783 $fmt = $defformat if !$fmt;
b6cf0a66 784
1dc01b9f 785 activate_storage($cfg, $storeid);
3af60e62 786
1dc01b9f 787 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 788
1dc01b9f
DM
789 # lock shared storage
790 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
afdfbe55
WB
791 my $old_umask = umask(umask|0037);
792 my $volname = eval { $plugin->alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size) };
793 my $err = $@;
794 umask $old_umask;
795 die $err if $err;
1dc01b9f
DM
796 return "$storeid:$volname";
797 });
b6cf0a66
DM
798}
799
1dc01b9f
DM
800sub vdisk_free {
801 my ($cfg, $volid) = @_;
b6cf0a66 802
1dc01b9f 803 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f 804 my $scfg = storage_config($cfg, $storeid);
1dc01b9f 805 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 806
1dc01b9f 807 activate_storage($cfg, $storeid);
b6cf0a66 808
1dc01b9f 809 my $cleanup_worker;
b6cf0a66 810
1dc01b9f
DM
811 # lock shared storage
812 $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
787624df 813 # LVM-thin allows deletion of still referenced base volumes!
17fb7e42
FG
814 die "base volume '$volname' is still in use by linked clones\n"
815 if &$volume_is_base_and_used__no_lock($scfg, $storeid, $plugin, $volname);
32437ed2 816
17fb7e42 817 my (undef, undef, undef, undef, undef, $isBase, $format) =
32437ed2 818 $plugin->parse_volname($volname);
35533c68 819 $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format);
1dc01b9f 820 });
b6cf0a66 821
1dc01b9f 822 return if !$cleanup_worker;
b6cf0a66 823
1dc01b9f
DM
824 my $rpcenv = PVE::RPCEnvironment::get();
825 my $authuser = $rpcenv->get_user();
b6cf0a66 826
1dc01b9f 827 $rpcenv->fork_worker('imgdel', undef, $authuser, $cleanup_worker);
b6cf0a66
DM
828}
829
b6cf0a66
DM
830#list iso or openvz template ($tt = <iso|vztmpl|backup>)
831sub template_list {
832 my ($cfg, $storeid, $tt) = @_;
833
1a3459ac
DM
834 die "unknown template type '$tt'\n"
835 if !($tt eq 'iso' || $tt eq 'vztmpl' || $tt eq 'backup');
b6cf0a66
DM
836
837 my $ids = $cfg->{ids};
838
839 storage_check_enabled($cfg, $storeid) if ($storeid);
840
841 my $res = {};
842
843 # query the storage
844
845 foreach my $sid (keys %$ids) {
846 next if $storeid && $storeid ne $sid;
847
848 my $scfg = $ids->{$sid};
849 my $type = $scfg->{type};
850
851 next if !storage_check_enabled($cfg, $sid, undef, 1);
852
853 next if $tt eq 'iso' && !$scfg->{content}->{iso};
854 next if $tt eq 'vztmpl' && !$scfg->{content}->{vztmpl};
855 next if $tt eq 'backup' && !$scfg->{content}->{backup};
856
1dc01b9f 857 activate_storage($cfg, $sid);
b6cf0a66 858
1dc01b9f
DM
859 if ($scfg->{path}) {
860 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 861
1dc01b9f 862 my $path = $plugin->get_subdir($scfg, $tt);
b6cf0a66
DM
863
864 foreach my $fn (<$path/*>) {
865
866 my $info;
867
868 if ($tt eq 'iso') {
869 next if $fn !~ m!/([^/]+\.[Ii][Ss][Oo])$!;
870
871 $info = { volid => "$sid:iso/$1", format => 'iso' };
872
873 } elsif ($tt eq 'vztmpl') {
13d2cb79 874 next if $fn !~ m!/([^/]+\.tar\.([gx]z))$!;
b6cf0a66 875
13d2cb79 876 $info = { volid => "$sid:vztmpl/$1", format => "t$2" };
b6cf0a66
DM
877
878 } elsif ($tt eq 'backup') {
a22854e5 879 next if $fn !~ m!/([^/]+\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo))$!;
1a3459ac 880
b6cf0a66
DM
881 $info = { volid => "$sid:backup/$1", format => $2 };
882 }
883
884 $info->{size} = -s $fn;
885
886 push @{$res->{$sid}}, $info;
887 }
888
889 }
890
891 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
892 }
893
894 return $res;
895}
896
20ccac1b 897
b6cf0a66
DM
898sub vdisk_list {
899 my ($cfg, $storeid, $vmid, $vollist) = @_;
900
901 my $ids = $cfg->{ids};
902
903 storage_check_enabled($cfg, $storeid) if ($storeid);
904
905 my $res = {};
906
907 # prepare/activate/refresh all storages
908
b6cf0a66
DM
909 my $storage_list = [];
910 if ($vollist) {
911 foreach my $volid (@$vollist) {
1dc01b9f
DM
912 my ($sid, undef) = parse_volume_id($volid);
913 next if !defined($ids->{$sid});
b6cf0a66
DM
914 next if !storage_check_enabled($cfg, $sid, undef, 1);
915 push @$storage_list, $sid;
b6cf0a66
DM
916 }
917 } else {
918 foreach my $sid (keys %$ids) {
919 next if $storeid && $storeid ne $sid;
920 next if !storage_check_enabled($cfg, $sid, undef, 1);
921 push @$storage_list, $sid;
b6cf0a66
DM
922 }
923 }
924
1dc01b9f 925 my $cache = {};
b6cf0a66 926
1dc01b9f 927 activate_storage_list($cfg, $storage_list, $cache);
b6cf0a66
DM
928
929 foreach my $sid (keys %$ids) {
1dc01b9f
DM
930 next if $storeid && $storeid ne $sid;
931 next if !storage_check_enabled($cfg, $sid, undef, 1);
b6cf0a66 932
1dc01b9f
DM
933 my $scfg = $ids->{$sid};
934 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
935 $res->{$sid} = $plugin->list_images($sid, $scfg, $vmid, $vollist, $cache);
b6cf0a66
DM
936 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
937 }
938
939 return $res;
940}
941
37ba0aea
DM
942sub volume_list {
943 my ($cfg, $storeid, $vmid, $content) = @_;
944
945 my @ctypes = qw(images vztmpl iso backup);
946
947 my $cts = $content ? [ $content ] : [ @ctypes ];
948
949 my $scfg = PVE::Storage::storage_config($cfg, $storeid);
950
951 my $res = [];
952 foreach my $ct (@$cts) {
953 my $data;
954 if ($ct eq 'images') {
955 $data = vdisk_list($cfg, $storeid, $vmid);
956 } elsif ($ct eq 'iso' && !defined($vmid)) {
957 $data = template_list($cfg, $storeid, 'iso');
958 } elsif ($ct eq 'vztmpl'&& !defined($vmid)) {
959 $data = template_list ($cfg, $storeid, 'vztmpl');
960 } elsif ($ct eq 'backup') {
961 $data = template_list ($cfg, $storeid, 'backup');
962 foreach my $item (@{$data->{$storeid}}) {
963 if (defined($vmid)) {
964 @{$data->{$storeid}} = grep { $_->{volid} =~ m/\S+-$vmid-\S+/ } @{$data->{$storeid}};
965 }
966 }
967 }
968
969 next if !$data || !$data->{$storeid};
970
971 foreach my $item (@{$data->{$storeid}}) {
972 $item->{content} = $ct;
973 push @$res, $item;
974 }
975 }
976
977 return $res;
978}
979
b6cf0a66
DM
980sub uevent_seqnum {
981
982 my $filename = "/sys/kernel/uevent_seqnum";
983
984 my $seqnum = 0;
1dc01b9f 985 if (my $fh = IO::File->new($filename, "r")) {
b6cf0a66
DM
986 my $line = <$fh>;
987 if ($line =~ m/^(\d+)$/) {
1dc01b9f 988 $seqnum = int($1);
b6cf0a66
DM
989 }
990 close ($fh);
991 }
992 return $seqnum;
993}
994
f3d4ef46 995sub activate_storage {
1dc01b9f 996 my ($cfg, $storeid, $cache) = @_;
b6cf0a66 997
f3d4ef46
DM
998 $cache = {} if !$cache;
999
b6cf0a66
DM
1000 my $scfg = storage_check_enabled($cfg, $storeid);
1001
1dc01b9f 1002 return if $cache->{activated}->{$storeid};
b6cf0a66 1003
1dc01b9f 1004 $cache->{uevent_seqnum} = uevent_seqnum() if !$cache->{uevent_seqnum};
b6cf0a66 1005
1dc01b9f 1006 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 1007
1dc01b9f
DM
1008 if ($scfg->{base}) {
1009 my ($baseid, undef) = parse_volume_id ($scfg->{base});
f3d4ef46
DM
1010 activate_storage($cfg, $baseid, $cache);
1011 }
1012
1013 if (!$plugin->check_connection($storeid, $scfg)) {
1014 die "storage '$storeid' is not online\n";
b6cf0a66
DM
1015 }
1016
1dc01b9f
DM
1017 $plugin->activate_storage($storeid, $scfg, $cache);
1018
b6cf0a66
DM
1019 my $newseq = uevent_seqnum ();
1020
1021 # only call udevsettle if there are events
1dc01b9f 1022 if ($newseq > $cache->{uevent_seqnum}) {
b6cf0a66
DM
1023 my $timeout = 30;
1024 system ("$UDEVADM settle --timeout=$timeout"); # ignore errors
1dc01b9f 1025 $cache->{uevent_seqnum} = $newseq;
b6cf0a66
DM
1026 }
1027
1dc01b9f 1028 $cache->{activated}->{$storeid} = 1;
b6cf0a66
DM
1029}
1030
1031sub activate_storage_list {
1dc01b9f 1032 my ($cfg, $storeid_list, $cache) = @_;
b6cf0a66 1033
1dc01b9f 1034 $cache = {} if !$cache;
b6cf0a66
DM
1035
1036 foreach my $storeid (@$storeid_list) {
f3d4ef46 1037 activate_storage($cfg, $storeid, $cache);
b6cf0a66
DM
1038 }
1039}
1040
1dc01b9f
DM
1041sub deactivate_storage {
1042 my ($cfg, $storeid) = @_;
1043
1044 my $scfg = storage_config ($cfg, $storeid);
1045 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 1046
1dc01b9f
DM
1047 my $cache = {};
1048 $plugin->deactivate_storage($storeid, $scfg, $cache);
b6cf0a66
DM
1049}
1050
1051sub activate_volumes {
02e797b8 1052 my ($cfg, $vollist, $snapname) = @_;
6703353b
DM
1053
1054 return if !($vollist && scalar(@$vollist));
1055
b6cf0a66
DM
1056 my $storagehash = {};
1057 foreach my $volid (@$vollist) {
1dc01b9f 1058 my ($storeid, undef) = parse_volume_id($volid);
b6cf0a66
DM
1059 $storagehash->{$storeid} = 1;
1060 }
1061
1dc01b9f
DM
1062 my $cache = {};
1063
1064 activate_storage_list($cfg, [keys %$storagehash], $cache);
b6cf0a66
DM
1065
1066 foreach my $volid (@$vollist) {
5521b580 1067 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f
DM
1068 my $scfg = storage_config($cfg, $storeid);
1069 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
02e797b8 1070 $plugin->activate_volume($storeid, $scfg, $volname, $snapname, $cache);
b6cf0a66
DM
1071 }
1072}
1073
1074sub deactivate_volumes {
02e797b8 1075 my ($cfg, $vollist, $snapname) = @_;
b6cf0a66 1076
6703353b
DM
1077 return if !($vollist && scalar(@$vollist));
1078
1dc01b9f
DM
1079 my $cache = {};
1080
6703353b 1081 my @errlist = ();
b6cf0a66 1082 foreach my $volid (@$vollist) {
1dc01b9f 1083 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 1084
1dc01b9f
DM
1085 my $scfg = storage_config($cfg, $storeid);
1086 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 1087
1dc01b9f 1088 eval {
02e797b8 1089 $plugin->deactivate_volume($storeid, $scfg, $volname, $snapname, $cache);
1dc01b9f
DM
1090 };
1091 if (my $err = $@) {
1092 warn $err;
1093 push @errlist, $volid;
b6cf0a66
DM
1094 }
1095 }
6703353b 1096
82fc923f 1097 die "volume deactivation failed: " . join(' ', @errlist)
6703353b 1098 if scalar(@errlist);
b6cf0a66
DM
1099}
1100
1a3459ac 1101sub storage_info {
b6cf0a66
DM
1102 my ($cfg, $content) = @_;
1103
1104 my $ids = $cfg->{ids};
1105
1106 my $info = {};
ff3badd8 1107
583c2802 1108 my @ctypes = PVE::Tools::split_list($content);
ff3badd8 1109
b6cf0a66
DM
1110 my $slist = [];
1111 foreach my $storeid (keys %$ids) {
1112
b6cf0a66
DM
1113 next if !storage_check_enabled($cfg, $storeid, undef, 1);
1114
d73060be
DM
1115 if (defined($content)) {
1116 my $want_ctype = 0;
1117 foreach my $ctype (@ctypes) {
1118 if ($ids->{$storeid}->{content}->{$ctype}) {
1119 $want_ctype = 1;
1120 last;
1121 }
583c2802 1122 }
d73060be 1123 next if !$want_ctype;
583c2802 1124 }
ff3badd8 1125
b6cf0a66
DM
1126 my $type = $ids->{$storeid}->{type};
1127
1a3459ac 1128 $info->{$storeid} = {
b6cf0a66 1129 type => $type,
1a3459ac
DM
1130 total => 0,
1131 avail => 0,
1132 used => 0,
04a2e4f3 1133 shared => $ids->{$storeid}->{shared} ? 1 : 0,
1dc01b9f 1134 content => PVE::Storage::Plugin::content_hash_to_string($ids->{$storeid}->{content}),
b6cf0a66
DM
1135 active => 0,
1136 };
1137
b6cf0a66
DM
1138 push @$slist, $storeid;
1139 }
1140
1dc01b9f 1141 my $cache = {};
b6cf0a66 1142
b6cf0a66
DM
1143 foreach my $storeid (keys %$ids) {
1144 my $scfg = $ids->{$storeid};
b6cf0a66
DM
1145 next if !$info->{$storeid};
1146
f3d4ef46
DM
1147 eval { activate_storage($cfg, $storeid, $cache); };
1148 if (my $err = $@) {
1149 warn $err;
1150 next;
1151 }
1152
1dc01b9f 1153 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
7028645e
DM
1154 my ($total, $avail, $used, $active);
1155 eval { ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); };
1156 warn $@ if $@;
1dc01b9f 1157 next if !$active;
ff3badd8
DM
1158 $info->{$storeid}->{total} = int($total);
1159 $info->{$storeid}->{avail} = int($avail);
1160 $info->{$storeid}->{used} = int($used);
1dc01b9f 1161 $info->{$storeid}->{active} = $active;
b6cf0a66
DM
1162 }
1163
1164 return $info;
1165}
1166
1167sub resolv_server {
1168 my ($server) = @_;
1a3459ac 1169
c67daeac
WB
1170 my ($packed_ip, $family);
1171 eval {
1172 my @res = PVE::Tools::getaddrinfo_all($server);
1173 $family = $res[0]->{family};
1174 $packed_ip = (PVE::Tools::unpack_sockaddr_in46($res[0]->{addr}))[2];
1175 };
b6cf0a66 1176 if (defined $packed_ip) {
ee302b1c 1177 return Socket::inet_ntop($family, $packed_ip);
b6cf0a66
DM
1178 }
1179 return undef;
1180}
1181
1182sub scan_nfs {
1183 my ($server_in) = @_;
1184
1185 my $server;
1186 if (!($server = resolv_server ($server_in))) {
1187 die "unable to resolve address for server '${server_in}'\n";
1188 }
1189
1190 my $cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
1191
1192 my $res = {};
f81372ac 1193 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1194 my $line = shift;
1195
1196 # note: howto handle white spaces in export path??
1197 if ($line =~ m!^(/\S+)\s+(.+)$!) {
1198 $res->{$1} = $2;
1199 }
1200 });
1201
1202 return $res;
1203}
1204
584d97f6
DM
1205sub scan_zfs {
1206
3932390b 1207 my $cmd = ['zfs', 'list', '-t', 'filesystem', '-H', '-o', 'name,avail,used'];
584d97f6
DM
1208
1209 my $res = [];
1210 run_command($cmd, outfunc => sub {
1211 my $line = shift;
1212
1213 if ($line =~m/^(\S+)\s+(\S+)\s+(\S+)$/) {
3932390b 1214 my ($pool, $size_str, $used_str) = ($1, $2, $3);
584d97f6 1215 my $size = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($size_str);
3932390b 1216 my $used = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($used_str);
48e27f79 1217 # ignore subvolumes generated by our ZFSPoolPlugin
851658c3
WL
1218 return if $pool =~ m!/subvol-\d+-[^/]+$!;
1219 return if $pool =~ m!/basevol-\d+-[^/]+$!;
3932390b 1220 push @$res, { pool => $pool, size => $size, free => $size-$used };
584d97f6
DM
1221 }
1222 });
1223
1224 return $res;
1225}
1226
b6cf0a66
DM
1227sub resolv_portal {
1228 my ($portal, $noerr) = @_;
1229
1689e627
WB
1230 my ($server, $port) = PVE::Tools::parse_host_and_port($portal);
1231 if ($server) {
b6cf0a66
DM
1232 if (my $ip = resolv_server($server)) {
1233 $server = $ip;
1689e627 1234 $server = "[$server]" if $server =~ /^$IPV6RE$/;
b6cf0a66
DM
1235 return $port ? "$server:$port" : $server;
1236 }
1237 }
1238 return undef if $noerr;
1239
1240 raise_param_exc({ portal => "unable to resolve portal address '$portal'" });
1241}
1242
1243# idea is from usbutils package (/usr/bin/usb-devices) script
1244sub __scan_usb_device {
1245 my ($res, $devpath, $parent, $level) = @_;
1246
1247 return if ! -d $devpath;
1248 return if $level && $devpath !~ m/^.*[-.](\d+)$/;
1249 my $port = $level ? int($1 - 1) : 0;
1250
1251 my $busnum = int(file_read_firstline("$devpath/busnum"));
1252 my $devnum = int(file_read_firstline("$devpath/devnum"));
1253
1254 my $d = {
1255 port => $port,
1256 level => $level,
1257 busnum => $busnum,
1258 devnum => $devnum,
1259 speed => file_read_firstline("$devpath/speed"),
1260 class => hex(file_read_firstline("$devpath/bDeviceClass")),
1261 vendid => file_read_firstline("$devpath/idVendor"),
1262 prodid => file_read_firstline("$devpath/idProduct"),
1263 };
1264
1265 if ($level) {
1266 my $usbpath = $devpath;
1267 $usbpath =~ s|^.*/\d+\-||;
1268 $d->{usbpath} = $usbpath;
1269 }
1270
1271 my $product = file_read_firstline("$devpath/product");
1272 $d->{product} = $product if $product;
1a3459ac 1273
b6cf0a66
DM
1274 my $manu = file_read_firstline("$devpath/manufacturer");
1275 $d->{manufacturer} = $manu if $manu;
1276
1277 my $serial => file_read_firstline("$devpath/serial");
1278 $d->{serial} = $serial if $serial;
1279
1280 push @$res, $d;
1281
1282 foreach my $subdev (<$devpath/$busnum-*>) {
1283 next if $subdev !~ m|/$busnum-[0-9]+(\.[0-9]+)*$|;
1284 __scan_usb_device($res, $subdev, $devnum, $level + 1);
1285 }
1286
1287};
1288
1289sub scan_usb {
1290
1291 my $devlist = [];
1292
1293 foreach my $device (</sys/bus/usb/devices/usb*>) {
1294 __scan_usb_device($devlist, $device, 0, 0);
1295 }
1296
1297 return $devlist;
1298}
1299
1300sub scan_iscsi {
1301 my ($portal_in) = @_;
1302
1303 my $portal;
1dc01b9f 1304 if (!($portal = resolv_portal($portal_in))) {
b6cf0a66
DM
1305 die "unable to parse/resolve portal address '${portal_in}'\n";
1306 }
1307
1dc01b9f 1308 return PVE::Storage::ISCSIPlugin::iscsi_discovery($portal);
b6cf0a66
DM
1309}
1310
1311sub storage_default_format {
1312 my ($cfg, $storeid) = @_;
1313
1314 my $scfg = storage_config ($cfg, $storeid);
1315
1dc01b9f 1316 return PVE::Storage::Plugin::default_format($scfg);
b6cf0a66
DM
1317}
1318
1319sub vgroup_is_used {
1320 my ($cfg, $vgname) = @_;
1321
1322 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1323 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1324 if ($scfg->{type} eq 'lvm' && $scfg->{vgname} eq $vgname) {
1325 return 1;
1326 }
1327 }
1328
1329 return undef;
1330}
1331
1332sub target_is_used {
1333 my ($cfg, $target) = @_;
1334
1335 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1336 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1337 if ($scfg->{type} eq 'iscsi' && $scfg->{target} eq $target) {
1338 return 1;
1339 }
1340 }
1341
1342 return undef;
1343}
1344
1345sub volume_is_used {
1346 my ($cfg, $volid) = @_;
1347
1348 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1349 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1350 if ($scfg->{base} && $scfg->{base} eq $volid) {
1351 return 1;
1352 }
1353 }
1354
1355 return undef;
1356}
1357
1358sub storage_is_used {
1359 my ($cfg, $storeid) = @_;
1360
1361 foreach my $sid (keys %{$cfg->{ids}}) {
1dc01b9f 1362 my $scfg = storage_config($cfg, $sid);
b6cf0a66 1363 next if !$scfg->{base};
1dc01b9f 1364 my ($st) = parse_volume_id($scfg->{base});
b6cf0a66
DM
1365 return 1 if $st && $st eq $storeid;
1366 }
1367
1368 return undef;
1369}
1370
1371sub foreach_volid {
1372 my ($list, $func) = @_;
1373
1374 return if !$list;
1375
1376 foreach my $sid (keys %$list) {
1377 foreach my $info (@{$list->{$sid}}) {
1378 my $volid = $info->{volid};
1dc01b9f 1379 my ($sid1, $volname) = parse_volume_id($volid, 1);
b6cf0a66
DM
1380 if ($sid1 && $sid1 eq $sid) {
1381 &$func ($volid, $sid, $info);
1382 } else {
1383 warn "detected strange volid '$volid' in volume list for '$sid'\n";
1384 }
1385 }
1386 }
1387}
1388
8898dd7b
FG
1389sub extract_vzdump_config_tar {
1390 my ($archive, $conf_re) = @_;
1391
1392 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
1393
1394 my $pid = open(my $fh, '-|', 'tar', 'tf', $archive) ||
1395 die "unable to open file '$archive'\n";
1396
1397 my $file;
1398 while (defined($file = <$fh>)) {
086c4bf1 1399 if ($file =~ $conf_re) {
8898dd7b
FG
1400 $file = $1; # untaint
1401 last;
1402 }
1403 }
1404
1405 kill 15, $pid;
1406 waitpid $pid, 0;
1407 close $fh;
1408
1409 die "ERROR: archive contains no configuration file\n" if !$file;
1410 chomp $file;
1411
1412 my $raw = '';
1413 my $out = sub {
1414 my $output = shift;
1415 $raw .= "$output\n";
1416 };
1417
1418 PVE::Tools::run_command(['tar', '-xpOf', $archive, $file, '--occurrence'], outfunc => $out);
1419
1420 return wantarray ? ($raw, $file) : $raw;
1421}
1422
1423sub extract_vzdump_config_vma {
1424 my ($archive, $comp) = @_;
1425
1426 my $cmd;
1427 my $raw = '';
1428 my $out = sub {
1429 my $output = shift;
1430 $raw .= "$output\n";
1431 };
1432
1433
1434 if ($comp) {
1435 my $uncomp;
1436 if ($comp eq 'gz') {
1437 $uncomp = ["zcat", $archive];
1438 } elsif ($comp eq 'lzo') {
1439 $uncomp = ["lzop", "-d", "-c", $archive];
1440 } else {
1441 die "unknown compression method '$comp'\n";
1442 }
1443 $cmd = [$uncomp, ["vma", "config", "-"]];
1444
1445 # in some cases, lzop/zcat exits with 1 when its stdout pipe is
1446 # closed early by vma, detect this and ignore the exit code later
1447 my $broken_pipe;
1448 my $errstring;
1449 my $err = sub {
1450 my $output = shift;
1451 if ($output =~ m/lzop: Broken pipe: <stdout>/ || $output =~ m/gzip: stdout: Broken pipe/) {
1452 $broken_pipe = 1;
1453 } elsif (!defined ($errstring) && $output !~ m/^\s*$/) {
1454 $errstring = "Failed to extract config from VMA archive: $output\n";
1455 }
1456 };
1457
1458 # in other cases, the pipeline will exit with exit code 141
1459 # because of the broken pipe, handle / ignore this as well
1460 my $rc;
1461 eval {
1462 $rc = PVE::Tools::run_command($cmd, outfunc => $out, errfunc => $err, noerr => 1);
1463 };
1464 my $rerr = $@;
1465
1466 # use exit code if no stderr output and not just broken pipe
fc1089fc 1467 if (!$errstring && !$broken_pipe && $rc != 0 && $rc != 141) {
8898dd7b
FG
1468 die "$rerr\n" if $rerr;
1469 die "config extraction failed with exit code $rc\n";
1470 }
1471 die "$errstring\n" if $errstring;
1472 } else {
1473 # simple case without compression and weird piping behaviour
1474 PVE::Tools::run_command(["vma", "config", $archive], outfunc => $out);
1475 }
1476
1477 return wantarray ? ($raw, undef) : $raw;
1478}
1479
1480sub extract_vzdump_config {
1481 my ($cfg, $volid) = @_;
1482
1483 my $archive = abs_filesystem_path($cfg, $volid);
1484
89443394 1485 if ($volid =~ /vzdump-(lxc|openvz)-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|(tar(\.(gz|lzo))?))$/) {
086c4bf1 1486 return extract_vzdump_config_tar($archive, qr!^(\./etc/vzdump/(pct|vps)\.conf)$!);
89443394 1487 } elsif ($volid =~ /vzdump-qemu-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|((tar|vma)(\.(gz|lzo))?))$/) {
8898dd7b
FG
1488 my $format;
1489 my $comp;
1490 if ($7 eq 'tgz') {
1491 $format = 'tar';
1492 $comp = 'gz';
1493 } else {
1494 $format = $9;
1495 $comp = $11 if defined($11);
1496 }
1497
1498 if ($format eq 'tar') {
1499 return extract_vzdump_config_tar($archive, qr!\(\./qemu-server\.conf\)!);
1500 } else {
1501 return extract_vzdump_config_vma($archive, $comp);
1502 }
1503 } else {
1504 die "cannot determine backup guest type for backup archive '$volid'\n";
1505 }
1506}
1507
47f37b53
WB
1508sub volume_export {
1509 my ($cfg, $fh, $volid, $format, $snapshot, $base_snapshot, $with_snapshots) = @_;
1510
1511 my ($storeid, $volname) = parse_volume_id($volid, 1);
1512 die "cannot export volume '$volid'\n" if !$storeid;
1513 my $scfg = storage_config($cfg, $storeid);
1514 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1515 return $plugin->volume_export($scfg, $storeid, $fh, $volname, $format,
1516 $snapshot, $base_snapshot, $with_snapshots);
1517}
1518
1519sub volume_import {
1520 my ($cfg, $fh, $volid, $format, $base_snapshot, $with_snapshots) = @_;
1521
1522 my ($storeid, $volname) = parse_volume_id($volid, 1);
1523 die "cannot import into volume '$volid'\n" if !$storeid;
1524 my $scfg = storage_config($cfg, $storeid);
1525 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1526 return $plugin->volume_import($scfg, $storeid, $fh, $volname, $format,
1527 $base_snapshot, $with_snapshots);
1528}
1529
d390328b
WB
1530sub volume_export_formats {
1531 my ($cfg, $volid, $snapshot, $base_snapshot, $with_snapshots) = @_;
1532
1533 my ($storeid, $volname) = parse_volume_id($volid, 1);
1534 return if !$storeid;
1535 my $scfg = storage_config($cfg, $storeid);
1536 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1537 return $plugin->volume_export_formats($scfg, $storeid, $volname,
1538 $base_snapshot, $with_snapshots);
1539}
1540
1541sub volume_import_formats {
1542 my ($cfg, $volid, $base_snapshot, $with_snapshots) = @_;
1543
1544 my ($storeid, $volname) = parse_volume_id($volid, 1);
1545 return if !$storeid;
1546 my $scfg = storage_config($cfg, $storeid);
1547 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1548 return $plugin->volume_import_formats($scfg, $storeid, $volname,
1549 $base_snapshot, $with_snapshots);
1550}
1551
1552sub volume_transfer_formats {
1553 my ($cfg, $src_volid, $dst_volid, $snapshot, $base_snapshot, $with_snapshots) = @_;
1554 my @export_formats = volume_export_formats($cfg, $src_volid, $snapshot, $base_snapshot, $with_snapshots);
1555 my @import_formats = volume_import_formats($cfg, $dst_volid, $base_snapshot, $with_snapshots);
1556 my %import_hash = map { $_ => 1 } @import_formats;
1557 my @common = grep { $import_hash{$_} } @export_formats;
1558 return @common;
1559}
1560
f7621c01
DM
1561# bash completion helper
1562
1563sub complete_storage {
746e530f 1564 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1565
746e530f 1566 my $cfg = PVE::Storage::config();
180c8b02 1567
746e530f 1568 return $cmdname eq 'add' ? [] : [ PVE::Storage::storage_ids($cfg) ];
f7621c01
DM
1569}
1570
1571sub complete_storage_enabled {
746e530f 1572 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1573
746e530f 1574 my $res = [];
f7621c01 1575
746e530f
DM
1576 my $cfg = PVE::Storage::config();
1577 foreach my $sid (keys %{$cfg->{ids}}) {
1578 next if !storage_check_enabled($cfg, $sid, undef, 1);
1579 push @$res, $sid;
1580 }
1581 return $res;
f7621c01
DM
1582}
1583
98437f4c
DM
1584sub complete_content_type {
1585 my ($cmdname, $pname, $cvalue) = @_;
1586
1587 return [qw(rootdir images vztmpl iso backup)];
1588}
1589
bf7aed26
DM
1590sub complete_volume {
1591 my ($cmdname, $pname, $cvalue) = @_;
1592
1593 my $cfg = config();
1594
1595 my $storage_list = complete_storage_enabled();
1596
b70b0c58
DM
1597 if ($cvalue =~ m/^([^:]+):/) {
1598 $storage_list = [ $1 ];
1599 } else {
1600 if (scalar(@$storage_list) > 1) {
1601 # only list storage IDs to avoid large listings
1602 my $res = [];
1603 foreach my $storeid (@$storage_list) {
1604 # Hack: simply return 2 artificial values, so that
1605 # completions does not finish
1606 push @$res, "$storeid:volname", "$storeid:...";
1607 }
1608 return $res;
1609 }
1610 }
1611
bf7aed26
DM
1612 my $res = [];
1613 foreach my $storeid (@$storage_list) {
1614 my $vollist = PVE::Storage::volume_list($cfg, $storeid);
1615
1616 foreach my $item (@$vollist) {
1617 push @$res, $item->{volid};
1618 }
1619 }
1620
1621 return $res;
1622}
1623
b6cf0a66 16241;