Add Hama WLAN PCI Card 54 Mbps to recognized cards. Bump date.
[netbsd-mini2440.git] / sbin / fsck_ext2fs / pass1.c
blob265f1a11ffb0fdc7880f6fd6284c24ac2659c061
1 /* $NetBSD: pass1.c,v 1.19 2009/04/06 12:50:37 lukem Exp $ */
3 /*
4 * Copyright (c) 1980, 1986, 1993
5 * The Regents of the University of California. All rights reserved.
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.
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.
33 * Copyright (c) 1997 Manuel Bouyer.
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.
44 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
45 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
46 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
47 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
48 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
49 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
50 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
51 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
52 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
53 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
56 #include <sys/cdefs.h>
57 #ifndef lint
58 #if 0
59 static char sccsid[] = "@(#)pass1.c 8.1 (Berkeley) 6/5/93";
60 #else
61 __RCSID("$NetBSD: pass1.c,v 1.19 2009/04/06 12:50:37 lukem Exp $");
62 #endif
63 #endif /* not lint */
65 #include <sys/param.h>
66 #include <sys/time.h>
67 #include <ufs/ext2fs/ext2fs_dinode.h>
68 #include <ufs/ext2fs/ext2fs_dir.h>
69 #include <ufs/ext2fs/ext2fs.h>
71 #include <ufs/ufs/dinode.h> /* for IFMT & friends */
73 #include <stdio.h>
74 #include <stdlib.h>
75 #include <string.h>
76 #include <time.h>
78 #include "fsck.h"
79 #include "extern.h"
80 #include "fsutil.h"
81 #include "exitvalues.h"
83 static daddr_t badblk;
84 static daddr_t dupblk;
85 static void checkinode(ino_t, struct inodesc *);
87 void
88 pass1(void)
90 ino_t inumber;
91 int c, i;
92 size_t j;
93 daddr_t dbase;
94 struct inodesc idesc;
97 * Set file system reserved blocks in used block map.
99 for (c = 0; c < sblock.e2fs_ncg; c++) {
100 dbase = c * sblock.e2fs.e2fs_bpg +
101 sblock.e2fs.e2fs_first_dblock;
102 /* Mark the blocks used for the inode table */
103 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_i_tables) >= dbase) {
104 for (i = 0; i < sblock.e2fs_itpg; i++)
105 setbmap(
106 fs2h32(sblock.e2fs_gd[c].ext2bgd_i_tables)
107 + i);
109 /* Mark the blocks used for the block bitmap */
110 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_b_bitmap) >= dbase)
111 setbmap(fs2h32(sblock.e2fs_gd[c].ext2bgd_b_bitmap));
112 /* Mark the blocks used for the inode bitmap */
113 if (fs2h32(sblock.e2fs_gd[c].ext2bgd_i_bitmap) >= dbase)
114 setbmap(fs2h32(sblock.e2fs_gd[c].ext2bgd_i_bitmap));
116 if (sblock.e2fs.e2fs_rev == E2FS_REV0 ||
117 (sblock.e2fs.e2fs_features_rocompat &
118 EXT2F_ROCOMPAT_SPARSESUPER) == 0 ||
119 cg_has_sb(c)) {
120 /* Mark copuy of SB and descriptors */
121 setbmap(dbase);
122 for (i = 1; i <= sblock.e2fs_ngdb; i++)
123 setbmap(dbase+i);
127 if (c == 0) {
128 for(i = 0; i < dbase; i++)
129 setbmap(i);
134 * Find all allocated blocks.
136 memset(&idesc, 0, sizeof(struct inodesc));
137 idesc.id_type = ADDR;
138 idesc.id_func = pass1check;
139 inumber = 1;
140 n_files = n_blks = 0;
141 resetinodebuf();
142 for (c = 0; c < sblock.e2fs_ncg; c++) {
143 for (j = 0;
144 j < sblock.e2fs.e2fs_ipg && inumber <= sblock.e2fs.e2fs_icount;
145 j++, inumber++) {
146 if (inumber < EXT2_ROOTINO) /* XXX */
147 continue;
148 checkinode(inumber, &idesc);
151 freeinodebuf();
154 static void
155 checkinode(ino_t inumber, struct inodesc *idesc)
157 struct ext2fs_dinode *dp;
158 struct zlncnt *zlnp;
159 int ndb, j;
160 mode_t mode;
162 dp = getnextinode(inumber);
163 if (inumber < EXT2_FIRSTINO &&
164 inumber != EXT2_ROOTINO &&
165 !(inumber == EXT2_RESIZEINO &&
166 (sblock.e2fs.e2fs_features_compat & EXT2F_COMPAT_RESIZE) != 0))
167 return;
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=%llu",
176 (unsigned long long)inumber);
177 if (reply("CLEAR") == 1) {
178 dp = ginode(inumber);
179 clearinode(dp);
180 inodirty();
183 #ifdef notyet /* it seems that dtime == 0 is valid for a unallocated inode */
184 if (dp->e2di_dtime == 0) {
185 pwarn("DELETED INODE I=%llu HAS A NULL DTIME",
186 (unsigned long long)inumber);
187 if (preen) {
188 printf(" (CORRECTED)\n");
190 if (preen || reply("CORRECT")) {
191 time_t t;
192 time(&t);
193 dp->e2di_dtime = h2fs32(t);
194 dp = ginode(inumber);
195 inodirty();
198 #endif
199 statemap[inumber] = USTATE;
200 return;
202 lastino = inumber;
203 if (dp->e2di_dtime != 0) {
204 time_t t = fs2h32(dp->e2di_dtime);
205 char *p = ctime(&t);
206 pwarn("INODE I=%llu HAS DTIME=%12.12s %4.4s",
207 (unsigned long long)inumber, &p[4], &p[20]);
208 if (preen) {
209 printf(" (CORRECTED)\n");
211 if (preen || reply("CORRECT")) {
212 dp = ginode(inumber);
213 dp->e2di_dtime = 0;
214 inodirty();
217 if (inosize(dp) + sblock.e2fs_bsize - 1 < inosize(dp)) {
218 if (debug)
219 printf("bad size %llu:", (unsigned long long)inosize(dp));
220 goto unknown;
222 if (!preen && mode == IFMT && reply("HOLD BAD BLOCK") == 1) {
223 dp = ginode(inumber);
224 dp->e2di_mode = h2fs16(IFREG|0600);
225 inossize(dp, sblock.e2fs_bsize);
226 inodirty();
228 ndb = howmany(inosize(dp), sblock.e2fs_bsize);
229 if (ndb < 0) {
230 if (debug)
231 printf("bad size %llu ndb %d:",
232 (unsigned long long)inosize(dp), ndb);
233 goto unknown;
235 if (mode == IFBLK || mode == IFCHR)
236 ndb++;
237 if (mode == IFLNK) {
239 * Fake ndb value so direct/indirect block checks below
240 * will detect any garbage after symlink string.
242 if (inosize(dp) < EXT2_MAXSYMLINKLEN ||
243 (EXT2_MAXSYMLINKLEN == 0 && dp->e2di_blocks == 0)) {
244 ndb = howmany(inosize(dp), sizeof(u_int32_t));
245 if (ndb > NDADDR) {
246 j = ndb - NDADDR;
247 for (ndb = 1; j > 1; j--)
248 ndb *= NINDIR(&sblock);
249 ndb += NDADDR;
253 /* Linux puts things in blocks for FIFO, so skip this check */
254 if (mode != IFIFO) {
255 for (j = ndb; j < NDADDR; j++)
256 if (dp->e2di_blocks[j] != 0) {
257 if (debug)
258 printf("bad direct addr: %d\n",
259 fs2h32(dp->e2di_blocks[j]));
260 goto unknown;
262 for (j = 0, ndb -= NDADDR; ndb > 0; j++)
263 ndb /= NINDIR(&sblock);
264 for (; j < NIADDR; j++) {
265 if (dp->e2di_blocks[j+NDADDR] != 0) {
266 if (debug)
267 printf("bad indirect addr: %d\n",
268 fs2h32(dp->e2di_blocks[j+NDADDR]));
269 goto unknown;
273 if (ftypeok(dp) == 0)
274 goto unknown;
275 if (inumber >= EXT2_FIRSTINO || inumber == EXT2_ROOTINO) {
276 /* Don't count reserved inodes except root */
277 n_files++;
279 lncntp[inumber] = fs2h16(dp->e2di_nlink);
280 if (dp->e2di_nlink == 0) {
281 zlnp = malloc(sizeof *zlnp);
282 if (zlnp == NULL) {
283 pfatal("LINK COUNT TABLE OVERFLOW");
284 if (reply("CONTINUE") == 0)
285 exit(FSCK_EXIT_CHECK_FAILED);
286 } else {
287 zlnp->zlncnt = inumber;
288 zlnp->next = zlnhead;
289 zlnhead = zlnp;
292 if (mode == IFDIR) {
293 if (inosize(dp) == 0)
294 statemap[inumber] = DCLEAR;
295 else
296 statemap[inumber] = DSTATE;
297 cacheino(dp, inumber);
298 } else {
299 statemap[inumber] = FSTATE;
301 typemap[inumber] = E2IFTODT(mode);
302 badblk = dupblk = 0;
303 idesc->id_number = inumber;
304 (void)ckinode(dp, idesc);
305 idesc->id_entryno *= btodb(sblock.e2fs_bsize);
306 if (fs2h32(dp->e2di_nblock) != (uint32_t)idesc->id_entryno) {
307 pwarn("INCORRECT BLOCK COUNT I=%llu (%d should be %d)",
308 (unsigned long long)inumber, fs2h32(dp->e2di_nblock),
309 idesc->id_entryno);
310 if (preen)
311 printf(" (CORRECTED)\n");
312 else if (reply("CORRECT") == 0)
313 return;
314 dp = ginode(inumber);
315 dp->e2di_nblock = h2fs32(idesc->id_entryno);
316 inodirty();
318 return;
319 unknown:
320 pfatal("UNKNOWN FILE TYPE I=%llu", (unsigned long long)inumber);
321 statemap[inumber] = FCLEAR;
322 if (reply("CLEAR") == 1) {
323 statemap[inumber] = USTATE;
324 dp = ginode(inumber);
325 clearinode(dp);
326 inodirty();
331 pass1check(struct inodesc *idesc)
333 int res = KEEPON;
334 int anyout, nfrags;
335 daddr_t blkno = idesc->id_blkno;
336 struct dups *dlp;
337 struct dups *new;
339 if ((anyout = chkrange(blkno, idesc->id_numfrags)) != 0) {
340 blkerror(idesc->id_number, "BAD", blkno);
341 if (badblk++ >= MAXBAD) {
342 pwarn("EXCESSIVE BAD BLKS I=%llu",
343 (unsigned long long)idesc->id_number);
344 if (preen)
345 printf(" (SKIPPING)\n");
346 else if (reply("CONTINUE") == 0)
347 exit(FSCK_EXIT_CHECK_FAILED);
348 return (STOP);
351 for (nfrags = idesc->id_numfrags; nfrags > 0; blkno++, nfrags--) {
352 if (anyout && chkrange(blkno, 1)) {
353 res = SKIP;
354 } else if (!testbmap(blkno)) {
355 n_blks++;
356 setbmap(blkno);
357 } else {
358 blkerror(idesc->id_number, "DUP", blkno);
359 if (dupblk++ >= MAXDUP) {
360 pwarn("EXCESSIVE DUP BLKS I=%llu",
361 (unsigned long long)idesc->id_number);
362 if (preen)
363 printf(" (SKIPPING)\n");
364 else if (reply("CONTINUE") == 0)
365 exit(FSCK_EXIT_CHECK_FAILED);
366 return (STOP);
368 new = malloc(sizeof(struct dups));
369 if (new == NULL) {
370 pfatal("DUP TABLE OVERFLOW.");
371 if (reply("CONTINUE") == 0)
372 exit(FSCK_EXIT_CHECK_FAILED);
373 return (STOP);
375 new->dup = blkno;
376 if (muldup == 0) {
377 duplist = muldup = new;
378 new->next = 0;
379 } else {
380 new->next = muldup->next;
381 muldup->next = new;
383 for (dlp = duplist; dlp != muldup; dlp = dlp->next)
384 if (dlp->dup == blkno)
385 break;
386 if (dlp == muldup && dlp->dup != blkno)
387 muldup = new;
390 * count the number of blocks found in id_entryno
392 idesc->id_entryno++;
394 return (res);