]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage.pm
Revert "Include incremental zfs send in storage_migrate."
[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;
b6cf0a66
DM
10use File::Basename;
11use File::Path;
b6cf0a66 12use Cwd 'abs_path';
7a2d5c1a 13use Socket;
b6cf0a66 14
4dee23d3 15use PVE::Tools qw(run_command file_read_firstline dir_glob_foreach $IPV6RE);
83d7192f 16use PVE::Cluster qw(cfs_read_file cfs_write_file cfs_lock_file);
b6cf0a66
DM
17use PVE::Exception qw(raise_param_exc);
18use PVE::JSONSchema;
19use PVE::INotify;
88c3abaf 20use PVE::RPCEnvironment;
b6cf0a66 21
1dc01b9f
DM
22use PVE::Storage::Plugin;
23use PVE::Storage::DirPlugin;
24use PVE::Storage::LVMPlugin;
610798bc 25use PVE::Storage::LvmThinPlugin;
1dc01b9f
DM
26use PVE::Storage::NFSPlugin;
27use PVE::Storage::ISCSIPlugin;
0509010d 28use PVE::Storage::RBDPlugin;
caf1960c 29use PVE::Storage::SheepdogPlugin;
86616554 30use PVE::Storage::ISCSIDirectPlugin;
f4648aef 31use PVE::Storage::GlusterfsPlugin;
85fda4dd 32use PVE::Storage::ZFSPoolPlugin;
4f914e6e 33use PVE::Storage::ZFSPlugin;
14770890 34use PVE::Storage::DRBDPlugin;
b6cf0a66 35
4dee23d3
DP
36# Storage API version. Icrement it on changes in storage API interface.
37use constant APIVER => 1;
38
39# load standard plugins
1dc01b9f
DM
40PVE::Storage::DirPlugin->register();
41PVE::Storage::LVMPlugin->register();
610798bc 42PVE::Storage::LvmThinPlugin->register();
1dc01b9f
DM
43PVE::Storage::NFSPlugin->register();
44PVE::Storage::ISCSIPlugin->register();
0509010d 45PVE::Storage::RBDPlugin->register();
caf1960c 46PVE::Storage::SheepdogPlugin->register();
86616554 47PVE::Storage::ISCSIDirectPlugin->register();
f4648aef 48PVE::Storage::GlusterfsPlugin->register();
85fda4dd 49PVE::Storage::ZFSPoolPlugin->register();
4f914e6e 50PVE::Storage::ZFSPlugin->register();
14770890 51PVE::Storage::DRBDPlugin->register();
4dee23d3
DP
52
53# load third-party plugins
54if ( -d '/usr/share/perl5/PVE/Storage/Custom' ) {
55 dir_glob_foreach('/usr/share/perl5/PVE/Storage/Custom', '.*\.pm$', sub {
56 my ($file) = @_;
57 my $modname = 'PVE::Storage::Custom::' . $file;
58 $modname =~ s!\.pm$!!;
59 $file = 'PVE/Storage/Custom/' . $file;
60
61 eval {
62 require $file;
63 };
64 if ($@) {
65 warn $@;
66 # Check storage API version and that file is really storage plugin.
67 } elsif ($modname->isa('PVE::Storage::Plugin') && $modname->can('api') && $modname->api() == APIVER) {
68 eval {
69 import $file;
70 $modname->register();
71 };
72 warn $@ if $@;
73 } else {
74 warn "Error loading storage plugin \"$modname\" because of API version mismatch. Please, update it.\n"
75 }
76 });
77}
78
79# initialize all plugins
1dc01b9f 80PVE::Storage::Plugin->init();
b6cf0a66 81
1dc01b9f 82my $UDEVADM = '/sbin/udevadm';
b6cf0a66 83
1dc01b9f 84# PVE::Storage utility functions
b6cf0a66
DM
85
86sub config {
87 return cfs_read_file("storage.cfg");
88}
89
83d7192f
FG
90sub write_config {
91 my ($cfg) = @_;
92
93 cfs_write_file('storage.cfg', $cfg);
94}
95
b6cf0a66
DM
96sub lock_storage_config {
97 my ($code, $errmsg) = @_;
98
99 cfs_lock_file("storage.cfg", undef, $code);
100 my $err = $@;
101 if ($err) {
102 $errmsg ? die "$errmsg: $err" : die $err;
103 }
104}
105
b6cf0a66
DM
106sub storage_config {
107 my ($cfg, $storeid, $noerr) = @_;
108
82fc923f 109 die "no storage ID specified\n" if !$storeid;
1a3459ac 110
b6cf0a66
DM
111 my $scfg = $cfg->{ids}->{$storeid};
112
113 die "storage '$storeid' does not exists\n" if (!$noerr && !$scfg);
114
115 return $scfg;
116}
117
118sub storage_check_node {
119 my ($cfg, $storeid, $node, $noerr) = @_;
120
1dc01b9f 121 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
122
123 if ($scfg->{nodes}) {
124 $node = PVE::INotify::nodename() if !$node || ($node eq 'localhost');
125 if (!$scfg->{nodes}->{$node}) {
da156fb3 126 die "storage '$storeid' is not available on node '$node'\n" if !$noerr;
b6cf0a66
DM
127 return undef;
128 }
129 }
130
131 return $scfg;
132}
133
134sub storage_check_enabled {
135 my ($cfg, $storeid, $node, $noerr) = @_;
136
1dc01b9f 137 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
138
139 if ($scfg->{disable}) {
140 die "storage '$storeid' is disabled\n" if !$noerr;
141 return undef;
142 }
143
144 return storage_check_node($cfg, $storeid, $node, $noerr);
145}
146
147sub storage_ids {
148 my ($cfg) = @_;
149
1dc01b9f 150 return keys %{$cfg->{ids}};
b6cf0a66
DM
151}
152
1dc01b9f
DM
153sub file_size_info {
154 my ($filename, $timeout) = @_;
b6cf0a66 155
1dc01b9f 156 return PVE::Storage::Plugin::file_size_info($filename, $timeout);
b6cf0a66
DM
157}
158
20ccac1b
AD
159sub volume_size_info {
160 my ($cfg, $volid, $timeout) = @_;
161
f18199e5
DM
162 my ($storeid, $volname) = parse_volume_id($volid, 1);
163 if ($storeid) {
164 my $scfg = storage_config($cfg, $storeid);
165 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
166 return $plugin->volume_size_info($scfg, $storeid, $volname, $timeout);
167 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
168 return file_size_info($volid, $timeout);
169 } else {
170 return 0;
171 }
20ccac1b
AD
172}
173
7e6c05dc
AD
174sub volume_resize {
175 my ($cfg, $volid, $size, $running) = @_;
176
177 my ($storeid, $volname) = parse_volume_id($volid, 1);
178 if ($storeid) {
179 my $scfg = storage_config($cfg, $storeid);
180 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
181 return $plugin->volume_resize($scfg, $storeid, $volname, $size, $running);
182 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 183 die "resize file/device '$volid' is not possible\n";
7e6c05dc 184 } else {
f824c722 185 die "unable to parse volume ID '$volid'\n";
7e6c05dc
AD
186 }
187}
188
1597f1f9
WL
189sub volume_rollback_is_possible {
190 my ($cfg, $volid, $snap) = @_;
e0852ba7 191
1597f1f9
WL
192 my ($storeid, $volname) = parse_volume_id($volid, 1);
193 if ($storeid) {
194 my $scfg = storage_config($cfg, $storeid);
195 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
196 return $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
197 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 198 die "snapshot rollback file/device '$volid' is not possible\n";
1597f1f9 199 } else {
f824c722 200 die "unable to parse volume ID '$volid'\n";
1597f1f9
WL
201 }
202}
203
db60719c 204sub volume_snapshot {
f5640e7d 205 my ($cfg, $volid, $snap) = @_;
db60719c
AD
206
207 my ($storeid, $volname) = parse_volume_id($volid, 1);
208 if ($storeid) {
209 my $scfg = storage_config($cfg, $storeid);
210 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
f5640e7d 211 return $plugin->volume_snapshot($scfg, $storeid, $volname, $snap);
db60719c 212 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 213 die "snapshot file/device '$volid' is not possible\n";
db60719c 214 } else {
f824c722 215 die "unable to parse volume ID '$volid'\n";
db60719c
AD
216 }
217}
218
22a2a633
AD
219sub volume_snapshot_rollback {
220 my ($cfg, $volid, $snap) = @_;
221
222 my ($storeid, $volname) = parse_volume_id($volid, 1);
223 if ($storeid) {
224 my $scfg = storage_config($cfg, $storeid);
225 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b3f302c6 226 $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
22a2a633
AD
227 return $plugin->volume_snapshot_rollback($scfg, $storeid, $volname, $snap);
228 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 229 die "snapshot rollback file/device '$volid' is not possible\n";
22a2a633 230 } else {
f824c722 231 die "unable to parse volume ID '$volid'\n";
22a2a633
AD
232 }
233}
234
5753c9d1
AD
235sub volume_snapshot_delete {
236 my ($cfg, $volid, $snap, $running) = @_;
237
238 my ($storeid, $volname) = parse_volume_id($volid, 1);
239 if ($storeid) {
240 my $scfg = storage_config($cfg, $storeid);
241 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
27cc55d4 242 return $plugin->volume_snapshot_delete($scfg, $storeid, $volname, $snap, $running);
5753c9d1 243 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 244 die "snapshot delete file/device '$volid' is not possible\n";
5753c9d1 245 } else {
f824c722 246 die "unable to parse volume ID '$volid'\n";
5753c9d1
AD
247 }
248}
249
99473759
AD
250sub volume_has_feature {
251 my ($cfg, $feature, $volid, $snap, $running) = @_;
252
253 my ($storeid, $volname) = parse_volume_id($volid, 1);
254 if ($storeid) {
255 my $scfg = storage_config($cfg, $storeid);
256 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
257 return $plugin->volume_has_feature($scfg, $feature, $storeid, $volname, $snap, $running);
258 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
259 return undef;
260 } else {
261 return undef;
262 }
263}
264
aefe82ea 265sub volume_snapshot_list {
17be2e9a 266 my ($cfg, $volid, $prefix) = @_;
aefe82ea
WL
267
268 my ($storeid, $volname) = parse_volume_id($volid, 1);
269 if ($storeid) {
270 my $scfg = storage_config($cfg, $storeid);
271 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
17be2e9a 272 return $plugin->volume_snapshot_list($scfg, $storeid, $volname, $prefix);
aefe82ea
WL
273 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
274 die "send file/device '$volid' is not possible\n";
275 } else {
276 die "unable to parse volume ID '$volid'\n";
277 }
278 # return an empty array if dataset does not exist.
279 # youngest snap first
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
DM
527sub storage_migrate {
528 my ($cfg, $volid, $target_host, $target_storeid, $target_volname) = @_;
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
542 my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_host'";
543
45c2ee35 544 my $sshoptions = "-o 'BatchMode=yes'";
b6cf0a66
DM
545 my $ssh = "/usr/bin/ssh $sshoptions";
546
547 local $ENV{RSYNC_RSH} = $ssh;
548
1dc01b9f
DM
549 # only implemented for file system based storage
550 if ($scfg->{path}) {
551 if ($tcfg->{path}) {
b6cf0a66 552
1dc01b9f
DM
553 my $src_plugin = PVE::Storage::Plugin->lookup($scfg->{type});
554 my $dst_plugin = PVE::Storage::Plugin->lookup($tcfg->{type});
6bf56298
DM
555 my $src = $src_plugin->path($scfg, $volname, $storeid);
556 my $dst = $dst_plugin->path($tcfg, $target_volname, $target_storeid);
b6cf0a66 557
1dc01b9f 558 my $dirname = dirname($dst);
b6cf0a66
DM
559
560 if ($tcfg->{shared}) { # we can do a local copy
1a3459ac 561
f81372ac 562 run_command(['/bin/mkdir', '-p', $dirname]);
b6cf0a66 563
1dc01b9f 564 run_command(['/bin/cp', $src, $dst]);
b6cf0a66 565
1dc01b9f 566 } else {
1a3459ac 567 run_command(['/usr/bin/ssh', "root\@${target_host}",
1dc01b9f 568 '/bin/mkdir', '-p', $dirname]);
b6cf0a66 569
1dc01b9f
DM
570 # we use rsync with --sparse, so we can't use --inplace,
571 # so we remove file on the target if it already exists to
572 # save space
573 my ($size, $format) = PVE::Storage::Plugin::file_size_info($src);
574 if ($format && ($format eq 'raw') && $size) {
1a3459ac 575 run_command(['/usr/bin/ssh', "root\@${target_host}",
1dc01b9f
DM
576 'rm', '-f', $dst],
577 outfunc => sub {});
578 }
b6cf0a66 579
986303ca
WL
580 my $cmd;
581 if ($format eq 'subvol') {
582 $cmd = ['/usr/bin/rsync', '--progress', '-X', '-A', '--numeric-ids',
583 '-aH', '--delete', '--no-whole-file', '--inplace',
584 '--one-file-system', "$src/", "[root\@${target_host}]:$dst"];
585 } else {
586 $cmd = ['/usr/bin/rsync', '--progress', '--sparse', '--whole-file',
587 $src, "[root\@${target_host}]:$dst"];
588 }
b6cf0a66 589
1dc01b9f 590 my $percent = -1;
b6cf0a66 591
1dc01b9f
DM
592 run_command($cmd, outfunc => sub {
593 my $line = shift;
b6cf0a66 594
1dc01b9f
DM
595 if ($line =~ m/^\s*(\d+\s+(\d+)%\s.*)$/) {
596 if ($2 > $percent) {
597 $percent = $2;
598 print "rsync status: $1\n";
599 *STDOUT->flush();
600 }
601 } else {
602 print "$line\n";
603 *STDOUT->flush();
604 }
605 });
606 }
607 } else {
608 die "$errstr - target type '$tcfg->{type}' not implemented\n";
609 }
e0852ba7 610
3d621977
WL
611 } elsif ($scfg->{type} eq 'zfspool') {
612
e0852ba7 613 if ($tcfg->{type} eq 'zfspool') {
3d621977 614
82fc923f 615 die "$errstr - pool on target does not have the same name as on source!"
e0852ba7 616 if $tcfg->{pool} ne $scfg->{pool};
3d621977 617
e0852ba7 618 my (undef, $volname) = parse_volname($cfg, $volid);
3d621977
WL
619
620 my $zfspath = "$scfg->{pool}\/$volname";
621
b650f029 622 my $snap = ['zfs', 'snapshot', "$zfspath\@__migration__"];
3d621977 623
0d5a5fc9
DM
624 my $send = [['zfs', 'send', '-Rpv', "$zfspath\@__migration__"], ['ssh', "root\@$target_host",
625 'zfs', 'recv', $zfspath]];
3d621977 626
b650f029 627 my $destroy_target = ['ssh', "root\@$target_host", 'zfs', 'destroy', "$zfspath\@__migration__"];
3d621977 628 run_command($snap);
e0852ba7 629 eval{
0d5a5fc9 630 run_command($send);
3d621977 631 };
afd0afe4
FG
632 my $err = $@;
633 warn "zfs send/receive failed, cleaning up snapshot(s)..\n" if $err;
634 eval { run_command(['zfs', 'destroy', "$zfspath\@__migration__"]); };
635 warn "could not remove source snapshot: $@\n" if $@;
636 eval { run_command($destroy_target); };
637 warn "could not remove target snapshot: $@\n" if $@;
638 die $err if $err;
3d621977
WL
639
640 } else {
641 die "$errstr - target type $tcfg->{type} is not valid\n";
642 }
0a29ad61
WL
643
644 } elsif ($scfg->{type} eq 'lvmthin' || $scfg->{type} eq 'lvm') {
645
76f13c9e
DM
646 if (($scfg->{type} eq $tcfg->{type}) &&
647 ($tcfg->{type} eq 'lvmthin' || $tcfg->{type} eq 'lvm')) {
0a29ad61 648
84252f67 649 my (undef, $volname, $vmid) = parse_volname($cfg, $volid);
0a29ad61 650 my $size = volume_size_info($cfg, $volid, 5);
84252f67
DM
651 my $src = path($cfg, $volid);
652 my $dst = path($cfg, $target_volid);
0a29ad61
WL
653
654 run_command(['/usr/bin/ssh', "root\@${target_host}",
655 'pvesm', 'alloc', $target_storeid, $vmid,
84252f67 656 $target_volname, int($size/1024)]);
0a29ad61
WL
657
658 eval {
e83f7b40 659 if ($tcfg->{type} eq 'lvmthin') {
46f114a5
DM
660 run_command([["dd", "if=$src", "bs=4k"],["/usr/bin/ssh", "root\@${target_host}",
661 "dd", 'conv=sparse', "of=$dst", "bs=4k"]]);
e83f7b40 662 } else {
46f114a5
DM
663 run_command([["dd", "if=$src", "bs=4k"],["/usr/bin/ssh", "root\@${target_host}",
664 "dd", "of=$dst", "bs=4k"]]);
e83f7b40 665 }
0a29ad61
WL
666 };
667 if (my $err = $@) {
668 run_command(['/usr/bin/ssh', "root\@${target_host}",
84252f67 669 'pvesm', 'free', $target_volid]);
966ecef2 670 die $err;
0a29ad61
WL
671 }
672 } else {
76f13c9e 673 die "$errstr - migrate from source type '$scfg->{type}' to '$tcfg->{type}' not implemented\n";
0a29ad61 674 }
1dc01b9f
DM
675 } else {
676 die "$errstr - source type '$scfg->{type}' not implemented\n";
b6cf0a66
DM
677 }
678}
679
2502b33b 680sub vdisk_clone {
7bbc4004 681 my ($cfg, $volid, $vmid, $snap) = @_;
1a3459ac 682
2502b33b
DM
683 my ($storeid, $volname) = parse_volume_id($volid);
684
685 my $scfg = storage_config($cfg, $storeid);
686
687 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 688
2502b33b
DM
689 activate_storage($cfg, $storeid);
690
691 # lock shared storage
692 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
7bbc4004 693 my $volname = $plugin->clone_image($scfg, $storeid, $volname, $vmid, $snap);
2502b33b
DM
694 return "$storeid:$volname";
695 });
696}
697
698sub vdisk_create_base {
699 my ($cfg, $volid) = @_;
700
701 my ($storeid, $volname) = parse_volume_id($volid);
702
703 my $scfg = storage_config($cfg, $storeid);
704
705 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 706
2502b33b
DM
707 activate_storage($cfg, $storeid);
708
709 # lock shared storage
710 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
711 my $volname = $plugin->create_base($storeid, $scfg, $volname);
712 return "$storeid:$volname";
713 });
714}
715
1dc01b9f
DM
716sub vdisk_alloc {
717 my ($cfg, $storeid, $vmid, $fmt, $name, $size) = @_;
b6cf0a66 718
82fc923f 719 die "no storage ID specified\n" if !$storeid;
b6cf0a66 720
1dc01b9f 721 PVE::JSONSchema::parse_storage_id($storeid);
b6cf0a66 722
1dc01b9f 723 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 724
1dc01b9f 725 die "no VMID specified\n" if !$vmid;
b6cf0a66 726
1dc01b9f 727 $vmid = parse_vmid($vmid);
b6cf0a66 728
1dc01b9f 729 my $defformat = PVE::Storage::Plugin::default_format($scfg);
b6cf0a66 730
1dc01b9f 731 $fmt = $defformat if !$fmt;
b6cf0a66 732
1dc01b9f 733 activate_storage($cfg, $storeid);
3af60e62 734
1dc01b9f 735 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 736
1dc01b9f
DM
737 # lock shared storage
738 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
afdfbe55
WB
739 my $old_umask = umask(umask|0037);
740 my $volname = eval { $plugin->alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size) };
741 my $err = $@;
742 umask $old_umask;
743 die $err if $err;
1dc01b9f
DM
744 return "$storeid:$volname";
745 });
b6cf0a66
DM
746}
747
1dc01b9f
DM
748sub vdisk_free {
749 my ($cfg, $volid) = @_;
b6cf0a66 750
1dc01b9f 751 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f 752 my $scfg = storage_config($cfg, $storeid);
1dc01b9f 753 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 754
1dc01b9f 755 activate_storage($cfg, $storeid);
b6cf0a66 756
1dc01b9f 757 my $cleanup_worker;
b6cf0a66 758
1dc01b9f
DM
759 # lock shared storage
760 $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
787624df 761 # LVM-thin allows deletion of still referenced base volumes!
17fb7e42
FG
762 die "base volume '$volname' is still in use by linked clones\n"
763 if &$volume_is_base_and_used__no_lock($scfg, $storeid, $plugin, $volname);
32437ed2 764
17fb7e42 765 my (undef, undef, undef, undef, undef, $isBase, $format) =
32437ed2 766 $plugin->parse_volname($volname);
35533c68 767 $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format);
1dc01b9f 768 });
b6cf0a66 769
1dc01b9f 770 return if !$cleanup_worker;
b6cf0a66 771
1dc01b9f
DM
772 my $rpcenv = PVE::RPCEnvironment::get();
773 my $authuser = $rpcenv->get_user();
b6cf0a66 774
1dc01b9f 775 $rpcenv->fork_worker('imgdel', undef, $authuser, $cleanup_worker);
b6cf0a66
DM
776}
777
b6cf0a66
DM
778#list iso or openvz template ($tt = <iso|vztmpl|backup>)
779sub template_list {
780 my ($cfg, $storeid, $tt) = @_;
781
1a3459ac
DM
782 die "unknown template type '$tt'\n"
783 if !($tt eq 'iso' || $tt eq 'vztmpl' || $tt eq 'backup');
b6cf0a66
DM
784
785 my $ids = $cfg->{ids};
786
787 storage_check_enabled($cfg, $storeid) if ($storeid);
788
789 my $res = {};
790
791 # query the storage
792
793 foreach my $sid (keys %$ids) {
794 next if $storeid && $storeid ne $sid;
795
796 my $scfg = $ids->{$sid};
797 my $type = $scfg->{type};
798
799 next if !storage_check_enabled($cfg, $sid, undef, 1);
800
801 next if $tt eq 'iso' && !$scfg->{content}->{iso};
802 next if $tt eq 'vztmpl' && !$scfg->{content}->{vztmpl};
803 next if $tt eq 'backup' && !$scfg->{content}->{backup};
804
1dc01b9f 805 activate_storage($cfg, $sid);
b6cf0a66 806
1dc01b9f
DM
807 if ($scfg->{path}) {
808 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 809
1dc01b9f 810 my $path = $plugin->get_subdir($scfg, $tt);
b6cf0a66
DM
811
812 foreach my $fn (<$path/*>) {
813
814 my $info;
815
816 if ($tt eq 'iso') {
817 next if $fn !~ m!/([^/]+\.[Ii][Ss][Oo])$!;
818
819 $info = { volid => "$sid:iso/$1", format => 'iso' };
820
821 } elsif ($tt eq 'vztmpl') {
13d2cb79 822 next if $fn !~ m!/([^/]+\.tar\.([gx]z))$!;
b6cf0a66 823
13d2cb79 824 $info = { volid => "$sid:vztmpl/$1", format => "t$2" };
b6cf0a66
DM
825
826 } elsif ($tt eq 'backup') {
a22854e5 827 next if $fn !~ m!/([^/]+\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo))$!;
1a3459ac 828
b6cf0a66
DM
829 $info = { volid => "$sid:backup/$1", format => $2 };
830 }
831
832 $info->{size} = -s $fn;
833
834 push @{$res->{$sid}}, $info;
835 }
836
837 }
838
839 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
840 }
841
842 return $res;
843}
844
20ccac1b 845
b6cf0a66
DM
846sub vdisk_list {
847 my ($cfg, $storeid, $vmid, $vollist) = @_;
848
849 my $ids = $cfg->{ids};
850
851 storage_check_enabled($cfg, $storeid) if ($storeid);
852
853 my $res = {};
854
855 # prepare/activate/refresh all storages
856
b6cf0a66
DM
857 my $storage_list = [];
858 if ($vollist) {
859 foreach my $volid (@$vollist) {
1dc01b9f
DM
860 my ($sid, undef) = parse_volume_id($volid);
861 next if !defined($ids->{$sid});
b6cf0a66
DM
862 next if !storage_check_enabled($cfg, $sid, undef, 1);
863 push @$storage_list, $sid;
b6cf0a66
DM
864 }
865 } else {
866 foreach my $sid (keys %$ids) {
867 next if $storeid && $storeid ne $sid;
868 next if !storage_check_enabled($cfg, $sid, undef, 1);
869 push @$storage_list, $sid;
b6cf0a66
DM
870 }
871 }
872
1dc01b9f 873 my $cache = {};
b6cf0a66 874
1dc01b9f 875 activate_storage_list($cfg, $storage_list, $cache);
b6cf0a66
DM
876
877 foreach my $sid (keys %$ids) {
1dc01b9f
DM
878 next if $storeid && $storeid ne $sid;
879 next if !storage_check_enabled($cfg, $sid, undef, 1);
b6cf0a66 880
1dc01b9f
DM
881 my $scfg = $ids->{$sid};
882 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
883 $res->{$sid} = $plugin->list_images($sid, $scfg, $vmid, $vollist, $cache);
b6cf0a66
DM
884 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
885 }
886
887 return $res;
888}
889
37ba0aea
DM
890sub volume_list {
891 my ($cfg, $storeid, $vmid, $content) = @_;
892
893 my @ctypes = qw(images vztmpl iso backup);
894
895 my $cts = $content ? [ $content ] : [ @ctypes ];
896
897 my $scfg = PVE::Storage::storage_config($cfg, $storeid);
898
899 my $res = [];
900 foreach my $ct (@$cts) {
901 my $data;
902 if ($ct eq 'images') {
903 $data = vdisk_list($cfg, $storeid, $vmid);
904 } elsif ($ct eq 'iso' && !defined($vmid)) {
905 $data = template_list($cfg, $storeid, 'iso');
906 } elsif ($ct eq 'vztmpl'&& !defined($vmid)) {
907 $data = template_list ($cfg, $storeid, 'vztmpl');
908 } elsif ($ct eq 'backup') {
909 $data = template_list ($cfg, $storeid, 'backup');
910 foreach my $item (@{$data->{$storeid}}) {
911 if (defined($vmid)) {
912 @{$data->{$storeid}} = grep { $_->{volid} =~ m/\S+-$vmid-\S+/ } @{$data->{$storeid}};
913 }
914 }
915 }
916
917 next if !$data || !$data->{$storeid};
918
919 foreach my $item (@{$data->{$storeid}}) {
920 $item->{content} = $ct;
921 push @$res, $item;
922 }
923 }
924
925 return $res;
926}
927
b6cf0a66
DM
928sub uevent_seqnum {
929
930 my $filename = "/sys/kernel/uevent_seqnum";
931
932 my $seqnum = 0;
1dc01b9f 933 if (my $fh = IO::File->new($filename, "r")) {
b6cf0a66
DM
934 my $line = <$fh>;
935 if ($line =~ m/^(\d+)$/) {
1dc01b9f 936 $seqnum = int($1);
b6cf0a66
DM
937 }
938 close ($fh);
939 }
940 return $seqnum;
941}
942
f3d4ef46 943sub activate_storage {
1dc01b9f 944 my ($cfg, $storeid, $cache) = @_;
b6cf0a66 945
f3d4ef46
DM
946 $cache = {} if !$cache;
947
b6cf0a66
DM
948 my $scfg = storage_check_enabled($cfg, $storeid);
949
1dc01b9f 950 return if $cache->{activated}->{$storeid};
b6cf0a66 951
1dc01b9f 952 $cache->{uevent_seqnum} = uevent_seqnum() if !$cache->{uevent_seqnum};
b6cf0a66 953
1dc01b9f 954 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 955
1dc01b9f
DM
956 if ($scfg->{base}) {
957 my ($baseid, undef) = parse_volume_id ($scfg->{base});
f3d4ef46
DM
958 activate_storage($cfg, $baseid, $cache);
959 }
960
961 if (!$plugin->check_connection($storeid, $scfg)) {
962 die "storage '$storeid' is not online\n";
b6cf0a66
DM
963 }
964
1dc01b9f
DM
965 $plugin->activate_storage($storeid, $scfg, $cache);
966
b6cf0a66
DM
967 my $newseq = uevent_seqnum ();
968
969 # only call udevsettle if there are events
1dc01b9f 970 if ($newseq > $cache->{uevent_seqnum}) {
b6cf0a66
DM
971 my $timeout = 30;
972 system ("$UDEVADM settle --timeout=$timeout"); # ignore errors
1dc01b9f 973 $cache->{uevent_seqnum} = $newseq;
b6cf0a66
DM
974 }
975
1dc01b9f 976 $cache->{activated}->{$storeid} = 1;
b6cf0a66
DM
977}
978
979sub activate_storage_list {
1dc01b9f 980 my ($cfg, $storeid_list, $cache) = @_;
b6cf0a66 981
1dc01b9f 982 $cache = {} if !$cache;
b6cf0a66
DM
983
984 foreach my $storeid (@$storeid_list) {
f3d4ef46 985 activate_storage($cfg, $storeid, $cache);
b6cf0a66
DM
986 }
987}
988
1dc01b9f
DM
989sub deactivate_storage {
990 my ($cfg, $storeid) = @_;
991
992 my $scfg = storage_config ($cfg, $storeid);
993 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 994
1dc01b9f
DM
995 my $cache = {};
996 $plugin->deactivate_storage($storeid, $scfg, $cache);
b6cf0a66
DM
997}
998
999sub activate_volumes {
02e797b8 1000 my ($cfg, $vollist, $snapname) = @_;
6703353b
DM
1001
1002 return if !($vollist && scalar(@$vollist));
1003
b6cf0a66
DM
1004 my $storagehash = {};
1005 foreach my $volid (@$vollist) {
1dc01b9f 1006 my ($storeid, undef) = parse_volume_id($volid);
b6cf0a66
DM
1007 $storagehash->{$storeid} = 1;
1008 }
1009
1dc01b9f
DM
1010 my $cache = {};
1011
1012 activate_storage_list($cfg, [keys %$storagehash], $cache);
b6cf0a66
DM
1013
1014 foreach my $volid (@$vollist) {
5521b580 1015 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f
DM
1016 my $scfg = storage_config($cfg, $storeid);
1017 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
02e797b8 1018 $plugin->activate_volume($storeid, $scfg, $volname, $snapname, $cache);
b6cf0a66
DM
1019 }
1020}
1021
1022sub deactivate_volumes {
02e797b8 1023 my ($cfg, $vollist, $snapname) = @_;
b6cf0a66 1024
6703353b
DM
1025 return if !($vollist && scalar(@$vollist));
1026
1dc01b9f
DM
1027 my $cache = {};
1028
6703353b 1029 my @errlist = ();
b6cf0a66 1030 foreach my $volid (@$vollist) {
1dc01b9f 1031 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 1032
1dc01b9f
DM
1033 my $scfg = storage_config($cfg, $storeid);
1034 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 1035
1dc01b9f 1036 eval {
02e797b8 1037 $plugin->deactivate_volume($storeid, $scfg, $volname, $snapname, $cache);
1dc01b9f
DM
1038 };
1039 if (my $err = $@) {
1040 warn $err;
1041 push @errlist, $volid;
b6cf0a66
DM
1042 }
1043 }
6703353b 1044
82fc923f 1045 die "volume deactivation failed: " . join(' ', @errlist)
6703353b 1046 if scalar(@errlist);
b6cf0a66
DM
1047}
1048
1a3459ac 1049sub storage_info {
b6cf0a66
DM
1050 my ($cfg, $content) = @_;
1051
1052 my $ids = $cfg->{ids};
1053
1054 my $info = {};
ff3badd8 1055
583c2802 1056 my @ctypes = PVE::Tools::split_list($content);
ff3badd8 1057
b6cf0a66
DM
1058 my $slist = [];
1059 foreach my $storeid (keys %$ids) {
1060
b6cf0a66
DM
1061 next if !storage_check_enabled($cfg, $storeid, undef, 1);
1062
d73060be
DM
1063 if (defined($content)) {
1064 my $want_ctype = 0;
1065 foreach my $ctype (@ctypes) {
1066 if ($ids->{$storeid}->{content}->{$ctype}) {
1067 $want_ctype = 1;
1068 last;
1069 }
583c2802 1070 }
d73060be 1071 next if !$want_ctype;
583c2802 1072 }
ff3badd8 1073
b6cf0a66
DM
1074 my $type = $ids->{$storeid}->{type};
1075
1a3459ac 1076 $info->{$storeid} = {
b6cf0a66 1077 type => $type,
1a3459ac
DM
1078 total => 0,
1079 avail => 0,
1080 used => 0,
04a2e4f3 1081 shared => $ids->{$storeid}->{shared} ? 1 : 0,
1dc01b9f 1082 content => PVE::Storage::Plugin::content_hash_to_string($ids->{$storeid}->{content}),
b6cf0a66
DM
1083 active => 0,
1084 };
1085
b6cf0a66
DM
1086 push @$slist, $storeid;
1087 }
1088
1dc01b9f 1089 my $cache = {};
b6cf0a66 1090
b6cf0a66
DM
1091 foreach my $storeid (keys %$ids) {
1092 my $scfg = $ids->{$storeid};
b6cf0a66
DM
1093 next if !$info->{$storeid};
1094
f3d4ef46
DM
1095 eval { activate_storage($cfg, $storeid, $cache); };
1096 if (my $err = $@) {
1097 warn $err;
1098 next;
1099 }
1100
1dc01b9f 1101 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
7028645e
DM
1102 my ($total, $avail, $used, $active);
1103 eval { ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); };
1104 warn $@ if $@;
1dc01b9f 1105 next if !$active;
ff3badd8
DM
1106 $info->{$storeid}->{total} = int($total);
1107 $info->{$storeid}->{avail} = int($avail);
1108 $info->{$storeid}->{used} = int($used);
1dc01b9f 1109 $info->{$storeid}->{active} = $active;
b6cf0a66
DM
1110 }
1111
1112 return $info;
1113}
1114
1115sub resolv_server {
1116 my ($server) = @_;
1a3459ac 1117
c67daeac
WB
1118 my ($packed_ip, $family);
1119 eval {
1120 my @res = PVE::Tools::getaddrinfo_all($server);
1121 $family = $res[0]->{family};
1122 $packed_ip = (PVE::Tools::unpack_sockaddr_in46($res[0]->{addr}))[2];
1123 };
b6cf0a66 1124 if (defined $packed_ip) {
ee302b1c 1125 return Socket::inet_ntop($family, $packed_ip);
b6cf0a66
DM
1126 }
1127 return undef;
1128}
1129
1130sub scan_nfs {
1131 my ($server_in) = @_;
1132
1133 my $server;
1134 if (!($server = resolv_server ($server_in))) {
1135 die "unable to resolve address for server '${server_in}'\n";
1136 }
1137
1138 my $cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
1139
1140 my $res = {};
f81372ac 1141 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1142 my $line = shift;
1143
1144 # note: howto handle white spaces in export path??
1145 if ($line =~ m!^(/\S+)\s+(.+)$!) {
1146 $res->{$1} = $2;
1147 }
1148 });
1149
1150 return $res;
1151}
1152
584d97f6
DM
1153sub scan_zfs {
1154
3932390b 1155 my $cmd = ['zfs', 'list', '-t', 'filesystem', '-H', '-o', 'name,avail,used'];
584d97f6
DM
1156
1157 my $res = [];
1158 run_command($cmd, outfunc => sub {
1159 my $line = shift;
1160
1161 if ($line =~m/^(\S+)\s+(\S+)\s+(\S+)$/) {
3932390b 1162 my ($pool, $size_str, $used_str) = ($1, $2, $3);
584d97f6 1163 my $size = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($size_str);
3932390b 1164 my $used = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($used_str);
48e27f79 1165 # ignore subvolumes generated by our ZFSPoolPlugin
851658c3
WL
1166 return if $pool =~ m!/subvol-\d+-[^/]+$!;
1167 return if $pool =~ m!/basevol-\d+-[^/]+$!;
3932390b 1168 push @$res, { pool => $pool, size => $size, free => $size-$used };
584d97f6
DM
1169 }
1170 });
1171
1172 return $res;
1173}
1174
b6cf0a66
DM
1175sub resolv_portal {
1176 my ($portal, $noerr) = @_;
1177
1689e627
WB
1178 my ($server, $port) = PVE::Tools::parse_host_and_port($portal);
1179 if ($server) {
b6cf0a66
DM
1180 if (my $ip = resolv_server($server)) {
1181 $server = $ip;
1689e627 1182 $server = "[$server]" if $server =~ /^$IPV6RE$/;
b6cf0a66
DM
1183 return $port ? "$server:$port" : $server;
1184 }
1185 }
1186 return undef if $noerr;
1187
1188 raise_param_exc({ portal => "unable to resolve portal address '$portal'" });
1189}
1190
1191# idea is from usbutils package (/usr/bin/usb-devices) script
1192sub __scan_usb_device {
1193 my ($res, $devpath, $parent, $level) = @_;
1194
1195 return if ! -d $devpath;
1196 return if $level && $devpath !~ m/^.*[-.](\d+)$/;
1197 my $port = $level ? int($1 - 1) : 0;
1198
1199 my $busnum = int(file_read_firstline("$devpath/busnum"));
1200 my $devnum = int(file_read_firstline("$devpath/devnum"));
1201
1202 my $d = {
1203 port => $port,
1204 level => $level,
1205 busnum => $busnum,
1206 devnum => $devnum,
1207 speed => file_read_firstline("$devpath/speed"),
1208 class => hex(file_read_firstline("$devpath/bDeviceClass")),
1209 vendid => file_read_firstline("$devpath/idVendor"),
1210 prodid => file_read_firstline("$devpath/idProduct"),
1211 };
1212
1213 if ($level) {
1214 my $usbpath = $devpath;
1215 $usbpath =~ s|^.*/\d+\-||;
1216 $d->{usbpath} = $usbpath;
1217 }
1218
1219 my $product = file_read_firstline("$devpath/product");
1220 $d->{product} = $product if $product;
1a3459ac 1221
b6cf0a66
DM
1222 my $manu = file_read_firstline("$devpath/manufacturer");
1223 $d->{manufacturer} = $manu if $manu;
1224
1225 my $serial => file_read_firstline("$devpath/serial");
1226 $d->{serial} = $serial if $serial;
1227
1228 push @$res, $d;
1229
1230 foreach my $subdev (<$devpath/$busnum-*>) {
1231 next if $subdev !~ m|/$busnum-[0-9]+(\.[0-9]+)*$|;
1232 __scan_usb_device($res, $subdev, $devnum, $level + 1);
1233 }
1234
1235};
1236
1237sub scan_usb {
1238
1239 my $devlist = [];
1240
1241 foreach my $device (</sys/bus/usb/devices/usb*>) {
1242 __scan_usb_device($devlist, $device, 0, 0);
1243 }
1244
1245 return $devlist;
1246}
1247
1248sub scan_iscsi {
1249 my ($portal_in) = @_;
1250
1251 my $portal;
1dc01b9f 1252 if (!($portal = resolv_portal($portal_in))) {
b6cf0a66
DM
1253 die "unable to parse/resolve portal address '${portal_in}'\n";
1254 }
1255
1dc01b9f 1256 return PVE::Storage::ISCSIPlugin::iscsi_discovery($portal);
b6cf0a66
DM
1257}
1258
1259sub storage_default_format {
1260 my ($cfg, $storeid) = @_;
1261
1262 my $scfg = storage_config ($cfg, $storeid);
1263
1dc01b9f 1264 return PVE::Storage::Plugin::default_format($scfg);
b6cf0a66
DM
1265}
1266
1267sub vgroup_is_used {
1268 my ($cfg, $vgname) = @_;
1269
1270 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1271 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1272 if ($scfg->{type} eq 'lvm' && $scfg->{vgname} eq $vgname) {
1273 return 1;
1274 }
1275 }
1276
1277 return undef;
1278}
1279
1280sub target_is_used {
1281 my ($cfg, $target) = @_;
1282
1283 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1284 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1285 if ($scfg->{type} eq 'iscsi' && $scfg->{target} eq $target) {
1286 return 1;
1287 }
1288 }
1289
1290 return undef;
1291}
1292
1293sub volume_is_used {
1294 my ($cfg, $volid) = @_;
1295
1296 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1297 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1298 if ($scfg->{base} && $scfg->{base} eq $volid) {
1299 return 1;
1300 }
1301 }
1302
1303 return undef;
1304}
1305
1306sub storage_is_used {
1307 my ($cfg, $storeid) = @_;
1308
1309 foreach my $sid (keys %{$cfg->{ids}}) {
1dc01b9f 1310 my $scfg = storage_config($cfg, $sid);
b6cf0a66 1311 next if !$scfg->{base};
1dc01b9f 1312 my ($st) = parse_volume_id($scfg->{base});
b6cf0a66
DM
1313 return 1 if $st && $st eq $storeid;
1314 }
1315
1316 return undef;
1317}
1318
1319sub foreach_volid {
1320 my ($list, $func) = @_;
1321
1322 return if !$list;
1323
1324 foreach my $sid (keys %$list) {
1325 foreach my $info (@{$list->{$sid}}) {
1326 my $volid = $info->{volid};
1dc01b9f 1327 my ($sid1, $volname) = parse_volume_id($volid, 1);
b6cf0a66
DM
1328 if ($sid1 && $sid1 eq $sid) {
1329 &$func ($volid, $sid, $info);
1330 } else {
1331 warn "detected strange volid '$volid' in volume list for '$sid'\n";
1332 }
1333 }
1334 }
1335}
1336
8898dd7b
FG
1337sub extract_vzdump_config_tar {
1338 my ($archive, $conf_re) = @_;
1339
1340 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
1341
1342 my $pid = open(my $fh, '-|', 'tar', 'tf', $archive) ||
1343 die "unable to open file '$archive'\n";
1344
1345 my $file;
1346 while (defined($file = <$fh>)) {
086c4bf1 1347 if ($file =~ $conf_re) {
8898dd7b
FG
1348 $file = $1; # untaint
1349 last;
1350 }
1351 }
1352
1353 kill 15, $pid;
1354 waitpid $pid, 0;
1355 close $fh;
1356
1357 die "ERROR: archive contains no configuration file\n" if !$file;
1358 chomp $file;
1359
1360 my $raw = '';
1361 my $out = sub {
1362 my $output = shift;
1363 $raw .= "$output\n";
1364 };
1365
1366 PVE::Tools::run_command(['tar', '-xpOf', $archive, $file, '--occurrence'], outfunc => $out);
1367
1368 return wantarray ? ($raw, $file) : $raw;
1369}
1370
1371sub extract_vzdump_config_vma {
1372 my ($archive, $comp) = @_;
1373
1374 my $cmd;
1375 my $raw = '';
1376 my $out = sub {
1377 my $output = shift;
1378 $raw .= "$output\n";
1379 };
1380
1381
1382 if ($comp) {
1383 my $uncomp;
1384 if ($comp eq 'gz') {
1385 $uncomp = ["zcat", $archive];
1386 } elsif ($comp eq 'lzo') {
1387 $uncomp = ["lzop", "-d", "-c", $archive];
1388 } else {
1389 die "unknown compression method '$comp'\n";
1390 }
1391 $cmd = [$uncomp, ["vma", "config", "-"]];
1392
1393 # in some cases, lzop/zcat exits with 1 when its stdout pipe is
1394 # closed early by vma, detect this and ignore the exit code later
1395 my $broken_pipe;
1396 my $errstring;
1397 my $err = sub {
1398 my $output = shift;
1399 if ($output =~ m/lzop: Broken pipe: <stdout>/ || $output =~ m/gzip: stdout: Broken pipe/) {
1400 $broken_pipe = 1;
1401 } elsif (!defined ($errstring) && $output !~ m/^\s*$/) {
1402 $errstring = "Failed to extract config from VMA archive: $output\n";
1403 }
1404 };
1405
1406 # in other cases, the pipeline will exit with exit code 141
1407 # because of the broken pipe, handle / ignore this as well
1408 my $rc;
1409 eval {
1410 $rc = PVE::Tools::run_command($cmd, outfunc => $out, errfunc => $err, noerr => 1);
1411 };
1412 my $rerr = $@;
1413
1414 # use exit code if no stderr output and not just broken pipe
fc1089fc 1415 if (!$errstring && !$broken_pipe && $rc != 0 && $rc != 141) {
8898dd7b
FG
1416 die "$rerr\n" if $rerr;
1417 die "config extraction failed with exit code $rc\n";
1418 }
1419 die "$errstring\n" if $errstring;
1420 } else {
1421 # simple case without compression and weird piping behaviour
1422 PVE::Tools::run_command(["vma", "config", $archive], outfunc => $out);
1423 }
1424
1425 return wantarray ? ($raw, undef) : $raw;
1426}
1427
1428sub extract_vzdump_config {
1429 my ($cfg, $volid) = @_;
1430
1431 my $archive = abs_filesystem_path($cfg, $volid);
1432
89443394 1433 if ($volid =~ /vzdump-(lxc|openvz)-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|(tar(\.(gz|lzo))?))$/) {
086c4bf1 1434 return extract_vzdump_config_tar($archive, qr!^(\./etc/vzdump/(pct|vps)\.conf)$!);
89443394 1435 } elsif ($volid =~ /vzdump-qemu-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|((tar|vma)(\.(gz|lzo))?))$/) {
8898dd7b
FG
1436 my $format;
1437 my $comp;
1438 if ($7 eq 'tgz') {
1439 $format = 'tar';
1440 $comp = 'gz';
1441 } else {
1442 $format = $9;
1443 $comp = $11 if defined($11);
1444 }
1445
1446 if ($format eq 'tar') {
1447 return extract_vzdump_config_tar($archive, qr!\(\./qemu-server\.conf\)!);
1448 } else {
1449 return extract_vzdump_config_vma($archive, $comp);
1450 }
1451 } else {
1452 die "cannot determine backup guest type for backup archive '$volid'\n";
1453 }
1454}
1455
f7621c01
DM
1456# bash completion helper
1457
1458sub complete_storage {
746e530f 1459 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1460
746e530f 1461 my $cfg = PVE::Storage::config();
180c8b02 1462
746e530f 1463 return $cmdname eq 'add' ? [] : [ PVE::Storage::storage_ids($cfg) ];
f7621c01
DM
1464}
1465
1466sub complete_storage_enabled {
746e530f 1467 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1468
746e530f 1469 my $res = [];
f7621c01 1470
746e530f
DM
1471 my $cfg = PVE::Storage::config();
1472 foreach my $sid (keys %{$cfg->{ids}}) {
1473 next if !storage_check_enabled($cfg, $sid, undef, 1);
1474 push @$res, $sid;
1475 }
1476 return $res;
f7621c01
DM
1477}
1478
98437f4c
DM
1479sub complete_content_type {
1480 my ($cmdname, $pname, $cvalue) = @_;
1481
1482 return [qw(rootdir images vztmpl iso backup)];
1483}
1484
bf7aed26
DM
1485sub complete_volume {
1486 my ($cmdname, $pname, $cvalue) = @_;
1487
1488 my $cfg = config();
1489
1490 my $storage_list = complete_storage_enabled();
1491
b70b0c58
DM
1492 if ($cvalue =~ m/^([^:]+):/) {
1493 $storage_list = [ $1 ];
1494 } else {
1495 if (scalar(@$storage_list) > 1) {
1496 # only list storage IDs to avoid large listings
1497 my $res = [];
1498 foreach my $storeid (@$storage_list) {
1499 # Hack: simply return 2 artificial values, so that
1500 # completions does not finish
1501 push @$res, "$storeid:volname", "$storeid:...";
1502 }
1503 return $res;
1504 }
1505 }
1506
bf7aed26
DM
1507 my $res = [];
1508 foreach my $storeid (@$storage_list) {
1509 my $vollist = PVE::Storage::volume_list($cfg, $storeid);
1510
1511 foreach my $item (@$vollist) {
1512 push @$res, $item->{volid};
1513 }
1514 }
1515
1516 return $res;
1517}
1518
b6cf0a66 15191;