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