xref: /original-bsd/sys/ufs/lfs/lfs_alloc.c (revision 68d9582f)
1 /*
2  * Copyright (c) 1991 Regents of the University of California.
3  * All rights reserved.
4  *
5  * %sccs.include.redist.c%
6  *
7  *	@(#)lfs_alloc.c	7.45 (Berkeley) 05/15/92
8  */
9 
10 #include <sys/param.h>
11 #include <sys/kernel.h>
12 #include <sys/buf.h>
13 #include <sys/vnode.h>
14 #include <sys/syslog.h>
15 #include <sys/mount.h>
16 #include <sys/malloc.h>
17 
18 #include <vm/vm.h>
19 
20 #include <ufs/ufs/quota.h>
21 #include <ufs/ufs/inode.h>
22 #include <ufs/ufs/ufsmount.h>
23 
24 #include <ufs/lfs/lfs.h>
25 #include <ufs/lfs/lfs_extern.h>
26 
27 extern u_long nextgennumber;
28 
29 /* Allocate a new inode. */
30 /* ARGSUSED */
31 int
32 lfs_valloc (ap)
33 	struct vop_valloc_args *ap;
34 {
35 	struct lfs *fs;
36 	struct buf *bp;
37 	struct ifile *ifp;
38 	struct inode *ip;
39 	struct vnode *vp;
40 	daddr_t blkno;
41 	ino_t new_ino;
42 	u_long i, max;
43 	int error;
44 
45 #ifdef VERBOSE
46 	printf("lfs_valloc\n");
47 #endif
48 	/* Get the head of the freelist. */
49 	fs = VTOI(ap->a_pvp)->i_lfs;
50 	new_ino = fs->lfs_free;
51 #ifdef ALLOCPRINT
52 	printf("lfs_ialloc: allocate inode %d\n", new_ino);
53 #endif
54 
55 	/*
56 	 * Remove the inode from the free list and write the new start
57 	 * of the free list into the superblock.
58 	 */
59 	LFS_IENTRY(ifp, fs, new_ino, bp);
60 	if (ifp->if_daddr != LFS_UNUSED_DADDR)
61 		panic("lfs_ialloc: inuse inode on the free list");
62 	fs->lfs_free = ifp->if_nextfree;
63 	brelse(bp);
64 
65 	/* Extend IFILE so that the next lfs_valloc will succeed. */
66 	if (fs->lfs_free == LFS_UNUSED_INUM) {
67 		vp = fs->lfs_ivnode;
68 		ip = VTOI(vp);
69 		blkno = lblkno(fs, ip->i_size);
70 printf("Extending ifile: blkno = %d\n", blkno);
71 		bp = getblk(vp, blkno, fs->lfs_bsize);
72 		if (!bp) {
73 			uprintf("\n%s: no inodes left\n", fs->lfs_fsmnt);
74 			log(LOG_ERR, "uid %d on %s: out of inodes\n",
75 			    ap->a_cred->cr_uid, fs->lfs_fsmnt);
76 			return (ENOSPC);
77 		}
78 		i = (blkno - fs->lfs_segtabsz - fs->lfs_cleansz) *
79 		    fs->lfs_ifpb;
80 printf("Extending ifile: first inum = %d\n", i);
81 		fs->lfs_free = i;
82 		max = i + fs->lfs_ifpb;
83 printf("Extending ifile: max inum = %d\n", max);
84 		for (ifp = (struct ifile *)bp->b_un.b_words; i < max; ++ifp) {
85 			ifp->if_version = 1;
86 			ifp->if_daddr = LFS_UNUSED_DADDR;
87 			ifp->if_nextfree = ++i;
88 		}
89 		ifp--;
90 		ifp->if_nextfree = LFS_UNUSED_INUM;
91 
92 		++ip->i_blocks;			/* XXX This may not be right. */
93 		ip->i_size += fs->lfs_bsize;
94 printf("Extending ifile: blocks = %d size = %d\n", ip->i_blocks, ip->i_size);
95 		vnode_pager_setsize(vp, (u_long)ip->i_size);
96 		vnode_pager_uncache(vp);
97 		LFS_UBWRITE(bp);
98 	}
99 
100 	/* Create a vnode to associate with the inode. */
101 	if (error = lfs_vcreate(ap->a_pvp->v_mount, new_ino, &vp))
102 		return (error);
103 	*ap->a_vpp = vp;
104 	ip = VTOI(vp);
105 	VREF(ip->i_devvp);
106 
107 	/* Zero out the direct and indirect block addresses. */
108 	bzero(ip->i_db, (NDADDR + NIADDR) * sizeof(daddr_t));
109 
110 	/* Set a new generation number for this inode. */
111 	if (++nextgennumber < (u_long)time.tv_sec)
112 		nextgennumber = time.tv_sec;
113 	ip->i_gen = nextgennumber;
114 
115 	/* Insert into the inode hash table. */
116 	ufs_ihashins(ip);
117 
118 	/* Set superblock modified bit and increment file count. */
119 	fs->lfs_fmod = 1;
120 	++fs->lfs_nfiles;
121 	return (0);
122 }
123 
124 /* Create a new vnode/inode pair and initialize what fields we can. */
125 int
126 lfs_vcreate(mp, ino, vpp)
127 	struct mount *mp;
128 	ino_t ino;
129 	struct vnode **vpp;
130 {
131 	extern int (**lfs_vnodeop_p)();
132 	struct inode *ip;
133 	struct ufsmount *ump;
134 	int error, i;
135 
136 #ifdef VERBOSE
137 	printf("lfs_vcreate: ino %d\n", ino);
138 #endif
139 	/* Create the vnode. */
140 	if (error = getnewvnode(VT_LFS, mp, lfs_vnodeop_p, vpp)) {
141 		*vpp = NULL;
142 		return (error);
143 	}
144 
145 	/* Get a pointer to the private mount structure. */
146 	ump = VFSTOUFS(mp);
147 
148 	/* Initialize the inode. */
149 	MALLOC(ip, struct inode *, sizeof(struct inode), M_LFSNODE, M_WAITOK);
150 	(*vpp)->v_data = ip;
151 	ip->i_vnode = *vpp;
152 	ip->i_devvp = ump->um_devvp;
153 	ip->i_flag = 0;
154 	ip->i_dev = ump->um_dev;
155 	ip->i_number = ip->i_din.di_inum = ino;
156 	ip->i_lfs = ump->um_lfs;
157 #ifdef QUOTA
158 	for (i = 0; i < MAXQUOTAS; i++)
159 		ip->i_dquot[i] = NODQUOT;
160 #endif
161 	ip->i_lockf = 0;
162 	ip->i_diroff = 0;
163 	ip->i_mode = 0;
164 	ip->i_size = 0;
165 	return (0);
166 }
167 
168 /* Free an inode. */
169 /* ARGUSED */
170 int
171 lfs_vfree (ap)
172 	struct vop_vfree_args *ap;
173 {
174 	SEGUSE *sup;
175 	struct buf *bp;
176 	struct ifile *ifp;
177 	struct inode *ip;
178 	struct lfs *fs;
179 	daddr_t old_iaddr;
180 	ino_t ino;
181 
182 	ip = VTOI(ap->a_pvp);
183 #ifdef VERBOSE
184 	printf("lfs_vfree: free %d\n", ip->i_number);
185 #endif
186 	/* Get the inode number and file system. */
187 	fs = ip->i_lfs;
188 	ino = ip->i_number;
189 
190 	/*
191 	 * Set the ifile's inode entry to unused, increment its version number
192 	 * and link it into the free chain.
193 	 */
194 	LFS_IENTRY(ifp, fs, ino, bp);
195 	old_iaddr = ifp->if_daddr;
196 	ifp->if_daddr = LFS_UNUSED_DADDR;
197 	++ifp->if_version;
198 	ifp->if_nextfree = fs->lfs_free;
199 	fs->lfs_free = ino;
200 	LFS_UBWRITE(bp);
201 
202 	if (old_iaddr != LFS_UNUSED_DADDR) {
203 		LFS_SEGENTRY(sup, fs, datosn(fs, old_iaddr), bp);
204 #ifdef DIAGNOSTIC
205 		if (sup->su_nbytes < sizeof(struct dinode))
206 			panic("lfs_vfree: negative byte count (segment %d)\n",
207 			    datosn(fs, old_iaddr));
208 #endif
209 		sup->su_nbytes -= sizeof(struct dinode);
210 		LFS_UBWRITE(bp);
211 	}
212 
213 	/* Set superblock modified bit and decrement file count. */
214 	fs->lfs_fmod = 1;
215 	--fs->lfs_nfiles;
216 	return (0);
217 }
218 
219 
220