📄 scsi-bsd-os.c
字号:
/* @(#)scsi-bsd-os.c 1.2 98/10/06 Copyright 1997 J. Schilling */#ifndef lintstatic char __sccsid[] = "@(#)scsi-bsd-os.c 1.2 98/10/06 Copyright 1997 J. Schilling";#endif/* * Interface for the BSD/OS user-land raw SCSI implementation. * * This is a hack, that tries to emulate the functionality * of the scg driver. * * Copyright (c) 1997 J. Schilling *//* * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; either version 2, or (at your option) * any later version. * * This program is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License * along with this program; see the file COPYING. If not, write to * the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */#undef sense#define scsi_sense bsdi_scsi_sense#define scsi_inquiry bsdi_scsi_inquiry/* * Must use -I/sys... * The next two files are in /sys/dev/scsi */#include <dev/scsi/scsi.h>#include <dev/scsi/scsi_ioctl.h>#define MAX_SCG 8 /* Max # of SCSI controllers */#define MAX_TGT 16#define MAX_LUN 8LOCAL short scgfiles[MAX_SCG][MAX_TGT][MAX_LUN];#include <machine/param.h>#define MAX_DMA_BSDI MAXPHYS /* More makes problems */LOCAL int scsi_send __PR((int f, struct scg_cmd *sp));LOCAL BOOL scsi_setup __PR((int f, int busno, int tgt, int tlun));EXPORTint scsi_open(device, busno, tgt, tlun) char *device; int busno; int tgt; int tlun;{ register int f; register int b; register int t; register int l; register int nopen = 0; char devname[64]; for (b=0; b < MAX_SCG; b++) { for (t=0; t < MAX_TGT; t++) { for (l=0; l < MAX_LUN ; l++) scgfiles[b][t][l] = (short)-1; } } if (*device != '\0' || (busno == -2 && tgt == -2)) goto openbydev; if (busno >= 0 && tgt >= 0 && tlun >= 0) { if (busno >= MAX_SCG || tgt >= MAX_TGT || tlun >= MAX_LUN) return (-1); sprintf(devname, "/dev/su%d-%d-%d", busno, tgt, tlun); f = open(devname, O_RDWR|O_NONBLOCK); if (f < 0) { goto openbydev; } scgfiles[busno][tgt][tlun] = f; return(1); } else for (b=0; b < MAX_SCG; b++) { for (t=0; t < MAX_TGT; t++) { for (l=0; l < MAX_LUN ; l++) { sprintf(devname, "/dev/su%d-%d-%d", b, t, l); f = open(devname, O_RDWR|O_NONBLOCK);/* error("open (%s) = %d\n", devname, f);*/ if (f < 0) { if (errno != ENOENT && errno != ENXIO && errno != ENODEV) comerr("Cannot open '%s'.\n", devname); } else { if (scsi_setup(f, b, t, l)) nopen++; } } } } /* * Could not open /dev/su-* or got dev=devname:b,l,l / dev=devname:@,l * We do the apropriate tests and try our best. */openbydev: if (nopen == 0) { if (device[0] == '\0') return (0); f = open(device, O_RDWR|O_NONBLOCK); if (f < 0) return (0); if (tlun == -2) { /* If 'lun' is not known, we reject */ close(f); errno = EINVAL; return (0); } scsibus = busno = 0; /* use fake number, we cannot get it */ target = tgt = 0; /* use fake number, we cannot get it */ /* 'lun' has been specified on command line */ if (scsi_setup(f, busno, tgt, tlun)) nopen++; } return (nopen);}LOCAL BOOLscsi_setup(f, busno, tgt, tlun) int f; int busno; int tgt; int tlun;{ int Bus; int Target; int Lun; BOOL onetarget = FALSE; if (scsibus >= 0 && target >= 0 && lun >= 0) onetarget = TRUE; /* * Unfortunately there is no way to get the right values from kernel. */ Bus = busno; Target = tgt; Lun = tlun; if (debug) printf("Bus: %d Target: %d Lun: %d\n", Bus, Target, Lun); if (Bus >= MAX_SCG || Target >= 8 || Lun >= 8) { close(f); return (FALSE); } if (scgfiles[Bus][Target][Lun] == (short)-1) scgfiles[Bus][Target][Lun] = (short)f; if (onetarget) { if (Bus == busno && Target == tgt && Lun == tlun) { return (TRUE); } else { scgfiles[Bus][Target][Lun] = (short)-1; close(f); } } return (FALSE);}LOCAL longscsi_maxdma(){ long maxdma = MAX_DMA_BSDI; return (maxdma);}EXPORT void *scsi_getbuf(amt) long amt;{ void *ret; if (scg_maxdma == 0) scg_maxdma = scsi_maxdma(); if (amt <= 0 || amt > scg_maxdma) return ((void *)0); if (debug) printf("scsi_getbuf: %ld bytes\n", amt); ret = malloc((size_t)(amt)); return (ret);}EXPORTBOOL scsi_havebus(busno) int busno;{ register int t; register int l; if (busno < 0 || busno >= MAX_SCG) return (FALSE); for (t=0; t < MAX_TGT; t++) { for (l=0; l < MAX_LUN ; l++) if (scgfiles[busno][t][l] >= 0) return (TRUE); } return (FALSE);}EXPORTint scsi_fileno(busno, tgt, tlun) int busno; int tgt; int tlun;{ if (busno < 0 || busno >= MAX_SCG || tgt < 0 || tgt >= MAX_TGT || tlun < 0 || tlun >= MAX_LUN) return (-1); return ((int)scgfiles[busno][tgt][tlun]);}EXPORTint scsi_isatapi(){ return (FALSE);}EXPORTint scsireset(){ /* * Cannot reset on BSD/OS */ return (-1);}LOCAL intscsi_send(int f, struct scg_cmd *sp){ scsi_user_cdb_t suc; int ret = 0;/* printf("f: %d\n", f);*/ if (f < 0) { sp->error = SCG_FATAL; return (0); } /* Zero the structure... */ fillbytes(&suc, sizeof(suc), '\0'); /* Read or write? */ if (sp->flags & SCG_RECV_DATA) { suc.suc_flags |= SUC_READ; } else if (sp->size > 0) { suc.suc_flags |= SUC_WRITE; } suc.suc_timeout = sp->timeout; suc.suc_cdblen = sp->cdb_len; movebytes(sp->cdb.cmd_cdb, suc.suc_cdb, suc.suc_cdblen); suc.suc_datalen = sp->size; suc.suc_data = sp->addr; if (ioctl(f, SCSIRAWCDB, &suc) < 0) { ret = -1; sp->ux_errno = geterrno(); if (sp->ux_errno != ENOTTY) ret = 0; } else { sp->ux_errno = 0; if (suc.suc_sus.sus_status != STS_GOOD) sp->ux_errno = EIO; } fillbytes(&sp->scb, sizeof(sp->scb), '\0'); fillbytes(&sp->u_sense.cmd_sense, sizeof(sp->u_sense.cmd_sense), '\0');#if 0 /* * Unfortunalety, BSD/OS has no idea of DMA residual count. */ sp->resid = req.datalen - req.datalen_used; sp->sense_count = req.senselen_used;#else sp->resid = 0; sp->sense_count = sizeof(suc.suc_sus.sus_sense);#endif if (sp->sense_count > SCG_MAX_SENSE) sp->sense_count = SCG_MAX_SENSE; movebytes(suc.suc_sus.sus_sense, sp->u_sense.cmd_sense, sp->sense_count); sp->u_scb.cmd_scb[0] = suc.suc_sus.sus_status; switch (suc.suc_sus.sus_status) { case STS_GOOD: sp->error = SCG_NO_ERROR; break; case STS_CMD_TERMINATED:sp->error = SCG_TIMEOUT; break; case STS_BUSY: sp->error = SCG_RETRYABLE; break; case STS_CHECKCOND: sp->error = SCG_RETRYABLE; break; case STS_QUEUE_FULL: sp->error = SCG_RETRYABLE; break; default: sp->error = SCG_FATAL; break; } return (ret);}#define sense u_sense.Sense#undef scsi_sense#undef scsi_inquiry
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -