Loading...
1/*******************************************************************************
2 * Filename: target_core_fabric_lib.c
3 *
4 * This file contains generic high level protocol identifier and PR
5 * handlers for TCM fabric modules
6 *
7 * Copyright (c) 2010 Rising Tide Systems, Inc.
8 * Copyright (c) 2010 Linux-iSCSI.org
9 *
10 * Nicholas A. Bellinger <nab@linux-iscsi.org>
11 *
12 * This program is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21 *
22 * You should have received a copy of the GNU General Public License
23 * along with this program; if not, write to the Free Software
24 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
25 *
26 ******************************************************************************/
27
28#include <linux/kernel.h>
29#include <linux/string.h>
30#include <linux/ctype.h>
31#include <linux/spinlock.h>
32#include <scsi/scsi.h>
33#include <scsi/scsi_cmnd.h>
34
35#include <target/target_core_base.h>
36#include <target/target_core_device.h>
37#include <target/target_core_transport.h>
38#include <target/target_core_fabric_lib.h>
39#include <target/target_core_fabric_ops.h>
40#include <target/target_core_configfs.h>
41
42#include "target_core_hba.h"
43#include "target_core_pr.h"
44
45/*
46 * Handlers for Serial Attached SCSI (SAS)
47 */
48u8 sas_get_fabric_proto_ident(struct se_portal_group *se_tpg)
49{
50 /*
51 * Return a SAS Serial SCSI Protocol identifier for loopback operations
52 * This is defined in section 7.5.1 Table 362 in spc4r17
53 */
54 return 0x6;
55}
56EXPORT_SYMBOL(sas_get_fabric_proto_ident);
57
58u32 sas_get_pr_transport_id(
59 struct se_portal_group *se_tpg,
60 struct se_node_acl *se_nacl,
61 struct t10_pr_registration *pr_reg,
62 int *format_code,
63 unsigned char *buf)
64{
65 unsigned char *ptr;
66
67 /*
68 * Set PROTOCOL IDENTIFIER to 6h for SAS
69 */
70 buf[0] = 0x06;
71 /*
72 * From spc4r17, 7.5.4.7 TransportID for initiator ports using SCSI
73 * over SAS Serial SCSI Protocol
74 */
75 ptr = &se_nacl->initiatorname[4]; /* Skip over 'naa. prefix */
76
77 hex2bin(&buf[4], ptr, 8);
78
79 /*
80 * The SAS Transport ID is a hardcoded 24-byte length
81 */
82 return 24;
83}
84EXPORT_SYMBOL(sas_get_pr_transport_id);
85
86u32 sas_get_pr_transport_id_len(
87 struct se_portal_group *se_tpg,
88 struct se_node_acl *se_nacl,
89 struct t10_pr_registration *pr_reg,
90 int *format_code)
91{
92 *format_code = 0;
93 /*
94 * From spc4r17, 7.5.4.7 TransportID for initiator ports using SCSI
95 * over SAS Serial SCSI Protocol
96 *
97 * The SAS Transport ID is a hardcoded 24-byte length
98 */
99 return 24;
100}
101EXPORT_SYMBOL(sas_get_pr_transport_id_len);
102
103/*
104 * Used for handling SCSI fabric dependent TransportIDs in SPC-3 and above
105 * Persistent Reservation SPEC_I_PT=1 and PROUT REGISTER_AND_MOVE operations.
106 */
107char *sas_parse_pr_out_transport_id(
108 struct se_portal_group *se_tpg,
109 const char *buf,
110 u32 *out_tid_len,
111 char **port_nexus_ptr)
112{
113 /*
114 * Assume the FORMAT CODE 00b from spc4r17, 7.5.4.7 TransportID
115 * for initiator ports using SCSI over SAS Serial SCSI Protocol
116 *
117 * The TransportID for a SAS Initiator Port is of fixed size of
118 * 24 bytes, and SAS does not contain a I_T nexus identifier,
119 * so we return the **port_nexus_ptr set to NULL.
120 */
121 *port_nexus_ptr = NULL;
122 *out_tid_len = 24;
123
124 return (char *)&buf[4];
125}
126EXPORT_SYMBOL(sas_parse_pr_out_transport_id);
127
128/*
129 * Handlers for Fibre Channel Protocol (FCP)
130 */
131u8 fc_get_fabric_proto_ident(struct se_portal_group *se_tpg)
132{
133 return 0x0; /* 0 = fcp-2 per SPC4 section 7.5.1 */
134}
135EXPORT_SYMBOL(fc_get_fabric_proto_ident);
136
137u32 fc_get_pr_transport_id_len(
138 struct se_portal_group *se_tpg,
139 struct se_node_acl *se_nacl,
140 struct t10_pr_registration *pr_reg,
141 int *format_code)
142{
143 *format_code = 0;
144 /*
145 * The FC Transport ID is a hardcoded 24-byte length
146 */
147 return 24;
148}
149EXPORT_SYMBOL(fc_get_pr_transport_id_len);
150
151u32 fc_get_pr_transport_id(
152 struct se_portal_group *se_tpg,
153 struct se_node_acl *se_nacl,
154 struct t10_pr_registration *pr_reg,
155 int *format_code,
156 unsigned char *buf)
157{
158 unsigned char *ptr;
159 int i;
160 u32 off = 8;
161 /*
162 * PROTOCOL IDENTIFIER is 0h for FCP-2
163 *
164 * From spc4r17, 7.5.4.2 TransportID for initiator ports using
165 * SCSI over Fibre Channel
166 *
167 * We convert the ASCII formatted N Port name into a binary
168 * encoded TransportID.
169 */
170 ptr = &se_nacl->initiatorname[0];
171
172 for (i = 0; i < 24; ) {
173 if (!strncmp(&ptr[i], ":", 1)) {
174 i++;
175 continue;
176 }
177 hex2bin(&buf[off++], &ptr[i], 1);
178 i += 2;
179 }
180 /*
181 * The FC Transport ID is a hardcoded 24-byte length
182 */
183 return 24;
184}
185EXPORT_SYMBOL(fc_get_pr_transport_id);
186
187char *fc_parse_pr_out_transport_id(
188 struct se_portal_group *se_tpg,
189 const char *buf,
190 u32 *out_tid_len,
191 char **port_nexus_ptr)
192{
193 /*
194 * The TransportID for a FC N Port is of fixed size of
195 * 24 bytes, and FC does not contain a I_T nexus identifier,
196 * so we return the **port_nexus_ptr set to NULL.
197 */
198 *port_nexus_ptr = NULL;
199 *out_tid_len = 24;
200
201 return (char *)&buf[8];
202}
203EXPORT_SYMBOL(fc_parse_pr_out_transport_id);
204
205/*
206 * Handlers for Internet Small Computer Systems Interface (iSCSI)
207 */
208
209u8 iscsi_get_fabric_proto_ident(struct se_portal_group *se_tpg)
210{
211 /*
212 * This value is defined for "Internet SCSI (iSCSI)"
213 * in spc4r17 section 7.5.1 Table 362
214 */
215 return 0x5;
216}
217EXPORT_SYMBOL(iscsi_get_fabric_proto_ident);
218
219u32 iscsi_get_pr_transport_id(
220 struct se_portal_group *se_tpg,
221 struct se_node_acl *se_nacl,
222 struct t10_pr_registration *pr_reg,
223 int *format_code,
224 unsigned char *buf)
225{
226 u32 off = 4, padding = 0;
227 u16 len = 0;
228
229 spin_lock_irq(&se_nacl->nacl_sess_lock);
230 /*
231 * Set PROTOCOL IDENTIFIER to 5h for iSCSI
232 */
233 buf[0] = 0x05;
234 /*
235 * From spc4r17 Section 7.5.4.6: TransportID for initiator
236 * ports using SCSI over iSCSI.
237 *
238 * The null-terminated, null-padded (see 4.4.2) ISCSI NAME field
239 * shall contain the iSCSI name of an iSCSI initiator node (see
240 * RFC 3720). The first ISCSI NAME field byte containing an ASCII
241 * null character terminates the ISCSI NAME field without regard for
242 * the specified length of the iSCSI TransportID or the contents of
243 * the ADDITIONAL LENGTH field.
244 */
245 len = sprintf(&buf[off], "%s", se_nacl->initiatorname);
246 /*
247 * Add Extra byte for NULL terminator
248 */
249 len++;
250 /*
251 * If there is ISID present with the registration and *format code == 1
252 * 1, use iSCSI Initiator port TransportID format.
253 *
254 * Otherwise use iSCSI Initiator device TransportID format that
255 * does not contain the ASCII encoded iSCSI Initiator iSID value
256 * provied by the iSCSi Initiator during the iSCSI login process.
257 */
258 if ((*format_code == 1) && (pr_reg->isid_present_at_reg)) {
259 /*
260 * Set FORMAT CODE 01b for iSCSI Initiator port TransportID
261 * format.
262 */
263 buf[0] |= 0x40;
264 /*
265 * From spc4r17 Section 7.5.4.6: TransportID for initiator
266 * ports using SCSI over iSCSI. Table 390
267 *
268 * The SEPARATOR field shall contain the five ASCII
269 * characters ",i,0x".
270 *
271 * The null-terminated, null-padded ISCSI INITIATOR SESSION ID
272 * field shall contain the iSCSI initiator session identifier
273 * (see RFC 3720) in the form of ASCII characters that are the
274 * hexadecimal digits converted from the binary iSCSI initiator
275 * session identifier value. The first ISCSI INITIATOR SESSION
276 * ID field byte containing an ASCII null character
277 */
278 buf[off+len] = 0x2c; off++; /* ASCII Character: "," */
279 buf[off+len] = 0x69; off++; /* ASCII Character: "i" */
280 buf[off+len] = 0x2c; off++; /* ASCII Character: "," */
281 buf[off+len] = 0x30; off++; /* ASCII Character: "0" */
282 buf[off+len] = 0x78; off++; /* ASCII Character: "x" */
283 len += 5;
284 buf[off+len] = pr_reg->pr_reg_isid[0]; off++;
285 buf[off+len] = pr_reg->pr_reg_isid[1]; off++;
286 buf[off+len] = pr_reg->pr_reg_isid[2]; off++;
287 buf[off+len] = pr_reg->pr_reg_isid[3]; off++;
288 buf[off+len] = pr_reg->pr_reg_isid[4]; off++;
289 buf[off+len] = pr_reg->pr_reg_isid[5]; off++;
290 buf[off+len] = '\0'; off++;
291 len += 7;
292 }
293 spin_unlock_irq(&se_nacl->nacl_sess_lock);
294 /*
295 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
296 * in the TransportID. The additional length shall be at least 20 and
297 * shall be a multiple of four.
298 */
299 padding = ((-len) & 3);
300 if (padding != 0)
301 len += padding;
302
303 buf[2] = ((len >> 8) & 0xff);
304 buf[3] = (len & 0xff);
305 /*
306 * Increment value for total payload + header length for
307 * full status descriptor
308 */
309 len += 4;
310
311 return len;
312}
313EXPORT_SYMBOL(iscsi_get_pr_transport_id);
314
315u32 iscsi_get_pr_transport_id_len(
316 struct se_portal_group *se_tpg,
317 struct se_node_acl *se_nacl,
318 struct t10_pr_registration *pr_reg,
319 int *format_code)
320{
321 u32 len = 0, padding = 0;
322
323 spin_lock_irq(&se_nacl->nacl_sess_lock);
324 len = strlen(se_nacl->initiatorname);
325 /*
326 * Add extra byte for NULL terminator
327 */
328 len++;
329 /*
330 * If there is ISID present with the registration, use format code:
331 * 01b: iSCSI Initiator port TransportID format
332 *
333 * If there is not an active iSCSI session, use format code:
334 * 00b: iSCSI Initiator device TransportID format
335 */
336 if (pr_reg->isid_present_at_reg) {
337 len += 5; /* For ",i,0x" ASCII seperator */
338 len += 7; /* For iSCSI Initiator Session ID + Null terminator */
339 *format_code = 1;
340 } else
341 *format_code = 0;
342 spin_unlock_irq(&se_nacl->nacl_sess_lock);
343 /*
344 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
345 * in the TransportID. The additional length shall be at least 20 and
346 * shall be a multiple of four.
347 */
348 padding = ((-len) & 3);
349 if (padding != 0)
350 len += padding;
351 /*
352 * Increment value for total payload + header length for
353 * full status descriptor
354 */
355 len += 4;
356
357 return len;
358}
359EXPORT_SYMBOL(iscsi_get_pr_transport_id_len);
360
361char *iscsi_parse_pr_out_transport_id(
362 struct se_portal_group *se_tpg,
363 const char *buf,
364 u32 *out_tid_len,
365 char **port_nexus_ptr)
366{
367 char *p;
368 u32 tid_len, padding;
369 int i;
370 u16 add_len;
371 u8 format_code = (buf[0] & 0xc0);
372 /*
373 * Check for FORMAT CODE 00b or 01b from spc4r17, section 7.5.4.6:
374 *
375 * TransportID for initiator ports using SCSI over iSCSI,
376 * from Table 388 -- iSCSI TransportID formats.
377 *
378 * 00b Initiator port is identified using the world wide unique
379 * SCSI device name of the iSCSI initiator
380 * device containing the initiator port (see table 389).
381 * 01b Initiator port is identified using the world wide unique
382 * initiator port identifier (see table 390).10b to 11b
383 * Reserved
384 */
385 if ((format_code != 0x00) && (format_code != 0x40)) {
386 pr_err("Illegal format code: 0x%02x for iSCSI"
387 " Initiator Transport ID\n", format_code);
388 return NULL;
389 }
390 /*
391 * If the caller wants the TransportID Length, we set that value for the
392 * entire iSCSI Tarnsport ID now.
393 */
394 if (out_tid_len != NULL) {
395 add_len = ((buf[2] >> 8) & 0xff);
396 add_len |= (buf[3] & 0xff);
397
398 tid_len = strlen((char *)&buf[4]);
399 tid_len += 4; /* Add four bytes for iSCSI Transport ID header */
400 tid_len += 1; /* Add one byte for NULL terminator */
401 padding = ((-tid_len) & 3);
402 if (padding != 0)
403 tid_len += padding;
404
405 if ((add_len + 4) != tid_len) {
406 pr_debug("LIO-Target Extracted add_len: %hu "
407 "does not match calculated tid_len: %u,"
408 " using tid_len instead\n", add_len+4, tid_len);
409 *out_tid_len = tid_len;
410 } else
411 *out_tid_len = (add_len + 4);
412 }
413 /*
414 * Check for ',i,0x' seperator between iSCSI Name and iSCSI Initiator
415 * Session ID as defined in Table 390 - iSCSI initiator port TransportID
416 * format.
417 */
418 if (format_code == 0x40) {
419 p = strstr((char *)&buf[4], ",i,0x");
420 if (!p) {
421 pr_err("Unable to locate \",i,0x\" seperator"
422 " for Initiator port identifier: %s\n",
423 (char *)&buf[4]);
424 return NULL;
425 }
426 *p = '\0'; /* Terminate iSCSI Name */
427 p += 5; /* Skip over ",i,0x" seperator */
428
429 *port_nexus_ptr = p;
430 /*
431 * Go ahead and do the lower case conversion of the received
432 * 12 ASCII characters representing the ISID in the TransportID
433 * for comparison against the running iSCSI session's ISID from
434 * iscsi_target.c:lio_sess_get_initiator_sid()
435 */
436 for (i = 0; i < 12; i++) {
437 if (isdigit(*p)) {
438 p++;
439 continue;
440 }
441 *p = tolower(*p);
442 p++;
443 }
444 }
445
446 return (char *)&buf[4];
447}
448EXPORT_SYMBOL(iscsi_parse_pr_out_transport_id);
1// SPDX-License-Identifier: GPL-2.0-or-later
2/*******************************************************************************
3 * Filename: target_core_fabric_lib.c
4 *
5 * This file contains generic high level protocol identifier and PR
6 * handlers for TCM fabric modules
7 *
8 * (c) Copyright 2010-2013 Datera, Inc.
9 *
10 * Nicholas A. Bellinger <nab@linux-iscsi.org>
11 *
12 ******************************************************************************/
13
14/*
15 * See SPC4, section 7.5 "Protocol specific parameters" for details
16 * on the formats implemented in this file.
17 */
18
19#include <linux/kernel.h>
20#include <linux/string.h>
21#include <linux/ctype.h>
22#include <linux/spinlock.h>
23#include <linux/export.h>
24#include <asm/unaligned.h>
25
26#include <scsi/scsi_proto.h>
27
28#include <target/target_core_base.h>
29#include <target/target_core_fabric.h>
30
31#include "target_core_internal.h"
32#include "target_core_pr.h"
33
34
35static int sas_get_pr_transport_id(
36 struct se_node_acl *nacl,
37 int *format_code,
38 unsigned char *buf)
39{
40 int ret;
41
42 /* Skip over 'naa. prefix */
43 ret = hex2bin(&buf[4], &nacl->initiatorname[4], 8);
44 if (ret) {
45 pr_debug("%s: invalid hex string\n", __func__);
46 return ret;
47 }
48
49 return 24;
50}
51
52static int fc_get_pr_transport_id(
53 struct se_node_acl *se_nacl,
54 int *format_code,
55 unsigned char *buf)
56{
57 unsigned char *ptr;
58 int i, ret;
59 u32 off = 8;
60
61 /*
62 * We convert the ASCII formatted N Port name into a binary
63 * encoded TransportID.
64 */
65 ptr = &se_nacl->initiatorname[0];
66 for (i = 0; i < 23; ) {
67 if (!strncmp(&ptr[i], ":", 1)) {
68 i++;
69 continue;
70 }
71 ret = hex2bin(&buf[off++], &ptr[i], 1);
72 if (ret < 0) {
73 pr_debug("%s: invalid hex string\n", __func__);
74 return ret;
75 }
76 i += 2;
77 }
78 /*
79 * The FC Transport ID is a hardcoded 24-byte length
80 */
81 return 24;
82}
83
84static int sbp_get_pr_transport_id(
85 struct se_node_acl *nacl,
86 int *format_code,
87 unsigned char *buf)
88{
89 int ret;
90
91 ret = hex2bin(&buf[8], nacl->initiatorname, 8);
92 if (ret) {
93 pr_debug("%s: invalid hex string\n", __func__);
94 return ret;
95 }
96
97 return 24;
98}
99
100static int srp_get_pr_transport_id(
101 struct se_node_acl *nacl,
102 int *format_code,
103 unsigned char *buf)
104{
105 const char *p;
106 unsigned len, count, leading_zero_bytes;
107 int rc;
108
109 p = nacl->initiatorname;
110 if (strncasecmp(p, "0x", 2) == 0)
111 p += 2;
112 len = strlen(p);
113 if (len % 2)
114 return -EINVAL;
115
116 count = min(len / 2, 16U);
117 leading_zero_bytes = 16 - count;
118 memset(buf + 8, 0, leading_zero_bytes);
119 rc = hex2bin(buf + 8 + leading_zero_bytes, p, count);
120 if (rc < 0) {
121 pr_debug("hex2bin failed for %s: %d\n", p, rc);
122 return rc;
123 }
124
125 return 24;
126}
127
128static int iscsi_get_pr_transport_id(
129 struct se_node_acl *se_nacl,
130 struct t10_pr_registration *pr_reg,
131 int *format_code,
132 unsigned char *buf)
133{
134 u32 off = 4, padding = 0;
135 int isid_len;
136 u16 len = 0;
137
138 spin_lock_irq(&se_nacl->nacl_sess_lock);
139 /*
140 * Only null terminate the last field.
141 *
142 * From spc4r37 section 7.6.4.6: TransportID for initiator ports using
143 * SCSI over iSCSI.
144 *
145 * Table 507 TPID=0 Initiator device TransportID
146 *
147 * The null-terminated, null-padded (see 4.3.2) ISCSI NAME field shall
148 * contain the iSCSI name of an iSCSI initiator node (see RFC 7143).
149 * The first ISCSI NAME field byte containing an ASCII null character
150 * terminates the ISCSI NAME field without regard for the specified
151 * length of the iSCSI TransportID or the contents of the ADDITIONAL
152 * LENGTH field.
153 */
154 len = sprintf(&buf[off], "%s", se_nacl->initiatorname);
155 off += len;
156 if ((*format_code == 1) && (pr_reg->isid_present_at_reg)) {
157 /*
158 * Set FORMAT CODE 01b for iSCSI Initiator port TransportID
159 * format.
160 */
161 buf[0] |= 0x40;
162 /*
163 * From spc4r37 Section 7.6.4.6
164 *
165 * Table 508 TPID=1 Initiator port TransportID.
166 *
167 * The ISCSI NAME field shall not be null-terminated
168 * (see 4.3.2) and shall not be padded.
169 *
170 * The SEPARATOR field shall contain the five ASCII
171 * characters ",i,0x".
172 *
173 * The null-terminated, null-padded ISCSI INITIATOR SESSION ID
174 * field shall contain the iSCSI initiator session identifier
175 * (see RFC 3720) in the form of ASCII characters that are the
176 * hexadecimal digits converted from the binary iSCSI initiator
177 * session identifier value. The first ISCSI INITIATOR SESSION
178 * ID field byte containing an ASCII null character terminates
179 * the ISCSI INITIATOR SESSION ID field without regard for the
180 * specified length of the iSCSI TransportID or the contents
181 * of the ADDITIONAL LENGTH field.
182 */
183 buf[off++] = 0x2c; /* ASCII Character: "," */
184 buf[off++] = 0x69; /* ASCII Character: "i" */
185 buf[off++] = 0x2c; /* ASCII Character: "," */
186 buf[off++] = 0x30; /* ASCII Character: "0" */
187 buf[off++] = 0x78; /* ASCII Character: "x" */
188 len += 5;
189
190 isid_len = sprintf(buf + off, "%s", pr_reg->pr_reg_isid);
191 off += isid_len;
192 len += isid_len;
193 }
194 buf[off] = '\0';
195 len += 1;
196 spin_unlock_irq(&se_nacl->nacl_sess_lock);
197 /*
198 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
199 * in the TransportID. The additional length shall be at least 20 and
200 * shall be a multiple of four.
201 */
202 padding = ((-len) & 3);
203 if (padding != 0)
204 len += padding;
205
206 put_unaligned_be16(len, &buf[2]);
207 /*
208 * Increment value for total payload + header length for
209 * full status descriptor
210 */
211 len += 4;
212
213 return len;
214}
215
216static int iscsi_get_pr_transport_id_len(
217 struct se_node_acl *se_nacl,
218 struct t10_pr_registration *pr_reg,
219 int *format_code)
220{
221 u32 len = 0, padding = 0;
222
223 spin_lock_irq(&se_nacl->nacl_sess_lock);
224 len = strlen(se_nacl->initiatorname);
225 /*
226 * Add extra byte for NULL terminator
227 */
228 len++;
229 /*
230 * If there is ISID present with the registration, use format code:
231 * 01b: iSCSI Initiator port TransportID format
232 *
233 * If there is not an active iSCSI session, use format code:
234 * 00b: iSCSI Initiator device TransportID format
235 */
236 if (pr_reg->isid_present_at_reg) {
237 len += 5; /* For ",i,0x" ASCII separator */
238 len += strlen(pr_reg->pr_reg_isid);
239 *format_code = 1;
240 } else
241 *format_code = 0;
242 spin_unlock_irq(&se_nacl->nacl_sess_lock);
243 /*
244 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
245 * in the TransportID. The additional length shall be at least 20 and
246 * shall be a multiple of four.
247 */
248 padding = ((-len) & 3);
249 if (padding != 0)
250 len += padding;
251 /*
252 * Increment value for total payload + header length for
253 * full status descriptor
254 */
255 len += 4;
256
257 return len;
258}
259
260static char *iscsi_parse_pr_out_transport_id(
261 struct se_portal_group *se_tpg,
262 char *buf,
263 u32 *out_tid_len,
264 char **port_nexus_ptr)
265{
266 char *p;
267 int i;
268 u8 format_code = (buf[0] & 0xc0);
269 /*
270 * Check for FORMAT CODE 00b or 01b from spc4r17, section 7.5.4.6:
271 *
272 * TransportID for initiator ports using SCSI over iSCSI,
273 * from Table 388 -- iSCSI TransportID formats.
274 *
275 * 00b Initiator port is identified using the world wide unique
276 * SCSI device name of the iSCSI initiator
277 * device containing the initiator port (see table 389).
278 * 01b Initiator port is identified using the world wide unique
279 * initiator port identifier (see table 390).10b to 11b
280 * Reserved
281 */
282 if ((format_code != 0x00) && (format_code != 0x40)) {
283 pr_err("Illegal format code: 0x%02x for iSCSI"
284 " Initiator Transport ID\n", format_code);
285 return NULL;
286 }
287 /*
288 * If the caller wants the TransportID Length, we set that value for the
289 * entire iSCSI Tarnsport ID now.
290 */
291 if (out_tid_len) {
292 /* The shift works thanks to integer promotion rules */
293 *out_tid_len = get_unaligned_be16(&buf[2]);
294 /* Add four bytes for iSCSI Transport ID header */
295 *out_tid_len += 4;
296 }
297
298 /*
299 * Check for ',i,0x' separator between iSCSI Name and iSCSI Initiator
300 * Session ID as defined in Table 390 - iSCSI initiator port TransportID
301 * format.
302 */
303 if (format_code == 0x40) {
304 p = strstr(&buf[4], ",i,0x");
305 if (!p) {
306 pr_err("Unable to locate \",i,0x\" separator"
307 " for Initiator port identifier: %s\n",
308 &buf[4]);
309 return NULL;
310 }
311 *p = '\0'; /* Terminate iSCSI Name */
312 p += 5; /* Skip over ",i,0x" separator */
313
314 *port_nexus_ptr = p;
315 /*
316 * Go ahead and do the lower case conversion of the received
317 * 12 ASCII characters representing the ISID in the TransportID
318 * for comparison against the running iSCSI session's ISID from
319 * iscsi_target.c:lio_sess_get_initiator_sid()
320 */
321 for (i = 0; i < 12; i++) {
322 /*
323 * The first ISCSI INITIATOR SESSION ID field byte
324 * containing an ASCII null character terminates the
325 * ISCSI INITIATOR SESSION ID field without regard for
326 * the specified length of the iSCSI TransportID or the
327 * contents of the ADDITIONAL LENGTH field.
328 */
329 if (*p == '\0')
330 break;
331
332 if (isdigit(*p)) {
333 p++;
334 continue;
335 }
336 *p = tolower(*p);
337 p++;
338 }
339 } else
340 *port_nexus_ptr = NULL;
341
342 return &buf[4];
343}
344
345int target_get_pr_transport_id_len(struct se_node_acl *nacl,
346 struct t10_pr_registration *pr_reg, int *format_code)
347{
348 switch (nacl->se_tpg->proto_id) {
349 case SCSI_PROTOCOL_FCP:
350 case SCSI_PROTOCOL_SBP:
351 case SCSI_PROTOCOL_SRP:
352 case SCSI_PROTOCOL_SAS:
353 break;
354 case SCSI_PROTOCOL_ISCSI:
355 return iscsi_get_pr_transport_id_len(nacl, pr_reg, format_code);
356 default:
357 pr_err("Unknown proto_id: 0x%02x\n", nacl->se_tpg->proto_id);
358 return -EINVAL;
359 }
360
361 /*
362 * Most transports use a fixed length 24 byte identifier.
363 */
364 *format_code = 0;
365 return 24;
366}
367
368int target_get_pr_transport_id(struct se_node_acl *nacl,
369 struct t10_pr_registration *pr_reg, int *format_code,
370 unsigned char *buf)
371{
372 switch (nacl->se_tpg->proto_id) {
373 case SCSI_PROTOCOL_SAS:
374 return sas_get_pr_transport_id(nacl, format_code, buf);
375 case SCSI_PROTOCOL_SBP:
376 return sbp_get_pr_transport_id(nacl, format_code, buf);
377 case SCSI_PROTOCOL_SRP:
378 return srp_get_pr_transport_id(nacl, format_code, buf);
379 case SCSI_PROTOCOL_FCP:
380 return fc_get_pr_transport_id(nacl, format_code, buf);
381 case SCSI_PROTOCOL_ISCSI:
382 return iscsi_get_pr_transport_id(nacl, pr_reg, format_code,
383 buf);
384 default:
385 pr_err("Unknown proto_id: 0x%02x\n", nacl->se_tpg->proto_id);
386 return -EINVAL;
387 }
388}
389
390const char *target_parse_pr_out_transport_id(struct se_portal_group *tpg,
391 char *buf, u32 *out_tid_len, char **port_nexus_ptr)
392{
393 u32 offset;
394
395 switch (tpg->proto_id) {
396 case SCSI_PROTOCOL_SAS:
397 /*
398 * Assume the FORMAT CODE 00b from spc4r17, 7.5.4.7 TransportID
399 * for initiator ports using SCSI over SAS Serial SCSI Protocol.
400 */
401 offset = 4;
402 break;
403 case SCSI_PROTOCOL_SBP:
404 case SCSI_PROTOCOL_SRP:
405 case SCSI_PROTOCOL_FCP:
406 offset = 8;
407 break;
408 case SCSI_PROTOCOL_ISCSI:
409 return iscsi_parse_pr_out_transport_id(tpg, buf, out_tid_len,
410 port_nexus_ptr);
411 default:
412 pr_err("Unknown proto_id: 0x%02x\n", tpg->proto_id);
413 return NULL;
414 }
415
416 *port_nexus_ptr = NULL;
417 *out_tid_len = 24;
418 return buf + offset;
419}