1997-09-24 13:24:21 +04:00
|
|
|
/* $NetBSD: setup.c,v 1.32 1997/09/24 09:24:23 lukem Exp $ */
|
1995-03-18 17:54:19 +03:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
1994-06-08 22:57:30 +04:00
|
|
|
* Copyright (c) 1980, 1986, 1993
|
|
|
|
* The Regents of the University of California. All rights reserved.
|
1993-03-21 12:45:37 +03:00
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
1997-09-14 18:36:29 +04:00
|
|
|
#include <sys/cdefs.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#ifndef lint
|
1995-03-18 17:54:19 +03:00
|
|
|
#if 0
|
1997-09-16 20:44:43 +04:00
|
|
|
static char sccsid[] = "@(#)setup.c 8.10 (Berkeley) 5/9/95";
|
1995-03-18 17:54:19 +03:00
|
|
|
#else
|
1997-09-24 13:24:21 +04:00
|
|
|
__RCSID("$NetBSD: setup.c,v 1.32 1997/09/24 09:24:23 lukem Exp $");
|
1995-03-18 17:54:19 +03:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#define DKTYPENAMES
|
|
|
|
#include <sys/param.h>
|
1994-04-25 22:28:42 +04:00
|
|
|
#include <sys/time.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/ioctl.h>
|
|
|
|
#include <sys/disklabel.h>
|
|
|
|
#include <sys/file.h>
|
1994-12-05 23:15:31 +03:00
|
|
|
|
1997-09-16 20:44:43 +04:00
|
|
|
#include <ufs/ufs/dinode.h>
|
|
|
|
#include <ufs/ffs/fs.h>
|
|
|
|
|
|
|
|
#include <ctype.h>
|
|
|
|
#include <err.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <errno.h>
|
1997-09-20 10:16:23 +04:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
1993-03-21 12:45:37 +03:00
|
|
|
#include <string.h>
|
1996-09-23 20:18:31 +04:00
|
|
|
|
1993-03-21 12:45:37 +03:00
|
|
|
#include "fsck.h"
|
1994-12-05 23:15:31 +03:00
|
|
|
#include "extern.h"
|
1996-09-28 02:45:10 +04:00
|
|
|
#include "fsutil.h"
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
struct bufarea asblk;
|
|
|
|
#define altsblock (*asblk.b_un.b_fs)
|
|
|
|
#define POWEROF2(num) (((num) & ((num) - 1)) == 0)
|
|
|
|
|
1997-09-16 20:44:43 +04:00
|
|
|
static void badsb __P((int, char *));
|
|
|
|
static int calcsb __P((char *, int, struct fs *));
|
1996-09-23 20:18:31 +04:00
|
|
|
static struct disklabel *getdisklabel __P((char *, int));
|
|
|
|
static int readsb __P((int));
|
1993-03-21 12:45:37 +03:00
|
|
|
|
1997-09-16 20:44:43 +04:00
|
|
|
/*
|
|
|
|
* Read in a superblock finding an alternate if necessary.
|
|
|
|
* Return 1 if successful, 0 if unsuccessful, -1 if filesystem
|
|
|
|
* is already clean (preen mode only).
|
|
|
|
*/
|
1994-12-05 23:15:31 +03:00
|
|
|
int
|
1993-03-21 12:45:37 +03:00
|
|
|
setup(dev)
|
|
|
|
char *dev;
|
|
|
|
{
|
|
|
|
long cg, size, asked, i, j;
|
|
|
|
long bmapsize;
|
|
|
|
struct disklabel *lp;
|
1994-06-08 22:57:30 +04:00
|
|
|
off_t sizepb;
|
|
|
|
struct stat statb;
|
1993-03-21 12:45:37 +03:00
|
|
|
struct fs proto;
|
1995-04-13 01:24:07 +04:00
|
|
|
int doskipclean;
|
1996-05-21 21:25:56 +04:00
|
|
|
u_int64_t maxfilesize;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
havesb = 0;
|
1994-06-08 22:57:30 +04:00
|
|
|
fswritefd = -1;
|
1995-04-13 01:24:07 +04:00
|
|
|
doskipclean = skipclean;
|
1993-03-21 12:45:37 +03:00
|
|
|
if (stat(dev, &statb) < 0) {
|
|
|
|
printf("Can't stat %s: %s\n", dev, strerror(errno));
|
|
|
|
return (0);
|
|
|
|
}
|
1994-10-28 19:55:05 +03:00
|
|
|
if (!S_ISCHR(statb.st_mode)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
pfatal("%s is not a character device", dev);
|
|
|
|
if (reply("CONTINUE") == 0)
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if ((fsreadfd = open(dev, O_RDONLY)) < 0) {
|
|
|
|
printf("Can't open %s: %s\n", dev, strerror(errno));
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
if (preen == 0)
|
|
|
|
printf("** %s", dev);
|
|
|
|
if (nflag || (fswritefd = open(dev, O_WRONLY)) < 0) {
|
|
|
|
fswritefd = -1;
|
|
|
|
if (preen)
|
|
|
|
pfatal("NO WRITE ACCESS");
|
|
|
|
printf(" (NO WRITE)");
|
|
|
|
}
|
|
|
|
if (preen == 0)
|
|
|
|
printf("\n");
|
|
|
|
fsmodified = 0;
|
|
|
|
lfdir = 0;
|
|
|
|
initbarea(&sblk);
|
|
|
|
initbarea(&asblk);
|
|
|
|
sblk.b_un.b_buf = malloc(SBSIZE);
|
|
|
|
asblk.b_un.b_buf = malloc(SBSIZE);
|
|
|
|
if (sblk.b_un.b_buf == NULL || asblk.b_un.b_buf == NULL)
|
1997-09-16 20:44:43 +04:00
|
|
|
errx(EEXIT, "cannot allocate space for superblock");
|
|
|
|
if ((lp = getdisklabel(NULL, fsreadfd)) != NULL)
|
1993-03-21 12:45:37 +03:00
|
|
|
dev_bsize = secsize = lp->d_secsize;
|
|
|
|
else
|
|
|
|
dev_bsize = secsize = DEV_BSIZE;
|
|
|
|
/*
|
|
|
|
* Read in the superblock, looking for alternates if necessary
|
|
|
|
*/
|
|
|
|
if (readsb(1) == 0) {
|
1997-09-24 13:24:21 +04:00
|
|
|
#ifdef LITE2BORKEN
|
1997-09-16 20:44:43 +04:00
|
|
|
skipclean = 0;
|
1997-09-24 13:24:21 +04:00
|
|
|
#endif
|
1993-03-21 12:45:37 +03:00
|
|
|
if (bflag || preen || calcsb(dev, fsreadfd, &proto) == 0)
|
|
|
|
return(0);
|
|
|
|
if (reply("LOOK FOR ALTERNATE SUPERBLOCKS") == 0)
|
|
|
|
return (0);
|
|
|
|
for (cg = 0; cg < proto.fs_ncg; cg++) {
|
|
|
|
bflag = fsbtodb(&proto, cgsblock(&proto, cg));
|
|
|
|
if (readsb(0) != 0)
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
if (cg >= proto.fs_ncg) {
|
|
|
|
printf("%s %s\n%s %s\n%s %s\n",
|
|
|
|
"SEARCH FOR ALTERNATE SUPER-BLOCK",
|
|
|
|
"FAILED. YOU MUST USE THE",
|
1996-04-05 05:44:24 +04:00
|
|
|
"-b OPTION TO FSCK_FFS TO SPECIFY THE",
|
1993-03-21 12:45:37 +03:00
|
|
|
"LOCATION OF AN ALTERNATE",
|
|
|
|
"SUPER-BLOCK TO SUPPLY NEEDED",
|
1996-04-05 05:44:24 +04:00
|
|
|
"INFORMATION; SEE fsck_ffs(8).");
|
1993-03-21 12:45:37 +03:00
|
|
|
return(0);
|
|
|
|
}
|
1995-04-13 01:24:07 +04:00
|
|
|
doskipclean = 0;
|
1993-03-21 12:45:37 +03:00
|
|
|
pwarn("USING ALTERNATE SUPERBLOCK AT %d\n", bflag);
|
|
|
|
}
|
1995-04-13 01:24:07 +04:00
|
|
|
if (debug)
|
|
|
|
printf("clean = %d\n", sblock.fs_clean);
|
|
|
|
if (sblock.fs_clean & FS_ISCLEAN) {
|
implement a 'force check' flag, '-f'. I used the SunOS name, but the Digital
semantics. now:
(1) dirty file systems will always be checked; nothing new there.
(2) if not '-f' clean file systems will _NEVER_ be checked,
i.e. they won't be checked even if -p isn't specified. This
allows one to 'fsck -p ; fsck' to preen, then clean up
anything that 'fsck -p' barfs on, without waiting for the
clean file systems to be checked again.
(3) if '-f' clean file systems will ALWAYS be checked. This
allows people to put 'fsck -fp' into /etc/rc on systems
where they're leery of the FS clean flag state, need
the extra reliability, and can afford time 'wasted'
in checks.
The assumption made here is that if a file system is marked clean, it
_IS CLEAN_, really, and shouldn't be checked unless fsck is explicitly
told to (with -f). This should be a valid assumption, but may not be in
the presence of file system bugs. Documentation updated to note '-f'.
1995-07-12 05:49:16 +04:00
|
|
|
if (doskipclean) {
|
|
|
|
pwarn("%sile system is clean; not checking\n",
|
|
|
|
preen ? "f" : "** F");
|
1995-04-13 01:24:07 +04:00
|
|
|
return (-1);
|
|
|
|
}
|
|
|
|
if (!preen)
|
|
|
|
pwarn("** File system is already clean\n");
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
maxfsblock = sblock.fs_size;
|
|
|
|
maxino = sblock.fs_ncg * sblock.fs_ipg;
|
1996-05-21 21:25:56 +04:00
|
|
|
sizepb = sblock.fs_bsize;
|
|
|
|
maxfilesize = sblock.fs_bsize * NDADDR - 1;
|
|
|
|
for (i = 0; i < NIADDR; i++) {
|
|
|
|
sizepb *= NINDIR(&sblock);
|
|
|
|
maxfilesize += sizepb;
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Check and potentially fix certain fields in the super block.
|
|
|
|
*/
|
|
|
|
if (sblock.fs_optim != FS_OPTTIME && sblock.fs_optim != FS_OPTSPACE) {
|
|
|
|
pfatal("UNDEFINED OPTIMIZATION IN SUPERBLOCK");
|
|
|
|
if (reply("SET TO DEFAULT") == 1) {
|
|
|
|
sblock.fs_optim = FS_OPTTIME;
|
|
|
|
sbdirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if ((sblock.fs_minfree < 0 || sblock.fs_minfree > 99)) {
|
|
|
|
pfatal("IMPOSSIBLE MINFREE=%d IN SUPERBLOCK",
|
|
|
|
sblock.fs_minfree);
|
|
|
|
if (reply("SET TO DEFAULT") == 1) {
|
|
|
|
sblock.fs_minfree = 10;
|
|
|
|
sbdirty();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_interleave < 1 ||
|
|
|
|
sblock.fs_interleave > sblock.fs_nsect) {
|
|
|
|
pwarn("IMPOSSIBLE INTERLEAVE=%d IN SUPERBLOCK",
|
|
|
|
sblock.fs_interleave);
|
|
|
|
sblock.fs_interleave = 1;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("SET TO DEFAULT") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_npsect < sblock.fs_nsect ||
|
|
|
|
sblock.fs_npsect > sblock.fs_nsect*2) {
|
|
|
|
pwarn("IMPOSSIBLE NPSECT=%d IN SUPERBLOCK",
|
|
|
|
sblock.fs_npsect);
|
|
|
|
sblock.fs_npsect = sblock.fs_nsect;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("SET TO DEFAULT") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
1996-05-21 21:25:56 +04:00
|
|
|
if (sblock.fs_bmask != ~(sblock.fs_bsize - 1)) {
|
1997-09-14 18:36:29 +04:00
|
|
|
pwarn("INCORRECT BMASK=0x%x IN SUPERBLOCK",
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_bmask);
|
|
|
|
sblock.fs_bmask = ~(sblock.fs_bsize - 1);
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_fmask != ~(sblock.fs_fsize - 1)) {
|
1997-09-14 18:36:29 +04:00
|
|
|
pwarn("INCORRECT FMASK=0x%x IN SUPERBLOCK",
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_fmask);
|
|
|
|
sblock.fs_fmask = ~(sblock.fs_fsize - 1);
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
1994-06-08 22:57:30 +04:00
|
|
|
if (sblock.fs_inodefmt >= FS_44INODEFMT) {
|
1996-05-21 21:25:56 +04:00
|
|
|
if (sblock.fs_maxfilesize != maxfilesize) {
|
|
|
|
pwarn("INCORRECT MAXFILESIZE=%qd IN SUPERBLOCK",
|
1997-09-16 12:37:01 +04:00
|
|
|
(unsigned long long)sblock.fs_maxfilesize);
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_maxfilesize = maxfilesize;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_maxsymlinklen != MAXSYMLINKLEN) {
|
|
|
|
pwarn("INCORRECT MAXSYMLINKLEN=%d IN SUPERBLOCK",
|
|
|
|
sblock.fs_maxsymlinklen);
|
|
|
|
sblock.fs_maxsymlinklen = MAXSYMLINKLEN;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_qbmask != ~sblock.fs_bmask) {
|
1996-05-21 21:36:21 +04:00
|
|
|
pwarn("INCORRECT QBMASK=%qx IN SUPERBLOCK",
|
1997-09-16 12:37:01 +04:00
|
|
|
(unsigned long long)sblock.fs_qbmask);
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_qbmask = ~sblock.fs_bmask;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (sblock.fs_qfmask != ~sblock.fs_fmask) {
|
1996-05-21 21:36:21 +04:00
|
|
|
pwarn("INCORRECT QFMASK=%qx IN SUPERBLOCK",
|
1997-09-16 12:37:01 +04:00
|
|
|
(unsigned long long)sblock.fs_qfmask);
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_qfmask = ~sblock.fs_fmask;
|
|
|
|
if (preen)
|
|
|
|
printf(" (FIXED)\n");
|
|
|
|
if (preen || reply("FIX") == 1) {
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
}
|
1994-06-08 22:57:30 +04:00
|
|
|
newinofmt = 1;
|
|
|
|
} else {
|
|
|
|
sblock.fs_qbmask = ~sblock.fs_bmask;
|
|
|
|
sblock.fs_qfmask = ~sblock.fs_fmask;
|
|
|
|
newinofmt = 0;
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Convert to new inode format.
|
|
|
|
*/
|
|
|
|
if (cvtlevel >= 2 && sblock.fs_inodefmt < FS_44INODEFMT) {
|
|
|
|
if (preen)
|
|
|
|
pwarn("CONVERTING TO NEW INODE FORMAT\n");
|
|
|
|
else if (!reply("CONVERT TO NEW INODE FORMAT"))
|
|
|
|
return(0);
|
|
|
|
doinglevel2++;
|
|
|
|
sblock.fs_inodefmt = FS_44INODEFMT;
|
1996-05-21 21:25:56 +04:00
|
|
|
sblock.fs_maxfilesize = maxfilesize;
|
1994-06-08 22:57:30 +04:00
|
|
|
sblock.fs_maxsymlinklen = MAXSYMLINKLEN;
|
|
|
|
sblock.fs_qbmask = ~sblock.fs_bmask;
|
|
|
|
sblock.fs_qfmask = ~sblock.fs_fmask;
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* Convert to new cylinder group format.
|
|
|
|
*/
|
|
|
|
if (cvtlevel >= 1 && sblock.fs_postblformat == FS_42POSTBLFMT) {
|
|
|
|
if (preen)
|
|
|
|
pwarn("CONVERTING TO NEW CYLINDER GROUP FORMAT\n");
|
|
|
|
else if (!reply("CONVERT TO NEW CYLINDER GROUP FORMAT"))
|
|
|
|
return(0);
|
|
|
|
doinglevel1++;
|
|
|
|
sblock.fs_postblformat = FS_DYNAMICPOSTBLFMT;
|
|
|
|
sblock.fs_nrpos = 8;
|
|
|
|
sblock.fs_postbloff =
|
|
|
|
(char *)(&sblock.fs_opostbl[0][0]) -
|
1994-12-18 18:55:41 +03:00
|
|
|
(char *)(&sblock.fs_firstfield);
|
1994-06-08 22:57:30 +04:00
|
|
|
sblock.fs_rotbloff = &sblock.fs_space[0] -
|
1994-12-18 18:55:41 +03:00
|
|
|
(u_char *)(&sblock.fs_firstfield);
|
1994-06-08 22:57:30 +04:00
|
|
|
sblock.fs_cgsize =
|
|
|
|
fragroundup(&sblock, CGSIZE(&sblock));
|
|
|
|
sbdirty();
|
|
|
|
dirty(&asblk);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-29 15:01:35 +04:00
|
|
|
if (asblk.b_dirty && !bflag) {
|
1997-09-16 20:44:43 +04:00
|
|
|
memmove(&altsblock, &sblock, (size_t)sblock.fs_sbsize);
|
1993-03-21 12:45:37 +03:00
|
|
|
flush(fswritefd, &asblk);
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* read in the summary info.
|
|
|
|
*/
|
|
|
|
asked = 0;
|
|
|
|
for (i = 0, j = 0; i < sblock.fs_cssize; i += sblock.fs_bsize, j++) {
|
|
|
|
size = sblock.fs_cssize - i < sblock.fs_bsize ?
|
|
|
|
sblock.fs_cssize - i : sblock.fs_bsize;
|
|
|
|
sblock.fs_csp[j] = (struct csum *)calloc(1, (unsigned)size);
|
|
|
|
if (bread(fsreadfd, (char *)sblock.fs_csp[j],
|
|
|
|
fsbtodb(&sblock, sblock.fs_csaddr + j * sblock.fs_frag),
|
|
|
|
size) != 0 && !asked) {
|
|
|
|
pfatal("BAD SUMMARY INFORMATION");
|
|
|
|
if (reply("CONTINUE") == 0)
|
1997-09-16 20:44:43 +04:00
|
|
|
exit(EEXIT);
|
1993-03-21 12:45:37 +03:00
|
|
|
asked++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
/*
|
|
|
|
* allocate and initialize the necessary maps
|
|
|
|
*/
|
1995-03-21 04:30:09 +03:00
|
|
|
bmapsize = roundup(howmany(maxfsblock, NBBY), sizeof(int16_t));
|
1993-03-21 12:45:37 +03:00
|
|
|
blockmap = calloc((unsigned)bmapsize, sizeof (char));
|
|
|
|
if (blockmap == NULL) {
|
|
|
|
printf("cannot alloc %u bytes for blockmap\n",
|
|
|
|
(unsigned)bmapsize);
|
1994-12-05 23:15:31 +03:00
|
|
|
goto badsblabel;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
statemap = calloc((unsigned)(maxino + 1), sizeof(char));
|
|
|
|
if (statemap == NULL) {
|
|
|
|
printf("cannot alloc %u bytes for statemap\n",
|
|
|
|
(unsigned)(maxino + 1));
|
1994-12-05 23:15:31 +03:00
|
|
|
goto badsblabel;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
1994-06-08 22:57:30 +04:00
|
|
|
typemap = calloc((unsigned)(maxino + 1), sizeof(char));
|
|
|
|
if (typemap == NULL) {
|
|
|
|
printf("cannot alloc %u bytes for typemap\n",
|
|
|
|
(unsigned)(maxino + 1));
|
1994-12-05 23:15:31 +03:00
|
|
|
goto badsblabel;
|
1994-06-08 22:57:30 +04:00
|
|
|
}
|
1995-03-21 04:30:09 +03:00
|
|
|
lncntp = (int16_t *)calloc((unsigned)(maxino + 1), sizeof(int16_t));
|
1993-03-21 12:45:37 +03:00
|
|
|
if (lncntp == NULL) {
|
|
|
|
printf("cannot alloc %u bytes for lncntp\n",
|
1997-09-16 12:37:01 +04:00
|
|
|
(unsigned)((maxino + 1) * sizeof(int16_t)));
|
1994-12-05 23:15:31 +03:00
|
|
|
goto badsblabel;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
numdirs = sblock.fs_cstotal.cs_ndir;
|
|
|
|
inplast = 0;
|
|
|
|
listmax = numdirs + 10;
|
|
|
|
inpsort = (struct inoinfo **)calloc((unsigned)listmax,
|
|
|
|
sizeof(struct inoinfo *));
|
|
|
|
inphead = (struct inoinfo **)calloc((unsigned)numdirs,
|
|
|
|
sizeof(struct inoinfo *));
|
|
|
|
if (inpsort == NULL || inphead == NULL) {
|
|
|
|
printf("cannot alloc %u bytes for inphead\n",
|
1997-09-16 12:37:01 +04:00
|
|
|
(unsigned)(numdirs * sizeof(struct inoinfo *)));
|
1994-12-05 23:15:31 +03:00
|
|
|
goto badsblabel;
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
bufinit();
|
|
|
|
return (1);
|
|
|
|
|
1994-12-05 23:15:31 +03:00
|
|
|
badsblabel:
|
1995-04-13 01:24:07 +04:00
|
|
|
ckfini(0);
|
1993-03-21 12:45:37 +03:00
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Read in the super block and its summary info.
|
|
|
|
*/
|
1996-09-23 20:18:31 +04:00
|
|
|
static int
|
1993-03-21 12:45:37 +03:00
|
|
|
readsb(listerr)
|
|
|
|
int listerr;
|
|
|
|
{
|
1997-09-16 20:44:43 +04:00
|
|
|
ufs_daddr_t super = bflag ? bflag : SBOFF / dev_bsize;
|
1993-03-21 12:45:37 +03:00
|
|
|
|
|
|
|
if (bread(fsreadfd, (char *)&sblock, super, (long)SBSIZE) != 0)
|
|
|
|
return (0);
|
|
|
|
sblk.b_bno = super;
|
|
|
|
sblk.b_size = SBSIZE;
|
|
|
|
/*
|
|
|
|
* run a few consistency checks of the super block
|
|
|
|
*/
|
|
|
|
if (sblock.fs_magic != FS_MAGIC)
|
|
|
|
{ badsb(listerr, "MAGIC NUMBER WRONG"); return (0); }
|
|
|
|
if (sblock.fs_ncg < 1)
|
|
|
|
{ badsb(listerr, "NCG OUT OF RANGE"); return (0); }
|
|
|
|
if (sblock.fs_cpg < 1)
|
|
|
|
{ badsb(listerr, "CPG OUT OF RANGE"); return (0); }
|
|
|
|
if (sblock.fs_ncg * sblock.fs_cpg < sblock.fs_ncyl ||
|
|
|
|
(sblock.fs_ncg - 1) * sblock.fs_cpg >= sblock.fs_ncyl)
|
|
|
|
{ badsb(listerr, "NCYL LESS THAN NCG*CPG"); return (0); }
|
|
|
|
if (sblock.fs_sbsize > SBSIZE)
|
|
|
|
{ badsb(listerr, "SIZE PREPOSTEROUSLY LARGE"); return (0); }
|
|
|
|
/*
|
|
|
|
* Compute block size that the filesystem is based on,
|
|
|
|
* according to fsbtodb, and adjust superblock block number
|
|
|
|
* so we can tell if this is an alternate later.
|
|
|
|
*/
|
|
|
|
super *= dev_bsize;
|
|
|
|
dev_bsize = sblock.fs_fsize / fsbtodb(&sblock, 1);
|
|
|
|
sblk.b_bno = super / dev_bsize;
|
1994-06-08 22:57:30 +04:00
|
|
|
if (bflag) {
|
|
|
|
havesb = 1;
|
|
|
|
return (1);
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* Set all possible fields that could differ, then do check
|
|
|
|
* of whole super block against an alternate super block.
|
|
|
|
* When an alternate super-block is specified this check is skipped.
|
|
|
|
*/
|
|
|
|
getblk(&asblk, cgsblock(&sblock, sblock.fs_ncg - 1), sblock.fs_sbsize);
|
|
|
|
if (asblk.b_errs)
|
|
|
|
return (0);
|
1994-12-18 18:55:41 +03:00
|
|
|
altsblock.fs_firstfield = sblock.fs_firstfield;
|
1995-04-13 01:24:07 +04:00
|
|
|
altsblock.fs_fscktime = sblock.fs_fscktime;
|
1997-09-16 20:44:43 +04:00
|
|
|
altsblock.fs_unused_1 = sblock.fs_unused_1;
|
1993-03-21 12:45:37 +03:00
|
|
|
altsblock.fs_time = sblock.fs_time;
|
|
|
|
altsblock.fs_cstotal = sblock.fs_cstotal;
|
|
|
|
altsblock.fs_cgrotor = sblock.fs_cgrotor;
|
|
|
|
altsblock.fs_fmod = sblock.fs_fmod;
|
|
|
|
altsblock.fs_clean = sblock.fs_clean;
|
|
|
|
altsblock.fs_ronly = sblock.fs_ronly;
|
|
|
|
altsblock.fs_flags = sblock.fs_flags;
|
|
|
|
altsblock.fs_maxcontig = sblock.fs_maxcontig;
|
|
|
|
altsblock.fs_minfree = sblock.fs_minfree;
|
|
|
|
altsblock.fs_optim = sblock.fs_optim;
|
|
|
|
altsblock.fs_rotdelay = sblock.fs_rotdelay;
|
|
|
|
altsblock.fs_maxbpg = sblock.fs_maxbpg;
|
1997-09-16 20:44:43 +04:00
|
|
|
memmove(altsblock.fs_csp, sblock.fs_csp, sizeof sblock.fs_csp);
|
1994-12-28 03:03:49 +03:00
|
|
|
altsblock.fs_maxcluster = sblock.fs_maxcluster;
|
1997-09-16 20:44:43 +04:00
|
|
|
memmove(altsblock.fs_fsmnt, sblock.fs_fsmnt, sizeof sblock.fs_fsmnt);
|
|
|
|
memmove(altsblock.fs_sparecon,
|
|
|
|
sblock.fs_sparecon, sizeof sblock.fs_sparecon);
|
1993-03-21 12:45:37 +03:00
|
|
|
/*
|
|
|
|
* The following should not have to be copied.
|
|
|
|
*/
|
|
|
|
altsblock.fs_fsbtodb = sblock.fs_fsbtodb;
|
|
|
|
altsblock.fs_interleave = sblock.fs_interleave;
|
|
|
|
altsblock.fs_npsect = sblock.fs_npsect;
|
|
|
|
altsblock.fs_nrpos = sblock.fs_nrpos;
|
1994-12-28 03:03:49 +03:00
|
|
|
altsblock.fs_state = sblock.fs_state;
|
1994-06-08 22:57:30 +04:00
|
|
|
altsblock.fs_qbmask = sblock.fs_qbmask;
|
|
|
|
altsblock.fs_qfmask = sblock.fs_qfmask;
|
|
|
|
altsblock.fs_state = sblock.fs_state;
|
|
|
|
altsblock.fs_maxfilesize = sblock.fs_maxfilesize;
|
1994-09-24 03:48:10 +04:00
|
|
|
if (memcmp(&sblock, &altsblock, (int)sblock.fs_sbsize)) {
|
1994-12-28 03:03:49 +03:00
|
|
|
if (debug) {
|
|
|
|
long *nlp, *olp, *endlp;
|
|
|
|
|
|
|
|
printf("superblock mismatches\n");
|
|
|
|
nlp = (long *)&altsblock;
|
|
|
|
olp = (long *)&sblock;
|
|
|
|
endlp = olp + (sblock.fs_sbsize / sizeof *olp);
|
|
|
|
for ( ; olp < endlp; olp++, nlp++) {
|
|
|
|
if (*olp == *nlp)
|
|
|
|
continue;
|
1997-09-16 12:37:01 +04:00
|
|
|
printf("offset %ld, original %ld, alternate %ld\n",
|
|
|
|
(long)(olp - (long *)&sblock), *olp, *nlp);
|
1994-12-28 03:03:49 +03:00
|
|
|
}
|
|
|
|
}
|
1993-03-21 12:45:37 +03:00
|
|
|
badsb(listerr,
|
|
|
|
"VALUES IN SUPER BLOCK DISAGREE WITH THOSE IN FIRST ALTERNATE");
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
havesb = 1;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1997-09-16 20:44:43 +04:00
|
|
|
static void
|
1993-03-21 12:45:37 +03:00
|
|
|
badsb(listerr, s)
|
|
|
|
int listerr;
|
|
|
|
char *s;
|
|
|
|
{
|
|
|
|
|
|
|
|
if (!listerr)
|
|
|
|
return;
|
|
|
|
if (preen)
|
1996-09-23 20:18:31 +04:00
|
|
|
printf("%s: ", cdevname());
|
1993-03-21 12:45:37 +03:00
|
|
|
pfatal("BAD SUPER BLOCK: %s\n", s);
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Calculate a prototype superblock based on information in the disk label.
|
|
|
|
* When done the cgsblock macro can be calculated and the fs_ncg field
|
|
|
|
* can be used. Do NOT attempt to use other macros without verifying that
|
|
|
|
* their needed information is available!
|
|
|
|
*/
|
1997-09-16 20:44:43 +04:00
|
|
|
static int
|
1993-03-21 12:45:37 +03:00
|
|
|
calcsb(dev, devfd, fs)
|
|
|
|
char *dev;
|
|
|
|
int devfd;
|
1997-09-14 18:36:29 +04:00
|
|
|
struct fs *fs;
|
1993-03-21 12:45:37 +03:00
|
|
|
{
|
1997-09-14 18:36:29 +04:00
|
|
|
struct disklabel *lp;
|
|
|
|
struct partition *pp;
|
|
|
|
char *cp;
|
1993-03-21 12:45:37 +03:00
|
|
|
int i;
|
|
|
|
|
1994-09-23 18:26:58 +04:00
|
|
|
cp = strchr(dev, '\0') - 1;
|
1996-09-23 20:18:31 +04:00
|
|
|
if ((cp == (char *)-1 || (*cp < 'a' || *cp > 'h')) && !isdigit(*cp)) {
|
1993-03-21 12:45:37 +03:00
|
|
|
pfatal("%s: CANNOT FIGURE OUT FILE SYSTEM PARTITION\n", dev);
|
|
|
|
return (0);
|
|
|
|
}
|
|
|
|
lp = getdisklabel(dev, devfd);
|
|
|
|
if (isdigit(*cp))
|
|
|
|
pp = &lp->d_partitions[0];
|
|
|
|
else
|
|
|
|
pp = &lp->d_partitions[*cp - 'a'];
|
|
|
|
if (pp->p_fstype != FS_BSDFFS) {
|
|
|
|
pfatal("%s: NOT LABELED AS A BSD FILE SYSTEM (%s)\n",
|
|
|
|
dev, pp->p_fstype < FSMAXTYPES ?
|
|
|
|
fstypenames[pp->p_fstype] : "unknown");
|
|
|
|
return (0);
|
|
|
|
}
|
1994-09-23 18:26:58 +04:00
|
|
|
memset(fs, 0, sizeof(struct fs));
|
1993-03-21 12:45:37 +03:00
|
|
|
fs->fs_fsize = pp->p_fsize;
|
|
|
|
fs->fs_frag = pp->p_frag;
|
|
|
|
fs->fs_cpg = pp->p_cpg;
|
|
|
|
fs->fs_size = pp->p_size;
|
|
|
|
fs->fs_ntrak = lp->d_ntracks;
|
|
|
|
fs->fs_nsect = lp->d_nsectors;
|
|
|
|
fs->fs_spc = lp->d_secpercyl;
|
|
|
|
fs->fs_nspf = fs->fs_fsize / lp->d_secsize;
|
|
|
|
fs->fs_sblkno = roundup(
|
|
|
|
howmany(lp->d_bbsize + lp->d_sbsize, fs->fs_fsize),
|
|
|
|
fs->fs_frag);
|
|
|
|
fs->fs_cgmask = 0xffffffff;
|
|
|
|
for (i = fs->fs_ntrak; i > 1; i >>= 1)
|
|
|
|
fs->fs_cgmask <<= 1;
|
|
|
|
if (!POWEROF2(fs->fs_ntrak))
|
|
|
|
fs->fs_cgmask <<= 1;
|
|
|
|
fs->fs_cgoffset = roundup(
|
|
|
|
howmany(fs->fs_nsect, NSPF(fs)), fs->fs_frag);
|
|
|
|
fs->fs_fpg = (fs->fs_cpg * fs->fs_spc) / NSPF(fs);
|
|
|
|
fs->fs_ncg = howmany(fs->fs_size / fs->fs_spc, fs->fs_cpg);
|
|
|
|
for (fs->fs_fsbtodb = 0, i = NSPF(fs); i > 1; i >>= 1)
|
|
|
|
fs->fs_fsbtodb++;
|
|
|
|
dev_bsize = lp->d_secsize;
|
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
|
1996-09-23 20:18:31 +04:00
|
|
|
static struct disklabel *
|
1993-03-21 12:45:37 +03:00
|
|
|
getdisklabel(s, fd)
|
|
|
|
char *s;
|
|
|
|
int fd;
|
|
|
|
{
|
|
|
|
static struct disklabel lab;
|
|
|
|
|
|
|
|
if (ioctl(fd, DIOCGDINFO, (char *)&lab) < 0) {
|
|
|
|
if (s == NULL)
|
|
|
|
return ((struct disklabel *)NULL);
|
|
|
|
pwarn("ioctl (GCINFO): %s\n", strerror(errno));
|
1997-09-16 20:44:43 +04:00
|
|
|
errx(EEXIT, "%s: can't read disk label", s);
|
1993-03-21 12:45:37 +03:00
|
|
|
}
|
|
|
|
return (&lab);
|
|
|
|
}
|