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