xref: /freebsd/sys/cam/ctl/scsi_ctl.c (revision be996c05224c3d82f26f94315c760776c3f2896c)
1 /*-
2  * Copyright (c) 2008, 2009 Silicon Graphics International Corp.
3  * Copyright (c) 2014-2015 Alexander Motin <mav@FreeBSD.org>
4  * All rights reserved.
5  *
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 1. Redistributions of source code must retain the above copyright
10  *    notice, this list of conditions, and the following disclaimer,
11  *    without modification.
12  * 2. Redistributions in binary form must reproduce at minimum a disclaimer
13  *    substantially similar to the "NO WARRANTY" disclaimer below
14  *    ("Disclaimer") and any redistribution must be conditioned upon
15  *    including a substantially similar Disclaimer requirement for further
16  *    binary redistribution.
17  *
18  * NO WARRANTY
19  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
20  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
21  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
22  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
23  * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
27  * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
28  * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
29  * POSSIBILITY OF SUCH DAMAGES.
30  *
31  * $Id: //depot/users/kenm/FreeBSD-test2/sys/cam/ctl/scsi_ctl.c#4 $
32  */
33 /*
34  * Peripheral driver interface between CAM and CTL (CAM Target Layer).
35  *
36  * Author: Ken Merry <ken@FreeBSD.org>
37  */
38 
39 #include <sys/cdefs.h>
40 __FBSDID("$FreeBSD$");
41 
42 #include <sys/param.h>
43 #include <sys/queue.h>
44 #include <sys/systm.h>
45 #include <sys/kernel.h>
46 #include <sys/lock.h>
47 #include <sys/mutex.h>
48 #include <sys/condvar.h>
49 #include <sys/malloc.h>
50 #include <sys/bus.h>
51 #include <sys/endian.h>
52 #include <sys/sbuf.h>
53 #include <sys/sysctl.h>
54 #include <sys/types.h>
55 #include <sys/systm.h>
56 #include <machine/bus.h>
57 
58 #include <cam/cam.h>
59 #include <cam/cam_ccb.h>
60 #include <cam/cam_periph.h>
61 #include <cam/cam_queue.h>
62 #include <cam/cam_xpt_periph.h>
63 #include <cam/cam_debug.h>
64 #include <cam/cam_sim.h>
65 #include <cam/cam_xpt.h>
66 
67 #include <cam/scsi/scsi_all.h>
68 #include <cam/scsi/scsi_message.h>
69 
70 #include <cam/ctl/ctl_io.h>
71 #include <cam/ctl/ctl.h>
72 #include <cam/ctl/ctl_frontend.h>
73 #include <cam/ctl/ctl_util.h>
74 #include <cam/ctl/ctl_error.h>
75 
76 struct ctlfe_softc {
77 	struct ctl_port	port;
78 	path_id_t	path_id;
79 	target_id_t	target_id;
80 	uint32_t	hba_misc;
81 	u_int		maxio;
82 	struct cam_sim *sim;
83 	char		port_name[DEV_IDLEN];
84 	struct mtx	lun_softc_mtx;
85 	STAILQ_HEAD(, ctlfe_lun_softc) lun_softc_list;
86 	STAILQ_ENTRY(ctlfe_softc) links;
87 };
88 
89 STAILQ_HEAD(, ctlfe_softc) ctlfe_softc_list;
90 struct mtx ctlfe_list_mtx;
91 static char ctlfe_mtx_desc[] = "ctlfelist";
92 #ifdef CTLFE_INIT_ENABLE
93 static int ctlfe_max_targets = 1;
94 static int ctlfe_num_targets = 0;
95 #endif
96 
97 typedef enum {
98 	CTLFE_LUN_NONE		= 0x00,
99 	CTLFE_LUN_WILDCARD	= 0x01
100 } ctlfe_lun_flags;
101 
102 struct ctlfe_lun_softc {
103 	struct ctlfe_softc *parent_softc;
104 	struct cam_periph *periph;
105 	ctlfe_lun_flags flags;
106 	uint64_t ccbs_alloced;
107 	uint64_t ccbs_freed;
108 	uint64_t ctios_sent;
109 	uint64_t ctios_returned;
110 	uint64_t atios_alloced;
111 	uint64_t atios_freed;
112 	uint64_t inots_alloced;
113 	uint64_t inots_freed;
114 	/* bus_dma_tag_t dma_tag; */
115 	TAILQ_HEAD(, ccb_hdr) work_queue;
116 	STAILQ_ENTRY(ctlfe_lun_softc) links;
117 };
118 
119 typedef enum {
120 	CTLFE_CMD_NONE		= 0x00,
121 	CTLFE_CMD_PIECEWISE	= 0x01
122 } ctlfe_cmd_flags;
123 
124 struct ctlfe_cmd_info {
125 	int cur_transfer_index;
126 	size_t cur_transfer_off;
127 	ctlfe_cmd_flags flags;
128 	/*
129 	 * XXX KDM struct bus_dma_segment is 8 bytes on i386, and 16
130 	 * bytes on amd64.  So with 32 elements, this is 256 bytes on
131 	 * i386 and 512 bytes on amd64.
132 	 */
133 #define CTLFE_MAX_SEGS	32
134 	bus_dma_segment_t cam_sglist[CTLFE_MAX_SEGS];
135 };
136 
137 /*
138  * When we register the adapter/bus, request that this many ctl_ios be
139  * allocated.  This should be the maximum supported by the adapter, but we
140  * currently don't have a way to get that back from the path inquiry.
141  * XXX KDM add that to the path inquiry.
142  */
143 #define	CTLFE_REQ_CTL_IO	4096
144 /*
145  * Number of Accept Target I/O CCBs to allocate and queue down to the
146  * adapter per LUN.
147  * XXX KDM should this be controlled by CTL?
148  */
149 #define	CTLFE_ATIO_PER_LUN	1024
150 /*
151  * Number of Immediate Notify CCBs (used for aborts, resets, etc.) to
152  * allocate and queue down to the adapter per LUN.
153  * XXX KDM should this be controlled by CTL?
154  */
155 #define	CTLFE_IN_PER_LUN	1024
156 
157 /*
158  * Timeout (in seconds) on CTIO CCB allocation for doing a DMA or sending
159  * status to the initiator.  The SIM is expected to have its own timeouts,
160  * so we're not putting this timeout around the CCB execution time.  The
161  * SIM should timeout and let us know if it has an issue.
162  */
163 #define	CTLFE_DMA_TIMEOUT	60
164 
165 /*
166  * Turn this on to enable extra debugging prints.
167  */
168 #if 0
169 #define	CTLFE_DEBUG
170 #endif
171 
172 /*
173  * Use randomly assigned WWNN/WWPN values.  This is to work around an issue
174  * in the FreeBSD initiator that makes it unable to rescan the target if
175  * the target gets rebooted and the WWNN/WWPN stay the same.
176  */
177 #if 0
178 #define	RANDOM_WWNN
179 #endif
180 
181 MALLOC_DEFINE(M_CTLFE, "CAM CTL FE", "CAM CTL FE interface");
182 
183 #define	io_ptr		ppriv_ptr0
184 
185 /* This is only used in the CTIO */
186 #define	ccb_atio	ppriv_ptr1
187 
188 #define PRIV_CCB(io)	((io)->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptrs[0])
189 #define PRIV_INFO(io)	((io)->io_hdr.ctl_private[CTL_PRIV_FRONTEND].ptrs[1])
190 
191 int			ctlfeinitialize(void);
192 void			ctlfeshutdown(void);
193 static periph_init_t	ctlfeperiphinit;
194 static void		ctlfeasync(void *callback_arg, uint32_t code,
195 				   struct cam_path *path, void *arg);
196 static periph_ctor_t	ctlferegister;
197 static periph_oninv_t	ctlfeoninvalidate;
198 static periph_dtor_t	ctlfecleanup;
199 static periph_start_t	ctlfestart;
200 static void		ctlfedone(struct cam_periph *periph,
201 				  union ccb *done_ccb);
202 
203 static void 		ctlfe_onoffline(void *arg, int online);
204 static void 		ctlfe_online(void *arg);
205 static void 		ctlfe_offline(void *arg);
206 static int 		ctlfe_lun_enable(void *arg, int lun_id);
207 static int 		ctlfe_lun_disable(void *arg, int lun_id);
208 static void		ctlfe_dump_sim(struct cam_sim *sim);
209 static void		ctlfe_dump_queue(struct ctlfe_lun_softc *softc);
210 static void 		ctlfe_datamove(union ctl_io *io);
211 static void 		ctlfe_done(union ctl_io *io);
212 static void 		ctlfe_dump(void);
213 
214 static struct periph_driver ctlfe_driver =
215 {
216 	ctlfeperiphinit, "ctl",
217 	TAILQ_HEAD_INITIALIZER(ctlfe_driver.units), /*generation*/ 0,
218 	CAM_PERIPH_DRV_EARLY
219 };
220 
221 static struct ctl_frontend ctlfe_frontend =
222 {
223 	.name = "camtgt",
224 	.init = ctlfeinitialize,
225 	.fe_dump = ctlfe_dump,
226 	.shutdown = ctlfeshutdown,
227 };
228 CTL_FRONTEND_DECLARE(ctlfe, ctlfe_frontend);
229 
230 void
231 ctlfeshutdown(void)
232 {
233 	return;
234 }
235 
236 int
237 ctlfeinitialize(void)
238 {
239 
240 	STAILQ_INIT(&ctlfe_softc_list);
241 	mtx_init(&ctlfe_list_mtx, ctlfe_mtx_desc, NULL, MTX_DEF);
242 	periphdriver_register(&ctlfe_driver);
243 	return (0);
244 }
245 
246 void
247 ctlfeperiphinit(void)
248 {
249 	cam_status status;
250 
251 	status = xpt_register_async(AC_PATH_REGISTERED | AC_PATH_DEREGISTERED |
252 				    AC_CONTRACT, ctlfeasync, NULL, NULL);
253 	if (status != CAM_REQ_CMP) {
254 		printf("ctl: Failed to attach async callback due to CAM "
255 		       "status 0x%x!\n", status);
256 	}
257 }
258 
259 static void
260 ctlfeasync(void *callback_arg, uint32_t code, struct cam_path *path, void *arg)
261 {
262 	struct ctlfe_softc *softc;
263 
264 #ifdef CTLFEDEBUG
265 	printf("%s: entered\n", __func__);
266 #endif
267 
268 	mtx_lock(&ctlfe_list_mtx);
269 	STAILQ_FOREACH(softc, &ctlfe_softc_list, links) {
270 		if (softc->path_id == xpt_path_path_id(path))
271 			break;
272 	}
273 	mtx_unlock(&ctlfe_list_mtx);
274 
275 	/*
276 	 * When a new path gets registered, and it is capable of target
277 	 * mode, go ahead and attach.  Later on, we may need to be more
278 	 * selective, but for now this will be sufficient.
279  	 */
280 	switch (code) {
281 	case AC_PATH_REGISTERED: {
282 		struct ctl_port *port;
283 		struct ccb_pathinq *cpi;
284 		int retval;
285 
286 		cpi = (struct ccb_pathinq *)arg;
287 
288 		/* Don't attach if it doesn't support target mode */
289 		if ((cpi->target_sprt & PIT_PROCESSOR) == 0) {
290 #ifdef CTLFEDEBUG
291 			printf("%s: SIM %s%d doesn't support target mode\n",
292 			       __func__, cpi->dev_name, cpi->unit_number);
293 #endif
294 			break;
295 		}
296 
297 		if (softc != NULL) {
298 #ifdef CTLFEDEBUG
299 			printf("%s: CTL port for CAM path %u already exists\n",
300 			       __func__, xpt_path_path_id(path));
301 #endif
302 			break;
303 		}
304 
305 #ifdef CTLFE_INIT_ENABLE
306 		if (ctlfe_num_targets >= ctlfe_max_targets) {
307 			union ccb *ccb;
308 
309 			ccb = (union ccb *)malloc(sizeof(*ccb), M_TEMP,
310 						  M_NOWAIT | M_ZERO);
311 			if (ccb == NULL) {
312 				printf("%s: unable to malloc CCB!\n", __func__);
313 				return;
314 			}
315 			xpt_setup_ccb(&ccb->ccb_h, path, CAM_PRIORITY_NONE);
316 
317 			ccb->ccb_h.func_code = XPT_SET_SIM_KNOB;
318 			ccb->knob.xport_specific.valid = KNOB_VALID_ROLE;
319 			ccb->knob.xport_specific.fc.role = KNOB_ROLE_INITIATOR;
320 
321 			xpt_action(ccb);
322 
323 			if ((ccb->ccb_h.status & CAM_STATUS_MASK) !=
324 			     CAM_REQ_CMP) {
325 				printf("%s: SIM %s%d (path id %d) initiator "
326 				       "enable failed with status %#x\n",
327 				       __func__, cpi->dev_name,
328 				       cpi->unit_number, cpi->ccb_h.path_id,
329 				       ccb->ccb_h.status);
330 			} else {
331 				printf("%s: SIM %s%d (path id %d) initiator "
332 				       "enable succeeded\n",
333 				       __func__, cpi->dev_name,
334 				       cpi->unit_number, cpi->ccb_h.path_id);
335 			}
336 
337 			free(ccb, M_TEMP);
338 
339 			break;
340 		} else {
341 			ctlfe_num_targets++;
342 		}
343 
344 		printf("%s: ctlfe_num_targets = %d\n", __func__,
345 		       ctlfe_num_targets);
346 #endif /* CTLFE_INIT_ENABLE */
347 
348 		/*
349 		 * We're in an interrupt context here, so we have to
350 		 * use M_NOWAIT.  Of course this means trouble if we
351 		 * can't allocate memory.
352 		 */
353 		softc = malloc(sizeof(*softc), M_CTLFE, M_NOWAIT | M_ZERO);
354 		if (softc == NULL) {
355 			printf("%s: unable to malloc %zd bytes for softc\n",
356 			       __func__, sizeof(*softc));
357 			return;
358 		}
359 
360 		softc->path_id = cpi->ccb_h.path_id;
361 		softc->target_id = cpi->initiator_id;
362 		softc->sim = xpt_path_sim(path);
363 		softc->hba_misc = cpi->hba_misc;
364 		if (cpi->maxio != 0)
365 			softc->maxio = cpi->maxio;
366 		else
367 			softc->maxio = DFLTPHYS;
368 		mtx_init(&softc->lun_softc_mtx, "LUN softc mtx", NULL, MTX_DEF);
369 		STAILQ_INIT(&softc->lun_softc_list);
370 
371 		port = &softc->port;
372 		port->frontend = &ctlfe_frontend;
373 
374 		/*
375 		 * XXX KDM should we be more accurate here ?
376 		 */
377 		if (cpi->transport == XPORT_FC)
378 			port->port_type = CTL_PORT_FC;
379 		else if (cpi->transport == XPORT_SAS)
380 			port->port_type = CTL_PORT_SAS;
381 		else
382 			port->port_type = CTL_PORT_SCSI;
383 
384 		/* XXX KDM what should the real number be here? */
385 		port->num_requested_ctl_io = 4096;
386 		snprintf(softc->port_name, sizeof(softc->port_name),
387 			 "%s%d", cpi->dev_name, cpi->unit_number);
388 		/*
389 		 * XXX KDM it would be nice to allocate storage in the
390 		 * frontend structure itself.
391 	 	 */
392 		port->port_name = softc->port_name;
393 		port->physical_port = cpi->bus_id;
394 		port->virtual_port = 0;
395 		port->port_online = ctlfe_online;
396 		port->port_offline = ctlfe_offline;
397 		port->onoff_arg = softc;
398 		port->lun_enable = ctlfe_lun_enable;
399 		port->lun_disable = ctlfe_lun_disable;
400 		port->targ_lun_arg = softc;
401 		port->fe_datamove = ctlfe_datamove;
402 		port->fe_done = ctlfe_done;
403 		/*
404 		 * XXX KDM the path inquiry doesn't give us the maximum
405 		 * number of targets supported.
406 		 */
407 		port->max_targets = cpi->max_target;
408 		port->max_target_id = cpi->max_target;
409 		port->targ_port = -1;
410 
411 		/*
412 		 * XXX KDM need to figure out whether we're the master or
413 		 * slave.
414 		 */
415 #ifdef CTLFEDEBUG
416 		printf("%s: calling ctl_port_register() for %s%d\n",
417 		       __func__, cpi->dev_name, cpi->unit_number);
418 #endif
419 		retval = ctl_port_register(port);
420 		if (retval != 0) {
421 			printf("%s: ctl_port_register() failed with "
422 			       "error %d!\n", __func__, retval);
423 			mtx_destroy(&softc->lun_softc_mtx);
424 			free(softc, M_CTLFE);
425 			break;
426 		} else {
427 			mtx_lock(&ctlfe_list_mtx);
428 			STAILQ_INSERT_TAIL(&ctlfe_softc_list, softc, links);
429 			mtx_unlock(&ctlfe_list_mtx);
430 		}
431 
432 		break;
433 	}
434 	case AC_PATH_DEREGISTERED: {
435 
436 		if (softc != NULL) {
437 			/*
438 			 * XXX KDM are we certain at this point that there
439 			 * are no outstanding commands for this frontend?
440 			 */
441 			mtx_lock(&ctlfe_list_mtx);
442 			STAILQ_REMOVE(&ctlfe_softc_list, softc, ctlfe_softc,
443 			    links);
444 			mtx_unlock(&ctlfe_list_mtx);
445 			ctl_port_deregister(&softc->port);
446 			mtx_destroy(&softc->lun_softc_mtx);
447 			free(softc, M_CTLFE);
448 		}
449 		break;
450 	}
451 	case AC_CONTRACT: {
452 		struct ac_contract *ac;
453 
454 		ac = (struct ac_contract *)arg;
455 
456 		switch (ac->contract_number) {
457 		case AC_CONTRACT_DEV_CHG: {
458 			struct ac_device_changed *dev_chg;
459 			int retval;
460 
461 			dev_chg = (struct ac_device_changed *)ac->contract_data;
462 
463 			printf("%s: WWPN %#jx port 0x%06x path %u target %u %s\n",
464 			       __func__, dev_chg->wwpn, dev_chg->port,
465 			       xpt_path_path_id(path), dev_chg->target,
466 			       (dev_chg->arrived == 0) ?  "left" : "arrived");
467 
468 			if (softc == NULL) {
469 				printf("%s: CTL port for CAM path %u not "
470 				       "found!\n", __func__,
471 				       xpt_path_path_id(path));
472 				break;
473 			}
474 			if (dev_chg->arrived != 0) {
475 				retval = ctl_add_initiator(&softc->port,
476 				    dev_chg->target, dev_chg->wwpn, NULL);
477 			} else {
478 				retval = ctl_remove_initiator(&softc->port,
479 				    dev_chg->target);
480 			}
481 
482 			if (retval < 0) {
483 				printf("%s: could not %s port %d iid %u "
484 				       "WWPN %#jx!\n", __func__,
485 				       (dev_chg->arrived != 0) ? "add" :
486 				       "remove", softc->port.targ_port,
487 				       dev_chg->target,
488 				       (uintmax_t)dev_chg->wwpn);
489 			}
490 			break;
491 		}
492 		default:
493 			printf("%s: unsupported contract number %ju\n",
494 			       __func__, (uintmax_t)ac->contract_number);
495 			break;
496 		}
497 		break;
498 	}
499 	default:
500 		break;
501 	}
502 }
503 
504 static cam_status
505 ctlferegister(struct cam_periph *periph, void *arg)
506 {
507 	struct ctlfe_softc *bus_softc;
508 	struct ctlfe_lun_softc *softc;
509 	union ccb en_lun_ccb;
510 	cam_status status;
511 	int i;
512 
513 	softc = (struct ctlfe_lun_softc *)arg;
514 	bus_softc = softc->parent_softc;
515 
516 	TAILQ_INIT(&softc->work_queue);
517 	softc->periph = periph;
518 	periph->softc = softc;
519 
520 	xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE);
521 	en_lun_ccb.ccb_h.func_code = XPT_EN_LUN;
522 	en_lun_ccb.cel.grp6_len = 0;
523 	en_lun_ccb.cel.grp7_len = 0;
524 	en_lun_ccb.cel.enable = 1;
525 	xpt_action(&en_lun_ccb);
526 	status = (en_lun_ccb.ccb_h.status & CAM_STATUS_MASK);
527 	if (status != CAM_REQ_CMP) {
528 		xpt_print(periph->path, "%s: Enable LUN failed, status 0x%x\n",
529 			  __func__, en_lun_ccb.ccb_h.status);
530 		return (status);
531 	}
532 
533 	status = CAM_REQ_CMP;
534 
535 	for (i = 0; i < CTLFE_ATIO_PER_LUN; i++) {
536 		union ccb *new_ccb;
537 		union ctl_io *new_io;
538 		struct ctlfe_cmd_info *cmd_info;
539 
540 		new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE,
541 					      M_ZERO|M_NOWAIT);
542 		if (new_ccb == NULL) {
543 			status = CAM_RESRC_UNAVAIL;
544 			break;
545 		}
546 		new_io = ctl_alloc_io_nowait(bus_softc->port.ctl_pool_ref);
547 		if (new_io == NULL) {
548 			free(new_ccb, M_CTLFE);
549 			status = CAM_RESRC_UNAVAIL;
550 			break;
551 		}
552 		cmd_info = malloc(sizeof(*cmd_info), M_CTLFE,
553 		    M_ZERO | M_NOWAIT);
554 		if (cmd_info == NULL) {
555 			ctl_free_io(new_io);
556 			free(new_ccb, M_CTLFE);
557 			status = CAM_RESRC_UNAVAIL;
558 			break;
559 		}
560 		PRIV_INFO(new_io) = cmd_info;
561 		softc->atios_alloced++;
562 		new_ccb->ccb_h.io_ptr = new_io;
563 
564 		xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1);
565 		new_ccb->ccb_h.func_code = XPT_ACCEPT_TARGET_IO;
566 		new_ccb->ccb_h.cbfcnp = ctlfedone;
567 		new_ccb->ccb_h.flags |= CAM_UNLOCKED;
568 		xpt_action(new_ccb);
569 		status = new_ccb->ccb_h.status;
570 		if ((status & CAM_STATUS_MASK) != CAM_REQ_INPROG) {
571 			free(cmd_info, M_CTLFE);
572 			ctl_free_io(new_io);
573 			free(new_ccb, M_CTLFE);
574 			break;
575 		}
576 	}
577 
578 	status = cam_periph_acquire(periph);
579 	if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
580 		xpt_print(periph->path, "%s: could not acquire reference "
581 			  "count, status = %#x\n", __func__, status);
582 		return (status);
583 	}
584 
585 	if (i == 0) {
586 		xpt_print(periph->path, "%s: could not allocate ATIO CCBs, "
587 			  "status 0x%x\n", __func__, status);
588 		return (CAM_REQ_CMP_ERR);
589 	}
590 
591 	for (i = 0; i < CTLFE_IN_PER_LUN; i++) {
592 		union ccb *new_ccb;
593 		union ctl_io *new_io;
594 
595 		new_ccb = (union ccb *)malloc(sizeof(*new_ccb), M_CTLFE,
596 					      M_ZERO|M_NOWAIT);
597 		if (new_ccb == NULL) {
598 			status = CAM_RESRC_UNAVAIL;
599 			break;
600 		}
601 		new_io = ctl_alloc_io_nowait(bus_softc->port.ctl_pool_ref);
602 		if (new_io == NULL) {
603 			free(new_ccb, M_CTLFE);
604 			status = CAM_RESRC_UNAVAIL;
605 			break;
606 		}
607 		softc->inots_alloced++;
608 		new_ccb->ccb_h.io_ptr = new_io;
609 
610 		xpt_setup_ccb(&new_ccb->ccb_h, periph->path, /*priority*/ 1);
611 		new_ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
612 		new_ccb->ccb_h.cbfcnp = ctlfedone;
613 		new_ccb->ccb_h.flags |= CAM_UNLOCKED;
614 		xpt_action(new_ccb);
615 		status = new_ccb->ccb_h.status;
616 		if ((status & CAM_STATUS_MASK) != CAM_REQ_INPROG) {
617 			/*
618 			 * Note that we don't free the CCB here.  If the
619 			 * status is not CAM_REQ_INPROG, then we're
620 			 * probably talking to a SIM that says it is
621 			 * target-capable but doesn't support the
622 			 * XPT_IMMEDIATE_NOTIFY CCB.  i.e. it supports the
623 			 * older API.  In that case, it'll call xpt_done()
624 			 * on the CCB, and we need to free it in our done
625 			 * routine as a result.
626 			 */
627 			break;
628 		}
629 	}
630 	if ((i == 0)
631 	 || (status != CAM_REQ_INPROG)) {
632 		xpt_print(periph->path, "%s: could not allocate immediate "
633 			  "notify CCBs, status 0x%x\n", __func__, status);
634 		return (CAM_REQ_CMP_ERR);
635 	}
636 	mtx_lock(&bus_softc->lun_softc_mtx);
637 	STAILQ_INSERT_TAIL(&bus_softc->lun_softc_list, softc, links);
638 	mtx_unlock(&bus_softc->lun_softc_mtx);
639 	return (CAM_REQ_CMP);
640 }
641 
642 static void
643 ctlfeoninvalidate(struct cam_periph *periph)
644 {
645 	union ccb en_lun_ccb;
646 	cam_status status;
647 	struct ctlfe_softc *bus_softc;
648 	struct ctlfe_lun_softc *softc;
649 
650 	softc = (struct ctlfe_lun_softc *)periph->softc;
651 
652 	xpt_setup_ccb(&en_lun_ccb.ccb_h, periph->path, CAM_PRIORITY_NONE);
653 	en_lun_ccb.ccb_h.func_code = XPT_EN_LUN;
654 	en_lun_ccb.cel.grp6_len = 0;
655 	en_lun_ccb.cel.grp7_len = 0;
656 	en_lun_ccb.cel.enable = 0;
657 	xpt_action(&en_lun_ccb);
658 	status = (en_lun_ccb.ccb_h.status & CAM_STATUS_MASK);
659 	if (status != CAM_REQ_CMP) {
660 		xpt_print(periph->path, "%s: Disable LUN failed, status 0x%x\n",
661 			  __func__, en_lun_ccb.ccb_h.status);
662 		/*
663 		 * XXX KDM what do we do now?
664 		 */
665 	}
666 
667 	bus_softc = softc->parent_softc;
668 	mtx_lock(&bus_softc->lun_softc_mtx);
669 	STAILQ_REMOVE(&bus_softc->lun_softc_list, softc, ctlfe_lun_softc, links);
670 	mtx_unlock(&bus_softc->lun_softc_mtx);
671 }
672 
673 static void
674 ctlfecleanup(struct cam_periph *periph)
675 {
676 	struct ctlfe_lun_softc *softc;
677 
678 	softc = (struct ctlfe_lun_softc *)periph->softc;
679 
680 	KASSERT(softc->ccbs_freed == softc->ccbs_alloced, ("%s: "
681 		"ccbs_freed %ju != ccbs_alloced %ju", __func__,
682 		softc->ccbs_freed, softc->ccbs_alloced));
683 	KASSERT(softc->ctios_returned == softc->ctios_sent, ("%s: "
684 		"ctios_returned %ju != ctios_sent %ju", __func__,
685 		softc->ctios_returned, softc->ctios_sent));
686 	KASSERT(softc->atios_freed == softc->atios_alloced, ("%s: "
687 		"atios_freed %ju != atios_alloced %ju", __func__,
688 		softc->atios_freed, softc->atios_alloced));
689 	KASSERT(softc->inots_freed == softc->inots_alloced, ("%s: "
690 		"inots_freed %ju != inots_alloced %ju", __func__,
691 		softc->inots_freed, softc->inots_alloced));
692 
693 	free(softc, M_CTLFE);
694 }
695 
696 static void
697 ctlfedata(struct ctlfe_lun_softc *softc, union ctl_io *io,
698     ccb_flags *flags, uint8_t **data_ptr, uint32_t *dxfer_len,
699     u_int16_t *sglist_cnt)
700 {
701 	struct ctlfe_softc *bus_softc;
702 	struct ctlfe_cmd_info *cmd_info;
703 	struct ctl_sg_entry *ctl_sglist;
704 	bus_dma_segment_t *cam_sglist;
705 	size_t off;
706 	int i, idx;
707 
708 	cmd_info = PRIV_INFO(io);
709 	bus_softc = softc->parent_softc;
710 
711 	/*
712 	 * Set the direction, relative to the initiator.
713 	 */
714 	*flags &= ~CAM_DIR_MASK;
715 	if ((io->io_hdr.flags & CTL_FLAG_DATA_MASK) == CTL_FLAG_DATA_IN)
716 		*flags |= CAM_DIR_IN;
717 	else
718 		*flags |= CAM_DIR_OUT;
719 
720 	*flags &= ~CAM_DATA_MASK;
721 	idx = cmd_info->cur_transfer_index;
722 	off = cmd_info->cur_transfer_off;
723 	cmd_info->flags &= ~CTLFE_CMD_PIECEWISE;
724 	if (io->scsiio.kern_sg_entries == 0) {
725 		/* No S/G list. */
726 		*data_ptr = io->scsiio.kern_data_ptr + off;
727 		if (io->scsiio.kern_data_len - off <= bus_softc->maxio) {
728 			*dxfer_len = io->scsiio.kern_data_len - off;
729 		} else {
730 			*dxfer_len = bus_softc->maxio;
731 			cmd_info->cur_transfer_index = -1;
732 			cmd_info->cur_transfer_off = bus_softc->maxio;
733 			cmd_info->flags |= CTLFE_CMD_PIECEWISE;
734 		}
735 		*sglist_cnt = 0;
736 
737 		if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR)
738 			*flags |= CAM_DATA_PADDR;
739 		else
740 			*flags |= CAM_DATA_VADDR;
741 	} else {
742 		/* S/G list with physical or virtual pointers. */
743 		ctl_sglist = (struct ctl_sg_entry *)io->scsiio.kern_data_ptr;
744 		cam_sglist = cmd_info->cam_sglist;
745 		*dxfer_len = 0;
746 		for (i = 0; i < io->scsiio.kern_sg_entries - idx; i++) {
747 			cam_sglist[i].ds_addr = (bus_addr_t)ctl_sglist[i + idx].addr + off;
748 			if (ctl_sglist[i + idx].len - off <= bus_softc->maxio - *dxfer_len) {
749 				cam_sglist[i].ds_len = ctl_sglist[idx + i].len - off;
750 				*dxfer_len += cam_sglist[i].ds_len;
751 			} else {
752 				cam_sglist[i].ds_len = bus_softc->maxio - *dxfer_len;
753 				cmd_info->cur_transfer_index = idx + i;
754 				cmd_info->cur_transfer_off = cam_sglist[i].ds_len + off;
755 				cmd_info->flags |= CTLFE_CMD_PIECEWISE;
756 				*dxfer_len += cam_sglist[i].ds_len;
757 				if (ctl_sglist[i].len != 0)
758 					i++;
759 				break;
760 			}
761 			if (i == (CTLFE_MAX_SEGS - 1) &&
762 			    idx + i < (io->scsiio.kern_sg_entries - 1)) {
763 				cmd_info->cur_transfer_index = idx + i + 1;
764 				cmd_info->cur_transfer_off = 0;
765 				cmd_info->flags |= CTLFE_CMD_PIECEWISE;
766 				i++;
767 				break;
768 			}
769 			off = 0;
770 		}
771 		*sglist_cnt = i;
772 		if (io->io_hdr.flags & CTL_FLAG_BUS_ADDR)
773 			*flags |= CAM_DATA_SG_PADDR;
774 		else
775 			*flags |= CAM_DATA_SG;
776 		*data_ptr = (uint8_t *)cam_sglist;
777 	}
778 }
779 
780 static void
781 ctlfestart(struct cam_periph *periph, union ccb *start_ccb)
782 {
783 	struct ctlfe_lun_softc *softc;
784 	struct ctlfe_cmd_info *cmd_info;
785 	struct ccb_hdr *ccb_h;
786 	struct ccb_accept_tio *atio;
787 	struct ccb_scsiio *csio;
788 	uint8_t *data_ptr;
789 	uint32_t dxfer_len;
790 	ccb_flags flags;
791 	union ctl_io *io;
792 	uint8_t scsi_status;
793 
794 	softc = (struct ctlfe_lun_softc *)periph->softc;
795 	softc->ccbs_alloced++;
796 
797 	ccb_h = TAILQ_FIRST(&softc->work_queue);
798 	if (ccb_h == NULL) {
799 		softc->ccbs_freed++;
800 		xpt_release_ccb(start_ccb);
801 		return;
802 	}
803 
804 	/* Take the ATIO off the work queue */
805 	TAILQ_REMOVE(&softc->work_queue, ccb_h, periph_links.tqe);
806 	atio = (struct ccb_accept_tio *)ccb_h;
807 	io = (union ctl_io *)ccb_h->io_ptr;
808 	csio = &start_ccb->csio;
809 
810 	flags = atio->ccb_h.flags &
811 		(CAM_DIS_DISCONNECT|CAM_TAG_ACTION_VALID|CAM_DIR_MASK);
812 	cmd_info = PRIV_INFO(io);
813 	cmd_info->cur_transfer_index = 0;
814 	cmd_info->cur_transfer_off = 0;
815 	cmd_info->flags = 0;
816 
817 	if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) {
818 		/*
819 		 * Datamove call, we need to setup the S/G list.
820 		 */
821 		scsi_status = 0;
822 		csio->cdb_len = atio->cdb_len;
823 		ctlfedata(softc, io, &flags, &data_ptr, &dxfer_len,
824 		    &csio->sglist_cnt);
825 		io->scsiio.ext_data_filled += dxfer_len;
826 		if (io->scsiio.ext_data_filled > io->scsiio.kern_total_len) {
827 			xpt_print(periph->path, "%s: tag 0x%04x "
828 				  "fill len %u > total %u\n",
829 				  __func__, io->scsiio.tag_num,
830 				  io->scsiio.ext_data_filled,
831 				  io->scsiio.kern_total_len);
832 		}
833 	} else {
834 		/*
835 		 * We're done, send status back.
836 		 */
837 		if ((io->io_hdr.flags & CTL_FLAG_ABORT) &&
838 		    (io->io_hdr.flags & CTL_FLAG_ABORT_STATUS) == 0) {
839 			io->io_hdr.flags &= ~CTL_FLAG_STATUS_QUEUED;
840 
841 			/*
842 			 * If this command was aborted, we don't
843 			 * need to send status back to the SIM.
844 			 * Just free the CTIO and ctl_io, and
845 			 * recycle the ATIO back to the SIM.
846 			 */
847 			xpt_print(periph->path, "%s: aborted "
848 				  "command 0x%04x discarded\n",
849 				  __func__, io->scsiio.tag_num);
850 			/*
851 			 * For a wildcard attachment, commands can
852 			 * come in with a specific target/lun.  Reset
853 			 * the target and LUN fields back to the
854 			 * wildcard values before we send them back
855 			 * down to the SIM.  The SIM has a wildcard
856 			 * LUN enabled, not whatever target/lun
857 			 * these happened to be.
858 			 */
859 			if (softc->flags & CTLFE_LUN_WILDCARD) {
860 				atio->ccb_h.target_id = CAM_TARGET_WILDCARD;
861 				atio->ccb_h.target_lun = CAM_LUN_WILDCARD;
862 			}
863 
864 			if (atio->ccb_h.func_code != XPT_ACCEPT_TARGET_IO) {
865 				xpt_print(periph->path, "%s: func_code "
866 					  "is %#x\n", __func__,
867 					  atio->ccb_h.func_code);
868 			}
869 			start_ccb->ccb_h.func_code = XPT_ABORT;
870 			start_ccb->cab.abort_ccb = (union ccb *)atio;
871 
872 			/* Tell the SIM that we've aborted this ATIO */
873 			xpt_action(start_ccb);
874 			softc->ccbs_freed++;
875 			xpt_release_ccb(start_ccb);
876 
877 			/*
878 			 * Send the ATIO back down to the SIM.
879 			 */
880 			xpt_action((union ccb *)atio);
881 
882 			/*
883 			 * If we still have work to do, ask for
884 			 * another CCB.  Otherwise, deactivate our
885 			 * callout.
886 			 */
887 			if (!TAILQ_EMPTY(&softc->work_queue))
888 				xpt_schedule(periph, /*priority*/ 1);
889 			return;
890 		}
891 		data_ptr = NULL;
892 		dxfer_len = 0;
893 		csio->sglist_cnt = 0;
894 		scsi_status = 0;
895 	}
896 	if ((io->io_hdr.flags & CTL_FLAG_STATUS_QUEUED) &&
897 	    (cmd_info->flags & CTLFE_CMD_PIECEWISE) == 0 &&
898 	    ((io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) == 0 ||
899 	     io->io_hdr.status == CTL_SUCCESS)) {
900 		flags |= CAM_SEND_STATUS;
901 		scsi_status = io->scsiio.scsi_status;
902 		csio->sense_len = io->scsiio.sense_len;
903 #ifdef CTLFEDEBUG
904 		printf("%s: tag %04x status %x\n", __func__,
905 		       atio->tag_id, io->io_hdr.status);
906 #endif
907 		if (csio->sense_len != 0) {
908 			csio->sense_data = io->scsiio.sense_data;
909 			flags |= CAM_SEND_SENSE;
910 		} else if (scsi_status == SCSI_STATUS_CHECK_COND) {
911 			xpt_print(periph->path, "%s: check condition "
912 				  "with no sense\n", __func__);
913 		}
914 	}
915 
916 #ifdef CTLFEDEBUG
917 	printf("%s: %s: tag %04x flags %x ptr %p len %u\n", __func__,
918 	       (flags & CAM_SEND_STATUS) ? "done" : "datamove",
919 	       atio->tag_id, flags, data_ptr, dxfer_len);
920 #endif
921 
922 	/*
923 	 * Valid combinations:
924 	 *  - CAM_SEND_STATUS, CAM_DATA_SG = 0, dxfer_len = 0,
925 	 *    sglist_cnt = 0
926 	 *  - CAM_SEND_STATUS = 0, CAM_DATA_SG = 0, dxfer_len != 0,
927 	 *    sglist_cnt = 0
928 	 *  - CAM_SEND_STATUS = 0, CAM_DATA_SG, dxfer_len != 0,
929 	 *    sglist_cnt != 0
930 	 */
931 #ifdef CTLFEDEBUG
932 	if (((flags & CAM_SEND_STATUS)
933 	  && (((flags & CAM_DATA_SG) != 0)
934 	   || (dxfer_len != 0)
935 	   || (csio->sglist_cnt != 0)))
936 	 || (((flags & CAM_SEND_STATUS) == 0)
937 	  && (dxfer_len == 0))
938 	 || ((flags & CAM_DATA_SG)
939 	  && (csio->sglist_cnt == 0))
940 	 || (((flags & CAM_DATA_SG) == 0)
941 	  && (csio->sglist_cnt != 0))) {
942 		printf("%s: tag %04x cdb %02x flags %#x dxfer_len "
943 		       "%d sg %u\n", __func__, atio->tag_id,
944 		       atio_cdb_ptr(atio)[0], flags, dxfer_len,
945 		       csio->sglist_cnt);
946 		printf("%s: tag %04x io status %#x\n", __func__,
947 		       atio->tag_id, io->io_hdr.status);
948 	}
949 #endif
950 	cam_fill_ctio(csio,
951 		      /*retries*/ 2,
952 		      ctlfedone,
953 		      flags,
954 		      (flags & CAM_TAG_ACTION_VALID) ? MSG_SIMPLE_Q_TAG : 0,
955 		      atio->tag_id,
956 		      atio->init_id,
957 		      scsi_status,
958 		      /*data_ptr*/ data_ptr,
959 		      /*dxfer_len*/ dxfer_len,
960 		      /*timeout*/ 5 * 1000);
961 	start_ccb->ccb_h.flags |= CAM_UNLOCKED;
962 	start_ccb->ccb_h.ccb_atio = atio;
963 	if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED)
964 		io->io_hdr.flags |= CTL_FLAG_DMA_INPROG;
965 	io->io_hdr.flags &= ~(CTL_FLAG_DMA_QUEUED | CTL_FLAG_STATUS_QUEUED);
966 
967 	softc->ctios_sent++;
968 
969 	cam_periph_unlock(periph);
970 	xpt_action(start_ccb);
971 	cam_periph_lock(periph);
972 
973 	/*
974 	 * If we still have work to do, ask for another CCB.
975 	 */
976 	if (!TAILQ_EMPTY(&softc->work_queue))
977 		xpt_schedule(periph, /*priority*/ 1);
978 }
979 
980 static void
981 ctlfe_free_ccb(struct cam_periph *periph, union ccb *ccb)
982 {
983 	struct ctlfe_lun_softc *softc;
984 	union ctl_io *io;
985 	struct ctlfe_cmd_info *cmd_info;
986 
987 	softc = (struct ctlfe_lun_softc *)periph->softc;
988 	io = ccb->ccb_h.io_ptr;
989 
990 	switch (ccb->ccb_h.func_code) {
991 	case XPT_ACCEPT_TARGET_IO:
992 		softc->atios_freed++;
993 		cmd_info = PRIV_INFO(io);
994 		free(cmd_info, M_CTLFE);
995 		break;
996 	case XPT_IMMEDIATE_NOTIFY:
997 	case XPT_NOTIFY_ACKNOWLEDGE:
998 		softc->inots_freed++;
999 		break;
1000 	default:
1001 		break;
1002 	}
1003 
1004 	ctl_free_io(io);
1005 	free(ccb, M_CTLFE);
1006 
1007 	KASSERT(softc->atios_freed <= softc->atios_alloced, ("%s: "
1008 		"atios_freed %ju > atios_alloced %ju", __func__,
1009 		softc->atios_freed, softc->atios_alloced));
1010 	KASSERT(softc->inots_freed <= softc->inots_alloced, ("%s: "
1011 		"inots_freed %ju > inots_alloced %ju", __func__,
1012 		softc->inots_freed, softc->inots_alloced));
1013 
1014 	/*
1015 	 * If we have received all of our CCBs, we can release our
1016 	 * reference on the peripheral driver.  It will probably go away
1017 	 * now.
1018 	 */
1019 	if ((softc->atios_freed == softc->atios_alloced)
1020 	 && (softc->inots_freed == softc->inots_alloced)) {
1021 		cam_periph_release_locked(periph);
1022 	}
1023 }
1024 
1025 static int
1026 ctlfe_adjust_cdb(struct ccb_accept_tio *atio, uint32_t offset)
1027 {
1028 	uint64_t lba;
1029 	uint32_t num_blocks, nbc;
1030 	uint8_t *cmdbyt = atio_cdb_ptr(atio);
1031 
1032 	nbc = offset >> 9;	/* ASSUMING 512 BYTE BLOCKS */
1033 
1034 	switch (cmdbyt[0]) {
1035 	case READ_6:
1036 	case WRITE_6:
1037 	{
1038 		struct scsi_rw_6 *cdb = (struct scsi_rw_6 *)cmdbyt;
1039 		lba = scsi_3btoul(cdb->addr);
1040 		lba &= 0x1fffff;
1041 		num_blocks = cdb->length;
1042 		if (num_blocks == 0)
1043 			num_blocks = 256;
1044 		lba += nbc;
1045 		num_blocks -= nbc;
1046 		scsi_ulto3b(lba, cdb->addr);
1047 		cdb->length = num_blocks;
1048 		break;
1049 	}
1050 	case READ_10:
1051 	case WRITE_10:
1052 	{
1053 		struct scsi_rw_10 *cdb = (struct scsi_rw_10 *)cmdbyt;
1054 		lba = scsi_4btoul(cdb->addr);
1055 		num_blocks = scsi_2btoul(cdb->length);
1056 		lba += nbc;
1057 		num_blocks -= nbc;
1058 		scsi_ulto4b(lba, cdb->addr);
1059 		scsi_ulto2b(num_blocks, cdb->length);
1060 		break;
1061 	}
1062 	case READ_12:
1063 	case WRITE_12:
1064 	{
1065 		struct scsi_rw_12 *cdb = (struct scsi_rw_12 *)cmdbyt;
1066 		lba = scsi_4btoul(cdb->addr);
1067 		num_blocks = scsi_4btoul(cdb->length);
1068 		lba += nbc;
1069 		num_blocks -= nbc;
1070 		scsi_ulto4b(lba, cdb->addr);
1071 		scsi_ulto4b(num_blocks, cdb->length);
1072 		break;
1073 	}
1074 	case READ_16:
1075 	case WRITE_16:
1076 	{
1077 		struct scsi_rw_16 *cdb = (struct scsi_rw_16 *)cmdbyt;
1078 		lba = scsi_8btou64(cdb->addr);
1079 		num_blocks = scsi_4btoul(cdb->length);
1080 		lba += nbc;
1081 		num_blocks -= nbc;
1082 		scsi_u64to8b(lba, cdb->addr);
1083 		scsi_ulto4b(num_blocks, cdb->length);
1084 		break;
1085 	}
1086 	default:
1087 		return -1;
1088 	}
1089 	return (0);
1090 }
1091 
1092 static void
1093 ctlfedone(struct cam_periph *periph, union ccb *done_ccb)
1094 {
1095 	struct ctlfe_lun_softc *softc;
1096 	struct ctlfe_softc *bus_softc;
1097 	struct ctlfe_cmd_info *cmd_info;
1098 	struct ccb_accept_tio *atio = NULL;
1099 	union ctl_io *io = NULL;
1100 	struct mtx *mtx;
1101 
1102 	KASSERT((done_ccb->ccb_h.flags & CAM_UNLOCKED) != 0,
1103 	    ("CCB in ctlfedone() without CAM_UNLOCKED flag"));
1104 #ifdef CTLFE_DEBUG
1105 	printf("%s: entered, func_code = %#x\n", __func__,
1106 	       done_ccb->ccb_h.func_code);
1107 #endif
1108 
1109 	/*
1110 	 * At this point CTL has no known use case for device queue freezes.
1111 	 * In case some SIM think different -- drop its freeze right here.
1112 	 */
1113 	if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) {
1114 		cam_release_devq(periph->path,
1115 				 /*relsim_flags*/0,
1116 				 /*reduction*/0,
1117 				 /*timeout*/0,
1118 				 /*getcount_only*/0);
1119 		done_ccb->ccb_h.status &= ~CAM_DEV_QFRZN;
1120 	}
1121 
1122 	softc = (struct ctlfe_lun_softc *)periph->softc;
1123 	bus_softc = softc->parent_softc;
1124 	mtx = cam_periph_mtx(periph);
1125 	mtx_lock(mtx);
1126 
1127 	/*
1128 	 * If the peripheral is invalid, ATIOs and immediate notify CCBs
1129 	 * need to be freed.  Most of the ATIOs and INOTs that come back
1130 	 * will be CCBs that are being returned from the SIM as a result of
1131 	 * our disabling the LUN.
1132 	 *
1133 	 * Other CCB types are handled in their respective cases below.
1134 	 */
1135 	if (periph->flags & CAM_PERIPH_INVALID) {
1136 		switch (done_ccb->ccb_h.func_code) {
1137 		case XPT_ACCEPT_TARGET_IO:
1138 		case XPT_IMMEDIATE_NOTIFY:
1139 		case XPT_NOTIFY_ACKNOWLEDGE:
1140 			ctlfe_free_ccb(periph, done_ccb);
1141 			goto out;
1142 		default:
1143 			break;
1144 		}
1145 
1146 	}
1147 	switch (done_ccb->ccb_h.func_code) {
1148 	case XPT_ACCEPT_TARGET_IO: {
1149 
1150 		atio = &done_ccb->atio;
1151 
1152  resubmit:
1153 		/*
1154 		 * Allocate a ctl_io, pass it to CTL, and wait for the
1155 		 * datamove or done.
1156 		 */
1157 		mtx_unlock(mtx);
1158 		io = done_ccb->ccb_h.io_ptr;
1159 		cmd_info = PRIV_INFO(io);
1160 		ctl_zero_io(io);
1161 
1162 		/* Save pointers on both sides */
1163 		PRIV_CCB(io) = done_ccb;
1164 		PRIV_INFO(io) = cmd_info;
1165 		done_ccb->ccb_h.io_ptr = io;
1166 
1167 		/*
1168 		 * Only SCSI I/O comes down this path, resets, etc. come
1169 		 * down the immediate notify path below.
1170 		 */
1171 		io->io_hdr.io_type = CTL_IO_SCSI;
1172 		io->io_hdr.nexus.initid = atio->init_id;
1173 		io->io_hdr.nexus.targ_port = bus_softc->port.targ_port;
1174 		if (bus_softc->hba_misc & PIM_EXTLUNS) {
1175 			io->io_hdr.nexus.targ_lun = ctl_decode_lun(
1176 			    CAM_EXTLUN_BYTE_SWIZZLE(atio->ccb_h.target_lun));
1177 		} else {
1178 			io->io_hdr.nexus.targ_lun = atio->ccb_h.target_lun;
1179 		}
1180 		io->scsiio.tag_num = atio->tag_id;
1181 		switch (atio->tag_action) {
1182 		case CAM_TAG_ACTION_NONE:
1183 			io->scsiio.tag_type = CTL_TAG_UNTAGGED;
1184 			break;
1185 		case MSG_SIMPLE_TASK:
1186 			io->scsiio.tag_type = CTL_TAG_SIMPLE;
1187 			break;
1188 		case MSG_HEAD_OF_QUEUE_TASK:
1189         		io->scsiio.tag_type = CTL_TAG_HEAD_OF_QUEUE;
1190 			break;
1191 		case MSG_ORDERED_TASK:
1192         		io->scsiio.tag_type = CTL_TAG_ORDERED;
1193 			break;
1194 		case MSG_ACA_TASK:
1195 			io->scsiio.tag_type = CTL_TAG_ACA;
1196 			break;
1197 		default:
1198 			io->scsiio.tag_type = CTL_TAG_UNTAGGED;
1199 			printf("%s: unhandled tag type %#x!!\n", __func__,
1200 			       atio->tag_action);
1201 			break;
1202 		}
1203 		if (atio->cdb_len > sizeof(io->scsiio.cdb)) {
1204 			printf("%s: WARNING: CDB len %d > ctl_io space %zd\n",
1205 			       __func__, atio->cdb_len, sizeof(io->scsiio.cdb));
1206 		}
1207 		io->scsiio.cdb_len = min(atio->cdb_len, sizeof(io->scsiio.cdb));
1208 		bcopy(atio_cdb_ptr(atio), io->scsiio.cdb, io->scsiio.cdb_len);
1209 
1210 #ifdef CTLFEDEBUG
1211 		printf("%s: %u:%u:%u: tag %04x CDB %02x\n", __func__,
1212 		        io->io_hdr.nexus.initid,
1213 		        io->io_hdr.nexus.targ_port,
1214 		        io->io_hdr.nexus.targ_lun,
1215 			io->scsiio.tag_num, io->scsiio.cdb[0]);
1216 #endif
1217 
1218 		ctl_queue(io);
1219 		return;
1220 	}
1221 	case XPT_CONT_TARGET_IO: {
1222 		int srr = 0;
1223 		uint32_t srr_off = 0;
1224 
1225 		atio = (struct ccb_accept_tio *)done_ccb->ccb_h.ccb_atio;
1226 		io = (union ctl_io *)atio->ccb_h.io_ptr;
1227 
1228 		softc->ctios_returned++;
1229 #ifdef CTLFEDEBUG
1230 		printf("%s: got XPT_CONT_TARGET_IO tag %#x flags %#x\n",
1231 		       __func__, atio->tag_id, done_ccb->ccb_h.flags);
1232 #endif
1233 		/*
1234 		 * Handle SRR case were the data pointer is pushed back hack
1235 		 */
1236 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_MESSAGE_RECV
1237 		    && done_ccb->csio.msg_ptr != NULL
1238 		    && done_ccb->csio.msg_ptr[0] == MSG_EXTENDED
1239 		    && done_ccb->csio.msg_ptr[1] == 5
1240        		    && done_ccb->csio.msg_ptr[2] == 0) {
1241 			srr = 1;
1242 			srr_off =
1243 			    (done_ccb->csio.msg_ptr[3] << 24)
1244 			    | (done_ccb->csio.msg_ptr[4] << 16)
1245 			    | (done_ccb->csio.msg_ptr[5] << 8)
1246 			    | (done_ccb->csio.msg_ptr[6]);
1247 		}
1248 
1249 		if (srr && (io->io_hdr.flags & CTL_FLAG_DMA_INPROG) == 0) {
1250 			/*
1251 			 * If status was being sent, the back end data is now
1252 			 * history. Hack it up and resubmit a new command with
1253 			 * the CDB adjusted. If the SIM does the right thing,
1254 			 * all of the resid math should work.
1255 			 */
1256 			softc->ccbs_freed++;
1257 			xpt_release_ccb(done_ccb);
1258 			if (ctlfe_adjust_cdb(atio, srr_off) == 0) {
1259 				done_ccb = (union ccb *)atio;
1260 				goto resubmit;
1261 			}
1262 			/*
1263 			 * Fall through to doom....
1264 			 */
1265 		} else if (srr) {
1266 			/*
1267 			 * If we have an srr and we're still sending data, we
1268 			 * should be able to adjust offsets and cycle again.
1269 			 */
1270 			io->scsiio.kern_rel_offset =
1271 			    io->scsiio.ext_data_filled = srr_off;
1272 			io->scsiio.ext_data_len = io->scsiio.kern_total_len -
1273 			    io->scsiio.kern_rel_offset;
1274 			softc->ccbs_freed++;
1275 			io->scsiio.io_hdr.status = CTL_STATUS_NONE;
1276 			xpt_release_ccb(done_ccb);
1277 			TAILQ_INSERT_HEAD(&softc->work_queue, &atio->ccb_h,
1278 					  periph_links.tqe);
1279 			xpt_schedule(periph, /*priority*/ 1);
1280 			break;
1281 		}
1282 
1283 		if ((done_ccb->ccb_h.flags & CAM_SEND_STATUS) &&
1284 		    (done_ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP)
1285 			io->io_hdr.flags |= CTL_FLAG_STATUS_SENT;
1286 
1287 		/*
1288 		 * If we were sending status back to the initiator, free up
1289 		 * resources.  If we were doing a datamove, call the
1290 		 * datamove done routine.
1291 		 */
1292 		if ((io->io_hdr.flags & CTL_FLAG_DMA_INPROG) == 0) {
1293 			softc->ccbs_freed++;
1294 			xpt_release_ccb(done_ccb);
1295 			/*
1296 			 * For a wildcard attachment, commands can come in
1297 			 * with a specific target/lun.  Reset the target
1298 			 * and LUN fields back to the wildcard values before
1299 			 * we send them back down to the SIM.  The SIM has
1300 			 * a wildcard LUN enabled, not whatever target/lun
1301 			 * these happened to be.
1302 			 */
1303 			if (softc->flags & CTLFE_LUN_WILDCARD) {
1304 				atio->ccb_h.target_id = CAM_TARGET_WILDCARD;
1305 				atio->ccb_h.target_lun = CAM_LUN_WILDCARD;
1306 			}
1307 			if (periph->flags & CAM_PERIPH_INVALID) {
1308 				ctlfe_free_ccb(periph, (union ccb *)atio);
1309 			} else {
1310 				mtx_unlock(mtx);
1311 				xpt_action((union ccb *)atio);
1312 				return;
1313 			}
1314 		} else {
1315 			struct ctlfe_cmd_info *cmd_info;
1316 			struct ccb_scsiio *csio;
1317 
1318 			csio = &done_ccb->csio;
1319 			cmd_info = PRIV_INFO(io);
1320 
1321 			io->io_hdr.flags &= ~CTL_FLAG_DMA_INPROG;
1322 
1323 			io->scsiio.ext_data_len += csio->dxfer_len;
1324 			if (io->scsiio.ext_data_len >
1325 			    io->scsiio.kern_total_len) {
1326 				xpt_print(periph->path, "%s: tag 0x%04x "
1327 					  "done len %u > total %u sent %u\n",
1328 					  __func__, io->scsiio.tag_num,
1329 					  io->scsiio.ext_data_len,
1330 					  io->scsiio.kern_total_len,
1331 					  io->scsiio.ext_data_filled);
1332 			}
1333 			/*
1334 			 * Translate CAM status to CTL status.  Success
1335 			 * does not change the overall, ctl_io status.  In
1336 			 * that case we just set port_status to 0.  If we
1337 			 * have a failure, though, set a data phase error
1338 			 * for the overall ctl_io.
1339 			 */
1340 			switch (done_ccb->ccb_h.status & CAM_STATUS_MASK) {
1341 			case CAM_REQ_CMP:
1342 				io->io_hdr.port_status = 0;
1343 				break;
1344 			default:
1345 				/*
1346 				 * XXX KDM we probably need to figure out a
1347 				 * standard set of errors that the SIM
1348 				 * drivers should return in the event of a
1349 				 * data transfer failure.  A data phase
1350 				 * error will at least point the user to a
1351 				 * data transfer error of some sort.
1352 				 * Hopefully the SIM printed out some
1353 				 * additional information to give the user
1354 				 * a clue what happened.
1355 				 */
1356 				io->io_hdr.port_status = 0xbad1;
1357 				ctl_set_data_phase_error(&io->scsiio);
1358 				/*
1359 				 * XXX KDM figure out residual.
1360 				 */
1361 				break;
1362 			}
1363 			/*
1364 			 * If we had to break this S/G list into multiple
1365 			 * pieces, figure out where we are in the list, and
1366 			 * continue sending pieces if necessary.
1367 			 */
1368 			if ((cmd_info->flags & CTLFE_CMD_PIECEWISE)
1369 			 && (io->io_hdr.port_status == 0)) {
1370 				ccb_flags flags;
1371 				uint8_t scsi_status;
1372 				uint8_t *data_ptr;
1373 				uint32_t dxfer_len;
1374 
1375 				flags = atio->ccb_h.flags &
1376 					(CAM_DIS_DISCONNECT|
1377 					 CAM_TAG_ACTION_VALID);
1378 
1379 				ctlfedata(softc, io, &flags, &data_ptr,
1380 				    &dxfer_len, &csio->sglist_cnt);
1381 
1382 				scsi_status = 0;
1383 
1384 				if (((flags & CAM_SEND_STATUS) == 0)
1385 				 && (dxfer_len == 0)) {
1386 					printf("%s: tag %04x no status or "
1387 					       "len cdb = %02x\n", __func__,
1388 					       atio->tag_id,
1389 					       atio_cdb_ptr(atio)[0]);
1390 					printf("%s: tag %04x io status %#x\n",
1391 					       __func__, atio->tag_id,
1392 					       io->io_hdr.status);
1393 				}
1394 
1395 				cam_fill_ctio(csio,
1396 					      /*retries*/ 2,
1397 					      ctlfedone,
1398 					      flags,
1399 					      (flags & CAM_TAG_ACTION_VALID) ?
1400 					       MSG_SIMPLE_Q_TAG : 0,
1401 					      atio->tag_id,
1402 					      atio->init_id,
1403 					      scsi_status,
1404 					      /*data_ptr*/ data_ptr,
1405 					      /*dxfer_len*/ dxfer_len,
1406 					      /*timeout*/ 5 * 1000);
1407 
1408 				csio->ccb_h.flags |= CAM_UNLOCKED;
1409 				csio->resid = 0;
1410 				csio->ccb_h.ccb_atio = atio;
1411 				io->io_hdr.flags |= CTL_FLAG_DMA_INPROG;
1412 				softc->ctios_sent++;
1413 				mtx_unlock(mtx);
1414 				xpt_action((union ccb *)csio);
1415 			} else {
1416 				/*
1417 				 * Release the CTIO.  The ATIO will be sent back
1418 				 * down to the SIM once we send status.
1419 				 */
1420 				softc->ccbs_freed++;
1421 				xpt_release_ccb(done_ccb);
1422 				mtx_unlock(mtx);
1423 
1424 				/* Call the backend move done callback */
1425 				io->scsiio.be_move_done(io);
1426 			}
1427 			return;
1428 		}
1429 		break;
1430 	}
1431 	case XPT_IMMEDIATE_NOTIFY: {
1432 		union ctl_io *io;
1433 		struct ccb_immediate_notify *inot;
1434 		cam_status status;
1435 		int send_ctl_io;
1436 
1437 		inot = &done_ccb->cin1;
1438 		printf("%s: got XPT_IMMEDIATE_NOTIFY status %#x tag %#x "
1439 		       "seq %#x\n", __func__, inot->ccb_h.status,
1440 		       inot->tag_id, inot->seq_id);
1441 
1442 		io = done_ccb->ccb_h.io_ptr;
1443 		ctl_zero_io(io);
1444 
1445 		send_ctl_io = 1;
1446 
1447 		io->io_hdr.io_type = CTL_IO_TASK;
1448 		PRIV_CCB(io) = done_ccb;
1449 		inot->ccb_h.io_ptr = io;
1450 		io->io_hdr.nexus.initid = inot->initiator_id;
1451 		io->io_hdr.nexus.targ_port = bus_softc->port.targ_port;
1452 		if (bus_softc->hba_misc & PIM_EXTLUNS) {
1453 			io->io_hdr.nexus.targ_lun = ctl_decode_lun(
1454 			    CAM_EXTLUN_BYTE_SWIZZLE(inot->ccb_h.target_lun));
1455 		} else {
1456 			io->io_hdr.nexus.targ_lun = inot->ccb_h.target_lun;
1457 		}
1458 		/* XXX KDM should this be the tag_id? */
1459 		io->taskio.tag_num = inot->seq_id;
1460 
1461 		status = inot->ccb_h.status & CAM_STATUS_MASK;
1462 		switch (status) {
1463 		case CAM_SCSI_BUS_RESET:
1464 			io->taskio.task_action = CTL_TASK_BUS_RESET;
1465 			break;
1466 		case CAM_BDR_SENT:
1467 			io->taskio.task_action = CTL_TASK_TARGET_RESET;
1468 			break;
1469 		case CAM_MESSAGE_RECV:
1470 			switch (inot->arg) {
1471 			case MSG_ABORT_TASK_SET:
1472 				io->taskio.task_action =
1473 				    CTL_TASK_ABORT_TASK_SET;
1474 				break;
1475 			case MSG_TARGET_RESET:
1476 				io->taskio.task_action = CTL_TASK_TARGET_RESET;
1477 				break;
1478 			case MSG_ABORT_TASK:
1479 				io->taskio.task_action = CTL_TASK_ABORT_TASK;
1480 				break;
1481 			case MSG_LOGICAL_UNIT_RESET:
1482 				io->taskio.task_action = CTL_TASK_LUN_RESET;
1483 				break;
1484 			case MSG_CLEAR_TASK_SET:
1485 				io->taskio.task_action =
1486 				    CTL_TASK_CLEAR_TASK_SET;
1487 				break;
1488 			case MSG_CLEAR_ACA:
1489 				io->taskio.task_action = CTL_TASK_CLEAR_ACA;
1490 				break;
1491 			case MSG_QUERY_TASK:
1492 				io->taskio.task_action = CTL_TASK_QUERY_TASK;
1493 				break;
1494 			case MSG_QUERY_TASK_SET:
1495 				io->taskio.task_action =
1496 				    CTL_TASK_QUERY_TASK_SET;
1497 				break;
1498 			case MSG_QUERY_ASYNC_EVENT:
1499 				io->taskio.task_action =
1500 				    CTL_TASK_QUERY_ASYNC_EVENT;
1501 				break;
1502 			case MSG_NOOP:
1503 				send_ctl_io = 0;
1504 				break;
1505 			default:
1506 				xpt_print(periph->path,
1507 					  "%s: unsupported message 0x%x\n",
1508 					  __func__, inot->arg);
1509 				send_ctl_io = 0;
1510 				break;
1511 			}
1512 			break;
1513 		case CAM_REQ_ABORTED:
1514 			/*
1515 			 * This request was sent back by the driver.
1516 			 * XXX KDM what do we do here?
1517 			 */
1518 			send_ctl_io = 0;
1519 			break;
1520 		case CAM_REQ_INVALID:
1521 		case CAM_PROVIDE_FAIL:
1522 		default:
1523 			/*
1524 			 * We should only get here if we're talking
1525 			 * to a talking to a SIM that is target
1526 			 * capable but supports the old API.  In
1527 			 * that case, we need to just free the CCB.
1528 			 * If we actually send a notify acknowledge,
1529 			 * it will send that back with an error as
1530 			 * well.
1531 			 */
1532 
1533 			if ((status != CAM_REQ_INVALID)
1534 			 && (status != CAM_PROVIDE_FAIL))
1535 				xpt_print(periph->path,
1536 					  "%s: unsupported CAM status 0x%x\n",
1537 					  __func__, status);
1538 
1539 			ctlfe_free_ccb(periph, done_ccb);
1540 
1541 			goto out;
1542 		}
1543 		if (send_ctl_io != 0) {
1544 			ctl_queue(io);
1545 		} else {
1546 			done_ccb->ccb_h.status = CAM_REQ_INPROG;
1547 			done_ccb->ccb_h.func_code = XPT_NOTIFY_ACKNOWLEDGE;
1548 			xpt_action(done_ccb);
1549 		}
1550 		break;
1551 	}
1552 	case XPT_NOTIFY_ACKNOWLEDGE:
1553 		/*
1554 		 * Queue this back down to the SIM as an immediate notify.
1555 		 */
1556 		done_ccb->ccb_h.status = CAM_REQ_INPROG;
1557 		done_ccb->ccb_h.func_code = XPT_IMMEDIATE_NOTIFY;
1558 		xpt_action(done_ccb);
1559 		break;
1560 	case XPT_SET_SIM_KNOB:
1561 	case XPT_GET_SIM_KNOB:
1562 	case XPT_GET_SIM_KNOB_OLD:
1563 		break;
1564 	default:
1565 		panic("%s: unexpected CCB type %#x", __func__,
1566 		      done_ccb->ccb_h.func_code);
1567 		break;
1568 	}
1569 
1570 out:
1571 	mtx_unlock(mtx);
1572 }
1573 
1574 static void
1575 ctlfe_onoffline(void *arg, int online)
1576 {
1577 	struct ctlfe_softc *bus_softc;
1578 	union ccb *ccb;
1579 	cam_status status;
1580 	struct cam_path *path;
1581 	int set_wwnn;
1582 
1583 	bus_softc = (struct ctlfe_softc *)arg;
1584 
1585 	set_wwnn = 0;
1586 
1587 	status = xpt_create_path(&path, /*periph*/ NULL, bus_softc->path_id,
1588 		CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
1589 	if (status != CAM_REQ_CMP) {
1590 		printf("%s: unable to create path!\n", __func__);
1591 		return;
1592 	}
1593 	ccb = xpt_alloc_ccb();
1594 	xpt_setup_ccb(&ccb->ccb_h, path, CAM_PRIORITY_NONE);
1595 	ccb->ccb_h.func_code = XPT_GET_SIM_KNOB;
1596 	xpt_action(ccb);
1597 
1598 	/*
1599 	 * Copan WWN format:
1600 	 *
1601 	 * Bits 63-60:	0x5		NAA, IEEE registered name
1602 	 * Bits 59-36:	0x000ED5	IEEE Company name assigned to Copan
1603 	 * Bits 35-12:			Copan SSN (Sequential Serial Number)
1604 	 * Bits 11-8:			Type of port:
1605 	 *					1 == N-Port
1606 	 *					2 == F-Port
1607 	 *					3 == NL-Port
1608 	 * Bits 7-0:			0 == Node Name, >0 == Port Number
1609 	 */
1610 	if (online != 0) {
1611 		if ((ccb->knob.xport_specific.valid & KNOB_VALID_ADDRESS) != 0){
1612 #ifdef RANDOM_WWNN
1613 			uint64_t random_bits;
1614 #endif
1615 
1616 			printf("%s: %s current WWNN %#jx\n", __func__,
1617 			       bus_softc->port_name,
1618 			       ccb->knob.xport_specific.fc.wwnn);
1619 			printf("%s: %s current WWPN %#jx\n", __func__,
1620 			       bus_softc->port_name,
1621 			       ccb->knob.xport_specific.fc.wwpn);
1622 
1623 #ifdef RANDOM_WWNN
1624 			arc4rand(&random_bits, sizeof(random_bits), 0);
1625 #endif
1626 
1627 			/*
1628 			 * XXX KDM this is a bit of a kludge for now.  We
1629 			 * take the current WWNN/WWPN from the card, and
1630 			 * replace the company identifier and the NL-Port
1631 			 * indicator and the port number (for the WWPN).
1632 			 * This should be replaced later with ddb_GetWWNN,
1633 			 * or possibly a more centralized scheme.  (It
1634 			 * would be nice to have the WWNN/WWPN for each
1635 			 * port stored in the ctl_port structure.)
1636 			 */
1637 #ifdef RANDOM_WWNN
1638 			ccb->knob.xport_specific.fc.wwnn =
1639 				(random_bits &
1640 				0x0000000fffffff00ULL) |
1641 				/* Company ID */ 0x5000ED5000000000ULL |
1642 				/* NL-Port */    0x0300;
1643 			ccb->knob.xport_specific.fc.wwpn =
1644 				(random_bits &
1645 				0x0000000fffffff00ULL) |
1646 				/* Company ID */ 0x5000ED5000000000ULL |
1647 				/* NL-Port */    0x3000 |
1648 				/* Port Num */ (bus_softc->port.targ_port & 0xff);
1649 
1650 			/*
1651 			 * This is a bit of an API break/reversal, but if
1652 			 * we're doing the random WWNN that's a little
1653 			 * different anyway.  So record what we're actually
1654 			 * using with the frontend code so it's reported
1655 			 * accurately.
1656 			 */
1657 			ctl_port_set_wwns(&bus_softc->port,
1658 			    true, ccb->knob.xport_specific.fc.wwnn,
1659 			    true, ccb->knob.xport_specific.fc.wwpn);
1660 			set_wwnn = 1;
1661 #else /* RANDOM_WWNN */
1662 			/*
1663 			 * If the user has specified a WWNN/WWPN, send them
1664 			 * down to the SIM.  Otherwise, record what the SIM
1665 			 * has reported.
1666 			 */
1667 			if (bus_softc->port.wwnn != 0 && bus_softc->port.wwnn
1668 			    != ccb->knob.xport_specific.fc.wwnn) {
1669 				ccb->knob.xport_specific.fc.wwnn =
1670 				    bus_softc->port.wwnn;
1671 				set_wwnn = 1;
1672 			} else {
1673 				ctl_port_set_wwns(&bus_softc->port,
1674 				    true, ccb->knob.xport_specific.fc.wwnn,
1675 				    false, 0);
1676 			}
1677 			if (bus_softc->port.wwpn != 0 && bus_softc->port.wwpn
1678 			     != ccb->knob.xport_specific.fc.wwpn) {
1679 				ccb->knob.xport_specific.fc.wwpn =
1680 				    bus_softc->port.wwpn;
1681 				set_wwnn = 1;
1682 			} else {
1683 				ctl_port_set_wwns(&bus_softc->port,
1684 				    false, 0,
1685 				    true, ccb->knob.xport_specific.fc.wwpn);
1686 			}
1687 #endif /* RANDOM_WWNN */
1688 
1689 
1690 			if (set_wwnn != 0) {
1691 				printf("%s: %s new WWNN %#jx\n", __func__,
1692 				       bus_softc->port_name,
1693 				ccb->knob.xport_specific.fc.wwnn);
1694 				printf("%s: %s new WWPN %#jx\n", __func__,
1695 				       bus_softc->port_name,
1696 				       ccb->knob.xport_specific.fc.wwpn);
1697 			}
1698 		} else {
1699 			printf("%s: %s has no valid WWNN/WWPN\n", __func__,
1700 			       bus_softc->port_name);
1701 		}
1702 	}
1703 	ccb->ccb_h.func_code = XPT_SET_SIM_KNOB;
1704 	ccb->knob.xport_specific.valid = KNOB_VALID_ROLE;
1705 	if (set_wwnn != 0)
1706 		ccb->knob.xport_specific.valid |= KNOB_VALID_ADDRESS;
1707 
1708 	if (online != 0)
1709 		ccb->knob.xport_specific.fc.role |= KNOB_ROLE_TARGET;
1710 	else
1711 		ccb->knob.xport_specific.fc.role &= ~KNOB_ROLE_TARGET;
1712 
1713 	xpt_action(ccb);
1714 
1715 	if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1716 		printf("%s: SIM %s (path id %d) target %s failed with "
1717 		       "status %#x\n",
1718 		       __func__, bus_softc->port_name, bus_softc->path_id,
1719 		       (online != 0) ? "enable" : "disable",
1720 		       ccb->ccb_h.status);
1721 	} else {
1722 		printf("%s: SIM %s (path id %d) target %s succeeded\n",
1723 		       __func__, bus_softc->port_name, bus_softc->path_id,
1724 		       (online != 0) ? "enable" : "disable");
1725 	}
1726 
1727 	xpt_free_path(path);
1728 	xpt_free_ccb(ccb);
1729 }
1730 
1731 static void
1732 ctlfe_online(void *arg)
1733 {
1734 	struct ctlfe_softc *bus_softc;
1735 	struct cam_path *path;
1736 	cam_status status;
1737 	struct ctlfe_lun_softc *lun_softc;
1738 	struct cam_periph *periph;
1739 
1740 	bus_softc = (struct ctlfe_softc *)arg;
1741 
1742 	/*
1743 	 * Create the wildcard LUN before bringing the port online.
1744 	 */
1745 	status = xpt_create_path(&path, /*periph*/ NULL,
1746 				 bus_softc->path_id, CAM_TARGET_WILDCARD,
1747 				 CAM_LUN_WILDCARD);
1748 	if (status != CAM_REQ_CMP) {
1749 		printf("%s: unable to create path for wildcard periph\n",
1750 				__func__);
1751 		return;
1752 	}
1753 
1754 	lun_softc = malloc(sizeof(*lun_softc), M_CTLFE, M_WAITOK | M_ZERO);
1755 
1756 	xpt_path_lock(path);
1757 	periph = cam_periph_find(path, "ctl");
1758 	if (periph != NULL) {
1759 		/* We've already got a periph, no need to alloc a new one. */
1760 		xpt_path_unlock(path);
1761 		xpt_free_path(path);
1762 		free(lun_softc, M_CTLFE);
1763 		return;
1764 	}
1765 	lun_softc->parent_softc = bus_softc;
1766 	lun_softc->flags |= CTLFE_LUN_WILDCARD;
1767 
1768 	status = cam_periph_alloc(ctlferegister,
1769 				  ctlfeoninvalidate,
1770 				  ctlfecleanup,
1771 				  ctlfestart,
1772 				  "ctl",
1773 				  CAM_PERIPH_BIO,
1774 				  path,
1775 				  ctlfeasync,
1776 				  0,
1777 				  lun_softc);
1778 
1779 	if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1780 		const struct cam_status_entry *entry;
1781 
1782 		entry = cam_fetch_status_entry(status);
1783 		printf("%s: CAM error %s (%#x) returned from "
1784 		       "cam_periph_alloc()\n", __func__, (entry != NULL) ?
1785 		       entry->status_text : "Unknown", status);
1786 		free(lun_softc, M_CTLFE);
1787 	}
1788 
1789 	xpt_path_unlock(path);
1790 	ctlfe_onoffline(arg, /*online*/ 1);
1791 	xpt_free_path(path);
1792 }
1793 
1794 static void
1795 ctlfe_offline(void *arg)
1796 {
1797 	struct ctlfe_softc *bus_softc;
1798 	struct cam_path *path;
1799 	cam_status status;
1800 	struct cam_periph *periph;
1801 
1802 	bus_softc = (struct ctlfe_softc *)arg;
1803 
1804 	ctlfe_onoffline(arg, /*online*/ 0);
1805 
1806 	/*
1807 	 * Disable the wildcard LUN for this port now that we have taken
1808 	 * the port offline.
1809 	 */
1810 	status = xpt_create_path(&path, /*periph*/ NULL,
1811 				 bus_softc->path_id, CAM_TARGET_WILDCARD,
1812 				 CAM_LUN_WILDCARD);
1813 	if (status != CAM_REQ_CMP) {
1814 		printf("%s: unable to create path for wildcard periph\n",
1815 		       __func__);
1816 		return;
1817 	}
1818 	xpt_path_lock(path);
1819 	if ((periph = cam_periph_find(path, "ctl")) != NULL)
1820 		cam_periph_invalidate(periph);
1821 	xpt_path_unlock(path);
1822 	xpt_free_path(path);
1823 }
1824 
1825 /*
1826  * This will get called to enable a LUN on every bus that is attached to
1827  * CTL.  So we only need to create a path/periph for this particular bus.
1828  */
1829 static int
1830 ctlfe_lun_enable(void *arg, int lun_id)
1831 {
1832 	struct ctlfe_softc *bus_softc;
1833 	struct ctlfe_lun_softc *softc;
1834 	struct cam_path *path;
1835 	struct cam_periph *periph;
1836 	cam_status status;
1837 
1838 	bus_softc = (struct ctlfe_softc *)arg;
1839 	if (bus_softc->hba_misc & PIM_EXTLUNS)
1840 		lun_id = CAM_EXTLUN_BYTE_SWIZZLE(ctl_encode_lun(lun_id));
1841 
1842 	status = xpt_create_path(&path, /*periph*/ NULL,
1843 	    bus_softc->path_id, bus_softc->target_id, lun_id);
1844 	/* XXX KDM need some way to return status to CTL here? */
1845 	if (status != CAM_REQ_CMP) {
1846 		printf("%s: could not create path, status %#x\n", __func__,
1847 		       status);
1848 		return (1);
1849 	}
1850 
1851 	softc = malloc(sizeof(*softc), M_CTLFE, M_WAITOK | M_ZERO);
1852 	xpt_path_lock(path);
1853 	periph = cam_periph_find(path, "ctl");
1854 	if (periph != NULL) {
1855 		/* We've already got a periph, no need to alloc a new one. */
1856 		xpt_path_unlock(path);
1857 		xpt_free_path(path);
1858 		free(softc, M_CTLFE);
1859 		return (0);
1860 	}
1861 	softc->parent_softc = bus_softc;
1862 
1863 	status = cam_periph_alloc(ctlferegister,
1864 				  ctlfeoninvalidate,
1865 				  ctlfecleanup,
1866 				  ctlfestart,
1867 				  "ctl",
1868 				  CAM_PERIPH_BIO,
1869 				  path,
1870 				  ctlfeasync,
1871 				  0,
1872 				  softc);
1873 
1874 	if ((status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1875 		const struct cam_status_entry *entry;
1876 
1877 		entry = cam_fetch_status_entry(status);
1878 		printf("%s: CAM error %s (%#x) returned from "
1879 		       "cam_periph_alloc()\n", __func__, (entry != NULL) ?
1880 		       entry->status_text : "Unknown", status);
1881 		free(softc, M_CTLFE);
1882 	}
1883 
1884 	xpt_path_unlock(path);
1885 	xpt_free_path(path);
1886 	return (0);
1887 }
1888 
1889 /*
1890  * This will get called when the user removes a LUN to disable that LUN
1891  * on every bus that is attached to CTL.
1892  */
1893 static int
1894 ctlfe_lun_disable(void *arg, int lun_id)
1895 {
1896 	struct ctlfe_softc *softc;
1897 	struct ctlfe_lun_softc *lun_softc;
1898 
1899 	softc = (struct ctlfe_softc *)arg;
1900 	if (softc->hba_misc & PIM_EXTLUNS)
1901 		lun_id = CAM_EXTLUN_BYTE_SWIZZLE(ctl_encode_lun(lun_id));
1902 
1903 	mtx_lock(&softc->lun_softc_mtx);
1904 	STAILQ_FOREACH(lun_softc, &softc->lun_softc_list, links) {
1905 		struct cam_path *path;
1906 
1907 		path = lun_softc->periph->path;
1908 
1909 		if ((xpt_path_target_id(path) == softc->target_id)
1910 		 && (xpt_path_lun_id(path) == lun_id)) {
1911 			break;
1912 		}
1913 	}
1914 	if (lun_softc == NULL) {
1915 		mtx_unlock(&softc->lun_softc_mtx);
1916 		printf("%s: can't find lun %d\n", __func__, lun_id);
1917 		return (1);
1918 	}
1919 	cam_periph_acquire(lun_softc->periph);
1920 	mtx_unlock(&softc->lun_softc_mtx);
1921 
1922 	cam_periph_lock(lun_softc->periph);
1923 	cam_periph_invalidate(lun_softc->periph);
1924 	cam_periph_unlock(lun_softc->periph);
1925 	cam_periph_release(lun_softc->periph);
1926 	return (0);
1927 }
1928 
1929 static void
1930 ctlfe_dump_sim(struct cam_sim *sim)
1931 {
1932 
1933 	printf("%s%d: max tagged openings: %d, max dev openings: %d\n",
1934 	       sim->sim_name, sim->unit_number,
1935 	       sim->max_tagged_dev_openings, sim->max_dev_openings);
1936 }
1937 
1938 /*
1939  * Assumes that the SIM lock is held.
1940  */
1941 static void
1942 ctlfe_dump_queue(struct ctlfe_lun_softc *softc)
1943 {
1944 	struct ccb_hdr *hdr;
1945 	struct cam_periph *periph;
1946 	int num_items;
1947 
1948 	periph = softc->periph;
1949 	num_items = 0;
1950 
1951 	TAILQ_FOREACH(hdr, &softc->work_queue, periph_links.tqe) {
1952 		union ctl_io *io = hdr->io_ptr;
1953 
1954 		num_items++;
1955 
1956 		/*
1957 		 * Only regular SCSI I/O is put on the work
1958 		 * queue, so we can print sense here.  There may be no
1959 		 * sense if it's no the queue for a DMA, but this serves to
1960 		 * print out the CCB as well.
1961 		 *
1962 		 * XXX KDM switch this over to scsi_sense_print() when
1963 		 * CTL is merged in with CAM.
1964 		 */
1965 		ctl_io_error_print(io, NULL);
1966 
1967 		/*
1968 		 * Print DMA status if we are DMA_QUEUED.
1969 		 */
1970 		if (io->io_hdr.flags & CTL_FLAG_DMA_QUEUED) {
1971 			xpt_print(periph->path,
1972 			    "Total %u, Current %u, Resid %u\n",
1973 			    io->scsiio.kern_total_len,
1974 			    io->scsiio.kern_data_len,
1975 			    io->scsiio.kern_data_resid);
1976 		}
1977 	}
1978 
1979 	xpt_print(periph->path, "%d requests total waiting for CCBs\n",
1980 		  num_items);
1981 	xpt_print(periph->path, "%ju CCBs outstanding (%ju allocated, %ju "
1982 		  "freed)\n", (uintmax_t)(softc->ccbs_alloced -
1983 		  softc->ccbs_freed), (uintmax_t)softc->ccbs_alloced,
1984 		  (uintmax_t)softc->ccbs_freed);
1985 	xpt_print(periph->path, "%ju CTIOs outstanding (%ju sent, %ju "
1986 		  "returned\n", (uintmax_t)(softc->ctios_sent -
1987 		  softc->ctios_returned), softc->ctios_sent,
1988 		  softc->ctios_returned);
1989 }
1990 
1991 /*
1992  * Datamove/done routine called by CTL.  Put ourselves on the queue to
1993  * receive a CCB from CAM so we can queue the continue I/O request down
1994  * to the adapter.
1995  */
1996 static void
1997 ctlfe_datamove(union ctl_io *io)
1998 {
1999 	union ccb *ccb;
2000 	struct cam_periph *periph;
2001 	struct ctlfe_lun_softc *softc;
2002 
2003 	KASSERT(io->io_hdr.io_type == CTL_IO_SCSI,
2004 	    ("Unexpected io_type (%d) in ctlfe_datamove", io->io_hdr.io_type));
2005 
2006 	ccb = PRIV_CCB(io);
2007 	periph = xpt_path_periph(ccb->ccb_h.path);
2008 	cam_periph_lock(periph);
2009 	softc = (struct ctlfe_lun_softc *)periph->softc;
2010 	io->io_hdr.flags |= CTL_FLAG_DMA_QUEUED;
2011 	if ((io->io_hdr.status & CTL_STATUS_MASK) != CTL_STATUS_NONE)
2012 		io->io_hdr.flags |= CTL_FLAG_STATUS_QUEUED;
2013 	TAILQ_INSERT_TAIL(&softc->work_queue, &ccb->ccb_h,
2014 			  periph_links.tqe);
2015 	xpt_schedule(periph, /*priority*/ 1);
2016 	cam_periph_unlock(periph);
2017 }
2018 
2019 static void
2020 ctlfe_done(union ctl_io *io)
2021 {
2022 	union ccb *ccb;
2023 	struct cam_periph *periph;
2024 	struct ctlfe_lun_softc *softc;
2025 
2026 	ccb = PRIV_CCB(io);
2027 	periph = xpt_path_periph(ccb->ccb_h.path);
2028 	cam_periph_lock(periph);
2029 	softc = (struct ctlfe_lun_softc *)periph->softc;
2030 
2031 	if (io->io_hdr.io_type == CTL_IO_TASK) {
2032 		/*
2033 		 * Task management commands don't require any further
2034 		 * communication back to the adapter.  Requeue the CCB
2035 		 * to the adapter, and free the CTL I/O.
2036 		 */
2037 		xpt_print(ccb->ccb_h.path, "%s: returning task I/O "
2038 			  "tag %#x seq %#x\n", __func__,
2039 			  ccb->cin1.tag_id, ccb->cin1.seq_id);
2040 		/*
2041 		 * Send the notify acknowledge down to the SIM, to let it
2042 		 * know we processed the task management command.
2043 		 */
2044 		ccb->ccb_h.status = CAM_REQ_INPROG;
2045 		ccb->ccb_h.func_code = XPT_NOTIFY_ACKNOWLEDGE;
2046 		switch (io->taskio.task_status) {
2047 		case CTL_TASK_FUNCTION_COMPLETE:
2048 			ccb->cna2.arg = CAM_RSP_TMF_COMPLETE;
2049 			break;
2050 		case CTL_TASK_FUNCTION_SUCCEEDED:
2051 			ccb->cna2.arg = CAM_RSP_TMF_SUCCEEDED;
2052 			ccb->ccb_h.flags |= CAM_SEND_STATUS;
2053 			break;
2054 		case CTL_TASK_FUNCTION_REJECTED:
2055 			ccb->cna2.arg = CAM_RSP_TMF_REJECTED;
2056 			ccb->ccb_h.flags |= CAM_SEND_STATUS;
2057 			break;
2058 		case CTL_TASK_LUN_DOES_NOT_EXIST:
2059 			ccb->cna2.arg = CAM_RSP_TMF_INCORRECT_LUN;
2060 			ccb->ccb_h.flags |= CAM_SEND_STATUS;
2061 			break;
2062 		case CTL_TASK_FUNCTION_NOT_SUPPORTED:
2063 			ccb->cna2.arg = CAM_RSP_TMF_FAILED;
2064 			ccb->ccb_h.flags |= CAM_SEND_STATUS;
2065 			break;
2066 		}
2067 		ccb->cna2.arg |= scsi_3btoul(io->taskio.task_resp) << 8;
2068 		xpt_action(ccb);
2069 	} else if (io->io_hdr.flags & CTL_FLAG_STATUS_SENT) {
2070 		if (softc->flags & CTLFE_LUN_WILDCARD) {
2071 			ccb->ccb_h.target_id = CAM_TARGET_WILDCARD;
2072 			ccb->ccb_h.target_lun = CAM_LUN_WILDCARD;
2073 		}
2074 		if (periph->flags & CAM_PERIPH_INVALID) {
2075 			ctlfe_free_ccb(periph, ccb);
2076 		} else {
2077 			cam_periph_unlock(periph);
2078 			xpt_action(ccb);
2079 			return;
2080 		}
2081 	} else {
2082 		io->io_hdr.flags |= CTL_FLAG_STATUS_QUEUED;
2083 		TAILQ_INSERT_TAIL(&softc->work_queue, &ccb->ccb_h,
2084 				  periph_links.tqe);
2085 		xpt_schedule(periph, /*priority*/ 1);
2086 	}
2087 
2088 	cam_periph_unlock(periph);
2089 }
2090 
2091 static void
2092 ctlfe_dump(void)
2093 {
2094 	struct ctlfe_softc *bus_softc;
2095 	struct ctlfe_lun_softc *lun_softc;
2096 
2097 	STAILQ_FOREACH(bus_softc, &ctlfe_softc_list, links) {
2098 		ctlfe_dump_sim(bus_softc->sim);
2099 		STAILQ_FOREACH(lun_softc, &bus_softc->lun_softc_list, links)
2100 			ctlfe_dump_queue(lun_softc);
2101 	}
2102 }
2103