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