target_core_sbc.c 39 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480
  1. /*
  2. * SCSI Block Commands (SBC) parsing and emulation.
  3. *
  4. * (c) Copyright 2002-2013 Datera, Inc.
  5. *
  6. * Nicholas A. Bellinger <nab@kernel.org>
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. */
  22. #include <linux/kernel.h>
  23. #include <linux/module.h>
  24. #include <linux/ratelimit.h>
  25. #include <linux/crc-t10dif.h>
  26. #include <linux/t10-pi.h>
  27. #include <asm/unaligned.h>
  28. #include <scsi/scsi_proto.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_ua.h"
  35. #include "target_core_alua.h"
  36. static sense_reason_t
  37. sbc_check_prot(struct se_device *, struct se_cmd *, unsigned char *, u32, bool);
  38. static sense_reason_t sbc_execute_unmap(struct se_cmd *cmd);
  39. static sense_reason_t
  40. sbc_emulate_readcapacity(struct se_cmd *cmd)
  41. {
  42. struct se_device *dev = cmd->se_dev;
  43. unsigned char *cdb = cmd->t_task_cdb;
  44. unsigned long long blocks_long = dev->transport->get_blocks(dev);
  45. unsigned char *rbuf;
  46. unsigned char buf[8];
  47. u32 blocks;
  48. /*
  49. * SBC-2 says:
  50. * If the PMI bit is set to zero and the LOGICAL BLOCK
  51. * ADDRESS field is not set to zero, the device server shall
  52. * terminate the command with CHECK CONDITION status with
  53. * the sense key set to ILLEGAL REQUEST and the additional
  54. * sense code set to INVALID FIELD IN CDB.
  55. *
  56. * In SBC-3, these fields are obsolete, but some SCSI
  57. * compliance tests actually check this, so we might as well
  58. * follow SBC-2.
  59. */
  60. if (!(cdb[8] & 1) && !!(cdb[2] | cdb[3] | cdb[4] | cdb[5]))
  61. return TCM_INVALID_CDB_FIELD;
  62. if (blocks_long >= 0x00000000ffffffff)
  63. blocks = 0xffffffff;
  64. else
  65. blocks = (u32)blocks_long;
  66. buf[0] = (blocks >> 24) & 0xff;
  67. buf[1] = (blocks >> 16) & 0xff;
  68. buf[2] = (blocks >> 8) & 0xff;
  69. buf[3] = blocks & 0xff;
  70. buf[4] = (dev->dev_attrib.block_size >> 24) & 0xff;
  71. buf[5] = (dev->dev_attrib.block_size >> 16) & 0xff;
  72. buf[6] = (dev->dev_attrib.block_size >> 8) & 0xff;
  73. buf[7] = dev->dev_attrib.block_size & 0xff;
  74. rbuf = transport_kmap_data_sg(cmd);
  75. if (rbuf) {
  76. memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
  77. transport_kunmap_data_sg(cmd);
  78. }
  79. target_complete_cmd_with_length(cmd, GOOD, 8);
  80. return 0;
  81. }
  82. static sense_reason_t
  83. sbc_emulate_readcapacity_16(struct se_cmd *cmd)
  84. {
  85. struct se_device *dev = cmd->se_dev;
  86. struct se_session *sess = cmd->se_sess;
  87. int pi_prot_type = dev->dev_attrib.pi_prot_type;
  88. unsigned char *rbuf;
  89. unsigned char buf[32];
  90. unsigned long long blocks = dev->transport->get_blocks(dev);
  91. memset(buf, 0, sizeof(buf));
  92. buf[0] = (blocks >> 56) & 0xff;
  93. buf[1] = (blocks >> 48) & 0xff;
  94. buf[2] = (blocks >> 40) & 0xff;
  95. buf[3] = (blocks >> 32) & 0xff;
  96. buf[4] = (blocks >> 24) & 0xff;
  97. buf[5] = (blocks >> 16) & 0xff;
  98. buf[6] = (blocks >> 8) & 0xff;
  99. buf[7] = blocks & 0xff;
  100. buf[8] = (dev->dev_attrib.block_size >> 24) & 0xff;
  101. buf[9] = (dev->dev_attrib.block_size >> 16) & 0xff;
  102. buf[10] = (dev->dev_attrib.block_size >> 8) & 0xff;
  103. buf[11] = dev->dev_attrib.block_size & 0xff;
  104. /*
  105. * Set P_TYPE and PROT_EN bits for DIF support
  106. */
  107. if (sess->sup_prot_ops & (TARGET_PROT_DIN_PASS | TARGET_PROT_DOUT_PASS)) {
  108. /*
  109. * Only override a device's pi_prot_type if no T10-PI is
  110. * available, and sess_prot_type has been explicitly enabled.
  111. */
  112. if (!pi_prot_type)
  113. pi_prot_type = sess->sess_prot_type;
  114. if (pi_prot_type)
  115. buf[12] = (pi_prot_type - 1) << 1 | 0x1;
  116. }
  117. if (dev->transport->get_lbppbe)
  118. buf[13] = dev->transport->get_lbppbe(dev) & 0x0f;
  119. if (dev->transport->get_alignment_offset_lbas) {
  120. u16 lalba = dev->transport->get_alignment_offset_lbas(dev);
  121. buf[14] = (lalba >> 8) & 0x3f;
  122. buf[15] = lalba & 0xff;
  123. }
  124. /*
  125. * Set Thin Provisioning Enable bit following sbc3r22 in section
  126. * READ CAPACITY (16) byte 14 if emulate_tpu or emulate_tpws is enabled.
  127. */
  128. if (dev->dev_attrib.emulate_tpu || dev->dev_attrib.emulate_tpws) {
  129. buf[14] |= 0x80;
  130. /*
  131. * LBPRZ signifies that zeroes will be read back from an LBA after
  132. * an UNMAP or WRITE SAME w/ unmap bit (sbc3r36 5.16.2)
  133. */
  134. if (dev->dev_attrib.unmap_zeroes_data)
  135. buf[14] |= 0x40;
  136. }
  137. rbuf = transport_kmap_data_sg(cmd);
  138. if (rbuf) {
  139. memcpy(rbuf, buf, min_t(u32, sizeof(buf), cmd->data_length));
  140. transport_kunmap_data_sg(cmd);
  141. }
  142. target_complete_cmd_with_length(cmd, GOOD, 32);
  143. return 0;
  144. }
  145. static sense_reason_t
  146. sbc_emulate_startstop(struct se_cmd *cmd)
  147. {
  148. unsigned char *cdb = cmd->t_task_cdb;
  149. /*
  150. * See sbc3r36 section 5.25
  151. * Immediate bit should be set since there is nothing to complete
  152. * POWER CONDITION MODIFIER 0h
  153. */
  154. if (!(cdb[1] & 1) || cdb[2] || cdb[3])
  155. return TCM_INVALID_CDB_FIELD;
  156. /*
  157. * See sbc3r36 section 5.25
  158. * POWER CONDITION 0h START_VALID - process START and LOEJ
  159. */
  160. if (cdb[4] >> 4 & 0xf)
  161. return TCM_INVALID_CDB_FIELD;
  162. /*
  163. * See sbc3r36 section 5.25
  164. * LOEJ 0h - nothing to load or unload
  165. * START 1h - we are ready
  166. */
  167. if (!(cdb[4] & 1) || (cdb[4] & 2) || (cdb[4] & 4))
  168. return TCM_INVALID_CDB_FIELD;
  169. target_complete_cmd(cmd, SAM_STAT_GOOD);
  170. return 0;
  171. }
  172. sector_t sbc_get_write_same_sectors(struct se_cmd *cmd)
  173. {
  174. u32 num_blocks;
  175. if (cmd->t_task_cdb[0] == WRITE_SAME)
  176. num_blocks = get_unaligned_be16(&cmd->t_task_cdb[7]);
  177. else if (cmd->t_task_cdb[0] == WRITE_SAME_16)
  178. num_blocks = get_unaligned_be32(&cmd->t_task_cdb[10]);
  179. else /* WRITE_SAME_32 via VARIABLE_LENGTH_CMD */
  180. num_blocks = get_unaligned_be32(&cmd->t_task_cdb[28]);
  181. /*
  182. * Use the explicit range when non zero is supplied, otherwise calculate
  183. * the remaining range based on ->get_blocks() - starting LBA.
  184. */
  185. if (num_blocks)
  186. return num_blocks;
  187. return cmd->se_dev->transport->get_blocks(cmd->se_dev) -
  188. cmd->t_task_lba + 1;
  189. }
  190. EXPORT_SYMBOL(sbc_get_write_same_sectors);
  191. static sense_reason_t
  192. sbc_execute_write_same_unmap(struct se_cmd *cmd)
  193. {
  194. struct sbc_ops *ops = cmd->protocol_data;
  195. sector_t nolb = sbc_get_write_same_sectors(cmd);
  196. sense_reason_t ret;
  197. if (nolb) {
  198. ret = ops->execute_unmap(cmd, cmd->t_task_lba, nolb);
  199. if (ret)
  200. return ret;
  201. }
  202. target_complete_cmd(cmd, GOOD);
  203. return 0;
  204. }
  205. static sense_reason_t
  206. sbc_emulate_noop(struct se_cmd *cmd)
  207. {
  208. target_complete_cmd(cmd, GOOD);
  209. return 0;
  210. }
  211. static inline u32 sbc_get_size(struct se_cmd *cmd, u32 sectors)
  212. {
  213. return cmd->se_dev->dev_attrib.block_size * sectors;
  214. }
  215. static inline u32 transport_get_sectors_6(unsigned char *cdb)
  216. {
  217. /*
  218. * Use 8-bit sector value. SBC-3 says:
  219. *
  220. * A TRANSFER LENGTH field set to zero specifies that 256
  221. * logical blocks shall be written. Any other value
  222. * specifies the number of logical blocks that shall be
  223. * written.
  224. */
  225. return cdb[4] ? : 256;
  226. }
  227. static inline u32 transport_get_sectors_10(unsigned char *cdb)
  228. {
  229. return (u32)(cdb[7] << 8) + cdb[8];
  230. }
  231. static inline u32 transport_get_sectors_12(unsigned char *cdb)
  232. {
  233. return (u32)(cdb[6] << 24) + (cdb[7] << 16) + (cdb[8] << 8) + cdb[9];
  234. }
  235. static inline u32 transport_get_sectors_16(unsigned char *cdb)
  236. {
  237. return (u32)(cdb[10] << 24) + (cdb[11] << 16) +
  238. (cdb[12] << 8) + cdb[13];
  239. }
  240. /*
  241. * Used for VARIABLE_LENGTH_CDB WRITE_32 and READ_32 variants
  242. */
  243. static inline u32 transport_get_sectors_32(unsigned char *cdb)
  244. {
  245. return (u32)(cdb[28] << 24) + (cdb[29] << 16) +
  246. (cdb[30] << 8) + cdb[31];
  247. }
  248. static inline u32 transport_lba_21(unsigned char *cdb)
  249. {
  250. return ((cdb[1] & 0x1f) << 16) | (cdb[2] << 8) | cdb[3];
  251. }
  252. static inline u32 transport_lba_32(unsigned char *cdb)
  253. {
  254. return (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
  255. }
  256. static inline unsigned long long transport_lba_64(unsigned char *cdb)
  257. {
  258. unsigned int __v1, __v2;
  259. __v1 = (cdb[2] << 24) | (cdb[3] << 16) | (cdb[4] << 8) | cdb[5];
  260. __v2 = (cdb[6] << 24) | (cdb[7] << 16) | (cdb[8] << 8) | cdb[9];
  261. return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
  262. }
  263. /*
  264. * For VARIABLE_LENGTH_CDB w/ 32 byte extended CDBs
  265. */
  266. static inline unsigned long long transport_lba_64_ext(unsigned char *cdb)
  267. {
  268. unsigned int __v1, __v2;
  269. __v1 = (cdb[12] << 24) | (cdb[13] << 16) | (cdb[14] << 8) | cdb[15];
  270. __v2 = (cdb[16] << 24) | (cdb[17] << 16) | (cdb[18] << 8) | cdb[19];
  271. return ((unsigned long long)__v2) | (unsigned long long)__v1 << 32;
  272. }
  273. static sense_reason_t
  274. sbc_setup_write_same(struct se_cmd *cmd, unsigned char *flags, struct sbc_ops *ops)
  275. {
  276. struct se_device *dev = cmd->se_dev;
  277. sector_t end_lba = dev->transport->get_blocks(dev) + 1;
  278. unsigned int sectors = sbc_get_write_same_sectors(cmd);
  279. sense_reason_t ret;
  280. if ((flags[0] & 0x04) || (flags[0] & 0x02)) {
  281. pr_err("WRITE_SAME PBDATA and LBDATA"
  282. " bits not supported for Block Discard"
  283. " Emulation\n");
  284. return TCM_UNSUPPORTED_SCSI_OPCODE;
  285. }
  286. if (sectors > cmd->se_dev->dev_attrib.max_write_same_len) {
  287. pr_warn("WRITE_SAME sectors: %u exceeds max_write_same_len: %u\n",
  288. sectors, cmd->se_dev->dev_attrib.max_write_same_len);
  289. return TCM_INVALID_CDB_FIELD;
  290. }
  291. /*
  292. * Sanity check for LBA wrap and request past end of device.
  293. */
  294. if (((cmd->t_task_lba + sectors) < cmd->t_task_lba) ||
  295. ((cmd->t_task_lba + sectors) > end_lba)) {
  296. pr_err("WRITE_SAME exceeds last lba %llu (lba %llu, sectors %u)\n",
  297. (unsigned long long)end_lba, cmd->t_task_lba, sectors);
  298. return TCM_ADDRESS_OUT_OF_RANGE;
  299. }
  300. /* We always have ANC_SUP == 0 so setting ANCHOR is always an error */
  301. if (flags[0] & 0x10) {
  302. pr_warn("WRITE SAME with ANCHOR not supported\n");
  303. return TCM_INVALID_CDB_FIELD;
  304. }
  305. /*
  306. * Special case for WRITE_SAME w/ UNMAP=1 that ends up getting
  307. * translated into block discard requests within backend code.
  308. */
  309. if (flags[0] & 0x08) {
  310. if (!ops->execute_unmap)
  311. return TCM_UNSUPPORTED_SCSI_OPCODE;
  312. if (!dev->dev_attrib.emulate_tpws) {
  313. pr_err("Got WRITE_SAME w/ UNMAP=1, but backend device"
  314. " has emulate_tpws disabled\n");
  315. return TCM_UNSUPPORTED_SCSI_OPCODE;
  316. }
  317. cmd->execute_cmd = sbc_execute_write_same_unmap;
  318. return 0;
  319. }
  320. if (!ops->execute_write_same)
  321. return TCM_UNSUPPORTED_SCSI_OPCODE;
  322. ret = sbc_check_prot(dev, cmd, &cmd->t_task_cdb[0], sectors, true);
  323. if (ret)
  324. return ret;
  325. cmd->execute_cmd = ops->execute_write_same;
  326. return 0;
  327. }
  328. static sense_reason_t xdreadwrite_callback(struct se_cmd *cmd, bool success,
  329. int *post_ret)
  330. {
  331. unsigned char *buf, *addr;
  332. struct scatterlist *sg;
  333. unsigned int offset;
  334. sense_reason_t ret = TCM_NO_SENSE;
  335. int i, count;
  336. /*
  337. * From sbc3r22.pdf section 5.48 XDWRITEREAD (10) command
  338. *
  339. * 1) read the specified logical block(s);
  340. * 2) transfer logical blocks from the data-out buffer;
  341. * 3) XOR the logical blocks transferred from the data-out buffer with
  342. * the logical blocks read, storing the resulting XOR data in a buffer;
  343. * 4) if the DISABLE WRITE bit is set to zero, then write the logical
  344. * blocks transferred from the data-out buffer; and
  345. * 5) transfer the resulting XOR data to the data-in buffer.
  346. */
  347. buf = kmalloc(cmd->data_length, GFP_KERNEL);
  348. if (!buf) {
  349. pr_err("Unable to allocate xor_callback buf\n");
  350. return TCM_OUT_OF_RESOURCES;
  351. }
  352. /*
  353. * Copy the scatterlist WRITE buffer located at cmd->t_data_sg
  354. * into the locally allocated *buf
  355. */
  356. sg_copy_to_buffer(cmd->t_data_sg,
  357. cmd->t_data_nents,
  358. buf,
  359. cmd->data_length);
  360. /*
  361. * Now perform the XOR against the BIDI read memory located at
  362. * cmd->t_mem_bidi_list
  363. */
  364. offset = 0;
  365. for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, count) {
  366. addr = kmap_atomic(sg_page(sg));
  367. if (!addr) {
  368. ret = TCM_OUT_OF_RESOURCES;
  369. goto out;
  370. }
  371. for (i = 0; i < sg->length; i++)
  372. *(addr + sg->offset + i) ^= *(buf + offset + i);
  373. offset += sg->length;
  374. kunmap_atomic(addr);
  375. }
  376. out:
  377. kfree(buf);
  378. return ret;
  379. }
  380. static sense_reason_t
  381. sbc_execute_rw(struct se_cmd *cmd)
  382. {
  383. struct sbc_ops *ops = cmd->protocol_data;
  384. return ops->execute_rw(cmd, cmd->t_data_sg, cmd->t_data_nents,
  385. cmd->data_direction);
  386. }
  387. static sense_reason_t compare_and_write_post(struct se_cmd *cmd, bool success,
  388. int *post_ret)
  389. {
  390. struct se_device *dev = cmd->se_dev;
  391. /*
  392. * Only set SCF_COMPARE_AND_WRITE_POST to force a response fall-through
  393. * within target_complete_ok_work() if the command was successfully
  394. * sent to the backend driver.
  395. */
  396. spin_lock_irq(&cmd->t_state_lock);
  397. if ((cmd->transport_state & CMD_T_SENT) && !cmd->scsi_status) {
  398. cmd->se_cmd_flags |= SCF_COMPARE_AND_WRITE_POST;
  399. *post_ret = 1;
  400. }
  401. spin_unlock_irq(&cmd->t_state_lock);
  402. /*
  403. * Unlock ->caw_sem originally obtained during sbc_compare_and_write()
  404. * before the original READ I/O submission.
  405. */
  406. up(&dev->caw_sem);
  407. return TCM_NO_SENSE;
  408. }
  409. static sense_reason_t compare_and_write_callback(struct se_cmd *cmd, bool success,
  410. int *post_ret)
  411. {
  412. struct se_device *dev = cmd->se_dev;
  413. struct scatterlist *write_sg = NULL, *sg;
  414. unsigned char *buf = NULL, *addr;
  415. struct sg_mapping_iter m;
  416. unsigned int offset = 0, len;
  417. unsigned int nlbas = cmd->t_task_nolb;
  418. unsigned int block_size = dev->dev_attrib.block_size;
  419. unsigned int compare_len = (nlbas * block_size);
  420. sense_reason_t ret = TCM_NO_SENSE;
  421. int rc, i;
  422. /*
  423. * Handle early failure in transport_generic_request_failure(),
  424. * which will not have taken ->caw_sem yet..
  425. */
  426. if (!success && (!cmd->t_data_sg || !cmd->t_bidi_data_sg))
  427. return TCM_NO_SENSE;
  428. /*
  429. * Handle special case for zero-length COMPARE_AND_WRITE
  430. */
  431. if (!cmd->data_length)
  432. goto out;
  433. /*
  434. * Immediately exit + release dev->caw_sem if command has already
  435. * been failed with a non-zero SCSI status.
  436. */
  437. if (cmd->scsi_status) {
  438. pr_err("compare_and_write_callback: non zero scsi_status:"
  439. " 0x%02x\n", cmd->scsi_status);
  440. goto out;
  441. }
  442. buf = kzalloc(cmd->data_length, GFP_KERNEL);
  443. if (!buf) {
  444. pr_err("Unable to allocate compare_and_write buf\n");
  445. ret = TCM_OUT_OF_RESOURCES;
  446. goto out;
  447. }
  448. write_sg = kmalloc(sizeof(struct scatterlist) * cmd->t_data_nents,
  449. GFP_KERNEL);
  450. if (!write_sg) {
  451. pr_err("Unable to allocate compare_and_write sg\n");
  452. ret = TCM_OUT_OF_RESOURCES;
  453. goto out;
  454. }
  455. sg_init_table(write_sg, cmd->t_data_nents);
  456. /*
  457. * Setup verify and write data payloads from total NumberLBAs.
  458. */
  459. rc = sg_copy_to_buffer(cmd->t_data_sg, cmd->t_data_nents, buf,
  460. cmd->data_length);
  461. if (!rc) {
  462. pr_err("sg_copy_to_buffer() failed for compare_and_write\n");
  463. ret = TCM_OUT_OF_RESOURCES;
  464. goto out;
  465. }
  466. /*
  467. * Compare against SCSI READ payload against verify payload
  468. */
  469. for_each_sg(cmd->t_bidi_data_sg, sg, cmd->t_bidi_data_nents, i) {
  470. addr = (unsigned char *)kmap_atomic(sg_page(sg));
  471. if (!addr) {
  472. ret = TCM_OUT_OF_RESOURCES;
  473. goto out;
  474. }
  475. len = min(sg->length, compare_len);
  476. if (memcmp(addr, buf + offset, len)) {
  477. pr_warn("Detected MISCOMPARE for addr: %p buf: %p\n",
  478. addr, buf + offset);
  479. kunmap_atomic(addr);
  480. goto miscompare;
  481. }
  482. kunmap_atomic(addr);
  483. offset += len;
  484. compare_len -= len;
  485. if (!compare_len)
  486. break;
  487. }
  488. i = 0;
  489. len = cmd->t_task_nolb * block_size;
  490. sg_miter_start(&m, cmd->t_data_sg, cmd->t_data_nents, SG_MITER_TO_SG);
  491. /*
  492. * Currently assumes NoLB=1 and SGLs are PAGE_SIZE..
  493. */
  494. while (len) {
  495. sg_miter_next(&m);
  496. if (block_size < PAGE_SIZE) {
  497. sg_set_page(&write_sg[i], m.page, block_size,
  498. m.piter.sg->offset + block_size);
  499. } else {
  500. sg_miter_next(&m);
  501. sg_set_page(&write_sg[i], m.page, block_size,
  502. m.piter.sg->offset);
  503. }
  504. len -= block_size;
  505. i++;
  506. }
  507. sg_miter_stop(&m);
  508. /*
  509. * Save the original SGL + nents values before updating to new
  510. * assignments, to be released in transport_free_pages() ->
  511. * transport_reset_sgl_orig()
  512. */
  513. cmd->t_data_sg_orig = cmd->t_data_sg;
  514. cmd->t_data_sg = write_sg;
  515. cmd->t_data_nents_orig = cmd->t_data_nents;
  516. cmd->t_data_nents = 1;
  517. cmd->sam_task_attr = TCM_HEAD_TAG;
  518. cmd->transport_complete_callback = compare_and_write_post;
  519. /*
  520. * Now reset ->execute_cmd() to the normal sbc_execute_rw() handler
  521. * for submitting the adjusted SGL to write instance user-data.
  522. */
  523. cmd->execute_cmd = sbc_execute_rw;
  524. spin_lock_irq(&cmd->t_state_lock);
  525. cmd->t_state = TRANSPORT_PROCESSING;
  526. cmd->transport_state |= CMD_T_ACTIVE|CMD_T_BUSY|CMD_T_SENT;
  527. spin_unlock_irq(&cmd->t_state_lock);
  528. __target_execute_cmd(cmd, false);
  529. kfree(buf);
  530. return ret;
  531. miscompare:
  532. pr_warn("Target/%s: Send MISCOMPARE check condition and sense\n",
  533. dev->transport->name);
  534. ret = TCM_MISCOMPARE_VERIFY;
  535. out:
  536. /*
  537. * In the MISCOMPARE or failure case, unlock ->caw_sem obtained in
  538. * sbc_compare_and_write() before the original READ I/O submission.
  539. */
  540. up(&dev->caw_sem);
  541. kfree(write_sg);
  542. kfree(buf);
  543. return ret;
  544. }
  545. static sense_reason_t
  546. sbc_compare_and_write(struct se_cmd *cmd)
  547. {
  548. struct sbc_ops *ops = cmd->protocol_data;
  549. struct se_device *dev = cmd->se_dev;
  550. sense_reason_t ret;
  551. int rc;
  552. /*
  553. * Submit the READ first for COMPARE_AND_WRITE to perform the
  554. * comparision using SGLs at cmd->t_bidi_data_sg..
  555. */
  556. rc = down_interruptible(&dev->caw_sem);
  557. if (rc != 0) {
  558. cmd->transport_complete_callback = NULL;
  559. return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  560. }
  561. /*
  562. * Reset cmd->data_length to individual block_size in order to not
  563. * confuse backend drivers that depend on this value matching the
  564. * size of the I/O being submitted.
  565. */
  566. cmd->data_length = cmd->t_task_nolb * dev->dev_attrib.block_size;
  567. ret = ops->execute_rw(cmd, cmd->t_bidi_data_sg, cmd->t_bidi_data_nents,
  568. DMA_FROM_DEVICE);
  569. if (ret) {
  570. cmd->transport_complete_callback = NULL;
  571. up(&dev->caw_sem);
  572. return ret;
  573. }
  574. /*
  575. * Unlock of dev->caw_sem to occur in compare_and_write_callback()
  576. * upon MISCOMPARE, or in compare_and_write_done() upon completion
  577. * of WRITE instance user-data.
  578. */
  579. return TCM_NO_SENSE;
  580. }
  581. static int
  582. sbc_set_prot_op_checks(u8 protect, bool fabric_prot, enum target_prot_type prot_type,
  583. bool is_write, struct se_cmd *cmd)
  584. {
  585. if (is_write) {
  586. cmd->prot_op = fabric_prot ? TARGET_PROT_DOUT_STRIP :
  587. protect ? TARGET_PROT_DOUT_PASS :
  588. TARGET_PROT_DOUT_INSERT;
  589. switch (protect) {
  590. case 0x0:
  591. case 0x3:
  592. cmd->prot_checks = 0;
  593. break;
  594. case 0x1:
  595. case 0x5:
  596. cmd->prot_checks = TARGET_DIF_CHECK_GUARD;
  597. if (prot_type == TARGET_DIF_TYPE1_PROT)
  598. cmd->prot_checks |= TARGET_DIF_CHECK_REFTAG;
  599. break;
  600. case 0x2:
  601. if (prot_type == TARGET_DIF_TYPE1_PROT)
  602. cmd->prot_checks = TARGET_DIF_CHECK_REFTAG;
  603. break;
  604. case 0x4:
  605. cmd->prot_checks = TARGET_DIF_CHECK_GUARD;
  606. break;
  607. default:
  608. pr_err("Unsupported protect field %d\n", protect);
  609. return -EINVAL;
  610. }
  611. } else {
  612. cmd->prot_op = fabric_prot ? TARGET_PROT_DIN_INSERT :
  613. protect ? TARGET_PROT_DIN_PASS :
  614. TARGET_PROT_DIN_STRIP;
  615. switch (protect) {
  616. case 0x0:
  617. case 0x1:
  618. case 0x5:
  619. cmd->prot_checks = TARGET_DIF_CHECK_GUARD;
  620. if (prot_type == TARGET_DIF_TYPE1_PROT)
  621. cmd->prot_checks |= TARGET_DIF_CHECK_REFTAG;
  622. break;
  623. case 0x2:
  624. if (prot_type == TARGET_DIF_TYPE1_PROT)
  625. cmd->prot_checks = TARGET_DIF_CHECK_REFTAG;
  626. break;
  627. case 0x3:
  628. cmd->prot_checks = 0;
  629. break;
  630. case 0x4:
  631. cmd->prot_checks = TARGET_DIF_CHECK_GUARD;
  632. break;
  633. default:
  634. pr_err("Unsupported protect field %d\n", protect);
  635. return -EINVAL;
  636. }
  637. }
  638. return 0;
  639. }
  640. static sense_reason_t
  641. sbc_check_prot(struct se_device *dev, struct se_cmd *cmd, unsigned char *cdb,
  642. u32 sectors, bool is_write)
  643. {
  644. u8 protect = cdb[1] >> 5;
  645. int sp_ops = cmd->se_sess->sup_prot_ops;
  646. int pi_prot_type = dev->dev_attrib.pi_prot_type;
  647. bool fabric_prot = false;
  648. if (!cmd->t_prot_sg || !cmd->t_prot_nents) {
  649. if (unlikely(protect &&
  650. !dev->dev_attrib.pi_prot_type && !cmd->se_sess->sess_prot_type)) {
  651. pr_err("CDB contains protect bit, but device + fabric does"
  652. " not advertise PROTECT=1 feature bit\n");
  653. return TCM_INVALID_CDB_FIELD;
  654. }
  655. if (cmd->prot_pto)
  656. return TCM_NO_SENSE;
  657. }
  658. switch (dev->dev_attrib.pi_prot_type) {
  659. case TARGET_DIF_TYPE3_PROT:
  660. cmd->reftag_seed = 0xffffffff;
  661. break;
  662. case TARGET_DIF_TYPE2_PROT:
  663. if (protect)
  664. return TCM_INVALID_CDB_FIELD;
  665. cmd->reftag_seed = cmd->t_task_lba;
  666. break;
  667. case TARGET_DIF_TYPE1_PROT:
  668. cmd->reftag_seed = cmd->t_task_lba;
  669. break;
  670. case TARGET_DIF_TYPE0_PROT:
  671. /*
  672. * See if the fabric supports T10-PI, and the session has been
  673. * configured to allow export PROTECT=1 feature bit with backend
  674. * devices that don't support T10-PI.
  675. */
  676. fabric_prot = is_write ?
  677. !!(sp_ops & (TARGET_PROT_DOUT_PASS | TARGET_PROT_DOUT_STRIP)) :
  678. !!(sp_ops & (TARGET_PROT_DIN_PASS | TARGET_PROT_DIN_INSERT));
  679. if (fabric_prot && cmd->se_sess->sess_prot_type) {
  680. pi_prot_type = cmd->se_sess->sess_prot_type;
  681. break;
  682. }
  683. if (!protect)
  684. return TCM_NO_SENSE;
  685. /* Fallthrough */
  686. default:
  687. pr_err("Unable to determine pi_prot_type for CDB: 0x%02x "
  688. "PROTECT: 0x%02x\n", cdb[0], protect);
  689. return TCM_INVALID_CDB_FIELD;
  690. }
  691. if (sbc_set_prot_op_checks(protect, fabric_prot, pi_prot_type, is_write, cmd))
  692. return TCM_INVALID_CDB_FIELD;
  693. cmd->prot_type = pi_prot_type;
  694. cmd->prot_length = dev->prot_length * sectors;
  695. /**
  696. * In case protection information exists over the wire
  697. * we modify command data length to describe pure data.
  698. * The actual transfer length is data length + protection
  699. * length
  700. **/
  701. if (protect)
  702. cmd->data_length = sectors * dev->dev_attrib.block_size;
  703. pr_debug("%s: prot_type=%d, data_length=%d, prot_length=%d "
  704. "prot_op=%d prot_checks=%d\n",
  705. __func__, cmd->prot_type, cmd->data_length, cmd->prot_length,
  706. cmd->prot_op, cmd->prot_checks);
  707. return TCM_NO_SENSE;
  708. }
  709. static int
  710. sbc_check_dpofua(struct se_device *dev, struct se_cmd *cmd, unsigned char *cdb)
  711. {
  712. if (cdb[1] & 0x10) {
  713. /* see explanation in spc_emulate_modesense */
  714. if (!target_check_fua(dev)) {
  715. pr_err("Got CDB: 0x%02x with DPO bit set, but device"
  716. " does not advertise support for DPO\n", cdb[0]);
  717. return -EINVAL;
  718. }
  719. }
  720. if (cdb[1] & 0x8) {
  721. if (!target_check_fua(dev)) {
  722. pr_err("Got CDB: 0x%02x with FUA bit set, but device"
  723. " does not advertise support for FUA write\n",
  724. cdb[0]);
  725. return -EINVAL;
  726. }
  727. cmd->se_cmd_flags |= SCF_FUA;
  728. }
  729. return 0;
  730. }
  731. sense_reason_t
  732. sbc_parse_cdb(struct se_cmd *cmd, struct sbc_ops *ops)
  733. {
  734. struct se_device *dev = cmd->se_dev;
  735. unsigned char *cdb = cmd->t_task_cdb;
  736. unsigned int size;
  737. u32 sectors = 0;
  738. sense_reason_t ret;
  739. cmd->protocol_data = ops;
  740. switch (cdb[0]) {
  741. case READ_6:
  742. sectors = transport_get_sectors_6(cdb);
  743. cmd->t_task_lba = transport_lba_21(cdb);
  744. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  745. cmd->execute_cmd = sbc_execute_rw;
  746. break;
  747. case READ_10:
  748. sectors = transport_get_sectors_10(cdb);
  749. cmd->t_task_lba = transport_lba_32(cdb);
  750. if (sbc_check_dpofua(dev, cmd, cdb))
  751. return TCM_INVALID_CDB_FIELD;
  752. ret = sbc_check_prot(dev, cmd, cdb, sectors, false);
  753. if (ret)
  754. return ret;
  755. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  756. cmd->execute_cmd = sbc_execute_rw;
  757. break;
  758. case READ_12:
  759. sectors = transport_get_sectors_12(cdb);
  760. cmd->t_task_lba = transport_lba_32(cdb);
  761. if (sbc_check_dpofua(dev, cmd, cdb))
  762. return TCM_INVALID_CDB_FIELD;
  763. ret = sbc_check_prot(dev, cmd, cdb, sectors, false);
  764. if (ret)
  765. return ret;
  766. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  767. cmd->execute_cmd = sbc_execute_rw;
  768. break;
  769. case READ_16:
  770. sectors = transport_get_sectors_16(cdb);
  771. cmd->t_task_lba = transport_lba_64(cdb);
  772. if (sbc_check_dpofua(dev, cmd, cdb))
  773. return TCM_INVALID_CDB_FIELD;
  774. ret = sbc_check_prot(dev, cmd, cdb, sectors, false);
  775. if (ret)
  776. return ret;
  777. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  778. cmd->execute_cmd = sbc_execute_rw;
  779. break;
  780. case WRITE_6:
  781. sectors = transport_get_sectors_6(cdb);
  782. cmd->t_task_lba = transport_lba_21(cdb);
  783. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  784. cmd->execute_cmd = sbc_execute_rw;
  785. break;
  786. case WRITE_10:
  787. case WRITE_VERIFY:
  788. sectors = transport_get_sectors_10(cdb);
  789. cmd->t_task_lba = transport_lba_32(cdb);
  790. if (sbc_check_dpofua(dev, cmd, cdb))
  791. return TCM_INVALID_CDB_FIELD;
  792. ret = sbc_check_prot(dev, cmd, cdb, sectors, true);
  793. if (ret)
  794. return ret;
  795. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  796. cmd->execute_cmd = sbc_execute_rw;
  797. break;
  798. case WRITE_12:
  799. sectors = transport_get_sectors_12(cdb);
  800. cmd->t_task_lba = transport_lba_32(cdb);
  801. if (sbc_check_dpofua(dev, cmd, cdb))
  802. return TCM_INVALID_CDB_FIELD;
  803. ret = sbc_check_prot(dev, cmd, cdb, sectors, true);
  804. if (ret)
  805. return ret;
  806. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  807. cmd->execute_cmd = sbc_execute_rw;
  808. break;
  809. case WRITE_16:
  810. sectors = transport_get_sectors_16(cdb);
  811. cmd->t_task_lba = transport_lba_64(cdb);
  812. if (sbc_check_dpofua(dev, cmd, cdb))
  813. return TCM_INVALID_CDB_FIELD;
  814. ret = sbc_check_prot(dev, cmd, cdb, sectors, true);
  815. if (ret)
  816. return ret;
  817. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  818. cmd->execute_cmd = sbc_execute_rw;
  819. break;
  820. case XDWRITEREAD_10:
  821. if (cmd->data_direction != DMA_TO_DEVICE ||
  822. !(cmd->se_cmd_flags & SCF_BIDI))
  823. return TCM_INVALID_CDB_FIELD;
  824. sectors = transport_get_sectors_10(cdb);
  825. if (sbc_check_dpofua(dev, cmd, cdb))
  826. return TCM_INVALID_CDB_FIELD;
  827. cmd->t_task_lba = transport_lba_32(cdb);
  828. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  829. /*
  830. * Setup BIDI XOR callback to be run after I/O completion.
  831. */
  832. cmd->execute_cmd = sbc_execute_rw;
  833. cmd->transport_complete_callback = &xdreadwrite_callback;
  834. break;
  835. case VARIABLE_LENGTH_CMD:
  836. {
  837. u16 service_action = get_unaligned_be16(&cdb[8]);
  838. switch (service_action) {
  839. case XDWRITEREAD_32:
  840. sectors = transport_get_sectors_32(cdb);
  841. if (sbc_check_dpofua(dev, cmd, cdb))
  842. return TCM_INVALID_CDB_FIELD;
  843. /*
  844. * Use WRITE_32 and READ_32 opcodes for the emulated
  845. * XDWRITE_READ_32 logic.
  846. */
  847. cmd->t_task_lba = transport_lba_64_ext(cdb);
  848. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB;
  849. /*
  850. * Setup BIDI XOR callback to be run during after I/O
  851. * completion.
  852. */
  853. cmd->execute_cmd = sbc_execute_rw;
  854. cmd->transport_complete_callback = &xdreadwrite_callback;
  855. break;
  856. case WRITE_SAME_32:
  857. sectors = transport_get_sectors_32(cdb);
  858. if (!sectors) {
  859. pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not"
  860. " supported\n");
  861. return TCM_INVALID_CDB_FIELD;
  862. }
  863. size = sbc_get_size(cmd, 1);
  864. cmd->t_task_lba = get_unaligned_be64(&cdb[12]);
  865. ret = sbc_setup_write_same(cmd, &cdb[10], ops);
  866. if (ret)
  867. return ret;
  868. break;
  869. default:
  870. pr_err("VARIABLE_LENGTH_CMD service action"
  871. " 0x%04x not supported\n", service_action);
  872. return TCM_UNSUPPORTED_SCSI_OPCODE;
  873. }
  874. break;
  875. }
  876. case COMPARE_AND_WRITE:
  877. sectors = cdb[13];
  878. /*
  879. * Currently enforce COMPARE_AND_WRITE for a single sector
  880. */
  881. if (sectors > 1) {
  882. pr_err("COMPARE_AND_WRITE contains NoLB: %u greater"
  883. " than 1\n", sectors);
  884. return TCM_INVALID_CDB_FIELD;
  885. }
  886. if (sbc_check_dpofua(dev, cmd, cdb))
  887. return TCM_INVALID_CDB_FIELD;
  888. /*
  889. * Double size because we have two buffers, note that
  890. * zero is not an error..
  891. */
  892. size = 2 * sbc_get_size(cmd, sectors);
  893. cmd->t_task_lba = get_unaligned_be64(&cdb[2]);
  894. cmd->t_task_nolb = sectors;
  895. cmd->se_cmd_flags |= SCF_SCSI_DATA_CDB | SCF_COMPARE_AND_WRITE;
  896. cmd->execute_cmd = sbc_compare_and_write;
  897. cmd->transport_complete_callback = compare_and_write_callback;
  898. break;
  899. case READ_CAPACITY:
  900. size = READ_CAP_LEN;
  901. cmd->execute_cmd = sbc_emulate_readcapacity;
  902. break;
  903. case SERVICE_ACTION_IN_16:
  904. switch (cmd->t_task_cdb[1] & 0x1f) {
  905. case SAI_READ_CAPACITY_16:
  906. cmd->execute_cmd = sbc_emulate_readcapacity_16;
  907. break;
  908. case SAI_REPORT_REFERRALS:
  909. cmd->execute_cmd = target_emulate_report_referrals;
  910. break;
  911. default:
  912. pr_err("Unsupported SA: 0x%02x\n",
  913. cmd->t_task_cdb[1] & 0x1f);
  914. return TCM_INVALID_CDB_FIELD;
  915. }
  916. size = (cdb[10] << 24) | (cdb[11] << 16) |
  917. (cdb[12] << 8) | cdb[13];
  918. break;
  919. case SYNCHRONIZE_CACHE:
  920. case SYNCHRONIZE_CACHE_16:
  921. if (cdb[0] == SYNCHRONIZE_CACHE) {
  922. sectors = transport_get_sectors_10(cdb);
  923. cmd->t_task_lba = transport_lba_32(cdb);
  924. } else {
  925. sectors = transport_get_sectors_16(cdb);
  926. cmd->t_task_lba = transport_lba_64(cdb);
  927. }
  928. if (ops->execute_sync_cache) {
  929. cmd->execute_cmd = ops->execute_sync_cache;
  930. goto check_lba;
  931. }
  932. size = 0;
  933. cmd->execute_cmd = sbc_emulate_noop;
  934. break;
  935. case UNMAP:
  936. if (!ops->execute_unmap)
  937. return TCM_UNSUPPORTED_SCSI_OPCODE;
  938. if (!dev->dev_attrib.emulate_tpu) {
  939. pr_err("Got UNMAP, but backend device has"
  940. " emulate_tpu disabled\n");
  941. return TCM_UNSUPPORTED_SCSI_OPCODE;
  942. }
  943. size = get_unaligned_be16(&cdb[7]);
  944. cmd->execute_cmd = sbc_execute_unmap;
  945. break;
  946. case WRITE_SAME_16:
  947. sectors = transport_get_sectors_16(cdb);
  948. if (!sectors) {
  949. pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
  950. return TCM_INVALID_CDB_FIELD;
  951. }
  952. size = sbc_get_size(cmd, 1);
  953. cmd->t_task_lba = get_unaligned_be64(&cdb[2]);
  954. ret = sbc_setup_write_same(cmd, &cdb[1], ops);
  955. if (ret)
  956. return ret;
  957. break;
  958. case WRITE_SAME:
  959. sectors = transport_get_sectors_10(cdb);
  960. if (!sectors) {
  961. pr_err("WSNZ=1, WRITE_SAME w/sectors=0 not supported\n");
  962. return TCM_INVALID_CDB_FIELD;
  963. }
  964. size = sbc_get_size(cmd, 1);
  965. cmd->t_task_lba = get_unaligned_be32(&cdb[2]);
  966. /*
  967. * Follow sbcr26 with WRITE_SAME (10) and check for the existence
  968. * of byte 1 bit 3 UNMAP instead of original reserved field
  969. */
  970. ret = sbc_setup_write_same(cmd, &cdb[1], ops);
  971. if (ret)
  972. return ret;
  973. break;
  974. case VERIFY:
  975. size = 0;
  976. sectors = transport_get_sectors_10(cdb);
  977. cmd->t_task_lba = transport_lba_32(cdb);
  978. cmd->execute_cmd = sbc_emulate_noop;
  979. goto check_lba;
  980. case REZERO_UNIT:
  981. case SEEK_6:
  982. case SEEK_10:
  983. /*
  984. * There are still clients out there which use these old SCSI-2
  985. * commands. This mainly happens when running VMs with legacy
  986. * guest systems, connected via SCSI command pass-through to
  987. * iSCSI targets. Make them happy and return status GOOD.
  988. */
  989. size = 0;
  990. cmd->execute_cmd = sbc_emulate_noop;
  991. break;
  992. case START_STOP:
  993. size = 0;
  994. cmd->execute_cmd = sbc_emulate_startstop;
  995. break;
  996. default:
  997. ret = spc_parse_cdb(cmd, &size);
  998. if (ret)
  999. return ret;
  1000. }
  1001. /* reject any command that we don't have a handler for */
  1002. if (!cmd->execute_cmd)
  1003. return TCM_UNSUPPORTED_SCSI_OPCODE;
  1004. if (cmd->se_cmd_flags & SCF_SCSI_DATA_CDB) {
  1005. unsigned long long end_lba;
  1006. check_lba:
  1007. end_lba = dev->transport->get_blocks(dev) + 1;
  1008. if (((cmd->t_task_lba + sectors) < cmd->t_task_lba) ||
  1009. ((cmd->t_task_lba + sectors) > end_lba)) {
  1010. pr_err("cmd exceeds last lba %llu "
  1011. "(lba %llu, sectors %u)\n",
  1012. end_lba, cmd->t_task_lba, sectors);
  1013. return TCM_ADDRESS_OUT_OF_RANGE;
  1014. }
  1015. if (!(cmd->se_cmd_flags & SCF_COMPARE_AND_WRITE))
  1016. size = sbc_get_size(cmd, sectors);
  1017. }
  1018. return target_cmd_size_check(cmd, size);
  1019. }
  1020. EXPORT_SYMBOL(sbc_parse_cdb);
  1021. u32 sbc_get_device_type(struct se_device *dev)
  1022. {
  1023. return TYPE_DISK;
  1024. }
  1025. EXPORT_SYMBOL(sbc_get_device_type);
  1026. static sense_reason_t
  1027. sbc_execute_unmap(struct se_cmd *cmd)
  1028. {
  1029. struct sbc_ops *ops = cmd->protocol_data;
  1030. struct se_device *dev = cmd->se_dev;
  1031. unsigned char *buf, *ptr = NULL;
  1032. sector_t lba;
  1033. int size;
  1034. u32 range;
  1035. sense_reason_t ret = 0;
  1036. int dl, bd_dl;
  1037. /* We never set ANC_SUP */
  1038. if (cmd->t_task_cdb[1])
  1039. return TCM_INVALID_CDB_FIELD;
  1040. if (cmd->data_length == 0) {
  1041. target_complete_cmd(cmd, SAM_STAT_GOOD);
  1042. return 0;
  1043. }
  1044. if (cmd->data_length < 8) {
  1045. pr_warn("UNMAP parameter list length %u too small\n",
  1046. cmd->data_length);
  1047. return TCM_PARAMETER_LIST_LENGTH_ERROR;
  1048. }
  1049. buf = transport_kmap_data_sg(cmd);
  1050. if (!buf)
  1051. return TCM_LOGICAL_UNIT_COMMUNICATION_FAILURE;
  1052. dl = get_unaligned_be16(&buf[0]);
  1053. bd_dl = get_unaligned_be16(&buf[2]);
  1054. size = cmd->data_length - 8;
  1055. if (bd_dl > size)
  1056. pr_warn("UNMAP parameter list length %u too small, ignoring bd_dl %u\n",
  1057. cmd->data_length, bd_dl);
  1058. else
  1059. size = bd_dl;
  1060. if (size / 16 > dev->dev_attrib.max_unmap_block_desc_count) {
  1061. ret = TCM_INVALID_PARAMETER_LIST;
  1062. goto err;
  1063. }
  1064. /* First UNMAP block descriptor starts at 8 byte offset */
  1065. ptr = &buf[8];
  1066. pr_debug("UNMAP: Sub: %s Using dl: %u bd_dl: %u size: %u"
  1067. " ptr: %p\n", dev->transport->name, dl, bd_dl, size, ptr);
  1068. while (size >= 16) {
  1069. lba = get_unaligned_be64(&ptr[0]);
  1070. range = get_unaligned_be32(&ptr[8]);
  1071. pr_debug("UNMAP: Using lba: %llu and range: %u\n",
  1072. (unsigned long long)lba, range);
  1073. if (range > dev->dev_attrib.max_unmap_lba_count) {
  1074. ret = TCM_INVALID_PARAMETER_LIST;
  1075. goto err;
  1076. }
  1077. if (lba + range > dev->transport->get_blocks(dev) + 1) {
  1078. ret = TCM_ADDRESS_OUT_OF_RANGE;
  1079. goto err;
  1080. }
  1081. ret = ops->execute_unmap(cmd, lba, range);
  1082. if (ret)
  1083. goto err;
  1084. ptr += 16;
  1085. size -= 16;
  1086. }
  1087. err:
  1088. transport_kunmap_data_sg(cmd);
  1089. if (!ret)
  1090. target_complete_cmd(cmd, GOOD);
  1091. return ret;
  1092. }
  1093. void
  1094. sbc_dif_generate(struct se_cmd *cmd)
  1095. {
  1096. struct se_device *dev = cmd->se_dev;
  1097. struct t10_pi_tuple *sdt;
  1098. struct scatterlist *dsg = cmd->t_data_sg, *psg;
  1099. sector_t sector = cmd->t_task_lba;
  1100. void *daddr, *paddr;
  1101. int i, j, offset = 0;
  1102. unsigned int block_size = dev->dev_attrib.block_size;
  1103. for_each_sg(cmd->t_prot_sg, psg, cmd->t_prot_nents, i) {
  1104. paddr = kmap_atomic(sg_page(psg)) + psg->offset;
  1105. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1106. for (j = 0; j < psg->length;
  1107. j += sizeof(*sdt)) {
  1108. __u16 crc;
  1109. unsigned int avail;
  1110. if (offset >= dsg->length) {
  1111. offset -= dsg->length;
  1112. kunmap_atomic(daddr - dsg->offset);
  1113. dsg = sg_next(dsg);
  1114. if (!dsg) {
  1115. kunmap_atomic(paddr - psg->offset);
  1116. return;
  1117. }
  1118. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1119. }
  1120. sdt = paddr + j;
  1121. avail = min(block_size, dsg->length - offset);
  1122. crc = crc_t10dif(daddr + offset, avail);
  1123. if (avail < block_size) {
  1124. kunmap_atomic(daddr - dsg->offset);
  1125. dsg = sg_next(dsg);
  1126. if (!dsg) {
  1127. kunmap_atomic(paddr - psg->offset);
  1128. return;
  1129. }
  1130. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1131. offset = block_size - avail;
  1132. crc = crc_t10dif_update(crc, daddr, offset);
  1133. } else {
  1134. offset += block_size;
  1135. }
  1136. sdt->guard_tag = cpu_to_be16(crc);
  1137. if (cmd->prot_type == TARGET_DIF_TYPE1_PROT)
  1138. sdt->ref_tag = cpu_to_be32(sector & 0xffffffff);
  1139. sdt->app_tag = 0;
  1140. pr_debug("DIF %s INSERT sector: %llu guard_tag: 0x%04x"
  1141. " app_tag: 0x%04x ref_tag: %u\n",
  1142. (cmd->data_direction == DMA_TO_DEVICE) ?
  1143. "WRITE" : "READ", (unsigned long long)sector,
  1144. sdt->guard_tag, sdt->app_tag,
  1145. be32_to_cpu(sdt->ref_tag));
  1146. sector++;
  1147. }
  1148. kunmap_atomic(daddr - dsg->offset);
  1149. kunmap_atomic(paddr - psg->offset);
  1150. }
  1151. }
  1152. static sense_reason_t
  1153. sbc_dif_v1_verify(struct se_cmd *cmd, struct t10_pi_tuple *sdt,
  1154. __u16 crc, sector_t sector, unsigned int ei_lba)
  1155. {
  1156. __be16 csum;
  1157. if (!(cmd->prot_checks & TARGET_DIF_CHECK_GUARD))
  1158. goto check_ref;
  1159. csum = cpu_to_be16(crc);
  1160. if (sdt->guard_tag != csum) {
  1161. pr_err("DIFv1 checksum failed on sector %llu guard tag 0x%04x"
  1162. " csum 0x%04x\n", (unsigned long long)sector,
  1163. be16_to_cpu(sdt->guard_tag), be16_to_cpu(csum));
  1164. return TCM_LOGICAL_BLOCK_GUARD_CHECK_FAILED;
  1165. }
  1166. check_ref:
  1167. if (!(cmd->prot_checks & TARGET_DIF_CHECK_REFTAG))
  1168. return 0;
  1169. if (cmd->prot_type == TARGET_DIF_TYPE1_PROT &&
  1170. be32_to_cpu(sdt->ref_tag) != (sector & 0xffffffff)) {
  1171. pr_err("DIFv1 Type 1 reference failed on sector: %llu tag: 0x%08x"
  1172. " sector MSB: 0x%08x\n", (unsigned long long)sector,
  1173. be32_to_cpu(sdt->ref_tag), (u32)(sector & 0xffffffff));
  1174. return TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED;
  1175. }
  1176. if (cmd->prot_type == TARGET_DIF_TYPE2_PROT &&
  1177. be32_to_cpu(sdt->ref_tag) != ei_lba) {
  1178. pr_err("DIFv1 Type 2 reference failed on sector: %llu tag: 0x%08x"
  1179. " ei_lba: 0x%08x\n", (unsigned long long)sector,
  1180. be32_to_cpu(sdt->ref_tag), ei_lba);
  1181. return TCM_LOGICAL_BLOCK_REF_TAG_CHECK_FAILED;
  1182. }
  1183. return 0;
  1184. }
  1185. void sbc_dif_copy_prot(struct se_cmd *cmd, unsigned int sectors, bool read,
  1186. struct scatterlist *sg, int sg_off)
  1187. {
  1188. struct se_device *dev = cmd->se_dev;
  1189. struct scatterlist *psg;
  1190. void *paddr, *addr;
  1191. unsigned int i, len, left;
  1192. unsigned int offset = sg_off;
  1193. if (!sg)
  1194. return;
  1195. left = sectors * dev->prot_length;
  1196. for_each_sg(cmd->t_prot_sg, psg, cmd->t_prot_nents, i) {
  1197. unsigned int psg_len, copied = 0;
  1198. paddr = kmap_atomic(sg_page(psg)) + psg->offset;
  1199. psg_len = min(left, psg->length);
  1200. while (psg_len) {
  1201. len = min(psg_len, sg->length - offset);
  1202. addr = kmap_atomic(sg_page(sg)) + sg->offset + offset;
  1203. if (read)
  1204. memcpy(paddr + copied, addr, len);
  1205. else
  1206. memcpy(addr, paddr + copied, len);
  1207. left -= len;
  1208. offset += len;
  1209. copied += len;
  1210. psg_len -= len;
  1211. kunmap_atomic(addr - sg->offset - offset);
  1212. if (offset >= sg->length) {
  1213. sg = sg_next(sg);
  1214. offset = 0;
  1215. }
  1216. }
  1217. kunmap_atomic(paddr - psg->offset);
  1218. }
  1219. }
  1220. EXPORT_SYMBOL(sbc_dif_copy_prot);
  1221. sense_reason_t
  1222. sbc_dif_verify(struct se_cmd *cmd, sector_t start, unsigned int sectors,
  1223. unsigned int ei_lba, struct scatterlist *psg, int psg_off)
  1224. {
  1225. struct se_device *dev = cmd->se_dev;
  1226. struct t10_pi_tuple *sdt;
  1227. struct scatterlist *dsg = cmd->t_data_sg;
  1228. sector_t sector = start;
  1229. void *daddr, *paddr;
  1230. int i;
  1231. sense_reason_t rc;
  1232. int dsg_off = 0;
  1233. unsigned int block_size = dev->dev_attrib.block_size;
  1234. for (; psg && sector < start + sectors; psg = sg_next(psg)) {
  1235. paddr = kmap_atomic(sg_page(psg)) + psg->offset;
  1236. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1237. for (i = psg_off; i < psg->length &&
  1238. sector < start + sectors;
  1239. i += sizeof(*sdt)) {
  1240. __u16 crc;
  1241. unsigned int avail;
  1242. if (dsg_off >= dsg->length) {
  1243. dsg_off -= dsg->length;
  1244. kunmap_atomic(daddr - dsg->offset);
  1245. dsg = sg_next(dsg);
  1246. if (!dsg) {
  1247. kunmap_atomic(paddr - psg->offset);
  1248. return 0;
  1249. }
  1250. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1251. }
  1252. sdt = paddr + i;
  1253. pr_debug("DIF READ sector: %llu guard_tag: 0x%04x"
  1254. " app_tag: 0x%04x ref_tag: %u\n",
  1255. (unsigned long long)sector, sdt->guard_tag,
  1256. sdt->app_tag, be32_to_cpu(sdt->ref_tag));
  1257. if (sdt->app_tag == cpu_to_be16(0xffff)) {
  1258. dsg_off += block_size;
  1259. goto next;
  1260. }
  1261. avail = min(block_size, dsg->length - dsg_off);
  1262. crc = crc_t10dif(daddr + dsg_off, avail);
  1263. if (avail < block_size) {
  1264. kunmap_atomic(daddr - dsg->offset);
  1265. dsg = sg_next(dsg);
  1266. if (!dsg) {
  1267. kunmap_atomic(paddr - psg->offset);
  1268. return 0;
  1269. }
  1270. daddr = kmap_atomic(sg_page(dsg)) + dsg->offset;
  1271. dsg_off = block_size - avail;
  1272. crc = crc_t10dif_update(crc, daddr, dsg_off);
  1273. } else {
  1274. dsg_off += block_size;
  1275. }
  1276. rc = sbc_dif_v1_verify(cmd, sdt, crc, sector, ei_lba);
  1277. if (rc) {
  1278. kunmap_atomic(daddr - dsg->offset);
  1279. kunmap_atomic(paddr - psg->offset);
  1280. cmd->bad_sector = sector;
  1281. return rc;
  1282. }
  1283. next:
  1284. sector++;
  1285. ei_lba++;
  1286. }
  1287. psg_off = 0;
  1288. kunmap_atomic(daddr - dsg->offset);
  1289. kunmap_atomic(paddr - psg->offset);
  1290. }
  1291. return 0;
  1292. }
  1293. EXPORT_SYMBOL(sbc_dif_verify);