pass1.c revision 1.14 1 /* $NetBSD: pass1.c,v 1.14 2005/02/09 22:55:45 ws Exp $ */
2
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 /*
33 * Copyright (c) 1997 Manuel Bouyer.
34 *
35 * Redistribution and use in source and binary forms, with or without
36 * modification, are permitted provided that the following conditions
37 * are met:
38 * 1. Redistributions of source code must retain the above copyright
39 * notice, this list of conditions and the following disclaimer.
40 * 2. Redistributions in binary form must reproduce the above copyright
41 * notice, this list of conditions and the following disclaimer in the
42 * documentation and/or other materials provided with the distribution.
43 * 3. All advertising materials mentioning features or use of this software
44 * must display the following acknowledgement:
45 * This product includes software developed by Manuel Bouyer.
46 * 4. The name of the author may not be used to endorse or promote products
47 * derived from this software without specific prior written permission.
48 *
49 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
50 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
51 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
52 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
53 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
54 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
55 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
56 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
57 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
58 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
59 */
60
61 #include <sys/cdefs.h>
62 #ifndef lint
63 #if 0
64 static char sccsid[] = "@(#)pass1.c 8.1 (Berkeley) 6/5/93";
65 #else
66 __RCSID("$NetBSD: pass1.c,v 1.14 2005/02/09 22:55:45 ws Exp $");
67 #endif
68 #endif /* not lint */
69
70 #include <sys/param.h>
71 #include <sys/time.h>
72 #include <ufs/ext2fs/ext2fs_dinode.h>
73 #include <ufs/ext2fs/ext2fs_dir.h>
74 #include <ufs/ext2fs/ext2fs.h>
75
76 #include <ufs/ufs/dinode.h> /* for IFMT & friends */
77
78 #include <stdio.h>
79 #include <stdlib.h>
80 #include <string.h>
81 #include <time.h>
82
83 #include "fsck.h"
84 #include "extern.h"
85 #include "fsutil.h"
86
87 static daddr_t badblk;
88 static daddr_t dupblk;
89 static void checkinode(ino_t, struct inodesc *);
90
91 void
92 pass1(void)
93 {
94 ino_t inumber;
95 int c, i;
96 daddr_t dbase;
97 struct inodesc idesc;
98
99 /*
100 * Set file system reserved blocks in used block map.
101 */
102 for (c = 0; c < sblock.e2fs_ncg; c++) {
103 dbase = c * sblock.e2fs.e2fs_bpg +
104 sblock.e2fs.e2fs_first_dblock;
105 /* Mark the blocks used for the inode table */
106 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_i_tables) >= dbase) {
107 for (i = 0; i < sblock.e2fs_itpg; i++)
108 setbmap(
109 fs2h32(sblock.e2fs_gd[c].ext2bgd_i_tables)
110 + i);
111 }
112 /* Mark the blocks used for the block bitmap */
113 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_b_bitmap) >= dbase)
114 setbmap(fs2h32(sblock.e2fs_gd[c].ext2bgd_b_bitmap));
115 /* Mark the blocks used for the inode bitmap */
116 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_i_bitmap) >= dbase)
117 setbmap(fs2h32(sblock.e2fs_gd[c].ext2bgd_i_bitmap));
118
119 if (sblock.e2fs.e2fs_rev == E2FS_REV0 ||
120 (sblock.e2fs.e2fs_features_rocompat &
121 EXT2F_ROCOMPAT_SPARSESUPER) == 0 ||
122 cg_has_sb(c)) {
123 /* Mark copuy of SB and descriptors */
124 setbmap(dbase);
125 for (i = 1; i <= sblock.e2fs_ngdb; i++)
126 setbmap(dbase+i);
127 }
128
129
130 if (c == 0) {
131 for(i = 0; i < dbase; i++)
132 setbmap(i);
133 }
134 }
135
136 /*
137 * Find all allocated blocks.
138 */
139 memset(&idesc, 0, sizeof(struct inodesc));
140 idesc.id_type = ADDR;
141 idesc.id_func = pass1check;
142 inumber = 1;
143 n_files = n_blks = 0;
144 resetinodebuf();
145 for (c = 0; c < sblock.e2fs_ncg; c++) {
146 for (i = 0;
147 i < sblock.e2fs.e2fs_ipg && inumber <= sblock.e2fs.e2fs_icount;
148 i++, inumber++) {
149 if (inumber < EXT2_ROOTINO) /* XXX */
150 continue;
151 checkinode(inumber, &idesc);
152 }
153 }
154 freeinodebuf();
155 }
156
157 static void
158 checkinode(ino_t inumber, struct inodesc *idesc)
159 {
160 struct ext2fs_dinode *dp;
161 struct zlncnt *zlnp;
162 int ndb, j;
163 mode_t mode;
164
165 dp = getnextinode(inumber);
166 if (inumber < EXT2_FIRSTINO && inumber != EXT2_ROOTINO)
167 return;
168
169 mode = fs2h16(dp->e2di_mode) & IFMT;
170 if (mode == 0 || (dp->e2di_dtime != 0 && dp->e2di_nlink == 0)) {
171 if (mode == 0 && (
172 memcmp(dp->e2di_blocks, zino.e2di_blocks,
173 (NDADDR + NIADDR) * sizeof(u_int32_t)) ||
174 dp->e2di_mode || inosize(dp))) {
175 pfatal("PARTIALLY ALLOCATED INODE I=%u", inumber);
176 if (reply("CLEAR") == 1) {
177 dp = ginode(inumber);
178 clearinode(dp);
179 inodirty();
180 }
181 }
182 #ifdef notyet /* it seems that dtime == 0 is valid for a unallocated inode */
183 if (dp->e2di_dtime == 0) {
184 pwarn("DELETED INODE I=%u HAS A NULL DTIME", inumber);
185 if (preen) {
186 printf(" (CORRECTED)\n");
187 }
188 if (preen || reply("CORRECT")) {
189 time_t t;
190 time(&t);
191 dp->e2di_dtime = h2fs32(t);
192 dp = ginode(inumber);
193 inodirty();
194 }
195 }
196 #endif
197 statemap[inumber] = USTATE;
198 return;
199 }
200 lastino = inumber;
201 if (dp->e2di_dtime != 0) {
202 time_t t = fs2h32(dp->e2di_dtime);
203 char *p = ctime(&t);
204 pwarn("INODE I=%u HAS DTIME=%12.12s %4.4s", inumber, &p[4], &p[20]);
205 if (preen) {
206 printf(" (CORRECTED)\n");
207 }
208 if (preen || reply("CORRECT")) {
209 dp = ginode(inumber);
210 dp->e2di_dtime = 0;
211 inodirty();
212 }
213 }
214 if (inosize(dp) + sblock.e2fs_bsize - 1 < inosize(dp)) {
215 if (debug)
216 printf("bad size %llu:", (unsigned long long)inosize(dp));
217 goto unknown;
218 }
219 if (!preen && mode == IFMT && reply("HOLD BAD BLOCK") == 1) {
220 dp = ginode(inumber);
221 dp->e2di_mode = h2fs16(IFREG|0600);
222 inossize(dp, sblock.e2fs_bsize);
223 inodirty();
224 }
225 ndb = howmany(inosize(dp), sblock.e2fs_bsize);
226 if (ndb < 0) {
227 if (debug)
228 printf("bad size %llu ndb %d:",
229 (unsigned long long)inosize(dp), ndb);
230 goto unknown;
231 }
232 if (mode == IFBLK || mode == IFCHR)
233 ndb++;
234 if (mode == IFLNK) {
235 /*
236 * Fake ndb value so direct/indirect block checks below
237 * will detect any garbage after symlink string.
238 */
239 if (inosize(dp) < EXT2_MAXSYMLINKLEN ||
240 (EXT2_MAXSYMLINKLEN == 0 && dp->e2di_blocks == 0)) {
241 ndb = howmany(inosize(dp), sizeof(u_int32_t));
242 if (ndb > NDADDR) {
243 j = ndb - NDADDR;
244 for (ndb = 1; j > 1; j--)
245 ndb *= NINDIR(&sblock);
246 ndb += NDADDR;
247 }
248 }
249 }
250 /* Linux puts things in blocks for FIFO, so skip this check */
251 if (mode != IFIFO) {
252 for (j = ndb; j < NDADDR; j++)
253 if (dp->e2di_blocks[j] != 0) {
254 if (debug)
255 printf("bad direct addr: %d\n",
256 fs2h32(dp->e2di_blocks[j]));
257 goto unknown;
258 }
259 for (j = 0, ndb -= NDADDR; ndb > 0; j++)
260 ndb /= NINDIR(&sblock);
261 for (; j < NIADDR; j++) {
262 if (dp->e2di_blocks[j+NDADDR] != 0) {
263 if (debug)
264 printf("bad indirect addr: %d\n",
265 fs2h32(dp->e2di_blocks[j+NDADDR]));
266 goto unknown;
267 }
268 }
269 }
270 if (ftypeok(dp) == 0)
271 goto unknown;
272 n_files++;
273 lncntp[inumber] = fs2h16(dp->e2di_nlink);
274 if (dp->e2di_nlink == 0) {
275 zlnp = (struct zlncnt *)malloc(sizeof *zlnp);
276 if (zlnp == NULL) {
277 pfatal("LINK COUNT TABLE OVERFLOW");
278 if (reply("CONTINUE") == 0)
279 errexit("%s\n", "");
280 } else {
281 zlnp->zlncnt = inumber;
282 zlnp->next = zlnhead;
283 zlnhead = zlnp;
284 }
285 }
286 if (mode == IFDIR) {
287 if (inosize(dp) == 0)
288 statemap[inumber] = DCLEAR;
289 else
290 statemap[inumber] = DSTATE;
291 cacheino(dp, inumber);
292 } else {
293 statemap[inumber] = FSTATE;
294 }
295 typemap[inumber] = E2IFTODT(mode);
296 badblk = dupblk = 0;
297 idesc->id_number = inumber;
298 (void)ckinode(dp, idesc);
299 idesc->id_entryno *= btodb(sblock.e2fs_bsize);
300 if (fs2h32(dp->e2di_nblock) != idesc->id_entryno) {
301 pwarn("INCORRECT BLOCK COUNT I=%u (%d should be %d)",
302 inumber, fs2h32(dp->e2di_nblock), idesc->id_entryno);
303 if (preen)
304 printf(" (CORRECTED)\n");
305 else if (reply("CORRECT") == 0)
306 return;
307 dp = ginode(inumber);
308 dp->e2di_nblock = h2fs32(idesc->id_entryno);
309 inodirty();
310 }
311 return;
312 unknown:
313 pfatal("UNKNOWN FILE TYPE I=%u", inumber);
314 statemap[inumber] = FCLEAR;
315 if (reply("CLEAR") == 1) {
316 statemap[inumber] = USTATE;
317 dp = ginode(inumber);
318 clearinode(dp);
319 inodirty();
320 }
321 }
322
323 int
324 pass1check(struct inodesc *idesc)
325 {
326 int res = KEEPON;
327 int anyout, nfrags;
328 daddr_t blkno = idesc->id_blkno;
329 struct dups *dlp;
330 struct dups *new;
331
332 if ((anyout = chkrange(blkno, idesc->id_numfrags)) != 0) {
333 blkerror(idesc->id_number, "BAD", blkno);
334 if (badblk++ >= MAXBAD) {
335 pwarn("EXCESSIVE BAD BLKS I=%u",
336 idesc->id_number);
337 if (preen)
338 printf(" (SKIPPING)\n");
339 else if (reply("CONTINUE") == 0)
340 errexit("%s\n", "");
341 return (STOP);
342 }
343 }
344 for (nfrags = idesc->id_numfrags; nfrags > 0; blkno++, nfrags--) {
345 if (anyout && chkrange(blkno, 1)) {
346 res = SKIP;
347 } else if (!testbmap(blkno)) {
348 n_blks++;
349 setbmap(blkno);
350 } else {
351 blkerror(idesc->id_number, "DUP", blkno);
352 if (dupblk++ >= MAXDUP) {
353 pwarn("EXCESSIVE DUP BLKS I=%u",
354 idesc->id_number);
355 if (preen)
356 printf(" (SKIPPING)\n");
357 else if (reply("CONTINUE") == 0)
358 errexit("%s\n", "");
359 return (STOP);
360 }
361 new = (struct dups *)malloc(sizeof(struct dups));
362 if (new == NULL) {
363 pfatal("DUP TABLE OVERFLOW.");
364 if (reply("CONTINUE") == 0)
365 errexit("%s\n", "");
366 return (STOP);
367 }
368 new->dup = blkno;
369 if (muldup == 0) {
370 duplist = muldup = new;
371 new->next = 0;
372 } else {
373 new->next = muldup->next;
374 muldup->next = new;
375 }
376 for (dlp = duplist; dlp != muldup; dlp = dlp->next)
377 if (dlp->dup == blkno)
378 break;
379 if (dlp == muldup && dlp->dup != blkno)
380 muldup = new;
381 }
382 /*
383 * count the number of blocks found in id_entryno
384 */
385 idesc->id_entryno++;
386 }
387 return (res);
388 }
389