Home | History | Annotate | Line # | Download | only in fsck_ffs
inode.c revision 1.23
      1  1.23   thorpej /*	$NetBSD: inode.c,v 1.23 1996/10/11 20:15:47 thorpej Exp $	*/
      2  1.13       cgd 
      3   1.1       cgd /*
      4   1.9   mycroft  * Copyright (c) 1980, 1986, 1993
      5   1.9   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.14   mycroft static char sccsid[] = "@(#)inode.c	8.5 (Berkeley) 2/8/95";
     39  1.13       cgd #else
     40  1.23   thorpej static char rcsid[] = "$NetBSD: inode.c,v 1.23 1996/10/11 20:15:47 thorpej 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.7       cgd #include <sys/time.h>
     46   1.9   mycroft #include <ufs/ufs/dinode.h>
     47   1.9   mycroft #include <ufs/ufs/dir.h>
     48   1.9   mycroft #include <ufs/ffs/fs.h>
     49   1.6       cgd #ifndef SMALL
     50   1.1       cgd #include <pwd.h>
     51   1.6       cgd #endif
     52  1.12       cgd #include <stdio.h>
     53   1.1       cgd #include <stdlib.h>
     54   1.1       cgd #include <string.h>
     55  1.12       cgd 
     56   1.1       cgd #include "fsck.h"
     57  1.22  christos #include "fsutil.h"
     58  1.12       cgd #include "extern.h"
     59   1.1       cgd 
     60   1.1       cgd static ino_t startinum;
     61   1.1       cgd 
     62  1.21  christos static int iblock __P((struct inodesc *, long, u_int64_t));
     63  1.12       cgd 
     64  1.12       cgd int
     65   1.1       cgd ckinode(dp, idesc)
     66   1.1       cgd 	struct dinode *dp;
     67   1.1       cgd 	register struct inodesc *idesc;
     68   1.1       cgd {
     69  1.17   thorpej 	register ufs_daddr_t *ap;
     70   1.1       cgd 	long ret, n, ndb, offset;
     71   1.1       cgd 	struct dinode dino;
     72  1.19   mycroft 	u_int64_t remsize, sizepb;
     73   1.9   mycroft 	mode_t mode;
     74  1.23   thorpej 	char pathbuf[MAXPATHLEN + 1];
     75   1.1       cgd 
     76   1.1       cgd 	if (idesc->id_fix != IGNORE)
     77   1.1       cgd 		idesc->id_fix = DONTKNOW;
     78   1.1       cgd 	idesc->id_entryno = 0;
     79   1.1       cgd 	idesc->id_filesize = dp->di_size;
     80   1.9   mycroft 	mode = dp->di_mode & IFMT;
     81   1.9   mycroft 	if (mode == IFBLK || mode == IFCHR || (mode == IFLNK &&
     82   1.9   mycroft 	    (dp->di_size < sblock.fs_maxsymlinklen ||
     83  1.10   mycroft 	     (sblock.fs_maxsymlinklen == 0 && dp->di_blocks == 0))))
     84   1.1       cgd 		return (KEEPON);
     85   1.1       cgd 	dino = *dp;
     86   1.1       cgd 	ndb = howmany(dino.di_size, sblock.fs_bsize);
     87   1.1       cgd 	for (ap = &dino.di_db[0]; ap < &dino.di_db[NDADDR]; ap++) {
     88   1.1       cgd 		if (--ndb == 0 && (offset = blkoff(&sblock, dino.di_size)) != 0)
     89   1.1       cgd 			idesc->id_numfrags =
     90   1.1       cgd 				numfrags(&sblock, fragroundup(&sblock, offset));
     91   1.1       cgd 		else
     92   1.1       cgd 			idesc->id_numfrags = sblock.fs_frag;
     93  1.23   thorpej 		if (*ap == 0) {
     94  1.23   thorpej 			if (idesc->id_type == DATA && ndb >= 0) {
     95  1.23   thorpej 				/* An empty block in a directory XXX */
     96  1.23   thorpej 				getpathname(pathbuf, idesc->id_number,
     97  1.23   thorpej 				    idesc->id_number);
     98  1.23   thorpej 				pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
     99  1.23   thorpej 				    pathbuf);
    100  1.23   thorpej 				if (reply("ADJUST LENGTH") == 1) {
    101  1.23   thorpej 					dp = ginode(idesc->id_number);
    102  1.23   thorpej 					dp->di_size = (ap - &dino.di_db[0]) *
    103  1.23   thorpej 					    sblock.fs_bsize;
    104  1.23   thorpej 					printf(
    105  1.23   thorpej 					    "YOU MUST RERUN FSCK AFTERWARDS\n");
    106  1.23   thorpej 					rerun = 1;
    107  1.23   thorpej 					inodirty();
    108  1.23   thorpej 				}
    109  1.23   thorpej 			}
    110   1.1       cgd 			continue;
    111  1.23   thorpej 		}
    112   1.1       cgd 		idesc->id_blkno = *ap;
    113   1.1       cgd 		if (idesc->id_type == ADDR)
    114   1.1       cgd 			ret = (*idesc->id_func)(idesc);
    115   1.1       cgd 		else
    116   1.1       cgd 			ret = dirscan(idesc);
    117   1.1       cgd 		if (ret & STOP)
    118   1.1       cgd 			return (ret);
    119   1.1       cgd 	}
    120   1.1       cgd 	idesc->id_numfrags = sblock.fs_frag;
    121   1.9   mycroft 	remsize = dino.di_size - sblock.fs_bsize * NDADDR;
    122   1.9   mycroft 	sizepb = sblock.fs_bsize;
    123   1.1       cgd 	for (ap = &dino.di_ib[0], n = 1; n <= NIADDR; ap++, n++) {
    124   1.1       cgd 		if (*ap) {
    125   1.1       cgd 			idesc->id_blkno = *ap;
    126   1.9   mycroft 			ret = iblock(idesc, n, remsize);
    127   1.1       cgd 			if (ret & STOP)
    128   1.1       cgd 				return (ret);
    129  1.23   thorpej 		} else {
    130  1.23   thorpej 			if (idesc->id_type == DATA && remsize > 0) {
    131  1.23   thorpej 				/* An empty block in a directory XXX */
    132  1.23   thorpej 				getpathname(pathbuf, idesc->id_number,
    133  1.23   thorpej 				    idesc->id_number);
    134  1.23   thorpej 				pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
    135  1.23   thorpej 				    pathbuf);
    136  1.23   thorpej 				if (reply("ADJUST LENGTH") == 1) {
    137  1.23   thorpej 					dp = ginode(idesc->id_number);
    138  1.23   thorpej 					dp->di_size -= remsize;
    139  1.23   thorpej 					remsize = 0;
    140  1.23   thorpej 					printf(
    141  1.23   thorpej 					    "YOU MUST RERUN FSCK AFTERWARDS\n");
    142  1.23   thorpej 					rerun = 1;
    143  1.23   thorpej 					inodirty();
    144  1.23   thorpej 					break;
    145  1.23   thorpej 				}
    146  1.23   thorpej 			}
    147   1.1       cgd 		}
    148   1.9   mycroft 		sizepb *= NINDIR(&sblock);
    149   1.9   mycroft 		remsize -= sizepb;
    150   1.1       cgd 	}
    151   1.1       cgd 	return (KEEPON);
    152   1.1       cgd }
    153   1.1       cgd 
    154  1.21  christos static int
    155   1.1       cgd iblock(idesc, ilevel, isize)
    156   1.1       cgd 	struct inodesc *idesc;
    157   1.9   mycroft 	long ilevel;
    158  1.19   mycroft 	u_int64_t isize;
    159   1.1       cgd {
    160   1.1       cgd 	register daddr_t *ap;
    161   1.1       cgd 	register daddr_t *aplim;
    162   1.1       cgd 	register struct bufarea *bp;
    163  1.21  christos 	int i, n, (*func) __P((struct inodesc *)), nif;
    164  1.19   mycroft 	u_int64_t sizepb;
    165   1.1       cgd 	char buf[BUFSIZ];
    166  1.23   thorpej 	char pathbuf[MAXPATHLEN + 1];
    167  1.23   thorpej 	struct dinode *dp;
    168   1.1       cgd 
    169   1.1       cgd 	if (idesc->id_type == ADDR) {
    170   1.1       cgd 		func = idesc->id_func;
    171   1.1       cgd 		if (((n = (*func)(idesc)) & KEEPON) == 0)
    172   1.1       cgd 			return (n);
    173   1.1       cgd 	} else
    174   1.1       cgd 		func = dirscan;
    175   1.1       cgd 	if (chkrange(idesc->id_blkno, idesc->id_numfrags))
    176   1.1       cgd 		return (SKIP);
    177   1.1       cgd 	bp = getdatablk(idesc->id_blkno, sblock.fs_bsize);
    178   1.1       cgd 	ilevel--;
    179   1.1       cgd 	for (sizepb = sblock.fs_bsize, i = 0; i < ilevel; i++)
    180   1.1       cgd 		sizepb *= NINDIR(&sblock);
    181  1.18   mycroft 	if (isize > sizepb * NINDIR(&sblock))
    182   1.1       cgd 		nif = NINDIR(&sblock);
    183  1.18   mycroft 	else
    184  1.18   mycroft 		nif = howmany(isize, sizepb);
    185   1.1       cgd 	if (idesc->id_func == pass1check && nif < NINDIR(&sblock)) {
    186   1.1       cgd 		aplim = &bp->b_un.b_indir[NINDIR(&sblock)];
    187   1.1       cgd 		for (ap = &bp->b_un.b_indir[nif]; ap < aplim; ap++) {
    188   1.1       cgd 			if (*ap == 0)
    189   1.1       cgd 				continue;
    190  1.21  christos 			(void)sprintf(buf, "PARTIALLY TRUNCATED INODE I=%u",
    191   1.1       cgd 				idesc->id_number);
    192   1.1       cgd 			if (dofix(idesc, buf)) {
    193   1.1       cgd 				*ap = 0;
    194   1.1       cgd 				dirty(bp);
    195   1.1       cgd 			}
    196   1.1       cgd 		}
    197   1.1       cgd 		flush(fswritefd, bp);
    198   1.1       cgd 	}
    199   1.1       cgd 	aplim = &bp->b_un.b_indir[nif];
    200   1.9   mycroft 	for (ap = bp->b_un.b_indir; ap < aplim; ap++) {
    201   1.1       cgd 		if (*ap) {
    202   1.1       cgd 			idesc->id_blkno = *ap;
    203   1.9   mycroft 			if (ilevel == 0)
    204   1.9   mycroft 				n = (*func)(idesc);
    205   1.1       cgd 			else
    206   1.9   mycroft 				n = iblock(idesc, ilevel, isize);
    207   1.1       cgd 			if (n & STOP) {
    208   1.1       cgd 				bp->b_flags &= ~B_INUSE;
    209   1.1       cgd 				return (n);
    210  1.23   thorpej 			}
    211  1.23   thorpej 		} else {
    212  1.23   thorpej 			if (idesc->id_type == DATA && isize > 0) {
    213  1.23   thorpej 				/* An empty block in a directory XXX */
    214  1.23   thorpej 				getpathname(pathbuf, idesc->id_number,
    215  1.23   thorpej 				    idesc->id_number);
    216  1.23   thorpej 				pfatal("DIRECTORY %s: CONTAINS EMPTY BLOCKS",
    217  1.23   thorpej 				    pathbuf);
    218  1.23   thorpej 				if (reply("ADJUST LENGTH") == 1) {
    219  1.23   thorpej 					dp = ginode(idesc->id_number);
    220  1.23   thorpej 					dp->di_size -= isize;
    221  1.23   thorpej 					isize = 0;
    222  1.23   thorpej 					printf(
    223  1.23   thorpej 					    "YOU MUST RERUN FSCK AFTERWARDS\n");
    224  1.23   thorpej 					rerun = 1;
    225  1.23   thorpej 					inodirty();
    226  1.23   thorpej 					bp->b_flags &= ~B_INUSE;
    227  1.23   thorpej 					return(STOP);
    228  1.23   thorpej 				}
    229   1.1       cgd 			}
    230   1.1       cgd 		}
    231   1.9   mycroft 		isize -= sizepb;
    232   1.1       cgd 	}
    233   1.1       cgd 	bp->b_flags &= ~B_INUSE;
    234   1.1       cgd 	return (KEEPON);
    235   1.1       cgd }
    236   1.1       cgd 
    237   1.1       cgd /*
    238   1.1       cgd  * Check that a block in a legal block number.
    239   1.1       cgd  * Return 0 if in range, 1 if out of range.
    240   1.1       cgd  */
    241  1.12       cgd int
    242   1.1       cgd chkrange(blk, cnt)
    243   1.1       cgd 	daddr_t blk;
    244   1.1       cgd 	int cnt;
    245   1.1       cgd {
    246   1.1       cgd 	register int c;
    247   1.1       cgd 
    248   1.1       cgd 	if ((unsigned)(blk + cnt) > maxfsblock)
    249   1.1       cgd 		return (1);
    250   1.1       cgd 	c = dtog(&sblock, blk);
    251   1.1       cgd 	if (blk < cgdmin(&sblock, c)) {
    252   1.1       cgd 		if ((blk + cnt) > cgsblock(&sblock, c)) {
    253   1.1       cgd 			if (debug) {
    254  1.21  christos 				printf("blk %d < cgdmin %d;",
    255   1.1       cgd 				    blk, cgdmin(&sblock, c));
    256  1.21  christos 				printf(" blk + cnt %d > cgsbase %d\n",
    257   1.1       cgd 				    blk + cnt, cgsblock(&sblock, c));
    258   1.1       cgd 			}
    259   1.1       cgd 			return (1);
    260   1.1       cgd 		}
    261   1.1       cgd 	} else {
    262   1.1       cgd 		if ((blk + cnt) > cgbase(&sblock, c+1)) {
    263   1.1       cgd 			if (debug)  {
    264  1.21  christos 				printf("blk %d >= cgdmin %d;",
    265   1.1       cgd 				    blk, cgdmin(&sblock, c));
    266  1.21  christos 				printf(" blk + cnt %d > sblock.fs_fpg %d\n",
    267   1.1       cgd 				    blk+cnt, sblock.fs_fpg);
    268   1.1       cgd 			}
    269   1.1       cgd 			return (1);
    270   1.1       cgd 		}
    271   1.1       cgd 	}
    272   1.1       cgd 	return (0);
    273   1.1       cgd }
    274   1.1       cgd 
    275   1.1       cgd /*
    276   1.1       cgd  * General purpose interface for reading inodes.
    277   1.1       cgd  */
    278   1.1       cgd struct dinode *
    279   1.1       cgd ginode(inumber)
    280   1.1       cgd 	ino_t inumber;
    281   1.1       cgd {
    282   1.1       cgd 	daddr_t iblk;
    283   1.1       cgd 
    284   1.1       cgd 	if (inumber < ROOTINO || inumber > maxino)
    285   1.1       cgd 		errexit("bad inode number %d to ginode\n", inumber);
    286   1.1       cgd 	if (startinum == 0 ||
    287   1.1       cgd 	    inumber < startinum || inumber >= startinum + INOPB(&sblock)) {
    288   1.9   mycroft 		iblk = ino_to_fsba(&sblock, inumber);
    289   1.1       cgd 		if (pbp != 0)
    290   1.1       cgd 			pbp->b_flags &= ~B_INUSE;
    291   1.1       cgd 		pbp = getdatablk(iblk, sblock.fs_bsize);
    292   1.1       cgd 		startinum = (inumber / INOPB(&sblock)) * INOPB(&sblock);
    293   1.1       cgd 	}
    294   1.1       cgd 	return (&pbp->b_un.b_dinode[inumber % INOPB(&sblock)]);
    295   1.1       cgd }
    296   1.1       cgd 
    297   1.1       cgd /*
    298   1.1       cgd  * Special purpose version of ginode used to optimize first pass
    299   1.1       cgd  * over all the inodes in numerical order.
    300   1.1       cgd  */
    301   1.1       cgd ino_t nextino, lastinum;
    302   1.1       cgd long readcnt, readpercg, fullcnt, inobufsize, partialcnt, partialsize;
    303   1.1       cgd struct dinode *inodebuf;
    304   1.1       cgd 
    305   1.1       cgd struct dinode *
    306   1.1       cgd getnextinode(inumber)
    307   1.1       cgd 	ino_t inumber;
    308   1.1       cgd {
    309   1.1       cgd 	long size;
    310   1.1       cgd 	daddr_t dblk;
    311   1.1       cgd 	static struct dinode *dp;
    312   1.1       cgd 
    313   1.1       cgd 	if (inumber != nextino++ || inumber > maxino)
    314   1.1       cgd 		errexit("bad inode number %d to nextinode\n", inumber);
    315   1.1       cgd 	if (inumber >= lastinum) {
    316   1.1       cgd 		readcnt++;
    317   1.9   mycroft 		dblk = fsbtodb(&sblock, ino_to_fsba(&sblock, lastinum));
    318   1.1       cgd 		if (readcnt % readpercg == 0) {
    319   1.1       cgd 			size = partialsize;
    320   1.1       cgd 			lastinum += partialcnt;
    321   1.1       cgd 		} else {
    322   1.1       cgd 			size = inobufsize;
    323   1.1       cgd 			lastinum += fullcnt;
    324   1.1       cgd 		}
    325   1.1       cgd 		(void)bread(fsreadfd, (char *)inodebuf, dblk, size); /* ??? */
    326   1.1       cgd 		dp = inodebuf;
    327   1.1       cgd 	}
    328   1.1       cgd 	return (dp++);
    329   1.1       cgd }
    330   1.1       cgd 
    331  1.12       cgd void
    332   1.1       cgd resetinodebuf()
    333   1.1       cgd {
    334   1.1       cgd 
    335   1.1       cgd 	startinum = 0;
    336   1.1       cgd 	nextino = 0;
    337   1.1       cgd 	lastinum = 0;
    338   1.1       cgd 	readcnt = 0;
    339   1.1       cgd 	inobufsize = blkroundup(&sblock, INOBUFSIZE);
    340   1.1       cgd 	fullcnt = inobufsize / sizeof(struct dinode);
    341   1.1       cgd 	readpercg = sblock.fs_ipg / fullcnt;
    342   1.1       cgd 	partialcnt = sblock.fs_ipg % fullcnt;
    343   1.1       cgd 	partialsize = partialcnt * sizeof(struct dinode);
    344   1.1       cgd 	if (partialcnt != 0) {
    345   1.1       cgd 		readpercg++;
    346   1.1       cgd 	} else {
    347   1.1       cgd 		partialcnt = fullcnt;
    348   1.1       cgd 		partialsize = inobufsize;
    349   1.1       cgd 	}
    350   1.1       cgd 	if (inodebuf == NULL &&
    351   1.1       cgd 	    (inodebuf = (struct dinode *)malloc((unsigned)inobufsize)) == NULL)
    352   1.1       cgd 		errexit("Cannot allocate space for inode buffer\n");
    353   1.1       cgd 	while (nextino < ROOTINO)
    354   1.1       cgd 		(void)getnextinode(nextino);
    355   1.1       cgd }
    356   1.1       cgd 
    357  1.12       cgd void
    358   1.1       cgd freeinodebuf()
    359   1.1       cgd {
    360   1.1       cgd 
    361   1.1       cgd 	if (inodebuf != NULL)
    362   1.1       cgd 		free((char *)inodebuf);
    363   1.1       cgd 	inodebuf = NULL;
    364   1.1       cgd }
    365   1.1       cgd 
    366   1.1       cgd /*
    367   1.1       cgd  * Routines to maintain information about directory inodes.
    368   1.1       cgd  * This is built during the first pass and used during the
    369   1.1       cgd  * second and third passes.
    370   1.1       cgd  *
    371   1.1       cgd  * Enter inodes into the cache.
    372   1.1       cgd  */
    373  1.12       cgd void
    374   1.1       cgd cacheino(dp, inumber)
    375   1.1       cgd 	register struct dinode *dp;
    376   1.1       cgd 	ino_t inumber;
    377   1.1       cgd {
    378   1.1       cgd 	register struct inoinfo *inp;
    379   1.1       cgd 	struct inoinfo **inpp;
    380   1.1       cgd 	unsigned int blks;
    381   1.1       cgd 
    382   1.1       cgd 	blks = howmany(dp->di_size, sblock.fs_bsize);
    383   1.1       cgd 	if (blks > NDADDR)
    384   1.1       cgd 		blks = NDADDR + NIADDR;
    385   1.1       cgd 	inp = (struct inoinfo *)
    386   1.1       cgd 		malloc(sizeof(*inp) + (blks - 1) * sizeof(daddr_t));
    387   1.1       cgd 	if (inp == NULL)
    388   1.1       cgd 		return;
    389   1.1       cgd 	inpp = &inphead[inumber % numdirs];
    390   1.1       cgd 	inp->i_nexthash = *inpp;
    391   1.1       cgd 	*inpp = inp;
    392  1.20   mycroft 	inp->i_child = inp->i_sibling = inp->i_parentp = 0;
    393  1.14   mycroft 	if (inumber == ROOTINO)
    394  1.14   mycroft 		inp->i_parent = ROOTINO;
    395  1.14   mycroft 	else
    396  1.14   mycroft 		inp->i_parent = (ino_t)0;
    397   1.1       cgd 	inp->i_dotdot = (ino_t)0;
    398   1.1       cgd 	inp->i_number = inumber;
    399   1.1       cgd 	inp->i_isize = dp->di_size;
    400   1.1       cgd 	inp->i_numblks = blks * sizeof(daddr_t);
    401  1.11   mycroft 	memcpy(&inp->i_blks[0], &dp->di_db[0], (size_t)inp->i_numblks);
    402   1.1       cgd 	if (inplast == listmax) {
    403   1.1       cgd 		listmax += 100;
    404   1.1       cgd 		inpsort = (struct inoinfo **)realloc((char *)inpsort,
    405   1.1       cgd 		    (unsigned)listmax * sizeof(struct inoinfo *));
    406   1.1       cgd 		if (inpsort == NULL)
    407   1.1       cgd 			errexit("cannot increase directory list");
    408   1.1       cgd 	}
    409   1.1       cgd 	inpsort[inplast++] = inp;
    410   1.1       cgd }
    411   1.1       cgd 
    412   1.1       cgd /*
    413   1.1       cgd  * Look up an inode cache structure.
    414   1.1       cgd  */
    415   1.1       cgd struct inoinfo *
    416   1.1       cgd getinoinfo(inumber)
    417   1.1       cgd 	ino_t inumber;
    418   1.1       cgd {
    419   1.1       cgd 	register struct inoinfo *inp;
    420   1.1       cgd 
    421   1.1       cgd 	for (inp = inphead[inumber % numdirs]; inp; inp = inp->i_nexthash) {
    422   1.1       cgd 		if (inp->i_number != inumber)
    423   1.1       cgd 			continue;
    424   1.1       cgd 		return (inp);
    425   1.1       cgd 	}
    426   1.1       cgd 	errexit("cannot find inode %d\n", inumber);
    427   1.1       cgd 	return ((struct inoinfo *)0);
    428   1.1       cgd }
    429   1.1       cgd 
    430   1.1       cgd /*
    431   1.1       cgd  * Clean up all the inode cache structure.
    432   1.1       cgd  */
    433  1.12       cgd void
    434   1.1       cgd inocleanup()
    435   1.1       cgd {
    436   1.1       cgd 	register struct inoinfo **inpp;
    437   1.1       cgd 
    438   1.1       cgd 	if (inphead == NULL)
    439   1.1       cgd 		return;
    440   1.1       cgd 	for (inpp = &inpsort[inplast - 1]; inpp >= inpsort; inpp--)
    441   1.1       cgd 		free((char *)(*inpp));
    442   1.1       cgd 	free((char *)inphead);
    443   1.1       cgd 	free((char *)inpsort);
    444   1.1       cgd 	inphead = inpsort = NULL;
    445   1.1       cgd }
    446   1.9   mycroft 
    447  1.12       cgd void
    448   1.1       cgd inodirty()
    449   1.1       cgd {
    450   1.1       cgd 
    451   1.1       cgd 	dirty(pbp);
    452   1.1       cgd }
    453   1.1       cgd 
    454  1.12       cgd void
    455   1.1       cgd clri(idesc, type, flag)
    456   1.1       cgd 	register struct inodesc *idesc;
    457   1.1       cgd 	char *type;
    458   1.1       cgd 	int flag;
    459   1.1       cgd {
    460   1.1       cgd 	register struct dinode *dp;
    461   1.1       cgd 
    462   1.1       cgd 	dp = ginode(idesc->id_number);
    463   1.1       cgd 	if (flag == 1) {
    464   1.1       cgd 		pwarn("%s %s", type,
    465   1.1       cgd 		    (dp->di_mode & IFMT) == IFDIR ? "DIR" : "FILE");
    466   1.1       cgd 		pinode(idesc->id_number);
    467   1.1       cgd 	}
    468   1.1       cgd 	if (preen || reply("CLEAR") == 1) {
    469   1.1       cgd 		if (preen)
    470   1.1       cgd 			printf(" (CLEARED)\n");
    471   1.1       cgd 		n_files--;
    472   1.1       cgd 		(void)ckinode(dp, idesc);
    473   1.1       cgd 		clearinode(dp);
    474   1.1       cgd 		statemap[idesc->id_number] = USTATE;
    475   1.1       cgd 		inodirty();
    476   1.1       cgd 	}
    477   1.1       cgd }
    478   1.1       cgd 
    479  1.12       cgd int
    480   1.1       cgd findname(idesc)
    481   1.1       cgd 	struct inodesc *idesc;
    482   1.1       cgd {
    483   1.1       cgd 	register struct direct *dirp = idesc->id_dirp;
    484   1.1       cgd 
    485   1.1       cgd 	if (dirp->d_ino != idesc->id_parent)
    486   1.1       cgd 		return (KEEPON);
    487  1.11   mycroft 	memcpy(idesc->id_name, dirp->d_name, (size_t)dirp->d_namlen + 1);
    488   1.1       cgd 	return (STOP|FOUND);
    489   1.1       cgd }
    490   1.1       cgd 
    491  1.12       cgd int
    492   1.1       cgd findino(idesc)
    493   1.1       cgd 	struct inodesc *idesc;
    494   1.1       cgd {
    495   1.1       cgd 	register struct direct *dirp = idesc->id_dirp;
    496   1.1       cgd 
    497   1.1       cgd 	if (dirp->d_ino == 0)
    498   1.1       cgd 		return (KEEPON);
    499   1.1       cgd 	if (strcmp(dirp->d_name, idesc->id_name) == 0 &&
    500   1.1       cgd 	    dirp->d_ino >= ROOTINO && dirp->d_ino <= maxino) {
    501   1.1       cgd 		idesc->id_parent = dirp->d_ino;
    502   1.1       cgd 		return (STOP|FOUND);
    503   1.1       cgd 	}
    504   1.1       cgd 	return (KEEPON);
    505   1.1       cgd }
    506   1.1       cgd 
    507  1.12       cgd void
    508   1.1       cgd pinode(ino)
    509   1.1       cgd 	ino_t ino;
    510   1.1       cgd {
    511   1.1       cgd 	register struct dinode *dp;
    512   1.1       cgd 	register char *p;
    513   1.1       cgd 	struct passwd *pw;
    514  1.17   thorpej 	time_t t;
    515   1.1       cgd 
    516  1.21  christos 	printf(" I=%u ", ino);
    517   1.1       cgd 	if (ino < ROOTINO || ino > maxino)
    518   1.1       cgd 		return;
    519   1.1       cgd 	dp = ginode(ino);
    520   1.1       cgd 	printf(" OWNER=");
    521   1.6       cgd #ifndef SMALL
    522   1.1       cgd 	if ((pw = getpwuid((int)dp->di_uid)) != 0)
    523   1.1       cgd 		printf("%s ", pw->pw_name);
    524   1.1       cgd 	else
    525   1.6       cgd #endif
    526   1.1       cgd 		printf("%u ", (unsigned)dp->di_uid);
    527   1.1       cgd 	printf("MODE=%o\n", dp->di_mode);
    528   1.1       cgd 	if (preen)
    529  1.21  christos 		printf("%s: ", cdevname());
    530   1.9   mycroft 	printf("SIZE=%qu ", dp->di_size);
    531  1.17   thorpej 	t = dp->di_mtime;
    532  1.17   thorpej 	p = ctime(&t);
    533   1.1       cgd 	printf("MTIME=%12.12s %4.4s ", &p[4], &p[20]);
    534   1.1       cgd }
    535   1.1       cgd 
    536  1.12       cgd void
    537   1.1       cgd blkerror(ino, type, blk)
    538   1.1       cgd 	ino_t ino;
    539   1.1       cgd 	char *type;
    540   1.1       cgd 	daddr_t blk;
    541   1.1       cgd {
    542   1.1       cgd 
    543  1.21  christos 	pfatal("%d %s I=%u", blk, type, ino);
    544   1.1       cgd 	printf("\n");
    545   1.1       cgd 	switch (statemap[ino]) {
    546   1.1       cgd 
    547   1.1       cgd 	case FSTATE:
    548   1.1       cgd 		statemap[ino] = FCLEAR;
    549   1.1       cgd 		return;
    550   1.1       cgd 
    551   1.1       cgd 	case DSTATE:
    552   1.1       cgd 		statemap[ino] = DCLEAR;
    553   1.1       cgd 		return;
    554   1.1       cgd 
    555   1.1       cgd 	case FCLEAR:
    556   1.1       cgd 	case DCLEAR:
    557   1.1       cgd 		return;
    558   1.1       cgd 
    559   1.1       cgd 	default:
    560   1.1       cgd 		errexit("BAD STATE %d TO BLKERR", statemap[ino]);
    561   1.1       cgd 		/* NOTREACHED */
    562   1.1       cgd 	}
    563   1.1       cgd }
    564   1.1       cgd 
    565   1.1       cgd /*
    566   1.1       cgd  * allocate an unused inode
    567   1.1       cgd  */
    568   1.1       cgd ino_t
    569   1.1       cgd allocino(request, type)
    570   1.1       cgd 	ino_t request;
    571   1.1       cgd 	int type;
    572   1.1       cgd {
    573   1.1       cgd 	register ino_t ino;
    574   1.1       cgd 	register struct dinode *dp;
    575  1.16   thorpej 	time_t t;
    576   1.1       cgd 
    577   1.1       cgd 	if (request == 0)
    578   1.1       cgd 		request = ROOTINO;
    579   1.1       cgd 	else if (statemap[request] != USTATE)
    580   1.1       cgd 		return (0);
    581   1.1       cgd 	for (ino = request; ino < maxino; ino++)
    582   1.1       cgd 		if (statemap[ino] == USTATE)
    583   1.1       cgd 			break;
    584   1.1       cgd 	if (ino == maxino)
    585   1.1       cgd 		return (0);
    586   1.1       cgd 	switch (type & IFMT) {
    587   1.1       cgd 	case IFDIR:
    588   1.1       cgd 		statemap[ino] = DSTATE;
    589   1.1       cgd 		break;
    590   1.1       cgd 	case IFREG:
    591   1.1       cgd 	case IFLNK:
    592   1.1       cgd 		statemap[ino] = FSTATE;
    593   1.1       cgd 		break;
    594   1.1       cgd 	default:
    595   1.1       cgd 		return (0);
    596   1.1       cgd 	}
    597   1.1       cgd 	dp = ginode(ino);
    598   1.1       cgd 	dp->di_db[0] = allocblk((long)1);
    599   1.1       cgd 	if (dp->di_db[0] == 0) {
    600   1.1       cgd 		statemap[ino] = USTATE;
    601   1.1       cgd 		return (0);
    602   1.1       cgd 	}
    603   1.1       cgd 	dp->di_mode = type;
    604  1.16   thorpej 	(void)time(&t);
    605  1.16   thorpej 	dp->di_atime = t;
    606   1.1       cgd 	dp->di_mtime = dp->di_ctime = dp->di_atime;
    607   1.1       cgd 	dp->di_size = sblock.fs_fsize;
    608   1.1       cgd 	dp->di_blocks = btodb(sblock.fs_fsize);
    609   1.1       cgd 	n_files++;
    610   1.1       cgd 	inodirty();
    611   1.9   mycroft 	if (newinofmt)
    612   1.9   mycroft 		typemap[ino] = IFTODT(type);
    613   1.1       cgd 	return (ino);
    614   1.1       cgd }
    615   1.1       cgd 
    616   1.1       cgd /*
    617   1.1       cgd  * deallocate an inode
    618   1.1       cgd  */
    619  1.12       cgd void
    620   1.1       cgd freeino(ino)
    621   1.1       cgd 	ino_t ino;
    622   1.1       cgd {
    623   1.1       cgd 	struct inodesc idesc;
    624   1.1       cgd 	struct dinode *dp;
    625   1.1       cgd 
    626  1.11   mycroft 	memset(&idesc, 0, sizeof(struct inodesc));
    627   1.1       cgd 	idesc.id_type = ADDR;
    628   1.1       cgd 	idesc.id_func = pass4check;
    629   1.1       cgd 	idesc.id_number = ino;
    630   1.1       cgd 	dp = ginode(ino);
    631   1.1       cgd 	(void)ckinode(dp, &idesc);
    632   1.1       cgd 	clearinode(dp);
    633   1.1       cgd 	inodirty();
    634   1.1       cgd 	statemap[ino] = USTATE;
    635   1.1       cgd 	n_files--;
    636   1.1       cgd }
    637