1993-09-29 09:08:37 +03:00
|
|
|
/*
|
|
|
|
* 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.
|
|
|
|
*
|
1993-11-29 03:40:36 +03:00
|
|
|
* from: from: @(#)ufs_disksubr.c 7.16 (Berkeley) 5/4/91
|
1994-02-22 04:16:33 +03:00
|
|
|
* $Id: disksubr.c,v 1.6 1994/02/22 01:16:33 briggs Exp $
|
1993-09-29 09:08:37 +03:00
|
|
|
*/
|
|
|
|
/*-
|
|
|
|
* Copyright (C) 1993 Allen K. Briggs, Chris P. Caputo,
|
|
|
|
* Michael L. Finch, Bradley A. Grantham, and
|
|
|
|
* Lawrence A. Kesteloot
|
|
|
|
* 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 Alice Group.
|
|
|
|
* 4. The names of the Alice Group or any of its members may not be used
|
|
|
|
* to endorse or promote products derived from this software without
|
|
|
|
* specific prior written permission.
|
|
|
|
*
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY THE ALICE GROUP ``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 ALICE GROUP 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.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
/* rewritten, 2-5-93 MLF */
|
|
|
|
/* its alot cleaner now, and adding support for new partition types
|
|
|
|
isn't a bitch anymore
|
|
|
|
known bugs:
|
|
|
|
1) when only an HFS part exists on a drive it gets assigned to "B"
|
|
|
|
this is because of line 623 of sd.c, I think this line should go.
|
|
|
|
2) /sbin/disklabel expects the whole disk to be in "D", we put it in
|
|
|
|
"C" (I think) and we don't set that position in the disklabel structure
|
|
|
|
as used. Again, not my fault.
|
|
|
|
*/
|
|
|
|
#include <sys/param.h>
|
|
|
|
#include <sys/systm.h>
|
|
|
|
#include <sys/buf.h>
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
#include <sys/syslog.h>
|
1993-09-29 09:08:37 +03:00
|
|
|
|
|
|
|
#include "dpme.h" /* MF the structure of a mac partition entry */
|
|
|
|
|
|
|
|
#define b_cylin b_resid
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
static int print=0;
|
1993-09-29 09:08:37 +03:00
|
|
|
static char *mstr2upper(char *str);
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
#define ROOT 1
|
|
|
|
#define UFS 2
|
|
|
|
#define SWAP 3
|
|
|
|
#define HFS 4
|
|
|
|
#define SCRATCH 5
|
|
|
|
|
|
|
|
int getFreeLabelEntry(struct disklabel *lp)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
find an entry in the disk label that is unused and return it
|
|
|
|
or -1 if no entry
|
|
|
|
*/
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
for(i=0;i<MAXPARTITIONS;i++)
|
|
|
|
{
|
|
|
|
if (lp->d_partitions[i].p_fstype==FS_UNUSED)
|
|
|
|
return i;
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
int whichType(struct partmapentry *part)
|
|
|
|
{
|
|
|
|
struct blockzeroblock *bzb;
|
|
|
|
|
|
|
|
/*
|
|
|
|
figure out what the type of the given part is and return it
|
|
|
|
*/
|
|
|
|
if (part->pmPartType[0]=='\0') return 0;
|
|
|
|
|
|
|
|
if (strcmp(PART_DRIVER_TYPE,(char *)part->pmPartType)==0 ) return 0;
|
|
|
|
if (strcmp(PART_PARTMAP_TYPE,(char *)part->pmPartType)==0 ) return 0;
|
|
|
|
|
|
|
|
if (strcmp(PART_UNIX_TYPE,(char *)part->pmPartType)==0)
|
|
|
|
{
|
|
|
|
/* unix part, swap, root, usr */
|
|
|
|
bzb= (struct blockzeroblock *)(&part->pmBootArgs);
|
|
|
|
if (bzb->bzbMagic!=BZB_MAGIC)
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if(bzb->bzbFlags & BZB_ROOTFS) return ROOT;
|
|
|
|
|
|
|
|
if(bzb->bzbFlags & BZB_USRFS) return UFS;
|
|
|
|
|
|
|
|
if(bzb->bzbType == BZB_TYPESWAP) return SWAP;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
if (strcmp(PART_MAC_TYPE,(char *)part->pmPartType)==0 ) return HFS;
|
|
|
|
|
|
|
|
/*
|
|
|
|
if (strcmp(PART_SCRATCH,(char *)part->pmPartType)==0 ) return SCRATCH;
|
|
|
|
*/
|
|
|
|
|
|
|
|
return SCRATCH; /* no known type, but label it, anyway */
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
int fixPartTable(struct partmapentry *partTable,long size,char *base)
|
|
|
|
{
|
|
|
|
int i=0;
|
|
|
|
struct partmapentry *pmap;
|
|
|
|
|
|
|
|
/*
|
|
|
|
take part table in crappy form, place it in a structure we can depend
|
|
|
|
upon. make sure names are null terminated. Capitalize the names
|
|
|
|
of part types.
|
|
|
|
*/
|
|
|
|
|
|
|
|
for(i=0;i<MAXPARTITIONS;i++)
|
|
|
|
{
|
|
|
|
pmap=(struct partmapentry *)((i*size)+base);
|
|
|
|
pmap->pmPartName[31]='\0';
|
|
|
|
pmap->pmPartType[31]='\0';
|
|
|
|
|
|
|
|
mstr2upper((char *)pmap->pmPartType);
|
|
|
|
|
|
|
|
if (pmap->pmSig!=DPME_MAGIC) /* this is not valid */
|
|
|
|
pmap->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
partTable[i]=*pmap;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
int setRoot(struct partmapentry *part,struct disklabel *lp,int slot)
|
|
|
|
{
|
|
|
|
lp->d_partitions[slot].p_size =part->pmPartBlkCnt;
|
|
|
|
lp->d_partitions[slot].p_offset=part->pmPyPartStart;
|
|
|
|
lp->d_partitions[slot].p_fstype=FS_BSDFFS;
|
|
|
|
|
1994-02-22 04:16:33 +03:00
|
|
|
#if PRINT_DISKLABELS
|
1994-02-10 07:29:11 +03:00
|
|
|
printf("%c: Root '%s' at %d size %d\n",slot+'a',
|
|
|
|
part->pmPartName,
|
|
|
|
part->pmPyPartStart,
|
|
|
|
part->pmPartBlkCnt);
|
1994-02-22 04:16:33 +03:00
|
|
|
#endif
|
1994-02-10 07:29:11 +03:00
|
|
|
|
|
|
|
part->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int setSwap(struct partmapentry *part,struct disklabel *lp,int slot)
|
|
|
|
{
|
|
|
|
lp->d_partitions[slot].p_size =part->pmPartBlkCnt;
|
|
|
|
lp->d_partitions[slot].p_offset=part->pmPyPartStart;
|
|
|
|
lp->d_partitions[slot].p_fstype=FS_SWAP;
|
|
|
|
|
1994-02-22 04:16:33 +03:00
|
|
|
#if PRINT_DISKLABELS
|
1994-02-10 07:29:11 +03:00
|
|
|
printf("%c: Swap '%s' at %d size %d\n",slot+'a',
|
|
|
|
part->pmPartName,
|
|
|
|
part->pmPyPartStart,
|
|
|
|
part->pmPartBlkCnt);
|
1994-02-22 04:16:33 +03:00
|
|
|
#endif
|
1994-02-10 07:29:11 +03:00
|
|
|
|
|
|
|
part->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int setUfs(struct partmapentry *part,struct disklabel *lp,int slot)
|
|
|
|
{
|
|
|
|
lp->d_partitions[slot].p_size =part->pmPartBlkCnt;
|
|
|
|
lp->d_partitions[slot].p_offset=part->pmPyPartStart;
|
|
|
|
lp->d_partitions[slot].p_fstype=FS_BSDFFS;
|
|
|
|
|
1994-02-22 04:16:33 +03:00
|
|
|
#if PRINT_DISKLABELS
|
1994-02-10 07:29:11 +03:00
|
|
|
printf("%c: Usr '%s' at %d size %d\n",slot+'a',
|
|
|
|
part->pmPartName,
|
|
|
|
part->pmPyPartStart,
|
|
|
|
part->pmPartBlkCnt);
|
1994-02-22 04:16:33 +03:00
|
|
|
#endif
|
1994-02-10 07:29:11 +03:00
|
|
|
|
|
|
|
part->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int setHfs(struct partmapentry *part,struct disklabel *lp,int slot)
|
|
|
|
{
|
|
|
|
lp->d_partitions[slot].p_size =part->pmPartBlkCnt;
|
|
|
|
lp->d_partitions[slot].p_offset=part->pmPyPartStart;
|
|
|
|
lp->d_partitions[slot].p_fstype=FS_HFS;
|
|
|
|
|
1994-02-22 04:16:33 +03:00
|
|
|
#if PRINT_DISKLABELS
|
1994-02-10 07:29:11 +03:00
|
|
|
printf("%c: HFS '%s' at %d size %d\n",slot+'a',
|
|
|
|
part->pmPartName,
|
|
|
|
part->pmPyPartStart,
|
|
|
|
part->pmPartBlkCnt);
|
1994-02-22 04:16:33 +03:00
|
|
|
#endif
|
1994-02-10 07:29:11 +03:00
|
|
|
|
|
|
|
part->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int setScratch(struct partmapentry *part,struct disklabel *lp,int slot)
|
|
|
|
{
|
|
|
|
lp->d_partitions[slot].p_size =part->pmPartBlkCnt;
|
|
|
|
lp->d_partitions[slot].p_offset=part->pmPyPartStart;
|
|
|
|
lp->d_partitions[slot].p_fstype=FS_OTHER;
|
|
|
|
|
1994-02-22 04:16:33 +03:00
|
|
|
#if PRINT_DISKLABELS
|
1994-02-10 07:29:11 +03:00
|
|
|
printf("%c: Other (%s) '%s' at %d size %d\n",slot+'a',
|
|
|
|
part->pmPartType,
|
|
|
|
part->pmPartName,
|
|
|
|
part->pmPyPartStart,
|
|
|
|
part->pmPartBlkCnt);
|
1994-02-22 04:16:33 +03:00
|
|
|
#endif
|
1994-02-10 07:29:11 +03:00
|
|
|
|
|
|
|
part->pmPartType[0]='\0';
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
int getNamedType(struct partmapentry *part,struct disklabel *lp,int type, int alt)
|
|
|
|
{
|
|
|
|
struct blockzeroblock *bzb;
|
|
|
|
int i=0;
|
|
|
|
|
|
|
|
for(i=0;i<MAXPARTITIONS;i++)
|
|
|
|
{
|
|
|
|
if (whichType(&(part[i]))==type)
|
|
|
|
{
|
|
|
|
switch(type)
|
|
|
|
{
|
|
|
|
case ROOT:
|
|
|
|
bzb = (struct blockzeroblock *)
|
|
|
|
(&part[i].pmBootArgs);
|
|
|
|
if (alt >= 0 && alt != bzb->bzbCluster)
|
|
|
|
goto skip;
|
|
|
|
setRoot(&(part[i]),lp,0);
|
|
|
|
break;
|
|
|
|
case UFS:
|
|
|
|
bzb = (struct blockzeroblock *)
|
|
|
|
(&part[i].pmBootArgs);
|
|
|
|
if (alt >= 0 && alt != bzb->bzbCluster)
|
|
|
|
goto skip;
|
|
|
|
setUfs(&(part[i]),lp,6);
|
|
|
|
break;
|
|
|
|
case SWAP:
|
|
|
|
setSwap(&(part[i]),lp,1);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
printf("disksubr.c: can't do type \n",type);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
skip:
|
|
|
|
}
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
1993-09-29 09:08:37 +03:00
|
|
|
/*
|
|
|
|
* Attempt to read a disk label from a device
|
|
|
|
* using the indicated stategy routine.
|
|
|
|
* The label must be partly set up before this:
|
|
|
|
* secpercyl and anything required in the strategy routine
|
|
|
|
* (e.g., sector size) must be filled in before calling us.
|
|
|
|
* Returns null on success and an error string on failure.
|
|
|
|
*/
|
|
|
|
char *
|
1994-01-21 03:20:57 +03:00
|
|
|
readdisklabel(dev, strat, lp, osdep)
|
1993-09-29 09:08:37 +03:00
|
|
|
dev_t dev;
|
1994-01-21 03:20:57 +03:00
|
|
|
void (*strat)();
|
1993-09-29 09:08:37 +03:00
|
|
|
register struct disklabel *lp;
|
|
|
|
struct cpu_disklabel *osdep;
|
|
|
|
{
|
|
|
|
register struct buf *bp;
|
|
|
|
char *msg = NULL;
|
|
|
|
struct blockzeroblock *bzb;
|
|
|
|
|
|
|
|
/* MF
|
|
|
|
here's what i'm gonna do:
|
|
|
|
read in the entire diskpartition table, it may be bigger or smaller
|
|
|
|
than MAXPARTITIONS but read that many entries. Each entry has a magic
|
|
|
|
number so we'll know if an entry is crap.
|
|
|
|
next fill in the disklabel with info like this
|
1994-02-10 07:29:11 +03:00
|
|
|
next fill in the root, usr, and swap parts.
|
|
|
|
Then look for anything else and fit it in
|
1993-09-29 09:08:37 +03:00
|
|
|
A: root
|
|
|
|
B: Swap
|
1994-02-10 07:29:11 +03:00
|
|
|
C: Whole disk
|
1993-09-29 09:08:37 +03:00
|
|
|
G: Usr
|
|
|
|
|
|
|
|
|
|
|
|
I'm not entirely sure what netbsd386 wants in c &d
|
|
|
|
386bsd wants other stuff, so i'll leave them alone
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
AKB -- I added to Mike's original algorithm by searching for a bzbCluster
|
|
|
|
of zero for root, first. This allows A/UX to live on cluster 1 and
|
|
|
|
NetBSD to live on cluster 0--regardless of the actual order on the
|
|
|
|
disk. This whole algorithm should probably be changed in the future.
|
1993-09-29 09:08:37 +03:00
|
|
|
|
|
|
|
*/
|
|
|
|
if (lp->d_secperunit == 0)
|
|
|
|
lp->d_secperunit = 0x1fffffff;
|
|
|
|
|
1993-12-15 06:27:50 +03:00
|
|
|
if (lp->d_secpercyl == 0) {
|
|
|
|
return msg = "Zero secpercyl";
|
|
|
|
}
|
1993-09-29 09:08:37 +03:00
|
|
|
bp = geteblk((int)lp->d_secsize * MAXPARTITIONS);
|
|
|
|
|
|
|
|
bp->b_dev = dev;
|
|
|
|
bp->b_blkno = 1; /* pmap starts at block 1 */
|
|
|
|
bp->b_bcount = lp->d_secsize * MAXPARTITIONS;
|
|
|
|
bp->b_flags = B_BUSY | B_READ;
|
|
|
|
bp->b_cylin = 1 / lp->d_secpercyl;
|
|
|
|
(*strat)(bp);
|
|
|
|
if (biowait(bp)) {
|
|
|
|
msg = "I/O error";
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
int i=0;
|
1994-02-10 07:29:11 +03:00
|
|
|
struct partmapentry pmap[MAXPARTITIONS];
|
|
|
|
|
|
|
|
fixPartTable(pmap,lp->d_secsize,bp->b_un.b_addr);
|
|
|
|
if (getNamedType(pmap,lp,ROOT, 0))
|
|
|
|
getNamedType(pmap,lp,ROOT, -1);
|
|
|
|
if (getNamedType(pmap,lp,UFS, 0))
|
|
|
|
getNamedType(pmap,lp,UFS, -1);
|
|
|
|
getNamedType(pmap,lp,SWAP, -1);
|
1993-09-29 09:08:37 +03:00
|
|
|
for(i=0;i<MAXPARTITIONS;i++)
|
|
|
|
{
|
1994-02-10 07:29:11 +03:00
|
|
|
int partType;
|
|
|
|
int slot;
|
1993-09-29 09:08:37 +03:00
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
slot=getFreeLabelEntry(lp);
|
|
|
|
if (slot < 0)
|
|
|
|
break;
|
1993-09-29 09:08:37 +03:00
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
partType=whichType(&(pmap[i]));
|
1993-09-29 09:08:37 +03:00
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
switch (partType)
|
1993-09-29 09:08:37 +03:00
|
|
|
{
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
case ROOT:
|
|
|
|
/*
|
|
|
|
another root part will turn into a plain old UFS partition,
|
|
|
|
live with it.
|
|
|
|
*/
|
|
|
|
case UFS:
|
|
|
|
setUfs(&(pmap[i]),lp,slot);
|
|
|
|
break;
|
|
|
|
case SWAP:
|
|
|
|
setSwap(&(pmap[i]),lp,slot);
|
|
|
|
break;
|
|
|
|
case HFS:
|
|
|
|
setHfs(&(pmap[i]),lp,slot);
|
|
|
|
break;
|
|
|
|
case SCRATCH:
|
|
|
|
setScratch(&(pmap[i]),lp,slot);
|
|
|
|
break;
|
|
|
|
default:
|
|
|
|
break;
|
1993-09-29 09:08:37 +03:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
1994-02-10 07:29:11 +03:00
|
|
|
|
1993-09-29 09:08:37 +03:00
|
|
|
lp->d_npartitions=MAXPARTITIONS;
|
|
|
|
|
|
|
|
bp->b_flags = B_INVAL | B_AGE;
|
|
|
|
brelse(bp);
|
|
|
|
return (msg);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Check new disk label for sensibility
|
|
|
|
* before setting it.
|
|
|
|
*/
|
1994-01-21 03:20:57 +03:00
|
|
|
setdisklabel(olp, nlp, openmask, osdep)
|
1993-09-29 09:08:37 +03:00
|
|
|
register struct disklabel *olp, *nlp;
|
|
|
|
u_long openmask;
|
|
|
|
struct cpu_disklabel *osdep;
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
register i;
|
|
|
|
register struct partition *opp, *npp;
|
|
|
|
|
|
|
|
if (nlp->d_magic != DISKMAGIC || nlp->d_magic2 != DISKMAGIC ||
|
|
|
|
dkcksum(nlp) != 0)
|
|
|
|
return (EINVAL);
|
|
|
|
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;
|
|
|
|
#endif
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* encoding of disk minor numbers, should be elsewhere... */
|
|
|
|
#define dkunit(dev) (minor(dev) >> 3)
|
|
|
|
#define dkpart(dev) (minor(dev) & 07)
|
|
|
|
#define dkminor(unit, part) (((unit) << 3) | (part))
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Write disk label back to device after modification.
|
|
|
|
*
|
|
|
|
* MF - 8-14-93 This function is never called. It is here just in case
|
|
|
|
* we want to write dos disklabels some day. Really!
|
|
|
|
*/
|
1994-01-21 03:20:57 +03:00
|
|
|
writedisklabel(dev, strat, lp, osdep)
|
1993-09-29 09:08:37 +03:00
|
|
|
dev_t dev;
|
1994-01-21 03:20:57 +03:00
|
|
|
void (*strat)();
|
1993-09-29 09:08:37 +03:00
|
|
|
register struct disklabel *lp;
|
|
|
|
struct cpu_disklabel *osdep;
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
struct buf *bp;
|
|
|
|
struct disklabel *dlp;
|
|
|
|
int labelpart;
|
|
|
|
int error = 0;
|
|
|
|
|
|
|
|
labelpart = dkpart(dev);
|
|
|
|
if (lp->d_partitions[labelpart].p_offset != 0) {
|
|
|
|
if (lp->d_partitions[0].p_offset != 0)
|
|
|
|
return (EXDEV); /* not quite right */
|
|
|
|
labelpart = 0;
|
|
|
|
}
|
|
|
|
bp = geteblk((int)lp->d_secsize);
|
|
|
|
bp->b_dev = makedev(major(dev), dkminor(dkunit(dev), labelpart));
|
|
|
|
bp->b_blkno = LABELSECTOR;
|
|
|
|
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);
|
|
|
|
#else
|
|
|
|
return 0;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* 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 0 /* MF this is crap, especially on swap !! */
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#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);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
static int mtoupper(int c)
|
|
|
|
{
|
|
|
|
if (( c>='a' ) && ( c<='z') )
|
|
|
|
return ( c-'a' + 'A' );
|
|
|
|
else
|
|
|
|
return c;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
static char *mstr2upper(char *str)
|
|
|
|
{
|
|
|
|
char *p;
|
|
|
|
for(p=str;*p;p++)
|
|
|
|
*p=mtoupper(*p);
|
|
|
|
|
|
|
|
return str;
|
|
|
|
}
|