]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage.pm
use correct package prefix
[pve-storage.git] / PVE / Storage.pm
CommitLineData
b6cf0a66
DM
1package PVE::Storage;
2
3use strict;
4use POSIX;
5use IO::Select;
6use IO::Dir;
7use IO::File;
8use Fcntl ':flock';
9use File::stat;
10use File::Basename;
11use File::Path;
12use IPC::Open2;
13use Cwd 'abs_path';
14use Getopt::Long qw(GetOptionsFromArray);
15use Socket;
16use Digest::SHA1;
17use Net::Ping;
18
19use PVE::Tools qw(run_command file_read_firstline trim);
20use PVE::Cluster qw(cfs_register_file cfs_read_file cfs_write_file cfs_lock_file);
21use PVE::Exception qw(raise_param_exc);
22use PVE::JSONSchema;
23use PVE::INotify;
24
25my $ISCSIADM = '/usr/bin/iscsiadm';
26my $UDEVADM = '/sbin/udevadm';
27
28$ISCSIADM = undef if ! -X $ISCSIADM;
29
30# fixme: always_call_parser => 1 ??
31cfs_register_file ('storage.cfg',
32 \&parse_config,
33 \&write_config);
34
35# generic utility function
36
37sub config {
38 return cfs_read_file("storage.cfg");
39}
40
41sub check_iscsi_support {
42 my $noerr = shift;
43
44 if (!$ISCSIADM) {
45 my $msg = "no iscsi support - please install open-iscsi";
46 if ($noerr) {
47 warn "warning: $msg\n";
48 return 0;
49 }
50
51 die "error: $msg\n";
52 }
53
54 return 1;
55}
56
57sub load_stable_scsi_paths {
58
59 my $stable_paths = {};
60
61 my $stabledir = "/dev/disk/by-id";
62
63 if (my $dh = IO::Dir->new($stabledir)) {
64 while (defined(my $tmp = $dh->read)) {
65 # exclude filenames with part in name (same disk but partitions)
66 # use only filenames with scsi(with multipath i have the same device
67 # with dm-uuid-mpath , dm-name and scsi in name)
68 if($tmp !~ m/-part\d+$/ && $tmp =~ m/^scsi-/) {
69 my $path = "$stabledir/$tmp";
70 my $bdevdest = readlink($path);
71 if ($bdevdest && $bdevdest =~ m|^../../([^/]+)|) {
72 $stable_paths->{$1}=$tmp;
73 }
74 }
75 }
76 $dh->close;
77 }
78 return $stable_paths;
79}
80
81sub dir_glob_regex {
82 my ($dir, $regex) = @_;
83
84 my $dh = IO::Dir->new ($dir);
85 return wantarray ? () : undef if !$dh;
86
87 while (defined(my $tmp = $dh->read)) {
88 if (my @res = $tmp =~ m/^($regex)$/) {
89 $dh->close;
90 return wantarray ? @res : $tmp;
91 }
92 }
93 $dh->close;
94
95 return wantarray ? () : undef;
96}
97
98sub dir_glob_foreach {
99 my ($dir, $regex, $func) = @_;
100
101 my $dh = IO::Dir->new ($dir);
102 if (defined $dh) {
103 while (defined(my $tmp = $dh->read)) {
104 if (my @res = $tmp =~ m/^($regex)$/) {
105 &$func (@res);
106 }
107 }
108 }
109}
110
111sub read_proc_mounts {
112
113 local $/; # enable slurp mode
114
115 my $data = "";
116 if (my $fd = IO::File->new ("/proc/mounts", "r")) {
117 $data = <$fd>;
118 close ($fd);
119 }
120
121 return $data;
122}
123
124# PVE::Storage utility functions
125
126sub lock_storage_config {
127 my ($code, $errmsg) = @_;
128
129 cfs_lock_file("storage.cfg", undef, $code);
130 my $err = $@;
131 if ($err) {
132 $errmsg ? die "$errmsg: $err" : die $err;
133 }
134}
135
136my $confvars = {
137 path => 'path',
138 shared => 'bool',
139 disable => 'bool',
140 format => 'format',
141 content => 'content',
142 server => 'server',
143 export => 'path',
144 vgname => 'vgname',
145 base => 'volume',
146 portal => 'portal',
147 target => 'target',
148 nodes => 'nodes',
149 options => 'options',
150};
151
152my $required_config = {
153 dir => ['path'],
154 nfs => ['path', 'server', 'export'],
155 lvm => ['vgname'],
156 iscsi => ['portal', 'target'],
157};
158
159my $fixed_config = {
160 dir => ['path'],
161 nfs => ['path', 'server', 'export'],
162 lvm => ['vgname', 'base'],
163 iscsi => ['portal', 'target'],
164};
165
166my $default_config = {
167 dir => {
168 path => 1,
169 nodes => 0,
170 shared => 0,
171 disable => 0,
172 content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1, none => 1 },
173 { images => 1, rootdir => 1 }],
174 format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
175 },
176
177 nfs => {
178 path => 1,
179 nodes => 0,
180 disable => 0,
181 server => 1,
182 export => 1,
183 options => 0,
c63913bf 184 content => [ { images => 1, rootdir => 1, vztmpl => 1, iso => 1, backup => 1},
b6cf0a66
DM
185 { images => 1 }],
186 format => [ { raw => 1, qcow2 => 1, vmdk => 1 } , 'raw' ],
187 },
188
189 lvm => {
190 vgname => 1,
191 nodes => 0,
192 shared => 0,
193 disable => 0,
194 content => [ {images => 1}, { images => 1 }],
195 base => 1,
196 },
197
198 iscsi => {
199 portal => 1,
200 target => 1,
201 nodes => 0,
202 disable => 0,
203 content => [ {images => 1, none => 1}, { images => 1 }],
204 },
205};
206
207sub valid_content_types {
208 my ($stype) = @_;
209
210 my $def = $default_config->{$stype};
211
212 return {} if !$def;
213
214 return $def->{content}->[0];
215}
216
217sub content_hash_to_string {
218 my $hash = shift;
219
220 my @cta;
221 foreach my $ct (keys %$hash) {
222 push @cta, $ct if $hash->{$ct};
223 }
224
225 return join(',', @cta);
226}
227
228PVE::JSONSchema::register_format('pve-storage-path', \&verify_path);
229sub verify_path {
230 my ($path, $noerr) = @_;
231
232 # fixme: exclude more shell meta characters?
233 # we need absolute paths
234 if ($path !~ m|^/[^;\(\)]+|) {
235 return undef if $noerr;
236 die "value does not look like a valid absolute path\n";
237 }
238 return $path;
239}
240
241PVE::JSONSchema::register_format('pve-storage-server', \&verify_server);
242sub verify_server {
243 my ($server, $noerr) = @_;
244
245 # fixme: use better regex ?
246 # IP or DNS name
247 if ($server !~ m/^[[:alnum:]\-\.]+$/) {
248 return undef if $noerr;
249 die "value does not look like a valid server name or IP address\n";
250 }
251 return $server;
252}
253
254PVE::JSONSchema::register_format('pve-storage-portal', \&verify_portal);
255sub verify_portal {
256 my ($portal, $noerr) = @_;
257
258 # IP with optional port
259 if ($portal !~ m/^\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}(:\d+)?$/) {
260 return undef if $noerr;
261 die "value does not look like a valid portal address\n";
262 }
263 return $portal;
264}
265
266PVE::JSONSchema::register_format('pve-storage-portal-dns', \&verify_portal_dns);
267sub verify_portal_dns {
268 my ($portal, $noerr) = @_;
269
270 # IP or DNS name with optional port
271 if ($portal !~ m/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}|[[:alnum:]\-\.]+)(:\d+)?$/) {
272 return undef if $noerr;
273 die "value does not look like a valid portal address\n";
274 }
275 return $portal;
276}
277
278PVE::JSONSchema::register_format('pve-storage-content', \&verify_content);
279sub verify_content {
280 my ($ct, $noerr) = @_;
281
282 my $valid_content = valid_content_types('dir'); # dir includes all types
283
284 if (!$valid_content->{$ct}) {
285 return undef if $noerr;
286 die "invalid content type '$ct'\n";
287 }
288
289 return $ct;
290}
291
292PVE::JSONSchema::register_format('pve-storage-format', \&verify_format);
293sub verify_format {
294 my ($fmt, $noerr) = @_;
295
296 if ($fmt !~ m/(raw|qcow2|vmdk)/) {
297 return undef if $noerr;
298 die "invalid format '$fmt'\n";
299 }
300
301 return $fmt;
302}
303
304PVE::JSONSchema::register_format('pve-storage-options', \&verify_options);
305sub verify_options {
306 my ($value, $noerr) = @_;
307
308 # mount options (see man fstab)
309 if ($value !~ m/^\S+$/) {
310 return undef if $noerr;
311 die "invalid options '$value'\n";
312 }
313
314 return $value;
315}
316
317sub check_type {
318 my ($stype, $ct, $key, $value, $storeid, $noerr) = @_;
319
320 my $def = $default_config->{$stype};
321
322 if (!$def) { # should not happen
323 return undef if $noerr;
324 die "unknown storage type '$stype'\n";
325 }
326
327 if (!defined($def->{$key})) {
328 return undef if $noerr;
329 die "unexpected property\n";
330 }
331
332 if (!defined ($value)) {
333 return undef if $noerr;
334 die "got undefined value\n";
335 }
336
337 if ($value =~ m/[\n\r]/) {
338 return undef if $noerr;
339 die "property contains a line feed\n";
340 }
341
342 if ($ct eq 'bool') {
343 return 1 if ($value eq '1') || ($value =~ m/^(on|yes|true)$/i);
344 return 0 if ($value eq '0') || ($value =~ m/^(off|no|false)$/i);
345 return undef if $noerr;
346 die "type check ('boolean') failed - got '$value'\n";
347 } elsif ($ct eq 'options') {
348 return verify_options($value, $noerr);
349 } elsif ($ct eq 'path') {
350 return verify_path($value, $noerr);
351 } elsif ($ct eq 'server') {
352 return verify_server($value, $noerr);
353 } elsif ($ct eq 'vgname') {
354 return parse_lvm_name ($value, $noerr);
355 } elsif ($ct eq 'portal') {
356 return verify_portal($value, $noerr);
357 } elsif ($ct eq 'nodes') {
358 my $res = {};
359
360 foreach my $node (PVE::Tools::split_list($value)) {
361 if (PVE::JSONSchema::pve_verify_node_name($node, $noerr)) {
362 $res->{$node} = 1;
363 }
364 }
365
366 # no node restrictions for local storage
367 if ($storeid && $storeid eq 'local' && scalar(keys(%$res))) {
368 return undef if $noerr;
369 die "storage '$storeid' does not allow node restrictions\n";
370 }
371
372 return $res;
373 } elsif ($ct eq 'target') {
374 return $value;
375 } elsif ($ct eq 'string') {
376 return $value;
377 } elsif ($ct eq 'format') {
378 my $valid_formats = $def->{format}->[0];
379
380 if (!$valid_formats->{$value}) {
381 return undef if $noerr;
382 die "storage does not support format '$value'\n";
383 }
384
385 return $value;
386
387 } elsif ($ct eq 'content') {
388 my $valid_content = $def->{content}->[0];
389
390 my $res = {};
391
392 foreach my $c (PVE::Tools::split_list($value)) {
393 if (!$valid_content->{$c}) {
394 return undef if $noerr;
395 die "storage does not support content type '$c'\n";
396 }
397 $res->{$c} = 1;
398 }
399
6a4d7398 400 if ($res->{none} && scalar (keys %$res) > 1) {
b6cf0a66 401 return undef if $noerr;
6a4d7398 402 die "unable to combine 'none' with other content types\n";
b6cf0a66
DM
403 }
404
b6cf0a66
DM
405 return $res;
406 } elsif ($ct eq 'volume') {
407 return $value if parse_volume_id ($value, $noerr);
408 }
409
410 return undef if $noerr;
411 die "type check not implemented - internal error\n";
412}
413
414sub parse_config {
415 my ($filename, $raw) = @_;
416
417 my $ids = {};
418
6c64928f 419 my $digest = Digest::SHA1::sha1_hex(defined($raw) ? $raw : '');
b6cf0a66
DM
420
421 my $pri = 0;
422
423 while ($raw && $raw =~ s/^(.*?)(\n|$)//) {
424 my $line = $1;
425
b6cf0a66
DM
426 next if $line =~ m/^\#/;
427 next if $line =~ m/^\s*$/;
428
429 if ($line =~ m/^(\S+):\s*(\S+)\s*$/) {
430 my $storeid = $2;
431 my $type = $1;
432 my $ignore = 0;
433
05f697c9 434 if (!PVE::JSONSchema::parse_storage_id($storeid, 1)) {
b6cf0a66
DM
435 $ignore = 1;
436 warn "ignoring storage '$storeid' - (illegal characters)\n";
437 } elsif (!$default_config->{$type}) {
438 $ignore = 1;
439 warn "ignoring storage '$storeid' (unsupported type '$type')\n";
440 } else {
441 $ids->{$storeid}->{type} = $type;
442 $ids->{$storeid}->{priority} = $pri++;
443 }
444
445 while ($raw && $raw =~ s/^(.*?)(\n|$)//) {
446 $line = $1;
447
448 next if $line =~ m/^\#/;
449 last if $line =~ m/^\s*$/;
450
451 next if $ignore; # skip
452
453 if ($line =~ m/^\s+(\S+)(\s+(.*\S))?\s*$/) {
454 my ($k, $v) = ($1, $3);
455 if (my $ct = $confvars->{$k}) {
456 $v = 1 if $ct eq 'bool' && !defined($v);
457 eval {
458 $ids->{$storeid}->{$k} = check_type ($type, $ct, $k, $v, $storeid);
459 };
460 warn "storage '$storeid' - unable to parse value of '$k': $@" if $@;
461 } else {
462 warn "storage '$storeid' - unable to parse value of '$k'\n";
463 }
464
465 } else {
466 warn "storage '$storeid' - ignore config line: $line\n";
467 }
468 }
469 } else {
470 warn "ignore config line: $line\n";
471 }
472 }
473
474 # make sure we have a reasonable 'local:' storage
475 # openvz expects things to be there
476 if (!$ids->{local} || $ids->{local}->{type} ne 'dir' ||
477 $ids->{local}->{path} ne '/var/lib/vz') {
478 $ids->{local} = {
479 type => 'dir',
480 priority => $pri++,
481 path => '/var/lib/vz',
482 content => { images => 1, rootdir => 1, vztmpl => 1, iso => 1},
483 };
484 }
485
486 # we always need this for OpenVZ
487 $ids->{local}->{content}->{rootdir} = 1;
488 $ids->{local}->{content}->{vztmpl} = 1;
489 delete ($ids->{local}->{disable});
490
491 # remove node restrictions for local storage
492 delete($ids->{local}->{nodes});
493
494 foreach my $storeid (keys %$ids) {
495 my $d = $ids->{$storeid};
496
497 my $req_keys = $required_config->{$d->{type}};
498 foreach my $k (@$req_keys) {
499 if (!defined ($d->{$k})) {
500 warn "ignoring storage '$storeid' - missing value " .
501 "for required option '$k'\n";
502 delete $ids->{$storeid};
503 next;
504 }
505 }
506
507 my $def = $default_config->{$d->{type}};
508
509 if ($def->{content}) {
510 $d->{content} = $def->{content}->[1] if !$d->{content};
511 }
512
513 if ($d->{type} eq 'iscsi' || $d->{type} eq 'nfs') {
514 $d->{shared} = 1;
515 }
516 }
517
b6cf0a66
DM
518 my $cfg = { ids => $ids, digest => $digest};
519
520 return $cfg;
521}
522
523sub parse_options {
524 my ($storeid, $stype, $param, $create) = @_;
525
526 my $settings = { type => $stype };
527
528 die "unknown storage type '$stype'\n"
529 if !$default_config->{$stype};
530
531 foreach my $opt (keys %$param) {
532 my $value = $param->{$opt};
533
534 my $ct = $confvars->{$opt};
535 if (defined($value)) {
536 eval {
537 $settings->{$opt} = check_type ($stype, $ct, $opt, $value, $storeid);
538 };
539 raise_param_exc({ $opt => $@ }) if $@;
540 } else {
541 raise_param_exc({ $opt => "got undefined value" });
542 }
543 }
544
545 if ($create) {
546 my $req_keys = $required_config->{$stype};
547 foreach my $k (@$req_keys) {
548
549 if ($stype eq 'nfs' && !$settings->{path}) {
550 $settings->{path} = "/mnt/pve/$storeid";
551 }
552
553 # check if we have a value for all required options
554 if (!defined ($settings->{$k})) {
555 raise_param_exc({ $k => "property is missing and it is not optional" });
556 }
557 }
558 } else {
559 my $fixed_keys = $fixed_config->{$stype};
560 foreach my $k (@$fixed_keys) {
561
562 # only allow to change non-fixed values
563
564 if (defined ($settings->{$k})) {
565 raise_param_exc({$k => "can't change value (fixed parameter)"});
566 }
567 }
568 }
569
570 return $settings;
571}
572
573sub cluster_lock_storage {
574 my ($storeid, $shared, $timeout, $func, @param) = @_;
575
576 my $res;
577 if (!$shared) {
578 my $lockid = "pve-storage-$storeid";
579 my $lockdir = "/var/lock/pve-manager";
580 mkdir $lockdir;
581 $res = PVE::Tools::lock_file("$lockdir/$lockid", $timeout, $func, @param);
582 die $@ if $@;
583 } else {
584 $res = PVE::Cluster::cfs_lock_storage($storeid, $timeout, $func, @param);
585 die $@ if $@;
586 }
587 return $res;
588}
589
590sub storage_config {
591 my ($cfg, $storeid, $noerr) = @_;
592
593 die "no storage id specified\n" if !$storeid;
594
595 my $scfg = $cfg->{ids}->{$storeid};
596
597 die "storage '$storeid' does not exists\n" if (!$noerr && !$scfg);
598
599 return $scfg;
600}
601
602sub storage_check_node {
603 my ($cfg, $storeid, $node, $noerr) = @_;
604
605 my $scfg = storage_config ($cfg, $storeid);
606
607 if ($scfg->{nodes}) {
608 $node = PVE::INotify::nodename() if !$node || ($node eq 'localhost');
609 if (!$scfg->{nodes}->{$node}) {
610 die "storage '$storeid' is not available on node '$node'" if !$noerr;
611 return undef;
612 }
613 }
614
615 return $scfg;
616}
617
618sub storage_check_enabled {
619 my ($cfg, $storeid, $node, $noerr) = @_;
620
621 my $scfg = storage_config ($cfg, $storeid);
622
623 if ($scfg->{disable}) {
624 die "storage '$storeid' is disabled\n" if !$noerr;
625 return undef;
626 }
627
628 return storage_check_node($cfg, $storeid, $node, $noerr);
629}
630
631sub storage_ids {
632 my ($cfg) = @_;
633
634 my $ids = $cfg->{ids};
635
636 my @sa = sort {$ids->{$a}->{priority} <=> $ids->{$b}->{priority}} keys %$ids;
637
638 return @sa;
639}
640
641sub assert_if_modified {
642 my ($cfg, $digest) = @_;
643
644 if ($digest && ($cfg->{digest} ne $digest)) {
645 die "detected modified storage configuration - try again\n";
646 }
647}
648
649sub sprint_config_line {
650 my ($k, $v) = @_;
651
652 my $ct = $confvars->{$k};
653
654 if ($ct eq 'bool') {
655 return $v ? "\t$k\n" : '';
656 } elsif ($ct eq 'nodes') {
657 my $nlist = join(',', keys(%$v));
658 return $nlist ? "\tnodes $nlist\n" : '';
659 } elsif ($ct eq 'content') {
660 my $clist = content_hash_to_string($v);
661 if ($clist) {
662 return "\t$k $clist\n";
663 } else {
664 return "\t$k none\n";
665 }
666 } else {
667 return "\t$k $v\n";
668 }
669}
670
671sub write_config {
672 my ($filename, $cfg) = @_;
673
674 my $out = '';
675
676 my $ids = $cfg->{ids};
677
678 my $maxpri = 0;
679 foreach my $storeid (keys %$ids) {
680 my $pri = $ids->{$storeid}->{priority};
681 $maxpri = $pri if $pri && $pri > $maxpri;
682 }
683 foreach my $storeid (keys %$ids) {
684 if (!defined ($ids->{$storeid}->{priority})) {
685 $ids->{$storeid}->{priority} = ++$maxpri;
686 }
687 }
688
689 foreach my $storeid (sort {$ids->{$a}->{priority} <=> $ids->{$b}->{priority}} keys %$ids) {
690 my $scfg = $ids->{$storeid};
691 my $type = $scfg->{type};
692 my $def = $default_config->{$type};
693
694 die "unknown storage type '$type'\n" if !$def;
695
696 my $data = "$type: $storeid\n";
697
698 $data .= "\tdisable\n" if $scfg->{disable};
699
700 my $done_hash = { disable => 1};
701 foreach my $k (@{$required_config->{$type}}) {
702 $done_hash->{$k} = 1;
703 my $v = $ids->{$storeid}->{$k};
704 die "storage '$storeid' - missing value for required option '$k'\n"
705 if !defined ($v);
706 $data .= sprint_config_line ($k, $v);
707 }
708
709 foreach my $k (keys %$def) {
710 next if defined ($done_hash->{$k});
711 if (defined (my $v = $ids->{$storeid}->{$k})) {
712 $data .= sprint_config_line ($k, $v);
713 }
714 }
715
716 $out .= "$data\n";
717 }
718
719 return $out;
720}
721
722sub get_image_dir {
723 my ($cfg, $storeid, $vmid) = @_;
724
725 my $path = $cfg->{ids}->{$storeid}->{path};
726 return $vmid ? "$path/images/$vmid" : "$path/images";
727}
728
d22a6133
DM
729sub get_private_dir {
730 my ($cfg, $storeid, $vmid) = @_;
731
732 my $path = $cfg->{ids}->{$storeid}->{path};
733 return $vmid ? "$path/private/$vmid" : "$path/private";
734}
735
b6cf0a66
DM
736sub get_iso_dir {
737 my ($cfg, $storeid) = @_;
738
739 my $isodir = $cfg->{ids}->{$storeid}->{path};
6a4d7398 740 $isodir .= '/template/iso';
b6cf0a66
DM
741
742 return $isodir;
743}
744
745sub get_vztmpl_dir {
746 my ($cfg, $storeid) = @_;
747
748 my $tmpldir = $cfg->{ids}->{$storeid}->{path};
6a4d7398 749 $tmpldir .= '/template/cache';
b6cf0a66
DM
750
751 return $tmpldir;
752}
753
568de3d1
DM
754sub get_backup_dir {
755 my ($cfg, $storeid) = @_;
756
757 my $dir = $cfg->{ids}->{$storeid}->{path};
6a4d7398 758 $dir .= '/dump';
568de3d1
DM
759
760 return $dir;
761}
762
b6cf0a66
DM
763# iscsi utility functions
764
765sub iscsi_session_list {
766
767 check_iscsi_support ();
768
769 my $cmd = [$ISCSIADM, '--mode', 'session'];
770
771 my $res = {};
772
f81372ac 773 run_command($cmd, outfunc => sub {
b6cf0a66
DM
774 my $line = shift;
775
776 if ($line =~ m/^tcp:\s+\[(\S+)\]\s+\S+\s+(\S+)\s*$/) {
777 my ($session, $target) = ($1, $2);
778 # there can be several sessions per target (multipath)
779 push @{$res->{$target}}, $session;
780
781 }
782 });
783
784 return $res;
785}
786
787sub iscsi_test_portal {
788 my ($portal) = @_;
789
790 my ($server, $port) = split(':', $portal);
791 my $p = Net::Ping->new("tcp", 2);
792 $p->port_number($port || 3260);
793 return $p->ping($server);
794}
795
796sub iscsi_discovery {
797 my ($portal) = @_;
798
799 check_iscsi_support ();
800
801 my $cmd = [$ISCSIADM, '--mode', 'discovery', '--type', 'sendtargets',
802 '--portal', $portal];
803
804 my $res = {};
805
806 return $res if !iscsi_test_portal($portal); # fixme: raise exception here?
807
f81372ac 808 run_command($cmd, outfunc => sub {
b6cf0a66
DM
809 my $line = shift;
810
811 if ($line =~ m/^(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3}:\d+)\,\S+\s+(\S+)\s*$/) {
812 my $portal = $1;
813 my $target = $2;
814 # one target can have more than one portal (multipath).
815 push @{$res->{$target}}, $portal;
816 }
817 });
818
819 return $res;
820}
821
822sub iscsi_login {
823 my ($target, $portal_in) = @_;
824
825 check_iscsi_support ();
826
827 eval { iscsi_discovery ($portal_in); };
828 warn $@ if $@;
829
830 my $cmd = [$ISCSIADM, '--mode', 'node', '--targetname', $target, '--login'];
f81372ac 831 run_command($cmd);
b6cf0a66
DM
832}
833
834sub iscsi_logout {
835 my ($target, $portal) = @_;
836
837 check_iscsi_support ();
838
839 my $cmd = [$ISCSIADM, '--mode', 'node', '--targetname', $target, '--logout'];
f81372ac 840 run_command($cmd);
b6cf0a66
DM
841}
842
843my $rescan_filename = "/var/run/pve-iscsi-rescan.lock";
844
845sub iscsi_session_rescan {
846 my $session_list = shift;
847
848 check_iscsi_support ();
849
850 my $rstat = stat ($rescan_filename);
851
852 if (!$rstat) {
853 if (my $fh = IO::File->new ($rescan_filename, "a")) {
854 utime undef, undef, $fh;
855 close ($fh);
856 }
857 } else {
858 my $atime = $rstat->atime;
859 my $tdiff = time() - $atime;
860 # avoid frequent rescans
861 return if !($tdiff < 0 || $tdiff > 10);
862 utime undef, undef, $rescan_filename;
863 }
864
865 foreach my $session (@$session_list) {
866 my $cmd = [$ISCSIADM, '--mode', 'session', '-r', $session, '-R'];
f81372ac 867 eval { run_command($cmd, outfunc => sub {}); };
b6cf0a66
DM
868 warn $@ if $@;
869 }
870}
871
872sub iscsi_device_list {
873
874 my $res = {};
875
876 my $dirname = '/sys/class/iscsi_session';
877
878 my $stable_paths = load_stable_scsi_paths();
879
880 dir_glob_foreach ($dirname, 'session(\d+)', sub {
881 my ($ent, $session) = @_;
882
883 my $target = file_read_firstline ("$dirname/$ent/targetname");
884 return if !$target;
885
886 my (undef, $host) = dir_glob_regex ("$dirname/$ent/device", 'target(\d+):.*');
887 return if !defined($host);
888
889 dir_glob_foreach ("/sys/bus/scsi/devices", "$host:" . '(\d+):(\d+):(\d+)', sub {
890 my ($tmp, $channel, $id, $lun) = @_;
891
892 my $type = file_read_firstline ("/sys/bus/scsi/devices/$tmp/type");
893 return if !defined($type) || $type ne '0'; # list disks only
894
895 my $bdev;
896 if (-d "/sys/bus/scsi/devices/$tmp/block") { # newer kernels
897 (undef, $bdev) = dir_glob_regex ("/sys/bus/scsi/devices/$tmp/block/", '([A-Za-z]\S*)');
898 } else {
899 (undef, $bdev) = dir_glob_regex ("/sys/bus/scsi/devices/$tmp", 'block:(\S+)');
900 }
901 return if !$bdev;
902
903 #check multipath
904 if (-d "/sys/block/$bdev/holders") {
905 my $multipathdev = dir_glob_regex ("/sys/block/$bdev/holders", '[A-Za-z]\S*');
906 $bdev = $multipathdev if $multipathdev;
907 }
908
909 my $blockdev = $stable_paths->{$bdev};
910 return if !$blockdev;
911
912 my $size = file_read_firstline ("/sys/block/$bdev/size");
913 return if !$size;
914
915 my $volid = "$channel.$id.$lun.$blockdev";
916
917 $res->{$target}->{$volid} = {
918 'format' => 'raw',
02fae308 919 'size' => int($size * 512),
b6cf0a66
DM
920 'vmid' => 0, # not assigned to any vm
921 'channel' => int($channel),
922 'id' => int($id),
923 'lun' => int($lun),
924 };
925
926 #print "TEST: $target $session $host,$bus,$tg,$lun $blockdev\n";
927 });
928
929 });
930
931 return $res;
932}
933
934# library implementation
935
b6cf0a66
DM
936PVE::JSONSchema::register_format('pve-storage-vgname', \&parse_lvm_name);
937sub parse_lvm_name {
938 my ($name, $noerr) = @_;
939
940 if ($name !~ m/^[a-z][a-z0-9\-\_\.]*[a-z0-9]$/i) {
941 return undef if $noerr;
942 die "lvm name '$name' contains illegal characters\n";
943 }
944
945 return $name;
946}
947
948sub parse_vmid {
949 my $vmid = shift;
950
951 die "VMID '$vmid' contains illegal characters\n" if $vmid !~ m/^\d+$/;
952
953 return int($vmid);
954}
955
956PVE::JSONSchema::register_format('pve-volume-id', \&parse_volume_id);
957sub parse_volume_id {
958 my ($volid, $noerr) = @_;
959
960 if ($volid =~ m/^([a-z][a-z0-9\-\_\.]*[a-z0-9]):(.+)$/i) {
961 return wantarray ? ($1, $2) : $1;
962 }
963 return undef if $noerr;
964 die "unable to parse volume ID '$volid'\n";
965}
966
967sub parse_name_dir {
968 my $name = shift;
969
970 if ($name =~ m!^([^/\s]+\.(raw|qcow2|vmdk))$!) {
971 return ($1, $2);
972 }
973
974 die "unable to parse volume filename '$name'\n";
975}
976
977sub parse_volname_dir {
978 my $volname = shift;
979
980 if ($volname =~ m!^(\d+)/(\S+)$!) {
981 my ($vmid, $name) = ($1, $2);
982 parse_name_dir ($name);
983 return ('image', $name, $vmid);
984 } elsif ($volname =~ m!^iso/([^/]+\.[Ii][Ss][Oo])$!) {
985 return ('iso', $1);
986 } elsif ($volname =~ m!^vztmpl/([^/]+\.tar\.gz)$!) {
987 return ('vztmpl', $1);
1ac17c74
DM
988 } elsif ($volname =~ m!^rootdir/(\d+)$!) {
989 return ('rootdir', $1, $1);
990 } elsif ($volname =~ m!^backup/([^/]+(\.tar|\.tgz))$!) {
686e1d03
DM
991 return ('backup', $1);
992 }
b6cf0a66
DM
993 die "unable to parse directory volume name '$volname'\n";
994}
995
996sub parse_volname_lvm {
997 my $volname = shift;
998
999 parse_lvm_name ($volname);
1000
1001 if ($volname =~ m/^(vm-(\d+)-\S+)$/) {
1002 return ($1, $2);
1003 }
1004
1005 die "unable to parse lvm volume name '$volname'\n";
1006}
1007
1008sub parse_volname_iscsi {
1009 my $volname = shift;
1010
1011 if ($volname =~ m!^\d+\.\d+\.\d+\.(\S+)$!) {
1012 my $byid = $1;
1013 return $byid;
1014 }
1015
1016 die "unable to parse iscsi volume name '$volname'\n";
1017}
1018
1019# try to map a filesystem path to a volume identifier
1020sub path_to_volume_id {
1021 my ($cfg, $path) = @_;
1022
1023 my $ids = $cfg->{ids};
1024
1025 my ($sid, $volname) = parse_volume_id ($path, 1);
1026 if ($sid) {
1027 if ($ids->{$sid} && (my $type = $ids->{$sid}->{type})) {
1028 if ($type eq 'dir' || $type eq 'nfs') {
1029 my ($vtype, $name, $vmid) = parse_volname_dir ($volname);
1030 return ($vtype, $path);
1031 }
1032 }
1033 return ('');
1034 }
1035
1036 $path = abs_path ($path);
1037
1038 foreach my $sid (keys %$ids) {
1039 my $type = $ids->{$sid}->{type};
1040 next if !($type eq 'dir' || $type eq 'nfs');
1041
568de3d1
DM
1042 my $imagedir = get_image_dir($cfg, $sid);
1043 my $isodir = get_iso_dir($cfg, $sid);
1044 my $tmpldir = get_vztmpl_dir($cfg, $sid);
1045 my $backupdir = get_backup_dir($cfg, $sid);
1ac17c74 1046 my $privatedir = get_private_dir($cfg, $sid);
b6cf0a66
DM
1047
1048 if ($path =~ m!^$imagedir/(\d+)/([^/\s]+)$!) {
1049 my $vmid = $1;
1050 my $name = $2;
1051 return ('image', "$sid:$vmid/$name");
1052 } elsif ($path =~ m!^$isodir/([^/]+\.[Ii][Ss][Oo])$!) {
1053 my $name = $1;
1054 return ('iso', "$sid:iso/$name");
1055 } elsif ($path =~ m!^$tmpldir/([^/]+\.tar\.gz)$!) {
1056 my $name = $1;
1057 return ('vztmpl', "$sid:vztmpl/$name");
1ac17c74
DM
1058 } elsif ($path =~ m!^$privatedir/(\d+)$!) {
1059 my $vmid = $1;
1060 return ('rootdir', "$sid:rootdir/$vmid");
568de3d1
DM
1061 } elsif ($path =~ m!^$backupdir/([^/]+\.(tar|tgz))$!) {
1062 my $name = $1;
1063 return ('iso', "$sid:backup/$name");
b6cf0a66
DM
1064 }
1065 }
1066
1067 # can't map path to volume id
1068 return ('');
1069}
1070
1071sub path {
1072 my ($cfg, $volid) = @_;
1073
1074 my ($storeid, $volname) = parse_volume_id ($volid);
1075
1076 my $scfg = storage_config ($cfg, $storeid);
1077
1078 my $path;
1079 my $owner;
1080
1081 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
1082 my ($vtype, $name, $vmid) = parse_volname_dir ($volname);
1083 $owner = $vmid;
1084
568de3d1
DM
1085 my $imagedir = get_image_dir($cfg, $storeid, $vmid);
1086 my $isodir = get_iso_dir($cfg, $storeid);
1087 my $tmpldir = get_vztmpl_dir($cfg, $storeid);
1088 my $backupdir = get_backup_dir($cfg, $storeid);
1ac17c74 1089 my $privatedir = get_private_dir($cfg, $storeid);
b6cf0a66
DM
1090
1091 if ($vtype eq 'image') {
1092 $path = "$imagedir/$name";
1093 } elsif ($vtype eq 'iso') {
1094 $path = "$isodir/$name";
1095 } elsif ($vtype eq 'vztmpl') {
1096 $path = "$tmpldir/$name";
1ac17c74
DM
1097 } elsif ($vtype eq 'rootdir') {
1098 $path = "$privatedir/$name";
568de3d1
DM
1099 } elsif ($vtype eq 'backup') {
1100 $path = "$backupdir/$name";
b6cf0a66
DM
1101 } else {
1102 die "should not be reached";
1103 }
1104
1105 } elsif ($scfg->{type} eq 'lvm') {
1106
1107 my $vg = $scfg->{vgname};
1108
1109 my ($name, $vmid) = parse_volname_lvm ($volname);
1110 $owner = $vmid;
1111
1112 $path = "/dev/$vg/$name";
1113
1114 } elsif ($scfg->{type} eq 'iscsi') {
1115 my $byid = parse_volname_iscsi ($volname);
1116 $path = "/dev/disk/by-id/$byid";
1117 } else {
1118 die "unknown storage type '$scfg->{type}'";
1119 }
1120
1121 return wantarray ? ($path, $owner) : $path;
1122}
1123
1124sub storage_migrate {
1125 my ($cfg, $volid, $target_host, $target_storeid, $target_volname) = @_;
1126
1127 my ($storeid, $volname) = parse_volume_id ($volid);
1128 $target_volname = $volname if !$target_volname;
1129
1130 my $scfg = storage_config ($cfg, $storeid);
1131
1132 # no need to migrate shared content
1133 return if $storeid eq $target_storeid && $scfg->{shared};
1134
1135 my $tcfg = storage_config ($cfg, $target_storeid);
1136
1137 my $target_volid = "${target_storeid}:${target_volname}";
1138
1139 my $errstr = "unable to migrate '$volid' to '${target_volid}' on host '$target_host'";
1140
1141 # blowfish is a fast block cipher, much faster then 3des
1142 my $sshoptions = "-c blowfish -o 'BatchMode=yes'";
1143 my $ssh = "/usr/bin/ssh $sshoptions";
1144
1145 local $ENV{RSYNC_RSH} = $ssh;
1146
1147 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
1148 if ($tcfg->{type} eq 'dir' || $tcfg->{type} eq 'nfs') {
1149
1150 my $src = path ($cfg, $volid);
1151 my $dst = path ($cfg, $target_volid);
1152
1153 my $dirname = dirname ($dst);
1154
1155 if ($tcfg->{shared}) { # we can do a local copy
1156
f81372ac 1157 run_command(['/bin/mkdir', '-p', $dirname]);
b6cf0a66 1158
f81372ac 1159 run_command(['/bin/cp', $src, $dst]);
b6cf0a66
DM
1160
1161 } else {
1162
f81372ac
DM
1163 run_command(['/usr/bin/ssh', "root\@${target_host}",
1164 '/bin/mkdir', '-p', $dirname]);
b6cf0a66
DM
1165
1166 # we use rsync with --sparse, so we can't use --inplace,
1167 # so we remove file on the target if it already exists to
1168 # save space
1169 my ($size, $format) = file_size_info($src);
1170 if ($format && ($format eq 'raw') && $size) {
f81372ac
DM
1171 run_command(['/usr/bin/ssh', "root\@${target_host}",
1172 'rm', '-f', $dst],
1173 outfunc => sub {});
b6cf0a66
DM
1174 }
1175
1176 my $cmd = ['/usr/bin/rsync', '--progress', '--sparse', '--whole-file',
1177 $src, "root\@${target_host}:$dst"];
1178
1179 my $percent = -1;
1180
f81372ac 1181 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1182 my $line = shift;
1183
1184 if ($line =~ m/^\s*(\d+\s+(\d+)%\s.*)$/) {
1185 if ($2 > $percent) {
1186 $percent = $2;
1187 print "rsync status: $1\n";
1188 *STDOUT->flush();
1189 }
1190 } else {
1191 print "$line\n";
1192 *STDOUT->flush();
1193 }
1194 });
1195 }
1196
1197
1198 } else {
1199
1200 die "$errstr - target type '$tcfg->{type}' not implemented\n";
1201 }
1202
1203 } else {
1204 die "$errstr - source type '$scfg->{type}' not implemented\n";
1205 }
1206}
1207
1208sub vdisk_alloc {
1209 my ($cfg, $storeid, $vmid, $fmt, $name, $size) = @_;
1210
1211 die "no storage id specified\n" if !$storeid;
1212
05f697c9 1213 PVE::JSONSchema::parse_storage_id($storeid);
b6cf0a66 1214
05f697c9 1215 my $scfg = storage_config($cfg, $storeid);
b6cf0a66
DM
1216
1217 die "no VMID specified\n" if !$vmid;
1218
1219 $vmid = parse_vmid ($vmid);
1220
1221 my $defformat = storage_default_format ($cfg, $storeid);
1222
1223 $fmt = $defformat if !$fmt;
1224
1225 activate_storage ($cfg, $storeid);
1226
1227 # lock shared storage
1228 return cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
1229
1230 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
1231
1232 my $imagedir = get_image_dir ($cfg, $storeid, $vmid);
1233
1234 mkpath $imagedir;
1235
1236 if (!$name) {
1237
1238 for (my $i = 1; $i < 100; $i++) {
1239 my @gr = <$imagedir/vm-$vmid-disk-$i.*>;
1240 if (!scalar(@gr)) {
1241 $name = "vm-$vmid-disk-$i.$fmt";
1242 last;
1243 }
1244 }
1245 }
1246
1247 die "unable to allocate an image name for VM $vmid in storage '$storeid'\n"
1248 if !$name;
1249
1250 my (undef, $tmpfmt) = parse_name_dir ($name);
1251
1252 die "illegal name '$name' - wrong extension for format ('$tmpfmt != '$fmt')\n"
1253 if $tmpfmt ne $fmt;
1254
1255 my $path = "$imagedir/$name";
1256
db2ec87f 1257 die "disk image '$path' already exists\n" if -e $path;
b6cf0a66
DM
1258
1259 run_command("/usr/bin/qemu-img create -f $fmt '$path' ${size}K",
1260 errmsg => "unable to create image");
1261
1262 return "$storeid:$vmid/$name";
1263
1264 } elsif ($scfg->{type} eq 'lvm') {
1265
1266 die "unsupported format '$fmt'" if $fmt ne 'raw';
1267
1268 die "illegal name '$name' - sould be 'vm-$vmid-*'\n"
1269 if $name && $name !~ m/^vm-$vmid-/;
1270
1271 my $vgs = lvm_vgs ();
1272
1273 my $vg = $scfg->{vgname};
1274
1275 die "no such volume gruoup '$vg'\n" if !defined ($vgs->{$vg});
1276
1277 my $free = int ($vgs->{$vg}->{free});
1278
1279 die "not enough free space ($free < $size)\n" if $free < $size;
1280
1281 if (!$name) {
1282 my $lvs = lvm_lvs ($vg);
1283
1284 for (my $i = 1; $i < 100; $i++) {
1285 my $tn = "vm-$vmid-disk-$i";
1286 if (!defined ($lvs->{$vg}->{$tn})) {
1287 $name = $tn;
1288 last;
1289 }
1290 }
1291 }
1292
1293 die "unable to allocate an image name for VM $vmid in storage '$storeid'\n"
1294 if !$name;
1295
9dec0cb1 1296 my $cmd = ['/sbin/lvcreate', '-aly', '--addtag', "pve-vm-$vmid", '--size', "${size}k", '--name', $name, $vg];
b6cf0a66 1297
f81372ac 1298 run_command($cmd, errmsg => "lvcreate '$vg/pve-vm-$vmid' error");
b6cf0a66
DM
1299
1300 return "$storeid:$name";
1301
1302 } elsif ($scfg->{type} eq 'iscsi') {
1303 die "can't allocate space in iscsi storage\n";
1304 } else {
1305 die "unknown storage type '$scfg->{type}'";
1306 }
1307 });
1308}
1309
1310sub vdisk_free {
1311 my ($cfg, $volid) = @_;
1312
1313 my ($storeid, $volname) = parse_volume_id ($volid);
1314
1315 my $scfg = storage_config ($cfg, $storeid);
1316
1317 activate_storage ($cfg, $storeid);
1318
1319 # lock shared storage
1320 cluster_lock_storage($storeid, $scfg->{shared}, undef, sub {
1321
1322 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
1323 my $path = path ($cfg, $volid);
1324
1325 if (! -f $path) {
1326 warn "disk image '$path' does not exists\n";
1327 } else {
1328 unlink $path;
1329 }
1330 } elsif ($scfg->{type} eq 'lvm') {
1331
1332 my $vg = $scfg->{vgname};
1333
1334 my $cmd = ['/sbin/lvremove', '-f', "$vg/$volname"];
1335
f81372ac 1336 run_command($cmd, errmsg => "lvremove '$vg/$volname' error");
b6cf0a66
DM
1337 } elsif ($scfg->{type} eq 'iscsi') {
1338 die "can't free space in iscsi storage\n";
1339 } else {
1340 die "unknown storage type '$scfg->{type}'";
1341 }
1342 });
1343}
1344
1345# lvm utility functions
1346
1347sub lvm_pv_info {
1348 my ($device) = @_;
1349
1350 die "no device specified" if !$device;
1351
1352 my $has_label = 0;
1353
1354 my $cmd = ['/usr/bin/file', '-L', '-s', $device];
f81372ac 1355 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1356 my $line = shift;
1357 $has_label = 1 if $line =~ m/LVM2/;
1358 });
1359
1360 return undef if !$has_label;
1361
1362 $cmd = ['/sbin/pvs', '--separator', ':', '--noheadings', '--units', 'k',
1363 '--unbuffered', '--nosuffix', '--options',
1364 'pv_name,pv_size,vg_name,pv_uuid', $device];
1365
1366 my $pvinfo;
f81372ac 1367 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1368 my $line = shift;
1369
1370 $line = trim($line);
1371
1372 my ($pvname, $size, $vgname, $uuid) = split (':', $line);
1373
1374 die "found multiple pvs entries for device '$device'\n"
1375 if $pvinfo;
1376
1377 $pvinfo = {
1378 pvname => $pvname,
1379 size => $size,
1380 vgname => $vgname,
1381 uuid => $uuid,
1382 };
1383 });
1384
1385 return $pvinfo;
1386}
1387
1388sub clear_first_sector {
1389 my ($dev) = shift;
1390
1391 if (my $fh = IO::File->new ($dev, "w")) {
1392 my $buf = 0 x 512;
1393 syswrite $fh, $buf;
1394 $fh->close();
1395 }
1396}
1397
1398sub lvm_create_volume_group {
1399 my ($device, $vgname, $shared) = @_;
1400
1401 my $res = lvm_pv_info ($device);
1402
1403 if ($res->{vgname}) {
1404 return if $res->{vgname} eq $vgname; # already created
1405 die "device '$device' is already used by volume group '$res->{vgname}'\n";
1406 }
1407
1408 clear_first_sector ($device); # else pvcreate fails
1409
1410 # we use --metadatasize 250k, which reseults in "pe_start = 512"
1411 # so pe_start is aligned on a 128k boundary (advantage for SSDs)
1412 my $cmd = ['/sbin/pvcreate', '--metadatasize', '250k', $device];
1413
f81372ac 1414 run_command($cmd, errmsg => "pvcreate '$device' error");
b6cf0a66
DM
1415
1416 $cmd = ['/sbin/vgcreate', $vgname, $device];
1417 # push @$cmd, '-c', 'y' if $shared; # we do not use this yet
1418
f81372ac 1419 run_command($cmd, errmsg => "vgcreate $vgname $device error");
b6cf0a66
DM
1420}
1421
1422sub lvm_vgs {
1423
1424 my $cmd = ['/sbin/vgs', '--separator', ':', '--noheadings', '--units', 'b',
1425 '--unbuffered', '--nosuffix', '--options',
1426 'vg_name,vg_size,vg_free'];
1427
1428 my $vgs = {};
3af60e62
DM
1429 eval {
1430 run_command($cmd, outfunc => sub {
1431 my $line = shift;
b6cf0a66 1432
3af60e62 1433 $line = trim($line);
b6cf0a66 1434
3af60e62 1435 my ($name, $size, $free) = split (':', $line);
b6cf0a66 1436
3af60e62
DM
1437 $vgs->{$name} = { size => int ($size), free => int ($free) };
1438 });
1439 };
1440 my $err = $@;
1441
1442 # just warn (vgs return error code 5 if clvmd does not run)
1443 # but output is still OK (list without clustered VGs)
1444 warn $err if $err;
b6cf0a66
DM
1445
1446 return $vgs;
1447}
1448
1449sub lvm_lvs {
1450 my ($vgname) = @_;
1451
1452 my $cmd = ['/sbin/lvs', '--separator', ':', '--noheadings', '--units', 'b',
1453 '--unbuffered', '--nosuffix', '--options',
1454 'vg_name,lv_name,lv_size,uuid,tags'];
1455
1456 push @$cmd, $vgname if $vgname;
1457
1458 my $lvs = {};
f81372ac 1459 run_command($cmd, outfunc => sub {
b6cf0a66
DM
1460 my $line = shift;
1461
1462 $line = trim($line);
1463
1464 my ($vg, $name, $size, $uuid, $tags) = split (':', $line);
1465
1466 return if $name !~ m/^vm-(\d+)-/;
1467 my $nid = $1;
1468
1469 my $owner;
1470 foreach my $tag (split (/,/, $tags)) {
1471 if ($tag =~ m/^pve-vm-(\d+)$/) {
1472 $owner = $1;
1473 last;
1474 }
1475 }
1476
1477 if ($owner) {
1478 if ($owner ne $nid) {
1479 warn "owner mismatch name = $name, owner = $owner\n";
1480 }
1481
1482 $lvs->{$vg}->{$name} = { format => 'raw', size => $size,
1483 uuid => $uuid, tags => $tags,
1484 vmid => $owner };
1485 }
1486 });
1487
1488 return $lvs;
1489}
1490
b6cf0a66
DM
1491#list iso or openvz template ($tt = <iso|vztmpl|backup>)
1492sub template_list {
1493 my ($cfg, $storeid, $tt) = @_;
1494
1495 die "unknown template type '$tt'\n" if !($tt eq 'iso' || $tt eq 'vztmpl' || $tt eq 'backup');
1496
1497 my $ids = $cfg->{ids};
1498
1499 storage_check_enabled($cfg, $storeid) if ($storeid);
1500
1501 my $res = {};
1502
1503 # query the storage
1504
1505 foreach my $sid (keys %$ids) {
1506 next if $storeid && $storeid ne $sid;
1507
1508 my $scfg = $ids->{$sid};
1509 my $type = $scfg->{type};
1510
1511 next if !storage_check_enabled($cfg, $sid, undef, 1);
1512
1513 next if $tt eq 'iso' && !$scfg->{content}->{iso};
1514 next if $tt eq 'vztmpl' && !$scfg->{content}->{vztmpl};
1515 next if $tt eq 'backup' && !$scfg->{content}->{backup};
1516
1517 activate_storage ($cfg, $sid);
1518
1519 if ($type eq 'dir' || $type eq 'nfs') {
1520
1521 my $path;
1522 if ($tt eq 'iso') {
568de3d1 1523 $path = get_iso_dir($cfg, $sid);
b6cf0a66 1524 } elsif ($tt eq 'vztmpl') {
568de3d1 1525 $path = get_vztmpl_dir($cfg, $sid);
b6cf0a66 1526 } elsif ($tt eq 'backup') {
568de3d1 1527 $path = get_backup_dir($cfg, $sid);
b6cf0a66
DM
1528 } else {
1529 die "unknown template type '$tt'\n";
1530 }
1531
1532 foreach my $fn (<$path/*>) {
1533
1534 my $info;
1535
1536 if ($tt eq 'iso') {
1537 next if $fn !~ m!/([^/]+\.[Ii][Ss][Oo])$!;
1538
1539 $info = { volid => "$sid:iso/$1", format => 'iso' };
1540
1541 } elsif ($tt eq 'vztmpl') {
1542 next if $fn !~ m!/([^/]+\.tar\.gz)$!;
1543
1544 $info = { volid => "$sid:vztmpl/$1", format => 'tgz' };
1545
1546 } elsif ($tt eq 'backup') {
1547 next if $fn !~ m!/([^/]+\.(tar|tgz))$!;
1548
1549 $info = { volid => "$sid:backup/$1", format => $2 };
1550 }
1551
1552 $info->{size} = -s $fn;
1553
1554 push @{$res->{$sid}}, $info;
1555 }
1556
1557 }
1558
1559 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
1560 }
1561
1562 return $res;
1563}
1564
1565sub file_size_info {
1566 my ($filename, $timeout) = @_;
1567
1568 my $cmd = ['/usr/bin/qemu-img', 'info', $filename];
1569
1570 my $format;
1571 my $size = 0;
1572 my $used = 0;
1573
1574 eval {
f81372ac 1575 run_command($cmd, timeout => $timeout, outfunc => sub {
b6cf0a66
DM
1576 my $line = shift;
1577
1578 if ($line =~ m/^file format:\s+(\S+)\s*$/) {
1579 $format = $1;
1580 } elsif ($line =~ m/^virtual size:\s\S+\s+\((\d+)\s+bytes\)$/) {
1581 $size = int($1);
1582 } elsif ($line =~ m/^disk size:\s+(\d+(.\d+)?)([KMGT])\s*$/) {
1583 $used = $1;
1584 my $u = $3;
1585
1586 $used *= 1024 if $u eq 'K';
1587 $used *= (1024*1024) if $u eq 'M';
1588 $used *= (1024*1024*1024) if $u eq 'G';
1589 $used *= (1024*1024*1024*1024) if $u eq 'T';
1590
1591 $used = int($used);
1592 }
1593 });
1594 };
1595
1596 return wantarray ? ($size, $format, $used) : $size;
1597}
1598
1599sub vdisk_list {
1600 my ($cfg, $storeid, $vmid, $vollist) = @_;
1601
1602 my $ids = $cfg->{ids};
1603
1604 storage_check_enabled($cfg, $storeid) if ($storeid);
1605
1606 my $res = {};
1607
1608 # prepare/activate/refresh all storages
1609
1610 my $stypes = {};
1611
1612 my $storage_list = [];
1613 if ($vollist) {
1614 foreach my $volid (@$vollist) {
1615 my ($sid, undef) = parse_volume_id ($volid);
1616 next if !defined ($ids->{$sid});
1617 next if !storage_check_enabled($cfg, $sid, undef, 1);
1618 push @$storage_list, $sid;
1619 $stypes->{$ids->{$sid}->{type}} = 1;
1620 }
1621 } else {
1622 foreach my $sid (keys %$ids) {
1623 next if $storeid && $storeid ne $sid;
1624 next if !storage_check_enabled($cfg, $sid, undef, 1);
1625 push @$storage_list, $sid;
1626 $stypes->{$ids->{$sid}->{type}} = 1;
1627 }
1628 }
1629
1630 activate_storage_list ($cfg, $storage_list);
1631
1632 my $lvs = $stypes->{lvm} ? lvm_lvs () : {};
1633
1634 my $iscsi_devices = iscsi_device_list() if $stypes->{iscsi};
1635
1636 # query the storage
1637
1638 foreach my $sid (keys %$ids) {
1639 if ($storeid) {
1640 next if $storeid ne $sid;
1641 next if !storage_check_enabled($cfg, $sid, undef, 1);
1642 }
1643 my $scfg = $ids->{$sid};
1644 my $type = $scfg->{type};
1645
1646 if ($type eq 'dir' || $type eq 'nfs') {
1647
1648 my $path = $scfg->{path};
1649
1650 my $fmts = join ('|', keys %{$default_config->{$type}->{format}->[0]});
1651
1652 foreach my $fn (<$path/images/[0-9][0-9]*/*>) {
1653
1654 next if $fn !~ m!^(/.+/images/(\d+)/([^/]+\.($fmts)))$!;
1655 $fn = $1; # untaint
1656
1657 my $owner = $2;
1658 my $name = $3;
1659 my $volid = "$sid:$owner/$name";
1660
1661 if ($vollist) {
1662 my $found = grep { $_ eq $volid } @$vollist;
1663 next if !$found;
1664 } else {
1665 next if defined ($vmid) && ($owner ne $vmid);
1666 }
1667
1668 my ($size, $format, $used) = file_size_info ($fn);
1669
1670 if ($format && $size) {
1671 push @{$res->{$sid}}, {
1672 volid => $volid, format => $format,
1673 size => $size, vmid => $owner, used => $used };
1674 }
1675
1676 }
1677
1678 } elsif ($type eq 'lvm') {
1679
1680 my $vgname = $scfg->{vgname};
1681
1682 if (my $dat = $lvs->{$vgname}) {
1683
1684 foreach my $volname (keys %$dat) {
1685
1686 my $owner = $dat->{$volname}->{vmid};
1687
1688 my $volid = "$sid:$volname";
1689
1690 if ($vollist) {
1691 my $found = grep { $_ eq $volid } @$vollist;
1692 next if !$found;
1693 } else {
1694 next if defined ($vmid) && ($owner ne $vmid);
1695 }
1696
1697 my $info = $dat->{$volname};
1698 $info->{volid} = $volid;
1699
1700 push @{$res->{$sid}}, $info;
1701 }
1702 }
1703
1704 } elsif ($type eq 'iscsi') {
1705
1706 # we have no owner for iscsi devices
1707
1708 my $target = $scfg->{target};
1709
1710 if (my $dat = $iscsi_devices->{$target}) {
1711
1712 foreach my $volname (keys %$dat) {
1713
1714 my $volid = "$sid:$volname";
1715
1716 if ($vollist) {
1717 my $found = grep { $_ eq $volid } @$vollist;
1718 next if !$found;
1719 } else {
1720 next if !($storeid && ($storeid eq $sid));
1721 }
1722
1723 my $info = $dat->{$volname};
1724 $info->{volid} = $volid;
1725
1726 push @{$res->{$sid}}, $info;
1727 }
1728 }
1729
1730 } else {
1731 die "implement me";
1732 }
1733
1734 @{$res->{$sid}} = sort {lc($a->{volid}) cmp lc ($b->{volid}) } @{$res->{$sid}} if $res->{$sid};
1735 }
1736
1737 return $res;
1738}
1739
1740sub nfs_is_mounted {
1741 my ($server, $export, $mountpoint, $mountdata) = @_;
1742
1743 my $source = "$server:$export";
1744
1745 $mountdata = read_proc_mounts() if !$mountdata;
1746
95e8e21c 1747 if ($mountdata =~ m|^$source/?\s$mountpoint\snfs|m) {
b6cf0a66
DM
1748 return $mountpoint;
1749 }
1750
1751 return undef;
1752}
1753
1754sub nfs_mount {
1755 my ($server, $export, $mountpoint, $options) = @_;
1756
1757 my $source = "$server:$export";
1758
1759 my $cmd = ['/bin/mount', '-t', 'nfs', $source, $mountpoint];
1760 if ($options) {
1761 push @$cmd, '-o', $options;
1762 }
1763
f81372ac 1764 run_command($cmd, errmsg => "mount error");
b6cf0a66
DM
1765}
1766
1767sub uevent_seqnum {
1768
1769 my $filename = "/sys/kernel/uevent_seqnum";
1770
1771 my $seqnum = 0;
1772 if (my $fh = IO::File->new ($filename, "r")) {
1773 my $line = <$fh>;
1774 if ($line =~ m/^(\d+)$/) {
1775 $seqnum = int ($1);
1776 }
1777 close ($fh);
1778 }
1779 return $seqnum;
1780}
1781
1782sub __activate_storage_full {
1783 my ($cfg, $storeid, $session) = @_;
1784
1785 my $scfg = storage_check_enabled($cfg, $storeid);
1786
1787 return if $session->{activated}->{$storeid};
1788
1789 if (!$session->{mountdata}) {
1790 $session->{mountdata} = read_proc_mounts();
1791 }
1792
1793 if (!$session->{uevent_seqnum}) {
1794 $session->{uevent_seqnum} = uevent_seqnum ();
1795 }
1796
1797 my $mountdata = $session->{mountdata};
1798
1799 my $type = $scfg->{type};
1800
1801 if ($type eq 'dir' || $type eq 'nfs') {
1802
1803 my $path = $scfg->{path};
1804
1805 if ($type eq 'nfs') {
1806 my $server = $scfg->{server};
1807 my $export = $scfg->{export};
1808
1809 if (!nfs_is_mounted ($server, $export, $path, $mountdata)) {
1810
1811 # NOTE: only call mkpath when not mounted (avoid hang
1812 # when NFS server is offline
1813
1814 mkpath $path;
1815
1816 die "unable to activate storage '$storeid' - " .
1817 "directory '$path' does not exist\n" if ! -d $path;
1818
1819 nfs_mount ($server, $export, $path, $scfg->{options});
1820 }
1821
1822 } else {
1823
1824 mkpath $path;
1825
1826 die "unable to activate storage '$storeid' - " .
1827 "directory '$path' does not exist\n" if ! -d $path;
1828 }
1829
568de3d1
DM
1830 my $imagedir = get_image_dir($cfg, $storeid);
1831 my $isodir = get_iso_dir($cfg, $storeid);
1832 my $tmpldir = get_vztmpl_dir($cfg, $storeid);
1833 my $backupdir = get_backup_dir($cfg, $storeid);
1ac17c74 1834 my $privatedir = get_private_dir($cfg, $storeid);
b6cf0a66
DM
1835
1836 if (defined($scfg->{content})) {
1837 mkpath $imagedir if $scfg->{content}->{images} &&
1838 $imagedir ne $path;
1839 mkpath $isodir if $scfg->{content}->{iso} &&
1840 $isodir ne $path;
1841 mkpath $tmpldir if $scfg->{content}->{vztmpl} &&
1842 $tmpldir ne $path;
1ac17c74
DM
1843 mkpath $privatedir if $scfg->{content}->{rootdir} &&
1844 $privatedir ne $path;
568de3d1
DM
1845 mkpath $backupdir if $scfg->{content}->{backup} &&
1846 $backupdir ne $path;
b6cf0a66
DM
1847 }
1848
1849 } elsif ($type eq 'lvm') {
1850
1851 if ($scfg->{base}) {
1852 my ($baseid, undef) = parse_volume_id ($scfg->{base});
1853 __activate_storage_full ($cfg, $baseid, $session);
1854 }
1855
1856 if (!$session->{vgs}) {
1857 $session->{vgs} = lvm_vgs();
1858 }
1859
1860 # In LVM2, vgscans take place automatically;
1861 # this is just to be sure
1862 if ($session->{vgs} && !$session->{vgscaned} &&
1863 !$session->{vgs}->{$scfg->{vgname}}) {
1864 $session->{vgscaned} = 1;
1865 my $cmd = ['/sbin/vgscan', '--ignorelockingfailure', '--mknodes'];
f81372ac 1866 eval { run_command($cmd, outfunc => sub {}); };
b6cf0a66
DM
1867 warn $@ if $@;
1868 }
1869
6703353b
DM
1870 # we do not acticate any volumes here ('vgchange -aly')
1871 # instead, volumes are activate individually later
b6cf0a66
DM
1872
1873 } elsif ($type eq 'iscsi') {
1874
1875 return if !check_iscsi_support(1);
1876
1877 $session->{iscsi_sessions} = iscsi_session_list()
1878 if !$session->{iscsi_sessions};
1879
1880 my $iscsi_sess = $session->{iscsi_sessions}->{$scfg->{target}};
1881 if (!defined ($iscsi_sess)) {
1882 eval { iscsi_login ($scfg->{target}, $scfg->{portal}); };
1883 warn $@ if $@;
1884 } else {
1885 # make sure we get all devices
1886 iscsi_session_rescan ($iscsi_sess);
1887 }
1888
1889 } else {
1890 die "implement me";
1891 }
1892
1893 my $newseq = uevent_seqnum ();
1894
1895 # only call udevsettle if there are events
1896 if ($newseq > $session->{uevent_seqnum}) {
1897 my $timeout = 30;
1898 system ("$UDEVADM settle --timeout=$timeout"); # ignore errors
1899 $session->{uevent_seqnum} = $newseq;
1900 }
1901
1902 $session->{activated}->{$storeid} = 1;
1903}
1904
1905sub activate_storage_list {
1906 my ($cfg, $storeid_list, $session) = @_;
1907
1908 $session = {} if !$session;
1909
1910 foreach my $storeid (@$storeid_list) {
1911 __activate_storage_full ($cfg, $storeid, $session);
1912 }
1913}
1914
1915sub activate_storage {
1916 my ($cfg, $storeid) = @_;
1917
1918 my $session = {};
1919
1920 __activate_storage_full ($cfg, $storeid, $session);
1921}
1922
1923sub activate_volumes {
6703353b
DM
1924 my ($cfg, $vollist, $exclusive) = @_;
1925
1926 return if !($vollist && scalar(@$vollist));
1927
1928 my $lvm_activate_mode = $exclusive ? 'ey' : 'ly';
b6cf0a66
DM
1929
1930 my $storagehash = {};
1931 foreach my $volid (@$vollist) {
1932 my ($storeid, undef) = parse_volume_id ($volid);
1933 $storagehash->{$storeid} = 1;
1934 }
1935
1936 activate_storage_list ($cfg, [keys %$storagehash]);
1937
1938 foreach my $volid (@$vollist) {
1939 my ($storeid, $volname) = parse_volume_id ($volid);
1940
1941 my $scfg = storage_config ($cfg, $storeid);
1942
1943 my $path = path ($cfg, $volid);
1944
1945 if ($scfg->{type} eq 'lvm') {
6703353b
DM
1946 my $cmd = ['/sbin/lvchange', "-a$lvm_activate_mode", $path];
1947 run_command($cmd, errmsg => "can't activate LV '$volid'");
b6cf0a66
DM
1948 }
1949
1950 # check is volume exists
1951 if ($scfg->{type} eq 'dir' || $scfg->{type} eq 'nfs') {
db2ec87f 1952 die "volume '$volid' does not exist\n" if ! -e $path;
b6cf0a66
DM
1953 } else {
1954 die "volume '$volid' does not exist\n" if ! -b $path;
1955 }
1956 }
1957}
1958
1959sub deactivate_volumes {
1960 my ($cfg, $vollist) = @_;
1961
6703353b
DM
1962 return if !($vollist && scalar(@$vollist));
1963
b6cf0a66
DM
1964 my $lvs = lvm_lvs ();
1965
6703353b 1966 my @errlist = ();
b6cf0a66
DM
1967 foreach my $volid (@$vollist) {
1968 my ($storeid, $volname) = parse_volume_id ($volid);
1969
1970 my $scfg = storage_config ($cfg, $storeid);
1971
1972 if ($scfg->{type} eq 'lvm') {
1973 my ($name) = parse_volname_lvm ($volname);
1974
1975 if ($lvs->{$scfg->{vgname}}->{$name}) {
1976 my $path = path ($cfg, $volid);
1977 my $cmd = ['/sbin/lvchange', '-aln', $path];
f81372ac 1978 eval { run_command($cmd, errmsg => "can't deactivate LV '$volid'"); };
6703353b
DM
1979 if (my $err = $@) {
1980 warn $err;
1981 push @errlist, $volid;
1982 }
b6cf0a66
DM
1983 }
1984 }
1985 }
6703353b
DM
1986
1987 die "volume deativation failed: " . join(' ', @errlist)
1988 if scalar(@errlist);
b6cf0a66
DM
1989}
1990
1991sub deactivate_storage {
1992 my ($cfg, $storeid) = @_;
1993
1994 my $iscsi_sessions;
1995
1996 my $scfg = storage_config ($cfg, $storeid);
1997
1998 my $type = $scfg->{type};
1999
2000 if ($type eq 'dir') {
2001 # nothing to do
2002 } elsif ($type eq 'nfs') {
2003 my $mountdata = read_proc_mounts();
2004 my $server = $scfg->{server};
2005 my $export = $scfg->{export};
2006 my $path = $scfg->{path};
2007
2008 my $cmd = ['/bin/umount', $path];
2009
f81372ac
DM
2010 run_command($cmd, errmsg => 'umount error')
2011 if nfs_is_mounted ($server, $export, $path, $mountdata);
2012
b6cf0a66
DM
2013 } elsif ($type eq 'lvm') {
2014 my $cmd = ['/sbin/vgchange', '-aln', $scfg->{vgname}];
f81372ac 2015 run_command($cmd, errmsg => "can't deactivate VG '$scfg->{vgname}'");
b6cf0a66
DM
2016 } elsif ($type eq 'iscsi') {
2017 my $portal = $scfg->{portal};
2018 my $target = $scfg->{target};
2019
2020 my $iscsi_sessions = iscsi_session_list();
2021 iscsi_logout ($target, $portal)
2022 if defined ($iscsi_sessions->{$target});
2023
2024 } else {
2025 die "implement me";
2026 }
2027}
2028
2029sub storage_info {
2030 my ($cfg, $content) = @_;
2031
2032 my $ids = $cfg->{ids};
2033
2034 my $info = {};
2035 my $stypes = {};
2036
2037 my $slist = [];
2038 foreach my $storeid (keys %$ids) {
2039
2040 next if $content && !$ids->{$storeid}->{content}->{$content};
2041
2042 next if !storage_check_enabled($cfg, $storeid, undef, 1);
2043
2044 my $type = $ids->{$storeid}->{type};
2045
2046 $info->{$storeid} = {
2047 type => $type,
2048 total => 0,
2049 avail => 0,
2050 used => 0,
04a2e4f3 2051 shared => $ids->{$storeid}->{shared} ? 1 : 0,
b6cf0a66
DM
2052 content => content_hash_to_string($ids->{$storeid}->{content}),
2053 active => 0,
2054 };
2055
2056 $stypes->{$type} = 1;
2057
2058 push @$slist, $storeid;
2059 }
2060
2061 my $session = {};
2062 my $mountdata = '';
2063 my $iscsi_sessions = {};
2064 my $vgs = {};
2065
2066 if ($stypes->{lvm}) {
2067 $session->{vgs} = lvm_vgs();
2068 $vgs = $session->{vgs};
2069 }
2070 if ($stypes->{nfs}) {
2071 $mountdata = read_proc_mounts();
2072 $session->{mountdata} = $mountdata;
2073 }
2074 if ($stypes->{iscsi}) {
2075 $iscsi_sessions = iscsi_session_list();
2076 $session->{iscsi_sessions} = $iscsi_sessions;
2077 }
2078
2079 eval { activate_storage_list ($cfg, $slist, $session); };
2080
2081 foreach my $storeid (keys %$ids) {
2082 my $scfg = $ids->{$storeid};
2083
2084 next if !$info->{$storeid};
2085
2086 my $type = $scfg->{type};
2087
2088 if ($type eq 'dir' || $type eq 'nfs') {
2089
2090 my $path = $scfg->{path};
2091
2092 if ($type eq 'nfs') {
2093 my $server = $scfg->{server};
2094 my $export = $scfg->{export};
2095
2096 next if !nfs_is_mounted ($server, $export, $path, $mountdata);
2097 }
2098
2099 my $timeout = 2;
2100 my $res = PVE::Tools::df($path, $timeout);
2101
2102 next if !$res || !$res->{total};
2103
2104 $info->{$storeid}->{total} = $res->{total};
2105 $info->{$storeid}->{avail} = $res->{avail};
2106 $info->{$storeid}->{used} = $res->{used};
2107 $info->{$storeid}->{active} = 1;
2108
2109 } elsif ($type eq 'lvm') {
2110
2111 my $vgname = $scfg->{vgname};
2112
2113 my $total = 0;
2114 my $free = 0;
2115
2116 if (defined ($vgs->{$vgname})) {
2117 $total = $vgs->{$vgname}->{size};
2118 $free = $vgs->{$vgname}->{free};
2119
2120 $info->{$storeid}->{total} = $total;
2121 $info->{$storeid}->{avail} = $free;
2122 $info->{$storeid}->{used} = $total - $free;
2123 $info->{$storeid}->{active} = 1;
2124 }
2125
2126 } elsif ($type eq 'iscsi') {
2127
2128 $info->{$storeid}->{total} = 0;
2129 $info->{$storeid}->{avail} = 0;
2130 $info->{$storeid}->{used} = 0;
2131 $info->{$storeid}->{active} =
2132 defined ($iscsi_sessions->{$scfg->{target}});
2133
2134 } else {
2135 die "implement me";
2136 }
2137 }
2138
2139 return $info;
2140}
2141
2142sub resolv_server {
2143 my ($server) = @_;
2144
2145 my $packed_ip = gethostbyname($server);
2146 if (defined $packed_ip) {
2147 return inet_ntoa($packed_ip);
2148 }
2149 return undef;
2150}
2151
2152sub scan_nfs {
2153 my ($server_in) = @_;
2154
2155 my $server;
2156 if (!($server = resolv_server ($server_in))) {
2157 die "unable to resolve address for server '${server_in}'\n";
2158 }
2159
2160 my $cmd = ['/sbin/showmount', '--no-headers', '--exports', $server];
2161
2162 my $res = {};
f81372ac 2163 run_command($cmd, outfunc => sub {
b6cf0a66
DM
2164 my $line = shift;
2165
2166 # note: howto handle white spaces in export path??
2167 if ($line =~ m!^(/\S+)\s+(.+)$!) {
2168 $res->{$1} = $2;
2169 }
2170 });
2171
2172 return $res;
2173}
2174
2175sub resolv_portal {
2176 my ($portal, $noerr) = @_;
2177
2178 if ($portal =~ m/^([^:]+)(:(\d+))?$/) {
2179 my $server = $1;
2180 my $port = $3;
2181
2182 if (my $ip = resolv_server($server)) {
2183 $server = $ip;
2184 return $port ? "$server:$port" : $server;
2185 }
2186 }
2187 return undef if $noerr;
2188
2189 raise_param_exc({ portal => "unable to resolve portal address '$portal'" });
2190}
2191
2192# idea is from usbutils package (/usr/bin/usb-devices) script
2193sub __scan_usb_device {
2194 my ($res, $devpath, $parent, $level) = @_;
2195
2196 return if ! -d $devpath;
2197 return if $level && $devpath !~ m/^.*[-.](\d+)$/;
2198 my $port = $level ? int($1 - 1) : 0;
2199
2200 my $busnum = int(file_read_firstline("$devpath/busnum"));
2201 my $devnum = int(file_read_firstline("$devpath/devnum"));
2202
2203 my $d = {
2204 port => $port,
2205 level => $level,
2206 busnum => $busnum,
2207 devnum => $devnum,
2208 speed => file_read_firstline("$devpath/speed"),
2209 class => hex(file_read_firstline("$devpath/bDeviceClass")),
2210 vendid => file_read_firstline("$devpath/idVendor"),
2211 prodid => file_read_firstline("$devpath/idProduct"),
2212 };
2213
2214 if ($level) {
2215 my $usbpath = $devpath;
2216 $usbpath =~ s|^.*/\d+\-||;
2217 $d->{usbpath} = $usbpath;
2218 }
2219
2220 my $product = file_read_firstline("$devpath/product");
2221 $d->{product} = $product if $product;
2222
2223 my $manu = file_read_firstline("$devpath/manufacturer");
2224 $d->{manufacturer} = $manu if $manu;
2225
2226 my $serial => file_read_firstline("$devpath/serial");
2227 $d->{serial} = $serial if $serial;
2228
2229 push @$res, $d;
2230
2231 foreach my $subdev (<$devpath/$busnum-*>) {
2232 next if $subdev !~ m|/$busnum-[0-9]+(\.[0-9]+)*$|;
2233 __scan_usb_device($res, $subdev, $devnum, $level + 1);
2234 }
2235
2236};
2237
2238sub scan_usb {
2239
2240 my $devlist = [];
2241
2242 foreach my $device (</sys/bus/usb/devices/usb*>) {
2243 __scan_usb_device($devlist, $device, 0, 0);
2244 }
2245
2246 return $devlist;
2247}
2248
2249sub scan_iscsi {
2250 my ($portal_in) = @_;
2251
2252 my $portal;
2253 if (!($portal = resolv_portal ($portal_in))) {
2254 die "unable to parse/resolve portal address '${portal_in}'\n";
2255 }
2256
2257 return iscsi_discovery($portal);
2258}
2259
2260sub storage_default_format {
2261 my ($cfg, $storeid) = @_;
2262
2263 my $scfg = storage_config ($cfg, $storeid);
2264
2265 my $def = $default_config->{$scfg->{type}};
2266
2267 my $def_format = 'raw';
2268 my $valid_formats = [ $def_format ];
2269
2270 if (defined ($def->{format})) {
2271 $def_format = $scfg->{format} || $def->{format}->[1];
2272 $valid_formats = [ sort keys %{$def->{format}->[0]} ];
2273 }
2274
2275 return wantarray ? ($def_format, $valid_formats) : $def_format;
2276}
2277
2278sub vgroup_is_used {
2279 my ($cfg, $vgname) = @_;
2280
2281 foreach my $storeid (keys %{$cfg->{ids}}) {
2282 my $scfg = storage_config ($cfg, $storeid);
2283 if ($scfg->{type} eq 'lvm' && $scfg->{vgname} eq $vgname) {
2284 return 1;
2285 }
2286 }
2287
2288 return undef;
2289}
2290
2291sub target_is_used {
2292 my ($cfg, $target) = @_;
2293
2294 foreach my $storeid (keys %{$cfg->{ids}}) {
2295 my $scfg = storage_config ($cfg, $storeid);
2296 if ($scfg->{type} eq 'iscsi' && $scfg->{target} eq $target) {
2297 return 1;
2298 }
2299 }
2300
2301 return undef;
2302}
2303
2304sub volume_is_used {
2305 my ($cfg, $volid) = @_;
2306
2307 foreach my $storeid (keys %{$cfg->{ids}}) {
2308 my $scfg = storage_config ($cfg, $storeid);
2309 if ($scfg->{base} && $scfg->{base} eq $volid) {
2310 return 1;
2311 }
2312 }
2313
2314 return undef;
2315}
2316
2317sub storage_is_used {
2318 my ($cfg, $storeid) = @_;
2319
2320 foreach my $sid (keys %{$cfg->{ids}}) {
2321 my $scfg = storage_config ($cfg, $sid);
2322 next if !$scfg->{base};
2323 my ($st) = parse_volume_id ($scfg->{base});
2324 return 1 if $st && $st eq $storeid;
2325 }
2326
2327 return undef;
2328}
2329
2330sub foreach_volid {
2331 my ($list, $func) = @_;
2332
2333 return if !$list;
2334
2335 foreach my $sid (keys %$list) {
2336 foreach my $info (@{$list->{$sid}}) {
2337 my $volid = $info->{volid};
2338 my ($sid1, $volname) = parse_volume_id ($volid, 1);
2339 if ($sid1 && $sid1 eq $sid) {
2340 &$func ($volid, $sid, $info);
2341 } else {
2342 warn "detected strange volid '$volid' in volume list for '$sid'\n";
2343 }
2344 }
2345 }
2346}
2347
23481;