target_core_spc.c 31 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104
  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 *buf, *map_buf;
  526. unsigned char *cdb = cmd->t_task_cdb;
  527. int p, ret;
  528. map_buf = transport_kmap_data_sg(cmd);
  529. /*
  530. * If SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC is not set, then we
  531. * know we actually allocated a full page. Otherwise, if the
  532. * data buffer is too small, allocate a temporary buffer so we
  533. * don't have to worry about overruns in all our INQUIRY
  534. * emulation handling.
  535. */
  536. if (cmd->data_length < SE_INQUIRY_BUF &&
  537. (cmd->se_cmd_flags & SCF_PASSTHROUGH_SG_TO_MEM_NOALLOC)) {
  538. buf = kzalloc(SE_INQUIRY_BUF, GFP_KERNEL);
  539. if (!buf) {
  540. transport_kunmap_data_sg(cmd);
  541. cmd->scsi_sense_reason = TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  542. return -ENOMEM;
  543. }
  544. } else {
  545. buf = map_buf;
  546. }
  547. if (dev == tpg->tpg_virt_lun0.lun_se_dev)
  548. buf[0] = 0x3f; /* Not connected */
  549. else
  550. buf[0] = dev->transport->get_device_type(dev);
  551. if (!(cdb[1] & 0x1)) {
  552. if (cdb[2]) {
  553. pr_err("INQUIRY with EVPD==0 but PAGE CODE=%02x\n",
  554. cdb[2]);
  555. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  556. ret = -EINVAL;
  557. goto out;
  558. }
  559. ret = spc_emulate_inquiry_std(cmd, buf);
  560. goto out;
  561. }
  562. for (p = 0; p < ARRAY_SIZE(evpd_handlers); ++p) {
  563. if (cdb[2] == evpd_handlers[p].page) {
  564. buf[1] = cdb[2];
  565. ret = evpd_handlers[p].emulate(cmd, buf);
  566. goto out;
  567. }
  568. }
  569. pr_err("Unknown VPD Code: 0x%02x\n", cdb[2]);
  570. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  571. ret = -EINVAL;
  572. out:
  573. if (buf != map_buf) {
  574. memcpy(map_buf, buf, cmd->data_length);
  575. kfree(buf);
  576. }
  577. transport_kunmap_data_sg(cmd);
  578. if (!ret)
  579. target_complete_cmd(cmd, GOOD);
  580. return ret;
  581. }
  582. static int spc_modesense_rwrecovery(unsigned char *p)
  583. {
  584. p[0] = 0x01;
  585. p[1] = 0x0a;
  586. return 12;
  587. }
  588. static int spc_modesense_control(struct se_device *dev, unsigned char *p)
  589. {
  590. p[0] = 0x0a;
  591. p[1] = 0x0a;
  592. p[2] = 2;
  593. /*
  594. * From spc4r23, 7.4.7 Control mode page
  595. *
  596. * The QUEUE ALGORITHM MODIFIER field (see table 368) specifies
  597. * restrictions on the algorithm used for reordering commands
  598. * having the SIMPLE task attribute (see SAM-4).
  599. *
  600. * Table 368 -- QUEUE ALGORITHM MODIFIER field
  601. * Code Description
  602. * 0h Restricted reordering
  603. * 1h Unrestricted reordering allowed
  604. * 2h to 7h Reserved
  605. * 8h to Fh Vendor specific
  606. *
  607. * A value of zero in the QUEUE ALGORITHM MODIFIER field specifies that
  608. * the device server shall order the processing sequence of commands
  609. * having the SIMPLE task attribute such that data integrity is maintained
  610. * for that I_T nexus (i.e., if the transmission of new SCSI transport protocol
  611. * requests is halted at any time, the final value of all data observable
  612. * on the medium shall be the same as if all the commands had been processed
  613. * with the ORDERED task attribute).
  614. *
  615. * A value of one in the QUEUE ALGORITHM MODIFIER field specifies that the
  616. * device server may reorder the processing sequence of commands having the
  617. * SIMPLE task attribute in any manner. Any data integrity exposures related to
  618. * command sequence order shall be explicitly handled by the application client
  619. * through the selection of appropriate ommands and task attributes.
  620. */
  621. p[3] = (dev->se_sub_dev->se_dev_attrib.emulate_rest_reord == 1) ? 0x00 : 0x10;
  622. /*
  623. * From spc4r17, section 7.4.6 Control mode Page
  624. *
  625. * Unit Attention interlocks control (UN_INTLCK_CTRL) to code 00b
  626. *
  627. * 00b: The logical unit shall clear any unit attention condition
  628. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  629. * status and shall not establish a unit attention condition when a com-
  630. * mand is completed with BUSY, TASK SET FULL, or RESERVATION CONFLICT
  631. * status.
  632. *
  633. * 10b: The logical unit shall not clear any unit attention condition
  634. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  635. * status and shall not establish a unit attention condition when
  636. * a command is completed with BUSY, TASK SET FULL, or RESERVATION
  637. * CONFLICT status.
  638. *
  639. * 11b a The logical unit shall not clear any unit attention condition
  640. * reported in the same I_T_L_Q nexus transaction as a CHECK CONDITION
  641. * status and shall establish a unit attention condition for the
  642. * initiator port associated with the I_T nexus on which the BUSY,
  643. * TASK SET FULL, or RESERVATION CONFLICT status is being returned.
  644. * Depending on the status, the additional sense code shall be set to
  645. * PREVIOUS BUSY STATUS, PREVIOUS TASK SET FULL STATUS, or PREVIOUS
  646. * RESERVATION CONFLICT STATUS. Until it is cleared by a REQUEST SENSE
  647. * command, a unit attention condition shall be established only once
  648. * for a BUSY, TASK SET FULL, or RESERVATION CONFLICT status regardless
  649. * to the number of commands completed with one of those status codes.
  650. */
  651. p[4] = (dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 2) ? 0x30 :
  652. (dev->se_sub_dev->se_dev_attrib.emulate_ua_intlck_ctrl == 1) ? 0x20 : 0x00;
  653. /*
  654. * From spc4r17, section 7.4.6 Control mode Page
  655. *
  656. * Task Aborted Status (TAS) bit set to zero.
  657. *
  658. * A task aborted status (TAS) bit set to zero specifies that aborted
  659. * tasks shall be terminated by the device server without any response
  660. * to the application client. A TAS bit set to one specifies that tasks
  661. * aborted by the actions of an I_T nexus other than the I_T nexus on
  662. * which the command was received shall be completed with TASK ABORTED
  663. * status (see SAM-4).
  664. */
  665. p[5] = (dev->se_sub_dev->se_dev_attrib.emulate_tas) ? 0x40 : 0x00;
  666. p[8] = 0xff;
  667. p[9] = 0xff;
  668. p[11] = 30;
  669. return 12;
  670. }
  671. static int spc_modesense_caching(struct se_device *dev, unsigned char *p)
  672. {
  673. p[0] = 0x08;
  674. p[1] = 0x12;
  675. if (dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0)
  676. p[2] = 0x04; /* Write Cache Enable */
  677. p[12] = 0x20; /* Disabled Read Ahead */
  678. return 20;
  679. }
  680. static void spc_modesense_write_protect(unsigned char *buf, int type)
  681. {
  682. /*
  683. * I believe that the WP bit (bit 7) in the mode header is the same for
  684. * all device types..
  685. */
  686. switch (type) {
  687. case TYPE_DISK:
  688. case TYPE_TAPE:
  689. default:
  690. buf[0] |= 0x80; /* WP bit */
  691. break;
  692. }
  693. }
  694. static void spc_modesense_dpofua(unsigned char *buf, int type)
  695. {
  696. switch (type) {
  697. case TYPE_DISK:
  698. buf[0] |= 0x10; /* DPOFUA bit */
  699. break;
  700. default:
  701. break;
  702. }
  703. }
  704. static int spc_emulate_modesense(struct se_cmd *cmd)
  705. {
  706. struct se_device *dev = cmd->se_dev;
  707. char *cdb = cmd->t_task_cdb;
  708. unsigned char *rbuf;
  709. int type = dev->transport->get_device_type(dev);
  710. int ten = (cmd->t_task_cdb[0] == MODE_SENSE_10);
  711. int offset = ten ? 8 : 4;
  712. int length = 0;
  713. unsigned char buf[SE_MODE_PAGE_BUF];
  714. memset(buf, 0, SE_MODE_PAGE_BUF);
  715. switch (cdb[2] & 0x3f) {
  716. case 0x01:
  717. length = spc_modesense_rwrecovery(&buf[offset]);
  718. break;
  719. case 0x08:
  720. length = spc_modesense_caching(dev, &buf[offset]);
  721. break;
  722. case 0x0a:
  723. length = spc_modesense_control(dev, &buf[offset]);
  724. break;
  725. case 0x3f:
  726. length = spc_modesense_rwrecovery(&buf[offset]);
  727. length += spc_modesense_caching(dev, &buf[offset+length]);
  728. length += spc_modesense_control(dev, &buf[offset+length]);
  729. break;
  730. default:
  731. pr_err("MODE SENSE: unimplemented page/subpage: 0x%02x/0x%02x\n",
  732. cdb[2] & 0x3f, cdb[3]);
  733. cmd->scsi_sense_reason = TCM_UNKNOWN_MODE_PAGE;
  734. return -EINVAL;
  735. }
  736. offset += length;
  737. if (ten) {
  738. offset -= 2;
  739. buf[0] = (offset >> 8) & 0xff;
  740. buf[1] = offset & 0xff;
  741. if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
  742. (cmd->se_deve &&
  743. (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
  744. spc_modesense_write_protect(&buf[3], type);
  745. if ((dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0) &&
  746. (dev->se_sub_dev->se_dev_attrib.emulate_fua_write > 0))
  747. spc_modesense_dpofua(&buf[3], type);
  748. if ((offset + 2) > cmd->data_length)
  749. offset = cmd->data_length;
  750. } else {
  751. offset -= 1;
  752. buf[0] = offset & 0xff;
  753. if ((cmd->se_lun->lun_access & TRANSPORT_LUNFLAGS_READ_ONLY) ||
  754. (cmd->se_deve &&
  755. (cmd->se_deve->lun_flags & TRANSPORT_LUNFLAGS_READ_ONLY)))
  756. spc_modesense_write_protect(&buf[2], type);
  757. if ((dev->se_sub_dev->se_dev_attrib.emulate_write_cache > 0) &&
  758. (dev->se_sub_dev->se_dev_attrib.emulate_fua_write > 0))
  759. spc_modesense_dpofua(&buf[2], type);
  760. if ((offset + 1) > cmd->data_length)
  761. offset = cmd->data_length;
  762. }
  763. rbuf = transport_kmap_data_sg(cmd);
  764. memcpy(rbuf, buf, offset);
  765. transport_kunmap_data_sg(cmd);
  766. target_complete_cmd(cmd, GOOD);
  767. return 0;
  768. }
  769. static int spc_emulate_request_sense(struct se_cmd *cmd)
  770. {
  771. unsigned char *cdb = cmd->t_task_cdb;
  772. unsigned char *buf;
  773. u8 ua_asc = 0, ua_ascq = 0;
  774. int err = 0;
  775. if (cdb[1] & 0x01) {
  776. pr_err("REQUEST_SENSE description emulation not"
  777. " supported\n");
  778. cmd->scsi_sense_reason = TCM_INVALID_CDB_FIELD;
  779. return -ENOSYS;
  780. }
  781. buf = transport_kmap_data_sg(cmd);
  782. if (!core_scsi3_ua_clear_for_request_sense(cmd, &ua_asc, &ua_ascq)) {
  783. /*
  784. * CURRENT ERROR, UNIT ATTENTION
  785. */
  786. buf[0] = 0x70;
  787. buf[SPC_SENSE_KEY_OFFSET] = UNIT_ATTENTION;
  788. if (cmd->data_length < 18) {
  789. buf[7] = 0x00;
  790. err = -EINVAL;
  791. goto end;
  792. }
  793. /*
  794. * The Additional Sense Code (ASC) from the UNIT ATTENTION
  795. */
  796. buf[SPC_ASC_KEY_OFFSET] = ua_asc;
  797. buf[SPC_ASCQ_KEY_OFFSET] = ua_ascq;
  798. buf[7] = 0x0A;
  799. } else {
  800. /*
  801. * CURRENT ERROR, NO SENSE
  802. */
  803. buf[0] = 0x70;
  804. buf[SPC_SENSE_KEY_OFFSET] = NO_SENSE;
  805. if (cmd->data_length < 18) {
  806. buf[7] = 0x00;
  807. err = -EINVAL;
  808. goto end;
  809. }
  810. /*
  811. * NO ADDITIONAL SENSE INFORMATION
  812. */
  813. buf[SPC_ASC_KEY_OFFSET] = 0x00;
  814. buf[7] = 0x0A;
  815. }
  816. end:
  817. transport_kunmap_data_sg(cmd);
  818. target_complete_cmd(cmd, GOOD);
  819. return 0;
  820. }
  821. static int spc_emulate_testunitready(struct se_cmd *cmd)
  822. {
  823. target_complete_cmd(cmd, GOOD);
  824. return 0;
  825. }
  826. int spc_parse_cdb(struct se_cmd *cmd, unsigned int *size)
  827. {
  828. struct se_device *dev = cmd->se_dev;
  829. struct se_subsystem_dev *su_dev = dev->se_sub_dev;
  830. unsigned char *cdb = cmd->t_task_cdb;
  831. switch (cdb[0]) {
  832. case MODE_SELECT:
  833. *size = cdb[4];
  834. break;
  835. case MODE_SELECT_10:
  836. *size = (cdb[7] << 8) + cdb[8];
  837. break;
  838. case MODE_SENSE:
  839. *size = cdb[4];
  840. cmd->execute_cmd = spc_emulate_modesense;
  841. break;
  842. case MODE_SENSE_10:
  843. *size = (cdb[7] << 8) + cdb[8];
  844. cmd->execute_cmd = spc_emulate_modesense;
  845. break;
  846. case LOG_SELECT:
  847. case LOG_SENSE:
  848. *size = (cdb[7] << 8) + cdb[8];
  849. break;
  850. case PERSISTENT_RESERVE_IN:
  851. if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
  852. cmd->execute_cmd = target_scsi3_emulate_pr_in;
  853. *size = (cdb[7] << 8) + cdb[8];
  854. break;
  855. case PERSISTENT_RESERVE_OUT:
  856. if (su_dev->t10_pr.res_type == SPC3_PERSISTENT_RESERVATIONS)
  857. cmd->execute_cmd = target_scsi3_emulate_pr_out;
  858. *size = (cdb[7] << 8) + cdb[8];
  859. break;
  860. case RELEASE:
  861. case RELEASE_10:
  862. if (cdb[0] == RELEASE_10)
  863. *size = (cdb[7] << 8) | cdb[8];
  864. else
  865. *size = cmd->data_length;
  866. if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
  867. cmd->execute_cmd = target_scsi2_reservation_release;
  868. break;
  869. case RESERVE:
  870. case RESERVE_10:
  871. /*
  872. * The SPC-2 RESERVE does not contain a size in the SCSI CDB.
  873. * Assume the passthrough or $FABRIC_MOD will tell us about it.
  874. */
  875. if (cdb[0] == RESERVE_10)
  876. *size = (cdb[7] << 8) | cdb[8];
  877. else
  878. *size = cmd->data_length;
  879. /*
  880. * Setup the legacy emulated handler for SPC-2 and
  881. * >= SPC-3 compatible reservation handling (CRH=1)
  882. * Otherwise, we assume the underlying SCSI logic is
  883. * is running in SPC_PASSTHROUGH, and wants reservations
  884. * emulation disabled.
  885. */
  886. if (su_dev->t10_pr.res_type != SPC_PASSTHROUGH)
  887. cmd->execute_cmd = target_scsi2_reservation_reserve;
  888. break;
  889. case REQUEST_SENSE:
  890. *size = cdb[4];
  891. cmd->execute_cmd = spc_emulate_request_sense;
  892. break;
  893. case INQUIRY:
  894. *size = (cdb[3] << 8) + cdb[4];
  895. /*
  896. * Do implict HEAD_OF_QUEUE processing for INQUIRY.
  897. * See spc4r17 section 5.3
  898. */
  899. if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
  900. cmd->sam_task_attr = MSG_HEAD_TAG;
  901. cmd->execute_cmd = spc_emulate_inquiry;
  902. break;
  903. case SECURITY_PROTOCOL_IN:
  904. case SECURITY_PROTOCOL_OUT:
  905. *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
  906. break;
  907. case EXTENDED_COPY:
  908. case READ_ATTRIBUTE:
  909. case RECEIVE_COPY_RESULTS:
  910. case WRITE_ATTRIBUTE:
  911. *size = (cdb[10] << 24) | (cdb[11] << 16) |
  912. (cdb[12] << 8) | cdb[13];
  913. break;
  914. case RECEIVE_DIAGNOSTIC:
  915. case SEND_DIAGNOSTIC:
  916. *size = (cdb[3] << 8) | cdb[4];
  917. break;
  918. case WRITE_BUFFER:
  919. *size = (cdb[6] << 16) + (cdb[7] << 8) + cdb[8];
  920. break;
  921. case REPORT_LUNS:
  922. cmd->execute_cmd = target_report_luns;
  923. *size = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
  924. /*
  925. * Do implict HEAD_OF_QUEUE processing for REPORT_LUNS
  926. * See spc4r17 section 5.3
  927. */
  928. if (cmd->se_dev->dev_task_attr_type == SAM_TASK_ATTR_EMULATED)
  929. cmd->sam_task_attr = MSG_HEAD_TAG;
  930. break;
  931. case TEST_UNIT_READY:
  932. cmd->execute_cmd = spc_emulate_testunitready;
  933. *size = 0;
  934. break;
  935. case MAINTENANCE_IN:
  936. if (dev->transport->get_device_type(dev) != TYPE_ROM) {
  937. /*
  938. * MAINTENANCE_IN from SCC-2
  939. * Check for emulated MI_REPORT_TARGET_PGS
  940. */
  941. if ((cdb[1] & 0x1f) == MI_REPORT_TARGET_PGS &&
  942. su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
  943. cmd->execute_cmd =
  944. target_emulate_report_target_port_groups;
  945. }
  946. *size = get_unaligned_be32(&cdb[6]);
  947. } else {
  948. /*
  949. * GPCMD_SEND_KEY from multi media commands
  950. */
  951. *size = get_unaligned_be16(&cdb[8]);
  952. }
  953. break;
  954. case MAINTENANCE_OUT:
  955. if (dev->transport->get_device_type(dev) != TYPE_ROM) {
  956. /*
  957. * MAINTENANCE_OUT from SCC-2
  958. * Check for emulated MO_SET_TARGET_PGS.
  959. */
  960. if (cdb[1] == MO_SET_TARGET_PGS &&
  961. su_dev->t10_alua.alua_type == SPC3_ALUA_EMULATED) {
  962. cmd->execute_cmd =
  963. target_emulate_set_target_port_groups;
  964. }
  965. *size = get_unaligned_be32(&cdb[6]);
  966. } else {
  967. /*
  968. * GPCMD_SEND_KEY from multi media commands
  969. */
  970. *size = get_unaligned_be16(&cdb[8]);
  971. }
  972. break;
  973. default:
  974. pr_warn("TARGET_CORE[%s]: Unsupported SCSI Opcode"
  975. " 0x%02x, sending CHECK_CONDITION.\n",
  976. cmd->se_tfo->get_fabric_name(), cdb[0]);
  977. cmd->se_cmd_flags |= SCF_SCSI_CDB_EXCEPTION;
  978. cmd->scsi_sense_reason = TCM_UNSUPPORTED_SCSI_OPCODE;
  979. return -EINVAL;
  980. }
  981. return 0;
  982. }
  983. EXPORT_SYMBOL(spc_parse_cdb);