]> git.proxmox.com Git - pve-storage.git/blame - PVE/Storage/LunCmd/LIO.pm
LIO: Make the target cache works per target and portal
[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
609f8ec6
DB
124# Return settings of a specific target
125my $get_target_settings = sub {
126 my ($scfg) = @_;
127
128 my $id = "$scfg->{portal}.$scfg->{target}";
129 return undef if !$SETTINGS;
130 return $SETTINGS->{$id};
131};
132
46c6107e
UR
133# fetches and parses targetcli config from the portal
134my $parser = sub {
135 my ($scfg) = @_;
136 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
137 my $tpg_tag;
138
139 if ($tpg =~ /^tpg(\d+)$/) {
140 $tpg_tag = $1;
141 } else {
142 die "Target Portal Group has invalid value, must contain string 'tpg' and a suffix number, eg 'tpg17'\n";
143 }
144
145 my $base = get_base;
146
147 my $config = $get_config->($scfg);
148 my $jsonconfig = JSON->new->utf8->decode($config);
149
150 my $haveTarget = 0;
f15ac9b5 151 foreach my $target (@{$jsonconfig->{targets}}) {
46c6107e 152 # only interested in iSCSI targets
f15ac9b5
TL
153 next if !($target->{fabric} eq 'iscsi' && $target->{wwn} eq $scfg->{target});
154 # find correct TPG
155 foreach my $tpg (@{$target->{tpgs}}) {
156 if ($tpg->{tag} == $tpg_tag) {
609f8ec6
DB
157 my $id = "$scfg->{portal}.$scfg->{target}";
158 $SETTINGS->{$id} = $tpg;
f15ac9b5
TL
159 $haveTarget = 1;
160 last;
46c6107e
UR
161 }
162 }
163 }
164
165 # seriously unhappy if the target server lacks iSCSI target configuration ...
166 if (!$haveTarget) {
167 die "target portal group tpg$tpg_tag not found!\n";
168 }
169};
170
171# removes the given lu_name from the local list of luns
172my $free_lu_name = sub {
609f8ec6 173 my ($scfg, $lu_name) = @_;
46c6107e 174
f15ac9b5 175 my $new = [];
609f8ec6
DB
176 my $target = $get_target_settings->($scfg);
177 foreach my $lun (@{$target->{luns}}) {
ccdf8ddb
TL
178 if ($lun->{storage_object} ne "$BACKSTORE/$lu_name") {
179 push @$new, $lun;
180 }
46c6107e
UR
181 }
182
609f8ec6 183 $target->{luns} = $new;
46c6107e
UR
184};
185
d9254744 186# locally registers a new lun
46c6107e
UR
187my $register_lun = sub {
188 my ($scfg, $idx, $volname) = @_;
189
190 my $conf = {
ccdf8ddb
TL
191 index => $idx,
192 storage_object => "$BACKSTORE/$volname",
193 is_new => 1,
46c6107e 194 };
609f8ec6
DB
195 my $target = $get_target_settings->($scfg);
196 push @{$target->{luns}}, $conf;
46c6107e
UR
197
198 return $conf;
199};
200
201# extracts the ZFS volume name from a device path
202my $extract_volname = sub {
203 my ($scfg, $lunpath) = @_;
204 my $volname = undef;
205
206 my $base = get_base;
207 if ($lunpath =~ /^$base\/$scfg->{pool}\/([\w\-]+)$/) {
208 $volname = $1;
209 }
210
211 return $volname;
212};
213
214# retrieves the LUN index for a particular object
215my $list_view = sub {
216 my ($scfg, $timeout, $method, @params) = @_;
217 my $lun = undef;
218
219 my $object = $params[0];
2dbca26d 220 my $volname = $extract_volname->($scfg, $object);
609f8ec6 221 my $target = $get_target_settings->($scfg);
46c6107e 222
61137a54
TL
223 return undef if !defined($volname); # nothing to search for..
224
609f8ec6 225 foreach my $lun (@{$target->{luns}}) {
ccdf8ddb
TL
226 if ($lun->{storage_object} eq "$BACKSTORE/$volname") {
227 return $lun->{index};
228 }
46c6107e
UR
229 }
230
231 return $lun;
232};
233
234# determines, if the given object exists on the portal
235my $list_lun = sub {
236 my ($scfg, $timeout, $method, @params) = @_;
237 my $name = undef;
238
239 my $object = $params[0];
240 my $volname = $extract_volname->($scfg, $params[0]);
609f8ec6 241 my $target = $get_target_settings->($scfg);
46c6107e 242
609f8ec6 243 foreach my $lun (@{$target->{luns}}) {
ccdf8ddb
TL
244 if ($lun->{storage_object} eq "$BACKSTORE/$volname") {
245 return $object;
246 }
46c6107e
UR
247 }
248
249 return $name;
250};
251
252# adds a new LUN to the target
253my $create_lun = sub {
254 my ($scfg, $timeout, $method, @params) = @_;
255
256 if ($list_lun->($scfg, $timeout, $method, @params)) {
ccdf8ddb 257 die "$params[0]: LUN already exists!";
46c6107e
UR
258 }
259
260 my $device = $params[0];
261 my $volname = $extract_volname->($scfg, $device);
262 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
263
264 # step 1: create backstore for device
265 my @cliparams = ($BACKSTORE, 'create', "name=$volname", "dev=$device" );
266 my $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
267 die $res->{msg} if !$res->{result};
268
b7c8738f
DB
269 # step 2: enable unmap support on the backstore
270 @cliparams = ($BACKSTORE . '/' . $volname, 'set', 'attribute', 'emulate_tpu=1' );
271 $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
272 die $res->{msg} if !$res->{result};
273
274 # step 3: register lun with target
46c6107e
UR
275 # targetcli /iscsi/iqn.2018-04.at.bestsolution.somehost:target/tpg1/luns/ create /backstores/block/foobar
276 @cliparams = ("/iscsi/$scfg->{target}/$tpg/luns/", 'create', "$BACKSTORE/$volname" );
277 $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
278 die $res->{msg} if !$res->{result};
279
280 # targetcli responds with "Created LUN 99"
281 # not calculating the index ourselves, because the index at the portal might have
282 # changed without our knowledge, so relying on the number that targetcli returns
283 my $lun_idx;
284 if ($res->{msg} =~ /LUN (\d+)/) {
ccdf8ddb 285 $lun_idx = $1;
46c6107e 286 } else {
ccdf8ddb 287 die "unable to determine new LUN index: $res->{msg}";
46c6107e
UR
288 }
289
290 $register_lun->($scfg, $lun_idx, $volname);
291
d9254744 292 # step 3: unfortunately, targetcli doesn't always save changes, no matter
46c6107e
UR
293 # if auto_save_on_exit is true or not. So saving to be safe ...
294 $execute_remote_command->($scfg, $timeout, $targetcli, 'saveconfig');
295
296 return $res->{msg};
297};
298
299my $delete_lun = sub {
300 my ($scfg, $timeout, $method, @params) = @_;
301 my $res = {msg => undef};
302
303 my $tpg = $scfg->{lio_tpg} || die "Target Portal Group not set, aborting!\n";
304
305 my $path = $params[0];
306 my $volname = $extract_volname->($scfg, $params[0]);
609f8ec6 307 my $target = $get_target_settings->($scfg);
46c6107e 308
609f8ec6 309 foreach my $lun (@{$target->{luns}}) {
f15ac9b5
TL
310 next if $lun->{storage_object} ne "$BACKSTORE/$volname";
311
312 # step 1: delete the lun
313 my @cliparams = ("/iscsi/$scfg->{target}/$tpg/luns/", 'delete', "lun$lun->{index}" );
314 my $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
315 do {
316 die $res->{msg};
317 } unless $res->{result};
318
319 # step 2: delete the backstore
320 @cliparams = ($BACKSTORE, 'delete', $volname);
321 $res = $execute_remote_command->($scfg, $timeout, $targetcli, @cliparams);
322 do {
323 die $res->{msg};
324 } unless $res->{result};
325
326 # step 3: save to be safe ...
327 $execute_remote_command->($scfg, $timeout, $targetcli, 'saveconfig');
328
329 # update interal cache
609f8ec6 330 $free_lu_name->($scfg, $volname);
f15ac9b5
TL
331
332 last;
46c6107e
UR
333 }
334
335 return $res->{msg};
336};
337
338my $import_lun = sub {
339 my ($scfg, $timeout, $method, @params) = @_;
340
341 return $create_lun->($scfg, $timeout, $method, @params);
342};
343
344# needed for example when the underlying ZFS volume has been resized
345my $modify_lun = sub {
346 my ($scfg, $timeout, $method, @params) = @_;
525ed353
DB
347 # Nothing to do on volume modification for LIO
348 return undef;
46c6107e
UR
349};
350
351my $add_view = sub {
352 my ($scfg, $timeout, $method, @params) = @_;
353
354 return '';
355};
356
357my %lun_cmd_map = (
358 create_lu => $create_lun,
359 delete_lu => $delete_lun,
360 import_lu => $import_lun,
361 modify_lu => $modify_lun,
362 add_view => $add_view,
363 list_view => $list_view,
364 list_lu => $list_lun,
365);
366
367sub run_lun_command {
368 my ($scfg, $timeout, $method, @params) = @_;
369
f15ac9b5 370 # fetch configuration from target if we haven't yet or if it is stale
46c6107e 371 my $timediff = time - $SETTINGS_TIMESTAMP;
609f8ec6
DB
372 my $target = $get_target_settings->($scfg);
373 if (!$target || $timediff > $SETTINGS_MAXAGE) {
ccdf8ddb
TL
374 $SETTINGS_TIMESTAMP = time;
375 $parser->($scfg);
46c6107e
UR
376 }
377
378 die "unknown command '$method'" unless exists $lun_cmd_map{$method};
379 my $msg = $lun_cmd_map{$method}->($scfg, $timeout, $method, @params);
380
381 return $msg;
382}
383
384sub get_base {
385 return '/dev';
386}
387
3881;