pass1.c revision 41474
1/*
2 * Copyright (c) 1980, 1986, 1993
3 *	The Regents of the University of California.  All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
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.
20 *
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
31 * SUCH DAMAGE.
32 */
33
34#ifndef lint
35static const char sccsid[] = "@(#)pass1.c	8.6 (Berkeley) 4/28/95";
36#endif /* not lint */
37
38#include <sys/param.h>
39#include <sys/time.h>
40
41#include <ufs/ufs/dinode.h>
42#include <ufs/ufs/dir.h>
43#include <ufs/ffs/fs.h>
44
45#include <err.h>
46#include <string.h>
47
48#include "fsck.h"
49
50static ufs_daddr_t badblk;
51static ufs_daddr_t dupblk;
52static ino_t lastino;		/* last inode in use */
53
54static void checkinode __P((ino_t inumber, struct inodesc *));
55
56void
57pass1()
58{
59	u_int8_t *cp;
60	ino_t inumber;
61	int c, i, cgd, inosused;
62	struct inostat *info;
63	struct inodesc idesc;
64
65	/*
66	 * Set file system reserved blocks in used block map.
67	 */
68	for (c = 0; c < sblock.fs_ncg; c++) {
69		cgd = cgdmin(&sblock, c);
70		if (c == 0) {
71			i = cgbase(&sblock, c);
72			cgd += howmany(sblock.fs_cssize, sblock.fs_fsize);
73		} else
74			i = cgsblock(&sblock, c);
75		for (; i < cgd; i++)
76			setbmap(i);
77	}
78	/*
79	 * Find all allocated blocks.
80	 */
81	memset(&idesc, 0, sizeof(struct inodesc));
82	idesc.id_type = ADDR;
83	idesc.id_func = pass1check;
84	n_files = n_blks = 0;
85	for (c = 0; c < sblock.fs_ncg; c++) {
86		inumber = c * sblock.fs_ipg;
87		setinodebuf(inumber);
88		inosused = sblock.fs_ipg;
89		/*
90		 * If we are using soft updates, then we can trust the
91		 * cylinder group inode allocation maps to tell us which
92		 * inodes are allocated. We will scan the used inode map
93		 * to find the inodes that are really in use, and then
94		 * read only those inodes in from disk.
95		 */
96		if (preen && usedsoftdep) {
97			getblk(&cgblk, cgtod(&sblock, c), sblock.fs_cgsize);
98			if (!cg_chkmagic(&cgrp))
99				pfatal("CG %d: BAD MAGIC NUMBER\n", c);
100			cp = &cg_inosused(&cgrp)[(sblock.fs_ipg - 1) / NBBY];
101			for ( ; inosused > 0; inosused -= NBBY, cp--) {
102				if (*cp == 0)
103					continue;
104				for (i = 1 << (NBBY - 1); i > 0; i >>= 1) {
105					if (*cp & i)
106						break;
107					inosused--;
108				}
109				break;
110			}
111			if (inosused < 0)
112				inosused = 0;
113		}
114		/*
115		 * Allocate inoinfo structures for the allocated inodes.
116		 */
117		inostathead[c].il_numalloced = inosused;
118		if (inosused == 0) {
119			inostathead[c].il_stat = 0;
120			continue;
121		}
122		info = calloc((unsigned)inosused, sizeof(struct inostat));
123		if (info == NULL)
124			pfatal("cannot alloc %u bytes for inoinfo\n",
125			    (unsigned)(sizeof(struct inostat) * inosused));
126		inostathead[c].il_stat = info;
127		/*
128		 * Scan the allocated inodes.
129		 */
130		for (i = 0; i < inosused; i++, inumber++) {
131			if (inumber < ROOTINO) {
132				(void)getnextinode(inumber);
133				continue;
134			}
135			checkinode(inumber, &idesc);
136		}
137		lastino += 1;
138		if (inosused < sblock.fs_ipg || inumber == lastino)
139			continue;
140		/*
141		 * If we were not able to determine in advance which inodes
142		 * were in use, then reduce the size of the inoinfo structure
143		 * to the size necessary to describe the inodes that we
144		 * really found.
145		 */
146		inosused = lastino - (c * sblock.fs_ipg);
147		if (inosused < 0)
148			inosused = 0;
149		inostathead[c].il_numalloced = inosused;
150		if (inosused == 0) {
151			free(inostathead[c].il_stat);
152			inostathead[c].il_stat = 0;
153			continue;
154		}
155		info = calloc((unsigned)inosused, sizeof(struct inostat));
156		if (info == NULL)
157			pfatal("cannot alloc %u bytes for inoinfo\n",
158			    (unsigned)(sizeof(struct inostat) * inosused));
159		memmove(info, inostathead[c].il_stat, inosused * sizeof(*info));
160		free(inostathead[c].il_stat);
161		inostathead[c].il_stat = info;
162	}
163	freeinodebuf();
164}
165
166static void
167checkinode(inumber, idesc)
168	ino_t inumber;
169	register struct inodesc *idesc;
170{
171	register struct dinode *dp;
172	struct zlncnt *zlnp;
173	int ndb, j;
174	mode_t mode;
175	char *symbuf;
176
177	dp = getnextinode(inumber);
178	mode = dp->di_mode & IFMT;
179	if (mode == 0) {
180		if (memcmp(dp->di_db, zino.di_db,
181			NDADDR * sizeof(ufs_daddr_t)) ||
182		    memcmp(dp->di_ib, zino.di_ib,
183			NIADDR * sizeof(ufs_daddr_t)) ||
184		    dp->di_mode || dp->di_size) {
185			pfatal("PARTIALLY ALLOCATED INODE I=%lu", inumber);
186			if (reply("CLEAR") == 1) {
187				dp = ginode(inumber);
188				clearinode(dp);
189				inodirty();
190			}
191		}
192		inoinfo(inumber)->ino_state = USTATE;
193		return;
194	}
195	lastino = inumber;
196	if (/* dp->di_size < 0 || */
197	    dp->di_size + sblock.fs_bsize - 1 < dp->di_size ||
198	    (mode == IFDIR && dp->di_size > MAXDIRSIZE)) {
199		if (debug)
200			printf("bad size %qu:", dp->di_size);
201		goto unknown;
202	}
203	if (!preen && mode == IFMT && reply("HOLD BAD BLOCK") == 1) {
204		dp = ginode(inumber);
205		dp->di_size = sblock.fs_fsize;
206		dp->di_mode = IFREG|0600;
207		inodirty();
208	}
209	ndb = howmany(dp->di_size, sblock.fs_bsize);
210	if (ndb < 0) {
211		if (debug)
212			printf("bad size %qu ndb %d:",
213				dp->di_size, ndb);
214		goto unknown;
215	}
216	if (mode == IFBLK || mode == IFCHR)
217		ndb++;
218	if (mode == IFLNK) {
219		if (doinglevel2 &&
220		    dp->di_size > 0 && dp->di_size < MAXSYMLINKLEN &&
221		    dp->di_blocks != 0) {
222			symbuf = alloca(secsize);
223			if (bread(fsreadfd, symbuf,
224			    fsbtodb(&sblock, dp->di_db[0]),
225			    (long)secsize) != 0)
226				errx(EEXIT, "cannot read symlink");
227			if (debug) {
228				symbuf[dp->di_size] = 0;
229				printf("convert symlink %lu(%s) of size %ld\n",
230				    (u_long)inumber, symbuf, (long)dp->di_size);
231			}
232			dp = ginode(inumber);
233			memmove(dp->di_shortlink, symbuf, (long)dp->di_size);
234			dp->di_blocks = 0;
235			inodirty();
236		}
237		/*
238		 * Fake ndb value so direct/indirect block checks below
239		 * will detect any garbage after symlink string.
240		 */
241		if (dp->di_size < sblock.fs_maxsymlinklen) {
242			ndb = howmany(dp->di_size, sizeof(ufs_daddr_t));
243			if (ndb > NDADDR) {
244				j = ndb - NDADDR;
245				for (ndb = 1; j > 1; j--)
246					ndb *= NINDIR(&sblock);
247				ndb += NDADDR;
248			}
249		}
250	}
251	for (j = ndb; j < NDADDR; j++)
252		if (dp->di_db[j] != 0) {
253			if (debug)
254				printf("bad direct addr: %ld\n",
255				    (long)dp->di_db[j]);
256			goto unknown;
257		}
258	for (j = 0, ndb -= NDADDR; ndb > 0; j++)
259		ndb /= NINDIR(&sblock);
260	for (; j < NIADDR; j++)
261		if (dp->di_ib[j] != 0) {
262			if (debug)
263				printf("bad indirect addr: %ld\n",
264				    (long)dp->di_ib[j]);
265			goto unknown;
266		}
267	if (ftypeok(dp) == 0)
268		goto unknown;
269	n_files++;
270	inoinfo(inumber)->ino_linkcnt = dp->di_nlink;
271	if (dp->di_nlink <= 0) {
272		zlnp = (struct zlncnt *)malloc(sizeof *zlnp);
273		if (zlnp == NULL) {
274			pfatal("LINK COUNT TABLE OVERFLOW");
275			if (reply("CONTINUE") == 0) {
276				ckfini(0);
277				exit(EEXIT);
278			}
279		} else {
280			zlnp->zlncnt = inumber;
281			zlnp->next = zlnhead;
282			zlnhead = zlnp;
283		}
284	}
285	if (mode == IFDIR) {
286		if (dp->di_size == 0)
287			inoinfo(inumber)->ino_state = DCLEAR;
288		else
289			inoinfo(inumber)->ino_state = DSTATE;
290		cacheino(dp, inumber);
291		countdirs++;
292	} else
293		inoinfo(inumber)->ino_state = FSTATE;
294	inoinfo(inumber)->ino_type = IFTODT(mode);
295	if (doinglevel2 &&
296	    (dp->di_ouid != (u_short)-1 || dp->di_ogid != (u_short)-1)) {
297		dp = ginode(inumber);
298		dp->di_uid = dp->di_ouid;
299		dp->di_ouid = -1;
300		dp->di_gid = dp->di_ogid;
301		dp->di_ogid = -1;
302		inodirty();
303	}
304	badblk = dupblk = 0;
305	idesc->id_number = inumber;
306	(void)ckinode(dp, idesc);
307	idesc->id_entryno *= btodb(sblock.fs_fsize);
308	if (dp->di_blocks != idesc->id_entryno) {
309		pwarn("INCORRECT BLOCK COUNT I=%lu (%ld should be %ld)",
310		    inumber, dp->di_blocks, idesc->id_entryno);
311		if (preen)
312			printf(" (CORRECTED)\n");
313		else if (reply("CORRECT") == 0)
314			return;
315		dp = ginode(inumber);
316		dp->di_blocks = idesc->id_entryno;
317		inodirty();
318	}
319	return;
320unknown:
321	pfatal("UNKNOWN FILE TYPE I=%lu", inumber);
322	inoinfo(inumber)->ino_state = FCLEAR;
323	if (reply("CLEAR") == 1) {
324		inoinfo(inumber)->ino_state = USTATE;
325		dp = ginode(inumber);
326		clearinode(dp);
327		inodirty();
328	}
329}
330
331int
332pass1check(idesc)
333	register struct inodesc *idesc;
334{
335	int res = KEEPON;
336	int anyout, nfrags;
337	ufs_daddr_t blkno = idesc->id_blkno;
338	register struct dups *dlp;
339	struct dups *new;
340
341	if ((anyout = chkrange(blkno, idesc->id_numfrags)) != 0) {
342		blkerror(idesc->id_number, "BAD", blkno);
343		if (badblk++ >= MAXBAD) {
344			pwarn("EXCESSIVE BAD BLKS I=%lu",
345				idesc->id_number);
346			if (preen)
347				printf(" (SKIPPING)\n");
348			else if (reply("CONTINUE") == 0) {
349				ckfini(0);
350				exit(EEXIT);
351			}
352			return (STOP);
353		}
354	}
355	for (nfrags = idesc->id_numfrags; nfrags > 0; blkno++, nfrags--) {
356		if (anyout && chkrange(blkno, 1)) {
357			res = SKIP;
358		} else if (!testbmap(blkno)) {
359			n_blks++;
360			setbmap(blkno);
361		} else {
362			blkerror(idesc->id_number, "DUP", blkno);
363			if (dupblk++ >= MAXDUP) {
364				pwarn("EXCESSIVE DUP BLKS I=%lu",
365					idesc->id_number);
366				if (preen)
367					printf(" (SKIPPING)\n");
368				else if (reply("CONTINUE") == 0) {
369					ckfini(0);
370					exit(EEXIT);
371				}
372				return (STOP);
373			}
374			new = (struct dups *)malloc(sizeof(struct dups));
375			if (new == NULL) {
376				pfatal("DUP TABLE OVERFLOW.");
377				if (reply("CONTINUE") == 0) {
378					ckfini(0);
379					exit(EEXIT);
380				}
381				return (STOP);
382			}
383			new->dup = blkno;
384			if (muldup == 0) {
385				duplist = muldup = new;
386				new->next = 0;
387			} else {
388				new->next = muldup->next;
389				muldup->next = new;
390			}
391			for (dlp = duplist; dlp != muldup; dlp = dlp->next)
392				if (dlp->dup == blkno)
393					break;
394			if (dlp == muldup && dlp->dup != blkno)
395				muldup = new;
396		}
397		/*
398		 * count the number of blocks found in id_entryno
399		 */
400		idesc->id_entryno++;
401	}
402	return (res);
403}
404