pass1.c revision 1.15 1 1.15 christos /* $NetBSD: pass1.c,v 1.15 1996/09/23 16:18:36 christos Exp $ */
2 1.13 cgd
3 1.1 cgd /*
4 1.7 mycroft * Copyright (c) 1980, 1986, 1993
5 1.7 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 cgd *
7 1.1 cgd * Redistribution and use in source and binary forms, with or without
8 1.1 cgd * modification, are permitted provided that the following conditions
9 1.1 cgd * are met:
10 1.1 cgd * 1. Redistributions of source code must retain the above copyright
11 1.1 cgd * notice, this list of conditions and the following disclaimer.
12 1.1 cgd * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 cgd * notice, this list of conditions and the following disclaimer in the
14 1.1 cgd * documentation and/or other materials provided with the distribution.
15 1.1 cgd * 3. All advertising materials mentioning features or use of this software
16 1.1 cgd * must display the following acknowledgement:
17 1.1 cgd * This product includes software developed by the University of
18 1.1 cgd * California, Berkeley and its contributors.
19 1.1 cgd * 4. Neither the name of the University nor the names of its contributors
20 1.1 cgd * may be used to endorse or promote products derived from this software
21 1.1 cgd * without specific prior written permission.
22 1.1 cgd *
23 1.1 cgd * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 cgd * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 cgd * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 cgd * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 cgd * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 cgd * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 cgd * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 cgd * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 cgd * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 cgd * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 cgd * SUCH DAMAGE.
34 1.1 cgd */
35 1.1 cgd
36 1.1 cgd #ifndef lint
37 1.13 cgd #if 0
38 1.13 cgd static char sccsid[] = "@(#)pass1.c 8.1 (Berkeley) 6/5/93";
39 1.13 cgd #else
40 1.15 christos static char rcsid[] = "$NetBSD: pass1.c,v 1.15 1996/09/23 16:18:36 christos Exp $";
41 1.13 cgd #endif
42 1.1 cgd #endif /* not lint */
43 1.1 cgd
44 1.1 cgd #include <sys/param.h>
45 1.6 cgd #include <sys/time.h>
46 1.7 mycroft #include <ufs/ufs/dinode.h>
47 1.7 mycroft #include <ufs/ufs/dir.h>
48 1.7 mycroft #include <ufs/ffs/fs.h>
49 1.12 cgd
50 1.12 cgd #include <stdio.h>
51 1.1 cgd #include <stdlib.h>
52 1.1 cgd #include <string.h>
53 1.12 cgd
54 1.1 cgd #include "fsck.h"
55 1.12 cgd #include "extern.h"
56 1.15 christos #include "util.h"
57 1.1 cgd
58 1.1 cgd static daddr_t badblk;
59 1.1 cgd static daddr_t dupblk;
60 1.15 christos static void checkinode __P((ino_t, struct inodesc *));
61 1.1 cgd
62 1.12 cgd void
63 1.1 cgd pass1()
64 1.1 cgd {
65 1.7 mycroft ino_t inumber;
66 1.7 mycroft int c, i, cgd;
67 1.1 cgd struct inodesc idesc;
68 1.1 cgd
69 1.1 cgd /*
70 1.1 cgd * Set file system reserved blocks in used block map.
71 1.1 cgd */
72 1.1 cgd for (c = 0; c < sblock.fs_ncg; c++) {
73 1.1 cgd cgd = cgdmin(&sblock, c);
74 1.14 mycroft if (c == 0)
75 1.1 cgd i = cgbase(&sblock, c);
76 1.14 mycroft else
77 1.1 cgd i = cgsblock(&sblock, c);
78 1.1 cgd for (; i < cgd; i++)
79 1.1 cgd setbmap(i);
80 1.1 cgd }
81 1.14 mycroft i = sblock.fs_csaddr;
82 1.14 mycroft cgd = i + howmany(sblock.fs_cssize, sblock.fs_fsize);
83 1.14 mycroft for (; i < cgd; i++)
84 1.14 mycroft setbmap(i);
85 1.1 cgd /*
86 1.1 cgd * Find all allocated blocks.
87 1.1 cgd */
88 1.10 mycroft memset(&idesc, 0, sizeof(struct inodesc));
89 1.1 cgd idesc.id_type = ADDR;
90 1.1 cgd idesc.id_func = pass1check;
91 1.1 cgd inumber = 0;
92 1.1 cgd n_files = n_blks = 0;
93 1.1 cgd resetinodebuf();
94 1.1 cgd for (c = 0; c < sblock.fs_ncg; c++) {
95 1.1 cgd for (i = 0; i < sblock.fs_ipg; i++, inumber++) {
96 1.1 cgd if (inumber < ROOTINO)
97 1.1 cgd continue;
98 1.7 mycroft checkinode(inumber, &idesc);
99 1.7 mycroft }
100 1.7 mycroft }
101 1.7 mycroft freeinodebuf();
102 1.7 mycroft }
103 1.7 mycroft
104 1.15 christos static void
105 1.7 mycroft checkinode(inumber, idesc)
106 1.7 mycroft ino_t inumber;
107 1.7 mycroft register struct inodesc *idesc;
108 1.7 mycroft {
109 1.7 mycroft register struct dinode *dp;
110 1.7 mycroft struct zlncnt *zlnp;
111 1.7 mycroft int ndb, j;
112 1.7 mycroft mode_t mode;
113 1.9 ws char *symbuf;
114 1.7 mycroft
115 1.7 mycroft dp = getnextinode(inumber);
116 1.7 mycroft mode = dp->di_mode & IFMT;
117 1.7 mycroft if (mode == 0) {
118 1.11 mycroft if (memcmp(dp->di_db, zino.di_db, NDADDR * sizeof(daddr_t)) ||
119 1.11 mycroft memcmp(dp->di_ib, zino.di_ib, NIADDR * sizeof(daddr_t)) ||
120 1.7 mycroft dp->di_mode || dp->di_size) {
121 1.15 christos pfatal("PARTIALLY ALLOCATED INODE I=%u", inumber);
122 1.1 cgd if (reply("CLEAR") == 1) {
123 1.1 cgd dp = ginode(inumber);
124 1.1 cgd clearinode(dp);
125 1.1 cgd inodirty();
126 1.1 cgd }
127 1.1 cgd }
128 1.7 mycroft statemap[inumber] = USTATE;
129 1.7 mycroft return;
130 1.7 mycroft }
131 1.7 mycroft lastino = inumber;
132 1.7 mycroft if (/* dp->di_size < 0 || */
133 1.7 mycroft dp->di_size + sblock.fs_bsize - 1 < dp->di_size) {
134 1.7 mycroft if (debug)
135 1.7 mycroft printf("bad size %qu:", dp->di_size);
136 1.7 mycroft goto unknown;
137 1.7 mycroft }
138 1.7 mycroft if (!preen && mode == IFMT && reply("HOLD BAD BLOCK") == 1) {
139 1.7 mycroft dp = ginode(inumber);
140 1.7 mycroft dp->di_size = sblock.fs_fsize;
141 1.7 mycroft dp->di_mode = IFREG|0600;
142 1.7 mycroft inodirty();
143 1.7 mycroft }
144 1.7 mycroft ndb = howmany(dp->di_size, sblock.fs_bsize);
145 1.7 mycroft if (ndb < 0) {
146 1.7 mycroft if (debug)
147 1.7 mycroft printf("bad size %qu ndb %d:",
148 1.7 mycroft dp->di_size, ndb);
149 1.7 mycroft goto unknown;
150 1.7 mycroft }
151 1.7 mycroft if (mode == IFBLK || mode == IFCHR)
152 1.7 mycroft ndb++;
153 1.7 mycroft if (mode == IFLNK) {
154 1.7 mycroft /*
155 1.7 mycroft * Note that the old fastlink format always had di_blocks set
156 1.7 mycroft * to 0. Other than that we no longer use the `spare' field
157 1.7 mycroft * (which is now the extended uid) for sanity checking, the
158 1.7 mycroft * new format is the same as the old. We simply ignore the
159 1.7 mycroft * conversion altogether. - mycroft, 19MAY1994
160 1.7 mycroft */
161 1.7 mycroft if (doinglevel2 &&
162 1.7 mycroft dp->di_size > 0 && dp->di_size < MAXSYMLINKLEN &&
163 1.7 mycroft dp->di_blocks != 0) {
164 1.9 ws symbuf = alloca(secsize);
165 1.7 mycroft if (bread(fsreadfd, symbuf,
166 1.7 mycroft fsbtodb(&sblock, dp->di_db[0]),
167 1.9 ws (long)secsize) != 0)
168 1.7 mycroft errexit("cannot read symlink");
169 1.7 mycroft if (debug) {
170 1.7 mycroft symbuf[dp->di_size] = 0;
171 1.15 christos printf("convert symlink %d(%s) of size %qd\n",
172 1.15 christos inumber, symbuf, dp->di_size);
173 1.7 mycroft }
174 1.7 mycroft dp = ginode(inumber);
175 1.10 mycroft memcpy(dp->di_shortlink, symbuf, (long)dp->di_size);
176 1.7 mycroft dp->di_blocks = 0;
177 1.7 mycroft inodirty();
178 1.7 mycroft }
179 1.7 mycroft /*
180 1.7 mycroft * Fake ndb value so direct/indirect block checks below
181 1.7 mycroft * will detect any garbage after symlink string.
182 1.7 mycroft */
183 1.7 mycroft if (dp->di_size < sblock.fs_maxsymlinklen ||
184 1.8 mycroft (sblock.fs_maxsymlinklen == 0 && dp->di_blocks == 0)) {
185 1.7 mycroft ndb = howmany(dp->di_size, sizeof(daddr_t));
186 1.7 mycroft if (ndb > NDADDR) {
187 1.7 mycroft j = ndb - NDADDR;
188 1.7 mycroft for (ndb = 1; j > 1; j--)
189 1.7 mycroft ndb *= NINDIR(&sblock);
190 1.7 mycroft ndb += NDADDR;
191 1.7 mycroft }
192 1.7 mycroft }
193 1.7 mycroft }
194 1.7 mycroft for (j = ndb; j < NDADDR; j++)
195 1.7 mycroft if (dp->di_db[j] != 0) {
196 1.7 mycroft if (debug)
197 1.15 christos printf("bad direct addr: %d\n", dp->di_db[j]);
198 1.7 mycroft goto unknown;
199 1.7 mycroft }
200 1.7 mycroft for (j = 0, ndb -= NDADDR; ndb > 0; j++)
201 1.7 mycroft ndb /= NINDIR(&sblock);
202 1.7 mycroft for (; j < NIADDR; j++)
203 1.7 mycroft if (dp->di_ib[j] != 0) {
204 1.7 mycroft if (debug)
205 1.15 christos printf("bad indirect addr: %d\n",
206 1.7 mycroft dp->di_ib[j]);
207 1.7 mycroft goto unknown;
208 1.7 mycroft }
209 1.7 mycroft if (ftypeok(dp) == 0)
210 1.7 mycroft goto unknown;
211 1.7 mycroft n_files++;
212 1.7 mycroft lncntp[inumber] = dp->di_nlink;
213 1.7 mycroft if (dp->di_nlink <= 0) {
214 1.7 mycroft zlnp = (struct zlncnt *)malloc(sizeof *zlnp);
215 1.7 mycroft if (zlnp == NULL) {
216 1.7 mycroft pfatal("LINK COUNT TABLE OVERFLOW");
217 1.7 mycroft if (reply("CONTINUE") == 0)
218 1.15 christos errexit("%s", "");
219 1.7 mycroft } else {
220 1.7 mycroft zlnp->zlncnt = inumber;
221 1.7 mycroft zlnp->next = zlnhead;
222 1.7 mycroft zlnhead = zlnp;
223 1.7 mycroft }
224 1.7 mycroft }
225 1.7 mycroft if (mode == IFDIR) {
226 1.7 mycroft if (dp->di_size == 0)
227 1.7 mycroft statemap[inumber] = DCLEAR;
228 1.7 mycroft else
229 1.7 mycroft statemap[inumber] = DSTATE;
230 1.7 mycroft cacheino(dp, inumber);
231 1.7 mycroft } else
232 1.7 mycroft statemap[inumber] = FSTATE;
233 1.7 mycroft typemap[inumber] = IFTODT(mode);
234 1.7 mycroft if (doinglevel2 &&
235 1.7 mycroft (dp->di_ouid != (u_short)-1 || dp->di_ogid != (u_short)-1)) {
236 1.7 mycroft dp = ginode(inumber);
237 1.7 mycroft dp->di_uid = dp->di_ouid;
238 1.7 mycroft dp->di_ouid = -1;
239 1.7 mycroft dp->di_gid = dp->di_ogid;
240 1.7 mycroft dp->di_ogid = -1;
241 1.7 mycroft inodirty();
242 1.7 mycroft }
243 1.7 mycroft badblk = dupblk = 0;
244 1.7 mycroft idesc->id_number = inumber;
245 1.7 mycroft (void)ckinode(dp, idesc);
246 1.7 mycroft idesc->id_entryno *= btodb(sblock.fs_fsize);
247 1.7 mycroft if (dp->di_blocks != idesc->id_entryno) {
248 1.15 christos pwarn("INCORRECT BLOCK COUNT I=%u (%d should be %d)",
249 1.7 mycroft inumber, dp->di_blocks, idesc->id_entryno);
250 1.7 mycroft if (preen)
251 1.7 mycroft printf(" (CORRECTED)\n");
252 1.7 mycroft else if (reply("CORRECT") == 0)
253 1.7 mycroft return;
254 1.7 mycroft dp = ginode(inumber);
255 1.7 mycroft dp->di_blocks = idesc->id_entryno;
256 1.7 mycroft inodirty();
257 1.7 mycroft }
258 1.7 mycroft return;
259 1.7 mycroft unknown:
260 1.15 christos pfatal("UNKNOWN FILE TYPE I=%u", inumber);
261 1.7 mycroft statemap[inumber] = FCLEAR;
262 1.7 mycroft if (reply("CLEAR") == 1) {
263 1.7 mycroft statemap[inumber] = USTATE;
264 1.7 mycroft dp = ginode(inumber);
265 1.7 mycroft clearinode(dp);
266 1.7 mycroft inodirty();
267 1.1 cgd }
268 1.1 cgd }
269 1.1 cgd
270 1.12 cgd int
271 1.1 cgd pass1check(idesc)
272 1.1 cgd register struct inodesc *idesc;
273 1.1 cgd {
274 1.1 cgd int res = KEEPON;
275 1.1 cgd int anyout, nfrags;
276 1.1 cgd daddr_t blkno = idesc->id_blkno;
277 1.1 cgd register struct dups *dlp;
278 1.1 cgd struct dups *new;
279 1.1 cgd
280 1.1 cgd if ((anyout = chkrange(blkno, idesc->id_numfrags)) != 0) {
281 1.1 cgd blkerror(idesc->id_number, "BAD", blkno);
282 1.1 cgd if (badblk++ >= MAXBAD) {
283 1.15 christos pwarn("EXCESSIVE BAD BLKS I=%u",
284 1.1 cgd idesc->id_number);
285 1.1 cgd if (preen)
286 1.1 cgd printf(" (SKIPPING)\n");
287 1.1 cgd else if (reply("CONTINUE") == 0)
288 1.15 christos errexit("%s", "");
289 1.1 cgd return (STOP);
290 1.1 cgd }
291 1.1 cgd }
292 1.1 cgd for (nfrags = idesc->id_numfrags; nfrags > 0; blkno++, nfrags--) {
293 1.1 cgd if (anyout && chkrange(blkno, 1)) {
294 1.1 cgd res = SKIP;
295 1.1 cgd } else if (!testbmap(blkno)) {
296 1.1 cgd n_blks++;
297 1.1 cgd setbmap(blkno);
298 1.1 cgd } else {
299 1.1 cgd blkerror(idesc->id_number, "DUP", blkno);
300 1.1 cgd if (dupblk++ >= MAXDUP) {
301 1.15 christos pwarn("EXCESSIVE DUP BLKS I=%u",
302 1.1 cgd idesc->id_number);
303 1.1 cgd if (preen)
304 1.1 cgd printf(" (SKIPPING)\n");
305 1.1 cgd else if (reply("CONTINUE") == 0)
306 1.15 christos errexit("%s", "");
307 1.1 cgd return (STOP);
308 1.1 cgd }
309 1.1 cgd new = (struct dups *)malloc(sizeof(struct dups));
310 1.1 cgd if (new == NULL) {
311 1.1 cgd pfatal("DUP TABLE OVERFLOW.");
312 1.1 cgd if (reply("CONTINUE") == 0)
313 1.15 christos errexit("%s", "");
314 1.1 cgd return (STOP);
315 1.1 cgd }
316 1.1 cgd new->dup = blkno;
317 1.1 cgd if (muldup == 0) {
318 1.1 cgd duplist = muldup = new;
319 1.1 cgd new->next = 0;
320 1.1 cgd } else {
321 1.1 cgd new->next = muldup->next;
322 1.1 cgd muldup->next = new;
323 1.1 cgd }
324 1.1 cgd for (dlp = duplist; dlp != muldup; dlp = dlp->next)
325 1.1 cgd if (dlp->dup == blkno)
326 1.1 cgd break;
327 1.1 cgd if (dlp == muldup && dlp->dup != blkno)
328 1.1 cgd muldup = new;
329 1.1 cgd }
330 1.1 cgd /*
331 1.1 cgd * count the number of blocks found in id_entryno
332 1.1 cgd */
333 1.1 cgd idesc->id_entryno++;
334 1.1 cgd }
335 1.1 cgd return (res);
336 1.1 cgd }
337