libiscsi_tcp.c 32 KB

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