target_core_spc.c 30 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086
  1. /*
  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. #include <linux/kernel.h>
  26. #include <linux/module.h>
  27. #include <asm/unaligned.h>
  28. #include <scsi/scsi.h>
  29. #include <scsi/scsi_tcq.h>
  30. #include <target/target_core_base.h>
  31. #include <target/target_core_backend.h>
  32. #include <target/target_core_fabric.h>
  33. #include "target_core_internal.h"
  34. #include "target_core_alua.h"
  35. #include "target_core_pr.h"
  36. #include "target_core_ua.h"
  37. static void spc_fill_alua_data(struct se_port *port, unsigned char *buf)
  38. {
  39. struct t10_alua_tg_pt_gp *tg_pt_gp;
  40. struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
  41. /*
  42. * Set SCCS for MAINTENANCE_IN + REPORT_TARGET_PORT_GROUPS.
  43. */
  44. buf[5] = 0x80;
  45. /*
  46. * Set TPGS field for explict and/or implict ALUA access type
  47. * and opteration.
  48. *
  49. * See spc4r17 section 6.4.2 Table 135
  50. */
  51. if (!port)
  52. return;
  53. tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
  54. if (!tg_pt_gp_mem)
  55. return;
  56. spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
  57. tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
  58. if (tg_pt_gp)
  59. buf[5] |= tg_pt_gp->tg_pt_gp_alua_access_type;
  60. spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
  61. }
  62. static int spc_emulate_inquiry_std(struct se_cmd *cmd, char *buf)
  63. {
  64. struct se_lun *lun = cmd->se_lun;
  65. struct se_device *dev = cmd->se_dev;
  66. /* Set RMB (removable media) for tape devices */
  67. if (dev->transport->get_device_type(dev) == TYPE_TAPE)
  68. buf[1] = 0x80;
  69. buf[2] = dev->transport->get_device_rev(dev);
  70. /*
  71. * NORMACA and HISUP = 0, RESPONSE DATA FORMAT = 2
  72. *
  73. * SPC4 says:
  74. * A RESPONSE DATA FORMAT field set to 2h indicates that the
  75. * standard INQUIRY data is in the format defined in this
  76. * standard. Response data format values less than 2h are
  77. * obsolete. Response data format values greater than 2h are
  78. * reserved.
  79. */
  80. buf[3] = 2;
  81. /*
  82. * Enable SCCS and TPGS fields for Emulated ALUA
  83. */
  84. if (dev->se_sub_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED)
  85. spc_fill_alua_data(lun->lun_sep, buf);
  86. buf[7] = 0x2; /* CmdQue=1 */
  87. snprintf(&buf[8], 8, "LIO-ORG");
  88. snprintf(&buf[16], 16, "%s", dev->se_sub_dev->t10_wwn.model);
  89. snprintf(&buf[32], 4, "%s", dev->se_sub_dev->t10_wwn.revision);
  90. buf[4] = 31; /* Set additional length to 31 */
  91. return 0;
  92. }
  93. /* unit serial number */
  94. static int spc_emulate_evpd_80(struct se_cmd *cmd, unsigned char *buf)
  95. {
  96. struct se_device *dev = cmd->se_dev;
  97. u16 len = 0;
  98. if (dev->se_sub_dev->su_dev_flags &
  99. SDF_EMULATED_VPD_UNIT_SERIAL) {
  100. u32 unit_serial_len;
  101. unit_serial_len = strlen(dev->se_sub_dev->t10_wwn.unit_serial);
  102. unit_serial_len++; /* For NULL Terminator */
  103. len += sprintf(&buf[4], "%s",
  104. dev->se_sub_dev->t10_wwn.unit_serial);
  105. len++; /* Extra Byte for NULL Terminator */
  106. buf[3] = len;
  107. }
  108. return 0;
  109. }
  110. static void spc_parse_naa_6h_vendor_specific(struct se_device *dev,
  111. unsigned char *buf)
  112. {
  113. unsigned char *p = &dev->se_sub_dev->t10_wwn.unit_serial[0];
  114. int cnt;
  115. bool next = true;
  116. /*
  117. * Generate up to 36 bits of VENDOR SPECIFIC IDENTIFIER starting on
  118. * byte 3 bit 3-0 for NAA IEEE Registered Extended DESIGNATOR field
  119. * format, followed by 64 bits of VENDOR SPECIFIC IDENTIFIER EXTENSION
  120. * to complete the payload. These are based from VPD=0x80 PRODUCT SERIAL
  121. * NUMBER set via vpd_unit_serial in target_core_configfs.c to ensure
  122. * per device uniqeness.
  123. */
  124. for (cnt = 0; *p && cnt < 13; p++) {
  125. int val = hex_to_bin(*p);
  126. if (val < 0)
  127. continue;
  128. if (next) {
  129. next = false;
  130. buf[cnt++] |= val;
  131. } else {
  132. next = true;
  133. buf[cnt] = val << 4;
  134. }
  135. }
  136. }
  137. /*
  138. * Device identification VPD, for a complete list of
  139. * DESIGNATOR TYPEs see spc4r17 Table 459.
  140. */
  141. static int spc_emulate_evpd_83(struct se_cmd *cmd, unsigned char *buf)
  142. {
  143. struct se_device *dev = cmd->se_dev;
  144. struct se_lun *lun = cmd->se_lun;
  145. struct se_port *port = NULL;
  146. struct se_portal_group *tpg = NULL;
  147. struct t10_alua_lu_gp_member *lu_gp_mem;
  148. struct t10_alua_tg_pt_gp *tg_pt_gp;
  149. struct t10_alua_tg_pt_gp_member *tg_pt_gp_mem;
  150. unsigned char *prod = &dev->se_sub_dev->t10_wwn.model[0];
  151. u32 prod_len;
  152. u32 unit_serial_len, off = 0;
  153. u16 len = 0, id_len;
  154. off = 4;
  155. /*
  156. * NAA IEEE Registered Extended Assigned designator format, see
  157. * spc4r17 section 7.7.3.6.5
  158. *
  159. * We depend upon a target_core_mod/ConfigFS provided
  160. * /sys/kernel/config/target/core/$HBA/$DEV/wwn/vpd_unit_serial
  161. * value in order to return the NAA id.
  162. */
  163. if (!(dev->se_sub_dev->su_dev_flags & SDF_EMULATED_VPD_UNIT_SERIAL))
  164. goto check_t10_vend_desc;
  165. /* CODE SET == Binary */
  166. buf[off++] = 0x1;
  167. /* Set ASSOCIATION == addressed logical unit: 0)b */
  168. buf[off] = 0x00;
  169. /* Identifier/Designator type == NAA identifier */
  170. buf[off++] |= 0x3;
  171. off++;
  172. /* Identifier/Designator length */
  173. buf[off++] = 0x10;
  174. /*
  175. * Start NAA IEEE Registered Extended Identifier/Designator
  176. */
  177. buf[off++] = (0x6 << 4);
  178. /*
  179. * Use OpenFabrics IEEE Company ID: 00 14 05
  180. */
  181. buf[off++] = 0x01;
  182. buf[off++] = 0x40;
  183. buf[off] = (0x5 << 4);
  184. /*
  185. * Return ConfigFS Unit Serial Number information for
  186. * VENDOR_SPECIFIC_IDENTIFIER and
  187. * VENDOR_SPECIFIC_IDENTIFIER_EXTENTION
  188. */
  189. spc_parse_naa_6h_vendor_specific(dev, &buf[off]);
  190. len = 20;
  191. off = (len + 4);
  192. check_t10_vend_desc:
  193. /*
  194. * T10 Vendor Identifier Page, see spc4r17 section 7.7.3.4
  195. */
  196. id_len = 8; /* For Vendor field */
  197. prod_len = 4; /* For VPD Header */
  198. prod_len += 8; /* For Vendor field */
  199. prod_len += strlen(prod);
  200. prod_len++; /* For : */
  201. if (dev->se_sub_dev->su_dev_flags &
  202. SDF_EMULATED_VPD_UNIT_SERIAL) {
  203. unit_serial_len =
  204. strlen(&dev->se_sub_dev->t10_wwn.unit_serial[0]);
  205. unit_serial_len++; /* For NULL Terminator */
  206. id_len += sprintf(&buf[off+12], "%s:%s", prod,
  207. &dev->se_sub_dev->t10_wwn.unit_serial[0]);
  208. }
  209. buf[off] = 0x2; /* ASCII */
  210. buf[off+1] = 0x1; /* T10 Vendor ID */
  211. buf[off+2] = 0x0;
  212. memcpy(&buf[off+4], "LIO-ORG", 8);
  213. /* Extra Byte for NULL Terminator */
  214. id_len++;
  215. /* Identifier Length */
  216. buf[off+3] = id_len;
  217. /* Header size for Designation descriptor */
  218. len += (id_len + 4);
  219. off += (id_len + 4);
  220. /*
  221. * struct se_port is only set for INQUIRY VPD=1 through $FABRIC_MOD
  222. */
  223. port = lun->lun_sep;
  224. if (port) {
  225. struct t10_alua_lu_gp *lu_gp;
  226. u32 padding, scsi_name_len;
  227. u16 lu_gp_id = 0;
  228. u16 tg_pt_gp_id = 0;
  229. u16 tpgt;
  230. tpg = port->sep_tpg;
  231. /*
  232. * Relative target port identifer, see spc4r17
  233. * section 7.7.3.7
  234. *
  235. * Get the PROTOCOL IDENTIFIER as defined by spc4r17
  236. * section 7.5.1 Table 362
  237. */
  238. buf[off] =
  239. (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
  240. buf[off++] |= 0x1; /* CODE SET == Binary */
  241. buf[off] = 0x80; /* Set PIV=1 */
  242. /* Set ASSOCIATION == target port: 01b */
  243. buf[off] |= 0x10;
  244. /* DESIGNATOR TYPE == Relative target port identifer */
  245. buf[off++] |= 0x4;
  246. off++; /* Skip over Reserved */
  247. buf[off++] = 4; /* DESIGNATOR LENGTH */
  248. /* Skip over Obsolete field in RTPI payload
  249. * in Table 472 */
  250. off += 2;
  251. buf[off++] = ((port->sep_rtpi >> 8) & 0xff);
  252. buf[off++] = (port->sep_rtpi & 0xff);
  253. len += 8; /* Header size + Designation descriptor */
  254. /*
  255. * Target port group identifier, see spc4r17
  256. * section 7.7.3.8
  257. *
  258. * Get the PROTOCOL IDENTIFIER as defined by spc4r17
  259. * section 7.5.1 Table 362
  260. */
  261. if (dev->se_sub_dev->t10_alua.alua_type !=
  262. SPC3_ALUA_EMULATED)
  263. goto check_scsi_name;
  264. tg_pt_gp_mem = port->sep_alua_tg_pt_gp_mem;
  265. if (!tg_pt_gp_mem)
  266. goto check_lu_gp;
  267. spin_lock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
  268. tg_pt_gp = tg_pt_gp_mem->tg_pt_gp;
  269. if (!tg_pt_gp) {
  270. spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
  271. goto check_lu_gp;
  272. }
  273. tg_pt_gp_id = tg_pt_gp->tg_pt_gp_id;
  274. spin_unlock(&tg_pt_gp_mem->tg_pt_gp_mem_lock);
  275. buf[off] =
  276. (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
  277. buf[off++] |= 0x1; /* CODE SET == Binary */
  278. buf[off] = 0x80; /* Set PIV=1 */
  279. /* Set ASSOCIATION == target port: 01b */
  280. buf[off] |= 0x10;
  281. /* DESIGNATOR TYPE == Target port group identifier */
  282. buf[off++] |= 0x5;
  283. off++; /* Skip over Reserved */
  284. buf[off++] = 4; /* DESIGNATOR LENGTH */
  285. off += 2; /* Skip over Reserved Field */
  286. buf[off++] = ((tg_pt_gp_id >> 8) & 0xff);
  287. buf[off++] = (tg_pt_gp_id & 0xff);
  288. len += 8; /* Header size + Designation descriptor */
  289. /*
  290. * Logical Unit Group identifier, see spc4r17
  291. * section 7.7.3.8
  292. */
  293. check_lu_gp:
  294. lu_gp_mem = dev->dev_alua_lu_gp_mem;
  295. if (!lu_gp_mem)
  296. goto check_scsi_name;
  297. spin_lock(&lu_gp_mem->lu_gp_mem_lock);
  298. lu_gp = lu_gp_mem->lu_gp;
  299. if (!lu_gp) {
  300. spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
  301. goto check_scsi_name;
  302. }
  303. lu_gp_id = lu_gp->lu_gp_id;
  304. spin_unlock(&lu_gp_mem->lu_gp_mem_lock);
  305. buf[off++] |= 0x1; /* CODE SET == Binary */
  306. /* DESIGNATOR TYPE == Logical Unit Group identifier */
  307. buf[off++] |= 0x6;
  308. off++; /* Skip over Reserved */
  309. buf[off++] = 4; /* DESIGNATOR LENGTH */
  310. off += 2; /* Skip over Reserved Field */
  311. buf[off++] = ((lu_gp_id >> 8) & 0xff);
  312. buf[off++] = (lu_gp_id & 0xff);
  313. len += 8; /* Header size + Designation descriptor */
  314. /*
  315. * SCSI name string designator, see spc4r17
  316. * section 7.7.3.11
  317. *
  318. * Get the PROTOCOL IDENTIFIER as defined by spc4r17
  319. * section 7.5.1 Table 362
  320. */
  321. check_scsi_name:
  322. scsi_name_len = strlen(tpg->se_tpg_tfo->tpg_get_wwn(tpg));
  323. /* UTF-8 ",t,0x<16-bit TPGT>" + NULL Terminator */
  324. scsi_name_len += 10;
  325. /* Check for 4-byte padding */
  326. padding = ((-scsi_name_len) & 3);
  327. if (padding != 0)
  328. scsi_name_len += padding;
  329. /* Header size + Designation descriptor */
  330. scsi_name_len += 4;
  331. buf[off] =
  332. (tpg->se_tpg_tfo->get_fabric_proto_ident(tpg) << 4);
  333. buf[off++] |= 0x3; /* CODE SET == UTF-8 */
  334. buf[off] = 0x80; /* Set PIV=1 */
  335. /* Set ASSOCIATION == target port: 01b */
  336. buf[off] |= 0x10;
  337. /* DESIGNATOR TYPE == SCSI name string */
  338. buf[off++] |= 0x8;
  339. off += 2; /* Skip over Reserved and length */
  340. /*
  341. * SCSI name string identifer containing, $FABRIC_MOD
  342. * dependent information. For LIO-Target and iSCSI
  343. * Target Port, this means "<iSCSI name>,t,0x<TPGT> in
  344. * UTF-8 encoding.
  345. */
  346. tpgt = tpg->se_tpg_tfo->tpg_get_tag(tpg);
  347. scsi_name_len = sprintf(&buf[off], "%s,t,0x%04x",
  348. tpg->se_tpg_tfo->tpg_get_wwn(tpg), tpgt);
  349. scsi_name_len += 1 /* Include NULL terminator */;
  350. /*
  351. * The null-terminated, null-padded (see 4.4.2) SCSI
  352. * NAME STRING field contains a UTF-8 format string.
  353. * The number of bytes in the SCSI NAME STRING field
  354. * (i.e., the value in the DESIGNATOR LENGTH field)
  355. * shall be no larger than 256 and shall be a multiple
  356. * of four.
  357. */
  358. if (padding)
  359. scsi_name_len += padding;
  360. buf[off-1] = scsi_name_len;
  361. off += scsi_name_len;
  362. /* Header size + Designation descriptor */
  363. len += (scsi_name_len + 4);
  364. }
  365. buf[2] = ((len >> 8) & 0xff);
  366. buf[3] = (len & 0xff); /* Page Length for VPD 0x83 */
  367. return 0;
  368. }
  369. /* Extended INQUIRY Data VPD Page */
  370. static int spc_emulate_evpd_86(struct se_cmd *cmd, unsigned char *buf)
  371. {
  372. buf[3] = 0x3c;
  373. /* Set HEADSUP, ORDSUP, SIMPSUP */
  374. buf[5] = 0x07;
  375. /* If WriteCache emulation is enabled, set V_SUP */
  376. if (cmd->se_dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0)
  377. buf[6] = 0x01;
  378. return 0;
  379. }
  380. /* Block Limits VPD page */
  381. static int spc_emulate_evpd_b0(struct se_cmd *cmd, unsigned char *buf)
  382. {
  383. struct se_device *dev = cmd->se_dev;
  384. u32 max_sectors;
  385. int have_tp = 0;
  386. /*
  387. * Following spc3r22 section 6.5.3 Block Limits VPD page, when
  388. * emulate_tpu=1 or emulate_tpws=1 we will be expect a
  389. * different page length for Thin Provisioning.
  390. */
  391. if (dev->se_sub_dev->se_dev_attrib.emulate_tpu || dev->se_sub_dev->se_dev_attrib.emulate_tpws)
  392. have_tp = 1;
  393. buf[0] = dev->transport->get_device_type(dev);
  394. buf[3] = have_tp ? 0x3c : 0x10;
  395. /* Set WSNZ to 1 */
  396. buf[4] = 0x01;
  397. /*
  398. * Set OPTIMAL TRANSFER LENGTH GRANULARITY
  399. */
  400. put_unaligned_be16(1, &buf[6]);
  401. /*
  402. * Set MAXIMUM TRANSFER LENGTH
  403. */
  404. max_sectors = min(dev->se_sub_dev->se_dev_attrib.fabric_max_sectors,
  405. dev->se_sub_dev->se_dev_attrib.hw_max_sectors);
  406. put_unaligned_be32(max_sectors, &buf[8]);
  407. /*
  408. * Set OPTIMAL TRANSFER LENGTH
  409. */
  410. put_unaligned_be32(dev->se_sub_dev->se_dev_attrib.optimal_sectors, &buf[12]);
  411. /*
  412. * Exit now if we don't support TP.
  413. */
  414. if (!have_tp)
  415. return 0;
  416. /*
  417. * Set MAXIMUM UNMAP LBA COUNT
  418. */
  419. put_unaligned_be32(dev->se_sub_dev->se_dev_attrib.max_unmap_lba_count, &buf[20]);
  420. /*
  421. * Set MAXIMUM UNMAP BLOCK DESCRIPTOR COUNT
  422. */
  423. put_unaligned_be32(dev->se_sub_dev->se_dev_attrib.max_unmap_block_desc_count,
  424. &buf[24]);
  425. /*
  426. * Set OPTIMAL UNMAP GRANULARITY
  427. */
  428. put_unaligned_be32(dev->se_sub_dev->se_dev_attrib.unmap_granularity, &buf[28]);
  429. /*
  430. * UNMAP GRANULARITY ALIGNMENT
  431. */
  432. put_unaligned_be32(dev->se_sub_dev->se_dev_attrib.unmap_granularity_alignment,
  433. &buf[32]);
  434. if (dev->se_sub_dev->se_dev_attrib.unmap_granularity_alignment != 0)
  435. buf[32] |= 0x80; /* Set the UGAVALID bit */
  436. return 0;
  437. }
  438. /* Block Device Characteristics VPD page */
  439. static int spc_emulate_evpd_b1(struct se_cmd *cmd, unsigned char *buf)
  440. {
  441. struct se_device *dev = cmd->se_dev;
  442. buf[0] = dev->transport->get_device_type(dev);
  443. buf[3] = 0x3c;
  444. buf[5] = dev->se_sub_dev->se_dev_attrib.is_nonrot ? 1 : 0;
  445. return 0;
  446. }
  447. /* Thin Provisioning VPD */
  448. static int spc_emulate_evpd_b2(struct se_cmd *cmd, unsigned char *buf)
  449. {
  450. struct se_device *dev = cmd->se_dev;
  451. /*
  452. * From spc3r22 section 6.5.4 Thin Provisioning VPD page:
  453. *
  454. * The PAGE LENGTH field is defined in SPC-4. If the DP bit is set to
  455. * zero, then the page length shall be set to 0004h. If the DP bit
  456. * is set to one, then the page length shall be set to the value
  457. * defined in table 162.
  458. */
  459. buf[0] = dev->transport->get_device_type(dev);
  460. /*
  461. * Set Hardcoded length mentioned above for DP=0
  462. */
  463. put_unaligned_be16(0x0004, &buf[2]);
  464. /*
  465. * The THRESHOLD EXPONENT field indicates the threshold set size in
  466. * LBAs as a power of 2 (i.e., the threshold set size is equal to
  467. * 2(threshold exponent)).
  468. *
  469. * Note that this is currently set to 0x00 as mkp says it will be
  470. * changing again. We can enable this once it has settled in T10
  471. * and is actually used by Linux/SCSI ML code.
  472. */
  473. buf[4] = 0x00;
  474. /*
  475. * A TPU bit set to one indicates that the device server supports
  476. * the UNMAP command (see 5.25). A TPU bit set to zero indicates
  477. * that the device server does not support the UNMAP command.
  478. */
  479. if (dev->se_sub_dev->se_dev_attrib.emulate_tpu != 0)
  480. buf[5] = 0x80;
  481. /*
  482. * A TPWS bit set to one indicates that the device server supports
  483. * the use of the WRITE SAME (16) command (see 5.42) to unmap LBAs.
  484. * A TPWS bit set to zero indicates that the device server does not
  485. * support the use of the WRITE SAME (16) command to unmap LBAs.
  486. */
  487. if (dev->se_sub_dev->se_dev_attrib.emulate_tpws != 0)
  488. buf[5] |= 0x40;
  489. return 0;
  490. }
  491. static int spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf);
  492. static struct {
  493. uint8_t page;
  494. int (*emulate)(struct se_cmd *, unsigned char *);
  495. } evpd_handlers[] = {
  496. { .page = 0x00, .emulate = spc_emulate_evpd_00 },
  497. { .page = 0x80, .emulate = spc_emulate_evpd_80 },
  498. { .page = 0x83, .emulate = spc_emulate_evpd_83 },
  499. { .page = 0x86, .emulate = spc_emulate_evpd_86 },
  500. { .page = 0xb0, .emulate = spc_emulate_evpd_b0 },
  501. { .page = 0xb1, .emulate = spc_emulate_evpd_b1 },
  502. { .page = 0xb2, .emulate = spc_emulate_evpd_b2 },
  503. };
  504. /* supported vital product data pages */
  505. static int spc_emulate_evpd_00(struct se_cmd *cmd, unsigned char *buf)
  506. {
  507. int p;
  508. /*
  509. * Only report the INQUIRY EVPD=1 pages after a valid NAA
  510. * Registered Extended LUN WWN has been set via ConfigFS
  511. * during device creation/restart.
  512. */
  513. if (cmd->se_dev->se_sub_dev->su_dev_flags &
  514. SDF_EMULATED_VPD_UNIT_SERIAL) {
  515. buf[3] = ARRAY_SIZE(evpd_handlers);
  516. for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p)
  517. buf[p + 4] = evpd_handlers[p].page;
  518. }
  519. return 0;
  520. }
  521. static int spc_emulate_inquiry(struct se_cmd *cmd)
  522. {
  523. struct se_device *dev = cmd->se_dev;
  524. struct se_portal_group *tpg = cmd->se_lun->lun_sep->sep_tpg;
  525. unsigned char *rbuf;
  526. unsigned char *cdb = cmd->t_task_cdb;
  527. unsigned char buf[SE_INQUIRY_BUF];
  528. int p, ret;
  529. if (dev == tpg->tpg_virt_lun0.lun_se_dev)
  530. buf[0] = 0x3f; /* Not connected */
  531. else
  532. buf[0] = dev->transport->get_device_type(dev);
  533. if (!(cdb[1] & 0x1)) {
  534. if (cdb[2]) {
  535. pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
  536. cdb[2]);
  537. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  538. ret = -EINVAL;
  539. goto out;
  540. }
  541. ret = spc_emulate_inquiry_std(cmd, buf);
  542. goto out;
  543. }
  544. for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p) {
  545. if (cdb[2] == evpd_handlers[p].page) {
  546. buf[1] = cdb[2];
  547. ret = evpd_handlers[p].emulate(cmd, buf);
  548. goto out;
  549. }
  550. }
  551. pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
  552. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  553. ret = -EINVAL;
  554. out:
  555. rbuf = transport_kmap_data_sg(cmd);
  556. if (rbuf) {
  557. memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
  558. transport_kunmap_data_sg(cmd);
  559. }
  560. if (!ret)
  561. target_complete_cmd(cmd, GOOD);
  562. return ret;
  563. }
  564. static int spc_modesense_rwrecovery(unsigned char *p)
  565. {
  566. p[0] = 0x01;
  567. p[1] = 0x0a;
  568. return 12;
  569. }
  570. static int spc_modesense_control(struct se_device *dev, unsigned char *p)
  571. {
  572. p[0] = 0x0a;
  573. p[1] = 0x0a;
  574. p[2] = 2;
  575. /*
  576. * From spc4r23, 7.4.7 Control mode page
  577. *
  578. * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
  579. * restrictions on the algorithm used for reordering commands
  580. * having the SIMPLE task attribute (see SAM-4).
  581. *
  582. * Table 368 -- QUEUE ALGORITHM MODIFIER field
  583. * Code Description
  584. * 0h Restricted reordering
  585. * 1h Unrestricted reordering allowed
  586. * 2h to 7h Reserved
  587. * 8h to Fh Vendor specific
  588. *
  589. * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
  590. * the device server shall order the processing sequence of commands
  591. * having the SIMPLE task attribute such that data integrity is maintained
  592. * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
  593. * requests is halted at any time, the final value of all data observable
  594. * on the medium shall be the same as if all the commands had been processed
  595. * with the ORDERED task attribute).
  596. *
  597. * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
  598. * device server may reorder the processing sequence of commands having the
  599. * SIMPLE task attribute in any manner. Any data integrity exposures related to
  600. * command sequence order shall be explicitly handled by the application client
  601. * through the selection of appropriate ommands and task attributes.
  602. */
  603. p[3] = (dev->se_sub_dev->se_dev_attrib.emulate_rest_reord == 1) ? 0x00 : 0x10;
  604. /*
  605. * From spc4r17, section 7.4.6 Control mode Page
  606. *
  607. * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
  608. *
  609. * 00b: The logical unit shall clear any unit attention condition
  610. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  611. * status and shall not establish a unit attention condition when a com-
  612. * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
  613. * status.
  614. *
  615. * 10b: The logical unit shall not clear any unit attention condition
  616. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  617. * status and shall not establish a unit attention condition when
  618. * a command is completed with BUSY, TASK SET FULL, or RESERVATION
  619. * CONFLICT status.
  620. *
  621. * 11b a The logical unit shall not clear any unit attention condition
  622. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  623. * status and shall establish a unit attention condition for the
  624. * initiator port associated with the I_T nexus on which the BUSY,
  625. * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
  626. * Depending on the status, the additional sense code shall be set to
  627. * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
  628. * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
  629. * command, a unit attention condition shall be established only once
  630. * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
  631. * to the number of commands completed with one of those status codes.
  632. */
  633. p[4] = (dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2) ? 0x30 :
  634. (dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 1) ? 0x20 : 0x00;
  635. /*
  636. * From spc4r17, section 7.4.6 Control mode Page
  637. *
  638. * Task Aborted Status (TAS) bit set to zero.
  639. *
  640. * A task aborted status (TAS) bit set to zero specifies that aborted
  641. * tasks shall be terminated by the device server without any response
  642. * to the application client. A TAS bit set to one specifies that tasks
  643. * aborted by the actions of an I_T nexus other than the I_T nexus on
  644. * which the command was received shall be completed with TASK ABORTED
  645. * status (see SAM-4).
  646. */
  647. p[5] = (dev->se_sub_dev->se_dev_attrib.emulate_tas) ? 0x40 : 0x00;
  648. p[8] = 0xff;
  649. p[9] = 0xff;
  650. p[11] = 30;
  651. return 12;
  652. }
  653. static int spc_modesense_caching(struct se_device *dev, unsigned char *p)
  654. {
  655. p[0] = 0x08;
  656. p[1] = 0x12;
  657. if (dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0)
  658. p[2] = 0x04; /* Write Cache Enable */
  659. p[12] = 0x20; /* Disabled Read Ahead */
  660. return 20;
  661. }
  662. static void spc_modesense_write_protect(unsigned char *buf, int type)
  663. {
  664. /*
  665. * I believe that the WP bit (bit 7) in the mode header is the same for
  666. * all device types..
  667. */
  668. switch (type) {
  669. case TYPE_DISK:
  670. case TYPE_TAPE:
  671. default:
  672. buf[0] |= 0x80; /* WP bit */
  673. break;
  674. }
  675. }
  676. static void spc_modesense_dpofua(unsigned char *buf, int type)
  677. {
  678. switch (type) {
  679. case TYPE_DISK:
  680. buf[0] |= 0x10; /* DPOFUA bit */
  681. break;
  682. default:
  683. break;
  684. }
  685. }
  686. static int spc_emulate_modesense(struct se_cmd *cmd)
  687. {
  688. struct se_device *dev = cmd->se_dev;
  689. char *cdb = cmd->t_task_cdb;
  690. unsigned char *rbuf;
  691. int type = dev->transport->get_device_type(dev);
  692. int ten = (cmd->t_task_cdb[0] == MODE_SENSE_10);
  693. int offset = ten ? 8 : 4;
  694. int length = 0;
  695. unsigned char buf[SE_MODE_PAGE_BUF];
  696. memset(buf, 0, SE_MODE_PAGE_BUF);
  697. switch (cdb[2] & 0x3f) {
  698. case 0x01:
  699. length = spc_modesense_rwrecovery(&buf[offset]);
  700. break;
  701. case 0x08:
  702. length = spc_modesense_caching(dev, &buf[offset]);
  703. break;
  704. case 0x0a:
  705. length = spc_modesense_control(dev, &buf[offset]);
  706. break;
  707. case 0x3f:
  708. length = spc_modesense_rwrecovery(&buf[offset]);
  709. length += spc_modesense_caching(dev, &buf[offset+length]);
  710. length += spc_modesense_control(dev, &buf[offset+length]);
  711. break;
  712. default:
  713. pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
  714. cdb[2] & 0x3f, cdb[3]);
  715. cmd->scsi_sense_reason = TCM_UNKNOWN_MODE_PAGE;
  716. return -EINVAL;
  717. }
  718. offset += length;
  719. if (ten) {
  720. offset -= 2;
  721. buf[0] = (offset >> 8) & 0xff;
  722. buf[1] = offset & 0xff;
  723. if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
  724. (cmd->se_deve &&
  725. (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
  726. spc_modesense_write_protect(&buf[3], type);
  727. if ((dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0) &&
  728. (dev->se_sub_dev->se_dev_attrib.emulate_fua_write > 0))
  729. spc_modesense_dpofua(&buf[3], type);
  730. if ((offset + 2) > cmd->data_length)
  731. offset = cmd->data_length;
  732. } else {
  733. offset -= 1;
  734. buf[0] = offset & 0xff;
  735. if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
  736. (cmd->se_deve &&
  737. (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
  738. spc_modesense_write_protect(&buf[2], type);
  739. if ((dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0) &&
  740. (dev->se_sub_dev->se_dev_attrib.emulate_fua_write > 0))
  741. spc_modesense_dpofua(&buf[2], type);
  742. if ((offset + 1) > cmd->data_length)
  743. offset = cmd->data_length;
  744. }
  745. rbuf = transport_kmap_data_sg(cmd);
  746. memcpy(rbuf, buf, offset);
  747. transport_kunmap_data_sg(cmd);
  748. target_complete_cmd(cmd, GOOD);
  749. return 0;
  750. }
  751. static int spc_emulate_request_sense(struct se_cmd *cmd)
  752. {
  753. unsigned char *cdb = cmd->t_task_cdb;
  754. unsigned char *rbuf;
  755. u8 ua_asc = 0, ua_ascq = 0;
  756. unsigned char buf[SE_SENSE_BUF];
  757. memset(buf, 0, SE_SENSE_BUF);
  758. if (cdb[1] & 0x01) {
  759. pr_err("REQUEST_SENSE description emulation not"
  760. " supported\n");
  761. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  762. return -ENOSYS;
  763. }
  764. rbuf = transport_kmap_data_sg(cmd);
  765. if (cmd->scsi_sense_reason != 0) {
  766. /*
  767. * Out of memory. We will fail with CHECK CONDITION, so
  768. * we must not clear the unit attention condition.
  769. */
  770. target_complete_cmd(cmd, CHECK_CONDITION);
  771. return 0;
  772. } else if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) {
  773. /*
  774. * CURRENT ERROR, UNIT ATTENTION
  775. */
  776. buf[0] = 0x70;
  777. buf[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
  778. /*
  779. * The Additional Sense Code (ASC) from the UNIT ATTENTION
  780. */
  781. buf[SPC_ASC_KEY_OFFSET] = ua_asc;
  782. buf[SPC_ASCQ_KEY_OFFSET] = ua_ascq;
  783. buf[7] = 0x0A;
  784. } else {
  785. /*
  786. * CURRENT ERROR, NO SENSE
  787. */
  788. buf[0] = 0x70;
  789. buf[SPC_SENSE_KEY_OFFSET] = NO_SENSE;
  790. /*
  791. * NO ADDITIONAL SENSE INFORMATION
  792. */
  793. buf[SPC_ASC_KEY_OFFSET] = 0x00;
  794. buf[7] = 0x0A;
  795. }
  796. if (rbuf) {
  797. memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
  798. transport_kunmap_data_sg(cmd);
  799. }
  800. target_complete_cmd(cmd, GOOD);
  801. return 0;
  802. }
  803. static int spc_emulate_testunitready(struct se_cmd *cmd)
  804. {
  805. target_complete_cmd(cmd, GOOD);
  806. return 0;
  807. }
  808. int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
  809. {
  810. struct se_device *dev = cmd->se_dev;
  811. struct se_subsystem_dev *su_dev = dev->se_sub_dev;
  812. unsigned char *cdb = cmd->t_task_cdb;
  813. switch (cdb[0]) {
  814. case MODE_SELECT:
  815. *size = cdb[4];
  816. break;
  817. case MODE_SELECT_10:
  818. *size = (cdb[7] << 8) + cdb[8];
  819. break;
  820. case MODE_SENSE:
  821. *size = cdb[4];
  822. cmd->execute_cmd = spc_emulate_modesense;
  823. break;
  824. case MODE_SENSE_10:
  825. *size = (cdb[7] << 8) + cdb[8];
  826. cmd->execute_cmd = spc_emulate_modesense;
  827. break;
  828. case LOG_SELECT:
  829. case LOG_SENSE:
  830. *size = (cdb[7] << 8) + cdb[8];
  831. break;
  832. case PERSISTENT_RESERVE_IN:
  833. if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
  834. cmd->execute_cmd = target_scsi3_emulate_pr_in;
  835. *size = (cdb[7] << 8) + cdb[8];
  836. break;
  837. case PERSISTENT_RESERVE_OUT:
  838. if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
  839. cmd->execute_cmd = target_scsi3_emulate_pr_out;
  840. *size = (cdb[7] << 8) + cdb[8];
  841. break;
  842. case RELEASE:
  843. case RELEASE_10:
  844. if (cdb[0] == RELEASE_10)
  845. *size = (cdb[7] << 8) | cdb[8];
  846. else
  847. *size = cmd->data_length;
  848. if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
  849. cmd->execute_cmd = target_scsi2_reservation_release;
  850. break;
  851. case RESERVE:
  852. case RESERVE_10:
  853. /*
  854. * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
  855. * Assume the passthrough or $FABRIC_MOD will tell us about it.
  856. */
  857. if (cdb[0] == RESERVE_10)
  858. *size = (cdb[7] << 8) | cdb[8];
  859. else
  860. *size = cmd->data_length;
  861. /*
  862. * Setup the legacy emulated handler for SPC-2 and
  863. * >= SPC-3 compatible reservation handling (CRH=1)
  864. * Otherwise, we assume the underlying SCSI logic is
  865. * is running in SPC_PASSTHROUGH, and wants reservations
  866. * emulation disabled.
  867. */
  868. if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
  869. cmd->execute_cmd = target_scsi2_reservation_reserve;
  870. break;
  871. case REQUEST_SENSE:
  872. *size = cdb[4];
  873. cmd->execute_cmd = spc_emulate_request_sense;
  874. break;
  875. case INQUIRY:
  876. *size = (cdb[3] << 8) + cdb[4];
  877. /*
  878. * Do implict HEAD_OF_QUEUE processing for INQUIRY.
  879. * See spc4r17 section 5.3
  880. */
  881. if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
  882. cmd->sam_task_attr = MSG_HEAD_TAG;
  883. cmd->execute_cmd = spc_emulate_inquiry;
  884. break;
  885. case SECURITY_PROTOCOL_IN:
  886. case SECURITY_PROTOCOL_OUT:
  887. *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
  888. break;
  889. case EXTENDED_COPY:
  890. case READ_ATTRIBUTE:
  891. case RECEIVE_COPY_RESULTS:
  892. case WRITE_ATTRIBUTE:
  893. *size = (cdb[10] << 24) | (cdb[11] << 16) |
  894. (cdb[12] << 8) | cdb[13];
  895. break;
  896. case RECEIVE_DIAGNOSTIC:
  897. case SEND_DIAGNOSTIC:
  898. *size = (cdb[3] << 8) | cdb[4];
  899. break;
  900. case WRITE_BUFFER:
  901. *size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
  902. break;
  903. case REPORT_LUNS:
  904. cmd->execute_cmd = target_report_luns;
  905. *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
  906. /*
  907. * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
  908. * See spc4r17 section 5.3
  909. */
  910. if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
  911. cmd->sam_task_attr = MSG_HEAD_TAG;
  912. break;
  913. case TEST_UNIT_READY:
  914. cmd->execute_cmd = spc_emulate_testunitready;
  915. *size = 0;
  916. break;
  917. case MAINTENANCE_IN:
  918. if (dev->transport->get_device_type(dev) != TYPE_ROM) {
  919. /*
  920. * MAINTENANCE_IN from SCC-2
  921. * Check for emulated MI_REPORT_TARGET_PGS
  922. */
  923. if ((cdb[1] & 0x1f) == MI_REPORT_TARGET_PGS &&
  924. su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
  925. cmd->execute_cmd =
  926. target_emulate_report_target_port_groups;
  927. }
  928. *size = get_unaligned_be32(&cdb[6]);
  929. } else {
  930. /*
  931. * GPCMD_SEND_KEY from multi media commands
  932. */
  933. *size = get_unaligned_be16(&cdb[8]);
  934. }
  935. break;
  936. case MAINTENANCE_OUT:
  937. if (dev->transport->get_device_type(dev) != TYPE_ROM) {
  938. /*
  939. * MAINTENANCE_OUT from SCC-2
  940. * Check for emulated MO_SET_TARGET_PGS.
  941. */
  942. if (cdb[1] == MO_SET_TARGET_PGS &&
  943. su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
  944. cmd->execute_cmd =
  945. target_emulate_set_target_port_groups;
  946. }
  947. *size = get_unaligned_be32(&cdb[6]);
  948. } else {
  949. /*
  950. * GPCMD_SEND_KEY from multi media commands
  951. */
  952. *size = get_unaligned_be16(&cdb[8]);
  953. }
  954. break;
  955. default:
  956. pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
  957. " 0x%02x, sending CHECK_CONDITION.\n",
  958. cmd->se_tfo->get_fabric_name(), cdb[0]);
  959. cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
  960. cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
  961. return -EINVAL;
  962. }
  963. return 0;
  964. }
  965. EXPORT_SYMBOL(spc_parse_cdb);