xref: /freebsd/sys/cam/scsi/scsi_cd.c (revision 77b7cdf1999ee965ad494fddd184b18f532ac91a)
1 /*
2  * Copyright (c) 1997 Justin T. Gibbs.
3  * Copyright (c) 1997, 1998, 1999, 2000, 2001, 2002, 2003 Kenneth D. Merry.
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, immediately at the beginning of the file.
12  * 2. The name of the author may not be used to endorse or promote products
13  *    derived from this software without specific prior written permission.
14  *
15  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
16  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
17  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
18  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
19  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
20  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
21  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
22  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
23  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
24  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
25  * SUCH DAMAGE.
26  *
27  * $FreeBSD$
28  */
29 /*
30  * Portions of this driver taken from the original FreeBSD cd driver.
31  * Written by Julian Elischer (julian@tfs.com)
32  * for TRW Financial Systems for use under the MACH(2.5) operating system.
33  *
34  * TRW Financial Systems, in accordance with their agreement with Carnegie
35  * Mellon University, makes this software available to CMU to distribute
36  * or use in any manner that they see fit as long as this message is kept with
37  * the software. For this reason TFS also grants any other persons or
38  * organisations permission to use or modify this software.
39  *
40  * TFS supplies this software to be publicly redistributed
41  * on the understanding that TFS is not responsible for the correct
42  * functioning of this software in any circumstances.
43  *
44  * Ported to run under 386BSD by Julian Elischer (julian@tfs.com) Sept 1992
45  *
46  *      from: cd.c,v 1.83 1997/05/04 15:24:22 joerg Exp $
47  */
48 
49 #include "opt_cd.h"
50 
51 #include <sys/param.h>
52 #include <sys/systm.h>
53 #include <sys/kernel.h>
54 #include <sys/bio.h>
55 #include <sys/conf.h>
56 #include <sys/disk.h>
57 #include <sys/malloc.h>
58 #include <sys/cdio.h>
59 #include <sys/cdrio.h>
60 #include <sys/dvdio.h>
61 #include <sys/devicestat.h>
62 #include <sys/sysctl.h>
63 
64 #include <cam/cam.h>
65 #include <cam/cam_ccb.h>
66 #include <cam/cam_periph.h>
67 #include <cam/cam_xpt_periph.h>
68 #include <cam/cam_queue.h>
69 
70 #include <cam/scsi/scsi_message.h>
71 #include <cam/scsi/scsi_da.h>
72 #include <cam/scsi/scsi_cd.h>
73 
74 #define LEADOUT         0xaa            /* leadout toc entry */
75 
76 struct cd_params {
77 	u_int32_t blksize;
78 	u_long    disksize;
79 };
80 
81 typedef enum {
82 	CD_Q_NONE		= 0x00,
83 	CD_Q_NO_TOUCH		= 0x01,
84 	CD_Q_BCD_TRACKS		= 0x02,
85 	CD_Q_NO_CHANGER		= 0x04,
86 	CD_Q_CHANGER		= 0x08,
87 	CD_Q_10_BYTE_ONLY	= 0x10
88 } cd_quirks;
89 
90 typedef enum {
91 	CD_FLAG_INVALID		= 0x001,
92 	CD_FLAG_NEW_DISC	= 0x002,
93 	CD_FLAG_DISC_LOCKED	= 0x004,
94 	CD_FLAG_DISC_REMOVABLE	= 0x008,
95 	CD_FLAG_TAGGED_QUEUING	= 0x010,
96 	CD_FLAG_CHANGER		= 0x040,
97 	CD_FLAG_ACTIVE		= 0x080,
98 	CD_FLAG_SCHED_ON_COMP	= 0x100,
99 	CD_FLAG_RETRY_UA	= 0x200,
100 	CD_FLAG_VALID_MEDIA	= 0x400,
101 	CD_FLAG_VALID_TOC	= 0x800
102 } cd_flags;
103 
104 typedef enum {
105 	CD_CCB_PROBE		= 0x01,
106 	CD_CCB_BUFFER_IO	= 0x02,
107 	CD_CCB_WAITING		= 0x03,
108 	CD_CCB_TYPE_MASK	= 0x0F,
109 	CD_CCB_RETRY_UA		= 0x10
110 } cd_ccb_state;
111 
112 typedef enum {
113 	CHANGER_TIMEOUT_SCHED		= 0x01,
114 	CHANGER_SHORT_TMOUT_SCHED	= 0x02,
115 	CHANGER_MANUAL_CALL		= 0x04,
116 	CHANGER_NEED_TIMEOUT		= 0x08
117 } cd_changer_flags;
118 
119 #define ccb_state ppriv_field0
120 #define ccb_bp ppriv_ptr1
121 
122 struct cd_tocdata {
123 	struct ioc_toc_header header;
124 	struct cd_toc_entry entries[100];
125 };
126 
127 struct cd_toc_single {
128 	struct ioc_toc_header header;
129 	struct cd_toc_entry entry;
130 };
131 
132 typedef enum {
133 	CD_STATE_PROBE,
134 	CD_STATE_NORMAL
135 } cd_state;
136 
137 struct cd_softc {
138 	cam_pinfo		pinfo;
139 	cd_state		state;
140 	volatile cd_flags	flags;
141 	struct bio_queue_head	bio_queue;
142 	LIST_HEAD(, ccb_hdr)	pending_ccbs;
143 	struct cd_params	params;
144 	union ccb		saved_ccb;
145 	cd_quirks		quirks;
146 	struct devstat		*device_stats;
147 	STAILQ_ENTRY(cd_softc)	changer_links;
148 	struct cdchanger	*changer;
149 	int			bufs_left;
150 	struct cam_periph	*periph;
151 	dev_t			dev;
152 	eventhandler_tag	clonetag;
153 	int			minimum_command_size;
154 	int			outstanding_cmds;
155 	struct sysctl_ctx_list	sysctl_ctx;
156 	struct sysctl_oid	*sysctl_tree;
157 	STAILQ_HEAD(, cd_mode_params)	mode_queue;
158 	struct cd_tocdata	toc;
159 };
160 
161 struct cd_page_sizes {
162 	int page;
163 	int page_size;
164 };
165 
166 static struct cd_page_sizes cd_page_size_table[] =
167 {
168 	{ AUDIO_PAGE, sizeof(struct cd_audio_page)}
169 };
170 
171 struct cd_quirk_entry {
172 	struct scsi_inquiry_pattern inq_pat;
173 	cd_quirks quirks;
174 };
175 
176 /*
177  * The changer quirk entries aren't strictly necessary.  Basically, what
178  * they do is tell cdregister() up front that a device is a changer.
179  * Otherwise, it will figure that fact out once it sees a LUN on the device
180  * that is greater than 0.  If it is known up front that a device is a changer,
181  * all I/O to the device will go through the changer scheduling routines, as
182  * opposed to the "normal" CD code.
183  *
184  * NOTE ON 10_BYTE_ONLY quirks:  Any 10_BYTE_ONLY quirks MUST be because
185  * your device hangs when it gets a 10 byte command.  Adding a quirk just
186  * to get rid of the informative diagnostic message is not acceptable.  All
187  * 10_BYTE_ONLY quirks must be documented in full in a PR (which should be
188  * referenced in a comment along with the quirk) , and must be approved by
189  * ken@FreeBSD.org.  Any quirks added that don't adhere to this policy may
190  * be removed until the submitter can explain why they are needed.
191  * 10_BYTE_ONLY quirks will be removed (as they will no longer be necessary)
192  * when the CAM_NEW_TRAN_CODE work is done.
193  */
194 static struct cd_quirk_entry cd_quirk_table[] =
195 {
196 	{
197 		{ T_CDROM, SIP_MEDIA_REMOVABLE, "NRC", "MBR-7", "*"},
198 		 /*quirks*/ CD_Q_CHANGER
199 	},
200 	{
201 		{ T_CDROM, SIP_MEDIA_REMOVABLE, "PIONEER", "CD-ROM DRM*",
202 		  "*"}, /* quirks */ CD_Q_CHANGER
203 	},
204 	{
205 		{ T_CDROM, SIP_MEDIA_REMOVABLE, "NAKAMICH", "MJ-*", "*"},
206 		 /* quirks */ CD_Q_CHANGER
207 	},
208 	{
209 		{ T_CDROM, SIP_MEDIA_REMOVABLE, "CHINON", "CD-ROM CDS-535","*"},
210 		/* quirks */ CD_Q_BCD_TRACKS
211 	}
212 };
213 
214 #define CD_CDEV_MAJOR 15
215 
216 static	d_open_t	cdopen;
217 static	d_close_t	cdclose;
218 static	d_ioctl_t	cdioctl;
219 static	d_strategy_t	cdstrategy;
220 
221 static	periph_init_t	cdinit;
222 static	periph_ctor_t	cdregister;
223 static	periph_dtor_t	cdcleanup;
224 static	periph_start_t	cdstart;
225 static	periph_oninv_t	cdoninvalidate;
226 static	void		cdasync(void *callback_arg, u_int32_t code,
227 				struct cam_path *path, void *arg);
228 static	int		cdcmdsizesysctl(SYSCTL_HANDLER_ARGS);
229 static	void		cdshorttimeout(void *arg);
230 static	void		cdschedule(struct cam_periph *periph, int priority);
231 static	void		cdrunchangerqueue(void *arg);
232 static	void		cdchangerschedule(struct cd_softc *softc);
233 static	int		cdrunccb(union ccb *ccb,
234 				 int (*error_routine)(union ccb *ccb,
235 						      u_int32_t cam_flags,
236 						      u_int32_t sense_flags),
237 				 u_int32_t cam_flags, u_int32_t sense_flags);
238 static	union ccb 	*cdgetccb(struct cam_periph *periph,
239 				  u_int32_t priority);
240 static	void		cddone(struct cam_periph *periph,
241 			       union ccb *start_ccb);
242 static	union cd_pages	*cdgetpage(struct cd_mode_params *mode_params);
243 static	int		cdgetpagesize(int page_num);
244 static	void		cdprevent(struct cam_periph *periph, int action);
245 static	int		cdcheckmedia(struct cam_periph *periph);
246 static	int		cdsize(struct cam_periph *periph, u_int32_t *size);
247 static	int		cd6byteworkaround(union ccb *ccb);
248 static	int		cderror(union ccb *ccb, u_int32_t cam_flags,
249 				u_int32_t sense_flags);
250 static	int		cdreadtoc(struct cam_periph *periph, u_int32_t mode,
251 				  u_int32_t start, u_int8_t *data,
252 				  u_int32_t len, u_int32_t sense_flags);
253 static	int		cdgetmode(struct cam_periph *periph,
254 				  struct cd_mode_params *data, u_int32_t page);
255 static	int		cdsetmode(struct cam_periph *periph,
256 				  struct cd_mode_params *data);
257 static	int		cdplay(struct cam_periph *periph, u_int32_t blk,
258 			       u_int32_t len);
259 static	int		cdreadsubchannel(struct cam_periph *periph,
260 					 u_int32_t mode, u_int32_t format,
261 					 int track,
262 					 struct cd_sub_channel_info *data,
263 					 u_int32_t len);
264 static	int		cdplaymsf(struct cam_periph *periph, u_int32_t startm,
265 				  u_int32_t starts, u_int32_t startf,
266 				  u_int32_t endm, u_int32_t ends,
267 				  u_int32_t endf);
268 static	int		cdplaytracks(struct cam_periph *periph,
269 				     u_int32_t strack, u_int32_t sindex,
270 				     u_int32_t etrack, u_int32_t eindex);
271 static	int		cdpause(struct cam_periph *periph, u_int32_t go);
272 static	int		cdstopunit(struct cam_periph *periph, u_int32_t eject);
273 static	int		cdstartunit(struct cam_periph *periph, int load);
274 static	int		cdsetspeed(struct cam_periph *periph,
275 				   u_int32_t rdspeed, u_int32_t wrspeed);
276 static	int		cdreportkey(struct cam_periph *periph,
277 				    struct dvd_authinfo *authinfo);
278 static	int		cdsendkey(struct cam_periph *periph,
279 				  struct dvd_authinfo *authinfo);
280 static	int		cdreaddvdstructure(struct cam_periph *periph,
281 					   struct dvd_struct *dvdstruct);
282 
283 static struct periph_driver cddriver =
284 {
285 	cdinit, "cd",
286 	TAILQ_HEAD_INITIALIZER(cddriver.units), /* generation */ 0
287 };
288 
289 PERIPHDRIVER_DECLARE(cd, cddriver);
290 
291 static struct cdevsw cd_cdevsw = {
292 	.d_open =	cdopen,
293 	.d_close =	cdclose,
294 	.d_read =	physread,
295 	.d_write =	physwrite,
296 	.d_ioctl =	cdioctl,
297 	.d_strategy =	cdstrategy,
298 	.d_name =	"cd",
299 	.d_maj =	CD_CDEV_MAJOR,
300 	.d_flags =	D_DISK,
301 };
302 
303 static int num_changers;
304 
305 #ifndef CHANGER_MIN_BUSY_SECONDS
306 #define CHANGER_MIN_BUSY_SECONDS	5
307 #endif
308 #ifndef CHANGER_MAX_BUSY_SECONDS
309 #define CHANGER_MAX_BUSY_SECONDS	15
310 #endif
311 
312 static int changer_min_busy_seconds = CHANGER_MIN_BUSY_SECONDS;
313 static int changer_max_busy_seconds = CHANGER_MAX_BUSY_SECONDS;
314 
315 SYSCTL_NODE(_kern_cam, OID_AUTO, cd, CTLFLAG_RD, 0, "CAM CDROM driver");
316 SYSCTL_NODE(_kern_cam_cd, OID_AUTO, changer, CTLFLAG_RD, 0, "CD Changer");
317 SYSCTL_INT(_kern_cam_cd_changer, OID_AUTO, min_busy_seconds, CTLFLAG_RW,
318 	   &changer_min_busy_seconds, 0, "Minimum changer scheduling quantum");
319 TUNABLE_INT("kern.cam.cd.changer.min_busy_seconds", &changer_min_busy_seconds);
320 SYSCTL_INT(_kern_cam_cd_changer, OID_AUTO, max_busy_seconds, CTLFLAG_RW,
321 	   &changer_max_busy_seconds, 0, "Maximum changer scheduling quantum");
322 TUNABLE_INT("kern.cam.cd.changer.max_busy_seconds", &changer_max_busy_seconds);
323 
324 struct cdchanger {
325 	path_id_t			 path_id;
326 	target_id_t			 target_id;
327 	int				 num_devices;
328 	struct camq			 devq;
329 	struct timeval			 start_time;
330 	struct cd_softc			 *cur_device;
331 	struct callout_handle		 short_handle;
332 	struct callout_handle		 long_handle;
333 	volatile cd_changer_flags	 flags;
334 	STAILQ_ENTRY(cdchanger)		 changer_links;
335 	STAILQ_HEAD(chdevlist, cd_softc) chluns;
336 };
337 
338 static STAILQ_HEAD(changerlist, cdchanger) changerq;
339 
340 static void
341 cdclone(void *arg, char *name, int namelen, dev_t *dev)
342 {
343 	struct cd_softc *softc;
344 	const char *p;
345 	int l;
346 
347 	softc = arg;
348 	p = devtoname(softc->dev);
349 	l = strlen(p);
350 	if (bcmp(name, p, l))
351 		return;
352 	if (name[l] != 'a' && name[l] != 'c')
353 		return;
354 	if (name[l + 1] != '\0')
355 		return;
356 	*dev = softc->dev;
357 	return;
358 }
359 
360 static void
361 cdinit(void)
362 {
363 	cam_status status;
364 	struct cam_path *path;
365 
366 	/*
367 	 * Install a global async callback.  This callback will
368 	 * receive async callbacks like "new device found".
369 	 */
370 	status = xpt_create_path(&path, /*periph*/NULL, CAM_XPT_PATH_ID,
371 				 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD);
372 
373 	if (status == CAM_REQ_CMP) {
374 		struct ccb_setasync csa;
375 
376                 xpt_setup_ccb(&csa.ccb_h, path, /*priority*/5);
377                 csa.ccb_h.func_code = XPT_SASYNC_CB;
378                 csa.event_enable = AC_FOUND_DEVICE;
379                 csa.callback = cdasync;
380                 csa.callback_arg = NULL;
381                 xpt_action((union ccb *)&csa);
382 		status = csa.ccb_h.status;
383                 xpt_free_path(path);
384         }
385 
386 	if (status != CAM_REQ_CMP) {
387 		printf("cd: Failed to attach master async callback "
388 		       "due to status 0x%x!\n", status);
389 	}
390 }
391 
392 static void
393 cdoninvalidate(struct cam_periph *periph)
394 {
395 	int s;
396 	struct cd_softc *softc;
397 	struct ccb_setasync csa;
398 
399 	softc = (struct cd_softc *)periph->softc;
400 
401 	/*
402 	 * De-register any async callbacks.
403 	 */
404 	xpt_setup_ccb(&csa.ccb_h, periph->path,
405 		      /* priority */ 5);
406 	csa.ccb_h.func_code = XPT_SASYNC_CB;
407 	csa.event_enable = 0;
408 	csa.callback = cdasync;
409 	csa.callback_arg = periph;
410 	xpt_action((union ccb *)&csa);
411 
412 	softc->flags |= CD_FLAG_INVALID;
413 
414 	/*
415 	 * Although the oninvalidate() routines are always called at
416 	 * splsoftcam, we need to be at splbio() here to keep the buffer
417 	 * queue from being modified while we traverse it.
418 	 */
419 	s = splbio();
420 
421 	/*
422 	 * Return all queued I/O with ENXIO.
423 	 * XXX Handle any transactions queued to the card
424 	 *     with XPT_ABORT_CCB.
425 	 */
426 	bioq_flush(&softc->bio_queue, NULL, ENXIO);
427 	splx(s);
428 
429 	/*
430 	 * If this device is part of a changer, and it was scheduled
431 	 * to run, remove it from the run queue since we just nuked
432 	 * all of its scheduled I/O.
433 	 */
434 	if ((softc->flags & CD_FLAG_CHANGER)
435 	 && (softc->pinfo.index != CAM_UNQUEUED_INDEX))
436 		camq_remove(&softc->changer->devq, softc->pinfo.index);
437 
438 	xpt_print_path(periph->path);
439 	printf("lost device\n");
440 }
441 
442 static void
443 cdcleanup(struct cam_periph *periph)
444 {
445 	struct cd_softc *softc;
446 	int s;
447 
448 	softc = (struct cd_softc *)periph->softc;
449 
450 	xpt_print_path(periph->path);
451 	printf("removing device entry\n");
452 
453 	if (sysctl_ctx_free(&softc->sysctl_ctx) != 0) {
454 		xpt_print_path(periph->path);
455 		printf("can't remove sysctl context\n");
456 	}
457 
458 	s = splsoftcam();
459 	/*
460 	 * In the queued, non-active case, the device in question
461 	 * has already been removed from the changer run queue.  Since this
462 	 * device is active, we need to de-activate it, and schedule
463 	 * another device to run.  (if there is another one to run)
464 	 */
465 	if ((softc->flags & CD_FLAG_CHANGER)
466 	 && (softc->flags & CD_FLAG_ACTIVE)) {
467 
468 		/*
469 		 * The purpose of the short timeout is soley to determine
470 		 * whether the current device has finished or not.  Well,
471 		 * since we're removing the active device, we know that it
472 		 * is finished.  So, get rid of the short timeout.
473 		 * Otherwise, if we're in the time period before the short
474 		 * timeout fires, and there are no other devices in the
475 		 * queue to run, there won't be any other device put in the
476 		 * active slot.  i.e., when we call cdrunchangerqueue()
477 		 * below, it won't do anything.  Then, when the short
478 		 * timeout fires, it'll look at the "current device", which
479 		 * we are free below, and possibly panic the kernel on a
480 		 * bogus pointer reference.
481 		 *
482 		 * The long timeout doesn't really matter, since we
483 		 * decrement the qfrozen_cnt to indicate that there is
484 		 * nothing in the active slot now.  Therefore, there won't
485 		 * be any bogus pointer references there.
486 		 */
487 		if (softc->changer->flags & CHANGER_SHORT_TMOUT_SCHED) {
488 			untimeout(cdshorttimeout, softc->changer,
489 				  softc->changer->short_handle);
490 			softc->changer->flags &= ~CHANGER_SHORT_TMOUT_SCHED;
491 		}
492 		softc->changer->devq.qfrozen_cnt--;
493 		softc->changer->flags |= CHANGER_MANUAL_CALL;
494 		cdrunchangerqueue(softc->changer);
495 	}
496 
497 	/*
498 	 * If we're removing the last device on the changer, go ahead and
499 	 * remove the changer device structure.
500 	 */
501 	if ((softc->flags & CD_FLAG_CHANGER)
502 	 && (--softc->changer->num_devices == 0)) {
503 
504 		/*
505 		 * Theoretically, there shouldn't be any timeouts left, but
506 		 * I'm not completely sure that that will be the case.  So,
507 		 * it won't hurt to check and see if there are any left.
508 		 */
509 		if (softc->changer->flags & CHANGER_TIMEOUT_SCHED) {
510 			untimeout(cdrunchangerqueue, softc->changer,
511 				  softc->changer->long_handle);
512 			softc->changer->flags &= ~CHANGER_TIMEOUT_SCHED;
513 		}
514 
515 		if (softc->changer->flags & CHANGER_SHORT_TMOUT_SCHED) {
516 			untimeout(cdshorttimeout, softc->changer,
517 				  softc->changer->short_handle);
518 			softc->changer->flags &= ~CHANGER_SHORT_TMOUT_SCHED;
519 		}
520 
521 		STAILQ_REMOVE(&changerq, softc->changer, cdchanger,
522 			      changer_links);
523 		xpt_print_path(periph->path);
524 		printf("removing changer entry\n");
525 		free(softc->changer, M_DEVBUF);
526 		num_changers--;
527 	}
528 	devstat_remove_entry(softc->device_stats);
529 	destroy_dev(softc->dev);
530 	EVENTHANDLER_DEREGISTER(dev_clone, softc->clonetag);
531 	free(softc, M_DEVBUF);
532 	splx(s);
533 }
534 
535 static void
536 cdasync(void *callback_arg, u_int32_t code,
537 	struct cam_path *path, void *arg)
538 {
539 	struct cam_periph *periph;
540 
541 	periph = (struct cam_periph *)callback_arg;
542 	switch (code) {
543 	case AC_FOUND_DEVICE:
544 	{
545 		struct ccb_getdev *cgd;
546 		cam_status status;
547 
548 		cgd = (struct ccb_getdev *)arg;
549 		if (cgd == NULL)
550 			break;
551 
552 		if (SID_TYPE(&cgd->inq_data) != T_CDROM
553 		    && SID_TYPE(&cgd->inq_data) != T_WORM)
554 			break;
555 
556 		/*
557 		 * Allocate a peripheral instance for
558 		 * this device and start the probe
559 		 * process.
560 		 */
561 		status = cam_periph_alloc(cdregister, cdoninvalidate,
562 					  cdcleanup, cdstart,
563 					  "cd", CAM_PERIPH_BIO,
564 					  cgd->ccb_h.path, cdasync,
565 					  AC_FOUND_DEVICE, cgd);
566 
567 		if (status != CAM_REQ_CMP
568 		 && status != CAM_REQ_INPROG)
569 			printf("cdasync: Unable to attach new device "
570 			       "due to status 0x%x\n", status);
571 
572 		break;
573 	}
574 	case AC_SENT_BDR:
575 	case AC_BUS_RESET:
576 	{
577 		struct cd_softc *softc;
578 		struct ccb_hdr *ccbh;
579 		int s;
580 
581 		softc = (struct cd_softc *)periph->softc;
582 		s = splsoftcam();
583 		/*
584 		 * Don't fail on the expected unit attention
585 		 * that will occur.
586 		 */
587 		softc->flags |= CD_FLAG_RETRY_UA;
588 		LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le)
589 			ccbh->ccb_state |= CD_CCB_RETRY_UA;
590 		splx(s);
591 		/* FALLTHROUGH */
592 	}
593 	default:
594 		cam_periph_async(periph, code, path, arg);
595 		break;
596 	}
597 }
598 
599 /*
600  * We have a handler function for this so we can check the values when the
601  * user sets them, instead of every time we look at them.
602  */
603 static int
604 cdcmdsizesysctl(SYSCTL_HANDLER_ARGS)
605 {
606 	int error, value;
607 
608 	value = *(int *)arg1;
609 
610 	error = sysctl_handle_int(oidp, &value, 0, req);
611 
612 	if ((error != 0)
613 	 || (req->newptr == NULL))
614 		return (error);
615 
616 	/*
617 	 * The only real values we can have here are 6 or 10.  I don't
618 	 * really forsee having 12 be an option at any time in the future.
619 	 * So if the user sets something less than or equal to 6, we'll set
620 	 * it to 6.  If he sets something greater than 6, we'll set it to 10.
621 	 *
622 	 * I suppose we could just return an error here for the wrong values,
623 	 * but I don't think it's necessary to do so, as long as we can
624 	 * determine the user's intent without too much trouble.
625 	 */
626 	if (value < 6)
627 		value = 6;
628 	else if (value > 6)
629 		value = 10;
630 
631 	*(int *)arg1 = value;
632 
633 	return (0);
634 }
635 
636 static cam_status
637 cdregister(struct cam_periph *periph, void *arg)
638 {
639 	struct cd_softc *softc;
640 	struct ccb_setasync csa;
641 	struct ccb_getdev *cgd;
642 	char tmpstr[80], tmpstr2[80];
643 	caddr_t match;
644 
645 	cgd = (struct ccb_getdev *)arg;
646 	if (periph == NULL) {
647 		printf("cdregister: periph was NULL!!\n");
648 		return(CAM_REQ_CMP_ERR);
649 	}
650 	if (cgd == NULL) {
651 		printf("cdregister: no getdev CCB, can't register device\n");
652 		return(CAM_REQ_CMP_ERR);
653 	}
654 
655 	softc = (struct cd_softc *)malloc(sizeof(*softc),M_DEVBUF,M_NOWAIT);
656 
657 	if (softc == NULL) {
658 		printf("cdregister: Unable to probe new device. "
659 		       "Unable to allocate softc\n");
660 		return(CAM_REQ_CMP_ERR);
661 	}
662 
663 	bzero(softc, sizeof(*softc));
664 	LIST_INIT(&softc->pending_ccbs);
665 	STAILQ_INIT(&softc->mode_queue);
666 	softc->state = CD_STATE_PROBE;
667 	bioq_init(&softc->bio_queue);
668 	if (SID_IS_REMOVABLE(&cgd->inq_data))
669 		softc->flags |= CD_FLAG_DISC_REMOVABLE;
670 	if ((cgd->inq_data.flags & SID_CmdQue) != 0)
671 		softc->flags |= CD_FLAG_TAGGED_QUEUING;
672 
673 	periph->softc = softc;
674 	softc->periph = periph;
675 
676 	/*
677 	 * See if this device has any quirks.
678 	 */
679 	match = cam_quirkmatch((caddr_t)&cgd->inq_data,
680 			       (caddr_t)cd_quirk_table,
681 			       sizeof(cd_quirk_table)/sizeof(*cd_quirk_table),
682 			       sizeof(*cd_quirk_table), scsi_inquiry_match);
683 
684 	if (match != NULL)
685 		softc->quirks = ((struct cd_quirk_entry *)match)->quirks;
686 	else
687 		softc->quirks = CD_Q_NONE;
688 
689 	snprintf(tmpstr, sizeof(tmpstr), "CAM CD unit %d", periph->unit_number);
690 	snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number);
691 	sysctl_ctx_init(&softc->sysctl_ctx);
692 	softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx,
693 		SYSCTL_STATIC_CHILDREN(_kern_cam_cd), OID_AUTO,
694 		tmpstr2, CTLFLAG_RD, 0, tmpstr);
695 	if (softc->sysctl_tree == NULL) {
696 		printf("cdregister: unable to allocate sysctl tree\n");
697 		free(softc, M_DEVBUF);
698 		return (CAM_REQ_CMP_ERR);
699 	}
700 
701 	/* The default is 6 byte commands, unless quirked otherwise */
702 	if (softc->quirks & CD_Q_10_BYTE_ONLY)
703 		softc->minimum_command_size = 10;
704 	else
705 		softc->minimum_command_size = 6;
706 
707 	/*
708 	 * Load the user's default, if any.
709 	 */
710 	snprintf(tmpstr, sizeof(tmpstr), "kern.cam.cd.%d.minimum_cmd_size",
711 		 periph->unit_number);
712 	TUNABLE_INT_FETCH(tmpstr, &softc->minimum_command_size);
713 
714 	/* 6 and 10 are the only permissible values here. */
715 	if (softc->minimum_command_size < 6)
716 		softc->minimum_command_size = 6;
717 	else if (softc->minimum_command_size > 6)
718 		softc->minimum_command_size = 10;
719 
720 	/*
721 	 * Now register the sysctl handler, so the user can the value on
722 	 * the fly.
723 	 */
724 	SYSCTL_ADD_PROC(&softc->sysctl_ctx,SYSCTL_CHILDREN(softc->sysctl_tree),
725 		OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW,
726 		&softc->minimum_command_size, 0, cdcmdsizesysctl, "I",
727 		"Minimum CDB size");
728 
729 	/*
730 	 * We need to register the statistics structure for this device,
731 	 * but we don't have the blocksize yet for it.  So, we register
732 	 * the structure and indicate that we don't have the blocksize
733 	 * yet.  Unlike other SCSI peripheral drivers, we explicitly set
734 	 * the device type here to be CDROM, rather than just ORing in
735 	 * the device type.  This is because this driver can attach to either
736 	 * CDROM or WORM devices, and we want this peripheral driver to
737 	 * show up in the devstat list as a CD peripheral driver, not a
738 	 * WORM peripheral driver.  WORM drives will also have the WORM
739 	 * driver attached to them.
740 	 */
741 	softc->device_stats = devstat_new_entry("cd",
742 			  periph->unit_number, 0,
743 	  		  DEVSTAT_BS_UNAVAILABLE,
744 			  DEVSTAT_TYPE_CDROM | DEVSTAT_TYPE_IF_SCSI,
745 			  DEVSTAT_PRIORITY_CD);
746 	softc->dev = make_dev(&cd_cdevsw, periph->unit_number,
747 		UID_ROOT, GID_OPERATOR, 0640, "cd%d", periph->unit_number);
748 	softc->dev->si_drv1 = periph;
749 	softc->clonetag =
750 	    EVENTHANDLER_REGISTER(dev_clone, cdclone, softc, 1000);
751 
752 	/*
753 	 * Add an async callback so that we get
754 	 * notified if this device goes away.
755 	 */
756 	xpt_setup_ccb(&csa.ccb_h, periph->path,
757 		      /* priority */ 5);
758 	csa.ccb_h.func_code = XPT_SASYNC_CB;
759 	csa.event_enable = AC_SENT_BDR | AC_BUS_RESET | AC_LOST_DEVICE;
760 	csa.callback = cdasync;
761 	csa.callback_arg = periph;
762 	xpt_action((union ccb *)&csa);
763 
764 	/*
765 	 * If the target lun is greater than 0, we most likely have a CD
766 	 * changer device.  Check the quirk entries as well, though, just
767 	 * in case someone has a CD tower with one lun per drive or
768 	 * something like that.  Also, if we know up front that a
769 	 * particular device is a changer, we can mark it as such starting
770 	 * with lun 0, instead of lun 1.  It shouldn't be necessary to have
771 	 * a quirk entry to define something as a changer, however.
772 	 */
773 	if (((cgd->ccb_h.target_lun > 0)
774 	  && ((softc->quirks & CD_Q_NO_CHANGER) == 0))
775 	 || ((softc->quirks & CD_Q_CHANGER) != 0)) {
776 		struct cdchanger *nchanger;
777 		struct cam_periph *nperiph;
778 		struct cam_path *path;
779 		cam_status status;
780 		int found;
781 
782 		/* Set the changer flag in the current device's softc */
783 		softc->flags |= CD_FLAG_CHANGER;
784 
785 		if (num_changers == 0)
786 			STAILQ_INIT(&changerq);
787 
788 		/*
789 		 * Now, look around for an existing changer device with the
790 		 * same path and target ID as the current device.
791 		 */
792 		for (found = 0,
793 		     nchanger = (struct cdchanger *)STAILQ_FIRST(&changerq);
794 		     nchanger != NULL;
795 		     nchanger = STAILQ_NEXT(nchanger, changer_links)){
796 			if ((nchanger->path_id == cgd->ccb_h.path_id)
797 			 && (nchanger->target_id == cgd->ccb_h.target_id)) {
798 				found = 1;
799 				break;
800 			}
801 		}
802 
803 		/*
804 		 * If we found a matching entry, just add this device to
805 		 * the list of devices on this changer.
806 		 */
807 		if (found == 1) {
808 			struct chdevlist *chlunhead;
809 
810 			chlunhead = &nchanger->chluns;
811 
812 			/*
813 			 * XXX KDM look at consolidating this code with the
814 			 * code below in a separate function.
815 			 */
816 
817 			/*
818 			 * Create a path with lun id 0, and see if we can
819 			 * find a matching device
820 			 */
821 			status = xpt_create_path(&path, /*periph*/ periph,
822 						 cgd->ccb_h.path_id,
823 						 cgd->ccb_h.target_id, 0);
824 
825 			if ((status == CAM_REQ_CMP)
826 			 && ((nperiph = cam_periph_find(path, "cd")) != NULL)){
827 				struct cd_softc *nsoftc;
828 
829 				nsoftc = (struct cd_softc *)nperiph->softc;
830 
831 				if ((nsoftc->flags & CD_FLAG_CHANGER) == 0){
832 					nsoftc->flags |= CD_FLAG_CHANGER;
833 					nchanger->num_devices++;
834 					if (camq_resize(&nchanger->devq,
835 					   nchanger->num_devices)!=CAM_REQ_CMP){
836 						printf("cdregister: "
837 						       "camq_resize "
838 						       "failed, changer "
839 						       "support may "
840 						       "be messed up\n");
841 					}
842 					nsoftc->changer = nchanger;
843 					nsoftc->pinfo.index =CAM_UNQUEUED_INDEX;
844 
845 					STAILQ_INSERT_TAIL(&nchanger->chluns,
846 							  nsoftc,changer_links);
847 				}
848 				xpt_free_path(path);
849 			} else if (status == CAM_REQ_CMP)
850 				xpt_free_path(path);
851 			else {
852 				printf("cdregister: unable to allocate path\n"
853 				       "cdregister: changer support may be "
854 				       "broken\n");
855 			}
856 
857 			nchanger->num_devices++;
858 
859 			softc->changer = nchanger;
860 			softc->pinfo.index = CAM_UNQUEUED_INDEX;
861 
862 			if (camq_resize(&nchanger->devq,
863 			    nchanger->num_devices) != CAM_REQ_CMP) {
864 				printf("cdregister: camq_resize "
865 				       "failed, changer support may "
866 				       "be messed up\n");
867 			}
868 
869 			STAILQ_INSERT_TAIL(chlunhead, softc, changer_links);
870 		}
871 		/*
872 		 * In this case, we don't already have an entry for this
873 		 * particular changer, so we need to create one, add it to
874 		 * the queue, and queue this device on the list for this
875 		 * changer.  Before we queue this device, however, we need
876 		 * to search for lun id 0 on this target, and add it to the
877 		 * queue first, if it exists.  (and if it hasn't already
878 		 * been marked as part of the changer.)
879 		 */
880 		else {
881 			nchanger = malloc(sizeof(struct cdchanger),
882 				M_DEVBUF, M_NOWAIT);
883 
884 			if (nchanger == NULL) {
885 				softc->flags &= ~CD_FLAG_CHANGER;
886 				printf("cdregister: unable to malloc "
887 				       "changer structure\ncdregister: "
888 				       "changer support disabled\n");
889 
890 				/*
891 				 * Yes, gotos can be gross but in this case
892 				 * I think it's justified..
893 				 */
894 				goto cdregisterexit;
895 			}
896 
897 			/* zero the structure */
898 			bzero(nchanger, sizeof(struct cdchanger));
899 
900 			if (camq_init(&nchanger->devq, 1) != 0) {
901 				softc->flags &= ~CD_FLAG_CHANGER;
902 				printf("cdregister: changer support "
903 				       "disabled\n");
904 				goto cdregisterexit;
905 			}
906 
907 			num_changers++;
908 
909 			nchanger->path_id = cgd->ccb_h.path_id;
910 			nchanger->target_id = cgd->ccb_h.target_id;
911 
912 			/* this is superfluous, but it makes things clearer */
913 			nchanger->num_devices = 0;
914 
915 			STAILQ_INIT(&nchanger->chluns);
916 
917 			STAILQ_INSERT_TAIL(&changerq, nchanger,
918 					   changer_links);
919 
920 			/*
921 			 * Create a path with lun id 0, and see if we can
922 			 * find a matching device
923 			 */
924 			status = xpt_create_path(&path, /*periph*/ periph,
925 						 cgd->ccb_h.path_id,
926 						 cgd->ccb_h.target_id, 0);
927 
928 			/*
929 			 * If we were able to allocate the path, and if we
930 			 * find a matching device and it isn't already
931 			 * marked as part of a changer, then we add it to
932 			 * the current changer.
933 			 */
934 			if ((status == CAM_REQ_CMP)
935 			 && ((nperiph = cam_periph_find(path, "cd")) != NULL)
936 			 && ((((struct cd_softc *)periph->softc)->flags &
937 			       CD_FLAG_CHANGER) == 0)) {
938 				struct cd_softc *nsoftc;
939 
940 				nsoftc = (struct cd_softc *)nperiph->softc;
941 
942 				nsoftc->flags |= CD_FLAG_CHANGER;
943 				nchanger->num_devices++;
944 				if (camq_resize(&nchanger->devq,
945 				    nchanger->num_devices) != CAM_REQ_CMP) {
946 					printf("cdregister: camq_resize "
947 					       "failed, changer support may "
948 					       "be messed up\n");
949 				}
950 				nsoftc->changer = nchanger;
951 				nsoftc->pinfo.index = CAM_UNQUEUED_INDEX;
952 
953 				STAILQ_INSERT_TAIL(&nchanger->chluns,
954 						   nsoftc, changer_links);
955 				xpt_free_path(path);
956 			} else if (status == CAM_REQ_CMP)
957 				xpt_free_path(path);
958 			else {
959 				printf("cdregister: unable to allocate path\n"
960 				       "cdregister: changer support may be "
961 				       "broken\n");
962 			}
963 
964 			softc->changer = nchanger;
965 			softc->pinfo.index = CAM_UNQUEUED_INDEX;
966 			nchanger->num_devices++;
967 			if (camq_resize(&nchanger->devq,
968 			    nchanger->num_devices) != CAM_REQ_CMP) {
969 				printf("cdregister: camq_resize "
970 				       "failed, changer support may "
971 				       "be messed up\n");
972 			}
973 			STAILQ_INSERT_TAIL(&nchanger->chluns, softc,
974 					   changer_links);
975 		}
976 	}
977 
978 cdregisterexit:
979 
980 	/* Lock this peripheral until we are setup */
981 	/* Can't block */
982 	cam_periph_lock(periph, PRIBIO);
983 
984 	if ((softc->flags & CD_FLAG_CHANGER) == 0)
985 		xpt_schedule(periph, /*priority*/5);
986 	else
987 		cdschedule(periph, /*priority*/ 5);
988 
989 	return(CAM_REQ_CMP);
990 }
991 
992 static int
993 cdopen(dev_t dev, int flags, int fmt, struct thread *td)
994 {
995 	struct cam_periph *periph;
996 	struct cd_softc *softc;
997 	int error;
998 	int s;
999 
1000 	periph = (struct cam_periph *)dev->si_drv1;
1001 	if (periph == NULL)
1002 		return (ENXIO);
1003 
1004 	softc = (struct cd_softc *)periph->softc;
1005 
1006 	/*
1007 	 * Grab splsoftcam and hold it until we lock the peripheral.
1008 	 */
1009 	s = splsoftcam();
1010 	if (softc->flags & CD_FLAG_INVALID) {
1011 		splx(s);
1012 		return(ENXIO);
1013 	}
1014 
1015 	if ((error = cam_periph_lock(periph, PRIBIO | PCATCH)) != 0) {
1016 		splx(s);
1017 		return (error);
1018 	}
1019 
1020 	splx(s);
1021 
1022 	if (cam_periph_acquire(periph) != CAM_REQ_CMP)
1023 		return(ENXIO);
1024 
1025 	/*
1026 	 * Check for media, and set the appropriate flags.  We don't bail
1027 	 * if we don't have media, but then we don't allow anything but the
1028 	 * CDIOCEJECT/CDIOCCLOSE ioctls if there is no media.
1029 	 */
1030 	cdcheckmedia(periph);
1031 
1032 	cam_periph_unlock(periph);
1033 
1034 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("leaving cdopen\n"));
1035 
1036 	return (error);
1037 }
1038 
1039 static int
1040 cdclose(dev_t dev, int flag, int fmt, struct thread *td)
1041 {
1042 	struct 	cam_periph *periph;
1043 	struct	cd_softc *softc;
1044 	int	error;
1045 
1046 	periph = (struct cam_periph *)dev->si_drv1;
1047 	if (periph == NULL)
1048 		return (ENXIO);
1049 
1050 	softc = (struct cd_softc *)periph->softc;
1051 
1052 	if ((error = cam_periph_lock(periph, PRIBIO)) != 0)
1053 		return (error);
1054 
1055 	if ((softc->flags & CD_FLAG_DISC_REMOVABLE) != 0)
1056 		cdprevent(periph, PR_ALLOW);
1057 
1058 	/*
1059 	 * Since we're closing this CD, mark the blocksize as unavailable.
1060 	 * It will be marked as available when the CD is opened again.
1061 	 */
1062 	softc->device_stats->flags |= DEVSTAT_BS_UNAVAILABLE;
1063 
1064 	/*
1065 	 * We'll check the media and toc again at the next open().
1066 	 */
1067 	softc->flags &= ~(CD_FLAG_VALID_MEDIA|CD_FLAG_VALID_TOC);
1068 
1069 	cam_periph_unlock(periph);
1070 	cam_periph_release(periph);
1071 
1072 	return (0);
1073 }
1074 
1075 static void
1076 cdshorttimeout(void *arg)
1077 {
1078 	struct cdchanger *changer;
1079 	int s;
1080 
1081 	s = splsoftcam();
1082 
1083 	changer = (struct cdchanger *)arg;
1084 
1085 	/* Always clear the short timeout flag, since that's what we're in */
1086 	changer->flags &= ~CHANGER_SHORT_TMOUT_SCHED;
1087 
1088 	/*
1089 	 * Check to see if there is any more pending or outstanding I/O for
1090 	 * this device.  If not, move it out of the active slot.
1091 	 */
1092 	if ((bioq_first(&changer->cur_device->bio_queue) == NULL)
1093 	 && (changer->cur_device->outstanding_cmds == 0)) {
1094 		changer->flags |= CHANGER_MANUAL_CALL;
1095 		cdrunchangerqueue(changer);
1096 	}
1097 
1098 	splx(s);
1099 }
1100 
1101 /*
1102  * This is a wrapper for xpt_schedule.  It only applies to changers.
1103  */
1104 static void
1105 cdschedule(struct cam_periph *periph, int priority)
1106 {
1107 	struct cd_softc *softc;
1108 	int s;
1109 
1110 	s = splsoftcam();
1111 
1112 	softc = (struct cd_softc *)periph->softc;
1113 
1114 	/*
1115 	 * If this device isn't currently queued, and if it isn't
1116 	 * the active device, then we queue this device and run the
1117 	 * changer queue if there is no timeout scheduled to do it.
1118 	 * If this device is the active device, just schedule it
1119 	 * to run again.  If this device is queued, there should be
1120 	 * a timeout in place already that will make sure it runs.
1121 	 */
1122 	if ((softc->pinfo.index == CAM_UNQUEUED_INDEX)
1123 	 && ((softc->flags & CD_FLAG_ACTIVE) == 0)) {
1124 		/*
1125 		 * We don't do anything with the priority here.
1126 		 * This is strictly a fifo queue.
1127 		 */
1128 		softc->pinfo.priority = 1;
1129 		softc->pinfo.generation = ++softc->changer->devq.generation;
1130 		camq_insert(&softc->changer->devq, (cam_pinfo *)softc);
1131 
1132 		/*
1133 		 * Since we just put a device in the changer queue,
1134 		 * check and see if there is a timeout scheduled for
1135 		 * this changer.  If so, let the timeout handle
1136 		 * switching this device into the active slot.  If
1137 		 * not, manually call the timeout routine to
1138 		 * bootstrap things.
1139 		 */
1140 		if (((softc->changer->flags & CHANGER_TIMEOUT_SCHED)==0)
1141 		 && ((softc->changer->flags & CHANGER_NEED_TIMEOUT)==0)
1142 		 && ((softc->changer->flags & CHANGER_SHORT_TMOUT_SCHED)==0)){
1143 			softc->changer->flags |= CHANGER_MANUAL_CALL;
1144 			cdrunchangerqueue(softc->changer);
1145 		}
1146 	} else if ((softc->flags & CD_FLAG_ACTIVE)
1147 		&& ((softc->flags & CD_FLAG_SCHED_ON_COMP) == 0))
1148 		xpt_schedule(periph, priority);
1149 
1150 	splx(s);
1151 
1152 }
1153 
1154 static void
1155 cdrunchangerqueue(void *arg)
1156 {
1157 	struct cd_softc *softc;
1158 	struct cdchanger *changer;
1159 	int called_from_timeout;
1160 	int s;
1161 
1162 	s = splsoftcam();
1163 
1164 	changer = (struct cdchanger *)arg;
1165 
1166 	/*
1167 	 * If we have NOT been called from cdstrategy() or cddone(), and
1168 	 * instead from a timeout routine, go ahead and clear the
1169 	 * timeout flag.
1170 	 */
1171 	if ((changer->flags & CHANGER_MANUAL_CALL) == 0) {
1172 		changer->flags &= ~CHANGER_TIMEOUT_SCHED;
1173 		called_from_timeout = 1;
1174 	} else
1175 		called_from_timeout = 0;
1176 
1177 	/* Always clear the manual call flag */
1178 	changer->flags &= ~CHANGER_MANUAL_CALL;
1179 
1180 	/* nothing to do if the queue is empty */
1181 	if (changer->devq.entries <= 0) {
1182 		splx(s);
1183 		return;
1184 	}
1185 
1186 	/*
1187 	 * If the changer queue is frozen, that means we have an active
1188 	 * device.
1189 	 */
1190 	if (changer->devq.qfrozen_cnt > 0) {
1191 
1192 		if (changer->cur_device->outstanding_cmds > 0) {
1193 			changer->cur_device->flags |= CD_FLAG_SCHED_ON_COMP;
1194 			changer->cur_device->bufs_left =
1195 				changer->cur_device->outstanding_cmds;
1196 			if (called_from_timeout) {
1197 				changer->long_handle =
1198 					timeout(cdrunchangerqueue, changer,
1199 				        changer_max_busy_seconds * hz);
1200 				changer->flags |= CHANGER_TIMEOUT_SCHED;
1201 			}
1202 			splx(s);
1203 			return;
1204 		}
1205 
1206 		/*
1207 		 * We always need to reset the frozen count and clear the
1208 		 * active flag.
1209 		 */
1210 		changer->devq.qfrozen_cnt--;
1211 		changer->cur_device->flags &= ~CD_FLAG_ACTIVE;
1212 		changer->cur_device->flags &= ~CD_FLAG_SCHED_ON_COMP;
1213 
1214 		/*
1215 		 * Check to see whether the current device has any I/O left
1216 		 * to do.  If so, requeue it at the end of the queue.  If
1217 		 * not, there is no need to requeue it.
1218 		 */
1219 		if (bioq_first(&changer->cur_device->bio_queue) != NULL) {
1220 
1221 			changer->cur_device->pinfo.generation =
1222 				++changer->devq.generation;
1223 			camq_insert(&changer->devq,
1224 				(cam_pinfo *)changer->cur_device);
1225 		}
1226 	}
1227 
1228 	softc = (struct cd_softc *)camq_remove(&changer->devq, CAMQ_HEAD);
1229 
1230 	changer->cur_device = softc;
1231 
1232 	changer->devq.qfrozen_cnt++;
1233 	softc->flags |= CD_FLAG_ACTIVE;
1234 
1235 	/* Just in case this device is waiting */
1236 	wakeup(&softc->changer);
1237 	xpt_schedule(softc->periph, /*priority*/ 1);
1238 
1239 	/*
1240 	 * Get rid of any pending timeouts, and set a flag to schedule new
1241 	 * ones so this device gets its full time quantum.
1242 	 */
1243 	if (changer->flags & CHANGER_TIMEOUT_SCHED) {
1244 		untimeout(cdrunchangerqueue, changer, changer->long_handle);
1245 		changer->flags &= ~CHANGER_TIMEOUT_SCHED;
1246 	}
1247 
1248 	if (changer->flags & CHANGER_SHORT_TMOUT_SCHED) {
1249 		untimeout(cdshorttimeout, changer, changer->short_handle);
1250 		changer->flags &= ~CHANGER_SHORT_TMOUT_SCHED;
1251 	}
1252 
1253 	/*
1254 	 * We need to schedule timeouts, but we only do this after the
1255 	 * first transaction has completed.  This eliminates the changer
1256 	 * switch time.
1257 	 */
1258 	changer->flags |= CHANGER_NEED_TIMEOUT;
1259 
1260 	splx(s);
1261 }
1262 
1263 static void
1264 cdchangerschedule(struct cd_softc *softc)
1265 {
1266 	struct cdchanger *changer;
1267 	int s;
1268 
1269 	s = splsoftcam();
1270 
1271 	changer = softc->changer;
1272 
1273 	/*
1274 	 * If this is a changer, and this is the current device,
1275 	 * and this device has at least the minimum time quantum to
1276 	 * run, see if we can switch it out.
1277 	 */
1278 	if ((softc->flags & CD_FLAG_ACTIVE)
1279 	 && ((changer->flags & CHANGER_SHORT_TMOUT_SCHED) == 0)
1280 	 && ((changer->flags & CHANGER_NEED_TIMEOUT) == 0)) {
1281 		/*
1282 		 * We try three things here.  The first is that we
1283 		 * check to see whether the schedule on completion
1284 		 * flag is set.  If it is, we decrement the number
1285 		 * of buffers left, and if it's zero, we reschedule.
1286 		 * Next, we check to see whether the pending buffer
1287 		 * queue is empty and whether there are no
1288 		 * outstanding transactions.  If so, we reschedule.
1289 		 * Next, we see if the pending buffer queue is empty.
1290 		 * If it is, we set the number of buffers left to
1291 		 * the current active buffer count and set the
1292 		 * schedule on complete flag.
1293 		 */
1294 		if (softc->flags & CD_FLAG_SCHED_ON_COMP) {
1295 		 	if (--softc->bufs_left == 0) {
1296 				softc->changer->flags |=
1297 					CHANGER_MANUAL_CALL;
1298 				softc->flags &= ~CD_FLAG_SCHED_ON_COMP;
1299 				cdrunchangerqueue(softc->changer);
1300 			}
1301 		} else if ((bioq_first(&softc->bio_queue) == NULL)
1302 		        && (softc->outstanding_cmds == 0)) {
1303 			softc->changer->flags |= CHANGER_MANUAL_CALL;
1304 			cdrunchangerqueue(softc->changer);
1305 		}
1306 	} else if ((softc->changer->flags & CHANGER_NEED_TIMEOUT)
1307 		&& (softc->flags & CD_FLAG_ACTIVE)) {
1308 
1309 		/*
1310 		 * Now that the first transaction to this
1311 		 * particular device has completed, we can go ahead
1312 		 * and schedule our timeouts.
1313 		 */
1314 		if ((changer->flags & CHANGER_TIMEOUT_SCHED) == 0) {
1315 			changer->long_handle =
1316 			    timeout(cdrunchangerqueue, changer,
1317 				    changer_max_busy_seconds * hz);
1318 			changer->flags |= CHANGER_TIMEOUT_SCHED;
1319 		} else
1320 			printf("cdchangerschedule: already have a long"
1321 			       " timeout!\n");
1322 
1323 		if ((changer->flags & CHANGER_SHORT_TMOUT_SCHED) == 0) {
1324 			changer->short_handle =
1325 			    timeout(cdshorttimeout, changer,
1326 				    changer_min_busy_seconds * hz);
1327 			changer->flags |= CHANGER_SHORT_TMOUT_SCHED;
1328 		} else
1329 			printf("cdchangerschedule: already have a short "
1330 			       "timeout!\n");
1331 
1332 		/*
1333 		 * We just scheduled timeouts, no need to schedule
1334 		 * more.
1335 		 */
1336 		changer->flags &= ~CHANGER_NEED_TIMEOUT;
1337 
1338 	}
1339 	splx(s);
1340 }
1341 
1342 static int
1343 cdrunccb(union ccb *ccb, int (*error_routine)(union ccb *ccb,
1344 					      u_int32_t cam_flags,
1345 					      u_int32_t sense_flags),
1346 	 u_int32_t cam_flags, u_int32_t sense_flags)
1347 {
1348 	struct cd_softc *softc;
1349 	struct cam_periph *periph;
1350 	int error;
1351 
1352 	periph = xpt_path_periph(ccb->ccb_h.path);
1353 	softc = (struct cd_softc *)periph->softc;
1354 
1355 	error = cam_periph_runccb(ccb, error_routine, cam_flags, sense_flags,
1356 				  softc->device_stats);
1357 
1358 	if (softc->flags & CD_FLAG_CHANGER)
1359 		cdchangerschedule(softc);
1360 
1361 	return(error);
1362 }
1363 
1364 static union ccb *
1365 cdgetccb(struct cam_periph *periph, u_int32_t priority)
1366 {
1367 	struct cd_softc *softc;
1368 	int s;
1369 
1370 	softc = (struct cd_softc *)periph->softc;
1371 
1372 	if (softc->flags & CD_FLAG_CHANGER) {
1373 
1374 		s = splsoftcam();
1375 
1376 		/*
1377 		 * This should work the first time this device is woken up,
1378 		 * but just in case it doesn't, we use a while loop.
1379 		 */
1380 		while ((softc->flags & CD_FLAG_ACTIVE) == 0) {
1381 			/*
1382 			 * If this changer isn't already queued, queue it up.
1383 			 */
1384 			if (softc->pinfo.index == CAM_UNQUEUED_INDEX) {
1385 				softc->pinfo.priority = 1;
1386 				softc->pinfo.generation =
1387 					++softc->changer->devq.generation;
1388 				camq_insert(&softc->changer->devq,
1389 					    (cam_pinfo *)softc);
1390 			}
1391 			if (((softc->changer->flags & CHANGER_TIMEOUT_SCHED)==0)
1392 			 && ((softc->changer->flags & CHANGER_NEED_TIMEOUT)==0)
1393 			 && ((softc->changer->flags
1394 			      & CHANGER_SHORT_TMOUT_SCHED)==0)) {
1395 				softc->changer->flags |= CHANGER_MANUAL_CALL;
1396 				cdrunchangerqueue(softc->changer);
1397 			} else
1398 				tsleep(&softc->changer, PRIBIO, "cgticb", 0);
1399 		}
1400 		splx(s);
1401 	}
1402 	return(cam_periph_getccb(periph, priority));
1403 }
1404 
1405 
1406 /*
1407  * Actually translate the requested transfer into one the physical driver
1408  * can understand.  The transfer is described by a buf and will include
1409  * only one physical transfer.
1410  */
1411 static void
1412 cdstrategy(struct bio *bp)
1413 {
1414 	struct cam_periph *periph;
1415 	struct cd_softc *softc;
1416 	int    s;
1417 
1418 	periph = (struct cam_periph *)bp->bio_dev->si_drv1;
1419 	if (periph == NULL) {
1420 		biofinish(bp, NULL, ENXIO);
1421 		return;
1422 	}
1423 
1424 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cdstrategy\n"));
1425 
1426 	softc = (struct cd_softc *)periph->softc;
1427 
1428 	/*
1429 	 * Mask interrupts so that the pack cannot be invalidated until
1430 	 * after we are in the queue.  Otherwise, we might not properly
1431 	 * clean up one of the buffers.
1432 	 */
1433 	s = splbio();
1434 
1435 	/*
1436 	 * If the device has been made invalid, error out
1437 	 */
1438 	if ((softc->flags & CD_FLAG_INVALID)) {
1439 		splx(s);
1440 		biofinish(bp, NULL, ENXIO);
1441 		return;
1442 	}
1443 
1444         /*
1445 	 * If we don't have valid media, look for it before trying to
1446 	 * schedule the I/O.
1447 	 */
1448 	if ((softc->flags & CD_FLAG_VALID_MEDIA) == 0) {
1449 		int error;
1450 
1451 		error = cdcheckmedia(periph);
1452 		if (error != 0) {
1453 			splx(s);
1454 			biofinish(bp, NULL, error);
1455 			return;
1456 		}
1457 	}
1458 
1459 	/*
1460 	 * Place it in the queue of disk activities for this disk
1461 	 */
1462 	bioq_disksort(&softc->bio_queue, bp);
1463 
1464 	splx(s);
1465 
1466 	/*
1467 	 * Schedule ourselves for performing the work.  We do things
1468 	 * differently for changers.
1469 	 */
1470 	if ((softc->flags & CD_FLAG_CHANGER) == 0)
1471 		xpt_schedule(periph, /* XXX priority */1);
1472 	else
1473 		cdschedule(periph, /* priority */ 1);
1474 
1475 	return;
1476 }
1477 
1478 static void
1479 cdstart(struct cam_periph *periph, union ccb *start_ccb)
1480 {
1481 	struct cd_softc *softc;
1482 	struct bio *bp;
1483 	struct ccb_scsiio *csio;
1484 	struct scsi_read_capacity_data *rcap;
1485 	int s;
1486 
1487 	softc = (struct cd_softc *)periph->softc;
1488 
1489 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cdstart\n"));
1490 
1491 	switch (softc->state) {
1492 	case CD_STATE_NORMAL:
1493 	{
1494 		int oldspl;
1495 
1496 		s = splbio();
1497 		bp = bioq_first(&softc->bio_queue);
1498 		if (periph->immediate_priority <= periph->pinfo.priority) {
1499 			start_ccb->ccb_h.ccb_state = CD_CCB_WAITING;
1500 
1501 			SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h,
1502 					  periph_links.sle);
1503 			periph->immediate_priority = CAM_PRIORITY_NONE;
1504 			splx(s);
1505 			wakeup(&periph->ccb_list);
1506 		} else if (bp == NULL) {
1507 			splx(s);
1508 			xpt_release_ccb(start_ccb);
1509 		} else {
1510 			bioq_remove(&softc->bio_queue, bp);
1511 
1512 			devstat_start_transaction_bio(softc->device_stats, bp);
1513 
1514 			scsi_read_write(&start_ccb->csio,
1515 					/*retries*/4,
1516 					/* cbfcnp */ cddone,
1517 					MSG_SIMPLE_Q_TAG,
1518 					/* read */bp->bio_cmd == BIO_READ,
1519 					/* byte2 */ 0,
1520 					/* minimum_cmd_size */ 10,
1521 					/* lba */ bp->bio_blkno /
1522 					  (softc->params.blksize / DEV_BSIZE),
1523 					bp->bio_bcount / softc->params.blksize,
1524 					/* data_ptr */ bp->bio_data,
1525 					/* dxfer_len */ bp->bio_bcount,
1526 					/* sense_len */ SSD_FULL_SIZE,
1527 					/* timeout */ 30000);
1528 			start_ccb->ccb_h.ccb_state = CD_CCB_BUFFER_IO;
1529 
1530 
1531 			/*
1532 			 * Block out any asyncronous callbacks
1533 			 * while we touch the pending ccb list.
1534 			 */
1535 			oldspl = splcam();
1536 			LIST_INSERT_HEAD(&softc->pending_ccbs,
1537 					 &start_ccb->ccb_h, periph_links.le);
1538 			softc->outstanding_cmds++;
1539 			splx(oldspl);
1540 
1541 			/* We expect a unit attention from this device */
1542 			if ((softc->flags & CD_FLAG_RETRY_UA) != 0) {
1543 				start_ccb->ccb_h.ccb_state |= CD_CCB_RETRY_UA;
1544 				softc->flags &= ~CD_FLAG_RETRY_UA;
1545 			}
1546 
1547 			start_ccb->ccb_h.ccb_bp = bp;
1548 			bp = bioq_first(&softc->bio_queue);
1549 			splx(s);
1550 
1551 			xpt_action(start_ccb);
1552 		}
1553 		if (bp != NULL) {
1554 			/* Have more work to do, so ensure we stay scheduled */
1555 			xpt_schedule(periph, /* XXX priority */1);
1556 		}
1557 		break;
1558 	}
1559 	case CD_STATE_PROBE:
1560 	{
1561 
1562 		rcap = (struct scsi_read_capacity_data *)malloc(sizeof(*rcap),
1563 								M_TEMP,
1564 								M_NOWAIT);
1565 		if (rcap == NULL) {
1566 			xpt_print_path(periph->path);
1567 			printf("cdstart: Couldn't malloc read_capacity data\n");
1568 			/* cd_free_periph??? */
1569 			break;
1570 		}
1571 		csio = &start_ccb->csio;
1572 		scsi_read_capacity(csio,
1573 				   /*retries*/1,
1574 				   cddone,
1575 				   MSG_SIMPLE_Q_TAG,
1576 				   rcap,
1577 				   SSD_FULL_SIZE,
1578 				   /*timeout*/20000);
1579 		start_ccb->ccb_h.ccb_bp = NULL;
1580 		start_ccb->ccb_h.ccb_state = CD_CCB_PROBE;
1581 		xpt_action(start_ccb);
1582 		break;
1583 	}
1584 	}
1585 }
1586 
1587 static void
1588 cddone(struct cam_periph *periph, union ccb *done_ccb)
1589 {
1590 	struct cd_softc *softc;
1591 	struct ccb_scsiio *csio;
1592 
1593 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cddone\n"));
1594 
1595 	softc = (struct cd_softc *)periph->softc;
1596 	csio = &done_ccb->csio;
1597 
1598 	switch (csio->ccb_h.ccb_state & CD_CCB_TYPE_MASK) {
1599 	case CD_CCB_BUFFER_IO:
1600 	{
1601 		struct bio	*bp;
1602 		int		error;
1603 		int		oldspl;
1604 
1605 		bp = (struct bio *)done_ccb->ccb_h.ccb_bp;
1606 		error = 0;
1607 
1608 		if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) {
1609 			int sf;
1610 
1611 			if ((done_ccb->ccb_h.ccb_state & CD_CCB_RETRY_UA) != 0)
1612 				sf = SF_RETRY_UA;
1613 			else
1614 				sf = 0;
1615 
1616 			error = cderror(done_ccb, CAM_RETRY_SELTO, sf);
1617 			if (error == ERESTART) {
1618 				/*
1619 				 * A retry was scheuled, so
1620 				 * just return.
1621 				 */
1622 				return;
1623 			}
1624 		}
1625 
1626 		if (error != 0) {
1627 			int s;
1628 
1629 			xpt_print_path(periph->path);
1630 			printf("cddone: got error %#x back\n", error);
1631 			s = splbio();
1632 			bioq_flush(&softc->bio_queue, NULL, EIO);
1633 			splx(s);
1634 			bp->bio_resid = bp->bio_bcount;
1635 			bp->bio_error = error;
1636 			bp->bio_flags |= BIO_ERROR;
1637 			cam_release_devq(done_ccb->ccb_h.path,
1638 					 /*relsim_flags*/0,
1639 					 /*reduction*/0,
1640 					 /*timeout*/0,
1641 					 /*getcount_only*/0);
1642 
1643 		} else {
1644 			bp->bio_resid = csio->resid;
1645 			bp->bio_error = 0;
1646 			if (bp->bio_resid != 0) {
1647 				/*
1648 				 * Short transfer ???
1649 				 * XXX: not sure this is correct for partial
1650 				 * transfers at EOM
1651 				 */
1652 				bp->bio_flags |= BIO_ERROR;
1653 			}
1654 		}
1655 
1656 		/*
1657 		 * Block out any asyncronous callbacks
1658 		 * while we touch the pending ccb list.
1659 		 */
1660 		oldspl = splcam();
1661 		LIST_REMOVE(&done_ccb->ccb_h, periph_links.le);
1662 		softc->outstanding_cmds--;
1663 		splx(oldspl);
1664 
1665 		if (softc->flags & CD_FLAG_CHANGER)
1666 			cdchangerschedule(softc);
1667 
1668 		biofinish(bp, softc->device_stats, 0);
1669 		break;
1670 	}
1671 	case CD_CCB_PROBE:
1672 	{
1673 		struct	   scsi_read_capacity_data *rdcap;
1674 		char	   announce_buf[120]; /*
1675 					       * Currently (9/30/97) the
1676 					       * longest possible announce
1677 					       * buffer is 108 bytes, for the
1678 					       * first error case below.
1679 					       * That is 39 bytes for the
1680 					       * basic string, 16 bytes for the
1681 					       * biggest sense key (hardware
1682 					       * error), 52 bytes for the
1683 					       * text of the largest sense
1684 					       * qualifier valid for a CDROM,
1685 					       * (0x72, 0x03 or 0x04,
1686 					       * 0x03), and one byte for the
1687 					       * null terminating character.
1688 					       * To allow for longer strings,
1689 					       * the announce buffer is 120
1690 					       * bytes.
1691 					       */
1692 		struct	   cd_params *cdp;
1693 
1694 		cdp = &softc->params;
1695 
1696 		rdcap = (struct scsi_read_capacity_data *)csio->data_ptr;
1697 
1698 		cdp->disksize = scsi_4btoul (rdcap->addr) + 1;
1699 		cdp->blksize = scsi_4btoul (rdcap->length);
1700 
1701 		if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) {
1702 
1703 			snprintf(announce_buf, sizeof(announce_buf),
1704 				"cd present [%lu x %lu byte records]",
1705 				cdp->disksize, (u_long)cdp->blksize);
1706 
1707 		} else {
1708 			int	error;
1709 			/*
1710 			 * Retry any UNIT ATTENTION type errors.  They
1711 			 * are expected at boot.
1712 			 */
1713 			error = cderror(done_ccb, CAM_RETRY_SELTO,
1714 					SF_RETRY_UA | SF_NO_PRINT);
1715 			if (error == ERESTART) {
1716 				/*
1717 				 * A retry was scheuled, so
1718 				 * just return.
1719 				 */
1720 				return;
1721 			} else if (error != 0) {
1722 
1723 				struct scsi_sense_data *sense;
1724 				int asc, ascq;
1725 				int sense_key, error_code;
1726 				int have_sense;
1727 				cam_status status;
1728 				struct ccb_getdev cgd;
1729 
1730 				/* Don't wedge this device's queue */
1731 				cam_release_devq(done_ccb->ccb_h.path,
1732 						 /*relsim_flags*/0,
1733 						 /*reduction*/0,
1734 						 /*timeout*/0,
1735 						 /*getcount_only*/0);
1736 
1737 				status = done_ccb->ccb_h.status;
1738 
1739 				xpt_setup_ccb(&cgd.ccb_h,
1740 					      done_ccb->ccb_h.path,
1741 					      /* priority */ 1);
1742 				cgd.ccb_h.func_code = XPT_GDEV_TYPE;
1743 				xpt_action((union ccb *)&cgd);
1744 
1745 				if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0)
1746 				 || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0)
1747 				 || ((status & CAM_AUTOSNS_VALID) == 0))
1748 					have_sense = FALSE;
1749 				else
1750 					have_sense = TRUE;
1751 
1752 				if (have_sense) {
1753 					sense = &csio->sense_data;
1754 					scsi_extract_sense(sense, &error_code,
1755 							   &sense_key,
1756 							   &asc, &ascq);
1757 				}
1758 				/*
1759 				 * Attach to anything that claims to be a
1760 				 * CDROM or WORM device, as long as it
1761 				 * doesn't return a "Logical unit not
1762 				 * supported" (0x25) error.
1763 				 */
1764 				if ((have_sense) && (asc != 0x25)
1765 				 && (error_code == SSD_CURRENT_ERROR)) {
1766 					const char *sense_key_desc;
1767 					const char *asc_desc;
1768 
1769 					scsi_sense_desc(sense_key, asc, ascq,
1770 							&cgd.inq_data,
1771 							&sense_key_desc,
1772 							&asc_desc);
1773 					snprintf(announce_buf,
1774 					    sizeof(announce_buf),
1775 						"Attempt to query device "
1776 						"size failed: %s, %s",
1777 						sense_key_desc,
1778 						asc_desc);
1779  				} else if ((have_sense == 0)
1780  				      && ((status & CAM_STATUS_MASK) ==
1781  					   CAM_SCSI_STATUS_ERROR)
1782  				      && (csio->scsi_status ==
1783  					  SCSI_STATUS_BUSY)) {
1784  					snprintf(announce_buf,
1785  					    sizeof(announce_buf),
1786  					    "Attempt to query device "
1787  					    "size failed: SCSI Status: %s",
1788 					    scsi_status_string(csio));
1789 				} else if (SID_TYPE(&cgd.inq_data) == T_CDROM) {
1790 					/*
1791 					 * We only print out an error for
1792 					 * CDROM type devices.  For WORM
1793 					 * devices, we don't print out an
1794 					 * error since a few WORM devices
1795 					 * don't support CDROM commands.
1796 					 * If we have sense information, go
1797 					 * ahead and print it out.
1798 					 * Otherwise, just say that we
1799 					 * couldn't attach.
1800 					 */
1801 
1802 					/*
1803 					 * Just print out the error, not
1804 					 * the full probe message, when we
1805 					 * don't attach.
1806 					 */
1807 					if (have_sense)
1808 						scsi_sense_print(
1809 							&done_ccb->csio);
1810 					else {
1811 						xpt_print_path(periph->path);
1812 						printf("got CAM status %#x\n",
1813 						       done_ccb->ccb_h.status);
1814 					}
1815 					xpt_print_path(periph->path);
1816 					printf("fatal error, failed"
1817 					       " to attach to device\n");
1818 
1819 					/*
1820 					 * Invalidate this peripheral.
1821 					 */
1822 					cam_periph_invalidate(periph);
1823 
1824 					announce_buf[0] = '\0';
1825 				} else {
1826 
1827 					/*
1828 					 * Invalidate this peripheral.
1829 					 */
1830 					cam_periph_invalidate(periph);
1831 					announce_buf[0] = '\0';
1832 				}
1833 			}
1834 		}
1835 		free(rdcap, M_TEMP);
1836 		if (announce_buf[0] != '\0') {
1837 			xpt_announce_periph(periph, announce_buf);
1838 			if (softc->flags & CD_FLAG_CHANGER)
1839 				cdchangerschedule(softc);
1840 		}
1841 		softc->state = CD_STATE_NORMAL;
1842 		/*
1843 		 * Since our peripheral may be invalidated by an error
1844 		 * above or an external event, we must release our CCB
1845 		 * before releasing the probe lock on the peripheral.
1846 		 * The peripheral will only go away once the last lock
1847 		 * is removed, and we need it around for the CCB release
1848 		 * operation.
1849 		 */
1850 		xpt_release_ccb(done_ccb);
1851 		cam_periph_unlock(periph);
1852 		return;
1853 	}
1854 	case CD_CCB_WAITING:
1855 	{
1856 		/* Caller will release the CCB */
1857 		CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
1858 			  ("trying to wakeup ccbwait\n"));
1859 
1860 		wakeup(&done_ccb->ccb_h.cbfcnp);
1861 		return;
1862 	}
1863 	default:
1864 		break;
1865 	}
1866 	xpt_release_ccb(done_ccb);
1867 }
1868 
1869 static union cd_pages *
1870 cdgetpage(struct cd_mode_params *mode_params)
1871 {
1872 	union cd_pages *page;
1873 
1874 	if (mode_params->cdb_size == 10)
1875 		page = (union cd_pages *)find_mode_page_10(
1876 			(struct scsi_mode_header_10 *)mode_params->mode_buf);
1877 	else
1878 		page = (union cd_pages *)find_mode_page_6(
1879 			(struct scsi_mode_header_6 *)mode_params->mode_buf);
1880 
1881 	return (page);
1882 }
1883 
1884 static int
1885 cdgetpagesize(int page_num)
1886 {
1887 	int i;
1888 
1889 	for (i = 0; i < (sizeof(cd_page_size_table)/
1890 	     sizeof(cd_page_size_table[0])); i++) {
1891 		if (cd_page_size_table[i].page == page_num)
1892 			return (cd_page_size_table[i].page_size);
1893 	}
1894 
1895 	return (-1);
1896 }
1897 
1898 static int
1899 cdioctl(dev_t dev, u_long cmd, caddr_t addr, int flag, struct thread *td)
1900 {
1901 
1902 	struct 	cam_periph *periph;
1903 	struct	cd_softc *softc;
1904 	int	error;
1905 
1906 	periph = (struct cam_periph *)dev->si_drv1;
1907 	if (periph == NULL)
1908 		return(ENXIO);
1909 
1910 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cdioctl\n"));
1911 
1912 	softc = (struct cd_softc *)periph->softc;
1913 
1914 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE,
1915 		  ("trying to do ioctl %#lx\n", cmd));
1916 
1917 	error = cam_periph_lock(periph, PRIBIO | PCATCH);
1918 
1919 	if (error != 0)
1920 		return(error);
1921 	/*
1922 	 * If we don't have media loaded, check for it.  If still don't
1923 	 * have media loaded, we can only do a load or eject.
1924 	 */
1925 	if (((softc->flags & CD_FLAG_VALID_MEDIA) == 0)
1926 	 && ((cmd != CDIOCCLOSE)
1927 	  && (cmd != CDIOCEJECT))) {
1928 		error = cdcheckmedia(periph);
1929 		if (error != 0) {
1930 			cam_periph_unlock(periph);
1931 			return (error);
1932 		}
1933 	}
1934 
1935 	switch (cmd) {
1936 
1937 	case DIOCGMEDIASIZE:
1938 		*(off_t *)addr =
1939 		    (off_t)softc->params.blksize * softc->params.disksize;
1940 		break;
1941 	case DIOCGSECTORSIZE:
1942 		*(u_int *)addr = softc->params.blksize;
1943 		break;
1944 
1945 	case CDIOCPLAYTRACKS:
1946 		{
1947 			struct ioc_play_track *args
1948 			    = (struct ioc_play_track *) addr;
1949 			struct cd_mode_params params;
1950 			union cd_pages *page;
1951 
1952 			params.alloc_len = sizeof(union cd_mode_data_6_10);
1953 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
1954 						 M_WAITOK | M_ZERO);
1955 
1956 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
1957 				  ("trying to do CDIOCPLAYTRACKS\n"));
1958 
1959 			error = cdgetmode(periph, &params, AUDIO_PAGE);
1960 			if (error) {
1961 				free(params.mode_buf, M_TEMP);
1962 				break;
1963 			}
1964 			page = cdgetpage(&params);
1965 
1966 			page->audio.flags &= ~CD_PA_SOTC;
1967 			page->audio.flags |= CD_PA_IMMED;
1968 			error = cdsetmode(periph, &params);
1969 			free(params.mode_buf, M_TEMP);
1970 			if (error)
1971 				break;
1972 
1973 			/*
1974 			 * This was originally implemented with the PLAY
1975 			 * AUDIO TRACK INDEX command, but that command was
1976 			 * deprecated after SCSI-2.  Most (all?) SCSI CDROM
1977 			 * drives support it but ATAPI and ATAPI-derivative
1978 			 * drives don't seem to support it.  So we keep a
1979 			 * cache of the table of contents and translate
1980 			 * track numbers to MSF format.
1981 			 */
1982 			if (softc->flags & CD_FLAG_VALID_TOC) {
1983 				union msf_lba *sentry, *eentry;
1984 				int st, et;
1985 
1986 				if (args->end_track <
1987 				    softc->toc.header.ending_track + 1)
1988 					args->end_track++;
1989 				if (args->end_track >
1990 				    softc->toc.header.ending_track + 1)
1991 					args->end_track =
1992 					    softc->toc.header.ending_track + 1;
1993 				st = args->start_track -
1994 					softc->toc.header.starting_track;
1995 				et = args->end_track -
1996 					softc->toc.header.starting_track;
1997 				if ((st < 0)
1998 				 || (et < 0)
1999 			 	 || (st > (softc->toc.header.ending_track -
2000 				     softc->toc.header.starting_track))) {
2001 					error = EINVAL;
2002 					break;
2003 				}
2004 				sentry = &softc->toc.entries[st].addr;
2005 				eentry = &softc->toc.entries[et].addr;
2006 				error = cdplaymsf(periph,
2007 						  sentry->msf.minute,
2008 						  sentry->msf.second,
2009 						  sentry->msf.frame,
2010 						  eentry->msf.minute,
2011 						  eentry->msf.second,
2012 						  eentry->msf.frame);
2013 			} else {
2014 				/*
2015 				 * If we don't have a valid TOC, try the
2016 				 * play track index command.  It is part of
2017 				 * the SCSI-2 spec, but was removed in the
2018 				 * MMC specs.  ATAPI and ATAPI-derived
2019 				 * drives don't support it.
2020 				 */
2021 				if (softc->quirks & CD_Q_BCD_TRACKS) {
2022 					args->start_track =
2023 						bin2bcd(args->start_track);
2024 					args->end_track =
2025 						bin2bcd(args->end_track);
2026 				}
2027 				error = cdplaytracks(periph,
2028 						     args->start_track,
2029 						     args->start_index,
2030 						     args->end_track,
2031 						     args->end_index);
2032 			}
2033 		}
2034 		break;
2035 	case CDIOCPLAYMSF:
2036 		{
2037 			struct ioc_play_msf *args
2038 				= (struct ioc_play_msf *) addr;
2039 			struct cd_mode_params params;
2040 			union cd_pages *page;
2041 
2042 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2043 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2044 						 M_WAITOK | M_ZERO);
2045 
2046 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2047 				  ("trying to do CDIOCPLAYMSF\n"));
2048 
2049 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2050 			if (error) {
2051 				free(params.mode_buf, M_TEMP);
2052 				break;
2053 			}
2054 			page = cdgetpage(&params);
2055 
2056 			page->audio.flags &= ~CD_PA_SOTC;
2057 			page->audio.flags |= CD_PA_IMMED;
2058 			error = cdsetmode(periph, &params);
2059 			free(params.mode_buf, M_TEMP);
2060 			if (error)
2061 				break;
2062 			error = cdplaymsf(periph,
2063 					  args->start_m,
2064 					  args->start_s,
2065 					  args->start_f,
2066 					  args->end_m,
2067 					  args->end_s,
2068 					  args->end_f);
2069 		}
2070 		break;
2071 	case CDIOCPLAYBLOCKS:
2072 		{
2073 			struct ioc_play_blocks *args
2074 				= (struct ioc_play_blocks *) addr;
2075 			struct cd_mode_params params;
2076 			union cd_pages *page;
2077 
2078 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2079 				  ("trying to do CDIOCPLAYBLOCKS\n"));
2080 
2081 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2082 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2083 						 M_WAITOK | M_ZERO);
2084 
2085 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2086 			if (error) {
2087 				free(params.mode_buf, M_TEMP);
2088 				break;
2089 			}
2090 			page = cdgetpage(&params);
2091 
2092 			page->audio.flags &= ~CD_PA_SOTC;
2093 			page->audio.flags |= CD_PA_IMMED;
2094 			error = cdsetmode(periph, &params);
2095 			free(params.mode_buf, M_TEMP);
2096 			if (error)
2097 				break;
2098 			error = cdplay(periph, args->blk, args->len);
2099 		}
2100 		break;
2101 	case CDIOCREADSUBCHANNEL:
2102 		{
2103 			struct ioc_read_subchannel *args
2104 				= (struct ioc_read_subchannel *) addr;
2105 			struct cd_sub_channel_info *data;
2106 			u_int32_t len = args->data_len;
2107 
2108 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2109 				  ("trying to do CDIOCREADSUBCHANNEL\n"));
2110 
2111 			data = malloc(sizeof(struct cd_sub_channel_info),
2112 				      M_TEMP, M_WAITOK);
2113 
2114 			if ((len > sizeof(struct cd_sub_channel_info)) ||
2115 			    (len < sizeof(struct cd_sub_channel_header))) {
2116 				printf(
2117 					"scsi_cd: cdioctl: "
2118 					"cdioreadsubchannel: error, len=%d\n",
2119 					len);
2120 				error = EINVAL;
2121 				free(data, M_TEMP);
2122 				break;
2123 			}
2124 
2125 			if (softc->quirks & CD_Q_BCD_TRACKS)
2126 				args->track = bin2bcd(args->track);
2127 
2128 			error = cdreadsubchannel(periph, args->address_format,
2129 				args->data_format, args->track, data, len);
2130 
2131 			if (error) {
2132 				free(data, M_TEMP);
2133 	 			break;
2134 			}
2135 			if (softc->quirks & CD_Q_BCD_TRACKS)
2136 				data->what.track_info.track_number =
2137 				    bcd2bin(data->what.track_info.track_number);
2138 			len = min(len, ((data->header.data_len[0] << 8) +
2139 				data->header.data_len[1] +
2140 				sizeof(struct cd_sub_channel_header)));
2141 			if (copyout(data, args->data, len) != 0) {
2142 				error = EFAULT;
2143 			}
2144 			free(data, M_TEMP);
2145 		}
2146 		break;
2147 
2148 	case CDIOREADTOCHEADER:
2149 		{
2150 			struct ioc_toc_header *th;
2151 
2152 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2153 				  ("trying to do CDIOREADTOCHEADER\n"));
2154 
2155 			th = malloc(sizeof(struct ioc_toc_header), M_TEMP,
2156 				    M_WAITOK);
2157 			error = cdreadtoc(periph, 0, 0, (u_int8_t *)th,
2158 				          sizeof (*th), /*sense_flags*/0);
2159 			if (error) {
2160 				free(th, M_TEMP);
2161 				break;
2162 			}
2163 			if (softc->quirks & CD_Q_BCD_TRACKS) {
2164 				/* we are going to have to convert the BCD
2165 				 * encoding on the cd to what is expected
2166 				 */
2167 				th->starting_track =
2168 					bcd2bin(th->starting_track);
2169 				th->ending_track = bcd2bin(th->ending_track);
2170 			}
2171 			th->len = ntohs(th->len);
2172 			bcopy(th, addr, sizeof(*th));
2173 			free(th, M_TEMP);
2174 		}
2175 		break;
2176 	case CDIOREADTOCENTRYS:
2177 		{
2178 			struct cd_tocdata *data;
2179 			struct cd_toc_single *lead;
2180 			struct ioc_read_toc_entry *te =
2181 				(struct ioc_read_toc_entry *) addr;
2182 			struct ioc_toc_header *th;
2183 			u_int32_t len, readlen, idx, num;
2184 			u_int32_t starting_track = te->starting_track;
2185 
2186 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2187 				  ("trying to do CDIOREADTOCENTRYS\n"));
2188 
2189 			data = malloc(sizeof(*data), M_TEMP, M_WAITOK);
2190 			lead = malloc(sizeof(*lead), M_TEMP, M_WAITOK);
2191 
2192 			if (te->data_len < sizeof(struct cd_toc_entry)
2193 			 || (te->data_len % sizeof(struct cd_toc_entry)) != 0
2194 			 || (te->address_format != CD_MSF_FORMAT
2195 			  && te->address_format != CD_LBA_FORMAT)) {
2196 				error = EINVAL;
2197 				printf("scsi_cd: error in readtocentries, "
2198 				       "returning EINVAL\n");
2199 				free(data, M_TEMP);
2200 				free(lead, M_TEMP);
2201 				break;
2202 			}
2203 
2204 			th = &data->header;
2205 			error = cdreadtoc(periph, 0, 0, (u_int8_t *)th,
2206 					  sizeof (*th), /*sense_flags*/0);
2207 			if (error) {
2208 				free(data, M_TEMP);
2209 				free(lead, M_TEMP);
2210 				break;
2211 			}
2212 
2213 			if (softc->quirks & CD_Q_BCD_TRACKS) {
2214 				/* we are going to have to convert the BCD
2215 				 * encoding on the cd to what is expected
2216 				 */
2217 				th->starting_track =
2218 				    bcd2bin(th->starting_track);
2219 				th->ending_track = bcd2bin(th->ending_track);
2220 			}
2221 
2222 			if (starting_track == 0)
2223 				starting_track = th->starting_track;
2224 			else if (starting_track == LEADOUT)
2225 				starting_track = th->ending_track + 1;
2226 			else if (starting_track < th->starting_track ||
2227 				 starting_track > th->ending_track + 1) {
2228 				printf("scsi_cd: error in readtocentries, "
2229 				       "returning EINVAL\n");
2230 				free(data, M_TEMP);
2231 				free(lead, M_TEMP);
2232 				error = EINVAL;
2233 				break;
2234 			}
2235 
2236 			/* calculate reading length without leadout entry */
2237 			readlen = (th->ending_track - starting_track + 1) *
2238 				  sizeof(struct cd_toc_entry);
2239 
2240 			/* and with leadout entry */
2241 			len = readlen + sizeof(struct cd_toc_entry);
2242 			if (te->data_len < len) {
2243 				len = te->data_len;
2244 				if (readlen > len)
2245 					readlen = len;
2246 			}
2247 			if (len > sizeof(data->entries)) {
2248 				printf("scsi_cd: error in readtocentries, "
2249 				       "returning EINVAL\n");
2250 				error = EINVAL;
2251 				free(data, M_TEMP);
2252 				free(lead, M_TEMP);
2253 				break;
2254 			}
2255 			num = len / sizeof(struct cd_toc_entry);
2256 
2257 			if (readlen > 0) {
2258 				error = cdreadtoc(periph, te->address_format,
2259 						  starting_track,
2260 						  (u_int8_t *)data,
2261 						  readlen + sizeof (*th),
2262 						  /*sense_flags*/0);
2263 				if (error) {
2264 					free(data, M_TEMP);
2265 					free(lead, M_TEMP);
2266 					break;
2267 				}
2268 			}
2269 
2270 			/* make leadout entry if needed */
2271 			idx = starting_track + num - 1;
2272 			if (softc->quirks & CD_Q_BCD_TRACKS)
2273 				th->ending_track = bcd2bin(th->ending_track);
2274 			if (idx == th->ending_track + 1) {
2275 				error = cdreadtoc(periph, te->address_format,
2276 						  LEADOUT, (u_int8_t *)lead,
2277 						  sizeof(*lead),
2278 						  /*sense_flags*/0);
2279 				if (error) {
2280 					free(data, M_TEMP);
2281 					free(lead, M_TEMP);
2282 					break;
2283 				}
2284 				data->entries[idx - starting_track] =
2285 					lead->entry;
2286 			}
2287 			if (softc->quirks & CD_Q_BCD_TRACKS) {
2288 				for (idx = 0; idx < num - 1; idx++) {
2289 					data->entries[idx].track =
2290 					    bcd2bin(data->entries[idx].track);
2291 				}
2292 			}
2293 
2294 			error = copyout(data->entries, te->data, len);
2295 			free(data, M_TEMP);
2296 			free(lead, M_TEMP);
2297 		}
2298 		break;
2299 	case CDIOREADTOCENTRY:
2300 		{
2301 			struct cd_toc_single *data;
2302 			struct ioc_read_toc_single_entry *te =
2303 				(struct ioc_read_toc_single_entry *) addr;
2304 			struct ioc_toc_header *th;
2305 			u_int32_t track;
2306 
2307 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2308 				  ("trying to do CDIOREADTOCENTRY\n"));
2309 
2310 			data = malloc(sizeof(*data), M_TEMP, M_WAITOK);
2311 
2312 			if (te->address_format != CD_MSF_FORMAT
2313 			    && te->address_format != CD_LBA_FORMAT) {
2314 				printf("error in readtocentry, "
2315 				       " returning EINVAL\n");
2316 				free(data, M_TEMP);
2317 				error = EINVAL;
2318 				break;
2319 			}
2320 
2321 			th = &data->header;
2322 			error = cdreadtoc(periph, 0, 0, (u_int8_t *)th,
2323 					  sizeof (*th), /*sense_flags*/0);
2324 			if (error) {
2325 				free(data, M_TEMP);
2326 				break;
2327 			}
2328 
2329 			if (softc->quirks & CD_Q_BCD_TRACKS) {
2330 				/* we are going to have to convert the BCD
2331 				 * encoding on the cd to what is expected
2332 				 */
2333 				th->starting_track =
2334 				    bcd2bin(th->starting_track);
2335 				th->ending_track = bcd2bin(th->ending_track);
2336 			}
2337 			track = te->track;
2338 			if (track == 0)
2339 				track = th->starting_track;
2340 			else if (track == LEADOUT)
2341 				/* OK */;
2342 			else if (track < th->starting_track ||
2343 				 track > th->ending_track + 1) {
2344 				printf("error in readtocentry, "
2345 				       " returning EINVAL\n");
2346 				free(data, M_TEMP);
2347 				error = EINVAL;
2348 				break;
2349 			}
2350 
2351 			error = cdreadtoc(periph, te->address_format, track,
2352 					  (u_int8_t *)data, sizeof(*data),
2353 					  /*sense_flags*/0);
2354 			if (error) {
2355 				free(data, M_TEMP);
2356 				break;
2357 			}
2358 
2359 			if (softc->quirks & CD_Q_BCD_TRACKS)
2360 				data->entry.track = bcd2bin(data->entry.track);
2361 			bcopy(&data->entry, &te->entry,
2362 			      sizeof(struct cd_toc_entry));
2363 			free(data, M_TEMP);
2364 		}
2365 		break;
2366 	case CDIOCSETPATCH:
2367 		{
2368 			struct ioc_patch *arg = (struct ioc_patch *)addr;
2369 			struct cd_mode_params params;
2370 			union cd_pages *page;
2371 
2372 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2373 				  ("trying to do CDIOCSETPATCH\n"));
2374 
2375 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2376 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2377 						 M_WAITOK | M_ZERO);
2378 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2379 			if (error) {
2380 				free(params.mode_buf, M_TEMP);
2381 				break;
2382 			}
2383 			page = cdgetpage(&params);
2384 
2385 			page->audio.port[LEFT_PORT].channels =
2386 				arg->patch[0];
2387 			page->audio.port[RIGHT_PORT].channels =
2388 				arg->patch[1];
2389 			page->audio.port[2].channels = arg->patch[2];
2390 			page->audio.port[3].channels = arg->patch[3];
2391 			error = cdsetmode(periph, &params);
2392 			free(params.mode_buf, M_TEMP);
2393 		}
2394 		break;
2395 	case CDIOCGETVOL:
2396 		{
2397 			struct ioc_vol *arg = (struct ioc_vol *) addr;
2398 			struct cd_mode_params params;
2399 			union cd_pages *page;
2400 
2401 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2402 				  ("trying to do CDIOCGETVOL\n"));
2403 
2404 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2405 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2406 						 M_WAITOK | M_ZERO);
2407 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2408 			if (error) {
2409 				free(params.mode_buf, M_TEMP);
2410 				break;
2411 			}
2412 			page = cdgetpage(&params);
2413 
2414 			arg->vol[LEFT_PORT] =
2415 				page->audio.port[LEFT_PORT].volume;
2416 			arg->vol[RIGHT_PORT] =
2417 				page->audio.port[RIGHT_PORT].volume;
2418 			arg->vol[2] = page->audio.port[2].volume;
2419 			arg->vol[3] = page->audio.port[3].volume;
2420 			free(params.mode_buf, M_TEMP);
2421 		}
2422 		break;
2423 	case CDIOCSETVOL:
2424 		{
2425 			struct ioc_vol *arg = (struct ioc_vol *) addr;
2426 			struct cd_mode_params params;
2427 			union cd_pages *page;
2428 
2429 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2430 				  ("trying to do CDIOCSETVOL\n"));
2431 
2432 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2433 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2434 						 M_WAITOK | M_ZERO);
2435 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2436 			if (error) {
2437 				free(params.mode_buf, M_TEMP);
2438 				break;
2439 			}
2440 			page = cdgetpage(&params);
2441 
2442 			page->audio.port[LEFT_PORT].channels = CHANNEL_0;
2443 			page->audio.port[LEFT_PORT].volume =
2444 				arg->vol[LEFT_PORT];
2445 			page->audio.port[RIGHT_PORT].channels = CHANNEL_1;
2446 			page->audio.port[RIGHT_PORT].volume =
2447 				arg->vol[RIGHT_PORT];
2448 			page->audio.port[2].volume = arg->vol[2];
2449 			page->audio.port[3].volume = arg->vol[3];
2450 			error = cdsetmode(periph, &params);
2451 			free(params.mode_buf, M_TEMP);
2452 		}
2453 		break;
2454 	case CDIOCSETMONO:
2455 		{
2456 			struct cd_mode_params params;
2457 			union cd_pages *page;
2458 
2459 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2460 				  ("trying to do CDIOCSETMONO\n"));
2461 
2462 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2463 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2464 						 M_WAITOK | M_ZERO);
2465 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2466 			if (error) {
2467 				free(params.mode_buf, M_TEMP);
2468 				break;
2469 			}
2470 			page = cdgetpage(&params);
2471 
2472 			page->audio.port[LEFT_PORT].channels =
2473 				LEFT_CHANNEL | RIGHT_CHANNEL;
2474 			page->audio.port[RIGHT_PORT].channels =
2475 				LEFT_CHANNEL | RIGHT_CHANNEL;
2476 			page->audio.port[2].channels = 0;
2477 			page->audio.port[3].channels = 0;
2478 			error = cdsetmode(periph, &params);
2479 			free(params.mode_buf, M_TEMP);
2480 		}
2481 		break;
2482 	case CDIOCSETSTEREO:
2483 		{
2484 			struct cd_mode_params params;
2485 			union cd_pages *page;
2486 
2487 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2488 				  ("trying to do CDIOCSETSTEREO\n"));
2489 
2490 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2491 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2492 						 M_WAITOK | M_ZERO);
2493 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2494 			if (error) {
2495 				free(params.mode_buf, M_TEMP);
2496 				break;
2497 			}
2498 			page = cdgetpage(&params);
2499 
2500 			page->audio.port[LEFT_PORT].channels =
2501 				LEFT_CHANNEL;
2502 			page->audio.port[RIGHT_PORT].channels =
2503 				RIGHT_CHANNEL;
2504 			page->audio.port[2].channels = 0;
2505 			page->audio.port[3].channels = 0;
2506 			error = cdsetmode(periph, &params);
2507 			free(params.mode_buf, M_TEMP);
2508 		}
2509 		break;
2510 	case CDIOCSETMUTE:
2511 		{
2512 			struct cd_mode_params params;
2513 			union cd_pages *page;
2514 
2515 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2516 				  ("trying to do CDIOCSETMUTE\n"));
2517 
2518 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2519 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2520 						 M_WAITOK | M_ZERO);
2521 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2522 			if (error) {
2523 				free(&params, M_TEMP);
2524 				break;
2525 			}
2526 			page = cdgetpage(&params);
2527 
2528 			page->audio.port[LEFT_PORT].channels = 0;
2529 			page->audio.port[RIGHT_PORT].channels = 0;
2530 			page->audio.port[2].channels = 0;
2531 			page->audio.port[3].channels = 0;
2532 			error = cdsetmode(periph, &params);
2533 			free(params.mode_buf, M_TEMP);
2534 		}
2535 		break;
2536 	case CDIOCSETLEFT:
2537 		{
2538 			struct cd_mode_params params;
2539 			union cd_pages *page;
2540 
2541 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2542 				  ("trying to do CDIOCSETLEFT\n"));
2543 
2544 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2545 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2546 						 M_WAITOK | M_ZERO);
2547 
2548 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2549 			if (error) {
2550 				free(params.mode_buf, M_TEMP);
2551 				break;
2552 			}
2553 			page = cdgetpage(&params);
2554 
2555 			page->audio.port[LEFT_PORT].channels = LEFT_CHANNEL;
2556 			page->audio.port[RIGHT_PORT].channels = LEFT_CHANNEL;
2557 			page->audio.port[2].channels = 0;
2558 			page->audio.port[3].channels = 0;
2559 			error = cdsetmode(periph, &params);
2560 			free(params.mode_buf, M_TEMP);
2561 		}
2562 		break;
2563 	case CDIOCSETRIGHT:
2564 		{
2565 			struct cd_mode_params params;
2566 			union cd_pages *page;
2567 
2568 			CAM_DEBUG(periph->path, CAM_DEBUG_SUBTRACE,
2569 				  ("trying to do CDIOCSETRIGHT\n"));
2570 
2571 			params.alloc_len = sizeof(union cd_mode_data_6_10);
2572 			params.mode_buf = malloc(params.alloc_len, M_TEMP,
2573 						 M_WAITOK | M_ZERO);
2574 
2575 			error = cdgetmode(periph, &params, AUDIO_PAGE);
2576 			if (error) {
2577 				free(params.mode_buf, M_TEMP);
2578 				break;
2579 			}
2580 			page = cdgetpage(&params);
2581 
2582 			page->audio.port[LEFT_PORT].channels = RIGHT_CHANNEL;
2583 			page->audio.port[RIGHT_PORT].channels = RIGHT_CHANNEL;
2584 			page->audio.port[2].channels = 0;
2585 			page->audio.port[3].channels = 0;
2586 			error = cdsetmode(periph, &params);
2587 			free(params.mode_buf, M_TEMP);
2588 		}
2589 		break;
2590 	case CDIOCRESUME:
2591 		error = cdpause(periph, 1);
2592 		break;
2593 	case CDIOCPAUSE:
2594 		error = cdpause(periph, 0);
2595 		break;
2596 	case CDIOCSTART:
2597 		error = cdstartunit(periph, 0);
2598 		break;
2599 	case CDIOCCLOSE:
2600 		error = cdstartunit(periph, 1);
2601 		break;
2602 	case CDIOCSTOP:
2603 		error = cdstopunit(periph, 0);
2604 		break;
2605 	case CDIOCEJECT:
2606 		error = cdstopunit(periph, 1);
2607 		break;
2608 	case CDIOCALLOW:
2609 		cdprevent(periph, PR_ALLOW);
2610 		break;
2611 	case CDIOCPREVENT:
2612 		cdprevent(periph, PR_PREVENT);
2613 		break;
2614 	case CDIOCSETDEBUG:
2615 		/* sc_link->flags |= (SDEV_DB1 | SDEV_DB2); */
2616 		error = ENOTTY;
2617 		break;
2618 	case CDIOCCLRDEBUG:
2619 		/* sc_link->flags &= ~(SDEV_DB1 | SDEV_DB2); */
2620 		error = ENOTTY;
2621 		break;
2622 	case CDIOCRESET:
2623 		/* return (cd_reset(periph)); */
2624 		error = ENOTTY;
2625 		break;
2626 	case CDRIOCREADSPEED:
2627 		error = cdsetspeed(periph, *(u_int32_t *)addr, CDR_MAX_SPEED);
2628 		break;
2629 	case CDRIOCWRITESPEED:
2630 		error = cdsetspeed(periph, CDR_MAX_SPEED, *(u_int32_t *)addr);
2631 		break;
2632 	case DVDIOCSENDKEY:
2633 	case DVDIOCREPORTKEY: {
2634 		struct dvd_authinfo *authinfo;
2635 
2636 		authinfo = (struct dvd_authinfo *)addr;
2637 
2638 		if (cmd == DVDIOCREPORTKEY)
2639 			error = cdreportkey(periph, authinfo);
2640 		else
2641 			error = cdsendkey(periph, authinfo);
2642 		break;
2643 		}
2644 	case DVDIOCREADSTRUCTURE: {
2645 		struct dvd_struct *dvdstruct;
2646 
2647 		dvdstruct = (struct dvd_struct *)addr;
2648 
2649 		error = cdreaddvdstructure(periph, dvdstruct);
2650 
2651 		break;
2652 	}
2653 	default:
2654 		error = cam_periph_ioctl(periph, cmd, addr, cderror);
2655 		break;
2656 	}
2657 
2658 	cam_periph_unlock(periph);
2659 
2660 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("leaving cdioctl\n"));
2661 	if (error && bootverbose) {
2662 		printf("scsi_cd.c::ioctl cmd=%08lx error=%d\n", cmd, error);
2663 	}
2664 
2665 	return (error);
2666 }
2667 
2668 static void
2669 cdprevent(struct cam_periph *periph, int action)
2670 {
2671 	union	ccb *ccb;
2672 	struct	cd_softc *softc;
2673 	int	error;
2674 
2675 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cdprevent\n"));
2676 
2677 	softc = (struct cd_softc *)periph->softc;
2678 
2679 	if (((action == PR_ALLOW)
2680 	  && (softc->flags & CD_FLAG_DISC_LOCKED) == 0)
2681 	 || ((action == PR_PREVENT)
2682 	  && (softc->flags & CD_FLAG_DISC_LOCKED) != 0)) {
2683 		return;
2684 	}
2685 
2686 	ccb = cdgetccb(periph, /* priority */ 1);
2687 
2688 	scsi_prevent(&ccb->csio,
2689 		     /*retries*/ 1,
2690 		     cddone,
2691 		     MSG_SIMPLE_Q_TAG,
2692 		     action,
2693 		     SSD_FULL_SIZE,
2694 		     /* timeout */60000);
2695 
2696 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
2697 			/*sense_flags*/SF_RETRY_UA|SF_NO_PRINT);
2698 
2699 	xpt_release_ccb(ccb);
2700 
2701 	if (error == 0) {
2702 		if (action == PR_ALLOW)
2703 			softc->flags &= ~CD_FLAG_DISC_LOCKED;
2704 		else
2705 			softc->flags |= CD_FLAG_DISC_LOCKED;
2706 	}
2707 }
2708 
2709 static int
2710 cdcheckmedia(struct cam_periph *periph)
2711 {
2712 	struct cd_softc *softc;
2713 	struct ioc_toc_header *toch;
2714 	struct cd_toc_single leadout;
2715 	u_int32_t size, toclen;
2716 	int error, num_entries, cdindex;
2717 
2718 	softc = (struct cd_softc *)periph->softc;
2719 
2720 	cdprevent(periph, PR_PREVENT);
2721 
2722 	/*
2723 	 * Get the disc size and block size.  If we can't get it, we don't
2724 	 * have media, most likely.
2725 	 */
2726 	if ((error = cdsize(periph, &size)) != 0) {
2727 		softc->flags &= ~(CD_FLAG_VALID_MEDIA|CD_FLAG_VALID_TOC);
2728 		cdprevent(periph, PR_ALLOW);
2729 		return (error);
2730 	} else
2731 		softc->flags |= CD_FLAG_VALID_MEDIA;
2732 
2733 	/*
2734 	 * Now we check the table of contents.  This (currently) is only
2735 	 * used for the CDIOCPLAYTRACKS ioctl.  It may be used later to do
2736 	 * things like present a separate entry in /dev for each track,
2737 	 * like that acd(4) driver does.
2738 	 */
2739 	bzero(&softc->toc, sizeof(softc->toc));
2740 	toch = &softc->toc.header;
2741 	/*
2742 	 * We will get errors here for media that doesn't have a table of
2743 	 * contents.  According to the MMC-3 spec: "When a Read TOC/PMA/ATIP
2744 	 * command is presented for a DDCD/CD-R/RW media, where the first TOC
2745 	 * has not been recorded (no complete session) and the Format codes
2746 	 * 0000b, 0001b, or 0010b are specified, this command shall be rejected
2747 	 * with an INVALID FIELD IN CDB.  Devices that are not capable of
2748 	 * reading an incomplete session on DDC/CD-R/RW media shall report
2749 	 * CANNOT READ MEDIUM - INCOMPATIBLE FORMAT."
2750 	 *
2751 	 * So this isn't fatal if we can't read the table of contents, it
2752 	 * just means that the user won't be able to issue the play tracks
2753 	 * ioctl, and likely lots of other stuff won't work either.  They
2754 	 * need to burn the CD before we can do a whole lot with it.  So
2755 	 * we don't print anything here if we get an error back.
2756 	 */
2757 	error = cdreadtoc(periph, 0, 0, (u_int8_t *)toch, sizeof(*toch),
2758 			  SF_NO_PRINT);
2759 	/*
2760 	 * Errors in reading the table of contents aren't fatal, we just
2761 	 * won't have a valid table of contents cached.
2762 	 */
2763 	if (error != 0) {
2764 		error = 0;
2765 		bzero(&softc->toc, sizeof(softc->toc));
2766 		goto bailout;
2767 	}
2768 
2769 	if (softc->quirks & CD_Q_BCD_TRACKS) {
2770 		toch->starting_track = bcd2bin(toch->starting_track);
2771 		toch->ending_track = bcd2bin(toch->ending_track);
2772 	}
2773 
2774 	/* Number of TOC entries, plus leadout */
2775 	num_entries = (toch->ending_track - toch->starting_track) + 2;
2776 
2777 	if (num_entries <= 0)
2778 		goto bailout;
2779 
2780 	toclen = num_entries * sizeof(struct cd_toc_entry);
2781 
2782 	error = cdreadtoc(periph, CD_MSF_FORMAT, toch->starting_track,
2783 			  (u_int8_t *)&softc->toc, toclen + sizeof(*toch),
2784 			  SF_NO_PRINT);
2785 	if (error != 0) {
2786 		error = 0;
2787 		bzero(&softc->toc, sizeof(softc->toc));
2788 		goto bailout;
2789 	}
2790 
2791 	if (softc->quirks & CD_Q_BCD_TRACKS) {
2792 		toch->starting_track = bcd2bin(toch->starting_track);
2793 		toch->ending_track = bcd2bin(toch->ending_track);
2794 	}
2795 	/*
2796 	 * XXX KDM is this necessary?  Probably only if the drive doesn't
2797 	 * return leadout information with the table of contents.
2798 	 */
2799 	cdindex = toch->starting_track + num_entries -1;
2800 	if (cdindex == toch->ending_track + 1) {
2801 
2802 		error = cdreadtoc(periph, CD_MSF_FORMAT, LEADOUT,
2803 				  (u_int8_t *)&leadout, sizeof(leadout),
2804 				  SF_NO_PRINT);
2805 		if (error != 0) {
2806 			error = 0;
2807 			goto bailout;
2808 		}
2809 		softc->toc.entries[cdindex - toch->starting_track] =
2810 			leadout.entry;
2811 	}
2812 	if (softc->quirks & CD_Q_BCD_TRACKS) {
2813 		for (cdindex = 0; cdindex < num_entries - 1; cdindex++) {
2814 			softc->toc.entries[cdindex].track =
2815 				bcd2bin(softc->toc.entries[cdindex].track);
2816 		}
2817 	}
2818 
2819 	softc->flags |= CD_FLAG_VALID_TOC;
2820 
2821 bailout:
2822 
2823 	/*
2824 	 * We unconditionally (re)set the blocksize each time the
2825 	 * CD device is opened.  This is because the CD can change,
2826 	 * and therefore the blocksize might change.
2827 	 * XXX problems here if some slice or partition is still
2828 	 * open with the old size?
2829 	 */
2830 	if ((softc->device_stats->flags & DEVSTAT_BS_UNAVAILABLE) != 0)
2831 		softc->device_stats->flags &= ~DEVSTAT_BS_UNAVAILABLE;
2832 	softc->device_stats->block_size = softc->params.blksize;
2833 
2834 	return (error);
2835 }
2836 
2837 static int
2838 cdsize(struct cam_periph *periph, u_int32_t *size)
2839 {
2840 	struct cd_softc *softc;
2841 	union ccb *ccb;
2842 	struct scsi_read_capacity_data *rcap_buf;
2843 	int error;
2844 
2845 	CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, ("entering cdsize\n"));
2846 
2847 	softc = (struct cd_softc *)periph->softc;
2848 
2849 	ccb = cdgetccb(periph, /* priority */ 1);
2850 
2851 	rcap_buf = malloc(sizeof(struct scsi_read_capacity_data),
2852 			  M_TEMP, M_WAITOK);
2853 
2854 	scsi_read_capacity(&ccb->csio,
2855 			   /*retries*/ 1,
2856 			   cddone,
2857 			   MSG_SIMPLE_Q_TAG,
2858 			   rcap_buf,
2859 			   SSD_FULL_SIZE,
2860 			   /* timeout */20000);
2861 
2862 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
2863 			 /*sense_flags*/SF_RETRY_UA|SF_NO_PRINT);
2864 
2865 	xpt_release_ccb(ccb);
2866 
2867 	softc->params.disksize = scsi_4btoul(rcap_buf->addr) + 1;
2868 	softc->params.blksize  = scsi_4btoul(rcap_buf->length);
2869 	/*
2870 	 * SCSI-3 mandates that the reported blocksize shall be 2048.
2871 	 * Older drives sometimes report funny values, trim it down to
2872 	 * 2048, or other parts of the kernel will get confused.
2873 	 *
2874 	 * XXX we leave drives alone that might report 512 bytes, as
2875 	 * well as drives reporting more weird sizes like perhaps 4K.
2876 	 */
2877 	if (softc->params.blksize > 2048 && softc->params.blksize <= 2352)
2878 		softc->params.blksize = 2048;
2879 
2880 	free(rcap_buf, M_TEMP);
2881 	*size = softc->params.disksize;
2882 
2883 	return (error);
2884 
2885 }
2886 
2887 static int
2888 cd6byteworkaround(union ccb *ccb)
2889 {
2890 	u_int8_t *cdb;
2891 	struct cam_periph *periph;
2892 	struct cd_softc *softc;
2893 	struct cd_mode_params *params;
2894 	int frozen, found;
2895 
2896 	periph = xpt_path_periph(ccb->ccb_h.path);
2897 	softc = (struct cd_softc *)periph->softc;
2898 
2899 	cdb = ccb->csio.cdb_io.cdb_bytes;
2900 
2901 	if ((ccb->ccb_h.flags & CAM_CDB_POINTER)
2902 	 || ((cdb[0] != MODE_SENSE_6)
2903 	  && (cdb[0] != MODE_SELECT_6)))
2904 		return (0);
2905 
2906 	/*
2907 	 * Because there is no convenient place to stash the overall
2908 	 * cd_mode_params structure pointer, we have to grab it like this.
2909 	 * This means that ALL MODE_SENSE and MODE_SELECT requests in the
2910 	 * cd(4) driver MUST go through cdgetmode() and cdsetmode()!
2911 	 *
2912 	 * XXX It would be nice if, at some point, we could increase the
2913 	 * number of available peripheral private pointers.  Both pointers
2914 	 * are currently used in most every peripheral driver.
2915 	 */
2916 	found = 0;
2917 
2918 	STAILQ_FOREACH(params, &softc->mode_queue, links) {
2919 		if (params->mode_buf == ccb->csio.data_ptr) {
2920 			found = 1;
2921 			break;
2922 		}
2923 	}
2924 
2925 	/*
2926 	 * This shouldn't happen.  All mode sense and mode select
2927 	 * operations in the cd(4) driver MUST go through cdgetmode() and
2928 	 * cdsetmode()!
2929 	 */
2930 	if (found == 0) {
2931 		xpt_print_path(periph->path);
2932 		printf("mode buffer not found in mode queue!\n");
2933 		return (0);
2934 	}
2935 
2936 	params->cdb_size = 10;
2937 	softc->minimum_command_size = 10;
2938 	xpt_print_path(ccb->ccb_h.path);
2939 	printf("%s(6) failed, increasing minimum CDB size to 10 bytes\n",
2940 	       (cdb[0] == MODE_SENSE_6) ? "MODE_SENSE" : "MODE_SELECT");
2941 
2942 	if (cdb[0] == MODE_SENSE_6) {
2943 		struct scsi_mode_sense_10 ms10;
2944 		struct scsi_mode_sense_6 *ms6;
2945 		int len;
2946 
2947 		ms6 = (struct scsi_mode_sense_6 *)cdb;
2948 
2949 		bzero(&ms10, sizeof(ms10));
2950  		ms10.opcode = MODE_SENSE_10;
2951  		ms10.byte2 = ms6->byte2;
2952  		ms10.page = ms6->page;
2953 
2954 		/*
2955 		 * 10 byte mode header, block descriptor,
2956 		 * sizeof(union cd_pages)
2957 		 */
2958 		len = sizeof(struct cd_mode_data_10);
2959 		ccb->csio.dxfer_len = len;
2960 
2961 		scsi_ulto2b(len, ms10.length);
2962 		ms10.control = ms6->control;
2963 		bcopy(&ms10, cdb, 10);
2964 		ccb->csio.cdb_len = 10;
2965 	} else {
2966 		struct scsi_mode_select_10 ms10;
2967 		struct scsi_mode_select_6 *ms6;
2968 		struct scsi_mode_header_6 *header6;
2969 		struct scsi_mode_header_10 *header10;
2970 		struct scsi_mode_page_header *page_header;
2971 		int blk_desc_len, page_num, page_size, len;
2972 
2973 		ms6 = (struct scsi_mode_select_6 *)cdb;
2974 
2975 		bzero(&ms10, sizeof(ms10));
2976 		ms10.opcode = MODE_SELECT_10;
2977 		ms10.byte2 = ms6->byte2;
2978 
2979 		header6 = (struct scsi_mode_header_6 *)params->mode_buf;
2980 		header10 = (struct scsi_mode_header_10 *)params->mode_buf;
2981 
2982 		page_header = find_mode_page_6(header6);
2983 		page_num = page_header->page_code;
2984 
2985 		blk_desc_len = header6->blk_desc_len;
2986 
2987 		page_size = cdgetpagesize(page_num);
2988 
2989 		if (page_size != (page_header->page_length +
2990 		    sizeof(*page_header)))
2991 			page_size = page_header->page_length +
2992 				sizeof(*page_header);
2993 
2994 		len = sizeof(*header10) + blk_desc_len + page_size;
2995 
2996 		len = min(params->alloc_len, len);
2997 
2998 		/*
2999 		 * Since the 6 byte parameter header is shorter than the 10
3000 		 * byte parameter header, we need to copy the actual mode
3001 		 * page data, and the block descriptor, if any, so things wind
3002 		 * up in the right place.  The regions will overlap, but
3003 		 * bcopy() does the right thing.
3004 		 */
3005 		bcopy(params->mode_buf + sizeof(*header6),
3006 		      params->mode_buf + sizeof(*header10),
3007 		      len - sizeof(*header10));
3008 
3009 		/* Make sure these fields are set correctly. */
3010 		scsi_ulto2b(0, header10->data_length);
3011 		header10->medium_type = 0;
3012 		scsi_ulto2b(blk_desc_len, header10->blk_desc_len);
3013 
3014 		ccb->csio.dxfer_len = len;
3015 
3016 		scsi_ulto2b(len, ms10.length);
3017 		ms10.control = ms6->control;
3018 		bcopy(&ms10, cdb, 10);
3019 		ccb->csio.cdb_len = 10;
3020 	}
3021 
3022 	frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0;
3023 	ccb->ccb_h.status = CAM_REQUEUE_REQ;
3024 	xpt_action(ccb);
3025 	if (frozen) {
3026 		cam_release_devq(ccb->ccb_h.path,
3027 				 /*relsim_flags*/0,
3028 				 /*openings*/0,
3029 				 /*timeout*/0,
3030 				 /*getcount_only*/0);
3031 	}
3032 
3033 	return (ERESTART);
3034 }
3035 
3036 static int
3037 cderror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags)
3038 {
3039 	struct cd_softc *softc;
3040 	struct cam_periph *periph;
3041 	int error;
3042 
3043 	periph = xpt_path_periph(ccb->ccb_h.path);
3044 	softc = (struct cd_softc *)periph->softc;
3045 
3046 	error = 0;
3047 
3048 	/*
3049 	 * We use a status of CAM_REQ_INVALID as shorthand -- if a 6 byte
3050 	 * CDB comes back with this particular error, try transforming it
3051 	 * into the 10 byte version.
3052 	 */
3053 	if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) {
3054 		error = cd6byteworkaround(ccb);
3055 	} else if (((ccb->ccb_h.status & CAM_STATUS_MASK) ==
3056 		     CAM_SCSI_STATUS_ERROR)
3057 	 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID)
3058 	 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND)
3059 	 && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0)
3060 	 && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) {
3061 		int sense_key, error_code, asc, ascq;
3062 
3063  		scsi_extract_sense(&ccb->csio.sense_data,
3064 				   &error_code, &sense_key, &asc, &ascq);
3065 		if (sense_key == SSD_KEY_ILLEGAL_REQUEST)
3066  			error = cd6byteworkaround(ccb);
3067 	}
3068 
3069 	if (error == ERESTART)
3070 		return (error);
3071 
3072 	/*
3073 	 * XXX
3074 	 * Until we have a better way of doing pack validation,
3075 	 * don't treat UAs as errors.
3076 	 */
3077 	sense_flags |= SF_RETRY_UA;
3078 	return (cam_periph_error(ccb, cam_flags, sense_flags,
3079 				 &softc->saved_ccb));
3080 }
3081 
3082 /*
3083  * Read table of contents
3084  */
3085 static int
3086 cdreadtoc(struct cam_periph *periph, u_int32_t mode, u_int32_t start,
3087 	  u_int8_t *data, u_int32_t len, u_int32_t sense_flags)
3088 {
3089 	struct scsi_read_toc *scsi_cmd;
3090 	u_int32_t ntoc;
3091         struct ccb_scsiio *csio;
3092 	union ccb *ccb;
3093 	int error;
3094 
3095 	ntoc = len;
3096 	error = 0;
3097 
3098 	ccb = cdgetccb(periph, /* priority */ 1);
3099 
3100 	csio = &ccb->csio;
3101 
3102 	cam_fill_csio(csio,
3103 		      /* retries */ 1,
3104 		      /* cbfcnp */ cddone,
3105 		      /* flags */ CAM_DIR_IN,
3106 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3107 		      /* data_ptr */ data,
3108 		      /* dxfer_len */ len,
3109 		      /* sense_len */ SSD_FULL_SIZE,
3110 		      sizeof(struct scsi_read_toc),
3111  		      /* timeout */ 50000);
3112 
3113 	scsi_cmd = (struct scsi_read_toc *)&csio->cdb_io.cdb_bytes;
3114 	bzero (scsi_cmd, sizeof(*scsi_cmd));
3115 
3116 	if (mode == CD_MSF_FORMAT)
3117 		scsi_cmd->byte2 |= CD_MSF;
3118 	scsi_cmd->from_track = start;
3119 	/* scsi_ulto2b(ntoc, (u_int8_t *)scsi_cmd->data_len); */
3120 	scsi_cmd->data_len[0] = (ntoc) >> 8;
3121 	scsi_cmd->data_len[1] = (ntoc) & 0xff;
3122 
3123 	scsi_cmd->op_code = READ_TOC;
3124 
3125 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3126 			 /*sense_flags*/SF_RETRY_UA | sense_flags);
3127 
3128 	xpt_release_ccb(ccb);
3129 
3130 	return(error);
3131 }
3132 
3133 static int
3134 cdreadsubchannel(struct cam_periph *periph, u_int32_t mode,
3135 		 u_int32_t format, int track,
3136 		 struct cd_sub_channel_info *data, u_int32_t len)
3137 {
3138 	struct scsi_read_subchannel *scsi_cmd;
3139         struct ccb_scsiio *csio;
3140 	union ccb *ccb;
3141 	int error;
3142 
3143 	error = 0;
3144 
3145 	ccb = cdgetccb(periph, /* priority */ 1);
3146 
3147 	csio = &ccb->csio;
3148 
3149 	cam_fill_csio(csio,
3150 		      /* retries */ 1,
3151 		      /* cbfcnp */ cddone,
3152 		      /* flags */ CAM_DIR_IN,
3153 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3154 		      /* data_ptr */ (u_int8_t *)data,
3155 		      /* dxfer_len */ len,
3156 		      /* sense_len */ SSD_FULL_SIZE,
3157 		      sizeof(struct scsi_read_subchannel),
3158  		      /* timeout */ 50000);
3159 
3160 	scsi_cmd = (struct scsi_read_subchannel *)&csio->cdb_io.cdb_bytes;
3161 	bzero (scsi_cmd, sizeof(*scsi_cmd));
3162 
3163 	scsi_cmd->op_code = READ_SUBCHANNEL;
3164 	if (mode == CD_MSF_FORMAT)
3165 		scsi_cmd->byte1 |= CD_MSF;
3166 	scsi_cmd->byte2 = SRS_SUBQ;
3167 	scsi_cmd->subchan_format = format;
3168 	scsi_cmd->track = track;
3169 	scsi_ulto2b(len, (u_int8_t *)scsi_cmd->data_len);
3170 	scsi_cmd->control = 0;
3171 
3172 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3173 			 /*sense_flags*/SF_RETRY_UA);
3174 
3175 	xpt_release_ccb(ccb);
3176 
3177 	return(error);
3178 }
3179 
3180 
3181 /*
3182  * All MODE_SENSE requests in the cd(4) driver MUST go through this
3183  * routine.  See comments in cd6byteworkaround() for details.
3184  */
3185 static int
3186 cdgetmode(struct cam_periph *periph, struct cd_mode_params *data,
3187 	  u_int32_t page)
3188 {
3189 	struct ccb_scsiio *csio;
3190 	struct cd_softc *softc;
3191 	union ccb *ccb;
3192 	int param_len;
3193 	int error;
3194 
3195 	softc = (struct cd_softc *)periph->softc;
3196 
3197 	ccb = cdgetccb(periph, /* priority */ 1);
3198 
3199 	csio = &ccb->csio;
3200 
3201 	data->cdb_size = softc->minimum_command_size;
3202 	if (data->cdb_size < 10)
3203 		param_len = sizeof(struct cd_mode_data);
3204 	else
3205 		param_len = sizeof(struct cd_mode_data_10);
3206 
3207 	/* Don't say we've got more room than we actually allocated */
3208 	param_len = min(param_len, data->alloc_len);
3209 
3210 	scsi_mode_sense_len(csio,
3211 			    /* retries */ 1,
3212 			    /* cbfcnp */ cddone,
3213 			    /* tag_action */ MSG_SIMPLE_Q_TAG,
3214 			    /* dbd */ 0,
3215 			    /* page_code */ SMS_PAGE_CTRL_CURRENT,
3216 			    /* page */ page,
3217 			    /* param_buf */ data->mode_buf,
3218 			    /* param_len */ param_len,
3219 			    /* minimum_cmd_size */ softc->minimum_command_size,
3220 			    /* sense_len */ SSD_FULL_SIZE,
3221 			    /* timeout */ 50000);
3222 
3223 	/*
3224 	 * It would be nice not to have to do this, but there's no
3225 	 * available pointer in the CCB that would allow us to stuff the
3226 	 * mode params structure in there and retrieve it in
3227 	 * cd6byteworkaround(), so we can set the cdb size.  The cdb size
3228 	 * lets the caller know what CDB size we ended up using, so they
3229 	 * can find the actual mode page offset.
3230 	 */
3231 	STAILQ_INSERT_TAIL(&softc->mode_queue, data, links);
3232 
3233 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3234 			 /*sense_flags*/SF_RETRY_UA);
3235 
3236 	xpt_release_ccb(ccb);
3237 
3238 	STAILQ_REMOVE(&softc->mode_queue, data, cd_mode_params, links);
3239 
3240 	/*
3241 	 * This is a bit of belt-and-suspenders checking, but if we run
3242 	 * into a situation where the target sends back multiple block
3243 	 * descriptors, we might not have enough space in the buffer to
3244 	 * see the whole mode page.  Better to return an error than
3245 	 * potentially access memory beyond our malloced region.
3246 	 */
3247 	if (error == 0) {
3248 		u_int32_t data_len;
3249 
3250 		if (data->cdb_size == 10) {
3251 			struct scsi_mode_header_10 *hdr10;
3252 
3253 			hdr10 = (struct scsi_mode_header_10 *)data->mode_buf;
3254 			data_len = scsi_2btoul(hdr10->data_length);
3255 			data_len += sizeof(hdr10->data_length);
3256 		} else {
3257 			struct scsi_mode_header_6 *hdr6;
3258 
3259 			hdr6 = (struct scsi_mode_header_6 *)data->mode_buf;
3260 			data_len = hdr6->data_length;
3261 			data_len += sizeof(hdr6->data_length);
3262 		}
3263 
3264 		/*
3265 		 * Complain if there is more mode data available than we
3266 		 * allocated space for.  This could potentially happen if
3267 		 * we miscalculated the page length for some reason, if the
3268 		 * drive returns multiple block descriptors, or if it sets
3269 		 * the data length incorrectly.
3270 		 */
3271 		if (data_len > data->alloc_len) {
3272 			xpt_print_path(periph->path);
3273 			printf("allocated modepage %d length %d < returned "
3274 			       "length %d\n", page, data->alloc_len, data_len);
3275 
3276 			error = ENOSPC;
3277 		}
3278 	}
3279 	return (error);
3280 }
3281 
3282 /*
3283  * All MODE_SELECT requests in the cd(4) driver MUST go through this
3284  * routine.  See comments in cd6byteworkaround() for details.
3285  */
3286 static int
3287 cdsetmode(struct cam_periph *periph, struct cd_mode_params *data)
3288 {
3289 	struct ccb_scsiio *csio;
3290 	struct cd_softc *softc;
3291 	union ccb *ccb;
3292 	int cdb_size, param_len;
3293 	int error;
3294 
3295 	softc = (struct cd_softc *)periph->softc;
3296 
3297 	ccb = cdgetccb(periph, /* priority */ 1);
3298 
3299 	csio = &ccb->csio;
3300 
3301 	error = 0;
3302 
3303 	/*
3304 	 * If the data is formatted for the 10 byte version of the mode
3305 	 * select parameter list, we need to use the 10 byte CDB.
3306 	 * Otherwise, we use whatever the stored minimum command size.
3307 	 */
3308 	if (data->cdb_size == 10)
3309 		cdb_size = data->cdb_size;
3310 	else
3311 		cdb_size = softc->minimum_command_size;
3312 
3313 	if (cdb_size >= 10) {
3314 		struct scsi_mode_header_10 *mode_header;
3315 		u_int32_t data_len;
3316 
3317 		mode_header = (struct scsi_mode_header_10 *)data->mode_buf;
3318 
3319 		data_len = scsi_2btoul(mode_header->data_length);
3320 
3321 		scsi_ulto2b(0, mode_header->data_length);
3322 		/*
3323 		 * SONY drives do not allow a mode select with a medium_type
3324 		 * value that has just been returned by a mode sense; use a
3325 		 * medium_type of 0 (Default) instead.
3326 		 */
3327 		mode_header->medium_type = 0;
3328 
3329 		/*
3330 		 * Pass back whatever the drive passed to us, plus the size
3331 		 * of the data length field.
3332 		 */
3333 		param_len = data_len + sizeof(mode_header->data_length);
3334 
3335 	} else {
3336 		struct scsi_mode_header_6 *mode_header;
3337 
3338 		mode_header = (struct scsi_mode_header_6 *)data->mode_buf;
3339 
3340 		param_len = mode_header->data_length + 1;
3341 
3342 		mode_header->data_length = 0;
3343 		/*
3344 		 * SONY drives do not allow a mode select with a medium_type
3345 		 * value that has just been returned by a mode sense; use a
3346 		 * medium_type of 0 (Default) instead.
3347 		 */
3348 		mode_header->medium_type = 0;
3349 	}
3350 
3351 	/* Don't say we've got more room than we actually allocated */
3352 	param_len = min(param_len, data->alloc_len);
3353 
3354 	scsi_mode_select_len(csio,
3355 			     /* retries */ 1,
3356 			     /* cbfcnp */ cddone,
3357 			     /* tag_action */ MSG_SIMPLE_Q_TAG,
3358 			     /* scsi_page_fmt */ 1,
3359 			     /* save_pages */ 0,
3360 			     /* param_buf */ data->mode_buf,
3361 			     /* param_len */ param_len,
3362 			     /* minimum_cmd_size */ cdb_size,
3363 			     /* sense_len */ SSD_FULL_SIZE,
3364 			     /* timeout */ 50000);
3365 
3366 	/* See comments in cdgetmode() and cd6byteworkaround(). */
3367 	STAILQ_INSERT_TAIL(&softc->mode_queue, data, links);
3368 
3369 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3370 			 /*sense_flags*/SF_RETRY_UA);
3371 
3372 	xpt_release_ccb(ccb);
3373 
3374 	STAILQ_REMOVE(&softc->mode_queue, data, cd_mode_params, links);
3375 
3376 	return (error);
3377 }
3378 
3379 
3380 static int
3381 cdplay(struct cam_periph *periph, u_int32_t blk, u_int32_t len)
3382 {
3383 	struct ccb_scsiio *csio;
3384 	union ccb *ccb;
3385 	int error;
3386 	u_int8_t cdb_len;
3387 
3388 	error = 0;
3389 	ccb = cdgetccb(periph, /* priority */ 1);
3390 	csio = &ccb->csio;
3391 	/*
3392 	 * Use the smallest possible command to perform the operation.
3393 	 */
3394 	if ((len & 0xffff0000) == 0) {
3395 		/*
3396 		 * We can fit in a 10 byte cdb.
3397 		 */
3398 		struct scsi_play_10 *scsi_cmd;
3399 
3400 		scsi_cmd = (struct scsi_play_10 *)&csio->cdb_io.cdb_bytes;
3401 		bzero (scsi_cmd, sizeof(*scsi_cmd));
3402 		scsi_cmd->op_code = PLAY_10;
3403 		scsi_ulto4b(blk, (u_int8_t *)scsi_cmd->blk_addr);
3404 		scsi_ulto2b(len, (u_int8_t *)scsi_cmd->xfer_len);
3405 		cdb_len = sizeof(*scsi_cmd);
3406 	} else  {
3407 		struct scsi_play_12 *scsi_cmd;
3408 
3409 		scsi_cmd = (struct scsi_play_12 *)&csio->cdb_io.cdb_bytes;
3410 		bzero (scsi_cmd, sizeof(*scsi_cmd));
3411 		scsi_cmd->op_code = PLAY_12;
3412 		scsi_ulto4b(blk, (u_int8_t *)scsi_cmd->blk_addr);
3413 		scsi_ulto4b(len, (u_int8_t *)scsi_cmd->xfer_len);
3414 		cdb_len = sizeof(*scsi_cmd);
3415 	}
3416 	cam_fill_csio(csio,
3417 		      /*retries*/2,
3418 		      cddone,
3419 		      /*flags*/CAM_DIR_NONE,
3420 		      MSG_SIMPLE_Q_TAG,
3421 		      /*dataptr*/NULL,
3422 		      /*datalen*/0,
3423 		      /*sense_len*/SSD_FULL_SIZE,
3424 		      cdb_len,
3425 		      /*timeout*/50 * 1000);
3426 
3427 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3428 			 /*sense_flags*/SF_RETRY_UA);
3429 
3430 	xpt_release_ccb(ccb);
3431 
3432 	return(error);
3433 }
3434 
3435 static int
3436 cdplaymsf(struct cam_periph *periph, u_int32_t startm, u_int32_t starts,
3437 	  u_int32_t startf, u_int32_t endm, u_int32_t ends, u_int32_t endf)
3438 {
3439 	struct scsi_play_msf *scsi_cmd;
3440         struct ccb_scsiio *csio;
3441 	union ccb *ccb;
3442 	int error;
3443 
3444 	error = 0;
3445 
3446 	ccb = cdgetccb(periph, /* priority */ 1);
3447 
3448 	csio = &ccb->csio;
3449 
3450 	cam_fill_csio(csio,
3451 		      /* retries */ 1,
3452 		      /* cbfcnp */ cddone,
3453 		      /* flags */ CAM_DIR_NONE,
3454 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3455 		      /* data_ptr */ NULL,
3456 		      /* dxfer_len */ 0,
3457 		      /* sense_len */ SSD_FULL_SIZE,
3458 		      sizeof(struct scsi_play_msf),
3459  		      /* timeout */ 50000);
3460 
3461 	scsi_cmd = (struct scsi_play_msf *)&csio->cdb_io.cdb_bytes;
3462 	bzero (scsi_cmd, sizeof(*scsi_cmd));
3463 
3464         scsi_cmd->op_code = PLAY_MSF;
3465         scsi_cmd->start_m = startm;
3466         scsi_cmd->start_s = starts;
3467         scsi_cmd->start_f = startf;
3468         scsi_cmd->end_m = endm;
3469         scsi_cmd->end_s = ends;
3470         scsi_cmd->end_f = endf;
3471 
3472 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3473 			 /*sense_flags*/SF_RETRY_UA);
3474 
3475 	xpt_release_ccb(ccb);
3476 
3477 	return(error);
3478 }
3479 
3480 
3481 static int
3482 cdplaytracks(struct cam_periph *periph, u_int32_t strack, u_int32_t sindex,
3483 	     u_int32_t etrack, u_int32_t eindex)
3484 {
3485 	struct scsi_play_track *scsi_cmd;
3486         struct ccb_scsiio *csio;
3487 	union ccb *ccb;
3488 	int error;
3489 
3490 	error = 0;
3491 
3492 	ccb = cdgetccb(periph, /* priority */ 1);
3493 
3494 	csio = &ccb->csio;
3495 
3496 	cam_fill_csio(csio,
3497 		      /* retries */ 1,
3498 		      /* cbfcnp */ cddone,
3499 		      /* flags */ CAM_DIR_NONE,
3500 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3501 		      /* data_ptr */ NULL,
3502 		      /* dxfer_len */ 0,
3503 		      /* sense_len */ SSD_FULL_SIZE,
3504 		      sizeof(struct scsi_play_track),
3505  		      /* timeout */ 50000);
3506 
3507 	scsi_cmd = (struct scsi_play_track *)&csio->cdb_io.cdb_bytes;
3508 	bzero (scsi_cmd, sizeof(*scsi_cmd));
3509 
3510         scsi_cmd->op_code = PLAY_TRACK;
3511         scsi_cmd->start_track = strack;
3512         scsi_cmd->start_index = sindex;
3513         scsi_cmd->end_track = etrack;
3514         scsi_cmd->end_index = eindex;
3515 
3516 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3517 			 /*sense_flags*/SF_RETRY_UA);
3518 
3519 	xpt_release_ccb(ccb);
3520 
3521 	return(error);
3522 }
3523 
3524 static int
3525 cdpause(struct cam_periph *periph, u_int32_t go)
3526 {
3527 	struct scsi_pause *scsi_cmd;
3528         struct ccb_scsiio *csio;
3529 	union ccb *ccb;
3530 	int error;
3531 
3532 	error = 0;
3533 
3534 	ccb = cdgetccb(periph, /* priority */ 1);
3535 
3536 	csio = &ccb->csio;
3537 
3538 	cam_fill_csio(csio,
3539 		      /* retries */ 1,
3540 		      /* cbfcnp */ cddone,
3541 		      /* flags */ CAM_DIR_NONE,
3542 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3543 		      /* data_ptr */ NULL,
3544 		      /* dxfer_len */ 0,
3545 		      /* sense_len */ SSD_FULL_SIZE,
3546 		      sizeof(struct scsi_pause),
3547  		      /* timeout */ 50000);
3548 
3549 	scsi_cmd = (struct scsi_pause *)&csio->cdb_io.cdb_bytes;
3550 	bzero (scsi_cmd, sizeof(*scsi_cmd));
3551 
3552         scsi_cmd->op_code = PAUSE;
3553 	scsi_cmd->resume = go;
3554 
3555 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3556 			 /*sense_flags*/SF_RETRY_UA);
3557 
3558 	xpt_release_ccb(ccb);
3559 
3560 	return(error);
3561 }
3562 
3563 static int
3564 cdstartunit(struct cam_periph *periph, int load)
3565 {
3566 	union ccb *ccb;
3567 	int error;
3568 
3569 	error = 0;
3570 
3571 	ccb = cdgetccb(periph, /* priority */ 1);
3572 
3573 	scsi_start_stop(&ccb->csio,
3574 			/* retries */ 1,
3575 			/* cbfcnp */ cddone,
3576 			/* tag_action */ MSG_SIMPLE_Q_TAG,
3577 			/* start */ TRUE,
3578 			/* load_eject */ load,
3579 			/* immediate */ FALSE,
3580 			/* sense_len */ SSD_FULL_SIZE,
3581 			/* timeout */ 50000);
3582 
3583 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3584 			 /*sense_flags*/SF_RETRY_UA);
3585 
3586 	xpt_release_ccb(ccb);
3587 
3588 	return(error);
3589 }
3590 
3591 static int
3592 cdstopunit(struct cam_periph *periph, u_int32_t eject)
3593 {
3594 	union ccb *ccb;
3595 	int error;
3596 
3597 	error = 0;
3598 
3599 	ccb = cdgetccb(periph, /* priority */ 1);
3600 
3601 	scsi_start_stop(&ccb->csio,
3602 			/* retries */ 1,
3603 			/* cbfcnp */ cddone,
3604 			/* tag_action */ MSG_SIMPLE_Q_TAG,
3605 			/* start */ FALSE,
3606 			/* load_eject */ eject,
3607 			/* immediate */ FALSE,
3608 			/* sense_len */ SSD_FULL_SIZE,
3609 			/* timeout */ 50000);
3610 
3611 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3612 			 /*sense_flags*/SF_RETRY_UA);
3613 
3614 	xpt_release_ccb(ccb);
3615 
3616 	return(error);
3617 }
3618 
3619 static int
3620 cdsetspeed(struct cam_periph *periph, u_int32_t rdspeed, u_int32_t wrspeed)
3621 {
3622 	struct scsi_set_speed *scsi_cmd;
3623 	struct ccb_scsiio *csio;
3624 	union ccb *ccb;
3625 	int error;
3626 
3627 	error = 0;
3628 	ccb = cdgetccb(periph, /* priority */ 1);
3629 	csio = &ccb->csio;
3630 
3631 	/* Preserve old behavior: units in multiples of CDROM speed */
3632 	if (rdspeed < 177)
3633 		rdspeed *= 177;
3634 	if (wrspeed < 177)
3635 		wrspeed *= 177;
3636 
3637 	cam_fill_csio(csio,
3638 		      /* retries */ 1,
3639 		      /* cbfcnp */ cddone,
3640 		      /* flags */ CAM_DIR_NONE,
3641 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3642 		      /* data_ptr */ NULL,
3643 		      /* dxfer_len */ 0,
3644 		      /* sense_len */ SSD_FULL_SIZE,
3645 		      sizeof(struct scsi_set_speed),
3646  		      /* timeout */ 50000);
3647 
3648 	scsi_cmd = (struct scsi_set_speed *)&csio->cdb_io.cdb_bytes;
3649 	bzero(scsi_cmd, sizeof(*scsi_cmd));
3650 
3651 	scsi_cmd->opcode = SET_CD_SPEED;
3652 	scsi_ulto2b(rdspeed, scsi_cmd->readspeed);
3653 	scsi_ulto2b(wrspeed, scsi_cmd->writespeed);
3654 
3655 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3656 			 /*sense_flags*/SF_RETRY_UA);
3657 
3658 	xpt_release_ccb(ccb);
3659 
3660 	return(error);
3661 }
3662 
3663 static int
3664 cdreportkey(struct cam_periph *periph, struct dvd_authinfo *authinfo)
3665 {
3666 	union ccb *ccb;
3667 	u_int8_t *databuf;
3668 	u_int32_t lba;
3669 	int error;
3670 	int length;
3671 
3672 	error = 0;
3673 	databuf = NULL;
3674 	lba = 0;
3675 
3676 	ccb = cdgetccb(periph, /* priority */ 1);
3677 
3678 	switch (authinfo->format) {
3679 	case DVD_REPORT_AGID:
3680 		length = sizeof(struct scsi_report_key_data_agid);
3681 		break;
3682 	case DVD_REPORT_CHALLENGE:
3683 		length = sizeof(struct scsi_report_key_data_challenge);
3684 		break;
3685 	case DVD_REPORT_KEY1:
3686 		length = sizeof(struct scsi_report_key_data_key1_key2);
3687 		break;
3688 	case DVD_REPORT_TITLE_KEY:
3689 		length = sizeof(struct scsi_report_key_data_title);
3690 		/* The lba field is only set for the title key */
3691 		lba = authinfo->lba;
3692 		break;
3693 	case DVD_REPORT_ASF:
3694 		length = sizeof(struct scsi_report_key_data_asf);
3695 		break;
3696 	case DVD_REPORT_RPC:
3697 		length = sizeof(struct scsi_report_key_data_rpc);
3698 		break;
3699 	case DVD_INVALIDATE_AGID:
3700 		length = 0;
3701 		break;
3702 	default:
3703 		error = EINVAL;
3704 		goto bailout;
3705 		break; /* NOTREACHED */
3706 	}
3707 
3708 	if (length != 0) {
3709 		databuf = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
3710 	} else
3711 		databuf = NULL;
3712 
3713 
3714 	scsi_report_key(&ccb->csio,
3715 			/* retries */ 1,
3716 			/* cbfcnp */ cddone,
3717 			/* tag_action */ MSG_SIMPLE_Q_TAG,
3718 			/* lba */ lba,
3719 			/* agid */ authinfo->agid,
3720 			/* key_format */ authinfo->format,
3721 			/* data_ptr */ databuf,
3722 			/* dxfer_len */ length,
3723 			/* sense_len */ SSD_FULL_SIZE,
3724 			/* timeout */ 50000);
3725 
3726 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3727 			 /*sense_flags*/SF_RETRY_UA);
3728 
3729 	if (error != 0)
3730 		goto bailout;
3731 
3732 	if (ccb->csio.resid != 0) {
3733 		xpt_print_path(periph->path);
3734 		printf("warning, residual for report key command is %d\n",
3735 		       ccb->csio.resid);
3736 	}
3737 
3738 	switch(authinfo->format) {
3739 	case DVD_REPORT_AGID: {
3740 		struct scsi_report_key_data_agid *agid_data;
3741 
3742 		agid_data = (struct scsi_report_key_data_agid *)databuf;
3743 
3744 		authinfo->agid = (agid_data->agid & RKD_AGID_MASK) >>
3745 			RKD_AGID_SHIFT;
3746 		break;
3747 	}
3748 	case DVD_REPORT_CHALLENGE: {
3749 		struct scsi_report_key_data_challenge *chal_data;
3750 
3751 		chal_data = (struct scsi_report_key_data_challenge *)databuf;
3752 
3753 		bcopy(chal_data->challenge_key, authinfo->keychal,
3754 		      min(sizeof(chal_data->challenge_key),
3755 		          sizeof(authinfo->keychal)));
3756 		break;
3757 	}
3758 	case DVD_REPORT_KEY1: {
3759 		struct scsi_report_key_data_key1_key2 *key1_data;
3760 
3761 		key1_data = (struct scsi_report_key_data_key1_key2 *)databuf;
3762 
3763 		bcopy(key1_data->key1, authinfo->keychal,
3764 		      min(sizeof(key1_data->key1), sizeof(authinfo->keychal)));
3765 		break;
3766 	}
3767 	case DVD_REPORT_TITLE_KEY: {
3768 		struct scsi_report_key_data_title *title_data;
3769 
3770 		title_data = (struct scsi_report_key_data_title *)databuf;
3771 
3772 		authinfo->cpm = (title_data->byte0 & RKD_TITLE_CPM) >>
3773 			RKD_TITLE_CPM_SHIFT;
3774 		authinfo->cp_sec = (title_data->byte0 & RKD_TITLE_CP_SEC) >>
3775 			RKD_TITLE_CP_SEC_SHIFT;
3776 		authinfo->cgms = (title_data->byte0 & RKD_TITLE_CMGS_MASK) >>
3777 			RKD_TITLE_CMGS_SHIFT;
3778 		bcopy(title_data->title_key, authinfo->keychal,
3779 		      min(sizeof(title_data->title_key),
3780 			  sizeof(authinfo->keychal)));
3781 		break;
3782 	}
3783 	case DVD_REPORT_ASF: {
3784 		struct scsi_report_key_data_asf *asf_data;
3785 
3786 		asf_data = (struct scsi_report_key_data_asf *)databuf;
3787 
3788 		authinfo->asf = asf_data->success & RKD_ASF_SUCCESS;
3789 		break;
3790 	}
3791 	case DVD_REPORT_RPC: {
3792 		struct scsi_report_key_data_rpc *rpc_data;
3793 
3794 		rpc_data = (struct scsi_report_key_data_rpc *)databuf;
3795 
3796 		authinfo->reg_type = (rpc_data->byte4 & RKD_RPC_TYPE_MASK) >>
3797 			RKD_RPC_TYPE_SHIFT;
3798 		authinfo->vend_rsts =
3799 			(rpc_data->byte4 & RKD_RPC_VENDOR_RESET_MASK) >>
3800 			RKD_RPC_VENDOR_RESET_SHIFT;
3801 		authinfo->user_rsts = rpc_data->byte4 & RKD_RPC_USER_RESET_MASK;
3802 		authinfo->region = rpc_data->region_mask;
3803 		authinfo->rpc_scheme = rpc_data->rpc_scheme1;
3804 		break;
3805 	}
3806 	case DVD_INVALIDATE_AGID:
3807 		break;
3808 	default:
3809 		/* This should be impossible, since we checked above */
3810 		error = EINVAL;
3811 		goto bailout;
3812 		break; /* NOTREACHED */
3813 	}
3814 bailout:
3815 	if (databuf != NULL)
3816 		free(databuf, M_DEVBUF);
3817 
3818 	xpt_release_ccb(ccb);
3819 
3820 	return(error);
3821 }
3822 
3823 static int
3824 cdsendkey(struct cam_periph *periph, struct dvd_authinfo *authinfo)
3825 {
3826 	union ccb *ccb;
3827 	u_int8_t *databuf;
3828 	int length;
3829 	int error;
3830 
3831 	error = 0;
3832 	databuf = NULL;
3833 
3834 	ccb = cdgetccb(periph, /* priority */ 1);
3835 
3836 	switch(authinfo->format) {
3837 	case DVD_SEND_CHALLENGE: {
3838 		struct scsi_report_key_data_challenge *challenge_data;
3839 
3840 		length = sizeof(*challenge_data);
3841 
3842 		challenge_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
3843 
3844 		databuf = (u_int8_t *)challenge_data;
3845 
3846 		scsi_ulto2b(length - sizeof(challenge_data->data_len),
3847 			    challenge_data->data_len);
3848 
3849 		bcopy(authinfo->keychal, challenge_data->challenge_key,
3850 		      min(sizeof(authinfo->keychal),
3851 			  sizeof(challenge_data->challenge_key)));
3852 		break;
3853 	}
3854 	case DVD_SEND_KEY2: {
3855 		struct scsi_report_key_data_key1_key2 *key2_data;
3856 
3857 		length = sizeof(*key2_data);
3858 
3859 		key2_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
3860 
3861 		databuf = (u_int8_t *)key2_data;
3862 
3863 		scsi_ulto2b(length - sizeof(key2_data->data_len),
3864 			    key2_data->data_len);
3865 
3866 		bcopy(authinfo->keychal, key2_data->key1,
3867 		      min(sizeof(authinfo->keychal), sizeof(key2_data->key1)));
3868 
3869 		break;
3870 	}
3871 	case DVD_SEND_RPC: {
3872 		struct scsi_send_key_data_rpc *rpc_data;
3873 
3874 		length = sizeof(*rpc_data);
3875 
3876 		rpc_data = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
3877 
3878 		databuf = (u_int8_t *)rpc_data;
3879 
3880 		scsi_ulto2b(length - sizeof(rpc_data->data_len),
3881 			    rpc_data->data_len);
3882 
3883 		rpc_data->region_code = authinfo->region;
3884 		break;
3885 	}
3886 	default:
3887 		error = EINVAL;
3888 		goto bailout;
3889 		break; /* NOTREACHED */
3890 	}
3891 
3892 	scsi_send_key(&ccb->csio,
3893 		      /* retries */ 1,
3894 		      /* cbfcnp */ cddone,
3895 		      /* tag_action */ MSG_SIMPLE_Q_TAG,
3896 		      /* agid */ authinfo->agid,
3897 		      /* key_format */ authinfo->format,
3898 		      /* data_ptr */ databuf,
3899 		      /* dxfer_len */ length,
3900 		      /* sense_len */ SSD_FULL_SIZE,
3901 		      /* timeout */ 50000);
3902 
3903 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
3904 			 /*sense_flags*/SF_RETRY_UA);
3905 
3906 bailout:
3907 
3908 	if (databuf != NULL)
3909 		free(databuf, M_DEVBUF);
3910 
3911 	xpt_release_ccb(ccb);
3912 
3913 	return(error);
3914 }
3915 
3916 static int
3917 cdreaddvdstructure(struct cam_periph *periph, struct dvd_struct *dvdstruct)
3918 {
3919 	union ccb *ccb;
3920 	u_int8_t *databuf;
3921 	u_int32_t address;
3922 	int error;
3923 	int length;
3924 
3925 	error = 0;
3926 	databuf = NULL;
3927 	/* The address is reserved for many of the formats */
3928 	address = 0;
3929 
3930 	ccb = cdgetccb(periph, /* priority */ 1);
3931 
3932 	switch(dvdstruct->format) {
3933 	case DVD_STRUCT_PHYSICAL:
3934 		length = sizeof(struct scsi_read_dvd_struct_data_physical);
3935 		break;
3936 	case DVD_STRUCT_COPYRIGHT:
3937 		length = sizeof(struct scsi_read_dvd_struct_data_copyright);
3938 		break;
3939 	case DVD_STRUCT_DISCKEY:
3940 		length = sizeof(struct scsi_read_dvd_struct_data_disc_key);
3941 		break;
3942 	case DVD_STRUCT_BCA:
3943 		length = sizeof(struct scsi_read_dvd_struct_data_bca);
3944 		break;
3945 	case DVD_STRUCT_MANUFACT:
3946 		length = sizeof(struct scsi_read_dvd_struct_data_manufacturer);
3947 		break;
3948 	case DVD_STRUCT_CMI:
3949 		error = ENODEV;
3950 		goto bailout;
3951 #ifdef notyet
3952 		length = sizeof(struct scsi_read_dvd_struct_data_copy_manage);
3953 		address = dvdstruct->address;
3954 #endif
3955 		break; /* NOTREACHED */
3956 	case DVD_STRUCT_PROTDISCID:
3957 		length = sizeof(struct scsi_read_dvd_struct_data_prot_discid);
3958 		break;
3959 	case DVD_STRUCT_DISCKEYBLOCK:
3960 		length = sizeof(struct scsi_read_dvd_struct_data_disc_key_blk);
3961 		break;
3962 	case DVD_STRUCT_DDS:
3963 		length = sizeof(struct scsi_read_dvd_struct_data_dds);
3964 		break;
3965 	case DVD_STRUCT_MEDIUM_STAT:
3966 		length = sizeof(struct scsi_read_dvd_struct_data_medium_status);
3967 		break;
3968 	case DVD_STRUCT_SPARE_AREA:
3969 		length = sizeof(struct scsi_read_dvd_struct_data_spare_area);
3970 		break;
3971 	case DVD_STRUCT_RMD_LAST:
3972 		error = ENODEV;
3973 		goto bailout;
3974 #ifdef notyet
3975 		length = sizeof(struct scsi_read_dvd_struct_data_rmd_borderout);
3976 		address = dvdstruct->address;
3977 #endif
3978 		break; /* NOTREACHED */
3979 	case DVD_STRUCT_RMD_RMA:
3980 		error = ENODEV;
3981 		goto bailout;
3982 #ifdef notyet
3983 		length = sizeof(struct scsi_read_dvd_struct_data_rmd);
3984 		address = dvdstruct->address;
3985 #endif
3986 		break; /* NOTREACHED */
3987 	case DVD_STRUCT_PRERECORDED:
3988 		length = sizeof(struct scsi_read_dvd_struct_data_leadin);
3989 		break;
3990 	case DVD_STRUCT_UNIQUEID:
3991 		length = sizeof(struct scsi_read_dvd_struct_data_disc_id);
3992 		break;
3993 	case DVD_STRUCT_DCB:
3994 		error = ENODEV;
3995 		goto bailout;
3996 #ifdef notyet
3997 		length = sizeof(struct scsi_read_dvd_struct_data_dcb);
3998 		address = dvdstruct->address;
3999 #endif
4000 		break; /* NOTREACHED */
4001 	case DVD_STRUCT_LIST:
4002 		/*
4003 		 * This is the maximum allocation length for the READ DVD
4004 		 * STRUCTURE command.  There's nothing in the MMC3 spec
4005 		 * that indicates a limit in the amount of data that can
4006 		 * be returned from this call, other than the limits
4007 		 * imposed by the 2-byte length variables.
4008 		 */
4009 		length = 65535;
4010 		break;
4011 	default:
4012 		error = EINVAL;
4013 		goto bailout;
4014 		break; /* NOTREACHED */
4015 	}
4016 
4017 	if (length != 0) {
4018 		databuf = malloc(length, M_DEVBUF, M_WAITOK | M_ZERO);
4019 	} else
4020 		databuf = NULL;
4021 
4022 	scsi_read_dvd_structure(&ccb->csio,
4023 				/* retries */ 1,
4024 				/* cbfcnp */ cddone,
4025 				/* tag_action */ MSG_SIMPLE_Q_TAG,
4026 				/* lba */ address,
4027 				/* layer_number */ dvdstruct->layer_num,
4028 				/* key_format */ dvdstruct->format,
4029 				/* agid */ dvdstruct->agid,
4030 				/* data_ptr */ databuf,
4031 				/* dxfer_len */ length,
4032 				/* sense_len */ SSD_FULL_SIZE,
4033 				/* timeout */ 50000);
4034 
4035 	error = cdrunccb(ccb, cderror, /*cam_flags*/CAM_RETRY_SELTO,
4036 			 /*sense_flags*/SF_RETRY_UA);
4037 
4038 	if (error != 0)
4039 		goto bailout;
4040 
4041 	switch(dvdstruct->format) {
4042 	case DVD_STRUCT_PHYSICAL: {
4043 		struct scsi_read_dvd_struct_data_layer_desc *inlayer;
4044 		struct dvd_layer *outlayer;
4045 		struct scsi_read_dvd_struct_data_physical *phys_data;
4046 
4047 		phys_data =
4048 			(struct scsi_read_dvd_struct_data_physical *)databuf;
4049 		inlayer = &phys_data->layer_desc;
4050 		outlayer = (struct dvd_layer *)&dvdstruct->data;
4051 
4052 		dvdstruct->length = sizeof(*inlayer);
4053 
4054 		outlayer->book_type = (inlayer->book_type_version &
4055 			RDSD_BOOK_TYPE_MASK) >> RDSD_BOOK_TYPE_SHIFT;
4056 		outlayer->book_version = (inlayer->book_type_version &
4057 			RDSD_BOOK_VERSION_MASK);
4058 		outlayer->disc_size = (inlayer->disc_size_max_rate &
4059 			RDSD_DISC_SIZE_MASK) >> RDSD_DISC_SIZE_SHIFT;
4060 		outlayer->max_rate = (inlayer->disc_size_max_rate &
4061 			RDSD_MAX_RATE_MASK);
4062 		outlayer->nlayers = (inlayer->layer_info &
4063 			RDSD_NUM_LAYERS_MASK) >> RDSD_NUM_LAYERS_SHIFT;
4064 		outlayer->track_path = (inlayer->layer_info &
4065 			RDSD_TRACK_PATH_MASK) >> RDSD_TRACK_PATH_SHIFT;
4066 		outlayer->layer_type = (inlayer->layer_info &
4067 			RDSD_LAYER_TYPE_MASK);
4068 		outlayer->linear_density = (inlayer->density &
4069 			RDSD_LIN_DENSITY_MASK) >> RDSD_LIN_DENSITY_SHIFT;
4070 		outlayer->track_density = (inlayer->density &
4071 			RDSD_TRACK_DENSITY_MASK);
4072 		outlayer->bca = (inlayer->bca & RDSD_BCA_MASK) >>
4073 			RDSD_BCA_SHIFT;
4074 		outlayer->start_sector = scsi_3btoul(inlayer->main_data_start);
4075 		outlayer->end_sector = scsi_3btoul(inlayer->main_data_end);
4076 		outlayer->end_sector_l0 =
4077 			scsi_3btoul(inlayer->end_sector_layer0);
4078 		break;
4079 	}
4080 	case DVD_STRUCT_COPYRIGHT: {
4081 		struct scsi_read_dvd_struct_data_copyright *copy_data;
4082 
4083 		copy_data = (struct scsi_read_dvd_struct_data_copyright *)
4084 			databuf;
4085 
4086 		dvdstruct->cpst = copy_data->cps_type;
4087 		dvdstruct->rmi = copy_data->region_info;
4088 		dvdstruct->length = 0;
4089 
4090 		break;
4091 	}
4092 	default:
4093 		/*
4094 		 * Tell the user what the overall length is, no matter
4095 		 * what we can actually fit in the data buffer.
4096 		 */
4097 		dvdstruct->length = length - ccb->csio.resid -
4098 			sizeof(struct scsi_read_dvd_struct_data_header);
4099 
4100 		/*
4101 		 * But only actually copy out the smaller of what we read
4102 		 * in or what the structure can take.
4103 		 */
4104 		bcopy(databuf + sizeof(struct scsi_read_dvd_struct_data_header),
4105 		      dvdstruct->data,
4106 		      min(sizeof(dvdstruct->data), dvdstruct->length));
4107 		break;
4108 	}
4109 bailout:
4110 
4111 	if (databuf != NULL)
4112 		free(databuf, M_DEVBUF);
4113 
4114 	xpt_release_ccb(ccb);
4115 
4116 	return(error);
4117 }
4118 
4119 void
4120 scsi_report_key(struct ccb_scsiio *csio, u_int32_t retries,
4121 		void (*cbfcnp)(struct cam_periph *, union ccb *),
4122 		u_int8_t tag_action, u_int32_t lba, u_int8_t agid,
4123 		u_int8_t key_format, u_int8_t *data_ptr, u_int32_t dxfer_len,
4124 		u_int8_t sense_len, u_int32_t timeout)
4125 {
4126 	struct scsi_report_key *scsi_cmd;
4127 
4128 	scsi_cmd = (struct scsi_report_key *)&csio->cdb_io.cdb_bytes;
4129 	bzero(scsi_cmd, sizeof(*scsi_cmd));
4130 	scsi_cmd->opcode = REPORT_KEY;
4131 	scsi_ulto4b(lba, scsi_cmd->lba);
4132 	scsi_ulto2b(dxfer_len, scsi_cmd->alloc_len);
4133 	scsi_cmd->agid_keyformat = (agid << RK_KF_AGID_SHIFT) |
4134 		(key_format & RK_KF_KEYFORMAT_MASK);
4135 
4136 	cam_fill_csio(csio,
4137 		      retries,
4138 		      cbfcnp,
4139 		      /*flags*/ (dxfer_len == 0) ? CAM_DIR_NONE : CAM_DIR_IN,
4140 		      tag_action,
4141 		      /*data_ptr*/ data_ptr,
4142 		      /*dxfer_len*/ dxfer_len,
4143 		      sense_len,
4144 		      sizeof(*scsi_cmd),
4145 		      timeout);
4146 }
4147 
4148 void
4149 scsi_send_key(struct ccb_scsiio *csio, u_int32_t retries,
4150 	      void (*cbfcnp)(struct cam_periph *, union ccb *),
4151 	      u_int8_t tag_action, u_int8_t agid, u_int8_t key_format,
4152 	      u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len,
4153 	      u_int32_t timeout)
4154 {
4155 	struct scsi_send_key *scsi_cmd;
4156 
4157 	scsi_cmd = (struct scsi_send_key *)&csio->cdb_io.cdb_bytes;
4158 	bzero(scsi_cmd, sizeof(*scsi_cmd));
4159 	scsi_cmd->opcode = SEND_KEY;
4160 
4161 	scsi_ulto2b(dxfer_len, scsi_cmd->param_len);
4162 	scsi_cmd->agid_keyformat = (agid << RK_KF_AGID_SHIFT) |
4163 		(key_format & RK_KF_KEYFORMAT_MASK);
4164 
4165 	cam_fill_csio(csio,
4166 		      retries,
4167 		      cbfcnp,
4168 		      /*flags*/ CAM_DIR_OUT,
4169 		      tag_action,
4170 		      /*data_ptr*/ data_ptr,
4171 		      /*dxfer_len*/ dxfer_len,
4172 		      sense_len,
4173 		      sizeof(*scsi_cmd),
4174 		      timeout);
4175 }
4176 
4177 
4178 void
4179 scsi_read_dvd_structure(struct ccb_scsiio *csio, u_int32_t retries,
4180 			void (*cbfcnp)(struct cam_periph *, union ccb *),
4181 			u_int8_t tag_action, u_int32_t address,
4182 			u_int8_t layer_number, u_int8_t format, u_int8_t agid,
4183 			u_int8_t *data_ptr, u_int32_t dxfer_len,
4184 			u_int8_t sense_len, u_int32_t timeout)
4185 {
4186 	struct scsi_read_dvd_structure *scsi_cmd;
4187 
4188 	scsi_cmd = (struct scsi_read_dvd_structure *)&csio->cdb_io.cdb_bytes;
4189 	bzero(scsi_cmd, sizeof(*scsi_cmd));
4190 	scsi_cmd->opcode = READ_DVD_STRUCTURE;
4191 
4192 	scsi_ulto4b(address, scsi_cmd->address);
4193 	scsi_cmd->layer_number = layer_number;
4194 	scsi_cmd->format = format;
4195 	scsi_ulto2b(dxfer_len, scsi_cmd->alloc_len);
4196 	/* The AGID is the top two bits of this byte */
4197 	scsi_cmd->agid = agid << 6;
4198 
4199 	cam_fill_csio(csio,
4200 		      retries,
4201 		      cbfcnp,
4202 		      /*flags*/ CAM_DIR_IN,
4203 		      tag_action,
4204 		      /*data_ptr*/ data_ptr,
4205 		      /*dxfer_len*/ dxfer_len,
4206 		      sense_len,
4207 		      sizeof(*scsi_cmd),
4208 		      timeout);
4209 }
4210