libiscsi_tcp.c 32 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179
  1. /*
  2. * iSCSI over TCP/IP Data-Path lib
  3. *
  4. * Copyright (C) 2004 Dmitry Yusupov
  5. * Copyright (C) 2004 Alex Aizman
  6. * Copyright (C) 2005 - 2006 Mike Christie
  7. * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
  8. * maintained by open-iscsi@googlegroups.com
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License as published
  12. * by the Free Software Foundation; either version 2 of the License, or
  13. * (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful, but
  16. * WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  18. * General Public License for more details.
  19. *
  20. * See the file COPYING included with this distribution for more details.
  21. *
  22. * Credits:
  23. * Christoph Hellwig
  24. * FUJITA Tomonori
  25. * Arne Redlich
  26. * Zhenyu Wang
  27. */
  28. #include <linux/types.h>
  29. #include <linux/list.h>
  30. #include <linux/inet.h>
  31. #include <linux/file.h>
  32. #include <linux/blkdev.h>
  33. #include <linux/crypto.h>
  34. #include <linux/delay.h>
  35. #include <linux/kfifo.h>
  36. #include <linux/scatterlist.h>
  37. #include <net/tcp.h>
  38. #include <scsi/scsi_cmnd.h>
  39. #include <scsi/scsi_device.h>
  40. #include <scsi/scsi_host.h>
  41. #include <scsi/scsi.h>
  42. #include <scsi/scsi_transport_iscsi.h>
  43. #include "iscsi_tcp.h"
  44. MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, "
  45. "Dmitry Yusupov <dmitry_yus@yahoo.com>, "
  46. "Alex Aizman <itn780@yahoo.com>");
  47. MODULE_DESCRIPTION("iSCSI/TCP data-path");
  48. MODULE_LICENSE("GPL");
  49. static int iscsi_dbg_libtcp;
  50. module_param_named(debug_libiscsi_tcp, iscsi_dbg_libtcp, int,
  51. S_IRUGO | S_IWUSR);
  52. MODULE_PARM_DESC(debug_libiscsi_tcp, "Turn on debugging for libiscsi_tcp "
  53. "module. Set to 1 to turn on, and zero to turn off. Default "
  54. "is off.");
  55. #define ISCSI_DBG_TCP(_conn, dbg_fmt, arg...) \
  56. do { \
  57. if (iscsi_dbg_libtcp) \
  58. iscsi_conn_printk(KERN_INFO, _conn, \
  59. "%s " dbg_fmt, \
  60. __func__, ##arg); \
  61. } while (0);
  62. static int iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
  63. struct iscsi_segment *segment);
  64. /*
  65. * Scatterlist handling: inside the iscsi_segment, we
  66. * remember an index into the scatterlist, and set data/size
  67. * to the current scatterlist entry. For highmem pages, we
  68. * kmap as needed.
  69. *
  70. * Note that the page is unmapped when we return from
  71. * TCP's data_ready handler, so we may end up mapping and
  72. * unmapping the same page repeatedly. The whole reason
  73. * for this is that we shouldn't keep the page mapped
  74. * outside the softirq.
  75. */
  76. /**
  77. * iscsi_tcp_segment_init_sg - init indicated scatterlist entry
  78. * @segment: the buffer object
  79. * @sg: scatterlist
  80. * @offset: byte offset into that sg entry
  81. *
  82. * This function sets up the segment so that subsequent
  83. * data is copied to the indicated sg entry, at the given
  84. * offset.
  85. */
  86. static inline void
  87. iscsi_tcp_segment_init_sg(struct iscsi_segment *segment,
  88. struct scatterlist *sg, unsigned int offset)
  89. {
  90. segment->sg = sg;
  91. segment->sg_offset = offset;
  92. segment->size = min(sg->length - offset,
  93. segment->total_size - segment->total_copied);
  94. segment->data = NULL;
  95. }
  96. /**
  97. * iscsi_tcp_segment_map - map the current S/G page
  98. * @segment: iscsi_segment
  99. * @recv: 1 if called from recv path
  100. *
  101. * We only need to possibly kmap data if scatter lists are being used,
  102. * because the iscsi passthrough and internal IO paths will never use high
  103. * mem pages.
  104. */
  105. static void iscsi_tcp_segment_map(struct iscsi_segment *segment, int recv)
  106. {
  107. struct scatterlist *sg;
  108. if (segment->data != NULL || !segment->sg)
  109. return;
  110. sg = segment->sg;
  111. BUG_ON(segment->sg_mapped);
  112. BUG_ON(sg->length == 0);
  113. /*
  114. * If the page count is greater than one it is ok to send
  115. * to the network layer's zero copy send path. If not we
  116. * have to go the slow sendmsg path. We always map for the
  117. * recv path.
  118. */
  119. if (page_count(sg_page(sg)) >= 1 && !recv)
  120. return;
  121. segment->sg_mapped = kmap_atomic(sg_page(sg), KM_SOFTIRQ0);
  122. segment->data = segment->sg_mapped + sg->offset + segment->sg_offset;
  123. }
  124. void iscsi_tcp_segment_unmap(struct iscsi_segment *segment)
  125. {
  126. if (segment->sg_mapped) {
  127. kunmap_atomic(segment->sg_mapped, KM_SOFTIRQ0);
  128. segment->sg_mapped = NULL;
  129. segment->data = NULL;
  130. }
  131. }
  132. EXPORT_SYMBOL_GPL(iscsi_tcp_segment_unmap);
  133. /*
  134. * Splice the digest buffer into the buffer
  135. */
  136. static inline void
  137. iscsi_tcp_segment_splice_digest(struct iscsi_segment *segment, void *digest)
  138. {
  139. segment->data = digest;
  140. segment->digest_len = ISCSI_DIGEST_SIZE;
  141. segment->total_size += ISCSI_DIGEST_SIZE;
  142. segment->size = ISCSI_DIGEST_SIZE;
  143. segment->copied = 0;
  144. segment->sg = NULL;
  145. segment->hash = NULL;
  146. }
  147. /**
  148. * iscsi_tcp_segment_done - check whether the segment is complete
  149. * @tcp_conn: iscsi tcp connection
  150. * @segment: iscsi segment to check
  151. * @recv: set to one of this is called from the recv path
  152. * @copied: number of bytes copied
  153. *
  154. * Check if we're done receiving this segment. If the receive
  155. * buffer is full but we expect more data, move on to the
  156. * next entry in the scatterlist.
  157. *
  158. * If the amount of data we received isn't a multiple of 4,
  159. * we will transparently receive the pad bytes, too.
  160. *
  161. * This function must be re-entrant.
  162. */
  163. int iscsi_tcp_segment_done(struct iscsi_tcp_conn *tcp_conn,
  164. struct iscsi_segment *segment, int recv,
  165. unsigned copied)
  166. {
  167. struct scatterlist sg;
  168. unsigned int pad;
  169. ISCSI_DBG_TCP(tcp_conn->iscsi_conn, "copied %u %u size %u %s\n",
  170. segment->copied, copied, segment->size,
  171. recv ? "recv" : "xmit");
  172. if (segment->hash && copied) {
  173. /*
  174. * If a segment is kmapd we must unmap it before sending
  175. * to the crypto layer since that will try to kmap it again.
  176. */
  177. iscsi_tcp_segment_unmap(segment);
  178. if (!segment->data) {
  179. sg_init_table(&sg, 1);
  180. sg_set_page(&sg, sg_page(segment->sg), copied,
  181. segment->copied + segment->sg_offset +
  182. segment->sg->offset);
  183. } else
  184. sg_init_one(&sg, segment->data + segment->copied,
  185. copied);
  186. crypto_hash_update(segment->hash, &sg, copied);
  187. }
  188. segment->copied += copied;
  189. if (segment->copied < segment->size) {
  190. iscsi_tcp_segment_map(segment, recv);
  191. return 0;
  192. }
  193. segment->total_copied += segment->copied;
  194. segment->copied = 0;
  195. segment->size = 0;
  196. /* Unmap the current scatterlist page, if there is one. */
  197. iscsi_tcp_segment_unmap(segment);
  198. /* Do we have more scatterlist entries? */
  199. ISCSI_DBG_TCP(tcp_conn->iscsi_conn, "total copied %u total size %u\n",
  200. segment->total_copied, segment->total_size);
  201. if (segment->total_copied < segment->total_size) {
  202. /* Proceed to the next entry in the scatterlist. */
  203. iscsi_tcp_segment_init_sg(segment, sg_next(segment->sg),
  204. 0);
  205. iscsi_tcp_segment_map(segment, recv);
  206. BUG_ON(segment->size == 0);
  207. return 0;
  208. }
  209. /* Do we need to handle padding? */
  210. if (!(tcp_conn->iscsi_conn->session->tt->caps & CAP_PADDING_OFFLOAD)) {
  211. pad = iscsi_padding(segment->total_copied);
  212. if (pad != 0) {
  213. ISCSI_DBG_TCP(tcp_conn->iscsi_conn,
  214. "consume %d pad bytes\n", pad);
  215. segment->total_size += pad;
  216. segment->size = pad;
  217. segment->data = segment->padbuf;
  218. return 0;
  219. }
  220. }
  221. /*
  222. * Set us up for transferring the data digest. hdr digest
  223. * is completely handled in hdr done function.
  224. */
  225. if (segment->hash) {
  226. crypto_hash_final(segment->hash, segment->digest);
  227. iscsi_tcp_segment_splice_digest(segment,
  228. recv ? segment->recv_digest : segment->digest);
  229. return 0;
  230. }
  231. return 1;
  232. }
  233. EXPORT_SYMBOL_GPL(iscsi_tcp_segment_done);
  234. /**
  235. * iscsi_tcp_segment_recv - copy data to segment
  236. * @tcp_conn: the iSCSI TCP connection
  237. * @segment: the buffer to copy to
  238. * @ptr: data pointer
  239. * @len: amount of data available
  240. *
  241. * This function copies up to @len bytes to the
  242. * given buffer, and returns the number of bytes
  243. * consumed, which can actually be less than @len.
  244. *
  245. * If hash digest is enabled, the function will update the
  246. * hash while copying.
  247. * Combining these two operations doesn't buy us a lot (yet),
  248. * but in the future we could implement combined copy+crc,
  249. * just way we do for network layer checksums.
  250. */
  251. static int
  252. iscsi_tcp_segment_recv(struct iscsi_tcp_conn *tcp_conn,
  253. struct iscsi_segment *segment, const void *ptr,
  254. unsigned int len)
  255. {
  256. unsigned int copy = 0, copied = 0;
  257. while (!iscsi_tcp_segment_done(tcp_conn, segment, 1, copy)) {
  258. if (copied == len) {
  259. ISCSI_DBG_TCP(tcp_conn->iscsi_conn,
  260. "copied %d bytes\n", len);
  261. break;
  262. }
  263. copy = min(len - copied, segment->size - segment->copied);
  264. ISCSI_DBG_TCP(tcp_conn->iscsi_conn, "copying %d\n", copy);
  265. memcpy(segment->data + segment->copied, ptr + copied, copy);
  266. copied += copy;
  267. }
  268. return copied;
  269. }
  270. inline void
  271. iscsi_tcp_dgst_header(struct hash_desc *hash, const void *hdr, size_t hdrlen,
  272. unsigned char digest[ISCSI_DIGEST_SIZE])
  273. {
  274. struct scatterlist sg;
  275. sg_init_one(&sg, hdr, hdrlen);
  276. crypto_hash_digest(hash, &sg, hdrlen, digest);
  277. }
  278. EXPORT_SYMBOL_GPL(iscsi_tcp_dgst_header);
  279. static inline int
  280. iscsi_tcp_dgst_verify(struct iscsi_tcp_conn *tcp_conn,
  281. struct iscsi_segment *segment)
  282. {
  283. if (!segment->digest_len)
  284. return 1;
  285. if (memcmp(segment->recv_digest, segment->digest,
  286. segment->digest_len)) {
  287. ISCSI_DBG_TCP(tcp_conn->iscsi_conn, "digest mismatch\n");
  288. return 0;
  289. }
  290. return 1;
  291. }
  292. /*
  293. * Helper function to set up segment buffer
  294. */
  295. static inline void
  296. __iscsi_segment_init(struct iscsi_segment *segment, size_t size,
  297. iscsi_segment_done_fn_t *done, struct hash_desc *hash)
  298. {
  299. memset(segment, 0, sizeof(*segment));
  300. segment->total_size = size;
  301. segment->done = done;
  302. if (hash) {
  303. segment->hash = hash;
  304. crypto_hash_init(hash);
  305. }
  306. }
  307. inline void
  308. iscsi_segment_init_linear(struct iscsi_segment *segment, void *data,
  309. size_t size, iscsi_segment_done_fn_t *done,
  310. struct hash_desc *hash)
  311. {
  312. __iscsi_segment_init(segment, size, done, hash);
  313. segment->data = data;
  314. segment->size = size;
  315. }
  316. EXPORT_SYMBOL_GPL(iscsi_segment_init_linear);
  317. inline int
  318. iscsi_segment_seek_sg(struct iscsi_segment *segment,
  319. struct scatterlist *sg_list, unsigned int sg_count,
  320. unsigned int offset, size_t size,
  321. iscsi_segment_done_fn_t *done, struct hash_desc *hash)
  322. {
  323. struct scatterlist *sg;
  324. unsigned int i;
  325. __iscsi_segment_init(segment, size, done, hash);
  326. for_each_sg(sg_list, sg, sg_count, i) {
  327. if (offset < sg->length) {
  328. iscsi_tcp_segment_init_sg(segment, sg, offset);
  329. return 0;
  330. }
  331. offset -= sg->length;
  332. }
  333. return ISCSI_ERR_DATA_OFFSET;
  334. }
  335. EXPORT_SYMBOL_GPL(iscsi_segment_seek_sg);
  336. /**
  337. * iscsi_tcp_hdr_recv_prep - prep segment for hdr reception
  338. * @tcp_conn: iscsi connection to prep for
  339. *
  340. * This function always passes NULL for the hash argument, because when this
  341. * function is called we do not yet know the final size of the header and want
  342. * to delay the digest processing until we know that.
  343. */
  344. void iscsi_tcp_hdr_recv_prep(struct iscsi_tcp_conn *tcp_conn)
  345. {
  346. ISCSI_DBG_TCP(tcp_conn->iscsi_conn,
  347. "(%s)\n", tcp_conn->iscsi_conn->hdrdgst_en ?
  348. "digest enabled" : "digest disabled");
  349. iscsi_segment_init_linear(&tcp_conn->in.segment,
  350. tcp_conn->in.hdr_buf, sizeof(struct iscsi_hdr),
  351. iscsi_tcp_hdr_recv_done, NULL);
  352. }
  353. EXPORT_SYMBOL_GPL(iscsi_tcp_hdr_recv_prep);
  354. /*
  355. * Handle incoming reply to any other type of command
  356. */
  357. static int
  358. iscsi_tcp_data_recv_done(struct iscsi_tcp_conn *tcp_conn,
  359. struct iscsi_segment *segment)
  360. {
  361. struct iscsi_conn *conn = tcp_conn->iscsi_conn;
  362. int rc = 0;
  363. if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
  364. return ISCSI_ERR_DATA_DGST;
  365. rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr,
  366. conn->data, tcp_conn->in.datalen);
  367. if (rc)
  368. return rc;
  369. iscsi_tcp_hdr_recv_prep(tcp_conn);
  370. return 0;
  371. }
  372. static void
  373. iscsi_tcp_data_recv_prep(struct iscsi_tcp_conn *tcp_conn)
  374. {
  375. struct iscsi_conn *conn = tcp_conn->iscsi_conn;
  376. struct hash_desc *rx_hash = NULL;
  377. if (conn->datadgst_en &
  378. !(conn->session->tt->caps & CAP_DIGEST_OFFLOAD))
  379. rx_hash = tcp_conn->rx_hash;
  380. iscsi_segment_init_linear(&tcp_conn->in.segment,
  381. conn->data, tcp_conn->in.datalen,
  382. iscsi_tcp_data_recv_done, rx_hash);
  383. }
  384. /**
  385. * iscsi_tcp_cleanup_task - free tcp_task resources
  386. * @task: iscsi task
  387. *
  388. * must be called with session lock
  389. */
  390. void iscsi_tcp_cleanup_task(struct iscsi_task *task)
  391. {
  392. struct iscsi_tcp_task *tcp_task = task->dd_data;
  393. struct iscsi_r2t_info *r2t;
  394. /* nothing to do for mgmt */
  395. if (!task->sc)
  396. return;
  397. /* flush task's r2t queues */
  398. while (__kfifo_get(tcp_task->r2tqueue, (void*)&r2t, sizeof(void*))) {
  399. __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t,
  400. sizeof(void*));
  401. ISCSI_DBG_TCP(task->conn, "pending r2t dropped\n");
  402. }
  403. r2t = tcp_task->r2t;
  404. if (r2t != NULL) {
  405. __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t,
  406. sizeof(void*));
  407. tcp_task->r2t = NULL;
  408. }
  409. }
  410. EXPORT_SYMBOL_GPL(iscsi_tcp_cleanup_task);
  411. /**
  412. * iscsi_tcp_data_in - SCSI Data-In Response processing
  413. * @conn: iscsi connection
  414. * @task: scsi command task
  415. */
  416. static int iscsi_tcp_data_in(struct iscsi_conn *conn, struct iscsi_task *task)
  417. {
  418. struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
  419. struct iscsi_tcp_task *tcp_task = task->dd_data;
  420. struct iscsi_data_rsp *rhdr = (struct iscsi_data_rsp *)tcp_conn->in.hdr;
  421. int datasn = be32_to_cpu(rhdr->datasn);
  422. unsigned total_in_length = scsi_in(task->sc)->length;
  423. /*
  424. * lib iscsi will update this in the completion handling if there
  425. * is status.
  426. */
  427. if (!(rhdr->flags & ISCSI_FLAG_DATA_STATUS))
  428. iscsi_update_cmdsn(conn->session, (struct iscsi_nopin*)rhdr);
  429. if (tcp_conn->in.datalen == 0)
  430. return 0;
  431. if (tcp_task->exp_datasn != datasn) {
  432. ISCSI_DBG_TCP(conn, "task->exp_datasn(%d) != rhdr->datasn(%d)"
  433. "\n", tcp_task->exp_datasn, datasn);
  434. return ISCSI_ERR_DATASN;
  435. }
  436. tcp_task->exp_datasn++;
  437. tcp_task->data_offset = be32_to_cpu(rhdr->offset);
  438. if (tcp_task->data_offset + tcp_conn->in.datalen > total_in_length) {
  439. ISCSI_DBG_TCP(conn, "data_offset(%d) + data_len(%d) > "
  440. "total_length_in(%d)\n", tcp_task->data_offset,
  441. tcp_conn->in.datalen, total_in_length);
  442. return ISCSI_ERR_DATA_OFFSET;
  443. }
  444. conn->datain_pdus_cnt++;
  445. return 0;
  446. }
  447. /**
  448. * iscsi_tcp_r2t_rsp - iSCSI R2T Response processing
  449. * @conn: iscsi connection
  450. * @task: scsi command task
  451. */
  452. static int iscsi_tcp_r2t_rsp(struct iscsi_conn *conn, struct iscsi_task *task)
  453. {
  454. struct iscsi_session *session = conn->session;
  455. struct iscsi_tcp_task *tcp_task = task->dd_data;
  456. struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
  457. struct iscsi_r2t_rsp *rhdr = (struct iscsi_r2t_rsp *)tcp_conn->in.hdr;
  458. struct iscsi_r2t_info *r2t;
  459. int r2tsn = be32_to_cpu(rhdr->r2tsn);
  460. int rc;
  461. if (tcp_conn->in.datalen) {
  462. iscsi_conn_printk(KERN_ERR, conn,
  463. "invalid R2t with datalen %d\n",
  464. tcp_conn->in.datalen);
  465. return ISCSI_ERR_DATALEN;
  466. }
  467. if (tcp_task->exp_datasn != r2tsn){
  468. ISCSI_DBG_TCP(conn, "task->exp_datasn(%d) != rhdr->r2tsn(%d)\n",
  469. tcp_task->exp_datasn, r2tsn);
  470. return ISCSI_ERR_R2TSN;
  471. }
  472. /* fill-in new R2T associated with the task */
  473. iscsi_update_cmdsn(session, (struct iscsi_nopin*)rhdr);
  474. if (!task->sc || session->state != ISCSI_STATE_LOGGED_IN) {
  475. iscsi_conn_printk(KERN_INFO, conn,
  476. "dropping R2T itt %d in recovery.\n",
  477. task->itt);
  478. return 0;
  479. }
  480. rc = __kfifo_get(tcp_task->r2tpool.queue, (void*)&r2t, sizeof(void*));
  481. if (!rc) {
  482. iscsi_conn_printk(KERN_ERR, conn, "Could not allocate R2T. "
  483. "Target has sent more R2Ts than it "
  484. "negotiated for or driver has has leaked.\n");
  485. return ISCSI_ERR_PROTO;
  486. }
  487. r2t->exp_statsn = rhdr->statsn;
  488. r2t->data_length = be32_to_cpu(rhdr->data_length);
  489. if (r2t->data_length == 0) {
  490. iscsi_conn_printk(KERN_ERR, conn,
  491. "invalid R2T with zero data len\n");
  492. __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t,
  493. sizeof(void*));
  494. return ISCSI_ERR_DATALEN;
  495. }
  496. if (r2t->data_length > session->max_burst)
  497. ISCSI_DBG_TCP(conn, "invalid R2T with data len %u and max "
  498. "burst %u. Attempting to execute request.\n",
  499. r2t->data_length, session->max_burst);
  500. r2t->data_offset = be32_to_cpu(rhdr->data_offset);
  501. if (r2t->data_offset + r2t->data_length > scsi_out(task->sc)->length) {
  502. iscsi_conn_printk(KERN_ERR, conn,
  503. "invalid R2T with data len %u at offset %u "
  504. "and total length %d\n", r2t->data_length,
  505. r2t->data_offset, scsi_out(task->sc)->length);
  506. __kfifo_put(tcp_task->r2tpool.queue, (void*)&r2t,
  507. sizeof(void*));
  508. return ISCSI_ERR_DATALEN;
  509. }
  510. r2t->ttt = rhdr->ttt; /* no flip */
  511. r2t->datasn = 0;
  512. r2t->sent = 0;
  513. tcp_task->exp_datasn = r2tsn + 1;
  514. __kfifo_put(tcp_task->r2tqueue, (void*)&r2t, sizeof(void*));
  515. conn->r2t_pdus_cnt++;
  516. iscsi_requeue_task(task);
  517. return 0;
  518. }
  519. /*
  520. * Handle incoming reply to DataIn command
  521. */
  522. static int
  523. iscsi_tcp_process_data_in(struct iscsi_tcp_conn *tcp_conn,
  524. struct iscsi_segment *segment)
  525. {
  526. struct iscsi_conn *conn = tcp_conn->iscsi_conn;
  527. struct iscsi_hdr *hdr = tcp_conn->in.hdr;
  528. int rc;
  529. if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
  530. return ISCSI_ERR_DATA_DGST;
  531. /* check for non-exceptional status */
  532. if (hdr->flags & ISCSI_FLAG_DATA_STATUS) {
  533. rc = iscsi_complete_pdu(conn, tcp_conn->in.hdr, NULL, 0);
  534. if (rc)
  535. return rc;
  536. }
  537. iscsi_tcp_hdr_recv_prep(tcp_conn);
  538. return 0;
  539. }
  540. /**
  541. * iscsi_tcp_hdr_dissect - process PDU header
  542. * @conn: iSCSI connection
  543. * @hdr: PDU header
  544. *
  545. * This function analyzes the header of the PDU received,
  546. * and performs several sanity checks. If the PDU is accompanied
  547. * by data, the receive buffer is set up to copy the incoming data
  548. * to the correct location.
  549. */
  550. static int
  551. iscsi_tcp_hdr_dissect(struct iscsi_conn *conn, struct iscsi_hdr *hdr)
  552. {
  553. int rc = 0, opcode, ahslen;
  554. struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
  555. struct iscsi_task *task;
  556. /* verify PDU length */
  557. tcp_conn->in.datalen = ntoh24(hdr->dlength);
  558. if (tcp_conn->in.datalen > conn->max_recv_dlength) {
  559. iscsi_conn_printk(KERN_ERR, conn,
  560. "iscsi_tcp: datalen %d > %d\n",
  561. tcp_conn->in.datalen, conn->max_recv_dlength);
  562. return ISCSI_ERR_DATALEN;
  563. }
  564. /* Additional header segments. So far, we don't
  565. * process additional headers.
  566. */
  567. ahslen = hdr->hlength << 2;
  568. opcode = hdr->opcode & ISCSI_OPCODE_MASK;
  569. /* verify itt (itt encoding: age+cid+itt) */
  570. rc = iscsi_verify_itt(conn, hdr->itt);
  571. if (rc)
  572. return rc;
  573. ISCSI_DBG_TCP(conn, "opcode 0x%x ahslen %d datalen %d\n",
  574. opcode, ahslen, tcp_conn->in.datalen);
  575. switch(opcode) {
  576. case ISCSI_OP_SCSI_DATA_IN:
  577. spin_lock(&conn->session->lock);
  578. task = iscsi_itt_to_ctask(conn, hdr->itt);
  579. if (!task)
  580. rc = ISCSI_ERR_BAD_ITT;
  581. else
  582. rc = iscsi_tcp_data_in(conn, task);
  583. if (rc) {
  584. spin_unlock(&conn->session->lock);
  585. break;
  586. }
  587. if (tcp_conn->in.datalen) {
  588. struct iscsi_tcp_task *tcp_task = task->dd_data;
  589. struct hash_desc *rx_hash = NULL;
  590. struct scsi_data_buffer *sdb = scsi_in(task->sc);
  591. /*
  592. * Setup copy of Data-In into the Scsi_Cmnd
  593. * Scatterlist case:
  594. * We set up the iscsi_segment to point to the next
  595. * scatterlist entry to copy to. As we go along,
  596. * we move on to the next scatterlist entry and
  597. * update the digest per-entry.
  598. */
  599. if (conn->datadgst_en &&
  600. !(conn->session->tt->caps & CAP_DIGEST_OFFLOAD))
  601. rx_hash = tcp_conn->rx_hash;
  602. ISCSI_DBG_TCP(conn, "iscsi_tcp_begin_data_in( "
  603. "offset=%d, datalen=%d)\n",
  604. tcp_task->data_offset,
  605. tcp_conn->in.datalen);
  606. rc = iscsi_segment_seek_sg(&tcp_conn->in.segment,
  607. sdb->table.sgl,
  608. sdb->table.nents,
  609. tcp_task->data_offset,
  610. tcp_conn->in.datalen,
  611. iscsi_tcp_process_data_in,
  612. rx_hash);
  613. spin_unlock(&conn->session->lock);
  614. return rc;
  615. }
  616. rc = __iscsi_complete_pdu(conn, hdr, NULL, 0);
  617. spin_unlock(&conn->session->lock);
  618. break;
  619. case ISCSI_OP_SCSI_CMD_RSP:
  620. if (tcp_conn->in.datalen) {
  621. iscsi_tcp_data_recv_prep(tcp_conn);
  622. return 0;
  623. }
  624. rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
  625. break;
  626. case ISCSI_OP_R2T:
  627. spin_lock(&conn->session->lock);
  628. task = iscsi_itt_to_ctask(conn, hdr->itt);
  629. if (!task)
  630. rc = ISCSI_ERR_BAD_ITT;
  631. else if (ahslen)
  632. rc = ISCSI_ERR_AHSLEN;
  633. else if (task->sc->sc_data_direction == DMA_TO_DEVICE)
  634. rc = iscsi_tcp_r2t_rsp(conn, task);
  635. else
  636. rc = ISCSI_ERR_PROTO;
  637. spin_unlock(&conn->session->lock);
  638. break;
  639. case ISCSI_OP_LOGIN_RSP:
  640. case ISCSI_OP_TEXT_RSP:
  641. case ISCSI_OP_REJECT:
  642. case ISCSI_OP_ASYNC_EVENT:
  643. /*
  644. * It is possible that we could get a PDU with a buffer larger
  645. * than 8K, but there are no targets that currently do this.
  646. * For now we fail until we find a vendor that needs it
  647. */
  648. if (ISCSI_DEF_MAX_RECV_SEG_LEN < tcp_conn->in.datalen) {
  649. iscsi_conn_printk(KERN_ERR, conn,
  650. "iscsi_tcp: received buffer of "
  651. "len %u but conn buffer is only %u "
  652. "(opcode %0x)\n",
  653. tcp_conn->in.datalen,
  654. ISCSI_DEF_MAX_RECV_SEG_LEN, opcode);
  655. rc = ISCSI_ERR_PROTO;
  656. break;
  657. }
  658. /* If there's data coming in with the response,
  659. * receive it to the connection's buffer.
  660. */
  661. if (tcp_conn->in.datalen) {
  662. iscsi_tcp_data_recv_prep(tcp_conn);
  663. return 0;
  664. }
  665. /* fall through */
  666. case ISCSI_OP_LOGOUT_RSP:
  667. case ISCSI_OP_NOOP_IN:
  668. case ISCSI_OP_SCSI_TMFUNC_RSP:
  669. rc = iscsi_complete_pdu(conn, hdr, NULL, 0);
  670. break;
  671. default:
  672. rc = ISCSI_ERR_BAD_OPCODE;
  673. break;
  674. }
  675. if (rc == 0) {
  676. /* Anything that comes with data should have
  677. * been handled above. */
  678. if (tcp_conn->in.datalen)
  679. return ISCSI_ERR_PROTO;
  680. iscsi_tcp_hdr_recv_prep(tcp_conn);
  681. }
  682. return rc;
  683. }
  684. /**
  685. * iscsi_tcp_hdr_recv_done - process PDU header
  686. *
  687. * This is the callback invoked when the PDU header has
  688. * been received. If the header is followed by additional
  689. * header segments, we go back for more data.
  690. */
  691. static int
  692. iscsi_tcp_hdr_recv_done(struct iscsi_tcp_conn *tcp_conn,
  693. struct iscsi_segment *segment)
  694. {
  695. struct iscsi_conn *conn = tcp_conn->iscsi_conn;
  696. struct iscsi_hdr *hdr;
  697. /* Check if there are additional header segments
  698. * *prior* to computing the digest, because we
  699. * may need to go back to the caller for more.
  700. */
  701. hdr = (struct iscsi_hdr *) tcp_conn->in.hdr_buf;
  702. if (segment->copied == sizeof(struct iscsi_hdr) && hdr->hlength) {
  703. /* Bump the header length - the caller will
  704. * just loop around and get the AHS for us, and
  705. * call again. */
  706. unsigned int ahslen = hdr->hlength << 2;
  707. /* Make sure we don't overflow */
  708. if (sizeof(*hdr) + ahslen > sizeof(tcp_conn->in.hdr_buf))
  709. return ISCSI_ERR_AHSLEN;
  710. segment->total_size += ahslen;
  711. segment->size += ahslen;
  712. return 0;
  713. }
  714. /* We're done processing the header. See if we're doing
  715. * header digests; if so, set up the recv_digest buffer
  716. * and go back for more. */
  717. if (conn->hdrdgst_en &&
  718. !(conn->session->tt->caps & CAP_DIGEST_OFFLOAD)) {
  719. if (segment->digest_len == 0) {
  720. /*
  721. * Even if we offload the digest processing we
  722. * splice it in so we can increment the skb/segment
  723. * counters in preparation for the data segment.
  724. */
  725. iscsi_tcp_segment_splice_digest(segment,
  726. segment->recv_digest);
  727. return 0;
  728. }
  729. iscsi_tcp_dgst_header(tcp_conn->rx_hash, hdr,
  730. segment->total_copied - ISCSI_DIGEST_SIZE,
  731. segment->digest);
  732. if (!iscsi_tcp_dgst_verify(tcp_conn, segment))
  733. return ISCSI_ERR_HDR_DGST;
  734. }
  735. tcp_conn->in.hdr = hdr;
  736. return iscsi_tcp_hdr_dissect(conn, hdr);
  737. }
  738. /**
  739. * iscsi_tcp_recv_segment_is_hdr - tests if we are reading in a header
  740. * @tcp_conn: iscsi tcp conn
  741. *
  742. * returns non zero if we are currently processing or setup to process
  743. * a header.
  744. */
  745. inline int iscsi_tcp_recv_segment_is_hdr(struct iscsi_tcp_conn *tcp_conn)
  746. {
  747. return tcp_conn->in.segment.done == iscsi_tcp_hdr_recv_done;
  748. }
  749. EXPORT_SYMBOL_GPL(iscsi_tcp_recv_segment_is_hdr);
  750. /**
  751. * iscsi_tcp_recv_skb - Process skb
  752. * @conn: iscsi connection
  753. * @skb: network buffer with header and/or data segment
  754. * @offset: offset in skb
  755. * @offload: bool indicating if transfer was offloaded
  756. *
  757. * Will return status of transfer in status. And will return
  758. * number of bytes copied.
  759. */
  760. int iscsi_tcp_recv_skb(struct iscsi_conn *conn, struct sk_buff *skb,
  761. unsigned int offset, bool offloaded, int *status)
  762. {
  763. struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
  764. struct iscsi_segment *segment = &tcp_conn->in.segment;
  765. struct skb_seq_state seq;
  766. unsigned int consumed = 0;
  767. int rc = 0;
  768. ISCSI_DBG_TCP(conn, "in %d bytes\n", skb->len - offset);
  769. /*
  770. * Update for each skb instead of pdu, because over slow networks a
  771. * data_in's data could take a while to read in. We also want to
  772. * account for r2ts.
  773. */
  774. conn->last_recv = jiffies;
  775. if (unlikely(conn->suspend_rx)) {
  776. ISCSI_DBG_TCP(conn, "Rx suspended!\n");
  777. *status = ISCSI_TCP_SUSPENDED;
  778. return 0;
  779. }
  780. if (offloaded) {
  781. segment->total_copied = segment->total_size;
  782. goto segment_done;
  783. }
  784. skb_prepare_seq_read(skb, offset, skb->len, &seq);
  785. while (1) {
  786. unsigned int avail;
  787. const u8 *ptr;
  788. avail = skb_seq_read(consumed, &ptr, &seq);
  789. if (avail == 0) {
  790. ISCSI_DBG_TCP(conn, "no more data avail. Consumed %d\n",
  791. consumed);
  792. *status = ISCSI_TCP_SKB_DONE;
  793. skb_abort_seq_read(&seq);
  794. goto skb_done;
  795. }
  796. BUG_ON(segment->copied >= segment->size);
  797. ISCSI_DBG_TCP(conn, "skb %p ptr=%p avail=%u\n", skb, ptr,
  798. avail);
  799. rc = iscsi_tcp_segment_recv(tcp_conn, segment, ptr, avail);
  800. BUG_ON(rc == 0);
  801. consumed += rc;
  802. if (segment->total_copied >= segment->total_size) {
  803. skb_abort_seq_read(&seq);
  804. goto segment_done;
  805. }
  806. }
  807. segment_done:
  808. *status = ISCSI_TCP_SEGMENT_DONE;
  809. ISCSI_DBG_TCP(conn, "segment done\n");
  810. rc = segment->done(tcp_conn, segment);
  811. if (rc != 0) {
  812. *status = ISCSI_TCP_CONN_ERR;
  813. ISCSI_DBG_TCP(conn, "Error receiving PDU, errno=%d\n", rc);
  814. iscsi_conn_failure(conn, rc);
  815. return 0;
  816. }
  817. /* The done() functions sets up the next segment. */
  818. skb_done:
  819. conn->rxdata_octets += consumed;
  820. return consumed;
  821. }
  822. EXPORT_SYMBOL_GPL(iscsi_tcp_recv_skb);
  823. /**
  824. * iscsi_tcp_task_init - Initialize iSCSI SCSI_READ or SCSI_WRITE commands
  825. * @conn: iscsi connection
  826. * @task: scsi command task
  827. * @sc: scsi command
  828. */
  829. int iscsi_tcp_task_init(struct iscsi_task *task)
  830. {
  831. struct iscsi_tcp_task *tcp_task = task->dd_data;
  832. struct iscsi_conn *conn = task->conn;
  833. struct scsi_cmnd *sc = task->sc;
  834. int err;
  835. if (!sc) {
  836. /*
  837. * mgmt tasks do not have a scatterlist since they come
  838. * in from the iscsi interface.
  839. */
  840. ISCSI_DBG_TCP(conn, "mtask deq [itt 0x%x]\n", task->itt);
  841. return conn->session->tt->init_pdu(task, 0, task->data_count);
  842. }
  843. BUG_ON(__kfifo_len(tcp_task->r2tqueue));
  844. tcp_task->exp_datasn = 0;
  845. /* Prepare PDU, optionally w/ immediate data */
  846. ISCSI_DBG_TCP(conn, "task deq [itt 0x%x imm %d unsol %d]\n",
  847. task->itt, task->imm_count, task->unsol_r2t.data_length);
  848. err = conn->session->tt->init_pdu(task, 0, task->imm_count);
  849. if (err)
  850. return err;
  851. task->imm_count = 0;
  852. return 0;
  853. }
  854. EXPORT_SYMBOL_GPL(iscsi_tcp_task_init);
  855. static struct iscsi_r2t_info *iscsi_tcp_get_curr_r2t(struct iscsi_task *task)
  856. {
  857. struct iscsi_session *session = task->conn->session;
  858. struct iscsi_tcp_task *tcp_task = task->dd_data;
  859. struct iscsi_r2t_info *r2t = NULL;
  860. if (iscsi_task_has_unsol_data(task))
  861. r2t = &task->unsol_r2t;
  862. else {
  863. spin_lock_bh(&session->lock);
  864. if (tcp_task->r2t) {
  865. r2t = tcp_task->r2t;
  866. /* Continue with this R2T? */
  867. if (r2t->data_length <= r2t->sent) {
  868. ISCSI_DBG_TCP(task->conn,
  869. " done with r2t %p\n", r2t);
  870. __kfifo_put(tcp_task->r2tpool.queue,
  871. (void *)&tcp_task->r2t,
  872. sizeof(void *));
  873. tcp_task->r2t = r2t = NULL;
  874. }
  875. }
  876. if (r2t == NULL) {
  877. __kfifo_get(tcp_task->r2tqueue,
  878. (void *)&tcp_task->r2t, sizeof(void *));
  879. r2t = tcp_task->r2t;
  880. }
  881. spin_unlock_bh(&session->lock);
  882. }
  883. return r2t;
  884. }
  885. /**
  886. * iscsi_tcp_task_xmit - xmit normal PDU task
  887. * @task: iscsi command task
  888. *
  889. * We're expected to return 0 when everything was transmitted succesfully,
  890. * -EAGAIN if there's still data in the queue, or != 0 for any other kind
  891. * of error.
  892. */
  893. int iscsi_tcp_task_xmit(struct iscsi_task *task)
  894. {
  895. struct iscsi_conn *conn = task->conn;
  896. struct iscsi_session *session = conn->session;
  897. struct iscsi_r2t_info *r2t;
  898. int rc = 0;
  899. flush:
  900. /* Flush any pending data first. */
  901. rc = session->tt->xmit_pdu(task);
  902. if (rc < 0)
  903. return rc;
  904. /* mgmt command */
  905. if (!task->sc) {
  906. if (task->hdr->itt == RESERVED_ITT)
  907. iscsi_put_task(task);
  908. return 0;
  909. }
  910. /* Are we done already? */
  911. if (task->sc->sc_data_direction != DMA_TO_DEVICE)
  912. return 0;
  913. r2t = iscsi_tcp_get_curr_r2t(task);
  914. if (r2t == NULL) {
  915. /* Waiting for more R2Ts to arrive. */
  916. ISCSI_DBG_TCP(conn, "no R2Ts yet\n");
  917. return 0;
  918. }
  919. rc = conn->session->tt->alloc_pdu(task, ISCSI_OP_SCSI_DATA_OUT);
  920. if (rc)
  921. return rc;
  922. iscsi_prep_data_out_pdu(task, r2t, (struct iscsi_data *) task->hdr);
  923. ISCSI_DBG_TCP(conn, "sol dout %p [dsn %d itt 0x%x doff %d dlen %d]\n",
  924. r2t, r2t->datasn - 1, task->hdr->itt,
  925. r2t->data_offset + r2t->sent, r2t->data_count);
  926. rc = conn->session->tt->init_pdu(task, r2t->data_offset + r2t->sent,
  927. r2t->data_count);
  928. if (rc) {
  929. iscsi_conn_failure(conn, ISCSI_ERR_XMIT_FAILED);
  930. return rc;
  931. }
  932. r2t->sent += r2t->data_count;
  933. goto flush;
  934. }
  935. EXPORT_SYMBOL_GPL(iscsi_tcp_task_xmit);
  936. struct iscsi_cls_conn *
  937. iscsi_tcp_conn_setup(struct iscsi_cls_session *cls_session, int dd_data_size,
  938. uint32_t conn_idx)
  939. {
  940. struct iscsi_conn *conn;
  941. struct iscsi_cls_conn *cls_conn;
  942. struct iscsi_tcp_conn *tcp_conn;
  943. cls_conn = iscsi_conn_setup(cls_session, sizeof(*tcp_conn), conn_idx);
  944. if (!cls_conn)
  945. return NULL;
  946. conn = cls_conn->dd_data;
  947. /*
  948. * due to strange issues with iser these are not set
  949. * in iscsi_conn_setup
  950. */
  951. conn->max_recv_dlength = ISCSI_DEF_MAX_RECV_SEG_LEN;
  952. tcp_conn = conn->dd_data;
  953. tcp_conn->iscsi_conn = conn;
  954. tcp_conn->dd_data = kzalloc(dd_data_size, GFP_KERNEL);
  955. if (!tcp_conn->dd_data) {
  956. iscsi_conn_teardown(cls_conn);
  957. return NULL;
  958. }
  959. return cls_conn;
  960. }
  961. EXPORT_SYMBOL_GPL(iscsi_tcp_conn_setup);
  962. void iscsi_tcp_conn_teardown(struct iscsi_cls_conn *cls_conn)
  963. {
  964. struct iscsi_conn *conn = cls_conn->dd_data;
  965. struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
  966. kfree(tcp_conn->dd_data);
  967. iscsi_conn_teardown(cls_conn);
  968. }
  969. EXPORT_SYMBOL_GPL(iscsi_tcp_conn_teardown);
  970. int iscsi_tcp_r2tpool_alloc(struct iscsi_session *session)
  971. {
  972. int i;
  973. int cmd_i;
  974. /*
  975. * initialize per-task: R2T pool and xmit queue
  976. */
  977. for (cmd_i = 0; cmd_i < session->cmds_max; cmd_i++) {
  978. struct iscsi_task *task = session->cmds[cmd_i];
  979. struct iscsi_tcp_task *tcp_task = task->dd_data;
  980. /*
  981. * pre-allocated x2 as much r2ts to handle race when
  982. * target acks DataOut faster than we data_xmit() queues
  983. * could replenish r2tqueue.
  984. */
  985. /* R2T pool */
  986. if (iscsi_pool_init(&tcp_task->r2tpool,
  987. session->max_r2t * 2, NULL,
  988. sizeof(struct iscsi_r2t_info))) {
  989. goto r2t_alloc_fail;
  990. }
  991. /* R2T xmit queue */
  992. tcp_task->r2tqueue = kfifo_alloc(
  993. session->max_r2t * 4 * sizeof(void*), GFP_KERNEL, NULL);
  994. if (tcp_task->r2tqueue == ERR_PTR(-ENOMEM)) {
  995. iscsi_pool_free(&tcp_task->r2tpool);
  996. goto r2t_alloc_fail;
  997. }
  998. }
  999. return 0;
  1000. r2t_alloc_fail:
  1001. for (i = 0; i < cmd_i; i++) {
  1002. struct iscsi_task *task = session->cmds[i];
  1003. struct iscsi_tcp_task *tcp_task = task->dd_data;
  1004. kfifo_free(tcp_task->r2tqueue);
  1005. iscsi_pool_free(&tcp_task->r2tpool);
  1006. }
  1007. return -ENOMEM;
  1008. }
  1009. EXPORT_SYMBOL_GPL(iscsi_tcp_r2tpool_alloc);
  1010. void iscsi_tcp_r2tpool_free(struct iscsi_session *session)
  1011. {
  1012. int i;
  1013. for (i = 0; i < session->cmds_max; i++) {
  1014. struct iscsi_task *task = session->cmds[i];
  1015. struct iscsi_tcp_task *tcp_task = task->dd_data;
  1016. kfifo_free(tcp_task->r2tqueue);
  1017. iscsi_pool_free(&tcp_task->r2tpool);
  1018. }
  1019. }
  1020. EXPORT_SYMBOL_GPL(iscsi_tcp_r2tpool_free);
  1021. void iscsi_tcp_conn_get_stats(struct iscsi_cls_conn *cls_conn,
  1022. struct iscsi_stats *stats)
  1023. {
  1024. struct iscsi_conn *conn = cls_conn->dd_data;
  1025. stats->txdata_octets = conn->txdata_octets;
  1026. stats->rxdata_octets = conn->rxdata_octets;
  1027. stats->scsicmd_pdus = conn->scsicmd_pdus_cnt;
  1028. stats->dataout_pdus = conn->dataout_pdus_cnt;
  1029. stats->scsirsp_pdus = conn->scsirsp_pdus_cnt;
  1030. stats->datain_pdus = conn->datain_pdus_cnt;
  1031. stats->r2t_pdus = conn->r2t_pdus_cnt;
  1032. stats->tmfcmd_pdus = conn->tmfcmd_pdus_cnt;
  1033. stats->tmfrsp_pdus = conn->tmfrsp_pdus_cnt;
  1034. }
  1035. EXPORT_SYMBOL_GPL(iscsi_tcp_conn_get_stats);