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