First cut at cpu independent disklabels.

There will be niggly little details no doubt..
This commit is contained in:
deraadt 1993-05-20 22:48:23 +00:00
parent 4faa2371bb
commit 941da25e49
10 changed files with 472 additions and 64 deletions

View File

@ -1,4 +1,4 @@
# $Id: files.hp300,v 1.2 1993/05/18 10:36:12 cgd Exp $
# $Id: files.hp300,v 1.3 1993/05/20 22:48:23 deraadt Exp $
#
arch/hp300/hp300/autoconf.c standard
arch/hp300/hp300/clock.c standard clock
@ -16,6 +16,7 @@ arch/hp300/hp300/pmap.c standard
arch/hp300/hp300/sys_machdep.c standard
arch/hp300/hp300/trap.c standard
arch/hp300/hp300/vm_machdep.c standard
arch/hp300/hp300/disksubr.c standard
arch/hp300/dev/dma.c standard
arch/hp300/dev/cd.c optional cd
arch/hp300/dev/vn.c optional vn

View File

@ -1,4 +1,4 @@
# $Id: files.hp300.oldconf,v 1.2 1993/05/18 10:36:12 cgd Exp $
# $Id: files.hp300.oldconf,v 1.3 1993/05/20 22:48:23 deraadt Exp $
#
arch/hp300/hp300/autoconf.c standard
arch/hp300/hp300/clock.c standard clock
@ -16,6 +16,7 @@ arch/hp300/hp300/pmap.c standard
arch/hp300/hp300/sys_machdep.c standard
arch/hp300/hp300/trap.c standard
arch/hp300/hp300/vm_machdep.c standard
arch/hp300/hp300/disksubr.c standard
arch/hp300/dev/dma.c standard
arch/hp300/dev/cd.c optional cd
arch/hp300/dev/vn.c optional vn

View File

@ -0,0 +1 @@
revision 1.1 intentionally removed

View File

@ -1,4 +1,4 @@
# $Id: files.i386,v 1.12 1993/05/20 14:32:43 cgd Exp $
# $Id: files.i386,v 1.13 1993/05/20 22:48:46 deraadt Exp $
#
arch/i386/i386/autoconf.c standard
arch/i386/i386/cons.c standard
@ -15,6 +15,7 @@ arch/i386/i386/pmap.c standard
arch/i386/i386/sys_machdep.c standard
arch/i386/i386/trap.c standard
arch/i386/i386/vm_machdep.c standard
arch/i386/i386/disksubr.c standard
arch/i386/isa/aha1542.c optional aha device-driver requires isa scsi not as
arch/i386/isa/aha1742.c optional ahb device-driver requires isa scsi not as not aha
arch/i386/isa/as.c optional as device-driver requires isa not scsi

View File

@ -0,0 +1,415 @@
/*
* Copyright (c) 1982, 1986, 1988 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*
* @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
*/
#include "param.h"
#include "systm.h"
#include "buf.h"
#include "dkbad.h"
#include "disklabel.h"
#include "syslog.h"
/* encoding of disk minor numbers, should be elsewhere... */
#define dkunit(dev) (minor(dev) >> 3)
#define dkpart(dev) (minor(dev) & 7)
#define dkminor(unit, part) (((unit) << 3) | (part))
#define b_cylin b_resid
/*
* Attempt to read a disk label from a device
* using the indicated stategy routine.
* The label must be partly set up before this:
* secpercyl, secsize and anything required for a block i/o read
* operation in the driver's strategy/start routines
* must be filled in before calling us.
*
* If dos partition table requested, attempt to load it and
* find disklabel inside a DOS partition. Also, if bad block
* table needed, attempt to extract it as well. Return buffer
* for use in signalling errors if requested.
*
* Returns null on success and an error string on failure.
*/
char *
cpu_readdisklabel(dev, strat, lp, osdep)
dev_t dev;
int (*strat)();
register struct disklabel *lp;
struct cpu_disklabel *osdep;
{
struct dos_partition *dp = osdep->dosparts;
struct dkbad *bdp = &osdep->bad;
register struct buf *bp;
struct disklabel *dlp;
char *msg = NULL;
int cyl, dospartoff, i;
/* minimal requirements for archtypal disk label */
if (lp->d_secperunit == 0)
lp->d_secperunit = 0x1fffffff;
lp->d_npartitions = 1;
if (lp->d_partitions[0].p_size == 0)
lp->d_partitions[0].p_size = 0x1fffffff;
lp->d_partitions[0].p_offset = 0;
/* obtain buffer to probe drive with */
bp = geteblk((int)lp->d_secsize);
/* request no partition relocation by driver on I/O operations */
bp->b_dev = makedev(major(dev), dkminor((dkunit(dev)), 3));
/* do dos partitions in the process of getting disklabel? */
dospartoff = 0;
cyl = LABELSECTOR / lp->d_secpercyl;
if (dp) {
struct dos_partition *ap;
/* read master boot record */
bp->b_blkno = DOSBBSECTOR;
bp->b_bcount = lp->d_secsize;
bp->b_flags = B_BUSY | B_READ;
bp->b_cylin = DOSBBSECTOR / lp->d_secpercyl;
(*strat)(bp);
/* if successful, wander through dos partition table */
if (biowait(bp)) {
msg = "dos partition I/O error";
goto done;
} else {
/* XXX how do we check veracity/bounds of this? */
bcopy(bp->b_un.b_addr + DOSPARTOFF, dp,
NDOSPART * sizeof(*dp));
for (i = 0; i < NDOSPART; i++, dp++)
/* is this ours? */
if (dp->dp_size &&
dp->dp_typ == DOSPTYP_386BSD
&& dospartoff == 0) {
/* need sector address for SCSI/IDE,
cylinder for ESDI/ST506/RLL */
dospartoff = dp->dp_start;
cyl = DPCYL(dp->dp_scyl, dp->dp_ssect);
/* update disklabel with details */
lp->d_partitions[0].p_size =
dp->dp_size;
lp->d_partitions[0].p_offset =
dp->dp_start;
lp->d_ntracks = dp->dp_ehd + 1;
lp->d_nsectors = DPSECT(dp->dp_esect);
lp->d_subtype |= (lp->d_subtype & 3)
+ i | DSTYPE_INDOSPART;
lp->d_secpercyl = lp->d_ntracks *
lp->d_nsectors;
}
}
}
/* next, dig out disk label */
bp->b_blkno = dospartoff + LABELSECTOR;
bp->b_cylin = cyl;
bp->b_bcount = lp->d_secsize;
bp->b_flags = B_BUSY | B_READ;
(*strat)(bp);
/* if successful, locate disk label within block and validate */
if (biowait(bp)) {
msg = "disk label I/O error";
goto done;
} else for (dlp = (struct disklabel *)bp->b_un.b_addr;
dlp <= (struct disklabel *)(bp->b_un.b_addr+DEV_BSIZE-sizeof(*dlp));
dlp = (struct disklabel *)((char *)dlp + sizeof(long))) {
if (dlp->d_magic != DISKMAGIC || dlp->d_magic2 != DISKMAGIC) {
if (msg == NULL)
msg = "no disk label";
} else if (dlp->d_npartitions > MAXPARTITIONS ||
dkcksum(dlp) != 0)
msg = "disk label corrupted";
else {
*lp = *dlp;
msg = NULL;
break;
}
}
if (msg)
goto done;
/* obtain bad sector table if requested and present */
if (bdp && (lp->d_flags & D_BADSECT)) {
struct dkbad *db;
i = 0;
do {
/* read a bad sector table */
bp->b_flags = B_BUSY | B_READ;
bp->b_blkno = lp->d_secperunit - lp->d_nsectors + i;
if (lp->d_secsize > DEV_BSIZE)
bp->b_blkno *= lp->d_secsize / DEV_BSIZE;
else
bp->b_blkno /= DEV_BSIZE / lp->d_secsize;
bp->b_bcount = lp->d_secsize;
bp->b_cylin = lp->d_ncylinders - 1;
(*strat)(bp);
/* if successful, validate, otherwise try another */
if (biowait(bp)) {
msg = "bad sector table I/O error";
} else {
db = (struct dkbad *)(bp->b_un.b_addr);
#define DKBAD_MAGIC 0x4321
if (db->bt_mbz == 0
&& db->bt_flag == DKBAD_MAGIC) {
msg = NULL;
*bdp = *db;
break;
} else
msg = "bad sector table corrupted";
}
} while ((bp->b_flags & B_ERROR) && (i += 2) < 10 &&
i < lp->d_nsectors);
}
done:
bp->b_flags = B_INVAL | B_AGE | B_READ;
brelse(bp);
return (msg);
}
/*
* Check new disk label for sensibility
* before setting it.
*/
cpu_setdisklabel(olp, nlp, openmask, osdep)
register struct disklabel *olp, *nlp;
u_long openmask;
struct cpu_disklabel *osdep;
{
struct dos_partition *dp = osdep->dosparts;
register i;
register struct partition *opp, *npp;
/* sanity clause */
if (nlp->d_secpercyl == 0 || nlp->d_secsize == 0
|| (nlp->d_secsize % DEV_BSIZE) != 0)
return(EINVAL);
/* special case to allow disklabel to be invalidated */
if (nlp->d_magic == 0xffffffff) {
*olp = *nlp;
return (0);
}
if (nlp->d_magic != DISKMAGIC || nlp->d_magic2 != DISKMAGIC ||
dkcksum(nlp) != 0)
return (EINVAL);
/* XXX missing check if other dos partitions will be overwritten */
while ((i = ffs((long)openmask)) != 0) {
i--;
openmask &= ~(1 << i);
if (nlp->d_npartitions <= i)
return (EBUSY);
opp = &olp->d_partitions[i];
npp = &nlp->d_partitions[i];
if (npp->p_offset != opp->p_offset || npp->p_size < opp->p_size)
return (EBUSY);
/*
* Copy internally-set partition information
* if new label doesn't include it. XXX
*/
if (npp->p_fstype == FS_UNUSED && opp->p_fstype != FS_UNUSED) {
npp->p_fstype = opp->p_fstype;
npp->p_fsize = opp->p_fsize;
npp->p_frag = opp->p_frag;
npp->p_cpg = opp->p_cpg;
}
}
nlp->d_checksum = 0;
nlp->d_checksum = dkcksum(nlp);
*olp = *nlp;
return (0);
}
/*
* Write disk label back to device after modification.
*/
cpu_writedisklabel(dev, strat, lp, osdep)
dev_t dev;
int (*strat)();
register struct disklabel *lp;
struct cpu_disklabel *osdep;
{
struct dos_partition *dp = osdep->dosparts;
struct buf *bp;
struct disklabel *dlp;
int labelpart, error = 0, dospartoff, cyl, i;
labelpart = dkpart(dev);
#ifdef nope
if (lp->d_partitions[labelpart].p_offset != 0) {
if (lp->d_partitions[0].p_offset != 0)
return (EXDEV); /* not quite right */
labelpart = 0;
}
#else
labelpart = 3;
#endif
bp = geteblk((int)lp->d_secsize);
/* request no partition relocation by driver on I/O operations */
bp->b_dev = makedev(major(dev), dkminor((dkunit(dev)), 3));
/* do dos partitions in the process of getting disklabel? */
dospartoff = 0;
cyl = LABELSECTOR / lp->d_secpercyl;
if (dp) {
bp->b_blkno = DOSBBSECTOR;
bp->b_bcount = lp->d_secsize;
bp->b_flags = B_BUSY | B_READ;
bp->b_cylin = DOSBBSECTOR / lp->d_secpercyl;
(*strat)(bp);
if ((error = biowait(bp)) == 0) {
bcopy(bp->b_un.b_addr + DOSPARTOFF, dp,
NDOSPART * sizeof(*dp));
for (i = 0; i < NDOSPART; i++, dp++)
if(dp->dp_size && dp->dp_typ == DOSPTYP_386BSD
&& dospartoff == 0) {
/* need sector address for SCSI/IDE,
cylinder for ESDI/ST506/RLL */
dospartoff = dp->dp_start;
cyl = dp->dp_scyl |
((dp->dp_ssect & 0xc0) << 2);
}
}
}
#ifdef maybe
/* disklabel in appropriate location? */
if (lp->d_partitions[0].p_offset != 0
&& lp->d_partitions[0].p_offset != dospartoff) {
error = EXDEV;
goto done;
}
#endif
bp->b_blkno = dospartoff + LABELSECTOR;
bp->b_cylin = cyl;
bp->b_bcount = lp->d_secsize;
bp->b_flags = B_READ;
(*strat)(bp);
if (error = biowait(bp))
goto done;
for (dlp = (struct disklabel *)bp->b_un.b_addr;
dlp <= (struct disklabel *)
(bp->b_un.b_addr + lp->d_secsize - sizeof(*dlp));
dlp = (struct disklabel *)((char *)dlp + sizeof(long))) {
if (dlp->d_magic == DISKMAGIC && dlp->d_magic2 == DISKMAGIC &&
dkcksum(dlp) == 0) {
*dlp = *lp;
bp->b_flags = B_WRITE;
(*strat)(bp);
error = biowait(bp);
goto done;
}
}
error = ESRCH;
done:
brelse(bp);
return (error);
}
/*
* Determine the size of the transfer, and make sure it is
* within the boundaries of the partition. Adjust transfer
* if needed, and signal errors or early completion.
*/
int
bounds_check_with_label(struct buf *bp, struct disklabel *lp, int wlabel)
{
struct partition *p = lp->d_partitions + dkpart(bp->b_dev);
int labelsect = lp->d_partitions[0].p_offset;
int maxsz = p->p_size,
sz = (bp->b_bcount + DEV_BSIZE - 1) >> DEV_BSHIFT;
/* overwriting disk label ? */
/* XXX should also protect bootstrap in first 8K */
if (bp->b_blkno + p->p_offset <= LABELSECTOR + labelsect &&
#if LABELSECTOR != 0
bp->b_blkno + p->p_offset + sz > LABELSECTOR + labelsect &&
#endif
(bp->b_flags & B_READ) == 0 && wlabel == 0) {
bp->b_error = EROFS;
goto bad;
}
#if defined(DOSBBSECTOR) && defined(notyet)
/* overwriting master boot record? */
if (bp->b_blkno + p->p_offset <= DOSBBSECTOR &&
(bp->b_flags & B_READ) == 0 && wlabel == 0) {
bp->b_error = EROFS;
goto bad;
}
#endif
/* beyond partition? */
if (bp->b_blkno < 0 || bp->b_blkno + sz > maxsz) {
/* if exactly at end of disk, return an EOF */
if (bp->b_blkno == maxsz) {
bp->b_resid = bp->b_bcount;
return(0);
}
/* or truncate if part of it fits */
sz = maxsz - bp->b_blkno;
if (sz <= 0) {
bp->b_error = EINVAL;
goto bad;
}
bp->b_bcount = sz << DEV_BSHIFT;
}
/* calculate cylinder for disksort to order transfers with */
bp->b_cylin = (bp->b_blkno + p->p_offset) / lp->d_secpercyl;
return(1);
bad:
bp->b_flags |= B_ERROR;
return(-1);
}

View File

@ -125,9 +125,7 @@ struct disk {
#define DKFL_WRITEPROT 0x00040 /* manual unit write protect */
struct wdparams dk_params; /* ESDI/IDE drive/controller parameters */
struct disklabel dk_dd; /* device configuration data */
struct dos_partition
dk_dospartitions[NDOSPART]; /* DOS view of disk */
struct dkbad dk_bad; /* bad sector table */
struct cpu_disklabel dk_cpd;
#ifdef TIHBAD144
long dk_badsect[127]; /* 126 plus trailing -1 marker */
#endif
@ -835,12 +833,10 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
#if defined(TIHMODS) && defined(garbage)
/* wdsetctlr(dev, du); */ /* Maybe do this TIH */
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
0, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
wdsetctlr(dev, du);
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
if (msg) {
#ifdef QUIETWORKS
if((du->dk_flags & DKFL_QUIET) == 0) {
@ -864,8 +860,7 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
}
#else
if (msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0)) {
wdstrategy, &du->dk_dd, &du->dk_cpd) ) {
if((du->dk_flags & DKFL_QUIET) == 0) {
log(LOG_WARNING, "wd%d: cannot find label (%s)\n",
lunit, msg);
@ -1250,7 +1245,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
if ((flag & FWRITE) == 0)
error = EBADF;
else {
du->dk_bad = *(struct dkbad *)addr;
du->dk_cpd.bad = *(struct dkbad *)addr;
#ifdef TIHBAD144
bad144intern(du);
#endif
@ -1270,10 +1265,11 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
case DIOCSDINFO:
if ((flag & FWRITE) == 0)
error = EBADF;
else
else {
error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags&DKFL_BSDLABEL) ? du->dk_openpart : */0,
du->dk_dospartitions);
&du->dk_cpd);
}
if (error == 0) {
du->dk_flags |= DKFL_BSDLABEL;
wdsetctlr(dev, du);
@ -1294,7 +1290,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
error = EBADF;
else if ((error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags & DKFL_BSDLABEL) ? du->dk_openpart :*/ 0,
du->dk_dospartitions)) == 0) {
&du->dk_cpd)) == 0) {
int wlab;
du->dk_flags |= DKFL_BSDLABEL;
@ -1304,8 +1300,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
du->dk_openpart |= (1 << 0); /* XXX */
wlab = du->dk_wlabel;
du->dk_wlabel = 1;
error = writedisklabel(dev, wdstrategy,
&du->dk_dd, du->dk_dospartitions);
error = writedisklabel(dev, wdstrategy, &du->dk_dd, &du->dk_cpd);
du->dk_openpart = du->dk_copenpart | du->dk_bopenpart;
du->dk_wlabel = wlab;
}
@ -1558,13 +1553,15 @@ bad144intern(struct disk *du)
}
for (i = 0; i < 126; i++) {
if (du->dk_bad.bt_bad[i].bt_cyl == 0xffff) {
if (du->dk_cpd.bad.bt_bad[i].bt_cyl == 0xffff) {
break;
} else {
du->dk_badsect[i] =
du->dk_bad.bt_bad[i].bt_cyl * du->dk_dd.d_secpercyl +
(du->dk_bad.bt_bad[i].bt_trksec >> 8) * du->dk_dd.d_nsectors +
(du->dk_bad.bt_bad[i].bt_trksec & 0x00ff);
du->dk_cpd.bad.bt_bad[i].bt_cyl *
du->dk_dd.d_secpercyl +
(du->dk_cpd.bad.bt_bad[i].bt_trksec >> 8) *
du->dk_dd.d_nsectors +
(du->dk_cpd.bad.bt_bad[i].bt_trksec & 0x00ff);
}
}
}

View File

@ -125,9 +125,7 @@ struct disk {
#define DKFL_WRITEPROT 0x00040 /* manual unit write protect */
struct wdparams dk_params; /* ESDI/IDE drive/controller parameters */
struct disklabel dk_dd; /* device configuration data */
struct dos_partition
dk_dospartitions[NDOSPART]; /* DOS view of disk */
struct dkbad dk_bad; /* bad sector table */
struct cpu_disklabel dk_cpd;
#ifdef TIHBAD144
long dk_badsect[127]; /* 126 plus trailing -1 marker */
#endif
@ -835,12 +833,10 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
#if defined(TIHMODS) && defined(garbage)
/* wdsetctlr(dev, du); */ /* Maybe do this TIH */
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
0, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
wdsetctlr(dev, du);
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
if (msg) {
#ifdef QUIETWORKS
if((du->dk_flags & DKFL_QUIET) == 0) {
@ -864,8 +860,7 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
}
#else
if (msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0)) {
wdstrategy, &du->dk_dd, &du->dk_cpd) ) {
if((du->dk_flags & DKFL_QUIET) == 0) {
log(LOG_WARNING, "wd%d: cannot find label (%s)\n",
lunit, msg);
@ -1250,7 +1245,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
if ((flag & FWRITE) == 0)
error = EBADF;
else {
du->dk_bad = *(struct dkbad *)addr;
du->dk_cpd.bad = *(struct dkbad *)addr;
#ifdef TIHBAD144
bad144intern(du);
#endif
@ -1270,10 +1265,11 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
case DIOCSDINFO:
if ((flag & FWRITE) == 0)
error = EBADF;
else
else {
error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags&DKFL_BSDLABEL) ? du->dk_openpart : */0,
du->dk_dospartitions);
&du->dk_cpd);
}
if (error == 0) {
du->dk_flags |= DKFL_BSDLABEL;
wdsetctlr(dev, du);
@ -1294,7 +1290,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
error = EBADF;
else if ((error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags & DKFL_BSDLABEL) ? du->dk_openpart :*/ 0,
du->dk_dospartitions)) == 0) {
&du->dk_cpd)) == 0) {
int wlab;
du->dk_flags |= DKFL_BSDLABEL;
@ -1304,8 +1300,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
du->dk_openpart |= (1 << 0); /* XXX */
wlab = du->dk_wlabel;
du->dk_wlabel = 1;
error = writedisklabel(dev, wdstrategy,
&du->dk_dd, du->dk_dospartitions);
error = writedisklabel(dev, wdstrategy, &du->dk_dd, &du->dk_cpd);
du->dk_openpart = du->dk_copenpart | du->dk_bopenpart;
du->dk_wlabel = wlab;
}
@ -1558,13 +1553,15 @@ bad144intern(struct disk *du)
}
for (i = 0; i < 126; i++) {
if (du->dk_bad.bt_bad[i].bt_cyl == 0xffff) {
if (du->dk_cpd.bad.bt_bad[i].bt_cyl == 0xffff) {
break;
} else {
du->dk_badsect[i] =
du->dk_bad.bt_bad[i].bt_cyl * du->dk_dd.d_secpercyl +
(du->dk_bad.bt_bad[i].bt_trksec >> 8) * du->dk_dd.d_nsectors +
(du->dk_bad.bt_bad[i].bt_trksec & 0x00ff);
du->dk_cpd.bad.bt_bad[i].bt_cyl *
du->dk_dd.d_secpercyl +
(du->dk_cpd.bad.bt_bad[i].bt_trksec >> 8) *
du->dk_dd.d_nsectors +
(du->dk_cpd.bad.bt_bad[i].bt_trksec & 0x00ff);
}
}
}

View File

@ -125,9 +125,7 @@ struct disk {
#define DKFL_WRITEPROT 0x00040 /* manual unit write protect */
struct wdparams dk_params; /* ESDI/IDE drive/controller parameters */
struct disklabel dk_dd; /* device configuration data */
struct dos_partition
dk_dospartitions[NDOSPART]; /* DOS view of disk */
struct dkbad dk_bad; /* bad sector table */
struct cpu_disklabel dk_cpd;
#ifdef TIHBAD144
long dk_badsect[127]; /* 126 plus trailing -1 marker */
#endif
@ -835,12 +833,10 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
#if defined(TIHMODS) && defined(garbage)
/* wdsetctlr(dev, du); */ /* Maybe do this TIH */
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
0, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
wdsetctlr(dev, du);
msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0);
wdstrategy, &du->dk_dd, &du->dk_cpd);
if (msg) {
#ifdef QUIETWORKS
if((du->dk_flags & DKFL_QUIET) == 0) {
@ -864,8 +860,7 @@ wdopen(dev_t dev, int flags, int fmt, struct proc *p)
}
#else
if (msg = readdisklabel(makewddev(major(dev), wdunit(dev), WDRAW),
wdstrategy, &du->dk_dd, du->dk_dospartitions,
&du->dk_bad, 0)) {
wdstrategy, &du->dk_dd, &du->dk_cpd) ) {
if((du->dk_flags & DKFL_QUIET) == 0) {
log(LOG_WARNING, "wd%d: cannot find label (%s)\n",
lunit, msg);
@ -1250,7 +1245,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
if ((flag & FWRITE) == 0)
error = EBADF;
else {
du->dk_bad = *(struct dkbad *)addr;
du->dk_cpd.bad = *(struct dkbad *)addr;
#ifdef TIHBAD144
bad144intern(du);
#endif
@ -1270,10 +1265,11 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
case DIOCSDINFO:
if ((flag & FWRITE) == 0)
error = EBADF;
else
else {
error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags&DKFL_BSDLABEL) ? du->dk_openpart : */0,
du->dk_dospartitions);
&du->dk_cpd);
}
if (error == 0) {
du->dk_flags |= DKFL_BSDLABEL;
wdsetctlr(dev, du);
@ -1294,7 +1290,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
error = EBADF;
else if ((error = setdisklabel(&du->dk_dd, (struct disklabel *)addr,
/*(du->dk_flags & DKFL_BSDLABEL) ? du->dk_openpart :*/ 0,
du->dk_dospartitions)) == 0) {
&du->dk_cpd)) == 0) {
int wlab;
du->dk_flags |= DKFL_BSDLABEL;
@ -1304,8 +1300,7 @@ wdioctl(dev_t dev, int cmd, caddr_t addr, int flag)
du->dk_openpart |= (1 << 0); /* XXX */
wlab = du->dk_wlabel;
du->dk_wlabel = 1;
error = writedisklabel(dev, wdstrategy,
&du->dk_dd, du->dk_dospartitions);
error = writedisklabel(dev, wdstrategy, &du->dk_dd, &du->dk_cpd);
du->dk_openpart = du->dk_copenpart | du->dk_bopenpart;
du->dk_wlabel = wlab;
}
@ -1558,13 +1553,15 @@ bad144intern(struct disk *du)
}
for (i = 0; i < 126; i++) {
if (du->dk_bad.bt_bad[i].bt_cyl == 0xffff) {
if (du->dk_cpd.bad.bt_bad[i].bt_cyl == 0xffff) {
break;
} else {
du->dk_badsect[i] =
du->dk_bad.bt_bad[i].bt_cyl * du->dk_dd.d_secpercyl +
(du->dk_bad.bt_bad[i].bt_trksec >> 8) * du->dk_dd.d_nsectors +
(du->dk_bad.bt_bad[i].bt_trksec & 0x00ff);
du->dk_cpd.bad.bt_bad[i].bt_cyl *
du->dk_dd.d_secpercyl +
(du->dk_cpd.bad.bt_bad[i].bt_trksec >> 8) *
du->dk_dd.d_nsectors +
(du->dk_cpd.bad.bt_bad[i].bt_trksec & 0x00ff);
}
}
}

View File

@ -13,7 +13,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: cd.c,v 1.8 1993/05/20 03:46:15 cgd Exp $
* $Id: cd.c,v 1.9 1993/05/20 22:48:57 deraadt Exp $
*/
#define SPLCD splbio
@ -922,7 +922,6 @@ unsigned char unit;
{
/*unsigned int n, m;*/
char *errstring;
struct dos_partition *dos_partition_p;
struct cd_data *cd = cd_data[unit];
/*******************************************************\

View File

@ -13,7 +13,7 @@
* on the understanding that TFS is not responsible for the correct
* functioning of this software in any circumstances.
*
* $Id: cd.c,v 1.8 1993/05/20 03:46:15 cgd Exp $
* $Id: cd.c,v 1.9 1993/05/20 22:48:57 deraadt Exp $
*/
#define SPLCD splbio
@ -922,7 +922,6 @@ unsigned char unit;
{
/*unsigned int n, m;*/
char *errstring;
struct dos_partition *dos_partition_p;
struct cd_data *cd = cd_data[unit];
/*******************************************************\