]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sbin/fsck_ffs/pass4.c
fsck_ffs(8): fix divide by zero when debug messages are enabled
[FreeBSD/FreeBSD.git] / sbin / fsck_ffs / pass4.c
1 /*-
2  * SPDX-License-Identifier: BSD-3-Clause
3  *
4  * Copyright (c) 1980, 1986, 1993
5  *      The Regents of the University of California.  All rights reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 2. Redistributions in binary form must reproduce the above copyright
13  *    notice, this list of conditions and the following disclaimer in the
14  *    documentation and/or other materials provided with the distribution.
15  * 3. Neither the name of the University nor the names of its contributors
16  *    may be used to endorse or promote products derived from this software
17  *    without specific prior written permission.
18  *
19  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29  * SUCH DAMAGE.
30  */
31
32 #if 0
33 #ifndef lint
34 static const char sccsid[] = "@(#)pass4.c       8.4 (Berkeley) 4/28/95";
35 #endif /* not lint */
36 #endif
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include <sys/param.h>
41 #include <sys/stat.h>
42
43 #include <ufs/ufs/dinode.h>
44 #include <ufs/ffs/fs.h>
45
46 #include <err.h>
47 #include <stdint.h>
48 #include <string.h>
49
50 #include "fsck.h"
51
52 void
53 pass4(void)
54 {
55         ino_t inumber;
56         struct inode ip;
57         struct inodesc idesc;
58         int i, n, cg;
59
60         memset(&idesc, 0, sizeof(struct inodesc));
61         idesc.id_func = freeblock;
62         for (cg = 0; cg < sblock.fs_ncg; cg++) {
63                 if (got_siginfo) {
64                         printf("%s: phase 4: cyl group %d of %d (%d%%)\n",
65                             cdevname, cg, sblock.fs_ncg,
66                             cg * 100 / sblock.fs_ncg);
67                         got_siginfo = 0;
68                 }
69                 if (got_sigalarm) {
70                         setproctitle("%s p4 %d%%", cdevname,
71                             cg * 100 / sblock.fs_ncg);
72                         got_sigalarm = 0;
73                 }
74                 inumber = cg * sblock.fs_ipg;
75                 for (i = 0; i < inostathead[cg].il_numalloced; i++, inumber++) {
76                         if (inumber < UFS_ROOTINO)
77                                 continue;
78                         idesc.id_number = inumber;
79                         idesc.id_type = inoinfo(inumber)->ino_idtype;
80                         switch (inoinfo(inumber)->ino_state) {
81
82                         case FZLINK:
83                         case DZLINK:
84                                 if (inoinfo(inumber)->ino_linkcnt == 0) {
85                                         clri(&idesc, "UNREF", 1);
86                                         break;
87                                 }
88                                 /* fall through */
89
90                         case FSTATE:
91                         case DFOUND:
92                                 n = inoinfo(inumber)->ino_linkcnt;
93                                 if (n) {
94                                         adjust(&idesc, (short)n);
95                                         break;
96                                 }
97                                 break;
98
99                         case DSTATE:
100                                 clri(&idesc, "UNREF", 1);
101                                 break;
102
103                         case DCLEAR:
104                                 /* if on snapshot, already cleared */
105                                 if (cursnapshot != 0)
106                                         break;
107                                 ginode(inumber, &ip);
108                                 if (DIP(ip.i_dp, di_size) == 0) {
109                                         clri(&idesc, "ZERO LENGTH", 1);
110                                         irelse(&ip);
111                                         break;
112                                 }
113                                 irelse(&ip);
114                                 /* fall through */
115                         case FCLEAR:
116                                 clri(&idesc, "BAD/DUP", 1);
117                                 break;
118
119                         case USTATE:
120                                 break;
121
122                         default:
123                                 errx(EEXIT, "BAD STATE %d FOR INODE I=%ju",
124                                     inoinfo(inumber)->ino_state,
125                                     (uintmax_t)inumber);
126                         }
127                 }
128         }
129 }