kernel/ext2fs: Fix -Wundef.
[dragonfly.git] / sys / gnu / vfs / ext2fs / ext2_inode.c
1 /*
2  *  modified for Lites 1.1
3  *
4  *  Aug 1995, Godmar Back (gback@cs.utah.edu)
5  *  University of Utah, Department of Computer Science
6  */
7 /*
8  * Copyright (c) 1982, 1986, 1989, 1993
9  *      The Regents of the University of California.  All rights reserved.
10  *
11  * Redistribution and use in source and binary forms, with or without
12  * modification, are permitted provided that the following conditions
13  * are met:
14  * 1. Redistributions of source code must retain the above copyright
15  *    notice, this list of conditions and the following disclaimer.
16  * 2. Redistributions in binary form must reproduce the above copyright
17  *    notice, this list of conditions and the following disclaimer in the
18  *    documentation and/or other materials provided with the distribution.
19  * 3. Neither the name of the University nor the names of its contributors
20  *    may be used to endorse or promote products derived from this software
21  *    without specific prior written permission.
22  *
23  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
24  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
25  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
26  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
27  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
28  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
29  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
30  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
32  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
33  * SUCH DAMAGE.
34  *
35  *      @(#)ext2_inode.c        8.5 (Berkeley) 12/30/93
36  * $FreeBSD: src/sys/gnu/ext2fs/ext2_inode.c,v 1.24.2.1 2000/08/03 00:52:57 peter Exp $
37  */
38
39 #include "opt_quota.h"
40
41 #include <sys/param.h>
42 #include <sys/systm.h>
43 #include <sys/mount.h>
44 #include <sys/buf.h>
45 #include <sys/vnode.h>
46 #include <sys/malloc.h>
47
48 #include <vm/vm.h>
49 #include <vm/vm_extern.h>
50
51 #include <sys/buf2.h>
52
53 #include "quota.h"
54 #include "inode.h"
55 #include "ext2_mount.h"
56
57 #include "ext2_fs.h"
58 #include "ext2_fs_sb.h"
59 #include "fs.h"
60 #include "ext2_extern.h"
61
62 static int ext2_indirtrunc (struct inode *, daddr_t, off_t, daddr_t,
63                             int, long *);
64
65 /*
66  * Update the access, modified, and inode change times as specified by the
67  * IN_ACCESS, IN_UPDATE, and IN_CHANGE flags respectively.  Write the inode
68  * to disk if the IN_MODIFIED flag is set (it may be set initially, or by
69  * the timestamp update).  The IN_LAZYMOD flag is set to force a write
70  * later if not now.  If we write now, then clear both IN_MODIFIED and
71  * IN_LAZYMOD to reflect the presumably successful write, and if waitfor is
72  * set, then wait for the write to complete.
73  */
74 int
75 ext2_update(struct vnode *vp, int waitfor)
76 {
77         struct ext2_sb_info *fs;
78         struct buf *bp;
79         struct inode *ip;
80         int error;
81
82         ext2_itimes(vp);
83         ip = VTOI(vp);
84         if ((ip->i_flag & IN_MODIFIED) == 0)
85                 return (0);
86         ip->i_flag &= ~(IN_LAZYMOD | IN_MODIFIED);
87         if (vp->v_mount->mnt_flag & MNT_RDONLY)
88                 return (0);
89         fs = ip->i_e2fs;
90         error = bread(ip->i_devvp,
91                       fsbtodoff(fs, ino_to_fsba(fs, ip->i_number)),
92                       (int)fs->s_blocksize, &bp);
93         if (error) {
94                 brelse(bp);
95                 return (error);
96         }
97         ext2_di2ei( &ip->i_din, (struct ext2_inode *) ((char *)bp->b_data + EXT2_INODE_SIZE(fs) *
98             ino_to_fsbo(fs, ip->i_number)));
99 /*
100         if (waitfor && (vp->v_mount->mnt_flag & MNT_ASYNC) == 0)
101                 return (bwrite(bp));
102         else {
103 */
104                 bdwrite(bp);
105                 return (0);
106 /*
107         }
108 */
109 }
110
111 #define SINGLE  0       /* index of single indirect block */
112 #define DOUBLE  1       /* index of double indirect block */
113 #define TRIPLE  2       /* index of triple indirect block */
114 /*
115  * Truncate the inode oip to at most length size, freeing the
116  * disk blocks.
117  */
118 int
119 ext2_truncate(struct vnode *vp, off_t length, int flags, struct ucred *cred)
120 {
121         struct vnode *ovp = vp;
122         daddr_t lastblock;
123         struct inode *oip;
124         daddr_t bn, lbn, lastiblock[NIADDR], indir_lbn[NIADDR];
125         daddr_t oldblks[NDADDR + NIADDR], newblks[NDADDR + NIADDR];
126         struct ext2_sb_info *fs;
127         struct buf *bp;
128         int offset, size, level;
129         long count, nblocks, blocksreleased = 0;
130         int i;
131         int aflags, error, allerror;
132         off_t osize;
133 /*
134 kprintf("ext2_truncate called %d to %d\n", VTOI(ovp)->i_number, length);
135 */      /*
136          * negative file sizes will totally break the code below and
137          * are not meaningful anyways.
138          */
139         if (length < 0)
140             return EFBIG;
141
142         oip = VTOI(ovp);
143         if (ovp->v_type == VLNK &&
144             oip->i_size < ovp->v_mount->mnt_maxsymlinklen) {
145 #ifdef DIAGNOSTIC
146                 if (length != 0)
147                         panic("ext2_truncate: partial truncate of symlink");
148 #endif
149                 bzero((char *)&oip->i_shortlink, (u_int)oip->i_size);
150                 oip->i_size = 0;
151                 oip->i_flag |= IN_CHANGE | IN_UPDATE;
152                 return (EXT2_UPDATE(ovp, 1));
153         }
154         if (oip->i_size == length) {
155                 oip->i_flag |= IN_CHANGE | IN_UPDATE;
156                 return (EXT2_UPDATE(ovp, 0));
157         }
158 #ifdef QUOTA
159         if ((error = ext2_getinoquota(oip)) != 0)
160                 return (error);
161 #endif
162         fs = oip->i_e2fs;
163         osize = oip->i_size;
164         ext2_discard_prealloc(oip);
165         /*
166          * Lengthen the size of the file. We must ensure that the
167          * last byte of the file is allocated. Since the smallest
168          * value of osize is 0, length will be at least 1.
169          */
170         if (osize < length) {
171                 offset = blkoff(fs, length - 1);
172                 lbn = lblkno(fs, length - 1);
173                 aflags = B_CLRBUF;
174                 if (flags & IO_SYNC)
175                         aflags |= B_SYNC;
176                 vnode_pager_setsize(ovp, length);
177                 error = ext2_balloc(oip, lbn, offset + 1, cred, &bp, aflags);
178                 if (error) {
179                         vnode_pager_setsize(ovp, osize);
180                         return (error);
181                 }
182                 oip->i_size = length;
183                 if (aflags & IO_SYNC)
184                         bwrite(bp);
185                 else
186                         bawrite(bp);
187                 oip->i_flag |= IN_CHANGE | IN_UPDATE;
188                 return (EXT2_UPDATE(ovp, 1));
189         }
190         /*
191          * Shorten the size of the file. If the file is not being
192          * truncated to a block boundry, the contents of the
193          * partial block following the end of the file must be
194          * zero'ed in case it ever become accessable again because
195          * of subsequent file growth.
196          */
197         /* I don't understand the comment above */
198         offset = blkoff(fs, length);
199         if (offset == 0) {
200                 oip->i_size = length;
201         } else {
202                 lbn = lblkno(fs, length);
203                 aflags = B_CLRBUF;
204                 if (flags & IO_SYNC)
205                         aflags |= B_SYNC;
206                 error = ext2_balloc(oip, lbn, offset, cred, &bp, aflags);
207                 if (error)
208                         return (error);
209                 oip->i_size = length;
210                 size = blksize(fs, oip, lbn);
211                 bzero((char *)bp->b_data + offset, (u_int)(size - offset));
212                 allocbuf(bp, size);
213                 if (aflags & IO_SYNC)
214                         bwrite(bp);
215                 else
216                         bawrite(bp);
217         }
218         /*
219          * Calculate index into inode's block list of
220          * last direct and indirect blocks (if any)
221          * which we want to keep.  Lastblock is -1 when
222          * the file is truncated to 0.
223          */
224         lastblock = lblkno(fs, length + fs->s_blocksize - 1) - 1;
225         lastiblock[SINGLE] = lastblock - NDADDR;
226         lastiblock[DOUBLE] = lastiblock[SINGLE] - NINDIR(fs);
227         lastiblock[TRIPLE] = lastiblock[DOUBLE] - NINDIR(fs) * NINDIR(fs);
228         nblocks = btodb(fs->s_blocksize);
229         /*
230          * Update file and block pointers on disk before we start freeing
231          * blocks.  If we crash before free'ing blocks below, the blocks
232          * will be returned to the free list.  lastiblock values are also
233          * normalized to -1 for calls to ext2_indirtrunc below.
234          */
235         bcopy((caddr_t)&oip->i_db[0], (caddr_t)oldblks, sizeof oldblks);
236         for (level = TRIPLE; level >= SINGLE; level--)
237                 if (lastiblock[level] < 0) {
238                         oip->i_ib[level] = 0;
239                         lastiblock[level] = -1;
240                 }
241         for (i = NDADDR - 1; i > lastblock; i--)
242                 oip->i_db[i] = 0;
243         oip->i_flag |= IN_CHANGE | IN_UPDATE;
244         allerror = EXT2_UPDATE(ovp, 1);
245
246         /*
247          * Having written the new inode to disk, save its new configuration
248          * and put back the old block pointers long enough to process them.
249          * Note that we save the new block configuration so we can check it
250          * when we are done.
251          */
252         bcopy((caddr_t)&oip->i_db[0], (caddr_t)newblks, sizeof newblks);
253         bcopy((caddr_t)oldblks, (caddr_t)&oip->i_db[0], sizeof oldblks);
254         oip->i_size = osize;
255         error = vtruncbuf(ovp, length, (int)fs->s_blocksize);
256         if (error && (allerror == 0))
257                 allerror = error;
258
259         /*
260          * Indirect blocks first.
261          */
262         indir_lbn[SINGLE] = -NDADDR;
263         indir_lbn[DOUBLE] = indir_lbn[SINGLE] - NINDIR(fs) - 1;
264         indir_lbn[TRIPLE] = indir_lbn[DOUBLE] - NINDIR(fs) * NINDIR(fs) - 1;
265         for (level = TRIPLE; level >= SINGLE; level--) {
266                 bn = oip->i_ib[level];
267                 if (bn != 0) {
268                         error = ext2_indirtrunc(oip, indir_lbn[level],
269                             fsbtodoff(fs, bn), lastiblock[level], level, &count);
270                         if (error)
271                                 allerror = error;
272                         blocksreleased += count;
273                         if (lastiblock[level] < 0) {
274                                 oip->i_ib[level] = 0;
275                                 ext2_blkfree(oip, bn, fs->s_frag_size);
276                                 blocksreleased += nblocks;
277                         }
278                 }
279                 if (lastiblock[level] >= 0)
280                         goto done;
281         }
282
283         /*
284          * All whole direct blocks or frags.
285          */
286         for (i = NDADDR - 1; i > lastblock; i--) {
287                 long bsize;
288
289                 bn = oip->i_db[i];
290                 if (bn == 0)
291                         continue;
292                 oip->i_db[i] = 0;
293                 bsize = blksize(fs, oip, i);
294                 ext2_blkfree(oip, bn, bsize);
295                 blocksreleased += btodb(bsize);
296         }
297         if (lastblock < 0)
298                 goto done;
299
300         /*
301          * Finally, look for a change in size of the
302          * last direct block; release any frags.
303          */
304         bn = oip->i_db[lastblock];
305         if (bn != 0) {
306                 long oldspace, newspace;
307
308                 /*
309                  * Calculate amount of space we're giving
310                  * back as old block size minus new block size.
311                  */
312                 oldspace = blksize(fs, oip, lastblock);
313                 oip->i_size = length;
314                 newspace = blksize(fs, oip, lastblock);
315                 if (newspace == 0)
316                         panic("itrunc: newspace");
317                 if (oldspace - newspace > 0) {
318                         /*
319                          * Block number of space to be free'd is
320                          * the old block # plus the number of frags
321                          * required for the storage we're keeping.
322                          */
323                         bn += numfrags(fs, newspace);
324                         ext2_blkfree(oip, bn, oldspace - newspace);
325                         blocksreleased += btodb(oldspace - newspace);
326                 }
327         }
328 done:
329 #ifdef DIAGNOSTIC
330         for (level = SINGLE; level <= TRIPLE; level++)
331                 if (newblks[NDADDR + level] != oip->i_ib[level])
332                         panic("itrunc1");
333         for (i = 0; i < NDADDR; i++)
334                 if (newblks[i] != oip->i_db[i])
335                         panic("itrunc2");
336         if (length == 0 && (!RB_EMPTY(&ovp->v_rbdirty_tree) ||
337                             !RB_EMPTY(&ovp->v_rbclean_tree)))
338                 panic("itrunc3");
339 #endif /* DIAGNOSTIC */
340         /*
341          * Put back the real size.
342          */
343         oip->i_size = length;
344         oip->i_blocks -= blocksreleased;
345         if (oip->i_blocks < 0)                  /* sanity */
346                 oip->i_blocks = 0;
347         oip->i_flag |= IN_CHANGE;
348         vnode_pager_setsize(ovp, length);
349 #ifdef QUOTA
350         ext2_chkdq(oip, -blocksreleased, NOCRED, 0);
351 #endif
352         return (allerror);
353 }
354
355 /*
356  * Release blocks associated with the inode ip and stored in the indirect
357  * block bn.  Blocks are free'd in LIFO order up to (but not including)
358  * lastbn.  If level is greater than SINGLE, the block is an indirect block
359  * and recursive calls to indirtrunc must be used to cleanse other indirect
360  * blocks.
361  *
362  * NB: triple indirect blocks are untested.
363  */
364
365 static int
366 ext2_indirtrunc(struct inode *ip, daddr_t lbn, off_t doffset, daddr_t lastbn,
367                 int level, long *countp)
368 {
369         int i;
370         struct buf *bp;
371         struct ext2_sb_info *fs = ip->i_e2fs;
372         daddr_t *bap;
373         struct vnode *vp;
374         daddr_t *copy, nb, nlbn, last;
375         long blkcount, factor;
376         int nblocks, blocksreleased = 0;
377         int error = 0, allerror = 0;
378
379         /*
380          * Calculate index in current block of last
381          * block to be kept.  -1 indicates the entire
382          * block so we need not calculate the index.
383          */
384         factor = 1;
385         for (i = SINGLE; i < level; i++)
386                 factor *= NINDIR(fs);
387         last = lastbn;
388         if (lastbn > 0)
389                 last /= factor;
390         nblocks = btodb(fs->s_blocksize);
391         /*
392          * Get buffer of block pointers, zero those entries corresponding
393          * to blocks to be free'd, and update on disk copy first.  Since
394          * double(triple) indirect before single(double) indirect, calls
395          * to bmap on these blocks will fail.  However, we already have
396          * the on disk address, so we have to set the bio_offset field
397          * explicitly instead of letting bread do everything for us.
398          */
399         vp = ITOV(ip);
400         bp = getblk(vp, lblktodoff(fs, lbn), (int)fs->s_blocksize, 0, 0);
401         if ((bp->b_flags & B_CACHE) == 0) {
402                 bp->b_flags &= ~(B_ERROR | B_INVAL);
403                 bp->b_cmd = BUF_CMD_READ;
404                 if (bp->b_bcount > bp->b_bufsize)
405                         panic("ext2_indirtrunc: bad buffer size");
406                 bp->b_bio2.bio_offset = doffset;
407                 bp->b_bio1.bio_done = biodone_sync;
408                 bp->b_bio1.bio_flags |= BIO_SYNC;
409                 vfs_busy_pages(bp->b_vp, bp);
410                 vn_strategy(vp, &bp->b_bio1);
411                 error = biowait(&bp->b_bio1, "biord");
412         }
413         if (error) {
414                 brelse(bp);
415                 *countp = 0;
416                 return (error);
417         }
418
419         bap = (daddr_t *)bp->b_data;
420         copy = kmalloc(fs->s_blocksize, M_TEMP, M_WAITOK);
421         bcopy((caddr_t)bap, (caddr_t)copy, (u_int)fs->s_blocksize);
422         bzero((caddr_t)&bap[last + 1],
423           (u_int)(NINDIR(fs) - (last + 1)) * sizeof (daddr_t));
424         if (last == -1)
425                 bp->b_flags |= B_INVAL;
426         error = bwrite(bp);
427         if (error)
428                 allerror = error;
429         bap = copy;
430
431         /*
432          * Recursively free totally unused blocks.
433          */
434         for (i = NINDIR(fs) - 1, nlbn = lbn + 1 - i * factor; i > last;
435             i--, nlbn += factor) {
436                 nb = bap[i];
437                 if (nb == 0)
438                         continue;
439                 if (level > SINGLE) {
440                         if ((error = ext2_indirtrunc(ip, nlbn,
441                             fsbtodoff(fs, nb), (daddr_t)-1, level - 1, &blkcount)) != 0)
442                                 allerror = error;
443                         blocksreleased += blkcount;
444                 }
445                 ext2_blkfree(ip, nb, fs->s_blocksize);
446                 blocksreleased += nblocks;
447         }
448
449         /*
450          * Recursively free last partial block.
451          */
452         if (level > SINGLE && lastbn >= 0) {
453                 last = lastbn % factor;
454                 nb = bap[i];
455                 if (nb != 0) {
456                         error = ext2_indirtrunc(ip, nlbn, fsbtodoff(fs, nb),
457                                                 last, level - 1, &blkcount);
458                         if (error)
459                                 allerror = error;
460                         blocksreleased += blkcount;
461                 }
462         }
463         kfree(copy, M_TEMP);
464         *countp = blocksreleased;
465         return (allerror);
466 }
467
468 /*
469  * Last reference to an inode.  If necessary, write or delete it.
470  *
471  * ext2_inactive(struct vnode *a_vp)
472  */
473 int
474 ext2_inactive(struct vop_inactive_args *ap)
475 {
476         struct vnode *vp = ap->a_vp;
477         struct inode *ip = VTOI(vp);
478         int mode, error = 0;
479
480         ext2_discard_prealloc(ip);
481         if (prtactive && VREFCNT(vp) > 1)
482                 vprint("ext2_inactive: pushing active", vp);
483
484         /*
485          * Ignore inodes related to stale file handles.
486          */
487         if (ip == NULL || ip->i_mode == 0)
488                 goto out;
489         if (ip->i_nlink <= 0 && (vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
490 #ifdef QUOTA
491                 if (!ext2_getinoquota(ip))
492                         (void)ext2_chkiq(ip, -1, NOCRED, FORCE);
493 #endif
494                 error = EXT2_TRUNCATE(vp, (off_t)0, 0, NOCRED);
495                 ip->i_rdev = 0;
496                 mode = ip->i_mode;
497                 ip->i_mode = 0;
498                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
499                 EXT2_VFREE(vp, ip->i_number, mode);
500         }
501         if (ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE))
502                 EXT2_UPDATE(vp, 0);
503 out:
504         /*
505          * If we are done with the inode, reclaim it
506          * so that it can be reused immediately.
507          */
508         if (ip == NULL || ip->i_mode == 0)
509                 vrecycle(vp);
510         return (error);
511 }
512
513 /*
514  * Reclaim an inode so that it can be used for other purposes.
515  *
516  * ext2_reclaim(struct vnode *a_vp)
517  */
518 int
519 ext2_reclaim(struct vop_reclaim_args *ap)
520 {
521         struct inode *ip;
522         struct vnode *vp = ap->a_vp;
523 #ifdef QUOTA
524         int i;
525 #endif
526
527         if (prtactive && VREFCNT(vp) > 1)
528                 vprint("ext2_reclaim: pushing active", vp);
529         ip = VTOI(vp);
530
531         /*
532          * Lazy updates.
533          */
534         if (ip) {
535                 if (ip->i_flag & IN_LAZYMOD) {
536                         ip->i_flag |= IN_MODIFIED;
537                         EXT2_UPDATE(vp, 0);
538                 }
539         }
540 #ifdef INVARIANTS
541         if (ip && (ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_MODIFIED | IN_UPDATE))) {
542                 kprintf("WARNING: INODE %ld flags %08x: modified inode being released!\n", (long)ip->i_number, (int)ip->i_flag);
543                 ip->i_flag |= IN_MODIFIED;
544                 EXT2_UPDATE(vp, 0);
545         }
546 #endif
547         /*
548          * Remove the inode from its hash chain and purge namecache
549          * data associated with the vnode.
550          */
551         vp->v_data = NULL;
552         if (ip) {
553                 ext2_ihashrem(ip);
554                 if (ip->i_devvp) {
555                         vrele(ip->i_devvp);
556                         ip->i_devvp = 0;
557                 }
558 #ifdef QUOTA
559                 for (i = 0; i < MAXQUOTAS; i++) {
560                         if (ip->i_dquot[i] != NODQUOT) {
561                                 ext2_dqrele(vp, ip->i_dquot[i]);
562                                 ip->i_dquot[i] = NODQUOT;
563                         }
564                 }
565 #endif
566 #ifdef UFS_DIRHASH
567                 if (ip->i_dirhash != NULL)
568                         ext2dirhash_free(ip);
569 #endif
570                 kfree(ip, VFSTOEXT2(vp->v_mount)->um_malloctype);
571         }
572         return (0);
573 }