ffs_inode.c revision 1.17 1 1.17 mrg /* $NetBSD: ffs_inode.c,v 1.17 1998/02/10 14:10:55 mrg Exp $ */
2 1.5 cgd
3 1.1 mycroft /*
4 1.1 mycroft * Copyright (c) 1982, 1986, 1989, 1993
5 1.1 mycroft * The Regents of the University of California. All rights reserved.
6 1.1 mycroft *
7 1.1 mycroft * Redistribution and use in source and binary forms, with or without
8 1.1 mycroft * modification, are permitted provided that the following conditions
9 1.1 mycroft * are met:
10 1.1 mycroft * 1. Redistributions of source code must retain the above copyright
11 1.1 mycroft * notice, this list of conditions and the following disclaimer.
12 1.1 mycroft * 2. Redistributions in binary form must reproduce the above copyright
13 1.1 mycroft * notice, this list of conditions and the following disclaimer in the
14 1.1 mycroft * documentation and/or other materials provided with the distribution.
15 1.1 mycroft * 3. All advertising materials mentioning features or use of this software
16 1.1 mycroft * must display the following acknowledgement:
17 1.1 mycroft * This product includes software developed by the University of
18 1.1 mycroft * California, Berkeley and its contributors.
19 1.1 mycroft * 4. Neither the name of the University nor the names of its contributors
20 1.1 mycroft * may be used to endorse or promote products derived from this software
21 1.1 mycroft * without specific prior written permission.
22 1.1 mycroft *
23 1.1 mycroft * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24 1.1 mycroft * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25 1.1 mycroft * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26 1.1 mycroft * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27 1.1 mycroft * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28 1.1 mycroft * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29 1.1 mycroft * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30 1.1 mycroft * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31 1.1 mycroft * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32 1.1 mycroft * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33 1.1 mycroft * SUCH DAMAGE.
34 1.1 mycroft *
35 1.7 mycroft * @(#)ffs_inode.c 8.8 (Berkeley) 10/19/94
36 1.1 mycroft */
37 1.17 mrg
38 1.17 mrg #include "opt_uvm.h"
39 1.1 mycroft
40 1.1 mycroft #include <sys/param.h>
41 1.1 mycroft #include <sys/systm.h>
42 1.1 mycroft #include <sys/mount.h>
43 1.1 mycroft #include <sys/proc.h>
44 1.1 mycroft #include <sys/file.h>
45 1.1 mycroft #include <sys/buf.h>
46 1.1 mycroft #include <sys/vnode.h>
47 1.1 mycroft #include <sys/kernel.h>
48 1.1 mycroft #include <sys/malloc.h>
49 1.1 mycroft #include <sys/trace.h>
50 1.1 mycroft #include <sys/resourcevar.h>
51 1.1 mycroft
52 1.1 mycroft #include <vm/vm.h>
53 1.1 mycroft
54 1.16 mrg #if defined(UVM)
55 1.16 mrg #include <uvm/uvm_extern.h>
56 1.16 mrg #endif
57 1.16 mrg
58 1.1 mycroft #include <ufs/ufs/quota.h>
59 1.1 mycroft #include <ufs/ufs/inode.h>
60 1.1 mycroft #include <ufs/ufs/ufsmount.h>
61 1.1 mycroft #include <ufs/ufs/ufs_extern.h>
62 1.1 mycroft
63 1.1 mycroft #include <ufs/ffs/fs.h>
64 1.1 mycroft #include <ufs/ffs/ffs_extern.h>
65 1.1 mycroft
66 1.1 mycroft static int ffs_indirtrunc __P((struct inode *, daddr_t, daddr_t, daddr_t, int,
67 1.9 christos long *));
68 1.1 mycroft
69 1.9 christos void
70 1.1 mycroft ffs_init()
71 1.1 mycroft {
72 1.9 christos ufs_init();
73 1.1 mycroft }
74 1.1 mycroft
75 1.1 mycroft /*
76 1.13 tls * Update the access, modified, and inode change times as specified
77 1.13 tls * by the IN_ACCESS, IN_UPDATE, and IN_CHANGE flags respectively.
78 1.13 tls * The IN_MODIFIED flag is used to specify that the inode needs to be
79 1.13 tls * updated but that the times have already been set. The access
80 1.13 tls * and modified times are taken from the second and third parameters;
81 1.13 tls * the inode change time is always taken from the current time. If
82 1.13 tls * waitfor is set, then wait for the disk write of the inode to
83 1.1 mycroft * complete.
84 1.1 mycroft */
85 1.13 tls
86 1.1 mycroft int
87 1.9 christos ffs_update(v)
88 1.9 christos void *v;
89 1.9 christos {
90 1.1 mycroft struct vop_update_args /* {
91 1.1 mycroft struct vnode *a_vp;
92 1.10 mycroft struct timespec *a_access;
93 1.10 mycroft struct timespec *a_modify;
94 1.1 mycroft int a_waitfor;
95 1.9 christos } */ *ap = v;
96 1.1 mycroft register struct fs *fs;
97 1.1 mycroft struct buf *bp;
98 1.1 mycroft struct inode *ip;
99 1.1 mycroft int error;
100 1.11 mycroft struct timespec ts;
101 1.1 mycroft
102 1.11 mycroft if (ap->a_vp->v_mount->mnt_flag & MNT_RDONLY)
103 1.11 mycroft return (0);
104 1.1 mycroft ip = VTOI(ap->a_vp);
105 1.11 mycroft TIMEVAL_TO_TIMESPEC(&time, &ts);
106 1.14 bouyer FFS_ITIMES(ip, ap->a_access, ap->a_modify, &ts);
107 1.11 mycroft if ((ip->i_flag & IN_MODIFIED) == 0)
108 1.1 mycroft return (0);
109 1.11 mycroft ip->i_flag &= ~IN_MODIFIED;
110 1.1 mycroft fs = ip->i_fs;
111 1.1 mycroft /*
112 1.1 mycroft * Ensure that uid and gid are correct. This is a temporary
113 1.1 mycroft * fix until fsck has been changed to do the update.
114 1.1 mycroft */
115 1.1 mycroft if (fs->fs_inodefmt < FS_44INODEFMT) { /* XXX */
116 1.14 bouyer ip->i_din.ffs_din.di_ouid = ip->i_ffs_uid; /* XXX */
117 1.14 bouyer ip->i_din.ffs_din.di_ogid = ip->i_ffs_gid; /* XXX */
118 1.1 mycroft } /* XXX */
119 1.9 christos error = bread(ip->i_devvp,
120 1.9 christos fsbtodb(fs, ino_to_fsba(fs, ip->i_number)),
121 1.9 christos (int)fs->fs_bsize, NOCRED, &bp);
122 1.9 christos if (error) {
123 1.1 mycroft brelse(bp);
124 1.1 mycroft return (error);
125 1.1 mycroft }
126 1.1 mycroft *((struct dinode *)bp->b_data +
127 1.14 bouyer ino_to_fsbo(fs, ip->i_number)) = ip->i_din.ffs_din;
128 1.1 mycroft if (ap->a_waitfor)
129 1.1 mycroft return (bwrite(bp));
130 1.1 mycroft else {
131 1.1 mycroft bdwrite(bp);
132 1.1 mycroft return (0);
133 1.1 mycroft }
134 1.1 mycroft }
135 1.1 mycroft
136 1.1 mycroft #define SINGLE 0 /* index of single indirect block */
137 1.1 mycroft #define DOUBLE 1 /* index of double indirect block */
138 1.1 mycroft #define TRIPLE 2 /* index of triple indirect block */
139 1.1 mycroft /*
140 1.1 mycroft * Truncate the inode oip to at most length size, freeing the
141 1.1 mycroft * disk blocks.
142 1.1 mycroft */
143 1.9 christos int
144 1.9 christos ffs_truncate(v)
145 1.9 christos void *v;
146 1.9 christos {
147 1.1 mycroft struct vop_truncate_args /* {
148 1.1 mycroft struct vnode *a_vp;
149 1.1 mycroft off_t a_length;
150 1.1 mycroft int a_flags;
151 1.1 mycroft struct ucred *a_cred;
152 1.1 mycroft struct proc *a_p;
153 1.9 christos } */ *ap = v;
154 1.1 mycroft register struct vnode *ovp = ap->a_vp;
155 1.1 mycroft register daddr_t lastblock;
156 1.1 mycroft register struct inode *oip;
157 1.1 mycroft daddr_t bn, lbn, lastiblock[NIADDR], indir_lbn[NIADDR];
158 1.1 mycroft daddr_t oldblks[NDADDR + NIADDR], newblks[NDADDR + NIADDR];
159 1.1 mycroft off_t length = ap->a_length;
160 1.1 mycroft register struct fs *fs;
161 1.1 mycroft struct buf *bp;
162 1.1 mycroft int offset, size, level;
163 1.1 mycroft long count, nblocks, vflags, blocksreleased = 0;
164 1.10 mycroft struct timespec ts;
165 1.1 mycroft register int i;
166 1.1 mycroft int aflags, error, allerror;
167 1.1 mycroft off_t osize;
168 1.1 mycroft
169 1.2 pk if (length < 0)
170 1.3 mycroft return (EINVAL);
171 1.1 mycroft oip = VTOI(ovp);
172 1.10 mycroft TIMEVAL_TO_TIMESPEC(&time, &ts);
173 1.1 mycroft if (ovp->v_type == VLNK &&
174 1.14 bouyer (oip->i_ffs_size < ovp->v_mount->mnt_maxsymlinklen ||
175 1.4 mycroft (ovp->v_mount->mnt_maxsymlinklen == 0 &&
176 1.14 bouyer oip->i_din.ffs_din.di_blocks == 0))) {
177 1.1 mycroft #ifdef DIAGNOSTIC
178 1.1 mycroft if (length != 0)
179 1.1 mycroft panic("ffs_truncate: partial truncate of symlink");
180 1.1 mycroft #endif
181 1.14 bouyer bzero((char *)&oip->i_ffs_shortlink, (u_int)oip->i_ffs_size);
182 1.14 bouyer oip->i_ffs_size = 0;
183 1.1 mycroft oip->i_flag |= IN_CHANGE | IN_UPDATE;
184 1.10 mycroft return (VOP_UPDATE(ovp, &ts, &ts, 1));
185 1.1 mycroft }
186 1.14 bouyer if (oip->i_ffs_size == length) {
187 1.1 mycroft oip->i_flag |= IN_CHANGE | IN_UPDATE;
188 1.10 mycroft return (VOP_UPDATE(ovp, &ts, &ts, 0));
189 1.1 mycroft }
190 1.1 mycroft #ifdef QUOTA
191 1.9 christos if ((error = getinoquota(oip)) != 0)
192 1.1 mycroft return (error);
193 1.1 mycroft #endif
194 1.16 mrg #if defined(UVM)
195 1.16 mrg uvm_vnp_setsize(ovp, length);
196 1.16 mrg #else
197 1.15 drochner vnode_pager_setsize(ovp, length);
198 1.16 mrg #endif
199 1.1 mycroft fs = oip->i_fs;
200 1.14 bouyer osize = oip->i_ffs_size;
201 1.1 mycroft /*
202 1.1 mycroft * Lengthen the size of the file. We must ensure that the
203 1.1 mycroft * last byte of the file is allocated. Since the smallest
204 1.6 mycroft * value of osize is 0, length will be at least 1.
205 1.1 mycroft */
206 1.1 mycroft if (osize < length) {
207 1.6 mycroft if (length > fs->fs_maxfilesize)
208 1.6 mycroft return (EFBIG);
209 1.1 mycroft offset = blkoff(fs, length - 1);
210 1.1 mycroft lbn = lblkno(fs, length - 1);
211 1.1 mycroft aflags = B_CLRBUF;
212 1.1 mycroft if (ap->a_flags & IO_SYNC)
213 1.1 mycroft aflags |= B_SYNC;
214 1.9 christos error = ffs_balloc(oip, lbn, offset + 1, ap->a_cred, &bp,
215 1.9 christos aflags);
216 1.9 christos if (error)
217 1.1 mycroft return (error);
218 1.14 bouyer oip->i_ffs_size = length;
219 1.16 mrg #if defined(UVM)
220 1.16 mrg (void) uvm_vnp_uncache(ovp);
221 1.16 mrg #else
222 1.1 mycroft (void) vnode_pager_uncache(ovp);
223 1.16 mrg #endif
224 1.1 mycroft if (aflags & B_SYNC)
225 1.1 mycroft bwrite(bp);
226 1.1 mycroft else
227 1.1 mycroft bawrite(bp);
228 1.1 mycroft oip->i_flag |= IN_CHANGE | IN_UPDATE;
229 1.10 mycroft return (VOP_UPDATE(ovp, &ts, &ts, 1));
230 1.1 mycroft }
231 1.1 mycroft /*
232 1.1 mycroft * Shorten the size of the file. If the file is not being
233 1.1 mycroft * truncated to a block boundry, the contents of the
234 1.1 mycroft * partial block following the end of the file must be
235 1.1 mycroft * zero'ed in case it ever become accessable again because
236 1.1 mycroft * of subsequent file growth.
237 1.1 mycroft */
238 1.1 mycroft offset = blkoff(fs, length);
239 1.1 mycroft if (offset == 0) {
240 1.14 bouyer oip->i_ffs_size = length;
241 1.1 mycroft } else {
242 1.1 mycroft lbn = lblkno(fs, length);
243 1.1 mycroft aflags = B_CLRBUF;
244 1.1 mycroft if (ap->a_flags & IO_SYNC)
245 1.1 mycroft aflags |= B_SYNC;
246 1.9 christos error = ffs_balloc(oip, lbn, offset, ap->a_cred, &bp, aflags);
247 1.9 christos if (error)
248 1.1 mycroft return (error);
249 1.14 bouyer oip->i_ffs_size = length;
250 1.1 mycroft size = blksize(fs, oip, lbn);
251 1.16 mrg #if defined(UVM)
252 1.16 mrg (void) uvm_vnp_uncache(ovp);
253 1.16 mrg #else
254 1.1 mycroft (void) vnode_pager_uncache(ovp);
255 1.16 mrg #endif
256 1.1 mycroft bzero((char *)bp->b_data + offset, (u_int)(size - offset));
257 1.1 mycroft allocbuf(bp, size);
258 1.1 mycroft if (aflags & B_SYNC)
259 1.1 mycroft bwrite(bp);
260 1.1 mycroft else
261 1.1 mycroft bawrite(bp);
262 1.1 mycroft }
263 1.1 mycroft /*
264 1.1 mycroft * Calculate index into inode's block list of
265 1.1 mycroft * last direct and indirect blocks (if any)
266 1.1 mycroft * which we want to keep. Lastblock is -1 when
267 1.1 mycroft * the file is truncated to 0.
268 1.1 mycroft */
269 1.1 mycroft lastblock = lblkno(fs, length + fs->fs_bsize - 1) - 1;
270 1.1 mycroft lastiblock[SINGLE] = lastblock - NDADDR;
271 1.1 mycroft lastiblock[DOUBLE] = lastiblock[SINGLE] - NINDIR(fs);
272 1.1 mycroft lastiblock[TRIPLE] = lastiblock[DOUBLE] - NINDIR(fs) * NINDIR(fs);
273 1.1 mycroft nblocks = btodb(fs->fs_bsize);
274 1.1 mycroft /*
275 1.1 mycroft * Update file and block pointers on disk before we start freeing
276 1.1 mycroft * blocks. If we crash before free'ing blocks below, the blocks
277 1.1 mycroft * will be returned to the free list. lastiblock values are also
278 1.1 mycroft * normalized to -1 for calls to ffs_indirtrunc below.
279 1.1 mycroft */
280 1.14 bouyer bcopy((caddr_t)&oip->i_ffs_db[0], (caddr_t)oldblks, sizeof oldblks);
281 1.1 mycroft for (level = TRIPLE; level >= SINGLE; level--)
282 1.1 mycroft if (lastiblock[level] < 0) {
283 1.14 bouyer oip->i_ffs_ib[level] = 0;
284 1.1 mycroft lastiblock[level] = -1;
285 1.1 mycroft }
286 1.1 mycroft for (i = NDADDR - 1; i > lastblock; i--)
287 1.14 bouyer oip->i_ffs_db[i] = 0;
288 1.1 mycroft oip->i_flag |= IN_CHANGE | IN_UPDATE;
289 1.10 mycroft if ((error = VOP_UPDATE(ovp, &ts, &ts, 1)) != 0)
290 1.1 mycroft allerror = error;
291 1.1 mycroft /*
292 1.1 mycroft * Having written the new inode to disk, save its new configuration
293 1.1 mycroft * and put back the old block pointers long enough to process them.
294 1.1 mycroft * Note that we save the new block configuration so we can check it
295 1.1 mycroft * when we are done.
296 1.1 mycroft */
297 1.14 bouyer bcopy((caddr_t)&oip->i_ffs_db[0], (caddr_t)newblks, sizeof newblks);
298 1.14 bouyer bcopy((caddr_t)oldblks, (caddr_t)&oip->i_ffs_db[0], sizeof oldblks);
299 1.14 bouyer oip->i_ffs_size = osize;
300 1.1 mycroft vflags = ((length > 0) ? V_SAVE : 0) | V_SAVEMETA;
301 1.1 mycroft allerror = vinvalbuf(ovp, vflags, ap->a_cred, ap->a_p, 0, 0);
302 1.1 mycroft
303 1.1 mycroft /*
304 1.1 mycroft * Indirect blocks first.
305 1.1 mycroft */
306 1.1 mycroft indir_lbn[SINGLE] = -NDADDR;
307 1.1 mycroft indir_lbn[DOUBLE] = indir_lbn[SINGLE] - NINDIR(fs) - 1;
308 1.1 mycroft indir_lbn[TRIPLE] = indir_lbn[DOUBLE] - NINDIR(fs) * NINDIR(fs) - 1;
309 1.1 mycroft for (level = TRIPLE; level >= SINGLE; level--) {
310 1.14 bouyer bn = oip->i_ffs_ib[level];
311 1.1 mycroft if (bn != 0) {
312 1.1 mycroft error = ffs_indirtrunc(oip, indir_lbn[level],
313 1.1 mycroft fsbtodb(fs, bn), lastiblock[level], level, &count);
314 1.1 mycroft if (error)
315 1.1 mycroft allerror = error;
316 1.1 mycroft blocksreleased += count;
317 1.1 mycroft if (lastiblock[level] < 0) {
318 1.14 bouyer oip->i_ffs_ib[level] = 0;
319 1.1 mycroft ffs_blkfree(oip, bn, fs->fs_bsize);
320 1.1 mycroft blocksreleased += nblocks;
321 1.1 mycroft }
322 1.1 mycroft }
323 1.1 mycroft if (lastiblock[level] >= 0)
324 1.1 mycroft goto done;
325 1.1 mycroft }
326 1.1 mycroft
327 1.1 mycroft /*
328 1.1 mycroft * All whole direct blocks or frags.
329 1.1 mycroft */
330 1.1 mycroft for (i = NDADDR - 1; i > lastblock; i--) {
331 1.1 mycroft register long bsize;
332 1.1 mycroft
333 1.14 bouyer bn = oip->i_ffs_db[i];
334 1.1 mycroft if (bn == 0)
335 1.1 mycroft continue;
336 1.14 bouyer oip->i_ffs_db[i] = 0;
337 1.1 mycroft bsize = blksize(fs, oip, i);
338 1.1 mycroft ffs_blkfree(oip, bn, bsize);
339 1.1 mycroft blocksreleased += btodb(bsize);
340 1.1 mycroft }
341 1.1 mycroft if (lastblock < 0)
342 1.1 mycroft goto done;
343 1.1 mycroft
344 1.1 mycroft /*
345 1.1 mycroft * Finally, look for a change in size of the
346 1.1 mycroft * last direct block; release any frags.
347 1.1 mycroft */
348 1.14 bouyer bn = oip->i_ffs_db[lastblock];
349 1.1 mycroft if (bn != 0) {
350 1.1 mycroft long oldspace, newspace;
351 1.1 mycroft
352 1.1 mycroft /*
353 1.1 mycroft * Calculate amount of space we're giving
354 1.1 mycroft * back as old block size minus new block size.
355 1.1 mycroft */
356 1.1 mycroft oldspace = blksize(fs, oip, lastblock);
357 1.14 bouyer oip->i_ffs_size = length;
358 1.1 mycroft newspace = blksize(fs, oip, lastblock);
359 1.1 mycroft if (newspace == 0)
360 1.1 mycroft panic("itrunc: newspace");
361 1.1 mycroft if (oldspace - newspace > 0) {
362 1.1 mycroft /*
363 1.1 mycroft * Block number of space to be free'd is
364 1.1 mycroft * the old block # plus the number of frags
365 1.1 mycroft * required for the storage we're keeping.
366 1.1 mycroft */
367 1.1 mycroft bn += numfrags(fs, newspace);
368 1.1 mycroft ffs_blkfree(oip, bn, oldspace - newspace);
369 1.1 mycroft blocksreleased += btodb(oldspace - newspace);
370 1.1 mycroft }
371 1.1 mycroft }
372 1.1 mycroft done:
373 1.1 mycroft #ifdef DIAGNOSTIC
374 1.1 mycroft for (level = SINGLE; level <= TRIPLE; level++)
375 1.14 bouyer if (newblks[NDADDR + level] != oip->i_ffs_ib[level])
376 1.1 mycroft panic("itrunc1");
377 1.1 mycroft for (i = 0; i < NDADDR; i++)
378 1.14 bouyer if (newblks[i] != oip->i_ffs_db[i])
379 1.1 mycroft panic("itrunc2");
380 1.1 mycroft if (length == 0 &&
381 1.1 mycroft (ovp->v_dirtyblkhd.lh_first || ovp->v_cleanblkhd.lh_first))
382 1.1 mycroft panic("itrunc3");
383 1.1 mycroft #endif /* DIAGNOSTIC */
384 1.1 mycroft /*
385 1.1 mycroft * Put back the real size.
386 1.1 mycroft */
387 1.14 bouyer oip->i_ffs_size = length;
388 1.14 bouyer oip->i_ffs_blocks -= blocksreleased;
389 1.14 bouyer if (oip->i_ffs_blocks < 0) /* sanity */
390 1.14 bouyer oip->i_ffs_blocks = 0;
391 1.1 mycroft oip->i_flag |= IN_CHANGE;
392 1.1 mycroft #ifdef QUOTA
393 1.1 mycroft (void) chkdq(oip, -blocksreleased, NOCRED, 0);
394 1.1 mycroft #endif
395 1.1 mycroft return (allerror);
396 1.1 mycroft }
397 1.1 mycroft
398 1.1 mycroft /*
399 1.1 mycroft * Release blocks associated with the inode ip and stored in the indirect
400 1.1 mycroft * block bn. Blocks are free'd in LIFO order up to (but not including)
401 1.1 mycroft * lastbn. If level is greater than SINGLE, the block is an indirect block
402 1.1 mycroft * and recursive calls to indirtrunc must be used to cleanse other indirect
403 1.1 mycroft * blocks.
404 1.1 mycroft *
405 1.1 mycroft * NB: triple indirect blocks are untested.
406 1.1 mycroft */
407 1.1 mycroft static int
408 1.1 mycroft ffs_indirtrunc(ip, lbn, dbn, lastbn, level, countp)
409 1.1 mycroft register struct inode *ip;
410 1.1 mycroft daddr_t lbn, lastbn;
411 1.1 mycroft daddr_t dbn;
412 1.1 mycroft int level;
413 1.1 mycroft long *countp;
414 1.1 mycroft {
415 1.1 mycroft register int i;
416 1.1 mycroft struct buf *bp;
417 1.1 mycroft register struct fs *fs = ip->i_fs;
418 1.1 mycroft register daddr_t *bap;
419 1.1 mycroft struct vnode *vp;
420 1.12 thorpej daddr_t *copy = NULL, nb, nlbn, last;
421 1.1 mycroft long blkcount, factor;
422 1.1 mycroft int nblocks, blocksreleased = 0;
423 1.1 mycroft int error = 0, allerror = 0;
424 1.1 mycroft
425 1.1 mycroft /*
426 1.1 mycroft * Calculate index in current block of last
427 1.1 mycroft * block to be kept. -1 indicates the entire
428 1.1 mycroft * block so we need not calculate the index.
429 1.1 mycroft */
430 1.1 mycroft factor = 1;
431 1.1 mycroft for (i = SINGLE; i < level; i++)
432 1.1 mycroft factor *= NINDIR(fs);
433 1.1 mycroft last = lastbn;
434 1.1 mycroft if (lastbn > 0)
435 1.1 mycroft last /= factor;
436 1.1 mycroft nblocks = btodb(fs->fs_bsize);
437 1.1 mycroft /*
438 1.1 mycroft * Get buffer of block pointers, zero those entries corresponding
439 1.1 mycroft * to blocks to be free'd, and update on disk copy first. Since
440 1.1 mycroft * double(triple) indirect before single(double) indirect, calls
441 1.1 mycroft * to bmap on these blocks will fail. However, we already have
442 1.1 mycroft * the on disk address, so we have to set the b_blkno field
443 1.1 mycroft * explicitly instead of letting bread do everything for us.
444 1.1 mycroft */
445 1.1 mycroft vp = ITOV(ip);
446 1.1 mycroft bp = getblk(vp, lbn, (int)fs->fs_bsize, 0, 0);
447 1.1 mycroft if (bp->b_flags & (B_DONE | B_DELWRI)) {
448 1.1 mycroft /* Braces must be here in case trace evaluates to nothing. */
449 1.1 mycroft trace(TR_BREADHIT, pack(vp, fs->fs_bsize), lbn);
450 1.1 mycroft } else {
451 1.1 mycroft trace(TR_BREADMISS, pack(vp, fs->fs_bsize), lbn);
452 1.1 mycroft curproc->p_stats->p_ru.ru_inblock++; /* pay for read */
453 1.1 mycroft bp->b_flags |= B_READ;
454 1.1 mycroft if (bp->b_bcount > bp->b_bufsize)
455 1.1 mycroft panic("ffs_indirtrunc: bad buffer size");
456 1.1 mycroft bp->b_blkno = dbn;
457 1.1 mycroft VOP_STRATEGY(bp);
458 1.1 mycroft error = biowait(bp);
459 1.1 mycroft }
460 1.1 mycroft if (error) {
461 1.1 mycroft brelse(bp);
462 1.1 mycroft *countp = 0;
463 1.1 mycroft return (error);
464 1.1 mycroft }
465 1.1 mycroft
466 1.1 mycroft bap = (daddr_t *)bp->b_data;
467 1.12 thorpej if (lastbn != -1) {
468 1.12 thorpej MALLOC(copy, daddr_t *, fs->fs_bsize, M_TEMP, M_WAITOK);
469 1.12 thorpej bcopy((caddr_t)bap, (caddr_t)copy, (u_int)fs->fs_bsize);
470 1.12 thorpej bzero((caddr_t)&bap[last + 1],
471 1.12 thorpej (u_int)(NINDIR(fs) - (last + 1)) * sizeof (daddr_t));
472 1.12 thorpej error = bwrite(bp);
473 1.12 thorpej if (error)
474 1.12 thorpej allerror = error;
475 1.12 thorpej bap = copy;
476 1.12 thorpej }
477 1.1 mycroft
478 1.1 mycroft /*
479 1.1 mycroft * Recursively free totally unused blocks.
480 1.1 mycroft */
481 1.1 mycroft for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
482 1.1 mycroft i--, nlbn += factor) {
483 1.1 mycroft nb = bap[i];
484 1.1 mycroft if (nb == 0)
485 1.1 mycroft continue;
486 1.1 mycroft if (level > SINGLE) {
487 1.9 christos error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
488 1.9 christos (daddr_t)-1, level - 1,
489 1.9 christos &blkcount);
490 1.9 christos if (error)
491 1.1 mycroft allerror = error;
492 1.1 mycroft blocksreleased += blkcount;
493 1.1 mycroft }
494 1.1 mycroft ffs_blkfree(ip, nb, fs->fs_bsize);
495 1.1 mycroft blocksreleased += nblocks;
496 1.1 mycroft }
497 1.1 mycroft
498 1.1 mycroft /*
499 1.1 mycroft * Recursively free last partial block.
500 1.1 mycroft */
501 1.1 mycroft if (level > SINGLE && lastbn >= 0) {
502 1.1 mycroft last = lastbn % factor;
503 1.1 mycroft nb = bap[i];
504 1.1 mycroft if (nb != 0) {
505 1.9 christos error = ffs_indirtrunc(ip, nlbn, fsbtodb(fs, nb),
506 1.9 christos last, level - 1, &blkcount);
507 1.9 christos if (error)
508 1.1 mycroft allerror = error;
509 1.1 mycroft blocksreleased += blkcount;
510 1.1 mycroft }
511 1.1 mycroft }
512 1.12 thorpej
513 1.12 thorpej if (copy != NULL) {
514 1.12 thorpej FREE(copy, M_TEMP);
515 1.12 thorpej } else {
516 1.12 thorpej bp->b_flags |= B_INVAL;
517 1.12 thorpej brelse(bp);
518 1.12 thorpej }
519 1.12 thorpej
520 1.1 mycroft *countp = blocksreleased;
521 1.1 mycroft return (allerror);
522 1.1 mycroft }
523