1 /* 2 * $FreeBSD$ 3 * 4 * Implementation of SCSI Sequential Access Peripheral driver for CAM. 5 * 6 * Copyright (c) 1999, 2000 Matthew Jacob 7 * All rights reserved. 8 * 9 * Redistribution and use in source and binary forms, with or without 10 * modification, are permitted provided that the following conditions 11 * are met: 12 * 1. Redistributions of source code must retain the above copyright 13 * notice, this list of conditions, and the following disclaimer, 14 * without modification, immediately at the beginning of the file. 15 * 2. The name of the author may not be used to endorse or promote products 16 * derived from this software without specific prior written permission. 17 * 18 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 19 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 20 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 21 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR 22 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 23 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 24 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 25 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 26 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 27 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 28 * SUCH DAMAGE. 29 * 30 */ 31 32 #include <sys/param.h> 33 #include <sys/queue.h> 34 #ifdef _KERNEL 35 #include <sys/systm.h> 36 #include <sys/kernel.h> 37 #endif 38 #include <sys/types.h> 39 #include <sys/bio.h> 40 #include <sys/malloc.h> 41 #include <sys/mtio.h> 42 #ifdef _KERNEL 43 #include <sys/conf.h> 44 #endif 45 #include <sys/devicestat.h> 46 #include <machine/limits.h> 47 48 #ifndef _KERNEL 49 #include <stdio.h> 50 #include <string.h> 51 #endif 52 53 #include <cam/cam.h> 54 #include <cam/cam_ccb.h> 55 #include <cam/cam_periph.h> 56 #include <cam/cam_xpt_periph.h> 57 #include <cam/cam_debug.h> 58 59 #include <cam/scsi/scsi_all.h> 60 #include <cam/scsi/scsi_message.h> 61 #include <cam/scsi/scsi_sa.h> 62 63 #ifdef _KERNEL 64 65 #include <opt_sa.h> 66 67 #ifndef SA_IO_TIMEOUT 68 #define SA_IO_TIMEOUT 4 69 #endif 70 #ifndef SA_SPACE_TIMEOUT 71 #define SA_SPACE_TIMEOUT 1 * 60 72 #endif 73 #ifndef SA_REWIND_TIMEOUT 74 #define SA_REWIND_TIMEOUT 2 * 60 75 #endif 76 #ifndef SA_ERASE_TIMEOUT 77 #define SA_ERASE_TIMEOUT 4 * 60 78 #endif 79 80 #define SCSIOP_TIMEOUT (60 * 1000) /* not an option */ 81 82 #define IO_TIMEOUT (SA_IO_TIMEOUT * 60 * 1000) 83 #define REWIND_TIMEOUT (SA_REWIND_TIMEOUT * 60 * 1000) 84 #define ERASE_TIMEOUT (SA_ERASE_TIMEOUT * 60 * 1000) 85 #define SPACE_TIMEOUT (SA_SPACE_TIMEOUT * 60 * 1000) 86 87 /* 88 * Additional options that can be set for config: SA_1FM_AT_EOT 89 */ 90 91 #ifndef UNUSED_PARAMETER 92 #define UNUSED_PARAMETER(x) x = x 93 #endif 94 95 #define QFRLS(ccb) \ 96 if (((ccb)->ccb_h.status & CAM_DEV_QFRZN) != 0) \ 97 cam_release_devq((ccb)->ccb_h.path, 0, 0, 0, FALSE) 98 99 /* 100 * Driver states 101 */ 102 103 104 typedef enum { 105 SA_STATE_NORMAL, SA_STATE_ABNORMAL 106 } sa_state; 107 108 #define ccb_pflags ppriv_field0 109 #define ccb_bp ppriv_ptr1 110 111 #define SA_CCB_BUFFER_IO 0x0 112 #define SA_CCB_WAITING 0x1 113 #define SA_CCB_TYPEMASK 0x1 114 #define SA_POSITION_UPDATED 0x2 115 116 #define Set_CCB_Type(x, type) \ 117 x->ccb_h.ccb_pflags &= ~SA_CCB_TYPEMASK; \ 118 x->ccb_h.ccb_pflags |= type 119 120 #define CCB_Type(x) (x->ccb_h.ccb_pflags & SA_CCB_TYPEMASK) 121 122 123 124 typedef enum { 125 SA_FLAG_OPEN = 0x0001, 126 SA_FLAG_FIXED = 0x0002, 127 SA_FLAG_TAPE_LOCKED = 0x0004, 128 SA_FLAG_TAPE_MOUNTED = 0x0008, 129 SA_FLAG_TAPE_WP = 0x0010, 130 SA_FLAG_TAPE_WRITTEN = 0x0020, 131 SA_FLAG_EOM_PENDING = 0x0040, 132 SA_FLAG_EIO_PENDING = 0x0080, 133 SA_FLAG_EOF_PENDING = 0x0100, 134 SA_FLAG_ERR_PENDING = (SA_FLAG_EOM_PENDING|SA_FLAG_EIO_PENDING| 135 SA_FLAG_EOF_PENDING), 136 SA_FLAG_INVALID = 0x0200, 137 SA_FLAG_COMP_ENABLED = 0x0400, 138 SA_FLAG_COMP_SUPP = 0x0800, 139 SA_FLAG_COMP_UNSUPP = 0x1000, 140 SA_FLAG_TAPE_FROZEN = 0x2000 141 } sa_flags; 142 143 typedef enum { 144 SA_MODE_REWIND = 0x00, 145 SA_MODE_NOREWIND = 0x01, 146 SA_MODE_OFFLINE = 0x02 147 } sa_mode; 148 149 typedef enum { 150 SA_PARAM_NONE = 0x00, 151 SA_PARAM_BLOCKSIZE = 0x01, 152 SA_PARAM_DENSITY = 0x02, 153 SA_PARAM_COMPRESSION = 0x04, 154 SA_PARAM_BUFF_MODE = 0x08, 155 SA_PARAM_NUMBLOCKS = 0x10, 156 SA_PARAM_WP = 0x20, 157 SA_PARAM_SPEED = 0x40, 158 SA_PARAM_ALL = 0x7f 159 } sa_params; 160 161 typedef enum { 162 SA_QUIRK_NONE = 0x00, 163 SA_QUIRK_NOCOMP = 0x01, /* Can't deal with compression at all */ 164 SA_QUIRK_FIXED = 0x02, /* Force fixed mode */ 165 SA_QUIRK_VARIABLE = 0x04, /* Force variable mode */ 166 SA_QUIRK_2FM = 0x08, /* Needs Two File Marks at EOD */ 167 SA_QUIRK_1FM = 0x10, /* No more than 1 File Mark at EOD */ 168 SA_QUIRK_NODREAD = 0x20, /* Don't try and dummy read density */ 169 SA_QUIRK_NO_MODESEL = 0x40, /* Don't do mode select at all */ 170 SA_QUIRK_NO_CPAGE = 0x80 /* Don't use DEVICE COMPRESSION page */ 171 } sa_quirks; 172 173 /* units are bits 4-7, 16-21 (1024 units) */ 174 #define SAUNIT(DEV) \ 175 (((minor(DEV) & 0xF0) >> 4) | ((minor(DEV) & 0x3f0000) >> 16)) 176 177 #define SAMODE(z) ((minor(z) & 0x3)) 178 #define SADENSITY(z) (((minor(z) >> 2) & 0x3)) 179 #define SA_IS_CTRL(z) (minor(z) & (1 << 29)) 180 181 #define SA_NOT_CTLDEV 0 182 #define SA_CTLDEV 1 183 184 #define SA_ATYPE_R 0 185 #define SA_ATYPE_NR 1 186 #define SA_ATYPE_ER 2 187 188 #define SAMINOR(ctl, unit, mode, access) \ 189 ((ctl << 29) | ((unit & 0x3f0) << 16) | ((unit & 0xf) << 4) | \ 190 (mode << 0x2) | (access & 0x3)) 191 192 #define SA_NUM_MODES 4 193 struct sa_devs { 194 dev_t ctl_dev; 195 struct sa_mode_devs { 196 dev_t r_dev; 197 dev_t nr_dev; 198 dev_t er_dev; 199 } mode_devs[SA_NUM_MODES]; 200 }; 201 202 struct sa_softc { 203 sa_state state; 204 sa_flags flags; 205 sa_quirks quirks; 206 struct bio_queue_head bio_queue; 207 int queue_count; 208 struct devstat device_stats; 209 struct sa_devs devs; 210 int blk_gran; 211 int blk_mask; 212 int blk_shift; 213 u_int32_t max_blk; 214 u_int32_t min_blk; 215 u_int32_t comp_algorithm; 216 u_int32_t saved_comp_algorithm; 217 u_int32_t media_blksize; 218 u_int32_t last_media_blksize; 219 u_int32_t media_numblks; 220 u_int8_t media_density; 221 u_int8_t speed; 222 u_int8_t scsi_rev; 223 u_int8_t dsreg; /* mtio mt_dsreg, redux */ 224 int buffer_mode; 225 int filemarks; 226 union ccb saved_ccb; 227 int last_resid_was_io; 228 229 /* 230 * Relative to BOT Location. 231 */ 232 daddr_t fileno; 233 daddr_t blkno; 234 235 /* 236 * Latched Error Info 237 */ 238 struct { 239 struct scsi_sense_data _last_io_sense; 240 u_int32_t _last_io_resid; 241 u_int8_t _last_io_cdb[CAM_MAX_CDBLEN]; 242 struct scsi_sense_data _last_ctl_sense; 243 u_int32_t _last_ctl_resid; 244 u_int8_t _last_ctl_cdb[CAM_MAX_CDBLEN]; 245 #define last_io_sense errinfo._last_io_sense 246 #define last_io_resid errinfo._last_io_resid 247 #define last_io_cdb errinfo._last_io_cdb 248 #define last_ctl_sense errinfo._last_ctl_sense 249 #define last_ctl_resid errinfo._last_ctl_resid 250 #define last_ctl_cdb errinfo._last_ctl_cdb 251 } errinfo; 252 /* 253 * Misc other flags/state 254 */ 255 u_int32_t 256 : 31, 257 ctrl_mode : 1; /* control device open */ 258 }; 259 260 struct sa_quirk_entry { 261 struct scsi_inquiry_pattern inq_pat; /* matching pattern */ 262 sa_quirks quirks; /* specific quirk type */ 263 u_int32_t prefblk; /* preferred blocksize when in fixed mode */ 264 }; 265 266 static struct sa_quirk_entry sa_quirk_table[] = 267 { 268 { 269 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "OnStream", 270 "ADR*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_NODREAD | 271 SA_QUIRK_1FM|SA_QUIRK_NO_MODESEL, 32768 272 }, 273 { 274 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 275 "Python 06408*", "*"}, SA_QUIRK_NODREAD, 0 276 }, 277 { 278 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 279 "Python 25601*", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_NODREAD, 0 280 }, 281 { 282 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 283 "Python*", "*"}, SA_QUIRK_NODREAD, 0 284 }, 285 { 286 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 287 "VIPER 150*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512 288 }, 289 { 290 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 291 "VIPER 2525 25462", "-011"}, 292 SA_QUIRK_NOCOMP|SA_QUIRK_1FM|SA_QUIRK_NODREAD, 0 293 }, 294 { 295 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "ARCHIVE", 296 "VIPER 2525*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 1024 297 }, 298 #if 0 299 { 300 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP", 301 "C15*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_NO_CPAGE, 0, 302 }, 303 #endif 304 { 305 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP", 306 "T20*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512 307 }, 308 { 309 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP", 310 "T4000*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512 311 }, 312 { 313 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "HP", 314 "HP-88780*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0 315 }, 316 { 317 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "KENNEDY", 318 "*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0 319 }, 320 { 321 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "M4 DATA", 322 "123107 SCSI*", "*"}, SA_QUIRK_VARIABLE|SA_QUIRK_2FM, 0 323 }, 324 { /* jreynold@primenet.com */ 325 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "Seagate", 326 "STT8000N*", "*"}, SA_QUIRK_1FM, 0 327 }, 328 { /* mike@sentex.net */ 329 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "Seagate", 330 "STT20000*", "*"}, SA_QUIRK_1FM, 0 331 }, 332 { 333 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 334 " TDC 3600", "U07:"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512 335 }, 336 { 337 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 338 " TDC 3800", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512 339 }, 340 { 341 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 342 " TDC 4100", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512 343 }, 344 { 345 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 346 " TDC 4200", "*"}, SA_QUIRK_NOCOMP|SA_QUIRK_1FM, 512 347 }, 348 { 349 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "TANDBERG", 350 " SLR*", "*"}, SA_QUIRK_1FM, 0 351 }, 352 { 353 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "WANGTEK", 354 "5525ES*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 512 355 }, 356 { 357 { T_SEQUENTIAL, SIP_MEDIA_REMOVABLE, "WANGTEK", 358 "51000*", "*"}, SA_QUIRK_FIXED|SA_QUIRK_1FM, 1024 359 } 360 }; 361 362 static d_open_t saopen; 363 static d_close_t saclose; 364 static d_strategy_t sastrategy; 365 static d_ioctl_t saioctl; 366 static periph_init_t sainit; 367 static periph_ctor_t saregister; 368 static periph_oninv_t saoninvalidate; 369 static periph_dtor_t sacleanup; 370 static periph_start_t sastart; 371 static void saasync(void *callback_arg, u_int32_t code, 372 struct cam_path *path, void *arg); 373 static void sadone(struct cam_periph *periph, 374 union ccb *start_ccb); 375 static int saerror(union ccb *ccb, u_int32_t cam_flags, 376 u_int32_t sense_flags); 377 static int samarkswanted(struct cam_periph *); 378 static int sacheckeod(struct cam_periph *periph); 379 static int sagetparams(struct cam_periph *periph, 380 sa_params params_to_get, 381 u_int32_t *blocksize, u_int8_t *density, 382 u_int32_t *numblocks, int *buff_mode, 383 u_int8_t *write_protect, u_int8_t *speed, 384 int *comp_supported, int *comp_enabled, 385 u_int32_t *comp_algorithm, 386 sa_comp_t *comp_page); 387 static int sasetparams(struct cam_periph *periph, 388 sa_params params_to_set, 389 u_int32_t blocksize, u_int8_t density, 390 u_int32_t comp_algorithm, 391 u_int32_t sense_flags); 392 static void saprevent(struct cam_periph *periph, int action); 393 static int sarewind(struct cam_periph *periph); 394 static int saspace(struct cam_periph *periph, int count, 395 scsi_space_code code); 396 static int samount(struct cam_periph *, int, dev_t); 397 static int saretension(struct cam_periph *periph); 398 static int sareservereleaseunit(struct cam_periph *periph, 399 int reserve); 400 static int saloadunload(struct cam_periph *periph, int load); 401 static int saerase(struct cam_periph *periph, int longerase); 402 static int sawritefilemarks(struct cam_periph *periph, 403 int nmarks, int setmarks); 404 static int sardpos(struct cam_periph *periph, int, u_int32_t *); 405 static int sasetpos(struct cam_periph *periph, int, u_int32_t *); 406 407 408 static struct periph_driver sadriver = 409 { 410 sainit, "sa", 411 TAILQ_HEAD_INITIALIZER(sadriver.units), /* generation */ 0 412 }; 413 414 PERIPHDRIVER_DECLARE(sa, sadriver); 415 416 /* For 2.2-stable support */ 417 #ifndef D_TAPE 418 #define D_TAPE 0 419 #endif 420 421 #define SA_CDEV_MAJOR 14 422 423 static struct cdevsw sa_cdevsw = { 424 /* open */ saopen, 425 /* close */ saclose, 426 /* read */ physread, 427 /* write */ physwrite, 428 /* ioctl */ saioctl, 429 /* poll */ nopoll, 430 /* mmap */ nommap, 431 /* strategy */ sastrategy, 432 /* name */ "sa", 433 /* maj */ SA_CDEV_MAJOR, 434 /* dump */ nodump, 435 /* psize */ nopsize, 436 /* flags */ D_TAPE, 437 }; 438 439 static int 440 saopen(dev_t dev, int flags, int fmt, struct thread *td) 441 { 442 struct cam_periph *periph; 443 struct sa_softc *softc; 444 int unit; 445 int mode; 446 int density; 447 int error; 448 int s; 449 450 unit = SAUNIT(dev); 451 mode = SAMODE(dev); 452 density = SADENSITY(dev); 453 454 s = splsoftcam(); 455 periph = (struct cam_periph *)dev->si_drv1; 456 if (periph == NULL) { 457 (void) splx(s); 458 return (ENXIO); 459 } 460 softc = (struct sa_softc *)periph->softc; 461 if ((error = cam_periph_lock(periph, PRIBIO|PCATCH)) != 0) { 462 splx(s); 463 return (error); 464 } 465 splx(s); 466 467 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE|CAM_DEBUG_INFO, 468 ("saopen(%d): dev=0x%x softc=0x%x\n", unit, unit, softc->flags)); 469 470 if (cam_periph_acquire(periph) != CAM_REQ_CMP) { 471 cam_periph_unlock(periph); 472 return (ENXIO); 473 } 474 if (SA_IS_CTRL(dev)) { 475 softc->ctrl_mode = 1; 476 cam_periph_unlock(periph); 477 return (0); 478 } 479 480 481 if (softc->flags & SA_FLAG_OPEN) { 482 error = EBUSY; 483 } else if (softc->flags & SA_FLAG_INVALID) { 484 error = ENXIO; 485 } else { 486 /* 487 * The function samount ensures media is loaded and ready. 488 * It also does a device RESERVE if the tape isn't yet mounted. 489 */ 490 error = samount(periph, flags, dev); 491 } 492 493 if (error) { 494 cam_periph_release(periph); 495 } else { 496 saprevent(periph, PR_PREVENT); 497 softc->flags |= SA_FLAG_OPEN; 498 } 499 cam_periph_unlock(periph); 500 return (error); 501 } 502 503 static int 504 saclose(dev_t dev, int flag, int fmt, struct thread *td) 505 { 506 struct cam_periph *periph; 507 struct sa_softc *softc; 508 int unit, mode, error, writing, tmp; 509 int closedbits = SA_FLAG_OPEN; 510 511 unit = SAUNIT(dev); 512 mode = SAMODE(dev); 513 periph = (struct cam_periph *)dev->si_drv1; 514 if (periph == NULL) 515 return (ENXIO); 516 517 softc = (struct sa_softc *)periph->softc; 518 519 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE|CAM_DEBUG_INFO, 520 ("saclose(%d): dev=0x%x softc=0x%x\n", unit, unit, softc->flags)); 521 522 523 if ((error = cam_periph_lock(periph, PRIBIO)) != 0) { 524 return (error); 525 } 526 527 if (SA_IS_CTRL(dev)) { 528 softc->ctrl_mode = 0; 529 cam_periph_release(periph); 530 cam_periph_unlock(periph); 531 return (0); 532 } 533 534 /* 535 * Were we writing the tape? 536 */ 537 writing = (softc->flags & SA_FLAG_TAPE_WRITTEN) != 0; 538 539 /* 540 * See whether or not we need to write filemarks. If this 541 * fails, we probably have to assume we've lost tape 542 * position. 543 */ 544 error = sacheckeod(periph); 545 if (error) { 546 xpt_print_path(periph->path); 547 printf("failed to write terminating filemark(s)\n"); 548 softc->flags |= SA_FLAG_TAPE_FROZEN; 549 } 550 551 /* 552 * Whatever we end up doing, allow users to eject tapes from here on. 553 */ 554 saprevent(periph, PR_ALLOW); 555 556 /* 557 * Decide how to end... 558 */ 559 if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0) { 560 closedbits |= SA_FLAG_TAPE_FROZEN; 561 } else switch (mode) { 562 case SA_MODE_OFFLINE: 563 /* 564 * An 'offline' close is an unconditional release of 565 * frozen && mount conditions, irrespective of whether 566 * these operations succeeded. The reason for this is 567 * to allow at least some kind of programmatic way 568 * around our state getting all fouled up. If somebody 569 * issues an 'offline' command, that will be allowed 570 * to clear state. 571 */ 572 (void) sarewind(periph); 573 (void) saloadunload(periph, FALSE); 574 closedbits |= SA_FLAG_TAPE_MOUNTED|SA_FLAG_TAPE_FROZEN; 575 break; 576 case SA_MODE_REWIND: 577 /* 578 * If the rewind fails, return an error- if anyone cares, 579 * but not overwriting any previous error. 580 * 581 * We don't clear the notion of mounted here, but we do 582 * clear the notion of frozen if we successfully rewound. 583 */ 584 tmp = sarewind(periph); 585 if (tmp) { 586 if (error != 0) 587 error = tmp; 588 } else { 589 closedbits |= SA_FLAG_TAPE_FROZEN; 590 } 591 break; 592 case SA_MODE_NOREWIND: 593 /* 594 * If we're not rewinding/unloading the tape, find out 595 * whether we need to back up over one of two filemarks 596 * we wrote (if we wrote two filemarks) so that appends 597 * from this point on will be sane. 598 */ 599 if (error == 0 && writing && (softc->quirks & SA_QUIRK_2FM)) { 600 tmp = saspace(periph, -1, SS_FILEMARKS); 601 if (tmp) { 602 xpt_print_path(periph->path); 603 printf("unable to backspace over one of double" 604 " filemarks at end of tape\n"); 605 xpt_print_path(periph->path); 606 printf("it is possible that this device" 607 " needs a SA_QUIRK_1FM quirk set for it\n"); 608 softc->flags |= SA_FLAG_TAPE_FROZEN; 609 } 610 } 611 break; 612 default: 613 xpt_print_path(periph->path); 614 panic("unknown mode 0x%x in saclose\n", mode); 615 /* NOTREACHED */ 616 break; 617 } 618 619 /* 620 * We wish to note here that there are no more filemarks to be written. 621 */ 622 softc->filemarks = 0; 623 softc->flags &= ~SA_FLAG_TAPE_WRITTEN; 624 625 /* 626 * And we are no longer open for business. 627 */ 628 softc->flags &= ~closedbits; 629 630 /* 631 * Inform users if tape state if frozen.... 632 */ 633 if (softc->flags & SA_FLAG_TAPE_FROZEN) { 634 xpt_print_path(periph->path); 635 printf("tape is now frozen- use an OFFLINE, REWIND or MTEOM " 636 "command to clear this state.\n"); 637 } 638 639 /* release the device if it is no longer mounted */ 640 if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0) 641 sareservereleaseunit(periph, FALSE); 642 643 cam_periph_unlock(periph); 644 cam_periph_release(periph); 645 646 return (error); 647 } 648 649 /* 650 * Actually translate the requested transfer into one the physical driver 651 * can understand. The transfer is described by a buf and will include 652 * only one physical transfer. 653 */ 654 static void 655 sastrategy(struct bio *bp) 656 { 657 struct cam_periph *periph; 658 struct sa_softc *softc; 659 int s; 660 661 bp->bio_resid = bp->bio_bcount; 662 if (SA_IS_CTRL(bp->bio_dev)) { 663 biofinish(bp, NULL, EINVAL); 664 return; 665 } 666 periph = (struct cam_periph *)bp->bio_dev->si_drv1; 667 if (periph == NULL) { 668 biofinish(bp, NULL, ENXIO); 669 return; 670 } 671 softc = (struct sa_softc *)periph->softc; 672 673 s = splsoftcam(); 674 675 if (softc->flags & SA_FLAG_INVALID) { 676 splx(s); 677 biofinish(bp, NULL, ENXIO); 678 return; 679 } 680 681 if (softc->flags & SA_FLAG_TAPE_FROZEN) { 682 splx(s); 683 biofinish(bp, NULL, EPERM); 684 return; 685 } 686 687 splx(s); 688 689 /* 690 * If it's a null transfer, return immediatly 691 */ 692 if (bp->bio_bcount == 0) { 693 biodone(bp); 694 return; 695 } 696 697 /* valid request? */ 698 if (softc->flags & SA_FLAG_FIXED) { 699 /* 700 * Fixed block device. The byte count must 701 * be a multiple of our block size. 702 */ 703 if (((softc->blk_mask != ~0) && 704 ((bp->bio_bcount & softc->blk_mask) != 0)) || 705 ((softc->blk_mask == ~0) && 706 ((bp->bio_bcount % softc->min_blk) != 0))) { 707 xpt_print_path(periph->path); 708 printf("Invalid request. Fixed block device " 709 "requests must be a multiple " 710 "of %d bytes\n", softc->min_blk); 711 biofinish(bp, NULL, EINVAL); 712 return; 713 } 714 } else if ((bp->bio_bcount > softc->max_blk) || 715 (bp->bio_bcount < softc->min_blk) || 716 (bp->bio_bcount & softc->blk_mask) != 0) { 717 718 xpt_print_path(periph->path); 719 printf("Invalid request. Variable block device " 720 "requests must be "); 721 if (softc->blk_mask != 0) { 722 printf("a multiple of %d ", (0x1 << softc->blk_gran)); 723 } 724 printf("between %d and %d bytes\n", softc->min_blk, 725 softc->max_blk); 726 biofinish(bp, NULL, EINVAL); 727 return; 728 } 729 730 /* 731 * Mask interrupts so that the device cannot be invalidated until 732 * after we are in the queue. Otherwise, we might not properly 733 * clean up one of the buffers. 734 */ 735 s = splbio(); 736 737 /* 738 * Place it at the end of the queue. 739 */ 740 bioq_insert_tail(&softc->bio_queue, bp); 741 742 softc->queue_count++; 743 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("sastrategy: enqueuing a %d " 744 "%s byte %s queue count now %d\n", (int) bp->bio_bcount, 745 (softc->flags & SA_FLAG_FIXED)? "fixed" : "variable", 746 (bp->bio_cmd == BIO_READ)? "read" : "write", softc->queue_count)); 747 748 splx(s); 749 750 /* 751 * Schedule ourselves for performing the work. 752 */ 753 xpt_schedule(periph, 1); 754 755 return; 756 } 757 758 static int 759 saioctl(dev_t dev, u_long cmd, caddr_t arg, int flag, struct thread *td) 760 { 761 struct cam_periph *periph; 762 struct sa_softc *softc; 763 scsi_space_code spaceop; 764 int didlockperiph = 0; 765 int s; 766 int unit; 767 int mode; 768 int density; 769 int error = 0; 770 771 unit = SAUNIT(dev); 772 mode = SAMODE(dev); 773 density = SADENSITY(dev); 774 error = 0; /* shut up gcc */ 775 spaceop = 0; /* shut up gcc */ 776 777 periph = (struct cam_periph *)dev->si_drv1; 778 if (periph == NULL) 779 return (ENXIO); 780 781 softc = (struct sa_softc *)periph->softc; 782 783 /* 784 * Check for control mode accesses. We allow MTIOCGET and 785 * MTIOCERRSTAT (but need to be the only one open in order 786 * to clear latched status), and MTSETBSIZE, MTSETDNSTY 787 * and MTCOMP (but need to be the only one accessing this 788 * device to run those). 789 */ 790 791 if (SA_IS_CTRL(dev)) { 792 switch (cmd) { 793 case MTIOCGETEOTMODEL: 794 case MTIOCGET: 795 break; 796 case MTIOCERRSTAT: 797 /* 798 * If the periph isn't already locked, lock it 799 * so our MTIOCERRSTAT can reset latched error stats. 800 * 801 * If the periph is already locked, skip it because 802 * we're just getting status and it'll be up to the 803 * other thread that has this device open to do 804 * an MTIOCERRSTAT that would clear latched status. 805 */ 806 s = splsoftcam(); 807 if ((periph->flags & CAM_PERIPH_LOCKED) == 0) { 808 error = cam_periph_lock(periph, PRIBIO|PCATCH); 809 if (error != 0) { 810 splx(s); 811 return (error); 812 } 813 didlockperiph = 1; 814 } 815 break; 816 817 case MTIOCSETEOTMODEL: 818 case MTSETBSIZ: 819 case MTSETDNSTY: 820 case MTCOMP: 821 /* 822 * We need to acquire the peripheral here rather 823 * than at open time because we are sharing writable 824 * access to data structures. 825 */ 826 s = splsoftcam(); 827 error = cam_periph_lock(periph, PRIBIO|PCATCH); 828 if (error != 0) { 829 splx(s); 830 return (error); 831 } 832 didlockperiph = 1; 833 break; 834 835 default: 836 return (EINVAL); 837 } 838 } 839 840 /* 841 * Find the device that the user is talking about 842 */ 843 switch (cmd) { 844 case MTIOCGET: 845 { 846 struct mtget *g = (struct mtget *)arg; 847 848 /* 849 * If this isn't the control mode device, actually go out 850 * and ask the drive again what it's set to. 851 */ 852 if (!SA_IS_CTRL(dev)) { 853 u_int8_t write_protect; 854 int comp_enabled, comp_supported; 855 error = sagetparams(periph, SA_PARAM_ALL, 856 &softc->media_blksize, &softc->media_density, 857 &softc->media_numblks, &softc->buffer_mode, 858 &write_protect, &softc->speed, &comp_supported, 859 &comp_enabled, &softc->comp_algorithm, NULL); 860 if (error) 861 break; 862 if (write_protect) 863 softc->flags |= SA_FLAG_TAPE_WP; 864 else 865 softc->flags &= ~SA_FLAG_TAPE_WP; 866 softc->flags &= ~(SA_FLAG_COMP_SUPP| 867 SA_FLAG_COMP_ENABLED|SA_FLAG_COMP_UNSUPP); 868 if (comp_supported) { 869 if (softc->saved_comp_algorithm == 0) 870 softc->saved_comp_algorithm = 871 softc->comp_algorithm; 872 softc->flags |= SA_FLAG_COMP_SUPP; 873 if (comp_enabled) 874 softc->flags |= SA_FLAG_COMP_ENABLED; 875 } else 876 softc->flags |= SA_FLAG_COMP_UNSUPP; 877 } 878 bzero(g, sizeof(struct mtget)); 879 g->mt_type = MT_ISAR; 880 if (softc->flags & SA_FLAG_COMP_UNSUPP) { 881 g->mt_comp = MT_COMP_UNSUPP; 882 g->mt_comp0 = MT_COMP_UNSUPP; 883 g->mt_comp1 = MT_COMP_UNSUPP; 884 g->mt_comp2 = MT_COMP_UNSUPP; 885 g->mt_comp3 = MT_COMP_UNSUPP; 886 } else { 887 if ((softc->flags & SA_FLAG_COMP_ENABLED) == 0) { 888 g->mt_comp = MT_COMP_DISABLED; 889 } else { 890 g->mt_comp = softc->comp_algorithm; 891 } 892 g->mt_comp0 = softc->comp_algorithm; 893 g->mt_comp1 = softc->comp_algorithm; 894 g->mt_comp2 = softc->comp_algorithm; 895 g->mt_comp3 = softc->comp_algorithm; 896 } 897 g->mt_density = softc->media_density; 898 g->mt_density0 = softc->media_density; 899 g->mt_density1 = softc->media_density; 900 g->mt_density2 = softc->media_density; 901 g->mt_density3 = softc->media_density; 902 g->mt_blksiz = softc->media_blksize; 903 g->mt_blksiz0 = softc->media_blksize; 904 g->mt_blksiz1 = softc->media_blksize; 905 g->mt_blksiz2 = softc->media_blksize; 906 g->mt_blksiz3 = softc->media_blksize; 907 g->mt_fileno = softc->fileno; 908 g->mt_blkno = softc->blkno; 909 g->mt_dsreg = (short) softc->dsreg; 910 /* 911 * Yes, we know that this is likely to overflow 912 */ 913 if (softc->last_resid_was_io) { 914 if ((g->mt_resid = (short) softc->last_io_resid) != 0) { 915 if (SA_IS_CTRL(dev) == 0 || didlockperiph) { 916 softc->last_io_resid = 0; 917 } 918 } 919 } else { 920 if ((g->mt_resid = (short)softc->last_ctl_resid) != 0) { 921 if (SA_IS_CTRL(dev) == 0 || didlockperiph) { 922 softc->last_ctl_resid = 0; 923 } 924 } 925 } 926 error = 0; 927 break; 928 } 929 case MTIOCERRSTAT: 930 { 931 struct scsi_tape_errors *sep = 932 &((union mterrstat *)arg)->scsi_errstat; 933 934 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, 935 ("saioctl: MTIOCERRSTAT\n")); 936 937 bzero(sep, sizeof(*sep)); 938 sep->io_resid = softc->last_io_resid; 939 bcopy((caddr_t) &softc->last_io_sense, sep->io_sense, 940 sizeof (sep->io_sense)); 941 bcopy((caddr_t) &softc->last_io_cdb, sep->io_cdb, 942 sizeof (sep->io_cdb)); 943 sep->ctl_resid = softc->last_ctl_resid; 944 bcopy((caddr_t) &softc->last_ctl_sense, sep->ctl_sense, 945 sizeof (sep->ctl_sense)); 946 bcopy((caddr_t) &softc->last_ctl_cdb, sep->ctl_cdb, 947 sizeof (sep->ctl_cdb)); 948 949 if (SA_IS_CTRL(dev) == 0 || didlockperiph) 950 bzero((caddr_t) &softc->errinfo, 951 sizeof (softc->errinfo)); 952 error = 0; 953 break; 954 } 955 case MTIOCTOP: 956 { 957 struct mtop *mt; 958 int count; 959 960 mt = (struct mtop *)arg; 961 962 CAM_DEBUG(periph->path, CAM_DEBUG_TRACE, 963 ("saioctl: op=0x%x count=0x%x\n", 964 mt->mt_op, mt->mt_count)); 965 966 count = mt->mt_count; 967 switch (mt->mt_op) { 968 case MTWEOF: /* write an end-of-file marker */ 969 /* 970 * We don't need to clear the SA_FLAG_TAPE_WRITTEN 971 * flag because by keeping track of filemarks 972 * we have last written we know ehether or not 973 * we need to write more when we close the device. 974 */ 975 error = sawritefilemarks(periph, count, FALSE); 976 break; 977 case MTWSS: /* write a setmark */ 978 error = sawritefilemarks(periph, count, TRUE); 979 break; 980 case MTBSR: /* backward space record */ 981 case MTFSR: /* forward space record */ 982 case MTBSF: /* backward space file */ 983 case MTFSF: /* forward space file */ 984 case MTBSS: /* backward space setmark */ 985 case MTFSS: /* forward space setmark */ 986 case MTEOD: /* space to end of recorded medium */ 987 { 988 int nmarks; 989 990 spaceop = SS_FILEMARKS; 991 nmarks = softc->filemarks; 992 error = sacheckeod(periph); 993 if (error) { 994 xpt_print_path(periph->path); 995 printf("EOD check prior to spacing failed\n"); 996 softc->flags |= SA_FLAG_EIO_PENDING; 997 break; 998 } 999 nmarks -= softc->filemarks; 1000 switch(mt->mt_op) { 1001 case MTBSR: 1002 count = -count; 1003 /* FALLTHROUGH */ 1004 case MTFSR: 1005 spaceop = SS_BLOCKS; 1006 break; 1007 case MTBSF: 1008 count = -count; 1009 /* FALLTHROUGH */ 1010 case MTFSF: 1011 break; 1012 case MTBSS: 1013 count = -count; 1014 /* FALLTHROUGH */ 1015 case MTFSS: 1016 spaceop = SS_SETMARKS; 1017 break; 1018 case MTEOD: 1019 spaceop = SS_EOD; 1020 count = 0; 1021 nmarks = 0; 1022 break; 1023 default: 1024 error = EINVAL; 1025 break; 1026 } 1027 if (error) 1028 break; 1029 1030 nmarks = softc->filemarks; 1031 /* 1032 * XXX: Why are we checking again? 1033 */ 1034 error = sacheckeod(periph); 1035 if (error) 1036 break; 1037 nmarks -= softc->filemarks; 1038 error = saspace(periph, count - nmarks, spaceop); 1039 /* 1040 * At this point, clear that we've written the tape 1041 * and that we've written any filemarks. We really 1042 * don't know what the applications wishes to do next- 1043 * the sacheckeod's will make sure we terminated the 1044 * tape correctly if we'd been writing, but the next 1045 * action the user application takes will set again 1046 * whether we need to write filemarks. 1047 */ 1048 softc->flags &= 1049 ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN); 1050 softc->filemarks = 0; 1051 break; 1052 } 1053 case MTREW: /* rewind */ 1054 (void) sacheckeod(periph); 1055 error = sarewind(periph); 1056 /* see above */ 1057 softc->flags &= 1058 ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN); 1059 softc->flags &= ~SA_FLAG_ERR_PENDING; 1060 softc->filemarks = 0; 1061 break; 1062 case MTERASE: /* erase */ 1063 error = saerase(periph, count); 1064 softc->flags &= 1065 ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN); 1066 softc->flags &= ~SA_FLAG_ERR_PENDING; 1067 break; 1068 case MTRETENS: /* re-tension tape */ 1069 error = saretension(periph); 1070 softc->flags &= 1071 ~(SA_FLAG_TAPE_WRITTEN|SA_FLAG_TAPE_FROZEN); 1072 softc->flags &= ~SA_FLAG_ERR_PENDING; 1073 break; 1074 case MTOFFL: /* rewind and put the drive offline */ 1075 1076 (void) sacheckeod(periph); 1077 /* see above */ 1078 softc->flags &= ~SA_FLAG_TAPE_WRITTEN; 1079 softc->filemarks = 0; 1080 1081 error = sarewind(periph); 1082 /* clear the frozen flag anyway */ 1083 softc->flags &= ~SA_FLAG_TAPE_FROZEN; 1084 1085 /* 1086 * Be sure to allow media removal before ejecting. 1087 */ 1088 1089 saprevent(periph, PR_ALLOW); 1090 if (error == 0) { 1091 error = saloadunload(periph, FALSE); 1092 if (error == 0) { 1093 softc->flags &= ~SA_FLAG_TAPE_MOUNTED; 1094 } 1095 } 1096 break; 1097 1098 case MTNOP: /* no operation, sets status only */ 1099 case MTCACHE: /* enable controller cache */ 1100 case MTNOCACHE: /* disable controller cache */ 1101 error = 0; 1102 break; 1103 1104 case MTSETBSIZ: /* Set block size for device */ 1105 1106 error = sasetparams(periph, SA_PARAM_BLOCKSIZE, count, 1107 0, 0, 0); 1108 if (error == 0) { 1109 softc->last_media_blksize = 1110 softc->media_blksize; 1111 softc->media_blksize = count; 1112 if (count) { 1113 softc->flags |= SA_FLAG_FIXED; 1114 if (powerof2(count)) { 1115 softc->blk_shift = 1116 ffs(count) - 1; 1117 softc->blk_mask = count - 1; 1118 } else { 1119 softc->blk_mask = ~0; 1120 softc->blk_shift = 0; 1121 } 1122 /* 1123 * Make the user's desire 'persistent'. 1124 */ 1125 softc->quirks &= ~SA_QUIRK_VARIABLE; 1126 softc->quirks |= SA_QUIRK_FIXED; 1127 } else { 1128 softc->flags &= ~SA_FLAG_FIXED; 1129 if (softc->max_blk == 0) { 1130 softc->max_blk = ~0; 1131 } 1132 softc->blk_shift = 0; 1133 if (softc->blk_gran != 0) { 1134 softc->blk_mask = 1135 softc->blk_gran - 1; 1136 } else { 1137 softc->blk_mask = 0; 1138 } 1139 /* 1140 * Make the user's desire 'persistent'. 1141 */ 1142 softc->quirks |= SA_QUIRK_VARIABLE; 1143 softc->quirks &= ~SA_QUIRK_FIXED; 1144 } 1145 } 1146 break; 1147 case MTSETDNSTY: /* Set density for device and mode */ 1148 if (count > UCHAR_MAX) { 1149 error = EINVAL; 1150 break; 1151 } else { 1152 error = sasetparams(periph, SA_PARAM_DENSITY, 1153 0, count, 0, 0); 1154 } 1155 break; 1156 case MTCOMP: /* enable compression */ 1157 /* 1158 * Some devices don't support compression, and 1159 * don't like it if you ask them for the 1160 * compression page. 1161 */ 1162 if ((softc->quirks & SA_QUIRK_NOCOMP) || 1163 (softc->flags & SA_FLAG_COMP_UNSUPP)) { 1164 error = ENODEV; 1165 break; 1166 } 1167 error = sasetparams(periph, SA_PARAM_COMPRESSION, 1168 0, 0, count, SF_NO_PRINT); 1169 break; 1170 default: 1171 error = EINVAL; 1172 } 1173 break; 1174 } 1175 case MTIOCIEOT: 1176 case MTIOCEEOT: 1177 error = 0; 1178 break; 1179 case MTIOCRDSPOS: 1180 error = sardpos(periph, 0, (u_int32_t *) arg); 1181 break; 1182 case MTIOCRDHPOS: 1183 error = sardpos(periph, 1, (u_int32_t *) arg); 1184 break; 1185 case MTIOCSLOCATE: 1186 error = sasetpos(periph, 0, (u_int32_t *) arg); 1187 break; 1188 case MTIOCHLOCATE: 1189 error = sasetpos(periph, 1, (u_int32_t *) arg); 1190 break; 1191 case MTIOCGETEOTMODEL: 1192 error = 0; 1193 if (softc->quirks & SA_QUIRK_1FM) 1194 mode = 1; 1195 else 1196 mode = 2; 1197 *((u_int32_t *) arg) = mode; 1198 break; 1199 case MTIOCSETEOTMODEL: 1200 error = 0; 1201 switch (*((u_int32_t *) arg)) { 1202 case 1: 1203 softc->quirks &= ~SA_QUIRK_2FM; 1204 softc->quirks |= SA_QUIRK_1FM; 1205 break; 1206 case 2: 1207 softc->quirks &= ~SA_QUIRK_1FM; 1208 softc->quirks |= SA_QUIRK_2FM; 1209 break; 1210 default: 1211 error = EINVAL; 1212 break; 1213 } 1214 break; 1215 default: 1216 error = cam_periph_ioctl(periph, cmd, arg, saerror); 1217 break; 1218 } 1219 1220 /* 1221 * Check to see if we cleared a frozen state 1222 */ 1223 if (error == 0 && (softc->flags & SA_FLAG_TAPE_FROZEN)) { 1224 switch(cmd) { 1225 case MTIOCRDSPOS: 1226 case MTIOCRDHPOS: 1227 case MTIOCSLOCATE: 1228 case MTIOCHLOCATE: 1229 softc->fileno = (daddr_t) -1; 1230 softc->blkno = (daddr_t) -1; 1231 softc->flags &= ~SA_FLAG_TAPE_FROZEN; 1232 xpt_print_path(periph->path); 1233 printf("tape state now unfrozen.\n"); 1234 break; 1235 default: 1236 break; 1237 } 1238 } 1239 if (didlockperiph) { 1240 cam_periph_unlock(periph); 1241 } 1242 return (error); 1243 } 1244 1245 static void 1246 sainit(void) 1247 { 1248 cam_status status; 1249 struct cam_path *path; 1250 1251 /* 1252 * Install a global async callback. 1253 */ 1254 status = xpt_create_path(&path, NULL, CAM_XPT_PATH_ID, 1255 CAM_TARGET_WILDCARD, CAM_LUN_WILDCARD); 1256 1257 if (status == CAM_REQ_CMP) { 1258 /* Register the async callbacks of interrest */ 1259 struct ccb_setasync csa; /* 1260 * This is an immediate CCB, 1261 * so using the stack is OK 1262 */ 1263 xpt_setup_ccb(&csa.ccb_h, path, 5); 1264 csa.ccb_h.func_code = XPT_SASYNC_CB; 1265 csa.event_enable = AC_FOUND_DEVICE; 1266 csa.callback = saasync; 1267 csa.callback_arg = NULL; 1268 xpt_action((union ccb *)&csa); 1269 status = csa.ccb_h.status; 1270 xpt_free_path(path); 1271 } 1272 1273 if (status != CAM_REQ_CMP) { 1274 printf("sa: Failed to attach master async callback " 1275 "due to status 0x%x!\n", status); 1276 } 1277 } 1278 1279 static void 1280 saoninvalidate(struct cam_periph *periph) 1281 { 1282 struct sa_softc *softc; 1283 struct bio *q_bp; 1284 struct ccb_setasync csa; 1285 int s; 1286 1287 softc = (struct sa_softc *)periph->softc; 1288 1289 /* 1290 * De-register any async callbacks. 1291 */ 1292 xpt_setup_ccb(&csa.ccb_h, periph->path, 1293 /* priority */ 5); 1294 csa.ccb_h.func_code = XPT_SASYNC_CB; 1295 csa.event_enable = 0; 1296 csa.callback = saasync; 1297 csa.callback_arg = periph; 1298 xpt_action((union ccb *)&csa); 1299 1300 softc->flags |= SA_FLAG_INVALID; 1301 1302 /* 1303 * Although the oninvalidate() routines are always called at 1304 * splsoftcam, we need to be at splbio() here to keep the buffer 1305 * queue from being modified while we traverse it. 1306 */ 1307 s = splbio(); 1308 1309 /* 1310 * Return all queued I/O with ENXIO. 1311 * XXX Handle any transactions queued to the card 1312 * with XPT_ABORT_CCB. 1313 */ 1314 while ((q_bp = bioq_first(&softc->bio_queue)) != NULL){ 1315 bioq_remove(&softc->bio_queue, q_bp); 1316 q_bp->bio_resid = q_bp->bio_bcount; 1317 biofinish(q_bp, NULL, ENXIO); 1318 } 1319 softc->queue_count = 0; 1320 splx(s); 1321 1322 xpt_print_path(periph->path); 1323 printf("lost device\n"); 1324 1325 } 1326 1327 static void 1328 sacleanup(struct cam_periph *periph) 1329 { 1330 struct sa_softc *softc; 1331 int i; 1332 1333 softc = (struct sa_softc *)periph->softc; 1334 1335 devstat_remove_entry(&softc->device_stats); 1336 1337 destroy_dev(softc->devs.ctl_dev); 1338 1339 for (i = 0; i < SA_NUM_MODES; i++) { 1340 destroy_dev(softc->devs.mode_devs[i].r_dev); 1341 destroy_dev(softc->devs.mode_devs[i].nr_dev); 1342 destroy_dev(softc->devs.mode_devs[i].er_dev); 1343 } 1344 1345 xpt_print_path(periph->path); 1346 printf("removing device entry\n"); 1347 free(softc, M_DEVBUF); 1348 } 1349 1350 static void 1351 saasync(void *callback_arg, u_int32_t code, 1352 struct cam_path *path, void *arg) 1353 { 1354 struct cam_periph *periph; 1355 1356 periph = (struct cam_periph *)callback_arg; 1357 switch (code) { 1358 case AC_FOUND_DEVICE: 1359 { 1360 struct ccb_getdev *cgd; 1361 cam_status status; 1362 1363 cgd = (struct ccb_getdev *)arg; 1364 if (cgd == NULL) 1365 break; 1366 1367 if (SID_TYPE(&cgd->inq_data) != T_SEQUENTIAL) 1368 break; 1369 1370 /* 1371 * Allocate a peripheral instance for 1372 * this device and start the probe 1373 * process. 1374 */ 1375 status = cam_periph_alloc(saregister, saoninvalidate, 1376 sacleanup, sastart, 1377 "sa", CAM_PERIPH_BIO, cgd->ccb_h.path, 1378 saasync, AC_FOUND_DEVICE, cgd); 1379 1380 if (status != CAM_REQ_CMP 1381 && status != CAM_REQ_INPROG) 1382 printf("saasync: Unable to probe new device " 1383 "due to status 0x%x\n", status); 1384 break; 1385 } 1386 default: 1387 cam_periph_async(periph, code, path, arg); 1388 break; 1389 } 1390 } 1391 1392 static cam_status 1393 saregister(struct cam_periph *periph, void *arg) 1394 { 1395 struct sa_softc *softc; 1396 struct ccb_setasync csa; 1397 struct ccb_getdev *cgd; 1398 caddr_t match; 1399 int i; 1400 1401 cgd = (struct ccb_getdev *)arg; 1402 if (periph == NULL) { 1403 printf("saregister: periph was NULL!!\n"); 1404 return (CAM_REQ_CMP_ERR); 1405 } 1406 1407 if (cgd == NULL) { 1408 printf("saregister: no getdev CCB, can't register device\n"); 1409 return (CAM_REQ_CMP_ERR); 1410 } 1411 1412 softc = (struct sa_softc *) 1413 malloc(sizeof (*softc), M_DEVBUF, M_NOWAIT | M_ZERO); 1414 if (softc == NULL) { 1415 printf("saregister: Unable to probe new device. " 1416 "Unable to allocate softc\n"); 1417 return (CAM_REQ_CMP_ERR); 1418 } 1419 softc->scsi_rev = SID_ANSI_REV(&cgd->inq_data); 1420 softc->state = SA_STATE_NORMAL; 1421 softc->fileno = (daddr_t) -1; 1422 softc->blkno = (daddr_t) -1; 1423 1424 bioq_init(&softc->bio_queue); 1425 periph->softc = softc; 1426 1427 /* 1428 * See if this device has any quirks. 1429 */ 1430 match = cam_quirkmatch((caddr_t)&cgd->inq_data, 1431 (caddr_t)sa_quirk_table, 1432 sizeof(sa_quirk_table)/sizeof(*sa_quirk_table), 1433 sizeof(*sa_quirk_table), scsi_inquiry_match); 1434 1435 if (match != NULL) { 1436 softc->quirks = ((struct sa_quirk_entry *)match)->quirks; 1437 softc->last_media_blksize = 1438 ((struct sa_quirk_entry *)match)->prefblk; 1439 #ifdef CAMDEBUG 1440 xpt_print_path(periph->path); 1441 printf("found quirk entry %d\n", (int) 1442 (((struct sa_quirk_entry *) match) - sa_quirk_table)); 1443 #endif 1444 } else 1445 softc->quirks = SA_QUIRK_NONE; 1446 1447 /* 1448 * The SA driver supports a blocksize, but we don't know the 1449 * blocksize until we media is inserted. So, set a flag to 1450 * indicate that the blocksize is unavailable right now. 1451 */ 1452 devstat_add_entry(&softc->device_stats, "sa", periph->unit_number, 0, 1453 DEVSTAT_BS_UNAVAILABLE, SID_TYPE(&cgd->inq_data) | 1454 DEVSTAT_TYPE_IF_SCSI, DEVSTAT_PRIORITY_TAPE); 1455 1456 softc->devs.ctl_dev = make_dev(&sa_cdevsw, SAMINOR(SA_CTLDEV, 1457 periph->unit_number, 0, SA_ATYPE_R), UID_ROOT, GID_OPERATOR, 1458 0660, "%s%d.ctl", periph->periph_name, periph->unit_number); 1459 softc->devs.ctl_dev->si_drv1 = periph; 1460 1461 for (i = 0; i < SA_NUM_MODES; i++) { 1462 1463 softc->devs.mode_devs[i].r_dev = make_dev(&sa_cdevsw, 1464 SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_R), 1465 UID_ROOT, GID_OPERATOR, 0660, "%s%d.%d", 1466 periph->periph_name, periph->unit_number, i); 1467 softc->devs.mode_devs[i].r_dev->si_drv1 = periph; 1468 1469 softc->devs.mode_devs[i].nr_dev = make_dev(&sa_cdevsw, 1470 SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_NR), 1471 UID_ROOT, GID_OPERATOR, 0660, "n%s%d.%d", 1472 periph->periph_name, periph->unit_number, i); 1473 softc->devs.mode_devs[i].nr_dev->si_drv1 = periph; 1474 1475 softc->devs.mode_devs[i].er_dev = make_dev(&sa_cdevsw, 1476 SAMINOR(SA_NOT_CTLDEV, periph->unit_number, i, SA_ATYPE_ER), 1477 UID_ROOT, GID_OPERATOR, 0660, "e%s%d.%d", 1478 periph->periph_name, periph->unit_number, i); 1479 softc->devs.mode_devs[i].er_dev->si_drv1 = periph; 1480 1481 /* 1482 * Make the (well known) aliases for the first mode. 1483 */ 1484 if (i == 0) { 1485 dev_t alias; 1486 1487 alias = make_dev_alias(softc->devs.mode_devs[i].r_dev, 1488 "%s%d", periph->periph_name, periph->unit_number); 1489 alias->si_drv1 = periph; 1490 alias = make_dev_alias(softc->devs.mode_devs[i].nr_dev, 1491 "n%s%d", periph->periph_name, periph->unit_number); 1492 alias->si_drv1 = periph; 1493 alias = make_dev_alias(softc->devs.mode_devs[i].er_dev, 1494 "e%s%d", periph->periph_name, periph->unit_number); 1495 alias->si_drv1 = periph; 1496 } 1497 } 1498 1499 /* 1500 * Add an async callback so that we get 1501 * notified if this device goes away. 1502 */ 1503 xpt_setup_ccb(&csa.ccb_h, periph->path, /* priority */ 5); 1504 csa.ccb_h.func_code = XPT_SASYNC_CB; 1505 csa.event_enable = AC_LOST_DEVICE; 1506 csa.callback = saasync; 1507 csa.callback_arg = periph; 1508 xpt_action((union ccb *)&csa); 1509 1510 xpt_announce_periph(periph, NULL); 1511 1512 return (CAM_REQ_CMP); 1513 } 1514 1515 static void 1516 sastart(struct cam_periph *periph, union ccb *start_ccb) 1517 { 1518 struct sa_softc *softc; 1519 1520 softc = (struct sa_softc *)periph->softc; 1521 1522 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("sastart")); 1523 1524 1525 switch (softc->state) { 1526 case SA_STATE_NORMAL: 1527 { 1528 /* Pull a buffer from the queue and get going on it */ 1529 struct bio *bp; 1530 int s; 1531 1532 /* 1533 * See if there is a buf with work for us to do.. 1534 */ 1535 s = splbio(); 1536 bp = bioq_first(&softc->bio_queue); 1537 if (periph->immediate_priority <= periph->pinfo.priority) { 1538 CAM_DEBUG_PRINT(CAM_DEBUG_SUBTRACE, 1539 ("queuing for immediate ccb\n")); 1540 Set_CCB_Type(start_ccb, SA_CCB_WAITING); 1541 SLIST_INSERT_HEAD(&periph->ccb_list, &start_ccb->ccb_h, 1542 periph_links.sle); 1543 periph->immediate_priority = CAM_PRIORITY_NONE; 1544 splx(s); 1545 wakeup(&periph->ccb_list); 1546 } else if (bp == NULL) { 1547 splx(s); 1548 xpt_release_ccb(start_ccb); 1549 } else if ((softc->flags & SA_FLAG_ERR_PENDING) != 0) { 1550 struct bio *done_bp; 1551 again: 1552 softc->queue_count--; 1553 bioq_remove(&softc->bio_queue, bp); 1554 bp->bio_resid = bp->bio_bcount; 1555 done_bp = bp; 1556 if ((softc->flags & SA_FLAG_EOM_PENDING) != 0) { 1557 /* 1558 * We now just clear errors in this case 1559 * and let the residual be the notifier. 1560 */ 1561 bp->bio_error = 0; 1562 } else if ((softc->flags & SA_FLAG_EOF_PENDING) != 0) { 1563 /* 1564 * This can only happen if we're reading 1565 * in fixed length mode. In this case, 1566 * we dump the rest of the list the 1567 * same way. 1568 */ 1569 bp->bio_error = 0; 1570 if (bioq_first(&softc->bio_queue) != NULL) { 1571 biodone(done_bp); 1572 goto again; 1573 } 1574 } else if ((softc->flags & SA_FLAG_EIO_PENDING) != 0) { 1575 bp->bio_error = EIO; 1576 bp->bio_flags |= BIO_ERROR; 1577 } 1578 bp = bioq_first(&softc->bio_queue); 1579 /* 1580 * Only if we have no other buffers queued up 1581 * do we clear the pending error flag. 1582 */ 1583 if (bp == NULL) 1584 softc->flags &= ~SA_FLAG_ERR_PENDING; 1585 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, 1586 ("sastart- ERR_PENDING now 0x%x, bp is %sNULL, " 1587 "%d more buffers queued up\n", 1588 (softc->flags & SA_FLAG_ERR_PENDING), 1589 (bp != NULL)? "not " : " ", softc->queue_count)); 1590 splx(s); 1591 xpt_release_ccb(start_ccb); 1592 biodone(done_bp); 1593 } else { 1594 u_int32_t length; 1595 1596 bioq_remove(&softc->bio_queue, bp); 1597 softc->queue_count--; 1598 1599 if ((softc->flags & SA_FLAG_FIXED) != 0) { 1600 if (softc->blk_shift != 0) { 1601 length = 1602 bp->bio_bcount >> softc->blk_shift; 1603 } else if (softc->media_blksize != 0) { 1604 length = bp->bio_bcount / 1605 softc->media_blksize; 1606 } else { 1607 bp->bio_error = EIO; 1608 xpt_print_path(periph->path); 1609 printf("zero blocksize for " 1610 "FIXED length writes?\n"); 1611 splx(s); 1612 biodone(bp); 1613 break; 1614 } 1615 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, 1616 ("Fixed Record Count is %d\n", length)); 1617 } else { 1618 length = bp->bio_bcount; 1619 CAM_DEBUG(start_ccb->ccb_h.path, CAM_DEBUG_INFO, 1620 ("Variable Record Count is %d\n", length)); 1621 } 1622 devstat_start_transaction(&softc->device_stats); 1623 /* 1624 * Some people have theorized that we should 1625 * suppress illegal length indication if we are 1626 * running in variable block mode so that we don't 1627 * have to request sense every time our requested 1628 * block size is larger than the written block. 1629 * The residual information from the ccb allows 1630 * us to identify this situation anyway. The only 1631 * problem with this is that we will not get 1632 * information about blocks that are larger than 1633 * our read buffer unless we set the block size 1634 * in the mode page to something other than 0. 1635 * 1636 * I believe that this is a non-issue. If user apps 1637 * don't adjust their read size to match our record 1638 * size, that's just life. Anyway, the typical usage 1639 * would be to issue, e.g., 64KB reads and occasionally 1640 * have to do deal with 512 byte or 1KB intermediate 1641 * records. 1642 */ 1643 softc->dsreg = (bp->bio_cmd == BIO_READ)? 1644 MTIO_DSREG_RD : MTIO_DSREG_WR; 1645 scsi_sa_read_write(&start_ccb->csio, 0, sadone, 1646 MSG_SIMPLE_Q_TAG, (bp->bio_cmd == BIO_READ), 1647 FALSE, (softc->flags & SA_FLAG_FIXED) != 0, 1648 length, bp->bio_data, bp->bio_bcount, SSD_FULL_SIZE, 1649 IO_TIMEOUT); 1650 start_ccb->ccb_h.ccb_pflags &= ~SA_POSITION_UPDATED; 1651 Set_CCB_Type(start_ccb, SA_CCB_BUFFER_IO); 1652 start_ccb->ccb_h.ccb_bp = bp; 1653 bp = bioq_first(&softc->bio_queue); 1654 splx(s); 1655 xpt_action(start_ccb); 1656 } 1657 1658 if (bp != NULL) { 1659 /* Have more work to do, so ensure we stay scheduled */ 1660 xpt_schedule(periph, 1); 1661 } 1662 break; 1663 } 1664 case SA_STATE_ABNORMAL: 1665 default: 1666 panic("state 0x%x in sastart", softc->state); 1667 break; 1668 } 1669 } 1670 1671 1672 static void 1673 sadone(struct cam_periph *periph, union ccb *done_ccb) 1674 { 1675 struct sa_softc *softc; 1676 struct ccb_scsiio *csio; 1677 1678 softc = (struct sa_softc *)periph->softc; 1679 csio = &done_ccb->csio; 1680 switch (CCB_Type(csio)) { 1681 case SA_CCB_BUFFER_IO: 1682 { 1683 struct bio *bp; 1684 int error; 1685 1686 softc->dsreg = MTIO_DSREG_REST; 1687 bp = (struct bio *)done_ccb->ccb_h.ccb_bp; 1688 error = 0; 1689 if ((done_ccb->ccb_h.status & CAM_STATUS_MASK) != CAM_REQ_CMP) { 1690 if ((error = saerror(done_ccb, 0, 0)) == ERESTART) { 1691 /* 1692 * A retry was scheduled, so just return. 1693 */ 1694 return; 1695 } 1696 } 1697 1698 if (error == EIO) { 1699 int s; 1700 struct bio *q_bp; 1701 1702 /* 1703 * Catastrophic error. Mark the tape as frozen 1704 * (we no longer know tape position). 1705 * 1706 * Return all queued I/O with EIO, and unfreeze 1707 * our queue so that future transactions that 1708 * attempt to fix this problem can get to the 1709 * device. 1710 * 1711 */ 1712 1713 s = splbio(); 1714 softc->flags |= SA_FLAG_TAPE_FROZEN; 1715 while ((q_bp = bioq_first(&softc->bio_queue)) != NULL) { 1716 bioq_remove(&softc->bio_queue, q_bp); 1717 q_bp->bio_resid = q_bp->bio_bcount; 1718 biofinish(q_bp, NULL, EIO); 1719 } 1720 splx(s); 1721 } 1722 if (error != 0) { 1723 bp->bio_resid = bp->bio_bcount; 1724 bp->bio_error = error; 1725 bp->bio_flags |= BIO_ERROR; 1726 /* 1727 * In the error case, position is updated in saerror. 1728 */ 1729 } else { 1730 bp->bio_resid = csio->resid; 1731 bp->bio_error = 0; 1732 if (csio->resid != 0) { 1733 bp->bio_flags |= BIO_ERROR; 1734 } 1735 if (bp->bio_cmd == BIO_WRITE) { 1736 softc->flags |= SA_FLAG_TAPE_WRITTEN; 1737 softc->filemarks = 0; 1738 } 1739 if (!(csio->ccb_h.ccb_pflags & SA_POSITION_UPDATED) && 1740 (softc->blkno != (daddr_t) -1)) { 1741 if ((softc->flags & SA_FLAG_FIXED) != 0) { 1742 u_int32_t l; 1743 if (softc->blk_shift != 0) { 1744 l = bp->bio_bcount >> 1745 softc->blk_shift; 1746 } else { 1747 l = bp->bio_bcount / 1748 softc->media_blksize; 1749 } 1750 softc->blkno += (daddr_t) l; 1751 } else { 1752 softc->blkno++; 1753 } 1754 } 1755 } 1756 /* 1757 * If we had an error (immediate or pending), 1758 * release the device queue now. 1759 */ 1760 if (error || (softc->flags & SA_FLAG_ERR_PENDING)) 1761 cam_release_devq(done_ccb->ccb_h.path, 0, 0, 0, 0); 1762 #ifdef CAMDEBUG 1763 if (error || bp->bio_resid) { 1764 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, 1765 ("error %d resid %ld count %ld\n", error, 1766 bp->bio_resid, bp->bio_bcount)); 1767 } 1768 #endif 1769 biofinish(bp, &softc->device_stats, 0); 1770 break; 1771 } 1772 case SA_CCB_WAITING: 1773 { 1774 /* Caller will release the CCB */ 1775 wakeup(&done_ccb->ccb_h.cbfcnp); 1776 return; 1777 } 1778 } 1779 xpt_release_ccb(done_ccb); 1780 } 1781 1782 /* 1783 * Mount the tape (make sure it's ready for I/O). 1784 */ 1785 static int 1786 samount(struct cam_periph *periph, int oflags, dev_t dev) 1787 { 1788 struct sa_softc *softc; 1789 union ccb *ccb; 1790 int error; 1791 1792 /* 1793 * oflags can be checked for 'kind' of open (read-only check) - later 1794 * dev can be checked for a control-mode or compression open - later 1795 */ 1796 UNUSED_PARAMETER(oflags); 1797 UNUSED_PARAMETER(dev); 1798 1799 1800 softc = (struct sa_softc *)periph->softc; 1801 1802 /* 1803 * This should determine if something has happend since the last 1804 * open/mount that would invalidate the mount. We do *not* want 1805 * to retry this command- we just want the status. But we only 1806 * do this if we're mounted already- if we're not mounted, 1807 * we don't care about the unit read state and can instead use 1808 * this opportunity to attempt to reserve the tape unit. 1809 */ 1810 1811 if (softc->flags & SA_FLAG_TAPE_MOUNTED) { 1812 ccb = cam_periph_getccb(periph, 1); 1813 scsi_test_unit_ready(&ccb->csio, 0, sadone, 1814 MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, IO_TIMEOUT); 1815 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1816 &softc->device_stats); 1817 QFRLS(ccb); 1818 if (error == ENXIO) { 1819 softc->flags &= ~SA_FLAG_TAPE_MOUNTED; 1820 scsi_test_unit_ready(&ccb->csio, 0, sadone, 1821 MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, IO_TIMEOUT); 1822 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1823 &softc->device_stats); 1824 QFRLS(ccb); 1825 } else if (error) { 1826 /* 1827 * We don't need to freeze the tape because we 1828 * will now attempt to rewind/load it. 1829 */ 1830 softc->flags &= ~SA_FLAG_TAPE_MOUNTED; 1831 if (CAM_DEBUGGED(ccb->ccb_h.path, CAM_DEBUG_INFO)) { 1832 xpt_print_path(ccb->ccb_h.path); 1833 printf("error %d on TUR in samount\n", error); 1834 } 1835 } 1836 } else { 1837 error = sareservereleaseunit(periph, TRUE); 1838 if (error) { 1839 return (error); 1840 } 1841 ccb = cam_periph_getccb(periph, 1); 1842 scsi_test_unit_ready(&ccb->csio, 0, sadone, 1843 MSG_SIMPLE_Q_TAG, SSD_FULL_SIZE, IO_TIMEOUT); 1844 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1845 &softc->device_stats); 1846 QFRLS(ccb); 1847 } 1848 1849 if ((softc->flags & SA_FLAG_TAPE_MOUNTED) == 0) { 1850 struct scsi_read_block_limits_data *rblim = NULL; 1851 int comp_enabled, comp_supported; 1852 u_int8_t write_protect, guessing = 0; 1853 1854 /* 1855 * Clear out old state. 1856 */ 1857 softc->flags &= ~(SA_FLAG_TAPE_WP|SA_FLAG_TAPE_WRITTEN| 1858 SA_FLAG_ERR_PENDING|SA_FLAG_COMP_ENABLED| 1859 SA_FLAG_COMP_SUPP|SA_FLAG_COMP_UNSUPP); 1860 softc->filemarks = 0; 1861 1862 /* 1863 * *Very* first off, make sure we're loaded to BOT. 1864 */ 1865 scsi_load_unload(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE, 1866 FALSE, FALSE, 1, SSD_FULL_SIZE, REWIND_TIMEOUT); 1867 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1868 &softc->device_stats); 1869 QFRLS(ccb); 1870 1871 /* 1872 * In case this doesn't work, do a REWIND instead 1873 */ 1874 if (error) { 1875 scsi_rewind(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, 1876 FALSE, SSD_FULL_SIZE, REWIND_TIMEOUT); 1877 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1878 &softc->device_stats); 1879 QFRLS(ccb); 1880 } 1881 if (error) { 1882 xpt_release_ccb(ccb); 1883 goto exit; 1884 } 1885 1886 /* 1887 * Do a dummy test read to force access to the 1888 * media so that the drive will really know what's 1889 * there. We actually don't really care what the 1890 * blocksize on tape is and don't expect to really 1891 * read a full record. 1892 */ 1893 rblim = (struct scsi_read_block_limits_data *) 1894 malloc(8192, M_TEMP, M_WAITOK); 1895 if (rblim == NULL) { 1896 xpt_print_path(ccb->ccb_h.path); 1897 printf("no memory for test read\n"); 1898 xpt_release_ccb(ccb); 1899 error = ENOMEM; 1900 goto exit; 1901 } 1902 1903 if ((softc->quirks & SA_QUIRK_NODREAD) == 0) { 1904 scsi_sa_read_write(&ccb->csio, 0, sadone, 1905 MSG_SIMPLE_Q_TAG, 1, FALSE, 0, 8192, 1906 (void *) rblim, 8192, SSD_FULL_SIZE, 1907 IO_TIMEOUT); 1908 (void) cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 1909 &softc->device_stats); 1910 QFRLS(ccb); 1911 scsi_rewind(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG, 1912 FALSE, SSD_FULL_SIZE, REWIND_TIMEOUT); 1913 error = cam_periph_runccb(ccb, saerror, CAM_RETRY_SELTO, 1914 SF_NO_PRINT | SF_RETRY_UA, 1915 &softc->device_stats); 1916 QFRLS(ccb); 1917 if (error) { 1918 xpt_print_path(ccb->ccb_h.path); 1919 printf("unable to rewind after test read\n"); 1920 xpt_release_ccb(ccb); 1921 goto exit; 1922 } 1923 } 1924 1925 /* 1926 * Next off, determine block limits. 1927 */ 1928 scsi_read_block_limits(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, 1929 rblim, SSD_FULL_SIZE, SCSIOP_TIMEOUT); 1930 1931 error = cam_periph_runccb(ccb, saerror, CAM_RETRY_SELTO, 1932 SF_NO_PRINT | SF_RETRY_UA, &softc->device_stats); 1933 1934 QFRLS(ccb); 1935 xpt_release_ccb(ccb); 1936 1937 if (error != 0) { 1938 /* 1939 * If it's less than SCSI-2, READ BLOCK LIMITS is not 1940 * a MANDATORY command. Anyway- it doesn't matter- 1941 * we can proceed anyway. 1942 */ 1943 softc->blk_gran = 0; 1944 softc->max_blk = ~0; 1945 softc->min_blk = 0; 1946 } else { 1947 if (softc->scsi_rev >= SCSI_REV_SPC) { 1948 softc->blk_gran = RBL_GRAN(rblim); 1949 } else { 1950 softc->blk_gran = 0; 1951 } 1952 /* 1953 * We take max_blk == min_blk to mean a default to 1954 * fixed mode- but note that whatever we get out of 1955 * sagetparams below will actually determine whether 1956 * we are actually *in* fixed mode. 1957 */ 1958 softc->max_blk = scsi_3btoul(rblim->maximum); 1959 softc->min_blk = scsi_2btoul(rblim->minimum); 1960 1961 1962 } 1963 /* 1964 * Next, perform a mode sense to determine 1965 * current density, blocksize, compression etc. 1966 */ 1967 error = sagetparams(periph, SA_PARAM_ALL, 1968 &softc->media_blksize, 1969 &softc->media_density, 1970 &softc->media_numblks, 1971 &softc->buffer_mode, &write_protect, 1972 &softc->speed, &comp_supported, 1973 &comp_enabled, &softc->comp_algorithm, 1974 NULL); 1975 1976 if (error != 0) { 1977 /* 1978 * We could work a little harder here. We could 1979 * adjust our attempts to get information. It 1980 * might be an ancient tape drive. If someone 1981 * nudges us, we'll do that. 1982 */ 1983 goto exit; 1984 } 1985 1986 /* 1987 * If no quirk has determined that this is a device that is 1988 * preferred to be in fixed or variable mode, now is the time 1989 * to find out. 1990 */ 1991 if ((softc->quirks & (SA_QUIRK_FIXED|SA_QUIRK_VARIABLE)) == 0) { 1992 guessing = 1; 1993 /* 1994 * This could be expensive to find out. Luckily we 1995 * only need to do this once. If we start out in 1996 * 'default' mode, try and set ourselves to one 1997 * of the densities that would determine a wad 1998 * of other stuff. Go from highest to lowest. 1999 */ 2000 if (softc->media_density == SCSI_DEFAULT_DENSITY) { 2001 int i; 2002 static u_int8_t ctry[] = { 2003 SCSI_DENSITY_HALFINCH_PE, 2004 SCSI_DENSITY_HALFINCH_6250C, 2005 SCSI_DENSITY_HALFINCH_6250, 2006 SCSI_DENSITY_HALFINCH_1600, 2007 SCSI_DENSITY_HALFINCH_800, 2008 SCSI_DENSITY_QIC_4GB, 2009 SCSI_DENSITY_QIC_2GB, 2010 SCSI_DENSITY_QIC_525_320, 2011 SCSI_DENSITY_QIC_150, 2012 SCSI_DENSITY_QIC_120, 2013 SCSI_DENSITY_QIC_24, 2014 SCSI_DENSITY_QIC_11_9TRK, 2015 SCSI_DENSITY_QIC_11_4TRK, 2016 SCSI_DENSITY_QIC_1320, 2017 SCSI_DENSITY_QIC_3080, 2018 0 2019 }; 2020 for (i = 0; ctry[i]; i++) { 2021 error = sasetparams(periph, 2022 SA_PARAM_DENSITY, 0, ctry[i], 2023 0, SF_NO_PRINT); 2024 if (error == 0) { 2025 softc->media_density = ctry[i]; 2026 break; 2027 } 2028 } 2029 } 2030 switch (softc->media_density) { 2031 case SCSI_DENSITY_QIC_11_4TRK: 2032 case SCSI_DENSITY_QIC_11_9TRK: 2033 case SCSI_DENSITY_QIC_24: 2034 case SCSI_DENSITY_QIC_120: 2035 case SCSI_DENSITY_QIC_150: 2036 case SCSI_DENSITY_QIC_525_320: 2037 case SCSI_DENSITY_QIC_1320: 2038 case SCSI_DENSITY_QIC_3080: 2039 softc->quirks &= ~SA_QUIRK_2FM; 2040 softc->quirks |= SA_QUIRK_FIXED|SA_QUIRK_1FM; 2041 softc->last_media_blksize = 512; 2042 break; 2043 case SCSI_DENSITY_QIC_4GB: 2044 case SCSI_DENSITY_QIC_2GB: 2045 softc->quirks &= ~SA_QUIRK_2FM; 2046 softc->quirks |= SA_QUIRK_FIXED|SA_QUIRK_1FM; 2047 softc->last_media_blksize = 1024; 2048 break; 2049 default: 2050 softc->last_media_blksize = 2051 softc->media_blksize; 2052 softc->quirks |= SA_QUIRK_VARIABLE; 2053 break; 2054 } 2055 } 2056 2057 /* 2058 * If no quirk has determined that this is a device that needs 2059 * to have 2 Filemarks at EOD, now is the time to find out. 2060 */ 2061 2062 if ((softc->quirks & SA_QUIRK_2FM) == 0) { 2063 switch (softc->media_density) { 2064 case SCSI_DENSITY_HALFINCH_800: 2065 case SCSI_DENSITY_HALFINCH_1600: 2066 case SCSI_DENSITY_HALFINCH_6250: 2067 case SCSI_DENSITY_HALFINCH_6250C: 2068 case SCSI_DENSITY_HALFINCH_PE: 2069 softc->quirks &= ~SA_QUIRK_1FM; 2070 softc->quirks |= SA_QUIRK_2FM; 2071 break; 2072 default: 2073 break; 2074 } 2075 } 2076 2077 /* 2078 * Now validate that some info we got makes sense. 2079 */ 2080 if ((softc->max_blk < softc->media_blksize) || 2081 (softc->min_blk > softc->media_blksize && 2082 softc->media_blksize)) { 2083 xpt_print_path(ccb->ccb_h.path); 2084 printf("BLOCK LIMITS (%d..%d) could not match current " 2085 "block settings (%d)- adjusting\n", softc->min_blk, 2086 softc->max_blk, softc->media_blksize); 2087 softc->max_blk = softc->min_blk = 2088 softc->media_blksize; 2089 } 2090 2091 /* 2092 * Now put ourselves into the right frame of mind based 2093 * upon quirks... 2094 */ 2095 tryagain: 2096 /* 2097 * If we want to be in FIXED mode and our current blocksize 2098 * is not equal to our last blocksize (if nonzero), try and 2099 * set ourselves to this last blocksize (as the 'preferred' 2100 * block size). The initial quirkmatch at registry sets the 2101 * initial 'last' blocksize. If, for whatever reason, this 2102 * 'last' blocksize is zero, set the blocksize to 512, 2103 * or min_blk if that's larger. 2104 */ 2105 if ((softc->quirks & SA_QUIRK_FIXED) && 2106 (softc->quirks & SA_QUIRK_NO_MODESEL) == 0 && 2107 (softc->media_blksize != softc->last_media_blksize)) { 2108 softc->media_blksize = softc->last_media_blksize; 2109 if (softc->media_blksize == 0) { 2110 softc->media_blksize = 512; 2111 if (softc->media_blksize < softc->min_blk) { 2112 softc->media_blksize = softc->min_blk; 2113 } 2114 } 2115 error = sasetparams(periph, SA_PARAM_BLOCKSIZE, 2116 softc->media_blksize, 0, 0, SF_NO_PRINT); 2117 if (error) { 2118 xpt_print_path(ccb->ccb_h.path); 2119 printf("unable to set fixed blocksize to %d\n", 2120 softc->media_blksize); 2121 goto exit; 2122 } 2123 } 2124 2125 if ((softc->quirks & SA_QUIRK_VARIABLE) && 2126 (softc->media_blksize != 0)) { 2127 softc->last_media_blksize = softc->media_blksize; 2128 softc->media_blksize = 0; 2129 error = sasetparams(periph, SA_PARAM_BLOCKSIZE, 2130 0, 0, 0, SF_NO_PRINT); 2131 if (error) { 2132 /* 2133 * If this fails and we were guessing, just 2134 * assume that we got it wrong and go try 2135 * fixed block mode. Don't even check against 2136 * density code at this point. 2137 */ 2138 if (guessing) { 2139 softc->quirks &= ~SA_QUIRK_VARIABLE; 2140 softc->quirks |= SA_QUIRK_FIXED; 2141 if (softc->last_media_blksize == 0) 2142 softc->last_media_blksize = 512; 2143 goto tryagain; 2144 } 2145 xpt_print_path(ccb->ccb_h.path); 2146 printf("unable to set variable blocksize\n"); 2147 goto exit; 2148 } 2149 } 2150 2151 /* 2152 * Now that we have the current block size, 2153 * set up some parameters for sastart's usage. 2154 */ 2155 if (softc->media_blksize) { 2156 softc->flags |= SA_FLAG_FIXED; 2157 if (powerof2(softc->media_blksize)) { 2158 softc->blk_shift = 2159 ffs(softc->media_blksize) - 1; 2160 softc->blk_mask = softc->media_blksize - 1; 2161 } else { 2162 softc->blk_mask = ~0; 2163 softc->blk_shift = 0; 2164 } 2165 } else { 2166 /* 2167 * The SCSI-3 spec allows 0 to mean "unspecified". 2168 * The SCSI-1 spec allows 0 to mean 'infinite'. 2169 * 2170 * Either works here. 2171 */ 2172 if (softc->max_blk == 0) { 2173 softc->max_blk = ~0; 2174 } 2175 softc->blk_shift = 0; 2176 if (softc->blk_gran != 0) { 2177 softc->blk_mask = softc->blk_gran - 1; 2178 } else { 2179 softc->blk_mask = 0; 2180 } 2181 } 2182 2183 if (write_protect) 2184 softc->flags |= SA_FLAG_TAPE_WP; 2185 2186 if (comp_supported) { 2187 if (softc->saved_comp_algorithm == 0) 2188 softc->saved_comp_algorithm = 2189 softc->comp_algorithm; 2190 softc->flags |= SA_FLAG_COMP_SUPP; 2191 if (comp_enabled) 2192 softc->flags |= SA_FLAG_COMP_ENABLED; 2193 } else 2194 softc->flags |= SA_FLAG_COMP_UNSUPP; 2195 2196 if ((softc->buffer_mode == SMH_SA_BUF_MODE_NOBUF) && 2197 (softc->quirks & SA_QUIRK_NO_MODESEL) == 0) { 2198 error = sasetparams(periph, SA_PARAM_BUFF_MODE, 0, 2199 0, 0, SF_NO_PRINT); 2200 if (error == 0) { 2201 softc->buffer_mode = SMH_SA_BUF_MODE_SIBUF; 2202 } else { 2203 xpt_print_path(ccb->ccb_h.path); 2204 printf("unable to set buffered mode\n"); 2205 } 2206 error = 0; /* not an error */ 2207 } 2208 2209 2210 if (error == 0) { 2211 softc->flags |= SA_FLAG_TAPE_MOUNTED; 2212 } 2213 exit: 2214 if (rblim != NULL) 2215 free(rblim, M_TEMP); 2216 2217 if (error != 0) { 2218 softc->dsreg = MTIO_DSREG_NIL; 2219 } else { 2220 softc->fileno = softc->blkno = 0; 2221 softc->dsreg = MTIO_DSREG_REST; 2222 } 2223 #ifdef SA_1FM_AT_EOD 2224 if ((softc->quirks & SA_QUIRK_2FM) == 0) 2225 softc->quirks |= SA_QUIRK_1FM; 2226 #else 2227 if ((softc->quirks & SA_QUIRK_1FM) == 0) 2228 softc->quirks |= SA_QUIRK_2FM; 2229 #endif 2230 } else 2231 xpt_release_ccb(ccb); 2232 2233 /* 2234 * If we return an error, we're not mounted any more, 2235 * so release any device reservation. 2236 */ 2237 if (error != 0) { 2238 (void) sareservereleaseunit(periph, FALSE); 2239 } else { 2240 /* 2241 * Clear I/O residual. 2242 */ 2243 softc->last_io_resid = 0; 2244 softc->last_ctl_resid = 0; 2245 } 2246 return (error); 2247 } 2248 2249 /* 2250 * How many filemarks do we need to write if we were to terminate the 2251 * tape session right now? Note that this can be a negative number 2252 */ 2253 2254 static int 2255 samarkswanted(struct cam_periph *periph) 2256 { 2257 int markswanted; 2258 struct sa_softc *softc; 2259 2260 softc = (struct sa_softc *)periph->softc; 2261 markswanted = 0; 2262 if ((softc->flags & SA_FLAG_TAPE_WRITTEN) != 0) { 2263 markswanted++; 2264 if (softc->quirks & SA_QUIRK_2FM) 2265 markswanted++; 2266 } 2267 markswanted -= softc->filemarks; 2268 return (markswanted); 2269 } 2270 2271 static int 2272 sacheckeod(struct cam_periph *periph) 2273 { 2274 int error; 2275 int markswanted; 2276 struct sa_softc *softc; 2277 2278 softc = (struct sa_softc *)periph->softc; 2279 markswanted = samarkswanted(periph); 2280 2281 if (markswanted > 0) { 2282 error = sawritefilemarks(periph, markswanted, FALSE); 2283 } else { 2284 error = 0; 2285 } 2286 return (error); 2287 } 2288 2289 static int 2290 saerror(union ccb *ccb, u_int32_t cflgs, u_int32_t sflgs) 2291 { 2292 static const char *toobig = 2293 "%d-byte tape record bigger than supplied buffer\n"; 2294 struct cam_periph *periph; 2295 struct sa_softc *softc; 2296 struct ccb_scsiio *csio; 2297 struct scsi_sense_data *sense; 2298 u_int32_t resid = 0; 2299 int32_t info = 0; 2300 cam_status status; 2301 int error_code, sense_key, asc, ascq, error, aqvalid; 2302 2303 periph = xpt_path_periph(ccb->ccb_h.path); 2304 softc = (struct sa_softc *)periph->softc; 2305 csio = &ccb->csio; 2306 sense = &csio->sense_data; 2307 scsi_extract_sense(sense, &error_code, &sense_key, &asc, &ascq); 2308 aqvalid = sense->extra_len >= 6; 2309 error = 0; 2310 2311 status = csio->ccb_h.status & CAM_STATUS_MASK; 2312 2313 /* 2314 * Calculate/latch up, any residuals... We do this in a funny 2-step 2315 * so we can print stuff here if we have CAM_DEBUG enabled for this 2316 * unit. 2317 */ 2318 if (status == CAM_SCSI_STATUS_ERROR) { 2319 if ((sense->error_code & SSD_ERRCODE_VALID) != 0) { 2320 info = (int32_t) scsi_4btoul(sense->info); 2321 resid = info; 2322 if ((softc->flags & SA_FLAG_FIXED) != 0) 2323 resid *= softc->media_blksize; 2324 } else { 2325 resid = csio->dxfer_len; 2326 info = resid; 2327 if ((softc->flags & SA_FLAG_FIXED) != 0) { 2328 if (softc->media_blksize) 2329 info /= softc->media_blksize; 2330 } 2331 } 2332 if (CCB_Type(csio) == SA_CCB_BUFFER_IO) { 2333 bcopy((caddr_t) sense, (caddr_t) &softc->last_io_sense, 2334 sizeof (struct scsi_sense_data)); 2335 bcopy(csio->cdb_io.cdb_bytes, softc->last_io_cdb, 2336 (int) csio->cdb_len); 2337 softc->last_io_resid = resid; 2338 softc->last_resid_was_io = 1; 2339 } else { 2340 bcopy((caddr_t) sense, (caddr_t) &softc->last_ctl_sense, 2341 sizeof (struct scsi_sense_data)); 2342 bcopy(csio->cdb_io.cdb_bytes, softc->last_ctl_cdb, 2343 (int) csio->cdb_len); 2344 softc->last_ctl_resid = resid; 2345 softc->last_resid_was_io = 0; 2346 } 2347 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, ("CDB[0]=0x%x Key 0x%x " 2348 "ASC/ASCQ 0x%x/0x%x CAM STATUS 0x%x flags 0x%x resid %d " 2349 "dxfer_len %d\n", csio->cdb_io.cdb_bytes[0] & 0xff, 2350 sense_key, asc, ascq, status, 2351 sense->flags & ~SSD_KEY_RESERVED, resid, csio->dxfer_len)); 2352 } else { 2353 CAM_DEBUG(periph->path, CAM_DEBUG_INFO, 2354 ("Cam Status 0x%x\n", status)); 2355 } 2356 2357 switch (status) { 2358 case CAM_REQ_CMP: 2359 return (0); 2360 case CAM_SCSI_STATUS_ERROR: 2361 /* 2362 * If a read/write command, we handle it here. 2363 */ 2364 if (CCB_Type(csio) != SA_CCB_WAITING) { 2365 break; 2366 } 2367 /* 2368 * If this was just EOM/EOP, Filemark, Setmark or ILI detected 2369 * on a non read/write command, we assume it's not an error 2370 * and propagate the residule and return. 2371 */ 2372 if ((aqvalid && asc == 0 && ascq > 0 && ascq <= 5) || 2373 (aqvalid == 0 && sense_key == SSD_KEY_NO_SENSE)) { 2374 csio->resid = resid; 2375 QFRLS(ccb); 2376 return (0); 2377 } 2378 /* 2379 * Otherwise, we let the common code handle this. 2380 */ 2381 return (cam_periph_error(ccb, cflgs, sflgs, &softc->saved_ccb)); 2382 2383 /* 2384 * XXX: To Be Fixed 2385 * We cannot depend upon CAM honoring retry counts for these. 2386 */ 2387 case CAM_SCSI_BUS_RESET: 2388 case CAM_BDR_SENT: 2389 if (ccb->ccb_h.retry_count <= 0) { 2390 return (EIO); 2391 break; 2392 } 2393 /* FALLTHROUGH */ 2394 default: 2395 return (cam_periph_error(ccb, cflgs, sflgs, &softc->saved_ccb)); 2396 } 2397 2398 /* 2399 * Handle filemark, end of tape, mismatched record sizes.... 2400 * From this point out, we're only handling read/write cases. 2401 * Handle writes && reads differently. 2402 */ 2403 2404 if (csio->cdb_io.cdb_bytes[0] == SA_WRITE) { 2405 if (sense_key == SSD_KEY_VOLUME_OVERFLOW) { 2406 csio->resid = resid; 2407 error = ENOSPC; 2408 } else if (sense->flags & SSD_EOM) { 2409 softc->flags |= SA_FLAG_EOM_PENDING; 2410 /* 2411 * Grotesque as it seems, the few times 2412 * I've actually seen a non-zero resid, 2413 * the tape drive actually lied and had 2414 * writtent all the data!. 2415 */ 2416 csio->resid = 0; 2417 } 2418 } else { 2419 csio->resid = resid; 2420 if (sense_key == SSD_KEY_BLANK_CHECK) { 2421 if (softc->quirks & SA_QUIRK_1FM) { 2422 error = 0; 2423 softc->flags |= SA_FLAG_EOM_PENDING; 2424 } else { 2425 error = EIO; 2426 } 2427 } else if (sense->flags & SSD_FILEMARK) { 2428 if (softc->flags & SA_FLAG_FIXED) { 2429 error = -1; 2430 softc->flags |= SA_FLAG_EOF_PENDING; 2431 } 2432 /* 2433 * Unconditionally, if we detected a filemark on a read, 2434 * mark that we've run moved a file ahead. 2435 */ 2436 if (softc->fileno != (daddr_t) -1) { 2437 softc->fileno++; 2438 softc->blkno = 0; 2439 csio->ccb_h.ccb_pflags |= SA_POSITION_UPDATED; 2440 } 2441 } 2442 } 2443 2444 /* 2445 * Incorrect Length usually applies to read, but can apply to writes. 2446 */ 2447 if (error == 0 && (sense->flags & SSD_ILI)) { 2448 if (info < 0) { 2449 xpt_print_path(csio->ccb_h.path); 2450 printf(toobig, csio->dxfer_len - info); 2451 csio->resid = csio->dxfer_len; 2452 error = EIO; 2453 } else { 2454 csio->resid = resid; 2455 if (softc->flags & SA_FLAG_FIXED) { 2456 softc->flags |= SA_FLAG_EIO_PENDING; 2457 } 2458 /* 2459 * Bump the block number if we hadn't seen a filemark. 2460 * Do this independent of errors (we've moved anyway). 2461 */ 2462 if ((sense->flags & SSD_FILEMARK) == 0) { 2463 if (softc->blkno != (daddr_t) -1) { 2464 softc->blkno++; 2465 csio->ccb_h.ccb_pflags |= 2466 SA_POSITION_UPDATED; 2467 } 2468 } 2469 } 2470 } 2471 2472 if (error <= 0) { 2473 /* 2474 * Unfreeze the queue if frozen as we're not returning anything 2475 * to our waiters that would indicate an I/O error has occurred 2476 * (yet). 2477 */ 2478 QFRLS(ccb); 2479 error = 0; 2480 } 2481 return (error); 2482 } 2483 2484 static int 2485 sagetparams(struct cam_periph *periph, sa_params params_to_get, 2486 u_int32_t *blocksize, u_int8_t *density, u_int32_t *numblocks, 2487 int *buff_mode, u_int8_t *write_protect, u_int8_t *speed, 2488 int *comp_supported, int *comp_enabled, u_int32_t *comp_algorithm, 2489 sa_comp_t *tcs) 2490 { 2491 union ccb *ccb; 2492 void *mode_buffer; 2493 struct scsi_mode_header_6 *mode_hdr; 2494 struct scsi_mode_blk_desc *mode_blk; 2495 int mode_buffer_len; 2496 struct sa_softc *softc; 2497 u_int8_t cpage; 2498 int error; 2499 cam_status status; 2500 2501 softc = (struct sa_softc *)periph->softc; 2502 ccb = cam_periph_getccb(periph, 1); 2503 if (softc->quirks & SA_QUIRK_NO_CPAGE) 2504 cpage = SA_DEVICE_CONFIGURATION_PAGE; 2505 else 2506 cpage = SA_DATA_COMPRESSION_PAGE; 2507 2508 retry: 2509 mode_buffer_len = sizeof(*mode_hdr) + sizeof(*mode_blk); 2510 2511 if (params_to_get & SA_PARAM_COMPRESSION) { 2512 if (softc->quirks & SA_QUIRK_NOCOMP) { 2513 *comp_supported = FALSE; 2514 params_to_get &= ~SA_PARAM_COMPRESSION; 2515 } else 2516 mode_buffer_len += sizeof (sa_comp_t); 2517 } 2518 2519 mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK | M_ZERO); 2520 mode_hdr = (struct scsi_mode_header_6 *)mode_buffer; 2521 mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1]; 2522 2523 /* it is safe to retry this */ 2524 scsi_mode_sense(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE, 2525 SMS_PAGE_CTRL_CURRENT, (params_to_get & SA_PARAM_COMPRESSION) ? 2526 cpage : SMS_VENDOR_SPECIFIC_PAGE, mode_buffer, mode_buffer_len, 2527 SSD_FULL_SIZE, SCSIOP_TIMEOUT); 2528 2529 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 2530 &softc->device_stats); 2531 QFRLS(ccb); 2532 2533 status = ccb->ccb_h.status & CAM_STATUS_MASK; 2534 2535 if (error == EINVAL && (params_to_get & SA_PARAM_COMPRESSION) != 0) { 2536 /* 2537 * Hmm. Let's see if we can try another page... 2538 * If we've already done that, give up on compression 2539 * for this device and remember this for the future 2540 * and attempt the request without asking for compression 2541 * info. 2542 */ 2543 if (cpage == SA_DATA_COMPRESSION_PAGE) { 2544 cpage = SA_DEVICE_CONFIGURATION_PAGE; 2545 goto retry; 2546 } 2547 softc->quirks |= SA_QUIRK_NOCOMP; 2548 free(mode_buffer, M_TEMP); 2549 goto retry; 2550 } else if (status == CAM_SCSI_STATUS_ERROR) { 2551 /* Tell the user about the fatal error. */ 2552 scsi_sense_print(&ccb->csio); 2553 goto sagetparamsexit; 2554 } 2555 2556 /* 2557 * If the user only wants the compression information, and 2558 * the device doesn't send back the block descriptor, it's 2559 * no big deal. If the user wants more than just 2560 * compression, though, and the device doesn't pass back the 2561 * block descriptor, we need to send another mode sense to 2562 * get the block descriptor. 2563 */ 2564 if ((mode_hdr->blk_desc_len == 0) && 2565 (params_to_get & SA_PARAM_COMPRESSION) && 2566 (params_to_get & ~(SA_PARAM_COMPRESSION))) { 2567 2568 /* 2569 * Decrease the mode buffer length by the size of 2570 * the compression page, to make sure the data 2571 * there doesn't get overwritten. 2572 */ 2573 mode_buffer_len -= sizeof (sa_comp_t); 2574 2575 /* 2576 * Now move the compression page that we presumably 2577 * got back down the memory chunk a little bit so 2578 * it doesn't get spammed. 2579 */ 2580 bcopy(&mode_hdr[0], &mode_hdr[1], sizeof (sa_comp_t)); 2581 bzero(&mode_hdr[0], sizeof (mode_hdr[0])); 2582 2583 /* 2584 * Now, we issue another mode sense and just ask 2585 * for the block descriptor, etc. 2586 */ 2587 2588 scsi_mode_sense(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE, 2589 SMS_PAGE_CTRL_CURRENT, SMS_VENDOR_SPECIFIC_PAGE, 2590 mode_buffer, mode_buffer_len, SSD_FULL_SIZE, 2591 SCSIOP_TIMEOUT); 2592 2593 error = cam_periph_runccb(ccb, saerror, 0, SF_NO_PRINT, 2594 &softc->device_stats); 2595 QFRLS(ccb); 2596 2597 if (error != 0) 2598 goto sagetparamsexit; 2599 } 2600 2601 if (params_to_get & SA_PARAM_BLOCKSIZE) 2602 *blocksize = scsi_3btoul(mode_blk->blklen); 2603 2604 if (params_to_get & SA_PARAM_NUMBLOCKS) 2605 *numblocks = scsi_3btoul(mode_blk->nblocks); 2606 2607 if (params_to_get & SA_PARAM_BUFF_MODE) 2608 *buff_mode = mode_hdr->dev_spec & SMH_SA_BUF_MODE_MASK; 2609 2610 if (params_to_get & SA_PARAM_DENSITY) 2611 *density = mode_blk->density; 2612 2613 if (params_to_get & SA_PARAM_WP) 2614 *write_protect = (mode_hdr->dev_spec & SMH_SA_WP)? TRUE : FALSE; 2615 2616 if (params_to_get & SA_PARAM_SPEED) 2617 *speed = mode_hdr->dev_spec & SMH_SA_SPEED_MASK; 2618 2619 if (params_to_get & SA_PARAM_COMPRESSION) { 2620 sa_comp_t *ntcs = (sa_comp_t *) &mode_blk[1]; 2621 if (cpage == SA_DATA_COMPRESSION_PAGE) { 2622 struct scsi_data_compression_page *cp = &ntcs->dcomp; 2623 *comp_supported = 2624 (cp->dce_and_dcc & SA_DCP_DCC)? TRUE : FALSE; 2625 *comp_enabled = 2626 (cp->dce_and_dcc & SA_DCP_DCE)? TRUE : FALSE; 2627 *comp_algorithm = scsi_4btoul(cp->comp_algorithm); 2628 } else { 2629 struct scsi_dev_conf_page *cp = &ntcs->dconf; 2630 /* 2631 * We don't really know whether this device supports 2632 * Data Compression if the the algorithm field is 2633 * zero. Just say we do. 2634 */ 2635 *comp_supported = TRUE; 2636 *comp_enabled = 2637 (cp->sel_comp_alg != SA_COMP_NONE)? TRUE : FALSE; 2638 *comp_algorithm = cp->sel_comp_alg; 2639 } 2640 if (tcs != NULL) 2641 bcopy(ntcs, tcs, sizeof (sa_comp_t)); 2642 } 2643 2644 if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) { 2645 int idx; 2646 char *xyz = mode_buffer; 2647 xpt_print_path(periph->path); 2648 printf("Mode Sense Data="); 2649 for (idx = 0; idx < mode_buffer_len; idx++) 2650 printf(" 0x%02x", xyz[idx] & 0xff); 2651 printf("\n"); 2652 } 2653 2654 sagetparamsexit: 2655 2656 xpt_release_ccb(ccb); 2657 free(mode_buffer, M_TEMP); 2658 return (error); 2659 } 2660 2661 /* 2662 * The purpose of this function is to set one of four different parameters 2663 * for a tape drive: 2664 * - blocksize 2665 * - density 2666 * - compression / compression algorithm 2667 * - buffering mode 2668 * 2669 * The assumption is that this will be called from saioctl(), and therefore 2670 * from a process context. Thus the waiting malloc calls below. If that 2671 * assumption ever changes, the malloc calls should be changed to be 2672 * NOWAIT mallocs. 2673 * 2674 * Any or all of the four parameters may be set when this function is 2675 * called. It should handle setting more than one parameter at once. 2676 */ 2677 static int 2678 sasetparams(struct cam_periph *periph, sa_params params_to_set, 2679 u_int32_t blocksize, u_int8_t density, u_int32_t calg, 2680 u_int32_t sense_flags) 2681 { 2682 struct sa_softc *softc; 2683 u_int32_t current_blocksize; 2684 u_int32_t current_calg; 2685 u_int8_t current_density; 2686 u_int8_t current_speed; 2687 int comp_enabled, comp_supported; 2688 void *mode_buffer; 2689 int mode_buffer_len; 2690 struct scsi_mode_header_6 *mode_hdr; 2691 struct scsi_mode_blk_desc *mode_blk; 2692 sa_comp_t *ccomp, *cpage; 2693 int buff_mode; 2694 union ccb *ccb = NULL; 2695 int error; 2696 2697 softc = (struct sa_softc *)periph->softc; 2698 2699 ccomp = malloc(sizeof (sa_comp_t), M_TEMP, M_WAITOK); 2700 2701 /* 2702 * Since it doesn't make sense to set the number of blocks, or 2703 * write protection, we won't try to get the current value. We 2704 * always want to get the blocksize, so we can set it back to the 2705 * proper value. 2706 */ 2707 error = sagetparams(periph, 2708 params_to_set | SA_PARAM_BLOCKSIZE | SA_PARAM_SPEED, 2709 ¤t_blocksize, ¤t_density, NULL, &buff_mode, NULL, 2710 ¤t_speed, &comp_supported, &comp_enabled, 2711 ¤t_calg, ccomp); 2712 2713 if (error != 0) { 2714 free(ccomp, M_TEMP); 2715 return (error); 2716 } 2717 2718 mode_buffer_len = sizeof(*mode_hdr) + sizeof(*mode_blk); 2719 if (params_to_set & SA_PARAM_COMPRESSION) 2720 mode_buffer_len += sizeof (sa_comp_t); 2721 2722 mode_buffer = malloc(mode_buffer_len, M_TEMP, M_WAITOK | M_ZERO); 2723 2724 mode_hdr = (struct scsi_mode_header_6 *)mode_buffer; 2725 mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1]; 2726 2727 ccb = cam_periph_getccb(periph, 1); 2728 2729 retry: 2730 2731 if (params_to_set & SA_PARAM_COMPRESSION) { 2732 if (mode_blk) { 2733 cpage = (sa_comp_t *)&mode_blk[1]; 2734 } else { 2735 cpage = (sa_comp_t *)&mode_hdr[1]; 2736 } 2737 bcopy(ccomp, cpage, sizeof (sa_comp_t)); 2738 cpage->hdr.pagecode &= ~0x80; 2739 } else 2740 cpage = NULL; 2741 2742 /* 2743 * If the caller wants us to set the blocksize, use the one they 2744 * pass in. Otherwise, use the blocksize we got back from the 2745 * mode select above. 2746 */ 2747 if (mode_blk) { 2748 if (params_to_set & SA_PARAM_BLOCKSIZE) 2749 scsi_ulto3b(blocksize, mode_blk->blklen); 2750 else 2751 scsi_ulto3b(current_blocksize, mode_blk->blklen); 2752 2753 /* 2754 * Set density if requested, else preserve old density. 2755 * SCSI_SAME_DENSITY only applies to SCSI-2 or better 2756 * devices, else density we've latched up in our softc. 2757 */ 2758 if (params_to_set & SA_PARAM_DENSITY) { 2759 mode_blk->density = density; 2760 } else if (softc->scsi_rev > SCSI_REV_CCS) { 2761 mode_blk->density = SCSI_SAME_DENSITY; 2762 } else { 2763 mode_blk->density = softc->media_density; 2764 } 2765 } 2766 2767 /* 2768 * For mode selects, these two fields must be zero. 2769 */ 2770 mode_hdr->data_length = 0; 2771 mode_hdr->medium_type = 0; 2772 2773 /* set the speed to the current value */ 2774 mode_hdr->dev_spec = current_speed; 2775 2776 /* set single-initiator buffering mode */ 2777 mode_hdr->dev_spec |= SMH_SA_BUF_MODE_SIBUF; 2778 2779 if (mode_blk) 2780 mode_hdr->blk_desc_len = sizeof(struct scsi_mode_blk_desc); 2781 else 2782 mode_hdr->blk_desc_len = 0; 2783 2784 /* 2785 * First, if the user wants us to set the compression algorithm or 2786 * just turn compression on, check to make sure that this drive 2787 * supports compression. 2788 */ 2789 if (params_to_set & SA_PARAM_COMPRESSION) { 2790 /* 2791 * If the compression algorithm is 0, disable compression. 2792 * If the compression algorithm is non-zero, enable 2793 * compression and set the compression type to the 2794 * specified compression algorithm, unless the algorithm is 2795 * MT_COMP_ENABLE. In that case, we look at the 2796 * compression algorithm that is currently set and if it is 2797 * non-zero, we leave it as-is. If it is zero, and we have 2798 * saved a compression algorithm from a time when 2799 * compression was enabled before, set the compression to 2800 * the saved value. 2801 */ 2802 switch (ccomp->hdr.pagecode & ~0x80) { 2803 case SA_DATA_COMPRESSION_PAGE: 2804 if (ccomp->dcomp.dce_and_dcc & SA_DCP_DCC) { 2805 struct scsi_data_compression_page *dcp = &cpage->dcomp; 2806 if (calg == 0) { 2807 /* 2808 * Disable compression, but leave the 2809 * decompression and the capability bit 2810 * alone. 2811 */ 2812 dcp->dce_and_dcc = SA_DCP_DCC; 2813 dcp->dde_and_red |= SA_DCP_DDE; 2814 break; 2815 } 2816 /* enable compression && decompression */ 2817 dcp->dce_and_dcc = SA_DCP_DCE | SA_DCP_DCC; 2818 dcp->dde_and_red |= SA_DCP_DDE; 2819 /* 2820 * If there, use compression algorithm from caller. 2821 * Otherwise, if there's a saved compression algorithm 2822 * and there is no current algorithm, use the saved 2823 * algorithm. Else parrot back what we got and hope 2824 * for the best. 2825 */ 2826 if (calg != MT_COMP_ENABLE) { 2827 scsi_ulto4b(calg, dcp->comp_algorithm); 2828 scsi_ulto4b(calg, dcp->decomp_algorithm); 2829 } else if (scsi_4btoul(dcp->comp_algorithm) == 0 && 2830 softc->saved_comp_algorithm != 0) { 2831 scsi_ulto4b(softc->saved_comp_algorithm, 2832 dcp->comp_algorithm); 2833 scsi_ulto4b(softc->saved_comp_algorithm, 2834 dcp->decomp_algorithm); 2835 } 2836 break; 2837 } 2838 case SA_DEVICE_CONFIGURATION_PAGE: 2839 { 2840 struct scsi_dev_conf_page *dcp = &cpage->dconf; 2841 if (calg == 0) { 2842 dcp->sel_comp_alg = SA_COMP_NONE; 2843 break; 2844 } 2845 if (calg != MT_COMP_ENABLE) { 2846 dcp->sel_comp_alg = calg; 2847 } else if (dcp->sel_comp_alg == SA_COMP_NONE && 2848 softc->saved_comp_algorithm != 0) { 2849 dcp->sel_comp_alg = softc->saved_comp_algorithm; 2850 } 2851 break; 2852 } 2853 default: 2854 /* 2855 * The drive doesn't seem to support compression, 2856 * so turn off the set compression bit. 2857 */ 2858 params_to_set &= ~SA_PARAM_COMPRESSION; 2859 xpt_print_path(periph->path); 2860 printf("device does not seem to support compression\n"); 2861 2862 /* 2863 * If that was the only thing the user wanted us to set, 2864 * clean up allocated resources and return with 2865 * 'operation not supported'. 2866 */ 2867 if (params_to_set == SA_PARAM_NONE) { 2868 free(mode_buffer, M_TEMP); 2869 xpt_release_ccb(ccb); 2870 return (ENODEV); 2871 } 2872 2873 /* 2874 * That wasn't the only thing the user wanted us to set. 2875 * So, decrease the stated mode buffer length by the 2876 * size of the compression mode page. 2877 */ 2878 mode_buffer_len -= sizeof(sa_comp_t); 2879 } 2880 } 2881 2882 /* It is safe to retry this operation */ 2883 scsi_mode_select(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, 2884 (params_to_set & SA_PARAM_COMPRESSION)? TRUE : FALSE, 2885 FALSE, mode_buffer, mode_buffer_len, SSD_FULL_SIZE, SCSIOP_TIMEOUT); 2886 2887 error = cam_periph_runccb(ccb, saerror, 0, 2888 sense_flags, &softc->device_stats); 2889 QFRLS(ccb); 2890 2891 if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) { 2892 int idx; 2893 char *xyz = mode_buffer; 2894 xpt_print_path(periph->path); 2895 printf("Err%d, Mode Select Data=", error); 2896 for (idx = 0; idx < mode_buffer_len; idx++) 2897 printf(" 0x%02x", xyz[idx] & 0xff); 2898 printf("\n"); 2899 } 2900 2901 2902 if (error) { 2903 /* 2904 * If we can, try without setting density/blocksize. 2905 */ 2906 if (mode_blk) { 2907 if ((params_to_set & 2908 (SA_PARAM_DENSITY|SA_PARAM_BLOCKSIZE)) == 0) { 2909 mode_blk = NULL; 2910 goto retry; 2911 } 2912 } else { 2913 mode_blk = (struct scsi_mode_blk_desc *)&mode_hdr[1]; 2914 cpage = (sa_comp_t *)&mode_blk[1]; 2915 } 2916 2917 /* 2918 * If we were setting the blocksize, and that failed, we 2919 * want to set it to its original value. If we weren't 2920 * setting the blocksize, we don't want to change it. 2921 */ 2922 scsi_ulto3b(current_blocksize, mode_blk->blklen); 2923 2924 /* 2925 * Set density if requested, else preserve old density. 2926 * SCSI_SAME_DENSITY only applies to SCSI-2 or better 2927 * devices, else density we've latched up in our softc. 2928 */ 2929 if (params_to_set & SA_PARAM_DENSITY) { 2930 mode_blk->density = current_density; 2931 } else if (softc->scsi_rev > SCSI_REV_CCS) { 2932 mode_blk->density = SCSI_SAME_DENSITY; 2933 } else { 2934 mode_blk->density = softc->media_density; 2935 } 2936 2937 if (params_to_set & SA_PARAM_COMPRESSION) 2938 bcopy(ccomp, cpage, sizeof (sa_comp_t)); 2939 2940 /* 2941 * The retry count is the only CCB field that might have been 2942 * changed that we care about, so reset it back to 1. 2943 */ 2944 ccb->ccb_h.retry_count = 1; 2945 cam_periph_runccb(ccb, saerror, 0, sense_flags, 2946 &softc->device_stats); 2947 QFRLS(ccb); 2948 } 2949 2950 xpt_release_ccb(ccb); 2951 2952 if (ccomp != NULL) 2953 free(ccomp, M_TEMP); 2954 2955 if (params_to_set & SA_PARAM_COMPRESSION) { 2956 if (error) { 2957 softc->flags &= ~SA_FLAG_COMP_ENABLED; 2958 /* 2959 * Even if we get an error setting compression, 2960 * do not say that we don't support it. We could 2961 * have been wrong, or it may be media specific. 2962 * softc->flags &= ~SA_FLAG_COMP_SUPP; 2963 */ 2964 softc->saved_comp_algorithm = softc->comp_algorithm; 2965 softc->comp_algorithm = 0; 2966 } else { 2967 softc->flags |= SA_FLAG_COMP_ENABLED; 2968 softc->comp_algorithm = calg; 2969 } 2970 } 2971 2972 free(mode_buffer, M_TEMP); 2973 return (error); 2974 } 2975 2976 static void 2977 saprevent(struct cam_periph *periph, int action) 2978 { 2979 struct sa_softc *softc; 2980 union ccb *ccb; 2981 int error, sf; 2982 2983 softc = (struct sa_softc *)periph->softc; 2984 2985 if ((action == PR_ALLOW) && (softc->flags & SA_FLAG_TAPE_LOCKED) == 0) 2986 return; 2987 if ((action == PR_PREVENT) && (softc->flags & SA_FLAG_TAPE_LOCKED) != 0) 2988 return; 2989 2990 /* 2991 * We can be quiet about illegal requests. 2992 */ 2993 if (CAM_DEBUGGED(periph->path, CAM_DEBUG_INFO)) { 2994 sf = 0; 2995 } else 2996 sf = SF_QUIET_IR; 2997 2998 ccb = cam_periph_getccb(periph, 1); 2999 3000 /* It is safe to retry this operation */ 3001 scsi_prevent(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, action, 3002 SSD_FULL_SIZE, SCSIOP_TIMEOUT); 3003 3004 error = cam_periph_runccb(ccb, saerror, 0, sf, &softc->device_stats); 3005 QFRLS(ccb); 3006 if (error == 0) { 3007 if (action == PR_ALLOW) 3008 softc->flags &= ~SA_FLAG_TAPE_LOCKED; 3009 else 3010 softc->flags |= SA_FLAG_TAPE_LOCKED; 3011 } 3012 3013 xpt_release_ccb(ccb); 3014 } 3015 3016 static int 3017 sarewind(struct cam_periph *periph) 3018 { 3019 union ccb *ccb; 3020 struct sa_softc *softc; 3021 int error; 3022 3023 softc = (struct sa_softc *)periph->softc; 3024 3025 ccb = cam_periph_getccb(periph, 1); 3026 3027 /* It is safe to retry this operation */ 3028 scsi_rewind(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, FALSE, 3029 SSD_FULL_SIZE, REWIND_TIMEOUT); 3030 3031 softc->dsreg = MTIO_DSREG_REW; 3032 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3033 softc->dsreg = MTIO_DSREG_REST; 3034 3035 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3036 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE); 3037 3038 xpt_release_ccb(ccb); 3039 if (error == 0) 3040 softc->fileno = softc->blkno = (daddr_t) 0; 3041 else 3042 softc->fileno = softc->blkno = (daddr_t) -1; 3043 return (error); 3044 } 3045 3046 static int 3047 saspace(struct cam_periph *periph, int count, scsi_space_code code) 3048 { 3049 union ccb *ccb; 3050 struct sa_softc *softc; 3051 int error; 3052 3053 softc = (struct sa_softc *)periph->softc; 3054 3055 ccb = cam_periph_getccb(periph, 1); 3056 3057 /* This cannot be retried */ 3058 3059 scsi_space(&ccb->csio, 0, sadone, MSG_SIMPLE_Q_TAG, code, count, 3060 SSD_FULL_SIZE, SPACE_TIMEOUT); 3061 3062 /* 3063 * Clear residual because we will be using it. 3064 */ 3065 softc->last_ctl_resid = 0; 3066 3067 softc->dsreg = (count < 0)? MTIO_DSREG_REV : MTIO_DSREG_FWD; 3068 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3069 softc->dsreg = MTIO_DSREG_REST; 3070 3071 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3072 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE); 3073 3074 xpt_release_ccb(ccb); 3075 3076 /* 3077 * If a spacing operation has failed, we need to invalidate 3078 * this mount. 3079 * 3080 * If the spacing operation was setmarks or to end of recorded data, 3081 * we no longer know our relative position. 3082 * 3083 * If the spacing operations was spacing files in reverse, we 3084 * take account of the residual, but still check against less 3085 * than zero- if we've gone negative, we must have hit BOT. 3086 * 3087 * If the spacing operations was spacing records in reverse and 3088 * we have a residual, we've either hit BOT or hit a filemark. 3089 * In the former case, we know our new record number (0). In 3090 * the latter case, we have absolutely no idea what the real 3091 * record number is- we've stopped between the end of the last 3092 * record in the previous file and the filemark that stopped 3093 * our spacing backwards. 3094 */ 3095 if (error) { 3096 softc->fileno = softc->blkno = (daddr_t) -1; 3097 } else if (code == SS_SETMARKS || code == SS_EOD) { 3098 softc->fileno = softc->blkno = (daddr_t) -1; 3099 } else if (code == SS_FILEMARKS && softc->fileno != (daddr_t) -1) { 3100 softc->fileno += (count - softc->last_ctl_resid); 3101 if (softc->fileno < 0) /* we must of hit BOT */ 3102 softc->fileno = 0; 3103 softc->blkno = 0; 3104 } else if (code == SS_BLOCKS && softc->blkno != (daddr_t) -1) { 3105 softc->blkno += (count - softc->last_ctl_resid); 3106 if (count < 0) { 3107 if (softc->last_ctl_resid || softc->blkno < 0) { 3108 if (softc->fileno == 0) { 3109 softc->blkno = 0; 3110 } else { 3111 softc->blkno = (daddr_t) -1; 3112 } 3113 } 3114 } 3115 } 3116 return (error); 3117 } 3118 3119 static int 3120 sawritefilemarks(struct cam_periph *periph, int nmarks, int setmarks) 3121 { 3122 union ccb *ccb; 3123 struct sa_softc *softc; 3124 int error, nwm = 0; 3125 3126 softc = (struct sa_softc *)periph->softc; 3127 3128 ccb = cam_periph_getccb(periph, 1); 3129 /* 3130 * Clear residual because we will be using it. 3131 */ 3132 softc->last_ctl_resid = 0; 3133 3134 softc->dsreg = MTIO_DSREG_FMK; 3135 /* this *must* not be retried */ 3136 scsi_write_filemarks(&ccb->csio, 0, sadone, MSG_SIMPLE_Q_TAG, 3137 FALSE, setmarks, nmarks, SSD_FULL_SIZE, IO_TIMEOUT); 3138 softc->dsreg = MTIO_DSREG_REST; 3139 3140 3141 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3142 3143 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3144 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE); 3145 3146 if (error == 0 && nmarks) { 3147 struct sa_softc *softc = (struct sa_softc *)periph->softc; 3148 nwm = nmarks - softc->last_ctl_resid; 3149 softc->filemarks += nwm; 3150 } 3151 3152 xpt_release_ccb(ccb); 3153 3154 /* 3155 * Update relative positions (if we're doing that). 3156 */ 3157 if (error) { 3158 softc->fileno = softc->blkno = (daddr_t) -1; 3159 } else if (softc->fileno != (daddr_t) -1) { 3160 softc->fileno += nwm; 3161 softc->blkno = 0; 3162 } 3163 return (error); 3164 } 3165 3166 static int 3167 sardpos(struct cam_periph *periph, int hard, u_int32_t *blkptr) 3168 { 3169 struct scsi_tape_position_data loc; 3170 union ccb *ccb; 3171 struct sa_softc *softc = (struct sa_softc *)periph->softc; 3172 int error; 3173 3174 /* 3175 * We try and flush any buffered writes here if we were writing 3176 * and we're trying to get hardware block position. It eats 3177 * up performance substantially, but I'm wary of drive firmware. 3178 * 3179 * I think that *logical* block position is probably okay- 3180 * but hardware block position might have to wait for data 3181 * to hit media to be valid. Caveat Emptor. 3182 */ 3183 3184 if (hard && (softc->flags & SA_FLAG_TAPE_WRITTEN)) { 3185 error = sawritefilemarks(periph, 0, 0); 3186 if (error && error != EACCES) 3187 return (error); 3188 } 3189 3190 ccb = cam_periph_getccb(periph, 1); 3191 scsi_read_position(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG, 3192 hard, &loc, SSD_FULL_SIZE, SCSIOP_TIMEOUT); 3193 softc->dsreg = MTIO_DSREG_RBSY; 3194 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3195 softc->dsreg = MTIO_DSREG_REST; 3196 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3197 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0); 3198 3199 if (error == 0) { 3200 if (loc.flags & SA_RPOS_UNCERTAIN) { 3201 error = EINVAL; /* nothing is certain */ 3202 } else { 3203 *blkptr = scsi_4btoul(loc.firstblk); 3204 } 3205 } 3206 3207 xpt_release_ccb(ccb); 3208 return (error); 3209 } 3210 3211 static int 3212 sasetpos(struct cam_periph *periph, int hard, u_int32_t *blkptr) 3213 { 3214 union ccb *ccb; 3215 struct sa_softc *softc; 3216 int error; 3217 3218 /* 3219 * We used to try and flush any buffered writes here. 3220 * Now we push this onto user applications to either 3221 * flush the pending writes themselves (via a zero count 3222 * WRITE FILEMARKS command) or they can trust their tape 3223 * drive to do this correctly for them. 3224 */ 3225 3226 softc = (struct sa_softc *)periph->softc; 3227 ccb = cam_periph_getccb(periph, 1); 3228 3229 3230 scsi_set_position(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG, 3231 hard, *blkptr, SSD_FULL_SIZE, SPACE_TIMEOUT); 3232 3233 3234 softc->dsreg = MTIO_DSREG_POS; 3235 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3236 softc->dsreg = MTIO_DSREG_REST; 3237 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3238 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, 0); 3239 xpt_release_ccb(ccb); 3240 /* 3241 * Note relative file && block number position as now unknown. 3242 */ 3243 softc->fileno = softc->blkno = (daddr_t) -1; 3244 return (error); 3245 } 3246 3247 static int 3248 saretension(struct cam_periph *periph) 3249 { 3250 union ccb *ccb; 3251 struct sa_softc *softc; 3252 int error; 3253 3254 softc = (struct sa_softc *)periph->softc; 3255 3256 ccb = cam_periph_getccb(periph, 1); 3257 3258 /* It is safe to retry this operation */ 3259 scsi_load_unload(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE, 3260 FALSE, TRUE, TRUE, SSD_FULL_SIZE, ERASE_TIMEOUT); 3261 3262 softc->dsreg = MTIO_DSREG_TEN; 3263 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3264 softc->dsreg = MTIO_DSREG_REST; 3265 3266 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3267 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE); 3268 xpt_release_ccb(ccb); 3269 if (error == 0) 3270 softc->fileno = softc->blkno = (daddr_t) 0; 3271 else 3272 softc->fileno = softc->blkno = (daddr_t) -1; 3273 return (error); 3274 } 3275 3276 static int 3277 sareservereleaseunit(struct cam_periph *periph, int reserve) 3278 { 3279 union ccb *ccb; 3280 struct sa_softc *softc; 3281 int error; 3282 3283 softc = (struct sa_softc *)periph->softc; 3284 ccb = cam_periph_getccb(periph, 1); 3285 3286 /* It is safe to retry this operation */ 3287 scsi_reserve_release_unit(&ccb->csio, 2, sadone, MSG_SIMPLE_Q_TAG, 3288 FALSE, 0, SSD_FULL_SIZE, SCSIOP_TIMEOUT, reserve); 3289 softc->dsreg = MTIO_DSREG_RBSY; 3290 error = cam_periph_runccb(ccb, saerror, 0, 3291 SF_RETRY_UA | SF_NO_PRINT, &softc->device_stats); 3292 softc->dsreg = MTIO_DSREG_REST; 3293 QFRLS(ccb); 3294 xpt_release_ccb(ccb); 3295 3296 /* 3297 * If the error was Illegal Request, then the device doesn't support 3298 * RESERVE/RELEASE. This is not an error. 3299 */ 3300 if (error == EINVAL) { 3301 error = 0; 3302 } 3303 3304 return (error); 3305 } 3306 3307 static int 3308 saloadunload(struct cam_periph *periph, int load) 3309 { 3310 union ccb *ccb; 3311 struct sa_softc *softc; 3312 int error; 3313 3314 softc = (struct sa_softc *)periph->softc; 3315 3316 ccb = cam_periph_getccb(periph, 1); 3317 3318 /* It is safe to retry this operation */ 3319 scsi_load_unload(&ccb->csio, 5, sadone, MSG_SIMPLE_Q_TAG, FALSE, 3320 FALSE, FALSE, load, SSD_FULL_SIZE, REWIND_TIMEOUT); 3321 3322 softc->dsreg = (load)? MTIO_DSREG_LD : MTIO_DSREG_UNL; 3323 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3324 softc->dsreg = MTIO_DSREG_REST; 3325 QFRLS(ccb); 3326 xpt_release_ccb(ccb); 3327 3328 if (error || load == 0) 3329 softc->fileno = softc->blkno = (daddr_t) -1; 3330 else if (error == 0) 3331 softc->fileno = softc->blkno = (daddr_t) 0; 3332 return (error); 3333 } 3334 3335 static int 3336 saerase(struct cam_periph *periph, int longerase) 3337 { 3338 3339 union ccb *ccb; 3340 struct sa_softc *softc; 3341 int error; 3342 3343 softc = (struct sa_softc *)periph->softc; 3344 3345 ccb = cam_periph_getccb(periph, 1); 3346 3347 scsi_erase(&ccb->csio, 1, sadone, MSG_SIMPLE_Q_TAG, FALSE, longerase, 3348 SSD_FULL_SIZE, ERASE_TIMEOUT); 3349 3350 softc->dsreg = MTIO_DSREG_ZER; 3351 error = cam_periph_runccb(ccb, saerror, 0, 0, &softc->device_stats); 3352 softc->dsreg = MTIO_DSREG_REST; 3353 3354 if ((ccb->ccb_h.status & CAM_DEV_QFRZN) != 0) 3355 cam_release_devq(ccb->ccb_h.path, 0, 0, 0, FALSE); 3356 xpt_release_ccb(ccb); 3357 return (error); 3358 } 3359 3360 #endif /* _KERNEL */ 3361 3362 /* 3363 * Read tape block limits command. 3364 */ 3365 void 3366 scsi_read_block_limits(struct ccb_scsiio *csio, u_int32_t retries, 3367 void (*cbfcnp)(struct cam_periph *, union ccb *), 3368 u_int8_t tag_action, 3369 struct scsi_read_block_limits_data *rlimit_buf, 3370 u_int8_t sense_len, u_int32_t timeout) 3371 { 3372 struct scsi_read_block_limits *scsi_cmd; 3373 3374 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_IN, tag_action, 3375 (u_int8_t *)rlimit_buf, sizeof(*rlimit_buf), sense_len, 3376 sizeof(*scsi_cmd), timeout); 3377 3378 scsi_cmd = (struct scsi_read_block_limits *)&csio->cdb_io.cdb_bytes; 3379 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3380 scsi_cmd->opcode = READ_BLOCK_LIMITS; 3381 } 3382 3383 void 3384 scsi_sa_read_write(struct ccb_scsiio *csio, u_int32_t retries, 3385 void (*cbfcnp)(struct cam_periph *, union ccb *), 3386 u_int8_t tag_action, int readop, int sli, 3387 int fixed, u_int32_t length, u_int8_t *data_ptr, 3388 u_int32_t dxfer_len, u_int8_t sense_len, u_int32_t timeout) 3389 { 3390 struct scsi_sa_rw *scsi_cmd; 3391 3392 scsi_cmd = (struct scsi_sa_rw *)&csio->cdb_io.cdb_bytes; 3393 scsi_cmd->opcode = readop ? SA_READ : SA_WRITE; 3394 scsi_cmd->sli_fixed = 0; 3395 if (sli && readop) 3396 scsi_cmd->sli_fixed |= SAR_SLI; 3397 if (fixed) 3398 scsi_cmd->sli_fixed |= SARW_FIXED; 3399 scsi_ulto3b(length, scsi_cmd->length); 3400 scsi_cmd->control = 0; 3401 3402 cam_fill_csio(csio, retries, cbfcnp, readop ? CAM_DIR_IN : CAM_DIR_OUT, 3403 tag_action, data_ptr, dxfer_len, sense_len, 3404 sizeof(*scsi_cmd), timeout); 3405 } 3406 3407 void 3408 scsi_load_unload(struct ccb_scsiio *csio, u_int32_t retries, 3409 void (*cbfcnp)(struct cam_periph *, union ccb *), 3410 u_int8_t tag_action, int immediate, int eot, 3411 int reten, int load, u_int8_t sense_len, 3412 u_int32_t timeout) 3413 { 3414 struct scsi_load_unload *scsi_cmd; 3415 3416 scsi_cmd = (struct scsi_load_unload *)&csio->cdb_io.cdb_bytes; 3417 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3418 scsi_cmd->opcode = LOAD_UNLOAD; 3419 if (immediate) 3420 scsi_cmd->immediate = SLU_IMMED; 3421 if (eot) 3422 scsi_cmd->eot_reten_load |= SLU_EOT; 3423 if (reten) 3424 scsi_cmd->eot_reten_load |= SLU_RETEN; 3425 if (load) 3426 scsi_cmd->eot_reten_load |= SLU_LOAD; 3427 3428 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, 3429 NULL, 0, sense_len, sizeof(*scsi_cmd), timeout); 3430 } 3431 3432 void 3433 scsi_rewind(struct ccb_scsiio *csio, u_int32_t retries, 3434 void (*cbfcnp)(struct cam_periph *, union ccb *), 3435 u_int8_t tag_action, int immediate, u_int8_t sense_len, 3436 u_int32_t timeout) 3437 { 3438 struct scsi_rewind *scsi_cmd; 3439 3440 scsi_cmd = (struct scsi_rewind *)&csio->cdb_io.cdb_bytes; 3441 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3442 scsi_cmd->opcode = REWIND; 3443 if (immediate) 3444 scsi_cmd->immediate = SREW_IMMED; 3445 3446 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL, 3447 0, sense_len, sizeof(*scsi_cmd), timeout); 3448 } 3449 3450 void 3451 scsi_space(struct ccb_scsiio *csio, u_int32_t retries, 3452 void (*cbfcnp)(struct cam_periph *, union ccb *), 3453 u_int8_t tag_action, scsi_space_code code, 3454 u_int32_t count, u_int8_t sense_len, u_int32_t timeout) 3455 { 3456 struct scsi_space *scsi_cmd; 3457 3458 scsi_cmd = (struct scsi_space *)&csio->cdb_io.cdb_bytes; 3459 scsi_cmd->opcode = SPACE; 3460 scsi_cmd->code = code; 3461 scsi_ulto3b(count, scsi_cmd->count); 3462 scsi_cmd->control = 0; 3463 3464 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL, 3465 0, sense_len, sizeof(*scsi_cmd), timeout); 3466 } 3467 3468 void 3469 scsi_write_filemarks(struct ccb_scsiio *csio, u_int32_t retries, 3470 void (*cbfcnp)(struct cam_periph *, union ccb *), 3471 u_int8_t tag_action, int immediate, int setmark, 3472 u_int32_t num_marks, u_int8_t sense_len, 3473 u_int32_t timeout) 3474 { 3475 struct scsi_write_filemarks *scsi_cmd; 3476 3477 scsi_cmd = (struct scsi_write_filemarks *)&csio->cdb_io.cdb_bytes; 3478 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3479 scsi_cmd->opcode = WRITE_FILEMARKS; 3480 if (immediate) 3481 scsi_cmd->byte2 |= SWFMRK_IMMED; 3482 if (setmark) 3483 scsi_cmd->byte2 |= SWFMRK_WSMK; 3484 3485 scsi_ulto3b(num_marks, scsi_cmd->num_marks); 3486 3487 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL, 3488 0, sense_len, sizeof(*scsi_cmd), timeout); 3489 } 3490 3491 /* 3492 * The reserve and release unit commands differ only by their opcodes. 3493 */ 3494 void 3495 scsi_reserve_release_unit(struct ccb_scsiio *csio, u_int32_t retries, 3496 void (*cbfcnp)(struct cam_periph *, union ccb *), 3497 u_int8_t tag_action, int third_party, 3498 int third_party_id, u_int8_t sense_len, 3499 u_int32_t timeout, int reserve) 3500 { 3501 struct scsi_reserve_release_unit *scsi_cmd; 3502 3503 scsi_cmd = (struct scsi_reserve_release_unit *)&csio->cdb_io.cdb_bytes; 3504 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3505 3506 if (reserve) 3507 scsi_cmd->opcode = RESERVE_UNIT; 3508 else 3509 scsi_cmd->opcode = RELEASE_UNIT; 3510 3511 if (third_party) { 3512 scsi_cmd->lun_thirdparty |= SRRU_3RD_PARTY; 3513 scsi_cmd->lun_thirdparty |= 3514 ((third_party_id << SRRU_3RD_SHAMT) & SRRU_3RD_MASK); 3515 } 3516 3517 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL, 3518 0, sense_len, sizeof(*scsi_cmd), timeout); 3519 } 3520 3521 void 3522 scsi_erase(struct ccb_scsiio *csio, u_int32_t retries, 3523 void (*cbfcnp)(struct cam_periph *, union ccb *), 3524 u_int8_t tag_action, int immediate, int long_erase, 3525 u_int8_t sense_len, u_int32_t timeout) 3526 { 3527 struct scsi_erase *scsi_cmd; 3528 3529 scsi_cmd = (struct scsi_erase *)&csio->cdb_io.cdb_bytes; 3530 bzero(scsi_cmd, sizeof(*scsi_cmd)); 3531 3532 scsi_cmd->opcode = ERASE; 3533 3534 if (immediate) 3535 scsi_cmd->lun_imm_long |= SE_IMMED; 3536 3537 if (long_erase) 3538 scsi_cmd->lun_imm_long |= SE_LONG; 3539 3540 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, NULL, 3541 0, sense_len, sizeof(*scsi_cmd), timeout); 3542 } 3543 3544 /* 3545 * Read Tape Position command. 3546 */ 3547 void 3548 scsi_read_position(struct ccb_scsiio *csio, u_int32_t retries, 3549 void (*cbfcnp)(struct cam_periph *, union ccb *), 3550 u_int8_t tag_action, int hardsoft, 3551 struct scsi_tape_position_data *sbp, 3552 u_int8_t sense_len, u_int32_t timeout) 3553 { 3554 struct scsi_tape_read_position *scmd; 3555 3556 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_IN, tag_action, 3557 (u_int8_t *)sbp, sizeof (*sbp), sense_len, sizeof(*scmd), timeout); 3558 scmd = (struct scsi_tape_read_position *)&csio->cdb_io.cdb_bytes; 3559 bzero(scmd, sizeof(*scmd)); 3560 scmd->opcode = READ_POSITION; 3561 scmd->byte1 = hardsoft; 3562 } 3563 3564 /* 3565 * Set Tape Position command. 3566 */ 3567 void 3568 scsi_set_position(struct ccb_scsiio *csio, u_int32_t retries, 3569 void (*cbfcnp)(struct cam_periph *, union ccb *), 3570 u_int8_t tag_action, int hardsoft, u_int32_t blkno, 3571 u_int8_t sense_len, u_int32_t timeout) 3572 { 3573 struct scsi_tape_locate *scmd; 3574 3575 cam_fill_csio(csio, retries, cbfcnp, CAM_DIR_NONE, tag_action, 3576 (u_int8_t *)NULL, 0, sense_len, sizeof(*scmd), timeout); 3577 scmd = (struct scsi_tape_locate *)&csio->cdb_io.cdb_bytes; 3578 bzero(scmd, sizeof(*scmd)); 3579 scmd->opcode = LOCATE; 3580 if (hardsoft) 3581 scmd->byte1 |= SA_SPOS_BT; 3582 scsi_ulto4b(blkno, scmd->blkaddr); 3583 } 3584