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