target_core_sbc.c 39 KB

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