blob: 6c10fce9ef0936dd8d3e6ee3855d4d5eabd6dcbb [file] [log] [blame]
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001/*
2 * SCSI Primary Commands (SPC) parsing and emulation.
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
30#include <scsi/scsi.h>
31#include <scsi/scsi_tcq.h>
32
33#include <target/target_core_base.h>
34#include <target/target_core_backend.h>
35#include <target/target_core_fabric.h>
36
37#include "target_core_internal.h"
Nicholas Bellingereba2ca42012-05-30 14:09:10 -070038#include "target_core_alua.h"
Christoph Hellwig88455ec2012-05-20 11:59:13 -040039#include "target_core_pr.h"
40#include "target_core_ua.h"
41
42
Christoph Hellwig1fd032e2012-05-20 11:59:15 -040043static void spc_fill_alua_data(struct se_port *port, unsigned char *buf)
44{
45 struct t10_alua_tg_pt_gp *tg_pt_gp;
46 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
47
48 /*
49 * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
50 */
51 buf[5] = 0x80;
52
53 /*
54 * Set TPGS field for explict and/or implict ALUA access type
55 * and opteration.
56 *
57 * See spc4r17 section 6.4.2 Table 135
58 */
59 if (!port)
60 return;
61 tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
62 if (!tg_pt_gp_mem)
63 return;
64
65 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
66 tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
67 if (tg_pt_gp)
68 buf[5] |= tg_pt_gp->tg_pt_gp_alua_access_type;
69 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
70}
71
72static int spc_emulate_inquiry_std(struct se_cmd *cmd, char *buf)
73{
74 struct se_lun *lun = cmd->se_lun;
75 struct se_device *dev = cmd->se_dev;
76
77 /* Set RMB (removable media) for tape devices */
78 if (dev->transport->get_device_type(dev) == TYPE_TAPE)
79 buf[1] = 0x80;
80
Christoph Hellwig48c25672012-10-10 17:37:17 -040081 buf[2] = 0x05; /* SPC-3 */
Christoph Hellwig1fd032e2012-05-20 11:59:15 -040082
83 /*
84 * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2
85 *
86 * SPC4 says:
87 * A RESPONSE DATA FORMAT field set to 2h indicates that the
88 * standard INQUIRY data is in the format defined in this
89 * standard. Response data format values less than 2h are
90 * obsolete. Response data format values greater than 2h are
91 * reserved.
92 */
93 buf[3] = 2;
94
95 /*
96 * Enable SCCS and TPGS fields for Emulated ALUA
97 */
Christoph Hellwigc87fbd52012-10-10 17:37:16 -040098 spc_fill_alua_data(lun->lun_sep, buf);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -040099
100 buf[7] = 0x2; /* CmdQue=1 */
101
102 snprintf(&buf[8], 8, "LIO-ORG");
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400103 snprintf(&buf[16], 16, "%s", dev->t10_wwn.model);
104 snprintf(&buf[32], 4, "%s", dev->t10_wwn.revision);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400105 buf[4] = 31; /* Set additional length to 31 */
106
107 return 0;
108}
109
110/* unit serial number */
111static int spc_emulate_evpd_80(struct se_cmd *cmd, unsigned char *buf)
112{
113 struct se_device *dev = cmd->se_dev;
114 u16 len = 0;
115
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400116 if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400117 u32 unit_serial_len;
118
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400119 unit_serial_len = strlen(dev->t10_wwn.unit_serial);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400120 unit_serial_len++; /* For NULL Terminator */
121
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400122 len += sprintf(&buf[4], "%s", dev->t10_wwn.unit_serial);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400123 len++; /* Extra Byte for NULL Terminator */
124 buf[3] = len;
125 }
126 return 0;
127}
128
129static void spc_parse_naa_6h_vendor_specific(struct se_device *dev,
130 unsigned char *buf)
131{
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400132 unsigned char *p = &dev->t10_wwn.unit_serial[0];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400133 int cnt;
134 bool next = true;
135
136 /*
137 * Generate up to 36 bits of VENDOR SPECIFIC IDENTIFIER starting on
138 * byte 3 bit 3-0 for NAA IEEE Registered Extended DESIGNATOR field
139 * format, followed by 64 bits of VENDOR SPECIFIC IDENTIFIER EXTENSION
140 * to complete the payload. These are based from VPD=0x80 PRODUCT SERIAL
141 * NUMBER set via vpd_unit_serial in target_core_configfs.c to ensure
142 * per device uniqeness.
143 */
144 for (cnt = 0; *p && cnt < 13; p++) {
145 int val = hex_to_bin(*p);
146
147 if (val < 0)
148 continue;
149
150 if (next) {
151 next = false;
152 buf[cnt++] |= val;
153 } else {
154 next = true;
155 buf[cnt] = val << 4;
156 }
157 }
158}
159
160/*
161 * Device identification VPD, for a complete list of
162 * DESIGNATOR TYPEs see spc4r17 Table 459.
163 */
164static int spc_emulate_evpd_83(struct se_cmd *cmd, unsigned char *buf)
165{
166 struct se_device *dev = cmd->se_dev;
167 struct se_lun *lun = cmd->se_lun;
168 struct se_port *port = NULL;
169 struct se_portal_group *tpg = NULL;
170 struct t10_alua_lu_gp_member *lu_gp_mem;
171 struct t10_alua_tg_pt_gp *tg_pt_gp;
172 struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400173 unsigned char *prod = &dev->t10_wwn.model[0];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400174 u32 prod_len;
175 u32 unit_serial_len, off = 0;
176 u16 len = 0, id_len;
177
178 off = 4;
179
180 /*
181 * NAA IEEE Registered Extended Assigned designator format, see
182 * spc4r17 section 7.7.3.6.5
183 *
184 * We depend upon a target_core_mod/ConfigFS provided
185 * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
186 * value in order to return the NAA id.
187 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400188 if (!(dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL))
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400189 goto check_t10_vend_desc;
190
191 /* CODE SET == Binary */
192 buf[off++] = 0x1;
193
194 /* Set ASSOCIATION == addressed logical unit: 0)b */
195 buf[off] = 0x00;
196
197 /* Identifier/Designator type == NAA identifier */
198 buf[off++] |= 0x3;
199 off++;
200
201 /* Identifier/Designator length */
202 buf[off++] = 0x10;
203
204 /*
205 * Start NAA IEEE Registered Extended Identifier/Designator
206 */
207 buf[off++] = (0x6 << 4);
208
209 /*
210 * Use OpenFabrics IEEE Company ID: 00 14 05
211 */
212 buf[off++] = 0x01;
213 buf[off++] = 0x40;
214 buf[off] = (0x5 << 4);
215
216 /*
217 * Return ConfigFS Unit Serial Number information for
218 * VENDOR_SPECIFIC_IDENTIFIER and
219 * VENDOR_SPECIFIC_IDENTIFIER_EXTENTION
220 */
221 spc_parse_naa_6h_vendor_specific(dev, &buf[off]);
222
223 len = 20;
224 off = (len + 4);
225
226check_t10_vend_desc:
227 /*
228 * T10 Vendor Identifier Page, see spc4r17 section 7.7.3.4
229 */
230 id_len = 8; /* For Vendor field */
231 prod_len = 4; /* For VPD Header */
232 prod_len += 8; /* For Vendor field */
233 prod_len += strlen(prod);
234 prod_len++; /* For : */
235
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400236 if (dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
237 unit_serial_len = strlen(&dev->t10_wwn.unit_serial[0]);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400238 unit_serial_len++; /* For NULL Terminator */
239
240 id_len += sprintf(&buf[off+12], "%s:%s", prod,
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400241 &dev->t10_wwn.unit_serial[0]);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400242 }
243 buf[off] = 0x2; /* ASCII */
244 buf[off+1] = 0x1; /* T10 Vendor ID */
245 buf[off+2] = 0x0;
246 memcpy(&buf[off+4], "LIO-ORG", 8);
247 /* Extra Byte for NULL Terminator */
248 id_len++;
249 /* Identifier Length */
250 buf[off+3] = id_len;
251 /* Header size for Designation descriptor */
252 len += (id_len + 4);
253 off += (id_len + 4);
254 /*
255 * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
256 */
257 port = lun->lun_sep;
258 if (port) {
259 struct t10_alua_lu_gp *lu_gp;
260 u32 padding, scsi_name_len;
261 u16 lu_gp_id = 0;
262 u16 tg_pt_gp_id = 0;
263 u16 tpgt;
264
265 tpg = port->sep_tpg;
266 /*
267 * Relative target port identifer, see spc4r17
268 * section 7.7.3.7
269 *
270 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
271 * section 7.5.1 Table 362
272 */
273 buf[off] =
274 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
275 buf[off++] |= 0x1; /* CODE SET == Binary */
276 buf[off] = 0x80; /* Set PIV=1 */
277 /* Set ASSOCIATION == target port: 01b */
278 buf[off] |= 0x10;
279 /* DESIGNATOR TYPE == Relative target port identifer */
280 buf[off++] |= 0x4;
281 off++; /* Skip over Reserved */
282 buf[off++] = 4; /* DESIGNATOR LENGTH */
283 /* Skip over Obsolete field in RTPI payload
284 * in Table 472 */
285 off += 2;
286 buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
287 buf[off++] = (port->sep_rtpi & 0xff);
288 len += 8; /* Header size + Designation descriptor */
289 /*
290 * Target port group identifier, see spc4r17
291 * section 7.7.3.8
292 *
293 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
294 * section 7.5.1 Table 362
295 */
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400296 tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
297 if (!tg_pt_gp_mem)
298 goto check_lu_gp;
299
300 spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
301 tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
302 if (!tg_pt_gp) {
303 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
304 goto check_lu_gp;
305 }
306 tg_pt_gp_id = tg_pt_gp->tg_pt_gp_id;
307 spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
308
309 buf[off] =
310 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
311 buf[off++] |= 0x1; /* CODE SET == Binary */
312 buf[off] = 0x80; /* Set PIV=1 */
313 /* Set ASSOCIATION == target port: 01b */
314 buf[off] |= 0x10;
315 /* DESIGNATOR TYPE == Target port group identifier */
316 buf[off++] |= 0x5;
317 off++; /* Skip over Reserved */
318 buf[off++] = 4; /* DESIGNATOR LENGTH */
319 off += 2; /* Skip over Reserved Field */
320 buf[off++] = ((tg_pt_gp_id >> 8) & 0xff);
321 buf[off++] = (tg_pt_gp_id & 0xff);
322 len += 8; /* Header size + Designation descriptor */
323 /*
324 * Logical Unit Group identifier, see spc4r17
325 * section 7.7.3.8
326 */
327check_lu_gp:
328 lu_gp_mem = dev->dev_alua_lu_gp_mem;
329 if (!lu_gp_mem)
330 goto check_scsi_name;
331
332 spin_lock(&lu_gp_mem->lu_gp_mem_lock);
333 lu_gp = lu_gp_mem->lu_gp;
334 if (!lu_gp) {
335 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
336 goto check_scsi_name;
337 }
338 lu_gp_id = lu_gp->lu_gp_id;
339 spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
340
341 buf[off++] |= 0x1; /* CODE SET == Binary */
342 /* DESIGNATOR TYPE == Logical Unit Group identifier */
343 buf[off++] |= 0x6;
344 off++; /* Skip over Reserved */
345 buf[off++] = 4; /* DESIGNATOR LENGTH */
346 off += 2; /* Skip over Reserved Field */
347 buf[off++] = ((lu_gp_id >> 8) & 0xff);
348 buf[off++] = (lu_gp_id & 0xff);
349 len += 8; /* Header size + Designation descriptor */
350 /*
351 * SCSI name string designator, see spc4r17
352 * section 7.7.3.11
353 *
354 * Get the PROTOCOL IDENTIFIER as defined by spc4r17
355 * section 7.5.1 Table 362
356 */
357check_scsi_name:
358 scsi_name_len = strlen(tpg->se_tpg_tfo->tpg_get_wwn(tpg));
359 /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
360 scsi_name_len += 10;
361 /* Check for 4-byte padding */
362 padding = ((-scsi_name_len) & 3);
363 if (padding != 0)
364 scsi_name_len += padding;
365 /* Header size + Designation descriptor */
366 scsi_name_len += 4;
367
368 buf[off] =
369 (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
370 buf[off++] |= 0x3; /* CODE SET == UTF-8 */
371 buf[off] = 0x80; /* Set PIV=1 */
372 /* Set ASSOCIATION == target port: 01b */
373 buf[off] |= 0x10;
374 /* DESIGNATOR TYPE == SCSI name string */
375 buf[off++] |= 0x8;
376 off += 2; /* Skip over Reserved and length */
377 /*
378 * SCSI name string identifer containing, $FABRIC_MOD
379 * dependent information. For LIO-Target and iSCSI
380 * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
381 * UTF-8 encoding.
382 */
383 tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
384 scsi_name_len = sprintf(&buf[off], "%s,t,0x%04x",
385 tpg->se_tpg_tfo->tpg_get_wwn(tpg), tpgt);
386 scsi_name_len += 1 /* Include NULL terminator */;
387 /*
388 * The null-terminated, null-padded (see 4.4.2) SCSI
389 * NAME STRING field contains a UTF-8 format string.
390 * The number of bytes in the SCSI NAME STRING field
391 * (i.e., the value in the DESIGNATOR LENGTH field)
392 * shall be no larger than 256 and shall be a multiple
393 * of four.
394 */
395 if (padding)
396 scsi_name_len += padding;
397
398 buf[off-1] = scsi_name_len;
399 off += scsi_name_len;
400 /* Header size + Designation descriptor */
401 len += (scsi_name_len + 4);
402 }
403 buf[2] = ((len >> 8) & 0xff);
404 buf[3] = (len & 0xff); /* Page Length for VPD 0x83 */
405 return 0;
406}
407
408/* Extended INQUIRY Data VPD Page */
409static int spc_emulate_evpd_86(struct se_cmd *cmd, unsigned char *buf)
410{
411 buf[3] = 0x3c;
412 /* Set HEADSUP, ORDSUP, SIMPSUP */
413 buf[5] = 0x07;
414
415 /* If WriteCache emulation is enabled, set V_SUP */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400416 if (cmd->se_dev->dev_attrib.emulate_write_cache > 0)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400417 buf[6] = 0x01;
418 return 0;
419}
420
421/* Block Limits VPD page */
422static int spc_emulate_evpd_b0(struct se_cmd *cmd, unsigned char *buf)
423{
424 struct se_device *dev = cmd->se_dev;
425 u32 max_sectors;
426 int have_tp = 0;
427
428 /*
429 * Following spc3r22 section 6.5.3 Block Limits VPD page, when
430 * emulate_tpu=1 or emulate_tpws=1 we will be expect a
431 * different page length for Thin Provisioning.
432 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400433 if (dev->dev_attrib.emulate_tpu || dev->dev_attrib.emulate_tpws)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400434 have_tp = 1;
435
436 buf[0] = dev->transport->get_device_type(dev);
437 buf[3] = have_tp ? 0x3c : 0x10;
438
439 /* Set WSNZ to 1 */
440 buf[4] = 0x01;
441
442 /*
443 * Set OPTIMAL TRANSFER LENGTH GRANULARITY
444 */
445 put_unaligned_be16(1, &buf[6]);
446
447 /*
448 * Set MAXIMUM TRANSFER LENGTH
449 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400450 max_sectors = min(dev->dev_attrib.fabric_max_sectors,
451 dev->dev_attrib.hw_max_sectors);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400452 put_unaligned_be32(max_sectors, &buf[8]);
453
454 /*
455 * Set OPTIMAL TRANSFER LENGTH
456 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400457 put_unaligned_be32(dev->dev_attrib.optimal_sectors, &buf[12]);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400458
459 /*
460 * Exit now if we don't support TP.
461 */
462 if (!have_tp)
463 return 0;
464
465 /*
466 * Set MAXIMUM UNMAP LBA COUNT
467 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400468 put_unaligned_be32(dev->dev_attrib.max_unmap_lba_count, &buf[20]);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400469
470 /*
471 * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
472 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400473 put_unaligned_be32(dev->dev_attrib.max_unmap_block_desc_count,
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400474 &buf[24]);
475
476 /*
477 * Set OPTIMAL UNMAP GRANULARITY
478 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400479 put_unaligned_be32(dev->dev_attrib.unmap_granularity, &buf[28]);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400480
481 /*
482 * UNMAP GRANULARITY ALIGNMENT
483 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400484 put_unaligned_be32(dev->dev_attrib.unmap_granularity_alignment,
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400485 &buf[32]);
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400486 if (dev->dev_attrib.unmap_granularity_alignment != 0)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400487 buf[32] |= 0x80; /* Set the UGAVALID bit */
488
489 return 0;
490}
491
492/* Block Device Characteristics VPD page */
493static int spc_emulate_evpd_b1(struct se_cmd *cmd, unsigned char *buf)
494{
495 struct se_device *dev = cmd->se_dev;
496
497 buf[0] = dev->transport->get_device_type(dev);
498 buf[3] = 0x3c;
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400499 buf[5] = dev->dev_attrib.is_nonrot ? 1 : 0;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400500
501 return 0;
502}
503
504/* Thin Provisioning VPD */
505static int spc_emulate_evpd_b2(struct se_cmd *cmd, unsigned char *buf)
506{
507 struct se_device *dev = cmd->se_dev;
508
509 /*
510 * From spc3r22 section 6.5.4 Thin Provisioning VPD page:
511 *
512 * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
513 * zero, then the page length shall be set to 0004h. If the DP bit
514 * is set to one, then the page length shall be set to the value
515 * defined in table 162.
516 */
517 buf[0] = dev->transport->get_device_type(dev);
518
519 /*
520 * Set Hardcoded length mentioned above for DP=0
521 */
522 put_unaligned_be16(0x0004, &buf[2]);
523
524 /*
525 * The THRESHOLD EXPONENT field indicates the threshold set size in
526 * LBAs as a power of 2 (i.e., the threshold set size is equal to
527 * 2(threshold exponent)).
528 *
529 * Note that this is currently set to 0x00 as mkp says it will be
530 * changing again. We can enable this once it has settled in T10
531 * and is actually used by Linux/SCSI ML code.
532 */
533 buf[4] = 0x00;
534
535 /*
536 * A TPU bit set to one indicates that the device server supports
537 * the UNMAP command (see 5.25). A TPU bit set to zero indicates
538 * that the device server does not support the UNMAP command.
539 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400540 if (dev->dev_attrib.emulate_tpu != 0)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400541 buf[5] = 0x80;
542
543 /*
544 * A TPWS bit set to one indicates that the device server supports
545 * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
546 * A TPWS bit set to zero indicates that the device server does not
547 * support the use of the WRITE SAME (16) command to unmap LBAs.
548 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400549 if (dev->dev_attrib.emulate_tpws != 0)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400550 buf[5] |= 0x40;
551
552 return 0;
553}
554
555static int spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf);
556
557static struct {
558 uint8_t page;
559 int (*emulate)(struct se_cmd *, unsigned char *);
560} evpd_handlers[] = {
561 { .page = 0x00, .emulate = spc_emulate_evpd_00 },
562 { .page = 0x80, .emulate = spc_emulate_evpd_80 },
563 { .page = 0x83, .emulate = spc_emulate_evpd_83 },
564 { .page = 0x86, .emulate = spc_emulate_evpd_86 },
565 { .page = 0xb0, .emulate = spc_emulate_evpd_b0 },
566 { .page = 0xb1, .emulate = spc_emulate_evpd_b1 },
567 { .page = 0xb2, .emulate = spc_emulate_evpd_b2 },
568};
569
570/* supported vital product data pages */
571static int spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf)
572{
573 int p;
574
575 /*
576 * Only report the INQUIRY EVPD=1 pages after a valid NAA
577 * Registered Extended LUN WWN has been set via ConfigFS
578 * during device creation/restart.
579 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400580 if (cmd->se_dev->dev_flags & DF_EMULATED_VPD_UNIT_SERIAL) {
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400581 buf[3] = ARRAY_SIZE(evpd_handlers);
582 for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p)
583 buf[p + 4] = evpd_handlers[p].page;
584 }
585
586 return 0;
587}
588
589static int spc_emulate_inquiry(struct se_cmd *cmd)
590{
591 struct se_device *dev = cmd->se_dev;
592 struct se_portal_group *tpg = cmd->se_lun->lun_sep->sep_tpg;
Paolo Bonziniffe7b0e2012-09-07 17:30:38 +0200593 unsigned char *rbuf;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400594 unsigned char *cdb = cmd->t_task_cdb;
Paolo Bonziniffe7b0e2012-09-07 17:30:38 +0200595 unsigned char buf[SE_INQUIRY_BUF];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400596 int p, ret;
597
Nicholas Bellingerdea5f092012-10-31 22:04:26 -0700598 memset(buf, 0, SE_INQUIRY_BUF);
599
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400600 if (dev == tpg->tpg_virt_lun0.lun_se_dev)
601 buf[0] = 0x3f; /* Not connected */
602 else
603 buf[0] = dev->transport->get_device_type(dev);
604
605 if (!(cdb[1] & 0x1)) {
606 if (cdb[2]) {
607 pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
608 cdb[2]);
609 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
610 ret = -EINVAL;
611 goto out;
612 }
613
614 ret = spc_emulate_inquiry_std(cmd, buf);
615 goto out;
616 }
617
618 for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p) {
619 if (cdb[2] == evpd_handlers[p].page) {
620 buf[1] = cdb[2];
621 ret = evpd_handlers[p].emulate(cmd, buf);
622 goto out;
623 }
624 }
625
626 pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
627 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
628 ret = -EINVAL;
629
630out:
Paolo Bonziniffe7b0e2012-09-07 17:30:38 +0200631 rbuf = transport_kmap_data_sg(cmd);
632 if (rbuf) {
633 memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
634 transport_kunmap_data_sg(cmd);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400635 }
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400636
637 if (!ret)
638 target_complete_cmd(cmd, GOOD);
639 return ret;
640}
641
Roland Dreierd4b2b862012-10-31 09:16:48 -0700642static int spc_modesense_rwrecovery(struct se_device *dev, u8 pc, u8 *p)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400643{
644 p[0] = 0x01;
645 p[1] = 0x0a;
646
Roland Dreierd4b2b862012-10-31 09:16:48 -0700647 /* No changeable values for now */
648 if (pc == 1)
649 goto out;
650
651out:
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400652 return 12;
653}
654
Roland Dreierd4b2b862012-10-31 09:16:48 -0700655static int spc_modesense_control(struct se_device *dev, u8 pc, u8 *p)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400656{
657 p[0] = 0x0a;
658 p[1] = 0x0a;
Roland Dreierd4b2b862012-10-31 09:16:48 -0700659
660 /* No changeable values for now */
661 if (pc == 1)
662 goto out;
663
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400664 p[2] = 2;
665 /*
666 * From spc4r23, 7.4.7 Control mode page
667 *
668 * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
669 * restrictions on the algorithm used for reordering commands
670 * having the SIMPLE task attribute (see SAM-4).
671 *
672 * Table 368 -- QUEUE ALGORITHM MODIFIER field
673 * Code Description
674 * 0h Restricted reordering
675 * 1h Unrestricted reordering allowed
676 * 2h to 7h Reserved
677 * 8h to Fh Vendor specific
678 *
679 * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
680 * the device server shall order the processing sequence of commands
681 * having the SIMPLE task attribute such that data integrity is maintained
682 * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
683 * requests is halted at any time, the final value of all data observable
684 * on the medium shall be the same as if all the commands had been processed
685 * with the ORDERED task attribute).
686 *
687 * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
688 * device server may reorder the processing sequence of commands having the
689 * SIMPLE task attribute in any manner. Any data integrity exposures related to
690 * command sequence order shall be explicitly handled by the application client
691 * through the selection of appropriate ommands and task attributes.
692 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400693 p[3] = (dev->dev_attrib.emulate_rest_reord == 1) ? 0x00 : 0x10;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400694 /*
695 * From spc4r17, section 7.4.6 Control mode Page
696 *
697 * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
698 *
699 * 00b: The logical unit shall clear any unit attention condition
700 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
701 * status and shall not establish a unit attention condition when a com-
702 * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
703 * status.
704 *
705 * 10b: The logical unit shall not clear any unit attention condition
706 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
707 * status and shall not establish a unit attention condition when
708 * a command is completed with BUSY, TASK SET FULL, or RESERVATION
709 * CONFLICT status.
710 *
711 * 11b a The logical unit shall not clear any unit attention condition
712 * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
713 * status and shall establish a unit attention condition for the
714 * initiator port associated with the I_T nexus on which the BUSY,
715 * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
716 * Depending on the status, the additional sense code shall be set to
717 * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
718 * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
719 * command, a unit attention condition shall be established only once
720 * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
721 * to the number of commands completed with one of those status codes.
722 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400723 p[4] = (dev->dev_attrib.emulate_ua_intlck_ctrl == 2) ? 0x30 :
724 (dev->dev_attrib.emulate_ua_intlck_ctrl == 1) ? 0x20 : 0x00;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400725 /*
726 * From spc4r17, section 7.4.6 Control mode Page
727 *
728 * Task Aborted Status (TAS) bit set to zero.
729 *
730 * A task aborted status (TAS) bit set to zero specifies that aborted
731 * tasks shall be terminated by the device server without any response
732 * to the application client. A TAS bit set to one specifies that tasks
733 * aborted by the actions of an I_T nexus other than the I_T nexus on
734 * which the command was received shall be completed with TASK ABORTED
735 * status (see SAM-4).
736 */
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400737 p[5] = (dev->dev_attrib.emulate_tas) ? 0x40 : 0x00;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400738 p[8] = 0xff;
739 p[9] = 0xff;
740 p[11] = 30;
741
Roland Dreierd4b2b862012-10-31 09:16:48 -0700742out:
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400743 return 12;
744}
745
Roland Dreierd4b2b862012-10-31 09:16:48 -0700746static int spc_modesense_caching(struct se_device *dev, u8 pc, u8 *p)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400747{
748 p[0] = 0x08;
749 p[1] = 0x12;
Roland Dreierd4b2b862012-10-31 09:16:48 -0700750
751 /* No changeable values for now */
752 if (pc == 1)
753 goto out;
754
Christoph Hellwig0fd97cc2012-10-08 00:03:19 -0400755 if (dev->dev_attrib.emulate_write_cache > 0)
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400756 p[2] = 0x04; /* Write Cache Enable */
757 p[12] = 0x20; /* Disabled Read Ahead */
758
Roland Dreierd4b2b862012-10-31 09:16:48 -0700759out:
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400760 return 20;
761}
762
Roland Dreier0f6d64c2012-10-31 09:16:49 -0700763static int spc_modesense_informational_exceptions(struct se_device *dev, u8 pc, unsigned char *p)
764{
765 p[0] = 0x1c;
766 p[1] = 0x0a;
767
768 /* No changeable values for now */
769 if (pc == 1)
770 goto out;
771
772out:
773 return 12;
774}
775
Roland Dreierd4b2b862012-10-31 09:16:48 -0700776static struct {
777 uint8_t page;
778 uint8_t subpage;
779 int (*emulate)(struct se_device *, u8, unsigned char *);
780} modesense_handlers[] = {
781 { .page = 0x01, .subpage = 0x00, .emulate = spc_modesense_rwrecovery },
782 { .page = 0x08, .subpage = 0x00, .emulate = spc_modesense_caching },
783 { .page = 0x0a, .subpage = 0x00, .emulate = spc_modesense_control },
Roland Dreier0f6d64c2012-10-31 09:16:49 -0700784 { .page = 0x1c, .subpage = 0x00, .emulate = spc_modesense_informational_exceptions },
Roland Dreierd4b2b862012-10-31 09:16:48 -0700785};
786
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400787static void spc_modesense_write_protect(unsigned char *buf, int type)
788{
789 /*
790 * I believe that the WP bit (bit 7) in the mode header is the same for
791 * all device types..
792 */
793 switch (type) {
794 case TYPE_DISK:
795 case TYPE_TAPE:
796 default:
797 buf[0] |= 0x80; /* WP bit */
798 break;
799 }
800}
801
802static void spc_modesense_dpofua(unsigned char *buf, int type)
803{
804 switch (type) {
805 case TYPE_DISK:
806 buf[0] |= 0x10; /* DPOFUA bit */
807 break;
808 default:
809 break;
810 }
811}
812
Roland Dreierd4b2b862012-10-31 09:16:48 -0700813static int spc_modesense_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
814{
815 *buf++ = 8;
816 put_unaligned_be32(min(blocks, 0xffffffffull), buf);
817 buf += 4;
818 put_unaligned_be32(block_size, buf);
819 return 9;
820}
821
822static int spc_modesense_long_blockdesc(unsigned char *buf, u64 blocks, u32 block_size)
823{
824 if (blocks <= 0xffffffff)
825 return spc_modesense_blockdesc(buf + 3, blocks, block_size) + 3;
826
827 *buf++ = 1; /* LONGLBA */
828 buf += 2;
829 *buf++ = 16;
830 put_unaligned_be64(blocks, buf);
831 buf += 12;
832 put_unaligned_be32(block_size, buf);
833
834 return 17;
835}
836
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400837static int spc_emulate_modesense(struct se_cmd *cmd)
838{
839 struct se_device *dev = cmd->se_dev;
840 char *cdb = cmd->t_task_cdb;
Roland Dreierd4b2b862012-10-31 09:16:48 -0700841 unsigned char *buf, *map_buf;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400842 int type = dev->transport->get_device_type(dev);
843 int ten = (cmd->t_task_cdb[0] == MODE_SENSE_10);
Roland Dreierd4b2b862012-10-31 09:16:48 -0700844 bool dbd = !!(cdb[1] & 0x08);
845 bool llba = ten ? !!(cdb[1] & 0x10) : false;
846 u8 pc = cdb[2] >> 6;
847 u8 page = cdb[2] & 0x3f;
848 u8 subpage = cdb[3];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400849 int length = 0;
Roland Dreierd4b2b862012-10-31 09:16:48 -0700850 int ret;
851 int i;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400852
Roland Dreierd4b2b862012-10-31 09:16:48 -0700853 map_buf = transport_kmap_data_sg(cmd);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400854
Roland Dreierd4b2b862012-10-31 09:16:48 -0700855 /*
856 * If SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC is not set, then we
857 * know we actually allocated a full page. Otherwise, if the
858 * data buffer is too small, allocate a temporary buffer so we
859 * don't have to worry about overruns in all our INQUIRY
860 * emulation handling.
861 */
862 if (cmd->data_length < SE_MODE_PAGE_BUF &&
863 (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)) {
864 buf = kzalloc(SE_MODE_PAGE_BUF, GFP_KERNEL);
865 if (!buf) {
866 transport_kunmap_data_sg(cmd);
867 cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
868 return -ENOMEM;
869 }
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400870 } else {
Roland Dreierd4b2b862012-10-31 09:16:48 -0700871 buf = map_buf;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400872 }
873
Roland Dreierd4b2b862012-10-31 09:16:48 -0700874 length = ten ? 2 : 1;
875
876 /* DEVICE-SPECIFIC PARAMETER */
877 if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
878 (cmd->se_deve &&
879 (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
880 spc_modesense_write_protect(&buf[length], type);
881
882 if ((dev->dev_attrib.emulate_write_cache > 0) &&
883 (dev->dev_attrib.emulate_fua_write > 0))
884 spc_modesense_dpofua(&buf[length], type);
885
886 ++length;
887
888 /* BLOCK DESCRIPTOR */
889
890 /*
891 * For now we only include a block descriptor for disk (SBC)
892 * devices; other command sets use a slightly different format.
893 */
894 if (!dbd && type == TYPE_DISK) {
895 u64 blocks = dev->transport->get_blocks(dev);
896 u32 block_size = dev->dev_attrib.block_size;
897
898 if (ten) {
899 if (llba) {
900 length += spc_modesense_long_blockdesc(&buf[length],
901 blocks, block_size);
902 } else {
903 length += 3;
904 length += spc_modesense_blockdesc(&buf[length],
905 blocks, block_size);
906 }
907 } else {
908 length += spc_modesense_blockdesc(&buf[length], blocks,
909 block_size);
910 }
911 } else {
912 if (ten)
913 length += 4;
914 else
915 length += 1;
Paolo Bonzini7a3f3692012-09-07 17:30:39 +0200916 }
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400917
Roland Dreierd4b2b862012-10-31 09:16:48 -0700918 if (page == 0x3f) {
919 if (subpage != 0x00 && subpage != 0xff) {
920 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
921 length = -EINVAL;
922 goto out;
923 }
924
925 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i) {
926 /*
927 * Tricky way to say all subpage 00h for
928 * subpage==0, all subpages for subpage==0xff
929 * (and we just checked above that those are
930 * the only two possibilities).
931 */
932 if ((modesense_handlers[i].subpage & ~subpage) == 0) {
933 ret = modesense_handlers[i].emulate(dev, pc, &buf[length]);
934 if (!ten && length + ret >= 255)
935 break;
936 length += ret;
937 }
938 }
939
940 goto set_length;
941 }
942
943 for (i = 0; i < ARRAY_SIZE(modesense_handlers); ++i)
944 if (modesense_handlers[i].page == page &&
945 modesense_handlers[i].subpage == subpage) {
946 length += modesense_handlers[i].emulate(dev, pc, &buf[length]);
947 goto set_length;
948 }
949
950 /*
951 * We don't intend to implement:
952 * - obsolete page 03h "format parameters" (checked by Solaris)
953 */
954 if (page != 0x03)
955 pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
956 page, subpage);
957
958 cmd->scsi_sense_reason = TCM_UNKNOWN_MODE_PAGE;
959 return -EINVAL;
960
961set_length:
962 if (ten)
963 put_unaligned_be16(length - 2, buf);
964 else
965 buf[0] = length - 1;
966
967out:
968 if (buf != map_buf) {
969 memcpy(map_buf, buf, cmd->data_length);
970 kfree(buf);
971 }
972
973 transport_kunmap_data_sg(cmd);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400974 target_complete_cmd(cmd, GOOD);
975 return 0;
976}
977
978static int spc_emulate_request_sense(struct se_cmd *cmd)
979{
980 unsigned char *cdb = cmd->t_task_cdb;
Paolo Bonzini32a88112012-09-07 17:30:36 +0200981 unsigned char *rbuf;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400982 u8 ua_asc = 0, ua_ascq = 0;
Paolo Bonzini32a88112012-09-07 17:30:36 +0200983 unsigned char buf[SE_SENSE_BUF];
984
985 memset(buf, 0, SE_SENSE_BUF);
Christoph Hellwig1fd032e2012-05-20 11:59:15 -0400986
987 if (cdb[1] & 0x01) {
988 pr_err("REQUEST_SENSE description emulation not"
989 " supported\n");
990 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
991 return -ENOSYS;
992 }
993
Paolo Bonzini32a88112012-09-07 17:30:36 +0200994 rbuf = transport_kmap_data_sg(cmd);
995 if (cmd->scsi_sense_reason != 0) {
996 /*
997 * Out of memory. We will fail with CHECK CONDITION, so
998 * we must not clear the unit attention condition.
999 */
1000 target_complete_cmd(cmd, CHECK_CONDITION);
1001 return 0;
1002 } else if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) {
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001003 /*
1004 * CURRENT ERROR, UNIT ATTENTION
1005 */
1006 buf[0] = 0x70;
1007 buf[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
1008
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001009 /*
1010 * The Additional Sense Code (ASC) from the UNIT ATTENTION
1011 */
1012 buf[SPC_ASC_KEY_OFFSET] = ua_asc;
1013 buf[SPC_ASCQ_KEY_OFFSET] = ua_ascq;
1014 buf[7] = 0x0A;
1015 } else {
1016 /*
1017 * CURRENT ERROR, NO SENSE
1018 */
1019 buf[0] = 0x70;
1020 buf[SPC_SENSE_KEY_OFFSET] = NO_SENSE;
1021
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001022 /*
1023 * NO ADDITIONAL SENSE INFORMATION
1024 */
1025 buf[SPC_ASC_KEY_OFFSET] = 0x00;
1026 buf[7] = 0x0A;
1027 }
1028
Paolo Bonzini32a88112012-09-07 17:30:36 +02001029 if (rbuf) {
1030 memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
1031 transport_kunmap_data_sg(cmd);
1032 }
1033
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001034 target_complete_cmd(cmd, GOOD);
1035 return 0;
1036}
1037
Christoph Hellwig8de530a2012-10-07 10:55:52 -04001038int spc_emulate_report_luns(struct se_cmd *cmd)
Christoph Hellwigd1b1f802012-10-07 10:55:51 -04001039{
1040 struct se_dev_entry *deve;
1041 struct se_session *sess = cmd->se_sess;
1042 unsigned char *buf;
1043 u32 lun_count = 0, offset = 8, i;
1044
1045 if (cmd->data_length < 16) {
1046 pr_warn("REPORT LUNS allocation length %u too small\n",
1047 cmd->data_length);
1048 cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
1049 return -EINVAL;
1050 }
1051
1052 buf = transport_kmap_data_sg(cmd);
1053 if (!buf)
1054 return -ENOMEM;
1055
1056 /*
1057 * If no struct se_session pointer is present, this struct se_cmd is
1058 * coming via a target_core_mod PASSTHROUGH op, and not through
1059 * a $FABRIC_MOD. In that case, report LUN=0 only.
1060 */
1061 if (!sess) {
1062 int_to_scsilun(0, (struct scsi_lun *)&buf[offset]);
1063 lun_count = 1;
1064 goto done;
1065 }
1066
1067 spin_lock_irq(&sess->se_node_acl->device_list_lock);
1068 for (i = 0; i < TRANSPORT_MAX_LUNS_PER_TPG; i++) {
1069 deve = sess->se_node_acl->device_list[i];
1070 if (!(deve->lun_flags & TRANSPORT_LUNFLAGS_INITIATOR_ACCESS))
1071 continue;
1072 /*
1073 * We determine the correct LUN LIST LENGTH even once we
1074 * have reached the initial allocation length.
1075 * See SPC2-R20 7.19.
1076 */
1077 lun_count++;
1078 if ((offset + 8) > cmd->data_length)
1079 continue;
1080
1081 int_to_scsilun(deve->mapped_lun, (struct scsi_lun *)&buf[offset]);
1082 offset += 8;
1083 }
1084 spin_unlock_irq(&sess->se_node_acl->device_list_lock);
1085
1086 /*
1087 * See SPC3 r07, page 159.
1088 */
1089done:
1090 lun_count *= 8;
1091 buf[0] = ((lun_count >> 24) & 0xff);
1092 buf[1] = ((lun_count >> 16) & 0xff);
1093 buf[2] = ((lun_count >> 8) & 0xff);
1094 buf[3] = (lun_count & 0xff);
1095 transport_kunmap_data_sg(cmd);
1096
1097 target_complete_cmd(cmd, GOOD);
1098 return 0;
1099}
Christoph Hellwig8de530a2012-10-07 10:55:52 -04001100EXPORT_SYMBOL(spc_emulate_report_luns);
Christoph Hellwigd1b1f802012-10-07 10:55:51 -04001101
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001102static int spc_emulate_testunitready(struct se_cmd *cmd)
1103{
1104 target_complete_cmd(cmd, GOOD);
1105 return 0;
1106}
1107
1108int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001109{
Nicholas Bellingereba2ca42012-05-30 14:09:10 -07001110 struct se_device *dev = cmd->se_dev;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001111 unsigned char *cdb = cmd->t_task_cdb;
1112
1113 switch (cdb[0]) {
1114 case MODE_SELECT:
1115 *size = cdb[4];
1116 break;
1117 case MODE_SELECT_10:
1118 *size = (cdb[7] << 8) + cdb[8];
1119 break;
1120 case MODE_SENSE:
1121 *size = cdb[4];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001122 cmd->execute_cmd = spc_emulate_modesense;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001123 break;
1124 case MODE_SENSE_10:
1125 *size = (cdb[7] << 8) + cdb[8];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001126 cmd->execute_cmd = spc_emulate_modesense;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001127 break;
1128 case LOG_SELECT:
1129 case LOG_SENSE:
1130 *size = (cdb[7] << 8) + cdb[8];
1131 break;
1132 case PERSISTENT_RESERVE_IN:
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001133 *size = (cdb[7] << 8) + cdb[8];
Christoph Hellwigd977f432012-10-10 17:37:15 -04001134 cmd->execute_cmd = target_scsi3_emulate_pr_in;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001135 break;
1136 case PERSISTENT_RESERVE_OUT:
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001137 *size = (cdb[7] << 8) + cdb[8];
Christoph Hellwigd977f432012-10-10 17:37:15 -04001138 cmd->execute_cmd = target_scsi3_emulate_pr_out;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001139 break;
1140 case RELEASE:
1141 case RELEASE_10:
1142 if (cdb[0] == RELEASE_10)
1143 *size = (cdb[7] << 8) | cdb[8];
1144 else
1145 *size = cmd->data_length;
1146
Christoph Hellwigd977f432012-10-10 17:37:15 -04001147 cmd->execute_cmd = target_scsi2_reservation_release;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001148 break;
1149 case RESERVE:
1150 case RESERVE_10:
1151 /*
1152 * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
1153 * Assume the passthrough or $FABRIC_MOD will tell us about it.
1154 */
1155 if (cdb[0] == RESERVE_10)
1156 *size = (cdb[7] << 8) | cdb[8];
1157 else
1158 *size = cmd->data_length;
1159
Christoph Hellwigd977f432012-10-10 17:37:15 -04001160 cmd->execute_cmd = target_scsi2_reservation_reserve;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001161 break;
1162 case REQUEST_SENSE:
1163 *size = cdb[4];
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001164 cmd->execute_cmd = spc_emulate_request_sense;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001165 break;
1166 case INQUIRY:
1167 *size = (cdb[3] << 8) + cdb[4];
1168
1169 /*
1170 * Do implict HEAD_OF_QUEUE processing for INQUIRY.
1171 * See spc4r17 section 5.3
1172 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001173 cmd->sam_task_attr = MSG_HEAD_TAG;
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001174 cmd->execute_cmd = spc_emulate_inquiry;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001175 break;
1176 case SECURITY_PROTOCOL_IN:
1177 case SECURITY_PROTOCOL_OUT:
1178 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1179 break;
1180 case EXTENDED_COPY:
1181 case READ_ATTRIBUTE:
1182 case RECEIVE_COPY_RESULTS:
1183 case WRITE_ATTRIBUTE:
1184 *size = (cdb[10] << 24) | (cdb[11] << 16) |
1185 (cdb[12] << 8) | cdb[13];
1186 break;
1187 case RECEIVE_DIAGNOSTIC:
1188 case SEND_DIAGNOSTIC:
1189 *size = (cdb[3] << 8) | cdb[4];
1190 break;
1191 case WRITE_BUFFER:
1192 *size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
1193 break;
1194 case REPORT_LUNS:
Christoph Hellwigd1b1f802012-10-07 10:55:51 -04001195 cmd->execute_cmd = spc_emulate_report_luns;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001196 *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
1197 /*
1198 * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
1199 * See spc4r17 section 5.3
1200 */
Christoph Hellwig019c4ca2012-10-10 17:37:14 -04001201 cmd->sam_task_attr = MSG_HEAD_TAG;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001202 break;
1203 case TEST_UNIT_READY:
Christoph Hellwig1fd032e2012-05-20 11:59:15 -04001204 cmd->execute_cmd = spc_emulate_testunitready;
Christoph Hellwigd6e01752012-05-20 11:59:14 -04001205 *size = 0;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001206 break;
Nicholas Bellingereba2ca42012-05-30 14:09:10 -07001207 case MAINTENANCE_IN:
1208 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1209 /*
1210 * MAINTENANCE_IN from SCC-2
1211 * Check for emulated MI_REPORT_TARGET_PGS
1212 */
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001213 if ((cdb[1] & 0x1f) == MI_REPORT_TARGET_PGS) {
Nicholas Bellingereba2ca42012-05-30 14:09:10 -07001214 cmd->execute_cmd =
1215 target_emulate_report_target_port_groups;
1216 }
1217 *size = get_unaligned_be32(&cdb[6]);
1218 } else {
1219 /*
1220 * GPCMD_SEND_KEY from multi media commands
1221 */
1222 *size = get_unaligned_be16(&cdb[8]);
1223 }
1224 break;
1225 case MAINTENANCE_OUT:
1226 if (dev->transport->get_device_type(dev) != TYPE_ROM) {
1227 /*
1228 * MAINTENANCE_OUT from SCC-2
1229 * Check for emulated MO_SET_TARGET_PGS.
1230 */
Christoph Hellwigc87fbd52012-10-10 17:37:16 -04001231 if (cdb[1] == MO_SET_TARGET_PGS) {
Nicholas Bellingereba2ca42012-05-30 14:09:10 -07001232 cmd->execute_cmd =
1233 target_emulate_set_target_port_groups;
1234 }
1235 *size = get_unaligned_be32(&cdb[6]);
1236 } else {
1237 /*
1238 * GPCMD_SEND_KEY from multi media commands
1239 */
1240 *size = get_unaligned_be16(&cdb[8]);
1241 }
1242 break;
Christoph Hellwig88455ec2012-05-20 11:59:13 -04001243 default:
1244 pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
1245 " 0x%02x, sending CHECK_CONDITION.\n",
1246 cmd->se_tfo->get_fabric_name(), cdb[0]);
1247 cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
1248 cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
1249 return -EINVAL;
1250 }
1251
1252 return 0;
1253}
1254EXPORT_SYMBOL(spc_parse_cdb);