disksubr.c revision 1.3
11.3Scgd/*	$NetBSD: disksubr.c,v 1.3 1994/10/26 21:10:20 cgd Exp $	*/
21.3Scgd
31.1Sderaadt/*
41.1Sderaadt * Copyright (c) 1982, 1986, 1988 Regents of the University of California.
51.1Sderaadt * All rights reserved.
61.1Sderaadt *
71.1Sderaadt * Redistribution and use in source and binary forms, with or without
81.1Sderaadt * modification, are permitted provided that the following conditions
91.1Sderaadt * are met:
101.1Sderaadt * 1. Redistributions of source code must retain the above copyright
111.1Sderaadt *    notice, this list of conditions and the following disclaimer.
121.1Sderaadt * 2. Redistributions in binary form must reproduce the above copyright
131.1Sderaadt *    notice, this list of conditions and the following disclaimer in the
141.1Sderaadt *    documentation and/or other materials provided with the distribution.
151.1Sderaadt * 3. All advertising materials mentioning features or use of this software
161.1Sderaadt *    must display the following acknowledgement:
171.1Sderaadt *	This product includes software developed by the University of
181.1Sderaadt *	California, Berkeley and its contributors.
191.1Sderaadt * 4. Neither the name of the University nor the names of its contributors
201.1Sderaadt *    may be used to endorse or promote products derived from this software
211.1Sderaadt *    without specific prior written permission.
221.1Sderaadt *
231.1Sderaadt * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
241.1Sderaadt * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
251.1Sderaadt * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
261.1Sderaadt * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
271.1Sderaadt * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
281.1Sderaadt * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
291.1Sderaadt * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
301.1Sderaadt * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
311.1Sderaadt * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
321.1Sderaadt * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
331.1Sderaadt * SUCH DAMAGE.
341.1Sderaadt *
351.3Scgd *	@(#)ufs_disksubr.c	7.16 (Berkeley) 5/4/91
361.1Sderaadt */
371.1Sderaadt
381.2Sglass#include "param.h"
391.2Sglass#include "systm.h"
401.2Sglass#include "buf.h"
411.2Sglass#include "disklabel.h"
421.2Sglass#include "syslog.h"
431.1Sderaadt
441.1Sderaadt#define	b_cylin	b_resid
451.1Sderaadt
461.1Sderaadt/*
471.1Sderaadt * Attempt to read a disk label from a device
481.1Sderaadt * using the indicated stategy routine.
491.1Sderaadt * The label must be partly set up before this:
501.1Sderaadt * secpercyl and anything required in the strategy routine
511.1Sderaadt * (e.g., sector size) must be filled in before calling us.
521.1Sderaadt * Returns null on success and an error string on failure.
531.1Sderaadt */
541.1Sderaadtchar *
551.1Sderaadtreaddisklabel(dev, strat, lp, osdep)
561.1Sderaadt	dev_t dev;
571.1Sderaadt	void (*strat)();
581.1Sderaadt	register struct disklabel *lp;
591.1Sderaadt	struct cpu_disklabel *osdep;
601.1Sderaadt{
611.1Sderaadt	register struct buf *bp;
621.1Sderaadt	struct disklabel *dlp;
631.1Sderaadt	char *msg = NULL;
641.1Sderaadt
651.1Sderaadt	if (lp->d_secperunit == 0)
661.1Sderaadt		lp->d_secperunit = 0x1fffffff;
671.1Sderaadt	lp->d_npartitions = 1;
681.1Sderaadt	if (lp->d_partitions[0].p_size == 0)
691.1Sderaadt		lp->d_partitions[0].p_size = 0x1fffffff;
701.1Sderaadt	lp->d_partitions[0].p_offset = 0;
711.1Sderaadt
721.1Sderaadt	bp = geteblk((int)lp->d_secsize);
731.1Sderaadt	bp->b_dev = dev;
741.1Sderaadt	bp->b_blkno = LABELSECTOR;
751.1Sderaadt	bp->b_bcount = lp->d_secsize;
761.1Sderaadt	bp->b_flags = B_BUSY | B_READ;
771.1Sderaadt	bp->b_cylin = LABELSECTOR / lp->d_secpercyl;
781.1Sderaadt	(*strat)(bp);
791.1Sderaadt	if (biowait(bp)) {
801.1Sderaadt		msg = "I/O error";
811.1Sderaadt	} else for (dlp = (struct disklabel *)bp->b_un.b_addr;
821.1Sderaadt	    dlp <= (struct disklabel *)(bp->b_un.b_addr+DEV_BSIZE-sizeof(*dlp));
831.1Sderaadt	    dlp = (struct disklabel *)((char *)dlp + sizeof(long))) {
841.1Sderaadt		if (dlp->d_magic != DISKMAGIC || dlp->d_magic2 != DISKMAGIC) {
851.1Sderaadt			if (msg == NULL)
861.1Sderaadt				msg = "no disk label";
871.1Sderaadt		} else if (dlp->d_npartitions > MAXPARTITIONS ||
881.1Sderaadt			   dkcksum(dlp) != 0)
891.1Sderaadt			msg = "disk label corrupted";
901.1Sderaadt		else {
911.1Sderaadt			*lp = *dlp;
921.1Sderaadt			msg = NULL;
931.1Sderaadt			break;
941.1Sderaadt		}
951.1Sderaadt	}
961.1Sderaadt	bp->b_flags = B_INVAL | B_AGE;
971.1Sderaadt	brelse(bp);
981.1Sderaadt	return (msg);
991.1Sderaadt}
1001.1Sderaadt
1011.1Sderaadt/*
1021.1Sderaadt * Check new disk label for sensibility
1031.1Sderaadt * before setting it.
1041.1Sderaadt */
1051.1Sderaadtsetdisklabel(olp, nlp, openmask, osdep)
1061.1Sderaadt	register struct disklabel *olp, *nlp;
1071.1Sderaadt	u_long openmask;
1081.1Sderaadt	struct cpu_disklabel *osdep;
1091.1Sderaadt{
1101.1Sderaadt	register i;
1111.1Sderaadt	register struct partition *opp, *npp;
1121.1Sderaadt
1131.1Sderaadt	if (nlp->d_magic != DISKMAGIC || nlp->d_magic2 != DISKMAGIC ||
1141.1Sderaadt	    dkcksum(nlp) != 0)
1151.1Sderaadt		return (EINVAL);
1161.1Sderaadt	while ((i = ffs((long)openmask)) != 0) {
1171.1Sderaadt		i--;
1181.1Sderaadt		openmask &= ~(1 << i);
1191.1Sderaadt		if (nlp->d_npartitions <= i)
1201.1Sderaadt			return (EBUSY);
1211.1Sderaadt		opp = &olp->d_partitions[i];
1221.1Sderaadt		npp = &nlp->d_partitions[i];
1231.1Sderaadt		if (npp->p_offset != opp->p_offset || npp->p_size < opp->p_size)
1241.1Sderaadt			return (EBUSY);
1251.1Sderaadt		/*
1261.1Sderaadt		 * Copy internally-set partition information
1271.1Sderaadt		 * if new label doesn't include it.		XXX
1281.1Sderaadt		 */
1291.1Sderaadt		if (npp->p_fstype == FS_UNUSED && opp->p_fstype != FS_UNUSED) {
1301.1Sderaadt			npp->p_fstype = opp->p_fstype;
1311.1Sderaadt			npp->p_fsize = opp->p_fsize;
1321.1Sderaadt			npp->p_frag = opp->p_frag;
1331.1Sderaadt			npp->p_cpg = opp->p_cpg;
1341.1Sderaadt		}
1351.1Sderaadt	}
1361.1Sderaadt 	nlp->d_checksum = 0;
1371.1Sderaadt 	nlp->d_checksum = dkcksum(nlp);
1381.1Sderaadt	*olp = *nlp;
1391.1Sderaadt	return (0);
1401.1Sderaadt}
1411.1Sderaadt
1421.1Sderaadt/* encoding of disk minor numbers, should be elsewhere... */
1431.1Sderaadt#define dkunit(dev)		(minor(dev) >> 3)
1441.1Sderaadt#define dkpart(dev)		(minor(dev) & 07)
1451.1Sderaadt#define dkminor(unit, part)	(((unit) << 3) | (part))
1461.1Sderaadt
1471.1Sderaadt/*
1481.1Sderaadt * Write disk label back to device after modification.
1491.1Sderaadt */
1501.1Sderaadtwritedisklabel(dev, strat, lp, osdep)
1511.1Sderaadt	dev_t dev;
1521.1Sderaadt	void (*strat)();
1531.1Sderaadt	register struct disklabel *lp;
1541.1Sderaadt	struct cpu_disklabel *osdep;
1551.1Sderaadt{
1561.1Sderaadt	struct buf *bp;
1571.1Sderaadt	struct disklabel *dlp;
1581.1Sderaadt	int labelpart;
1591.1Sderaadt	int error = 0;
1601.1Sderaadt
1611.1Sderaadt	labelpart = dkpart(dev);
1621.1Sderaadt	if (lp->d_partitions[labelpart].p_offset != 0) {
1631.1Sderaadt		if (lp->d_partitions[0].p_offset != 0)
1641.1Sderaadt			return (EXDEV);			/* not quite right */
1651.1Sderaadt		labelpart = 0;
1661.1Sderaadt	}
1671.1Sderaadt	bp = geteblk((int)lp->d_secsize);
1681.1Sderaadt	bp->b_dev = makedev(major(dev), dkminor(dkunit(dev), labelpart));
1691.1Sderaadt	bp->b_blkno = LABELSECTOR;
1701.1Sderaadt	bp->b_bcount = lp->d_secsize;
1711.1Sderaadt	bp->b_flags = B_READ;
1721.1Sderaadt	(*strat)(bp);
1731.1Sderaadt	if (error = biowait(bp))
1741.1Sderaadt		goto done;
1751.1Sderaadt	for (dlp = (struct disklabel *)bp->b_un.b_addr;
1761.1Sderaadt	    dlp <= (struct disklabel *)
1771.1Sderaadt	      (bp->b_un.b_addr + lp->d_secsize - sizeof(*dlp));
1781.1Sderaadt	    dlp = (struct disklabel *)((char *)dlp + sizeof(long))) {
1791.1Sderaadt		if (dlp->d_magic == DISKMAGIC && dlp->d_magic2 == DISKMAGIC &&
1801.1Sderaadt		    dkcksum(dlp) == 0) {
1811.1Sderaadt			*dlp = *lp;
1821.1Sderaadt			bp->b_flags = B_WRITE;
1831.1Sderaadt			(*strat)(bp);
1841.1Sderaadt			error = biowait(bp);
1851.1Sderaadt			goto done;
1861.1Sderaadt		}
1871.1Sderaadt	}
1881.1Sderaadt	error = ESRCH;
1891.1Sderaadtdone:
1901.1Sderaadt	brelse(bp);
1911.1Sderaadt	return (error);
1921.1Sderaadt}
193