xref: /freebsd/sbin/fsck_ffs/pass4.c (revision 32e86a82f54826f14ea381affa6674db3aa3b5ae)
18a16b7a1SPedro F. Giffuni /*-
28a16b7a1SPedro F. Giffuni  * SPDX-License-Identifier: BSD-3-Clause
38a16b7a1SPedro F. Giffuni  *
48fae3551SRodney W. Grimes  * Copyright (c) 1980, 1986, 1993
58fae3551SRodney W. Grimes  *	The Regents of the University of California.  All rights reserved.
68fae3551SRodney W. Grimes  *
78fae3551SRodney W. Grimes  * Redistribution and use in source and binary forms, with or without
88fae3551SRodney W. Grimes  * modification, are permitted provided that the following conditions
98fae3551SRodney W. Grimes  * are met:
108fae3551SRodney W. Grimes  * 1. Redistributions of source code must retain the above copyright
118fae3551SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer.
128fae3551SRodney W. Grimes  * 2. Redistributions in binary form must reproduce the above copyright
138fae3551SRodney W. Grimes  *    notice, this list of conditions and the following disclaimer in the
148fae3551SRodney W. Grimes  *    documentation and/or other materials provided with the distribution.
15fbbd9655SWarner Losh  * 3. Neither the name of the University nor the names of its contributors
168fae3551SRodney W. Grimes  *    may be used to endorse or promote products derived from this software
178fae3551SRodney W. Grimes  *    without specific prior written permission.
188fae3551SRodney W. Grimes  *
198fae3551SRodney W. Grimes  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
208fae3551SRodney W. Grimes  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
218fae3551SRodney W. Grimes  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
228fae3551SRodney W. Grimes  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
238fae3551SRodney W. Grimes  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
248fae3551SRodney W. Grimes  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
258fae3551SRodney W. Grimes  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
268fae3551SRodney W. Grimes  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
278fae3551SRodney W. Grimes  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
288fae3551SRodney W. Grimes  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
298fae3551SRodney W. Grimes  * SUCH DAMAGE.
308fae3551SRodney W. Grimes  */
318fae3551SRodney W. Grimes 
328fae3551SRodney W. Grimes #include <sys/param.h>
33*5cc52631SKirk McKusick #include <sys/stat.h>
34780a5c1eSPeter Wemm 
358fae3551SRodney W. Grimes #include <ufs/ufs/dinode.h>
36d33e92f9SJulian Elischer #include <ufs/ffs/fs.h>
378fae3551SRodney W. Grimes 
38780a5c1eSPeter Wemm #include <err.h>
39623d7cb6SMatthew D Fleming #include <stdint.h>
40780a5c1eSPeter Wemm #include <string.h>
41780a5c1eSPeter Wemm 
42780a5c1eSPeter Wemm #include "fsck.h"
438fae3551SRodney W. Grimes 
4431f4ab50SBruce Evans void
pass4(void)45b70cd7eeSWarner Losh pass4(void)
468fae3551SRodney W. Grimes {
473d438ad6SDavid E. O'Brien 	ino_t inumber;
48*5cc52631SKirk McKusick 	struct inode ip;
498fae3551SRodney W. Grimes 	struct inodesc idesc;
50d33e92f9SJulian Elischer 	int i, n, cg;
518fae3551SRodney W. Grimes 
52780a5c1eSPeter Wemm 	memset(&idesc, 0, sizeof(struct inodesc));
537180f1abSKirk McKusick 	idesc.id_func = freeblock;
54d33e92f9SJulian Elischer 	for (cg = 0; cg < sblock.fs_ncg; cg++) {
556db798caSIan Dowse 		if (got_siginfo) {
566db798caSIan Dowse 			printf("%s: phase 4: cyl group %d of %d (%d%%)\n",
576db798caSIan Dowse 			    cdevname, cg, sblock.fs_ncg,
586db798caSIan Dowse 			    cg * 100 / sblock.fs_ncg);
596db798caSIan Dowse 			got_siginfo = 0;
606db798caSIan Dowse 		}
611660ae87SScott Long 		if (got_sigalarm) {
621660ae87SScott Long 			setproctitle("%s p4 %d%%", cdevname,
631660ae87SScott Long 			    cg * 100 / sblock.fs_ncg);
641660ae87SScott Long 			got_sigalarm = 0;
651660ae87SScott Long 		}
66d33e92f9SJulian Elischer 		inumber = cg * sblock.fs_ipg;
67d33e92f9SJulian Elischer 		for (i = 0; i < inostathead[cg].il_numalloced; i++, inumber++) {
681dc349abSEd Maste 			if (inumber < UFS_ROOTINO)
69d33e92f9SJulian Elischer 				continue;
708fae3551SRodney W. Grimes 			idesc.id_number = inumber;
71*5cc52631SKirk McKusick 			idesc.id_type = inoinfo(inumber)->ino_idtype;
72d33e92f9SJulian Elischer 			switch (inoinfo(inumber)->ino_state) {
738fae3551SRodney W. Grimes 
74af6726e6SDon Lewis 			case FZLINK:
75af6726e6SDon Lewis 			case DZLINK:
76af6726e6SDon Lewis 				if (inoinfo(inumber)->ino_linkcnt == 0) {
77af6726e6SDon Lewis 					clri(&idesc, "UNREF", 1);
78af6726e6SDon Lewis 					break;
79af6726e6SDon Lewis 				}
80af6726e6SDon Lewis 				/* fall through */
81af6726e6SDon Lewis 
828fae3551SRodney W. Grimes 			case FSTATE:
838fae3551SRodney W. Grimes 			case DFOUND:
84d33e92f9SJulian Elischer 				n = inoinfo(inumber)->ino_linkcnt;
85d33e92f9SJulian Elischer 				if (n) {
868fae3551SRodney W. Grimes 					adjust(&idesc, (short)n);
87d33e92f9SJulian Elischer 					break;
88d33e92f9SJulian Elischer 				}
898fae3551SRodney W. Grimes 				break;
908fae3551SRodney W. Grimes 
918fae3551SRodney W. Grimes 			case DSTATE:
928fae3551SRodney W. Grimes 				clri(&idesc, "UNREF", 1);
938fae3551SRodney W. Grimes 				break;
948fae3551SRodney W. Grimes 
958fae3551SRodney W. Grimes 			case DCLEAR:
9697fea87bSKirk McKusick 				/* if on snapshot, already cleared */
9797fea87bSKirk McKusick 				if (cursnapshot != 0)
9897fea87bSKirk McKusick 					break;
99*5cc52631SKirk McKusick 				ginode(inumber, &ip);
100*5cc52631SKirk McKusick 				if (DIP(ip.i_dp, di_size) == 0) {
1018fae3551SRodney W. Grimes 					clri(&idesc, "ZERO LENGTH", 1);
102*5cc52631SKirk McKusick 					irelse(&ip);
1038fae3551SRodney W. Grimes 					break;
1048fae3551SRodney W. Grimes 				}
105*5cc52631SKirk McKusick 				irelse(&ip);
1068fae3551SRodney W. Grimes 				/* fall through */
1078fae3551SRodney W. Grimes 			case FCLEAR:
1088fae3551SRodney W. Grimes 				clri(&idesc, "BAD/DUP", 1);
1098fae3551SRodney W. Grimes 				break;
1108fae3551SRodney W. Grimes 
1118fae3551SRodney W. Grimes 			case USTATE:
1128fae3551SRodney W. Grimes 				break;
1138fae3551SRodney W. Grimes 
1148fae3551SRodney W. Grimes 			default:
115623d7cb6SMatthew D Fleming 				errx(EEXIT, "BAD STATE %d FOR INODE I=%ju",
116623d7cb6SMatthew D Fleming 				    inoinfo(inumber)->ino_state,
117623d7cb6SMatthew D Fleming 				    (uintmax_t)inumber);
118d33e92f9SJulian Elischer 			}
1198fae3551SRodney W. Grimes 		}
1208fae3551SRodney W. Grimes 	}
1218fae3551SRodney W. Grimes }
122