1 /* 2 * Copyright (c) 1980, 1986, 1993 3 * The Regents of the University of California. All rights reserved. 4 * 5 * Redistribution and use in source and binary forms, with or without 6 * modification, are permitted provided that the following conditions 7 * are met: 8 * 1. Redistributions of source code must retain the above copyright 9 * notice, this list of conditions and the following disclaimer. 10 * 2. Redistributions in binary form must reproduce the above copyright 11 * notice, this list of conditions and the following disclaimer in the 12 * documentation and/or other materials provided with the distribution. 13 * 4. Neither the name of the University nor the names of its contributors 14 * may be used to endorse or promote products derived from this software 15 * without specific prior written permission. 16 * 17 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND 18 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 19 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 20 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE 21 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 22 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 23 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 24 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 25 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 26 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 27 * SUCH DAMAGE. 28 */ 29 30 #if 0 31 #ifndef lint 32 static const char copyright[] = 33 "@(#) Copyright (c) 1980, 1986, 1993\n\ 34 The Regents of the University of California. All rights reserved.\n"; 35 #endif /* not lint */ 36 37 #ifndef lint 38 static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/14/95"; 39 #endif /* not lint */ 40 #endif 41 #include <sys/cdefs.h> 42 __FBSDID("$FreeBSD$"); 43 44 #include <sys/param.h> 45 #include <ufs/ufs/dinode.h> 46 #include <ufs/ffs/fs.h> 47 #include <string.h> 48 #include "fsck.h" 49 50 long readcnt[BT_NUMBUFTYPES]; 51 long totalreadcnt[BT_NUMBUFTYPES]; 52 struct timespec readtime[BT_NUMBUFTYPES]; 53 struct timespec totalreadtime[BT_NUMBUFTYPES]; 54 struct timespec startprog; 55 struct bufarea sblk; /* file system superblock */ 56 struct bufarea *pdirbp; /* current directory contents */ 57 struct bufarea *pbp; /* current inode block */ 58 ino_t cursnapshot; 59 long numdirs, dirhash, listmax, inplast; 60 long countdirs; /* number of directories we actually found */ 61 int adjrefcnt[MIBSIZE]; /* MIB command to adjust inode reference cnt */ 62 int adjblkcnt[MIBSIZE]; /* MIB command to adjust inode block count */ 63 int adjndir[MIBSIZE]; /* MIB command to adjust number of directories */ 64 int adjnbfree[MIBSIZE]; /* MIB command to adjust number of free blocks */ 65 int adjnifree[MIBSIZE]; /* MIB command to adjust number of free inodes */ 66 int adjnffree[MIBSIZE]; /* MIB command to adjust number of free frags */ 67 int adjnumclusters[MIBSIZE]; /* MIB command to adjust number of free clusters */ 68 int freefiles[MIBSIZE]; /* MIB command to free a set of files */ 69 int freedirs[MIBSIZE]; /* MIB command to free a set of directories */ 70 int freeblks[MIBSIZE]; /* MIB command to free a set of data blocks */ 71 struct fsck_cmd cmd; /* sysctl file system update commands */ 72 char snapname[BUFSIZ]; /* when doing snapshots, the name of the file */ 73 char *cdevname; /* name of device being checked */ 74 long dev_bsize; /* computed value of DEV_BSIZE */ 75 long secsize; /* actual disk sector size */ 76 u_int real_dev_bsize; /* actual disk sector size, not overriden */ 77 char nflag; /* assume a no response */ 78 char yflag; /* assume a yes response */ 79 int bkgrdflag; /* use a snapshot to run on an active system */ 80 int bflag; /* location of alternate super block */ 81 int debug; /* output debugging info */ 82 int Eflag; /* delete empty data blocks */ 83 int Zflag; /* zero empty data blocks */ 84 int inoopt; /* trim out unused inodes */ 85 char ckclean; /* only do work if not cleanly unmounted */ 86 int cvtlevel; /* convert to newer file system format */ 87 int bkgrdcheck; /* determine if background check is possible */ 88 int bkgrdsumadj; /* whether the kernel have ability to adjust superblock summary */ 89 char usedsoftdep; /* just fix soft dependency inconsistencies */ 90 char preen; /* just fix normal inconsistencies */ 91 char rerun; /* rerun fsck. Only used in non-preen mode */ 92 int returntosingle; /* 1 => return to single user mode on exit */ 93 char resolved; /* cleared if unresolved changes => not clean */ 94 char havesb; /* superblock has been read */ 95 char skipclean; /* skip clean file systems if preening */ 96 int fsmodified; /* 1 => write done to file system */ 97 int fsreadfd; /* file descriptor for reading file system */ 98 int fswritefd; /* file descriptor for writing file system */ 99 int surrender; /* Give up if reads fail */ 100 int wantrestart; /* Restart fsck on early termination */ 101 ufs2_daddr_t maxfsblock; /* number of blocks in the file system */ 102 char *blockmap; /* ptr to primary blk allocation map */ 103 ino_t maxino; /* number of inodes in file system */ 104 ino_t lfdir; /* lost & found directory inode number */ 105 const char *lfname; /* lost & found directory name */ 106 int lfmode; /* lost & found directory creation mode */ 107 ufs2_daddr_t n_blks; /* number of blocks in use */ 108 ino_t n_files; /* number of files in use */ 109 volatile sig_atomic_t got_siginfo; /* received a SIGINFO */ 110 volatile sig_atomic_t got_sigalarm; /* received a SIGALRM */ 111 struct ufs1_dinode ufs1_zino; 112 struct ufs2_dinode ufs2_zino; 113 114 void 115 fsckinit(void) 116 { 117 bzero(readcnt, sizeof(long) * BT_NUMBUFTYPES); 118 bzero(totalreadcnt, sizeof(long) * BT_NUMBUFTYPES); 119 bzero(readtime, sizeof(struct timespec) * BT_NUMBUFTYPES); 120 bzero(totalreadtime, sizeof(struct timespec) * BT_NUMBUFTYPES); 121 bzero(&startprog, sizeof(struct timespec));; 122 bzero(&sblk, sizeof(struct bufarea)); 123 pdirbp = NULL; 124 pbp = NULL; 125 cursnapshot = 0; 126 numdirs = dirhash = listmax = inplast = 0; 127 countdirs = 0; 128 bzero(adjrefcnt, sizeof(int) * MIBSIZE); 129 bzero(adjblkcnt, sizeof(int) * MIBSIZE); 130 bzero(adjndir, sizeof(int) * MIBSIZE); 131 bzero(adjnbfree, sizeof(int) * MIBSIZE); 132 bzero(adjnifree, sizeof(int) * MIBSIZE); 133 bzero(adjnffree, sizeof(int) * MIBSIZE); 134 bzero(adjnumclusters, sizeof(int) * MIBSIZE); 135 bzero(freefiles, sizeof(int) * MIBSIZE); 136 bzero(freedirs, sizeof(int) * MIBSIZE); 137 bzero(freeblks, sizeof(int) * MIBSIZE); 138 bzero(&cmd, sizeof(struct fsck_cmd)); 139 bzero(snapname, sizeof(char) * BUFSIZ); 140 cdevname = NULL; 141 dev_bsize = 0; 142 secsize = 0; 143 real_dev_bsize = 0; 144 bkgrdsumadj = 0; 145 usedsoftdep = 0; 146 rerun = 0; 147 returntosingle = 0; 148 resolved = 0; 149 havesb = 0; 150 fsmodified = 0; 151 fsreadfd = 0; 152 fswritefd = 0; 153 maxfsblock = 0; 154 blockmap = NULL; 155 maxino = 0; 156 lfdir = 0; 157 lfname = "lost+found"; 158 lfmode = 0700; 159 n_blks = 0; 160 n_files = 0; 161 got_siginfo = 0; 162 got_sigalarm = 0; 163 bzero(&ufs1_zino, sizeof(struct ufs1_dinode)); 164 bzero(&ufs2_zino, sizeof(struct ufs2_dinode)); 165 } 166