]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage.pm
Fix 2647: Add snippet content type for Gluster
[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.
e6f4eed4 42use constant APIVER => 4;
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
e6f4eed4 46use constant APIAGE => 3;
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 {
8fe00d99 566 my ($cfg, $volid, $target_sshinfo, $target_storeid, $target_volname, $base_snapshot, $snapshot, $ratelimit_bps, $insecure, $with_snapshots, $logfunc) = @_;
b6cf0a66 567
6bf56298 568 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66
DM
569 $target_volname = $volname if !$target_volname;
570
6bf56298 571 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
572
573 # no need to migrate shared content
574 return if $storeid eq $target_storeid && $scfg->{shared};
575
6bf56298 576 my $tcfg = storage_config($cfg, $target_storeid);
b6cf0a66 577
95015dbb
FE
578 my $vtype = (parse_volname($cfg, $volid))[0];
579
580 die "content type '$vtype' is not available on storage '$target_storeid'\n"
581 if !$tcfg->{content}->{$vtype};
582
b6cf0a66
DM
583 my $target_volid = "${target_storeid}:${target_volname}";
584
4b4c580d 585 my $target_ip = $target_sshinfo->{ip};
b6cf0a66 586
65bb9859
FG
587 my $ssh = PVE::SSHInfo::ssh_info_to_command($target_sshinfo);
588 my $ssh_base = PVE::SSHInfo::ssh_info_to_command_base($target_sshinfo);
47cea194 589 local $ENV{RSYNC_RSH} = PVE::Tools::cmd2string($ssh_base);
b6cf0a66 590
01f7e902
WB
591 my @cstream = ([ '/usr/bin/cstream', '-t', $ratelimit_bps ])
592 if defined($ratelimit_bps);
593
da72898c
WB
594 my $migration_snapshot;
595 if (!defined($snapshot)) {
596 if ($scfg->{type} eq 'zfspool') {
597 $migration_snapshot = 1;
598 $snapshot = '__migration__';
1dc01b9f 599 }
da72898c 600 }
e0852ba7 601
cfdffd8a 602 my @formats = volume_transfer_formats($cfg, $volid, $target_volid, $snapshot, $base_snapshot, $with_snapshots);
da72898c
WB
603 die "cannot migrate from storage type '$scfg->{type}' to '$tcfg->{type}'\n" if !@formats;
604 my $format = $formats[0];
7459cb3d 605
228e5be9 606 my $import_fn = '-'; # let pvesm import read from stdin per default
da72898c 607 if ($insecure) {
228e5be9
TL
608 my $net = $target_sshinfo->{network} // $target_sshinfo->{ip};
609 $import_fn = "tcp://$net";
da72898c 610 }
7ba34faa 611
e8a7e764
WB
612 $with_snapshots = $with_snapshots ? 1 : 0; # sanitize for passing as cli parameter
613 my $send = ['pvesm', 'export', $volid, $format, '-', '-with-snapshots', $with_snapshots];
cfdffd8a 614 my $recv = [@$ssh, '--', 'pvesm', 'import', $target_volid, $format, $import_fn, '-with-snapshots', $with_snapshots];
da72898c
WB
615 if (defined($snapshot)) {
616 push @$send, '-snapshot', $snapshot
617 }
618 if ($migration_snapshot) {
619 push @$recv, '-delete-snapshot', $snapshot;
620 }
3d621977 621
da72898c
WB
622 if (defined($base_snapshot)) {
623 # Check if the snapshot exists on the remote side:
624 push @$send, '-base', $base_snapshot;
625 push @$recv, '-base', $base_snapshot;
626 }
ac191ec7 627
da72898c
WB
628 volume_snapshot($cfg, $volid, $snapshot) if $migration_snapshot;
629 eval {
630 if ($insecure) {
631 open(my $info, '-|', @$recv)
632 or die "receive command failed: $!\n";
633 my ($ip) = <$info> =~ /^($PVE::Tools::IPRE)$/ or die "no tunnel IP received\n";
634 my ($port) = <$info> =~ /^(\d+)$/ or die "no tunnel port received\n";
635 my $socket = IO::Socket::IP->new(PeerHost => $ip, PeerPort => $port, Type => SOCK_STREAM)
636 or die "failed to connect to tunnel at $ip:$port\n";
637 # we won't be reading from the socket
638 shutdown($socket, 0);
8e55b4f2 639 run_command([$send, @cstream], output => '>&'.fileno($socket), errfunc => $logfunc);
da72898c
WB
640 # don't close the connection entirely otherwise the receiving end
641 # might not get all buffered data (and fails with 'connection reset by peer')
642 shutdown($socket, 1);
aca83310
FE
643
644 # wait for the remote process to finish
645 if ($logfunc) {
646 while (my $line = <$info>) {
647 chomp($line);
648 $logfunc->("[$target_sshinfo->{name}] $line");
649 }
650 } else {
651 1 while <$info>;
652 }
653
da72898c
WB
654 # now close the socket
655 close($socket);
656 if (!close($info)) { # does waitpid()
657 die "import failed: $!\n" if $!;
658 die "import failed: exit code ".($?>>8)."\n";
0a29ad61
WL
659 }
660 } else {
8fe00d99 661 run_command([$send, @cstream, $recv], logfunc => $logfunc);
0a29ad61 662 }
da72898c
WB
663 };
664 my $err = $@;
665 warn "send/receive failed, cleaning up snapshot(s)..\n" if $err;
666 if ($migration_snapshot) {
667 eval { volume_snapshot_delete($cfg, $volid, $snapshot, 0) };
668 warn "could not remove source snapshot: $@\n" if $@;
b6cf0a66 669 }
da72898c 670 die $err if $err;
b6cf0a66
DM
671}
672
2502b33b 673sub vdisk_clone {
7bbc4004 674 my ($cfg, $volid, $vmid, $snap) = @_;
1a3459ac 675
2502b33b
DM
676 my ($storeid, $volname) = parse_volume_id($volid);
677
678 my $scfg = storage_config($cfg, $storeid);
679
680 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 681
2502b33b
DM
682 activate_storage($cfg, $storeid);
683
684 # lock shared storage
685 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
7bbc4004 686 my $volname = $plugin->clone_image($scfg, $storeid, $volname, $vmid, $snap);
2502b33b
DM
687 return "$storeid:$volname";
688 });
689}
690
691sub vdisk_create_base {
692 my ($cfg, $volid) = @_;
693
694 my ($storeid, $volname) = parse_volume_id($volid);
695
696 my $scfg = storage_config($cfg, $storeid);
697
698 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 699
2502b33b
DM
700 activate_storage($cfg, $storeid);
701
702 # lock shared storage
703 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
704 my $volname = $plugin->create_base($storeid, $scfg, $volname);
705 return "$storeid:$volname";
706 });
707}
708
40d69893
DM
709sub map_volume {
710 my ($cfg, $volid, $snapname) = @_;
711
712 my ($storeid, $volname) = parse_volume_id($volid);
713
714 my $scfg = storage_config($cfg, $storeid);
715
716 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
717
718 return $plugin->map_volume($storeid, $scfg, $volname, $snapname);
719}
720
721sub unmap_volume {
722 my ($cfg, $volid, $snapname) = @_;
723
724 my ($storeid, $volname) = parse_volume_id($volid);
725
726 my $scfg = storage_config($cfg, $storeid);
727
728 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
729
730 return $plugin->unmap_volume($storeid, $scfg, $volname, $snapname);
731}
732
1dc01b9f
DM
733sub vdisk_alloc {
734 my ($cfg, $storeid, $vmid, $fmt, $name, $size) = @_;
b6cf0a66 735
82fc923f 736 die "no storage ID specified\n" if !$storeid;
b6cf0a66 737
1dc01b9f 738 PVE::JSONSchema::parse_storage_id($storeid);
b6cf0a66 739
1dc01b9f 740 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 741
1dc01b9f 742 die "no VMID specified\n" if !$vmid;
b6cf0a66 743
1dc01b9f 744 $vmid = parse_vmid($vmid);
b6cf0a66 745
1dc01b9f 746 my $defformat = PVE::Storage::Plugin::default_format($scfg);
b6cf0a66 747
1dc01b9f 748 $fmt = $defformat if !$fmt;
b6cf0a66 749
1dc01b9f 750 activate_storage($cfg, $storeid);
3af60e62 751
1dc01b9f 752 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 753
1dc01b9f
DM
754 # lock shared storage
755 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
afdfbe55
WB
756 my $old_umask = umask(umask|0037);
757 my $volname = eval { $plugin->alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size) };
758 my $err = $@;
759 umask $old_umask;
760 die $err if $err;
1dc01b9f
DM
761 return "$storeid:$volname";
762 });
b6cf0a66
DM
763}
764
1dc01b9f
DM
765sub vdisk_free {
766 my ($cfg, $volid) = @_;
b6cf0a66 767
1dc01b9f 768 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f 769 my $scfg = storage_config($cfg, $storeid);
1dc01b9f 770 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 771
1dc01b9f 772 activate_storage($cfg, $storeid);
b6cf0a66 773
1dc01b9f 774 my $cleanup_worker;
b6cf0a66 775
1dc01b9f
DM
776 # lock shared storage
777 $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
787624df 778 # LVM-thin allows deletion of still referenced base volumes!
17fb7e42
FG
779 die "base volume '$volname' is still in use by linked clones\n"
780 if &$volume_is_base_and_used__no_lock($scfg, $storeid, $plugin, $volname);
32437ed2 781
17fb7e42 782 my (undef, undef, undef, undef, undef, $isBase, $format) =
32437ed2 783 $plugin->parse_volname($volname);
35533c68 784 $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format);
1dc01b9f 785 });
b6cf0a66 786
1dc01b9f 787 return if !$cleanup_worker;
b6cf0a66 788
1dc01b9f
DM
789 my $rpcenv = PVE::RPCEnvironment::get();
790 my $authuser = $rpcenv->get_user();
b6cf0a66 791
1dc01b9f 792 $rpcenv->fork_worker('imgdel', undef, $authuser, $cleanup_worker);
b6cf0a66
DM
793}
794
b6cf0a66
DM
795sub vdisk_list {
796 my ($cfg, $storeid, $vmid, $vollist) = @_;
797
798 my $ids = $cfg->{ids};
799
800 storage_check_enabled($cfg, $storeid) if ($storeid);
801
802 my $res = {};
803
804 # prepare/activate/refresh all storages
805
b6cf0a66
DM
806 my $storage_list = [];
807 if ($vollist) {
808 foreach my $volid (@$vollist) {
1dc01b9f
DM
809 my ($sid, undef) = parse_volume_id($volid);
810 next if !defined($ids->{$sid});
b6cf0a66
DM
811 next if !storage_check_enabled($cfg, $sid, undef, 1);
812 push @$storage_list, $sid;
b6cf0a66
DM
813 }
814 } else {
815 foreach my $sid (keys %$ids) {
816 next if $storeid && $storeid ne $sid;
817 next if !storage_check_enabled($cfg, $sid, undef, 1);
818 push @$storage_list, $sid;
b6cf0a66
DM
819 }
820 }
821
1dc01b9f 822 my $cache = {};
b6cf0a66 823
1dc01b9f 824 activate_storage_list($cfg, $storage_list, $cache);
b6cf0a66
DM
825
826 foreach my $sid (keys %$ids) {
1dc01b9f
DM
827 next if $storeid && $storeid ne $sid;
828 next if !storage_check_enabled($cfg, $sid, undef, 1);
b6cf0a66 829
1dc01b9f
DM
830 my $scfg = $ids->{$sid};
831 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
832 $res->{$sid} = $plugin->list_images($sid, $scfg, $vmid, $vollist, $cache);
b6cf0a66
DM
833 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
834 }
835
836 return $res;
837}
838
c2fc9fbe
DM
839sub template_list {
840 my ($cfg, $storeid, $tt) = @_;
841
842 die "unknown template type '$tt'\n"
843 if !($tt eq 'iso' || $tt eq 'vztmpl' || $tt eq 'backup' || $tt eq 'snippets');
844
845 my $ids = $cfg->{ids};
846
847 storage_check_enabled($cfg, $storeid) if ($storeid);
848
849 my $res = {};
850
851 # query the storage
852 foreach my $sid (keys %$ids) {
853 next if $storeid && $storeid ne $sid;
854
855 my $scfg = $ids->{$sid};
856 my $type = $scfg->{type};
857
858 next if !$scfg->{content}->{$tt};
859
860 next if !storage_check_enabled($cfg, $sid, undef, 1);
861
862 $res->{$sid} = volume_list($cfg, $sid, undef, $tt);
863 }
864
865 return $res;
866}
867
37ba0aea
DM
868sub volume_list {
869 my ($cfg, $storeid, $vmid, $content) = @_;
870
be785439 871 my @ctypes = qw(rootdir images vztmpl iso backup snippets);
37ba0aea
DM
872
873 my $cts = $content ? [ $content ] : [ @ctypes ];
874
875 my $scfg = PVE::Storage::storage_config($cfg, $storeid);
876
c2fc9fbe 877 $cts = [ grep { defined($scfg->{content}->{$_}) } @$cts ];
37ba0aea 878
c2fc9fbe 879 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
37ba0aea 880
c2fc9fbe
DM
881 activate_storage($cfg, $storeid);
882
883 my $res = $plugin->list_volumes($storeid, $scfg, $vmid, $cts);
884
885 @$res = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @$res;
37ba0aea
DM
886
887 return $res;
888}
889
b6cf0a66
DM
890sub uevent_seqnum {
891
892 my $filename = "/sys/kernel/uevent_seqnum";
893
894 my $seqnum = 0;
1dc01b9f 895 if (my $fh = IO::File->new($filename, "r")) {
b6cf0a66
DM
896 my $line = <$fh>;
897 if ($line =~ m/^(\d+)$/) {
1dc01b9f 898 $seqnum = int($1);
b6cf0a66
DM
899 }
900 close ($fh);
901 }
902 return $seqnum;
903}
904
f3d4ef46 905sub activate_storage {
1dc01b9f 906 my ($cfg, $storeid, $cache) = @_;
b6cf0a66 907
f3d4ef46
DM
908 $cache = {} if !$cache;
909
b6cf0a66
DM
910 my $scfg = storage_check_enabled($cfg, $storeid);
911
1dc01b9f 912 return if $cache->{activated}->{$storeid};
b6cf0a66 913
1dc01b9f 914 $cache->{uevent_seqnum} = uevent_seqnum() if !$cache->{uevent_seqnum};
b6cf0a66 915
1dc01b9f 916 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 917
1dc01b9f
DM
918 if ($scfg->{base}) {
919 my ($baseid, undef) = parse_volume_id ($scfg->{base});
f3d4ef46
DM
920 activate_storage($cfg, $baseid, $cache);
921 }
922
923 if (!$plugin->check_connection($storeid, $scfg)) {
924 die "storage '$storeid' is not online\n";
b6cf0a66
DM
925 }
926
1dc01b9f
DM
927 $plugin->activate_storage($storeid, $scfg, $cache);
928
b6cf0a66
DM
929 my $newseq = uevent_seqnum ();
930
931 # only call udevsettle if there are events
1dc01b9f 932 if ($newseq > $cache->{uevent_seqnum}) {
b6cf0a66
DM
933 my $timeout = 30;
934 system ("$UDEVADM settle --timeout=$timeout"); # ignore errors
1dc01b9f 935 $cache->{uevent_seqnum} = $newseq;
b6cf0a66
DM
936 }
937
1dc01b9f 938 $cache->{activated}->{$storeid} = 1;
b6cf0a66
DM
939}
940
941sub activate_storage_list {
1dc01b9f 942 my ($cfg, $storeid_list, $cache) = @_;
b6cf0a66 943
1dc01b9f 944 $cache = {} if !$cache;
b6cf0a66
DM
945
946 foreach my $storeid (@$storeid_list) {
f3d4ef46 947 activate_storage($cfg, $storeid, $cache);
b6cf0a66
DM
948 }
949}
950
1dc01b9f
DM
951sub deactivate_storage {
952 my ($cfg, $storeid) = @_;
953
954 my $scfg = storage_config ($cfg, $storeid);
955 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 956
1dc01b9f
DM
957 my $cache = {};
958 $plugin->deactivate_storage($storeid, $scfg, $cache);
b6cf0a66
DM
959}
960
961sub activate_volumes {
02e797b8 962 my ($cfg, $vollist, $snapname) = @_;
6703353b
DM
963
964 return if !($vollist && scalar(@$vollist));
965
b6cf0a66
DM
966 my $storagehash = {};
967 foreach my $volid (@$vollist) {
1dc01b9f 968 my ($storeid, undef) = parse_volume_id($volid);
b6cf0a66
DM
969 $storagehash->{$storeid} = 1;
970 }
971
1dc01b9f
DM
972 my $cache = {};
973
974 activate_storage_list($cfg, [keys %$storagehash], $cache);
b6cf0a66
DM
975
976 foreach my $volid (@$vollist) {
5521b580 977 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f
DM
978 my $scfg = storage_config($cfg, $storeid);
979 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
02e797b8 980 $plugin->activate_volume($storeid, $scfg, $volname, $snapname, $cache);
b6cf0a66
DM
981 }
982}
983
984sub deactivate_volumes {
02e797b8 985 my ($cfg, $vollist, $snapname) = @_;
b6cf0a66 986
6703353b
DM
987 return if !($vollist && scalar(@$vollist));
988
1dc01b9f
DM
989 my $cache = {};
990
6703353b 991 my @errlist = ();
b6cf0a66 992 foreach my $volid (@$vollist) {
1dc01b9f 993 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 994
1dc01b9f
DM
995 my $scfg = storage_config($cfg, $storeid);
996 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 997
1dc01b9f 998 eval {
02e797b8 999 $plugin->deactivate_volume($storeid, $scfg, $volname, $snapname, $cache);
1dc01b9f
DM
1000 };
1001 if (my $err = $@) {
1002 warn $err;
1003 push @errlist, $volid;
b6cf0a66
DM
1004 }
1005 }
6703353b 1006
82fc923f 1007 die "volume deactivation failed: " . join(' ', @errlist)
6703353b 1008 if scalar(@errlist);
b6cf0a66
DM
1009}
1010
1a3459ac 1011sub storage_info {
856c54bd 1012 my ($cfg, $content, $includeformat) = @_;
b6cf0a66
DM
1013
1014 my $ids = $cfg->{ids};
1015
1016 my $info = {};
ff3badd8 1017
583c2802 1018 my @ctypes = PVE::Tools::split_list($content);
ff3badd8 1019
b6cf0a66
DM
1020 my $slist = [];
1021 foreach my $storeid (keys %$ids) {
6ce4f724 1022 my $storage_enabled = defined(storage_check_enabled($cfg, $storeid, undef, 1));
b6cf0a66 1023
d73060be
DM
1024 if (defined($content)) {
1025 my $want_ctype = 0;
1026 foreach my $ctype (@ctypes) {
1027 if ($ids->{$storeid}->{content}->{$ctype}) {
1028 $want_ctype = 1;
1029 last;
1030 }
583c2802 1031 }
6ce4f724 1032 next if !$want_ctype || !$storage_enabled;
583c2802 1033 }
ff3badd8 1034
b6cf0a66
DM
1035 my $type = $ids->{$storeid}->{type};
1036
1a3459ac 1037 $info->{$storeid} = {
b6cf0a66 1038 type => $type,
1a3459ac
DM
1039 total => 0,
1040 avail => 0,
1041 used => 0,
04a2e4f3 1042 shared => $ids->{$storeid}->{shared} ? 1 : 0,
1dc01b9f 1043 content => PVE::Storage::Plugin::content_hash_to_string($ids->{$storeid}->{content}),
b6cf0a66 1044 active => 0,
6ce4f724 1045 enabled => $storage_enabled ? 1 : 0,
b6cf0a66
DM
1046 };
1047
b6cf0a66
DM
1048 push @$slist, $storeid;
1049 }
1050
1dc01b9f 1051 my $cache = {};
b6cf0a66 1052
b6cf0a66
DM
1053 foreach my $storeid (keys %$ids) {
1054 my $scfg = $ids->{$storeid};
b43b073b 1055
b6cf0a66 1056 next if !$info->{$storeid};
b43b073b 1057 next if !$info->{$storeid}->{enabled};
b6cf0a66 1058
856c54bd
DC
1059 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1060 if ($includeformat) {
1061 my $pd = $plugin->plugindata();
1062 $info->{$storeid}->{format} = $pd->{format}
1063 if $pd->{format};
1064 $info->{$storeid}->{select_existing} = $pd->{select_existing}
1065 if $pd->{select_existing};
1066 }
1067
f3d4ef46
DM
1068 eval { activate_storage($cfg, $storeid, $cache); };
1069 if (my $err = $@) {
1070 warn $err;
1071 next;
1072 }
1073
41aacc6c 1074 my ($total, $avail, $used, $active) = eval { $plugin->status($storeid, $scfg, $cache); };
7028645e 1075 warn $@ if $@;
1dc01b9f 1076 next if !$active;
ff3badd8
DM
1077 $info->{$storeid}->{total} = int($total);
1078 $info->{$storeid}->{avail} = int($avail);
1079 $info->{$storeid}->{used} = int($used);
1dc01b9f 1080 $info->{$storeid}->{active} = $active;
b6cf0a66
DM
1081 }
1082
1083 return $info;
1084}
1085
1086sub resolv_server {
1087 my ($server) = @_;
1a3459ac 1088
c67daeac
WB
1089 my ($packed_ip, $family);
1090 eval {
1091 my @res = PVE::Tools::getaddrinfo_all($server);
1092 $family = $res[0]->{family};
1093 $packed_ip = (PVE::Tools::unpack_sockaddr_in46($res[0]->{addr}))[2];
1094 };
b6cf0a66 1095 if (defined $packed_ip) {
ee302b1c 1096 return Socket::inet_ntop($family, $packed_ip);
b6cf0a66
DM
1097 }
1098 return undef;
1099}
1100
1101sub scan_nfs {
1102 my ($server_in) = @_;
1103
1104 my $server;
1105 if (!($server = resolv_server ($server_in))) {
1106 die "unable to resolve address for server '${server_in}'\n";
1107 }
1108
1109 my $cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
1110
1111 my $res = {};
f81372ac 1112 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1113 my $line = shift;
1114
1115 # note: howto handle white spaces in export path??
1116 if ($line =~ m!^(/\S+)\s+(.+)$!) {
1117 $res->{$1} = $2;
1118 }
1119 });
1120
1121 return $res;
1122}
1123
4cab0acd
WL
1124sub scan_cifs {
1125 my ($server_in, $user, $password, $domain) = @_;
1126
1127 my $server;
1128 if (!($server = resolv_server ($server_in))) {
1129 die "unable to resolve address for server '${server_in}'\n";
1130 }
1131
1132 # we support only Windows grater than 2012 cifsscan so use smb3
1133 my $cmd = ['/usr/bin/smbclient', '-m', 'smb3', '-d', '0', '-L', $server];
1134 if (defined($user)) {
1135 die "password is required" if !defined($password);
1136 push @$cmd, '-U', "$user\%$password";
1137 push @$cmd, '-W', $domain if defined($domain);
1138 } else {
1139 push @$cmd, '-N';
1140 }
1141
1142 my $res = {};
1143 run_command($cmd,
1144 outfunc => sub {
1145 my $line = shift;
1146 if ($line =~ m/(\S+)\s*Disk\s*(\S*)/) {
1147 $res->{$1} = $2;
1148 } elsif ($line =~ m/(NT_STATUS_(\S*))/) {
1149 $res->{$1} = '';
1150 }
1151 },
1152 errfunc => sub {},
1153 noerr => 1
1154 );
1155
1156 return $res;
1157}
1158
584d97f6
DM
1159sub scan_zfs {
1160
3932390b 1161 my $cmd = ['zfs', 'list', '-t', 'filesystem', '-H', '-o', 'name,avail,used'];
584d97f6
DM
1162
1163 my $res = [];
1164 run_command($cmd, outfunc => sub {
1165 my $line = shift;
1166
1167 if ($line =~m/^(\S+)\s+(\S+)\s+(\S+)$/) {
3932390b 1168 my ($pool, $size_str, $used_str) = ($1, $2, $3);
584d97f6 1169 my $size = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($size_str);
3932390b 1170 my $used = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($used_str);
48e27f79 1171 # ignore subvolumes generated by our ZFSPoolPlugin
851658c3
WL
1172 return if $pool =~ m!/subvol-\d+-[^/]+$!;
1173 return if $pool =~ m!/basevol-\d+-[^/]+$!;
3932390b 1174 push @$res, { pool => $pool, size => $size, free => $size-$used };
584d97f6
DM
1175 }
1176 });
1177
1178 return $res;
1179}
1180
b6cf0a66
DM
1181sub resolv_portal {
1182 my ($portal, $noerr) = @_;
1183
1689e627
WB
1184 my ($server, $port) = PVE::Tools::parse_host_and_port($portal);
1185 if ($server) {
b6cf0a66
DM
1186 if (my $ip = resolv_server($server)) {
1187 $server = $ip;
1689e627 1188 $server = "[$server]" if $server =~ /^$IPV6RE$/;
b6cf0a66
DM
1189 return $port ? "$server:$port" : $server;
1190 }
1191 }
1192 return undef if $noerr;
1193
1194 raise_param_exc({ portal => "unable to resolve portal address '$portal'" });
1195}
1196
b6cf0a66
DM
1197
1198sub scan_iscsi {
1199 my ($portal_in) = @_;
1200
1201 my $portal;
1dc01b9f 1202 if (!($portal = resolv_portal($portal_in))) {
b6cf0a66
DM
1203 die "unable to parse/resolve portal address '${portal_in}'\n";
1204 }
1205
1dc01b9f 1206 return PVE::Storage::ISCSIPlugin::iscsi_discovery($portal);
b6cf0a66
DM
1207}
1208
1209sub storage_default_format {
1210 my ($cfg, $storeid) = @_;
1211
1212 my $scfg = storage_config ($cfg, $storeid);
1213
1dc01b9f 1214 return PVE::Storage::Plugin::default_format($scfg);
b6cf0a66
DM
1215}
1216
1217sub vgroup_is_used {
1218 my ($cfg, $vgname) = @_;
1219
1220 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1221 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1222 if ($scfg->{type} eq 'lvm' && $scfg->{vgname} eq $vgname) {
1223 return 1;
1224 }
1225 }
1226
1227 return undef;
1228}
1229
1230sub target_is_used {
1231 my ($cfg, $target) = @_;
1232
1233 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1234 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1235 if ($scfg->{type} eq 'iscsi' && $scfg->{target} eq $target) {
1236 return 1;
1237 }
1238 }
1239
1240 return undef;
1241}
1242
1243sub volume_is_used {
1244 my ($cfg, $volid) = @_;
1245
1246 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1247 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1248 if ($scfg->{base} && $scfg->{base} eq $volid) {
1249 return 1;
1250 }
1251 }
1252
1253 return undef;
1254}
1255
1256sub storage_is_used {
1257 my ($cfg, $storeid) = @_;
1258
1259 foreach my $sid (keys %{$cfg->{ids}}) {
1dc01b9f 1260 my $scfg = storage_config($cfg, $sid);
b6cf0a66 1261 next if !$scfg->{base};
1dc01b9f 1262 my ($st) = parse_volume_id($scfg->{base});
b6cf0a66
DM
1263 return 1 if $st && $st eq $storeid;
1264 }
1265
1266 return undef;
1267}
1268
1269sub foreach_volid {
1270 my ($list, $func) = @_;
1271
1272 return if !$list;
1273
1274 foreach my $sid (keys %$list) {
1275 foreach my $info (@{$list->{$sid}}) {
1276 my $volid = $info->{volid};
1dc01b9f 1277 my ($sid1, $volname) = parse_volume_id($volid, 1);
b6cf0a66
DM
1278 if ($sid1 && $sid1 eq $sid) {
1279 &$func ($volid, $sid, $info);
1280 } else {
1281 warn "detected strange volid '$volid' in volume list for '$sid'\n";
1282 }
1283 }
1284 }
1285}
1286
8898dd7b
FG
1287sub extract_vzdump_config_tar {
1288 my ($archive, $conf_re) = @_;
1289
1290 die "ERROR: file '$archive' does not exist\n" if ! -f $archive;
1291
1292 my $pid = open(my $fh, '-|', 'tar', 'tf', $archive) ||
1293 die "unable to open file '$archive'\n";
1294
1295 my $file;
1296 while (defined($file = <$fh>)) {
086c4bf1 1297 if ($file =~ $conf_re) {
8898dd7b
FG
1298 $file = $1; # untaint
1299 last;
1300 }
1301 }
1302
1303 kill 15, $pid;
1304 waitpid $pid, 0;
1305 close $fh;
1306
1307 die "ERROR: archive contains no configuration file\n" if !$file;
1308 chomp $file;
1309
1310 my $raw = '';
1311 my $out = sub {
1312 my $output = shift;
1313 $raw .= "$output\n";
1314 };
1315
1316 PVE::Tools::run_command(['tar', '-xpOf', $archive, $file, '--occurrence'], outfunc => $out);
1317
1318 return wantarray ? ($raw, $file) : $raw;
1319}
1320
1321sub extract_vzdump_config_vma {
1322 my ($archive, $comp) = @_;
1323
1324 my $cmd;
1325 my $raw = '';
1326 my $out = sub {
1327 my $output = shift;
1328 $raw .= "$output\n";
1329 };
1330
1331
1332 if ($comp) {
1333 my $uncomp;
1334 if ($comp eq 'gz') {
1335 $uncomp = ["zcat", $archive];
1336 } elsif ($comp eq 'lzo') {
1337 $uncomp = ["lzop", "-d", "-c", $archive];
1338 } else {
1339 die "unknown compression method '$comp'\n";
1340 }
1341 $cmd = [$uncomp, ["vma", "config", "-"]];
1342
1343 # in some cases, lzop/zcat exits with 1 when its stdout pipe is
1344 # closed early by vma, detect this and ignore the exit code later
1345 my $broken_pipe;
1346 my $errstring;
1347 my $err = sub {
1348 my $output = shift;
1349 if ($output =~ m/lzop: Broken pipe: <stdout>/ || $output =~ m/gzip: stdout: Broken pipe/) {
1350 $broken_pipe = 1;
1351 } elsif (!defined ($errstring) && $output !~ m/^\s*$/) {
1352 $errstring = "Failed to extract config from VMA archive: $output\n";
1353 }
1354 };
1355
1356 # in other cases, the pipeline will exit with exit code 141
1357 # because of the broken pipe, handle / ignore this as well
1358 my $rc;
1359 eval {
1360 $rc = PVE::Tools::run_command($cmd, outfunc => $out, errfunc => $err, noerr => 1);
1361 };
1362 my $rerr = $@;
1363
1364 # use exit code if no stderr output and not just broken pipe
fc1089fc 1365 if (!$errstring && !$broken_pipe && $rc != 0 && $rc != 141) {
8898dd7b
FG
1366 die "$rerr\n" if $rerr;
1367 die "config extraction failed with exit code $rc\n";
1368 }
1369 die "$errstring\n" if $errstring;
1370 } else {
1371 # simple case without compression and weird piping behaviour
1372 PVE::Tools::run_command(["vma", "config", $archive], outfunc => $out);
1373 }
1374
1375 return wantarray ? ($raw, undef) : $raw;
1376}
1377
1378sub extract_vzdump_config {
1379 my ($cfg, $volid) = @_;
1380
c855ac15
DM
1381 my ($storeid, $volname) = parse_volume_id($volid);
1382 if (defined($storeid)) {
1383 my $scfg = storage_config($cfg, $storeid);
1384 if ($scfg->{type} eq 'pbs') {
1385 storage_check_enabled($cfg, $storeid);
1386 return PVE::Storage::PBSPlugin->extract_vzdump_config($scfg, $volname, $storeid);
1387 }
1388 }
1389
8898dd7b
FG
1390 my $archive = abs_filesystem_path($cfg, $volid);
1391
89443394 1392 if ($volid =~ /vzdump-(lxc|openvz)-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|(tar(\.(gz|lzo))?))$/) {
086c4bf1 1393 return extract_vzdump_config_tar($archive, qr!^(\./etc/vzdump/(pct|vps)\.conf)$!);
89443394 1394 } elsif ($volid =~ /vzdump-qemu-\d+-(\d{4})_(\d{2})_(\d{2})-(\d{2})_(\d{2})_(\d{2})\.(tgz|((tar|vma)(\.(gz|lzo))?))$/) {
8898dd7b
FG
1395 my $format;
1396 my $comp;
1397 if ($7 eq 'tgz') {
1398 $format = 'tar';
1399 $comp = 'gz';
1400 } else {
1401 $format = $9;
1402 $comp = $11 if defined($11);
1403 }
1404
1405 if ($format eq 'tar') {
1406 return extract_vzdump_config_tar($archive, qr!\(\./qemu-server\.conf\)!);
1407 } else {
1408 return extract_vzdump_config_vma($archive, $comp);
1409 }
1410 } else {
1411 die "cannot determine backup guest type for backup archive '$volid'\n";
1412 }
1413}
1414
47f37b53
WB
1415sub volume_export {
1416 my ($cfg, $fh, $volid, $format, $snapshot, $base_snapshot, $with_snapshots) = @_;
1417
1418 my ($storeid, $volname) = parse_volume_id($volid, 1);
1419 die "cannot export volume '$volid'\n" if !$storeid;
1420 my $scfg = storage_config($cfg, $storeid);
1421 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1422 return $plugin->volume_export($scfg, $storeid, $fh, $volname, $format,
1423 $snapshot, $base_snapshot, $with_snapshots);
1424}
1425
1426sub volume_import {
1427 my ($cfg, $fh, $volid, $format, $base_snapshot, $with_snapshots) = @_;
1428
1429 my ($storeid, $volname) = parse_volume_id($volid, 1);
1430 die "cannot import into volume '$volid'\n" if !$storeid;
1431 my $scfg = storage_config($cfg, $storeid);
1432 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1433 return $plugin->volume_import($scfg, $storeid, $fh, $volname, $format,
1434 $base_snapshot, $with_snapshots);
1435}
1436
d390328b
WB
1437sub volume_export_formats {
1438 my ($cfg, $volid, $snapshot, $base_snapshot, $with_snapshots) = @_;
1439
1440 my ($storeid, $volname) = parse_volume_id($volid, 1);
1441 return if !$storeid;
1442 my $scfg = storage_config($cfg, $storeid);
1443 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1444 return $plugin->volume_export_formats($scfg, $storeid, $volname,
ae36189d
WB
1445 $snapshot, $base_snapshot,
1446 $with_snapshots);
d390328b
WB
1447}
1448
1449sub volume_import_formats {
1450 my ($cfg, $volid, $base_snapshot, $with_snapshots) = @_;
1451
1452 my ($storeid, $volname) = parse_volume_id($volid, 1);
1453 return if !$storeid;
1454 my $scfg = storage_config($cfg, $storeid);
1455 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1456 return $plugin->volume_import_formats($scfg, $storeid, $volname,
1457 $base_snapshot, $with_snapshots);
1458}
1459
1460sub volume_transfer_formats {
1461 my ($cfg, $src_volid, $dst_volid, $snapshot, $base_snapshot, $with_snapshots) = @_;
1462 my @export_formats = volume_export_formats($cfg, $src_volid, $snapshot, $base_snapshot, $with_snapshots);
1463 my @import_formats = volume_import_formats($cfg, $dst_volid, $base_snapshot, $with_snapshots);
1464 my %import_hash = map { $_ => 1 } @import_formats;
1465 my @common = grep { $import_hash{$_} } @export_formats;
1466 return @common;
1467}
1468
f7621c01
DM
1469# bash completion helper
1470
1471sub complete_storage {
746e530f 1472 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1473
746e530f 1474 my $cfg = PVE::Storage::config();
180c8b02 1475
746e530f 1476 return $cmdname eq 'add' ? [] : [ PVE::Storage::storage_ids($cfg) ];
f7621c01
DM
1477}
1478
1479sub complete_storage_enabled {
746e530f 1480 my ($cmdname, $pname, $cvalue) = @_;
f7621c01 1481
746e530f 1482 my $res = [];
f7621c01 1483
746e530f
DM
1484 my $cfg = PVE::Storage::config();
1485 foreach my $sid (keys %{$cfg->{ids}}) {
1486 next if !storage_check_enabled($cfg, $sid, undef, 1);
1487 push @$res, $sid;
1488 }
1489 return $res;
f7621c01
DM
1490}
1491
98437f4c
DM
1492sub complete_content_type {
1493 my ($cmdname, $pname, $cvalue) = @_;
1494
7c7ae12f 1495 return [qw(rootdir images vztmpl iso backup snippets)];
98437f4c
DM
1496}
1497
bf7aed26
DM
1498sub complete_volume {
1499 my ($cmdname, $pname, $cvalue) = @_;
1500
1501 my $cfg = config();
1502
1503 my $storage_list = complete_storage_enabled();
1504
b70b0c58
DM
1505 if ($cvalue =~ m/^([^:]+):/) {
1506 $storage_list = [ $1 ];
1507 } else {
1508 if (scalar(@$storage_list) > 1) {
1509 # only list storage IDs to avoid large listings
1510 my $res = [];
1511 foreach my $storeid (@$storage_list) {
1512 # Hack: simply return 2 artificial values, so that
1513 # completions does not finish
1514 push @$res, "$storeid:volname", "$storeid:...";
1515 }
1516 return $res;
1517 }
1518 }
1519
bf7aed26
DM
1520 my $res = [];
1521 foreach my $storeid (@$storage_list) {
1522 my $vollist = PVE::Storage::volume_list($cfg, $storeid);
1523
1524 foreach my $item (@$vollist) {
1525 push @$res, $item->{volid};
1526 }
1527 }
1528
1529 return $res;
1530}
1531
9edb99a5
WB
1532# Various io-heavy operations require io/bandwidth limits which can be
1533# configured on multiple levels: The global defaults in datacenter.cfg, and
1534# per-storage overrides. When we want to do a restore from storage A to storage
1535# B, we should take the smaller limit defined for storages A and B, and if no
1536# such limit was specified, use the one from datacenter.cfg.
1537sub get_bandwidth_limit {
1538 my ($operation, $storage_list, $override) = @_;
1539
1540 # called for each limit (global, per-storage) with the 'default' and the
1541 # $operation limit and should udpate $override for every limit affecting
1542 # us.
1543 my $use_global_limits = 0;
1544 my $apply_limit = sub {
1545 my ($bwlimit) = @_;
1546 if (defined($bwlimit)) {
1547 my $limits = PVE::JSONSchema::parse_property_string('bwlimit', $bwlimit);
1548 my $limit = $limits->{$operation} // $limits->{default};
1549 if (defined($limit)) {
1550 if (!$override || $limit < $override) {
1551 $override = $limit;
1552 }
1553 return;
1554 }
1555 }
1556 # If there was no applicable limit, try to apply the global ones.
1557 $use_global_limits = 1;
1558 };
1559
77445e9b
WB
1560 my ($rpcenv, $authuser);
1561 if (defined($override)) {
1562 $rpcenv = PVE::RPCEnvironment->get();
1563 $authuser = $rpcenv->get_user();
1564 }
9edb99a5
WB
1565
1566 # Apply per-storage limits - if there are storages involved.
074bdd35 1567 if (defined($storage_list) && @$storage_list) {
9edb99a5
WB
1568 my $config = config();
1569
1570 # The Datastore.Allocate permission allows us to modify the per-storage
1571 # limits, therefore it also allows us to override them.
1572 # Since we have most likely multiple storages to check, do a quick check on
1573 # the general '/storage' path to see if we can skip the checks entirely:
77445e9b 1574 return $override if $rpcenv && $rpcenv->check($authuser, '/storage', ['Datastore.Allocate'], 1);
9edb99a5
WB
1575
1576 my %done;
1577 foreach my $storage (@$storage_list) {
396aedff 1578 next if !defined($storage);
9edb99a5
WB
1579 # Avoid duplicate checks:
1580 next if $done{$storage};
1581 $done{$storage} = 1;
1582
1583 # Otherwise we may still have individual /storage/$ID permissions:
77445e9b 1584 if (!$rpcenv || !$rpcenv->check($authuser, "/storage/$storage", ['Datastore.Allocate'], 1)) {
9edb99a5
WB
1585 # And if not: apply the limits.
1586 my $storecfg = storage_config($config, $storage);
1587 $apply_limit->($storecfg->{bwlimit});
1588 }
1589 }
1590
1591 # Storage limits take precedence over the datacenter defaults, so if
1592 # a limit was applied:
1593 return $override if !$use_global_limits;
1594 }
1595
1596 # Sys.Modify on '/' means we can change datacenter.cfg which contains the
1597 # global default limits.
77445e9b 1598 if (!$rpcenv || !$rpcenv->check($authuser, '/', ['Sys.Modify'], 1)) {
9edb99a5
WB
1599 # So if we cannot modify global limits, apply them to our currently
1600 # requested override.
1601 my $dc = cfs_read_file('datacenter.cfg');
1602 $apply_limit->($dc->{bwlimit});
1603 }
1604
1605 return $override;
1606}
1607
76c1e57b 1608# checks if the storage id is available and dies if not
9280153e
TL
1609sub assert_sid_unused {
1610 my ($sid) = @_;
76c1e57b
DC
1611
1612 my $cfg = config();
9280153e
TL
1613 if (my $scfg = storage_config($cfg, $sid, 1)) {
1614 die "storage ID '$sid' already defined\n";
76c1e57b
DC
1615 }
1616
1617 return undef;
1618}
1619
b6cf0a66 16201;