setup.c revision 41477
11558Srgrimes/*
21558Srgrimes * Copyright (c) 1980, 1986, 1993
31558Srgrimes *	The Regents of the University of California.  All rights reserved.
41558Srgrimes *
51558Srgrimes * Redistribution and use in source and binary forms, with or without
61558Srgrimes * modification, are permitted provided that the following conditions
71558Srgrimes * are met:
81558Srgrimes * 1. Redistributions of source code must retain the above copyright
91558Srgrimes *    notice, this list of conditions and the following disclaimer.
101558Srgrimes * 2. Redistributions in binary form must reproduce the above copyright
111558Srgrimes *    notice, this list of conditions and the following disclaimer in the
121558Srgrimes *    documentation and/or other materials provided with the distribution.
131558Srgrimes * 3. All advertising materials mentioning features or use of this software
141558Srgrimes *    must display the following acknowledgement:
151558Srgrimes *	This product includes software developed by the University of
161558Srgrimes *	California, Berkeley and its contributors.
171558Srgrimes * 4. Neither the name of the University nor the names of its contributors
181558Srgrimes *    may be used to endorse or promote products derived from this software
191558Srgrimes *    without specific prior written permission.
201558Srgrimes *
211558Srgrimes * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
221558Srgrimes * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
231558Srgrimes * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
241558Srgrimes * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
251558Srgrimes * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
261558Srgrimes * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
271558Srgrimes * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
281558Srgrimes * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
291558Srgrimes * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
301558Srgrimes * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
311558Srgrimes * SUCH DAMAGE.
321558Srgrimes */
331558Srgrimes
341558Srgrimes#ifndef lint
3541477Sjulian#if 0
3623675Speterstatic const char sccsid[] = "@(#)setup.c	8.10 (Berkeley) 5/9/95";
3741477Sjulian#endif
3841477Sjulianstatic const char rcsid[] =
3941477Sjulian	"$Id: setup.c,v 1.12 1998/06/28 19:23:03 bde Exp $";
401558Srgrimes#endif /* not lint */
411558Srgrimes
421558Srgrimes#define DKTYPENAMES
431558Srgrimes#include <sys/param.h>
441558Srgrimes#include <sys/stat.h>
451558Srgrimes#include <sys/disklabel.h>
461558Srgrimes#include <sys/file.h>
4723675Speter
4823675Speter#include <ufs/ufs/dinode.h>
4923675Speter#include <ufs/ffs/fs.h>
5023675Speter
5123675Speter#include <ctype.h>
5223675Speter#include <err.h>
531558Srgrimes#include <errno.h>
541558Srgrimes#include <string.h>
5523675Speter
561558Srgrimes#include "fsck.h"
571558Srgrimes
581558Srgrimesstruct bufarea asblk;
591558Srgrimes#define altsblock (*asblk.b_un.b_fs)
601558Srgrimes#define POWEROF2(num)	(((num) & ((num) - 1)) == 0)
611558Srgrimes
6223675Speterstatic void badsb __P((int listerr, char *s));
6323675Speterstatic int calcsb __P((char *dev, int devfd, struct fs *fs));
6423675Speterstatic struct disklabel *getdisklabel __P((char *s, int fd));
6523675Speterstatic int readsb __P((int listerr));
661558Srgrimes
6723675Speter/*
6823675Speter * Read in a superblock finding an alternate if necessary.
6923675Speter * Return 1 if successful, 0 if unsuccessful, -1 if filesystem
7023675Speter * is already clean (preen mode only).
7123675Speter */
727585Sbdeint
731558Srgrimessetup(dev)
741558Srgrimes	char *dev;
751558Srgrimes{
761558Srgrimes	long cg, size, asked, i, j;
7723675Speter	long skipclean, bmapsize;
781558Srgrimes	struct disklabel *lp;
791558Srgrimes	off_t sizepb;
801558Srgrimes	struct stat statb;
811558Srgrimes	struct fs proto;
821558Srgrimes
831558Srgrimes	havesb = 0;
841558Srgrimes	fswritefd = -1;
8541474Sjulian	skipclean = fflag ? 0 : preen;
861558Srgrimes	if (stat(dev, &statb) < 0) {
871558Srgrimes		printf("Can't stat %s: %s\n", dev, strerror(errno));
881558Srgrimes		return (0);
891558Srgrimes	}
901558Srgrimes	if ((statb.st_mode & S_IFMT) != S_IFCHR) {
911558Srgrimes		pfatal("%s is not a character device", dev);
921558Srgrimes		if (reply("CONTINUE") == 0)
931558Srgrimes			return (0);
941558Srgrimes	}
951558Srgrimes	if ((fsreadfd = open(dev, O_RDONLY)) < 0) {
961558Srgrimes		printf("Can't open %s: %s\n", dev, strerror(errno));
971558Srgrimes		return (0);
981558Srgrimes	}
991558Srgrimes	if (preen == 0)
1001558Srgrimes		printf("** %s", dev);
1011558Srgrimes	if (nflag || (fswritefd = open(dev, O_WRONLY)) < 0) {
1021558Srgrimes		fswritefd = -1;
1031558Srgrimes		if (preen)
1041558Srgrimes			pfatal("NO WRITE ACCESS");
1051558Srgrimes		printf(" (NO WRITE)");
1061558Srgrimes	}
1071558Srgrimes	if (preen == 0)
1081558Srgrimes		printf("\n");
1091558Srgrimes	fsmodified = 0;
1101558Srgrimes	lfdir = 0;
1111558Srgrimes	initbarea(&sblk);
1121558Srgrimes	initbarea(&asblk);
1131558Srgrimes	sblk.b_un.b_buf = malloc(SBSIZE);
1141558Srgrimes	asblk.b_un.b_buf = malloc(SBSIZE);
1151558Srgrimes	if (sblk.b_un.b_buf == NULL || asblk.b_un.b_buf == NULL)
11623675Speter		errx(EEXIT, "cannot allocate space for superblock");
11741474Sjulian	if ((lp = getdisklabel(NULL, fsreadfd)))
1181558Srgrimes		dev_bsize = secsize = lp->d_secsize;
1191558Srgrimes	else
1201558Srgrimes		dev_bsize = secsize = DEV_BSIZE;
1211558Srgrimes	/*
1221558Srgrimes	 * Read in the superblock, looking for alternates if necessary
1231558Srgrimes	 */
1241558Srgrimes	if (readsb(1) == 0) {
12523675Speter		skipclean = 0;
1261558Srgrimes		if (bflag || preen || calcsb(dev, fsreadfd, &proto) == 0)
1271558Srgrimes			return(0);
1281558Srgrimes		if (reply("LOOK FOR ALTERNATE SUPERBLOCKS") == 0)
1291558Srgrimes			return (0);
1301558Srgrimes		for (cg = 0; cg < proto.fs_ncg; cg++) {
1311558Srgrimes			bflag = fsbtodb(&proto, cgsblock(&proto, cg));
1321558Srgrimes			if (readsb(0) != 0)
1331558Srgrimes				break;
1341558Srgrimes		}
1351558Srgrimes		if (cg >= proto.fs_ncg) {
1361558Srgrimes			printf("%s %s\n%s %s\n%s %s\n",
1371558Srgrimes				"SEARCH FOR ALTERNATE SUPER-BLOCK",
1381558Srgrimes				"FAILED. YOU MUST USE THE",
1391558Srgrimes				"-b OPTION TO FSCK TO SPECIFY THE",
1401558Srgrimes				"LOCATION OF AN ALTERNATE",
1411558Srgrimes				"SUPER-BLOCK TO SUPPLY NEEDED",
1421558Srgrimes				"INFORMATION; SEE fsck(8).");
1436280Sbde			bflag = 0;
1441558Srgrimes			return(0);
1451558Srgrimes		}
1461558Srgrimes		pwarn("USING ALTERNATE SUPERBLOCK AT %d\n", bflag);
1476280Sbde		bflag = 0;
1481558Srgrimes	}
14941474Sjulian	if (skipclean && sblock.fs_clean) {
15041474Sjulian		pwarn("FILESYSTEM CLEAN; SKIPPING CHECKS\n");
15141474Sjulian		return (-1);
15241474Sjulian	}
1531558Srgrimes	maxfsblock = sblock.fs_size;
1541558Srgrimes	maxino = sblock.fs_ncg * sblock.fs_ipg;
1551558Srgrimes	/*
1561558Srgrimes	 * Check and potentially fix certain fields in the super block.
1571558Srgrimes	 */
1581558Srgrimes	if (sblock.fs_optim != FS_OPTTIME && sblock.fs_optim != FS_OPTSPACE) {
1591558Srgrimes		pfatal("UNDEFINED OPTIMIZATION IN SUPERBLOCK");
1601558Srgrimes		if (reply("SET TO DEFAULT") == 1) {
1611558Srgrimes			sblock.fs_optim = FS_OPTTIME;
1621558Srgrimes			sbdirty();
1631558Srgrimes		}
1641558Srgrimes	}
1651558Srgrimes	if ((sblock.fs_minfree < 0 || sblock.fs_minfree > 99)) {
1661558Srgrimes		pfatal("IMPOSSIBLE MINFREE=%d IN SUPERBLOCK",
1671558Srgrimes			sblock.fs_minfree);
1681558Srgrimes		if (reply("SET TO DEFAULT") == 1) {
1691558Srgrimes			sblock.fs_minfree = 10;
1701558Srgrimes			sbdirty();
1711558Srgrimes		}
1721558Srgrimes	}
1738871Srgrimes	if (sblock.fs_interleave < 1 ||
1741558Srgrimes	    sblock.fs_interleave > sblock.fs_nsect) {
1751558Srgrimes		pwarn("IMPOSSIBLE INTERLEAVE=%d IN SUPERBLOCK",
1761558Srgrimes			sblock.fs_interleave);
1771558Srgrimes		sblock.fs_interleave = 1;
1781558Srgrimes		if (preen)
1791558Srgrimes			printf(" (FIXED)\n");
1801558Srgrimes		if (preen || reply("SET TO DEFAULT") == 1) {
1811558Srgrimes			sbdirty();
1821558Srgrimes			dirty(&asblk);
1831558Srgrimes		}
1841558Srgrimes	}
1858871Srgrimes	if (sblock.fs_npsect < sblock.fs_nsect ||
1861558Srgrimes	    sblock.fs_npsect > sblock.fs_nsect*2) {
1871558Srgrimes		pwarn("IMPOSSIBLE NPSECT=%d IN SUPERBLOCK",
1881558Srgrimes			sblock.fs_npsect);
1891558Srgrimes		sblock.fs_npsect = sblock.fs_nsect;
1901558Srgrimes		if (preen)
1911558Srgrimes			printf(" (FIXED)\n");
1921558Srgrimes		if (preen || reply("SET TO DEFAULT") == 1) {
1931558Srgrimes			sbdirty();
1941558Srgrimes			dirty(&asblk);
1951558Srgrimes		}
1961558Srgrimes	}
1971558Srgrimes	if (sblock.fs_inodefmt >= FS_44INODEFMT) {
1981558Srgrimes		newinofmt = 1;
1991558Srgrimes	} else {
2001558Srgrimes		sblock.fs_qbmask = ~sblock.fs_bmask;
2011558Srgrimes		sblock.fs_qfmask = ~sblock.fs_fmask;
2021558Srgrimes		newinofmt = 0;
2031558Srgrimes	}
2041558Srgrimes	/*
2051558Srgrimes	 * Convert to new inode format.
2061558Srgrimes	 */
2071558Srgrimes	if (cvtlevel >= 2 && sblock.fs_inodefmt < FS_44INODEFMT) {
2081558Srgrimes		if (preen)
2091558Srgrimes			pwarn("CONVERTING TO NEW INODE FORMAT\n");
2101558Srgrimes		else if (!reply("CONVERT TO NEW INODE FORMAT"))
2111558Srgrimes			return(0);
2121558Srgrimes		doinglevel2++;
2131558Srgrimes		sblock.fs_inodefmt = FS_44INODEFMT;
2141558Srgrimes		sizepb = sblock.fs_bsize;
2151558Srgrimes		sblock.fs_maxfilesize = sblock.fs_bsize * NDADDR - 1;
2161558Srgrimes		for (i = 0; i < NIADDR; i++) {
2171558Srgrimes			sizepb *= NINDIR(&sblock);
2181558Srgrimes			sblock.fs_maxfilesize += sizepb;
2191558Srgrimes		}
2201558Srgrimes		sblock.fs_maxsymlinklen = MAXSYMLINKLEN;
2211558Srgrimes		sblock.fs_qbmask = ~sblock.fs_bmask;
2221558Srgrimes		sblock.fs_qfmask = ~sblock.fs_fmask;
2231558Srgrimes		sbdirty();
2241558Srgrimes		dirty(&asblk);
2251558Srgrimes	}
2261558Srgrimes	/*
2271558Srgrimes	 * Convert to new cylinder group format.
2281558Srgrimes	 */
2291558Srgrimes	if (cvtlevel >= 1 && sblock.fs_postblformat == FS_42POSTBLFMT) {
2301558Srgrimes		if (preen)
2311558Srgrimes			pwarn("CONVERTING TO NEW CYLINDER GROUP FORMAT\n");
2321558Srgrimes		else if (!reply("CONVERT TO NEW CYLINDER GROUP FORMAT"))
2331558Srgrimes			return(0);
2341558Srgrimes		doinglevel1++;
2351558Srgrimes		sblock.fs_postblformat = FS_DYNAMICPOSTBLFMT;
2361558Srgrimes		sblock.fs_nrpos = 8;
2371558Srgrimes		sblock.fs_postbloff =
2381558Srgrimes		    (char *)(&sblock.fs_opostbl[0][0]) -
23923675Speter		    (char *)(&sblock.fs_firstfield);
2401558Srgrimes		sblock.fs_rotbloff = &sblock.fs_space[0] -
24123675Speter		    (u_char *)(&sblock.fs_firstfield);
2421558Srgrimes		sblock.fs_cgsize =
2431558Srgrimes			fragroundup(&sblock, CGSIZE(&sblock));
2441558Srgrimes		sbdirty();
2451558Srgrimes		dirty(&asblk);
2461558Srgrimes	}
24723675Speter	if (asblk.b_dirty && !bflag) {
24823675Speter		memmove(&altsblock, &sblock, (size_t)sblock.fs_sbsize);
2491558Srgrimes		flush(fswritefd, &asblk);
2501558Srgrimes	}
2511558Srgrimes	/*
2521558Srgrimes	 * read in the summary info.
2531558Srgrimes	 */
2541558Srgrimes	asked = 0;
2551558Srgrimes	for (i = 0, j = 0; i < sblock.fs_cssize; i += sblock.fs_bsize, j++) {
2561558Srgrimes		size = sblock.fs_cssize - i < sblock.fs_bsize ?
2571558Srgrimes		    sblock.fs_cssize - i : sblock.fs_bsize;
2581558Srgrimes		sblock.fs_csp[j] = (struct csum *)calloc(1, (unsigned)size);
2591558Srgrimes		if (bread(fsreadfd, (char *)sblock.fs_csp[j],
2601558Srgrimes		    fsbtodb(&sblock, sblock.fs_csaddr + j * sblock.fs_frag),
2611558Srgrimes		    size) != 0 && !asked) {
2621558Srgrimes			pfatal("BAD SUMMARY INFORMATION");
26334266Sjulian			if (reply("CONTINUE") == 0) {
26434266Sjulian				ckfini(0);
26523675Speter				exit(EEXIT);
26634266Sjulian			}
2671558Srgrimes			asked++;
2681558Srgrimes		}
2691558Srgrimes	}
2701558Srgrimes	/*
2711558Srgrimes	 * allocate and initialize the necessary maps
2721558Srgrimes	 */
2731558Srgrimes	bmapsize = roundup(howmany(maxfsblock, NBBY), sizeof(short));
2741558Srgrimes	blockmap = calloc((unsigned)bmapsize, sizeof (char));
2751558Srgrimes	if (blockmap == NULL) {
2761558Srgrimes		printf("cannot alloc %u bytes for blockmap\n",
2771558Srgrimes		    (unsigned)bmapsize);
2781558Srgrimes		goto badsb;
2791558Srgrimes	}
28041474Sjulian	inostathead = calloc((unsigned)(sblock.fs_ncg),
28141474Sjulian	    sizeof(struct inostatlist));
28241474Sjulian	if (inostathead == NULL) {
28341474Sjulian		printf("cannot alloc %u bytes for inostathead\n",
28441474Sjulian		    (unsigned)(sizeof(struct inostatlist) * (sblock.fs_ncg)));
2851558Srgrimes		goto badsb;
2861558Srgrimes	}
2871558Srgrimes	numdirs = sblock.fs_cstotal.cs_ndir;
28834033Sphk	if (numdirs == 0) {
28934033Sphk		printf("numdirs is zero, try using an alternate superblock\n");
29034033Sphk		goto badsb;
29134033Sphk	}
2921558Srgrimes	inplast = 0;
2931558Srgrimes	listmax = numdirs + 10;
2941558Srgrimes	inpsort = (struct inoinfo **)calloc((unsigned)listmax,
2951558Srgrimes	    sizeof(struct inoinfo *));
2961558Srgrimes	inphead = (struct inoinfo **)calloc((unsigned)numdirs,
2971558Srgrimes	    sizeof(struct inoinfo *));
2981558Srgrimes	if (inpsort == NULL || inphead == NULL) {
2998871Srgrimes		printf("cannot alloc %u bytes for inphead\n",
3001558Srgrimes		    (unsigned)numdirs * sizeof(struct inoinfo *));
3011558Srgrimes		goto badsb;
3021558Srgrimes	}
3031558Srgrimes	bufinit();
30434266Sjulian	if (sblock.fs_flags & FS_DOSOFTDEP)
30534266Sjulian		usedsoftdep = 1;
30634266Sjulian	else
30734266Sjulian		usedsoftdep = 0;
3081558Srgrimes	return (1);
3091558Srgrimes
3101558Srgrimesbadsb:
31123675Speter	ckfini(0);
3121558Srgrimes	return (0);
3131558Srgrimes}
3141558Srgrimes
3151558Srgrimes/*
3161558Srgrimes * Read in the super block and its summary info.
3171558Srgrimes */
3187585Sbdestatic int
3191558Srgrimesreadsb(listerr)
3201558Srgrimes	int listerr;
3211558Srgrimes{
32223675Speter	ufs_daddr_t super = bflag ? bflag : SBOFF / dev_bsize;
3231558Srgrimes
3241558Srgrimes	if (bread(fsreadfd, (char *)&sblock, super, (long)SBSIZE) != 0)
3251558Srgrimes		return (0);
3261558Srgrimes	sblk.b_bno = super;
3271558Srgrimes	sblk.b_size = SBSIZE;
3281558Srgrimes	/*
3291558Srgrimes	 * run a few consistency checks of the super block
3301558Srgrimes	 */
3311558Srgrimes	if (sblock.fs_magic != FS_MAGIC)
3321558Srgrimes		{ badsb(listerr, "MAGIC NUMBER WRONG"); return (0); }
3331558Srgrimes	if (sblock.fs_ncg < 1)
3341558Srgrimes		{ badsb(listerr, "NCG OUT OF RANGE"); return (0); }
3351558Srgrimes	if (sblock.fs_cpg < 1)
3361558Srgrimes		{ badsb(listerr, "CPG OUT OF RANGE"); return (0); }
3371558Srgrimes	if (sblock.fs_ncg * sblock.fs_cpg < sblock.fs_ncyl ||
3381558Srgrimes	    (sblock.fs_ncg - 1) * sblock.fs_cpg >= sblock.fs_ncyl)
3391558Srgrimes		{ badsb(listerr, "NCYL LESS THAN NCG*CPG"); return (0); }
3401558Srgrimes	if (sblock.fs_sbsize > SBSIZE)
3411558Srgrimes		{ badsb(listerr, "SIZE PREPOSTEROUSLY LARGE"); return (0); }
3421558Srgrimes	/*
3431558Srgrimes	 * Compute block size that the filesystem is based on,
3441558Srgrimes	 * according to fsbtodb, and adjust superblock block number
3451558Srgrimes	 * so we can tell if this is an alternate later.
3461558Srgrimes	 */
3471558Srgrimes	super *= dev_bsize;
3481558Srgrimes	dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1);
3491558Srgrimes	sblk.b_bno = super / dev_bsize;
3501558Srgrimes	if (bflag) {
3511558Srgrimes		havesb = 1;
3521558Srgrimes		return (1);
3531558Srgrimes	}
3541558Srgrimes	/*
3551558Srgrimes	 * Set all possible fields that could differ, then do check
3561558Srgrimes	 * of whole super block against an alternate super block.
3571558Srgrimes	 * When an alternate super-block is specified this check is skipped.
3581558Srgrimes	 */
3591558Srgrimes	getblk(&asblk, cgsblock(&sblock, sblock.fs_ncg - 1), sblock.fs_sbsize);
3601558Srgrimes	if (asblk.b_errs)
3611558Srgrimes		return (0);
36223675Speter	altsblock.fs_firstfield = sblock.fs_firstfield;
36323675Speter	altsblock.fs_unused_1 = sblock.fs_unused_1;
3641558Srgrimes	altsblock.fs_time = sblock.fs_time;
3651558Srgrimes	altsblock.fs_cstotal = sblock.fs_cstotal;
3661558Srgrimes	altsblock.fs_cgrotor = sblock.fs_cgrotor;
3671558Srgrimes	altsblock.fs_fmod = sblock.fs_fmod;
3681558Srgrimes	altsblock.fs_clean = sblock.fs_clean;
3691558Srgrimes	altsblock.fs_ronly = sblock.fs_ronly;
3701558Srgrimes	altsblock.fs_flags = sblock.fs_flags;
3711558Srgrimes	altsblock.fs_maxcontig = sblock.fs_maxcontig;
3721558Srgrimes	altsblock.fs_minfree = sblock.fs_minfree;
3731558Srgrimes	altsblock.fs_optim = sblock.fs_optim;
3741558Srgrimes	altsblock.fs_rotdelay = sblock.fs_rotdelay;
3751558Srgrimes	altsblock.fs_maxbpg = sblock.fs_maxbpg;
37623675Speter	memmove(altsblock.fs_csp, sblock.fs_csp, sizeof sblock.fs_csp);
37723675Speter	altsblock.fs_maxcluster = sblock.fs_maxcluster;
37823675Speter	memmove(altsblock.fs_fsmnt, sblock.fs_fsmnt, sizeof sblock.fs_fsmnt);
37923675Speter	memmove(altsblock.fs_sparecon,
38023675Speter		sblock.fs_sparecon, sizeof sblock.fs_sparecon);
3811558Srgrimes	/*
3821558Srgrimes	 * The following should not have to be copied.
3831558Srgrimes	 */
3841558Srgrimes	altsblock.fs_fsbtodb = sblock.fs_fsbtodb;
3851558Srgrimes	altsblock.fs_interleave = sblock.fs_interleave;
3861558Srgrimes	altsblock.fs_npsect = sblock.fs_npsect;
3871558Srgrimes	altsblock.fs_nrpos = sblock.fs_nrpos;
38823675Speter	altsblock.fs_state = sblock.fs_state;
3891558Srgrimes	altsblock.fs_qbmask = sblock.fs_qbmask;
3901558Srgrimes	altsblock.fs_qfmask = sblock.fs_qfmask;
3911558Srgrimes	altsblock.fs_state = sblock.fs_state;
3921558Srgrimes	altsblock.fs_maxfilesize = sblock.fs_maxfilesize;
39323675Speter	if (memcmp(&sblock, &altsblock, (int)sblock.fs_sbsize)) {
39423675Speter		if (debug) {
39523675Speter			long *nlp, *olp, *endlp;
39623675Speter
39723675Speter			printf("superblock mismatches\n");
39823675Speter			nlp = (long *)&altsblock;
39923675Speter			olp = (long *)&sblock;
40023675Speter			endlp = olp + (sblock.fs_sbsize / sizeof *olp);
40123675Speter			for ( ; olp < endlp; olp++, nlp++) {
40223675Speter				if (*olp == *nlp)
40323675Speter					continue;
40437236Sbde				printf(
40537236Sbde				    "offset %d, original %ld, alternate %ld\n",
40623675Speter				    olp - (long *)&sblock, *olp, *nlp);
40723675Speter			}
40823675Speter		}
4091558Srgrimes		badsb(listerr,
4101558Srgrimes		"VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST ALTERNATE");
4111558Srgrimes		return (0);
4121558Srgrimes	}
4131558Srgrimes	havesb = 1;
4141558Srgrimes	return (1);
4151558Srgrimes}
4161558Srgrimes
4177585Sbdestatic void
4181558Srgrimesbadsb(listerr, s)
4191558Srgrimes	int listerr;
4201558Srgrimes	char *s;
4211558Srgrimes{
4221558Srgrimes
4231558Srgrimes	if (!listerr)
4241558Srgrimes		return;
4251558Srgrimes	if (preen)
4261558Srgrimes		printf("%s: ", cdevname);
4271558Srgrimes	pfatal("BAD SUPER BLOCK: %s\n", s);
4281558Srgrimes}
4291558Srgrimes
4301558Srgrimes/*
4311558Srgrimes * Calculate a prototype superblock based on information in the disk label.
4321558Srgrimes * When done the cgsblock macro can be calculated and the fs_ncg field
4331558Srgrimes * can be used. Do NOT attempt to use other macros without verifying that
4341558Srgrimes * their needed information is available!
4351558Srgrimes */
43623675Speterstatic int
4371558Srgrimescalcsb(dev, devfd, fs)
4381558Srgrimes	char *dev;
4391558Srgrimes	int devfd;
4401558Srgrimes	register struct fs *fs;
4411558Srgrimes{
4421558Srgrimes	register struct disklabel *lp;
4431558Srgrimes	register struct partition *pp;
4441558Srgrimes	register char *cp;
4451558Srgrimes	int i;
4461558Srgrimes
44723675Speter	cp = strchr(dev, '\0') - 1;
4487585Sbde	if (cp == (char *)-1 || ((*cp < 'a' || *cp > 'h') && !isdigit(*cp))) {
4491558Srgrimes		pfatal("%s: CANNOT FIGURE OUT FILE SYSTEM PARTITION\n", dev);
4501558Srgrimes		return (0);
4511558Srgrimes	}
4521558Srgrimes	lp = getdisklabel(dev, devfd);
4531558Srgrimes	if (isdigit(*cp))
4541558Srgrimes		pp = &lp->d_partitions[0];
4551558Srgrimes	else
4561558Srgrimes		pp = &lp->d_partitions[*cp - 'a'];
4571558Srgrimes	if (pp->p_fstype != FS_BSDFFS) {
4581558Srgrimes		pfatal("%s: NOT LABELED AS A BSD FILE SYSTEM (%s)\n",
4591558Srgrimes			dev, pp->p_fstype < FSMAXTYPES ?
4601558Srgrimes			fstypenames[pp->p_fstype] : "unknown");
4611558Srgrimes		return (0);
4621558Srgrimes	}
46341474Sjulian	if (pp->p_fsize == 0 || pp->p_frag == 0 ||
46441474Sjulian	    pp->p_cpg == 0 || pp->p_size == 0) {
46541474Sjulian		pfatal("%s: %s: type %s fsize %d, frag %d, cpg %d, size %d\n",
46641474Sjulian		    dev, "INCOMPLETE LABEL", fstypenames[pp->p_fstype],
46741474Sjulian		    pp->p_fsize, pp->p_frag, pp->p_cpg, pp->p_size);
46832622Sbde		return (0);
46932622Sbde	}
47023675Speter	memset(fs, 0, sizeof(struct fs));
4711558Srgrimes	fs->fs_fsize = pp->p_fsize;
4721558Srgrimes	fs->fs_frag = pp->p_frag;
4731558Srgrimes	fs->fs_cpg = pp->p_cpg;
4741558Srgrimes	fs->fs_size = pp->p_size;
4751558Srgrimes	fs->fs_ntrak = lp->d_ntracks;
4761558Srgrimes	fs->fs_nsect = lp->d_nsectors;
4771558Srgrimes	fs->fs_spc = lp->d_secpercyl;
4781558Srgrimes	fs->fs_nspf = fs->fs_fsize / lp->d_secsize;
4791558Srgrimes	fs->fs_sblkno = roundup(
4801558Srgrimes		howmany(lp->d_bbsize + lp->d_sbsize, fs->fs_fsize),
4811558Srgrimes		fs->fs_frag);
4821558Srgrimes	fs->fs_cgmask = 0xffffffff;
4831558Srgrimes	for (i = fs->fs_ntrak; i > 1; i >>= 1)
4841558Srgrimes		fs->fs_cgmask <<= 1;
4851558Srgrimes	if (!POWEROF2(fs->fs_ntrak))
4861558Srgrimes		fs->fs_cgmask <<= 1;
4871558Srgrimes	fs->fs_cgoffset = roundup(
4881558Srgrimes		howmany(fs->fs_nsect, NSPF(fs)), fs->fs_frag);
4891558Srgrimes	fs->fs_fpg = (fs->fs_cpg * fs->fs_spc) / NSPF(fs);
4901558Srgrimes	fs->fs_ncg = howmany(fs->fs_size / fs->fs_spc, fs->fs_cpg);
4911558Srgrimes	for (fs->fs_fsbtodb = 0, i = NSPF(fs); i > 1; i >>= 1)
4921558Srgrimes		fs->fs_fsbtodb++;
4931558Srgrimes	dev_bsize = lp->d_secsize;
4941558Srgrimes	return (1);
4951558Srgrimes}
4961558Srgrimes
49723675Speterstatic struct disklabel *
4981558Srgrimesgetdisklabel(s, fd)
4991558Srgrimes	char *s;
5001558Srgrimes	int	fd;
5011558Srgrimes{
5021558Srgrimes	static struct disklabel lab;
5031558Srgrimes
5041558Srgrimes	if (ioctl(fd, DIOCGDINFO, (char *)&lab) < 0) {
5051558Srgrimes		if (s == NULL)
5061558Srgrimes			return ((struct disklabel *)NULL);
5071558Srgrimes		pwarn("ioctl (GCINFO): %s\n", strerror(errno));
50823675Speter		errx(EEXIT, "%s: can't read disk label", s);
5091558Srgrimes	}
5101558Srgrimes	return (&lab);
5111558Srgrimes}
512