2 * Copyright (c) 1980, 1986, 1993
3 * The Regents of the University of California. All rights reserved.
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
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 * 3. All advertising materials mentioning features or use of this software
14 * must display the following acknowledgement:
15 * This product includes software developed by the University of
16 * California, Berkeley and its contributors.
17 * 4. Neither the name of the University nor the names of its contributors
18 * may be used to endorse or promote products derived from this software
19 * without specific prior written permission.
21 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
22 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
25 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 * @(#) Copyright (c) 1980, 1986, 1993 The Regents of the University of California. All rights reserved.
34 * @(#)main.c 8.6 (Berkeley) 5/14/95
35 * $FreeBSD: src/sbin/fsck/main.c,v 1.21.2.1 2001/01/23 23:11:07 iedowse Exp $
36 * $DragonFly: src/sbin/fsck/main.c,v 1.10 2007/04/20 22:20:10 dillon Exp $
39 #include <sys/param.h>
42 #include <sys/mount.h>
43 #include <sys/resource.h>
45 #include <vfs/ufs/dinode.h>
46 #include <vfs/ufs/ufsmount.h>
47 #include <vfs/ufs/fs.h>
57 static int argtoi(int flag
, char *req
, char *str
, int base
);
58 static int docheck(struct fstab
*fsp
);
59 static int checkfilesys(char *filesys
, char *mntpt
, long auxdata
,
61 static struct statfs
*getmntpt(const char *);
62 int main(int argc
, char *argv
[]);
65 main(int argc
, char **argv
)
72 while ((ch
= getopt(argc
, argv
, "dfLpnNyYb:c:l:m:")) != -1) {
79 bflag
= argtoi('b', "number", optarg
, 10);
80 printf("Alternate super block location: %d\n", bflag
);
84 cvtlevel
= argtoi('c', "conversion level", optarg
, 10);
96 maxrun
= argtoi('l', "number", optarg
, 10);
104 lfmode
= argtoi('m', "mode", optarg
, 8);
106 errx(EEXIT
, "bad mode to -m: %o", lfmode
);
107 printf("** lost+found creation mode %o\n", lfmode
);
123 errx(EEXIT
, "%c option?", ch
);
128 if (signal(SIGINT
, SIG_IGN
) != SIG_IGN
)
129 signal(SIGINT
, catch);
131 signal(SIGQUIT
, catchquit
);
132 signal(SIGINFO
, infohandler
);
134 * Push up our allowed memory limit so we can cope
135 * with huge filesystems.
137 if (getrlimit(RLIMIT_DATA
, &rlimit
) == 0) {
138 rlimit
.rlim_cur
= rlimit
.rlim_max
;
139 setrlimit(RLIMIT_DATA
, &rlimit
);
143 char *path
= blockcheck(*argv
);
146 pfatal("Can't check %s\n", *argv
);
148 checkfilesys(path
, 0, 0L, 0);
153 ret
= checkfstab(preen
, maxrun
, docheck
, checkfilesys
);
160 argtoi(int flag
, char *req
, char *str
, int base
)
165 ret
= (int)strtol(str
, &cp
, base
);
166 if (cp
== str
|| *cp
)
167 errx(EEXIT
, "-%c flag requires a %s", flag
, req
);
172 * Determine whether a filesystem should be checked.
175 docheck(struct fstab
*fsp
)
178 if (strcmp(fsp
->fs_vfstype
, "ufs") ||
179 (strcmp(fsp
->fs_type
, FSTAB_RW
) &&
180 strcmp(fsp
->fs_type
, FSTAB_RO
)) ||
187 * Check the specified filesystem.
191 checkfilesys(char *filesys
, char *mntpt
, long auxdata
, int child
)
193 ufs_daddr_t n_ffree
, n_bfree
;
195 struct statfs
*mntbuf
;
200 signal(SIGQUIT
, voidquit
);
204 switch (setup(filesys
)) {
207 pfatal("CAN'T CHECK FILE SYSTEM.");
210 pwarn("clean, %ld free ", sblock
.fs_cstotal
.cs_nffree
+
211 sblock
.fs_frag
* sblock
.fs_cstotal
.cs_nbfree
);
212 printf("(%d frags, %d blocks, %.1f%% fragmentation)\n",
213 sblock
.fs_cstotal
.cs_nffree
, sblock
.fs_cstotal
.cs_nbfree
,
214 sblock
.fs_cstotal
.cs_nffree
* 100.0 / sblock
.fs_dsize
);
220 * Get the mount point information of the filesystem, if
223 mntbuf
= getmntpt(filesys
);
226 * Cleared if any questions answered no. Used to decide if
227 * the superblock should be marked clean.
231 * 1: scan inodes tallying blocks used
234 printf("** %s Last Mounted on %s\n", filesys
, sblock
.fs_fsmnt
);
238 printf("** Last Mounted on %s\n", sblock
.fs_fsmnt
);
239 if (mntbuf
!= NULL
&& mntbuf
->f_flags
& MNT_ROOTFS
)
240 printf("** Root file system\n");
241 printf("** Phase 1 - Check Blocks and Sizes\n");
246 * 1b: locate first references to duplicates, if any
249 if (preen
|| usedsoftdep
)
250 pfatal("INTERNAL ERROR: dups with -p");
251 printf("** Phase 1b - Rescan For More DUPS\n");
256 * 2: traverse directories from root to mark all connected directories
259 printf("** Phase 2 - Check Pathnames\n");
263 * 3: scan inodes looking for disconnected directories
266 printf("** Phase 3 - Check Connectivity\n");
270 * 4: scan inodes looking for disconnected files; check reference counts
273 printf("** Phase 4 - Check Reference Counts\n");
277 * 5: check and repair resource counts in cylinder groups
280 printf("** Phase 5 - Check Cyl groups\n");
284 * print out summary statistics
286 n_ffree
= sblock
.fs_cstotal
.cs_nffree
;
287 n_bfree
= sblock
.fs_cstotal
.cs_nbfree
;
288 pwarn("%ld files, %ld used, %ld free ",
289 n_files
, n_blks
, n_ffree
+ sblock
.fs_frag
* n_bfree
);
290 printf("(%d frags, %d blocks, %.1f%% fragmentation)\n",
291 n_ffree
, n_bfree
, n_ffree
* 100.0 / sblock
.fs_dsize
);
293 (n_files
-= maxino
- ROOTINO
- sblock
.fs_cstotal
.cs_nifree
))
294 printf("%d files missing\n", n_files
);
296 n_blks
+= sblock
.fs_ncg
*
297 (cgdmin(&sblock
, 0) - cgsblock(&sblock
, 0));
298 n_blks
+= cgsblock(&sblock
, 0) - cgbase(&sblock
, 0);
299 n_blks
+= howmany(sblock
.fs_cssize
, sblock
.fs_fsize
);
300 if (n_blks
-= maxfsblock
- (n_ffree
+ sblock
.fs_frag
* n_bfree
))
301 printf("%d blocks missing\n", n_blks
);
302 if (duplist
!= NULL
) {
303 printf("The following duplicate blocks remain:");
304 for (dp
= duplist
; dp
; dp
= dp
->next
)
305 printf(" %d,", dp
->dup
);
308 if (zlnhead
!= NULL
) {
309 printf("The following zero link count inodes remain:");
310 for (zlnp
= zlnhead
; zlnp
; zlnp
= zlnp
->next
)
311 printf(" %u,", zlnp
->zlncnt
);
320 sblock
.fs_time
= time(NULL
);
323 if (cvtlevel
&& sblk
.b_dirty
) {
325 * Write out the duplicate super blocks
327 for (cylno
= 0; cylno
< sblock
.fs_ncg
; cylno
++)
328 bwrite(fswritefd
, (char *)&sblock
,
329 fsbtodb(&sblock
, cgsblock(&sblock
, cylno
)), SBSIZE
);
335 * Check to see if the filesystem is mounted read-write.
337 if (mntbuf
!= NULL
&& (mntbuf
->f_flags
& MNT_RDONLY
) == 0)
341 for (cylno
= 0; cylno
< sblock
.fs_ncg
; cylno
++)
342 if (inostathead
[cylno
].il_stat
!= NULL
)
343 free((char *)inostathead
[cylno
].il_stat
);
344 free((char *)inostathead
);
346 if (fsmodified
&& !preen
)
347 printf("\n***** FILE SYSTEM WAS MODIFIED *****\n");
349 printf("\n***** PLEASE RERUN FSCK *****\n");
350 if (mntbuf
!= NULL
) {
351 struct ufs_args args
;
354 * We modified a mounted filesystem. Do a mount update on
355 * it unless it is read-write, so we can continue using it
356 * as safely as possible.
358 if (mntbuf
->f_flags
& MNT_RDONLY
) {
360 args
.export
.ex_flags
= 0;
361 args
.export
.ex_root
= 0;
362 ret
= mount("ufs", mntbuf
->f_mntonname
,
363 mntbuf
->f_flags
| MNT_UPDATE
| MNT_RELOAD
, &args
);
366 pwarn("mount reload of '%s' failed: %s\n\n",
367 mntbuf
->f_mntonname
, strerror(errno
));
372 printf("\n***** REBOOT NOW *****\n");
380 * Get the directory that the device is mounted on.
382 static struct statfs
*
383 getmntpt(const char *name
)
385 struct stat devstat
, mntdevstat
;
386 char device
[sizeof(_PATH_DEV
) - 1 + MNAMELEN
];
388 struct statfs
*mntbuf
;
391 if (stat(name
, &devstat
) != 0 ||
392 !(S_ISCHR(devstat
.st_mode
) || S_ISBLK(devstat
.st_mode
)))
394 mntsize
= getmntinfo(&mntbuf
, MNT_NOWAIT
);
395 for (i
= 0; i
< mntsize
; i
++) {
396 if (strcmp(mntbuf
[i
].f_fstypename
, "ufs") != 0)
398 devname
= mntbuf
[i
].f_mntfromname
;
399 if (*devname
!= '/') {
400 strcpy(device
, _PATH_DEV
);
401 strcat(device
, devname
);
404 if (stat(devname
, &mntdevstat
) == 0 &&
405 mntdevstat
.st_rdev
== devstat
.st_rdev
)