1 /*- 2 * Implementation of SCSI Direct Access Peripheral driver for CAM. 3 * 4 * Copyright (c) 1997 Justin T. Gibbs. 5 * All rights reserved. 6 * 7 * Redistribution and use in source and binary forms, with or without 8 * modification, are permitted provided that the following conditions 9 * are met: 10 * 1. Redistributions of source code must retain the above copyright 11 * notice, this list of conditions, and the following disclaimer, 12 * without modification, immediately at the beginning of the file. 13 * 2. The name of the author may not be used to endorse or promote products 14 * derived from this software without specific prior written permission. 15 * 16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 20 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26 * SUCH DAMAGE. 27 */ 28 29 #include <sys/cdefs.h> 30 __FBSDID("$FreeBSD$"); 31 32 #include <sys/param.h> 33 34 #ifdef _KERNEL 35 #include <sys/systm.h> 36 #include <sys/kernel.h> 37 #include <sys/bio.h> 38 #include <sys/sysctl.h> 39 #include <sys/taskqueue.h> 40 #include <sys/lock.h> 41 #include <sys/mutex.h> 42 #include <sys/conf.h> 43 #include <sys/devicestat.h> 44 #include <sys/eventhandler.h> 45 #include <sys/malloc.h> 46 #include <sys/cons.h> 47 #include <geom/geom.h> 48 #include <geom/geom_disk.h> 49 #endif /* _KERNEL */ 50 51 #ifndef _KERNEL 52 #include <stdio.h> 53 #include <string.h> 54 #endif /* _KERNEL */ 55 56 #include <cam/cam.h> 57 #include <cam/cam_ccb.h> 58 #include <cam/cam_periph.h> 59 #include <cam/cam_xpt_periph.h> 60 #include <cam/cam_sim.h> 61 62 #include <cam/scsi/scsi_message.h> 63 64 #ifndef _KERNEL 65 #include <cam/scsi/scsi_da.h> 66 #endif /* !_KERNEL */ 67 68 #ifdef _KERNEL 69 typedef enum { 70 DA_STATE_PROBE, 71 DA_STATE_PROBE2, 72 DA_STATE_NORMAL 73 } da_state; 74 75 typedef enum { 76 DA_FLAG_PACK_INVALID = 0x001, 77 DA_FLAG_NEW_PACK = 0x002, 78 DA_FLAG_PACK_LOCKED = 0x004, 79 DA_FLAG_PACK_REMOVABLE = 0x008, 80 DA_FLAG_TAGGED_QUEUING = 0x010, 81 DA_FLAG_NEED_OTAG = 0x020, 82 DA_FLAG_WENT_IDLE = 0x040, 83 DA_FLAG_RETRY_UA = 0x080, 84 DA_FLAG_OPEN = 0x100, 85 DA_FLAG_SCTX_INIT = 0x200, 86 DA_FLAG_CAN_RC16 = 0x400, 87 DA_FLAG_PROBED = 0x800 88 } da_flags; 89 90 typedef enum { 91 DA_Q_NONE = 0x00, 92 DA_Q_NO_SYNC_CACHE = 0x01, 93 DA_Q_NO_6_BYTE = 0x02, 94 DA_Q_NO_PREVENT = 0x04, 95 DA_Q_4K = 0x08 96 } da_quirks; 97 98 typedef enum { 99 DA_CCB_PROBE = 0x01, 100 DA_CCB_PROBE2 = 0x02, 101 DA_CCB_BUFFER_IO = 0x03, 102 DA_CCB_WAITING = 0x04, 103 DA_CCB_DUMP = 0x05, 104 DA_CCB_DELETE = 0x06, 105 DA_CCB_TYPE_MASK = 0x0F, 106 DA_CCB_RETRY_UA = 0x10 107 } da_ccb_state; 108 109 typedef enum { 110 DA_DELETE_NONE, 111 DA_DELETE_DISABLE, 112 DA_DELETE_ZERO, 113 DA_DELETE_WS10, 114 DA_DELETE_WS16, 115 DA_DELETE_UNMAP, 116 DA_DELETE_MAX = DA_DELETE_UNMAP 117 } da_delete_methods; 118 119 static const char *da_delete_method_names[] = 120 { "NONE", "DISABLE", "ZERO", "WS10", "WS16", "UNMAP" }; 121 122 /* Offsets into our private area for storing information */ 123 #define ccb_state ppriv_field0 124 #define ccb_bp ppriv_ptr1 125 126 struct disk_params { 127 u_int8_t heads; 128 u_int32_t cylinders; 129 u_int8_t secs_per_track; 130 u_int32_t secsize; /* Number of bytes/sector */ 131 u_int64_t sectors; /* total number sectors */ 132 u_int stripesize; 133 u_int stripeoffset; 134 }; 135 136 #define UNMAP_MAX_RANGES 512 137 138 struct da_softc { 139 struct bio_queue_head bio_queue; 140 struct bio_queue_head delete_queue; 141 struct bio_queue_head delete_run_queue; 142 SLIST_ENTRY(da_softc) links; 143 LIST_HEAD(, ccb_hdr) pending_ccbs; 144 da_state state; 145 da_flags flags; 146 da_quirks quirks; 147 int minimum_cmd_size; 148 int error_inject; 149 int ordered_tag_count; 150 int outstanding_cmds; 151 int unmap_max_ranges; 152 int unmap_max_lba; 153 int delete_running; 154 da_delete_methods delete_method; 155 struct disk_params params; 156 struct disk *disk; 157 union ccb saved_ccb; 158 struct task sysctl_task; 159 struct sysctl_ctx_list sysctl_ctx; 160 struct sysctl_oid *sysctl_tree; 161 struct callout sendordered_c; 162 uint64_t wwpn; 163 uint8_t unmap_buf[UNMAP_MAX_RANGES * 16 + 8]; 164 struct scsi_read_capacity_data_long rcaplong; 165 }; 166 167 struct da_quirk_entry { 168 struct scsi_inquiry_pattern inq_pat; 169 da_quirks quirks; 170 }; 171 172 static const char quantum[] = "QUANTUM"; 173 static const char microp[] = "MICROP"; 174 175 static struct da_quirk_entry da_quirk_table[] = 176 { 177 /* SPI, FC devices */ 178 { 179 /* 180 * Fujitsu M2513A MO drives. 181 * Tested devices: M2513A2 firmware versions 1200 & 1300. 182 * (dip switch selects whether T_DIRECT or T_OPTICAL device) 183 * Reported by: W.Scholten <whs@xs4all.nl> 184 */ 185 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"}, 186 /*quirks*/ DA_Q_NO_SYNC_CACHE 187 }, 188 { 189 /* See above. */ 190 {T_OPTICAL, SIP_MEDIA_REMOVABLE, "FUJITSU", "M2513A", "*"}, 191 /*quirks*/ DA_Q_NO_SYNC_CACHE 192 }, 193 { 194 /* 195 * This particular Fujitsu drive doesn't like the 196 * synchronize cache command. 197 * Reported by: Tom Jackson <toj@gorilla.net> 198 */ 199 {T_DIRECT, SIP_MEDIA_FIXED, "FUJITSU", "M2954*", "*"}, 200 /*quirks*/ DA_Q_NO_SYNC_CACHE 201 }, 202 { 203 /* 204 * This drive doesn't like the synchronize cache command 205 * either. Reported by: Matthew Jacob <mjacob@feral.com> 206 * in NetBSD PR kern/6027, August 24, 1998. 207 */ 208 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2217*", "*"}, 209 /*quirks*/ DA_Q_NO_SYNC_CACHE 210 }, 211 { 212 /* 213 * This drive doesn't like the synchronize cache command 214 * either. Reported by: Hellmuth Michaelis (hm@kts.org) 215 * (PR 8882). 216 */ 217 {T_DIRECT, SIP_MEDIA_FIXED, microp, "2112*", "*"}, 218 /*quirks*/ DA_Q_NO_SYNC_CACHE 219 }, 220 { 221 /* 222 * Doesn't like the synchronize cache command. 223 * Reported by: Blaz Zupan <blaz@gold.amis.net> 224 */ 225 {T_DIRECT, SIP_MEDIA_FIXED, "NEC", "D3847*", "*"}, 226 /*quirks*/ DA_Q_NO_SYNC_CACHE 227 }, 228 { 229 /* 230 * Doesn't like the synchronize cache command. 231 * Reported by: Blaz Zupan <blaz@gold.amis.net> 232 */ 233 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "MAVERICK 540S", "*"}, 234 /*quirks*/ DA_Q_NO_SYNC_CACHE 235 }, 236 { 237 /* 238 * Doesn't like the synchronize cache command. 239 */ 240 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS525S", "*"}, 241 /*quirks*/ DA_Q_NO_SYNC_CACHE 242 }, 243 { 244 /* 245 * Doesn't like the synchronize cache command. 246 * Reported by: walter@pelissero.de 247 */ 248 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "LPS540S", "*"}, 249 /*quirks*/ DA_Q_NO_SYNC_CACHE 250 }, 251 { 252 /* 253 * Doesn't work correctly with 6 byte reads/writes. 254 * Returns illegal request, and points to byte 9 of the 255 * 6-byte CDB. 256 * Reported by: Adam McDougall <bsdx@spawnet.com> 257 */ 258 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 4*", "*"}, 259 /*quirks*/ DA_Q_NO_6_BYTE 260 }, 261 { 262 /* See above. */ 263 {T_DIRECT, SIP_MEDIA_FIXED, quantum, "VIKING 2*", "*"}, 264 /*quirks*/ DA_Q_NO_6_BYTE 265 }, 266 { 267 /* 268 * Doesn't like the synchronize cache command. 269 * Reported by: walter@pelissero.de 270 */ 271 {T_DIRECT, SIP_MEDIA_FIXED, "CONNER", "CP3500*", "*"}, 272 /*quirks*/ DA_Q_NO_SYNC_CACHE 273 }, 274 { 275 /* 276 * The CISS RAID controllers do not support SYNC_CACHE 277 */ 278 {T_DIRECT, SIP_MEDIA_FIXED, "COMPAQ", "RAID*", "*"}, 279 /*quirks*/ DA_Q_NO_SYNC_CACHE 280 }, 281 /* USB mass storage devices supported by umass(4) */ 282 { 283 /* 284 * EXATELECOM (Sigmatel) i-Bead 100/105 USB Flash MP3 Player 285 * PR: kern/51675 286 */ 287 {T_DIRECT, SIP_MEDIA_REMOVABLE, "EXATEL", "i-BEAD10*", "*"}, 288 /*quirks*/ DA_Q_NO_SYNC_CACHE 289 }, 290 { 291 /* 292 * Power Quotient Int. (PQI) USB flash key 293 * PR: kern/53067 294 */ 295 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "USB Flash Disk*", 296 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 297 }, 298 { 299 /* 300 * Creative Nomad MUVO mp3 player (USB) 301 * PR: kern/53094 302 */ 303 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "NOMAD_MUVO", "*"}, 304 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT 305 }, 306 { 307 /* 308 * Jungsoft NEXDISK USB flash key 309 * PR: kern/54737 310 */ 311 {T_DIRECT, SIP_MEDIA_REMOVABLE, "JUNGSOFT", "NEXDISK*", "*"}, 312 /*quirks*/ DA_Q_NO_SYNC_CACHE 313 }, 314 { 315 /* 316 * FreeDik USB Mini Data Drive 317 * PR: kern/54786 318 */ 319 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FreeDik*", "Mini Data Drive", 320 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 321 }, 322 { 323 /* 324 * Sigmatel USB Flash MP3 Player 325 * PR: kern/57046 326 */ 327 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SigmaTel", "MSCN", "*"}, 328 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT 329 }, 330 { 331 /* 332 * Neuros USB Digital Audio Computer 333 * PR: kern/63645 334 */ 335 {T_DIRECT, SIP_MEDIA_REMOVABLE, "NEUROS", "dig. audio comp.", 336 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 337 }, 338 { 339 /* 340 * SEAGRAND NP-900 MP3 Player 341 * PR: kern/64563 342 */ 343 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SEAGRAND", "NP-900*", "*"}, 344 /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT 345 }, 346 { 347 /* 348 * iRiver iFP MP3 player (with UMS Firmware) 349 * PR: kern/54881, i386/63941, kern/66124 350 */ 351 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iRiver", "iFP*", "*"}, 352 /*quirks*/ DA_Q_NO_SYNC_CACHE 353 }, 354 { 355 /* 356 * Frontier Labs NEX IA+ Digital Audio Player, rev 1.10/0.01 357 * PR: kern/70158 358 */ 359 {T_DIRECT, SIP_MEDIA_REMOVABLE, "FL" , "Nex*", "*"}, 360 /*quirks*/ DA_Q_NO_SYNC_CACHE 361 }, 362 { 363 /* 364 * ZICPlay USB MP3 Player with FM 365 * PR: kern/75057 366 */ 367 {T_DIRECT, SIP_MEDIA_REMOVABLE, "ACTIONS*" , "USB DISK*", "*"}, 368 /*quirks*/ DA_Q_NO_SYNC_CACHE 369 }, 370 { 371 /* 372 * TEAC USB floppy mechanisms 373 */ 374 {T_DIRECT, SIP_MEDIA_REMOVABLE, "TEAC" , "FD-05*", "*"}, 375 /*quirks*/ DA_Q_NO_SYNC_CACHE 376 }, 377 { 378 /* 379 * Kingston DataTraveler II+ USB Pen-Drive. 380 * Reported by: Pawel Jakub Dawidek <pjd@FreeBSD.org> 381 */ 382 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston" , "DataTraveler II+", 383 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 384 }, 385 { 386 /* 387 * Motorola E398 Mobile Phone (TransFlash memory card). 388 * Reported by: Wojciech A. Koszek <dunstan@FreeBSD.czest.pl> 389 * PR: usb/89889 390 */ 391 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Motorola" , "Motorola Phone", 392 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 393 }, 394 { 395 /* 396 * Qware BeatZkey! Pro 397 * PR: usb/79164 398 */ 399 {T_DIRECT, SIP_MEDIA_REMOVABLE, "GENERIC", "USB DISK DEVICE", 400 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 401 }, 402 { 403 /* 404 * Time DPA20B 1GB MP3 Player 405 * PR: usb/81846 406 */ 407 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB2.0*", "(FS) FLASH DISK*", 408 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 409 }, 410 { 411 /* 412 * Samsung USB key 128Mb 413 * PR: usb/90081 414 */ 415 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB-DISK", "FreeDik-FlashUsb", 416 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 417 }, 418 { 419 /* 420 * Kingston DataTraveler 2.0 USB Flash memory. 421 * PR: usb/89196 422 */ 423 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Kingston", "DataTraveler 2.0", 424 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 425 }, 426 { 427 /* 428 * Creative MUVO Slim mp3 player (USB) 429 * PR: usb/86131 430 */ 431 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CREATIVE", "MuVo Slim", 432 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE|DA_Q_NO_PREVENT 433 }, 434 { 435 /* 436 * United MP5512 Portable MP3 Player (2-in-1 USB DISK/MP3) 437 * PR: usb/80487 438 */ 439 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "MUSIC DISK", 440 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 441 }, 442 { 443 /* 444 * SanDisk Micro Cruzer 128MB 445 * PR: usb/75970 446 */ 447 {T_DIRECT, SIP_MEDIA_REMOVABLE, "SanDisk" , "Micro Cruzer", 448 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 449 }, 450 { 451 /* 452 * TOSHIBA TransMemory USB sticks 453 * PR: kern/94660 454 */ 455 {T_DIRECT, SIP_MEDIA_REMOVABLE, "TOSHIBA", "TransMemory", 456 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 457 }, 458 { 459 /* 460 * PNY USB Flash keys 461 * PR: usb/75578, usb/72344, usb/65436 462 */ 463 {T_DIRECT, SIP_MEDIA_REMOVABLE, "*" , "USB DISK*", 464 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 465 }, 466 { 467 /* 468 * Genesys 6-in-1 Card Reader 469 * PR: usb/94647 470 */ 471 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Generic*", "STORAGE DEVICE*", 472 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 473 }, 474 { 475 /* 476 * Rekam Digital CAMERA 477 * PR: usb/98713 478 */ 479 {T_DIRECT, SIP_MEDIA_REMOVABLE, "CAMERA*", "4MP-9J6*", 480 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 481 }, 482 { 483 /* 484 * iRiver H10 MP3 player 485 * PR: usb/102547 486 */ 487 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "H10*", 488 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 489 }, 490 { 491 /* 492 * iRiver U10 MP3 player 493 * PR: usb/92306 494 */ 495 {T_DIRECT, SIP_MEDIA_REMOVABLE, "iriver", "U10*", 496 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 497 }, 498 { 499 /* 500 * X-Micro Flash Disk 501 * PR: usb/96901 502 */ 503 {T_DIRECT, SIP_MEDIA_REMOVABLE, "X-Micro", "Flash Disk", 504 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 505 }, 506 { 507 /* 508 * EasyMP3 EM732X USB 2.0 Flash MP3 Player 509 * PR: usb/96546 510 */ 511 {T_DIRECT, SIP_MEDIA_REMOVABLE, "EM732X", "MP3 Player*", 512 "1.00"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 513 }, 514 { 515 /* 516 * Denver MP3 player 517 * PR: usb/107101 518 */ 519 {T_DIRECT, SIP_MEDIA_REMOVABLE, "DENVER", "MP3 PLAYER", 520 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 521 }, 522 { 523 /* 524 * Philips USB Key Audio KEY013 525 * PR: usb/68412 526 */ 527 {T_DIRECT, SIP_MEDIA_REMOVABLE, "PHILIPS", "Key*", "*"}, 528 /*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT 529 }, 530 { 531 /* 532 * JNC MP3 Player 533 * PR: usb/94439 534 */ 535 {T_DIRECT, SIP_MEDIA_REMOVABLE, "JNC*" , "MP3 Player*", 536 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 537 }, 538 { 539 /* 540 * SAMSUNG MP0402H 541 * PR: usb/108427 542 */ 543 {T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "MP0402H", "*"}, 544 /*quirks*/ DA_Q_NO_SYNC_CACHE 545 }, 546 { 547 /* 548 * I/O Magic USB flash - Giga Bank 549 * PR: usb/108810 550 */ 551 {T_DIRECT, SIP_MEDIA_FIXED, "GS-Magic", "stor*", "*"}, 552 /*quirks*/ DA_Q_NO_SYNC_CACHE 553 }, 554 { 555 /* 556 * JoyFly 128mb USB Flash Drive 557 * PR: 96133 558 */ 559 {T_DIRECT, SIP_MEDIA_REMOVABLE, "USB 2.0", "Flash Disk*", 560 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 561 }, 562 { 563 /* 564 * ChipsBnk usb stick 565 * PR: 103702 566 */ 567 {T_DIRECT, SIP_MEDIA_REMOVABLE, "ChipsBnk", "USB*", 568 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 569 }, 570 { 571 /* 572 * Storcase (Kingston) InfoStation IFS FC2/SATA-R 201A 573 * PR: 129858 574 */ 575 {T_DIRECT, SIP_MEDIA_FIXED, "IFS", "FC2/SATA-R*", 576 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 577 }, 578 { 579 /* 580 * Samsung YP-U3 mp3-player 581 * PR: 125398 582 */ 583 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Samsung", "YP-U3", 584 "*"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 585 }, 586 { 587 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Netac", "OnlyDisk*", 588 "2000"}, /*quirks*/ DA_Q_NO_SYNC_CACHE 589 }, 590 { 591 /* 592 * Sony Cyber-Shot DSC cameras 593 * PR: usb/137035 594 */ 595 {T_DIRECT, SIP_MEDIA_REMOVABLE, "Sony", "Sony DSC", "*"}, 596 /*quirks*/ DA_Q_NO_SYNC_CACHE | DA_Q_NO_PREVENT 597 }, 598 /* ATA/SATA devices over SAS/USB/... */ 599 { 600 /* Hitachi Advanced Format (4k) drives */ 601 { T_DIRECT, SIP_MEDIA_FIXED, "Hitachi", "H??????????E3*", "*" }, 602 /*quirks*/DA_Q_4K 603 }, 604 { 605 /* Samsung Advanced Format (4k) drives */ 606 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD155UI*", "*" }, 607 /*quirks*/DA_Q_4K 608 }, 609 { 610 /* Samsung Advanced Format (4k) drives */ 611 { T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD155UI*", "*" }, 612 /*quirks*/DA_Q_4K 613 }, 614 { 615 /* Samsung Advanced Format (4k) drives */ 616 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "SAMSUNG HD204UI*", "*" }, 617 /*quirks*/DA_Q_4K 618 }, 619 { 620 /* Samsung Advanced Format (4k) drives */ 621 { T_DIRECT, SIP_MEDIA_FIXED, "SAMSUNG", "HD204UI*", "*" }, 622 /*quirks*/DA_Q_4K 623 }, 624 { 625 /* Seagate Barracuda Green Advanced Format (4k) drives */ 626 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DL*", "*" }, 627 /*quirks*/DA_Q_4K 628 }, 629 { 630 /* Seagate Barracuda Green Advanced Format (4k) drives */ 631 { T_DIRECT, SIP_MEDIA_FIXED, "ST????DL", "*", "*" }, 632 /*quirks*/DA_Q_4K 633 }, 634 { 635 /* Seagate Barracuda Green Advanced Format (4k) drives */ 636 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???DM*", "*" }, 637 /*quirks*/DA_Q_4K 638 }, 639 { 640 /* Seagate Barracuda Green Advanced Format (4k) drives */ 641 { T_DIRECT, SIP_MEDIA_FIXED, "ST???DM*", "*", "*" }, 642 /*quirks*/DA_Q_4K 643 }, 644 { 645 /* Seagate Barracuda Green Advanced Format (4k) drives */ 646 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST????DM*", "*" }, 647 /*quirks*/DA_Q_4K 648 }, 649 { 650 /* Seagate Barracuda Green Advanced Format (4k) drives */ 651 { T_DIRECT, SIP_MEDIA_FIXED, "ST????DM", "*", "*" }, 652 /*quirks*/DA_Q_4K 653 }, 654 { 655 /* Seagate Momentus Advanced Format (4k) drives */ 656 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500423AS*", "*" }, 657 /*quirks*/DA_Q_4K 658 }, 659 { 660 /* Seagate Momentus Advanced Format (4k) drives */ 661 { T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "3AS*", "*" }, 662 /*quirks*/DA_Q_4K 663 }, 664 { 665 /* Seagate Momentus Advanced Format (4k) drives */ 666 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9500424AS*", "*" }, 667 /*quirks*/DA_Q_4K 668 }, 669 { 670 /* Seagate Momentus Advanced Format (4k) drives */ 671 { T_DIRECT, SIP_MEDIA_FIXED, "ST950042", "4AS*", "*" }, 672 /*quirks*/DA_Q_4K 673 }, 674 { 675 /* Seagate Momentus Advanced Format (4k) drives */ 676 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640423AS*", "*" }, 677 /*quirks*/DA_Q_4K 678 }, 679 { 680 /* Seagate Momentus Advanced Format (4k) drives */ 681 { T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "3AS*", "*" }, 682 /*quirks*/DA_Q_4K 683 }, 684 { 685 /* Seagate Momentus Advanced Format (4k) drives */ 686 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9640424AS*", "*" }, 687 /*quirks*/DA_Q_4K 688 }, 689 { 690 /* Seagate Momentus Advanced Format (4k) drives */ 691 { T_DIRECT, SIP_MEDIA_FIXED, "ST964042", "4AS*", "*" }, 692 /*quirks*/DA_Q_4K 693 }, 694 { 695 /* Seagate Momentus Advanced Format (4k) drives */ 696 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750420AS*", "*" }, 697 /*quirks*/DA_Q_4K 698 }, 699 { 700 /* Seagate Momentus Advanced Format (4k) drives */ 701 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "0AS*", "*" }, 702 /*quirks*/DA_Q_4K 703 }, 704 { 705 /* Seagate Momentus Advanced Format (4k) drives */ 706 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750422AS*", "*" }, 707 /*quirks*/DA_Q_4K 708 }, 709 { 710 /* Seagate Momentus Advanced Format (4k) drives */ 711 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "2AS*", "*" }, 712 /*quirks*/DA_Q_4K 713 }, 714 { 715 /* Seagate Momentus Advanced Format (4k) drives */ 716 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST9750423AS*", "*" }, 717 /*quirks*/DA_Q_4K 718 }, 719 { 720 /* Seagate Momentus Advanced Format (4k) drives */ 721 { T_DIRECT, SIP_MEDIA_FIXED, "ST975042", "3AS*", "*" }, 722 /*quirks*/DA_Q_4K 723 }, 724 { 725 /* Seagate Momentus Thin Advanced Format (4k) drives */ 726 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "ST???LT*", "*" }, 727 /*quirks*/DA_Q_4K 728 }, 729 { 730 /* Seagate Momentus Thin Advanced Format (4k) drives */ 731 { T_DIRECT, SIP_MEDIA_FIXED, "ST???LT*", "*", "*" }, 732 /*quirks*/DA_Q_4K 733 }, 734 { 735 /* WDC Caviar Green Advanced Format (4k) drives */ 736 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RS*", "*" }, 737 /*quirks*/DA_Q_4K 738 }, 739 { 740 /* WDC Caviar Green Advanced Format (4k) drives */ 741 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RS*", "*" }, 742 /*quirks*/DA_Q_4K 743 }, 744 { 745 /* WDC Caviar Green Advanced Format (4k) drives */ 746 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD????RX*", "*" }, 747 /*quirks*/DA_Q_4K 748 }, 749 { 750 /* WDC Caviar Green Advanced Format (4k) drives */ 751 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "??RX*", "*" }, 752 /*quirks*/DA_Q_4K 753 }, 754 { 755 /* WDC Caviar Green Advanced Format (4k) drives */ 756 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RS*", "*" }, 757 /*quirks*/DA_Q_4K 758 }, 759 { 760 /* WDC Caviar Green Advanced Format (4k) drives */ 761 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RS*", "*" }, 762 /*quirks*/DA_Q_4K 763 }, 764 { 765 /* WDC Caviar Green Advanced Format (4k) drives */ 766 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD??????RX*", "*" }, 767 /*quirks*/DA_Q_4K 768 }, 769 { 770 /* WDC Caviar Green Advanced Format (4k) drives */ 771 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "????RX*", "*" }, 772 /*quirks*/DA_Q_4K 773 }, 774 { 775 /* WDC Scorpio Black Advanced Format (4k) drives */ 776 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PKT*", "*" }, 777 /*quirks*/DA_Q_4K 778 }, 779 { 780 /* WDC Scorpio Black Advanced Format (4k) drives */ 781 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PKT*", "*" }, 782 /*quirks*/DA_Q_4K 783 }, 784 { 785 /* WDC Scorpio Black Advanced Format (4k) drives */ 786 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PKT*", "*" }, 787 /*quirks*/DA_Q_4K 788 }, 789 { 790 /* WDC Scorpio Black Advanced Format (4k) drives */ 791 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PKT*", "*" }, 792 /*quirks*/DA_Q_4K 793 }, 794 { 795 /* WDC Scorpio Blue Advanced Format (4k) drives */ 796 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD???PVT*", "*" }, 797 /*quirks*/DA_Q_4K 798 }, 799 { 800 /* WDC Scorpio Blue Advanced Format (4k) drives */ 801 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "?PVT*", "*" }, 802 /*quirks*/DA_Q_4K 803 }, 804 { 805 /* WDC Scorpio Blue Advanced Format (4k) drives */ 806 { T_DIRECT, SIP_MEDIA_FIXED, "ATA", "WDC WD?????PVT*", "*" }, 807 /*quirks*/DA_Q_4K 808 }, 809 { 810 /* WDC Scorpio Blue Advanced Format (4k) drives */ 811 { T_DIRECT, SIP_MEDIA_FIXED, "WDC WD??", "???PVT*", "*" }, 812 /*quirks*/DA_Q_4K 813 }, 814 }; 815 816 static disk_strategy_t dastrategy; 817 static dumper_t dadump; 818 static periph_init_t dainit; 819 static void daasync(void *callback_arg, u_int32_t code, 820 struct cam_path *path, void *arg); 821 static void dasysctlinit(void *context, int pending); 822 static int dacmdsizesysctl(SYSCTL_HANDLER_ARGS); 823 static int dadeletemethodsysctl(SYSCTL_HANDLER_ARGS); 824 static periph_ctor_t daregister; 825 static periph_dtor_t dacleanup; 826 static periph_start_t dastart; 827 static periph_oninv_t daoninvalidate; 828 static void dadone(struct cam_periph *periph, 829 union ccb *done_ccb); 830 static int daerror(union ccb *ccb, u_int32_t cam_flags, 831 u_int32_t sense_flags); 832 static void daprevent(struct cam_periph *periph, int action); 833 static void dareprobe(struct cam_periph *periph); 834 static void dasetgeom(struct cam_periph *periph, uint32_t block_len, 835 uint64_t maxsector, 836 struct scsi_read_capacity_data_long *rcaplong, 837 size_t rcap_size); 838 static timeout_t dasendorderedtag; 839 static void dashutdown(void *arg, int howto); 840 841 #ifndef DA_DEFAULT_TIMEOUT 842 #define DA_DEFAULT_TIMEOUT 60 /* Timeout in seconds */ 843 #endif 844 845 #ifndef DA_DEFAULT_RETRY 846 #define DA_DEFAULT_RETRY 4 847 #endif 848 849 #ifndef DA_DEFAULT_SEND_ORDERED 850 #define DA_DEFAULT_SEND_ORDERED 1 851 #endif 852 853 854 static int da_retry_count = DA_DEFAULT_RETRY; 855 static int da_default_timeout = DA_DEFAULT_TIMEOUT; 856 static int da_send_ordered = DA_DEFAULT_SEND_ORDERED; 857 858 static SYSCTL_NODE(_kern_cam, OID_AUTO, da, CTLFLAG_RD, 0, 859 "CAM Direct Access Disk driver"); 860 SYSCTL_INT(_kern_cam_da, OID_AUTO, retry_count, CTLFLAG_RW, 861 &da_retry_count, 0, "Normal I/O retry count"); 862 TUNABLE_INT("kern.cam.da.retry_count", &da_retry_count); 863 SYSCTL_INT(_kern_cam_da, OID_AUTO, default_timeout, CTLFLAG_RW, 864 &da_default_timeout, 0, "Normal I/O timeout (in seconds)"); 865 TUNABLE_INT("kern.cam.da.default_timeout", &da_default_timeout); 866 SYSCTL_INT(_kern_cam_da, OID_AUTO, da_send_ordered, CTLFLAG_RW, 867 &da_send_ordered, 0, "Send Ordered Tags"); 868 TUNABLE_INT("kern.cam.da.da_send_ordered", &da_send_ordered); 869 870 /* 871 * DA_ORDEREDTAG_INTERVAL determines how often, relative 872 * to the default timeout, we check to see whether an ordered 873 * tagged transaction is appropriate to prevent simple tag 874 * starvation. Since we'd like to ensure that there is at least 875 * 1/2 of the timeout length left for a starved transaction to 876 * complete after we've sent an ordered tag, we must poll at least 877 * four times in every timeout period. This takes care of the worst 878 * case where a starved transaction starts during an interval that 879 * meets the requirement "don't send an ordered tag" test so it takes 880 * us two intervals to determine that a tag must be sent. 881 */ 882 #ifndef DA_ORDEREDTAG_INTERVAL 883 #define DA_ORDEREDTAG_INTERVAL 4 884 #endif 885 886 static struct periph_driver dadriver = 887 { 888 dainit, "da", 889 TAILQ_HEAD_INITIALIZER(dadriver.units), /* generation */ 0 890 }; 891 892 PERIPHDRIVER_DECLARE(da, dadriver); 893 894 static MALLOC_DEFINE(M_SCSIDA, "scsi_da", "scsi_da buffers"); 895 896 static int 897 daopen(struct disk *dp) 898 { 899 struct cam_periph *periph; 900 struct da_softc *softc; 901 int unit; 902 int error; 903 904 periph = (struct cam_periph *)dp->d_drv1; 905 if (periph == NULL) { 906 return (ENXIO); 907 } 908 909 if (cam_periph_acquire(periph) != CAM_REQ_CMP) { 910 return (ENXIO); 911 } 912 913 cam_periph_lock(periph); 914 if ((error = cam_periph_hold(periph, PRIBIO|PCATCH)) != 0) { 915 cam_periph_unlock(periph); 916 cam_periph_release(periph); 917 return (error); 918 } 919 920 unit = periph->unit_number; 921 softc = (struct da_softc *)periph->softc; 922 softc->flags |= DA_FLAG_OPEN; 923 924 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, 925 ("daopen: disk=%s%d (unit %d)\n", dp->d_name, dp->d_unit, 926 unit)); 927 928 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) { 929 /* Invalidate our pack information. */ 930 softc->flags &= ~DA_FLAG_PACK_INVALID; 931 } 932 933 dareprobe(periph); 934 935 /* Wait for the disk size update. */ 936 error = msleep(&softc->disk->d_mediasize, periph->sim->mtx, PRIBIO, 937 "dareprobe", 0); 938 if (error != 0) 939 xpt_print(periph->path, "unable to retrieve capacity data"); 940 941 if (periph->flags & CAM_PERIPH_INVALID || 942 softc->disk->d_sectorsize == 0 || 943 softc->disk->d_mediasize == 0) 944 error = ENXIO; 945 946 if (error == 0 && (softc->flags & DA_FLAG_PACK_REMOVABLE) != 0 && 947 (softc->quirks & DA_Q_NO_PREVENT) == 0) 948 daprevent(periph, PR_PREVENT); 949 950 cam_periph_unhold(periph); 951 cam_periph_unlock(periph); 952 953 if (error != 0) { 954 softc->flags &= ~DA_FLAG_OPEN; 955 cam_periph_release(periph); 956 } 957 958 return (error); 959 } 960 961 static int 962 daclose(struct disk *dp) 963 { 964 struct cam_periph *periph; 965 struct da_softc *softc; 966 int error; 967 968 periph = (struct cam_periph *)dp->d_drv1; 969 if (periph == NULL) 970 return (0); 971 972 cam_periph_lock(periph); 973 if ((error = cam_periph_hold(periph, PRIBIO)) != 0) { 974 cam_periph_unlock(periph); 975 cam_periph_release(periph); 976 return (0); 977 } 978 979 softc = (struct da_softc *)periph->softc; 980 981 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0 982 && (softc->flags & DA_FLAG_PACK_INVALID) == 0) { 983 union ccb *ccb; 984 985 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL); 986 987 scsi_synchronize_cache(&ccb->csio, 988 /*retries*/1, 989 /*cbfcnp*/dadone, 990 MSG_SIMPLE_Q_TAG, 991 /*begin_lba*/0,/* Cover the whole disk */ 992 /*lb_count*/0, 993 SSD_FULL_SIZE, 994 5 * 60 * 1000); 995 996 cam_periph_runccb(ccb, /*error_routine*/NULL, /*cam_flags*/0, 997 /*sense_flags*/SF_RETRY_UA, 998 softc->disk->d_devstat); 999 1000 if ((ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1001 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == 1002 CAM_SCSI_STATUS_ERROR) { 1003 int asc, ascq; 1004 int sense_key, error_code; 1005 1006 scsi_extract_sense_len(&ccb->csio.sense_data, 1007 ccb->csio.sense_len - ccb->csio.sense_resid, 1008 &error_code, &sense_key, &asc, &ascq, 1009 /*show_errors*/ 1); 1010 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 1011 scsi_sense_print(&ccb->csio); 1012 } else { 1013 xpt_print(periph->path, "Synchronize cache " 1014 "failed, status == 0x%x, scsi status == " 1015 "0x%x\n", ccb->csio.ccb_h.status, 1016 ccb->csio.scsi_status); 1017 } 1018 } 1019 1020 xpt_release_ccb(ccb); 1021 1022 } 1023 1024 if ((softc->flags & DA_FLAG_PACK_REMOVABLE) != 0) { 1025 if ((softc->quirks & DA_Q_NO_PREVENT) == 0) 1026 daprevent(periph, PR_ALLOW); 1027 /* 1028 * If we've got removeable media, mark the blocksize as 1029 * unavailable, since it could change when new media is 1030 * inserted. 1031 */ 1032 softc->disk->d_devstat->flags |= DEVSTAT_BS_UNAVAILABLE; 1033 } 1034 1035 softc->flags &= ~DA_FLAG_OPEN; 1036 cam_periph_unhold(periph); 1037 cam_periph_unlock(periph); 1038 cam_periph_release(periph); 1039 return (0); 1040 } 1041 1042 static void 1043 daschedule(struct cam_periph *periph) 1044 { 1045 struct da_softc *softc = (struct da_softc *)periph->softc; 1046 uint32_t prio; 1047 1048 /* Check if cam_periph_getccb() was called. */ 1049 prio = periph->immediate_priority; 1050 1051 /* Check if we have more work to do. */ 1052 if (bioq_first(&softc->bio_queue) || 1053 (!softc->delete_running && bioq_first(&softc->delete_queue))) { 1054 prio = CAM_PRIORITY_NORMAL; 1055 } 1056 1057 /* Schedule CCB if any of above is true. */ 1058 if (prio != CAM_PRIORITY_NONE) 1059 xpt_schedule(periph, prio); 1060 } 1061 1062 /* 1063 * Actually translate the requested transfer into one the physical driver 1064 * can understand. The transfer is described by a buf and will include 1065 * only one physical transfer. 1066 */ 1067 static void 1068 dastrategy(struct bio *bp) 1069 { 1070 struct cam_periph *periph; 1071 struct da_softc *softc; 1072 1073 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 1074 if (periph == NULL) { 1075 biofinish(bp, NULL, ENXIO); 1076 return; 1077 } 1078 softc = (struct da_softc *)periph->softc; 1079 1080 cam_periph_lock(periph); 1081 1082 /* 1083 * If the device has been made invalid, error out 1084 */ 1085 if ((softc->flags & DA_FLAG_PACK_INVALID)) { 1086 cam_periph_unlock(periph); 1087 biofinish(bp, NULL, ENXIO); 1088 return; 1089 } 1090 1091 /* 1092 * Place it in the queue of disk activities for this disk 1093 */ 1094 if (bp->bio_cmd == BIO_DELETE) { 1095 if (bp->bio_bcount == 0) 1096 biodone(bp); 1097 else 1098 bioq_disksort(&softc->delete_queue, bp); 1099 } else 1100 bioq_disksort(&softc->bio_queue, bp); 1101 1102 /* 1103 * Schedule ourselves for performing the work. 1104 */ 1105 daschedule(periph); 1106 cam_periph_unlock(periph); 1107 1108 return; 1109 } 1110 1111 static int 1112 dadump(void *arg, void *virtual, vm_offset_t physical, off_t offset, size_t length) 1113 { 1114 struct cam_periph *periph; 1115 struct da_softc *softc; 1116 u_int secsize; 1117 struct ccb_scsiio csio; 1118 struct disk *dp; 1119 1120 dp = arg; 1121 periph = dp->d_drv1; 1122 if (periph == NULL) 1123 return (ENXIO); 1124 softc = (struct da_softc *)periph->softc; 1125 cam_periph_lock(periph); 1126 secsize = softc->params.secsize; 1127 1128 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) { 1129 cam_periph_unlock(periph); 1130 return (ENXIO); 1131 } 1132 1133 if (length > 0) { 1134 xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1135 csio.ccb_h.ccb_state = DA_CCB_DUMP; 1136 scsi_read_write(&csio, 1137 /*retries*/1, 1138 dadone, 1139 MSG_ORDERED_Q_TAG, 1140 /*read*/FALSE, 1141 /*byte2*/0, 1142 /*minimum_cmd_size*/ softc->minimum_cmd_size, 1143 offset / secsize, 1144 length / secsize, 1145 /*data_ptr*/(u_int8_t *) virtual, 1146 /*dxfer_len*/length, 1147 /*sense_len*/SSD_FULL_SIZE, 1148 da_default_timeout * 1000); 1149 xpt_polled_action((union ccb *)&csio); 1150 cam_periph_unlock(periph); 1151 1152 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1153 printf("Aborting dump due to I/O error.\n"); 1154 if ((csio.ccb_h.status & CAM_STATUS_MASK) == 1155 CAM_SCSI_STATUS_ERROR) 1156 scsi_sense_print(&csio); 1157 else 1158 printf("status == 0x%x, scsi status == 0x%x\n", 1159 csio.ccb_h.status, csio.scsi_status); 1160 return(EIO); 1161 } 1162 return(0); 1163 } 1164 1165 /* 1166 * Sync the disk cache contents to the physical media. 1167 */ 1168 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) { 1169 1170 xpt_setup_ccb(&csio.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1171 csio.ccb_h.ccb_state = DA_CCB_DUMP; 1172 scsi_synchronize_cache(&csio, 1173 /*retries*/1, 1174 /*cbfcnp*/dadone, 1175 MSG_SIMPLE_Q_TAG, 1176 /*begin_lba*/0,/* Cover the whole disk */ 1177 /*lb_count*/0, 1178 SSD_FULL_SIZE, 1179 5 * 60 * 1000); 1180 xpt_polled_action((union ccb *)&csio); 1181 1182 if ((csio.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1183 if ((csio.ccb_h.status & CAM_STATUS_MASK) == 1184 CAM_SCSI_STATUS_ERROR) { 1185 int asc, ascq; 1186 int sense_key, error_code; 1187 1188 scsi_extract_sense_len(&csio.sense_data, 1189 csio.sense_len - csio.sense_resid, 1190 &error_code, &sense_key, &asc, &ascq, 1191 /*show_errors*/ 1); 1192 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 1193 scsi_sense_print(&csio); 1194 } else { 1195 xpt_print(periph->path, "Synchronize cache " 1196 "failed, status == 0x%x, scsi status == " 1197 "0x%x\n", csio.ccb_h.status, 1198 csio.scsi_status); 1199 } 1200 } 1201 } 1202 cam_periph_unlock(periph); 1203 return (0); 1204 } 1205 1206 static int 1207 dagetattr(struct bio *bp) 1208 { 1209 int ret = -1; 1210 struct cam_periph *periph; 1211 1212 if (bp->bio_disk == NULL || bp->bio_disk->d_drv1 == NULL) 1213 return ENXIO; 1214 periph = (struct cam_periph *)bp->bio_disk->d_drv1; 1215 if (periph->path == NULL) 1216 return ENXIO; 1217 1218 ret = xpt_getattr(bp->bio_data, bp->bio_length, bp->bio_attribute, 1219 periph->path); 1220 if (ret == 0) 1221 bp->bio_completed = bp->bio_length; 1222 return ret; 1223 } 1224 1225 static void 1226 dainit(void) 1227 { 1228 cam_status status; 1229 1230 /* 1231 * Install a global async callback. This callback will 1232 * receive async callbacks like "new device found". 1233 */ 1234 status = xpt_register_async(AC_FOUND_DEVICE, daasync, NULL, NULL); 1235 1236 if (status != CAM_REQ_CMP) { 1237 printf("da: Failed to attach master async callback " 1238 "due to status 0x%x!\n", status); 1239 } else if (da_send_ordered) { 1240 1241 /* Register our shutdown event handler */ 1242 if ((EVENTHANDLER_REGISTER(shutdown_post_sync, dashutdown, 1243 NULL, SHUTDOWN_PRI_DEFAULT)) == NULL) 1244 printf("dainit: shutdown event registration failed!\n"); 1245 } 1246 } 1247 1248 static void 1249 daoninvalidate(struct cam_periph *periph) 1250 { 1251 struct da_softc *softc; 1252 1253 softc = (struct da_softc *)periph->softc; 1254 1255 /* 1256 * De-register any async callbacks. 1257 */ 1258 xpt_register_async(0, daasync, periph, periph->path); 1259 1260 softc->flags |= DA_FLAG_PACK_INVALID; 1261 1262 /* 1263 * Return all queued I/O with ENXIO. 1264 * XXX Handle any transactions queued to the card 1265 * with XPT_ABORT_CCB. 1266 */ 1267 bioq_flush(&softc->bio_queue, NULL, ENXIO); 1268 bioq_flush(&softc->delete_queue, NULL, ENXIO); 1269 1270 disk_gone(softc->disk); 1271 xpt_print(periph->path, "lost device - %d outstanding, %d refs\n", 1272 softc->outstanding_cmds, periph->refcount); 1273 } 1274 1275 static void 1276 dacleanup(struct cam_periph *periph) 1277 { 1278 struct da_softc *softc; 1279 1280 softc = (struct da_softc *)periph->softc; 1281 1282 xpt_print(periph->path, "removing device entry\n"); 1283 cam_periph_unlock(periph); 1284 1285 /* 1286 * If we can't free the sysctl tree, oh well... 1287 */ 1288 if ((softc->flags & DA_FLAG_SCTX_INIT) != 0 1289 && sysctl_ctx_free(&softc->sysctl_ctx) != 0) { 1290 xpt_print(periph->path, "can't remove sysctl context\n"); 1291 } 1292 1293 disk_destroy(softc->disk); 1294 callout_drain(&softc->sendordered_c); 1295 free(softc, M_DEVBUF); 1296 cam_periph_lock(periph); 1297 } 1298 1299 static void 1300 daasync(void *callback_arg, u_int32_t code, 1301 struct cam_path *path, void *arg) 1302 { 1303 struct cam_periph *periph; 1304 1305 periph = (struct cam_periph *)callback_arg; 1306 switch (code) { 1307 case AC_FOUND_DEVICE: 1308 { 1309 struct ccb_getdev *cgd; 1310 cam_status status; 1311 1312 cgd = (struct ccb_getdev *)arg; 1313 if (cgd == NULL) 1314 break; 1315 1316 if (cgd->protocol != PROTO_SCSI) 1317 break; 1318 1319 if (SID_TYPE(&cgd->inq_data) != T_DIRECT 1320 && SID_TYPE(&cgd->inq_data) != T_RBC 1321 && SID_TYPE(&cgd->inq_data) != T_OPTICAL) 1322 break; 1323 1324 /* 1325 * Allocate a peripheral instance for 1326 * this device and start the probe 1327 * process. 1328 */ 1329 status = cam_periph_alloc(daregister, daoninvalidate, 1330 dacleanup, dastart, 1331 "da", CAM_PERIPH_BIO, 1332 cgd->ccb_h.path, daasync, 1333 AC_FOUND_DEVICE, cgd); 1334 1335 if (status != CAM_REQ_CMP 1336 && status != CAM_REQ_INPROG) 1337 printf("daasync: Unable to attach to new device " 1338 "due to status 0x%x\n", status); 1339 return; 1340 } 1341 case AC_ADVINFO_CHANGED: 1342 { 1343 uintptr_t buftype; 1344 1345 buftype = (uintptr_t)arg; 1346 if (buftype == CDAI_TYPE_PHYS_PATH) { 1347 struct da_softc *softc; 1348 1349 softc = periph->softc; 1350 disk_attr_changed(softc->disk, "GEOM::physpath", 1351 M_NOWAIT); 1352 } 1353 break; 1354 } 1355 case AC_SENT_BDR: 1356 case AC_BUS_RESET: 1357 { 1358 struct da_softc *softc; 1359 struct ccb_hdr *ccbh; 1360 1361 softc = (struct da_softc *)periph->softc; 1362 /* 1363 * Don't fail on the expected unit attention 1364 * that will occur. 1365 */ 1366 softc->flags |= DA_FLAG_RETRY_UA; 1367 LIST_FOREACH(ccbh, &softc->pending_ccbs, periph_links.le) 1368 ccbh->ccb_state |= DA_CCB_RETRY_UA; 1369 break; 1370 } 1371 default: 1372 break; 1373 } 1374 cam_periph_async(periph, code, path, arg); 1375 } 1376 1377 static void 1378 dasysctlinit(void *context, int pending) 1379 { 1380 struct cam_periph *periph; 1381 struct da_softc *softc; 1382 char tmpstr[80], tmpstr2[80]; 1383 struct ccb_trans_settings cts; 1384 1385 periph = (struct cam_periph *)context; 1386 /* 1387 * periph was held for us when this task was enqueued 1388 */ 1389 if (periph->flags & CAM_PERIPH_INVALID) { 1390 cam_periph_release(periph); 1391 return; 1392 } 1393 1394 softc = (struct da_softc *)periph->softc; 1395 snprintf(tmpstr, sizeof(tmpstr), "CAM DA unit %d", periph->unit_number); 1396 snprintf(tmpstr2, sizeof(tmpstr2), "%d", periph->unit_number); 1397 1398 sysctl_ctx_init(&softc->sysctl_ctx); 1399 softc->flags |= DA_FLAG_SCTX_INIT; 1400 softc->sysctl_tree = SYSCTL_ADD_NODE(&softc->sysctl_ctx, 1401 SYSCTL_STATIC_CHILDREN(_kern_cam_da), OID_AUTO, tmpstr2, 1402 CTLFLAG_RD, 0, tmpstr); 1403 if (softc->sysctl_tree == NULL) { 1404 printf("dasysctlinit: unable to allocate sysctl tree\n"); 1405 cam_periph_release(periph); 1406 return; 1407 } 1408 1409 /* 1410 * Now register the sysctl handler, so the user can change the value on 1411 * the fly. 1412 */ 1413 SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 1414 OID_AUTO, "delete_method", CTLTYPE_STRING | CTLFLAG_RW, 1415 &softc->delete_method, 0, dadeletemethodsysctl, "A", 1416 "BIO_DELETE execution method"); 1417 SYSCTL_ADD_PROC(&softc->sysctl_ctx, SYSCTL_CHILDREN(softc->sysctl_tree), 1418 OID_AUTO, "minimum_cmd_size", CTLTYPE_INT | CTLFLAG_RW, 1419 &softc->minimum_cmd_size, 0, dacmdsizesysctl, "I", 1420 "Minimum CDB size"); 1421 1422 SYSCTL_ADD_INT(&softc->sysctl_ctx, 1423 SYSCTL_CHILDREN(softc->sysctl_tree), 1424 OID_AUTO, 1425 "error_inject", 1426 CTLFLAG_RW, 1427 &softc->error_inject, 1428 0, 1429 "error_inject leaf"); 1430 1431 1432 /* 1433 * Add some addressing info. 1434 */ 1435 memset(&cts, 0, sizeof (cts)); 1436 xpt_setup_ccb(&cts.ccb_h, periph->path, /*priority*/1); 1437 cts.ccb_h.func_code = XPT_GET_TRAN_SETTINGS; 1438 cts.type = CTS_TYPE_CURRENT_SETTINGS; 1439 cam_periph_lock(periph); 1440 xpt_action((union ccb *)&cts); 1441 cam_periph_unlock(periph); 1442 if (cts.ccb_h.status != CAM_REQ_CMP) { 1443 cam_periph_release(periph); 1444 return; 1445 } 1446 if (cts.protocol == PROTO_SCSI && cts.transport == XPORT_FC) { 1447 struct ccb_trans_settings_fc *fc = &cts.xport_specific.fc; 1448 if (fc->valid & CTS_FC_VALID_WWPN) { 1449 softc->wwpn = fc->wwpn; 1450 SYSCTL_ADD_UQUAD(&softc->sysctl_ctx, 1451 SYSCTL_CHILDREN(softc->sysctl_tree), 1452 OID_AUTO, "wwpn", CTLFLAG_RD, 1453 &softc->wwpn, "World Wide Port Name"); 1454 } 1455 } 1456 cam_periph_release(periph); 1457 } 1458 1459 static int 1460 dacmdsizesysctl(SYSCTL_HANDLER_ARGS) 1461 { 1462 int error, value; 1463 1464 value = *(int *)arg1; 1465 1466 error = sysctl_handle_int(oidp, &value, 0, req); 1467 1468 if ((error != 0) 1469 || (req->newptr == NULL)) 1470 return (error); 1471 1472 /* 1473 * Acceptable values here are 6, 10, 12 or 16. 1474 */ 1475 if (value < 6) 1476 value = 6; 1477 else if ((value > 6) 1478 && (value <= 10)) 1479 value = 10; 1480 else if ((value > 10) 1481 && (value <= 12)) 1482 value = 12; 1483 else if (value > 12) 1484 value = 16; 1485 1486 *(int *)arg1 = value; 1487 1488 return (0); 1489 } 1490 1491 static int 1492 dadeletemethodsysctl(SYSCTL_HANDLER_ARGS) 1493 { 1494 char buf[16]; 1495 int error; 1496 const char *p; 1497 int i, value; 1498 1499 value = *(int *)arg1; 1500 if (value < 0 || value > DA_DELETE_MAX) 1501 p = "UNKNOWN"; 1502 else 1503 p = da_delete_method_names[value]; 1504 strncpy(buf, p, sizeof(buf)); 1505 error = sysctl_handle_string(oidp, buf, sizeof(buf), req); 1506 if (error != 0 || req->newptr == NULL) 1507 return (error); 1508 for (i = 0; i <= DA_DELETE_MAX; i++) { 1509 if (strcmp(buf, da_delete_method_names[i]) != 0) 1510 continue; 1511 *(int *)arg1 = i; 1512 return (0); 1513 } 1514 return (EINVAL); 1515 } 1516 1517 static cam_status 1518 daregister(struct cam_periph *periph, void *arg) 1519 { 1520 struct da_softc *softc; 1521 struct ccb_pathinq cpi; 1522 struct ccb_getdev *cgd; 1523 char tmpstr[80]; 1524 caddr_t match; 1525 1526 cgd = (struct ccb_getdev *)arg; 1527 if (periph == NULL) { 1528 printf("daregister: periph was NULL!!\n"); 1529 return(CAM_REQ_CMP_ERR); 1530 } 1531 1532 if (cgd == NULL) { 1533 printf("daregister: no getdev CCB, can't register device\n"); 1534 return(CAM_REQ_CMP_ERR); 1535 } 1536 1537 softc = (struct da_softc *)malloc(sizeof(*softc), M_DEVBUF, 1538 M_NOWAIT|M_ZERO); 1539 1540 if (softc == NULL) { 1541 printf("daregister: Unable to probe new device. " 1542 "Unable to allocate softc\n"); 1543 return(CAM_REQ_CMP_ERR); 1544 } 1545 1546 LIST_INIT(&softc->pending_ccbs); 1547 softc->state = DA_STATE_PROBE; 1548 bioq_init(&softc->bio_queue); 1549 bioq_init(&softc->delete_queue); 1550 bioq_init(&softc->delete_run_queue); 1551 if (SID_IS_REMOVABLE(&cgd->inq_data)) 1552 softc->flags |= DA_FLAG_PACK_REMOVABLE; 1553 if ((cgd->inq_data.flags & SID_CmdQue) != 0) 1554 softc->flags |= DA_FLAG_TAGGED_QUEUING; 1555 softc->unmap_max_ranges = UNMAP_MAX_RANGES; 1556 softc->unmap_max_lba = 1024*1024*2; 1557 1558 periph->softc = softc; 1559 1560 /* 1561 * See if this device has any quirks. 1562 */ 1563 match = cam_quirkmatch((caddr_t)&cgd->inq_data, 1564 (caddr_t)da_quirk_table, 1565 sizeof(da_quirk_table)/sizeof(*da_quirk_table), 1566 sizeof(*da_quirk_table), scsi_inquiry_match); 1567 1568 if (match != NULL) 1569 softc->quirks = ((struct da_quirk_entry *)match)->quirks; 1570 else 1571 softc->quirks = DA_Q_NONE; 1572 1573 /* Check if the SIM does not want 6 byte commands */ 1574 bzero(&cpi, sizeof(cpi)); 1575 xpt_setup_ccb(&cpi.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 1576 cpi.ccb_h.func_code = XPT_PATH_INQ; 1577 xpt_action((union ccb *)&cpi); 1578 if (cpi.ccb_h.status == CAM_REQ_CMP && (cpi.hba_misc & PIM_NO_6_BYTE)) 1579 softc->quirks |= DA_Q_NO_6_BYTE; 1580 1581 TASK_INIT(&softc->sysctl_task, 0, dasysctlinit, periph); 1582 1583 /* 1584 * Take an exclusive refcount on the periph while dastart is called 1585 * to finish the probe. The reference will be dropped in dadone at 1586 * the end of probe. 1587 */ 1588 (void)cam_periph_hold(periph, PRIBIO); 1589 1590 /* 1591 * Schedule a periodic event to occasionally send an 1592 * ordered tag to a device. 1593 */ 1594 callout_init_mtx(&softc->sendordered_c, periph->sim->mtx, 0); 1595 callout_reset(&softc->sendordered_c, 1596 (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL, 1597 dasendorderedtag, softc); 1598 1599 mtx_unlock(periph->sim->mtx); 1600 /* 1601 * RBC devices don't have to support READ(6), only READ(10). 1602 */ 1603 if (softc->quirks & DA_Q_NO_6_BYTE || SID_TYPE(&cgd->inq_data) == T_RBC) 1604 softc->minimum_cmd_size = 10; 1605 else 1606 softc->minimum_cmd_size = 6; 1607 1608 /* 1609 * Load the user's default, if any. 1610 */ 1611 snprintf(tmpstr, sizeof(tmpstr), "kern.cam.da.%d.minimum_cmd_size", 1612 periph->unit_number); 1613 TUNABLE_INT_FETCH(tmpstr, &softc->minimum_cmd_size); 1614 1615 /* 1616 * 6, 10, 12 and 16 are the currently permissible values. 1617 */ 1618 if (softc->minimum_cmd_size < 6) 1619 softc->minimum_cmd_size = 6; 1620 else if ((softc->minimum_cmd_size > 6) 1621 && (softc->minimum_cmd_size <= 10)) 1622 softc->minimum_cmd_size = 10; 1623 else if ((softc->minimum_cmd_size > 10) 1624 && (softc->minimum_cmd_size <= 12)) 1625 softc->minimum_cmd_size = 12; 1626 else if (softc->minimum_cmd_size > 12) 1627 softc->minimum_cmd_size = 16; 1628 1629 /* Predict whether device may support READ CAPACITY(16). */ 1630 if (SID_ANSI_REV(&cgd->inq_data) >= SCSI_REV_SPC3) { 1631 softc->flags |= DA_FLAG_CAN_RC16; 1632 softc->state = DA_STATE_PROBE2; 1633 } 1634 1635 /* 1636 * Register this media as a disk. 1637 */ 1638 softc->disk = disk_alloc(); 1639 softc->disk->d_devstat = devstat_new_entry(periph->periph_name, 1640 periph->unit_number, 0, 1641 DEVSTAT_BS_UNAVAILABLE, 1642 SID_TYPE(&cgd->inq_data) | 1643 XPORT_DEVSTAT_TYPE(cpi.transport), 1644 DEVSTAT_PRIORITY_DISK); 1645 softc->disk->d_open = daopen; 1646 softc->disk->d_close = daclose; 1647 softc->disk->d_strategy = dastrategy; 1648 softc->disk->d_dump = dadump; 1649 softc->disk->d_getattr = dagetattr; 1650 softc->disk->d_name = "da"; 1651 softc->disk->d_drv1 = periph; 1652 if (cpi.maxio == 0) 1653 softc->disk->d_maxsize = DFLTPHYS; /* traditional default */ 1654 else if (cpi.maxio > MAXPHYS) 1655 softc->disk->d_maxsize = MAXPHYS; /* for safety */ 1656 else 1657 softc->disk->d_maxsize = cpi.maxio; 1658 softc->disk->d_unit = periph->unit_number; 1659 softc->disk->d_flags = 0; 1660 if ((softc->quirks & DA_Q_NO_SYNC_CACHE) == 0) 1661 softc->disk->d_flags |= DISKFLAG_CANFLUSHCACHE; 1662 cam_strvis(softc->disk->d_descr, cgd->inq_data.vendor, 1663 sizeof(cgd->inq_data.vendor), sizeof(softc->disk->d_descr)); 1664 strlcat(softc->disk->d_descr, " ", sizeof(softc->disk->d_descr)); 1665 cam_strvis(&softc->disk->d_descr[strlen(softc->disk->d_descr)], 1666 cgd->inq_data.product, sizeof(cgd->inq_data.product), 1667 sizeof(softc->disk->d_descr) - strlen(softc->disk->d_descr)); 1668 softc->disk->d_hba_vendor = cpi.hba_vendor; 1669 softc->disk->d_hba_device = cpi.hba_device; 1670 softc->disk->d_hba_subvendor = cpi.hba_subvendor; 1671 softc->disk->d_hba_subdevice = cpi.hba_subdevice; 1672 disk_create(softc->disk, DISK_VERSION); 1673 mtx_lock(periph->sim->mtx); 1674 1675 /* 1676 * Add async callbacks for events of interest. 1677 * I don't bother checking if this fails as, 1678 * in most cases, the system will function just 1679 * fine without them and the only alternative 1680 * would be to not attach the device on failure. 1681 */ 1682 xpt_register_async(AC_SENT_BDR | AC_BUS_RESET 1683 | AC_LOST_DEVICE | AC_ADVINFO_CHANGED, 1684 daasync, periph, periph->path); 1685 1686 /* 1687 * Emit an attribute changed notification just in case 1688 * physical path information arrived before our async 1689 * event handler was registered, but after anyone attaching 1690 * to our disk device polled it. 1691 */ 1692 disk_attr_changed(softc->disk, "GEOM::physpath", M_NOWAIT); 1693 1694 xpt_schedule(periph, CAM_PRIORITY_DEV); 1695 1696 return(CAM_REQ_CMP); 1697 } 1698 1699 static void 1700 dastart(struct cam_periph *periph, union ccb *start_ccb) 1701 { 1702 struct da_softc *softc; 1703 1704 softc = (struct da_softc *)periph->softc; 1705 1706 switch (softc->state) { 1707 case DA_STATE_NORMAL: 1708 { 1709 struct bio *bp, *bp1; 1710 uint8_t tag_code; 1711 1712 /* Execute immediate CCB if waiting. */ 1713 if (periph->immediate_priority <= periph->pinfo.priority) { 1714 CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE, 1715 ("queuing for immediate ccb\n")); 1716 start_ccb->ccb_h.ccb_state = DA_CCB_WAITING; 1717 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h, 1718 periph_links.sle); 1719 periph->immediate_priority = CAM_PRIORITY_NONE; 1720 wakeup(&periph->ccb_list); 1721 /* May have more work to do, so ensure we stay scheduled */ 1722 daschedule(periph); 1723 break; 1724 } 1725 1726 /* Run BIO_DELETE if not running yet. */ 1727 if (!softc->delete_running && 1728 (bp = bioq_first(&softc->delete_queue)) != NULL) { 1729 uint64_t lba; 1730 u_int count; 1731 1732 if (softc->delete_method == DA_DELETE_UNMAP) { 1733 uint8_t *buf = softc->unmap_buf; 1734 uint64_t lastlba = (uint64_t)-1; 1735 uint32_t lastcount = 0; 1736 int blocks = 0, off, ranges = 0; 1737 1738 softc->delete_running = 1; 1739 bzero(softc->unmap_buf, sizeof(softc->unmap_buf)); 1740 bp1 = bp; 1741 do { 1742 bioq_remove(&softc->delete_queue, bp1); 1743 if (bp1 != bp) 1744 bioq_insert_tail(&softc->delete_run_queue, bp1); 1745 lba = bp1->bio_pblkno; 1746 count = bp1->bio_bcount / softc->params.secsize; 1747 1748 /* Try to extend the previous range. */ 1749 if (lba == lastlba) { 1750 lastcount += count; 1751 off = (ranges - 1) * 16 + 8; 1752 scsi_ulto4b(lastcount, &buf[off + 8]); 1753 } else if (count > 0) { 1754 off = ranges * 16 + 8; 1755 scsi_u64to8b(lba, &buf[off + 0]); 1756 scsi_ulto4b(count, &buf[off + 8]); 1757 lastcount = count; 1758 ranges++; 1759 } 1760 blocks += count; 1761 lastlba = lba + count; 1762 bp1 = bioq_first(&softc->delete_queue); 1763 if (bp1 == NULL || 1764 ranges >= softc->unmap_max_ranges || 1765 blocks + bp1->bio_bcount / 1766 softc->params.secsize > softc->unmap_max_lba) 1767 break; 1768 } while (1); 1769 scsi_ulto2b(count * 16 + 6, &buf[0]); 1770 scsi_ulto2b(count * 16, &buf[2]); 1771 1772 scsi_unmap(&start_ccb->csio, 1773 /*retries*/da_retry_count, 1774 /*cbfcnp*/dadone, 1775 /*tag_action*/MSG_SIMPLE_Q_TAG, 1776 /*byte2*/0, 1777 /*data_ptr*/ buf, 1778 /*dxfer_len*/ count * 16 + 8, 1779 /*sense_len*/SSD_FULL_SIZE, 1780 da_default_timeout * 1000); 1781 start_ccb->ccb_h.ccb_state = DA_CCB_DELETE; 1782 goto out; 1783 } else if (softc->delete_method == DA_DELETE_ZERO || 1784 softc->delete_method == DA_DELETE_WS10 || 1785 softc->delete_method == DA_DELETE_WS16) { 1786 softc->delete_running = 1; 1787 lba = bp->bio_pblkno; 1788 count = 0; 1789 bp1 = bp; 1790 do { 1791 bioq_remove(&softc->delete_queue, bp1); 1792 if (bp1 != bp) 1793 bioq_insert_tail(&softc->delete_run_queue, bp1); 1794 count += bp1->bio_bcount / softc->params.secsize; 1795 bp1 = bioq_first(&softc->delete_queue); 1796 if (bp1 == NULL || 1797 lba + count != bp1->bio_pblkno || 1798 count + bp1->bio_bcount / 1799 softc->params.secsize > 0xffff) 1800 break; 1801 } while (1); 1802 1803 scsi_write_same(&start_ccb->csio, 1804 /*retries*/da_retry_count, 1805 /*cbfcnp*/dadone, 1806 /*tag_action*/MSG_SIMPLE_Q_TAG, 1807 /*byte2*/softc->delete_method == 1808 DA_DELETE_ZERO ? 0 : SWS_UNMAP, 1809 softc->delete_method == 1810 DA_DELETE_WS16 ? 16 : 10, 1811 /*lba*/lba, 1812 /*block_count*/count, 1813 /*data_ptr*/ __DECONST(void *, 1814 zero_region), 1815 /*dxfer_len*/ softc->params.secsize, 1816 /*sense_len*/SSD_FULL_SIZE, 1817 da_default_timeout * 1000); 1818 start_ccb->ccb_h.ccb_state = DA_CCB_DELETE; 1819 goto out; 1820 } else { 1821 bioq_flush(&softc->delete_queue, NULL, 0); 1822 /* FALLTHROUGH */ 1823 } 1824 } 1825 1826 /* Run regular command. */ 1827 bp = bioq_takefirst(&softc->bio_queue); 1828 if (bp == NULL) { 1829 xpt_release_ccb(start_ccb); 1830 break; 1831 } 1832 1833 if ((bp->bio_flags & BIO_ORDERED) != 0 || 1834 (softc->flags & DA_FLAG_NEED_OTAG) != 0) { 1835 softc->flags &= ~DA_FLAG_NEED_OTAG; 1836 softc->ordered_tag_count++; 1837 tag_code = MSG_ORDERED_Q_TAG; 1838 } else { 1839 tag_code = MSG_SIMPLE_Q_TAG; 1840 } 1841 1842 switch (bp->bio_cmd) { 1843 case BIO_READ: 1844 case BIO_WRITE: 1845 scsi_read_write(&start_ccb->csio, 1846 /*retries*/da_retry_count, 1847 /*cbfcnp*/dadone, 1848 /*tag_action*/tag_code, 1849 /*read_op*/bp->bio_cmd 1850 == BIO_READ, 1851 /*byte2*/0, 1852 softc->minimum_cmd_size, 1853 /*lba*/bp->bio_pblkno, 1854 /*block_count*/bp->bio_bcount / 1855 softc->params.secsize, 1856 /*data_ptr*/ bp->bio_data, 1857 /*dxfer_len*/ bp->bio_bcount, 1858 /*sense_len*/SSD_FULL_SIZE, 1859 da_default_timeout * 1000); 1860 break; 1861 case BIO_FLUSH: 1862 /* 1863 * BIO_FLUSH doesn't currently communicate 1864 * range data, so we synchronize the cache 1865 * over the whole disk. We also force 1866 * ordered tag semantics the flush applies 1867 * to all previously queued I/O. 1868 */ 1869 scsi_synchronize_cache(&start_ccb->csio, 1870 /*retries*/1, 1871 /*cbfcnp*/dadone, 1872 MSG_ORDERED_Q_TAG, 1873 /*begin_lba*/0, 1874 /*lb_count*/0, 1875 SSD_FULL_SIZE, 1876 da_default_timeout*1000); 1877 break; 1878 } 1879 start_ccb->ccb_h.ccb_state = DA_CCB_BUFFER_IO; 1880 1881 out: 1882 /* 1883 * Block out any asyncronous callbacks 1884 * while we touch the pending ccb list. 1885 */ 1886 LIST_INSERT_HEAD(&softc->pending_ccbs, 1887 &start_ccb->ccb_h, periph_links.le); 1888 softc->outstanding_cmds++; 1889 1890 /* We expect a unit attention from this device */ 1891 if ((softc->flags & DA_FLAG_RETRY_UA) != 0) { 1892 start_ccb->ccb_h.ccb_state |= DA_CCB_RETRY_UA; 1893 softc->flags &= ~DA_FLAG_RETRY_UA; 1894 } 1895 1896 start_ccb->ccb_h.ccb_bp = bp; 1897 xpt_action(start_ccb); 1898 1899 /* May have more work to do, so ensure we stay scheduled */ 1900 daschedule(periph); 1901 break; 1902 } 1903 case DA_STATE_PROBE: 1904 { 1905 struct ccb_scsiio *csio; 1906 struct scsi_read_capacity_data *rcap; 1907 1908 rcap = (struct scsi_read_capacity_data *) 1909 malloc(sizeof(*rcap), M_SCSIDA, M_NOWAIT|M_ZERO); 1910 if (rcap == NULL) { 1911 printf("dastart: Couldn't malloc read_capacity data\n"); 1912 /* da_free_periph??? */ 1913 break; 1914 } 1915 csio = &start_ccb->csio; 1916 scsi_read_capacity(csio, 1917 /*retries*/4, 1918 dadone, 1919 MSG_SIMPLE_Q_TAG, 1920 rcap, 1921 SSD_FULL_SIZE, 1922 /*timeout*/5000); 1923 start_ccb->ccb_h.ccb_bp = NULL; 1924 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE; 1925 xpt_action(start_ccb); 1926 break; 1927 } 1928 case DA_STATE_PROBE2: 1929 { 1930 struct ccb_scsiio *csio; 1931 struct scsi_read_capacity_data_long *rcaplong; 1932 1933 rcaplong = (struct scsi_read_capacity_data_long *) 1934 malloc(sizeof(*rcaplong), M_SCSIDA, M_NOWAIT|M_ZERO); 1935 if (rcaplong == NULL) { 1936 printf("dastart: Couldn't malloc read_capacity data\n"); 1937 /* da_free_periph??? */ 1938 break; 1939 } 1940 csio = &start_ccb->csio; 1941 scsi_read_capacity_16(csio, 1942 /*retries*/ 4, 1943 /*cbfcnp*/ dadone, 1944 /*tag_action*/ MSG_SIMPLE_Q_TAG, 1945 /*lba*/ 0, 1946 /*reladr*/ 0, 1947 /*pmi*/ 0, 1948 /*rcap_buf*/ (uint8_t *)rcaplong, 1949 /*rcap_buf_len*/ sizeof(*rcaplong), 1950 /*sense_len*/ SSD_FULL_SIZE, 1951 /*timeout*/ 60000); 1952 start_ccb->ccb_h.ccb_bp = NULL; 1953 start_ccb->ccb_h.ccb_state = DA_CCB_PROBE2; 1954 xpt_action(start_ccb); 1955 break; 1956 } 1957 } 1958 } 1959 1960 static int 1961 cmd6workaround(union ccb *ccb) 1962 { 1963 struct scsi_rw_6 cmd6; 1964 struct scsi_rw_10 *cmd10; 1965 struct da_softc *softc; 1966 u_int8_t *cdb; 1967 struct bio *bp; 1968 int frozen; 1969 1970 cdb = ccb->csio.cdb_io.cdb_bytes; 1971 softc = (struct da_softc *)xpt_path_periph(ccb->ccb_h.path)->softc; 1972 1973 if (ccb->ccb_h.ccb_state == DA_CCB_DELETE) { 1974 if (softc->delete_method == DA_DELETE_UNMAP) { 1975 xpt_print(ccb->ccb_h.path, "UNMAP is not supported, " 1976 "switching to WRITE SAME(16) with UNMAP.\n"); 1977 softc->delete_method = DA_DELETE_WS16; 1978 } else if (softc->delete_method == DA_DELETE_WS16) { 1979 xpt_print(ccb->ccb_h.path, 1980 "WRITE SAME(16) with UNMAP is not supported, " 1981 "disabling BIO_DELETE.\n"); 1982 softc->delete_method = DA_DELETE_DISABLE; 1983 } else if (softc->delete_method == DA_DELETE_WS10) { 1984 xpt_print(ccb->ccb_h.path, 1985 "WRITE SAME(10) with UNMAP is not supported, " 1986 "disabling BIO_DELETE.\n"); 1987 softc->delete_method = DA_DELETE_DISABLE; 1988 } else if (softc->delete_method == DA_DELETE_ZERO) { 1989 xpt_print(ccb->ccb_h.path, 1990 "WRITE SAME(10) is not supported, " 1991 "disabling BIO_DELETE.\n"); 1992 softc->delete_method = DA_DELETE_DISABLE; 1993 } else 1994 softc->delete_method = DA_DELETE_DISABLE; 1995 while ((bp = bioq_takefirst(&softc->delete_run_queue)) 1996 != NULL) 1997 bioq_disksort(&softc->delete_queue, bp); 1998 bioq_insert_tail(&softc->delete_queue, 1999 (struct bio *)ccb->ccb_h.ccb_bp); 2000 ccb->ccb_h.ccb_bp = NULL; 2001 return (0); 2002 } 2003 2004 /* Translation only possible if CDB is an array and cmd is R/W6 */ 2005 if ((ccb->ccb_h.flags & CAM_CDB_POINTER) != 0 || 2006 (*cdb != READ_6 && *cdb != WRITE_6)) 2007 return 0; 2008 2009 xpt_print(ccb->ccb_h.path, "READ(6)/WRITE(6) not supported, " 2010 "increasing minimum_cmd_size to 10.\n"); 2011 softc->minimum_cmd_size = 10; 2012 2013 bcopy(cdb, &cmd6, sizeof(struct scsi_rw_6)); 2014 cmd10 = (struct scsi_rw_10 *)cdb; 2015 cmd10->opcode = (cmd6.opcode == READ_6) ? READ_10 : WRITE_10; 2016 cmd10->byte2 = 0; 2017 scsi_ulto4b(scsi_3btoul(cmd6.addr), cmd10->addr); 2018 cmd10->reserved = 0; 2019 scsi_ulto2b(cmd6.length, cmd10->length); 2020 cmd10->control = cmd6.control; 2021 ccb->csio.cdb_len = sizeof(*cmd10); 2022 2023 /* Requeue request, unfreezing queue if necessary */ 2024 frozen = (ccb->ccb_h.status & CAM_DEV_QFRZN) != 0; 2025 ccb->ccb_h.status = CAM_REQUEUE_REQ; 2026 xpt_action(ccb); 2027 if (frozen) { 2028 cam_release_devq(ccb->ccb_h.path, 2029 /*relsim_flags*/0, 2030 /*reduction*/0, 2031 /*timeout*/0, 2032 /*getcount_only*/0); 2033 } 2034 return (ERESTART); 2035 } 2036 2037 static void 2038 dadone(struct cam_periph *periph, union ccb *done_ccb) 2039 { 2040 struct da_softc *softc; 2041 struct ccb_scsiio *csio; 2042 u_int32_t priority; 2043 2044 softc = (struct da_softc *)periph->softc; 2045 priority = done_ccb->ccb_h.pinfo.priority; 2046 csio = &done_ccb->csio; 2047 switch (csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) { 2048 case DA_CCB_BUFFER_IO: 2049 case DA_CCB_DELETE: 2050 { 2051 struct bio *bp, *bp1; 2052 2053 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 2054 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 2055 int error; 2056 int sf; 2057 2058 if ((csio->ccb_h.ccb_state & DA_CCB_RETRY_UA) != 0) 2059 sf = SF_RETRY_UA; 2060 else 2061 sf = 0; 2062 2063 error = daerror(done_ccb, CAM_RETRY_SELTO, sf); 2064 if (error == ERESTART) { 2065 /* 2066 * A retry was scheuled, so 2067 * just return. 2068 */ 2069 return; 2070 } 2071 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 2072 if (error != 0) { 2073 int queued_error; 2074 2075 /* 2076 * return all queued I/O with EIO, so that 2077 * the client can retry these I/Os in the 2078 * proper order should it attempt to recover. 2079 */ 2080 queued_error = EIO; 2081 2082 if (error == ENXIO 2083 && (softc->flags & DA_FLAG_PACK_INVALID)== 0) { 2084 /* 2085 * Catastrophic error. Mark our pack as 2086 * invalid. 2087 */ 2088 /* 2089 * XXX See if this is really a media 2090 * XXX change first? 2091 */ 2092 xpt_print(periph->path, 2093 "Invalidating pack\n"); 2094 softc->flags |= DA_FLAG_PACK_INVALID; 2095 queued_error = ENXIO; 2096 } 2097 bioq_flush(&softc->bio_queue, NULL, 2098 queued_error); 2099 if (bp != NULL) { 2100 bp->bio_error = error; 2101 bp->bio_resid = bp->bio_bcount; 2102 bp->bio_flags |= BIO_ERROR; 2103 } 2104 } else if (bp != NULL) { 2105 bp->bio_resid = csio->resid; 2106 bp->bio_error = 0; 2107 if (bp->bio_resid != 0) 2108 bp->bio_flags |= BIO_ERROR; 2109 } 2110 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 2111 cam_release_devq(done_ccb->ccb_h.path, 2112 /*relsim_flags*/0, 2113 /*reduction*/0, 2114 /*timeout*/0, 2115 /*getcount_only*/0); 2116 } else if (bp != NULL) { 2117 if ((done_ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 2118 panic("REQ_CMP with QFRZN"); 2119 bp->bio_resid = csio->resid; 2120 if (csio->resid > 0) 2121 bp->bio_flags |= BIO_ERROR; 2122 if (softc->error_inject != 0) { 2123 bp->bio_error = softc->error_inject; 2124 bp->bio_resid = bp->bio_bcount; 2125 bp->bio_flags |= BIO_ERROR; 2126 softc->error_inject = 0; 2127 } 2128 2129 } 2130 2131 /* 2132 * Block out any asyncronous callbacks 2133 * while we touch the pending ccb list. 2134 */ 2135 LIST_REMOVE(&done_ccb->ccb_h, periph_links.le); 2136 softc->outstanding_cmds--; 2137 if (softc->outstanding_cmds == 0) 2138 softc->flags |= DA_FLAG_WENT_IDLE; 2139 2140 if ((softc->flags & DA_FLAG_PACK_INVALID) != 0) { 2141 xpt_print(periph->path, "oustanding %d\n", 2142 softc->outstanding_cmds); 2143 } 2144 2145 if ((csio->ccb_h.ccb_state & DA_CCB_TYPE_MASK) == 2146 DA_CCB_DELETE) { 2147 while ((bp1 = bioq_takefirst(&softc->delete_run_queue)) 2148 != NULL) { 2149 bp1->bio_resid = bp->bio_resid; 2150 bp1->bio_error = bp->bio_error; 2151 if (bp->bio_flags & BIO_ERROR) 2152 bp1->bio_flags |= BIO_ERROR; 2153 biodone(bp1); 2154 } 2155 softc->delete_running = 0; 2156 if (bp != NULL) 2157 biodone(bp); 2158 daschedule(periph); 2159 } else if (bp != NULL) 2160 biodone(bp); 2161 break; 2162 } 2163 case DA_CCB_PROBE: 2164 case DA_CCB_PROBE2: 2165 { 2166 struct scsi_read_capacity_data *rdcap; 2167 struct scsi_read_capacity_data_long *rcaplong; 2168 char announce_buf[80]; 2169 2170 rdcap = NULL; 2171 rcaplong = NULL; 2172 if (softc->state == DA_STATE_PROBE) 2173 rdcap =(struct scsi_read_capacity_data *)csio->data_ptr; 2174 else 2175 rcaplong = (struct scsi_read_capacity_data_long *) 2176 csio->data_ptr; 2177 2178 if ((csio->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_CMP) { 2179 struct disk_params *dp; 2180 uint32_t block_size; 2181 uint64_t maxsector; 2182 u_int lbppbe; /* LB per physical block exponent. */ 2183 u_int lalba; /* Lowest aligned LBA. */ 2184 2185 if (softc->state == DA_STATE_PROBE) { 2186 block_size = scsi_4btoul(rdcap->length); 2187 maxsector = scsi_4btoul(rdcap->addr); 2188 lbppbe = 0; 2189 lalba = 0; 2190 2191 /* 2192 * According to SBC-2, if the standard 10 2193 * byte READ CAPACITY command returns 2^32, 2194 * we should issue the 16 byte version of 2195 * the command, since the device in question 2196 * has more sectors than can be represented 2197 * with the short version of the command. 2198 */ 2199 if (maxsector == 0xffffffff) { 2200 softc->state = DA_STATE_PROBE2; 2201 free(rdcap, M_SCSIDA); 2202 xpt_release_ccb(done_ccb); 2203 xpt_schedule(periph, priority); 2204 return; 2205 } 2206 } else { 2207 block_size = scsi_4btoul(rcaplong->length); 2208 maxsector = scsi_8btou64(rcaplong->addr); 2209 lbppbe = rcaplong->prot_lbppbe & SRC16_LBPPBE; 2210 lalba = scsi_2btoul(rcaplong->lalba_lbp); 2211 } 2212 2213 /* 2214 * Because GEOM code just will panic us if we 2215 * give them an 'illegal' value we'll avoid that 2216 * here. 2217 */ 2218 if (block_size == 0 && maxsector == 0) { 2219 snprintf(announce_buf, sizeof(announce_buf), 2220 "0MB (no media?)"); 2221 } else if (block_size >= MAXPHYS || block_size == 0) { 2222 xpt_print(periph->path, 2223 "unsupportable block size %ju\n", 2224 (uintmax_t) block_size); 2225 announce_buf[0] = '\0'; 2226 cam_periph_invalidate(periph); 2227 } else { 2228 /* 2229 * We pass rcaplong into dasetgeom(), 2230 * because it will only use it if it is 2231 * non-NULL. 2232 */ 2233 dasetgeom(periph, block_size, maxsector, 2234 rcaplong, sizeof(*rcaplong)); 2235 if ((lalba & SRC16_LBPME_A) 2236 && softc->delete_method == DA_DELETE_NONE) 2237 softc->delete_method = DA_DELETE_UNMAP; 2238 dp = &softc->params; 2239 snprintf(announce_buf, sizeof(announce_buf), 2240 "%juMB (%ju %u byte sectors: %dH %dS/T " 2241 "%dC)", (uintmax_t) 2242 (((uintmax_t)dp->secsize * 2243 dp->sectors) / (1024*1024)), 2244 (uintmax_t)dp->sectors, 2245 dp->secsize, dp->heads, 2246 dp->secs_per_track, dp->cylinders); 2247 } 2248 } else { 2249 int error; 2250 2251 announce_buf[0] = '\0'; 2252 2253 /* 2254 * Retry any UNIT ATTENTION type errors. They 2255 * are expected at boot. 2256 */ 2257 error = daerror(done_ccb, CAM_RETRY_SELTO, 2258 SF_RETRY_UA|SF_NO_PRINT); 2259 if (error == ERESTART) { 2260 /* 2261 * A retry was scheuled, so 2262 * just return. 2263 */ 2264 return; 2265 } else if (error != 0) { 2266 struct scsi_sense_data *sense; 2267 int asc, ascq; 2268 int sense_key, error_code; 2269 int have_sense; 2270 cam_status status; 2271 struct ccb_getdev cgd; 2272 2273 /* Don't wedge this device's queue */ 2274 status = done_ccb->ccb_h.status; 2275 if ((status & CAM_DEV_QFRZN) != 0) 2276 cam_release_devq(done_ccb->ccb_h.path, 2277 /*relsim_flags*/0, 2278 /*reduction*/0, 2279 /*timeout*/0, 2280 /*getcount_only*/0); 2281 2282 2283 xpt_setup_ccb(&cgd.ccb_h, 2284 done_ccb->ccb_h.path, 2285 CAM_PRIORITY_NORMAL); 2286 cgd.ccb_h.func_code = XPT_GDEV_TYPE; 2287 xpt_action((union ccb *)&cgd); 2288 2289 if (((csio->ccb_h.flags & CAM_SENSE_PHYS) != 0) 2290 || ((csio->ccb_h.flags & CAM_SENSE_PTR) != 0) 2291 || ((status & CAM_AUTOSNS_VALID) == 0)) 2292 have_sense = FALSE; 2293 else 2294 have_sense = TRUE; 2295 2296 if (have_sense) { 2297 sense = &csio->sense_data; 2298 scsi_extract_sense_len(sense, 2299 csio->sense_len - csio->sense_resid, 2300 &error_code, &sense_key, &asc, 2301 &ascq, /*show_errors*/ 1); 2302 } 2303 /* 2304 * If we tried READ CAPACITY(16) and failed, 2305 * fallback to READ CAPACITY(10). 2306 */ 2307 if ((softc->state == DA_STATE_PROBE2) && 2308 (softc->flags & DA_FLAG_CAN_RC16) && 2309 (((csio->ccb_h.status & CAM_STATUS_MASK) == 2310 CAM_REQ_INVALID) || 2311 ((have_sense) && 2312 (error_code == SSD_CURRENT_ERROR) && 2313 (sense_key == SSD_KEY_ILLEGAL_REQUEST)))) { 2314 softc->flags &= ~DA_FLAG_CAN_RC16; 2315 softc->state = DA_STATE_PROBE; 2316 free(rdcap, M_SCSIDA); 2317 xpt_release_ccb(done_ccb); 2318 xpt_schedule(periph, priority); 2319 return; 2320 } else 2321 /* 2322 * Attach to anything that claims to be a 2323 * direct access or optical disk device, 2324 * as long as it doesn't return a "Logical 2325 * unit not supported" (0x25) error. 2326 */ 2327 if ((have_sense) && (asc != 0x25) 2328 && (error_code == SSD_CURRENT_ERROR)) { 2329 const char *sense_key_desc; 2330 const char *asc_desc; 2331 2332 scsi_sense_desc(sense_key, asc, ascq, 2333 &cgd.inq_data, 2334 &sense_key_desc, 2335 &asc_desc); 2336 snprintf(announce_buf, 2337 sizeof(announce_buf), 2338 "Attempt to query device " 2339 "size failed: %s, %s", 2340 sense_key_desc, 2341 asc_desc); 2342 } else { 2343 if (have_sense) 2344 scsi_sense_print( 2345 &done_ccb->csio); 2346 else { 2347 xpt_print(periph->path, 2348 "got CAM status %#x\n", 2349 done_ccb->ccb_h.status); 2350 } 2351 2352 xpt_print(periph->path, "fatal error, " 2353 "failed to attach to device\n"); 2354 2355 /* 2356 * Free up resources. 2357 */ 2358 cam_periph_invalidate(periph); 2359 } 2360 } 2361 } 2362 free(csio->data_ptr, M_SCSIDA); 2363 if (announce_buf[0] != '\0' && ((softc->flags & DA_FLAG_PROBED) == 0)) { 2364 /* 2365 * Create our sysctl variables, now that we know 2366 * we have successfully attached. 2367 */ 2368 /* increase the refcount */ 2369 if (cam_periph_acquire(periph) == CAM_REQ_CMP) { 2370 taskqueue_enqueue(taskqueue_thread, 2371 &softc->sysctl_task); 2372 xpt_announce_periph(periph, announce_buf); 2373 } else { 2374 xpt_print(periph->path, "fatal error, " 2375 "could not acquire reference count\n"); 2376 } 2377 } 2378 /* 2379 * Since our peripheral may be invalidated by an error 2380 * above or an external event, we must release our CCB 2381 * before releasing the probe lock on the peripheral. 2382 * The peripheral will only go away once the last lock 2383 * is removed, and we need it around for the CCB release 2384 * operation. 2385 */ 2386 xpt_release_ccb(done_ccb); 2387 softc->state = DA_STATE_NORMAL; 2388 wakeup(&softc->disk->d_mediasize); 2389 if ((softc->flags & DA_FLAG_PROBED) == 0) { 2390 softc->flags |= DA_FLAG_PROBED; 2391 cam_periph_unhold(periph); 2392 } else 2393 cam_periph_release_locked(periph); 2394 return; 2395 } 2396 case DA_CCB_WAITING: 2397 { 2398 /* Caller will release the CCB */ 2399 wakeup(&done_ccb->ccb_h.cbfcnp); 2400 return; 2401 } 2402 case DA_CCB_DUMP: 2403 /* No-op. We're polling */ 2404 return; 2405 default: 2406 break; 2407 } 2408 xpt_release_ccb(done_ccb); 2409 } 2410 2411 static void 2412 dareprobe(struct cam_periph *periph) 2413 { 2414 struct da_softc *softc; 2415 cam_status status; 2416 2417 softc = (struct da_softc *)periph->softc; 2418 2419 /* Probe in progress; don't interfere. */ 2420 if ((softc->flags & DA_FLAG_PROBED) == 0) 2421 return; 2422 2423 status = cam_periph_acquire(periph); 2424 KASSERT(status == CAM_REQ_CMP, 2425 ("dareprobe: cam_periph_acquire failed")); 2426 2427 if (softc->flags & DA_FLAG_CAN_RC16) 2428 softc->state = DA_STATE_PROBE2; 2429 else 2430 softc->state = DA_STATE_PROBE; 2431 2432 xpt_schedule(periph, CAM_PRIORITY_DEV); 2433 } 2434 2435 static int 2436 daerror(union ccb *ccb, u_int32_t cam_flags, u_int32_t sense_flags) 2437 { 2438 struct da_softc *softc; 2439 struct cam_periph *periph; 2440 int error; 2441 2442 periph = xpt_path_periph(ccb->ccb_h.path); 2443 softc = (struct da_softc *)periph->softc; 2444 2445 /* 2446 * Automatically detect devices that do not support 2447 * READ(6)/WRITE(6) and upgrade to using 10 byte cdbs. 2448 */ 2449 error = 0; 2450 if ((ccb->ccb_h.status & CAM_STATUS_MASK) == CAM_REQ_INVALID) { 2451 error = cmd6workaround(ccb); 2452 } else if (((ccb->ccb_h.status & CAM_STATUS_MASK) == 2453 CAM_SCSI_STATUS_ERROR) 2454 && (ccb->ccb_h.status & CAM_AUTOSNS_VALID) 2455 && (ccb->csio.scsi_status == SCSI_STATUS_CHECK_COND) 2456 && ((ccb->ccb_h.flags & CAM_SENSE_PHYS) == 0) 2457 && ((ccb->ccb_h.flags & CAM_SENSE_PTR) == 0)) { 2458 int sense_key, error_code, asc, ascq; 2459 2460 scsi_extract_sense(&ccb->csio.sense_data, 2461 &error_code, &sense_key, &asc, &ascq); 2462 if (sense_key == SSD_KEY_ILLEGAL_REQUEST) 2463 error = cmd6workaround(ccb); 2464 /* 2465 * If the target replied with CAPACITY DATA HAS CHANGED UA, 2466 * query the capacity and notify upper layers. 2467 */ 2468 else if (sense_key == SSD_KEY_UNIT_ATTENTION && 2469 asc == 0x2A && ascq == 0x09) { 2470 xpt_print(periph->path, "capacity data has changed\n"); 2471 dareprobe(periph); 2472 sense_flags |= SF_NO_PRINT; 2473 } 2474 } 2475 if (error == ERESTART) 2476 return (ERESTART); 2477 2478 /* 2479 * XXX 2480 * Until we have a better way of doing pack validation, 2481 * don't treat UAs as errors. 2482 */ 2483 sense_flags |= SF_RETRY_UA; 2484 return(cam_periph_error(ccb, cam_flags, sense_flags, 2485 &softc->saved_ccb)); 2486 } 2487 2488 static void 2489 daprevent(struct cam_periph *periph, int action) 2490 { 2491 struct da_softc *softc; 2492 union ccb *ccb; 2493 int error; 2494 2495 softc = (struct da_softc *)periph->softc; 2496 2497 if (((action == PR_ALLOW) 2498 && (softc->flags & DA_FLAG_PACK_LOCKED) == 0) 2499 || ((action == PR_PREVENT) 2500 && (softc->flags & DA_FLAG_PACK_LOCKED) != 0)) { 2501 return; 2502 } 2503 2504 ccb = cam_periph_getccb(periph, CAM_PRIORITY_NORMAL); 2505 2506 scsi_prevent(&ccb->csio, 2507 /*retries*/1, 2508 /*cbcfp*/dadone, 2509 MSG_SIMPLE_Q_TAG, 2510 action, 2511 SSD_FULL_SIZE, 2512 5000); 2513 2514 error = cam_periph_runccb(ccb, /*error_routine*/NULL, CAM_RETRY_SELTO, 2515 SF_RETRY_UA, softc->disk->d_devstat); 2516 2517 if (error == 0) { 2518 if (action == PR_ALLOW) 2519 softc->flags &= ~DA_FLAG_PACK_LOCKED; 2520 else 2521 softc->flags |= DA_FLAG_PACK_LOCKED; 2522 } 2523 2524 xpt_release_ccb(ccb); 2525 } 2526 2527 static void 2528 dasetgeom(struct cam_periph *periph, uint32_t block_len, uint64_t maxsector, 2529 struct scsi_read_capacity_data_long *rcaplong, size_t rcap_len) 2530 { 2531 struct ccb_calc_geometry ccg; 2532 struct da_softc *softc; 2533 struct disk_params *dp; 2534 u_int lbppbe, lalba; 2535 2536 softc = (struct da_softc *)periph->softc; 2537 2538 dp = &softc->params; 2539 dp->secsize = block_len; 2540 dp->sectors = maxsector + 1; 2541 if (rcaplong != NULL) { 2542 lbppbe = rcaplong->prot_lbppbe & SRC16_LBPPBE; 2543 lalba = scsi_2btoul(rcaplong->lalba_lbp); 2544 lalba &= SRC16_LALBA_A; 2545 } else { 2546 lbppbe = 0; 2547 lalba = 0; 2548 } 2549 2550 if (lbppbe > 0) { 2551 dp->stripesize = block_len << lbppbe; 2552 dp->stripeoffset = (dp->stripesize - block_len * lalba) % 2553 dp->stripesize; 2554 } else if (softc->quirks & DA_Q_4K) { 2555 dp->stripesize = 4096; 2556 dp->stripeoffset = 0; 2557 } else { 2558 dp->stripesize = 0; 2559 dp->stripeoffset = 0; 2560 } 2561 /* 2562 * Have the controller provide us with a geometry 2563 * for this disk. The only time the geometry 2564 * matters is when we boot and the controller 2565 * is the only one knowledgeable enough to come 2566 * up with something that will make this a bootable 2567 * device. 2568 */ 2569 xpt_setup_ccb(&ccg.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 2570 ccg.ccb_h.func_code = XPT_CALC_GEOMETRY; 2571 ccg.block_size = dp->secsize; 2572 ccg.volume_size = dp->sectors; 2573 ccg.heads = 0; 2574 ccg.secs_per_track = 0; 2575 ccg.cylinders = 0; 2576 xpt_action((union ccb*)&ccg); 2577 if ((ccg.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 2578 /* 2579 * We don't know what went wrong here- but just pick 2580 * a geometry so we don't have nasty things like divide 2581 * by zero. 2582 */ 2583 dp->heads = 255; 2584 dp->secs_per_track = 255; 2585 dp->cylinders = dp->sectors / (255 * 255); 2586 if (dp->cylinders == 0) { 2587 dp->cylinders = 1; 2588 } 2589 } else { 2590 dp->heads = ccg.heads; 2591 dp->secs_per_track = ccg.secs_per_track; 2592 dp->cylinders = ccg.cylinders; 2593 } 2594 2595 /* 2596 * If the user supplied a read capacity buffer, and if it is 2597 * different than the previous buffer, update the data in the EDT. 2598 * If it's the same, we don't bother. This avoids sending an 2599 * update every time someone opens this device. 2600 */ 2601 if ((rcaplong != NULL) 2602 && (bcmp(rcaplong, &softc->rcaplong, 2603 min(sizeof(softc->rcaplong), rcap_len)) != 0)) { 2604 struct ccb_dev_advinfo cdai; 2605 2606 xpt_setup_ccb(&cdai.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 2607 cdai.ccb_h.func_code = XPT_DEV_ADVINFO; 2608 cdai.buftype = CDAI_TYPE_RCAPLONG; 2609 cdai.flags |= CDAI_FLAG_STORE; 2610 cdai.bufsiz = rcap_len; 2611 cdai.buf = (uint8_t *)rcaplong; 2612 xpt_action((union ccb *)&cdai); 2613 if ((cdai.ccb_h.status & CAM_DEV_QFRZN) != 0) 2614 cam_release_devq(cdai.ccb_h.path, 0, 0, 0, FALSE); 2615 if (cdai.ccb_h.status != CAM_REQ_CMP) { 2616 xpt_print(periph->path, "%s: failed to set read " 2617 "capacity advinfo\n", __func__); 2618 /* Use cam_error_print() to decode the status */ 2619 cam_error_print((union ccb *)&cdai, CAM_ESF_CAM_STATUS, 2620 CAM_EPF_ALL); 2621 } else { 2622 bcopy(rcaplong, &softc->rcaplong, 2623 min(sizeof(softc->rcaplong), rcap_len)); 2624 } 2625 } 2626 2627 softc->disk->d_sectorsize = softc->params.secsize; 2628 softc->disk->d_mediasize = softc->params.secsize * (off_t)softc->params.sectors; 2629 softc->disk->d_stripesize = softc->params.stripesize; 2630 softc->disk->d_stripeoffset = softc->params.stripeoffset; 2631 /* XXX: these are not actually "firmware" values, so they may be wrong */ 2632 softc->disk->d_fwsectors = softc->params.secs_per_track; 2633 softc->disk->d_fwheads = softc->params.heads; 2634 softc->disk->d_devstat->block_size = softc->params.secsize; 2635 softc->disk->d_devstat->flags &= ~DEVSTAT_BS_UNAVAILABLE; 2636 if (softc->delete_method > DA_DELETE_DISABLE) 2637 softc->disk->d_flags |= DISKFLAG_CANDELETE; 2638 else 2639 softc->disk->d_flags &= ~DISKFLAG_CANDELETE; 2640 } 2641 2642 static void 2643 dasendorderedtag(void *arg) 2644 { 2645 struct da_softc *softc = arg; 2646 2647 if (da_send_ordered) { 2648 if ((softc->ordered_tag_count == 0) 2649 && ((softc->flags & DA_FLAG_WENT_IDLE) == 0)) { 2650 softc->flags |= DA_FLAG_NEED_OTAG; 2651 } 2652 if (softc->outstanding_cmds > 0) 2653 softc->flags &= ~DA_FLAG_WENT_IDLE; 2654 2655 softc->ordered_tag_count = 0; 2656 } 2657 /* Queue us up again */ 2658 callout_reset(&softc->sendordered_c, 2659 (da_default_timeout * hz) / DA_ORDEREDTAG_INTERVAL, 2660 dasendorderedtag, softc); 2661 } 2662 2663 /* 2664 * Step through all DA peripheral drivers, and if the device is still open, 2665 * sync the disk cache to physical media. 2666 */ 2667 static void 2668 dashutdown(void * arg, int howto) 2669 { 2670 struct cam_periph *periph; 2671 struct da_softc *softc; 2672 2673 TAILQ_FOREACH(periph, &dadriver.units, unit_links) { 2674 union ccb ccb; 2675 2676 cam_periph_lock(periph); 2677 softc = (struct da_softc *)periph->softc; 2678 2679 /* 2680 * We only sync the cache if the drive is still open, and 2681 * if the drive is capable of it.. 2682 */ 2683 if (((softc->flags & DA_FLAG_OPEN) == 0) 2684 || (softc->quirks & DA_Q_NO_SYNC_CACHE)) { 2685 cam_periph_unlock(periph); 2686 continue; 2687 } 2688 2689 xpt_setup_ccb(&ccb.ccb_h, periph->path, CAM_PRIORITY_NORMAL); 2690 2691 ccb.ccb_h.ccb_state = DA_CCB_DUMP; 2692 scsi_synchronize_cache(&ccb.csio, 2693 /*retries*/1, 2694 /*cbfcnp*/dadone, 2695 MSG_SIMPLE_Q_TAG, 2696 /*begin_lba*/0, /* whole disk */ 2697 /*lb_count*/0, 2698 SSD_FULL_SIZE, 2699 60 * 60 * 1000); 2700 2701 xpt_polled_action(&ccb); 2702 2703 if ((ccb.ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 2704 if (((ccb.ccb_h.status & CAM_STATUS_MASK) == 2705 CAM_SCSI_STATUS_ERROR) 2706 && (ccb.csio.scsi_status == SCSI_STATUS_CHECK_COND)){ 2707 int error_code, sense_key, asc, ascq; 2708 2709 scsi_extract_sense(&ccb.csio.sense_data, 2710 &error_code, &sense_key, 2711 &asc, &ascq); 2712 2713 if (sense_key != SSD_KEY_ILLEGAL_REQUEST) 2714 scsi_sense_print(&ccb.csio); 2715 } else { 2716 xpt_print(periph->path, "Synchronize " 2717 "cache failed, status == 0x%x, scsi status " 2718 "== 0x%x\n", ccb.ccb_h.status, 2719 ccb.csio.scsi_status); 2720 } 2721 } 2722 2723 if ((ccb.ccb_h.status & CAM_DEV_QFRZN) != 0) 2724 cam_release_devq(ccb.ccb_h.path, 2725 /*relsim_flags*/0, 2726 /*reduction*/0, 2727 /*timeout*/0, 2728 /*getcount_only*/0); 2729 cam_periph_unlock(periph); 2730 } 2731 } 2732 2733 #else /* !_KERNEL */ 2734 2735 /* 2736 * XXX This is only left out of the kernel build to silence warnings. If, 2737 * for some reason this function is used in the kernel, the ifdefs should 2738 * be moved so it is included both in the kernel and userland. 2739 */ 2740 void 2741 scsi_format_unit(struct ccb_scsiio *csio, u_int32_t retries, 2742 void (*cbfcnp)(struct cam_periph *, union ccb *), 2743 u_int8_t tag_action, u_int8_t byte2, u_int16_t ileave, 2744 u_int8_t *data_ptr, u_int32_t dxfer_len, u_int8_t sense_len, 2745 u_int32_t timeout) 2746 { 2747 struct scsi_format_unit *scsi_cmd; 2748 2749 scsi_cmd = (struct scsi_format_unit *)&csio->cdb_io.cdb_bytes; 2750 scsi_cmd->opcode = FORMAT_UNIT; 2751 scsi_cmd->byte2 = byte2; 2752 scsi_ulto2b(ileave, scsi_cmd->interleave); 2753 2754 cam_fill_csio(csio, 2755 retries, 2756 cbfcnp, 2757 /*flags*/ (dxfer_len > 0) ? CAM_DIR_OUT : CAM_DIR_NONE, 2758 tag_action, 2759 data_ptr, 2760 dxfer_len, 2761 sense_len, 2762 sizeof(*scsi_cmd), 2763 timeout); 2764 } 2765 2766 #endif /* _KERNEL */ 2767