xref: /freebsd/sys/dev/iscsi/iscsi.c (revision ee5cf11617a9b7f034d95c639bd4d27d1f09e848)
1 /*-
2  * Copyright (c) 2012 The FreeBSD Foundation
3  * All rights reserved.
4  *
5  * This software was developed by Edward Tomasz Napierala under sponsorship
6  * from the FreeBSD Foundation.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
18  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
19  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
20  * ARE DISCLAIMED.  IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
21  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
22  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
23  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
24  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
25  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
26  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
27  * SUCH DAMAGE.
28  *
29  */
30 
31 #include <sys/cdefs.h>
32 __FBSDID("$FreeBSD$");
33 
34 #include <sys/param.h>
35 #include <sys/condvar.h>
36 #include <sys/conf.h>
37 #include <sys/endian.h>
38 #include <sys/eventhandler.h>
39 #include <sys/file.h>
40 #include <sys/kernel.h>
41 #include <sys/kthread.h>
42 #include <sys/lock.h>
43 #include <sys/malloc.h>
44 #include <sys/mutex.h>
45 #include <sys/module.h>
46 #include <sys/socket.h>
47 #include <sys/sysctl.h>
48 #include <sys/systm.h>
49 #include <sys/sx.h>
50 #include <vm/uma.h>
51 
52 #include <cam/cam.h>
53 #include <cam/cam_ccb.h>
54 #include <cam/cam_xpt.h>
55 #include <cam/cam_debug.h>
56 #include <cam/cam_sim.h>
57 #include <cam/cam_xpt_sim.h>
58 #include <cam/cam_xpt_periph.h>
59 #include <cam/cam_periph.h>
60 #include <cam/scsi/scsi_all.h>
61 #include <cam/scsi/scsi_message.h>
62 
63 #include <dev/iscsi/icl.h>
64 #include <dev/iscsi/icl_wrappers.h>
65 #include <dev/iscsi/iscsi_ioctl.h>
66 #include <dev/iscsi/iscsi_proto.h>
67 #include <dev/iscsi/iscsi.h>
68 
69 #ifdef ICL_KERNEL_PROXY
70 #include <sys/socketvar.h>
71 #endif
72 
73 #ifdef ICL_KERNEL_PROXY
74 FEATURE(iscsi_kernel_proxy, "iSCSI initiator built with ICL_KERNEL_PROXY");
75 #endif
76 
77 /*
78  * XXX: This is global so the iscsi_unload() can access it.
79  * 	Think about how to do this properly.
80  */
81 static struct iscsi_softc	*sc;
82 
83 SYSCTL_NODE(_kern, OID_AUTO, iscsi, CTLFLAG_RD, 0, "iSCSI initiator");
84 static int debug = 1;
85 SYSCTL_INT(_kern_iscsi, OID_AUTO, debug, CTLFLAG_RWTUN,
86     &debug, 0, "Enable debug messages");
87 static int ping_timeout = 5;
88 SYSCTL_INT(_kern_iscsi, OID_AUTO, ping_timeout, CTLFLAG_RWTUN, &ping_timeout,
89     0, "Timeout for ping (NOP-Out) requests, in seconds");
90 static int iscsid_timeout = 60;
91 SYSCTL_INT(_kern_iscsi, OID_AUTO, iscsid_timeout, CTLFLAG_RWTUN, &iscsid_timeout,
92     0, "Time to wait for iscsid(8) to handle reconnection, in seconds");
93 static int login_timeout = 60;
94 SYSCTL_INT(_kern_iscsi, OID_AUTO, login_timeout, CTLFLAG_RWTUN, &login_timeout,
95     0, "Time to wait for iscsid(8) to finish Login Phase, in seconds");
96 static int maxtags = 255;
97 SYSCTL_INT(_kern_iscsi, OID_AUTO, maxtags, CTLFLAG_RWTUN, &maxtags,
98     0, "Max number of IO requests queued");
99 static int fail_on_disconnection = 0;
100 SYSCTL_INT(_kern_iscsi, OID_AUTO, fail_on_disconnection, CTLFLAG_RWTUN,
101     &fail_on_disconnection, 0, "Destroy CAM SIM on connection failure");
102 static int fail_on_shutdown = 1;
103 SYSCTL_INT(_kern_iscsi, OID_AUTO, fail_on_shutdown, CTLFLAG_RWTUN,
104     &fail_on_shutdown, 0, "Fail disconnected sessions on shutdown");
105 
106 static MALLOC_DEFINE(M_ISCSI, "iSCSI", "iSCSI initiator");
107 static uma_zone_t iscsi_outstanding_zone;
108 
109 #define	CONN_SESSION(X)	((struct iscsi_session *)X->ic_prv0)
110 #define	PDU_SESSION(X)	(CONN_SESSION(X->ip_conn))
111 
112 #define	ISCSI_DEBUG(X, ...)						\
113 	do {								\
114 		if (debug > 1) 						\
115 			printf("%s: " X "\n", __func__, ## __VA_ARGS__);\
116 	} while (0)
117 
118 #define	ISCSI_WARN(X, ...)						\
119 	do {								\
120 		if (debug > 0) {					\
121 			printf("WARNING: %s: " X "\n",			\
122 			    __func__, ## __VA_ARGS__);			\
123 		}							\
124 	} while (0)
125 
126 #define	ISCSI_SESSION_DEBUG(S, X, ...)					\
127 	do {								\
128 		if (debug > 1) {					\
129 			printf("%s: %s (%s): " X "\n",			\
130 			    __func__, S->is_conf.isc_target_addr,	\
131 			    S->is_conf.isc_target, ## __VA_ARGS__);	\
132 		}							\
133 	} while (0)
134 
135 #define	ISCSI_SESSION_WARN(S, X, ...)					\
136 	do {								\
137 		if (debug > 0) {					\
138 			printf("WARNING: %s (%s): " X "\n",		\
139 			    S->is_conf.isc_target_addr,			\
140 			    S->is_conf.isc_target, ## __VA_ARGS__);	\
141 		}							\
142 	} while (0)
143 
144 #define ISCSI_SESSION_LOCK(X)		mtx_lock(&X->is_lock)
145 #define ISCSI_SESSION_UNLOCK(X)		mtx_unlock(&X->is_lock)
146 #define ISCSI_SESSION_LOCK_ASSERT(X)	mtx_assert(&X->is_lock, MA_OWNED)
147 #define ISCSI_SESSION_LOCK_ASSERT_NOT(X) mtx_assert(&X->is_lock, MA_NOTOWNED)
148 
149 static int	iscsi_ioctl(struct cdev *dev, u_long cmd, caddr_t arg,
150 		    int mode, struct thread *td);
151 
152 static struct cdevsw iscsi_cdevsw = {
153      .d_version = D_VERSION,
154      .d_ioctl   = iscsi_ioctl,
155      .d_name    = "iscsi",
156 };
157 
158 static void	iscsi_pdu_queue_locked(struct icl_pdu *request);
159 static void	iscsi_pdu_queue(struct icl_pdu *request);
160 static void	iscsi_pdu_update_statsn(const struct icl_pdu *response);
161 static void	iscsi_pdu_handle_nop_in(struct icl_pdu *response);
162 static void	iscsi_pdu_handle_scsi_response(struct icl_pdu *response);
163 static void	iscsi_pdu_handle_task_response(struct icl_pdu *response);
164 static void	iscsi_pdu_handle_data_in(struct icl_pdu *response);
165 static void	iscsi_pdu_handle_logout_response(struct icl_pdu *response);
166 static void	iscsi_pdu_handle_r2t(struct icl_pdu *response);
167 static void	iscsi_pdu_handle_async_message(struct icl_pdu *response);
168 static void	iscsi_pdu_handle_reject(struct icl_pdu *response);
169 static void	iscsi_session_reconnect(struct iscsi_session *is);
170 static void	iscsi_session_terminate(struct iscsi_session *is);
171 static void	iscsi_action(struct cam_sim *sim, union ccb *ccb);
172 static void	iscsi_poll(struct cam_sim *sim);
173 static struct iscsi_outstanding	*iscsi_outstanding_find(struct iscsi_session *is,
174 		    uint32_t initiator_task_tag);
175 static struct iscsi_outstanding	*iscsi_outstanding_add(struct iscsi_session *is,
176 		    struct icl_pdu *request, union ccb *ccb,
177 		    uint32_t *initiator_task_tagp);
178 static void	iscsi_outstanding_remove(struct iscsi_session *is,
179 		    struct iscsi_outstanding *io);
180 
181 static bool
182 iscsi_pdu_prepare(struct icl_pdu *request)
183 {
184 	struct iscsi_session *is;
185 	struct iscsi_bhs_scsi_command *bhssc;
186 
187 	is = PDU_SESSION(request);
188 
189 	ISCSI_SESSION_LOCK_ASSERT(is);
190 
191 	/*
192 	 * We're only using fields common for all the request
193 	 * (initiator -> target) PDUs.
194 	 */
195 	bhssc = (struct iscsi_bhs_scsi_command *)request->ip_bhs;
196 
197 	/*
198 	 * Data-Out PDU does not contain CmdSN.
199 	 */
200 	if (bhssc->bhssc_opcode != ISCSI_BHS_OPCODE_SCSI_DATA_OUT) {
201 		if (ISCSI_SNGT(is->is_cmdsn, is->is_maxcmdsn) &&
202 		    (bhssc->bhssc_opcode & ISCSI_BHS_OPCODE_IMMEDIATE) == 0) {
203 			/*
204 			 * Current MaxCmdSN prevents us from sending any more
205 			 * SCSI Command PDUs to the target; postpone the PDU.
206 			 * It will get resent by either iscsi_pdu_queue(),
207 			 * or by maintenance thread.
208 			 */
209 #if 0
210 			ISCSI_SESSION_DEBUG(is, "postponing send, CmdSN %u, "
211 			    "ExpCmdSN %u, MaxCmdSN %u, opcode 0x%x",
212 			    is->is_cmdsn, is->is_expcmdsn, is->is_maxcmdsn,
213 			    bhssc->bhssc_opcode);
214 #endif
215 			return (true);
216 		}
217 		bhssc->bhssc_cmdsn = htonl(is->is_cmdsn);
218 		if ((bhssc->bhssc_opcode & ISCSI_BHS_OPCODE_IMMEDIATE) == 0)
219 			is->is_cmdsn++;
220 	}
221 	bhssc->bhssc_expstatsn = htonl(is->is_statsn + 1);
222 
223 	return (false);
224 }
225 
226 static void
227 iscsi_session_send_postponed(struct iscsi_session *is)
228 {
229 	struct icl_pdu *request;
230 	bool postpone;
231 
232 	ISCSI_SESSION_LOCK_ASSERT(is);
233 
234 	while (!STAILQ_EMPTY(&is->is_postponed)) {
235 		request = STAILQ_FIRST(&is->is_postponed);
236 		postpone = iscsi_pdu_prepare(request);
237 		if (postpone)
238 			break;
239 		STAILQ_REMOVE_HEAD(&is->is_postponed, ip_next);
240 		icl_pdu_queue(request);
241 	}
242 }
243 
244 static void
245 iscsi_pdu_queue_locked(struct icl_pdu *request)
246 {
247 	struct iscsi_session *is;
248 	bool postpone;
249 
250 	is = PDU_SESSION(request);
251 	ISCSI_SESSION_LOCK_ASSERT(is);
252 	iscsi_session_send_postponed(is);
253 	postpone = iscsi_pdu_prepare(request);
254 	if (postpone) {
255 		STAILQ_INSERT_TAIL(&is->is_postponed, request, ip_next);
256 		return;
257 	}
258 	icl_pdu_queue(request);
259 }
260 
261 static void
262 iscsi_pdu_queue(struct icl_pdu *request)
263 {
264 	struct iscsi_session *is;
265 
266 	is = PDU_SESSION(request);
267 	ISCSI_SESSION_LOCK(is);
268 	iscsi_pdu_queue_locked(request);
269 	ISCSI_SESSION_UNLOCK(is);
270 }
271 
272 static void
273 iscsi_session_logout(struct iscsi_session *is)
274 {
275 	struct icl_pdu *request;
276 	struct iscsi_bhs_logout_request *bhslr;
277 
278 	request = icl_pdu_new(is->is_conn, M_NOWAIT);
279 	if (request == NULL)
280 		return;
281 
282 	bhslr = (struct iscsi_bhs_logout_request *)request->ip_bhs;
283 	bhslr->bhslr_opcode = ISCSI_BHS_OPCODE_LOGOUT_REQUEST;
284 	bhslr->bhslr_reason = BHSLR_REASON_CLOSE_SESSION;
285 	iscsi_pdu_queue_locked(request);
286 }
287 
288 static void
289 iscsi_session_terminate_task(struct iscsi_session *is,
290     struct iscsi_outstanding *io, bool requeue)
291 {
292 
293 	ISCSI_SESSION_LOCK_ASSERT(is);
294 
295 	if (io->io_ccb != NULL) {
296 		io->io_ccb->ccb_h.status &= ~(CAM_SIM_QUEUED | CAM_STATUS_MASK);
297 		if (requeue)
298 			io->io_ccb->ccb_h.status |= CAM_REQUEUE_REQ;
299 		else
300 			io->io_ccb->ccb_h.status |= CAM_REQ_ABORTED;
301 		if ((io->io_ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
302 			io->io_ccb->ccb_h.status |= CAM_DEV_QFRZN;
303 			xpt_freeze_devq(io->io_ccb->ccb_h.path, 1);
304 			ISCSI_SESSION_DEBUG(is, "freezing devq");
305 		}
306 		xpt_done(io->io_ccb);
307 	}
308 	iscsi_outstanding_remove(is, io);
309 }
310 
311 static void
312 iscsi_session_terminate_tasks(struct iscsi_session *is, bool requeue)
313 {
314 	struct iscsi_outstanding *io, *tmp;
315 
316 	ISCSI_SESSION_LOCK_ASSERT(is);
317 
318 	TAILQ_FOREACH_SAFE(io, &is->is_outstanding, io_next, tmp) {
319 		iscsi_session_terminate_task(is, io, requeue);
320 	}
321 }
322 
323 static void
324 iscsi_session_cleanup(struct iscsi_session *is, bool destroy_sim)
325 {
326 	struct icl_pdu *pdu;
327 
328 	ISCSI_SESSION_LOCK_ASSERT(is);
329 
330 	/*
331 	 * Don't queue any new PDUs.
332 	 */
333 	if (is->is_sim != NULL && is->is_simq_frozen == false) {
334 		ISCSI_SESSION_DEBUG(is, "freezing");
335 		xpt_freeze_simq(is->is_sim, 1);
336 		is->is_simq_frozen = true;
337 	}
338 
339 	/*
340 	 * Remove postponed PDUs.
341 	 */
342 	while (!STAILQ_EMPTY(&is->is_postponed)) {
343 		pdu = STAILQ_FIRST(&is->is_postponed);
344 		STAILQ_REMOVE_HEAD(&is->is_postponed, ip_next);
345 		icl_pdu_free(pdu);
346 	}
347 
348 	if (destroy_sim == false) {
349 		/*
350 		 * Terminate SCSI tasks, asking CAM to requeue them.
351 		 */
352 		iscsi_session_terminate_tasks(is, true);
353 		return;
354 	}
355 
356 	iscsi_session_terminate_tasks(is, false);
357 
358 	if (is->is_sim == NULL)
359 		return;
360 
361 	ISCSI_SESSION_DEBUG(is, "deregistering SIM");
362 	xpt_async(AC_LOST_DEVICE, is->is_path, NULL);
363 
364 	if (is->is_simq_frozen) {
365 		xpt_release_simq(is->is_sim, 1);
366 		is->is_simq_frozen = false;
367 	}
368 
369 	xpt_free_path(is->is_path);
370 	is->is_path = NULL;
371 	xpt_bus_deregister(cam_sim_path(is->is_sim));
372 	cam_sim_free(is->is_sim, TRUE /*free_devq*/);
373 	is->is_sim = NULL;
374 	is->is_devq = NULL;
375 }
376 
377 static void
378 iscsi_maintenance_thread_reconnect(struct iscsi_session *is)
379 {
380 
381 	icl_conn_close(is->is_conn);
382 
383 	ISCSI_SESSION_LOCK(is);
384 
385 	is->is_connected = false;
386 	is->is_reconnecting = false;
387 	is->is_login_phase = false;
388 
389 #ifdef ICL_KERNEL_PROXY
390 	if (is->is_login_pdu != NULL) {
391 		icl_pdu_free(is->is_login_pdu);
392 		is->is_login_pdu = NULL;
393 	}
394 	cv_signal(&is->is_login_cv);
395 #endif
396 
397 	if (fail_on_disconnection) {
398 		ISCSI_SESSION_DEBUG(is, "connection failed, destroying devices");
399 		iscsi_session_cleanup(is, true);
400 	} else {
401 		iscsi_session_cleanup(is, false);
402 	}
403 
404 	KASSERT(TAILQ_EMPTY(&is->is_outstanding),
405 	    ("destroying session with active tasks"));
406 	KASSERT(STAILQ_EMPTY(&is->is_postponed),
407 	    ("destroying session with postponed PDUs"));
408 
409 	/*
410 	 * Request immediate reconnection from iscsid(8).
411 	 */
412 	//ISCSI_SESSION_DEBUG(is, "waking up iscsid(8)");
413 	is->is_waiting_for_iscsid = true;
414 	strlcpy(is->is_reason, "Waiting for iscsid(8)", sizeof(is->is_reason));
415 	is->is_timeout = 0;
416 	ISCSI_SESSION_UNLOCK(is);
417 	cv_signal(&is->is_softc->sc_cv);
418 }
419 
420 static void
421 iscsi_maintenance_thread_terminate(struct iscsi_session *is)
422 {
423 	struct iscsi_softc *sc;
424 
425 	sc = is->is_softc;
426 	sx_xlock(&sc->sc_lock);
427 
428 	icl_conn_close(is->is_conn);
429 	callout_drain(&is->is_callout);
430 
431 	ISCSI_SESSION_LOCK(is);
432 
433 	KASSERT(is->is_terminating, ("is_terminating == false"));
434 
435 #ifdef ICL_KERNEL_PROXY
436 	if (is->is_login_pdu != NULL) {
437 		icl_pdu_free(is->is_login_pdu);
438 		is->is_login_pdu = NULL;
439 	}
440 	cv_signal(&is->is_login_cv);
441 #endif
442 
443 	iscsi_session_cleanup(is, true);
444 
445 	KASSERT(TAILQ_EMPTY(&is->is_outstanding),
446 	    ("destroying session with active tasks"));
447 	KASSERT(STAILQ_EMPTY(&is->is_postponed),
448 	    ("destroying session with postponed PDUs"));
449 
450 	ISCSI_SESSION_UNLOCK(is);
451 
452 	icl_conn_free(is->is_conn);
453 	mtx_destroy(&is->is_lock);
454 	cv_destroy(&is->is_maintenance_cv);
455 #ifdef ICL_KERNEL_PROXY
456 	cv_destroy(&is->is_login_cv);
457 #endif
458 	TAILQ_REMOVE(&sc->sc_sessions, is, is_next);
459 	sx_xunlock(&sc->sc_lock);
460 
461 	ISCSI_SESSION_DEBUG(is, "terminated");
462 	free(is, M_ISCSI);
463 
464 	/*
465 	 * The iscsi_unload() routine might be waiting.
466 	 */
467 	cv_signal(&sc->sc_cv);
468 }
469 
470 static void
471 iscsi_maintenance_thread(void *arg)
472 {
473 	struct iscsi_session *is;
474 
475 	is = arg;
476 
477 	for (;;) {
478 		ISCSI_SESSION_LOCK(is);
479 		if (is->is_reconnecting == false &&
480 		    is->is_terminating == false &&
481 		    STAILQ_EMPTY(&is->is_postponed))
482 			cv_wait(&is->is_maintenance_cv, &is->is_lock);
483 
484 		/* Terminate supersedes reconnect. */
485 		if (is->is_terminating) {
486 			ISCSI_SESSION_UNLOCK(is);
487 			iscsi_maintenance_thread_terminate(is);
488 			kthread_exit();
489 			return;
490 		}
491 
492 		if (is->is_reconnecting) {
493 			ISCSI_SESSION_UNLOCK(is);
494 			iscsi_maintenance_thread_reconnect(is);
495 			continue;
496 		}
497 
498 		iscsi_session_send_postponed(is);
499 		ISCSI_SESSION_UNLOCK(is);
500 	}
501 }
502 
503 static void
504 iscsi_session_reconnect(struct iscsi_session *is)
505 {
506 
507 	/*
508 	 * XXX: We can't use locking here, because
509 	 * 	it's being called from various contexts.
510 	 * 	Hope it doesn't break anything.
511 	 */
512 	if (is->is_reconnecting)
513 		return;
514 
515 	is->is_reconnecting = true;
516 	cv_signal(&is->is_maintenance_cv);
517 }
518 
519 static void
520 iscsi_session_terminate(struct iscsi_session *is)
521 {
522 
523 	if (is->is_terminating)
524 		return;
525 
526 	is->is_terminating = true;
527 
528 #if 0
529 	iscsi_session_logout(is);
530 #endif
531 	cv_signal(&is->is_maintenance_cv);
532 }
533 
534 static void
535 iscsi_callout(void *context)
536 {
537 	struct icl_pdu *request;
538 	struct iscsi_bhs_nop_out *bhsno;
539 	struct iscsi_session *is;
540 	bool reconnect_needed = false;
541 
542 	is = context;
543 
544 	ISCSI_SESSION_LOCK(is);
545 	if (is->is_terminating) {
546 		ISCSI_SESSION_UNLOCK(is);
547 		return;
548 	}
549 
550 	callout_schedule(&is->is_callout, 1 * hz);
551 
552 	is->is_timeout++;
553 
554 	if (is->is_waiting_for_iscsid) {
555 		if (iscsid_timeout > 0 && is->is_timeout > iscsid_timeout) {
556 			ISCSI_SESSION_WARN(is, "timed out waiting for iscsid(8) "
557 			    "for %d seconds; reconnecting",
558 			    is->is_timeout);
559 			reconnect_needed = true;
560 		}
561 		goto out;
562 	}
563 
564 	if (is->is_login_phase) {
565 		if (login_timeout > 0 && is->is_timeout > login_timeout) {
566 			ISCSI_SESSION_WARN(is, "login timed out after %d seconds; "
567 			    "reconnecting", is->is_timeout);
568 			reconnect_needed = true;
569 		}
570 		goto out;
571 	}
572 
573 	if (ping_timeout <= 0) {
574 		/*
575 		 * Pings are disabled.  Don't send NOP-Out in this case.
576 		 * Reset the timeout, to avoid triggering reconnection,
577 		 * should the user decide to reenable them.
578 		 */
579 		is->is_timeout = 0;
580 		goto out;
581 	}
582 
583 	if (is->is_timeout >= ping_timeout) {
584 		ISCSI_SESSION_WARN(is, "no ping reply (NOP-In) after %d seconds; "
585 		    "reconnecting", ping_timeout);
586 		reconnect_needed = true;
587 		goto out;
588 	}
589 
590 	ISCSI_SESSION_UNLOCK(is);
591 
592 	/*
593 	 * If the ping was reset less than one second ago - which means
594 	 * that we've received some PDU during the last second - assume
595 	 * the traffic flows correctly and don't bother sending a NOP-Out.
596 	 *
597 	 * (It's 2 - one for one second, and one for incrementing is_timeout
598 	 * earlier in this routine.)
599 	 */
600 	if (is->is_timeout < 2)
601 		return;
602 
603 	request = icl_pdu_new(is->is_conn, M_NOWAIT);
604 	if (request == NULL) {
605 		ISCSI_SESSION_WARN(is, "failed to allocate PDU");
606 		return;
607 	}
608 	bhsno = (struct iscsi_bhs_nop_out *)request->ip_bhs;
609 	bhsno->bhsno_opcode = ISCSI_BHS_OPCODE_NOP_OUT |
610 	    ISCSI_BHS_OPCODE_IMMEDIATE;
611 	bhsno->bhsno_flags = 0x80;
612 	bhsno->bhsno_target_transfer_tag = 0xffffffff;
613 	iscsi_pdu_queue(request);
614 	return;
615 
616 out:
617 	if (is->is_terminating) {
618 		ISCSI_SESSION_UNLOCK(is);
619 		return;
620 	}
621 
622 	ISCSI_SESSION_UNLOCK(is);
623 
624 	if (reconnect_needed)
625 		iscsi_session_reconnect(is);
626 }
627 
628 static void
629 iscsi_pdu_update_statsn(const struct icl_pdu *response)
630 {
631 	const struct iscsi_bhs_data_in *bhsdi;
632 	struct iscsi_session *is;
633 	uint32_t expcmdsn, maxcmdsn, statsn;
634 
635 	is = PDU_SESSION(response);
636 
637 	ISCSI_SESSION_LOCK_ASSERT(is);
638 
639 	/*
640 	 * We're only using fields common for all the response
641 	 * (target -> initiator) PDUs.
642 	 */
643 	bhsdi = (const struct iscsi_bhs_data_in *)response->ip_bhs;
644 	/*
645 	 * Ok, I lied.  In case of Data-In, "The fields StatSN, Status,
646 	 * and Residual Count only have meaningful content if the S bit
647 	 * is set to 1", so we also need to check the bit specific for
648 	 * Data-In PDU.
649 	 */
650 	if (bhsdi->bhsdi_opcode != ISCSI_BHS_OPCODE_SCSI_DATA_IN ||
651 	    (bhsdi->bhsdi_flags & BHSDI_FLAGS_S) != 0) {
652 		statsn = ntohl(bhsdi->bhsdi_statsn);
653 		if (statsn != is->is_statsn && statsn != (is->is_statsn + 1)) {
654 			/* XXX: This is normal situation for MCS */
655 			ISCSI_SESSION_WARN(is, "PDU 0x%x StatSN %u != "
656 			    "session ExpStatSN %u (or + 1); reconnecting",
657 			    bhsdi->bhsdi_opcode, statsn, is->is_statsn);
658 			iscsi_session_reconnect(is);
659 		}
660 		if (ISCSI_SNGT(statsn, is->is_statsn))
661 			is->is_statsn = statsn;
662 	}
663 
664 	expcmdsn = ntohl(bhsdi->bhsdi_expcmdsn);
665 	maxcmdsn = ntohl(bhsdi->bhsdi_maxcmdsn);
666 
667 	if (ISCSI_SNLT(maxcmdsn + 1, expcmdsn)) {
668 		ISCSI_SESSION_DEBUG(is,
669 		    "PDU MaxCmdSN %u + 1 < PDU ExpCmdSN %u; ignoring",
670 		    maxcmdsn, expcmdsn);
671 	} else {
672 		if (ISCSI_SNGT(maxcmdsn, is->is_maxcmdsn)) {
673 			is->is_maxcmdsn = maxcmdsn;
674 
675 			/*
676 			 * Command window increased; kick the maintanance thread
677 			 * to send out postponed commands.
678 			 */
679 			if (!STAILQ_EMPTY(&is->is_postponed))
680 				cv_signal(&is->is_maintenance_cv);
681 		} else if (ISCSI_SNLT(maxcmdsn, is->is_maxcmdsn)) {
682 			/* XXX: This is normal situation for MCS */
683 			ISCSI_SESSION_DEBUG(is,
684 			    "PDU MaxCmdSN %u < session MaxCmdSN %u; ignoring",
685 			    maxcmdsn, is->is_maxcmdsn);
686 		}
687 
688 		if (ISCSI_SNGT(expcmdsn, is->is_expcmdsn)) {
689 			is->is_expcmdsn = expcmdsn;
690 		} else if (ISCSI_SNLT(expcmdsn, is->is_expcmdsn)) {
691 			/* XXX: This is normal situation for MCS */
692 			ISCSI_SESSION_DEBUG(is,
693 			    "PDU ExpCmdSN %u < session ExpCmdSN %u; ignoring",
694 			    expcmdsn, is->is_expcmdsn);
695 		}
696 	}
697 
698 	/*
699 	 * Every incoming PDU - not just NOP-In - resets the ping timer.
700 	 * The purpose of the timeout is to reset the connection when it stalls;
701 	 * we don't want this to happen when NOP-In or NOP-Out ends up delayed
702 	 * in some queue.
703 	 */
704 	is->is_timeout = 0;
705 }
706 
707 static void
708 iscsi_receive_callback(struct icl_pdu *response)
709 {
710 	struct iscsi_session *is;
711 
712 	is = PDU_SESSION(response);
713 
714 	ISCSI_SESSION_LOCK(is);
715 
716 	iscsi_pdu_update_statsn(response);
717 
718 #ifdef ICL_KERNEL_PROXY
719 	if (is->is_login_phase) {
720 		if (is->is_login_pdu == NULL)
721 			is->is_login_pdu = response;
722 		else
723 			icl_pdu_free(response);
724 		ISCSI_SESSION_UNLOCK(is);
725 		cv_signal(&is->is_login_cv);
726 		return;
727 	}
728 #endif
729 
730 	/*
731 	 * The handling routine is responsible for freeing the PDU
732 	 * when it's no longer needed.
733 	 */
734 	switch (response->ip_bhs->bhs_opcode) {
735 	case ISCSI_BHS_OPCODE_NOP_IN:
736 		iscsi_pdu_handle_nop_in(response);
737 		ISCSI_SESSION_UNLOCK(is);
738 		break;
739 	case ISCSI_BHS_OPCODE_SCSI_RESPONSE:
740 		iscsi_pdu_handle_scsi_response(response);
741 		/* Session lock dropped inside. */
742 		ISCSI_SESSION_LOCK_ASSERT_NOT(is);
743 		break;
744 	case ISCSI_BHS_OPCODE_TASK_RESPONSE:
745 		iscsi_pdu_handle_task_response(response);
746 		ISCSI_SESSION_UNLOCK(is);
747 		break;
748 	case ISCSI_BHS_OPCODE_SCSI_DATA_IN:
749 		iscsi_pdu_handle_data_in(response);
750 		/* Session lock dropped inside. */
751 		ISCSI_SESSION_LOCK_ASSERT_NOT(is);
752 		break;
753 	case ISCSI_BHS_OPCODE_LOGOUT_RESPONSE:
754 		iscsi_pdu_handle_logout_response(response);
755 		ISCSI_SESSION_UNLOCK(is);
756 		break;
757 	case ISCSI_BHS_OPCODE_R2T:
758 		iscsi_pdu_handle_r2t(response);
759 		ISCSI_SESSION_UNLOCK(is);
760 		break;
761 	case ISCSI_BHS_OPCODE_ASYNC_MESSAGE:
762 		iscsi_pdu_handle_async_message(response);
763 		ISCSI_SESSION_UNLOCK(is);
764 		break;
765 	case ISCSI_BHS_OPCODE_REJECT:
766 		iscsi_pdu_handle_reject(response);
767 		ISCSI_SESSION_UNLOCK(is);
768 		break;
769 	default:
770 		ISCSI_SESSION_WARN(is, "received PDU with unsupported "
771 		    "opcode 0x%x; reconnecting",
772 		    response->ip_bhs->bhs_opcode);
773 		iscsi_session_reconnect(is);
774 		ISCSI_SESSION_UNLOCK(is);
775 		icl_pdu_free(response);
776 	}
777 }
778 
779 static void
780 iscsi_error_callback(struct icl_conn *ic)
781 {
782 	struct iscsi_session *is;
783 
784 	is = CONN_SESSION(ic);
785 
786 	ISCSI_SESSION_WARN(is, "connection error; reconnecting");
787 	iscsi_session_reconnect(is);
788 }
789 
790 static void
791 iscsi_pdu_handle_nop_in(struct icl_pdu *response)
792 {
793 	struct iscsi_session *is;
794 	struct iscsi_bhs_nop_out *bhsno;
795 	struct iscsi_bhs_nop_in *bhsni;
796 	struct icl_pdu *request;
797 	void *data = NULL;
798 	size_t datasize;
799 	int error;
800 
801 	is = PDU_SESSION(response);
802 	bhsni = (struct iscsi_bhs_nop_in *)response->ip_bhs;
803 
804 	if (bhsni->bhsni_target_transfer_tag == 0xffffffff) {
805 		/*
806 		 * Nothing to do; iscsi_pdu_update_statsn() already
807 		 * zeroed the timeout.
808 		 */
809 		icl_pdu_free(response);
810 		return;
811 	}
812 
813 	datasize = icl_pdu_data_segment_length(response);
814 	if (datasize > 0) {
815 		data = malloc(datasize, M_ISCSI, M_NOWAIT | M_ZERO);
816 		if (data == NULL) {
817 			ISCSI_SESSION_WARN(is, "failed to allocate memory; "
818 			    "reconnecting");
819 			icl_pdu_free(response);
820 			iscsi_session_reconnect(is);
821 			return;
822 		}
823 		icl_pdu_get_data(response, 0, data, datasize);
824 	}
825 
826 	request = icl_pdu_new(response->ip_conn, M_NOWAIT);
827 	if (request == NULL) {
828 		ISCSI_SESSION_WARN(is, "failed to allocate memory; "
829 		    "reconnecting");
830 		free(data, M_ISCSI);
831 		icl_pdu_free(response);
832 		iscsi_session_reconnect(is);
833 		return;
834 	}
835 	bhsno = (struct iscsi_bhs_nop_out *)request->ip_bhs;
836 	bhsno->bhsno_opcode = ISCSI_BHS_OPCODE_NOP_OUT |
837 	    ISCSI_BHS_OPCODE_IMMEDIATE;
838 	bhsno->bhsno_flags = 0x80;
839 	bhsno->bhsno_initiator_task_tag = 0xffffffff;
840 	bhsno->bhsno_target_transfer_tag = bhsni->bhsni_target_transfer_tag;
841 	if (datasize > 0) {
842 		error = icl_pdu_append_data(request, data, datasize, M_NOWAIT);
843 		if (error != 0) {
844 			ISCSI_SESSION_WARN(is, "failed to allocate memory; "
845 			    "reconnecting");
846 			free(data, M_ISCSI);
847 			icl_pdu_free(request);
848 			icl_pdu_free(response);
849 			iscsi_session_reconnect(is);
850 			return;
851 		}
852 		free(data, M_ISCSI);
853 	}
854 
855 	icl_pdu_free(response);
856 	iscsi_pdu_queue_locked(request);
857 }
858 
859 static void
860 iscsi_pdu_handle_scsi_response(struct icl_pdu *response)
861 {
862 	struct iscsi_bhs_scsi_response *bhssr;
863 	struct iscsi_outstanding *io;
864 	struct iscsi_session *is;
865 	union ccb *ccb;
866 	struct ccb_scsiio *csio;
867 	size_t data_segment_len, received;
868 	uint16_t sense_len;
869 	uint32_t resid;
870 
871 	is = PDU_SESSION(response);
872 
873 	bhssr = (struct iscsi_bhs_scsi_response *)response->ip_bhs;
874 	io = iscsi_outstanding_find(is, bhssr->bhssr_initiator_task_tag);
875 	if (io == NULL || io->io_ccb == NULL) {
876 		ISCSI_SESSION_WARN(is, "bad itt 0x%x", bhssr->bhssr_initiator_task_tag);
877 		icl_pdu_free(response);
878 		iscsi_session_reconnect(is);
879 		ISCSI_SESSION_UNLOCK(is);
880 		return;
881 	}
882 
883 	ccb = io->io_ccb;
884 
885 	/*
886 	 * With iSER, after getting good response we can be sure
887 	 * that all the data has been successfully transferred.
888 	 */
889 	if (is->is_conn->ic_iser) {
890 		resid = ntohl(bhssr->bhssr_residual_count);
891 		if (bhssr->bhssr_flags & BHSSR_FLAGS_RESIDUAL_UNDERFLOW) {
892 			io->io_received = ccb->csio.dxfer_len - resid;
893 		} else if (bhssr->bhssr_flags & BHSSR_FLAGS_RESIDUAL_OVERFLOW) {
894 			ISCSI_SESSION_WARN(is, "overflow: target indicates %d", resid);
895 		} else {
896 			io->io_received = ccb->csio.dxfer_len;
897 		}
898 	}
899 
900 	received = io->io_received;
901 	iscsi_outstanding_remove(is, io);
902 	ISCSI_SESSION_UNLOCK(is);
903 
904 	if (bhssr->bhssr_response != BHSSR_RESPONSE_COMMAND_COMPLETED) {
905 		ISCSI_SESSION_WARN(is, "service response 0x%x", bhssr->bhssr_response);
906  		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
907  			xpt_freeze_devq(ccb->ccb_h.path, 1);
908 			ISCSI_SESSION_DEBUG(is, "freezing devq");
909 		}
910  		ccb->ccb_h.status = CAM_REQ_CMP_ERR | CAM_DEV_QFRZN;
911 	} else if (bhssr->bhssr_status == 0) {
912 		ccb->ccb_h.status = CAM_REQ_CMP;
913 	} else {
914  		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
915  			xpt_freeze_devq(ccb->ccb_h.path, 1);
916 			ISCSI_SESSION_DEBUG(is, "freezing devq");
917 		}
918  		ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR | CAM_DEV_QFRZN;
919 		ccb->csio.scsi_status = bhssr->bhssr_status;
920 	}
921 
922 	csio = &ccb->csio;
923 	data_segment_len = icl_pdu_data_segment_length(response);
924 	if (data_segment_len > 0) {
925 		if (data_segment_len < sizeof(sense_len)) {
926 			ISCSI_SESSION_WARN(is, "truncated data segment (%zd bytes)",
927 			    data_segment_len);
928 			if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
929 				xpt_freeze_devq(ccb->ccb_h.path, 1);
930 				ISCSI_SESSION_DEBUG(is, "freezing devq");
931 			}
932 			ccb->ccb_h.status = CAM_REQ_CMP_ERR | CAM_DEV_QFRZN;
933 			goto out;
934 		}
935 		icl_pdu_get_data(response, 0, &sense_len, sizeof(sense_len));
936 		sense_len = ntohs(sense_len);
937 #if 0
938 		ISCSI_SESSION_DEBUG(is, "sense_len %d, data len %zd",
939 		    sense_len, data_segment_len);
940 #endif
941 		if (sizeof(sense_len) + sense_len > data_segment_len) {
942 			ISCSI_SESSION_WARN(is, "truncated data segment "
943 			    "(%zd bytes, should be %zd)",
944 			    data_segment_len, sizeof(sense_len) + sense_len);
945 			if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
946 				xpt_freeze_devq(ccb->ccb_h.path, 1);
947 				ISCSI_SESSION_DEBUG(is, "freezing devq");
948 			}
949 			ccb->ccb_h.status = CAM_REQ_CMP_ERR | CAM_DEV_QFRZN;
950 			goto out;
951 		} else if (sizeof(sense_len) + sense_len < data_segment_len)
952 			ISCSI_SESSION_WARN(is, "oversize data segment "
953 			    "(%zd bytes, should be %zd)",
954 			    data_segment_len, sizeof(sense_len) + sense_len);
955 		if (sense_len > csio->sense_len) {
956 			ISCSI_SESSION_DEBUG(is, "truncating sense from %d to %d",
957 			    sense_len, csio->sense_len);
958 			sense_len = csio->sense_len;
959 		}
960 		icl_pdu_get_data(response, sizeof(sense_len), &csio->sense_data, sense_len);
961 		csio->sense_resid = csio->sense_len - sense_len;
962 		ccb->ccb_h.status |= CAM_AUTOSNS_VALID;
963 	}
964 
965 out:
966 	if (bhssr->bhssr_flags & BHSSR_FLAGS_RESIDUAL_UNDERFLOW)
967 		csio->resid = ntohl(bhssr->bhssr_residual_count);
968 
969 	if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
970 		KASSERT(received <= csio->dxfer_len,
971 		    ("received > csio->dxfer_len"));
972 		if (received < csio->dxfer_len) {
973 			if (csio->resid != csio->dxfer_len - received) {
974 				ISCSI_SESSION_WARN(is, "underflow mismatch: "
975 				    "target indicates %d, we calculated %zd",
976 				    csio->resid, csio->dxfer_len - received);
977 			}
978 			csio->resid = csio->dxfer_len - received;
979 		}
980 	}
981 
982 	xpt_done(ccb);
983 	icl_pdu_free(response);
984 }
985 
986 static void
987 iscsi_pdu_handle_task_response(struct icl_pdu *response)
988 {
989 	struct iscsi_bhs_task_management_response *bhstmr;
990 	struct iscsi_outstanding *io, *aio;
991 	struct iscsi_session *is;
992 
993 	is = PDU_SESSION(response);
994 
995 	bhstmr = (struct iscsi_bhs_task_management_response *)response->ip_bhs;
996 	io = iscsi_outstanding_find(is, bhstmr->bhstmr_initiator_task_tag);
997 	if (io == NULL || io->io_ccb != NULL) {
998 		ISCSI_SESSION_WARN(is, "bad itt 0x%x",
999 		    bhstmr->bhstmr_initiator_task_tag);
1000 		icl_pdu_free(response);
1001 		iscsi_session_reconnect(is);
1002 		return;
1003 	}
1004 
1005 	if (bhstmr->bhstmr_response != BHSTMR_RESPONSE_FUNCTION_COMPLETE) {
1006 		ISCSI_SESSION_WARN(is, "task response 0x%x",
1007 		    bhstmr->bhstmr_response);
1008 	} else {
1009 		aio = iscsi_outstanding_find(is, io->io_datasn);
1010 		if (aio != NULL && aio->io_ccb != NULL)
1011 			iscsi_session_terminate_task(is, aio, false);
1012 	}
1013 
1014 	iscsi_outstanding_remove(is, io);
1015 	icl_pdu_free(response);
1016 }
1017 
1018 static void
1019 iscsi_pdu_handle_data_in(struct icl_pdu *response)
1020 {
1021 	struct iscsi_bhs_data_in *bhsdi;
1022 	struct iscsi_outstanding *io;
1023 	struct iscsi_session *is;
1024 	union ccb *ccb;
1025 	struct ccb_scsiio *csio;
1026 	size_t data_segment_len, received, oreceived;
1027 
1028 	is = PDU_SESSION(response);
1029 	bhsdi = (struct iscsi_bhs_data_in *)response->ip_bhs;
1030 	io = iscsi_outstanding_find(is, bhsdi->bhsdi_initiator_task_tag);
1031 	if (io == NULL || io->io_ccb == NULL) {
1032 		ISCSI_SESSION_WARN(is, "bad itt 0x%x", bhsdi->bhsdi_initiator_task_tag);
1033 		icl_pdu_free(response);
1034 		iscsi_session_reconnect(is);
1035 		ISCSI_SESSION_UNLOCK(is);
1036 		return;
1037 	}
1038 
1039 	data_segment_len = icl_pdu_data_segment_length(response);
1040 	if (data_segment_len == 0) {
1041 		/*
1042 		 * "The sending of 0 length data segments should be avoided,
1043 		 * but initiators and targets MUST be able to properly receive
1044 		 * 0 length data segments."
1045 		 */
1046 		ISCSI_SESSION_UNLOCK(is);
1047 		icl_pdu_free(response);
1048 		return;
1049 	}
1050 
1051 	/*
1052 	 * We need to track this for security reasons - without it, malicious target
1053 	 * could respond to SCSI READ without sending Data-In PDUs, which would result
1054 	 * in read operation on the initiator side returning random kernel data.
1055 	 */
1056 	if (ntohl(bhsdi->bhsdi_buffer_offset) != io->io_received) {
1057 		ISCSI_SESSION_WARN(is, "data out of order; expected offset %zd, got %zd",
1058 		    io->io_received, (size_t)ntohl(bhsdi->bhsdi_buffer_offset));
1059 		icl_pdu_free(response);
1060 		iscsi_session_reconnect(is);
1061 		ISCSI_SESSION_UNLOCK(is);
1062 		return;
1063 	}
1064 
1065 	ccb = io->io_ccb;
1066 	csio = &ccb->csio;
1067 
1068 	if (io->io_received + data_segment_len > csio->dxfer_len) {
1069 		ISCSI_SESSION_WARN(is, "oversize data segment (%zd bytes "
1070 		    "at offset %zd, buffer is %d)",
1071 		    data_segment_len, io->io_received, csio->dxfer_len);
1072 		icl_pdu_free(response);
1073 		iscsi_session_reconnect(is);
1074 		ISCSI_SESSION_UNLOCK(is);
1075 		return;
1076 	}
1077 
1078 	oreceived = io->io_received;
1079 	io->io_received += data_segment_len;
1080 	received = io->io_received;
1081 	if ((bhsdi->bhsdi_flags & BHSDI_FLAGS_S) != 0)
1082 		iscsi_outstanding_remove(is, io);
1083 	ISCSI_SESSION_UNLOCK(is);
1084 
1085 	icl_pdu_get_data(response, 0, csio->data_ptr + oreceived, data_segment_len);
1086 
1087 	/*
1088 	 * XXX: Check DataSN.
1089 	 * XXX: Check F.
1090 	 */
1091 	if ((bhsdi->bhsdi_flags & BHSDI_FLAGS_S) == 0) {
1092 		/*
1093 		 * Nothing more to do.
1094 		 */
1095 		icl_pdu_free(response);
1096 		return;
1097 	}
1098 
1099 	//ISCSI_SESSION_DEBUG(is, "got S flag; status 0x%x", bhsdi->bhsdi_status);
1100 	if (bhsdi->bhsdi_status == 0) {
1101 		ccb->ccb_h.status = CAM_REQ_CMP;
1102 	} else {
1103 		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
1104 			xpt_freeze_devq(ccb->ccb_h.path, 1);
1105 			ISCSI_SESSION_DEBUG(is, "freezing devq");
1106 		}
1107 		ccb->ccb_h.status = CAM_SCSI_STATUS_ERROR | CAM_DEV_QFRZN;
1108 		csio->scsi_status = bhsdi->bhsdi_status;
1109 	}
1110 
1111 	if ((csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_IN) {
1112 		KASSERT(received <= csio->dxfer_len,
1113 		    ("received > csio->dxfer_len"));
1114 		if (received < csio->dxfer_len) {
1115 			csio->resid = ntohl(bhsdi->bhsdi_residual_count);
1116 			if (csio->resid != csio->dxfer_len - received) {
1117 				ISCSI_SESSION_WARN(is, "underflow mismatch: "
1118 				    "target indicates %d, we calculated %zd",
1119 				    csio->resid, csio->dxfer_len - received);
1120 			}
1121 			csio->resid = csio->dxfer_len - received;
1122 		}
1123 	}
1124 
1125 	xpt_done(ccb);
1126 	icl_pdu_free(response);
1127 }
1128 
1129 static void
1130 iscsi_pdu_handle_logout_response(struct icl_pdu *response)
1131 {
1132 
1133 	ISCSI_SESSION_DEBUG(PDU_SESSION(response), "logout response");
1134 	icl_pdu_free(response);
1135 }
1136 
1137 static void
1138 iscsi_pdu_handle_r2t(struct icl_pdu *response)
1139 {
1140 	struct icl_pdu *request;
1141 	struct iscsi_session *is;
1142 	struct iscsi_bhs_r2t *bhsr2t;
1143 	struct iscsi_bhs_data_out *bhsdo;
1144 	struct iscsi_outstanding *io;
1145 	struct ccb_scsiio *csio;
1146 	size_t off, len, total_len;
1147 	int error;
1148 
1149 	is = PDU_SESSION(response);
1150 
1151 	bhsr2t = (struct iscsi_bhs_r2t *)response->ip_bhs;
1152 	io = iscsi_outstanding_find(is, bhsr2t->bhsr2t_initiator_task_tag);
1153 	if (io == NULL || io->io_ccb == NULL) {
1154 		ISCSI_SESSION_WARN(is, "bad itt 0x%x; reconnecting",
1155 		    bhsr2t->bhsr2t_initiator_task_tag);
1156 		icl_pdu_free(response);
1157 		iscsi_session_reconnect(is);
1158 		return;
1159 	}
1160 
1161 	csio = &io->io_ccb->csio;
1162 
1163 	if ((csio->ccb_h.flags & CAM_DIR_MASK) != CAM_DIR_OUT) {
1164 		ISCSI_SESSION_WARN(is, "received R2T for read command; reconnecting");
1165 		icl_pdu_free(response);
1166 		iscsi_session_reconnect(is);
1167 		return;
1168 	}
1169 
1170 	/*
1171 	 * XXX: Verify R2TSN.
1172 	 */
1173 
1174 	io->io_datasn = 0;
1175 
1176 	off = ntohl(bhsr2t->bhsr2t_buffer_offset);
1177 	if (off > csio->dxfer_len) {
1178 		ISCSI_SESSION_WARN(is, "target requested invalid offset "
1179 		    "%zd, buffer is is %d; reconnecting", off, csio->dxfer_len);
1180 		icl_pdu_free(response);
1181 		iscsi_session_reconnect(is);
1182 		return;
1183 	}
1184 
1185 	total_len = ntohl(bhsr2t->bhsr2t_desired_data_transfer_length);
1186 	if (total_len == 0 || total_len > csio->dxfer_len) {
1187 		ISCSI_SESSION_WARN(is, "target requested invalid length "
1188 		    "%zd, buffer is %d; reconnecting", total_len, csio->dxfer_len);
1189 		icl_pdu_free(response);
1190 		iscsi_session_reconnect(is);
1191 		return;
1192 	}
1193 
1194 	//ISCSI_SESSION_DEBUG(is, "r2t; off %zd, len %zd", off, total_len);
1195 
1196 	for (;;) {
1197 		len = total_len;
1198 
1199 		if (len > is->is_max_data_segment_length)
1200 			len = is->is_max_data_segment_length;
1201 
1202 		if (off + len > csio->dxfer_len) {
1203 			ISCSI_SESSION_WARN(is, "target requested invalid "
1204 			    "length/offset %zd, buffer is %d; reconnecting",
1205 			    off + len, csio->dxfer_len);
1206 			icl_pdu_free(response);
1207 			iscsi_session_reconnect(is);
1208 			return;
1209 		}
1210 
1211 		request = icl_pdu_new(response->ip_conn, M_NOWAIT);
1212 		if (request == NULL) {
1213 			icl_pdu_free(response);
1214 			iscsi_session_reconnect(is);
1215 			return;
1216 		}
1217 
1218 		bhsdo = (struct iscsi_bhs_data_out *)request->ip_bhs;
1219 		bhsdo->bhsdo_opcode = ISCSI_BHS_OPCODE_SCSI_DATA_OUT;
1220 		bhsdo->bhsdo_lun = bhsr2t->bhsr2t_lun;
1221 		bhsdo->bhsdo_initiator_task_tag =
1222 		    bhsr2t->bhsr2t_initiator_task_tag;
1223 		bhsdo->bhsdo_target_transfer_tag =
1224 		    bhsr2t->bhsr2t_target_transfer_tag;
1225 		bhsdo->bhsdo_datasn = htonl(io->io_datasn++);
1226 		bhsdo->bhsdo_buffer_offset = htonl(off);
1227 		error = icl_pdu_append_data(request, csio->data_ptr + off, len,
1228 		    M_NOWAIT);
1229 		if (error != 0) {
1230 			ISCSI_SESSION_WARN(is, "failed to allocate memory; "
1231 			    "reconnecting");
1232 			icl_pdu_free(request);
1233 			icl_pdu_free(response);
1234 			iscsi_session_reconnect(is);
1235 			return;
1236 		}
1237 
1238 		off += len;
1239 		total_len -= len;
1240 
1241 		if (total_len == 0) {
1242 			bhsdo->bhsdo_flags |= BHSDO_FLAGS_F;
1243 			//ISCSI_SESSION_DEBUG(is, "setting F, off %zd", off);
1244 		} else {
1245 			//ISCSI_SESSION_DEBUG(is, "not finished, off %zd", off);
1246 		}
1247 
1248 		iscsi_pdu_queue_locked(request);
1249 
1250 		if (total_len == 0)
1251 			break;
1252 	}
1253 
1254 	icl_pdu_free(response);
1255 }
1256 
1257 static void
1258 iscsi_pdu_handle_async_message(struct icl_pdu *response)
1259 {
1260 	struct iscsi_bhs_asynchronous_message *bhsam;
1261 	struct iscsi_session *is;
1262 
1263 	is = PDU_SESSION(response);
1264 	bhsam = (struct iscsi_bhs_asynchronous_message *)response->ip_bhs;
1265 	switch (bhsam->bhsam_async_event) {
1266 	case BHSAM_EVENT_TARGET_REQUESTS_LOGOUT:
1267 		ISCSI_SESSION_WARN(is, "target requests logout; removing session");
1268 		iscsi_session_logout(is);
1269 		iscsi_session_terminate(is);
1270 		break;
1271 	case BHSAM_EVENT_TARGET_TERMINATES_CONNECTION:
1272 		ISCSI_SESSION_WARN(is, "target indicates it will drop drop the connection");
1273 		break;
1274 	case BHSAM_EVENT_TARGET_TERMINATES_SESSION:
1275 		ISCSI_SESSION_WARN(is, "target indicates it will drop drop the session");
1276 		break;
1277 	default:
1278 		/*
1279 		 * XXX: Technically, we're obligated to also handle
1280 		 * 	parameter renegotiation.
1281 		 */
1282 		ISCSI_SESSION_WARN(is, "ignoring AsyncEvent %d", bhsam->bhsam_async_event);
1283 		break;
1284 	}
1285 
1286 	icl_pdu_free(response);
1287 }
1288 
1289 static void
1290 iscsi_pdu_handle_reject(struct icl_pdu *response)
1291 {
1292 	struct iscsi_bhs_reject *bhsr;
1293 	struct iscsi_session *is;
1294 
1295 	is = PDU_SESSION(response);
1296 	bhsr = (struct iscsi_bhs_reject *)response->ip_bhs;
1297 	ISCSI_SESSION_WARN(is, "received Reject PDU, reason 0x%x; protocol error?",
1298 	    bhsr->bhsr_reason);
1299 
1300 	icl_pdu_free(response);
1301 }
1302 
1303 static int
1304 iscsi_ioctl_daemon_wait(struct iscsi_softc *sc,
1305     struct iscsi_daemon_request *request)
1306 {
1307 	struct iscsi_session *is;
1308 	int error;
1309 
1310 	sx_slock(&sc->sc_lock);
1311 	for (;;) {
1312 		TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1313 			ISCSI_SESSION_LOCK(is);
1314 			if (is->is_waiting_for_iscsid)
1315 				break;
1316 			ISCSI_SESSION_UNLOCK(is);
1317 		}
1318 
1319 		if (is == NULL) {
1320 			/*
1321 			 * No session requires attention from iscsid(8); wait.
1322 			 */
1323 			error = cv_wait_sig(&sc->sc_cv, &sc->sc_lock);
1324 			if (error != 0) {
1325 				sx_sunlock(&sc->sc_lock);
1326 				return (error);
1327 			}
1328 			continue;
1329 		}
1330 
1331 		is->is_waiting_for_iscsid = false;
1332 		is->is_login_phase = true;
1333 		is->is_reason[0] = '\0';
1334 		ISCSI_SESSION_UNLOCK(is);
1335 
1336 		request->idr_session_id = is->is_id;
1337 		memcpy(&request->idr_isid, &is->is_isid,
1338 		    sizeof(request->idr_isid));
1339 		request->idr_tsih = 0;	/* New or reinstated session. */
1340 		memcpy(&request->idr_conf, &is->is_conf,
1341 		    sizeof(request->idr_conf));
1342 
1343 		error = icl_limits(is->is_conf.isc_offload,
1344 		    is->is_conf.isc_iser,
1345 		    &request->idr_limits.isl_max_data_segment_length);
1346 		if (error != 0) {
1347 			ISCSI_SESSION_WARN(is, "icl_limits for offload \"%s\" "
1348 			    "failed with error %d", is->is_conf.isc_offload,
1349 			    error);
1350 			sx_sunlock(&sc->sc_lock);
1351 			return (error);
1352 		}
1353 
1354 		sx_sunlock(&sc->sc_lock);
1355 		return (0);
1356 	}
1357 }
1358 
1359 static int
1360 iscsi_ioctl_daemon_handoff(struct iscsi_softc *sc,
1361     struct iscsi_daemon_handoff *handoff)
1362 {
1363 	struct iscsi_session *is;
1364 	struct icl_conn *ic;
1365 	int error;
1366 
1367 	sx_slock(&sc->sc_lock);
1368 
1369 	/*
1370 	 * Find the session to hand off socket to.
1371 	 */
1372 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1373 		if (is->is_id == handoff->idh_session_id)
1374 			break;
1375 	}
1376 	if (is == NULL) {
1377 		sx_sunlock(&sc->sc_lock);
1378 		return (ESRCH);
1379 	}
1380 	ISCSI_SESSION_LOCK(is);
1381 	ic = is->is_conn;
1382 	if (is->is_conf.isc_discovery || is->is_terminating) {
1383 		ISCSI_SESSION_UNLOCK(is);
1384 		sx_sunlock(&sc->sc_lock);
1385 		return (EINVAL);
1386 	}
1387 	if (is->is_connected) {
1388 		/*
1389 		 * This might have happened because another iscsid(8)
1390 		 * instance handed off the connection in the meantime.
1391 		 * Just return.
1392 		 */
1393 		ISCSI_SESSION_WARN(is, "handoff on already connected "
1394 		    "session");
1395 		ISCSI_SESSION_UNLOCK(is);
1396 		sx_sunlock(&sc->sc_lock);
1397 		return (EBUSY);
1398 	}
1399 
1400 	strlcpy(is->is_target_alias, handoff->idh_target_alias,
1401 	    sizeof(is->is_target_alias));
1402 	is->is_tsih = handoff->idh_tsih;
1403 	is->is_statsn = handoff->idh_statsn;
1404 	is->is_initial_r2t = handoff->idh_initial_r2t;
1405 	is->is_immediate_data = handoff->idh_immediate_data;
1406 
1407 	/*
1408 	 * Cap MaxRecvDataSegmentLength obtained from the target to the maximum
1409 	 * size supported by our ICL module.
1410 	 */
1411 	is->is_max_data_segment_length = min(ic->ic_max_data_segment_length,
1412 	    handoff->idh_max_data_segment_length);
1413 	is->is_max_burst_length = handoff->idh_max_burst_length;
1414 	is->is_first_burst_length = handoff->idh_first_burst_length;
1415 
1416 	if (handoff->idh_header_digest == ISCSI_DIGEST_CRC32C)
1417 		ic->ic_header_crc32c = true;
1418 	else
1419 		ic->ic_header_crc32c = false;
1420 	if (handoff->idh_data_digest == ISCSI_DIGEST_CRC32C)
1421 		ic->ic_data_crc32c = true;
1422 	else
1423 		ic->ic_data_crc32c = false;
1424 	ic->ic_maxtags = maxtags;
1425 
1426 	is->is_cmdsn = 0;
1427 	is->is_expcmdsn = 0;
1428 	is->is_maxcmdsn = 0;
1429 	is->is_waiting_for_iscsid = false;
1430 	is->is_login_phase = false;
1431 	is->is_timeout = 0;
1432 	is->is_connected = true;
1433 	is->is_reason[0] = '\0';
1434 
1435 	ISCSI_SESSION_UNLOCK(is);
1436 
1437 	/*
1438 	 * If we're going through the proxy, the idh_socket will be 0,
1439 	 * and the ICL module can simply ignore this call.  It can also
1440 	 * use it to determine it's no longer in the Login phase.
1441 	 */
1442 	error = icl_conn_handoff(ic, handoff->idh_socket);
1443 	if (error != 0) {
1444 		sx_sunlock(&sc->sc_lock);
1445 		iscsi_session_terminate(is);
1446 		return (error);
1447 	}
1448 
1449 	sx_sunlock(&sc->sc_lock);
1450 
1451 	if (is->is_sim != NULL) {
1452 		/*
1453 		 * When reconnecting, there already is SIM allocated for the session.
1454 		 */
1455 		KASSERT(is->is_simq_frozen, ("reconnect without frozen simq"));
1456 		ISCSI_SESSION_LOCK(is);
1457 		ISCSI_SESSION_DEBUG(is, "releasing");
1458 		xpt_release_simq(is->is_sim, 1);
1459 		is->is_simq_frozen = false;
1460 		ISCSI_SESSION_UNLOCK(is);
1461 
1462 	} else {
1463 		ISCSI_SESSION_LOCK(is);
1464 		is->is_devq = cam_simq_alloc(ic->ic_maxtags);
1465 		if (is->is_devq == NULL) {
1466 			ISCSI_SESSION_WARN(is, "failed to allocate simq");
1467 			iscsi_session_terminate(is);
1468 			return (ENOMEM);
1469 		}
1470 
1471 		is->is_sim = cam_sim_alloc(iscsi_action, iscsi_poll, "iscsi",
1472 		    is, is->is_id /* unit */, &is->is_lock,
1473 		    1, ic->ic_maxtags, is->is_devq);
1474 		if (is->is_sim == NULL) {
1475 			ISCSI_SESSION_UNLOCK(is);
1476 			ISCSI_SESSION_WARN(is, "failed to allocate SIM");
1477 			cam_simq_free(is->is_devq);
1478 			iscsi_session_terminate(is);
1479 			return (ENOMEM);
1480 		}
1481 
1482 		error = xpt_bus_register(is->is_sim, NULL, 0);
1483 		if (error != 0) {
1484 			ISCSI_SESSION_UNLOCK(is);
1485 			ISCSI_SESSION_WARN(is, "failed to register bus");
1486 			iscsi_session_terminate(is);
1487 			return (ENOMEM);
1488 		}
1489 
1490 		error = xpt_create_path(&is->is_path, /*periph*/NULL,
1491 		    cam_sim_path(is->is_sim), CAM_TARGET_WILDCARD,
1492 		    CAM_LUN_WILDCARD);
1493 		if (error != CAM_REQ_CMP) {
1494 			ISCSI_SESSION_UNLOCK(is);
1495 			ISCSI_SESSION_WARN(is, "failed to create path");
1496 			iscsi_session_terminate(is);
1497 			return (ENOMEM);
1498 		}
1499 		ISCSI_SESSION_UNLOCK(is);
1500 	}
1501 
1502 	return (0);
1503 }
1504 
1505 static int
1506 iscsi_ioctl_daemon_fail(struct iscsi_softc *sc,
1507     struct iscsi_daemon_fail *fail)
1508 {
1509 	struct iscsi_session *is;
1510 
1511 	sx_slock(&sc->sc_lock);
1512 
1513 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1514 		if (is->is_id == fail->idf_session_id)
1515 			break;
1516 	}
1517 	if (is == NULL) {
1518 		sx_sunlock(&sc->sc_lock);
1519 		return (ESRCH);
1520 	}
1521 	ISCSI_SESSION_LOCK(is);
1522 	ISCSI_SESSION_DEBUG(is, "iscsid(8) failed: %s",
1523 	    fail->idf_reason);
1524 	strlcpy(is->is_reason, fail->idf_reason, sizeof(is->is_reason));
1525 	//is->is_waiting_for_iscsid = false;
1526 	//is->is_login_phase = true;
1527 	//iscsi_session_reconnect(is);
1528 	ISCSI_SESSION_UNLOCK(is);
1529 	sx_sunlock(&sc->sc_lock);
1530 
1531 	return (0);
1532 }
1533 
1534 #ifdef ICL_KERNEL_PROXY
1535 static int
1536 iscsi_ioctl_daemon_connect(struct iscsi_softc *sc,
1537     struct iscsi_daemon_connect *idc)
1538 {
1539 	struct iscsi_session *is;
1540 	struct sockaddr *from_sa, *to_sa;
1541 	int error;
1542 
1543 	sx_slock(&sc->sc_lock);
1544 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1545 		if (is->is_id == idc->idc_session_id)
1546 			break;
1547 	}
1548 	if (is == NULL) {
1549 		sx_sunlock(&sc->sc_lock);
1550 		return (ESRCH);
1551 	}
1552 	sx_sunlock(&sc->sc_lock);
1553 
1554 	if (idc->idc_from_addrlen > 0) {
1555 		error = getsockaddr(&from_sa, (void *)idc->idc_from_addr, idc->idc_from_addrlen);
1556 		if (error != 0) {
1557 			ISCSI_SESSION_WARN(is,
1558 			    "getsockaddr failed with error %d", error);
1559 			return (error);
1560 		}
1561 	} else {
1562 		from_sa = NULL;
1563 	}
1564 	error = getsockaddr(&to_sa, (void *)idc->idc_to_addr, idc->idc_to_addrlen);
1565 	if (error != 0) {
1566 		ISCSI_SESSION_WARN(is, "getsockaddr failed with error %d",
1567 		    error);
1568 		free(from_sa, M_SONAME);
1569 		return (error);
1570 	}
1571 
1572 	ISCSI_SESSION_LOCK(is);
1573 	is->is_statsn = 0;
1574 	is->is_cmdsn = 0;
1575 	is->is_expcmdsn = 0;
1576 	is->is_maxcmdsn = 0;
1577 	is->is_waiting_for_iscsid = false;
1578 	is->is_login_phase = true;
1579 	is->is_timeout = 0;
1580 	ISCSI_SESSION_UNLOCK(is);
1581 
1582 	error = icl_conn_connect(is->is_conn, idc->idc_domain,
1583 	    idc->idc_socktype, idc->idc_protocol, from_sa, to_sa);
1584 	free(from_sa, M_SONAME);
1585 	free(to_sa, M_SONAME);
1586 
1587 	/*
1588 	 * Digests are always disabled during login phase.
1589 	 */
1590 	is->is_conn->ic_header_crc32c = false;
1591 	is->is_conn->ic_data_crc32c = false;
1592 
1593 	return (error);
1594 }
1595 
1596 static int
1597 iscsi_ioctl_daemon_send(struct iscsi_softc *sc,
1598     struct iscsi_daemon_send *ids)
1599 {
1600 	struct iscsi_session *is;
1601 	struct icl_pdu *ip;
1602 	size_t datalen;
1603 	void *data;
1604 	int error;
1605 
1606 	sx_slock(&sc->sc_lock);
1607 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1608 		if (is->is_id == ids->ids_session_id)
1609 			break;
1610 	}
1611 	if (is == NULL) {
1612 		sx_sunlock(&sc->sc_lock);
1613 		return (ESRCH);
1614 	}
1615 	sx_sunlock(&sc->sc_lock);
1616 
1617 	if (is->is_login_phase == false)
1618 		return (EBUSY);
1619 
1620 	if (is->is_terminating || is->is_reconnecting)
1621 		return (EIO);
1622 
1623 	datalen = ids->ids_data_segment_len;
1624 	if (datalen > ISCSI_MAX_DATA_SEGMENT_LENGTH)
1625 		return (EINVAL);
1626 	if (datalen > 0) {
1627 		data = malloc(datalen, M_ISCSI, M_WAITOK);
1628 		error = copyin(ids->ids_data_segment, data, datalen);
1629 		if (error != 0) {
1630 			free(data, M_ISCSI);
1631 			return (error);
1632 		}
1633 	}
1634 
1635 	ip = icl_pdu_new(is->is_conn, M_WAITOK);
1636 	memcpy(ip->ip_bhs, ids->ids_bhs, sizeof(*ip->ip_bhs));
1637 	if (datalen > 0) {
1638 		error = icl_pdu_append_data(ip, data, datalen, M_WAITOK);
1639 		KASSERT(error == 0, ("icl_pdu_append_data(..., M_WAITOK) failed"));
1640 		free(data, M_ISCSI);
1641 	}
1642 	iscsi_pdu_queue(ip);
1643 
1644 	return (0);
1645 }
1646 
1647 static int
1648 iscsi_ioctl_daemon_receive(struct iscsi_softc *sc,
1649     struct iscsi_daemon_receive *idr)
1650 {
1651 	struct iscsi_session *is;
1652 	struct icl_pdu *ip;
1653 	void *data;
1654 	int error;
1655 
1656 	sx_slock(&sc->sc_lock);
1657 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1658 		if (is->is_id == idr->idr_session_id)
1659 			break;
1660 	}
1661 	if (is == NULL) {
1662 		sx_sunlock(&sc->sc_lock);
1663 		return (ESRCH);
1664 	}
1665 	sx_sunlock(&sc->sc_lock);
1666 
1667 	if (is->is_login_phase == false)
1668 		return (EBUSY);
1669 
1670 	ISCSI_SESSION_LOCK(is);
1671 	while (is->is_login_pdu == NULL &&
1672 	    is->is_terminating == false &&
1673 	    is->is_reconnecting == false) {
1674 		error = cv_wait_sig(&is->is_login_cv, &is->is_lock);
1675 		if (error != 0) {
1676 			ISCSI_SESSION_UNLOCK(is);
1677 			return (error);
1678 		}
1679 	}
1680 	if (is->is_terminating || is->is_reconnecting) {
1681 		ISCSI_SESSION_UNLOCK(is);
1682 		return (EIO);
1683 	}
1684 	ip = is->is_login_pdu;
1685 	is->is_login_pdu = NULL;
1686 	ISCSI_SESSION_UNLOCK(is);
1687 
1688 	if (ip->ip_data_len > idr->idr_data_segment_len) {
1689 		icl_pdu_free(ip);
1690 		return (EMSGSIZE);
1691 	}
1692 
1693 	copyout(ip->ip_bhs, idr->idr_bhs, sizeof(*ip->ip_bhs));
1694 	if (ip->ip_data_len > 0) {
1695 		data = malloc(ip->ip_data_len, M_ISCSI, M_WAITOK);
1696 		icl_pdu_get_data(ip, 0, data, ip->ip_data_len);
1697 		copyout(data, idr->idr_data_segment, ip->ip_data_len);
1698 		free(data, M_ISCSI);
1699 	}
1700 
1701 	icl_pdu_free(ip);
1702 
1703 	return (0);
1704 }
1705 #endif /* ICL_KERNEL_PROXY */
1706 
1707 static void
1708 iscsi_sanitize_session_conf(struct iscsi_session_conf *isc)
1709 {
1710 	/*
1711 	 * Just make sure all the fields are null-terminated.
1712 	 *
1713 	 * XXX: This is not particularly secure.  We should
1714 	 * 	create our own conf and then copy in relevant
1715 	 * 	fields.
1716 	 */
1717 	isc->isc_initiator[ISCSI_NAME_LEN - 1] = '\0';
1718 	isc->isc_initiator_addr[ISCSI_ADDR_LEN - 1] = '\0';
1719 	isc->isc_initiator_alias[ISCSI_ALIAS_LEN - 1] = '\0';
1720 	isc->isc_target[ISCSI_NAME_LEN - 1] = '\0';
1721 	isc->isc_target_addr[ISCSI_ADDR_LEN - 1] = '\0';
1722 	isc->isc_user[ISCSI_NAME_LEN - 1] = '\0';
1723 	isc->isc_secret[ISCSI_SECRET_LEN - 1] = '\0';
1724 	isc->isc_mutual_user[ISCSI_NAME_LEN - 1] = '\0';
1725 	isc->isc_mutual_secret[ISCSI_SECRET_LEN - 1] = '\0';
1726 }
1727 
1728 static bool
1729 iscsi_valid_session_conf(const struct iscsi_session_conf *isc)
1730 {
1731 
1732 	if (isc->isc_initiator[0] == '\0') {
1733 		ISCSI_DEBUG("empty isc_initiator");
1734 		return (false);
1735 	}
1736 
1737 	if (isc->isc_target_addr[0] == '\0') {
1738 		ISCSI_DEBUG("empty isc_target_addr");
1739 		return (false);
1740 	}
1741 
1742 	if (isc->isc_discovery != 0 && isc->isc_target[0] != 0) {
1743 		ISCSI_DEBUG("non-empty isc_target for discovery session");
1744 		return (false);
1745 	}
1746 
1747 	if (isc->isc_discovery == 0 && isc->isc_target[0] == 0) {
1748 		ISCSI_DEBUG("empty isc_target for non-discovery session");
1749 		return (false);
1750 	}
1751 
1752 	return (true);
1753 }
1754 
1755 static int
1756 iscsi_ioctl_session_add(struct iscsi_softc *sc, struct iscsi_session_add *isa)
1757 {
1758 	struct iscsi_session *is;
1759 	const struct iscsi_session *is2;
1760 	int error;
1761 
1762 	iscsi_sanitize_session_conf(&isa->isa_conf);
1763 	if (iscsi_valid_session_conf(&isa->isa_conf) == false)
1764 		return (EINVAL);
1765 
1766 	is = malloc(sizeof(*is), M_ISCSI, M_ZERO | M_WAITOK);
1767 	memcpy(&is->is_conf, &isa->isa_conf, sizeof(is->is_conf));
1768 
1769 	sx_xlock(&sc->sc_lock);
1770 
1771 	/*
1772 	 * Prevent duplicates.
1773 	 */
1774 	TAILQ_FOREACH(is2, &sc->sc_sessions, is_next) {
1775 		if (!!is->is_conf.isc_discovery !=
1776 		    !!is2->is_conf.isc_discovery)
1777 			continue;
1778 
1779 		if (strcmp(is->is_conf.isc_target_addr,
1780 		    is2->is_conf.isc_target_addr) != 0)
1781 			continue;
1782 
1783 		if (is->is_conf.isc_discovery == 0 &&
1784 		    strcmp(is->is_conf.isc_target,
1785 		    is2->is_conf.isc_target) != 0)
1786 			continue;
1787 
1788 		sx_xunlock(&sc->sc_lock);
1789 		free(is, M_ISCSI);
1790 		return (EBUSY);
1791 	}
1792 
1793 	is->is_conn = icl_new_conn(is->is_conf.isc_offload,
1794 	    is->is_conf.isc_iser, "iscsi", &is->is_lock);
1795 	if (is->is_conn == NULL) {
1796 		sx_xunlock(&sc->sc_lock);
1797 		free(is, M_ISCSI);
1798 		return (EINVAL);
1799 	}
1800 	is->is_conn->ic_receive = iscsi_receive_callback;
1801 	is->is_conn->ic_error = iscsi_error_callback;
1802 	is->is_conn->ic_prv0 = is;
1803 	TAILQ_INIT(&is->is_outstanding);
1804 	STAILQ_INIT(&is->is_postponed);
1805 	mtx_init(&is->is_lock, "iscsi_lock", NULL, MTX_DEF);
1806 	cv_init(&is->is_maintenance_cv, "iscsi_mt");
1807 #ifdef ICL_KERNEL_PROXY
1808 	cv_init(&is->is_login_cv, "iscsi_login");
1809 #endif
1810 
1811 	is->is_softc = sc;
1812 	sc->sc_last_session_id++;
1813 	is->is_id = sc->sc_last_session_id;
1814 	is->is_isid[0] = 0x80; /* RFC 3720, 10.12.5: 10b, "Random" ISID. */
1815 	arc4rand(&is->is_isid[1], 5, 0);
1816 	is->is_tsih = 0;
1817 	callout_init(&is->is_callout, 1);
1818 
1819 	error = kthread_add(iscsi_maintenance_thread, is, NULL, NULL, 0, 0, "iscsimt");
1820 	if (error != 0) {
1821 		ISCSI_SESSION_WARN(is, "kthread_add(9) failed with error %d", error);
1822 		sx_xunlock(&sc->sc_lock);
1823 		return (error);
1824 	}
1825 
1826 	callout_reset(&is->is_callout, 1 * hz, iscsi_callout, is);
1827 	TAILQ_INSERT_TAIL(&sc->sc_sessions, is, is_next);
1828 
1829 	/*
1830 	 * Trigger immediate reconnection.
1831 	 */
1832 	ISCSI_SESSION_LOCK(is);
1833 	is->is_waiting_for_iscsid = true;
1834 	strlcpy(is->is_reason, "Waiting for iscsid(8)", sizeof(is->is_reason));
1835 	ISCSI_SESSION_UNLOCK(is);
1836 	cv_signal(&sc->sc_cv);
1837 
1838 	sx_xunlock(&sc->sc_lock);
1839 
1840 	return (0);
1841 }
1842 
1843 static bool
1844 iscsi_session_conf_matches(unsigned int id1, const struct iscsi_session_conf *c1,
1845     unsigned int id2, const struct iscsi_session_conf *c2)
1846 {
1847 
1848 	if (id2 != 0 && id2 != id1)
1849 		return (false);
1850 	if (c2->isc_target[0] != '\0' &&
1851 	    strcmp(c1->isc_target, c2->isc_target) != 0)
1852 		return (false);
1853 	if (c2->isc_target_addr[0] != '\0' &&
1854 	    strcmp(c1->isc_target_addr, c2->isc_target_addr) != 0)
1855 		return (false);
1856 	return (true);
1857 }
1858 
1859 static int
1860 iscsi_ioctl_session_remove(struct iscsi_softc *sc,
1861     struct iscsi_session_remove *isr)
1862 {
1863 	struct iscsi_session *is, *tmp;
1864 	bool found = false;
1865 
1866 	iscsi_sanitize_session_conf(&isr->isr_conf);
1867 
1868 	sx_xlock(&sc->sc_lock);
1869 	TAILQ_FOREACH_SAFE(is, &sc->sc_sessions, is_next, tmp) {
1870 		ISCSI_SESSION_LOCK(is);
1871 		if (iscsi_session_conf_matches(is->is_id, &is->is_conf,
1872 		    isr->isr_session_id, &isr->isr_conf)) {
1873 			found = true;
1874 			iscsi_session_logout(is);
1875 			iscsi_session_terminate(is);
1876 		}
1877 		ISCSI_SESSION_UNLOCK(is);
1878 	}
1879 	sx_xunlock(&sc->sc_lock);
1880 
1881 	if (!found)
1882 		return (ESRCH);
1883 
1884 	return (0);
1885 }
1886 
1887 static int
1888 iscsi_ioctl_session_list(struct iscsi_softc *sc, struct iscsi_session_list *isl)
1889 {
1890 	int error;
1891 	unsigned int i = 0;
1892 	struct iscsi_session *is;
1893 	struct iscsi_session_state iss;
1894 
1895 	sx_slock(&sc->sc_lock);
1896 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1897 		if (i >= isl->isl_nentries) {
1898 			sx_sunlock(&sc->sc_lock);
1899 			return (EMSGSIZE);
1900 		}
1901 		memset(&iss, 0, sizeof(iss));
1902 		memcpy(&iss.iss_conf, &is->is_conf, sizeof(iss.iss_conf));
1903 		iss.iss_id = is->is_id;
1904 		strlcpy(iss.iss_target_alias, is->is_target_alias, sizeof(iss.iss_target_alias));
1905 		strlcpy(iss.iss_reason, is->is_reason, sizeof(iss.iss_reason));
1906 		strlcpy(iss.iss_offload, is->is_conn->ic_offload, sizeof(iss.iss_offload));
1907 
1908 		if (is->is_conn->ic_header_crc32c)
1909 			iss.iss_header_digest = ISCSI_DIGEST_CRC32C;
1910 		else
1911 			iss.iss_header_digest = ISCSI_DIGEST_NONE;
1912 
1913 		if (is->is_conn->ic_data_crc32c)
1914 			iss.iss_data_digest = ISCSI_DIGEST_CRC32C;
1915 		else
1916 			iss.iss_data_digest = ISCSI_DIGEST_NONE;
1917 
1918 		iss.iss_max_data_segment_length = is->is_max_data_segment_length;
1919 		iss.iss_immediate_data = is->is_immediate_data;
1920 		iss.iss_connected = is->is_connected;
1921 
1922 		error = copyout(&iss, isl->isl_pstates + i, sizeof(iss));
1923 		if (error != 0) {
1924 			sx_sunlock(&sc->sc_lock);
1925 			return (error);
1926 		}
1927 		i++;
1928 	}
1929 	sx_sunlock(&sc->sc_lock);
1930 
1931 	isl->isl_nentries = i;
1932 
1933 	return (0);
1934 }
1935 
1936 static int
1937 iscsi_ioctl_session_modify(struct iscsi_softc *sc,
1938     struct iscsi_session_modify *ism)
1939 {
1940 	struct iscsi_session *is;
1941 
1942 	iscsi_sanitize_session_conf(&ism->ism_conf);
1943 	if (iscsi_valid_session_conf(&ism->ism_conf) == false)
1944 		return (EINVAL);
1945 
1946 	sx_xlock(&sc->sc_lock);
1947 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
1948 		ISCSI_SESSION_LOCK(is);
1949 		if (is->is_id == ism->ism_session_id)
1950 			break;
1951 		ISCSI_SESSION_UNLOCK(is);
1952 	}
1953 	if (is == NULL) {
1954 		sx_xunlock(&sc->sc_lock);
1955 		return (ESRCH);
1956 	}
1957 	sx_xunlock(&sc->sc_lock);
1958 
1959 	memcpy(&is->is_conf, &ism->ism_conf, sizeof(is->is_conf));
1960 	ISCSI_SESSION_UNLOCK(is);
1961 
1962 	iscsi_session_reconnect(is);
1963 
1964 	return (0);
1965 }
1966 
1967 static int
1968 iscsi_ioctl(struct cdev *dev, u_long cmd, caddr_t arg, int mode,
1969     struct thread *td)
1970 {
1971 	struct iscsi_softc *sc;
1972 
1973 	sc = dev->si_drv1;
1974 
1975 	switch (cmd) {
1976 	case ISCSIDWAIT:
1977 		return (iscsi_ioctl_daemon_wait(sc,
1978 		    (struct iscsi_daemon_request *)arg));
1979 	case ISCSIDHANDOFF:
1980 		return (iscsi_ioctl_daemon_handoff(sc,
1981 		    (struct iscsi_daemon_handoff *)arg));
1982 	case ISCSIDFAIL:
1983 		return (iscsi_ioctl_daemon_fail(sc,
1984 		    (struct iscsi_daemon_fail *)arg));
1985 #ifdef ICL_KERNEL_PROXY
1986 	case ISCSIDCONNECT:
1987 		return (iscsi_ioctl_daemon_connect(sc,
1988 		    (struct iscsi_daemon_connect *)arg));
1989 	case ISCSIDSEND:
1990 		return (iscsi_ioctl_daemon_send(sc,
1991 		    (struct iscsi_daemon_send *)arg));
1992 	case ISCSIDRECEIVE:
1993 		return (iscsi_ioctl_daemon_receive(sc,
1994 		    (struct iscsi_daemon_receive *)arg));
1995 #endif /* ICL_KERNEL_PROXY */
1996 	case ISCSISADD:
1997 		return (iscsi_ioctl_session_add(sc,
1998 		    (struct iscsi_session_add *)arg));
1999 	case ISCSISREMOVE:
2000 		return (iscsi_ioctl_session_remove(sc,
2001 		    (struct iscsi_session_remove *)arg));
2002 	case ISCSISLIST:
2003 		return (iscsi_ioctl_session_list(sc,
2004 		    (struct iscsi_session_list *)arg));
2005 	case ISCSISMODIFY:
2006 		return (iscsi_ioctl_session_modify(sc,
2007 		    (struct iscsi_session_modify *)arg));
2008 	default:
2009 		return (EINVAL);
2010 	}
2011 }
2012 
2013 static struct iscsi_outstanding *
2014 iscsi_outstanding_find(struct iscsi_session *is, uint32_t initiator_task_tag)
2015 {
2016 	struct iscsi_outstanding *io;
2017 
2018 	ISCSI_SESSION_LOCK_ASSERT(is);
2019 
2020 	TAILQ_FOREACH(io, &is->is_outstanding, io_next) {
2021 		if (io->io_initiator_task_tag == initiator_task_tag)
2022 			return (io);
2023 	}
2024 	return (NULL);
2025 }
2026 
2027 static struct iscsi_outstanding *
2028 iscsi_outstanding_find_ccb(struct iscsi_session *is, union ccb *ccb)
2029 {
2030 	struct iscsi_outstanding *io;
2031 
2032 	ISCSI_SESSION_LOCK_ASSERT(is);
2033 
2034 	TAILQ_FOREACH(io, &is->is_outstanding, io_next) {
2035 		if (io->io_ccb == ccb)
2036 			return (io);
2037 	}
2038 	return (NULL);
2039 }
2040 
2041 static struct iscsi_outstanding *
2042 iscsi_outstanding_add(struct iscsi_session *is, struct icl_pdu *request,
2043     union ccb *ccb, uint32_t *initiator_task_tagp)
2044 {
2045 	struct iscsi_outstanding *io;
2046 	int error;
2047 
2048 	ISCSI_SESSION_LOCK_ASSERT(is);
2049 
2050 	io = uma_zalloc(iscsi_outstanding_zone, M_NOWAIT | M_ZERO);
2051 	if (io == NULL) {
2052 		ISCSI_SESSION_WARN(is, "failed to allocate %zd bytes",
2053 		    sizeof(*io));
2054 		return (NULL);
2055 	}
2056 
2057 	error = icl_conn_task_setup(is->is_conn, request, &ccb->csio,
2058 	    initiator_task_tagp, &io->io_icl_prv);
2059 	if (error != 0) {
2060 		ISCSI_SESSION_WARN(is,
2061 		    "icl_conn_task_setup() failed with error %d", error);
2062 		uma_zfree(iscsi_outstanding_zone, io);
2063 		return (NULL);
2064 	}
2065 
2066 	KASSERT(iscsi_outstanding_find(is, *initiator_task_tagp) == NULL,
2067 	    ("initiator_task_tag 0x%x already added", *initiator_task_tagp));
2068 
2069 	io->io_initiator_task_tag = *initiator_task_tagp;
2070 	io->io_ccb = ccb;
2071 	TAILQ_INSERT_TAIL(&is->is_outstanding, io, io_next);
2072 	return (io);
2073 }
2074 
2075 static void
2076 iscsi_outstanding_remove(struct iscsi_session *is, struct iscsi_outstanding *io)
2077 {
2078 
2079 	ISCSI_SESSION_LOCK_ASSERT(is);
2080 
2081 	icl_conn_task_done(is->is_conn, io->io_icl_prv);
2082 	TAILQ_REMOVE(&is->is_outstanding, io, io_next);
2083 	uma_zfree(iscsi_outstanding_zone, io);
2084 }
2085 
2086 static void
2087 iscsi_action_abort(struct iscsi_session *is, union ccb *ccb)
2088 {
2089 	struct icl_pdu *request;
2090 	struct iscsi_bhs_task_management_request *bhstmr;
2091 	struct ccb_abort *cab = &ccb->cab;
2092 	struct iscsi_outstanding *io, *aio;
2093 	uint32_t initiator_task_tag;
2094 
2095 	ISCSI_SESSION_LOCK_ASSERT(is);
2096 
2097 #if 0
2098 	KASSERT(is->is_login_phase == false, ("%s called during Login Phase", __func__));
2099 #else
2100 	if (is->is_login_phase) {
2101 		ccb->ccb_h.status = CAM_REQ_ABORTED;
2102 		xpt_done(ccb);
2103 		return;
2104 	}
2105 #endif
2106 
2107 	aio = iscsi_outstanding_find_ccb(is, cab->abort_ccb);
2108 	if (aio == NULL) {
2109 		ccb->ccb_h.status = CAM_REQ_CMP;
2110 		xpt_done(ccb);
2111 		return;
2112 	}
2113 
2114 	request = icl_pdu_new(is->is_conn, M_NOWAIT);
2115 	if (request == NULL) {
2116 		ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
2117 		xpt_done(ccb);
2118 		return;
2119 	}
2120 
2121 	initiator_task_tag = is->is_initiator_task_tag++;
2122 
2123 	io = iscsi_outstanding_add(is, request, NULL, &initiator_task_tag);
2124 	if (io == NULL) {
2125 		icl_pdu_free(request);
2126 		ccb->ccb_h.status = CAM_RESRC_UNAVAIL;
2127 		xpt_done(ccb);
2128 		return;
2129 	}
2130 	io->io_datasn = aio->io_initiator_task_tag;
2131 
2132 	bhstmr = (struct iscsi_bhs_task_management_request *)request->ip_bhs;
2133 	bhstmr->bhstmr_opcode = ISCSI_BHS_OPCODE_TASK_REQUEST;
2134 	bhstmr->bhstmr_function = 0x80 | BHSTMR_FUNCTION_ABORT_TASK;
2135 	bhstmr->bhstmr_lun = htobe64(CAM_EXTLUN_BYTE_SWIZZLE(ccb->ccb_h.target_lun));
2136 	bhstmr->bhstmr_initiator_task_tag = initiator_task_tag;
2137 	bhstmr->bhstmr_referenced_task_tag = aio->io_initiator_task_tag;
2138 
2139 	iscsi_pdu_queue_locked(request);
2140 }
2141 
2142 static void
2143 iscsi_action_scsiio(struct iscsi_session *is, union ccb *ccb)
2144 {
2145 	struct icl_pdu *request;
2146 	struct iscsi_bhs_scsi_command *bhssc;
2147 	struct ccb_scsiio *csio;
2148 	struct iscsi_outstanding *io;
2149 	size_t len;
2150 	uint32_t initiator_task_tag;
2151 	int error;
2152 
2153 	ISCSI_SESSION_LOCK_ASSERT(is);
2154 
2155 #if 0
2156 	KASSERT(is->is_login_phase == false, ("%s called during Login Phase", __func__));
2157 #else
2158 	if (is->is_login_phase) {
2159 		ISCSI_SESSION_DEBUG(is, "called during login phase");
2160 		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
2161 			xpt_freeze_devq(ccb->ccb_h.path, 1);
2162 			ISCSI_SESSION_DEBUG(is, "freezing devq");
2163 		}
2164 		ccb->ccb_h.status = CAM_REQ_ABORTED | CAM_DEV_QFRZN;
2165 		xpt_done(ccb);
2166 		return;
2167 	}
2168 #endif
2169 
2170 	request = icl_pdu_new(is->is_conn, M_NOWAIT);
2171 	if (request == NULL) {
2172 		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
2173 			xpt_freeze_devq(ccb->ccb_h.path, 1);
2174 			ISCSI_SESSION_DEBUG(is, "freezing devq");
2175 		}
2176 		ccb->ccb_h.status = CAM_RESRC_UNAVAIL | CAM_DEV_QFRZN;
2177 		xpt_done(ccb);
2178 		return;
2179 	}
2180 
2181 	initiator_task_tag = is->is_initiator_task_tag++;
2182 	io = iscsi_outstanding_add(is, request, ccb, &initiator_task_tag);
2183 	if (io == NULL) {
2184 		icl_pdu_free(request);
2185 		if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
2186 			xpt_freeze_devq(ccb->ccb_h.path, 1);
2187 			ISCSI_SESSION_DEBUG(is, "freezing devq");
2188 		}
2189 		ccb->ccb_h.status = CAM_RESRC_UNAVAIL | CAM_DEV_QFRZN;
2190 		xpt_done(ccb);
2191 		return;
2192 	}
2193 
2194 	csio = &ccb->csio;
2195 	bhssc = (struct iscsi_bhs_scsi_command *)request->ip_bhs;
2196 	bhssc->bhssc_opcode = ISCSI_BHS_OPCODE_SCSI_COMMAND;
2197 	bhssc->bhssc_flags |= BHSSC_FLAGS_F;
2198 	switch (csio->ccb_h.flags & CAM_DIR_MASK) {
2199 	case CAM_DIR_IN:
2200 		bhssc->bhssc_flags |= BHSSC_FLAGS_R;
2201 		break;
2202 	case CAM_DIR_OUT:
2203 		bhssc->bhssc_flags |= BHSSC_FLAGS_W;
2204 		break;
2205 	}
2206 
2207 	if ((ccb->ccb_h.flags & CAM_TAG_ACTION_VALID) != 0) {
2208 		switch (csio->tag_action) {
2209 		case MSG_HEAD_OF_Q_TAG:
2210 			bhssc->bhssc_flags |= BHSSC_FLAGS_ATTR_HOQ;
2211 			break;
2212 		case MSG_ORDERED_Q_TAG:
2213 			bhssc->bhssc_flags |= BHSSC_FLAGS_ATTR_ORDERED;
2214 			break;
2215 		case MSG_ACA_TASK:
2216 			bhssc->bhssc_flags |= BHSSC_FLAGS_ATTR_ACA;
2217 			break;
2218 		case MSG_SIMPLE_Q_TAG:
2219 		default:
2220 			bhssc->bhssc_flags |= BHSSC_FLAGS_ATTR_SIMPLE;
2221 			break;
2222 		}
2223 	} else
2224 		bhssc->bhssc_flags |= BHSSC_FLAGS_ATTR_UNTAGGED;
2225 
2226 	bhssc->bhssc_lun = htobe64(CAM_EXTLUN_BYTE_SWIZZLE(ccb->ccb_h.target_lun));
2227 	bhssc->bhssc_initiator_task_tag = initiator_task_tag;
2228 	bhssc->bhssc_expected_data_transfer_length = htonl(csio->dxfer_len);
2229 	KASSERT(csio->cdb_len <= sizeof(bhssc->bhssc_cdb),
2230 	    ("unsupported CDB size %zd", (size_t)csio->cdb_len));
2231 
2232 	if (csio->ccb_h.flags & CAM_CDB_POINTER)
2233 		memcpy(&bhssc->bhssc_cdb, csio->cdb_io.cdb_ptr, csio->cdb_len);
2234 	else
2235 		memcpy(&bhssc->bhssc_cdb, csio->cdb_io.cdb_bytes, csio->cdb_len);
2236 
2237 	if (is->is_immediate_data &&
2238 	    (csio->ccb_h.flags & CAM_DIR_MASK) == CAM_DIR_OUT) {
2239 		len = csio->dxfer_len;
2240 		//ISCSI_SESSION_DEBUG(is, "adding %zd of immediate data", len);
2241 		if (len > is->is_first_burst_length) {
2242 			ISCSI_SESSION_DEBUG(is, "len %zd -> %zd", len, is->is_first_burst_length);
2243 			len = is->is_first_burst_length;
2244 		}
2245 		if (len > is->is_max_data_segment_length) {
2246 			ISCSI_SESSION_DEBUG(is, "len %zd -> %zd", len, is->is_max_data_segment_length);
2247 			len = is->is_max_data_segment_length;
2248 		}
2249 
2250 		error = icl_pdu_append_data(request, csio->data_ptr, len, M_NOWAIT);
2251 		if (error != 0) {
2252 			iscsi_outstanding_remove(is, io);
2253 			icl_pdu_free(request);
2254 			if ((ccb->ccb_h.status & CAM_DEV_QFRZN) == 0) {
2255 				xpt_freeze_devq(ccb->ccb_h.path, 1);
2256 				ISCSI_SESSION_DEBUG(is, "freezing devq");
2257 			}
2258 			ccb->ccb_h.status = CAM_RESRC_UNAVAIL | CAM_DEV_QFRZN;
2259 			xpt_done(ccb);
2260 			return;
2261 		}
2262 	}
2263 	iscsi_pdu_queue_locked(request);
2264 }
2265 
2266 static void
2267 iscsi_action(struct cam_sim *sim, union ccb *ccb)
2268 {
2269 	struct iscsi_session *is;
2270 
2271 	is = cam_sim_softc(sim);
2272 
2273 	ISCSI_SESSION_LOCK_ASSERT(is);
2274 
2275 	if (is->is_terminating ||
2276 	    (is->is_connected == false && fail_on_disconnection)) {
2277 		ccb->ccb_h.status = CAM_DEV_NOT_THERE;
2278 		xpt_done(ccb);
2279 		return;
2280 	}
2281 
2282 	switch (ccb->ccb_h.func_code) {
2283 	case XPT_PATH_INQ:
2284 	{
2285 		struct ccb_pathinq *cpi = &ccb->cpi;
2286 
2287 		cpi->version_num = 1;
2288 		cpi->hba_inquiry = PI_TAG_ABLE;
2289 		cpi->target_sprt = 0;
2290 		cpi->hba_misc = PIM_EXTLUNS;
2291 		/*
2292 		 * XXX: It shouldn't ever be NULL; this could be turned
2293 		 *      into a KASSERT eventually.
2294 		 */
2295 		if (is->is_conn == NULL)
2296 			ISCSI_WARN("NULL conn");
2297 		else if (is->is_conn->ic_unmapped)
2298 			cpi->hba_misc |= PIM_UNMAPPED;
2299 		cpi->hba_eng_cnt = 0;
2300 		cpi->max_target = 0;
2301 		/*
2302 		 * Note that the variable below is only relevant for targets
2303 		 * that don't claim compliance with anything above SPC2, which
2304 		 * means they don't support REPORT_LUNS.
2305 		 */
2306 		cpi->max_lun = 255;
2307 		cpi->initiator_id = ~0;
2308 		strlcpy(cpi->sim_vid, "FreeBSD", SIM_IDLEN);
2309 		strlcpy(cpi->hba_vid, "iSCSI", HBA_IDLEN);
2310 		strlcpy(cpi->dev_name, cam_sim_name(sim), DEV_IDLEN);
2311 		cpi->unit_number = cam_sim_unit(sim);
2312 		cpi->bus_id = cam_sim_bus(sim);
2313 		cpi->base_transfer_speed = 150000; /* XXX */
2314 		cpi->transport = XPORT_ISCSI;
2315 		cpi->transport_version = 0;
2316 		cpi->protocol = PROTO_SCSI;
2317 		cpi->protocol_version = SCSI_REV_SPC3;
2318 		cpi->maxio = MAXPHYS;
2319 		cpi->ccb_h.status = CAM_REQ_CMP;
2320 		break;
2321 	}
2322 	case XPT_GET_TRAN_SETTINGS:
2323 	{
2324 		struct ccb_trans_settings	*cts;
2325 		struct ccb_trans_settings_scsi	*scsi;
2326 
2327 		cts = &ccb->cts;
2328 		scsi = &cts->proto_specific.scsi;
2329 
2330 		cts->protocol = PROTO_SCSI;
2331 		cts->protocol_version = SCSI_REV_SPC3;
2332 		cts->transport = XPORT_ISCSI;
2333 		cts->transport_version = 0;
2334 		scsi->valid = CTS_SCSI_VALID_TQ;
2335 		scsi->flags = CTS_SCSI_FLAGS_TAG_ENB;
2336 		cts->ccb_h.status = CAM_REQ_CMP;
2337 		break;
2338 	}
2339 	case XPT_CALC_GEOMETRY:
2340 		cam_calc_geometry(&ccb->ccg, /*extended*/1);
2341 		ccb->ccb_h.status = CAM_REQ_CMP;
2342 		break;
2343 #if 0
2344 	/*
2345 	 * XXX: What's the point?
2346 	 */
2347 	case XPT_RESET_BUS:
2348 	case XPT_TERM_IO:
2349 		ISCSI_SESSION_DEBUG(is, "faking success for reset, abort, or term_io");
2350 		ccb->ccb_h.status = CAM_REQ_CMP;
2351 		break;
2352 #endif
2353 	case XPT_ABORT:
2354 		iscsi_action_abort(is, ccb);
2355 		return;
2356 	case XPT_SCSI_IO:
2357 		iscsi_action_scsiio(is, ccb);
2358 		return;
2359 	default:
2360 #if 0
2361 		ISCSI_SESSION_DEBUG(is, "got unsupported code 0x%x", ccb->ccb_h.func_code);
2362 #endif
2363 		ccb->ccb_h.status = CAM_FUNC_NOTAVAIL;
2364 		break;
2365 	}
2366 	xpt_done(ccb);
2367 }
2368 
2369 static void
2370 iscsi_poll(struct cam_sim *sim)
2371 {
2372 
2373 	KASSERT(0, ("%s: you're not supposed to be here", __func__));
2374 }
2375 
2376 static void
2377 iscsi_terminate_sessions(struct iscsi_softc *sc)
2378 {
2379 	struct iscsi_session *is;
2380 
2381 	sx_slock(&sc->sc_lock);
2382 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next)
2383 		iscsi_session_terminate(is);
2384 	while(!TAILQ_EMPTY(&sc->sc_sessions)) {
2385 		ISCSI_DEBUG("waiting for sessions to terminate");
2386 		cv_wait(&sc->sc_cv, &sc->sc_lock);
2387 	}
2388 	ISCSI_DEBUG("all sessions terminated");
2389 	sx_sunlock(&sc->sc_lock);
2390 }
2391 
2392 static void
2393 iscsi_shutdown_pre(struct iscsi_softc *sc)
2394 {
2395 	struct iscsi_session *is;
2396 
2397 	if (!fail_on_shutdown)
2398 		return;
2399 
2400 	/*
2401 	 * If we have any sessions waiting for reconnection, request
2402 	 * maintenance thread to fail them immediately instead of waiting
2403 	 * for reconnect timeout.
2404 	 *
2405 	 * This prevents LUNs with mounted filesystems that are supported
2406 	 * by disconnected iSCSI sessions from hanging, however it will
2407 	 * fail all queued BIOs.
2408 	 */
2409 	ISCSI_DEBUG("forcing failing all disconnected sessions due to shutdown");
2410 
2411 	fail_on_disconnection = 1;
2412 
2413 	sx_slock(&sc->sc_lock);
2414 	TAILQ_FOREACH(is, &sc->sc_sessions, is_next) {
2415 		ISCSI_SESSION_LOCK(is);
2416 		if (!is->is_connected) {
2417 			ISCSI_SESSION_DEBUG(is, "force failing disconnected session early");
2418 			iscsi_session_reconnect(is);
2419 		}
2420 		ISCSI_SESSION_UNLOCK(is);
2421 	}
2422 	sx_sunlock(&sc->sc_lock);
2423 }
2424 
2425 static void
2426 iscsi_shutdown_post(struct iscsi_softc *sc)
2427 {
2428 
2429 	ISCSI_DEBUG("removing all sessions due to shutdown");
2430 	iscsi_terminate_sessions(sc);
2431 }
2432 
2433 static int
2434 iscsi_load(void)
2435 {
2436 	int error;
2437 
2438 	sc = malloc(sizeof(*sc), M_ISCSI, M_ZERO | M_WAITOK);
2439 	sx_init(&sc->sc_lock, "iscsi");
2440 	TAILQ_INIT(&sc->sc_sessions);
2441 	cv_init(&sc->sc_cv, "iscsi_cv");
2442 
2443 	iscsi_outstanding_zone = uma_zcreate("iscsi_outstanding",
2444 	    sizeof(struct iscsi_outstanding), NULL, NULL, NULL, NULL,
2445 	    UMA_ALIGN_PTR, 0);
2446 
2447 	error = make_dev_p(MAKEDEV_CHECKNAME, &sc->sc_cdev, &iscsi_cdevsw,
2448 	    NULL, UID_ROOT, GID_WHEEL, 0600, "iscsi");
2449 	if (error != 0) {
2450 		ISCSI_WARN("failed to create device node, error %d", error);
2451 		return (error);
2452 	}
2453 	sc->sc_cdev->si_drv1 = sc;
2454 
2455 	sc->sc_shutdown_pre_eh = EVENTHANDLER_REGISTER(shutdown_pre_sync,
2456 	    iscsi_shutdown_pre, sc, SHUTDOWN_PRI_FIRST);
2457 	/*
2458 	 * shutdown_post_sync needs to run after filesystem shutdown and before
2459 	 * CAM shutdown - otherwise when rebooting with an iSCSI session that is
2460 	 * disconnected but has outstanding requests, dashutdown() will hang on
2461 	 * cam_periph_runccb().
2462 	 */
2463 	sc->sc_shutdown_post_eh = EVENTHANDLER_REGISTER(shutdown_post_sync,
2464 	    iscsi_shutdown_post, sc, SHUTDOWN_PRI_DEFAULT - 1);
2465 
2466 	return (0);
2467 }
2468 
2469 static int
2470 iscsi_unload(void)
2471 {
2472 
2473 	if (sc->sc_cdev != NULL) {
2474 		ISCSI_DEBUG("removing device node");
2475 		destroy_dev(sc->sc_cdev);
2476 		ISCSI_DEBUG("device node removed");
2477 	}
2478 
2479 	if (sc->sc_shutdown_pre_eh != NULL)
2480 		EVENTHANDLER_DEREGISTER(shutdown_pre_sync, sc->sc_shutdown_pre_eh);
2481 	if (sc->sc_shutdown_post_eh != NULL)
2482 		EVENTHANDLER_DEREGISTER(shutdown_post_sync, sc->sc_shutdown_post_eh);
2483 
2484 	iscsi_terminate_sessions(sc);
2485 
2486 	uma_zdestroy(iscsi_outstanding_zone);
2487 	sx_destroy(&sc->sc_lock);
2488 	cv_destroy(&sc->sc_cv);
2489 	free(sc, M_ISCSI);
2490 	return (0);
2491 }
2492 
2493 static int
2494 iscsi_quiesce(void)
2495 {
2496 	sx_slock(&sc->sc_lock);
2497 	if (!TAILQ_EMPTY(&sc->sc_sessions)) {
2498 		sx_sunlock(&sc->sc_lock);
2499 		return (EBUSY);
2500 	}
2501 	sx_sunlock(&sc->sc_lock);
2502 	return (0);
2503 }
2504 
2505 static int
2506 iscsi_modevent(module_t mod, int what, void *arg)
2507 {
2508 	int error;
2509 
2510 	switch (what) {
2511 	case MOD_LOAD:
2512 		error = iscsi_load();
2513 		break;
2514 	case MOD_UNLOAD:
2515 		error = iscsi_unload();
2516 		break;
2517 	case MOD_QUIESCE:
2518 		error = iscsi_quiesce();
2519 		break;
2520 	default:
2521 		error = EINVAL;
2522 		break;
2523 	}
2524 	return (error);
2525 }
2526 
2527 moduledata_t iscsi_data = {
2528 	"iscsi",
2529 	iscsi_modevent,
2530 	0
2531 };
2532 
2533 DECLARE_MODULE(iscsi, iscsi_data, SI_SUB_DRIVERS, SI_ORDER_MIDDLE);
2534 MODULE_DEPEND(iscsi, cam, 1, 1, 1);
2535 MODULE_DEPEND(iscsi, icl, 1, 1, 1);
2536