1993-03-21 21:04:42 +03:00
|
|
|
/*
|
|
|
|
* Written by Julian Elischer (julian@tfs.com)
|
|
|
|
* for TRW Financial Systems for use under the MACH(2.5) operating system.
|
1993-05-04 12:27:29 +04:00
|
|
|
* Hacked by Theo de Raadt <deraadt@fsa.ca>
|
1993-03-21 21:04:42 +03:00
|
|
|
*
|
|
|
|
* TRW Financial Systems, in accordance with their agreement with Carnegie
|
|
|
|
* Mellon University, makes this software available to CMU to distribute
|
|
|
|
* or use in any manner that they see fit as long as this message is kept with
|
|
|
|
* the software. For this reason TFS also grants any other persons or
|
|
|
|
* organisations permission to use or modify this software.
|
|
|
|
*
|
|
|
|
* TFS supplies this software to be publicly redistributed
|
|
|
|
* on the understanding that TFS is not responsible for the correct
|
|
|
|
* functioning of this software in any circumstances.
|
1993-05-20 07:46:09 +04:00
|
|
|
*
|
1994-01-11 20:19:37 +03:00
|
|
|
* $Id: st.c,v 1.18 1994/01/11 17:22:06 mycroft Exp $
|
1993-03-21 21:04:42 +03:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* To do:
|
|
|
|
* work out some better way of guessing what a good timeout is going
|
|
|
|
* to be depending on whether we expect to retension or not.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
#include "st.h"
|
|
|
|
|
1993-12-17 10:56:32 +03:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/errno.h>
|
|
|
|
#include <sys/malloc.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/proc.h>
|
|
|
|
#include <sys/user.h>
|
|
|
|
#include <sys/mtio.h>
|
|
|
|
#include <sys/dkbad.h>
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
|
|
|
|
#include <scsi/scsi_all.h>
|
|
|
|
#include <scsi/scsi_tape.h>
|
|
|
|
#include <scsi/scsiconf.h>
|
|
|
|
#include <scsi/stdefs.h>
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
long int ststrats, stqueues;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#define ST_RETRIES 4
|
|
|
|
|
1993-06-16 08:31:37 +04:00
|
|
|
#define UNITSHIFT 4
|
1993-04-12 12:19:28 +04:00
|
|
|
#define MODE(z) ((minor(z) & 0x03))
|
|
|
|
#define DSTY(z) (((minor(z) >> 2) & 0x03))
|
1993-06-16 14:39:35 +04:00
|
|
|
#define UNIT(z) ((minor(z) >> UNITSHIFT))
|
1993-06-16 07:39:30 +04:00
|
|
|
|
|
|
|
#undef NST
|
1993-06-16 08:31:37 +04:00
|
|
|
#define NST ( makedev(1,0) >> UNITSHIFT)
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
#define DSTY_QIC120 3
|
|
|
|
#define DSTY_QIC150 2
|
|
|
|
#define DSTY_QIC525 1
|
|
|
|
|
|
|
|
#define QIC120 0x0f
|
|
|
|
#define QIC150 0x10
|
|
|
|
#define QIC525 0x11
|
|
|
|
|
|
|
|
#define ESUCCESS 0
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
int st_debug = 0;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st_data[NST];
|
|
|
|
static int next_st_unit = 0;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The routine called by the low level scsi routine when it discovers
|
|
|
|
* A device suitable for this driver
|
|
|
|
*/
|
|
|
|
int
|
1993-05-04 12:27:29 +04:00
|
|
|
stattach(int masunit, struct scsi_switch *sw, int physid, int *unit)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
struct st_data *st;
|
1993-04-12 12:19:28 +04:00
|
|
|
unsigned char *tbl;
|
|
|
|
int targ, lun, i;
|
|
|
|
|
|
|
|
targ = physid >> 3;
|
|
|
|
lun = physid & 7;
|
|
|
|
|
|
|
|
/*printf("stattach: st%d at %s%d target %d lun %d\n",
|
1993-05-04 12:27:29 +04:00
|
|
|
*unit, sw->name, masunit, targ, lun);*/
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1993-05-04 12:27:29 +04:00
|
|
|
if(*unit==-1) {
|
|
|
|
for(i=0; i<NST && *unit==-1; i++)
|
1993-07-19 15:30:49 +04:00
|
|
|
if(st_data[i]==NULL)
|
1993-05-04 12:27:29 +04:00
|
|
|
*unit = i;
|
|
|
|
}
|
|
|
|
if(*unit >= NST || *unit==-1)
|
|
|
|
return 0;
|
|
|
|
if(st_data[*unit])
|
|
|
|
return 0;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1993-05-04 12:27:29 +04:00
|
|
|
st = st_data[*unit] = (struct st_data *)malloc(sizeof *st,
|
1993-04-12 12:19:28 +04:00
|
|
|
M_TEMP, M_NOWAIT);
|
|
|
|
bzero(st, sizeof *st);
|
|
|
|
|
|
|
|
st->sc_sw = sw;
|
|
|
|
st->ctlr = masunit;
|
|
|
|
st->targ = targ;
|
|
|
|
st->lu = lun;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Use the subdriver to request information regarding
|
|
|
|
* the drive. We cannot use interrupts yet, so the
|
|
|
|
* request must specify this.
|
|
|
|
*/
|
1993-05-04 12:27:29 +04:00
|
|
|
if( st_mode_sense(*unit, SCSI_NOSLEEP | SCSI_NOMASK | SCSI_SILENT))
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d at %s%d targ %d lun %d: %d blocks of %d bytes\n",
|
1993-05-04 12:27:29 +04:00
|
|
|
*unit, sw->name, masunit, targ, lun,
|
1993-04-12 12:19:28 +04:00
|
|
|
st->numblks, st->blksiz);
|
1993-03-21 21:04:42 +03:00
|
|
|
else
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d at %s%d targ %d lun %d: offline\n",
|
1993-05-04 12:27:29 +04:00
|
|
|
*unit, sw->name, masunit, targ, lun);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up the bufs for this device
|
|
|
|
*/
|
|
|
|
st->buf_queue.b_active = 0;
|
|
|
|
st->buf_queue.b_actf = 0;
|
|
|
|
st->buf_queue.b_actl = 0;
|
|
|
|
st->initialized = 1;
|
1993-05-04 12:27:29 +04:00
|
|
|
return 1;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* open the device.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
stopen(dev_t dev)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
|
|
|
int errcode = 0;
|
1993-04-12 12:19:28 +04:00
|
|
|
int unit, mode, dsty;
|
|
|
|
int dsty_code;
|
1993-03-21 21:04:42 +03:00
|
|
|
struct st_data *st;
|
|
|
|
unit = UNIT(dev);
|
|
|
|
mode = MODE(dev);
|
|
|
|
dsty = DSTY(dev);
|
1993-04-12 12:19:28 +04:00
|
|
|
st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Check the unit is legal
|
|
|
|
*/
|
1993-04-12 16:10:28 +04:00
|
|
|
if( unit >= NST )
|
|
|
|
return ENXIO;
|
|
|
|
if(!st)
|
|
|
|
return ENXIO;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Only allow one at a time
|
|
|
|
*/
|
|
|
|
if(st->flags & ST_OPEN) {
|
1993-04-22 04:35:02 +04:00
|
|
|
errcode = EBUSY;
|
1993-03-21 21:04:42 +03:00
|
|
|
goto bad;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Set up the mode flags according to the minor number
|
|
|
|
* ensure all open flags are in a known state
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags &= ~ST_PER_OPEN;
|
1993-04-12 12:19:28 +04:00
|
|
|
switch(mode) {
|
|
|
|
case 2:
|
|
|
|
case 0:
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags &= ~ST_NOREWIND;
|
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case 3:
|
|
|
|
case 1:
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags |= ST_NOREWIND;
|
|
|
|
break;
|
|
|
|
default:
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: bad mode (minor number) %d\n", unit, mode);
|
1993-04-12 12:19:28 +04:00
|
|
|
return EINVAL;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Check density code: 0 is drive default
|
|
|
|
*/
|
|
|
|
switch(dsty) {
|
|
|
|
case 0:
|
|
|
|
dsty_code = 0;
|
|
|
|
break;
|
|
|
|
case DSTY_QIC120:
|
|
|
|
dsty_code = QIC120;
|
|
|
|
break;
|
|
|
|
case DSTY_QIC150:
|
|
|
|
dsty_code = QIC150;
|
|
|
|
break;
|
|
|
|
case DSTY_QIC525:
|
|
|
|
dsty_code = QIC525;
|
|
|
|
break;
|
1993-03-21 21:04:42 +03:00
|
|
|
default:
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: bad density (minor number) %d\n", unit, dsty);
|
1993-04-12 12:19:28 +04:00
|
|
|
return EINVAL;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
if(scsi_debug & (PRINTROUTINES | TRACEOPENS))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: open dev=0x%x (unit %d (of %d))\n", unit, dev, NST);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Make sure the device has been initialised
|
|
|
|
*/
|
|
|
|
if (!st->initialized) {
|
1993-04-22 04:35:02 +04:00
|
|
|
/*printf("st%d: uninitialized\n", unit);*/
|
1993-04-12 12:19:28 +04:00
|
|
|
return ENXIO;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Check that it is still responding and ok.
|
|
|
|
*/
|
|
|
|
if (!(st_req_sense(unit, 0))) {
|
1993-04-22 04:35:02 +04:00
|
|
|
errcode = EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
if(scsi_debug & TRACEOPENS)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: not responding\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
if(scsi_debug & TRACEOPENS)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: is responding\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(!(st_test_ready(unit, 0))) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: not ready\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(!st->info_valid) /* is media new? */
|
|
|
|
if(!st_load(unit, LD_LOAD, 0))
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(!st_rd_blk_lim(unit, 0))
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(!st_mode_sense(unit, 0))
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(!st_mode_select(unit, 0, dsty_code))
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
st_prevent(unit, PR_PREVENT, 0); /* who cares if it fails? */
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Load the physical device parameters
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
if(scsi_debug & TRACEOPENS)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: params ", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags |= ST_OPEN;
|
|
|
|
|
|
|
|
bad:
|
1993-04-12 12:19:28 +04:00
|
|
|
return errcode;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* close the device.. only called if we are the LAST
|
|
|
|
* occurence of an open device
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
stclose(dev_t dev)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
unsigned char unit, mode;
|
|
|
|
struct st_data *st;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
unit = UNIT(dev);
|
|
|
|
mode = MODE(dev);
|
1993-04-12 12:19:28 +04:00
|
|
|
st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
if(scsi_debug & TRACEOPENS)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: close\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
if(st->flags & ST_WRITTEN)
|
1993-04-12 12:19:28 +04:00
|
|
|
st_write_filemarks(unit, 1, 0);
|
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags &= ~ST_WRITTEN;
|
1993-04-12 12:19:28 +04:00
|
|
|
switch(mode) {
|
|
|
|
case 0:
|
|
|
|
st_rewind(unit, FALSE, SCSI_SILENT);
|
|
|
|
st_prevent(unit, PR_ALLOW, SCSI_SILENT);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case 1:
|
|
|
|
st_prevent(unit, PR_ALLOW, SCSI_SILENT);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case 2:
|
|
|
|
st_rewind(unit, FALSE, SCSI_SILENT);
|
|
|
|
st_prevent(unit, PR_ALLOW, SCSI_SILENT);
|
|
|
|
st_load(unit, LD_UNLOAD, SCSI_SILENT);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case 3:
|
|
|
|
st_prevent(unit, PR_ALLOW, SCSI_SILENT);
|
|
|
|
st_load(unit, LD_UNLOAD, SCSI_SILENT);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
default:
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: bad mode (minor number) %d (how's it open?)\n",
|
1993-04-12 12:19:28 +04:00
|
|
|
unit, mode);
|
|
|
|
return EINVAL;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
st->flags &= ~ST_PER_OPEN;
|
1993-04-12 12:19:28 +04:00
|
|
|
return 0;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* trim the size of the transfer if needed,
|
|
|
|
* called by physio
|
|
|
|
* basically the smaller of our min and the scsi driver's*
|
|
|
|
* minphys
|
|
|
|
*/
|
|
|
|
void
|
|
|
|
stminphys(struct buf *bp)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
(*(st_data[UNIT(bp->b_dev)]->sc_sw->scsi_minphys))(bp);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Actually translate the requested transfer into
|
|
|
|
* one the physical driver can understand
|
|
|
|
* The transfer is described by a buf and will include
|
|
|
|
* only one physical transfer.
|
|
|
|
*/
|
1994-01-11 20:19:37 +03:00
|
|
|
void
|
1993-04-12 12:19:28 +04:00
|
|
|
ststrategy(struct buf *bp)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st;
|
|
|
|
struct buf *dp;
|
1993-03-21 21:04:42 +03:00
|
|
|
unsigned char unit;
|
|
|
|
unsigned int opri;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if (bp->b_bcount == 0)
|
1993-03-21 21:04:42 +03:00
|
|
|
goto done;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
ststrats++;
|
|
|
|
unit = UNIT((bp->b_dev));
|
|
|
|
st = st_data[unit];
|
|
|
|
if(scsi_debug & PRINTROUTINES)
|
|
|
|
printf("\nststrategy ");
|
|
|
|
if(scsi_debug & SHOWREQUESTS)
|
|
|
|
printf("st%d: %d bytes @ blk%d\n", unit, bp->b_bcount, bp->b_blkno);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Odd sized request on fixed drives are verboten
|
|
|
|
*/
|
|
|
|
if((st->flags & ST_FIXEDBLOCKS) && bp->b_bcount % st->blkmin) {
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("st%d: bad request, must be multiple of %d\n",
|
1993-04-12 12:19:28 +04:00
|
|
|
unit, st->blkmin);
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_error = EIO;
|
|
|
|
goto bad;
|
|
|
|
}
|
|
|
|
|
|
|
|
stminphys(bp);
|
|
|
|
opri = splbio();
|
1993-04-12 12:19:28 +04:00
|
|
|
dp = &st->buf_queue;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Place it in the queue of disk activities for this tape*
|
|
|
|
* at the end
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
while ( dp->b_actf)
|
|
|
|
dp = dp->b_actf;
|
|
|
|
dp->b_actf = bp;
|
|
|
|
bp->b_actf = NULL;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Tell the device to get going on the transfer if it's
|
|
|
|
* not doing anything, otherwise just wait for completion*
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
ststart(unit);
|
|
|
|
|
|
|
|
splx(opri);
|
|
|
|
return;
|
|
|
|
bad:
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
done:
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Correctly set the buf to indicate a completed xfer
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
iodone(bp);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* ststart looks to see if there is a buf waiting for the device
|
|
|
|
* and that the device is not already busy. If both are true,
|
|
|
|
* It deques the buf and creates a scsi command to perform the
|
|
|
|
* transfer in the buf. The transfer request will call st_done
|
|
|
|
* on completion, which will in turn call this routine again
|
|
|
|
* so that the next queued transfer is performed.
|
|
|
|
* The bufs are queued by the strategy routine (ststrategy)
|
|
|
|
*
|
|
|
|
* This routine is also called after other non-queued requests
|
|
|
|
* have been made of the scsi driver, to ensure that the queue
|
|
|
|
* continues to be drained.
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
/* ststart() is called at splbio */
|
1993-04-12 12:19:28 +04:00
|
|
|
int
|
|
|
|
ststart(int unit)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
register struct buf *bp = 0, *dp;
|
|
|
|
struct scsi_rw_tape cmd;
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
int drivecount, blkno, nblk;
|
|
|
|
|
|
|
|
if(scsi_debug & PRINTROUTINES)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: start\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* See if there is a buf to do and we are not already
|
|
|
|
* doing one
|
|
|
|
*/
|
|
|
|
xs = &st->scsi_xfer;
|
1993-03-21 21:04:42 +03:00
|
|
|
if(xs->flags & INUSE)
|
|
|
|
return; /* unit already underway */
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
trynext:
|
1993-04-12 12:19:28 +04:00
|
|
|
if(st->blockwait) {
|
1993-06-27 10:59:20 +04:00
|
|
|
wakeup((caddr_t)&st->blockwait);
|
1993-03-21 21:04:42 +03:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
dp = &st->buf_queue;
|
1993-03-21 21:04:42 +03:00
|
|
|
if ((bp = dp->b_actf) != NULL)
|
|
|
|
dp->b_actf = bp->b_actf;
|
1993-04-12 12:19:28 +04:00
|
|
|
else
|
1993-03-21 21:04:42 +03:00
|
|
|
return;
|
|
|
|
xs->flags = INUSE; /* Now ours */
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* We have a buf, now we should move the data into
|
|
|
|
* a scsi_xfer definition and try start it
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* If we are at a filemark but have not reported it yet
|
|
|
|
* then we should report it now
|
|
|
|
*/
|
|
|
|
if(st->flags & ST_AT_FILEMARK) {
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_error = 0;
|
|
|
|
bp->b_flags |= B_ERROR; /* EOF*/
|
|
|
|
st->flags &= ~ST_AT_FILEMARK;
|
|
|
|
biodone(bp);
|
|
|
|
xs->flags = 0; /* won't need it now */
|
|
|
|
goto trynext;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* If we are at EOM but have not reported it yet
|
|
|
|
* then we should report it now
|
|
|
|
*/
|
|
|
|
if(st->flags & ST_AT_EOM) {
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_error = EIO;
|
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
st->flags &= ~ST_AT_EOM;
|
|
|
|
biodone(bp);
|
|
|
|
xs->flags = 0; /* won't need it now */
|
|
|
|
goto trynext;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill out the scsi command
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&cmd, sizeof(cmd));
|
1993-04-12 12:19:28 +04:00
|
|
|
if((bp->b_flags & B_READ) == B_WRITE) {
|
1993-03-21 21:04:42 +03:00
|
|
|
st->flags |= ST_WRITTEN;
|
|
|
|
xs->flags |= SCSI_DATA_OUT;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
xs->flags |= SCSI_DATA_IN;
|
1993-04-12 12:19:28 +04:00
|
|
|
cmd.op_code = (bp->b_flags & B_READ) ? READ_COMMAND_TAPE : WRITE_COMMAND_TAPE;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Handle "fixed-block-mode" tape drives by using the *
|
|
|
|
* block count instead of the length.
|
|
|
|
*/
|
|
|
|
if(st->flags & ST_FIXEDBLOCKS) {
|
1993-03-21 21:04:42 +03:00
|
|
|
cmd.fixed = 1;
|
1993-04-12 12:19:28 +04:00
|
|
|
lto3b(bp->b_bcount/st->blkmin, cmd.len);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
else
|
1993-04-12 12:19:28 +04:00
|
|
|
lto3b(bp->b_bcount, cmd.len);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill out the scsi_xfer structure
|
|
|
|
* Note: we cannot sleep as we may be an interrupt
|
|
|
|
*/
|
|
|
|
xs->flags |= SCSI_NOSLEEP;
|
|
|
|
xs->adapter = st->ctlr;
|
|
|
|
xs->targ = st->targ;
|
|
|
|
xs->lu = st->lu;
|
|
|
|
xs->retries = 1; /* can't retry on tape*/
|
1993-06-27 10:59:20 +04:00
|
|
|
xs->timeout = 200000; /* allow 200 secs for retension */
|
1993-04-12 12:19:28 +04:00
|
|
|
xs->cmd = (struct scsi_generic *)&cmd;
|
|
|
|
xs->cmdlen = sizeof(cmd);
|
|
|
|
xs->data = (u_char *)bp->b_un.b_addr;
|
|
|
|
xs->datalen = bp->b_bcount;
|
|
|
|
xs->resid = bp->b_bcount;
|
|
|
|
xs->when_done = st_done;
|
|
|
|
xs->done_arg = unit;
|
|
|
|
xs->done_arg2 = (int)xs;
|
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
xs->bp = bp;
|
|
|
|
|
|
|
|
#if defined(OSF) || defined(FIX_ME)
|
1993-03-21 21:04:42 +03:00
|
|
|
if (bp->b_flags & B_PHYS) {
|
|
|
|
xs->data = (u_char*)map_pva_kva(bp->b_proc, bp->b_un.b_addr,
|
|
|
|
bp->b_bcount, st_window[unit],
|
|
|
|
(bp->b_flags&B_READ)?B_WRITE:B_READ);
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
xs->data = (u_char*)bp->b_un.b_addr;
|
|
|
|
#endif /* defined(OSF) */
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if ( (*(st->sc_sw->scsi_cmd))(xs) != SUCCESSFULLY_QUEUED) {
|
|
|
|
printf("st%d: oops not queued", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
xs->error = XS_DRIVER_STUFFUP;
|
1993-04-12 12:19:28 +04:00
|
|
|
st_done(unit, xs);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
stqueues++;
|
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* This routine is called by the scsi interrupt when
|
|
|
|
* the transfer is complete.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_done(int unit, struct scsi_xfer *xs)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct buf *bp;
|
|
|
|
int retval;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if(scsi_debug & PRINTROUTINES)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: done\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
if (! (xs->flags & INUSE))
|
|
|
|
panic("scsi_xfer not in use!");
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
if(bp = xs->bp) {
|
|
|
|
switch(xs->error) {
|
|
|
|
case XS_NOERROR:
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_flags &= ~B_ERROR;
|
|
|
|
bp->b_error = 0;
|
|
|
|
bp->b_resid = 0;
|
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case XS_SENSE:
|
|
|
|
retval = st_interpret_sense(unit, xs);
|
|
|
|
if(retval) {
|
|
|
|
/*
|
|
|
|
* We have a real error, the bit should
|
|
|
|
* be set to indicate this. The return
|
|
|
|
* value will contain the unix error code*
|
|
|
|
* that the error interpretation routine
|
|
|
|
* thought was suitable, so pass this
|
|
|
|
* value back in the buf structure.
|
|
|
|
* Furthermore we return information
|
|
|
|
* saying that no data was transferred
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_error = retval;
|
|
|
|
bp->b_resid = bp->b_bcount;
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK|ST_AT_EOM);
|
|
|
|
} else if(xs->resid && ( xs->resid != xs->datalen )) {
|
|
|
|
/*
|
|
|
|
* Here we have the tricky part..
|
|
|
|
* We successfully read less data than
|
|
|
|
* we requested. (but not 0)
|
|
|
|
*------for variable blocksize tapes:----*
|
|
|
|
* UNDER 386BSD:
|
|
|
|
* We should legitimatly have the error
|
|
|
|
* bit set, with the error value set to
|
|
|
|
* zero.. This is to indicate to the
|
|
|
|
* physio code that while we didn't get
|
|
|
|
* as much information as was requested,
|
|
|
|
* we did reach the end of the record
|
|
|
|
* and so physio should not call us
|
|
|
|
* again for more data... we have it all
|
|
|
|
* SO SET THE ERROR BIT!
|
|
|
|
*
|
1993-07-09 08:28:55 +04:00
|
|
|
* UNDER MACH (CMU) and NetBSD:
|
1993-04-12 12:19:28 +04:00
|
|
|
* To indicate the same as above, we
|
|
|
|
* need only have a non 0 resid that is
|
|
|
|
* less than the b_bcount, but the
|
|
|
|
* ERROR BIT MUST BE CLEAR! (sigh)
|
|
|
|
*
|
|
|
|
* UNDER OSF1:
|
|
|
|
* To indicate the same as above, we
|
|
|
|
* need to have a non 0 resid that is
|
|
|
|
* less than the b_bcount, but the
|
|
|
|
* ERROR BIT MUST BE SET! (gasp)(sigh)
|
|
|
|
*
|
|
|
|
*-------for fixed blocksize device------*
|
|
|
|
* We could have read some successful
|
|
|
|
* records before hitting
|
|
|
|
* the EOF or EOT. These must be passed
|
|
|
|
* to the user, before we report the
|
|
|
|
* EOx. Only if there is no data for the
|
|
|
|
* user do we report it now. (via an EIO
|
|
|
|
* for EOM and resid == count for EOF).
|
|
|
|
* We will report the EOx NEXT time..
|
|
|
|
*/
|
1993-07-09 08:28:55 +04:00
|
|
|
bp->b_flags &= ~B_ERROR;
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_error = 0;
|
|
|
|
bp->b_resid = xs->resid;
|
1993-04-12 12:19:28 +04:00
|
|
|
if((st->flags & ST_FIXEDBLOCKS)) {
|
|
|
|
bp->b_resid *= st->blkmin;
|
|
|
|
if( (st->flags & ST_AT_EOM)
|
|
|
|
&& (bp->b_resid == bp->b_bcount)) {
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_error = EIO;
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~ST_AT_EOM;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
}
|
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
} else {
|
|
|
|
/*
|
|
|
|
* We have come out of the error handler
|
|
|
|
* with no error code.. we have also
|
|
|
|
* not had an ili (would have gone to
|
|
|
|
* the previous clause). Now we need to
|
|
|
|
* distiguish between succesful read of
|
|
|
|
* no data (EOF or EOM) and successfull
|
|
|
|
* read of all requested data.
|
|
|
|
* At least all o/s agree that:
|
|
|
|
* 0 bytes read with no error is EOF
|
|
|
|
* 0 bytes read with an EIO is EOM
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_resid = bp->b_bcount;
|
1993-04-12 12:19:28 +04:00
|
|
|
if(st->flags & ST_AT_FILEMARK) {
|
|
|
|
st->flags &= ~ST_AT_FILEMARK;
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_flags &= ~B_ERROR;
|
|
|
|
bp->b_error = 0;
|
|
|
|
break;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
if(st->flags & ST_AT_EOM) {
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_error = EIO;
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~ST_AT_EOM;
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
}
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: error ignored\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XS_TIMEOUT:
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: timeout\n", unit);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case XS_BUSY: /* should retry -- how? */
|
|
|
|
/*
|
|
|
|
* SHOULD put buf back at head of queue
|
|
|
|
* and decrement retry count in (*xs)
|
|
|
|
* HOWEVER, this should work as a kludge
|
|
|
|
*/
|
|
|
|
if(xs->retries--) {
|
1993-03-21 21:04:42 +03:00
|
|
|
xs->flags &= ~ITSDONE;
|
|
|
|
xs->error = XS_NOERROR;
|
1993-04-12 12:19:28 +04:00
|
|
|
if ( (*(st->sc_sw->scsi_cmd))(xs)
|
|
|
|
== SUCCESSFULLY_QUEUED) {
|
|
|
|
/* don't wake the job, ok? */
|
1993-03-21 21:04:42 +03:00
|
|
|
return;
|
|
|
|
}
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: device busy\n");
|
1993-03-21 21:04:42 +03:00
|
|
|
xs->flags |= ITSDONE;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
case XS_DRIVER_STUFFUP:
|
1993-03-21 21:04:42 +03:00
|
|
|
bp->b_flags |= B_ERROR;
|
|
|
|
bp->b_error = EIO;
|
|
|
|
break;
|
|
|
|
default:
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: unknown error category %d from scsi driver\n",
|
|
|
|
unit, xs->error);
|
1993-04-12 12:19:28 +04:00
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
biodone(bp);
|
|
|
|
xs->flags = 0; /* no longer in use */
|
|
|
|
ststart(unit); /* If there's another waiting.. do it */
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-06-27 10:59:20 +04:00
|
|
|
wakeup((caddr_t)xs);
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Perform special action on behalf of the user
|
|
|
|
* Knows about the internals of this device
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
stioctl(dev_t dev, int cmd, caddr_t arg, int mode)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st;
|
|
|
|
struct mtop *mt;
|
|
|
|
struct mtget *g;
|
1993-03-21 21:04:42 +03:00
|
|
|
unsigned int opri;
|
|
|
|
unsigned char unit;
|
1993-04-12 12:19:28 +04:00
|
|
|
register i, j;
|
|
|
|
int errcode=0, number, flags, ret;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Find the device that the user is talking about
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
flags = 0; /* give error messages, act on errors etc. */
|
|
|
|
unit = UNIT(dev);
|
1993-04-12 12:19:28 +04:00
|
|
|
st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 16:10:28 +04:00
|
|
|
if(unit >= NST)
|
|
|
|
return ENXIO;
|
|
|
|
if(!st)
|
|
|
|
return ENXIO;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
switch(cmd) {
|
1993-07-28 06:20:34 +04:00
|
|
|
default:
|
|
|
|
return EINVAL;
|
1993-03-21 21:04:42 +03:00
|
|
|
case MTIOCGET:
|
1993-04-12 12:19:28 +04:00
|
|
|
g = (struct mtget *)arg;
|
|
|
|
bzero(g, sizeof *g);
|
|
|
|
g->mt_type = 0x7; /* Ultrix compat */
|
1993-03-21 21:04:42 +03:00
|
|
|
ret=TRUE;
|
|
|
|
break;
|
|
|
|
case MTIOCTOP:
|
1993-04-12 12:19:28 +04:00
|
|
|
mt = (struct mtop *)arg;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
if (st_debug)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("[sctape_sstatus: %x %x]\n", mt->mt_op, mt->mt_count);
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
/* compat: in U*x it is a short */
|
|
|
|
number = mt->mt_count;
|
1993-04-12 12:19:28 +04:00
|
|
|
switch ((short)(mt->mt_op)) {
|
1993-03-21 21:04:42 +03:00
|
|
|
case MTWEOF: /* write an end-of-file record */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_write_filemarks(unit, number, flags);
|
|
|
|
st->flags &= ~ST_WRITTEN;
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTFSF: /* forward space file */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_space(unit, number, SP_FILEMARKS, flags);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTBSF: /* backward space file */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_space(unit, -number, SP_FILEMARKS, flags);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTFSR: /* forward space record */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_space(unit, number, SP_BLKS, flags);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTBSR: /* backward space record */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_space(unit, -number, SP_BLKS, flags);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTREW: /* rewind */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = st_rewind(unit, FALSE, flags);
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTOFFL: /* rewind and put the drive offline */
|
1993-04-12 12:19:28 +04:00
|
|
|
if((ret = st_rewind(unit, FALSE, flags))) {
|
|
|
|
st_prevent(unit, PR_ALLOW, 0);
|
|
|
|
ret = st_load(unit, LD_UNLOAD, flags);
|
|
|
|
} else
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: rewind failed; unit still loaded\n");
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
case MTNOP: /* no operation, sets status only */
|
|
|
|
case MTCACHE: /* enable controller cache */
|
|
|
|
case MTNOCACHE: /* disable controller cache */
|
1993-04-12 12:19:28 +04:00
|
|
|
ret = TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
return EINVAL;
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case MTIOCIEOT:
|
|
|
|
case MTIOCEEOT:
|
|
|
|
ret=TRUE;
|
|
|
|
break;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return ret ? ESUCCESS : EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Check with the device that it is ok, (via scsi driver)*
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_req_sense(int unit, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct scsi_sense_data sense;
|
|
|
|
struct scsi_sense scsi_cmd;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = REQUEST_SENSE;
|
|
|
|
scsi_cmd.length = sizeof(sense);
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)&sense, sizeof(sense),
|
|
|
|
100000, flags | SCSI_DATA_IN) != 0)
|
|
|
|
return FALSE;
|
|
|
|
else
|
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Get scsi driver to send a "are you ready" command
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_test_ready(int unit, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct scsi_test_unit_ready scsi_cmd;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = TEST_UNIT_READY;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, 100000, flags) != 0)
|
|
|
|
return FALSE;
|
|
|
|
else
|
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef __STDC__
|
|
|
|
#define b2tol(a) (((unsigned)(a##_1) << 8) + (unsigned)a##_0 )
|
|
|
|
#else
|
|
|
|
#define b2tol(a) (((unsigned)(a/**/_1) << 8) + (unsigned)a/**/_0 )
|
|
|
|
#endif
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Ask the drive what it's min and max blk sizes are.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_rd_blk_lim(int unit, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_blk_limits scsi_cmd;
|
1993-03-21 21:04:42 +03:00
|
|
|
struct scsi_blk_limits_data scsi_blkl;
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
st = st_data[unit];
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First check if we have it all loaded
|
|
|
|
*/
|
|
|
|
if (st->info_valid)
|
|
|
|
goto done;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do a 'Read Block Limits'
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = READ_BLK_LIMITS;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* do the command, update the global values
|
|
|
|
*/
|
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)&scsi_blkl, sizeof(scsi_blkl),
|
|
|
|
5000, flags | SCSI_DATA_IN) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: read block limits failed\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
if (st_debug)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: block size min %d max %d\n", unit,
|
|
|
|
b2tol(scsi_blkl.min_length),
|
1993-03-21 21:04:42 +03:00
|
|
|
_3btol(&scsi_blkl.max_length_2));
|
1993-04-12 12:19:28 +04:00
|
|
|
|
1993-03-21 21:04:42 +03:00
|
|
|
st->blkmin = b2tol(scsi_blkl.min_length);
|
|
|
|
st->blkmax = _3btol(&scsi_blkl.max_length_2);
|
|
|
|
|
|
|
|
done:
|
|
|
|
if(st->blkmin && (st->blkmin == st->blkmax))
|
|
|
|
st->flags |= ST_FIXEDBLOCKS;
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the scsi driver to send a full inquiry to the
|
|
|
|
* device and use the results to fill out the global
|
|
|
|
* parameter structure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_mode_sense(int unit, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_mode_sense scsi_cmd;
|
|
|
|
struct {
|
|
|
|
struct scsi_mode_header_tape header;
|
|
|
|
struct blk_desc blk_desc;
|
|
|
|
} scsi_s;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* First check if we have it all loaded
|
|
|
|
*/
|
|
|
|
if(st->info_valid)
|
|
|
|
return TRUE;
|
|
|
|
/*
|
|
|
|
* First do a mode sense
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = MODE_SENSE;
|
1993-04-12 12:19:28 +04:00
|
|
|
scsi_cmd.length = sizeof(scsi_s);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* do the command, but we don't need the results
|
|
|
|
* just print them for our interest's sake
|
|
|
|
*/
|
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)&scsi_s, sizeof(scsi_s),
|
|
|
|
5000, flags | SCSI_DATA_IN) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: mode sense failed\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
if (st_debug)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: %d blocks of %d bytes, write %s, %sbuffered\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
unit,
|
1993-04-12 12:19:28 +04:00
|
|
|
_3btol((u_char *)&scsi_s.blk_desc.nblocks),
|
|
|
|
_3btol((u_char *)&scsi_s.blk_desc.blklen),
|
|
|
|
scsi_s.header.write_protected ? "protected" : "enabled",
|
|
|
|
scsi_s.header.buf_mode ? "" : "un");
|
|
|
|
|
|
|
|
st->numblks = _3btol((u_char *)&scsi_s.blk_desc.nblocks);
|
|
|
|
st->blksiz = _3btol((u_char *)&scsi_s.blk_desc.blklen);
|
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* Get the scsi driver to send a full inquiry to the
|
|
|
|
* device and use the results to fill out the global
|
|
|
|
* parameter structure.
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_mode_select(int unit, int flags, int dsty_code)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
struct scsi_mode_select scsi_cmd;
|
1993-04-12 12:19:28 +04:00
|
|
|
struct {
|
|
|
|
struct scsi_mode_header_tape header;
|
|
|
|
struct blk_desc blk_desc;
|
|
|
|
} dat;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Set up for a mode select
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&dat, sizeof(dat));
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = MODE_SELECT;
|
|
|
|
scsi_cmd.length = sizeof(dat);
|
|
|
|
dat.header.blk_desc_len = sizeof(struct blk_desc);
|
|
|
|
dat.header.buf_mode = 1;
|
1993-04-12 12:19:28 +04:00
|
|
|
dat.blk_desc.density = dsty_code;
|
1993-03-21 21:04:42 +03:00
|
|
|
if(st->flags & ST_FIXEDBLOCKS)
|
1993-04-12 12:19:28 +04:00
|
|
|
lto3b(st->blkmin, dat.blk_desc.blklen);
|
|
|
|
|
|
|
|
/* lto3b( st->numblks, dat.blk_desc.nblocks); use defaults!!!!
|
|
|
|
lto3b( st->blksiz, dat.blk_desc.blklen);
|
|
|
|
*/
|
|
|
|
/*
|
|
|
|
* do the command
|
|
|
|
*/
|
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)&dat, sizeof(dat),
|
|
|
|
5000, flags | SCSI_DATA_OUT) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: mode select failed\n", unit);
|
|
|
|
#if 0
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-04-22 04:35:02 +04:00
|
|
|
#endif
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* skip N blocks/filemarks/seq filemarks/eom
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_space(int unit, int number, int what, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
struct scsi_space scsi_cmd;
|
|
|
|
|
|
|
|
/* if we are at a filemark now, we soon won't be*/
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK | ST_AT_EOM);
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = SPACE;
|
|
|
|
scsi_cmd.code = what;
|
1993-04-12 12:19:28 +04:00
|
|
|
lto3b(number, scsi_cmd.number);
|
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, 600000, flags) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: %s space failed\n", unit,
|
|
|
|
(number > 0) ? "forward" : "backward");
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* write N filemarks
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_write_filemarks(int unit, int number, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
struct scsi_write_filemarks scsi_cmd;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK);
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = WRITE_FILEMARKS;
|
1993-04-12 12:19:28 +04:00
|
|
|
lto3b(number, scsi_cmd.number);
|
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, 100000, flags) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: write file marks failed\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* load /unload (with retension if true)
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_load(int unit, int type, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
1993-03-21 21:04:42 +03:00
|
|
|
struct scsi_load scsi_cmd;
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK | ST_AT_EOM);
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = LOAD_UNLOAD;
|
|
|
|
scsi_cmd.load=type;
|
|
|
|
if (type == LD_LOAD)
|
|
|
|
{
|
|
|
|
/*scsi_cmd.reten=TRUE;*/
|
|
|
|
scsi_cmd.reten=FALSE;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
scsi_cmd.reten=FALSE;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, 30000, flags) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: %s failed\n", unit,
|
|
|
|
type == LD_LOAD ? "load" : "unload");
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Prevent or allow the user to remove the tape
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_prevent(int unit, int type, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_prevent scsi_cmd;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = PREVENT_ALLOW;
|
|
|
|
scsi_cmd.prevent=type;
|
1993-04-12 12:19:28 +04:00
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, 5000, flags) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: %s failed\n", unit,
|
|
|
|
type == PR_PREVENT ? "prevent" : "allow");
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Rewind the device
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_rewind(int unit, int immed, int flags)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_rewind scsi_cmd;
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK | ST_AT_EOM);
|
1993-03-21 21:04:42 +03:00
|
|
|
bzero(&scsi_cmd, sizeof(scsi_cmd));
|
|
|
|
scsi_cmd.op_code = REWIND;
|
|
|
|
scsi_cmd.immed=immed;
|
1993-04-12 12:19:28 +04:00
|
|
|
if (st_scsi_cmd(unit, (struct scsi_generic *)&scsi_cmd,
|
|
|
|
sizeof(scsi_cmd), (u_char *)0, 0, immed?5000:300000, flags) != 0) {
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!(flags & SCSI_SILENT))
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: rewind failed\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->info_valid = FALSE;
|
|
|
|
return FALSE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return TRUE;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* ask the scsi driver to perform a command for us.
|
|
|
|
* Call it through the switch table, and tell it which
|
|
|
|
* sub-unit we want, and what target and lu we wish to
|
|
|
|
* talk to. Also tell it where to find the command
|
|
|
|
* how long int is.
|
|
|
|
* Also tell it where to read/write the data, and how
|
|
|
|
* long the data is supposed to be
|
|
|
|
*/
|
|
|
|
int
|
|
|
|
st_scsi_cmd(int unit, struct scsi_generic *scsi_cmd, int cmdlen,
|
|
|
|
u_char *data_addr, int datalen, int timeout, int flags)
|
|
|
|
{
|
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_xfer *xs;
|
|
|
|
int retval, s;
|
|
|
|
|
|
|
|
if(scsi_debug & PRINTROUTINES)
|
|
|
|
printf("\nst_scsi_cmd%d ", unit);
|
|
|
|
if(!st->sc_sw) {
|
|
|
|
printf("st%d: not set up\n", unit);
|
|
|
|
return EINVAL;
|
|
|
|
}
|
1993-03-21 21:04:42 +03:00
|
|
|
|
1993-04-12 12:19:28 +04:00
|
|
|
xs = &st->scsi_xfer;
|
|
|
|
if(!(flags & SCSI_NOMASK))
|
|
|
|
s = splbio();
|
|
|
|
st->blockwait++; /* there is someone waiting */
|
|
|
|
while (xs->flags & INUSE)
|
1993-08-01 23:22:24 +04:00
|
|
|
tsleep((caddr_t)&st->blockwait, PRIBIO+1, "st_cmd1", 0);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->blockwait--;
|
|
|
|
xs->flags = INUSE;
|
|
|
|
if(!(flags & SCSI_NOMASK))
|
|
|
|
splx(s);
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Fill out the scsi_xfer structure
|
|
|
|
*/
|
|
|
|
xs->flags |= flags;
|
|
|
|
xs->adapter = st->ctlr;
|
|
|
|
xs->targ = st->targ;
|
|
|
|
xs->lu = st->lu;
|
|
|
|
xs->retries = ST_RETRIES;
|
|
|
|
xs->timeout = timeout;
|
|
|
|
xs->cmd = scsi_cmd;
|
|
|
|
xs->cmdlen = cmdlen;
|
|
|
|
xs->data = data_addr;
|
|
|
|
xs->datalen = datalen;
|
|
|
|
xs->resid = datalen;
|
|
|
|
xs->when_done = (flags & SCSI_NOMASK) ? (int (*)())0 : st_done;
|
|
|
|
xs->done_arg = unit;
|
|
|
|
xs->done_arg2 = (int)xs;
|
|
|
|
retry:
|
|
|
|
xs->error = XS_NOERROR;
|
|
|
|
xs->bp = 0;
|
|
|
|
retval = (*(st->sc_sw->scsi_cmd))(xs);
|
|
|
|
switch(retval) {
|
|
|
|
case SUCCESSFULLY_QUEUED:
|
|
|
|
s = splbio();
|
|
|
|
while(!(xs->flags & ITSDONE))
|
1993-08-01 23:22:24 +04:00
|
|
|
tsleep((caddr_t)xs,PRIBIO+1, "st_cmd2", 0);
|
1993-04-12 12:19:28 +04:00
|
|
|
splx(s);
|
|
|
|
case HAD_ERROR:
|
|
|
|
case COMPLETE:
|
|
|
|
switch(xs->error) {
|
|
|
|
case XS_NOERROR:
|
|
|
|
retval = ESUCCESS;
|
|
|
|
break;
|
|
|
|
case XS_SENSE:
|
|
|
|
retval = st_interpret_sense(unit, xs);
|
|
|
|
/* only useful for reads */
|
|
|
|
if (retval)
|
|
|
|
st->flags &= ~(ST_AT_FILEMARK | ST_AT_EOM);
|
|
|
|
else {
|
|
|
|
xs->error = XS_NOERROR;
|
1993-03-21 21:04:42 +03:00
|
|
|
retval = ESUCCESS;
|
1993-04-12 12:19:28 +04:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
case XS_DRIVER_STUFFUP:
|
|
|
|
retval = EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
break;
|
1993-04-12 12:19:28 +04:00
|
|
|
case XS_TIMEOUT:
|
|
|
|
case XS_BUSY:
|
|
|
|
if(xs->retries-- ) {
|
1993-03-21 21:04:42 +03:00
|
|
|
xs->flags &= ~ITSDONE;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
retval = EIO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
retval = EIO;
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: unknown error category %d from scsi driver\n",
|
|
|
|
unit, xs->error);
|
1993-04-12 12:19:28 +04:00
|
|
|
break;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
break;
|
|
|
|
case TRY_AGAIN_LATER:
|
|
|
|
if(xs->retries--) {
|
|
|
|
xs->flags &= ~ITSDONE;
|
|
|
|
goto retry;
|
|
|
|
}
|
|
|
|
retval = EIO;
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
retval = EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
xs->flags = 0; /* it's free! */
|
|
|
|
ststart(unit);
|
|
|
|
|
|
|
|
return retval;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Look at the returned sense and act on the error and detirmine
|
|
|
|
* The unix error number to pass back... (0 = report no error)
|
|
|
|
*/
|
|
|
|
|
|
|
|
int
|
|
|
|
st_interpret_sense(int unit, struct scsi_xfer *xs)
|
1993-03-21 21:04:42 +03:00
|
|
|
{
|
1993-04-12 12:19:28 +04:00
|
|
|
struct st_data *st = st_data[unit];
|
|
|
|
struct scsi_sense_data *sense;
|
|
|
|
int silent = xs->flags & SCSI_SILENT, key;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* If errors are ok, report a success
|
|
|
|
*/
|
|
|
|
if(xs->flags & SCSI_ERR_OK)
|
|
|
|
return ESUCCESS;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Get the sense fields and work out what CLASS
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
sense = &(xs->sense);
|
1993-04-12 12:19:28 +04:00
|
|
|
if(st_debug) {
|
1993-03-21 21:04:42 +03:00
|
|
|
int count = 0;
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("code%x class%x valid%x\n", sense->error_code,
|
|
|
|
sense->error_class, sense->valid);
|
|
|
|
printf("seg%x key%x ili%x eom%x fmark%x\n",
|
|
|
|
sense->ext.extended.segment, sense->ext.extended.sense_key,
|
|
|
|
sense->ext.extended.ili, sense->ext.extended.eom,
|
|
|
|
sense->ext.extended.filemark);
|
|
|
|
printf("info: %x %x %x %x followed by %d extra bytes\n",
|
|
|
|
sense->ext.extended.info[0], sense->ext.extended.info[1],
|
|
|
|
sense->ext.extended.info[2], sense->ext.extended.info[3],
|
|
|
|
sense->ext.extended.extra_len);
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("extra: ");
|
|
|
|
while(count < sense->ext.extended.extra_len)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("%x ", sense->ext.extended.extra_bytes[count++]);
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
|
|
|
|
switch(sense->error_class) {
|
|
|
|
case 0:
|
|
|
|
case 1:
|
|
|
|
case 2:
|
|
|
|
case 3:
|
|
|
|
case 4:
|
|
|
|
case 5:
|
|
|
|
case 6:
|
1993-04-22 04:35:02 +04:00
|
|
|
if(!silent) {
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d: error class %d code %d\n", unit,
|
|
|
|
sense->error_class, sense->error_code);
|
1993-04-22 04:35:02 +04:00
|
|
|
if(sense->valid)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("block no. %d (decimal)\n",
|
|
|
|
(sense->ext.unextended.blockhi <<16),
|
|
|
|
+ (sense->ext.unextended.blockmed <<8),
|
|
|
|
+ (sense->ext.unextended.blocklow ));
|
1993-04-22 04:35:02 +04:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
case 7:
|
1993-04-12 12:19:28 +04:00
|
|
|
/*
|
|
|
|
* If it's class 7, use the extended stuff and interpret
|
|
|
|
* the key
|
|
|
|
*/
|
1993-03-21 21:04:42 +03:00
|
|
|
if(sense->ext.extended.eom)
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags |= ST_AT_EOM;
|
1993-03-21 21:04:42 +03:00
|
|
|
if(sense->ext.extended.filemark)
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags |= ST_AT_FILEMARK;
|
|
|
|
|
|
|
|
if(sense->ext.extended.ili) {
|
|
|
|
if(sense->valid) {
|
|
|
|
/*
|
|
|
|
* In all ili cases, note that
|
|
|
|
* the resid is non-0 AND not
|
|
|
|
* unchanged.
|
|
|
|
*/
|
|
|
|
xs->resid = ntohl(*((long *)sense->ext.extended.info));
|
|
|
|
if(xs->bp) {
|
|
|
|
if(xs->resid < 0) {
|
|
|
|
/* never on block devices */
|
|
|
|
/*
|
|
|
|
* it's only really bad
|
|
|
|
* if we have lost data
|
|
|
|
* (the record was
|
|
|
|
* bigger than the read)
|
|
|
|
*/
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
}
|
|
|
|
} else
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: bad length error?", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
}
|
|
|
|
|
|
|
|
key = sense->ext.extended.sense_key;
|
|
|
|
switch(key) {
|
|
|
|
case 0x0:
|
|
|
|
return ESUCCESS;
|
|
|
|
case 0x1:
|
|
|
|
if(!silent) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: soft error (corrected)", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
if(sense->valid) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf(" block %d\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return ESUCCESS;
|
|
|
|
case 0x2:
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!silent)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d: not ready\n", unit);
|
|
|
|
return ENODEV;
|
|
|
|
case 0x3:
|
|
|
|
if(!silent) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: medium error", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
if(sense->valid) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf(" block %d\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return EIO;
|
|
|
|
case 0x4:
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!silent)
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: component failure\n",
|
1993-04-12 12:19:28 +04:00
|
|
|
unit);
|
|
|
|
return EIO;
|
|
|
|
case 0x5:
|
|
|
|
if(!silent)
|
|
|
|
printf("st%d: illegal request\n", unit);
|
|
|
|
return EINVAL;
|
|
|
|
case 0x6:
|
|
|
|
if(!silent)
|
1993-04-20 14:51:51 +04:00
|
|
|
printf("st%d: media change\n", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
st->flags &= ~(ST_AT_FILEMARK|ST_AT_EOM);
|
|
|
|
st->info_valid = FALSE;
|
|
|
|
if (st->flags & ST_OPEN) /* TEMP!!!! */
|
|
|
|
return EIO;
|
|
|
|
return ESUCCESS;
|
|
|
|
case 0x7:
|
|
|
|
if(!silent) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: attempted protection violation",
|
1993-04-12 12:19:28 +04:00
|
|
|
unit);
|
|
|
|
if(sense->valid) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf(" block %d\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return EACCES;
|
|
|
|
case 0x8:
|
|
|
|
if(!silent) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: block wrong state (worm)", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
if(sense->valid) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf(" block %d\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return EIO;
|
|
|
|
case 0x9:
|
|
|
|
if(!silent)
|
|
|
|
printf("st%d: vendor unique\n", unit);
|
|
|
|
return EIO;
|
|
|
|
case 0xa:
|
|
|
|
if(!silent)
|
|
|
|
printf("st%d: copy aborted\n", unit);
|
|
|
|
return EIO;
|
|
|
|
case 0xb:
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!silent)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d: command aborted\n", unit);
|
|
|
|
return EIO;
|
|
|
|
case 0xc:
|
|
|
|
if(!silent) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf("st%d: search returned", unit);
|
1993-04-12 12:19:28 +04:00
|
|
|
if(sense->valid) {
|
1993-04-22 04:35:02 +04:00
|
|
|
printf(" block %d\n",
|
1993-03-21 21:04:42 +03:00
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return ESUCCESS;
|
|
|
|
case 0xd:
|
1993-03-21 21:04:42 +03:00
|
|
|
if(!silent)
|
1993-04-12 12:19:28 +04:00
|
|
|
printf("st%d: volume overflow\n", unit);
|
|
|
|
return ENOSPC;
|
|
|
|
case 0xe:
|
|
|
|
if(!silent) {
|
|
|
|
printf("st%d: verify miscompare\n", unit);
|
|
|
|
if(sense->valid) {
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("block no. %d (decimal)\n",
|
|
|
|
(sense->ext.extended.info[0] <<24)|
|
|
|
|
(sense->ext.extended.info[1] <<16)|
|
|
|
|
(sense->ext.extended.info[2] <<8)|
|
|
|
|
(sense->ext.extended.info[3] ));
|
1993-04-12 12:19:28 +04:00
|
|
|
} else
|
1993-03-21 21:04:42 +03:00
|
|
|
printf("\n");
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return EIO;
|
|
|
|
case 0xf:
|
|
|
|
if(!silent)
|
|
|
|
printf("st%d: unknown error key\n", unit);
|
|
|
|
return EIO;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
1993-04-12 12:19:28 +04:00
|
|
|
return 0;
|
1993-03-21 21:04:42 +03:00
|
|
|
}
|