cdrtools/libscg/scsi-aix.c

664 lines
16 KiB
C
Raw Normal View History

2025-06-15 04:19:58 +08:00
/* @(#)scsi-aix.c 1.40 12/12/02 Copyright 1997-2012 J. Schilling */
#ifndef lint
static char __sccsid[] =
"@(#)scsi-aix.c 1.40 12/12/02 Copyright 1997-2012 J. Schilling";
#endif
/*
* Interface for the AIX generic SCSI implementation.
*
* This is a hack, that tries to emulate the functionality
* of the scg driver.
*
* Warning: you may change this source, but if you do that
* you need to change the _scg_version and _scg_auth* string below.
* You may not return "schily" for an SCG_AUTHOR request anymore.
* Choose your name instead of "schily" and make clear that the version
* string is related to a modified source.
*
* Copyright (c) 1997-2012 J. Schilling
*/
/*
* The contents of this file are subject to the terms of the
* Common Development and Distribution License, Version 1.0 only
* (the "License"). You may not use this file except in compliance
* with the License.
*
* See the file CDDL.Schily.txt in this distribution for details.
*
* The following exceptions apply:
* CDDL <EFBFBD>3.6 needs to be replaced by: "You may create a Larger Work by
* combining Covered Software with other code if all other code is governed by
* the terms of a license that is OSI approved (see www.opensource.org) and
* you may distribute the Larger Work as a single product. In such a case,
* You must make sure the requirements of this License are fulfilled for
* the Covered Software."
*
* When distributing Covered Code, include this CDDL HEADER in each
* file and include the License file CDDL.Schily.txt from this distribution.
*/
#include <sys/scdisk.h>
#include <sys/ide.h>
/*
* The scsi_inquiry struct in <sys/scsi_buf.h> clashes
* with the one in "scg/scsireg.h".
* Well, our scg/scsireg.h is from 1986, AIX sys/scsi_buf.h is from 1995 ;-)
*/
#define scsi_inquiry _scsi_inquiry
#include <sys/scsi_buf.h>
#undef scsi_inquiry
/*
* Warning: you may change this source, but if you do that
* you need to change the _scg_version and _scg_auth* string below.
* You may not return "schily" for an SCG_AUTHOR request anymore.
* Choose your name instead of "schily" and make clear that the version
* string is related to a modified source.
*/
LOCAL char _scg_trans_version[] = "scsi-aix.c-1.40"; /* The version for this transport*/
#define MAX_SCG 16 /* Max # of SCSI controllers */
#define MAX_TGT 16
#define MAX_LUN 8
struct scg_local {
short scgfiles[MAX_SCG][MAX_TGT][MAX_LUN];
char trtypes[MAX_SCG][MAX_TGT];
char transp;
};
#define scglocal(p) ((struct scg_local *)((p)->local))
#define TR_UNKNONW 0
#define TR_DKIOCMD 1
#define TR_DKPASSTHRU 2
#define TR_IDEPASSTHRU 3
/*
* At least with ATAPI, AIX is unable to transfer more than 65535
*/
#define MAX_DMA_AIX ((64*1024)-1)
LOCAL void sciocmd_to_scpassthru __PR((struct sc_iocmd *req, struct sc_passthru *pthru_req, struct scg_cmd *sp));
LOCAL void scpassthru_to_sciocmd __PR((struct sc_passthru *pthru_req, struct sc_iocmd *req));
LOCAL int sciocmd_to_idepassthru __PR((struct sc_iocmd *req, struct ide_atapi_passthru *ide_req, struct scg_cmd *sp));
LOCAL int do_ioctl __PR((SCSI *scgp, struct sc_iocmd *req, struct scg_cmd *sp));
LOCAL int do_scg_cmd __PR((SCSI *scgp, struct scg_cmd *sp));
LOCAL int do_scg_sense __PR((SCSI *scgp, struct scg_cmd *sp));
/*
* Return version information for the low level SCSI transport code.
* This has been introduced to make it easier to trace down problems
* in applications.
*/
LOCAL char *
scgo_version(scgp, what)
SCSI *scgp;
int what;
{
if (scgp != (SCSI *)0) {
switch (what) {
case SCG_VERSION:
return (_scg_trans_version);
/*
* If you changed this source, you are not allowed to
* return "schily" for the SCG_AUTHOR request.
*/
case SCG_AUTHOR:
return (_scg_auth_schily);
case SCG_SCCS_ID:
return (__sccsid);
}
}
return ((char *)0);
}
LOCAL int
scgo_help(scgp, f)
SCSI *scgp;
FILE *f;
{
__scg_help(f, "DKIOCMD", "SCSI transport for targets known by AIX drivers",
"", "bus,target,lun or UNIX device", "1,2,0 or /dev/rcd0@", FALSE, TRUE);
return (0);
}
LOCAL int
scgo_open(scgp, device)
SCSI *scgp;
char *device;
{
int busno = scg_scsibus(scgp);
int tgt = scg_target(scgp);
int tlun = scg_lun(scgp);
register int f;
register int b;
register int t;
register int l;
register int nopen = 0;
char devname[32];
if (busno >= MAX_SCG || tgt >= MAX_TGT || tlun >= MAX_LUN) {
errno = EINVAL;
if (scgp->errstr)
js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE,
"Illegal value for busno, target or lun '%d,%d,%d'",
busno, tgt, tlun);
return (-1);
}
if (scgp->local == NULL) {
scgp->local = malloc(sizeof (struct scg_local));
if (scgp->local == NULL)
return (0);
scglocal(scgp)->transp = TR_UNKNONW;
for (b = 0; b < MAX_SCG; b++) {
for (t = 0; t < MAX_TGT; t++) {
for (l = 0; l < MAX_LUN; l++)
scglocal(scgp)->scgfiles[b][t][l] = (short)-1;
scglocal(scgp)->trtypes[b][t] = TR_UNKNONW;
}
}
}
if ((device != NULL && *device != '\0') || (busno == -2 && tgt == -2))
goto openbydev;
if (busno >= 0 && tgt >= 0 && tlun >= 0) {
js_snprintf(devname, sizeof (devname), "/dev/rcd%d", tgt);
f = openx(devname, 0, 0, SC_DIAGNOSTIC);
if (f < 0) {
if (scgp->errstr)
js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE,
"Cannot open '%s'. Specify device number (1 for cd1) as target (1,0)",
devname);
return (0);
}
scglocal(scgp)->scgfiles[busno][tgt][tlun] = f;
return (1);
} else {
if (scgp->errstr)
js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE,
"Unable to scan on AIX");
return (0);
}
openbydev:
if (device != NULL && *device != '\0' && busno >= 0 && tgt >= 0 && tlun >= 0) {
f = openx(device, 0, 0, SC_DIAGNOSTIC);
if (f < 0) {
if (scgp->errstr)
js_snprintf(scgp->errstr, SCSI_ERRSTR_SIZE,
"Cannot open '%s'",
devname);
return (0);
}
scglocal(scgp)->scgfiles[busno][tgt][tlun] = f;
scg_settarget(scgp, busno, tgt, tlun);
return (++nopen);
}
return (nopen);
}
LOCAL int
scgo_close(scgp)
SCSI *scgp;
{
register int f;
register int b;
register int t;
register int l;
if (scgp->local == NULL)
return (-1);
for (b = 0; b < MAX_SCG; b++) {
for (t = 0; t < MAX_TGT; t++) {
for (l = 0; l < MAX_LUN; l++) {
f = scglocal(scgp)->scgfiles[b][t][l];
if (f >= 0)
close(f);
scglocal(scgp)->scgfiles[b][t][l] = (short)-1;
}
}
}
return (0);
}
LOCAL long
scgo_maxdma(scgp, amt)
SCSI *scgp;
long amt;
{
return (MAX_DMA_AIX);
}
#define palign(x, a) (((char *)(x)) + ((a) - 1 - (((UIntptr_t)((x)-1))%(a))))
LOCAL void *
scgo_getbuf(scgp, amt)
SCSI *scgp;
long amt;
{
void *ret;
int pagesize;
#ifdef _SC_PAGESIZE
pagesize = sysconf(_SC_PAGESIZE);
#else
pagesize = getpagesize();
#endif
if (scgp->debug > 0) {
js_fprintf((FILE *)scgp->errfile,
"scgo_getbuf: %ld bytes\n", amt);
}
/*
* Damn AIX is a paged system but has no valloc()
*/
scgp->bufbase = ret = malloc((size_t)(amt+pagesize));
if (ret == NULL)
return (ret);
ret = palign(ret, pagesize);
return (ret);
}
LOCAL void
scgo_freebuf(scgp)
SCSI *scgp;
{
if (scgp->bufbase)
free(scgp->bufbase);
scgp->bufbase = NULL;
}
LOCAL int
scgo_numbus(scgp)
SCSI *scgp;
{
return (MAX_SCG);
}
LOCAL BOOL
scgo_havebus(scgp, busno)
SCSI *scgp;
int busno;
{
register int t;
register int l;
if (busno < 0 || busno >= MAX_SCG)
return (FALSE);
if (scgp->local == NULL)
return (FALSE);
for (t = 0; t < MAX_TGT; t++) {
for (l = 0; l < MAX_LUN; l++)
if (scglocal(scgp)->scgfiles[busno][t][l] >= 0)
return (TRUE);
}
return (FALSE);
}
LOCAL int
scgo_fileno(scgp, busno, tgt, tlun)
SCSI *scgp;
int busno;
int tgt;
int tlun;
{
if (busno < 0 || busno >= MAX_SCG ||
tgt < 0 || tgt >= MAX_TGT ||
tlun < 0 || tlun >= MAX_LUN)
return (-1);
if (scgp->local == NULL)
return (-1);
if (scglocal(scgp)->transp != TR_UNKNONW) {
int obusno = scg_scsibus(scgp);
int otgt = scg_target(scgp);
/*
* Try to remember old transport type if possible
*/
if (obusno >= 0 && otgt >= 0) {
scglocal(scgp)->trtypes[obusno][otgt] =
scglocal(scgp)->transp;
}
}
scglocal(scgp)->transp = scglocal(scgp)->trtypes[busno][tgt];
return ((int)scglocal(scgp)->scgfiles[busno][tgt][tlun]);
}
LOCAL int
scgo_initiator_id(scgp)
SCSI *scgp;
{
return (-1);
}
LOCAL void
sciocmd_to_scpassthru(req, pthru_req, sp)
struct sc_iocmd *req;
struct sc_passthru *pthru_req;
struct scg_cmd *sp;
{
fillbytes(pthru_req, sizeof (*pthru_req), '\0');
pthru_req->version = SCSI_VERSION_1;
pthru_req->status_validity = req->status_validity;
pthru_req->scsi_bus_status = req->scsi_bus_status;
pthru_req->adapter_status = req->adapter_status;
pthru_req->adap_q_status = req->adap_q_status;
pthru_req->q_tag_msg = req->q_tag_msg;
pthru_req->flags = req->flags;
pthru_req->devflags = SC_QUIESCE_IO;
pthru_req->q_flags = req->q_flags;
pthru_req->command_length = req->command_length;
pthru_req->autosense_length = 0;
pthru_req->timeout_value = req->timeout_value;
pthru_req->data_length = (unsigned long long)req->data_length;
pthru_req->scsi_id = 0;
pthru_req->lun_id = req->lun;
pthru_req->buffer = req->buffer;
pthru_req->autosense_buffer_ptr = NULL;
movebytes(&sp->cdb, pthru_req->scsi_cdb, 12);
}
LOCAL void
scpassthru_to_sciocmd(pthru_req, req)
struct sc_passthru *pthru_req;
struct sc_iocmd *req;
{
req->data_length = pthru_req->data_length;
req->buffer = pthru_req->buffer;
req->timeout_value = pthru_req->timeout_value;
req->status_validity = pthru_req->status_validity;
req->scsi_bus_status = pthru_req->scsi_bus_status;
req->adapter_status = pthru_req->adapter_status;
req->adap_q_status = pthru_req->adap_q_status;
req->q_tag_msg = pthru_req->q_tag_msg;
req->flags = pthru_req->flags;
}
LOCAL int
sciocmd_to_idepassthru(req, ide_req, sp)
struct sc_iocmd *req;
struct ide_atapi_passthru *ide_req;
struct scg_cmd *sp;
{
fillbytes(ide_req, sizeof (*ide_req), '\0');
if (sp->size > 65535) { /* Too large for IDE */
sp->ux_errno = errno = EINVAL;
return (-1);
} else {
ide_req->buffsize = (ushort)sp->size;
}
if (sp->flags & SCG_RECV_DATA) {
ide_req->flags |= ATA_LBA_MODE | IDE_PASSTHRU_READ;
} else if (sp->size > 0) {
ide_req->flags |= ATA_LBA_MODE;
}
if (sp->size > 0) {
ide_req->data_ptr = (uchar *)sp->addr;
} else {
ide_req->data_ptr = NULL;
}
ide_req->timeout_value = (uint) sp->timeout;
/* IDE cmd length is 12 */
ide_req->atapi_cmd.length = 12;
movebytes(&sp->cdb, &(ide_req->atapi_cmd.packet), 12);
return (0);
}
LOCAL int
do_ioctl(scgp, req, sp)
SCSI *scgp;
struct sc_iocmd *req;
struct scg_cmd *sp;
{
int dkiocmd_ret;
int dkiocmd_errno;
int ret;
int transp = scglocal(scgp)->transp;
struct sc_passthru pthru_req;
struct ide_atapi_passthru ide_req;
if (transp == TR_UNKNONW) {
/* Try with DKIOCMD first. */
if ((dkiocmd_ret = ioctl(scgp->fd, DKIOCMD, req)) >= 0) {
scglocal(scgp)->transp = TR_DKIOCMD;
return (dkiocmd_ret);
} else {
dkiocmd_errno = geterrno();
}
/* Try DKPASSTHRU second. */
sciocmd_to_scpassthru(req, &pthru_req, sp);
if ((ret = ioctl(scgp->fd, DK_PASSTHRU, &pthru_req)) >= 0) {
scglocal(scgp)->transp = TR_DKPASSTHRU;
scpassthru_to_sciocmd(&pthru_req, req);
return (ret);
}
/* Last try IDEPASSTHRU */
if (sciocmd_to_idepassthru(req, &ide_req, sp) < 0) /* Bad size */
return (-1);
if ((ret = ioctl(scgp->fd, IDEPASSTHRU, &ide_req)) >= 0) {
scglocal(scgp)->transp = TR_IDEPASSTHRU;
return (ret);
}
/* Everything failed. */
errno = dkiocmd_errno;
return (dkiocmd_ret);
} else if (transp == TR_DKIOCMD) {
return (ioctl(scgp->fd, DKIOCMD, req));
} else if (transp == TR_DKPASSTHRU) {
sciocmd_to_scpassthru(req, &pthru_req, sp);
ret = ioctl(scgp->fd, DK_PASSTHRU, &pthru_req);
scpassthru_to_sciocmd(&pthru_req, req);
return (ret);
} else if (transp == TR_IDEPASSTHRU) {
if (sciocmd_to_idepassthru(req, &ide_req, sp) < 0)
ret = -1;
else
ret = ioctl(scgp->fd, IDEPASSTHRU, &ide_req);
return (ret);
} else {
/* Shouldn't get here. */
return (-1);
}
}
LOCAL int
scgo_isatapi(scgp)
SCSI *scgp;
{
if (scglocal(scgp)->transp == TR_IDEPASSTHRU)
return (TRUE);
return (FALSE);
}
LOCAL int
scgo_reset(scgp, what)
SCSI *scgp;
int what;
{
if (what == SCG_RESET_NOP)
return (0);
if (what != SCG_RESET_BUS) {
errno = EINVAL;
return (-1);
}
/*
* XXX Does this reset TGT or BUS ???
*/
return (ioctl(scgp->fd, SCIORESET, IDLUN(scg_target(scgp), scg_lun(scgp))));
}
LOCAL int
do_scg_cmd(scgp, sp)
SCSI *scgp;
struct scg_cmd *sp;
{
struct sc_iocmd req;
int ret;
if (sp->cdb_len > 12)
comerrno(EX_BAD, "Can't do %d byte command.\n", sp->cdb_len);
fillbytes(&req, sizeof (req), '\0');
req.flags = SC_ASYNC;
if (sp->flags & SCG_RECV_DATA) {
req.flags |= B_READ;
} else if (sp->size > 0) {
req.flags |= B_WRITE;
}
req.data_length = sp->size;
req.buffer = sp->addr;
req.timeout_value = sp->timeout;
req.command_length = sp->cdb_len;
movebytes(&sp->cdb, req.scsi_cdb, 12);
errno = 0;
ret = do_ioctl(scgp, &req, sp);
if (scgp->debug > 0) {
js_fprintf((FILE *)scgp->errfile, "ret: %d errno: %d (%s)\n", ret, errno, errmsgstr(errno));
js_fprintf((FILE *)scgp->errfile, "data_length: %d\n", req.data_length);
js_fprintf((FILE *)scgp->errfile, "buffer: %p\n", req.buffer);
js_fprintf((FILE *)scgp->errfile, "timeout_value: %d\n", req.timeout_value);
js_fprintf((FILE *)scgp->errfile, "status_validity: %d\n", req.status_validity);
js_fprintf((FILE *)scgp->errfile, "scsi_bus_status: 0x%X\n", req.scsi_bus_status);
js_fprintf((FILE *)scgp->errfile, "adapter_status: 0x%X\n", req.adapter_status);
js_fprintf((FILE *)scgp->errfile, "adap_q_status: 0x%X\n", req.adap_q_status);
js_fprintf((FILE *)scgp->errfile, "q_tag_msg: 0x%X\n", req.q_tag_msg);
js_fprintf((FILE *)scgp->errfile, "flags: 0X%X\n", req.flags);
switch (scglocal(scgp)->transp) {
case TR_UNKNONW:
js_fprintf((FILE *)scgp->errfile, "using ioctl: Unknown\n");
break;
case TR_DKIOCMD:
js_fprintf((FILE *)scgp->errfile, "using ioctl: DKIOCMD\n");
break;
case TR_DKPASSTHRU:
js_fprintf((FILE *)scgp->errfile, "using ioctl: DK_PASSTHRU\n");
break;
case TR_IDEPASSTHRU:
js_fprintf((FILE *)scgp->errfile, "using ioctl: IDEPASSTHRU\n");
break;
}
}
if (ret < 0) {
sp->ux_errno = geterrno();
/*
* Check if SCSI command cound not be send at all.
*/
if (sp->ux_errno == ENOTTY || sp->ux_errno == ENXIO ||
sp->ux_errno == EINVAL || sp->ux_errno == EACCES) {
return (-1);
}
} else {
sp->ux_errno = 0;
}
ret = 0;
sp->sense_count = 0;
sp->resid = 0; /* AIX is the same rubbish as Linux here */
fillbytes(&sp->scb, sizeof (sp->scb), '\0');
fillbytes(&sp->u_sense.cmd_sense, sizeof (sp->u_sense.cmd_sense), '\0');
if (req.status_validity == 0) {
sp->error = SCG_NO_ERROR;
return (0);
}
if (req.status_validity & 1) {
sp->u_scb.cmd_scb[0] = req.scsi_bus_status;
sp->error = SCG_RETRYABLE;
}
if (req.status_validity & 2) {
if (req.adapter_status & SC_NO_DEVICE_RESPONSE) {
sp->error = SCG_FATAL;
} else if (req.adapter_status & SC_CMD_TIMEOUT) {
sp->error = SCG_TIMEOUT;
} else if (req.adapter_status != 0) {
sp->error = SCG_RETRYABLE;
}
}
return (ret);
}
LOCAL int
do_scg_sense(scgp, sp)
SCSI *scgp;
struct scg_cmd *sp;
{
int ret;
struct scg_cmd s_cmd;
fillbytes((caddr_t)&s_cmd, sizeof (s_cmd), '\0');
s_cmd.addr = (caddr_t)sp->u_sense.cmd_sense;
s_cmd.size = sp->sense_len;
s_cmd.flags = SCG_RECV_DATA|SCG_DISRE_ENA;
s_cmd.cdb_len = SC_G0_CDBLEN;
s_cmd.sense_len = CCS_SENSE_LEN;
s_cmd.cdb.g0_cdb.cmd = SC_REQUEST_SENSE;
s_cmd.cdb.g0_cdb.lun = sp->cdb.g0_cdb.lun;
s_cmd.cdb.g0_cdb.count = sp->sense_len;
ret = do_scg_cmd(scgp, &s_cmd);
if (ret < 0)
return (ret);
if (s_cmd.u_scb.cmd_scb[0] & 02) {
/* XXX ??? Check condition on request Sense ??? */
}
sp->sense_count = sp->sense_len - s_cmd.resid;
return (ret);
}
LOCAL int
scgo_send(scgp)
SCSI *scgp;
{
struct scg_cmd *sp = scgp->scmd;
int err = sp->error; /* GCC: error shadows error() */
Uchar status = sp->u_scb.cmd_scb[0];
int ret;
if (scgp->fd < 0) {
sp->error = SCG_FATAL;
return (0);
}
ret = do_scg_cmd(scgp, sp);
if (ret >= 0) {
if (sp->u_scb.cmd_scb[0] & 02)
ret = do_scg_sense(scgp, sp);
}
sp->error = err;
sp->u_scb.cmd_scb[0] = status;
return (ret);
}