1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*******************************************************************************
3 * Filename: target_core_fabric_lib.c
5 * This file contains generic high level protocol identifier and PR
6 * handlers for TCM fabric modules
8 * (c) Copyright 2010-2013 Datera, Inc.
10 * Nicholas A. Bellinger <nab@linux-iscsi.org>
12 ******************************************************************************/
15 * See SPC4, section 7.5 "Protocol specific parameters" for details
16 * on the formats implemented in this file.
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>
26 #include <scsi/scsi_proto.h>
28 #include <target/target_core_base.h>
29 #include <target/target_core_fabric.h>
31 #include "target_core_internal.h"
32 #include "target_core_pr.h"
35 static int sas_get_pr_transport_id(
36 struct se_node_acl
*nacl
,
42 /* Skip over 'naa. prefix */
43 ret
= hex2bin(&buf
[4], &nacl
->initiatorname
[4], 8);
45 pr_debug("%s: invalid hex string\n", __func__
);
52 static int fc_get_pr_transport_id(
53 struct se_node_acl
*se_nacl
,
62 * We convert the ASCII formatted N Port name into a binary
63 * encoded TransportID.
65 ptr
= &se_nacl
->initiatorname
[0];
66 for (i
= 0; i
< 24; ) {
67 if (!strncmp(&ptr
[i
], ":", 1)) {
71 ret
= hex2bin(&buf
[off
++], &ptr
[i
], 1);
73 pr_debug("%s: invalid hex string\n", __func__
);
79 * The FC Transport ID is a hardcoded 24-byte length
84 static int sbp_get_pr_transport_id(
85 struct se_node_acl
*nacl
,
91 ret
= hex2bin(&buf
[8], nacl
->initiatorname
, 8);
93 pr_debug("%s: invalid hex string\n", __func__
);
100 static int srp_get_pr_transport_id(
101 struct se_node_acl
*nacl
,
106 unsigned len
, count
, leading_zero_bytes
;
109 p
= nacl
->initiatorname
;
110 if (strncasecmp(p
, "0x", 2) == 0)
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
);
121 pr_debug("hex2bin failed for %s: %d\n", p
, rc
);
128 static int iscsi_get_pr_transport_id(
129 struct se_node_acl
*se_nacl
,
130 struct t10_pr_registration
*pr_reg
,
134 u32 off
= 4, padding
= 0;
137 spin_lock_irq(&se_nacl
->nacl_sess_lock
);
139 * From spc4r17 Section 7.5.4.6: TransportID for initiator
140 * ports using SCSI over iSCSI.
142 * The null-terminated, null-padded (see 4.4.2) ISCSI NAME field
143 * shall contain the iSCSI name of an iSCSI initiator node (see
144 * RFC 3720). The first ISCSI NAME field byte containing an ASCII
145 * null character terminates the ISCSI NAME field without regard for
146 * the specified length of the iSCSI TransportID or the contents of
147 * the ADDITIONAL LENGTH field.
149 len
= sprintf(&buf
[off
], "%s", se_nacl
->initiatorname
);
151 * Add Extra byte for NULL terminator
155 * If there is ISID present with the registration and *format code == 1
156 * 1, use iSCSI Initiator port TransportID format.
158 * Otherwise use iSCSI Initiator device TransportID format that
159 * does not contain the ASCII encoded iSCSI Initiator iSID value
160 * provied by the iSCSi Initiator during the iSCSI login process.
162 if ((*format_code
== 1) && (pr_reg
->isid_present_at_reg
)) {
164 * Set FORMAT CODE 01b for iSCSI Initiator port TransportID
169 * From spc4r17 Section 7.5.4.6: TransportID for initiator
170 * ports using SCSI over iSCSI. Table 390
172 * The SEPARATOR field shall contain the five ASCII
173 * characters ",i,0x".
175 * The null-terminated, null-padded ISCSI INITIATOR SESSION ID
176 * field shall contain the iSCSI initiator session identifier
177 * (see RFC 3720) in the form of ASCII characters that are the
178 * hexadecimal digits converted from the binary iSCSI initiator
179 * session identifier value. The first ISCSI INITIATOR SESSION
180 * ID field byte containing an ASCII null character
182 buf
[off
+len
] = 0x2c; off
++; /* ASCII Character: "," */
183 buf
[off
+len
] = 0x69; off
++; /* ASCII Character: "i" */
184 buf
[off
+len
] = 0x2c; off
++; /* ASCII Character: "," */
185 buf
[off
+len
] = 0x30; off
++; /* ASCII Character: "0" */
186 buf
[off
+len
] = 0x78; off
++; /* ASCII Character: "x" */
188 buf
[off
+len
] = pr_reg
->pr_reg_isid
[0]; off
++;
189 buf
[off
+len
] = pr_reg
->pr_reg_isid
[1]; off
++;
190 buf
[off
+len
] = pr_reg
->pr_reg_isid
[2]; off
++;
191 buf
[off
+len
] = pr_reg
->pr_reg_isid
[3]; off
++;
192 buf
[off
+len
] = pr_reg
->pr_reg_isid
[4]; off
++;
193 buf
[off
+len
] = pr_reg
->pr_reg_isid
[5]; off
++;
194 buf
[off
+len
] = '\0'; off
++;
197 spin_unlock_irq(&se_nacl
->nacl_sess_lock
);
199 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
200 * in the TransportID. The additional length shall be at least 20 and
201 * shall be a multiple of four.
203 padding
= ((-len
) & 3);
207 put_unaligned_be16(len
, &buf
[2]);
209 * Increment value for total payload + header length for
210 * full status descriptor
217 static int iscsi_get_pr_transport_id_len(
218 struct se_node_acl
*se_nacl
,
219 struct t10_pr_registration
*pr_reg
,
222 u32 len
= 0, padding
= 0;
224 spin_lock_irq(&se_nacl
->nacl_sess_lock
);
225 len
= strlen(se_nacl
->initiatorname
);
227 * Add extra byte for NULL terminator
231 * If there is ISID present with the registration, use format code:
232 * 01b: iSCSI Initiator port TransportID format
234 * If there is not an active iSCSI session, use format code:
235 * 00b: iSCSI Initiator device TransportID format
237 if (pr_reg
->isid_present_at_reg
) {
238 len
+= 5; /* For ",i,0x" ASCII separator */
239 len
+= 7; /* For iSCSI Initiator Session ID + Null terminator */
243 spin_unlock_irq(&se_nacl
->nacl_sess_lock
);
245 * The ADDITIONAL LENGTH field specifies the number of bytes that follow
246 * in the TransportID. The additional length shall be at least 20 and
247 * shall be a multiple of four.
249 padding
= ((-len
) & 3);
253 * Increment value for total payload + header length for
254 * full status descriptor
261 static char *iscsi_parse_pr_out_transport_id(
262 struct se_portal_group
*se_tpg
,
265 char **port_nexus_ptr
)
268 u32 tid_len
, padding
;
271 u8 format_code
= (buf
[0] & 0xc0);
273 * Check for FORMAT CODE 00b or 01b from spc4r17, section 7.5.4.6:
275 * TransportID for initiator ports using SCSI over iSCSI,
276 * from Table 388 -- iSCSI TransportID formats.
278 * 00b Initiator port is identified using the world wide unique
279 * SCSI device name of the iSCSI initiator
280 * device containing the initiator port (see table 389).
281 * 01b Initiator port is identified using the world wide unique
282 * initiator port identifier (see table 390).10b to 11b
285 if ((format_code
!= 0x00) && (format_code
!= 0x40)) {
286 pr_err("Illegal format code: 0x%02x for iSCSI"
287 " Initiator Transport ID\n", format_code
);
291 * If the caller wants the TransportID Length, we set that value for the
292 * entire iSCSI Tarnsport ID now.
295 /* The shift works thanks to integer promotion rules */
296 add_len
= get_unaligned_be16(&buf
[2]);
298 tid_len
= strlen(&buf
[4]);
299 tid_len
+= 4; /* Add four bytes for iSCSI Transport ID header */
300 tid_len
+= 1; /* Add one byte for NULL terminator */
301 padding
= ((-tid_len
) & 3);
305 if ((add_len
+ 4) != tid_len
) {
306 pr_debug("LIO-Target Extracted add_len: %hu "
307 "does not match calculated tid_len: %u,"
308 " using tid_len instead\n", add_len
+4, tid_len
);
309 *out_tid_len
= tid_len
;
311 *out_tid_len
= (add_len
+ 4);
314 * Check for ',i,0x' separator between iSCSI Name and iSCSI Initiator
315 * Session ID as defined in Table 390 - iSCSI initiator port TransportID
318 if (format_code
== 0x40) {
319 p
= strstr(&buf
[4], ",i,0x");
321 pr_err("Unable to locate \",i,0x\" separator"
322 " for Initiator port identifier: %s\n",
326 *p
= '\0'; /* Terminate iSCSI Name */
327 p
+= 5; /* Skip over ",i,0x" separator */
331 * Go ahead and do the lower case conversion of the received
332 * 12 ASCII characters representing the ISID in the TransportID
333 * for comparison against the running iSCSI session's ISID from
334 * iscsi_target.c:lio_sess_get_initiator_sid()
336 for (i
= 0; i
< 12; i
++) {
349 int target_get_pr_transport_id_len(struct se_node_acl
*nacl
,
350 struct t10_pr_registration
*pr_reg
, int *format_code
)
352 switch (nacl
->se_tpg
->proto_id
) {
353 case SCSI_PROTOCOL_FCP
:
354 case SCSI_PROTOCOL_SBP
:
355 case SCSI_PROTOCOL_SRP
:
356 case SCSI_PROTOCOL_SAS
:
358 case SCSI_PROTOCOL_ISCSI
:
359 return iscsi_get_pr_transport_id_len(nacl
, pr_reg
, format_code
);
361 pr_err("Unknown proto_id: 0x%02x\n", nacl
->se_tpg
->proto_id
);
366 * Most transports use a fixed length 24 byte identifier.
372 int target_get_pr_transport_id(struct se_node_acl
*nacl
,
373 struct t10_pr_registration
*pr_reg
, int *format_code
,
376 switch (nacl
->se_tpg
->proto_id
) {
377 case SCSI_PROTOCOL_SAS
:
378 return sas_get_pr_transport_id(nacl
, format_code
, buf
);
379 case SCSI_PROTOCOL_SBP
:
380 return sbp_get_pr_transport_id(nacl
, format_code
, buf
);
381 case SCSI_PROTOCOL_SRP
:
382 return srp_get_pr_transport_id(nacl
, format_code
, buf
);
383 case SCSI_PROTOCOL_FCP
:
384 return fc_get_pr_transport_id(nacl
, format_code
, buf
);
385 case SCSI_PROTOCOL_ISCSI
:
386 return iscsi_get_pr_transport_id(nacl
, pr_reg
, format_code
,
389 pr_err("Unknown proto_id: 0x%02x\n", nacl
->se_tpg
->proto_id
);
394 const char *target_parse_pr_out_transport_id(struct se_portal_group
*tpg
,
395 char *buf
, u32
*out_tid_len
, char **port_nexus_ptr
)
399 switch (tpg
->proto_id
) {
400 case SCSI_PROTOCOL_SAS
:
402 * Assume the FORMAT CODE 00b from spc4r17, 7.5.4.7 TransportID
403 * for initiator ports using SCSI over SAS Serial SCSI Protocol.
407 case SCSI_PROTOCOL_SBP
:
408 case SCSI_PROTOCOL_SRP
:
409 case SCSI_PROTOCOL_FCP
:
412 case SCSI_PROTOCOL_ISCSI
:
413 return iscsi_parse_pr_out_transport_id(tpg
, buf
, out_tid_len
,
416 pr_err("Unknown proto_id: 0x%02x\n", tpg
->proto_id
);
420 *port_nexus_ptr
= NULL
;