inode.c revision 1.11 1 1.11 agc /* $NetBSD: inode.c,v 1.11 2003/08/07 10:04:16 agc Exp $ */
2 1.1 bouyer
3 1.1 bouyer /*
4 1.1 bouyer * Copyright (c) 1980, 1986, 1993
5 1.1 bouyer * The Regents of the University of California. All rights reserved.
6 1.1 bouyer *
7 1.1 bouyer * Redistribution and use in source and binary forms, with or without
8 1.1 bouyer * modification, are permitted provided that the following conditions
9 1.1 bouyer * are met:
10 1.1 bouyer * 1. Redistributions of source code must retain the above copyright
11 1.1 bouyer * notice, this list of conditions and the following disclaimer.
12 1.1 bouyer * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 bouyer * notice, this list of conditions and the following disclaimer in the
14 1.1 bouyer * documentation and/or other materials provided with the distribution.
15 1.11 agc * 3. Neither the name of the University nor the names of its contributors
16 1.11 agc * may be used to endorse or promote products derived from this software
17 1.11 agc * without specific prior written permission.
18 1.11 agc *
19 1.11 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.11 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.11 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.11 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.11 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.11 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.11 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.11 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.11 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.11 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.11 agc * SUCH DAMAGE.
30 1.11 agc */
31 1.11 agc
32 1.11 agc /*
33 1.11 agc * Copyright (c) 1997 Manuel Bouyer.
34 1.11 agc *
35 1.11 agc * Redistribution and use in source and binary forms, with or without
36 1.11 agc * modification, are permitted provided that the following conditions
37 1.11 agc * are met:
38 1.11 agc * 1. Redistributions of source code must retain the above copyright
39 1.11 agc * notice, this list of conditions and the following disclaimer.
40 1.11 agc * 2. Redistributions in binary form must reproduce the above copyright
41 1.11 agc * notice, this list of conditions and the following disclaimer in the
42 1.11 agc * documentation and/or other materials provided with the distribution.
43 1.1 bouyer * 3. All advertising materials mentioning features or use of this software
44 1.1 bouyer * must display the following acknowledgement:
45 1.1 bouyer * This product includes software developed by the University of
46 1.1 bouyer * California, Berkeley and its contributors.
47 1.1 bouyer * 4. Neither the name of the University nor the names of its contributors
48 1.1 bouyer * may be used to endorse or promote products derived from this software
49 1.1 bouyer * without specific prior written permission.
50 1.1 bouyer *
51 1.1 bouyer * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
52 1.1 bouyer * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
53 1.1 bouyer * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
54 1.1 bouyer * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
55 1.1 bouyer * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
56 1.1 bouyer * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
57 1.1 bouyer * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
58 1.1 bouyer * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
59 1.1 bouyer * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
60 1.1 bouyer * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 1.1 bouyer * SUCH DAMAGE.
62 1.1 bouyer */
63 1.1 bouyer
64 1.2 lukem #include <sys/cdefs.h>
65 1.1 bouyer #ifndef lint
66 1.1 bouyer #if 0
67 1.1 bouyer static char sccsid[] = "@(#)inode.c 8.5 (Berkeley) 2/8/95";
68 1.1 bouyer #else
69 1.11 agc __RCSID("$NetBSD: inode.c,v 1.11 2003/08/07 10:04:16 agc Exp $");
70 1.1 bouyer #endif
71 1.1 bouyer #endif /* not lint */
72 1.1 bouyer
73 1.1 bouyer #include <sys/param.h>
74 1.1 bouyer #include <sys/time.h>
75 1.1 bouyer #include <ufs/ext2fs/ext2fs_dinode.h>
76 1.1 bouyer #include <ufs/ext2fs/ext2fs_dir.h>
77 1.1 bouyer #include <ufs/ext2fs/ext2fs.h>
78 1.1 bouyer
79 1.1 bouyer #include <ufs/ufs/dinode.h> /* for IFMT & friends */
80 1.1 bouyer #ifndef SMALL
81 1.1 bouyer #include <pwd.h>
82 1.1 bouyer #endif
83 1.1 bouyer #include <stdio.h>
84 1.1 bouyer #include <stdlib.h>
85 1.1 bouyer #include <string.h>
86 1.4 kleink #include <time.h>
87 1.1 bouyer
88 1.1 bouyer #include "fsck.h"
89 1.1 bouyer #include "fsutil.h"
90 1.1 bouyer #include "extern.h"
91 1.1 bouyer
92 1.3 bouyer /*
93 1.3 bouyer * CG is stored in fs byte order in memory, so we can't use ino_to_fsba
94 1.3 bouyer * here.
95 1.3 bouyer */
96 1.3 bouyer
97 1.3 bouyer #define fsck_ino_to_fsba(fs, x) \
98 1.3 bouyer (fs2h32((fs)->e2fs_gd[ino_to_cg(fs, x)].ext2bgd_i_tables) + \
99 1.3 bouyer (((x)-1) % (fs)->e2fs.e2fs_ipg)/(fs)->e2fs_ipb)
100 1.3 bouyer
101 1.3 bouyer
102 1.1 bouyer static ino_t startinum;
103 1.1 bouyer
104 1.1 bouyer static int iblock __P((struct inodesc *, long, u_int64_t));
105 1.1 bouyer
106 1.1 bouyer int
107 1.1 bouyer ckinode(dp, idesc)
108 1.1 bouyer struct ext2fs_dinode *dp;
109 1.2 lukem struct inodesc *idesc;
110 1.1 bouyer {
111 1.2 lukem u_int32_t *ap;
112 1.2 lukem long ret, n, ndb;
113 1.1 bouyer struct ext2fs_dinode dino;
114 1.1 bouyer u_int64_t remsize, sizepb;
115 1.1 bouyer mode_t mode;
116 1.1 bouyer char pathbuf[MAXPATHLEN + 1];
117 1.1 bouyer
118 1.1 bouyer if (idesc->id_fix != IGNORE)
119 1.1 bouyer idesc->id_fix = DONTKNOW;
120 1.1 bouyer idesc->id_entryno = 0;
121 1.3 bouyer idesc->id_filesize = fs2h32(dp->e2di_size);
122 1.3 bouyer mode = fs2h16(dp->e2di_mode) & IFMT;
123 1.6 bouyer if (mode == IFBLK || mode == IFCHR || mode == IFIFO ||
124 1.6 bouyer (mode == IFLNK && (fs2h32(dp->e2di_size) < EXT2_MAXSYMLINKLEN)))
125 1.1 bouyer return (KEEPON);
126 1.1 bouyer dino = *dp;
127 1.3 bouyer ndb = howmany(fs2h32(dino.e2di_size), sblock.e2fs_bsize);
128 1.1 bouyer for (ap = &dino.e2di_blocks[0]; ap < &dino.e2di_blocks[NDADDR];
129 1.1 bouyer ap++,ndb--) {
130 1.1 bouyer idesc->id_numfrags = 1;
131 1.1 bouyer if (*ap == 0) {
132 1.1 bouyer if (idesc->id_type == DATA && ndb > 0) {
133 1.1 bouyer /* An empty block in a directory XXX */
134 1.10 itojun getpathname(pathbuf, sizeof(pathbuf),
135 1.10 itojun idesc->id_number, idesc->id_number);
136 1.1 bouyer pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
137 1.1 bouyer pathbuf);
138 1.1 bouyer if (reply("ADJUST LENGTH") == 1) {
139 1.1 bouyer dp = ginode(idesc->id_number);
140 1.3 bouyer dp->e2di_size = h2fs32((ap - &dino.e2di_blocks[0]) *
141 1.3 bouyer sblock.e2fs_bsize);
142 1.1 bouyer printf(
143 1.1 bouyer "YOU MUST RERUN FSCK AFTERWARDS\n");
144 1.1 bouyer rerun = 1;
145 1.1 bouyer inodirty();
146 1.1 bouyer }
147 1.1 bouyer }
148 1.1 bouyer continue;
149 1.1 bouyer }
150 1.3 bouyer idesc->id_blkno = fs2h32(*ap);
151 1.1 bouyer if (idesc->id_type == ADDR)
152 1.1 bouyer ret = (*idesc->id_func)(idesc);
153 1.1 bouyer else
154 1.1 bouyer ret = dirscan(idesc);
155 1.1 bouyer if (ret & STOP)
156 1.1 bouyer return (ret);
157 1.1 bouyer }
158 1.1 bouyer idesc->id_numfrags = 1;
159 1.3 bouyer remsize = fs2h32(dino.e2di_size) - sblock.e2fs_bsize * NDADDR;
160 1.1 bouyer sizepb = sblock.e2fs_bsize;
161 1.1 bouyer for (ap = &dino.e2di_blocks[NDADDR], n = 1; n <= NIADDR; ap++, n++) {
162 1.1 bouyer if (*ap) {
163 1.3 bouyer idesc->id_blkno = fs2h32(*ap);
164 1.1 bouyer ret = iblock(idesc, n, remsize);
165 1.1 bouyer if (ret & STOP)
166 1.1 bouyer return (ret);
167 1.1 bouyer } else {
168 1.1 bouyer if (idesc->id_type == DATA && remsize > 0) {
169 1.1 bouyer /* An empty block in a directory XXX */
170 1.10 itojun getpathname(pathbuf, sizeof(pathbuf),
171 1.10 itojun idesc->id_number, idesc->id_number);
172 1.1 bouyer pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
173 1.1 bouyer pathbuf);
174 1.1 bouyer if (reply("ADJUST LENGTH") == 1) {
175 1.1 bouyer dp = ginode(idesc->id_number);
176 1.3 bouyer dp->e2di_size = h2fs32(fs2h32(dp->e2di_size) - remsize);
177 1.1 bouyer remsize = 0;
178 1.1 bouyer printf(
179 1.1 bouyer "YOU MUST RERUN FSCK AFTERWARDS\n");
180 1.1 bouyer rerun = 1;
181 1.1 bouyer inodirty();
182 1.1 bouyer break;
183 1.1 bouyer }
184 1.1 bouyer }
185 1.1 bouyer }
186 1.1 bouyer sizepb *= NINDIR(&sblock);
187 1.1 bouyer remsize -= sizepb;
188 1.1 bouyer }
189 1.1 bouyer return (KEEPON);
190 1.1 bouyer }
191 1.1 bouyer
192 1.1 bouyer static int
193 1.1 bouyer iblock(idesc, ilevel, isize)
194 1.1 bouyer struct inodesc *idesc;
195 1.1 bouyer long ilevel;
196 1.1 bouyer u_int64_t isize;
197 1.1 bouyer {
198 1.9 fvdl /* XXX ondisk32 */
199 1.9 fvdl int32_t *ap;
200 1.9 fvdl int32_t *aplim;
201 1.2 lukem struct bufarea *bp;
202 1.1 bouyer int i, n, (*func) __P((struct inodesc *)), nif;
203 1.1 bouyer u_int64_t sizepb;
204 1.1 bouyer char buf[BUFSIZ];
205 1.1 bouyer char pathbuf[MAXPATHLEN + 1];
206 1.1 bouyer struct ext2fs_dinode *dp;
207 1.1 bouyer
208 1.1 bouyer if (idesc->id_type == ADDR) {
209 1.1 bouyer func = idesc->id_func;
210 1.1 bouyer if (((n = (*func)(idesc)) & KEEPON) == 0)
211 1.1 bouyer return (n);
212 1.1 bouyer } else
213 1.1 bouyer func = dirscan;
214 1.1 bouyer if (chkrange(idesc->id_blkno, idesc->id_numfrags))
215 1.1 bouyer return (SKIP);
216 1.1 bouyer bp = getdatablk(idesc->id_blkno, sblock.e2fs_bsize);
217 1.1 bouyer ilevel--;
218 1.1 bouyer for (sizepb = sblock.e2fs_bsize, i = 0; i < ilevel; i++)
219 1.1 bouyer sizepb *= NINDIR(&sblock);
220 1.1 bouyer if (isize > sizepb * NINDIR(&sblock))
221 1.1 bouyer nif = NINDIR(&sblock);
222 1.1 bouyer else
223 1.1 bouyer nif = howmany(isize, sizepb);
224 1.1 bouyer if (idesc->id_func == pass1check &&
225 1.1 bouyer nif < NINDIR(&sblock)) {
226 1.1 bouyer aplim = &bp->b_un.b_indir[NINDIR(&sblock)];
227 1.1 bouyer for (ap = &bp->b_un.b_indir[nif]; ap < aplim; ap++) {
228 1.1 bouyer if (*ap == 0)
229 1.1 bouyer continue;
230 1.5 mycroft (void)snprintf(buf, sizeof(buf),
231 1.5 mycroft "PARTIALLY TRUNCATED INODE I=%u", idesc->id_number);
232 1.1 bouyer if (dofix(idesc, buf)) {
233 1.1 bouyer *ap = 0;
234 1.1 bouyer dirty(bp);
235 1.1 bouyer }
236 1.1 bouyer }
237 1.1 bouyer flush(fswritefd, bp);
238 1.1 bouyer }
239 1.1 bouyer aplim = &bp->b_un.b_indir[nif];
240 1.1 bouyer for (ap = bp->b_un.b_indir; ap < aplim; ap++) {
241 1.1 bouyer if (*ap) {
242 1.3 bouyer idesc->id_blkno = fs2h32(*ap);
243 1.1 bouyer if (ilevel == 0)
244 1.1 bouyer n = (*func)(idesc);
245 1.1 bouyer else
246 1.1 bouyer n = iblock(idesc, ilevel, isize);
247 1.1 bouyer if (n & STOP) {
248 1.1 bouyer bp->b_flags &= ~B_INUSE;
249 1.1 bouyer return (n);
250 1.1 bouyer }
251 1.1 bouyer } else {
252 1.1 bouyer if (idesc->id_type == DATA && isize > 0) {
253 1.1 bouyer /* An empty block in a directory XXX */
254 1.10 itojun getpathname(pathbuf, sizeof(pathbuf),
255 1.10 itojun idesc->id_number, idesc->id_number);
256 1.1 bouyer pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
257 1.1 bouyer pathbuf);
258 1.1 bouyer if (reply("ADJUST LENGTH") == 1) {
259 1.1 bouyer dp = ginode(idesc->id_number);
260 1.3 bouyer dp->e2di_size = h2fs32(fs2h32(dp->e2di_size) - isize);
261 1.1 bouyer isize = 0;
262 1.1 bouyer printf(
263 1.1 bouyer "YOU MUST RERUN FSCK AFTERWARDS\n");
264 1.1 bouyer rerun = 1;
265 1.1 bouyer inodirty();
266 1.1 bouyer bp->b_flags &= ~B_INUSE;
267 1.1 bouyer return(STOP);
268 1.1 bouyer }
269 1.1 bouyer }
270 1.1 bouyer }
271 1.1 bouyer isize -= sizepb;
272 1.1 bouyer }
273 1.1 bouyer bp->b_flags &= ~B_INUSE;
274 1.1 bouyer return (KEEPON);
275 1.1 bouyer }
276 1.1 bouyer
277 1.1 bouyer /*
278 1.1 bouyer * Check that a block in a legal block number.
279 1.1 bouyer * Return 0 if in range, 1 if out of range.
280 1.1 bouyer */
281 1.1 bouyer int
282 1.1 bouyer chkrange(blk, cnt)
283 1.1 bouyer daddr_t blk;
284 1.1 bouyer int cnt;
285 1.1 bouyer {
286 1.8 bouyer int c, overh;
287 1.1 bouyer
288 1.1 bouyer if ((unsigned)(blk + cnt) > maxfsblock)
289 1.1 bouyer return (1);
290 1.1 bouyer c = dtog(&sblock, blk);
291 1.8 bouyer overh = cgoverhead(c);
292 1.8 bouyer if (blk < sblock.e2fs.e2fs_bpg * c + overh +
293 1.8 bouyer sblock.e2fs.e2fs_first_dblock) {
294 1.8 bouyer if ((blk + cnt) > sblock.e2fs.e2fs_bpg * c + overh +
295 1.8 bouyer sblock.e2fs.e2fs_first_dblock) {
296 1.1 bouyer if (debug) {
297 1.9 fvdl printf("blk %lld < cgdmin %d;",
298 1.9 fvdl (long long)blk,
299 1.9 fvdl sblock.e2fs.e2fs_bpg * c + overh +
300 1.8 bouyer sblock.e2fs.e2fs_first_dblock);
301 1.9 fvdl printf(" blk + cnt %lld > cgsbase %d\n",
302 1.9 fvdl (long long)(blk + cnt),
303 1.9 fvdl sblock.e2fs.e2fs_bpg * c +
304 1.8 bouyer overh + sblock.e2fs.e2fs_first_dblock);
305 1.1 bouyer }
306 1.1 bouyer return (1);
307 1.1 bouyer }
308 1.1 bouyer } else {
309 1.8 bouyer if ((blk + cnt) > sblock.e2fs.e2fs_bpg * (c + 1) + overh +
310 1.8 bouyer sblock.e2fs.e2fs_first_dblock) {
311 1.1 bouyer if (debug) {
312 1.9 fvdl printf("blk %lld >= cgdmin %d;",
313 1.9 fvdl (long long)blk,
314 1.9 fvdl sblock.e2fs.e2fs_bpg * c + overh +
315 1.8 bouyer sblock.e2fs.e2fs_first_dblock);
316 1.9 fvdl printf(" blk + cnt %lld > cgdmax %d\n",
317 1.9 fvdl (long long)(blk+cnt),
318 1.9 fvdl sblock.e2fs.e2fs_bpg * (c + 1) +
319 1.8 bouyer overh + sblock.e2fs.e2fs_first_dblock);
320 1.1 bouyer }
321 1.1 bouyer return (1);
322 1.1 bouyer }
323 1.1 bouyer }
324 1.1 bouyer return (0);
325 1.1 bouyer }
326 1.1 bouyer
327 1.1 bouyer /*
328 1.1 bouyer * General purpose interface for reading inodes.
329 1.1 bouyer */
330 1.1 bouyer struct ext2fs_dinode *
331 1.1 bouyer ginode(inumber)
332 1.1 bouyer ino_t inumber;
333 1.1 bouyer {
334 1.1 bouyer daddr_t iblk;
335 1.1 bouyer
336 1.1 bouyer if ((inumber < EXT2_FIRSTINO && inumber != EXT2_ROOTINO)
337 1.1 bouyer || inumber > maxino)
338 1.1 bouyer errexit("bad inode number %d to ginode\n", inumber);
339 1.1 bouyer if (startinum == 0 ||
340 1.1 bouyer inumber < startinum || inumber >= startinum + sblock.e2fs_ipb) {
341 1.3 bouyer iblk = fsck_ino_to_fsba(&sblock, inumber);
342 1.1 bouyer if (pbp != 0)
343 1.1 bouyer pbp->b_flags &= ~B_INUSE;
344 1.1 bouyer pbp = getdatablk(iblk, sblock.e2fs_bsize);
345 1.1 bouyer startinum = ((inumber -1) / sblock.e2fs_ipb) * sblock.e2fs_ipb + 1;
346 1.1 bouyer }
347 1.1 bouyer return (&pbp->b_un.b_dinode[(inumber-1) % sblock.e2fs_ipb]);
348 1.1 bouyer }
349 1.1 bouyer
350 1.1 bouyer /*
351 1.1 bouyer * Special purpose version of ginode used to optimize first pass
352 1.1 bouyer * over all the inodes in numerical order.
353 1.1 bouyer */
354 1.1 bouyer ino_t nextino, lastinum;
355 1.1 bouyer long readcnt, readpercg, fullcnt, inobufsize, partialcnt, partialsize;
356 1.1 bouyer struct ext2fs_dinode *inodebuf;
357 1.1 bouyer
358 1.1 bouyer struct ext2fs_dinode *
359 1.1 bouyer getnextinode(inumber)
360 1.1 bouyer ino_t inumber;
361 1.1 bouyer {
362 1.1 bouyer long size;
363 1.1 bouyer daddr_t dblk;
364 1.1 bouyer static struct ext2fs_dinode *dp;
365 1.1 bouyer
366 1.1 bouyer if (inumber != nextino++ || inumber > maxino)
367 1.1 bouyer errexit("bad inode number %d to nextinode\n", inumber);
368 1.1 bouyer if (inumber >= lastinum) {
369 1.1 bouyer readcnt++;
370 1.3 bouyer dblk = fsbtodb(&sblock, fsck_ino_to_fsba(&sblock, lastinum));
371 1.1 bouyer if (readcnt % readpercg == 0) {
372 1.1 bouyer size = partialsize;
373 1.1 bouyer lastinum += partialcnt;
374 1.1 bouyer } else {
375 1.1 bouyer size = inobufsize;
376 1.1 bouyer lastinum += fullcnt;
377 1.1 bouyer }
378 1.1 bouyer (void)bread(fsreadfd, (char *)inodebuf, dblk, size);
379 1.1 bouyer dp = inodebuf;
380 1.1 bouyer }
381 1.1 bouyer return (dp++);
382 1.1 bouyer }
383 1.1 bouyer
384 1.1 bouyer void
385 1.1 bouyer resetinodebuf()
386 1.1 bouyer {
387 1.1 bouyer
388 1.1 bouyer startinum = 0;
389 1.1 bouyer nextino = 1;
390 1.1 bouyer lastinum = 1;
391 1.1 bouyer readcnt = 0;
392 1.1 bouyer inobufsize = blkroundup(&sblock, INOBUFSIZE);
393 1.1 bouyer fullcnt = inobufsize / sizeof(struct ext2fs_dinode);
394 1.1 bouyer readpercg = sblock.e2fs.e2fs_ipg / fullcnt;
395 1.1 bouyer partialcnt = sblock.e2fs.e2fs_ipg % fullcnt;
396 1.1 bouyer partialsize = partialcnt * sizeof(struct ext2fs_dinode);
397 1.1 bouyer if (partialcnt != 0) {
398 1.1 bouyer readpercg++;
399 1.1 bouyer } else {
400 1.1 bouyer partialcnt = fullcnt;
401 1.1 bouyer partialsize = inobufsize;
402 1.1 bouyer }
403 1.1 bouyer if (inodebuf == NULL &&
404 1.1 bouyer (inodebuf = (struct ext2fs_dinode *)malloc((unsigned)inobufsize)) ==
405 1.1 bouyer NULL)
406 1.1 bouyer errexit("Cannot allocate space for inode buffer\n");
407 1.1 bouyer while (nextino < EXT2_ROOTINO)
408 1.1 bouyer (void)getnextinode(nextino);
409 1.1 bouyer }
410 1.1 bouyer
411 1.1 bouyer void
412 1.1 bouyer freeinodebuf()
413 1.1 bouyer {
414 1.1 bouyer
415 1.1 bouyer if (inodebuf != NULL)
416 1.1 bouyer free((char *)inodebuf);
417 1.1 bouyer inodebuf = NULL;
418 1.1 bouyer }
419 1.1 bouyer
420 1.1 bouyer /*
421 1.1 bouyer * Routines to maintain information about directory inodes.
422 1.1 bouyer * This is built during the first pass and used during the
423 1.1 bouyer * second and third passes.
424 1.1 bouyer *
425 1.1 bouyer * Enter inodes into the cache.
426 1.1 bouyer */
427 1.1 bouyer void
428 1.1 bouyer cacheino(dp, inumber)
429 1.2 lukem struct ext2fs_dinode *dp;
430 1.1 bouyer ino_t inumber;
431 1.1 bouyer {
432 1.2 lukem struct inoinfo *inp;
433 1.1 bouyer struct inoinfo **inpp;
434 1.1 bouyer unsigned int blks;
435 1.1 bouyer
436 1.3 bouyer blks = howmany(fs2h32(dp->e2di_size), sblock.e2fs_bsize);
437 1.1 bouyer if (blks > NDADDR)
438 1.1 bouyer blks = NDADDR + NIADDR;
439 1.9 fvdl /* XXX ondisk32 */
440 1.1 bouyer inp = (struct inoinfo *)
441 1.9 fvdl malloc(sizeof(*inp) + (blks - 1) * sizeof(int32_t));
442 1.1 bouyer if (inp == NULL)
443 1.1 bouyer return;
444 1.1 bouyer inpp = &inphead[inumber % numdirs];
445 1.1 bouyer inp->i_nexthash = *inpp;
446 1.1 bouyer *inpp = inp;
447 1.1 bouyer inp->i_child = inp->i_sibling = inp->i_parentp = 0;
448 1.1 bouyer if (inumber == EXT2_ROOTINO)
449 1.1 bouyer inp->i_parent = EXT2_ROOTINO;
450 1.1 bouyer else
451 1.1 bouyer inp->i_parent = (ino_t)0;
452 1.1 bouyer inp->i_dotdot = (ino_t)0;
453 1.1 bouyer inp->i_number = inumber;
454 1.3 bouyer inp->i_isize = fs2h32(dp->e2di_size);
455 1.9 fvdl /* XXX ondisk32 */
456 1.9 fvdl inp->i_numblks = blks * sizeof(int32_t);
457 1.1 bouyer memcpy(&inp->i_blks[0], &dp->e2di_blocks[0], (size_t)inp->i_numblks);
458 1.1 bouyer if (inplast == listmax) {
459 1.1 bouyer listmax += 100;
460 1.1 bouyer inpsort = (struct inoinfo **)realloc((char *)inpsort,
461 1.1 bouyer (unsigned)listmax * sizeof(struct inoinfo *));
462 1.1 bouyer if (inpsort == NULL)
463 1.1 bouyer errexit("cannot increase directory list\n");
464 1.1 bouyer }
465 1.1 bouyer inpsort[inplast++] = inp;
466 1.1 bouyer }
467 1.1 bouyer
468 1.1 bouyer /*
469 1.1 bouyer * Look up an inode cache structure.
470 1.1 bouyer */
471 1.1 bouyer struct inoinfo *
472 1.1 bouyer getinoinfo(inumber)
473 1.1 bouyer ino_t inumber;
474 1.1 bouyer {
475 1.2 lukem struct inoinfo *inp;
476 1.1 bouyer
477 1.1 bouyer for (inp = inphead[inumber % numdirs]; inp; inp = inp->i_nexthash) {
478 1.1 bouyer if (inp->i_number != inumber)
479 1.1 bouyer continue;
480 1.1 bouyer return (inp);
481 1.1 bouyer }
482 1.1 bouyer errexit("cannot find inode %d\n", inumber);
483 1.1 bouyer return ((struct inoinfo *)0);
484 1.1 bouyer }
485 1.1 bouyer
486 1.1 bouyer /*
487 1.1 bouyer * Clean up all the inode cache structure.
488 1.1 bouyer */
489 1.1 bouyer void
490 1.1 bouyer inocleanup()
491 1.1 bouyer {
492 1.2 lukem struct inoinfo **inpp;
493 1.1 bouyer
494 1.1 bouyer if (inphead == NULL)
495 1.1 bouyer return;
496 1.1 bouyer for (inpp = &inpsort[inplast - 1]; inpp >= inpsort; inpp--)
497 1.1 bouyer free((char *)(*inpp));
498 1.1 bouyer free((char *)inphead);
499 1.1 bouyer free((char *)inpsort);
500 1.1 bouyer inphead = inpsort = NULL;
501 1.1 bouyer }
502 1.1 bouyer
503 1.1 bouyer void
504 1.1 bouyer inodirty()
505 1.1 bouyer {
506 1.1 bouyer
507 1.1 bouyer dirty(pbp);
508 1.1 bouyer }
509 1.1 bouyer
510 1.1 bouyer void
511 1.1 bouyer clri(idesc, type, flag)
512 1.2 lukem struct inodesc *idesc;
513 1.1 bouyer char *type;
514 1.1 bouyer int flag;
515 1.1 bouyer {
516 1.2 lukem struct ext2fs_dinode *dp;
517 1.1 bouyer
518 1.1 bouyer dp = ginode(idesc->id_number);
519 1.1 bouyer if (flag == 1) {
520 1.1 bouyer pwarn("%s %s", type,
521 1.1 bouyer (dp->e2di_mode & IFMT) == IFDIR ? "DIR" : "FILE");
522 1.1 bouyer pinode(idesc->id_number);
523 1.1 bouyer }
524 1.1 bouyer if (preen || reply("CLEAR") == 1) {
525 1.1 bouyer if (preen)
526 1.1 bouyer printf(" (CLEARED)\n");
527 1.1 bouyer n_files--;
528 1.1 bouyer (void)ckinode(dp, idesc);
529 1.1 bouyer clearinode(dp);
530 1.1 bouyer statemap[idesc->id_number] = USTATE;
531 1.1 bouyer inodirty();
532 1.1 bouyer }
533 1.1 bouyer }
534 1.1 bouyer
535 1.1 bouyer int
536 1.1 bouyer findname(idesc)
537 1.1 bouyer struct inodesc *idesc;
538 1.1 bouyer {
539 1.2 lukem struct ext2fs_direct *dirp = idesc->id_dirp;
540 1.7 bouyer u_int16_t namlen = dirp->e2d_namlen;
541 1.1 bouyer
542 1.3 bouyer if (fs2h32(dirp->e2d_ino) != idesc->id_parent)
543 1.1 bouyer return (KEEPON);
544 1.3 bouyer memcpy(idesc->id_name, dirp->e2d_name, (size_t)namlen);
545 1.3 bouyer idesc->id_name[namlen] = '\0';
546 1.1 bouyer return (STOP|FOUND);
547 1.1 bouyer }
548 1.1 bouyer
549 1.1 bouyer int
550 1.1 bouyer findino(idesc)
551 1.1 bouyer struct inodesc *idesc;
552 1.1 bouyer {
553 1.2 lukem struct ext2fs_direct *dirp = idesc->id_dirp;
554 1.3 bouyer u_int32_t ino = fs2h32(dirp->e2d_ino);
555 1.1 bouyer
556 1.3 bouyer if (ino == 0)
557 1.1 bouyer return (KEEPON);
558 1.1 bouyer if (strcmp(dirp->e2d_name, idesc->id_name) == 0 &&
559 1.3 bouyer (ino == EXT2_ROOTINO || ino >= EXT2_FIRSTINO)
560 1.3 bouyer && ino <= maxino) {
561 1.3 bouyer idesc->id_parent = ino;
562 1.1 bouyer return (STOP|FOUND);
563 1.1 bouyer }
564 1.1 bouyer return (KEEPON);
565 1.1 bouyer }
566 1.1 bouyer
567 1.1 bouyer void
568 1.1 bouyer pinode(ino)
569 1.1 bouyer ino_t ino;
570 1.1 bouyer {
571 1.2 lukem struct ext2fs_dinode *dp;
572 1.2 lukem char *p;
573 1.1 bouyer struct passwd *pw;
574 1.1 bouyer time_t t;
575 1.1 bouyer
576 1.1 bouyer printf(" I=%u ", ino);
577 1.1 bouyer if ((ino < EXT2_FIRSTINO && ino != EXT2_ROOTINO) || ino > maxino)
578 1.1 bouyer return;
579 1.1 bouyer dp = ginode(ino);
580 1.1 bouyer printf(" OWNER=");
581 1.1 bouyer #ifndef SMALL
582 1.1 bouyer if ((pw = getpwuid((int)dp->e2di_uid)) != 0)
583 1.1 bouyer printf("%s ", pw->pw_name);
584 1.1 bouyer else
585 1.1 bouyer #endif
586 1.3 bouyer printf("%u ", (unsigned)fs2h16(dp->e2di_uid));
587 1.3 bouyer printf("MODE=%o\n", fs2h16(dp->e2di_mode));
588 1.1 bouyer if (preen)
589 1.1 bouyer printf("%s: ", cdevname());
590 1.3 bouyer printf("SIZE=%u ", fs2h32(dp->e2di_size));
591 1.3 bouyer t = fs2h32(dp->e2di_mtime);
592 1.1 bouyer p = ctime(&t);
593 1.1 bouyer printf("MTIME=%12.12s %4.4s ", &p[4], &p[20]);
594 1.1 bouyer }
595 1.1 bouyer
596 1.1 bouyer void
597 1.1 bouyer blkerror(ino, type, blk)
598 1.1 bouyer ino_t ino;
599 1.1 bouyer char *type;
600 1.1 bouyer daddr_t blk;
601 1.1 bouyer {
602 1.1 bouyer
603 1.9 fvdl pfatal("%lld %s I=%u", (long long)blk, type, ino);
604 1.1 bouyer printf("\n");
605 1.1 bouyer switch (statemap[ino]) {
606 1.1 bouyer
607 1.1 bouyer case FSTATE:
608 1.1 bouyer statemap[ino] = FCLEAR;
609 1.1 bouyer return;
610 1.1 bouyer
611 1.1 bouyer case DSTATE:
612 1.1 bouyer statemap[ino] = DCLEAR;
613 1.1 bouyer return;
614 1.1 bouyer
615 1.1 bouyer case FCLEAR:
616 1.1 bouyer case DCLEAR:
617 1.1 bouyer return;
618 1.1 bouyer
619 1.1 bouyer default:
620 1.1 bouyer errexit("BAD STATE %d TO BLKERR\n", statemap[ino]);
621 1.1 bouyer /* NOTREACHED */
622 1.1 bouyer }
623 1.1 bouyer }
624 1.1 bouyer
625 1.1 bouyer /*
626 1.1 bouyer * allocate an unused inode
627 1.1 bouyer */
628 1.1 bouyer ino_t
629 1.1 bouyer allocino(request, type)
630 1.1 bouyer ino_t request;
631 1.1 bouyer int type;
632 1.1 bouyer {
633 1.2 lukem ino_t ino;
634 1.2 lukem struct ext2fs_dinode *dp;
635 1.1 bouyer time_t t;
636 1.1 bouyer
637 1.1 bouyer if (request == 0)
638 1.1 bouyer request = EXT2_ROOTINO;
639 1.1 bouyer else if (statemap[request] != USTATE)
640 1.1 bouyer return (0);
641 1.1 bouyer for (ino = request; ino < maxino; ino++) {
642 1.1 bouyer if ((ino > EXT2_ROOTINO) && (ino < EXT2_FIRSTINO))
643 1.1 bouyer continue;
644 1.1 bouyer if (statemap[ino] == USTATE)
645 1.1 bouyer break;
646 1.1 bouyer }
647 1.1 bouyer if (ino == maxino)
648 1.1 bouyer return (0);
649 1.1 bouyer switch (type & IFMT) {
650 1.1 bouyer case IFDIR:
651 1.1 bouyer statemap[ino] = DSTATE;
652 1.1 bouyer break;
653 1.1 bouyer case IFREG:
654 1.1 bouyer case IFLNK:
655 1.1 bouyer statemap[ino] = FSTATE;
656 1.1 bouyer break;
657 1.1 bouyer default:
658 1.1 bouyer return (0);
659 1.1 bouyer }
660 1.1 bouyer dp = ginode(ino);
661 1.3 bouyer dp->e2di_blocks[0] = h2fs32(allocblk());
662 1.1 bouyer if (dp->e2di_blocks[0] == 0) {
663 1.1 bouyer statemap[ino] = USTATE;
664 1.1 bouyer return (0);
665 1.1 bouyer }
666 1.3 bouyer dp->e2di_mode = h2fs16(type);
667 1.1 bouyer (void)time(&t);
668 1.3 bouyer dp->e2di_atime = h2fs32(t);
669 1.1 bouyer dp->e2di_mtime = dp->e2di_ctime = dp->e2di_atime;
670 1.1 bouyer dp->e2di_dtime = 0;
671 1.3 bouyer dp->e2di_size = h2fs32(sblock.e2fs_bsize);
672 1.3 bouyer dp->e2di_nblock = h2fs32(btodb(sblock.e2fs_bsize));
673 1.1 bouyer n_files++;
674 1.1 bouyer inodirty();
675 1.8 bouyer typemap[ino] = E2IFTODT(type);
676 1.1 bouyer return (ino);
677 1.1 bouyer }
678 1.1 bouyer
679 1.1 bouyer /*
680 1.1 bouyer * deallocate an inode
681 1.1 bouyer */
682 1.1 bouyer void
683 1.1 bouyer freeino(ino)
684 1.1 bouyer ino_t ino;
685 1.1 bouyer {
686 1.1 bouyer struct inodesc idesc;
687 1.1 bouyer struct ext2fs_dinode *dp;
688 1.1 bouyer
689 1.1 bouyer memset(&idesc, 0, sizeof(struct inodesc));
690 1.1 bouyer idesc.id_type = ADDR;
691 1.1 bouyer idesc.id_func = pass4check;
692 1.1 bouyer idesc.id_number = ino;
693 1.1 bouyer dp = ginode(ino);
694 1.1 bouyer (void)ckinode(dp, &idesc);
695 1.1 bouyer clearinode(dp);
696 1.1 bouyer inodirty();
697 1.1 bouyer statemap[ino] = USTATE;
698 1.1 bouyer n_files--;
699 1.1 bouyer }
700