[SCSI] ipr: improve interrupt service routine performance
[deliverable/linux.git] / drivers / scsi / iscsi_tcp.c
CommitLineData
7ba24713
AA
1/*
2 * iSCSI Initiator over TCP/IP Data-Path
3 *
4 * Copyright (C) 2004 Dmitry Yusupov
5 * Copyright (C) 2004 Alex Aizman
5bb0b55a
MC
6 * Copyright (C) 2005 - 2006 Mike Christie
7 * Copyright (C) 2006 Red Hat, Inc. All rights reserved.
7ba24713
AA
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
29#include <linux/types.h>
7ba24713 30#include <linux/inet.h>
5a0e3ad6 31#include <linux/slab.h>
4e7aba73 32#include <linux/file.h>
7ba24713
AA
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>
d1d81c01 40#include <scsi/scsi_device.h>
7ba24713
AA
41#include <scsi/scsi_host.h>
42#include <scsi/scsi.h>
43#include <scsi/scsi_transport_iscsi.h>
44
45#include "iscsi_tcp.h"
46
38e1a8f5
MC
47MODULE_AUTHOR("Mike Christie <michaelc@cs.wisc.edu>, "
48 "Dmitry Yusupov <dmitry_yus@yahoo.com>, "
7ba24713
AA
49 "Alex Aizman <itn780@yahoo.com>");
50MODULE_DESCRIPTION("iSCSI/TCP data-path");
51MODULE_LICENSE("GPL");
7ba24713 52
38e1a8f5
MC
53static struct scsi_transport_template *iscsi_sw_tcp_scsi_transport;
54static struct scsi_host_template iscsi_sw_tcp_sht;
55static struct iscsi_transport iscsi_sw_tcp_transport;
75613521 56
7ba24713
AA
57static unsigned int iscsi_max_lun = 512;
58module_param_named(max_lun, iscsi_max_lun, uint, S_IRUGO);
59
c93f87c7
MC
60static int iscsi_sw_tcp_dbg;
61module_param_named(debug_iscsi_tcp, iscsi_sw_tcp_dbg, int,
62 S_IRUGO | S_IWUSR);
63MODULE_PARM_DESC(debug_iscsi_tcp, "Turn on debugging for iscsi_tcp module "
64 "Set to 1 to turn on, and zero to turn off. Default is off.");
65
66#define ISCSI_SW_TCP_DBG(_conn, dbg_fmt, arg...) \
67 do { \
68 if (iscsi_sw_tcp_dbg) \
69 iscsi_conn_printk(KERN_INFO, _conn, \
70 "%s " dbg_fmt, \
71 __func__, ##arg); \
72 } while (0);
73
74
da32dd68 75/**
38e1a8f5 76 * iscsi_sw_tcp_recv - TCP receive in sendfile fashion
63c62f1c
MC
77 * @rd_desc: read descriptor
78 * @skb: socket buffer
79 * @offset: offset in skb
80 * @len: skb->len - offset
38e1a8f5
MC
81 */
82static int iscsi_sw_tcp_recv(read_descriptor_t *rd_desc, struct sk_buff *skb,
83 unsigned int offset, size_t len)
63c62f1c
MC
84{
85 struct iscsi_conn *conn = rd_desc->arg.data;
86 unsigned int consumed, total_consumed = 0;
87 int status;
88
c93f87c7 89 ISCSI_SW_TCP_DBG(conn, "in %d bytes\n", skb->len - offset);
63c62f1c
MC
90
91 do {
92 status = 0;
93 consumed = iscsi_tcp_recv_skb(conn, skb, offset, 0, &status);
94 offset += consumed;
95 total_consumed += consumed;
96 } while (consumed != 0 && status != ISCSI_TCP_SKB_DONE);
97
c93f87c7
MC
98 ISCSI_SW_TCP_DBG(conn, "read %d bytes status %d\n",
99 skb->len - offset, status);
63c62f1c 100 return total_consumed;
7ba24713
AA
101}
102
523eeac6
HR
103/**
104 * iscsi_sw_sk_state_check - check socket state
105 * @sk: socket
106 *
107 * If the socket is in CLOSE or CLOSE_WAIT we should
108 * not close the connection if there is still some
109 * data pending.
110 */
111static inline int iscsi_sw_sk_state_check(struct sock *sk)
112{
d1af8a32 113 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
523eeac6 114
d1af8a32
MC
115 if ((sk->sk_state == TCP_CLOSE_WAIT || sk->sk_state == TCP_CLOSE) &&
116 !atomic_read(&sk->sk_rmem_alloc)) {
117 ISCSI_SW_TCP_DBG(conn, "TCP_CLOSE|TCP_CLOSE_WAIT\n");
118 iscsi_conn_failure(conn, ISCSI_ERR_TCP_CONN_CLOSE);
119 return -ECONNRESET;
120 }
523eeac6
HR
121 return 0;
122}
123
38e1a8f5 124static void iscsi_sw_tcp_data_ready(struct sock *sk, int flag)
7ba24713
AA
125{
126 struct iscsi_conn *conn = sk->sk_user_data;
da32dd68 127 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
7ba24713
AA
128 read_descriptor_t rd_desc;
129
130 read_lock(&sk->sk_callback_lock);
131
665b44ae 132 /*
da32dd68 133 * Use rd_desc to pass 'conn' to iscsi_tcp_recv.
665b44ae 134 * We set count to 1 because we want the network layer to
da32dd68 135 * hand us all the skbs that are available. iscsi_tcp_recv
665b44ae
MC
136 * handled pdus that cross buffers or pdus that still need data.
137 */
7ba24713 138 rd_desc.arg.data = conn;
665b44ae 139 rd_desc.count = 1;
38e1a8f5 140 tcp_read_sock(sk, &rd_desc, iscsi_sw_tcp_recv);
7ba24713 141
d1af8a32 142 iscsi_sw_sk_state_check(sk);
523eeac6 143
7ba24713 144 read_unlock(&sk->sk_callback_lock);
da32dd68
OK
145
146 /* If we had to (atomically) map a highmem page,
147 * unmap it now. */
a8ac6311 148 iscsi_tcp_segment_unmap(&tcp_conn->in.segment);
7ba24713
AA
149}
150
38e1a8f5 151static void iscsi_sw_tcp_state_change(struct sock *sk)
7ba24713 152{
5bb0b55a 153 struct iscsi_tcp_conn *tcp_conn;
38e1a8f5 154 struct iscsi_sw_tcp_conn *tcp_sw_conn;
7ba24713
AA
155 struct iscsi_conn *conn;
156 struct iscsi_session *session;
157 void (*old_state_change)(struct sock *);
158
159 read_lock(&sk->sk_callback_lock);
160
161 conn = (struct iscsi_conn*)sk->sk_user_data;
162 session = conn->session;
163
d1af8a32 164 iscsi_sw_sk_state_check(sk);
7ba24713 165
5bb0b55a 166 tcp_conn = conn->dd_data;
38e1a8f5
MC
167 tcp_sw_conn = tcp_conn->dd_data;
168 old_state_change = tcp_sw_conn->old_state_change;
7ba24713
AA
169
170 read_unlock(&sk->sk_callback_lock);
171
172 old_state_change(sk);
173}
174
175/**
176 * iscsi_write_space - Called when more output buffer space is available
177 * @sk: socket space is available for
178 **/
38e1a8f5 179static void iscsi_sw_tcp_write_space(struct sock *sk)
7ba24713
AA
180{
181 struct iscsi_conn *conn = (struct iscsi_conn*)sk->sk_user_data;
5bb0b55a 182 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 183 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
5bb0b55a 184
38e1a8f5 185 tcp_sw_conn->old_write_space(sk);
c93f87c7 186 ISCSI_SW_TCP_DBG(conn, "iscsi_write_space\n");
32ae763e 187 iscsi_conn_queue_work(conn);
7ba24713
AA
188}
189
38e1a8f5 190static void iscsi_sw_tcp_conn_set_callbacks(struct iscsi_conn *conn)
7ba24713 191{
5bb0b55a 192 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5
MC
193 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
194 struct sock *sk = tcp_sw_conn->sock->sk;
7ba24713
AA
195
196 /* assign new callbacks */
197 write_lock_bh(&sk->sk_callback_lock);
198 sk->sk_user_data = conn;
38e1a8f5
MC
199 tcp_sw_conn->old_data_ready = sk->sk_data_ready;
200 tcp_sw_conn->old_state_change = sk->sk_state_change;
201 tcp_sw_conn->old_write_space = sk->sk_write_space;
202 sk->sk_data_ready = iscsi_sw_tcp_data_ready;
203 sk->sk_state_change = iscsi_sw_tcp_state_change;
204 sk->sk_write_space = iscsi_sw_tcp_write_space;
7ba24713
AA
205 write_unlock_bh(&sk->sk_callback_lock);
206}
207
38e1a8f5 208static void
c484a50a 209iscsi_sw_tcp_conn_restore_callbacks(struct iscsi_conn *conn)
7ba24713 210{
c484a50a
AK
211 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
212 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
38e1a8f5 213 struct sock *sk = tcp_sw_conn->sock->sk;
7ba24713
AA
214
215 /* restore socket callbacks, see also: iscsi_conn_set_callbacks() */
216 write_lock_bh(&sk->sk_callback_lock);
217 sk->sk_user_data = NULL;
38e1a8f5
MC
218 sk->sk_data_ready = tcp_sw_conn->old_data_ready;
219 sk->sk_state_change = tcp_sw_conn->old_state_change;
220 sk->sk_write_space = tcp_sw_conn->old_write_space;
7ba24713
AA
221 sk->sk_no_check = 0;
222 write_unlock_bh(&sk->sk_callback_lock);
223}
224
225/**
38e1a8f5 226 * iscsi_sw_tcp_xmit_segment - transmit segment
6df19a79 227 * @tcp_conn: the iSCSI TCP connection
38e1a8f5
MC
228 * @segment: the buffer to transmnit
229 *
230 * This function transmits as much of the buffer as
231 * the network layer will accept, and returns the number of
232 * bytes transmitted.
233 *
234 * If CRC hashing is enabled, the function will compute the
235 * hash as it goes. When the entire segment has been transmitted,
236 * it will retrieve the hash value and send it as well.
237 */
6df19a79 238static int iscsi_sw_tcp_xmit_segment(struct iscsi_tcp_conn *tcp_conn,
38e1a8f5
MC
239 struct iscsi_segment *segment)
240{
6df19a79 241 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
38e1a8f5
MC
242 struct socket *sk = tcp_sw_conn->sock;
243 unsigned int copied = 0;
244 int r = 0;
245
6df19a79 246 while (!iscsi_tcp_segment_done(tcp_conn, segment, 0, r)) {
38e1a8f5
MC
247 struct scatterlist *sg;
248 unsigned int offset, copy;
249 int flags = 0;
250
251 r = 0;
252 offset = segment->copied;
253 copy = segment->size - offset;
254
255 if (segment->total_copied + segment->size < segment->total_size)
256 flags |= MSG_MORE;
257
258 /* Use sendpage if we can; else fall back to sendmsg */
259 if (!segment->data) {
260 sg = segment->sg;
261 offset += segment->sg_offset + sg->offset;
262 r = tcp_sw_conn->sendpage(sk, sg_page(sg), offset,
263 copy, flags);
264 } else {
265 struct msghdr msg = { .msg_flags = flags };
266 struct kvec iov = {
267 .iov_base = segment->data + offset,
268 .iov_len = copy
269 };
270
271 r = kernel_sendmsg(sk, &msg, &iov, 1, copy);
272 }
273
274 if (r < 0) {
275 iscsi_tcp_segment_unmap(segment);
38e1a8f5
MC
276 return r;
277 }
278 copied += r;
279 }
280 return copied;
281}
282
283/**
284 * iscsi_sw_tcp_xmit - TCP transmit
a8ac6311 285 **/
38e1a8f5 286static int iscsi_sw_tcp_xmit(struct iscsi_conn *conn)
7ba24713 287{
5bb0b55a 288 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5
MC
289 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
290 struct iscsi_segment *segment = &tcp_sw_conn->out.segment;
a8ac6311
OK
291 unsigned int consumed = 0;
292 int rc = 0;
7ba24713 293
a8ac6311 294 while (1) {
6df19a79 295 rc = iscsi_sw_tcp_xmit_segment(tcp_conn, segment);
32382492
MC
296 /*
297 * We may not have been able to send data because the conn
298 * is getting stopped. libiscsi will know so propogate err
299 * for it to do the right thing.
300 */
301 if (rc == -EAGAIN)
302 return rc;
303 else if (rc < 0) {
6f481e3c 304 rc = ISCSI_ERR_XMIT_FAILED;
a8ac6311 305 goto error;
32382492 306 } else if (rc == 0)
a8ac6311
OK
307 break;
308
309 consumed += rc;
310
311 if (segment->total_copied >= segment->total_size) {
312 if (segment->done != NULL) {
313 rc = segment->done(tcp_conn, segment);
6f481e3c 314 if (rc != 0)
a8ac6311
OK
315 goto error;
316 }
317 }
3219e529
MC
318 }
319
c93f87c7 320 ISCSI_SW_TCP_DBG(conn, "xmit %d bytes\n", consumed);
a8ac6311
OK
321
322 conn->txdata_octets += consumed;
323 return consumed;
324
325error:
326 /* Transmit error. We could initiate error recovery
327 * here. */
c93f87c7 328 ISCSI_SW_TCP_DBG(conn, "Error sending PDU, errno=%d\n", rc);
6f481e3c
MC
329 iscsi_conn_failure(conn, rc);
330 return -EIO;
7ba24713
AA
331}
332
333/**
a8ac6311
OK
334 * iscsi_tcp_xmit_qlen - return the number of bytes queued for xmit
335 */
38e1a8f5 336static inline int iscsi_sw_tcp_xmit_qlen(struct iscsi_conn *conn)
7ba24713 337{
a8ac6311 338 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5
MC
339 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
340 struct iscsi_segment *segment = &tcp_sw_conn->out.segment;
7ba24713 341
a8ac6311 342 return segment->total_copied - segment->total_size;
7ba24713
AA
343}
344
38e1a8f5 345static int iscsi_sw_tcp_pdu_xmit(struct iscsi_task *task)
7ba24713 346{
e5a7efef 347 struct iscsi_conn *conn = task->conn;
a8ac6311
OK
348 int rc;
349
38e1a8f5
MC
350 while (iscsi_sw_tcp_xmit_qlen(conn)) {
351 rc = iscsi_sw_tcp_xmit(conn);
a8ac6311 352 if (rc == 0)
7ba24713 353 return -EAGAIN;
a8ac6311
OK
354 if (rc < 0)
355 return rc;
3219e529 356 }
7ba24713 357
a8ac6311 358 return 0;
7ba24713
AA
359}
360
a8ac6311
OK
361/*
362 * This is called when we're done sending the header.
363 * Simply copy the data_segment to the send segment, and return.
364 */
38e1a8f5
MC
365static int iscsi_sw_tcp_send_hdr_done(struct iscsi_tcp_conn *tcp_conn,
366 struct iscsi_segment *segment)
7ba24713 367{
38e1a8f5
MC
368 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
369
370 tcp_sw_conn->out.segment = tcp_sw_conn->out.data_segment;
c93f87c7
MC
371 ISCSI_SW_TCP_DBG(tcp_conn->iscsi_conn,
372 "Header done. Next segment size %u total_size %u\n",
373 tcp_sw_conn->out.segment.size,
374 tcp_sw_conn->out.segment.total_size);
a8ac6311
OK
375 return 0;
376}
377
38e1a8f5
MC
378static void iscsi_sw_tcp_send_hdr_prep(struct iscsi_conn *conn, void *hdr,
379 size_t hdrlen)
a8ac6311
OK
380{
381 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 382 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
a8ac6311 383
c93f87c7
MC
384 ISCSI_SW_TCP_DBG(conn, "%s\n", conn->hdrdgst_en ?
385 "digest enabled" : "digest disabled");
a8ac6311
OK
386
387 /* Clear the data segment - needs to be filled in by the
388 * caller using iscsi_tcp_send_data_prep() */
38e1a8f5
MC
389 memset(&tcp_sw_conn->out.data_segment, 0,
390 sizeof(struct iscsi_segment));
a8ac6311
OK
391
392 /* If header digest is enabled, compute the CRC and
393 * place the digest into the same buffer. We make
135a8ad4 394 * sure that both iscsi_tcp_task and mtask have
a8ac6311
OK
395 * sufficient room.
396 */
397 if (conn->hdrdgst_en) {
38e1a8f5 398 iscsi_tcp_dgst_header(&tcp_sw_conn->tx_hash, hdr, hdrlen,
a8ac6311
OK
399 hdr + hdrlen);
400 hdrlen += ISCSI_DIGEST_SIZE;
401 }
402
403 /* Remember header pointer for later, when we need
404 * to decide whether there's a payload to go along
405 * with the header. */
38e1a8f5 406 tcp_sw_conn->out.hdr = hdr;
a8ac6311 407
38e1a8f5
MC
408 iscsi_segment_init_linear(&tcp_sw_conn->out.segment, hdr, hdrlen,
409 iscsi_sw_tcp_send_hdr_done, NULL);
a8ac6311
OK
410}
411
412/*
413 * Prepare the send buffer for the payload data.
414 * Padding and checksumming will all be taken care
415 * of by the iscsi_segment routines.
416 */
417static int
38e1a8f5
MC
418iscsi_sw_tcp_send_data_prep(struct iscsi_conn *conn, struct scatterlist *sg,
419 unsigned int count, unsigned int offset,
420 unsigned int len)
a8ac6311
OK
421{
422 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 423 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
a8ac6311
OK
424 struct hash_desc *tx_hash = NULL;
425 unsigned int hdr_spec_len;
426
c93f87c7
MC
427 ISCSI_SW_TCP_DBG(conn, "offset=%d, datalen=%d %s\n", offset, len,
428 conn->datadgst_en ?
429 "digest enabled" : "digest disabled");
a8ac6311
OK
430
431 /* Make sure the datalen matches what the caller
432 said he would send. */
38e1a8f5 433 hdr_spec_len = ntoh24(tcp_sw_conn->out.hdr->dlength);
a8ac6311
OK
434 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
435
436 if (conn->datadgst_en)
38e1a8f5 437 tx_hash = &tcp_sw_conn->tx_hash;
a8ac6311 438
38e1a8f5
MC
439 return iscsi_segment_seek_sg(&tcp_sw_conn->out.data_segment,
440 sg, count, offset, len,
441 NULL, tx_hash);
a8ac6311
OK
442}
443
444static void
38e1a8f5 445iscsi_sw_tcp_send_linear_data_prep(struct iscsi_conn *conn, void *data,
a8ac6311
OK
446 size_t len)
447{
448 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 449 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
a8ac6311
OK
450 struct hash_desc *tx_hash = NULL;
451 unsigned int hdr_spec_len;
452
c93f87c7
MC
453 ISCSI_SW_TCP_DBG(conn, "datalen=%zd %s\n", len, conn->datadgst_en ?
454 "digest enabled" : "digest disabled");
a8ac6311
OK
455
456 /* Make sure the datalen matches what the caller
457 said he would send. */
38e1a8f5 458 hdr_spec_len = ntoh24(tcp_sw_conn->out.hdr->dlength);
a8ac6311
OK
459 WARN_ON(iscsi_padded(len) != iscsi_padded(hdr_spec_len));
460
461 if (conn->datadgst_en)
38e1a8f5 462 tx_hash = &tcp_sw_conn->tx_hash;
a8ac6311 463
38e1a8f5 464 iscsi_segment_init_linear(&tcp_sw_conn->out.data_segment,
a8ac6311 465 data, len, NULL, tx_hash);
7ba24713
AA
466}
467
38e1a8f5
MC
468static int iscsi_sw_tcp_pdu_init(struct iscsi_task *task,
469 unsigned int offset, unsigned int count)
e5a7efef
MC
470{
471 struct iscsi_conn *conn = task->conn;
472 int err = 0;
473
38e1a8f5 474 iscsi_sw_tcp_send_hdr_prep(conn, task->hdr, task->hdr_len);
e5a7efef
MC
475
476 if (!count)
477 return 0;
478
479 if (!task->sc)
38e1a8f5 480 iscsi_sw_tcp_send_linear_data_prep(conn, task->data, count);
e5a7efef
MC
481 else {
482 struct scsi_data_buffer *sdb = scsi_out(task->sc);
483
38e1a8f5
MC
484 err = iscsi_sw_tcp_send_data_prep(conn, sdb->table.sgl,
485 sdb->table.nents, offset,
486 count);
e5a7efef
MC
487 }
488
489 if (err) {
9a6510eb 490 /* got invalid offset/len */
e5a7efef
MC
491 return -EIO;
492 }
493 return 0;
494}
495
2ff79d52 496static int iscsi_sw_tcp_pdu_alloc(struct iscsi_task *task, uint8_t opcode)
7ba24713 497{
135a8ad4 498 struct iscsi_tcp_task *tcp_task = task->dd_data;
7ba24713 499
38e1a8f5
MC
500 task->hdr = task->dd_data + sizeof(*tcp_task);
501 task->hdr_max = sizeof(struct iscsi_sw_tcp_hdrbuf) - ISCSI_DIGEST_SIZE;
a8ac6311 502 return 0;
7ba24713
AA
503}
504
5bb0b55a 505static struct iscsi_cls_conn *
38e1a8f5
MC
506iscsi_sw_tcp_conn_create(struct iscsi_cls_session *cls_session,
507 uint32_t conn_idx)
7ba24713 508{
5bb0b55a
MC
509 struct iscsi_conn *conn;
510 struct iscsi_cls_conn *cls_conn;
511 struct iscsi_tcp_conn *tcp_conn;
38e1a8f5 512 struct iscsi_sw_tcp_conn *tcp_sw_conn;
7ba24713 513
38e1a8f5
MC
514 cls_conn = iscsi_tcp_conn_setup(cls_session, sizeof(*tcp_sw_conn),
515 conn_idx);
5bb0b55a
MC
516 if (!cls_conn)
517 return NULL;
518 conn = cls_conn->dd_data;
5d91e209 519 tcp_conn = conn->dd_data;
38e1a8f5 520 tcp_sw_conn = tcp_conn->dd_data;
7ba24713 521
38e1a8f5
MC
522 tcp_sw_conn->tx_hash.tfm = crypto_alloc_hash("crc32c", 0,
523 CRYPTO_ALG_ASYNC);
524 tcp_sw_conn->tx_hash.flags = 0;
525 if (IS_ERR(tcp_sw_conn->tx_hash.tfm))
5d91e209 526 goto free_conn;
dd8c0d95 527
38e1a8f5
MC
528 tcp_sw_conn->rx_hash.tfm = crypto_alloc_hash("crc32c", 0,
529 CRYPTO_ALG_ASYNC);
530 tcp_sw_conn->rx_hash.flags = 0;
531 if (IS_ERR(tcp_sw_conn->rx_hash.tfm))
dd8c0d95 532 goto free_tx_tfm;
38e1a8f5 533 tcp_conn->rx_hash = &tcp_sw_conn->rx_hash;
dd8c0d95 534
5bb0b55a 535 return cls_conn;
7ba24713 536
dd8c0d95 537free_tx_tfm:
38e1a8f5 538 crypto_free_hash(tcp_sw_conn->tx_hash.tfm);
5d91e209 539free_conn:
322d739d
MC
540 iscsi_conn_printk(KERN_ERR, conn,
541 "Could not create connection due to crc32c "
542 "loading error. Make sure the crc32c "
543 "module is built as a module or into the "
544 "kernel\n");
38e1a8f5 545 iscsi_tcp_conn_teardown(cls_conn);
5bb0b55a 546 return NULL;
7ba24713
AA
547}
548
38e1a8f5 549static void iscsi_sw_tcp_release_conn(struct iscsi_conn *conn)
1c83469d 550{
22236961 551 struct iscsi_session *session = conn->session;
1c83469d 552 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5
MC
553 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
554 struct socket *sock = tcp_sw_conn->sock;
1c83469d 555
22236961 556 if (!sock)
1c83469d
MC
557 return;
558
22236961 559 sock_hold(sock->sk);
c484a50a 560 iscsi_sw_tcp_conn_restore_callbacks(conn);
22236961 561 sock_put(sock->sk);
1c83469d 562
22236961 563 spin_lock_bh(&session->lock);
38e1a8f5 564 tcp_sw_conn->sock = NULL;
22236961
MC
565 spin_unlock_bh(&session->lock);
566 sockfd_put(sock);
1c83469d
MC
567}
568
38e1a8f5 569static void iscsi_sw_tcp_conn_destroy(struct iscsi_cls_conn *cls_conn)
7ba24713 570{
5bb0b55a
MC
571 struct iscsi_conn *conn = cls_conn->dd_data;
572 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 573 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
7ba24713 574
38e1a8f5 575 iscsi_sw_tcp_release_conn(conn);
7ba24713 576
38e1a8f5
MC
577 if (tcp_sw_conn->tx_hash.tfm)
578 crypto_free_hash(tcp_sw_conn->tx_hash.tfm);
579 if (tcp_sw_conn->rx_hash.tfm)
580 crypto_free_hash(tcp_sw_conn->rx_hash.tfm);
7ba24713 581
38e1a8f5 582 iscsi_tcp_conn_teardown(cls_conn);
5bb0b55a 583}
7ba24713 584
38e1a8f5 585static void iscsi_sw_tcp_conn_stop(struct iscsi_cls_conn *cls_conn, int flag)
1c83469d
MC
586{
587 struct iscsi_conn *conn = cls_conn->dd_data;
913e5bf4 588 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 589 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
b64e77f7 590 struct socket *sock = tcp_sw_conn->sock;
913e5bf4
MC
591
592 /* userspace may have goofed up and not bound us */
b64e77f7 593 if (!sock)
913e5bf4
MC
594 return;
595 /*
596 * Make sure our recv side is stopped.
597 * Older tools called conn stop before ep_disconnect
598 * so IO could still be coming in.
599 */
38e1a8f5 600 write_lock_bh(&tcp_sw_conn->sock->sk->sk_callback_lock);
913e5bf4 601 set_bit(ISCSI_SUSPEND_BIT, &conn->suspend_rx);
38e1a8f5 602 write_unlock_bh(&tcp_sw_conn->sock->sk->sk_callback_lock);
1c83469d 603
70ca0a42 604 if (sk_sleep(sock->sk)) {
b64e77f7 605 sock->sk->sk_err = EIO;
aa395145 606 wake_up_interruptible(sk_sleep(sock->sk));
b64e77f7
MC
607 }
608
1c83469d 609 iscsi_conn_stop(cls_conn, flag);
38e1a8f5 610 iscsi_sw_tcp_release_conn(conn);
1c83469d
MC
611}
612
38e1a8f5
MC
613static int iscsi_sw_tcp_get_addr(struct iscsi_conn *conn, struct socket *sock,
614 char *buf, int *port,
615 int (*getname)(struct socket *,
616 struct sockaddr *,
617 int *addrlen))
22236961
MC
618{
619 struct sockaddr_storage *addr;
620 struct sockaddr_in6 *sin6;
621 struct sockaddr_in *sin;
622 int rc = 0, len;
623
a9204879 624 addr = kmalloc(sizeof(*addr), GFP_KERNEL);
22236961
MC
625 if (!addr)
626 return -ENOMEM;
627
628 if (getname(sock, (struct sockaddr *) addr, &len)) {
629 rc = -ENODEV;
630 goto free_addr;
631 }
632
633 switch (addr->ss_family) {
634 case AF_INET:
635 sin = (struct sockaddr_in *)addr;
636 spin_lock_bh(&conn->session->lock);
63779436 637 sprintf(buf, "%pI4", &sin->sin_addr.s_addr);
22236961
MC
638 *port = be16_to_cpu(sin->sin_port);
639 spin_unlock_bh(&conn->session->lock);
640 break;
641 case AF_INET6:
642 sin6 = (struct sockaddr_in6 *)addr;
643 spin_lock_bh(&conn->session->lock);
5b095d98 644 sprintf(buf, "%pI6", &sin6->sin6_addr);
22236961
MC
645 *port = be16_to_cpu(sin6->sin6_port);
646 spin_unlock_bh(&conn->session->lock);
647 break;
648 }
649free_addr:
650 kfree(addr);
651 return rc;
652}
653
5bb0b55a 654static int
38e1a8f5
MC
655iscsi_sw_tcp_conn_bind(struct iscsi_cls_session *cls_session,
656 struct iscsi_cls_conn *cls_conn, uint64_t transport_eph,
657 int is_leading)
5bb0b55a 658{
75613521
MC
659 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
660 struct iscsi_host *ihost = shost_priv(shost);
5bb0b55a
MC
661 struct iscsi_conn *conn = cls_conn->dd_data;
662 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 663 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
5bb0b55a
MC
664 struct sock *sk;
665 struct socket *sock;
666 int err;
7ba24713 667
5bb0b55a 668 /* lookup for existing socket */
264faaaa 669 sock = sockfd_lookup((int)transport_eph, &err);
5bb0b55a 670 if (!sock) {
322d739d
MC
671 iscsi_conn_printk(KERN_ERR, conn,
672 "sockfd_lookup failed %d\n", err);
5bb0b55a 673 return -EEXIST;
7ba24713 674 }
22236961
MC
675 /*
676 * copy these values now because if we drop the session
677 * userspace may still want to query the values since we will
678 * be using them for the reconnect
679 */
38e1a8f5
MC
680 err = iscsi_sw_tcp_get_addr(conn, sock, conn->portal_address,
681 &conn->portal_port, kernel_getpeername);
22236961
MC
682 if (err)
683 goto free_socket;
684
38e1a8f5
MC
685 err = iscsi_sw_tcp_get_addr(conn, sock, ihost->local_address,
686 &ihost->local_port, kernel_getsockname);
22236961
MC
687 if (err)
688 goto free_socket;
7ba24713 689
5bb0b55a
MC
690 err = iscsi_conn_bind(cls_session, cls_conn, is_leading);
691 if (err)
22236961 692 goto free_socket;
7ba24713 693
67a61114 694 /* bind iSCSI connection and socket */
38e1a8f5 695 tcp_sw_conn->sock = sock;
7ba24713 696
67a61114
MC
697 /* setup Socket parameters */
698 sk = sock->sk;
699 sk->sk_reuse = 1;
700 sk->sk_sndtimeo = 15 * HZ; /* FIXME: make it configurable */
701 sk->sk_allocation = GFP_ATOMIC;
7ba24713 702
38e1a8f5
MC
703 iscsi_sw_tcp_conn_set_callbacks(conn);
704 tcp_sw_conn->sendpage = tcp_sw_conn->sock->ops->sendpage;
67a61114
MC
705 /*
706 * set receive state machine into initial state
707 */
da32dd68 708 iscsi_tcp_hdr_recv_prep(tcp_conn);
7ba24713 709 return 0;
22236961
MC
710
711free_socket:
712 sockfd_put(sock);
713 return err;
7ba24713
AA
714}
715
38e1a8f5
MC
716static int iscsi_sw_tcp_conn_set_param(struct iscsi_cls_conn *cls_conn,
717 enum iscsi_param param, char *buf,
718 int buflen)
7ba24713 719{
7b7232f3 720 struct iscsi_conn *conn = cls_conn->dd_data;
7ba24713 721 struct iscsi_session *session = conn->session;
5bb0b55a 722 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 723 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
5c75b7fc 724 int value;
7ba24713 725
7ba24713 726 switch(param) {
7ba24713 727 case ISCSI_PARAM_HDRDGST_EN:
5c75b7fc 728 iscsi_set_param(cls_conn, param, buf, buflen);
7ba24713
AA
729 break;
730 case ISCSI_PARAM_DATADGST_EN:
5c75b7fc 731 iscsi_set_param(cls_conn, param, buf, buflen);
38e1a8f5
MC
732 tcp_sw_conn->sendpage = conn->datadgst_en ?
733 sock_no_sendpage : tcp_sw_conn->sock->ops->sendpage;
7ba24713 734 break;
7ba24713 735 case ISCSI_PARAM_MAX_R2T:
5c75b7fc 736 sscanf(buf, "%d", &value);
df93ffcd
MC
737 if (value <= 0 || !is_power_of_2(value))
738 return -EINVAL;
739 if (session->max_r2t == value)
7ba24713 740 break;
38e1a8f5 741 iscsi_tcp_r2tpool_free(session);
5c75b7fc 742 iscsi_set_param(cls_conn, param, buf, buflen);
38e1a8f5 743 if (iscsi_tcp_r2tpool_alloc(session))
7ba24713
AA
744 return -ENOMEM;
745 break;
7ba24713 746 default:
5c75b7fc 747 return iscsi_set_param(cls_conn, param, buf, buflen);
7ba24713
AA
748 }
749
750 return 0;
751}
752
38e1a8f5
MC
753static int iscsi_sw_tcp_conn_get_param(struct iscsi_cls_conn *cls_conn,
754 enum iscsi_param param, char *buf)
7b8631b5 755{
7b7232f3 756 struct iscsi_conn *conn = cls_conn->dd_data;
5c75b7fc 757 int len;
7b8631b5
MC
758
759 switch(param) {
fd7255f5 760 case ISCSI_PARAM_CONN_PORT:
22236961
MC
761 spin_lock_bh(&conn->session->lock);
762 len = sprintf(buf, "%hu\n", conn->portal_port);
763 spin_unlock_bh(&conn->session->lock);
8d2860b3 764 break;
fd7255f5 765 case ISCSI_PARAM_CONN_ADDRESS:
22236961
MC
766 spin_lock_bh(&conn->session->lock);
767 len = sprintf(buf, "%s\n", conn->portal_address);
768 spin_unlock_bh(&conn->session->lock);
fd7255f5
MC
769 break;
770 default:
5c75b7fc 771 return iscsi_conn_get_param(cls_conn, param, buf);
fd7255f5
MC
772 }
773
774 return len;
775}
776
7ba24713 777static void
38e1a8f5
MC
778iscsi_sw_tcp_conn_get_stats(struct iscsi_cls_conn *cls_conn,
779 struct iscsi_stats *stats)
7ba24713 780{
7b7232f3 781 struct iscsi_conn *conn = cls_conn->dd_data;
5bb0b55a 782 struct iscsi_tcp_conn *tcp_conn = conn->dd_data;
38e1a8f5 783 struct iscsi_sw_tcp_conn *tcp_sw_conn = tcp_conn->dd_data;
7ba24713 784
7ba24713
AA
785 stats->custom_length = 3;
786 strcpy(stats->custom[0].desc, "tx_sendpage_failures");
38e1a8f5 787 stats->custom[0].value = tcp_sw_conn->sendpage_failures_cnt;
7ba24713 788 strcpy(stats->custom[1].desc, "rx_discontiguous_hdr");
38e1a8f5 789 stats->custom[1].value = tcp_sw_conn->discontiguous_hdr_cnt;
7ba24713
AA
790 strcpy(stats->custom[2].desc, "eh_abort_cnt");
791 stats->custom[2].value = conn->eh_abort_cnt;
38e1a8f5
MC
792
793 iscsi_tcp_conn_get_stats(cls_conn, stats);
7ba24713
AA
794}
795
5bb0b55a 796static struct iscsi_cls_session *
38e1a8f5 797iscsi_sw_tcp_session_create(struct iscsi_endpoint *ep, uint16_t cmds_max,
5e7facb7 798 uint16_t qdepth, uint32_t initial_cmdsn)
7ba24713 799{
5bb0b55a
MC
800 struct iscsi_cls_session *cls_session;
801 struct iscsi_session *session;
06520ede 802 struct Scsi_Host *shost;
7ba24713 803
06520ede
MC
804 if (ep) {
805 printk(KERN_ERR "iscsi_tcp: invalid ep %p.\n", ep);
75613521
MC
806 return NULL;
807 }
808
4d108350 809 shost = iscsi_host_alloc(&iscsi_sw_tcp_sht, 0, 1);
75613521 810 if (!shost)
5bb0b55a 811 return NULL;
38e1a8f5 812 shost->transportt = iscsi_sw_tcp_scsi_transport;
4d108350 813 shost->cmd_per_lun = qdepth;
75613521
MC
814 shost->max_lun = iscsi_max_lun;
815 shost->max_id = 0;
816 shost->max_channel = 0;
30e9ba9f 817 shost->max_cmd_len = SCSI_MAX_VARLEN_CDB_SIZE;
75613521 818
a4804cd6 819 if (iscsi_host_add(shost, NULL))
75613521 820 goto free_host;
75613521 821
38e1a8f5 822 cls_session = iscsi_session_setup(&iscsi_sw_tcp_transport, shost,
b8b9e1b8 823 cmds_max, 0,
38e1a8f5
MC
824 sizeof(struct iscsi_tcp_task) +
825 sizeof(struct iscsi_sw_tcp_hdrbuf),
7970634b 826 initial_cmdsn, 0);
75613521
MC
827 if (!cls_session)
828 goto remove_host;
829 session = cls_session->dd_data;
7ba24713 830
fbc514b4 831 shost->can_queue = session->scsi_cmds_max;
38e1a8f5 832 if (iscsi_tcp_r2tpool_alloc(session))
75613521 833 goto remove_session;
5bb0b55a
MC
834 return cls_session;
835
75613521 836remove_session:
5bb0b55a 837 iscsi_session_teardown(cls_session);
75613521 838remove_host:
a4804cd6 839 iscsi_host_remove(shost);
75613521 840free_host:
a4804cd6 841 iscsi_host_free(shost);
5bb0b55a
MC
842 return NULL;
843}
844
38e1a8f5 845static void iscsi_sw_tcp_session_destroy(struct iscsi_cls_session *cls_session)
5bb0b55a 846{
75613521
MC
847 struct Scsi_Host *shost = iscsi_session_to_shost(cls_session);
848
38e1a8f5 849 iscsi_tcp_r2tpool_free(cls_session->dd_data);
e5bd7b54 850 iscsi_session_teardown(cls_session);
75613521 851
a4804cd6
MC
852 iscsi_host_remove(shost);
853 iscsi_host_free(shost);
7ba24713
AA
854}
855
091e6dbe
PW
856static int iscsi_sw_tcp_slave_alloc(struct scsi_device *sdev)
857{
858 set_bit(QUEUE_FLAG_BIDI, &sdev->request_queue->queue_flags);
859 return 0;
860}
861
38e1a8f5 862static int iscsi_sw_tcp_slave_configure(struct scsi_device *sdev)
d1d81c01 863{
b6d44fe9 864 blk_queue_bounce_limit(sdev->request_queue, BLK_BOUNCE_ANY);
d1d81c01
MC
865 blk_queue_dma_alignment(sdev->request_queue, 0);
866 return 0;
867}
868
38e1a8f5 869static struct scsi_host_template iscsi_sw_tcp_sht = {
7974392c 870 .module = THIS_MODULE,
f4246b33 871 .name = "iSCSI Initiator over TCP/IP",
5bb0b55a
MC
872 .queuecommand = iscsi_queuecommand,
873 .change_queue_depth = iscsi_change_queue_depth,
1548271e 874 .can_queue = ISCSI_DEF_XMIT_CMDS_MAX - 1,
66bbe0ce 875 .sg_tablesize = 4096,
8231f0ed 876 .max_sectors = 0xFFFF,
5bb0b55a
MC
877 .cmd_per_lun = ISCSI_DEF_CMD_PER_LUN,
878 .eh_abort_handler = iscsi_eh_abort,
843c0a8a 879 .eh_device_reset_handler= iscsi_eh_device_reset,
309ce156 880 .eh_target_reset_handler = iscsi_eh_recover_target,
5bb0b55a 881 .use_clustering = DISABLE_CLUSTERING,
091e6dbe 882 .slave_alloc = iscsi_sw_tcp_slave_alloc,
38e1a8f5 883 .slave_configure = iscsi_sw_tcp_slave_configure,
6b5d6c44 884 .target_alloc = iscsi_target_alloc,
5bb0b55a
MC
885 .proc_name = "iscsi_tcp",
886 .this_id = -1,
887};
888
38e1a8f5 889static struct iscsi_transport iscsi_sw_tcp_transport = {
7ba24713
AA
890 .owner = THIS_MODULE,
891 .name = "tcp",
892 .caps = CAP_RECOVERY_L0 | CAP_MULTI_R2T | CAP_HDRDGST
893 | CAP_DATADGST,
fd7255f5
MC
894 .param_mask = ISCSI_MAX_RECV_DLENGTH |
895 ISCSI_MAX_XMIT_DLENGTH |
896 ISCSI_HDRDGST_EN |
897 ISCSI_DATADGST_EN |
898 ISCSI_INITIAL_R2T_EN |
899 ISCSI_MAX_R2T |
900 ISCSI_IMM_DATA_EN |
901 ISCSI_FIRST_BURST |
902 ISCSI_MAX_BURST |
903 ISCSI_PDU_INORDER_EN |
904 ISCSI_DATASEQ_INORDER_EN |
905 ISCSI_ERL |
906 ISCSI_CONN_PORT |
8d2860b3 907 ISCSI_CONN_ADDRESS |
5c75b7fc
MC
908 ISCSI_EXP_STATSN |
909 ISCSI_PERSISTENT_PORT |
910 ISCSI_PERSISTENT_ADDRESS |
b2c64167
MC
911 ISCSI_TARGET_NAME | ISCSI_TPGT |
912 ISCSI_USERNAME | ISCSI_PASSWORD |
843c0a8a 913 ISCSI_USERNAME_IN | ISCSI_PASSWORD_IN |
f6d5180c 914 ISCSI_FAST_ABORT | ISCSI_ABORT_TMO |
3fe5ae8b 915 ISCSI_LU_RESET_TMO | ISCSI_TGT_RESET_TMO |
88dfd340
MC
916 ISCSI_PING_TMO | ISCSI_RECV_TMO |
917 ISCSI_IFACE_NAME | ISCSI_INITIATOR_NAME,
22236961 918 .host_param_mask = ISCSI_HOST_HWADDRESS | ISCSI_HOST_IPADDRESS |
d8196ed2
MC
919 ISCSI_HOST_INITIATOR_NAME |
920 ISCSI_HOST_NETDEV_NAME,
5bb0b55a 921 /* session management */
38e1a8f5
MC
922 .create_session = iscsi_sw_tcp_session_create,
923 .destroy_session = iscsi_sw_tcp_session_destroy,
5bb0b55a 924 /* connection management */
38e1a8f5
MC
925 .create_conn = iscsi_sw_tcp_conn_create,
926 .bind_conn = iscsi_sw_tcp_conn_bind,
927 .destroy_conn = iscsi_sw_tcp_conn_destroy,
928 .set_param = iscsi_sw_tcp_conn_set_param,
929 .get_conn_param = iscsi_sw_tcp_conn_get_param,
7b8631b5 930 .get_session_param = iscsi_session_get_param,
7ba24713 931 .start_conn = iscsi_conn_start,
38e1a8f5 932 .stop_conn = iscsi_sw_tcp_conn_stop,
0801c242 933 /* iscsi host params */
75613521 934 .get_host_param = iscsi_host_get_param,
0801c242 935 .set_host_param = iscsi_host_set_param,
5bb0b55a 936 /* IO */
7ba24713 937 .send_pdu = iscsi_conn_send_pdu,
38e1a8f5 938 .get_stats = iscsi_sw_tcp_conn_get_stats,
e5a7efef 939 /* iscsi task/cmd helpers */
fbc514b4
MC
940 .init_task = iscsi_tcp_task_init,
941 .xmit_task = iscsi_tcp_task_xmit,
942 .cleanup_task = iscsi_tcp_cleanup_task,
e5a7efef 943 /* low level pdu helpers */
38e1a8f5
MC
944 .xmit_pdu = iscsi_sw_tcp_pdu_xmit,
945 .init_pdu = iscsi_sw_tcp_pdu_init,
946 .alloc_pdu = iscsi_sw_tcp_pdu_alloc,
5bb0b55a 947 /* recovery */
30a6c652 948 .session_recovery_timedout = iscsi_session_recovery_timedout,
7ba24713
AA
949};
950
38e1a8f5 951static int __init iscsi_sw_tcp_init(void)
7ba24713 952{
7ba24713 953 if (iscsi_max_lun < 1) {
be2df72e
OG
954 printk(KERN_ERR "iscsi_tcp: Invalid max_lun value of %u\n",
955 iscsi_max_lun);
7ba24713
AA
956 return -EINVAL;
957 }
7ba24713 958
38e1a8f5
MC
959 iscsi_sw_tcp_scsi_transport = iscsi_register_transport(
960 &iscsi_sw_tcp_transport);
961 if (!iscsi_sw_tcp_scsi_transport)
ffbfe925 962 return -ENODEV;
7ba24713 963
7b8631b5 964 return 0;
7ba24713
AA
965}
966
38e1a8f5 967static void __exit iscsi_sw_tcp_exit(void)
7ba24713 968{
38e1a8f5 969 iscsi_unregister_transport(&iscsi_sw_tcp_transport);
7ba24713
AA
970}
971
38e1a8f5
MC
972module_init(iscsi_sw_tcp_init);
973module_exit(iscsi_sw_tcp_exit);
This page took 0.635275 seconds and 5 git commands to generate.