Home | History | Annotate | Line # | Download | only in fsck_ffs
setup.c revision 1.37
      1  1.37      fvdl /*	$NetBSD: setup.c,v 1.37 1999/11/15 19:18:26 fvdl Exp $	*/
      2  1.19       cgd 
      3   1.1       cgd /*
      4  1.10   mycroft  * Copyright (c) 1980, 1986, 1993
      5  1.10   mycroft  *	The Regents of the University of California.  All rights reserved.
      6   1.1       cgd  *
      7   1.1       cgd  * Redistribution and use in source and binary forms, with or without
      8   1.1       cgd  * modification, are permitted provided that the following conditions
      9   1.1       cgd  * are met:
     10   1.1       cgd  * 1. Redistributions of source code must retain the above copyright
     11   1.1       cgd  *    notice, this list of conditions and the following disclaimer.
     12   1.1       cgd  * 2. Redistributions in binary form must reproduce the above copyright
     13   1.1       cgd  *    notice, this list of conditions and the following disclaimer in the
     14   1.1       cgd  *    documentation and/or other materials provided with the distribution.
     15   1.1       cgd  * 3. All advertising materials mentioning features or use of this software
     16   1.1       cgd  *    must display the following acknowledgement:
     17   1.1       cgd  *	This product includes software developed by the University of
     18   1.1       cgd  *	California, Berkeley and its contributors.
     19   1.1       cgd  * 4. Neither the name of the University nor the names of its contributors
     20   1.1       cgd  *    may be used to endorse or promote products derived from this software
     21   1.1       cgd  *    without specific prior written permission.
     22   1.1       cgd  *
     23   1.1       cgd  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
     24   1.1       cgd  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
     25   1.1       cgd  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
     26   1.1       cgd  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
     27   1.1       cgd  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
     28   1.1       cgd  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
     29   1.1       cgd  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
     30   1.1       cgd  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
     31   1.1       cgd  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
     32   1.1       cgd  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
     33   1.1       cgd  * SUCH DAMAGE.
     34   1.1       cgd  */
     35   1.1       cgd 
     36  1.28     lukem #include <sys/cdefs.h>
     37   1.1       cgd #ifndef lint
     38  1.19       cgd #if 0
     39  1.30     lukem static char sccsid[] = "@(#)setup.c	8.10 (Berkeley) 5/9/95";
     40  1.19       cgd #else
     41  1.37      fvdl __RCSID("$NetBSD: setup.c,v 1.37 1999/11/15 19:18:26 fvdl Exp $");
     42  1.19       cgd #endif
     43   1.1       cgd #endif /* not lint */
     44   1.1       cgd 
     45   1.1       cgd #include <sys/param.h>
     46   1.8       cgd #include <sys/time.h>
     47   1.1       cgd #include <sys/stat.h>
     48   1.1       cgd #include <sys/ioctl.h>
     49  1.35  christos #define FSTYPENAMES
     50   1.1       cgd #include <sys/disklabel.h>
     51   1.1       cgd #include <sys/file.h>
     52  1.15       cgd 
     53  1.30     lukem #include <ufs/ufs/dinode.h>
     54  1.33    bouyer #include <ufs/ufs/ufs_bswap.h>
     55  1.30     lukem #include <ufs/ffs/fs.h>
     56  1.33    bouyer #include <ufs/ffs/ffs_extern.h>
     57  1.30     lukem 
     58  1.30     lukem #include <ctype.h>
     59  1.30     lukem #include <err.h>
     60   1.1       cgd #include <errno.h>
     61  1.31     lukem #include <stdio.h>
     62  1.31     lukem #include <stdlib.h>
     63   1.1       cgd #include <string.h>
     64  1.26  christos 
     65   1.1       cgd #include "fsck.h"
     66  1.15       cgd #include "extern.h"
     67  1.27  christos #include "fsutil.h"
     68   1.1       cgd 
     69   1.1       cgd struct bufarea asblk;
     70  1.33    bouyer struct fs *altsblock;
     71   1.1       cgd #define POWEROF2(num)	(((num) & ((num) - 1)) == 0)
     72   1.1       cgd 
     73  1.30     lukem static void badsb __P((int, char *));
     74  1.34   mycroft static int calcsb __P((const char *, int, struct fs *));
     75  1.34   mycroft static struct disklabel *getdisklabel __P((const char *, int));
     76  1.26  christos static int readsb __P((int));
     77   1.1       cgd 
     78  1.30     lukem /*
     79  1.30     lukem  * Read in a superblock finding an alternate if necessary.
     80  1.30     lukem  * Return 1 if successful, 0 if unsuccessful, -1 if filesystem
     81  1.30     lukem  * is already clean (preen mode only).
     82  1.30     lukem  */
     83  1.15       cgd int
     84   1.1       cgd setup(dev)
     85  1.34   mycroft 	const char *dev;
     86   1.1       cgd {
     87   1.1       cgd 	long cg, size, asked, i, j;
     88   1.1       cgd 	long bmapsize;
     89   1.1       cgd 	struct disklabel *lp;
     90  1.10   mycroft 	off_t sizepb;
     91  1.10   mycroft 	struct stat statb;
     92   1.1       cgd 	struct fs proto;
     93  1.21   mycroft 	int doskipclean;
     94  1.24   mycroft 	u_int64_t maxfilesize;
     95   1.1       cgd 
     96   1.1       cgd 	havesb = 0;
     97  1.10   mycroft 	fswritefd = -1;
     98  1.21   mycroft 	doskipclean = skipclean;
     99   1.1       cgd 	if (stat(dev, &statb) < 0) {
    100   1.1       cgd 		printf("Can't stat %s: %s\n", dev, strerror(errno));
    101   1.1       cgd 		return (0);
    102   1.1       cgd 	}
    103  1.14   mycroft 	if (!S_ISCHR(statb.st_mode)) {
    104   1.1       cgd 		pfatal("%s is not a character device", dev);
    105   1.1       cgd 		if (reply("CONTINUE") == 0)
    106   1.1       cgd 			return (0);
    107   1.1       cgd 	}
    108   1.1       cgd 	if ((fsreadfd = open(dev, O_RDONLY)) < 0) {
    109   1.1       cgd 		printf("Can't open %s: %s\n", dev, strerror(errno));
    110   1.1       cgd 		return (0);
    111   1.1       cgd 	}
    112   1.1       cgd 	if (preen == 0)
    113   1.1       cgd 		printf("** %s", dev);
    114   1.1       cgd 	if (nflag || (fswritefd = open(dev, O_WRONLY)) < 0) {
    115   1.1       cgd 		fswritefd = -1;
    116   1.1       cgd 		if (preen)
    117   1.1       cgd 			pfatal("NO WRITE ACCESS");
    118   1.1       cgd 		printf(" (NO WRITE)");
    119   1.1       cgd 	}
    120   1.1       cgd 	if (preen == 0)
    121   1.1       cgd 		printf("\n");
    122   1.1       cgd 	fsmodified = 0;
    123   1.1       cgd 	lfdir = 0;
    124   1.1       cgd 	initbarea(&sblk);
    125   1.1       cgd 	initbarea(&asblk);
    126   1.1       cgd 	sblk.b_un.b_buf = malloc(SBSIZE);
    127  1.33    bouyer 	sblock = malloc(SBSIZE);
    128   1.1       cgd 	asblk.b_un.b_buf = malloc(SBSIZE);
    129  1.33    bouyer 	altsblock = malloc(SBSIZE);
    130  1.33    bouyer 	if (sblk.b_un.b_buf == NULL || asblk.b_un.b_buf == NULL ||
    131  1.33    bouyer 		sblock == NULL || altsblock == NULL)
    132  1.30     lukem 		errx(EEXIT, "cannot allocate space for superblock");
    133  1.30     lukem 	if ((lp = getdisklabel(NULL, fsreadfd)) != NULL)
    134   1.1       cgd 		dev_bsize = secsize = lp->d_secsize;
    135   1.1       cgd 	else
    136   1.1       cgd 		dev_bsize = secsize = DEV_BSIZE;
    137   1.1       cgd 	/*
    138   1.1       cgd 	 * Read in the superblock, looking for alternates if necessary
    139   1.1       cgd 	 */
    140   1.1       cgd 	if (readsb(1) == 0) {
    141  1.32     lukem #ifdef LITE2BORKEN
    142  1.30     lukem 		skipclean = 0;
    143  1.32     lukem #endif
    144   1.1       cgd 		if (bflag || preen || calcsb(dev, fsreadfd, &proto) == 0)
    145   1.1       cgd 			return(0);
    146   1.1       cgd 		if (reply("LOOK FOR ALTERNATE SUPERBLOCKS") == 0)
    147   1.1       cgd 			return (0);
    148   1.1       cgd 		for (cg = 0; cg < proto.fs_ncg; cg++) {
    149   1.1       cgd 			bflag = fsbtodb(&proto, cgsblock(&proto, cg));
    150   1.1       cgd 			if (readsb(0) != 0)
    151   1.1       cgd 				break;
    152   1.1       cgd 		}
    153   1.1       cgd 		if (cg >= proto.fs_ncg) {
    154   1.1       cgd 			printf("%s %s\n%s %s\n%s %s\n",
    155   1.1       cgd 				"SEARCH FOR ALTERNATE SUPER-BLOCK",
    156   1.1       cgd 				"FAILED. YOU MUST USE THE",
    157  1.23       cgd 				"-b OPTION TO FSCK_FFS TO SPECIFY THE",
    158   1.1       cgd 				"LOCATION OF AN ALTERNATE",
    159   1.1       cgd 				"SUPER-BLOCK TO SUPPLY NEEDED",
    160  1.23       cgd 				"INFORMATION; SEE fsck_ffs(8).");
    161   1.1       cgd 			return(0);
    162   1.1       cgd 		}
    163  1.21   mycroft 		doskipclean = 0;
    164   1.1       cgd 		pwarn("USING ALTERNATE SUPERBLOCK AT %d\n", bflag);
    165   1.1       cgd 	}
    166  1.21   mycroft 	if (debug)
    167  1.33    bouyer 		printf("clean = %d\n", sblock->fs_clean);
    168  1.33    bouyer 	if (doswap)
    169  1.33    bouyer 		doskipclean = 0;
    170  1.33    bouyer 	if (sblock->fs_clean & FS_ISCLEAN) {
    171  1.22       cgd 		if (doskipclean) {
    172  1.22       cgd 			pwarn("%sile system is clean; not checking\n",
    173  1.22       cgd 			    preen ? "f" : "** F");
    174  1.21   mycroft 			return (-1);
    175  1.21   mycroft 		}
    176  1.33    bouyer 		if (!preen && !doswap)
    177  1.21   mycroft 			pwarn("** File system is already clean\n");
    178  1.21   mycroft 	}
    179  1.33    bouyer 	maxfsblock = sblock->fs_size;
    180  1.33    bouyer 	maxino = sblock->fs_ncg * sblock->fs_ipg;
    181  1.33    bouyer 	sizepb = sblock->fs_bsize;
    182  1.33    bouyer 	maxfilesize = sblock->fs_bsize * NDADDR - 1;
    183  1.24   mycroft 	for (i = 0; i < NIADDR; i++) {
    184  1.33    bouyer 		sizepb *= NINDIR(sblock);
    185  1.24   mycroft 		maxfilesize += sizepb;
    186  1.24   mycroft 	}
    187   1.1       cgd 	/*
    188   1.1       cgd 	 * Check and potentially fix certain fields in the super block.
    189   1.1       cgd 	 */
    190  1.33    bouyer 	if (sblock->fs_optim != FS_OPTTIME && sblock->fs_optim != FS_OPTSPACE) {
    191   1.1       cgd 		pfatal("UNDEFINED OPTIMIZATION IN SUPERBLOCK");
    192   1.1       cgd 		if (reply("SET TO DEFAULT") == 1) {
    193  1.33    bouyer 			sblock->fs_optim = FS_OPTTIME;
    194   1.1       cgd 			sbdirty();
    195   1.1       cgd 		}
    196   1.1       cgd 	}
    197  1.33    bouyer 	if ((sblock->fs_minfree < 0 || sblock->fs_minfree > 99)) {
    198   1.1       cgd 		pfatal("IMPOSSIBLE MINFREE=%d IN SUPERBLOCK",
    199  1.33    bouyer 			sblock->fs_minfree);
    200   1.1       cgd 		if (reply("SET TO DEFAULT") == 1) {
    201  1.33    bouyer 			sblock->fs_minfree = 10;
    202   1.1       cgd 			sbdirty();
    203   1.1       cgd 		}
    204   1.1       cgd 	}
    205  1.33    bouyer 	if (sblock->fs_interleave < 1 ||
    206  1.33    bouyer 	    sblock->fs_interleave > sblock->fs_nsect) {
    207   1.1       cgd 		pwarn("IMPOSSIBLE INTERLEAVE=%d IN SUPERBLOCK",
    208  1.33    bouyer 			sblock->fs_interleave);
    209  1.33    bouyer 		sblock->fs_interleave = 1;
    210   1.1       cgd 		if (preen)
    211   1.1       cgd 			printf(" (FIXED)\n");
    212   1.1       cgd 		if (preen || reply("SET TO DEFAULT") == 1) {
    213   1.1       cgd 			sbdirty();
    214   1.1       cgd 			dirty(&asblk);
    215   1.1       cgd 		}
    216   1.1       cgd 	}
    217  1.33    bouyer 	if (sblock->fs_npsect < sblock->fs_nsect ||
    218  1.33    bouyer 	    sblock->fs_npsect > sblock->fs_nsect*2) {
    219   1.1       cgd 		pwarn("IMPOSSIBLE NPSECT=%d IN SUPERBLOCK",
    220  1.33    bouyer 			sblock->fs_npsect);
    221  1.33    bouyer 		sblock->fs_npsect = sblock->fs_nsect;
    222   1.1       cgd 		if (preen)
    223   1.1       cgd 			printf(" (FIXED)\n");
    224   1.1       cgd 		if (preen || reply("SET TO DEFAULT") == 1) {
    225   1.1       cgd 			sbdirty();
    226   1.1       cgd 			dirty(&asblk);
    227   1.1       cgd 		}
    228   1.1       cgd 	}
    229  1.33    bouyer 	if (sblock->fs_bmask != ~(sblock->fs_bsize - 1)) {
    230  1.28     lukem 		pwarn("INCORRECT BMASK=0x%x IN SUPERBLOCK",
    231  1.33    bouyer 			sblock->fs_bmask);
    232  1.33    bouyer 		sblock->fs_bmask = ~(sblock->fs_bsize - 1);
    233  1.24   mycroft 		if (preen)
    234  1.24   mycroft 			printf(" (FIXED)\n");
    235  1.24   mycroft 		if (preen || reply("FIX") == 1) {
    236  1.24   mycroft 			sbdirty();
    237  1.24   mycroft 			dirty(&asblk);
    238  1.24   mycroft 		}
    239  1.24   mycroft 	}
    240  1.33    bouyer 	if (sblock->fs_fmask != ~(sblock->fs_fsize - 1)) {
    241  1.28     lukem 		pwarn("INCORRECT FMASK=0x%x IN SUPERBLOCK",
    242  1.33    bouyer 			sblock->fs_fmask);
    243  1.33    bouyer 		sblock->fs_fmask = ~(sblock->fs_fsize - 1);
    244  1.24   mycroft 		if (preen)
    245  1.24   mycroft 			printf(" (FIXED)\n");
    246  1.24   mycroft 		if (preen || reply("FIX") == 1) {
    247  1.24   mycroft 			sbdirty();
    248  1.24   mycroft 			dirty(&asblk);
    249  1.24   mycroft 		}
    250  1.24   mycroft 	}
    251  1.33    bouyer 	if (sblock->fs_inodefmt >= FS_44INODEFMT) {
    252  1.33    bouyer 		if (sblock->fs_maxfilesize != maxfilesize) {
    253  1.24   mycroft 			pwarn("INCORRECT MAXFILESIZE=%qd IN SUPERBLOCK",
    254  1.33    bouyer 			    (unsigned long long)sblock->fs_maxfilesize);
    255  1.33    bouyer 			sblock->fs_maxfilesize = maxfilesize;
    256  1.24   mycroft 			if (preen)
    257  1.24   mycroft 				printf(" (FIXED)\n");
    258  1.24   mycroft 			if (preen || reply("FIX") == 1) {
    259  1.24   mycroft 				sbdirty();
    260  1.24   mycroft 				dirty(&asblk);
    261  1.24   mycroft 			}
    262  1.24   mycroft 		}
    263  1.33    bouyer 		if (sblock->fs_maxsymlinklen != MAXSYMLINKLEN) {
    264  1.24   mycroft 			pwarn("INCORRECT MAXSYMLINKLEN=%d IN SUPERBLOCK",
    265  1.33    bouyer 				sblock->fs_maxsymlinklen);
    266  1.33    bouyer 			sblock->fs_maxsymlinklen = MAXSYMLINKLEN;
    267  1.24   mycroft 			if (preen)
    268  1.24   mycroft 				printf(" (FIXED)\n");
    269  1.24   mycroft 			if (preen || reply("FIX") == 1) {
    270  1.24   mycroft 				sbdirty();
    271  1.24   mycroft 				dirty(&asblk);
    272  1.24   mycroft 			}
    273  1.24   mycroft 		}
    274  1.33    bouyer 		if (sblock->fs_qbmask != ~sblock->fs_bmask) {
    275  1.25   mycroft 			pwarn("INCORRECT QBMASK=%qx IN SUPERBLOCK",
    276  1.33    bouyer 			    (unsigned long long)sblock->fs_qbmask);
    277  1.33    bouyer 			sblock->fs_qbmask = ~sblock->fs_bmask;
    278  1.24   mycroft 			if (preen)
    279  1.24   mycroft 				printf(" (FIXED)\n");
    280  1.24   mycroft 			if (preen || reply("FIX") == 1) {
    281  1.24   mycroft 				sbdirty();
    282  1.24   mycroft 				dirty(&asblk);
    283  1.24   mycroft 			}
    284  1.24   mycroft 		}
    285  1.33    bouyer 		if (sblock->fs_qfmask != ~sblock->fs_fmask) {
    286  1.25   mycroft 			pwarn("INCORRECT QFMASK=%qx IN SUPERBLOCK",
    287  1.33    bouyer 			    (unsigned long long)sblock->fs_qfmask);
    288  1.33    bouyer 			sblock->fs_qfmask = ~sblock->fs_fmask;
    289  1.24   mycroft 			if (preen)
    290  1.24   mycroft 				printf(" (FIXED)\n");
    291  1.24   mycroft 			if (preen || reply("FIX") == 1) {
    292  1.24   mycroft 				sbdirty();
    293  1.24   mycroft 				dirty(&asblk);
    294  1.24   mycroft 			}
    295  1.24   mycroft 		}
    296  1.10   mycroft 		newinofmt = 1;
    297  1.10   mycroft 	} else {
    298  1.33    bouyer 		sblock->fs_qbmask = ~sblock->fs_bmask;
    299  1.33    bouyer 		sblock->fs_qfmask = ~sblock->fs_fmask;
    300  1.10   mycroft 		newinofmt = 0;
    301  1.10   mycroft 	}
    302  1.10   mycroft 	/*
    303  1.10   mycroft 	 * Convert to new inode format.
    304  1.10   mycroft 	 */
    305  1.33    bouyer 	if (cvtlevel >= 2 && sblock->fs_inodefmt < FS_44INODEFMT) {
    306  1.10   mycroft 		if (preen)
    307  1.10   mycroft 			pwarn("CONVERTING TO NEW INODE FORMAT\n");
    308  1.10   mycroft 		else if (!reply("CONVERT TO NEW INODE FORMAT"))
    309  1.10   mycroft 			return(0);
    310  1.10   mycroft 		doinglevel2++;
    311  1.33    bouyer 		sblock->fs_inodefmt = FS_44INODEFMT;
    312  1.33    bouyer 		sblock->fs_maxfilesize = maxfilesize;
    313  1.33    bouyer 		sblock->fs_maxsymlinklen = MAXSYMLINKLEN;
    314  1.33    bouyer 		sblock->fs_qbmask = ~sblock->fs_bmask;
    315  1.33    bouyer 		sblock->fs_qfmask = ~sblock->fs_fmask;
    316  1.10   mycroft 		sbdirty();
    317  1.10   mycroft 		dirty(&asblk);
    318  1.10   mycroft 	}
    319  1.10   mycroft 	/*
    320  1.10   mycroft 	 * Convert to new cylinder group format.
    321  1.10   mycroft 	 */
    322  1.33    bouyer 	if (cvtlevel >= 1 && sblock->fs_postblformat == FS_42POSTBLFMT) {
    323  1.10   mycroft 		if (preen)
    324  1.10   mycroft 			pwarn("CONVERTING TO NEW CYLINDER GROUP FORMAT\n");
    325  1.10   mycroft 		else if (!reply("CONVERT TO NEW CYLINDER GROUP FORMAT"))
    326  1.10   mycroft 			return(0);
    327  1.10   mycroft 		doinglevel1++;
    328  1.33    bouyer 		sblock->fs_postblformat = FS_DYNAMICPOSTBLFMT;
    329  1.33    bouyer 		sblock->fs_nrpos = 8;
    330  1.33    bouyer 		sblock->fs_postbloff =
    331  1.33    bouyer 		    (char *)(&sblock->fs_opostbl[0][0]) -
    332  1.33    bouyer 		    (char *)(&sblock->fs_firstfield);
    333  1.33    bouyer 		sblock->fs_rotbloff = &sblock->fs_space[0] -
    334  1.33    bouyer 		    (u_char *)(&sblock->fs_firstfield);
    335  1.33    bouyer 		sblock->fs_cgsize =
    336  1.33    bouyer 			fragroundup(sblock, CGSIZE(sblock));
    337  1.10   mycroft 		sbdirty();
    338  1.10   mycroft 		dirty(&asblk);
    339   1.1       cgd 	}
    340  1.11        ws 	if (asblk.b_dirty && !bflag) {
    341  1.33    bouyer 		memmove((struct fs*)sblk.b_un.b_fs, sblock, SBSIZE);
    342  1.33    bouyer 		if (needswap)
    343  1.33    bouyer 			ffs_sb_swap(sblock, (struct fs*)sblk.b_un.b_fs, 1);
    344  1.33    bouyer 		memmove(asblk.b_un.b_fs, sblk.b_un.b_fs, (size_t)sblock->fs_sbsize);
    345   1.1       cgd 		flush(fswritefd, &asblk);
    346   1.1       cgd 	}
    347   1.1       cgd 	/*
    348   1.1       cgd 	 * read in the summary info.
    349   1.1       cgd 	 */
    350   1.1       cgd 	asked = 0;
    351  1.33    bouyer 	for (i = 0, j = 0; i < sblock->fs_cssize; i += sblock->fs_bsize, j++) {
    352  1.33    bouyer 		size = sblock->fs_cssize - i < sblock->fs_bsize ?
    353  1.33    bouyer 		    sblock->fs_cssize - i : sblock->fs_bsize;
    354  1.33    bouyer 		sblock->fs_csp[j] = (struct csum *)calloc(1, (unsigned)size);
    355  1.33    bouyer 		if (bread(fsreadfd, (char *)sblock->fs_csp[j],
    356  1.33    bouyer 		    fsbtodb(sblock, sblock->fs_csaddr + j * sblock->fs_frag),
    357   1.1       cgd 		    size) != 0 && !asked) {
    358   1.1       cgd 			pfatal("BAD SUMMARY INFORMATION");
    359  1.37      fvdl 			if (reply("CONTINUE") == 0) {
    360  1.37      fvdl 				markclean = 0;
    361  1.30     lukem 				exit(EEXIT);
    362  1.37      fvdl 			}
    363   1.1       cgd 			asked++;
    364   1.1       cgd 		}
    365  1.33    bouyer 		/*
    366  1.37      fvdl 		 * The following assumes that struct csum is made of
    367  1.37      fvdl 		 * u_int32_t
    368  1.33    bouyer 		 */
    369  1.33    bouyer 		if (doswap) {
    370  1.33    bouyer 			int k;
    371  1.33    bouyer 			u_int32_t *cd = (u_int32_t *)sblock->fs_csp[j];
    372  1.37      fvdl 
    373  1.33    bouyer 			for (k = 0; k < size / sizeof(u_int32_t); k++)
    374  1.33    bouyer 				cd[k] = bswap32(cd[k]);
    375  1.33    bouyer 			bwrite(fswritefd, (char *)sblock->fs_csp[j],
    376  1.37      fvdl 			    fsbtodb(sblock,
    377  1.37      fvdl 				sblock->fs_csaddr + j * sblock->fs_frag),
    378  1.37      fvdl 			    size);
    379  1.33    bouyer 		}
    380  1.33    bouyer 		if (needswap) {
    381  1.33    bouyer 			int k;
    382  1.33    bouyer 			u_int32_t *cd = (u_int32_t *)sblock->fs_csp[j];
    383  1.37      fvdl 
    384  1.33    bouyer 			for (k = 0; k < size / sizeof(u_int32_t); k++)
    385  1.33    bouyer 				cd[k] = bswap32(cd[k]);
    386  1.33    bouyer 		}
    387   1.1       cgd 	}
    388   1.1       cgd 	/*
    389   1.1       cgd 	 * allocate and initialize the necessary maps
    390   1.1       cgd 	 */
    391  1.20       cgd 	bmapsize = roundup(howmany(maxfsblock, NBBY), sizeof(int16_t));
    392   1.1       cgd 	blockmap = calloc((unsigned)bmapsize, sizeof (char));
    393   1.1       cgd 	if (blockmap == NULL) {
    394   1.1       cgd 		printf("cannot alloc %u bytes for blockmap\n",
    395   1.1       cgd 		    (unsigned)bmapsize);
    396  1.15       cgd 		goto badsblabel;
    397   1.1       cgd 	}
    398   1.1       cgd 	statemap = calloc((unsigned)(maxino + 1), sizeof(char));
    399   1.1       cgd 	if (statemap == NULL) {
    400   1.1       cgd 		printf("cannot alloc %u bytes for statemap\n",
    401   1.1       cgd 		    (unsigned)(maxino + 1));
    402  1.15       cgd 		goto badsblabel;
    403   1.1       cgd 	}
    404  1.10   mycroft 	typemap = calloc((unsigned)(maxino + 1), sizeof(char));
    405  1.10   mycroft 	if (typemap == NULL) {
    406  1.10   mycroft 		printf("cannot alloc %u bytes for typemap\n",
    407  1.10   mycroft 		    (unsigned)(maxino + 1));
    408  1.15       cgd 		goto badsblabel;
    409  1.10   mycroft 	}
    410  1.20       cgd 	lncntp = (int16_t *)calloc((unsigned)(maxino + 1), sizeof(int16_t));
    411   1.1       cgd 	if (lncntp == NULL) {
    412   1.1       cgd 		printf("cannot alloc %u bytes for lncntp\n",
    413  1.29       mrg 		    (unsigned)((maxino + 1) * sizeof(int16_t)));
    414  1.15       cgd 		goto badsblabel;
    415   1.1       cgd 	}
    416  1.33    bouyer 	numdirs = sblock->fs_cstotal.cs_ndir;
    417   1.1       cgd 	inplast = 0;
    418   1.1       cgd 	listmax = numdirs + 10;
    419   1.1       cgd 	inpsort = (struct inoinfo **)calloc((unsigned)listmax,
    420   1.1       cgd 	    sizeof(struct inoinfo *));
    421   1.1       cgd 	inphead = (struct inoinfo **)calloc((unsigned)numdirs,
    422   1.1       cgd 	    sizeof(struct inoinfo *));
    423   1.1       cgd 	if (inpsort == NULL || inphead == NULL) {
    424   1.1       cgd 		printf("cannot alloc %u bytes for inphead\n",
    425  1.29       mrg 		    (unsigned)(numdirs * sizeof(struct inoinfo *)));
    426  1.15       cgd 		goto badsblabel;
    427   1.1       cgd 	}
    428  1.37      fvdl 	cgrp = malloc(sblock->fs_cgsize);
    429  1.37      fvdl 	if (cgrp == NULL) {
    430  1.37      fvdl 		printf("cannot alloc %u bytes for cylinder group\n",
    431  1.37      fvdl 		    sblock->fs_cgsize);
    432  1.37      fvdl 		goto badsblabel;
    433  1.37      fvdl 	}
    434   1.1       cgd 	bufinit();
    435  1.37      fvdl 	if (sblock->fs_flags & FS_DOSOFTDEP)
    436  1.37      fvdl 		usedsoftdep = 1;
    437  1.37      fvdl 	else
    438  1.37      fvdl 		usedsoftdep = 0;
    439   1.1       cgd 	return (1);
    440   1.1       cgd 
    441  1.15       cgd badsblabel:
    442  1.33    bouyer 	markclean=0;
    443  1.33    bouyer 	ckfini();
    444   1.1       cgd 	return (0);
    445   1.1       cgd }
    446   1.1       cgd 
    447   1.1       cgd /*
    448   1.1       cgd  * Read in the super block and its summary info.
    449   1.1       cgd  */
    450  1.26  christos static int
    451   1.1       cgd readsb(listerr)
    452   1.1       cgd 	int listerr;
    453   1.1       cgd {
    454  1.30     lukem 	ufs_daddr_t super = bflag ? bflag : SBOFF / dev_bsize;
    455  1.33    bouyer 	struct fs *fs;
    456   1.1       cgd 
    457  1.33    bouyer 	if (bread(fsreadfd, (char *)sblk.b_un.b_fs, super, (long)SBSIZE) != 0)
    458   1.1       cgd 		return (0);
    459   1.1       cgd 	sblk.b_bno = super;
    460   1.1       cgd 	sblk.b_size = SBSIZE;
    461  1.33    bouyer 
    462  1.33    bouyer 	fs = sblk.b_un.b_fs;
    463  1.33    bouyer 	/* auto detect byte order */
    464  1.33    bouyer 	if( fs->fs_magic == FS_MAGIC) {
    465  1.33    bouyer 			if (endian == 0 || BYTE_ORDER == endian) {
    466  1.33    bouyer 				needswap = 0;
    467  1.33    bouyer 				doswap = do_blkswap = do_dirswap = 0;
    468  1.33    bouyer 			} else {
    469  1.33    bouyer 				needswap = 1;
    470  1.33    bouyer 				doswap = do_blkswap = do_dirswap = 1;
    471  1.33    bouyer 			}
    472  1.33    bouyer 	} else if (fs->fs_magic == bswap32(FS_MAGIC)) {
    473  1.33    bouyer 		if (endian == 0 || BYTE_ORDER != endian) {
    474  1.33    bouyer 			needswap = 1;
    475  1.33    bouyer 			doswap = do_blkswap = do_dirswap = 0;
    476  1.33    bouyer 		} else {
    477  1.33    bouyer 			needswap = 0;
    478  1.33    bouyer 			doswap = do_blkswap = do_dirswap = 1;
    479  1.33    bouyer 		}
    480  1.33    bouyer 	} else {
    481  1.33    bouyer 		badsb(listerr, "MAGIC NUMBER WRONG");
    482  1.33    bouyer 		return (0);
    483  1.33    bouyer 	}
    484  1.33    bouyer 	if (doswap) {
    485  1.33    bouyer 		if (preen)
    486  1.33    bouyer 			errx(EEXIT, "incompatible options -B and -p");
    487  1.33    bouyer 		if (nflag)
    488  1.33    bouyer 			errx(EEXIT, "incompatible options -B and -n");
    489  1.33    bouyer 		if (endian == LITTLE_ENDIAN) {
    490  1.36        is 			if (!reply("CONVERT TO LITTLE ENDIAN"))
    491  1.33    bouyer 				return 0;
    492  1.33    bouyer 		} else if (endian == BIG_ENDIAN) {
    493  1.36        is 			if (!reply("CONVERT TO BIG ENDIAN"))
    494  1.33    bouyer 				return 0;
    495  1.33    bouyer 		} else
    496  1.33    bouyer 			pfatal("INTERNAL ERROR: unknown endian");
    497  1.33    bouyer 	}
    498  1.33    bouyer 	if (needswap)
    499  1.33    bouyer 		printf("** Swapped byte order\n");
    500  1.33    bouyer 	/* swap SB byte order if asked */
    501  1.33    bouyer 	if (doswap)
    502  1.33    bouyer 		ffs_sb_swap(sblk.b_un.b_fs, sblk.b_un.b_fs, needswap);
    503  1.33    bouyer 
    504  1.33    bouyer 	memmove(sblock, sblk.b_un.b_fs, SBSIZE);
    505  1.33    bouyer 	if (needswap)
    506  1.33    bouyer 		ffs_sb_swap(sblk.b_un.b_fs, sblock, 0);
    507  1.33    bouyer 
    508   1.1       cgd 	/*
    509   1.1       cgd 	 * run a few consistency checks of the super block
    510   1.1       cgd 	 */
    511  1.33    bouyer 	if (sblock->fs_ncg < 1)
    512   1.1       cgd 		{ badsb(listerr, "NCG OUT OF RANGE"); return (0); }
    513  1.33    bouyer 	if (sblock->fs_cpg < 1)
    514   1.1       cgd 		{ badsb(listerr, "CPG OUT OF RANGE"); return (0); }
    515  1.33    bouyer 	if (sblock->fs_ncg * sblock->fs_cpg < sblock->fs_ncyl ||
    516  1.33    bouyer 	    (sblock->fs_ncg - 1) * sblock->fs_cpg >= sblock->fs_ncyl)
    517   1.1       cgd 		{ badsb(listerr, "NCYL LESS THAN NCG*CPG"); return (0); }
    518  1.33    bouyer 	if (sblock->fs_sbsize > SBSIZE)
    519   1.1       cgd 		{ badsb(listerr, "SIZE PREPOSTEROUSLY LARGE"); return (0); }
    520   1.1       cgd 	/*
    521   1.1       cgd 	 * Compute block size that the filesystem is based on,
    522   1.1       cgd 	 * according to fsbtodb, and adjust superblock block number
    523   1.1       cgd 	 * so we can tell if this is an alternate later.
    524   1.1       cgd 	 */
    525   1.1       cgd 	super *= dev_bsize;
    526  1.33    bouyer 	dev_bsize = sblock->fs_fsize / fsbtodb(sblock, 1);
    527   1.1       cgd 	sblk.b_bno = super / dev_bsize;
    528  1.33    bouyer 
    529  1.10   mycroft 	if (bflag) {
    530  1.10   mycroft 		havesb = 1;
    531  1.10   mycroft 		return (1);
    532  1.10   mycroft 	}
    533   1.1       cgd 	/*
    534   1.1       cgd 	 * Set all possible fields that could differ, then do check
    535   1.1       cgd 	 * of whole super block against an alternate super block.
    536   1.1       cgd 	 * When an alternate super-block is specified this check is skipped.
    537   1.1       cgd 	 */
    538  1.33    bouyer 	getblk(&asblk, cgsblock(sblock, sblock->fs_ncg - 1), sblock->fs_sbsize);
    539   1.1       cgd 	if (asblk.b_errs)
    540   1.1       cgd 		return (0);
    541  1.33    bouyer 	/* swap SB byte order if asked */
    542  1.33    bouyer 	if (doswap)
    543  1.33    bouyer 		ffs_sb_swap(asblk.b_un.b_fs, asblk.b_un.b_fs, needswap);
    544  1.33    bouyer 
    545  1.33    bouyer 	memmove(altsblock, asblk.b_un.b_fs, sblock->fs_sbsize);
    546  1.33    bouyer 	if (needswap)
    547  1.33    bouyer 		ffs_sb_swap(asblk.b_un.b_fs, altsblock, 0);
    548  1.33    bouyer 	altsblock->fs_firstfield = sblock->fs_firstfield;
    549  1.33    bouyer 	altsblock->fs_fscktime = sblock->fs_fscktime;
    550  1.33    bouyer 	altsblock->fs_unused_1 = sblock->fs_unused_1;
    551  1.33    bouyer 	altsblock->fs_time = sblock->fs_time;
    552  1.33    bouyer 	altsblock->fs_cstotal = sblock->fs_cstotal;
    553  1.33    bouyer 	altsblock->fs_cgrotor = sblock->fs_cgrotor;
    554  1.33    bouyer 	altsblock->fs_fmod = sblock->fs_fmod;
    555  1.33    bouyer 	altsblock->fs_clean = sblock->fs_clean;
    556  1.33    bouyer 	altsblock->fs_ronly = sblock->fs_ronly;
    557  1.33    bouyer 	altsblock->fs_flags = sblock->fs_flags;
    558  1.33    bouyer 	altsblock->fs_maxcontig = sblock->fs_maxcontig;
    559  1.33    bouyer 	altsblock->fs_minfree = sblock->fs_minfree;
    560  1.33    bouyer 	altsblock->fs_optim = sblock->fs_optim;
    561  1.33    bouyer 	altsblock->fs_rotdelay = sblock->fs_rotdelay;
    562  1.33    bouyer 	altsblock->fs_maxbpg = sblock->fs_maxbpg;
    563  1.33    bouyer 	memmove(altsblock->fs_csp, sblock->fs_csp, sizeof sblock->fs_csp);
    564  1.33    bouyer 	altsblock->fs_maxcluster = sblock->fs_maxcluster;
    565  1.33    bouyer 	memmove(altsblock->fs_fsmnt, sblock->fs_fsmnt, sizeof sblock->fs_fsmnt);
    566  1.33    bouyer 	memmove(altsblock->fs_sparecon,
    567  1.33    bouyer 		sblock->fs_sparecon, sizeof sblock->fs_sparecon);
    568   1.1       cgd 	/*
    569   1.1       cgd 	 * The following should not have to be copied.
    570   1.1       cgd 	 */
    571  1.33    bouyer 	altsblock->fs_fsbtodb = sblock->fs_fsbtodb;
    572  1.33    bouyer 	altsblock->fs_interleave = sblock->fs_interleave;
    573  1.33    bouyer 	altsblock->fs_npsect = sblock->fs_npsect;
    574  1.33    bouyer 	altsblock->fs_nrpos = sblock->fs_nrpos;
    575  1.33    bouyer 	altsblock->fs_state = sblock->fs_state;
    576  1.33    bouyer 	altsblock->fs_qbmask = sblock->fs_qbmask;
    577  1.33    bouyer 	altsblock->fs_qfmask = sblock->fs_qfmask;
    578  1.33    bouyer 	altsblock->fs_state = sblock->fs_state;
    579  1.33    bouyer 	altsblock->fs_maxfilesize = sblock->fs_maxfilesize;
    580  1.33    bouyer 	if (memcmp(sblock, altsblock, (int)sblock->fs_sbsize)) {
    581  1.18   mycroft 		if (debug) {
    582  1.18   mycroft 			long *nlp, *olp, *endlp;
    583  1.18   mycroft 
    584  1.18   mycroft 			printf("superblock mismatches\n");
    585  1.33    bouyer 			nlp = (long *)altsblock;
    586  1.33    bouyer 			olp = (long *)sblock;
    587  1.33    bouyer 			endlp = olp + (sblock->fs_sbsize / sizeof *olp);
    588  1.18   mycroft 			for ( ; olp < endlp; olp++, nlp++) {
    589  1.18   mycroft 				if (*olp == *nlp)
    590  1.18   mycroft 					continue;
    591  1.33    bouyer 				printf("offset %ld, original %lx, alternate %lx\n",
    592  1.33    bouyer 				    (long)(olp - (long *)sblock), *olp, *nlp);
    593  1.18   mycroft 			}
    594  1.18   mycroft 		}
    595   1.1       cgd 		badsb(listerr,
    596   1.1       cgd 		"VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST ALTERNATE");
    597   1.1       cgd 		return (0);
    598   1.1       cgd 	}
    599  1.33    bouyer 	/* Now we know the SB is valid, we can write it back if needed */
    600  1.33    bouyer 	if (doswap) {
    601  1.33    bouyer 		sbdirty();
    602  1.33    bouyer 		dirty(&asblk);
    603  1.33    bouyer 	}
    604   1.1       cgd 	havesb = 1;
    605   1.1       cgd 	return (1);
    606   1.1       cgd }
    607   1.1       cgd 
    608  1.30     lukem static void
    609   1.1       cgd badsb(listerr, s)
    610   1.1       cgd 	int listerr;
    611   1.1       cgd 	char *s;
    612   1.1       cgd {
    613   1.1       cgd 
    614   1.1       cgd 	if (!listerr)
    615   1.1       cgd 		return;
    616   1.1       cgd 	if (preen)
    617  1.26  christos 		printf("%s: ", cdevname());
    618   1.1       cgd 	pfatal("BAD SUPER BLOCK: %s\n", s);
    619   1.1       cgd }
    620   1.1       cgd 
    621   1.1       cgd /*
    622   1.1       cgd  * Calculate a prototype superblock based on information in the disk label.
    623   1.1       cgd  * When done the cgsblock macro can be calculated and the fs_ncg field
    624   1.1       cgd  * can be used. Do NOT attempt to use other macros without verifying that
    625   1.1       cgd  * their needed information is available!
    626   1.1       cgd  */
    627  1.30     lukem static int
    628   1.1       cgd calcsb(dev, devfd, fs)
    629  1.34   mycroft 	const char *dev;
    630   1.1       cgd 	int devfd;
    631  1.28     lukem 	struct fs *fs;
    632   1.1       cgd {
    633  1.28     lukem 	struct disklabel *lp;
    634  1.28     lukem 	struct partition *pp;
    635  1.28     lukem 	char *cp;
    636   1.1       cgd 	int i;
    637   1.1       cgd 
    638  1.12   mycroft 	cp = strchr(dev, '\0') - 1;
    639  1.26  christos 	if ((cp == (char *)-1 || (*cp < 'a' || *cp > 'h')) && !isdigit(*cp)) {
    640   1.1       cgd 		pfatal("%s: CANNOT FIGURE OUT FILE SYSTEM PARTITION\n", dev);
    641   1.1       cgd 		return (0);
    642   1.1       cgd 	}
    643   1.1       cgd 	lp = getdisklabel(dev, devfd);
    644   1.1       cgd 	if (isdigit(*cp))
    645   1.1       cgd 		pp = &lp->d_partitions[0];
    646   1.1       cgd 	else
    647   1.1       cgd 		pp = &lp->d_partitions[*cp - 'a'];
    648   1.1       cgd 	if (pp->p_fstype != FS_BSDFFS) {
    649   1.1       cgd 		pfatal("%s: NOT LABELED AS A BSD FILE SYSTEM (%s)\n",
    650   1.1       cgd 			dev, pp->p_fstype < FSMAXTYPES ?
    651   1.1       cgd 			fstypenames[pp->p_fstype] : "unknown");
    652   1.1       cgd 		return (0);
    653   1.1       cgd 	}
    654  1.33    bouyer 	/* avoid divide by 0 */
    655  1.33    bouyer 	if (pp->p_fsize == 0 || pp->p_frag == 0)
    656  1.33    bouyer 		return (0);
    657  1.12   mycroft 	memset(fs, 0, sizeof(struct fs));
    658   1.1       cgd 	fs->fs_fsize = pp->p_fsize;
    659   1.1       cgd 	fs->fs_frag = pp->p_frag;
    660   1.1       cgd 	fs->fs_cpg = pp->p_cpg;
    661   1.1       cgd 	fs->fs_size = pp->p_size;
    662   1.1       cgd 	fs->fs_ntrak = lp->d_ntracks;
    663   1.1       cgd 	fs->fs_nsect = lp->d_nsectors;
    664   1.1       cgd 	fs->fs_spc = lp->d_secpercyl;
    665   1.1       cgd 	fs->fs_nspf = fs->fs_fsize / lp->d_secsize;
    666   1.1       cgd 	fs->fs_sblkno = roundup(
    667   1.1       cgd 		howmany(lp->d_bbsize + lp->d_sbsize, fs->fs_fsize),
    668   1.1       cgd 		fs->fs_frag);
    669   1.1       cgd 	fs->fs_cgmask = 0xffffffff;
    670   1.1       cgd 	for (i = fs->fs_ntrak; i > 1; i >>= 1)
    671   1.1       cgd 		fs->fs_cgmask <<= 1;
    672   1.1       cgd 	if (!POWEROF2(fs->fs_ntrak))
    673   1.1       cgd 		fs->fs_cgmask <<= 1;
    674   1.1       cgd 	fs->fs_cgoffset = roundup(
    675   1.1       cgd 		howmany(fs->fs_nsect, NSPF(fs)), fs->fs_frag);
    676   1.1       cgd 	fs->fs_fpg = (fs->fs_cpg * fs->fs_spc) / NSPF(fs);
    677   1.1       cgd 	fs->fs_ncg = howmany(fs->fs_size / fs->fs_spc, fs->fs_cpg);
    678   1.1       cgd 	for (fs->fs_fsbtodb = 0, i = NSPF(fs); i > 1; i >>= 1)
    679   1.1       cgd 		fs->fs_fsbtodb++;
    680   1.1       cgd 	dev_bsize = lp->d_secsize;
    681   1.1       cgd 	return (1);
    682   1.1       cgd }
    683   1.1       cgd 
    684  1.26  christos static struct disklabel *
    685   1.1       cgd getdisklabel(s, fd)
    686  1.34   mycroft 	const char *s;
    687   1.1       cgd 	int	fd;
    688   1.1       cgd {
    689   1.1       cgd 	static struct disklabel lab;
    690   1.1       cgd 
    691   1.1       cgd 	if (ioctl(fd, DIOCGDINFO, (char *)&lab) < 0) {
    692   1.1       cgd 		if (s == NULL)
    693   1.1       cgd 			return ((struct disklabel *)NULL);
    694   1.1       cgd 		pwarn("ioctl (GCINFO): %s\n", strerror(errno));
    695  1.30     lukem 		errx(EEXIT, "%s: can't read disk label", s);
    696   1.1       cgd 	}
    697   1.1       cgd 	return (&lab);
    698   1.1       cgd }
    699