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