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