]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/LunCmd/LIO.pm
LIO: followup: various small cleanups
[pve-storage.git] / PVE / Storage / LunCmd / LIO.pm
CommitLineData
46c6107e
UR
1package PVE::Storage::LunCmd::LIO;
2
d9254744 3# lightly based on code from Iet.pm
46c6107e
UR
4#
5# additional changes:
6# -----------------------------------------------------------------
7# Copyright (c) 2018 BestSolution.at EDV Systemhaus GmbH
8# All Rights Reserved.
9#
10# This software is released under the terms of the
11#
12# "GNU Affero General Public License"
d9254744 13#
46c6107e
UR
14# and may only be distributed and used under the terms of the
15# mentioned license. You should have received a copy of the license
16# along with this software product, if not you can download it from
17# https://www.gnu.org/licenses/agpl-3.0.en.html
d9254744 18#
46c6107e
UR
19# Author: udo.rader@bestsolution.at
20# -----------------------------------------------------------------
21
22use strict;
23use warnings;
24use PVE::Tools qw(run_command);
25use JSON;
26
27sub get_base;
28
29# targetcli constants
30# config file location differs from distro to distro
31my @CONFIG_FILES = (
d9254744 32 '/etc/rtslib-fb-target/saveconfig.json', # Debian 9.x et al
46c6107e
UR
33 '/etc/target/saveconfig.json' , # ArchLinux, CentOS
34);
35my $BACKSTORE = '/backstores/block';
36
37my $SETTINGS = undef;
38my $SETTINGS_TIMESTAMP = 0;
39my $SETTINGS_MAXAGE = 15; # in seconds
40
41my @ssh_opts = ('-o', 'BatchMode=yes');
42my @ssh_cmd = ('/usr/bin/ssh', @ssh_opts);
43my $id_rsa_path = '/etc/pve/priv/zfs';
44my $targetcli = '/usr/bin/targetcli';
45
46my $execute_remote_command = sub {
47 my ($scfg, $timeout, $remote_command, @params) = @_;
48
49 my $msg = '';
50 my $err = undef;
51 my $target;
52 my $cmd;
53 my $res = ();
54
55 $timeout = 10 if !$timeout;
56
ff69c660
TL
57 my $output = sub { $msg .= "$_[0]\n" };
58 my $errfunc = sub { $err .= "$_[0]\n" };
46c6107e
UR
59
60 $target = 'root@' . $scfg->{portal};
61 $cmd = [@ssh_cmd, '-i', "$id_rsa_path/$scfg->{portal}_id_rsa", $target, '--', $remote_command, @params];
62
63 eval {
ccdf8ddb 64 run_command($cmd, outfunc => $output, errfunc => $errfunc, timeout => $timeout);
46c6107e
UR
65 };
66 if ($@) {
ccdf8ddb
TL
67 $res = {
68 result => 0,
69 msg => $err,
70 }
46c6107e 71 } else {
ccdf8ddb
TL
72 $res = {
73 result => 1,
74 msg => $msg,
75 }
46c6107e
UR
76 }
77
78 return $res;
79};
80
81# fetch targetcli configuration from the portal
82my $read_config = sub {
83 my ($scfg, $timeout) = @_;
84
85 my $msg = '';
86 my $err = undef;
87 my $luncmd = 'cat';
88 my $target;
89 my $retry = 1;
90
91 $timeout = 10 if !$timeout;
92
ff69c660
TL
93 my $output = sub { $msg .= "$_[0]\n" };
94 my $errfunc = sub { $err .= "$_[0]\n" };
46c6107e
UR
95
96 $target = 'root@' . $scfg->{portal};
97
98 foreach my $oneFile (@CONFIG_FILES) {
ccdf8ddb
TL
99 my $cmd = [@ssh_cmd, '-i', "$id_rsa_path/$scfg->{portal}_id_rsa", $target, $luncmd, $oneFile];
100 eval {
101 run_command($cmd, outfunc => $output, errfunc => $errfunc, timeout => $timeout);
102 };
103 if ($@) {
104 die $err if ($err !~ /No such file or directory/);
105 }
106 return $msg if $msg ne '';
46c6107e
UR
107 }
108
109 die "No configuration found. Install targetcli on $scfg->{portal}\n" if $msg eq '';
110
111 return $msg;
112};
113
114my $get_config = sub {
115 my ($scfg) = @_;
116 my @conf = undef;
117
118 my $config = $read_config->($scfg, undef);
119 die "Missing config file" unless $config;
120
121 return $config;
122};
123
124# fetches and parses targetcli config from the portal
125my $parser = sub {
126 my ($scfg) = @_;
127 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
128 my $tpg_tag;
129
130 if ($tpg =~ /^tpg(\d+)$/) {
131 $tpg_tag = $1;
132 } else {
133 die "Target Portal Group has invalid value, must contain string 'tpg' and a suffix number, eg 'tpg17'\n";
134 }
135
136 my $base = get_base;
137
138 my $config = $get_config->($scfg);
139 my $jsonconfig = JSON->new->utf8->decode($config);
140
141 my $haveTarget = 0;
f15ac9b5 142 foreach my $target (@{$jsonconfig->{targets}}) {
46c6107e 143 # only interested in iSCSI targets
f15ac9b5
TL
144 next if !($target->{fabric} eq 'iscsi' && $target->{wwn} eq $scfg->{target});
145 # find correct TPG
146 foreach my $tpg (@{$target->{tpgs}}) {
147 if ($tpg->{tag} == $tpg_tag) {
148 $SETTINGS->{target} = $tpg;
149 $haveTarget = 1;
150 last;
46c6107e
UR
151 }
152 }
153 }
154
155 # seriously unhappy if the target server lacks iSCSI target configuration ...
156 if (!$haveTarget) {
157 die "target portal group tpg$tpg_tag not found!\n";
158 }
159};
160
161# removes the given lu_name from the local list of luns
162my $free_lu_name = sub {
163 my ($lu_name) = @_;
46c6107e 164
f15ac9b5 165 my $new = [];
46c6107e 166 foreach my $lun (@{$SETTINGS->{target}->{luns}}) {
ccdf8ddb
TL
167 if ($lun->{storage_object} ne "$BACKSTORE/$lu_name") {
168 push @$new, $lun;
169 }
46c6107e
UR
170 }
171
172 $SETTINGS->{target}->{luns} = $new;
173};
174
d9254744 175# locally registers a new lun
46c6107e
UR
176my $register_lun = sub {
177 my ($scfg, $idx, $volname) = @_;
178
179 my $conf = {
ccdf8ddb
TL
180 index => $idx,
181 storage_object => "$BACKSTORE/$volname",
182 is_new => 1,
46c6107e
UR
183 };
184 push @{$SETTINGS->{target}->{luns}}, $conf;
185
186 return $conf;
187};
188
189# extracts the ZFS volume name from a device path
190my $extract_volname = sub {
191 my ($scfg, $lunpath) = @_;
192 my $volname = undef;
193
194 my $base = get_base;
195 if ($lunpath =~ /^$base\/$scfg->{pool}\/([\w\-]+)$/) {
196 $volname = $1;
197 }
198
199 return $volname;
200};
201
202# retrieves the LUN index for a particular object
203my $list_view = sub {
204 my ($scfg, $timeout, $method, @params) = @_;
205 my $lun = undef;
206
207 my $object = $params[0];
208 my $volname = $extract_volname->($scfg, $params[0]);
209
210 foreach my $lun (@{$SETTINGS->{target}->{luns}}) {
ccdf8ddb
TL
211 if ($lun->{storage_object} eq "$BACKSTORE/$volname") {
212 return $lun->{index};
213 }
46c6107e
UR
214 }
215
216 return $lun;
217};
218
219# determines, if the given object exists on the portal
220my $list_lun = sub {
221 my ($scfg, $timeout, $method, @params) = @_;
222 my $name = undef;
223
224 my $object = $params[0];
225 my $volname = $extract_volname->($scfg, $params[0]);
226
227 foreach my $lun (@{$SETTINGS->{target}->{luns}}) {
ccdf8ddb
TL
228 if ($lun->{storage_object} eq "$BACKSTORE/$volname") {
229 return $object;
230 }
46c6107e
UR
231 }
232
233 return $name;
234};
235
236# adds a new LUN to the target
237my $create_lun = sub {
238 my ($scfg, $timeout, $method, @params) = @_;
239
240 if ($list_lun->($scfg, $timeout, $method, @params)) {
ccdf8ddb 241 die "$params[0]: LUN already exists!";
46c6107e
UR
242 }
243
244 my $device = $params[0];
245 my $volname = $extract_volname->($scfg, $device);
246 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
247
248 # step 1: create backstore for device
249 my @cliparams = ($BACKSTORE, 'create', "name=$volname", "dev=$device" );
250 my $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
251 die $res->{msg} if !$res->{result};
252
253 # step 2: register lun with target
254 # targetcli /iscsi/iqn.2018-04.at.bestsolution.somehost:target/tpg1/luns/ create /backstores/block/foobar
255 @cliparams = ("/iscsi/$scfg->{target}/$tpg/luns/", 'create', "$BACKSTORE/$volname" );
256 $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
257 die $res->{msg} if !$res->{result};
258
259 # targetcli responds with "Created LUN 99"
260 # not calculating the index ourselves, because the index at the portal might have
261 # changed without our knowledge, so relying on the number that targetcli returns
262 my $lun_idx;
263 if ($res->{msg} =~ /LUN (\d+)/) {
ccdf8ddb 264 $lun_idx = $1;
46c6107e 265 } else {
ccdf8ddb 266 die "unable to determine new LUN index: $res->{msg}";
46c6107e
UR
267 }
268
269 $register_lun->($scfg, $lun_idx, $volname);
270
d9254744 271 # step 3: unfortunately, targetcli doesn't always save changes, no matter
46c6107e
UR
272 # if auto_save_on_exit is true or not. So saving to be safe ...
273 $execute_remote_command->($scfg, $timeout, $targetcli, 'saveconfig');
274
275 return $res->{msg};
276};
277
278my $delete_lun = sub {
279 my ($scfg, $timeout, $method, @params) = @_;
280 my $res = {msg => undef};
281
282 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
283
284 my $path = $params[0];
285 my $volname = $extract_volname->($scfg, $params[0]);
286
287 foreach my $lun (@{$SETTINGS->{target}->{luns}}) {
f15ac9b5
TL
288 next if $lun->{storage_object} ne "$BACKSTORE/$volname";
289
290 # step 1: delete the lun
291 my @cliparams = ("/iscsi/$scfg->{target}/$tpg/luns/", 'delete', "lun$lun->{index}" );
292 my $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
293 do {
294 die $res->{msg};
295 } unless $res->{result};
296
297 # step 2: delete the backstore
298 @cliparams = ($BACKSTORE, 'delete', $volname);
299 $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
300 do {
301 die $res->{msg};
302 } unless $res->{result};
303
304 # step 3: save to be safe ...
305 $execute_remote_command->($scfg, $timeout, $targetcli, 'saveconfig');
306
307 # update interal cache
308 $free_lu_name->($volname);
309
310 last;
46c6107e
UR
311 }
312
313 return $res->{msg};
314};
315
316my $import_lun = sub {
317 my ($scfg, $timeout, $method, @params) = @_;
318
319 return $create_lun->($scfg, $timeout, $method, @params);
320};
321
322# needed for example when the underlying ZFS volume has been resized
323my $modify_lun = sub {
324 my ($scfg, $timeout, $method, @params) = @_;
325 my $msg;
326
327 $msg = $delete_lun->($scfg, $timeout, $method, @params);
328 if ($msg) {
ccdf8ddb 329 $msg = $create_lun->($scfg, $timeout, $method, @params);
46c6107e
UR
330 }
331
332 return $msg;
333};
334
335my $add_view = sub {
336 my ($scfg, $timeout, $method, @params) = @_;
337
338 return '';
339};
340
341my %lun_cmd_map = (
342 create_lu => $create_lun,
343 delete_lu => $delete_lun,
344 import_lu => $import_lun,
345 modify_lu => $modify_lun,
346 add_view => $add_view,
347 list_view => $list_view,
348 list_lu => $list_lun,
349);
350
351sub run_lun_command {
352 my ($scfg, $timeout, $method, @params) = @_;
353
f15ac9b5 354 # fetch configuration from target if we haven't yet or if it is stale
46c6107e 355 my $timediff = time - $SETTINGS_TIMESTAMP;
ccdf8ddb
TL
356 if (!$SETTINGS || $timediff > $SETTINGS_MAXAGE) {
357 $SETTINGS_TIMESTAMP = time;
358 $parser->($scfg);
46c6107e
UR
359 }
360
361 die "unknown command '$method'" unless exists $lun_cmd_map{$method};
362 my $msg = $lun_cmd_map{$method}->($scfg, $timeout, $method, @params);
363
364 return $msg;
365}
366
367sub get_base {
368 return '/dev';
369}
370
3711;