]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage.pm
bump version to 4.0-22
[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
1689e627 15use PVE::Tools qw(run_command file_read_firstline $IPV6RE);
1dc01b9f 16use PVE::Cluster qw(cfs_read_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;
25use PVE::Storage::NFSPlugin;
26use PVE::Storage::ISCSIPlugin;
0509010d 27use PVE::Storage::RBDPlugin;
caf1960c 28use PVE::Storage::SheepdogPlugin;
86616554 29use PVE::Storage::ISCSIDirectPlugin;
f4648aef 30use PVE::Storage::GlusterfsPlugin;
85fda4dd 31use PVE::Storage::ZFSPoolPlugin;
4f914e6e 32use PVE::Storage::ZFSPlugin;
14770890 33use PVE::Storage::DRBDPlugin;
b6cf0a66 34
1dc01b9f
DM
35# load and initialize all plugins
36PVE::Storage::DirPlugin->register();
37PVE::Storage::LVMPlugin->register();
38PVE::Storage::NFSPlugin->register();
39PVE::Storage::ISCSIPlugin->register();
0509010d 40PVE::Storage::RBDPlugin->register();
caf1960c 41PVE::Storage::SheepdogPlugin->register();
86616554 42PVE::Storage::ISCSIDirectPlugin->register();
f4648aef 43PVE::Storage::GlusterfsPlugin->register();
85fda4dd 44PVE::Storage::ZFSPoolPlugin->register();
4f914e6e 45PVE::Storage::ZFSPlugin->register();
14770890 46PVE::Storage::DRBDPlugin->register();
1dc01b9f 47PVE::Storage::Plugin->init();
b6cf0a66 48
1dc01b9f 49my $UDEVADM = '/sbin/udevadm';
b6cf0a66 50
1dc01b9f 51# PVE::Storage utility functions
b6cf0a66
DM
52
53sub config {
54 return cfs_read_file("storage.cfg");
55}
56
b6cf0a66
DM
57sub lock_storage_config {
58 my ($code, $errmsg) = @_;
59
60 cfs_lock_file("storage.cfg", undef, $code);
61 my $err = $@;
62 if ($err) {
63 $errmsg ? die "$errmsg: $err" : die $err;
64 }
65}
66
b6cf0a66
DM
67sub storage_config {
68 my ($cfg, $storeid, $noerr) = @_;
69
70 die "no storage id specified\n" if !$storeid;
1a3459ac 71
b6cf0a66
DM
72 my $scfg = $cfg->{ids}->{$storeid};
73
74 die "storage '$storeid' does not exists\n" if (!$noerr && !$scfg);
75
76 return $scfg;
77}
78
79sub storage_check_node {
80 my ($cfg, $storeid, $node, $noerr) = @_;
81
1dc01b9f 82 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
83
84 if ($scfg->{nodes}) {
85 $node = PVE::INotify::nodename() if !$node || ($node eq 'localhost');
86 if (!$scfg->{nodes}->{$node}) {
da156fb3 87 die "storage '$storeid' is not available on node '$node'\n" if !$noerr;
b6cf0a66
DM
88 return undef;
89 }
90 }
91
92 return $scfg;
93}
94
95sub storage_check_enabled {
96 my ($cfg, $storeid, $node, $noerr) = @_;
97
1dc01b9f 98 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
99
100 if ($scfg->{disable}) {
101 die "storage '$storeid' is disabled\n" if !$noerr;
102 return undef;
103 }
104
105 return storage_check_node($cfg, $storeid, $node, $noerr);
106}
107
108sub storage_ids {
109 my ($cfg) = @_;
110
1dc01b9f 111 return keys %{$cfg->{ids}};
b6cf0a66
DM
112}
113
1dc01b9f
DM
114sub file_size_info {
115 my ($filename, $timeout) = @_;
b6cf0a66 116
1dc01b9f 117 return PVE::Storage::Plugin::file_size_info($filename, $timeout);
b6cf0a66
DM
118}
119
20ccac1b
AD
120sub volume_size_info {
121 my ($cfg, $volid, $timeout) = @_;
122
f18199e5
DM
123 my ($storeid, $volname) = parse_volume_id($volid, 1);
124 if ($storeid) {
125 my $scfg = storage_config($cfg, $storeid);
126 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
127 return $plugin->volume_size_info($scfg, $storeid, $volname, $timeout);
128 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
129 return file_size_info($volid, $timeout);
130 } else {
131 return 0;
132 }
20ccac1b
AD
133}
134
7e6c05dc
AD
135sub volume_resize {
136 my ($cfg, $volid, $size, $running) = @_;
137
138 my ($storeid, $volname) = parse_volume_id($volid, 1);
139 if ($storeid) {
140 my $scfg = storage_config($cfg, $storeid);
141 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
142 return $plugin->volume_resize($scfg, $storeid, $volname, $size, $running);
143 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 144 die "resize file/device '$volid' is not possible\n";
7e6c05dc 145 } else {
f824c722 146 die "unable to parse volume ID '$volid'\n";
7e6c05dc
AD
147 }
148}
149
1597f1f9
WL
150sub volume_rollback_is_possible {
151 my ($cfg, $volid, $snap) = @_;
e0852ba7 152
1597f1f9
WL
153 my ($storeid, $volname) = parse_volume_id($volid, 1);
154 if ($storeid) {
155 my $scfg = storage_config($cfg, $storeid);
156 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
157 return $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
158 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 159 die "snapshot rollback file/device '$volid' is not possible\n";
1597f1f9 160 } else {
f824c722 161 die "unable to parse volume ID '$volid'\n";
1597f1f9
WL
162 }
163}
164
db60719c 165sub volume_snapshot {
f5640e7d 166 my ($cfg, $volid, $snap) = @_;
db60719c
AD
167
168 my ($storeid, $volname) = parse_volume_id($volid, 1);
169 if ($storeid) {
170 my $scfg = storage_config($cfg, $storeid);
171 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
f5640e7d 172 return $plugin->volume_snapshot($scfg, $storeid, $volname, $snap);
db60719c 173 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 174 die "snapshot file/device '$volid' is not possible\n";
db60719c 175 } else {
f824c722 176 die "unable to parse volume ID '$volid'\n";
db60719c
AD
177 }
178}
179
22a2a633
AD
180sub volume_snapshot_rollback {
181 my ($cfg, $volid, $snap) = @_;
182
183 my ($storeid, $volname) = parse_volume_id($volid, 1);
184 if ($storeid) {
185 my $scfg = storage_config($cfg, $storeid);
186 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b3f302c6 187 $plugin->volume_rollback_is_possible($scfg, $storeid, $volname, $snap);
22a2a633
AD
188 return $plugin->volume_snapshot_rollback($scfg, $storeid, $volname, $snap);
189 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 190 die "snapshot rollback file/device '$volid' is not possible\n";
22a2a633 191 } else {
f824c722 192 die "unable to parse volume ID '$volid'\n";
22a2a633
AD
193 }
194}
195
5753c9d1
AD
196sub volume_snapshot_delete {
197 my ($cfg, $volid, $snap, $running) = @_;
198
199 my ($storeid, $volname) = parse_volume_id($volid, 1);
200 if ($storeid) {
201 my $scfg = storage_config($cfg, $storeid);
202 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
27cc55d4 203 return $plugin->volume_snapshot_delete($scfg, $storeid, $volname, $snap, $running);
5753c9d1 204 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
f824c722 205 die "snapshot delete file/device '$volid' is not possible\n";
5753c9d1 206 } else {
f824c722 207 die "unable to parse volume ID '$volid'\n";
5753c9d1
AD
208 }
209}
210
99473759
AD
211sub volume_has_feature {
212 my ($cfg, $feature, $volid, $snap, $running) = @_;
213
214 my ($storeid, $volname) = parse_volume_id($volid, 1);
215 if ($storeid) {
216 my $scfg = storage_config($cfg, $storeid);
217 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
218 return $plugin->volume_has_feature($scfg, $feature, $storeid, $volname, $snap, $running);
219 } elsif ($volid =~ m|^(/.+)$| && -e $volid) {
220 return undef;
221 } else {
222 return undef;
223 }
224}
225
1dc01b9f
DM
226sub get_image_dir {
227 my ($cfg, $storeid, $vmid) = @_;
b6cf0a66 228
1dc01b9f
DM
229 my $scfg = storage_config($cfg, $storeid);
230 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 231
1dc01b9f 232 my $path = $plugin->get_subdir($scfg, 'images');
b6cf0a66 233
1dc01b9f 234 return $vmid ? "$path/$vmid" : $path;
b6cf0a66
DM
235}
236
1dc01b9f 237sub get_private_dir {
b6cf0a66
DM
238 my ($cfg, $storeid, $vmid) = @_;
239
1dc01b9f
DM
240 my $scfg = storage_config($cfg, $storeid);
241 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 242
1dc01b9f 243 my $path = $plugin->get_subdir($scfg, 'rootdir');
d22a6133 244
1dc01b9f 245 return $vmid ? "$path/$vmid" : $path;
d22a6133
DM
246}
247
b6cf0a66
DM
248sub get_iso_dir {
249 my ($cfg, $storeid) = @_;
250
1dc01b9f
DM
251 my $scfg = storage_config($cfg, $storeid);
252 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 253
1dc01b9f 254 return $plugin->get_subdir($scfg, 'iso');
b6cf0a66
DM
255}
256
257sub get_vztmpl_dir {
258 my ($cfg, $storeid) = @_;
259
1dc01b9f
DM
260 my $scfg = storage_config($cfg, $storeid);
261 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 262
1dc01b9f 263 return $plugin->get_subdir($scfg, 'vztmpl');
b6cf0a66
DM
264}
265
568de3d1
DM
266sub get_backup_dir {
267 my ($cfg, $storeid) = @_;
268
1dc01b9f
DM
269 my $scfg = storage_config($cfg, $storeid);
270 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 271
1dc01b9f 272 return $plugin->get_subdir($scfg, 'backup');
b6cf0a66
DM
273}
274
275# library implementation
276
b6cf0a66
DM
277sub parse_vmid {
278 my $vmid = shift;
279
280 die "VMID '$vmid' contains illegal characters\n" if $vmid !~ m/^\d+$/;
281
282 return int($vmid);
283}
284
ec4b0dc7
AD
285sub parse_volname {
286 my ($cfg, $volid) = @_;
287
288 my ($storeid, $volname) = parse_volume_id($volid);
289
290 my $scfg = storage_config($cfg, $storeid);
291
292 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
a6f12626
DM
293
294 # returns ($vtype, $name, $vmid, $basename, $basevmid, $isBase, $format)
295
ec4b0dc7
AD
296 return $plugin->parse_volname($volname);
297}
298
b6cf0a66
DM
299sub parse_volume_id {
300 my ($volid, $noerr) = @_;
301
a7f3d909 302 return PVE::Storage::Plugin::parse_volume_id($volid, $noerr);
b6cf0a66
DM
303}
304
ad27ee3e
DM
305sub volume_is_base {
306 my ($cfg, $volid) = @_;
307
308 my ($sid, $volname) = parse_volume_id($volid, 1);
309 return 0 if !$sid;
310
311 if (my $scfg = $cfg->{ids}->{$sid}) {
312 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 313 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
ad27ee3e
DM
314 $plugin->parse_volname($volname);
315 return $isBase ? 1 : 0;
316 } else {
317 # stale volid with undefined storage - so we can just guess
318 if ($volid =~ m/base-/) {
319 return 1;
320 }
321 }
322
323 return 0;
324}
325
b6cf0a66
DM
326# try to map a filesystem path to a volume identifier
327sub path_to_volume_id {
328 my ($cfg, $path) = @_;
329
330 my $ids = $cfg->{ids};
331
1dc01b9f 332 my ($sid, $volname) = parse_volume_id($path, 1);
b6cf0a66 333 if ($sid) {
1dc01b9f 334 if (my $scfg = $ids->{$sid}) {
188aca38 335 if ($scfg->{path}) {
1dc01b9f
DM
336 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
337 my ($vtype, $name, $vmid) = $plugin->parse_volname($volname);
b6cf0a66
DM
338 return ($vtype, $path);
339 }
340 }
341 return ('');
342 }
343
1a3459ac 344 # Note: abs_path() return undef if $path doesn not exist
75d75990
DM
345 # for example when nfs storage is not mounted
346 $path = abs_path($path) || $path;
b6cf0a66
DM
347
348 foreach my $sid (keys %$ids) {
1dc01b9f
DM
349 my $scfg = $ids->{$sid};
350 next if !$scfg->{path};
351 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
352 my $imagedir = $plugin->get_subdir($scfg, 'images');
353 my $isodir = $plugin->get_subdir($scfg, 'iso');
354 my $tmpldir = $plugin->get_subdir($scfg, 'vztmpl');
355 my $backupdir = $plugin->get_subdir($scfg, 'backup');
356 my $privatedir = $plugin->get_subdir($scfg, 'rootdir');
b6cf0a66
DM
357
358 if ($path =~ m!^$imagedir/(\d+)/([^/\s]+)$!) {
359 my $vmid = $1;
360 my $name = $2;
fcbec654
DM
361
362 my $vollist = $plugin->list_images($sid, $scfg, $vmid);
363 foreach my $info (@$vollist) {
364 my ($storeid, $volname) = parse_volume_id($info->{volid});
365 my $volpath = $plugin->path($scfg, $volname, $storeid);
366 if ($volpath eq $path) {
367 return ('images', $info->{volid});
368 }
369 }
b6cf0a66
DM
370 } elsif ($path =~ m!^$isodir/([^/]+\.[Ii][Ss][Oo])$!) {
371 my $name = $1;
1a3459ac 372 return ('iso', "$sid:iso/$name");
b6cf0a66
DM
373 } elsif ($path =~ m!^$tmpldir/([^/]+\.tar\.gz)$!) {
374 my $name = $1;
375 return ('vztmpl', "$sid:vztmpl/$name");
1ac17c74
DM
376 } elsif ($path =~ m!^$privatedir/(\d+)$!) {
377 my $vmid = $1;
378 return ('rootdir', "$sid:rootdir/$vmid");
a22854e5 379 } elsif ($path =~ m!^$backupdir/([^/]+\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo))$!) {
568de3d1 380 my $name = $1;
1a3459ac 381 return ('iso', "$sid:backup/$name");
b6cf0a66
DM
382 }
383 }
384
385 # can't map path to volume id
386 return ('');
387}
388
389sub path {
207ea852 390 my ($cfg, $volid, $snapname) = @_;
b6cf0a66 391
1dc01b9f 392 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 393
1dc01b9f 394 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 395
1dc01b9f 396 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
207ea852 397 my ($path, $owner, $vtype) = $plugin->path($scfg, $volname, $storeid, $snapname);
2494896a 398 return wantarray ? ($path, $owner, $vtype) : $path;
b6cf0a66
DM
399}
400
35fbb2e6
DM
401sub abs_filesystem_path {
402 my ($cfg, $volid) = @_;
403
404 my $path;
405 if (PVE::Storage::parse_volume_id ($volid, 1)) {
406 PVE::Storage::activate_volumes($cfg, [ $volid ]);
407 $path = PVE::Storage::path($cfg, $volid);
408 } else {
409 if (-f $volid) {
410 my $abspath = abs_path($volid);
411 if ($abspath && $abspath =~ m|^(/.+)$|) {
412 $path = $1; # untaint any path
413 }
414 }
415 }
416
417 die "can't find file '$volid'\n" if !($path && -f $path);
418
419 return $path;
420}
421
b6cf0a66
DM
422sub storage_migrate {
423 my ($cfg, $volid, $target_host, $target_storeid, $target_volname) = @_;
424
6bf56298 425 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66
DM
426 $target_volname = $volname if !$target_volname;
427
6bf56298 428 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
429
430 # no need to migrate shared content
431 return if $storeid eq $target_storeid && $scfg->{shared};
432
6bf56298 433 my $tcfg = storage_config($cfg, $target_storeid);
b6cf0a66
DM
434
435 my $target_volid = "${target_storeid}:${target_volname}";
436
437 my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_host'";
438
45c2ee35 439 my $sshoptions = "-o 'BatchMode=yes'";
b6cf0a66
DM
440 my $ssh = "/usr/bin/ssh $sshoptions";
441
442 local $ENV{RSYNC_RSH} = $ssh;
443
1dc01b9f
DM
444 # only implemented for file system based storage
445 if ($scfg->{path}) {
446 if ($tcfg->{path}) {
b6cf0a66 447
1dc01b9f
DM
448 my $src_plugin = PVE::Storage::Plugin->lookup($scfg->{type});
449 my $dst_plugin = PVE::Storage::Plugin->lookup($tcfg->{type});
6bf56298
DM
450 my $src = $src_plugin->path($scfg, $volname, $storeid);
451 my $dst = $dst_plugin->path($tcfg, $target_volname, $target_storeid);
b6cf0a66 452
1dc01b9f 453 my $dirname = dirname($dst);
b6cf0a66
DM
454
455 if ($tcfg->{shared}) { # we can do a local copy
1a3459ac 456
f81372ac 457 run_command(['/bin/mkdir', '-p', $dirname]);
b6cf0a66 458
1dc01b9f 459 run_command(['/bin/cp', $src, $dst]);
b6cf0a66 460
1dc01b9f 461 } else {
b6cf0a66 462
1a3459ac 463 run_command(['/usr/bin/ssh', "root\@${target_host}",
1dc01b9f 464 '/bin/mkdir', '-p', $dirname]);
b6cf0a66 465
1dc01b9f
DM
466 # we use rsync with --sparse, so we can't use --inplace,
467 # so we remove file on the target if it already exists to
468 # save space
469 my ($size, $format) = PVE::Storage::Plugin::file_size_info($src);
470 if ($format && ($format eq 'raw') && $size) {
1a3459ac 471 run_command(['/usr/bin/ssh', "root\@${target_host}",
1dc01b9f
DM
472 'rm', '-f', $dst],
473 outfunc => sub {});
474 }
b6cf0a66 475
1a3459ac 476 my $cmd = ['/usr/bin/rsync', '--progress', '--sparse', '--whole-file',
1dc01b9f 477 $src, "root\@${target_host}:$dst"];
b6cf0a66 478
1dc01b9f 479 my $percent = -1;
b6cf0a66 480
1dc01b9f
DM
481 run_command($cmd, outfunc => sub {
482 my $line = shift;
b6cf0a66 483
1dc01b9f
DM
484 if ($line =~ m/^\s*(\d+\s+(\d+)%\s.*)$/) {
485 if ($2 > $percent) {
486 $percent = $2;
487 print "rsync status: $1\n";
488 *STDOUT->flush();
489 }
490 } else {
491 print "$line\n";
492 *STDOUT->flush();
493 }
494 });
495 }
496 } else {
497 die "$errstr - target type '$tcfg->{type}' not implemented\n";
498 }
e0852ba7 499
3d621977
WL
500 } elsif ($scfg->{type} eq 'zfspool') {
501
e0852ba7 502 if ($tcfg->{type} eq 'zfspool') {
3d621977 503
e0852ba7
DM
504 die "$errstr - pool on target has not same name as source!"
505 if $tcfg->{pool} ne $scfg->{pool};
3d621977 506
e0852ba7 507 my (undef, $volname) = parse_volname($cfg, $volid);
3d621977
WL
508
509 my $zfspath = "$scfg->{pool}\/$volname";
510
e0852ba7 511 my $snap = "zfs snapshot $zfspath\@__migration__";
3d621977 512
e0852ba7 513 my $send = "zfs send -v $zfspath\@__migration__ \| ssh root\@$target_host zfs recv $zfspath";
3d621977 514
e0852ba7 515 my $destroy_target = "ssh root\@$target_host zfs destroy $zfspath\@__migration__";
3d621977 516 run_command($snap);
e0852ba7 517 eval{
3d621977
WL
518 run_command($send);
519 };
520 my $err;
521 if ($err = $@){
522 run_command("zfs destroy $zfspath\@__migration__");
523 die $err;
e0852ba7
DM
524 }
525 run_command($destroy_target);
3d621977
WL
526
527 } else {
528 die "$errstr - target type $tcfg->{type} is not valid\n";
529 }
1dc01b9f
DM
530 } else {
531 die "$errstr - source type '$scfg->{type}' not implemented\n";
b6cf0a66
DM
532 }
533}
534
2502b33b 535sub vdisk_clone {
7bbc4004 536 my ($cfg, $volid, $vmid, $snap) = @_;
1a3459ac 537
2502b33b
DM
538 my ($storeid, $volname) = parse_volume_id($volid);
539
540 my $scfg = storage_config($cfg, $storeid);
541
542 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 543
2502b33b
DM
544 activate_storage($cfg, $storeid);
545
546 # lock shared storage
547 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
7bbc4004 548 my $volname = $plugin->clone_image($scfg, $storeid, $volname, $vmid, $snap);
2502b33b
DM
549 return "$storeid:$volname";
550 });
551}
552
553sub vdisk_create_base {
554 my ($cfg, $volid) = @_;
555
556 my ($storeid, $volname) = parse_volume_id($volid);
557
558 my $scfg = storage_config($cfg, $storeid);
559
560 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 561
2502b33b
DM
562 activate_storage($cfg, $storeid);
563
564 # lock shared storage
565 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
566 my $volname = $plugin->create_base($storeid, $scfg, $volname);
567 return "$storeid:$volname";
568 });
569}
570
1dc01b9f
DM
571sub vdisk_alloc {
572 my ($cfg, $storeid, $vmid, $fmt, $name, $size) = @_;
b6cf0a66 573
1dc01b9f 574 die "no storage id specified\n" if !$storeid;
b6cf0a66 575
1dc01b9f 576 PVE::JSONSchema::parse_storage_id($storeid);
b6cf0a66 577
1dc01b9f 578 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 579
1dc01b9f 580 die "no VMID specified\n" if !$vmid;
b6cf0a66 581
1dc01b9f 582 $vmid = parse_vmid($vmid);
b6cf0a66 583
1dc01b9f 584 my $defformat = PVE::Storage::Plugin::default_format($scfg);
b6cf0a66 585
1dc01b9f 586 $fmt = $defformat if !$fmt;
b6cf0a66 587
1dc01b9f 588 activate_storage($cfg, $storeid);
3af60e62 589
1dc01b9f 590 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 591
1dc01b9f
DM
592 # lock shared storage
593 return $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
afdfbe55
WB
594 my $old_umask = umask(umask|0037);
595 my $volname = eval { $plugin->alloc_image($storeid, $scfg, $vmid, $fmt, $name, $size) };
596 my $err = $@;
597 umask $old_umask;
598 die $err if $err;
1dc01b9f
DM
599 return "$storeid:$volname";
600 });
b6cf0a66
DM
601}
602
1dc01b9f
DM
603sub vdisk_free {
604 my ($cfg, $volid) = @_;
b6cf0a66 605
1dc01b9f 606 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 607
1dc01b9f 608 my $scfg = storage_config($cfg, $storeid);
b6cf0a66 609
1dc01b9f 610 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 611
1dc01b9f 612 activate_storage($cfg, $storeid);
b6cf0a66 613
1dc01b9f 614 my $cleanup_worker;
b6cf0a66 615
1dc01b9f
DM
616 # lock shared storage
617 $plugin->cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
32437ed2 618
35533c68 619 my ($vtype, $name, $vmid, undef, undef, $isBase, $format) =
32437ed2 620 $plugin->parse_volname($volname);
32437ed2
DM
621 if ($isBase) {
622 my $vollist = $plugin->list_images($storeid, $scfg);
623 foreach my $info (@$vollist) {
624 my (undef, $tmpvolname) = parse_volume_id($info->{volid});
f104d1dd
AD
625 my $basename = undef;
626 my $basevmid = undef;
32437ed2 627
f104d1dd 628 eval{
1a3459ac 629 (undef, undef, undef, $basename, $basevmid) =
f104d1dd
AD
630 $plugin->parse_volname($tmpvolname);
631 };
32437ed2 632
ff00afd7 633 if ($basename && defined($basevmid) && $basevmid == $vmid && $basename eq $name) {
32437ed2
DM
634 die "base volume '$volname' is still in use " .
635 "(use by '$tmpvolname')\n";
636 }
637 }
638 }
35533c68 639 $cleanup_worker = $plugin->free_image($storeid, $scfg, $volname, $isBase, $format);
1dc01b9f 640 });
b6cf0a66 641
1dc01b9f 642 return if !$cleanup_worker;
b6cf0a66 643
1dc01b9f
DM
644 my $rpcenv = PVE::RPCEnvironment::get();
645 my $authuser = $rpcenv->get_user();
b6cf0a66 646
1dc01b9f 647 $rpcenv->fork_worker('imgdel', undef, $authuser, $cleanup_worker);
b6cf0a66
DM
648}
649
b6cf0a66
DM
650#list iso or openvz template ($tt = <iso|vztmpl|backup>)
651sub template_list {
652 my ($cfg, $storeid, $tt) = @_;
653
1a3459ac
DM
654 die "unknown template type '$tt'\n"
655 if !($tt eq 'iso' || $tt eq 'vztmpl' || $tt eq 'backup');
b6cf0a66
DM
656
657 my $ids = $cfg->{ids};
658
659 storage_check_enabled($cfg, $storeid) if ($storeid);
660
661 my $res = {};
662
663 # query the storage
664
665 foreach my $sid (keys %$ids) {
666 next if $storeid && $storeid ne $sid;
667
668 my $scfg = $ids->{$sid};
669 my $type = $scfg->{type};
670
671 next if !storage_check_enabled($cfg, $sid, undef, 1);
672
673 next if $tt eq 'iso' && !$scfg->{content}->{iso};
674 next if $tt eq 'vztmpl' && !$scfg->{content}->{vztmpl};
675 next if $tt eq 'backup' && !$scfg->{content}->{backup};
676
1dc01b9f 677 activate_storage($cfg, $sid);
b6cf0a66 678
1dc01b9f
DM
679 if ($scfg->{path}) {
680 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 681
1dc01b9f 682 my $path = $plugin->get_subdir($scfg, $tt);
b6cf0a66
DM
683
684 foreach my $fn (<$path/*>) {
685
686 my $info;
687
688 if ($tt eq 'iso') {
689 next if $fn !~ m!/([^/]+\.[Ii][Ss][Oo])$!;
690
691 $info = { volid => "$sid:iso/$1", format => 'iso' };
692
693 } elsif ($tt eq 'vztmpl') {
13d2cb79 694 next if $fn !~ m!/([^/]+\.tar\.([gx]z))$!;
b6cf0a66 695
13d2cb79 696 $info = { volid => "$sid:vztmpl/$1", format => "t$2" };
b6cf0a66
DM
697
698 } elsif ($tt eq 'backup') {
a22854e5 699 next if $fn !~ m!/([^/]+\.(tar|tar\.gz|tar\.lzo|tgz|vma|vma\.gz|vma\.lzo))$!;
1a3459ac 700
b6cf0a66
DM
701 $info = { volid => "$sid:backup/$1", format => $2 };
702 }
703
704 $info->{size} = -s $fn;
705
706 push @{$res->{$sid}}, $info;
707 }
708
709 }
710
711 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
712 }
713
714 return $res;
715}
716
20ccac1b 717
b6cf0a66
DM
718sub vdisk_list {
719 my ($cfg, $storeid, $vmid, $vollist) = @_;
720
721 my $ids = $cfg->{ids};
722
723 storage_check_enabled($cfg, $storeid) if ($storeid);
724
725 my $res = {};
726
727 # prepare/activate/refresh all storages
728
b6cf0a66
DM
729 my $storage_list = [];
730 if ($vollist) {
731 foreach my $volid (@$vollist) {
1dc01b9f
DM
732 my ($sid, undef) = parse_volume_id($volid);
733 next if !defined($ids->{$sid});
b6cf0a66
DM
734 next if !storage_check_enabled($cfg, $sid, undef, 1);
735 push @$storage_list, $sid;
b6cf0a66
DM
736 }
737 } else {
738 foreach my $sid (keys %$ids) {
739 next if $storeid && $storeid ne $sid;
740 next if !storage_check_enabled($cfg, $sid, undef, 1);
741 push @$storage_list, $sid;
b6cf0a66
DM
742 }
743 }
744
1dc01b9f 745 my $cache = {};
b6cf0a66 746
1dc01b9f 747 activate_storage_list($cfg, $storage_list, $cache);
b6cf0a66
DM
748
749 foreach my $sid (keys %$ids) {
1dc01b9f
DM
750 next if $storeid && $storeid ne $sid;
751 next if !storage_check_enabled($cfg, $sid, undef, 1);
b6cf0a66 752
1dc01b9f
DM
753 my $scfg = $ids->{$sid};
754 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
755 $res->{$sid} = $plugin->list_images($sid, $scfg, $vmid, $vollist, $cache);
b6cf0a66
DM
756 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
757 }
758
759 return $res;
760}
761
b6cf0a66
DM
762sub uevent_seqnum {
763
764 my $filename = "/sys/kernel/uevent_seqnum";
765
766 my $seqnum = 0;
1dc01b9f 767 if (my $fh = IO::File->new($filename, "r")) {
b6cf0a66
DM
768 my $line = <$fh>;
769 if ($line =~ m/^(\d+)$/) {
1dc01b9f 770 $seqnum = int($1);
b6cf0a66
DM
771 }
772 close ($fh);
773 }
774 return $seqnum;
775}
776
f3d4ef46 777sub activate_storage {
1dc01b9f 778 my ($cfg, $storeid, $cache) = @_;
b6cf0a66 779
f3d4ef46
DM
780 $cache = {} if !$cache;
781
b6cf0a66
DM
782 my $scfg = storage_check_enabled($cfg, $storeid);
783
1dc01b9f 784 return if $cache->{activated}->{$storeid};
b6cf0a66 785
1dc01b9f 786 $cache->{uevent_seqnum} = uevent_seqnum() if !$cache->{uevent_seqnum};
b6cf0a66 787
1dc01b9f 788 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 789
1dc01b9f
DM
790 if ($scfg->{base}) {
791 my ($baseid, undef) = parse_volume_id ($scfg->{base});
f3d4ef46
DM
792 activate_storage($cfg, $baseid, $cache);
793 }
794
795 if (!$plugin->check_connection($storeid, $scfg)) {
796 die "storage '$storeid' is not online\n";
b6cf0a66
DM
797 }
798
1dc01b9f
DM
799 $plugin->activate_storage($storeid, $scfg, $cache);
800
b6cf0a66
DM
801 my $newseq = uevent_seqnum ();
802
803 # only call udevsettle if there are events
1dc01b9f 804 if ($newseq > $cache->{uevent_seqnum}) {
b6cf0a66
DM
805 my $timeout = 30;
806 system ("$UDEVADM settle --timeout=$timeout"); # ignore errors
1dc01b9f 807 $cache->{uevent_seqnum} = $newseq;
b6cf0a66
DM
808 }
809
1dc01b9f 810 $cache->{activated}->{$storeid} = 1;
b6cf0a66
DM
811}
812
813sub activate_storage_list {
1dc01b9f 814 my ($cfg, $storeid_list, $cache) = @_;
b6cf0a66 815
1dc01b9f 816 $cache = {} if !$cache;
b6cf0a66
DM
817
818 foreach my $storeid (@$storeid_list) {
f3d4ef46 819 activate_storage($cfg, $storeid, $cache);
b6cf0a66
DM
820 }
821}
822
1dc01b9f
DM
823sub deactivate_storage {
824 my ($cfg, $storeid) = @_;
825
826 my $scfg = storage_config ($cfg, $storeid);
827 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
b6cf0a66 828
1dc01b9f
DM
829 my $cache = {};
830 $plugin->deactivate_storage($storeid, $scfg, $cache);
b6cf0a66
DM
831}
832
833sub activate_volumes {
c8943a85 834 my ($cfg, $vollist) = @_;
6703353b
DM
835
836 return if !($vollist && scalar(@$vollist));
837
b6cf0a66
DM
838 my $storagehash = {};
839 foreach my $volid (@$vollist) {
1dc01b9f 840 my ($storeid, undef) = parse_volume_id($volid);
b6cf0a66
DM
841 $storagehash->{$storeid} = 1;
842 }
843
1dc01b9f
DM
844 my $cache = {};
845
846 activate_storage_list($cfg, [keys %$storagehash], $cache);
b6cf0a66
DM
847
848 foreach my $volid (@$vollist) {
5521b580 849 my ($storeid, $volname) = parse_volume_id($volid);
1dc01b9f
DM
850 my $scfg = storage_config($cfg, $storeid);
851 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
c8943a85 852 $plugin->activate_volume($storeid, $scfg, $volname, $cache);
b6cf0a66
DM
853 }
854}
855
856sub deactivate_volumes {
857 my ($cfg, $vollist) = @_;
858
6703353b
DM
859 return if !($vollist && scalar(@$vollist));
860
1dc01b9f
DM
861 my $cache = {};
862
6703353b 863 my @errlist = ();
b6cf0a66 864 foreach my $volid (@$vollist) {
1dc01b9f 865 my ($storeid, $volname) = parse_volume_id($volid);
b6cf0a66 866
1dc01b9f
DM
867 my $scfg = storage_config($cfg, $storeid);
868 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
1a3459ac 869
1dc01b9f
DM
870 eval {
871 $plugin->deactivate_volume($storeid, $scfg, $volname, $cache);
872 };
873 if (my $err = $@) {
874 warn $err;
875 push @errlist, $volid;
b6cf0a66
DM
876 }
877 }
6703353b
DM
878
879 die "volume deativation failed: " . join(' ', @errlist)
880 if scalar(@errlist);
b6cf0a66
DM
881}
882
1a3459ac 883sub storage_info {
b6cf0a66
DM
884 my ($cfg, $content) = @_;
885
886 my $ids = $cfg->{ids};
887
888 my $info = {};
583c2802
DM
889
890 my @ctypes = PVE::Tools::split_list($content);
891
b6cf0a66
DM
892 my $slist = [];
893 foreach my $storeid (keys %$ids) {
894
b6cf0a66
DM
895 next if !storage_check_enabled($cfg, $storeid, undef, 1);
896
d73060be
DM
897 if (defined($content)) {
898 my $want_ctype = 0;
899 foreach my $ctype (@ctypes) {
900 if ($ids->{$storeid}->{content}->{$ctype}) {
901 $want_ctype = 1;
902 last;
903 }
583c2802 904 }
d73060be 905 next if !$want_ctype;
583c2802 906 }
d73060be 907
b6cf0a66
DM
908 my $type = $ids->{$storeid}->{type};
909
1a3459ac 910 $info->{$storeid} = {
b6cf0a66 911 type => $type,
1a3459ac
DM
912 total => 0,
913 avail => 0,
914 used => 0,
04a2e4f3 915 shared => $ids->{$storeid}->{shared} ? 1 : 0,
1dc01b9f 916 content => PVE::Storage::Plugin::content_hash_to_string($ids->{$storeid}->{content}),
b6cf0a66
DM
917 active => 0,
918 };
919
b6cf0a66
DM
920 push @$slist, $storeid;
921 }
922
1dc01b9f 923 my $cache = {};
b6cf0a66 924
b6cf0a66
DM
925 foreach my $storeid (keys %$ids) {
926 my $scfg = $ids->{$storeid};
b6cf0a66
DM
927 next if !$info->{$storeid};
928
f3d4ef46
DM
929 eval { activate_storage($cfg, $storeid, $cache); };
930 if (my $err = $@) {
931 warn $err;
932 next;
933 }
934
1dc01b9f 935 my $plugin = PVE::Storage::Plugin->lookup($scfg->{type});
7028645e
DM
936 my ($total, $avail, $used, $active);
937 eval { ($total, $avail, $used, $active) = $plugin->status($storeid, $scfg, $cache); };
938 warn $@ if $@;
1dc01b9f 939 next if !$active;
1a3459ac
DM
940 $info->{$storeid}->{total} = $total;
941 $info->{$storeid}->{avail} = $avail;
942 $info->{$storeid}->{used} = $used;
1dc01b9f 943 $info->{$storeid}->{active} = $active;
b6cf0a66
DM
944 }
945
946 return $info;
947}
948
949sub resolv_server {
950 my ($server) = @_;
1a3459ac 951
c67daeac
WB
952 my ($packed_ip, $family);
953 eval {
954 my @res = PVE::Tools::getaddrinfo_all($server);
955 $family = $res[0]->{family};
956 $packed_ip = (PVE::Tools::unpack_sockaddr_in46($res[0]->{addr}))[2];
957 };
b6cf0a66 958 if (defined $packed_ip) {
ee302b1c 959 return Socket::inet_ntop($family, $packed_ip);
b6cf0a66
DM
960 }
961 return undef;
962}
963
964sub scan_nfs {
965 my ($server_in) = @_;
966
967 my $server;
968 if (!($server = resolv_server ($server_in))) {
969 die "unable to resolve address for server '${server_in}'\n";
970 }
971
972 my $cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
973
974 my $res = {};
f81372ac 975 run_command($cmd, outfunc => sub {
b6cf0a66
DM
976 my $line = shift;
977
978 # note: howto handle white spaces in export path??
979 if ($line =~ m!^(/\S+)\s+(.+)$!) {
980 $res->{$1} = $2;
981 }
982 });
983
984 return $res;
985}
986
584d97f6
DM
987sub scan_zfs {
988
3932390b 989 my $cmd = ['zfs', 'list', '-t', 'filesystem', '-H', '-o', 'name,avail,used'];
584d97f6
DM
990
991 my $res = [];
992 run_command($cmd, outfunc => sub {
993 my $line = shift;
994
995 if ($line =~m/^(\S+)\s+(\S+)\s+(\S+)$/) {
3932390b 996 my ($pool, $size_str, $used_str) = ($1, $2, $3);
584d97f6 997 my $size = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($size_str);
3932390b 998 my $used = PVE::Storage::ZFSPoolPlugin::zfs_parse_size($used_str);
48e27f79
DM
999 # ignore subvolumes generated by our ZFSPoolPlugin
1000 return if $pool =~ m!/subvol-\d+-[^/]+$!;
3932390b 1001 push @$res, { pool => $pool, size => $size, free => $size-$used };
584d97f6
DM
1002 }
1003 });
1004
1005 return $res;
1006}
1007
b6cf0a66
DM
1008sub resolv_portal {
1009 my ($portal, $noerr) = @_;
1010
1689e627
WB
1011 my ($server, $port) = PVE::Tools::parse_host_and_port($portal);
1012 if ($server) {
b6cf0a66
DM
1013 if (my $ip = resolv_server($server)) {
1014 $server = $ip;
1689e627 1015 $server = "[$server]" if $server =~ /^$IPV6RE$/;
b6cf0a66
DM
1016 return $port ? "$server:$port" : $server;
1017 }
1018 }
1019 return undef if $noerr;
1020
1021 raise_param_exc({ portal => "unable to resolve portal address '$portal'" });
1022}
1023
1024# idea is from usbutils package (/usr/bin/usb-devices) script
1025sub __scan_usb_device {
1026 my ($res, $devpath, $parent, $level) = @_;
1027
1028 return if ! -d $devpath;
1029 return if $level && $devpath !~ m/^.*[-.](\d+)$/;
1030 my $port = $level ? int($1 - 1) : 0;
1031
1032 my $busnum = int(file_read_firstline("$devpath/busnum"));
1033 my $devnum = int(file_read_firstline("$devpath/devnum"));
1034
1035 my $d = {
1036 port => $port,
1037 level => $level,
1038 busnum => $busnum,
1039 devnum => $devnum,
1040 speed => file_read_firstline("$devpath/speed"),
1041 class => hex(file_read_firstline("$devpath/bDeviceClass")),
1042 vendid => file_read_firstline("$devpath/idVendor"),
1043 prodid => file_read_firstline("$devpath/idProduct"),
1044 };
1045
1046 if ($level) {
1047 my $usbpath = $devpath;
1048 $usbpath =~ s|^.*/\d+\-||;
1049 $d->{usbpath} = $usbpath;
1050 }
1051
1052 my $product = file_read_firstline("$devpath/product");
1053 $d->{product} = $product if $product;
1a3459ac 1054
b6cf0a66
DM
1055 my $manu = file_read_firstline("$devpath/manufacturer");
1056 $d->{manufacturer} = $manu if $manu;
1057
1058 my $serial => file_read_firstline("$devpath/serial");
1059 $d->{serial} = $serial if $serial;
1060
1061 push @$res, $d;
1062
1063 foreach my $subdev (<$devpath/$busnum-*>) {
1064 next if $subdev !~ m|/$busnum-[0-9]+(\.[0-9]+)*$|;
1065 __scan_usb_device($res, $subdev, $devnum, $level + 1);
1066 }
1067
1068};
1069
1070sub scan_usb {
1071
1072 my $devlist = [];
1073
1074 foreach my $device (</sys/bus/usb/devices/usb*>) {
1075 __scan_usb_device($devlist, $device, 0, 0);
1076 }
1077
1078 return $devlist;
1079}
1080
1081sub scan_iscsi {
1082 my ($portal_in) = @_;
1083
1084 my $portal;
1dc01b9f 1085 if (!($portal = resolv_portal($portal_in))) {
b6cf0a66
DM
1086 die "unable to parse/resolve portal address '${portal_in}'\n";
1087 }
1088
1dc01b9f 1089 return PVE::Storage::ISCSIPlugin::iscsi_discovery($portal);
b6cf0a66
DM
1090}
1091
1092sub storage_default_format {
1093 my ($cfg, $storeid) = @_;
1094
1095 my $scfg = storage_config ($cfg, $storeid);
1096
1dc01b9f 1097 return PVE::Storage::Plugin::default_format($scfg);
b6cf0a66
DM
1098}
1099
1100sub vgroup_is_used {
1101 my ($cfg, $vgname) = @_;
1102
1103 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1104 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1105 if ($scfg->{type} eq 'lvm' && $scfg->{vgname} eq $vgname) {
1106 return 1;
1107 }
1108 }
1109
1110 return undef;
1111}
1112
1113sub target_is_used {
1114 my ($cfg, $target) = @_;
1115
1116 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1117 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1118 if ($scfg->{type} eq 'iscsi' && $scfg->{target} eq $target) {
1119 return 1;
1120 }
1121 }
1122
1123 return undef;
1124}
1125
1126sub volume_is_used {
1127 my ($cfg, $volid) = @_;
1128
1129 foreach my $storeid (keys %{$cfg->{ids}}) {
1dc01b9f 1130 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1131 if ($scfg->{base} && $scfg->{base} eq $volid) {
1132 return 1;
1133 }
1134 }
1135
1136 return undef;
1137}
1138
1139sub storage_is_used {
1140 my ($cfg, $storeid) = @_;
1141
1142 foreach my $sid (keys %{$cfg->{ids}}) {
1dc01b9f 1143 my $scfg = storage_config($cfg, $sid);
b6cf0a66 1144 next if !$scfg->{base};
1dc01b9f 1145 my ($st) = parse_volume_id($scfg->{base});
b6cf0a66
DM
1146 return 1 if $st && $st eq $storeid;
1147 }
1148
1149 return undef;
1150}
1151
1152sub foreach_volid {
1153 my ($list, $func) = @_;
1154
1155 return if !$list;
1156
1157 foreach my $sid (keys %$list) {
1158 foreach my $info (@{$list->{$sid}}) {
1159 my $volid = $info->{volid};
1dc01b9f 1160 my ($sid1, $volname) = parse_volume_id($volid, 1);
b6cf0a66
DM
1161 if ($sid1 && $sid1 eq $sid) {
1162 &$func ($volid, $sid, $info);
1163 } else {
1164 warn "detected strange volid '$volid' in volume list for '$sid'\n";
1165 }
1166 }
1167 }
1168}
1169
f7621c01
DM
1170# bash completion helper
1171
1172sub complete_storage {
1173 my ($cmdname, $pname, $cvalue) = @_;
1174
1175 return $cmdname eq 'add' ? [] : [ PVE::Storage::storage_ids() ];
1176}
1177
1178sub complete_storage_enabled {
1179 my ($cmdname, $pname, $cvalue) = @_;
1180
1181 my $res = [];
1182
1183 my $cfg = PVE::Storage::config();
1184 foreach my $sid (keys %{$cfg->{ids}}) {
1185 next if !storage_check_enabled($cfg, $sid, undef, 1);
1186 push @$res, $sid;
1187 }
1188 return $res;
1189}
1190
b6cf0a66 11911;