]> git.proxmox.com Git - pve-storage.git/blob - PVE/Storage/ISCSIPlugin.pm
iscsi: sort and split module usage
[pve-storage.git] / PVE / Storage / ISCSIPlugin.pm
1 package PVE::Storage::ISCSIPlugin;
2
3 use strict;
4 use warnings;
5
6 use File::stat;
7 use IO::Dir;
8 use IO::File;
9
10 use PVE::JSONSchema qw(get_standard_option);
11 use PVE::Storage::Plugin;
12 use PVE::Tools qw(run_command file_read_firstline trim dir_glob_regex dir_glob_foreach $IPV4RE $IPV6RE);
13
14 use base qw(PVE::Storage::Plugin);
15
16 # iscsi helper function
17
18 my $ISCSIADM = '/usr/bin/iscsiadm';
19 $ISCSIADM = undef if ! -X $ISCSIADM;
20
21 sub check_iscsi_support {
22 my $noerr = shift;
23
24 if (!$ISCSIADM) {
25 my $msg = "no iscsi support - please install open-iscsi";
26 if ($noerr) {
27 warn "warning: $msg\n";
28 return 0;
29 }
30
31 die "error: $msg\n";
32 }
33
34 return 1;
35 }
36
37 sub iscsi_session_list {
38
39 check_iscsi_support ();
40
41 my $cmd = [$ISCSIADM, '--mode', 'session'];
42
43 my $res = {};
44
45 eval {
46 run_command($cmd, errmsg => 'iscsi session scan failed', outfunc => sub {
47 my $line = shift;
48
49 if ($line =~ m/^tcp:\s+\[(\S+)\]\s+\S+\s+(\S+)(\s+\S+)?\s*$/) {
50 my ($session, $target) = ($1, $2);
51 # there can be several sessions per target (multipath)
52 push @{$res->{$target}}, $session;
53 }
54 });
55 };
56 if (my $err = $@) {
57 die $err if $err !~ m/: No active sessions.$/i;
58 }
59
60 return $res;
61 }
62
63 sub iscsi_test_portal {
64 my ($portal) = @_;
65
66 my ($server, $port) = PVE::Tools::parse_host_and_port($portal);
67 return 0 if !$server;
68 return PVE::Network::tcp_ping($server, $port || 3260, 2);
69 }
70
71 sub iscsi_discovery {
72 my ($portal) = @_;
73
74 check_iscsi_support ();
75
76 my $cmd = [$ISCSIADM, '--mode', 'discovery', '--type', 'sendtargets',
77 '--portal', $portal];
78
79 my $res = {};
80
81 return $res if !iscsi_test_portal($portal); # fixme: raise exception here?
82
83 run_command($cmd, outfunc => sub {
84 my $line = shift;
85
86 if ($line =~ m/^((?:$IPV4RE|\[$IPV6RE\]):\d+)\,\S+\s+(\S+)\s*$/) {
87 my $portal = $1;
88 my $target = $2;
89 # one target can have more than one portal (multipath).
90 push @{$res->{$target}}, $portal;
91 }
92 });
93
94 return $res;
95 }
96
97 sub iscsi_login {
98 my ($target, $portal_in) = @_;
99
100 check_iscsi_support ();
101
102 eval { iscsi_discovery ($portal_in); };
103 warn $@ if $@;
104
105 my $cmd = [$ISCSIADM, '--mode', 'node', '--targetname', $target, '--login'];
106 run_command($cmd);
107 }
108
109 sub iscsi_logout {
110 my ($target, $portal) = @_;
111
112 check_iscsi_support ();
113
114 my $cmd = [$ISCSIADM, '--mode', 'node', '--targetname', $target, '--logout'];
115 run_command($cmd);
116 }
117
118 my $rescan_filename = "/var/run/pve-iscsi-rescan.lock";
119
120 sub iscsi_session_rescan {
121 my $session_list = shift;
122
123 check_iscsi_support();
124
125 my $rstat = stat($rescan_filename);
126
127 if (!$rstat) {
128 if (my $fh = IO::File->new($rescan_filename, "a")) {
129 utime undef, undef, $fh;
130 close($fh);
131 }
132 } else {
133 my $atime = $rstat->atime;
134 my $tdiff = time() - $atime;
135 # avoid frequent rescans
136 return if !($tdiff < 0 || $tdiff > 10);
137 utime undef, undef, $rescan_filename;
138 }
139
140 foreach my $session (@$session_list) {
141 my $cmd = [$ISCSIADM, '--mode', 'session', '--sid', $session, '--rescan'];
142 eval { run_command($cmd, outfunc => sub {}); };
143 warn $@ if $@;
144 }
145 }
146
147 sub load_stable_scsi_paths {
148
149 my $stable_paths = {};
150
151 my $stabledir = "/dev/disk/by-id";
152
153 if (my $dh = IO::Dir->new($stabledir)) {
154 while (defined(my $tmp = $dh->read)) {
155 # exclude filenames with part in name (same disk but partitions)
156 # use only filenames with scsi(with multipath i have the same device
157 # with dm-uuid-mpath , dm-name and scsi in name)
158 if($tmp !~ m/-part\d+$/ && $tmp =~ m/^scsi-/) {
159 my $path = "$stabledir/$tmp";
160 my $bdevdest = readlink($path);
161 if ($bdevdest && $bdevdest =~ m|^../../([^/]+)|) {
162 $stable_paths->{$1}=$tmp;
163 }
164 }
165 }
166 $dh->close;
167 }
168 return $stable_paths;
169 }
170
171 sub iscsi_device_list {
172
173 my $res = {};
174
175 my $dirname = '/sys/class/iscsi_session';
176
177 my $stable_paths = load_stable_scsi_paths();
178
179 dir_glob_foreach($dirname, 'session(\d+)', sub {
180 my ($ent, $session) = @_;
181
182 my $target = file_read_firstline("$dirname/$ent/targetname");
183 return if !$target;
184
185 my (undef, $host) = dir_glob_regex("$dirname/$ent/device", 'target(\d+):.*');
186 return if !defined($host);
187
188 dir_glob_foreach("/sys/bus/scsi/devices", "$host:" . '(\d+):(\d+):(\d+)', sub {
189 my ($tmp, $channel, $id, $lun) = @_;
190
191 my $type = file_read_firstline("/sys/bus/scsi/devices/$tmp/type");
192 return if !defined($type) || $type ne '0'; # list disks only
193
194 my $bdev;
195 if (-d "/sys/bus/scsi/devices/$tmp/block") { # newer kernels
196 (undef, $bdev) = dir_glob_regex("/sys/bus/scsi/devices/$tmp/block/", '([A-Za-z]\S*)');
197 } else {
198 (undef, $bdev) = dir_glob_regex("/sys/bus/scsi/devices/$tmp", 'block:(\S+)');
199 }
200 return if !$bdev;
201
202 #check multipath
203 if (-d "/sys/block/$bdev/holders") {
204 my $multipathdev = dir_glob_regex("/sys/block/$bdev/holders", '[A-Za-z]\S*');
205 $bdev = $multipathdev if $multipathdev;
206 }
207
208 my $blockdev = $stable_paths->{$bdev};
209 return if !$blockdev;
210
211 my $size = file_read_firstline("/sys/block/$bdev/size");
212 return if !$size;
213
214 my $volid = "$channel.$id.$lun.$blockdev";
215
216 $res->{$target}->{$volid} = {
217 'format' => 'raw',
218 'size' => int($size * 512),
219 'vmid' => 0, # not assigned to any vm
220 'channel' => int($channel),
221 'id' => int($id),
222 'lun' => int($lun),
223 };
224
225 #print "TEST: $target $session $host,$bus,$tg,$lun $blockdev\n";
226 });
227
228 });
229
230 return $res;
231 }
232
233 # Configuration
234
235 sub type {
236 return 'iscsi';
237 }
238
239 sub plugindata {
240 return {
241 content => [ {images => 1, none => 1}, { images => 1 }],
242 select_existing => 1,
243 };
244 }
245
246 sub properties {
247 return {
248 target => {
249 description => "iSCSI target.",
250 type => 'string',
251 },
252 portal => {
253 description => "iSCSI portal (IP or DNS name with optional port).",
254 type => 'string', format => 'pve-storage-portal-dns',
255 },
256 };
257 }
258
259 sub options {
260 return {
261 portal => { fixed => 1 },
262 target => { fixed => 1 },
263 nodes => { optional => 1},
264 disable => { optional => 1},
265 content => { optional => 1},
266 bwlimit => { optional => 1 },
267 };
268 }
269
270 # Storage implementation
271
272 sub parse_volname {
273 my ($class, $volname) = @_;
274
275 if ($volname =~ m!^\d+\.\d+\.\d+\.(\S+)$!) {
276 return ('images', $1, undef, undef, undef, undef, 'raw');
277 }
278
279 die "unable to parse iscsi volume name '$volname'\n";
280 }
281
282 sub filesystem_path {
283 my ($class, $scfg, $volname, $snapname) = @_;
284
285 die "snapshot is not possible on iscsi storage\n" if defined($snapname);
286
287 my ($vtype, $name, $vmid) = $class->parse_volname($volname);
288
289 my $path = "/dev/disk/by-id/$name";
290
291 return wantarray ? ($path, $vmid, $vtype) : $path;
292 }
293
294 sub create_base {
295 my ($class, $storeid, $scfg, $volname) = @_;
296
297 die "can't create base images in iscsi storage\n";
298 }
299
300 sub clone_image {
301 my ($class, $scfg, $storeid, $volname, $vmid, $snap) = @_;
302
303 die "can't clone images in iscsi storage\n";
304 }
305
306 sub alloc_image {
307 my ($class, $storeid, $scfg, $vmid, $fmt, $name, $size) = @_;
308
309 die "can't allocate space in iscsi storage\n";
310 }
311
312 sub free_image {
313 my ($class, $storeid, $scfg, $volname, $isBase) = @_;
314
315 die "can't free space in iscsi storage\n";
316 }
317
318 sub list_images {
319 my ($class, $storeid, $scfg, $vmid, $vollist, $cache) = @_;
320
321 my $res = [];
322
323 $cache->{iscsi_devices} = iscsi_device_list() if !$cache->{iscsi_devices};
324
325 # we have no owner for iscsi devices
326
327 my $target = $scfg->{target};
328
329 if (my $dat = $cache->{iscsi_devices}->{$target}) {
330
331 foreach my $volname (keys %$dat) {
332
333 my $volid = "$storeid:$volname";
334
335 if ($vollist) {
336 my $found = grep { $_ eq $volid } @$vollist;
337 next if !$found;
338 } else {
339 # we have no owner for iscsi devices
340 next if defined($vmid);
341 }
342
343 my $info = $dat->{$volname};
344 $info->{volid} = $volid;
345
346 push @$res, $info;
347 }
348 }
349
350 return $res;
351 }
352
353 sub status {
354 my ($class, $storeid, $scfg, $cache) = @_;
355
356 $cache->{iscsi_sessions} = iscsi_session_list() if !$cache->{iscsi_sessions};
357
358 my $active = defined($cache->{iscsi_sessions}->{$scfg->{target}}) + 0;
359
360 return (0, 0, 0, $active);
361 }
362
363 sub activate_storage {
364 my ($class, $storeid, $scfg, $cache) = @_;
365
366 return if !check_iscsi_support(1);
367
368 $cache->{iscsi_sessions} = iscsi_session_list() if !$cache->{iscsi_sessions};
369
370 my $iscsi_sess = $cache->{iscsi_sessions}->{$scfg->{target}};
371 if (!defined ($iscsi_sess)) {
372 eval { iscsi_login($scfg->{target}, $scfg->{portal}); };
373 warn $@ if $@;
374 } else {
375 # make sure we get all devices
376 iscsi_session_rescan($iscsi_sess);
377 }
378 }
379
380 sub deactivate_storage {
381 my ($class, $storeid, $scfg, $cache) = @_;
382
383 return if !check_iscsi_support(1);
384
385 $cache->{iscsi_sessions} = iscsi_session_list() if !$cache->{iscsi_sessions};
386
387 my $iscsi_sess = $cache->{iscsi_sessions}->{$scfg->{target}};
388
389 if (defined ($iscsi_sess)) {
390 iscsi_logout($scfg->{target}, $scfg->{portal});
391 }
392 }
393
394 sub check_connection {
395 my ($class, $storeid, $scfg) = @_;
396
397 my $portal = $scfg->{portal};
398 return iscsi_test_portal($portal);
399 }
400
401 sub volume_resize {
402 my ($class, $scfg, $storeid, $volname, $size, $running) = @_;
403 die "volume resize is not possible on iscsi device";
404 }
405
406 sub volume_has_feature {
407 my ($class, $scfg, $feature, $storeid, $volname, $snapname, $running) = @_;
408
409 my $features = {
410 copy => { current => 1},
411 };
412
413 my ($vtype, $name, $vmid, $basename, $basevmid, $isBase) =
414 $class->parse_volname($volname);
415
416 my $key = undef;
417 if($snapname){
418 $key = 'snap';
419 }else{
420 $key = $isBase ? 'base' : 'current';
421 }
422 return 1 if $features->{$feature}->{$key};
423
424 return undef;
425 }
426
427
428 1;