ext2fs_alloc.c revision 1.39 1 1.39 elad /* $NetBSD: ext2fs_alloc.c,v 1.39 2009/05/07 19:26:08 elad Exp $ */
2 1.1 bouyer
3 1.1 bouyer /*
4 1.1 bouyer * Copyright (c) 1982, 1986, 1989, 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.20 agc * 3. Neither the name of the University nor the names of its contributors
16 1.20 agc * may be used to endorse or promote products derived from this software
17 1.20 agc * without specific prior written permission.
18 1.20 agc *
19 1.20 agc * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
20 1.20 agc * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
21 1.20 agc * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
22 1.20 agc * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
23 1.20 agc * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
24 1.20 agc * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
25 1.20 agc * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
26 1.20 agc * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
27 1.20 agc * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
28 1.20 agc * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
29 1.20 agc * SUCH DAMAGE.
30 1.20 agc *
31 1.20 agc * @(#)ffs_alloc.c 8.11 (Berkeley) 10/27/94
32 1.20 agc * Modified for ext2fs by Manuel Bouyer.
33 1.20 agc */
34 1.20 agc
35 1.20 agc /*
36 1.20 agc * Copyright (c) 1997 Manuel Bouyer.
37 1.20 agc *
38 1.20 agc * Redistribution and use in source and binary forms, with or without
39 1.20 agc * modification, are permitted provided that the following conditions
40 1.20 agc * are met:
41 1.20 agc * 1. Redistributions of source code must retain the above copyright
42 1.20 agc * notice, this list of conditions and the following disclaimer.
43 1.20 agc * 2. Redistributions in binary form must reproduce the above copyright
44 1.20 agc * notice, this list of conditions and the following disclaimer in the
45 1.20 agc * documentation and/or other materials provided with the distribution.
46 1.1 bouyer * 3. All advertising materials mentioning features or use of this software
47 1.1 bouyer * must display the following acknowledgement:
48 1.21 bouyer * This product includes software developed by Manuel Bouyer.
49 1.21 bouyer * 4. The name of the author may not be used to endorse or promote products
50 1.21 bouyer * derived from this software without specific prior written permission.
51 1.1 bouyer *
52 1.22 bouyer * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
53 1.22 bouyer * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
54 1.22 bouyer * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
55 1.22 bouyer * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
56 1.22 bouyer * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
57 1.22 bouyer * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
58 1.22 bouyer * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
59 1.22 bouyer * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
60 1.22 bouyer * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
61 1.22 bouyer * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
62 1.1 bouyer *
63 1.1 bouyer * @(#)ffs_alloc.c 8.11 (Berkeley) 10/27/94
64 1.1 bouyer * Modified for ext2fs by Manuel Bouyer.
65 1.1 bouyer */
66 1.13 lukem
67 1.13 lukem #include <sys/cdefs.h>
68 1.39 elad __KERNEL_RCSID(0, "$NetBSD: ext2fs_alloc.c,v 1.39 2009/05/07 19:26:08 elad Exp $");
69 1.1 bouyer
70 1.1 bouyer #include <sys/param.h>
71 1.1 bouyer #include <sys/systm.h>
72 1.1 bouyer #include <sys/buf.h>
73 1.1 bouyer #include <sys/proc.h>
74 1.1 bouyer #include <sys/vnode.h>
75 1.1 bouyer #include <sys/mount.h>
76 1.1 bouyer #include <sys/kernel.h>
77 1.1 bouyer #include <sys/syslog.h>
78 1.29 elad #include <sys/kauth.h>
79 1.1 bouyer
80 1.1 bouyer #include <ufs/ufs/inode.h>
81 1.1 bouyer #include <ufs/ufs/ufs_extern.h>
82 1.27 yamt #include <ufs/ufs/ufsmount.h>
83 1.1 bouyer
84 1.1 bouyer #include <ufs/ext2fs/ext2fs.h>
85 1.1 bouyer #include <ufs/ext2fs/ext2fs_extern.h>
86 1.1 bouyer
87 1.1 bouyer u_long ext2gennumber;
88 1.1 bouyer
89 1.26 xtraeme static daddr_t ext2fs_alloccg(struct inode *, int, daddr_t, int);
90 1.26 xtraeme static u_long ext2fs_dirpref(struct m_ext2fs *);
91 1.26 xtraeme static void ext2fs_fserr(struct m_ext2fs *, u_int, const char *);
92 1.26 xtraeme static u_long ext2fs_hashalloc(struct inode *, int, long, int,
93 1.15 fvdl daddr_t (*)(struct inode *, int, daddr_t,
94 1.26 xtraeme int));
95 1.26 xtraeme static daddr_t ext2fs_nodealloccg(struct inode *, int, daddr_t, int);
96 1.26 xtraeme static daddr_t ext2fs_mapsearch(struct m_ext2fs *, char *, daddr_t);
97 1.1 bouyer
98 1.1 bouyer /*
99 1.1 bouyer * Allocate a block in the file system.
100 1.23 perry *
101 1.1 bouyer * A preference may be optionally specified. If a preference is given
102 1.1 bouyer * the following hierarchy is used to allocate a block:
103 1.1 bouyer * 1) allocate the requested block.
104 1.1 bouyer * 2) allocate a rotationally optimal block in the same cylinder.
105 1.1 bouyer * 3) allocate a block in the same cylinder group.
106 1.1 bouyer * 4) quadradically rehash into other cylinder groups, until an
107 1.1 bouyer * available block is located.
108 1.11 wiz * If no block preference is given the following hierarchy is used
109 1.1 bouyer * to allocate a block:
110 1.1 bouyer * 1) allocate a block in the cylinder group that contains the
111 1.1 bouyer * inode for the file.
112 1.1 bouyer * 2) quadradically rehash into other cylinder groups, until an
113 1.1 bouyer * available block is located.
114 1.1 bouyer */
115 1.1 bouyer int
116 1.32 christos ext2fs_alloc(struct inode *ip, daddr_t lbn, daddr_t bpref,
117 1.31 christos kauth_cred_t cred, daddr_t *bnp)
118 1.1 bouyer {
119 1.7 augustss struct m_ext2fs *fs;
120 1.15 fvdl daddr_t bno;
121 1.1 bouyer int cg;
122 1.23 perry
123 1.1 bouyer *bnp = 0;
124 1.1 bouyer fs = ip->i_e2fs;
125 1.1 bouyer #ifdef DIAGNOSTIC
126 1.1 bouyer if (cred == NOCRED)
127 1.14 provos panic("ext2fs_alloc: missing credential");
128 1.1 bouyer #endif /* DIAGNOSTIC */
129 1.1 bouyer if (fs->e2fs.e2fs_fbcount == 0)
130 1.1 bouyer goto nospace;
131 1.39 elad if (kauth_authorize_system(cred, KAUTH_SYSTEM_FS_RESERVEDSPACE, 0, NULL,
132 1.39 elad NULL, NULL) != 0 &&
133 1.34 elad freespace(fs) <= 0)
134 1.1 bouyer goto nospace;
135 1.1 bouyer if (bpref >= fs->e2fs.e2fs_bcount)
136 1.1 bouyer bpref = 0;
137 1.1 bouyer if (bpref == 0)
138 1.1 bouyer cg = ino_to_cg(fs, ip->i_number);
139 1.1 bouyer else
140 1.1 bouyer cg = dtog(fs, bpref);
141 1.15 fvdl bno = (daddr_t)ext2fs_hashalloc(ip, cg, bpref, fs->e2fs_bsize,
142 1.1 bouyer ext2fs_alloccg);
143 1.1 bouyer if (bno > 0) {
144 1.1 bouyer ip->i_e2fs_nblock += btodb(fs->e2fs_bsize);
145 1.1 bouyer ip->i_flag |= IN_CHANGE | IN_UPDATE;
146 1.1 bouyer *bnp = bno;
147 1.1 bouyer return (0);
148 1.1 bouyer }
149 1.1 bouyer nospace:
150 1.29 elad ext2fs_fserr(fs, kauth_cred_geteuid(cred), "file system full");
151 1.1 bouyer uprintf("\n%s: write failed, file system is full\n", fs->e2fs_fsmnt);
152 1.1 bouyer return (ENOSPC);
153 1.1 bouyer }
154 1.1 bouyer
155 1.1 bouyer /*
156 1.1 bouyer * Allocate an inode in the file system.
157 1.23 perry *
158 1.1 bouyer * If allocating a directory, use ext2fs_dirpref to select the inode.
159 1.1 bouyer * If allocating in a directory, the following hierarchy is followed:
160 1.1 bouyer * 1) allocate the preferred inode.
161 1.1 bouyer * 2) allocate an inode in the same cylinder group.
162 1.1 bouyer * 3) quadradically rehash into other cylinder groups, until an
163 1.1 bouyer * available inode is located.
164 1.11 wiz * If no inode preference is given the following hierarchy is used
165 1.1 bouyer * to allocate an inode:
166 1.1 bouyer * 1) allocate an inode in cylinder group 0.
167 1.1 bouyer * 2) quadradically rehash into other cylinder groups, until an
168 1.1 bouyer * available inode is located.
169 1.1 bouyer */
170 1.1 bouyer int
171 1.29 elad ext2fs_valloc(struct vnode *pvp, int mode, kauth_cred_t cred,
172 1.27 yamt struct vnode **vpp)
173 1.1 bouyer {
174 1.7 augustss struct inode *pip;
175 1.7 augustss struct m_ext2fs *fs;
176 1.7 augustss struct inode *ip;
177 1.1 bouyer ino_t ino, ipref;
178 1.1 bouyer int cg, error;
179 1.23 perry
180 1.27 yamt *vpp = NULL;
181 1.1 bouyer pip = VTOI(pvp);
182 1.1 bouyer fs = pip->i_e2fs;
183 1.1 bouyer if (fs->e2fs.e2fs_ficount == 0)
184 1.1 bouyer goto noinodes;
185 1.1 bouyer
186 1.1 bouyer if ((mode & IFMT) == IFDIR)
187 1.1 bouyer cg = ext2fs_dirpref(fs);
188 1.1 bouyer else
189 1.1 bouyer cg = ino_to_cg(fs, pip->i_number);
190 1.1 bouyer ipref = cg * fs->e2fs.e2fs_ipg + 1;
191 1.1 bouyer ino = (ino_t)ext2fs_hashalloc(pip, cg, (long)ipref, mode, ext2fs_nodealloccg);
192 1.1 bouyer if (ino == 0)
193 1.1 bouyer goto noinodes;
194 1.27 yamt error = VFS_VGET(pvp->v_mount, ino, vpp);
195 1.1 bouyer if (error) {
196 1.27 yamt ext2fs_vfree(pvp, ino, mode);
197 1.1 bouyer return (error);
198 1.1 bouyer }
199 1.27 yamt ip = VTOI(*vpp);
200 1.1 bouyer if (ip->i_e2fs_mode && ip->i_e2fs_nlink != 0) {
201 1.25 christos printf("mode = 0%o, nlinks %d, inum = %llu, fs = %s\n",
202 1.25 christos ip->i_e2fs_mode, ip->i_e2fs_nlink,
203 1.25 christos (unsigned long long)ip->i_number, fs->e2fs_fsmnt);
204 1.1 bouyer panic("ext2fs_valloc: dup alloc");
205 1.1 bouyer }
206 1.1 bouyer
207 1.16 gmcgarry memset(ip->i_din.e2fs_din, 0, sizeof(struct ext2fs_dinode));
208 1.1 bouyer
209 1.1 bouyer /*
210 1.1 bouyer * Set up a new generation number for this inode.
211 1.1 bouyer */
212 1.30 kardel if (++ext2gennumber < time_second)
213 1.30 kardel ext2gennumber = time_second;
214 1.1 bouyer ip->i_e2fs_gen = ext2gennumber;
215 1.1 bouyer return (0);
216 1.1 bouyer noinodes:
217 1.29 elad ext2fs_fserr(fs, kauth_cred_geteuid(cred), "out of inodes");
218 1.1 bouyer uprintf("\n%s: create/symlink failed, no inodes free\n", fs->e2fs_fsmnt);
219 1.1 bouyer return (ENOSPC);
220 1.1 bouyer }
221 1.1 bouyer
222 1.1 bouyer /*
223 1.1 bouyer * Find a cylinder to place a directory.
224 1.1 bouyer *
225 1.1 bouyer * The policy implemented by this algorithm is to select from
226 1.1 bouyer * among those cylinder groups with above the average number of
227 1.1 bouyer * free inodes, the one with the smallest number of directories.
228 1.1 bouyer */
229 1.1 bouyer static u_long
230 1.26 xtraeme ext2fs_dirpref(struct m_ext2fs *fs)
231 1.1 bouyer {
232 1.1 bouyer int cg, maxspace, mincg, avgifree;
233 1.1 bouyer
234 1.1 bouyer avgifree = fs->e2fs.e2fs_ficount / fs->e2fs_ncg;
235 1.1 bouyer maxspace = 0;
236 1.1 bouyer mincg = -1;
237 1.1 bouyer for (cg = 0; cg < fs->e2fs_ncg; cg++)
238 1.1 bouyer if ( fs->e2fs_gd[cg].ext2bgd_nifree >= avgifree) {
239 1.1 bouyer if (mincg == -1 || fs->e2fs_gd[cg].ext2bgd_nbfree > maxspace) {
240 1.1 bouyer mincg = cg;
241 1.1 bouyer maxspace = fs->e2fs_gd[cg].ext2bgd_nbfree;
242 1.1 bouyer }
243 1.1 bouyer }
244 1.1 bouyer return mincg;
245 1.1 bouyer }
246 1.1 bouyer
247 1.1 bouyer /*
248 1.1 bouyer * Select the desired position for the next block in a file. The file is
249 1.1 bouyer * logically divided into sections. The first section is composed of the
250 1.1 bouyer * direct blocks. Each additional section contains fs_maxbpg blocks.
251 1.23 perry *
252 1.1 bouyer * If no blocks have been allocated in the first section, the policy is to
253 1.1 bouyer * request a block in the same cylinder group as the inode that describes
254 1.1 bouyer * the file. Otherwise, the policy is to try to allocate the blocks
255 1.10 toshii * contigously. The two fields of the ext2 inode extension (see
256 1.1 bouyer * ufs/ufs/inode.h) help this.
257 1.1 bouyer */
258 1.15 fvdl daddr_t
259 1.26 xtraeme ext2fs_blkpref(struct inode *ip, daddr_t lbn, int indx,
260 1.26 xtraeme int32_t *bap /* XXX ondisk32 */)
261 1.1 bouyer {
262 1.7 augustss struct m_ext2fs *fs;
263 1.7 augustss int cg, i;
264 1.1 bouyer
265 1.1 bouyer fs = ip->i_e2fs;
266 1.1 bouyer /*
267 1.1 bouyer * if we are doing contigous lbn allocation, try to alloc blocks
268 1.1 bouyer * contigously on disk
269 1.1 bouyer */
270 1.1 bouyer
271 1.1 bouyer if ( ip->i_e2fs_last_blk && lbn == ip->i_e2fs_last_lblk + 1) {
272 1.1 bouyer return ip->i_e2fs_last_blk + 1;
273 1.1 bouyer }
274 1.1 bouyer
275 1.1 bouyer /*
276 1.1 bouyer * bap, if provided, gives us a list of blocks to which we want to
277 1.1 bouyer * stay close
278 1.1 bouyer */
279 1.1 bouyer
280 1.1 bouyer if (bap) {
281 1.1 bouyer for (i = indx; i >= 0 ; i--) {
282 1.1 bouyer if (bap[i]) {
283 1.2 bouyer return fs2h32(bap[i]) + 1;
284 1.1 bouyer }
285 1.1 bouyer }
286 1.1 bouyer }
287 1.1 bouyer
288 1.1 bouyer /* fall back to the first block of the cylinder containing the inode */
289 1.1 bouyer
290 1.1 bouyer cg = ino_to_cg(fs, ip->i_number);
291 1.1 bouyer return fs->e2fs.e2fs_bpg * cg + fs->e2fs.e2fs_first_dblock + 1;
292 1.1 bouyer }
293 1.1 bouyer
294 1.1 bouyer /*
295 1.1 bouyer * Implement the cylinder overflow algorithm.
296 1.1 bouyer *
297 1.1 bouyer * The policy implemented by this algorithm is:
298 1.1 bouyer * 1) allocate the block in its requested cylinder group.
299 1.1 bouyer * 2) quadradically rehash on the cylinder group number.
300 1.1 bouyer * 3) brute force search for a free block.
301 1.1 bouyer */
302 1.1 bouyer static u_long
303 1.26 xtraeme ext2fs_hashalloc(struct inode *ip, int cg, long pref, int size,
304 1.26 xtraeme daddr_t (*allocator)(struct inode *, int, daddr_t, int))
305 1.1 bouyer {
306 1.7 augustss struct m_ext2fs *fs;
307 1.1 bouyer long result;
308 1.1 bouyer int i, icg = cg;
309 1.1 bouyer
310 1.1 bouyer fs = ip->i_e2fs;
311 1.1 bouyer /*
312 1.1 bouyer * 1: preferred cylinder group
313 1.1 bouyer */
314 1.1 bouyer result = (*allocator)(ip, cg, pref, size);
315 1.1 bouyer if (result)
316 1.1 bouyer return (result);
317 1.1 bouyer /*
318 1.1 bouyer * 2: quadratic rehash
319 1.1 bouyer */
320 1.1 bouyer for (i = 1; i < fs->e2fs_ncg; i *= 2) {
321 1.1 bouyer cg += i;
322 1.1 bouyer if (cg >= fs->e2fs_ncg)
323 1.1 bouyer cg -= fs->e2fs_ncg;
324 1.1 bouyer result = (*allocator)(ip, cg, 0, size);
325 1.1 bouyer if (result)
326 1.1 bouyer return (result);
327 1.1 bouyer }
328 1.1 bouyer /*
329 1.1 bouyer * 3: brute force search
330 1.1 bouyer * Note that we start at i == 2, since 0 was checked initially,
331 1.1 bouyer * and 1 is always checked in the quadratic rehash.
332 1.1 bouyer */
333 1.1 bouyer cg = (icg + 2) % fs->e2fs_ncg;
334 1.1 bouyer for (i = 2; i < fs->e2fs_ncg; i++) {
335 1.1 bouyer result = (*allocator)(ip, cg, 0, size);
336 1.1 bouyer if (result)
337 1.1 bouyer return (result);
338 1.1 bouyer cg++;
339 1.1 bouyer if (cg == fs->e2fs_ncg)
340 1.1 bouyer cg = 0;
341 1.1 bouyer }
342 1.8 thorpej return (0);
343 1.1 bouyer }
344 1.1 bouyer
345 1.1 bouyer /*
346 1.1 bouyer * Determine whether a block can be allocated.
347 1.1 bouyer *
348 1.1 bouyer * Check to see if a block of the appropriate size is available,
349 1.1 bouyer * and if it is, allocate it.
350 1.1 bouyer */
351 1.1 bouyer
352 1.15 fvdl static daddr_t
353 1.32 christos ext2fs_alloccg(struct inode *ip, int cg, daddr_t bpref, int size)
354 1.1 bouyer {
355 1.7 augustss struct m_ext2fs *fs;
356 1.7 augustss char *bbp;
357 1.1 bouyer struct buf *bp;
358 1.15 fvdl /* XXX ondisk32 */
359 1.1 bouyer int error, bno, start, end, loc;
360 1.1 bouyer
361 1.1 bouyer fs = ip->i_e2fs;
362 1.1 bouyer if (fs->e2fs_gd[cg].ext2bgd_nbfree == 0)
363 1.8 thorpej return (0);
364 1.6 bouyer error = bread(ip->i_devvp, fsbtodb(fs,
365 1.6 bouyer fs->e2fs_gd[cg].ext2bgd_b_bitmap),
366 1.36 hannken (int)fs->e2fs_bsize, NOCRED, B_MODIFY, &bp);
367 1.1 bouyer if (error) {
368 1.35 ad brelse(bp, 0);
369 1.8 thorpej return (0);
370 1.1 bouyer }
371 1.1 bouyer bbp = (char *)bp->b_data;
372 1.1 bouyer
373 1.1 bouyer if (dtog(fs, bpref) != cg)
374 1.1 bouyer bpref = 0;
375 1.1 bouyer if (bpref != 0) {
376 1.1 bouyer bpref = dtogd(fs, bpref);
377 1.1 bouyer /*
378 1.1 bouyer * if the requested block is available, use it
379 1.1 bouyer */
380 1.1 bouyer if (isclr(bbp, bpref)) {
381 1.1 bouyer bno = bpref;
382 1.1 bouyer goto gotit;
383 1.1 bouyer }
384 1.1 bouyer }
385 1.1 bouyer /*
386 1.1 bouyer * no blocks in the requested cylinder, so take next
387 1.1 bouyer * available one in this cylinder group.
388 1.1 bouyer * first try to get 8 contigous blocks, then fall back to a single
389 1.1 bouyer * block.
390 1.1 bouyer */
391 1.1 bouyer if (bpref)
392 1.1 bouyer start = dtogd(fs, bpref) / NBBY;
393 1.1 bouyer else
394 1.1 bouyer start = 0;
395 1.1 bouyer end = howmany(fs->e2fs.e2fs_fpg, NBBY) - start;
396 1.1 bouyer for (loc = start; loc < end; loc++) {
397 1.1 bouyer if (bbp[loc] == 0) {
398 1.1 bouyer bno = loc * NBBY;
399 1.1 bouyer goto gotit;
400 1.1 bouyer }
401 1.1 bouyer }
402 1.1 bouyer for (loc = 0; loc < start; loc++) {
403 1.1 bouyer if (bbp[loc] == 0) {
404 1.1 bouyer bno = loc * NBBY;
405 1.1 bouyer goto gotit;
406 1.1 bouyer }
407 1.1 bouyer }
408 1.1 bouyer
409 1.1 bouyer bno = ext2fs_mapsearch(fs, bbp, bpref);
410 1.1 bouyer if (bno < 0)
411 1.8 thorpej return (0);
412 1.1 bouyer gotit:
413 1.1 bouyer #ifdef DIAGNOSTIC
414 1.15 fvdl if (isset(bbp, (daddr_t)bno)) {
415 1.1 bouyer printf("ext2fs_alloccgblk: cg=%d bno=%d fs=%s\n",
416 1.1 bouyer cg, bno, fs->e2fs_fsmnt);
417 1.2 bouyer panic("ext2fs_alloccg: dup alloc");
418 1.1 bouyer }
419 1.1 bouyer #endif
420 1.15 fvdl setbit(bbp, (daddr_t)bno);
421 1.1 bouyer fs->e2fs.e2fs_fbcount--;
422 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_nbfree--;
423 1.1 bouyer fs->e2fs_fmod = 1;
424 1.1 bouyer bdwrite(bp);
425 1.1 bouyer return (cg * fs->e2fs.e2fs_fpg + fs->e2fs.e2fs_first_dblock + bno);
426 1.1 bouyer }
427 1.1 bouyer
428 1.1 bouyer /*
429 1.1 bouyer * Determine whether an inode can be allocated.
430 1.1 bouyer *
431 1.1 bouyer * Check to see if an inode is available, and if it is,
432 1.1 bouyer * allocate it using the following policy:
433 1.1 bouyer * 1) allocate the requested inode.
434 1.1 bouyer * 2) allocate the next available inode after the requested
435 1.1 bouyer * inode in the specified cylinder group.
436 1.1 bouyer */
437 1.15 fvdl static daddr_t
438 1.26 xtraeme ext2fs_nodealloccg(struct inode *ip, int cg, daddr_t ipref, int mode)
439 1.1 bouyer {
440 1.7 augustss struct m_ext2fs *fs;
441 1.7 augustss char *ibp;
442 1.1 bouyer struct buf *bp;
443 1.1 bouyer int error, start, len, loc, map, i;
444 1.1 bouyer
445 1.1 bouyer ipref--; /* to avoid a lot of (ipref -1) */
446 1.33 chs if (ipref == -1)
447 1.33 chs ipref = 0;
448 1.1 bouyer fs = ip->i_e2fs;
449 1.1 bouyer if (fs->e2fs_gd[cg].ext2bgd_nifree == 0)
450 1.8 thorpej return (0);
451 1.6 bouyer error = bread(ip->i_devvp, fsbtodb(fs,
452 1.6 bouyer fs->e2fs_gd[cg].ext2bgd_i_bitmap),
453 1.36 hannken (int)fs->e2fs_bsize, NOCRED, B_MODIFY, &bp);
454 1.1 bouyer if (error) {
455 1.35 ad brelse(bp, 0);
456 1.8 thorpej return (0);
457 1.1 bouyer }
458 1.1 bouyer ibp = (char *)bp->b_data;
459 1.1 bouyer if (ipref) {
460 1.1 bouyer ipref %= fs->e2fs.e2fs_ipg;
461 1.1 bouyer if (isclr(ibp, ipref))
462 1.1 bouyer goto gotit;
463 1.1 bouyer }
464 1.1 bouyer start = ipref / NBBY;
465 1.1 bouyer len = howmany(fs->e2fs.e2fs_ipg - ipref, NBBY);
466 1.1 bouyer loc = skpc(0xff, len, &ibp[start]);
467 1.1 bouyer if (loc == 0) {
468 1.1 bouyer len = start + 1;
469 1.1 bouyer start = 0;
470 1.1 bouyer loc = skpc(0xff, len, &ibp[0]);
471 1.1 bouyer if (loc == 0) {
472 1.15 fvdl printf("cg = %d, ipref = %lld, fs = %s\n",
473 1.15 fvdl cg, (long long)ipref, fs->e2fs_fsmnt);
474 1.1 bouyer panic("ext2fs_nodealloccg: map corrupted");
475 1.1 bouyer /* NOTREACHED */
476 1.1 bouyer }
477 1.1 bouyer }
478 1.1 bouyer i = start + len - loc;
479 1.1 bouyer map = ibp[i];
480 1.1 bouyer ipref = i * NBBY;
481 1.1 bouyer for (i = 1; i < (1 << NBBY); i <<= 1, ipref++) {
482 1.1 bouyer if ((map & i) == 0) {
483 1.1 bouyer goto gotit;
484 1.1 bouyer }
485 1.1 bouyer }
486 1.1 bouyer printf("fs = %s\n", fs->e2fs_fsmnt);
487 1.1 bouyer panic("ext2fs_nodealloccg: block not in map");
488 1.1 bouyer /* NOTREACHED */
489 1.1 bouyer gotit:
490 1.1 bouyer setbit(ibp, ipref);
491 1.1 bouyer fs->e2fs.e2fs_ficount--;
492 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_nifree--;
493 1.1 bouyer fs->e2fs_fmod = 1;
494 1.1 bouyer if ((mode & IFMT) == IFDIR) {
495 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_ndirs++;
496 1.1 bouyer }
497 1.1 bouyer bdwrite(bp);
498 1.1 bouyer return (cg * fs->e2fs.e2fs_ipg + ipref +1);
499 1.1 bouyer }
500 1.1 bouyer
501 1.1 bouyer /*
502 1.1 bouyer * Free a block.
503 1.1 bouyer *
504 1.1 bouyer * The specified block is placed back in the
505 1.1 bouyer * free map.
506 1.1 bouyer */
507 1.1 bouyer void
508 1.26 xtraeme ext2fs_blkfree(struct inode *ip, daddr_t bno)
509 1.1 bouyer {
510 1.7 augustss struct m_ext2fs *fs;
511 1.7 augustss char *bbp;
512 1.1 bouyer struct buf *bp;
513 1.1 bouyer int error, cg;
514 1.1 bouyer
515 1.1 bouyer fs = ip->i_e2fs;
516 1.1 bouyer cg = dtog(fs, bno);
517 1.1 bouyer if ((u_int)bno >= fs->e2fs.e2fs_bcount) {
518 1.25 christos printf("bad block %lld, ino %llu\n", (long long)bno,
519 1.25 christos (unsigned long long)ip->i_number);
520 1.37 mrg ext2fs_fserr(fs, ip->i_uid, "bad block");
521 1.1 bouyer return;
522 1.1 bouyer }
523 1.6 bouyer error = bread(ip->i_devvp,
524 1.6 bouyer fsbtodb(fs, fs->e2fs_gd[cg].ext2bgd_b_bitmap),
525 1.36 hannken (int)fs->e2fs_bsize, NOCRED, B_MODIFY, &bp);
526 1.1 bouyer if (error) {
527 1.35 ad brelse(bp, 0);
528 1.1 bouyer return;
529 1.1 bouyer }
530 1.1 bouyer bbp = (char *)bp->b_data;
531 1.1 bouyer bno = dtogd(fs, bno);
532 1.1 bouyer if (isclr(bbp, bno)) {
533 1.38 christos printf("dev = 0x%llx, block = %lld, fs = %s\n",
534 1.38 christos (unsigned long long)ip->i_dev, (long long)bno,
535 1.38 christos fs->e2fs_fsmnt);
536 1.1 bouyer panic("blkfree: freeing free block");
537 1.1 bouyer }
538 1.1 bouyer clrbit(bbp, bno);
539 1.1 bouyer fs->e2fs.e2fs_fbcount++;
540 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_nbfree++;
541 1.1 bouyer
542 1.1 bouyer fs->e2fs_fmod = 1;
543 1.1 bouyer bdwrite(bp);
544 1.1 bouyer }
545 1.1 bouyer
546 1.1 bouyer /*
547 1.1 bouyer * Free an inode.
548 1.1 bouyer *
549 1.1 bouyer * The specified inode is placed back in the free map.
550 1.1 bouyer */
551 1.1 bouyer int
552 1.27 yamt ext2fs_vfree(struct vnode *pvp, ino_t ino, int mode)
553 1.1 bouyer {
554 1.7 augustss struct m_ext2fs *fs;
555 1.7 augustss char *ibp;
556 1.7 augustss struct inode *pip;
557 1.1 bouyer struct buf *bp;
558 1.1 bouyer int error, cg;
559 1.1 bouyer
560 1.27 yamt pip = VTOI(pvp);
561 1.1 bouyer fs = pip->i_e2fs;
562 1.33 chs if ((u_int)ino > fs->e2fs.e2fs_icount || (u_int)ino < EXT2_FIRSTINO)
563 1.38 christos panic("ifree: range: dev = 0x%llx, ino = %llu, fs = %s",
564 1.38 christos (unsigned long long)pip->i_dev, (unsigned long long)ino,
565 1.38 christos fs->e2fs_fsmnt);
566 1.1 bouyer cg = ino_to_cg(fs, ino);
567 1.6 bouyer error = bread(pip->i_devvp,
568 1.6 bouyer fsbtodb(fs, fs->e2fs_gd[cg].ext2bgd_i_bitmap),
569 1.36 hannken (int)fs->e2fs_bsize, NOCRED, B_MODIFY, &bp);
570 1.1 bouyer if (error) {
571 1.35 ad brelse(bp, 0);
572 1.1 bouyer return (0);
573 1.1 bouyer }
574 1.1 bouyer ibp = (char *)bp->b_data;
575 1.1 bouyer ino = (ino - 1) % fs->e2fs.e2fs_ipg;
576 1.1 bouyer if (isclr(ibp, ino)) {
577 1.38 christos printf("dev = 0x%llx, ino = %llu, fs = %s\n",
578 1.38 christos (unsigned long long)pip->i_dev,
579 1.38 christos (unsigned long long)ino, fs->e2fs_fsmnt);
580 1.1 bouyer if (fs->e2fs_ronly == 0)
581 1.1 bouyer panic("ifree: freeing free inode");
582 1.1 bouyer }
583 1.1 bouyer clrbit(ibp, ino);
584 1.1 bouyer fs->e2fs.e2fs_ficount++;
585 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_nifree++;
586 1.27 yamt if ((mode & IFMT) == IFDIR) {
587 1.1 bouyer fs->e2fs_gd[cg].ext2bgd_ndirs--;
588 1.1 bouyer }
589 1.1 bouyer fs->e2fs_fmod = 1;
590 1.1 bouyer bdwrite(bp);
591 1.1 bouyer return (0);
592 1.1 bouyer }
593 1.1 bouyer
594 1.1 bouyer /*
595 1.1 bouyer * Find a block in the specified cylinder group.
596 1.1 bouyer *
597 1.1 bouyer * It is a panic if a request is made to find a block if none are
598 1.1 bouyer * available.
599 1.1 bouyer */
600 1.1 bouyer
601 1.15 fvdl static daddr_t
602 1.26 xtraeme ext2fs_mapsearch(struct m_ext2fs *fs, char *bbp, daddr_t bpref)
603 1.1 bouyer {
604 1.15 fvdl daddr_t bno;
605 1.1 bouyer int start, len, loc, i, map;
606 1.1 bouyer
607 1.1 bouyer /*
608 1.1 bouyer * find the fragment by searching through the free block
609 1.1 bouyer * map for an appropriate bit pattern
610 1.1 bouyer */
611 1.1 bouyer if (bpref)
612 1.1 bouyer start = dtogd(fs, bpref) / NBBY;
613 1.1 bouyer else
614 1.1 bouyer start = 0;
615 1.1 bouyer len = howmany(fs->e2fs.e2fs_fpg, NBBY) - start;
616 1.1 bouyer loc = skpc(0xff, len, &bbp[start]);
617 1.1 bouyer if (loc == 0) {
618 1.1 bouyer len = start + 1;
619 1.1 bouyer start = 0;
620 1.1 bouyer loc = skpc(0xff, len, &bbp[start]);
621 1.1 bouyer if (loc == 0) {
622 1.1 bouyer printf("start = %d, len = %d, fs = %s\n",
623 1.1 bouyer start, len, fs->e2fs_fsmnt);
624 1.1 bouyer panic("ext2fs_alloccg: map corrupted");
625 1.1 bouyer /* NOTREACHED */
626 1.1 bouyer }
627 1.1 bouyer }
628 1.1 bouyer i = start + len - loc;
629 1.1 bouyer map = bbp[i];
630 1.1 bouyer bno = i * NBBY;
631 1.1 bouyer for (i = 1; i < (1 << NBBY); i <<= 1, bno++) {
632 1.1 bouyer if ((map & i) == 0)
633 1.1 bouyer return (bno);
634 1.1 bouyer }
635 1.1 bouyer printf("fs = %s\n", fs->e2fs_fsmnt);
636 1.1 bouyer panic("ext2fs_mapsearch: block not in map");
637 1.1 bouyer /* NOTREACHED */
638 1.1 bouyer }
639 1.1 bouyer
640 1.1 bouyer /*
641 1.1 bouyer * Fserr prints the name of a file system with an error diagnostic.
642 1.23 perry *
643 1.1 bouyer * The form of the error message is:
644 1.1 bouyer * fs: error message
645 1.1 bouyer */
646 1.1 bouyer static void
647 1.26 xtraeme ext2fs_fserr(struct m_ext2fs *fs, u_int uid, const char *cp)
648 1.1 bouyer {
649 1.1 bouyer
650 1.1 bouyer log(LOG_ERR, "uid %d on %s: %s\n", uid, fs->e2fs_fsmnt, cp);
651 1.1 bouyer }
652