Merge remote-tracking branch 'lsk/v3.10/topic/gator' into linux-linaro-lsk
[firefly-linux-kernel-4.4.55.git] / drivers / target / target_core_spc.c
1 /*
2  * SCSI Primary Commands (SPC) parsing and emulation.
3  *
4  * (c) Copyright 2002-2012 RisingTide Systems LLC.
5  *
6  * Nicholas A. Bellinger <nab@kernel.org>
7  *
8  * This program is free software; you can redistribute it and/or modify
9  * it under the terms of the GNU General Public License as published by
10  * the Free Software Foundation; either version 2 of the License, or
11  * (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU General Public License
19  * along with this program; if not, write to the Free Software
20  * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
21  */
22
23 #include <linux/kernel.h>
24 #include <linux/module.h>
25 #include <asm/unaligned.h>
26
27 #include <scsi/scsi.h>
28 #include <scsi/scsi_tcq.h>
29
30 #include <target/target_core_base.h>
31 #include <target/target_core_backend.h>
32 #include <target/target_core_fabric.h>
33
34 #include "target_core_internal.h"
35 #include "target_core_alua.h"
36 #include "target_core_pr.h"
37 #include "target_core_ua.h"
38
39
40 static void spc_fill_alua_data(struct se_port *port, unsigned char *buf)
41 {
42         struct t10_alua_tg_pt_gp *tg_pt_gp;
43         struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
44
45         /*
46          * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
47          */
48         buf[5]  = 0x80;
49
50         /*
51          * Set TPGS field for explict and/or implict ALUA access type
52          * and opteration.
53          *
54          * See spc4r17 section 6.4.2 Table 135
55          */
56         if (!port)
57                 return;
58         tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
59         if (!tg_pt_gp_mem)
60                 return;
61
62         spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
63         tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
64         if (tg_pt_gp)
65                 buf[5] |= tg_pt_gp->tg_pt_gp_alua_access_type;
66         spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
67 }
68
69 sense_reason_t
70 spc_emulate_inquiry_std(struct se_cmd *cmd, unsigned char *buf)
71 {
72         struct se_lun *lun = cmd->se_lun;
73         struct se_device *dev = cmd->se_dev;
74
75         /* Set RMB (removable media) for tape devices */
76         if (dev->transport->get_device_type(dev) == TYPE_TAPE)
77                 buf[1] = 0x80;
78
79         buf[2] = 0x05; /* SPC-3 */
80
81         /*
82          * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2
83          *
84          * SPC4 says:
85          *   A RESPONSE DATA FORMAT field set to 2h indicates that the
86          *   standard INQUIRY data is in the format defined in this
87          *   standard. Response data format values less than 2h are
88          *   obsolete. Response data format values greater than 2h are
89          *   reserved.
90          */
91         buf[3] = 2;
92
93         /*
94          * Enable SCCS and TPGS fields for Emulated ALUA
95          */
96         spc_fill_alua_data(lun->lun_sep, buf);
97
98         buf[7] = 0x2; /* CmdQue=1 */
99
100         memcpy(&buf[8], "LIO-ORG ", 8);
101         memset(&buf[16], 0x20, 16);
102         memcpy(&buf[16], dev->t10_wwn.model,
103                min_t(size_t, strlen(dev->t10_wwn.model), 16));
104         memcpy(&buf[32], dev->t10_wwn.revision,
105                min_t(size_t, strlen(dev->t10_wwn.revision), 4));
106         buf[4] = 31; /* Set additional length to 31 */
107
108         return 0;
109 }
110 EXPORT_SYMBOL(spc_emulate_inquiry_std);
111
112 /* unit serial number */
113 static sense_reason_t
114 spc_emulate_evpd_80(struct se_cmd *cmd, unsigned char *buf)
115 {
116         struct se_device *dev = cmd->se_dev;
117         u16 len = 0;
118
119         if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
120                 u32 unit_serial_len;
121
122                 unit_serial_len = strlen(dev->t10_wwn.unit_serial);
123                 unit_serial_len++; /* For NULL Terminator */
124
125                 len += sprintf(&buf[4], "%s", dev->t10_wwn.unit_serial);
126                 len++; /* Extra Byte for NULL Terminator */
127                 buf[3] = len;
128         }
129         return 0;
130 }
131
132 static void spc_parse_naa_6h_vendor_specific(struct se_device *dev,
133                 unsigned char *buf)
134 {
135         unsigned char *p = &dev->t10_wwn.unit_serial[0];
136         int cnt;
137         bool next = true;
138
139         /*
140          * Generate up to 36 bits of VENDOR SPECIFIC IDENTIFIER starting on
141          * byte 3 bit 3-0 for NAA IEEE Registered Extended DESIGNATOR field
142          * format, followed by 64 bits of VENDOR SPECIFIC IDENTIFIER EXTENSION
143          * to complete the payload.  These are based from VPD=0x80 PRODUCT SERIAL
144          * NUMBER set via vpd_unit_serial in target_core_configfs.c to ensure
145          * per device uniqeness.
146          */
147         for (cnt = 0; *p && cnt < 13; p++) {
148                 int val = hex_to_bin(*p);
149
150                 if (val < 0)
151                         continue;
152
153                 if (next) {
154                         next = false;
155                         buf[cnt++] |= val;
156                 } else {
157                         next = true;
158                         buf[cnt] = val << 4;
159                 }
160         }
161 }
162
163 /*
164  * Device identification VPD, for a complete list of
165  * DESIGNATOR TYPEs see spc4r17 Table 459.
166  */
167 sense_reason_t
168 spc_emulate_evpd_83(struct se_cmd *cmd, unsigned char *buf)
169 {
170         struct se_device *dev = cmd->se_dev;
171         struct se_lun *lun = cmd->se_lun;
172         struct se_port *port = NULL;
173         struct se_portal_group *tpg = NULL;
174         struct t10_alua_lu_gp_member *lu_gp_mem;
175         struct t10_alua_tg_pt_gp *tg_pt_gp;
176         struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
177         unsigned char *prod = &dev->t10_wwn.model[0];
178         u32 prod_len;
179         u32 unit_serial_len, off = 0;
180         u16 len = 0, id_len;
181
182         off = 4;
183
184         /*
185          * NAA IEEE Registered Extended Assigned designator format, see
186          * spc4r17 section 7.7.3.6.5
187          *
188          * We depend upon a target_core_mod/ConfigFS provided
189          * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
190          * value in order to return the NAA id.
191          */
192         if (!(dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL))
193                 goto check_t10_vend_desc;
194
195         /* CODE SET == Binary */
196         buf[off++] = 0x1;
197
198         /* Set ASSOCIATION == addressed logical unit: 0)b */
199         buf[off] = 0x00;
200
201         /* Identifier/Designator type == NAA identifier */
202         buf[off++] |= 0x3;
203         off++;
204
205         /* Identifier/Designator length */
206         buf[off++] = 0x10;
207
208         /*
209          * Start NAA IEEE Registered Extended Identifier/Designator
210          */
211         buf[off++] = (0x6 << 4);
212
213         /*
214          * Use OpenFabrics IEEE Company ID: 00 14 05
215          */
216         buf[off++] = 0x01;
217         buf[off++] = 0x40;
218         buf[off] = (0x5 << 4);
219
220         /*
221          * Return ConfigFS Unit Serial Number information for
222          * VENDOR_SPECIFIC_IDENTIFIER and
223          * VENDOR_SPECIFIC_IDENTIFIER_EXTENTION
224          */
225         spc_parse_naa_6h_vendor_specific(dev, &buf[off]);
226
227         len = 20;
228         off = (len + 4);
229
230 check_t10_vend_desc:
231         /*
232          * T10 Vendor Identifier Page, see spc4r17 section 7.7.3.4
233          */
234         id_len = 8; /* For Vendor field */
235         prod_len = 4; /* For VPD Header */
236         prod_len += 8; /* For Vendor field */
237         prod_len += strlen(prod);
238         prod_len++; /* For : */
239
240         if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
241                 unit_serial_len = strlen(&dev->t10_wwn.unit_serial[0]);
242                 unit_serial_len++; /* For NULL Terminator */
243
244                 id_len += sprintf(&buf[off+12], "%s:%s", prod,
245                                 &dev->t10_wwn.unit_serial[0]);
246         }
247         buf[off] = 0x2; /* ASCII */
248         buf[off+1] = 0x1; /* T10 Vendor ID */
249         buf[off+2] = 0x0;
250         memcpy(&buf[off+4], "LIO-ORG", 8);
251         /* Extra Byte for NULL Terminator */
252         id_len++;
253         /* Identifier Length */
254         buf[off+3] = id_len;
255         /* Header size for Designation descriptor */
256         len += (id_len + 4);
257         off += (id_len + 4);
258         /*
259          * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
260          */
261         port = lun->lun_sep;
262         if (port) {
263                 struct t10_alua_lu_gp *lu_gp;
264                 u32 padding, scsi_name_len;
265                 u16 lu_gp_id = 0;
266                 u16 tg_pt_gp_id = 0;
267                 u16 tpgt;
268
269                 tpg = port->sep_tpg;
270                 /*
271                  * Relative target port identifer, see spc4r17
272                  * section 7.7.3.7
273                  *
274                  * Get the PROTOCOL IDENTIFIER as defined by spc4r17
275                  * section 7.5.1 Table 362
276                  */
277                 buf[off] =
278                         (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
279                 buf[off++] |= 0x1; /* CODE SET == Binary */
280                 buf[off] = 0x80; /* Set PIV=1 */
281                 /* Set ASSOCIATION == target port: 01b */
282                 buf[off] |= 0x10;
283                 /* DESIGNATOR TYPE == Relative target port identifer */
284                 buf[off++] |= 0x4;
285                 off++; /* Skip over Reserved */
286                 buf[off++] = 4; /* DESIGNATOR LENGTH */
287                 /* Skip over Obsolete field in RTPI payload
288                  * in Table 472 */
289                 off += 2;
290                 buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
291                 buf[off++] = (port->sep_rtpi & 0xff);
292                 len += 8; /* Header size + Designation descriptor */
293                 /*
294                  * Target port group identifier, see spc4r17
295                  * section 7.7.3.8
296                  *
297                  * Get the PROTOCOL IDENTIFIER as defined by spc4r17
298                  * section 7.5.1 Table 362
299                  */
300                 tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
301                 if (!tg_pt_gp_mem)
302                         goto check_lu_gp;
303
304                 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
305                 tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
306                 if (!tg_pt_gp) {
307                         spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
308                         goto check_lu_gp;
309                 }
310                 tg_pt_gp_id = tg_pt_gp->tg_pt_gp_id;
311                 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
312
313                 buf[off] =
314                         (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
315                 buf[off++] |= 0x1; /* CODE SET == Binary */
316                 buf[off] = 0x80; /* Set PIV=1 */
317                 /* Set ASSOCIATION == target port: 01b */
318                 buf[off] |= 0x10;
319                 /* DESIGNATOR TYPE == Target port group identifier */
320                 buf[off++] |= 0x5;
321                 off++; /* Skip over Reserved */
322                 buf[off++] = 4; /* DESIGNATOR LENGTH */
323                 off += 2; /* Skip over Reserved Field */
324                 buf[off++] = ((tg_pt_gp_id >> 8) & 0xff);
325                 buf[off++] = (tg_pt_gp_id & 0xff);
326                 len += 8; /* Header size + Designation descriptor */
327                 /*
328                  * Logical Unit Group identifier, see spc4r17
329                  * section 7.7.3.8
330                  */
331 check_lu_gp:
332                 lu_gp_mem = dev->dev_alua_lu_gp_mem;
333                 if (!lu_gp_mem)
334                         goto check_scsi_name;
335
336                 spin_lock(&lu_gp_mem->lu_gp_mem_lock);
337                 lu_gp = lu_gp_mem->lu_gp;
338                 if (!lu_gp) {
339                         spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
340                         goto check_scsi_name;
341                 }
342                 lu_gp_id = lu_gp->lu_gp_id;
343                 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
344
345                 buf[off++] |= 0x1; /* CODE SET == Binary */
346                 /* DESIGNATOR TYPE == Logical Unit Group identifier */
347                 buf[off++] |= 0x6;
348                 off++; /* Skip over Reserved */
349                 buf[off++] = 4; /* DESIGNATOR LENGTH */
350                 off += 2; /* Skip over Reserved Field */
351                 buf[off++] = ((lu_gp_id >> 8) & 0xff);
352                 buf[off++] = (lu_gp_id & 0xff);
353                 len += 8; /* Header size + Designation descriptor */
354                 /*
355                  * SCSI name string designator, see spc4r17
356                  * section 7.7.3.11
357                  *
358                  * Get the PROTOCOL IDENTIFIER as defined by spc4r17
359                  * section 7.5.1 Table 362
360                  */
361 check_scsi_name:
362                 scsi_name_len = strlen(tpg->se_tpg_tfo->tpg_get_wwn(tpg));
363                 /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
364                 scsi_name_len += 10;
365                 /* Check for 4-byte padding */
366                 padding = ((-scsi_name_len) & 3);
367                 if (padding != 0)
368                         scsi_name_len += padding;
369                 /* Header size + Designation descriptor */
370                 scsi_name_len += 4;
371
372                 buf[off] =
373                         (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
374                 buf[off++] |= 0x3; /* CODE SET == UTF-8 */
375                 buf[off] = 0x80; /* Set PIV=1 */
376                 /* Set ASSOCIATION == target port: 01b */
377                 buf[off] |= 0x10;
378                 /* DESIGNATOR TYPE == SCSI name string */
379                 buf[off++] |= 0x8;
380                 off += 2; /* Skip over Reserved and length */
381                 /*
382                  * SCSI name string identifer containing, $FABRIC_MOD
383                  * dependent information.  For LIO-Target and iSCSI
384                  * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
385                  * UTF-8 encoding.
386                  */
387                 tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
388                 scsi_name_len = sprintf(&buf[off], "%s,t,0x%04x",
389                                         tpg->se_tpg_tfo->tpg_get_wwn(tpg), tpgt);
390                 scsi_name_len += 1 /* Include  NULL terminator */;
391                 /*
392                  * The null-terminated, null-padded (see 4.4.2) SCSI
393                  * NAME STRING field contains a UTF-8 format string.
394                  * The number of bytes in the SCSI NAME STRING field
395                  * (i.e., the value in the DESIGNATOR LENGTH field)
396                  * shall be no larger than 256 and shall be a multiple
397                  * of four.
398                  */
399                 if (padding)
400                         scsi_name_len += padding;
401
402                 buf[off-1] = scsi_name_len;
403                 off += scsi_name_len;
404                 /* Header size + Designation descriptor */
405                 len += (scsi_name_len + 4);
406         }
407         buf[2] = ((len >> 8) & 0xff);
408         buf[3] = (len & 0xff); /* Page Length for VPD 0x83 */
409         return 0;
410 }
411 EXPORT_SYMBOL(spc_emulate_evpd_83);
412
413 static bool
414 spc_check_dev_wce(struct se_device *dev)
415 {
416         bool wce = false;
417
418         if (dev->transport->get_write_cache)
419                 wce = dev->transport->get_write_cache(dev);
420         else if (dev->dev_attrib.emulate_write_cache > 0)
421                 wce = true;
422
423         return wce;
424 }
425
426 /* Extended INQUIRY Data VPD Page */
427 static sense_reason_t
428 spc_emulate_evpd_86(struct se_cmd *cmd, unsigned char *buf)
429 {
430         struct se_device *dev = cmd->se_dev;
431
432         buf[3] = 0x3c;
433         /* Set HEADSUP, ORDSUP, SIMPSUP */
434         buf[5] = 0x07;
435
436         /* If WriteCache emulation is enabled, set V_SUP */
437         if (spc_check_dev_wce(dev))
438                 buf[6] = 0x01;
439         return 0;
440 }
441
442 /* Block Limits VPD page */
443 static sense_reason_t
444 spc_emulate_evpd_b0(struct se_cmd *cmd, unsigned char *buf)
445 {
446         struct se_device *dev = cmd->se_dev;
447         u32 max_sectors;
448         int have_tp = 0;
449
450         /*
451          * Following spc3r22 section 6.5.3 Block Limits VPD page, when
452          * emulate_tpu=1 or emulate_tpws=1 we will be expect a
453          * different page length for Thin Provisioning.
454          */
455         if (dev->dev_attrib.emulate_tpu || dev->dev_attrib.emulate_tpws)
456                 have_tp = 1;
457
458         buf[0] = dev->transport->get_device_type(dev);
459         buf[3] = have_tp ? 0x3c : 0x10;
460
461         /* Set WSNZ to 1 */
462         buf[4] = 0x01;
463
464         /*
465          * Set OPTIMAL TRANSFER LENGTH GRANULARITY
466          */
467         put_unaligned_be16(1, &buf[6]);
468
469         /*
470          * Set MAXIMUM TRANSFER LENGTH
471          */
472         max_sectors = min(dev->dev_attrib.fabric_max_sectors,
473                           dev->dev_attrib.hw_max_sectors);
474         put_unaligned_be32(max_sectors, &buf[8]);
475
476         /*
477          * Set OPTIMAL TRANSFER LENGTH
478          */
479         put_unaligned_be32(dev->dev_attrib.optimal_sectors, &buf[12]);
480
481         /*
482          * Exit now if we don't support TP.
483          */
484         if (!have_tp)
485                 goto max_write_same;
486
487         /*
488          * Set MAXIMUM UNMAP LBA COUNT
489          */
490         put_unaligned_be32(dev->dev_attrib.max_unmap_lba_count, &buf[20]);
491
492         /*
493          * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
494          */
495         put_unaligned_be32(dev->dev_attrib.max_unmap_block_desc_count,
496                            &buf[24]);
497
498         /*
499          * Set OPTIMAL UNMAP GRANULARITY
500          */
501         put_unaligned_be32(dev->dev_attrib.unmap_granularity, &buf[28]);
502
503         /*
504          * UNMAP GRANULARITY ALIGNMENT
505          */
506         put_unaligned_be32(dev->dev_attrib.unmap_granularity_alignment,
507                            &buf[32]);
508         if (dev->dev_attrib.unmap_granularity_alignment != 0)
509                 buf[32] |= 0x80; /* Set the UGAVALID bit */
510
511         /*
512          * MAXIMUM WRITE SAME LENGTH
513          */
514 max_write_same:
515         put_unaligned_be64(dev->dev_attrib.max_write_same_len, &buf[36]);
516
517         return 0;
518 }
519
520 /* Block Device Characteristics VPD page */
521 static sense_reason_t
522 spc_emulate_evpd_b1(struct se_cmd *cmd, unsigned char *buf)
523 {
524         struct se_device *dev = cmd->se_dev;
525
526         buf[0] = dev->transport->get_device_type(dev);
527         buf[3] = 0x3c;
528         buf[5] = dev->dev_attrib.is_nonrot ? 1 : 0;
529
530         return 0;
531 }
532
533 /* Thin Provisioning VPD */
534 static sense_reason_t
535 spc_emulate_evpd_b2(struct se_cmd *cmd, unsigned char *buf)
536 {
537         struct se_device *dev = cmd->se_dev;
538
539         /*
540          * From spc3r22 section 6.5.4 Thin Provisioning VPD page:
541          *
542          * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
543          * zero, then the page length shall be set to 0004h.  If the DP bit
544          * is set to one, then the page length shall be set to the value
545          * defined in table 162.
546          */
547         buf[0] = dev->transport->get_device_type(dev);
548
549         /*
550          * Set Hardcoded length mentioned above for DP=0
551          */
552         put_unaligned_be16(0x0004, &buf[2]);
553
554         /*
555          * The THRESHOLD EXPONENT field indicates the threshold set size in
556          * LBAs as a power of 2 (i.e., the threshold set size is equal to
557          * 2(threshold exponent)).
558          *
559          * Note that this is currently set to 0x00 as mkp says it will be
560          * changing again.  We can enable this once it has settled in T10
561          * and is actually used by Linux/SCSI ML code.
562          */
563         buf[4] = 0x00;
564
565         /*
566          * A TPU bit set to one indicates that the device server supports
567          * the UNMAP command (see 5.25). A TPU bit set to zero indicates
568          * that the device server does not support the UNMAP command.
569          */
570         if (dev->dev_attrib.emulate_tpu != 0)
571                 buf[5] = 0x80;
572
573         /*
574          * A TPWS bit set to one indicates that the device server supports
575          * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
576          * A TPWS bit set to zero indicates that the device server does not
577          * support the use of the WRITE SAME (16) command to unmap LBAs.
578          */
579         if (dev->dev_attrib.emulate_tpws != 0)
580                 buf[5] |= 0x40;
581
582         return 0;
583 }
584
585 static sense_reason_t
586 spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf);
587
588 static struct {
589         uint8_t         page;
590         sense_reason_t  (*emulate)(struct se_cmd *, unsigned char *);
591 } evpd_handlers[] = {
592         { .page = 0x00, .emulate = spc_emulate_evpd_00 },
593         { .page = 0x80, .emulate = spc_emulate_evpd_80 },
594         { .page = 0x83, .emulate = spc_emulate_evpd_83 },
595         { .page = 0x86, .emulate = spc_emulate_evpd_86 },
596         { .page = 0xb0, .emulate = spc_emulate_evpd_b0 },
597         { .page = 0xb1, .emulate = spc_emulate_evpd_b1 },
598         { .page = 0xb2, .emulate = spc_emulate_evpd_b2 },
599 };
600
601 /* supported vital product data pages */
602 static sense_reason_t
603 spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf)
604 {
605         int p;
606
607         /*
608          * Only report the INQUIRY EVPD=1 pages after a valid NAA
609          * Registered Extended LUN WWN has been set via ConfigFS
610          * during device creation/restart.
611          */
612         if (cmd->se_dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
613                 buf[3] = ARRAY_SIZE(evpd_handlers);
614                 for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p)
615                         buf[p + 4] = evpd_handlers[p].page;
616         }
617
618         return 0;
619 }
620
621 static sense_reason_t
622 spc_emulate_inquiry(struct se_cmd *cmd)
623 {
624         struct se_device *dev = cmd->se_dev;
625         struct se_portal_group *tpg = cmd->se_lun->lun_sep->sep_tpg;
626         unsigned char *rbuf;
627         unsigned char *cdb = cmd->t_task_cdb;
628         unsigned char buf[SE_INQUIRY_BUF];
629         sense_reason_t ret;
630         int p;
631         int len = 0;
632
633         memset(buf, 0, SE_INQUIRY_BUF);
634
635         if (dev == tpg->tpg_virt_lun0.lun_se_dev)
636                 buf[0] = 0x3f; /* Not connected */
637         else
638                 buf[0] = dev->transport->get_device_type(dev);
639
640         if (!(cdb[1] & 0x1)) {
641                 if (cdb[2]) {
642                         pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
643                                cdb[2]);
644                         ret = TCM_INVALID_CDB_FIELD;
645                         goto out;
646                 }
647
648                 ret = spc_emulate_inquiry_std(cmd, buf);
649                 len = buf[4] + 5;
650                 goto out;
651         }
652
653         for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p) {
654                 if (cdb[2] == evpd_handlers[p].page) {
655                         buf[1] = cdb[2];
656                         ret = evpd_handlers[p].emulate(cmd, buf);
657                         len = get_unaligned_be16(&buf[2]) + 4;
658                         goto out;
659                 }
660         }
661
662         pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
663         ret = TCM_INVALID_CDB_FIELD;
664
665 out:
666         rbuf = transport_kmap_data_sg(cmd);
667         if (rbuf) {
668                 memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
669                 transport_kunmap_data_sg(cmd);
670         }
671
672         if (!ret)
673                 target_complete_cmd_with_length(cmd, GOOD, len);
674         return ret;
675 }
676
677 static int spc_modesense_rwrecovery(struct se_device *dev, u8 pc, u8 *p)
678 {
679         p[0] = 0x01;
680         p[1] = 0x0a;
681
682         /* No changeable values for now */
683         if (pc == 1)
684                 goto out;
685
686 out:
687         return 12;
688 }
689
690 static int spc_modesense_control(struct se_device *dev, u8 pc, u8 *p)
691 {
692         p[0] = 0x0a;
693         p[1] = 0x0a;
694
695         /* No changeable values for now */
696         if (pc == 1)
697                 goto out;
698
699         p[2] = 2;
700         /*
701          * From spc4r23, 7.4.7 Control mode page
702          *
703          * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
704          * restrictions on the algorithm used for reordering commands
705          * having the SIMPLE task attribute (see SAM-4).
706          *
707          *                    Table 368 -- QUEUE ALGORITHM MODIFIER field
708          *                         Code      Description
709          *                          0h       Restricted reordering
710          *                          1h       Unrestricted reordering allowed
711          *                          2h to 7h    Reserved
712          *                          8h to Fh    Vendor specific
713          *
714          * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
715          * the device server shall order the processing sequence of commands
716          * having the SIMPLE task attribute such that data integrity is maintained
717          * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
718          * requests is halted at any time, the final value of all data observable
719          * on the medium shall be the same as if all the commands had been processed
720          * with the ORDERED task attribute).
721          *
722          * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
723          * device server may reorder the processing sequence of commands having the
724          * SIMPLE task attribute in any manner. Any data integrity exposures related to
725          * command sequence order shall be explicitly handled by the application client
726          * through the selection of appropriate ommands and task attributes.
727          */
728         p[3] = (dev->dev_attrib.emulate_rest_reord == 1) ? 0x00 : 0x10;
729         /*
730          * From spc4r17, section 7.4.6 Control mode Page
731          *
732          * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
733          *
734          * 00b: The logical unit shall clear any unit attention condition
735          * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
736          * status and shall not establish a unit attention condition when a com-
737          * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
738          * status.
739          *
740          * 10b: The logical unit shall not clear any unit attention condition
741          * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
742          * status and shall not establish a unit attention condition when
743          * a command is completed with BUSY, TASK SET FULL, or RESERVATION
744          * CONFLICT status.
745          *
746          * 11b a The logical unit shall not clear any unit attention condition
747          * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
748          * status and shall establish a unit attention condition for the
749          * initiator port associated with the I_T nexus on which the BUSY,
750          * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
751          * Depending on the status, the additional sense code shall be set to
752          * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
753          * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
754          * command, a unit attention condition shall be established only once
755          * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
756          * to the number of commands completed with one of those status codes.
757          */
758         p[4] = (dev->dev_attrib.emulate_ua_intlck_ctrl == 2) ? 0x30 :
759                (dev->dev_attrib.emulate_ua_intlck_ctrl == 1) ? 0x20 : 0x00;
760         /*
761          * From spc4r17, section 7.4.6 Control mode Page
762          *
763          * Task Aborted Status (TAS) bit set to zero.
764          *
765          * A task aborted status (TAS) bit set to zero specifies that aborted
766          * tasks shall be terminated by the device server without any response
767          * to the application client. A TAS bit set to one specifies that tasks
768          * aborted by the actions of an I_T nexus other than the I_T nexus on
769          * which the command was received shall be completed with TASK ABORTED
770          * status (see SAM-4).
771          */
772         p[5] = (dev->dev_attrib.emulate_tas) ? 0x40 : 0x00;
773         p[8] = 0xff;
774         p[9] = 0xff;
775         p[11] = 30;
776
777 out:
778         return 12;
779 }
780
781 static int spc_modesense_caching(struct se_device *dev, u8 pc, u8 *p)
782 {
783         p[0] = 0x08;
784         p[1] = 0x12;
785
786         /* No changeable values for now */
787         if (pc == 1)
788                 goto out;
789
790         if (spc_check_dev_wce(dev))
791                 p[2] = 0x04; /* Write Cache Enable */
792         p[12] = 0x20; /* Disabled Read Ahead */
793
794 out:
795         return 20;
796 }
797
798 static int spc_modesense_informational_exceptions(struct se_device *dev, u8 pc, unsigned char *p)
799 {
800         p[0] = 0x1c;
801         p[1] = 0x0a;
802
803         /* No changeable values for now */
804         if (pc == 1)
805                 goto out;
806
807 out:
808         return 12;
809 }
810
811 static struct {
812         uint8_t         page;
813         uint8_t         subpage;
814         int             (*emulate)(struct se_device *, u8, unsigned char *);
815 } modesense_handlers[] = {
816         { .page = 0x01, .subpage = 0x00, .emulate = spc_modesense_rwrecovery },
817         { .page = 0x08, .subpage = 0x00, .emulate = spc_modesense_caching },
818         { .page = 0x0a, .subpage = 0x00, .emulate = spc_modesense_control },
819         { .page = 0x1c, .subpage = 0x00, .emulate = spc_modesense_informational_exceptions },
820 };
821
822 static void spc_modesense_write_protect(unsigned char *buf, int type)
823 {
824         /*
825          * I believe that the WP bit (bit 7) in the mode header is the same for
826          * all device types..
827          */
828         switch (type) {
829         case TYPE_DISK:
830         case TYPE_TAPE:
831         default:
832                 buf[0] |= 0x80; /* WP bit */
833                 break;
834         }
835 }
836
837 static void spc_modesense_dpofua(unsigned char *buf, int type)
838 {
839         switch (type) {
840         case TYPE_DISK:
841                 buf[0] |= 0x10; /* DPOFUA bit */
842                 break;
843         default:
844                 break;
845         }
846 }
847
848 static int spc_modesense_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
849 {
850         *buf++ = 8;
851         put_unaligned_be32(min(blocks, 0xffffffffull), buf);
852         buf += 4;
853         put_unaligned_be32(block_size, buf);
854         return 9;
855 }
856
857 static int spc_modesense_long_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
858 {
859         if (blocks <= 0xffffffff)
860                 return spc_modesense_blockdesc(buf + 3, blocks, block_size) + 3;
861
862         *buf++ = 1;             /* LONGLBA */
863         buf += 2;
864         *buf++ = 16;
865         put_unaligned_be64(blocks, buf);
866         buf += 12;
867         put_unaligned_be32(block_size, buf);
868
869         return 17;
870 }
871
872 static sense_reason_t spc_emulate_modesense(struct se_cmd *cmd)
873 {
874         struct se_device *dev = cmd->se_dev;
875         char *cdb = cmd->t_task_cdb;
876         unsigned char buf[SE_MODE_PAGE_BUF], *rbuf;
877         int type = dev->transport->get_device_type(dev);
878         int ten = (cmd->t_task_cdb[0] == MODE_SENSE_10);
879         bool dbd = !!(cdb[1] & 0x08);
880         bool llba = ten ? !!(cdb[1] & 0x10) : false;
881         u8 pc = cdb[2] >> 6;
882         u8 page = cdb[2] & 0x3f;
883         u8 subpage = cdb[3];
884         int length = 0;
885         int ret;
886         int i;
887
888         memset(buf, 0, SE_MODE_PAGE_BUF);
889
890         /*
891          * Skip over MODE DATA LENGTH + MEDIUM TYPE fields to byte 3 for
892          * MODE_SENSE_10 and byte 2 for MODE_SENSE (6).
893          */
894         length = ten ? 3 : 2;
895
896         /* DEVICE-SPECIFIC PARAMETER */
897         if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
898             (cmd->se_deve &&
899              (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
900                 spc_modesense_write_protect(&buf[length], type);
901
902         if ((spc_check_dev_wce(dev)) &&
903             (dev->dev_attrib.emulate_fua_write > 0))
904                 spc_modesense_dpofua(&buf[length], type);
905
906         ++length;
907
908         /* BLOCK DESCRIPTOR */
909
910         /*
911          * For now we only include a block descriptor for disk (SBC)
912          * devices; other command sets use a slightly different format.
913          */
914         if (!dbd && type == TYPE_DISK) {
915                 u64 blocks = dev->transport->get_blocks(dev);
916                 u32 block_size = dev->dev_attrib.block_size;
917
918                 if (ten) {
919                         if (llba) {
920                                 length += spc_modesense_long_blockdesc(&buf[length],
921                                                                        blocks, block_size);
922                         } else {
923                                 length += 3;
924                                 length += spc_modesense_blockdesc(&buf[length],
925                                                                   blocks, block_size);
926                         }
927                 } else {
928                         length += spc_modesense_blockdesc(&buf[length], blocks,
929                                                           block_size);
930                 }
931         } else {
932                 if (ten)
933                         length += 4;
934                 else
935                         length += 1;
936         }
937
938         if (page == 0x3f) {
939                 if (subpage != 0x00 && subpage != 0xff) {
940                         pr_warn("MODE_SENSE: Invalid subpage code: 0x%02x\n", subpage);
941                         return TCM_INVALID_CDB_FIELD;
942                 }
943
944                 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i) {
945                         /*
946                          * Tricky way to say all subpage 00h for
947                          * subpage==0, all subpages for subpage==0xff
948                          * (and we just checked above that those are
949                          * the only two possibilities).
950                          */
951                         if ((modesense_handlers[i].subpage & ~subpage) == 0) {
952                                 ret = modesense_handlers[i].emulate(dev, pc, &buf[length]);
953                                 if (!ten && length + ret >= 255)
954                                         break;
955                                 length += ret;
956                         }
957                 }
958
959                 goto set_length;
960         }
961
962         for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i)
963                 if (modesense_handlers[i].page == page &&
964                     modesense_handlers[i].subpage == subpage) {
965                         length += modesense_handlers[i].emulate(dev, pc, &buf[length]);
966                         goto set_length;
967                 }
968
969         /*
970          * We don't intend to implement:
971          *  - obsolete page 03h "format parameters" (checked by Solaris)
972          */
973         if (page != 0x03)
974                 pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
975                        page, subpage);
976
977         return TCM_UNKNOWN_MODE_PAGE;
978
979 set_length:
980         if (ten)
981                 put_unaligned_be16(length - 2, buf);
982         else
983                 buf[0] = length - 1;
984
985         rbuf = transport_kmap_data_sg(cmd);
986         if (rbuf) {
987                 memcpy(rbuf, buf, min_t(u32, SE_MODE_PAGE_BUF, cmd->data_length));
988                 transport_kunmap_data_sg(cmd);
989         }
990
991         target_complete_cmd_with_length(cmd, GOOD, length);
992         return 0;
993 }
994
995 static sense_reason_t spc_emulate_modeselect(struct se_cmd *cmd)
996 {
997         struct se_device *dev = cmd->se_dev;
998         char *cdb = cmd->t_task_cdb;
999         bool ten = cdb[0] == MODE_SELECT_10;
1000         int off = ten ? 8 : 4;
1001         bool pf = !!(cdb[1] & 0x10);
1002         u8 page, subpage;
1003         unsigned char *buf;
1004         unsigned char tbuf[SE_MODE_PAGE_BUF];
1005         int length;
1006         int ret = 0;
1007         int i;
1008
1009         if (!cmd->data_length) {
1010                 target_complete_cmd(cmd, GOOD);
1011                 return 0;
1012         }
1013
1014         if (cmd->data_length < off + 2)
1015                 return TCM_PARAMETER_LIST_LENGTH_ERROR;
1016
1017         buf = transport_kmap_data_sg(cmd);
1018         if (!buf)
1019                 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1020
1021         if (!pf) {
1022                 ret = TCM_INVALID_CDB_FIELD;
1023                 goto out;
1024         }
1025
1026         page = buf[off] & 0x3f;
1027         subpage = buf[off] & 0x40 ? buf[off + 1] : 0;
1028
1029         for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i)
1030                 if (modesense_handlers[i].page == page &&
1031                     modesense_handlers[i].subpage == subpage) {
1032                         memset(tbuf, 0, SE_MODE_PAGE_BUF);
1033                         length = modesense_handlers[i].emulate(dev, 0, tbuf);
1034                         goto check_contents;
1035                 }
1036
1037         ret = TCM_UNKNOWN_MODE_PAGE;
1038         goto out;
1039
1040 check_contents:
1041         if (cmd->data_length < off + length) {
1042                 ret = TCM_PARAMETER_LIST_LENGTH_ERROR;
1043                 goto out;
1044         }
1045
1046         if (memcmp(buf + off, tbuf, length))
1047                 ret = TCM_INVALID_PARAMETER_LIST;
1048
1049 out:
1050         transport_kunmap_data_sg(cmd);
1051
1052         if (!ret)
1053                 target_complete_cmd(cmd, GOOD);
1054         return ret;
1055 }
1056
1057 static sense_reason_t spc_emulate_request_sense(struct se_cmd *cmd)
1058 {
1059         unsigned char *cdb = cmd->t_task_cdb;
1060         unsigned char *rbuf;
1061         u8 ua_asc = 0, ua_ascq = 0;
1062         unsigned char buf[SE_SENSE_BUF];
1063
1064         memset(buf, 0, SE_SENSE_BUF);
1065
1066         if (cdb[1] & 0x01) {
1067                 pr_err("REQUEST_SENSE description emulation not"
1068                         " supported\n");
1069                 return TCM_INVALID_CDB_FIELD;
1070         }
1071
1072         rbuf = transport_kmap_data_sg(cmd);
1073         if (!rbuf)
1074                 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1075
1076         if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) {
1077                 /*
1078                  * CURRENT ERROR, UNIT ATTENTION
1079                  */
1080                 buf[0] = 0x70;
1081                 buf[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
1082
1083                 /*
1084                  * The Additional Sense Code (ASC) from the UNIT ATTENTION
1085                  */
1086                 buf[SPC_ASC_KEY_OFFSET] = ua_asc;
1087                 buf[SPC_ASCQ_KEY_OFFSET] = ua_ascq;
1088                 buf[7] = 0x0A;
1089         } else {
1090                 /*
1091                  * CURRENT ERROR, NO SENSE
1092                  */
1093                 buf[0] = 0x70;
1094                 buf[SPC_SENSE_KEY_OFFSET] = NO_SENSE;
1095
1096                 /*
1097                  * NO ADDITIONAL SENSE INFORMATION
1098                  */
1099                 buf[SPC_ASC_KEY_OFFSET] = 0x00;
1100                 buf[7] = 0x0A;
1101         }
1102
1103         memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
1104         transport_kunmap_data_sg(cmd);
1105
1106         target_complete_cmd(cmd, GOOD);
1107         return 0;
1108 }
1109
1110 sense_reason_t spc_emulate_report_luns(struct se_cmd *cmd)
1111 {
1112         struct se_dev_entry *deve;
1113         struct se_session *sess = cmd->se_sess;
1114         unsigned char *buf;
1115         u32 lun_count = 0, offset = 8, i;
1116
1117         if (cmd->data_length < 16) {
1118                 pr_warn("REPORT LUNS allocation length %u too small\n",
1119                         cmd->data_length);
1120                 return TCM_INVALID_CDB_FIELD;
1121         }
1122
1123         buf = transport_kmap_data_sg(cmd);
1124         if (!buf)
1125                 return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
1126
1127         /*
1128          * If no struct se_session pointer is present, this struct se_cmd is
1129          * coming via a target_core_mod PASSTHROUGH op, and not through
1130          * a $FABRIC_MOD.  In that case, report LUN=0 only.
1131          */
1132         if (!sess) {
1133                 int_to_scsilun(0, (struct scsi_lun *)&buf[offset]);
1134                 lun_count = 1;
1135                 goto done;
1136         }
1137
1138         spin_lock_irq(&sess->se_node_acl->device_list_lock);
1139         for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
1140                 deve = sess->se_node_acl->device_list[i];
1141                 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
1142                         continue;
1143                 /*
1144                  * We determine the correct LUN LIST LENGTH even once we
1145                  * have reached the initial allocation length.
1146                  * See SPC2-R20 7.19.
1147                  */
1148                 lun_count++;
1149                 if ((offset + 8) > cmd->data_length)
1150                         continue;
1151
1152                 int_to_scsilun(deve->mapped_lun, (struct scsi_lun *)&buf[offset]);
1153                 offset += 8;
1154         }
1155         spin_unlock_irq(&sess->se_node_acl->device_list_lock);
1156
1157         /*
1158          * See SPC3 r07, page 159.
1159          */
1160 done:
1161         lun_count *= 8;
1162         buf[0] = ((lun_count >> 24) & 0xff);
1163         buf[1] = ((lun_count >> 16) & 0xff);
1164         buf[2] = ((lun_count >> 8) & 0xff);
1165         buf[3] = (lun_count & 0xff);
1166         transport_kunmap_data_sg(cmd);
1167
1168         target_complete_cmd_with_length(cmd, GOOD, 8 + lun_count * 8);
1169         return 0;
1170 }
1171 EXPORT_SYMBOL(spc_emulate_report_luns);
1172
1173 static sense_reason_t
1174 spc_emulate_testunitready(struct se_cmd *cmd)
1175 {
1176         target_complete_cmd(cmd, GOOD);
1177         return 0;
1178 }
1179
1180 sense_reason_t
1181 spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
1182 {
1183         struct se_device *dev = cmd->se_dev;
1184         unsigned char *cdb = cmd->t_task_cdb;
1185
1186         switch (cdb[0]) {
1187         case MODE_SELECT:
1188                 *size = cdb[4];
1189                 cmd->execute_cmd = spc_emulate_modeselect;
1190                 break;
1191         case MODE_SELECT_10:
1192                 *size = (cdb[7] << 8) + cdb[8];
1193                 cmd->execute_cmd = spc_emulate_modeselect;
1194                 break;
1195         case MODE_SENSE:
1196                 *size = cdb[4];
1197                 cmd->execute_cmd = spc_emulate_modesense;
1198                 break;
1199         case MODE_SENSE_10:
1200                 *size = (cdb[7] << 8) + cdb[8];
1201                 cmd->execute_cmd = spc_emulate_modesense;
1202                 break;
1203         case LOG_SELECT:
1204         case LOG_SENSE:
1205                 *size = (cdb[7] << 8) + cdb[8];
1206                 break;
1207         case PERSISTENT_RESERVE_IN:
1208                 *size = (cdb[7] << 8) + cdb[8];
1209                 cmd->execute_cmd = target_scsi3_emulate_pr_in;
1210                 break;
1211         case PERSISTENT_RESERVE_OUT:
1212                 *size = (cdb[7] << 8) + cdb[8];
1213                 cmd->execute_cmd = target_scsi3_emulate_pr_out;
1214                 break;
1215         case RELEASE:
1216         case RELEASE_10:
1217                 if (cdb[0] == RELEASE_10)
1218                         *size = (cdb[7] << 8) | cdb[8];
1219                 else
1220                         *size = cmd->data_length;
1221
1222                 cmd->execute_cmd = target_scsi2_reservation_release;
1223                 break;
1224         case RESERVE:
1225         case RESERVE_10:
1226                 /*
1227                  * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
1228                  * Assume the passthrough or $FABRIC_MOD will tell us about it.
1229                  */
1230                 if (cdb[0] == RESERVE_10)
1231                         *size = (cdb[7] << 8) | cdb[8];
1232                 else
1233                         *size = cmd->data_length;
1234
1235                 cmd->execute_cmd = target_scsi2_reservation_reserve;
1236                 break;
1237         case REQUEST_SENSE:
1238                 *size = cdb[4];
1239                 cmd->execute_cmd = spc_emulate_request_sense;
1240                 break;
1241         case INQUIRY:
1242                 *size = (cdb[3] << 8) + cdb[4];
1243
1244                 /*
1245                  * Do implict HEAD_OF_QUEUE processing for INQUIRY.
1246                  * See spc4r17 section 5.3
1247                  */
1248                 cmd->sam_task_attr = MSG_HEAD_TAG;
1249                 cmd->execute_cmd = spc_emulate_inquiry;
1250                 break;
1251         case SECURITY_PROTOCOL_IN:
1252         case SECURITY_PROTOCOL_OUT:
1253                 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1254                 break;
1255         case EXTENDED_COPY:
1256         case READ_ATTRIBUTE:
1257         case RECEIVE_COPY_RESULTS:
1258         case WRITE_ATTRIBUTE:
1259                 *size = (cdb[10] << 24) | (cdb[11] << 16) |
1260                        (cdb[12] << 8) | cdb[13];
1261                 break;
1262         case RECEIVE_DIAGNOSTIC:
1263         case SEND_DIAGNOSTIC:
1264                 *size = (cdb[3] << 8) | cdb[4];
1265                 break;
1266         case WRITE_BUFFER:
1267                 *size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
1268                 break;
1269         case REPORT_LUNS:
1270                 cmd->execute_cmd = spc_emulate_report_luns;
1271                 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1272                 /*
1273                  * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
1274                  * See spc4r17 section 5.3
1275                  */
1276                 cmd->sam_task_attr = MSG_HEAD_TAG;
1277                 break;
1278         case TEST_UNIT_READY:
1279                 cmd->execute_cmd = spc_emulate_testunitready;
1280                 *size = 0;
1281                 break;
1282         case MAINTENANCE_IN:
1283                 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1284                         /*
1285                          * MAINTENANCE_IN from SCC-2
1286                          * Check for emulated MI_REPORT_TARGET_PGS
1287                          */
1288                         if ((cdb[1] & 0x1f) == MI_REPORT_TARGET_PGS) {
1289                                 cmd->execute_cmd =
1290                                         target_emulate_report_target_port_groups;
1291                         }
1292                         *size = get_unaligned_be32(&cdb[6]);
1293                 } else {
1294                         /*
1295                          * GPCMD_SEND_KEY from multi media commands
1296                          */
1297                         *size = get_unaligned_be16(&cdb[8]);
1298                 }
1299                 break;
1300         case MAINTENANCE_OUT:
1301                 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1302                         /*
1303                          * MAINTENANCE_OUT from SCC-2
1304                          * Check for emulated MO_SET_TARGET_PGS.
1305                          */
1306                         if (cdb[1] == MO_SET_TARGET_PGS) {
1307                                 cmd->execute_cmd =
1308                                         target_emulate_set_target_port_groups;
1309                         }
1310                         *size = get_unaligned_be32(&cdb[6]);
1311                 } else {
1312                         /*
1313                          * GPCMD_SEND_KEY from multi media commands
1314                          */
1315                         *size = get_unaligned_be16(&cdb[8]);
1316                 }
1317                 break;
1318         default:
1319                 pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
1320                         " 0x%02x, sending CHECK_CONDITION.\n",
1321                         cmd->se_tfo->get_fabric_name(), cdb[0]);
1322                 return TCM_UNSUPPORTED_SCSI_OPCODE;
1323         }
1324
1325         return 0;
1326 }
1327 EXPORT_SYMBOL(spc_parse_cdb);