8f0751893436c79e47a2ec8aff9e2ae7cbc72fdb
[dragonfly.git] / sys / vfs / gnu / ext2fs / ext2_vnops.c
1 /*
2  *  modified for EXT2FS support in 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  * (c) UNIX System Laboratories, Inc.
11  * All or some portions of this file are derived from material licensed
12  * to the University of California by American Telephone and Telegraph
13  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
14  * the permission of UNIX System Laboratories, Inc.
15  *
16  * Redistribution and use in source and binary forms, with or without
17  * modification, are permitted provided that the following conditions
18  * are met:
19  * 1. Redistributions of source code must retain the above copyright
20  *    notice, this list of conditions and the following disclaimer.
21  * 2. Redistributions in binary form must reproduce the above copyright
22  *    notice, this list of conditions and the following disclaimer in the
23  *    documentation and/or other materials provided with the distribution.
24  * 3. All advertising materials mentioning features or use of this software
25  *    must display the following acknowledgement:
26  *      This product includes software developed by the University of
27  *      California, Berkeley and its contributors.
28  * 4. Neither the name of the University nor the names of its contributors
29  *    may be used to endorse or promote products derived from this software
30  *    without specific prior written permission.
31  *
32  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
33  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
34  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
35  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
36  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
37  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
38  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
39  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
40  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
41  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
42  * SUCH DAMAGE.
43  *
44  *      @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95
45  *      @(#)ext2_vnops.c        8.7 (Berkeley) 2/3/94
46  * $FreeBSD: src/sys/gnu/ext2fs/ext2_vnops.c,v 1.51.2.2 2003/01/02 17:26:18 bde Exp $
47  * $DragonFly: src/sys/vfs/gnu/ext2fs/ext2_vnops.c,v 1.43 2008/06/19 23:27:39 dillon Exp $
48  */
49
50 #include "opt_quota.h"
51 #include "opt_suiddir.h"
52
53 #include <sys/param.h>
54 #include <sys/systm.h>
55 #include <sys/resourcevar.h>
56 #include <sys/kernel.h>
57 #include <sys/stat.h>
58 #include <sys/fcntl.h>
59 #include <sys/buf.h>
60 #include <sys/stat.h>
61 #include <sys/proc.h>
62 #include <sys/priv.h>
63 #include <sys/mount.h>
64 #include <sys/time.h>
65 #include <sys/vnode.h>
66 #include <sys/dirent.h>
67 #include <sys/lockf.h>
68 #include <sys/event.h>
69 #include <sys/conf.h>
70 #include <sys/file.h>
71 #include <sys/jail.h>
72 #include <sys/namei.h>
73 #include <sys/signalvar.h>
74 #include <sys/unistd.h>
75
76 #include <vm/vm.h>
77 #include <vm/vm_extern.h>
78 #include <vm/vm_zone.h>
79 #include <vm/vnode_pager.h>
80
81 #include <sys/buf2.h>
82 #include <sys/thread2.h>
83
84 #include <vfs/fifofs/fifo.h>
85
86 #include "dir.h"
87 #include "quota.h"
88 #include "inode.h"
89 #include "ext2mount.h"
90 #include "ext2_fs_sb.h"
91 #include "fs.h"
92 #include "ext2_extern.h"
93 #include "ext2_fs.h"
94
95 static int ext2_access (struct vop_access_args *);
96 static int ext2_advlock (struct vop_advlock_args *);
97 static int ext2_chmod (struct vnode *, int, struct ucred *);
98 static int ext2_chown (struct vnode *, uid_t, gid_t, struct ucred *);
99 static int ext2_close (struct vop_close_args *);
100 static int ext2_getattr (struct vop_getattr_args *);
101 static int ext2_makeinode (int mode, struct vnode *, struct vnode **, struct componentname *);
102 static int ext2_mmap (struct vop_mmap_args *);
103 static int ext2_open (struct vop_open_args *);
104 static int ext2_pathconf (struct vop_pathconf_args *);
105 static int ext2_print (struct vop_print_args *);
106 static int ext2_readlink (struct vop_readlink_args *);
107 static int ext2_setattr (struct vop_setattr_args *);
108 static int ext2_strategy (struct vop_strategy_args *);
109 static int ext2_whiteout (struct vop_old_whiteout_args *);
110 static int filt_ext2read (struct knote *kn, long hint);
111 static int filt_ext2write (struct knote *kn, long hint);
112 static int filt_ext2vnode (struct knote *kn, long hint);
113 static void filt_ext2detach (struct knote *kn);
114 static int ext2_kqfilter (struct vop_kqfilter_args *ap);
115 static int ext2spec_close (struct vop_close_args *);
116 static int ext2spec_read (struct vop_read_args *);
117 static int ext2spec_write (struct vop_write_args *);
118 static int ext2fifo_close (struct vop_close_args *);
119 static int ext2fifo_kqfilter (struct vop_kqfilter_args *);
120 static int ext2fifo_read (struct vop_read_args *);
121 static int ext2fifo_write (struct vop_write_args *);
122
123 static int ext2_fsync (struct vop_fsync_args *);
124 static int ext2_read (struct vop_read_args *);
125 static int ext2_write (struct vop_write_args *);
126 static int ext2_remove (struct vop_old_remove_args *);
127 static int ext2_link (struct vop_old_link_args *);
128 static int ext2_rename (struct vop_old_rename_args *);
129 static int ext2_mkdir (struct vop_old_mkdir_args *);
130 static int ext2_rmdir (struct vop_old_rmdir_args *);
131 static int ext2_create (struct vop_old_create_args *);
132 static int ext2_mknod (struct vop_old_mknod_args *);
133 static int ext2_symlink (struct vop_old_symlink_args *);
134 static int ext2_getpages (struct vop_getpages_args *);
135
136 #include "ext2_readwrite.c"
137
138 union _qcvt {
139         int64_t qcvt;
140         int32_t val[2];
141 };
142 #define SETHIGH(q, h) { \
143         union _qcvt tmp; \
144         tmp.qcvt = (q); \
145         tmp.val[_QUAD_HIGHWORD] = (h); \
146         (q) = tmp.qcvt; \
147 }
148 #define SETLOW(q, l) { \
149         union _qcvt tmp; \
150         tmp.qcvt = (q); \
151         tmp.val[_QUAD_LOWWORD] = (l); \
152         (q) = tmp.qcvt; \
153 }
154 #define VN_KNOTE(vp, b) \
155         KNOTE(&vp->v_pollinfo.vpi_selinfo.si_note, (b))
156
157 #define OFSFMT(vp)              ((vp)->v_mount->mnt_maxsymlinklen <= 0)
158
159 /*
160  * A virgin directory (no blushing please).
161  * Note that the type and namlen fields are reversed relative to ufs.
162  * Also, we don't use `struct odirtemplate', since it would just cause
163  * endianness problems.
164  */
165 static struct dirtemplate ext2_mastertemplate = {
166         0, 12, 1, EXT2_FT_DIR, ".",
167         0, DIRBLKSIZ - 12, 2, EXT2_FT_DIR, ".."
168 };
169 static struct dirtemplate ext2_omastertemplate = {
170         0, 12, 1, EXT2_FT_UNKNOWN, ".",
171         0, DIRBLKSIZ - 12, 2, EXT2_FT_UNKNOWN, ".."
172 };
173
174 /*
175  * Create a regular file
176  *
177  * ext2_create(struct vnode *a_dvp, struct vnode **a_vpp,
178  *             struct componentname *a_cnp, struct vattr *a_vap)
179  */
180 static int
181 ext2_create(struct vop_old_create_args *ap)
182 {
183         int error;
184
185         error =
186             ext2_makeinode(MAKEIMODE(ap->a_vap->va_type, ap->a_vap->va_mode),
187             ap->a_dvp, ap->a_vpp, ap->a_cnp);
188         if (error)
189                 return (error);
190         return (0);
191 }
192
193 /*
194  * Synch an open file.
195  *
196  * ext2_fsync(struct vnode *a_vp, struct ucred *a_cred, int a_waitfor,
197  *            struct proc *a_p)
198  */
199 /* ARGSUSED */
200
201 static int ext2_fsync_bp(struct buf *bp, void *data);
202
203 struct ext2_fsync_bp_info {
204         struct vnode *vp;
205         int waitfor;
206 };
207
208 static int
209 ext2_fsync(struct vop_fsync_args *ap)
210 {
211         struct ext2_fsync_bp_info info;
212         struct vnode *vp = ap->a_vp;
213         int count;
214
215         /* 
216          * XXX why is all this fs specific?
217          */
218
219         /*
220          * Flush all dirty buffers associated with a vnode.
221          */
222         ext2_discard_prealloc(VTOI(vp));
223
224         crit_enter();
225         info.vp = vp;
226 loop:
227         info.waitfor = ap->a_waitfor;
228         count = RB_SCAN(buf_rb_tree, &vp->v_rbdirty_tree, NULL, 
229                         ext2_fsync_bp, &info);
230         if (count)
231                 goto loop;
232
233         if (ap->a_waitfor == MNT_WAIT) {
234                 while (vp->v_track_write.bk_active) {
235                         vp->v_track_write.bk_waitflag = 1;
236                         tsleep(&vp->v_track_write, 0, "e2fsyn", 0);
237                 }
238 #if DIAGNOSTIC
239                 if (!RB_EMPTY(&vp->v_rbdirty_tree)) {
240                         vprint("ext2_fsync: dirty", vp);
241                         goto loop;
242                 }
243 #endif
244         }
245         crit_exit();
246         return (EXT2_UPDATE(ap->a_vp, ap->a_waitfor == MNT_WAIT));
247 }
248
249 static int
250 ext2_fsync_bp(struct buf *bp, void *data)
251 {
252         struct ext2_fsync_bp_info *info = data;
253
254         if (BUF_LOCK(bp, LK_EXCLUSIVE | LK_NOWAIT))
255                 return(0);
256         if ((bp->b_flags & B_DELWRI) == 0)
257                 panic("ext2_fsync: not dirty");
258         bremfree(bp);
259         crit_exit();
260
261         /*
262          * Wait for I/O associated with indirect blocks to complete,
263          * since there is no way to quickly wait for them below.
264          */
265         if (bp->b_vp == info->vp || info->waitfor == MNT_NOWAIT)
266                 bawrite(bp);
267         else
268                 bwrite(bp);
269         crit_enter();
270         return(1);
271 }
272
273 /*
274  * Mknod vnode call
275  *
276  * ext2_mknod(struct vnode *a_dvp, struct vnode **a_vpp,
277  *            struct componentname *a_cnp, struct vattr *a_vap)
278  */
279 /* ARGSUSED */
280 static int
281 ext2_mknod(struct vop_old_mknod_args *ap)
282 {
283         struct vattr *vap = ap->a_vap;
284         struct vnode **vpp = ap->a_vpp;
285         struct inode *ip;
286         ino_t ino;
287         int error;
288
289         if (vap->va_rmajor != VNOVAL &&
290             makeudev(vap->va_rmajor, vap->va_rminor) == NOUDEV) {
291                 return (EINVAL);
292         }
293
294         error = ext2_makeinode(MAKEIMODE(vap->va_type, vap->va_mode),
295             ap->a_dvp, vpp, ap->a_cnp);
296         if (error)
297                 return (error);
298         ip = VTOI(*vpp);
299         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
300         if (vap->va_rmajor != VNOVAL) {
301                 /*
302                  * Want to be able to use this to make badblock
303                  * inodes, so don't truncate the dev number.
304                  */
305                 ip->i_rdev = makeudev(vap->va_rmajor, vap->va_rminor);
306         }
307         /*
308          * Remove inode, then reload it through VFS_VGET so it is
309          * checked to see if it is an alias of an existing entry in
310          * the inode cache.
311          */
312         (*vpp)->v_type = VNON;
313         ino = ip->i_number;     /* Save this before vgone() invalidates ip. */
314         vgone_vxlocked(*vpp);
315         vput(*vpp);
316         error = VFS_VGET(ap->a_dvp->v_mount, ino, vpp);
317         if (error) {
318                 *vpp = NULL;
319                 return (error);
320         }
321         return (0);
322 }
323
324 /*
325  * ext2_remove(struct vnode *a_dvp, struct vnode *a_vp,
326  *             struct componentname *a_cnp)
327  */
328 static int
329 ext2_remove(struct vop_old_remove_args *ap)
330 {
331         struct inode *ip;
332         struct vnode *vp = ap->a_vp;
333         struct vnode *dvp = ap->a_dvp;
334         int error;
335
336         ip = VTOI(vp);
337         if ((ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
338             (VTOI(dvp)->i_flags & APPEND)) {
339                 error = EPERM;
340                 goto out;
341         }
342         error = ext2_dirremove(dvp, ap->a_cnp);
343         if (error == 0) {
344                 ip->i_nlink--;
345                 ip->i_flag |= IN_CHANGE;
346         }
347 out:
348         return (error);
349 }
350
351 /*
352  * link vnode call
353  *
354  * ext2_link(struct vnode *a_tdvp, struct vnode *a_vp,
355  *           struct componentname *a_cnp)
356  */
357 static int
358 ext2_link(struct vop_old_link_args *ap)
359 {
360         struct vnode *vp = ap->a_vp;
361         struct vnode *tdvp = ap->a_tdvp;
362         struct componentname *cnp = ap->a_cnp;
363         struct inode *ip;
364         int error;
365
366         if (tdvp->v_mount != vp->v_mount) {
367                 error = EXDEV;
368                 goto out2;
369         }
370         if (tdvp != vp && (error = vn_lock(vp, LK_EXCLUSIVE))) {
371                 goto out2;
372         }
373         ip = VTOI(vp);
374         if ((nlink_t)ip->i_nlink >= LINK_MAX) {
375                 error = EMLINK;
376                 goto out1;
377         }
378         if (ip->i_flags & (IMMUTABLE | APPEND)) {
379                 error = EPERM;
380                 goto out1;
381         }
382         ip->i_nlink++;
383         ip->i_flag |= IN_CHANGE;
384         error = EXT2_UPDATE(vp, 1);
385         if (!error)
386                 error = ext2_direnter(ip, tdvp, cnp);
387         if (error) {
388                 ip->i_nlink--;
389                 ip->i_flag |= IN_CHANGE;
390         }
391 out1:
392         if (tdvp != vp)
393                 vn_unlock(vp);
394 out2:
395         return (error);
396 }
397
398 /*
399  * Rename system call.  fdvp, fvp are ref'd.  tvp, tdvp are ref'd and locked.
400  * all vp's are released and must be in an unlocked state on return.
401  *
402  * ext2_rename(struct vnode *a_fdvp, struct vnode *a_fvp,
403  *              struct componentname *a_fcnp, struct vnode *a_tdvp,
404  *              struct vnode *a_tvp, struct componentname *a_tcnp)
405  */
406 static int
407 ext2_rename(struct vop_old_rename_args *ap)
408 {
409         struct vnode *tvp = ap->a_tvp;
410         struct vnode *tdvp = ap->a_tdvp;
411         struct vnode *fvp = ap->a_fvp;
412         struct vnode *fdvp = ap->a_fdvp;
413         struct componentname *tcnp = ap->a_tcnp;
414         struct componentname *fcnp = ap->a_fcnp;
415         struct inode *ip, *xp, *dp;
416         struct dirtemplate dirbuf;
417         int doingdirectory = 0, oldparent = 0, newparent = 0;
418         int error = 0;
419         u_char namlen;
420
421         /*
422          * Check for cross-device rename.
423          */
424         if ((fvp->v_mount != tdvp->v_mount) ||
425             (tvp && (fvp->v_mount != tvp->v_mount)) ||
426             tvp == tdvp) {
427                 error = EXDEV;
428 abortit:
429                 if (tdvp == tvp)
430                         vrele(tdvp);
431                 else
432                         vput(tdvp);
433                 if (tvp)
434                         vput(tvp);
435                 vrele(fdvp);
436                 vrele(fvp);
437                 return (error);
438         }
439
440         if (tvp && ((VTOI(tvp)->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
441             (VTOI(tdvp)->i_flags & APPEND))) {
442                 error = EPERM;
443                 goto abortit;
444         }
445
446         /*
447          * Renaming a file to itself has no effect.  The upper layers should
448          * not call us in that case.  Temporarily just warn if they do.
449          */
450         if (fvp == tvp) {
451                 error = 0;
452                 goto abortit;
453         }
454
455         if ((error = vn_lock(fvp, LK_EXCLUSIVE)) != 0)
456                 goto abortit;
457
458         /*
459          * fvp, tvp, tdvp locked.  fdvp not locked but note that fdvp may
460          * be equal to tdvp.
461          */
462         dp = VTOI(fdvp);
463         ip = VTOI(fvp);
464         if (ip->i_nlink >= LINK_MAX) {
465                 vn_unlock(fvp);
466                 error = EMLINK;
467                 goto abortit;
468         }
469         if ((ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))
470             || (dp->i_flags & APPEND)) {
471                 vn_unlock(fvp);
472                 error = EPERM;
473                 goto abortit;
474         }
475         if ((ip->i_mode & IFMT) == IFDIR) {
476                 /*
477                  * Avoid ".", "..", and aliases of "." for obvious reasons.
478                  */
479                 if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
480                     dp == ip || (fcnp->cn_flags | tcnp->cn_flags) & CNP_ISDOTDOT ||
481                     (ip->i_flag & IN_RENAME)) {
482                         vn_unlock(fvp);
483                         error = EINVAL;
484                         goto abortit;
485                 }
486                 ip->i_flag |= IN_RENAME;
487                 oldparent = dp->i_number;
488                 doingdirectory++;
489         }
490
491         /*
492          * tvp is non-NULL if the target exists.   fvp is still locked but
493          * we will unlock it soon.  The 'bad' goto target requires dp and
494          * xp to be correctly assigned.
495          */
496         dp = VTOI(tdvp);
497         if (tvp)
498                 xp = VTOI(tvp);
499         else
500                 xp = NULL;
501
502         /*
503          * 1) Bump link count while we're moving stuff
504          *    around.  If we crash somewhere before
505          *    completing our work, the link count
506          *    may be wrong, but correctable.
507          */
508         ip->i_nlink++;
509         ip->i_flag |= IN_CHANGE;
510         if ((error = EXT2_UPDATE(fvp, 1)) != 0) {
511                 vn_unlock(fvp);
512                 goto bad;
513         }
514
515         /*
516          * If ".." must be changed (ie the directory gets a new
517          * parent) then the source directory must not be in the
518          * directory heirarchy above the target, as this would
519          * orphan everything below the source directory. Also
520          * the user must have write permission in the source so
521          * as to be able to change "..". We must repeat the call
522          * to namei, as the parent directory is unlocked by the
523          * call to checkpath().
524          */
525         error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred);
526         vn_unlock(fvp);
527
528         /*
529          * tvp (if not NULL) and tdvp are locked.  fvp and fdvp are not.
530          * dp and xp are set according to tdvp and tvp.
531          */
532         if (oldparent != dp->i_number)
533                 newparent = dp->i_number;
534         if (doingdirectory && newparent) {
535                 if (error)      /* write access check above */
536                         goto bad;
537
538                 /*
539                  * Prepare for relookup, get rid of xp
540                  */
541                 if (xp != NULL) {
542                         vput(tvp);
543                         xp = NULL;
544                 }
545
546                 /*
547                  * checkpath vput()'s tdvp (VTOI(dp)) on return no matter what,
548                  * get an extra ref so we wind up with just an unlocked, ref'd
549                  * tdvp.  The 'out' target skips xp and tdvp cleanups.  Our
550                  * tdvp is now unlocked so we have to clean it up ourselves.
551                  */
552                 vref(tdvp);
553                 error = ext2_checkpath(ip, dp, tcnp->cn_cred);
554                 tcnp->cn_flags |= CNP_PDIRUNLOCK;
555                 if (error) {
556                         vrele(tdvp);
557                         goto out;
558                 }
559                 /*
560                  * relookup no longer messes with the ref count.  An unlocked
561                  * tdvp must be passed and if no error occurs a locked tdvp
562                  * will be returned.  We have to use the out target again.
563                  */
564                 error = relookup(tdvp, &tvp, tcnp);
565                 if (error) {
566                         if (tcnp->cn_flags & CNP_PDIRUNLOCK)
567                                 vrele(tdvp);
568                         else
569                                 vput(tdvp);
570                         goto out;
571                 }
572
573                 /*
574                  * tdvp is locked at this point.  in the RENAME case tvp may
575                  * be NULL without an error, assign xp accordingly.  The
576                  * 'bad' target can be used again after this.
577                  */
578                 dp = VTOI(tdvp);
579                 if (tvp)
580                         xp = VTOI(tvp);
581         }
582         /*
583          * 2) If target doesn't exist, link the target
584          *    to the source and unlink the source.
585          *    Otherwise, rewrite the target directory
586          *    entry to reference the source inode and
587          *    expunge the original entry's existence.
588          *
589          * tdvp and tvp are cleaned up by this code.  tvp is only good if
590          * xp is not NULL.
591          */
592         if (xp == NULL) {
593                 if (dp->i_dev != ip->i_dev)
594                         panic("ext2_rename: EXDEV");
595                 /*
596                  * Account for ".." in new directory.
597                  * When source and destination have the same
598                  * parent we don't fool with the link count.
599                  */
600                 if (doingdirectory && newparent) {
601                         if ((nlink_t)dp->i_nlink >= LINK_MAX) {
602                                 error = EMLINK;
603                                 goto bad;
604                         }
605                         dp->i_nlink++;
606                         dp->i_flag |= IN_CHANGE;
607                         error = EXT2_UPDATE(tdvp, 1);
608                         if (error)
609                                 goto bad;
610                 }
611                 error = ext2_direnter(ip, tdvp, tcnp);
612                 if (error) {
613                         if (doingdirectory && newparent) {
614                                 dp->i_nlink--;
615                                 dp->i_flag |= IN_CHANGE;
616                                 EXT2_UPDATE(tdvp, 1);
617                         }
618                         goto bad;
619                 }
620
621                 /*
622                  * manual cleanup, we can't use the bad or out target after
623                  * this.
624                  */
625                 vput(tdvp);
626         } else {
627                 if (xp->i_dev != dp->i_dev || xp->i_dev != ip->i_dev)
628                         panic("ext2_rename: EXDEV");
629                 /*
630                  * Short circuit rename(foo, foo).
631                  */
632                 if (xp->i_number == ip->i_number)
633                         panic("ext2_rename: same file");
634                 /*
635                  * If the parent directory is "sticky", then the user must
636                  * own the parent directory, or the destination of the rename,
637                  * otherwise the destination may not be changed (except by
638                  * root). This implements append-only directories.
639                  */
640                 if ((dp->i_mode & S_ISTXT) && tcnp->cn_cred->cr_uid != 0 &&
641                     tcnp->cn_cred->cr_uid != dp->i_uid &&
642                     xp->i_uid != tcnp->cn_cred->cr_uid) {
643                         error = EPERM;
644                         goto bad;
645                 }
646                 /*
647                  * Target must be empty if a directory and have no links
648                  * to it. Also, ensure source and target are compatible
649                  * (both directories, or both not directories).
650                  */
651                 if ((xp->i_mode&IFMT) == IFDIR) {
652                         if (! ext2_dirempty(xp, dp->i_number, tcnp->cn_cred) || 
653                             xp->i_nlink > 2) {
654                                 error = ENOTEMPTY;
655                                 goto bad;
656                         }
657                         if (!doingdirectory) {
658                                 error = ENOTDIR;
659                                 goto bad;
660                         }
661                 } else if (doingdirectory) {
662                         error = EISDIR;
663                         goto bad;
664                 }
665                 error = ext2_dirrewrite(dp, ip, tcnp);
666                 if (error)
667                         goto bad;
668                 /*
669                  * If the target directory is in the same
670                  * directory as the source directory,
671                  * decrement the link count on the parent
672                  * of the target directory.
673                  */
674                  if (doingdirectory && !newparent) {
675                         dp->i_nlink--;
676                         dp->i_flag |= IN_CHANGE;
677                 }
678
679                 /*
680                  * manual cleanup, we can't use the bad or out target after
681                  * this.
682                  */
683                 vput(tdvp);
684
685                 /*
686                  * Adjust the link count of the target to
687                  * reflect the dirrewrite above.  If this is
688                  * a directory it is empty and there are
689                  * no links to it, so we can squash the inode and
690                  * any space associated with it.  We disallowed
691                  * renaming over top of a directory with links to
692                  * it above, as the remaining link would point to
693                  * a directory without "." or ".." entries.
694                  */
695                 xp->i_nlink--;
696                 if (doingdirectory) {
697                         if (--xp->i_nlink != 0)
698                                 panic("ext2_rename: linked directory");
699                         error = EXT2_TRUNCATE(tvp, (off_t)0, IO_SYNC,
700                                               tcnp->cn_cred);
701                 }
702                 xp->i_flag |= IN_CHANGE;
703                 vput(tvp);
704                 xp = NULL;
705         }
706
707         /*
708          * tvp and tdvp have been cleaned up.  The bad and out targets may
709          * not be used.  fvp and fdvp are ref'd but not locked.  ip
710          * still represents the old fvp and ip->i_flag may still have IN_RENAME
711          * set (if doingdirectory).
712          */
713
714         /*
715          * 3) Unlink the source.
716          *
717          * fdvp is locked and ref'd. ap->a_fvp holds the old lookup unlocked
718          * and ref'd, fvp will hold the new lookup locked and ref'd.
719          *
720          * After the relookup ap->a_fvp must be released as part of our
721          * cleanup, not just fdvp and fvp.  And, on success, fdvp and
722          * fvp will be locked so the bad and out targets cannot be used.
723          */
724         fcnp->cn_flags &= ~CNP_MODMASK;
725         fcnp->cn_flags |= CNP_LOCKPARENT;
726         KKASSERT(fcnp->cn_flags & CNP_PDIRUNLOCK);
727         error = relookup(fdvp, &fvp, fcnp);
728         if (error) {
729                 /*
730                  * From name has disappeared.
731                  */
732                 if (doingdirectory)
733                         panic("ext2_rename: lost dir entry");
734                 /* ip->i_flag only sets IN_RENAME if doingdirectory */
735                 vrele(ap->a_fvp);
736                 if (fcnp->cn_flags & CNP_PDIRUNLOCK)
737                         vrele(fdvp);
738                 else
739                         vput(fdvp);
740                 return (0);
741         }
742         KKASSERT((fcnp->cn_flags & CNP_PDIRUNLOCK) == 0);
743
744         /*
745          * This case shouldn't occur
746          */
747         if (fvp == NULL) {
748                 /*
749                  * From name has disappeared.
750                  */
751                 if (doingdirectory)
752                         panic("ext2_rename: lost dir entry");
753                 /* ip->i_flag only sets IN_RENAME if doingdirectory */
754                 vrele(ap->a_fvp);
755                 vput(fvp);
756                 vput(fdvp);
757                 return (0);
758         }
759
760         /*
761          * fvp and fdvp are both ref'd and locked.
762          */
763         xp = VTOI(fvp);
764         dp = VTOI(fdvp);
765
766         /*
767          * Ensure that the directory entry still exists and has not
768          * changed while the new name has been entered. If the source is
769          * a file then the entry may have been unlinked or renamed. In
770          * either case there is no further work to be done. If the source
771          * is a directory then it cannot have been rmdir'ed; its link
772          * count of three would cause a rmdir to fail with ENOTEMPTY.
773          * The IN_RENAME flag ensures that it cannot be moved by another
774          * rename.
775          */
776         if (xp != ip) {
777                 if (doingdirectory)
778                         panic("ext2_rename: lost dir entry");
779                 /* ip->i_flag only sets IN_RENAME if doingdirectory */
780         } else {
781                 /*
782                  * If the source is a directory with a
783                  * new parent, the link count of the old
784                  * parent directory must be decremented
785                  * and ".." set to point to the new parent.
786                  */
787                 if (doingdirectory && newparent) {
788                         dp->i_nlink--;
789                         dp->i_flag |= IN_CHANGE;
790                         error = vn_rdwr(UIO_READ, fvp, (caddr_t)&dirbuf,
791                                         sizeof (struct dirtemplate), (off_t)0,
792                                         UIO_SYSSPACE, IO_NODELOCKED,
793                                         tcnp->cn_cred, (int *)0);
794                         if (error == 0) {
795                                 /* Like ext2 little-endian: */
796                                 namlen = dirbuf.dotdot_type;
797                                 if (namlen != 2 ||
798                                     dirbuf.dotdot_name[0] != '.' ||
799                                     dirbuf.dotdot_name[1] != '.') {
800                                         ext2_dirbad(xp, (doff_t)12,
801                                             "rename: mangled dir");
802                                 } else {
803                                         dirbuf.dotdot_ino = newparent;
804                                         vn_rdwr(UIO_WRITE, fvp,
805                                                 (caddr_t)&dirbuf,
806                                                 sizeof (struct dirtemplate),
807                                                 (off_t)0, UIO_SYSSPACE,
808                                                 IO_NODELOCKED|IO_SYNC,
809                                                 tcnp->cn_cred, (int *)0);
810                                 }
811                         }
812                 }
813                 error = ext2_dirremove(fdvp, fcnp);
814                 if (!error) {
815                         xp->i_nlink--;
816                         xp->i_flag |= IN_CHANGE;
817                 }
818                 xp->i_flag &= ~IN_RENAME;
819         }
820         vput(fdvp);
821         vput(fvp);
822         vrele(ap->a_fvp);
823         return (error);
824
825 bad:
826         if (xp)
827                 vput(ITOV(xp));
828         if (dp)
829                 vput(ITOV(dp));
830 out:
831         if (doingdirectory)
832                 ip->i_flag &= ~IN_RENAME;
833         if (vn_lock(fvp, LK_EXCLUSIVE) == 0) {
834                 ip->i_nlink--;
835                 ip->i_flag |= IN_CHANGE;
836                 ip->i_flag &= ~IN_RENAME;
837                 vput(fvp);
838         } else {
839                 vrele(fvp);
840         }
841         return (error);
842 }
843
844 /*
845  * Mkdir system call
846  *
847  * ext2_mkdir(struct vnode *a_dvp, struct vnode **a_vpp,
848  *            struct componentname *a_cnp, struct vattr *a_vap)
849  */
850 static int
851 ext2_mkdir(struct vop_old_mkdir_args *ap)
852 {
853         struct vnode *dvp = ap->a_dvp;
854         struct vattr *vap = ap->a_vap;
855         struct componentname *cnp = ap->a_cnp;
856         struct inode *ip, *dp;
857         struct vnode *tvp;
858         struct dirtemplate dirtemplate, *dtp;
859         int error, dmode;
860
861         dp = VTOI(dvp);
862         if ((nlink_t)dp->i_nlink >= LINK_MAX) {
863                 error = EMLINK;
864                 goto out;
865         }
866         dmode = vap->va_mode & 0777;
867         dmode |= IFDIR;
868         /*
869          * Must simulate part of ext2_makeinode here to acquire the inode,
870          * but not have it entered in the parent directory. The entry is
871          * made later after writing "." and ".." entries.
872          */
873         error = EXT2_VALLOC(dvp, dmode, cnp->cn_cred, &tvp);
874         if (error)
875                 goto out;
876         ip = VTOI(tvp);
877         ip->i_gid = dp->i_gid;
878 #ifdef SUIDDIR
879         {
880 #ifdef QUOTA
881                 struct ucred ucred, *ucp;
882                 ucp = cnp->cn_cred;
883 #endif
884                 /*
885                  * if we are hacking owners here, (only do this where told to)
886                  * and we are not giving it TOO root, (would subvert quotas)
887                  * then go ahead and give it to the other user.
888                  * The new directory also inherits the SUID bit. 
889                  * If user's UID and dir UID are the same,
890                  * 'give it away' so that the SUID is still forced on.
891                  */
892                 if ( (dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
893                    (dp->i_mode & ISUID) && dp->i_uid) {
894                         dmode |= ISUID;
895                         ip->i_uid = dp->i_uid;
896 #ifdef QUOTA
897                         if (dp->i_uid != cnp->cn_cred->cr_uid) {
898                                 /*
899                                  * make sure the correct user gets charged
900                                  * for the space.
901                                  * Make a dummy credential for the victim.
902                                  * XXX This seems to never be accessed out of
903                                  * our context so a stack variable is ok.
904                                  */
905                                 ucred.cr_ref = 1;
906                                 ucred.cr_uid = ip->i_uid;
907                                 ucred.cr_ngroups = 1;
908                                 ucred.cr_groups[0] = dp->i_gid;
909                                 ucp = &ucred;
910                         }
911 #endif
912                 } else {
913                         ip->i_uid = cnp->cn_cred->cr_uid;
914                 }
915 #ifdef QUOTA
916                 if ((error = ext2_getinoquota(ip)) ||
917                 (error = ext2_chkiq(ip, 1, ucp, 0))) {
918                         EXT2_VFREE(tvp, ip->i_number, dmode);
919                         vput(tvp);
920                         return (error);
921                 }
922 #endif
923         }
924 #else
925         ip->i_uid = cnp->cn_cred->cr_uid;
926 #ifdef QUOTA
927         if ((error = ext2_getinoquota(ip)) ||
928             (error = ext2_chkiq(ip, 1, cnp->cn_cred, 0))) {
929                 EXT2_VFREE(tvp, ip->i_number, dmode);
930                 vput(tvp);
931                 return (error);
932         }
933 #endif
934 #endif
935         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
936         ip->i_mode = dmode;
937         tvp->v_type = VDIR;     /* Rest init'd in getnewvnode(). */
938         ip->i_nlink = 2;
939         if (cnp->cn_flags & CNP_ISWHITEOUT)
940                 ip->i_flags |= UF_OPAQUE;
941         error = EXT2_UPDATE(tvp, 1);
942
943         /*
944          * The vnode must have a VM object in order to issue buffer cache
945          * ops on it.
946          */
947         vinitvmio(tvp, 0);
948
949         /*
950          * Bump link count in parent directory
951          * to reflect work done below.  Should
952          * be done before reference is created
953          * so reparation is possible if we crash.
954          */
955         dp->i_nlink++;
956         dp->i_flag |= IN_CHANGE;
957         error = EXT2_UPDATE(dvp, 1);
958         if (error)
959                 goto bad;
960
961         /* Initialize directory with "." and ".." from static template. */
962         if (EXT2_HAS_INCOMPAT_FEATURE(ip->i_e2fs->s_es,
963             EXT2_FEATURE_INCOMPAT_FILETYPE))
964                 dtp = &ext2_mastertemplate;
965         else
966                 dtp = &ext2_omastertemplate;
967         dirtemplate = *dtp;
968         dirtemplate.dot_ino = ip->i_number;
969         dirtemplate.dotdot_ino = dp->i_number;
970         /* note that in ext2 DIRBLKSIZ == blocksize, not DEV_BSIZE 
971          * so let's just redefine it - for this function only
972          */
973 #undef  DIRBLKSIZ 
974 #define DIRBLKSIZ  VTOI(dvp)->i_e2fs->s_blocksize
975         dirtemplate.dotdot_reclen = DIRBLKSIZ - 12;
976         error = vn_rdwr(UIO_WRITE, tvp, (caddr_t)&dirtemplate,
977                         sizeof (dirtemplate), (off_t)0, UIO_SYSSPACE,
978                         IO_NODELOCKED|IO_SYNC, cnp->cn_cred, (int *)0);
979         if (error) {
980                 dp->i_nlink--;
981                 dp->i_flag |= IN_CHANGE;
982                 goto bad;
983         }
984         if (DIRBLKSIZ > VFSTOEXT2(dvp->v_mount)->um_mountp->mnt_stat.f_bsize)
985                 panic("ext2_mkdir: blksize"); /* XXX should grow with balloc() */
986         else {
987                 ip->i_size = DIRBLKSIZ;
988                 ip->i_flag |= IN_CHANGE;
989         }
990
991         /* Directory set up, now install its entry in the parent directory. */
992         error = ext2_direnter(ip, dvp, cnp);
993         if (error) {
994                 dp->i_nlink--;
995                 dp->i_flag |= IN_CHANGE;
996         }
997 bad:
998         /*
999          * No need to do an explicit VOP_TRUNCATE here, vrele will do this
1000          * for us because we set the link count to 0.
1001          */
1002         if (error) {
1003                 ip->i_nlink = 0;
1004                 ip->i_flag |= IN_CHANGE;
1005                 vput(tvp);
1006         } else
1007                 *ap->a_vpp = tvp;
1008 out:
1009         return (error);
1010 #undef  DIRBLKSIZ
1011 #define DIRBLKSIZ  DEV_BSIZE
1012 }
1013
1014 /*
1015  * Rmdir system call.
1016  *
1017  * ext2_rmdir(struct vnode *a_dvp, struct vnode *a_vp,
1018  *            struct componentname *a_cnp)
1019  */
1020 static int
1021 ext2_rmdir(struct vop_old_rmdir_args *ap)
1022 {
1023         struct vnode *vp = ap->a_vp;
1024         struct vnode *dvp = ap->a_dvp;
1025         struct componentname *cnp = ap->a_cnp;
1026         struct inode *ip, *dp;
1027         int error;
1028
1029         ip = VTOI(vp);
1030         dp = VTOI(dvp);
1031
1032         /*
1033          * Verify the directory is empty (and valid).
1034          * (Rmdir ".." won't be valid since
1035          *  ".." will contain a reference to
1036          *  the current directory and thus be
1037          *  non-empty.)
1038          */
1039         error = 0;
1040         if (ip->i_nlink != 2 || !ext2_dirempty(ip, dp->i_number, cnp->cn_cred)) {
1041                 error = ENOTEMPTY;
1042                 goto out;
1043         }
1044         if ((dp->i_flags & APPEND)
1045             || (ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))) {
1046                 error = EPERM;
1047                 goto out;
1048         }
1049         /*
1050          * Delete reference to directory before purging
1051          * inode.  If we crash in between, the directory
1052          * will be reattached to lost+found,
1053          */
1054         error = ext2_dirremove(dvp, cnp);
1055         if (error)
1056                 goto out;
1057         dp->i_nlink--;
1058         dp->i_flag |= IN_CHANGE;
1059         vn_unlock(dvp);
1060         /*
1061          * Truncate inode.  The only stuff left
1062          * in the directory is "." and "..".  The
1063          * "." reference is inconsequential since
1064          * we're quashing it.  The ".." reference
1065          * has already been adjusted above.  We've
1066          * removed the "." reference and the reference
1067          * in the parent directory, but there may be
1068          * other hard links so decrement by 2 and
1069          * worry about them later.
1070          */
1071         ip->i_nlink -= 2;
1072         error = EXT2_TRUNCATE(vp, (off_t)0, IO_SYNC, cnp->cn_cred);
1073         vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
1074 out:
1075         return (error);
1076 }
1077
1078 /*
1079  * symlink -- make a symbolic link
1080  *
1081  * ext2_symlink(struct vnode *a_dvp, struct vnode **a_vpp,
1082  *              struct componentname *a_cnp, struct vattr *a_vap,
1083  *              char *a_target)
1084  */
1085 static int
1086 ext2_symlink(struct vop_old_symlink_args *ap)
1087 {
1088         struct vnode *vp, **vpp = ap->a_vpp;
1089         struct inode *ip;
1090         int len, error;
1091
1092         error = ext2_makeinode(IFLNK | ap->a_vap->va_mode, ap->a_dvp,
1093             vpp, ap->a_cnp);
1094         if (error)
1095                 return (error);
1096         vp = *vpp;
1097         len = strlen(ap->a_target);
1098         if (len < vp->v_mount->mnt_maxsymlinklen) {
1099                 ip = VTOI(vp);
1100                 bcopy(ap->a_target, (char *)ip->i_shortlink, len);
1101                 ip->i_size = len;
1102                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
1103         } else {
1104                 /*
1105                  * Make sure we have a VM object in order to use
1106                  * the buffer cache.
1107                  */
1108                 if (vp->v_object == NULL)
1109                         vinitvmio(vp, 0);
1110
1111                 error = vn_rdwr(UIO_WRITE, vp, ap->a_target, len, (off_t)0,
1112                                 UIO_SYSSPACE, IO_NODELOCKED, 
1113                                 ap->a_cnp->cn_cred, (int *)0);
1114
1115                 if (error)
1116                         vput(vp);
1117         }
1118
1119         return (error);
1120 }
1121
1122 /*
1123  * Allocate a new inode.
1124  */
1125 static int
1126 ext2_makeinode(int mode, struct vnode *dvp, struct vnode **vpp,
1127                struct componentname *cnp)
1128 {
1129         struct inode *ip, *pdir;
1130         struct vnode *tvp;
1131         int error;
1132
1133         pdir = VTOI(dvp);
1134         *vpp = NULL;
1135         if ((mode & IFMT) == 0)
1136                 mode |= IFREG;
1137
1138         error = EXT2_VALLOC(dvp, mode, cnp->cn_cred, &tvp);
1139         if (error) {
1140                 return (error);
1141         }
1142         ip = VTOI(tvp);
1143         ip->i_gid = pdir->i_gid;
1144 #ifdef SUIDDIR
1145         {
1146 #ifdef QUOTA
1147                 struct ucred ucred, *ucp;
1148                 ucp = cnp->cn_cred;
1149 #endif
1150                 /*
1151                  * if we are
1152                  * not the owner of the directory,
1153                  * and we are hacking owners here, (only do this where told to)
1154                  * and we are not giving it TOO root, (would subvert quotas)
1155                  * then go ahead and give it to the other user.
1156                  * Note that this drops off the execute bits for security.
1157                  */
1158                 if ( (dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
1159                      (pdir->i_mode & ISUID) &&
1160                      (pdir->i_uid != cnp->cn_cred->cr_uid) && pdir->i_uid) {
1161                         ip->i_uid = pdir->i_uid;
1162                         mode &= ~07111;
1163 #ifdef QUOTA
1164                         /*
1165                          * make sure the correct user gets charged
1166                          * for the space.
1167                          * Quickly knock up a dummy credential for the victim.
1168                          * XXX This seems to never be accessed out of our
1169                          * context so a stack variable is ok.
1170                          */
1171                         ucred.cr_ref = 1;
1172                         ucred.cr_uid = ip->i_uid;
1173                         ucred.cr_ngroups = 1;
1174                         ucred.cr_groups[0] = pdir->i_gid;
1175                         ucp = &ucred;
1176 #endif
1177                 } else {
1178                         ip->i_uid = cnp->cn_cred->cr_uid;
1179                 }
1180         
1181 #ifdef QUOTA
1182                 if ((error = ext2_getinoquota(ip)) ||
1183                 (error = ext2_chkiq(ip, 1, ucp, 0))) {
1184                         EXT2_VFREE(tvp, ip->i_number, mode);
1185                         vput(tvp);
1186                         return (error);
1187                 }
1188 #endif
1189         }
1190 #else
1191         ip->i_uid = cnp->cn_cred->cr_uid;
1192 #ifdef QUOTA
1193         if ((error = ext2_getinoquota(ip)) ||
1194             (error = ext2_chkiq(ip, 1, cnp->cn_cred, 0))) {
1195                 EXT2_VFREE(tvp, ip->i_number, mode);
1196                 vput(tvp);
1197                 return (error);
1198         }
1199 #endif
1200 #endif
1201         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
1202         ip->i_mode = mode;
1203         tvp->v_type = IFTOVT(mode);     /* Rest init'd in getnewvnode(). */
1204         ip->i_nlink = 1;
1205         if ((ip->i_mode & ISGID) && !groupmember(ip->i_gid, cnp->cn_cred) &&
1206             priv_check_cred(cnp->cn_cred, PRIV_ROOT, PRISON_ROOT))
1207                 ip->i_mode &= ~ISGID;
1208
1209         if (cnp->cn_flags & CNP_ISWHITEOUT)
1210                 ip->i_flags |= UF_OPAQUE;
1211
1212         /*
1213          * Regular files and directories need VM objects.  Softlinks do 
1214          * not (not immediately anyway).
1215          */
1216         if (tvp->v_type == VREG || tvp->v_type == VDIR)
1217                 vinitvmio(tvp, 0);
1218
1219         /*
1220          * Make sure inode goes to disk before directory entry.
1221          */
1222         error = EXT2_UPDATE(tvp, 1);
1223         if (error)
1224                 goto bad;
1225         error = ext2_direnter(ip, dvp, cnp);
1226         if (error)
1227                 goto bad;
1228
1229         *vpp = tvp;
1230         return (0);
1231
1232 bad:
1233         /*
1234          * Write error occurred trying to update the inode
1235          * or the directory so must deallocate the inode.
1236          */
1237         ip->i_nlink = 0;
1238         ip->i_flag |= IN_CHANGE;
1239         vput(tvp);
1240         return (error);
1241 }
1242
1243 /*
1244  * get page routine
1245  *
1246  * XXX By default, wimp out... note that a_offset is ignored (and always
1247  * XXX has been).
1248  */
1249 static int
1250 ext2_getpages(struct vop_getpages_args *ap)
1251 {
1252         return (vnode_pager_generic_getpages(ap->a_vp, ap->a_m, ap->a_count,
1253                 ap->a_reqpage));
1254 }
1255
1256 void
1257 ext2_itimes(struct vnode *vp)
1258 {
1259         struct inode *ip;
1260         struct timespec ts;
1261
1262         ip = VTOI(vp);
1263         if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE)) == 0)
1264                 return;
1265         if ((vp->v_type == VBLK || vp->v_type == VCHR) && !DOINGSOFTDEP(vp))
1266                 ip->i_flag |= IN_LAZYMOD;
1267         else
1268                 ip->i_flag |= IN_MODIFIED;
1269         if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
1270                 vfs_timestamp(&ts);
1271                 if (ip->i_flag & IN_ACCESS) {
1272                         ip->i_atime = ts.tv_sec;
1273                         ip->i_atimensec = ts.tv_nsec;
1274                 }
1275                 if (ip->i_flag & IN_UPDATE) {
1276                         ip->i_mtime = ts.tv_sec;
1277                         ip->i_mtimensec = ts.tv_nsec;
1278                         ip->i_modrev++;
1279                 }
1280                 if (ip->i_flag & IN_CHANGE) {
1281                         ip->i_ctime = ts.tv_sec;
1282                         ip->i_ctimensec = ts.tv_nsec;
1283                 }
1284         }
1285         ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE);
1286 }
1287
1288 /*
1289  * Open called.
1290  *
1291  * Nothing to do.
1292  *
1293  * ext2_open(struct vnode *a_vp, int a_mode, struct ucred *a_cred,
1294  *           struct file *a_fp)
1295  */
1296 /* ARGSUSED */
1297 static
1298 int
1299 ext2_open(struct vop_open_args *ap)
1300 {
1301         struct vnode *vp = ap->a_vp;
1302
1303         /*
1304          * Files marked append-only must be opened for appending.
1305          */
1306         if ((VTOI(vp)->i_flags & APPEND) &&
1307             (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE) {
1308                 return (EPERM);
1309         }
1310         return (vop_stdopen(ap));
1311 }
1312
1313 /*
1314  * Close called.
1315  *
1316  * Update the times on the inode.
1317  *
1318  * ext2_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred)
1319  */
1320 /* ARGSUSED */
1321 static
1322 int
1323 ext2_close(struct vop_close_args *ap)
1324 {
1325         struct vnode *vp = ap->a_vp;
1326
1327         if (vp->v_sysref.refcnt > 1)
1328                 ext2_itimes(vp);
1329         return (vop_stdclose(ap));
1330 }
1331
1332 /*
1333  * ext2_access(struct vnode *a_vp, int a_mode, struct ucred *a_cred)
1334  */
1335 static
1336 int
1337 ext2_access(struct vop_access_args *ap)
1338 {
1339         struct vnode *vp = ap->a_vp;
1340         struct inode *ip = VTOI(vp);
1341         struct ucred *cred = ap->a_cred;
1342         mode_t mask, mode = ap->a_mode;
1343         gid_t *gp;
1344         int i;
1345 #ifdef QUOTA
1346         int error;
1347 #endif
1348
1349         /*
1350          * Disallow write attempts on read-only filesystems;
1351          * unless the file is a socket, fifo, or a block or
1352          * character device resident on the filesystem.
1353          */
1354         if (mode & VWRITE) {
1355                 switch (vp->v_type) {
1356                 case VDIR:
1357                 case VLNK:
1358                 case VREG:
1359                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
1360                                 return (EROFS);
1361 #ifdef QUOTA
1362                         if ((error = ext2_getinoquota(ip)) != 0)
1363                                 return (error);
1364 #endif
1365                         break;
1366                 default:
1367                         break;
1368                 }
1369         }
1370
1371         /* If immutable bit set, nobody gets to write it. */
1372         if ((mode & VWRITE) && (ip->i_flags & IMMUTABLE))
1373                 return (EPERM);
1374
1375         /* Otherwise, user id 0 always gets access. */
1376         if (cred->cr_uid == 0)
1377                 return (0);
1378
1379         mask = 0;
1380
1381         /* Otherwise, check the owner. */
1382         if (cred->cr_uid == ip->i_uid) {
1383                 if (mode & VOWN)
1384                         return (0);
1385                 if (mode & VEXEC)
1386                         mask |= S_IXUSR;
1387                 if (mode & VREAD)
1388                         mask |= S_IRUSR;
1389                 if (mode & VWRITE)
1390                         mask |= S_IWUSR;
1391                 return ((ip->i_mode & mask) == mask ? 0 : EACCES);
1392         }
1393
1394         /* Otherwise, check the groups. */
1395         for (i = 0, gp = cred->cr_groups; i < cred->cr_ngroups; i++, gp++)
1396                 if (ip->i_gid == *gp) {
1397                         if (mode & VEXEC)
1398                                 mask |= S_IXGRP;
1399                         if (mode & VREAD)
1400                                 mask |= S_IRGRP;
1401                         if (mode & VWRITE)
1402                                 mask |= S_IWGRP;
1403                         return ((ip->i_mode & mask) == mask ? 0 : EACCES);
1404                 }
1405
1406         /* Otherwise, check everyone else. */
1407         if (mode & VEXEC)
1408                 mask |= S_IXOTH;
1409         if (mode & VREAD)
1410                 mask |= S_IROTH;
1411         if (mode & VWRITE)
1412                 mask |= S_IWOTH;
1413         return ((ip->i_mode & mask) == mask ? 0 : EACCES);
1414 }
1415
1416 /*
1417  * ext2_getattr(struct vnode *a_vp, struct vattr *a_vap)
1418  */
1419 /* ARGSUSED */
1420 static
1421 int
1422 ext2_getattr(struct vop_getattr_args *ap)
1423 {
1424         struct vnode *vp = ap->a_vp;
1425         struct inode *ip = VTOI(vp);
1426         struct vattr *vap = ap->a_vap;
1427
1428         ext2_itimes(vp);
1429         /*
1430          * Copy from inode table
1431          */
1432         vap->va_fsid = dev2udev(ip->i_dev);
1433         vap->va_fileid = ip->i_number;
1434         vap->va_mode = ip->i_mode & ~IFMT;
1435         vap->va_nlink = VFSTOEXT2(vp->v_mount)->um_i_effnlink_valid ?
1436             ip->i_effnlink : ip->i_nlink;
1437         vap->va_uid = ip->i_uid;
1438         vap->va_gid = ip->i_gid;
1439         vap->va_rmajor = umajor(ip->i_rdev);
1440         vap->va_rminor = uminor(ip->i_rdev);
1441         vap->va_size = ip->i_din.di_size;
1442         vap->va_atime.tv_sec = ip->i_atime;
1443         vap->va_atime.tv_nsec = ip->i_atimensec;
1444         vap->va_mtime.tv_sec = ip->i_mtime;
1445         vap->va_mtime.tv_nsec = ip->i_mtimensec;
1446         vap->va_ctime.tv_sec = ip->i_ctime;
1447         vap->va_ctime.tv_nsec = ip->i_ctimensec;
1448         vap->va_flags = ip->i_flags;
1449         vap->va_gen = ip->i_gen;
1450         vap->va_blocksize = vp->v_mount->mnt_stat.f_iosize;
1451         vap->va_bytes = dbtob((u_quad_t)ip->i_blocks);
1452         vap->va_type = IFTOVT(ip->i_mode);
1453         vap->va_filerev = ip->i_modrev;
1454         return (0);
1455 }
1456
1457 /*
1458  * Set attribute vnode op. called from several syscalls
1459  *
1460  * ext2_setattr(struct vnode *a_vp, struct vattr *a_vap, struct ucred *a_cred)
1461  */
1462 static
1463 int
1464 ext2_setattr(struct vop_setattr_args *ap)
1465 {
1466         struct vattr *vap = ap->a_vap;
1467         struct vnode *vp = ap->a_vp;
1468         struct inode *ip = VTOI(vp);
1469         struct ucred *cred = ap->a_cred;
1470         int error;
1471
1472         /*
1473          * Check for unsettable attributes.
1474          */
1475         if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
1476             (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
1477             (vap->va_blocksize != VNOVAL) || (vap->va_rmajor != VNOVAL) ||
1478             ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
1479                 return (EINVAL);
1480         }
1481         if (vap->va_flags != VNOVAL) {
1482                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
1483                         return (EROFS);
1484                 if (cred->cr_uid != ip->i_uid &&
1485                     (error = priv_check_cred(cred, PRIV_ROOT, PRISON_ROOT)))
1486                         return (error);
1487                 /*
1488                  * Note that a root chflags becomes a user chflags when
1489                  * we are jailed, unless the jail.chflags_allowed sysctl
1490                  * is set.
1491                  */
1492                 if (cred->cr_uid == 0 && 
1493                     (!jailed(cred) || jail_chflags_allowed)) {
1494                         if ((ip->i_flags
1495                             & (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND)) &&
1496                             securelevel > 0)
1497                                 return (EPERM);
1498                         ip->i_flags = vap->va_flags;
1499                 } else {
1500                         if (ip->i_flags
1501                             & (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND) ||
1502                             (vap->va_flags & UF_SETTABLE) != vap->va_flags)
1503                                 return (EPERM);
1504                         ip->i_flags &= SF_SETTABLE;
1505                         ip->i_flags |= (vap->va_flags & UF_SETTABLE);
1506                 }
1507                 ip->i_flag |= IN_CHANGE;
1508                 if (vap->va_flags & (IMMUTABLE | APPEND))
1509                         return (0);
1510         }
1511         if (ip->i_flags & (IMMUTABLE | APPEND))
1512                 return (EPERM);
1513         /*
1514          * Go through the fields and update iff not VNOVAL.
1515          */
1516         if (vap->va_uid != (uid_t)VNOVAL || vap->va_gid != (gid_t)VNOVAL) {
1517                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
1518                         return (EROFS);
1519                 if ((error = ext2_chown(vp, vap->va_uid, vap->va_gid, cred)) != 0)
1520                         return (error);
1521         }
1522         if (vap->va_size != VNOVAL) {
1523                 /*
1524                  * Disallow write attempts on read-only filesystems;
1525                  * unless the file is a socket, fifo, or a block or
1526                  * character device resident on the filesystem.
1527                  */
1528                 switch (vp->v_type) {
1529                 case VDIR:
1530                         return (EISDIR);
1531                 case VLNK:
1532                 case VREG:
1533                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
1534                                 return (EROFS);
1535                         break;
1536                 default:
1537                         break;
1538                 }
1539                 if ((error = EXT2_TRUNCATE(vp, vap->va_size, 0, cred)) != 0)
1540                         return (error);
1541         }
1542         ip = VTOI(vp);
1543         if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
1544                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
1545                         return (EROFS);
1546                 if (cred->cr_uid != ip->i_uid &&
1547                     (error = priv_check_cred(cred, PRIV_ROOT, PRISON_ROOT)) &&
1548                     ((vap->va_vaflags & VA_UTIMES_NULL) == 0 ||
1549                     (error = VOP_ACCESS(vp, VWRITE, cred))))
1550                         return (error);
1551                 if (vap->va_atime.tv_sec != VNOVAL)
1552                         ip->i_flag |= IN_ACCESS;
1553                 if (vap->va_mtime.tv_sec != VNOVAL)
1554                         ip->i_flag |= IN_CHANGE | IN_UPDATE;
1555                 ext2_itimes(vp);
1556                 if (vap->va_atime.tv_sec != VNOVAL) {
1557                         ip->i_atime = vap->va_atime.tv_sec;
1558                         ip->i_atimensec = vap->va_atime.tv_nsec;
1559                 }
1560                 if (vap->va_mtime.tv_sec != VNOVAL) {
1561                         ip->i_mtime = vap->va_mtime.tv_sec;
1562                         ip->i_mtimensec = vap->va_mtime.tv_nsec;
1563                 }
1564                 error = EXT2_UPDATE(vp, 0);
1565                 if (error)
1566                         return (error);
1567         }
1568         error = 0;
1569         if (vap->va_mode != (mode_t)VNOVAL) {
1570                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
1571                         return (EROFS);
1572                 error = ext2_chmod(vp, (int)vap->va_mode, cred);
1573         }
1574         VN_KNOTE(vp, NOTE_ATTRIB);
1575         return (error);
1576 }
1577
1578 /*
1579  * Change the mode on a file.
1580  * Inode must be locked before calling.
1581  */
1582 static int
1583 ext2_chmod(struct vnode *vp, int mode, struct ucred *cred)
1584 {
1585         struct inode *ip = VTOI(vp);
1586         int error;
1587
1588         if (cred->cr_uid != ip->i_uid) {
1589             error = priv_check_cred(cred, PRIV_ROOT, PRISON_ROOT);
1590             if (error)
1591                 return (error);
1592         }
1593         if (cred->cr_uid) {
1594                 if (vp->v_type != VDIR && (mode & S_ISTXT))
1595                         return (EFTYPE);
1596                 if (!groupmember(ip->i_gid, cred) && (mode & ISGID))
1597                         return (EPERM);
1598         }
1599         ip->i_mode &= ~ALLPERMS;
1600         ip->i_mode |= (mode & ALLPERMS);
1601         ip->i_flag |= IN_CHANGE;
1602         return (0);
1603 }
1604
1605 /*
1606  * Perform chown operation on inode ip;
1607  * inode must be locked prior to call.
1608  */
1609 static int
1610 ext2_chown(struct vnode *vp, uid_t uid, gid_t gid, struct ucred *cred)
1611 {
1612         struct inode *ip = VTOI(vp);
1613         uid_t ouid;
1614         gid_t ogid;
1615         int error = 0;
1616 #ifdef QUOTA
1617         int i;
1618         long change;
1619 #endif
1620
1621         if (uid == (uid_t)VNOVAL)
1622                 uid = ip->i_uid;
1623         if (gid == (gid_t)VNOVAL)
1624                 gid = ip->i_gid;
1625         /*
1626          * If we don't own the file, are trying to change the owner
1627          * of the file, or are not a member of the target group,
1628          * the caller must be superuser or the call fails.
1629          */
1630         if ((cred->cr_uid != ip->i_uid || uid != ip->i_uid ||
1631             (gid != ip->i_gid && !(cred->cr_gid == gid ||
1632             groupmember((gid_t)gid, cred)))) &&
1633             (error = priv_check_cred(cred, PRIV_ROOT, PRISON_ROOT)))
1634                 return (error);
1635         ogid = ip->i_gid;
1636         ouid = ip->i_uid;
1637 #ifdef QUOTA
1638         if ((error = ext2_getinoquota(ip)) != 0)
1639                 return (error);
1640         if (ouid == uid) {
1641                 ext2_dqrele(vp, ip->i_dquot[USRQUOTA]);
1642                 ip->i_dquot[USRQUOTA] = NODQUOT;
1643         }
1644         if (ogid == gid) {
1645                 ext2_dqrele(vp, ip->i_dquot[GRPQUOTA]);
1646                 ip->i_dquot[GRPQUOTA] = NODQUOT;
1647         }
1648         change = ip->i_blocks;
1649         (void) ext2_chkdq(ip, -change, cred, CHOWN);
1650         (void) ext2_chkiq(ip, -1, cred, CHOWN);
1651         for (i = 0; i < MAXQUOTAS; i++) {
1652                 ext2_dqrele(vp, ip->i_dquot[i]);
1653                 ip->i_dquot[i] = NODQUOT;
1654         }
1655 #endif
1656         ip->i_gid = gid;
1657         ip->i_uid = uid;
1658 #ifdef QUOTA
1659         if ((error = ext2_getinoquota(ip)) == 0) {
1660                 if (ouid == uid) {
1661                         ext2_dqrele(vp, ip->i_dquot[USRQUOTA]);
1662                         ip->i_dquot[USRQUOTA] = NODQUOT;
1663                 }
1664                 if (ogid == gid) {
1665                         ext2_dqrele(vp, ip->i_dquot[GRPQUOTA]);
1666                         ip->i_dquot[GRPQUOTA] = NODQUOT;
1667                 }
1668                 if ((error = ext2_chkdq(ip, change, cred, CHOWN)) == 0) {
1669                         if ((error = ext2_chkiq(ip, 1, cred, CHOWN)) == 0)
1670                                 goto good;
1671                         else
1672                                 (void)ext2_chkdq(ip, -change, cred, CHOWN|FORCE);
1673                 }
1674                 for (i = 0; i < MAXQUOTAS; i++) {
1675                         ext2_dqrele(vp, ip->i_dquot[i]);
1676                         ip->i_dquot[i] = NODQUOT;
1677                 }
1678         }
1679         ip->i_gid = ogid;
1680         ip->i_uid = ouid;
1681         if (ext2_getinoquota(ip) == 0) {
1682                 if (ouid == uid) {
1683                         ext2_dqrele(vp, ip->i_dquot[USRQUOTA]);
1684                         ip->i_dquot[USRQUOTA] = NODQUOT;
1685                 }
1686                 if (ogid == gid) {
1687                         ext2_dqrele(vp, ip->i_dquot[GRPQUOTA]);
1688                         ip->i_dquot[GRPQUOTA] = NODQUOT;
1689                 }
1690                 (void) ext2_chkdq(ip, change, cred, FORCE|CHOWN);
1691                 (void) ext2_chkiq(ip, 1, cred, FORCE|CHOWN);
1692                 (void) ext2_getinoquota(ip);
1693         }
1694         return (error);
1695 good:
1696         if (ext2_getinoquota(ip))
1697                 panic("ext2_chown: lost quota");
1698 #endif /* QUOTA */
1699         ip->i_flag |= IN_CHANGE;
1700         if (cred->cr_uid != 0 && (ouid != uid || ogid != gid))
1701                 ip->i_mode &= ~(ISUID | ISGID);
1702         return (0);
1703 }
1704
1705 /*
1706  * Mmap a file
1707  *
1708  * NB Currently unsupported.
1709  *
1710  * ext2_mmap(struct vnode *a_vp, int a_fflags, struct ucred *a_cred)
1711  */
1712 /* ARGSUSED */
1713 static
1714 int
1715 ext2_mmap(struct vop_mmap_args *ap)
1716 {
1717         return (EINVAL);
1718 }
1719
1720 /*
1721  * whiteout vnode call
1722  *
1723  * ext2_whiteout(struct vnode *a_dvp, struct componentname *a_cnp, int a_flags)
1724  */
1725 static
1726 int
1727 ext2_whiteout(struct vop_old_whiteout_args *ap)
1728 {
1729         return (EOPNOTSUPP);
1730 }
1731
1732 /*
1733  * Return target name of a symbolic link
1734  *
1735  * ext2_readlink(struct vnode *a_vp, struct uio *a_uio, struct ucred *a_cred)
1736  */
1737 static
1738 int
1739 ext2_readlink(struct vop_readlink_args *ap)
1740 {
1741         struct vnode *vp = ap->a_vp;
1742         struct inode *ip = VTOI(vp);
1743         int isize;
1744
1745         isize = ip->i_size;
1746         if ((isize < vp->v_mount->mnt_maxsymlinklen) ||
1747             (ip->i_din.di_blocks == 0)) {   /* XXX - for old fastlink support */
1748                 uiomove((char *)ip->i_shortlink, isize, ap->a_uio);
1749                 return (0);
1750         }
1751         return (VOP_READ(vp, ap->a_uio, 0, ap->a_cred));
1752 }
1753
1754 /*
1755  * Calculate the logical to physical mapping if not done already,
1756  * then call the device strategy routine.
1757  *
1758  * In order to be able to swap to a file, the VOP_BMAP operation may not
1759  * deadlock on memory.  See ext2_bmap() for details.
1760  *
1761  * ext2_strategy(struct vnode *a_vp, struct bio *a_bio)
1762  */
1763 static
1764 int
1765 ext2_strategy(struct vop_strategy_args *ap)
1766 {
1767         struct bio *bio = ap->a_bio;
1768         struct bio *nbio;
1769         struct buf *bp = bio->bio_buf;
1770         struct vnode *vp = ap->a_vp;
1771         struct inode *ip;
1772         int error;
1773
1774         ip = VTOI(vp);
1775         if (vp->v_type == VBLK || vp->v_type == VCHR)
1776                 panic("ext2_strategy: spec");
1777         nbio = push_bio(bio);
1778         if (nbio->bio_offset == NOOFFSET) {
1779                 error = VOP_BMAP(vp, bio->bio_offset, &nbio->bio_offset,
1780                                  NULL, NULL, bp->b_cmd);
1781                 if (error) {
1782                         bp->b_error = error;
1783                         bp->b_flags |= B_ERROR;
1784                         /* I/O was never started on nbio, must biodone(bio) */
1785                         biodone(bio);
1786                         return (error);
1787                 }
1788                 if (nbio->bio_offset == NOOFFSET)
1789                         vfs_bio_clrbuf(bp);
1790         }
1791         if (nbio->bio_offset == NOOFFSET) {
1792                 /* I/O was never started on nbio, must biodone(bio) */
1793                 biodone(bio);
1794                 return (0);
1795         }
1796         vn_strategy(ip->i_devvp, nbio);
1797         return (0);
1798 }
1799
1800 /*
1801  * Print out the contents of an inode.
1802  *
1803  * ext2_print(struct vnode *a_vp)
1804  */
1805 static
1806 int
1807 ext2_print(struct vop_print_args *ap)
1808 {
1809         struct vnode *vp = ap->a_vp;
1810         struct inode *ip = VTOI(vp);
1811
1812         kprintf("tag VT_EXT2FS, ino %lu, on dev %s (%d, %d)",
1813             (u_long)ip->i_number, devtoname(ip->i_dev), major(ip->i_dev),
1814             minor(ip->i_dev));
1815         if (vp->v_type == VFIFO)
1816                 fifo_printinfo(vp);
1817         lockmgr_printinfo(&vp->v_lock);
1818         kprintf("\n");
1819         return (0);
1820 }
1821
1822 /*
1823  * Read wrapper for special devices.
1824  *
1825  * ext2spec_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1826  *              struct ucred *a_cred)
1827  */
1828 static
1829 int
1830 ext2spec_read(struct vop_read_args *ap)
1831 {
1832         int error, resid;
1833         struct inode *ip;
1834         struct uio *uio;
1835
1836         uio = ap->a_uio;
1837         resid = uio->uio_resid;
1838         error = VOCALL(&spec_vnode_vops, &ap->a_head);
1839         /*
1840          * The inode may have been revoked during the call, so it must not
1841          * be accessed blindly here or in the other wrapper functions.
1842          */
1843         ip = VTOI(ap->a_vp);
1844         if (ip != NULL && (uio->uio_resid != resid || (error == 0 && resid != 0)))
1845                 ip->i_flag |= IN_ACCESS;
1846         return (error);
1847 }
1848
1849 /*
1850  * Write wrapper for special devices.
1851  *
1852  * ext2spec_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1853  *               struct ucred *a_cred)
1854  */
1855 static
1856 int
1857 ext2spec_write(struct vop_write_args *ap)
1858 {
1859         int error, resid;
1860         struct inode *ip;
1861         struct uio *uio;
1862
1863         uio = ap->a_uio;
1864         resid = uio->uio_resid;
1865         error = VOCALL(&spec_vnode_vops, &ap->a_head);
1866         ip = VTOI(ap->a_vp);
1867         if (ip != NULL && (uio->uio_resid != resid || (error == 0 && resid != 0)))
1868                 VTOI(ap->a_vp)->i_flag |= IN_CHANGE | IN_UPDATE;
1869         return (error);
1870 }
1871
1872 /*
1873  * Close wrapper for special devices.
1874  *
1875  * Update the times on the inode then do device close.
1876  *
1877  * ext2spec_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred)
1878  */
1879 static 
1880 int
1881 ext2spec_close(struct vop_close_args *ap)
1882 {
1883         struct vnode *vp = ap->a_vp;
1884
1885         if (vp->v_sysref.refcnt > 1)
1886                 ext2_itimes(vp);
1887         return (VOCALL(&spec_vnode_vops, &ap->a_head));
1888 }
1889
1890 /*
1891  * Read wrapper for fifos.
1892  *
1893  * ext2fifo_read(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1894  *              struct ucred *a_cred)
1895  */
1896 static
1897 int
1898 ext2fifo_read(struct vop_read_args *ap)
1899 {
1900         int error, resid;
1901         struct inode *ip;
1902         struct uio *uio;
1903
1904         uio = ap->a_uio;
1905         resid = uio->uio_resid;
1906         error = VOCALL(&fifo_vnode_vops, &ap->a_head);
1907         ip = VTOI(ap->a_vp);
1908         if ((ap->a_vp->v_mount->mnt_flag & MNT_NOATIME) == 0 && ip != NULL &&
1909             (uio->uio_resid != resid || (error == 0 && resid != 0)))
1910                 VTOI(ap->a_vp)->i_flag |= IN_ACCESS;
1911         return (error);
1912 }
1913
1914 /*
1915  * Write wrapper for fifos.
1916  *
1917  * ext2fifo_write(struct vnode *a_vp, struct uio *a_uio, int a_ioflag,
1918  *               struct ucred *a_cred)
1919  */
1920 static
1921 int
1922 ext2fifo_write(struct vop_write_args *ap)
1923 {
1924         int error, resid;
1925         struct inode *ip;
1926         struct uio *uio;
1927
1928         uio = ap->a_uio;
1929         resid = uio->uio_resid;
1930         error = VOCALL(&fifo_vnode_vops, &ap->a_head);
1931         ip = VTOI(ap->a_vp);
1932         if (ip != NULL && (uio->uio_resid != resid || (error == 0 && resid != 0)))
1933                 VTOI(ap->a_vp)->i_flag |= IN_CHANGE | IN_UPDATE;
1934         return (error);
1935 }
1936
1937 /*
1938  * Close wrapper for fifos.
1939  *
1940  * Update the times on the inode then do device close.
1941  *
1942  * ext2fifo_close(struct vnode *a_vp, int a_fflag, struct ucred *a_cred)
1943  */
1944 static
1945 int
1946 ext2fifo_close(struct vop_close_args *ap)
1947 {
1948         struct vnode *vp = ap->a_vp;
1949
1950         if (vp->v_sysref.refcnt > 1)
1951                 ext2_itimes(vp);
1952         return (VOCALL(&fifo_vnode_vops, &ap->a_head));
1953 }
1954
1955 /*
1956  * Kqfilter wrapper for fifos.
1957  *
1958  * Fall through to ext2 kqfilter routines if needed 
1959  */
1960 static
1961 int
1962 ext2fifo_kqfilter(struct vop_kqfilter_args *ap)
1963 {
1964         int error;
1965
1966         error = VOCALL(&fifo_vnode_vops, &ap->a_head);
1967         if (error)
1968                 error = ext2_kqfilter(ap);
1969         return (error);
1970 }
1971
1972 /*
1973  * Return POSIX pathconf information applicable to ext2 filesystems.
1974  *
1975  * ext2_pathconf(struct vnode *a_vp, int a_name, int *a_retval)
1976  */
1977 static
1978 int
1979 ext2_pathconf(struct vop_pathconf_args *ap)
1980 {
1981         switch (ap->a_name) {
1982         case _PC_LINK_MAX:
1983                 *ap->a_retval = LINK_MAX;
1984                 return (0);
1985         case _PC_NAME_MAX:
1986                 *ap->a_retval = NAME_MAX;
1987                 return (0);
1988         case _PC_PATH_MAX:
1989                 *ap->a_retval = PATH_MAX;
1990                 return (0);
1991         case _PC_PIPE_BUF:
1992                 *ap->a_retval = PIPE_BUF;
1993                 return (0);
1994         case _PC_CHOWN_RESTRICTED:
1995                 *ap->a_retval = 1;
1996                 return (0);
1997         case _PC_NO_TRUNC:
1998                 *ap->a_retval = 1;
1999                 return (0);
2000         default:
2001                 return (EINVAL);
2002         }
2003         /* NOTREACHED */
2004 }
2005
2006 /*
2007  * Advisory record locking support
2008  *
2009  * ext2_advlock(struct vnode *a_vp, caddr_t a_id, int a_op, struct flock *a_fl,
2010  *             int a_flags)
2011  */
2012 static
2013 int
2014 ext2_advlock(struct vop_advlock_args *ap)
2015 {
2016         struct inode *ip = VTOI(ap->a_vp);
2017
2018         return (lf_advlock(ap, &(ip->i_lockf), ip->i_size));
2019 }
2020
2021 /*
2022  * Initialize the vnode associated with a new inode, handle aliased
2023  * vnodes.
2024  */
2025 int
2026 ext2_vinit(struct mount *mntp, struct vnode **vpp)
2027 {
2028         struct inode *ip;
2029         struct vnode *vp;
2030         struct timeval tv;
2031
2032         vp = *vpp;
2033         ip = VTOI(vp);
2034
2035         switch(vp->v_type = IFTOVT(ip->i_mode)) {
2036         case VCHR:
2037         case VBLK:
2038                 vp->v_ops = &mntp->mnt_vn_spec_ops;
2039                 addaliasu(vp, umajor(ip->i_rdev), uminor(ip->i_rdev));
2040                 break;
2041         case VFIFO:
2042                 vp->v_ops = &mntp->mnt_vn_fifo_ops;
2043                 break;
2044         case VDIR:
2045         case VREG:
2046                 vinitvmio(vp, ip->i_size);
2047                 break;
2048         case VLNK:
2049                 if ((ip->i_size >= vp->v_mount->mnt_maxsymlinklen) &&
2050                     ip->i_din.di_blocks != 0
2051                 ) {
2052                         vinitvmio(vp, ip->i_size);
2053                 }
2054                 break;
2055         default:
2056                 break;
2057
2058         }
2059
2060         if (ip->i_number == ROOTINO)
2061                 vp->v_flag |= VROOT;
2062         /*
2063          * Initialize modrev times
2064          */
2065         getmicrouptime(&tv);
2066         SETHIGH(ip->i_modrev, tv.tv_sec);
2067         SETLOW(ip->i_modrev, tv.tv_usec * 4294);
2068         *vpp = vp;
2069         return (0);
2070 }
2071
2072 static struct filterops ext2read_filtops = 
2073         { 1, NULL, filt_ext2detach, filt_ext2read };
2074 static struct filterops ext2write_filtops = 
2075         { 1, NULL, filt_ext2detach, filt_ext2write };
2076 static struct filterops ext2vnode_filtops = 
2077         { 1, NULL, filt_ext2detach, filt_ext2vnode };
2078
2079 /*
2080  * ext2_kqfilter(struct vnode *a_vp, struct knote *a_kn)
2081  */
2082 static int
2083 ext2_kqfilter(struct vop_kqfilter_args *ap)
2084 {
2085         struct vnode *vp = ap->a_vp;
2086         struct knote *kn = ap->a_kn;
2087         lwkt_tokref ilock;
2088
2089         switch (kn->kn_filter) {
2090         case EVFILT_READ:
2091                 kn->kn_fop = &ext2read_filtops;
2092                 break;
2093         case EVFILT_WRITE:
2094                 kn->kn_fop = &ext2write_filtops;
2095                 break;
2096         case EVFILT_VNODE:
2097                 kn->kn_fop = &ext2vnode_filtops;
2098                 break;
2099         default:
2100                 return (1);
2101         }
2102
2103         kn->kn_hook = (caddr_t)vp;
2104
2105         lwkt_gettoken(&ilock, &vp->v_pollinfo.vpi_token);
2106         SLIST_INSERT_HEAD(&vp->v_pollinfo.vpi_selinfo.si_note, kn, kn_selnext);
2107         lwkt_reltoken(&ilock);
2108
2109         return (0);
2110 }
2111
2112 static void
2113 filt_ext2detach(struct knote *kn)
2114 {
2115         struct vnode *vp = (struct vnode *)kn->kn_hook;
2116         lwkt_tokref ilock;
2117
2118         lwkt_gettoken(&ilock, &vp->v_pollinfo.vpi_token);
2119         SLIST_REMOVE(&vp->v_pollinfo.vpi_selinfo.si_note,
2120             kn, knote, kn_selnext);
2121         lwkt_reltoken(&ilock);
2122 }
2123
2124 /*ARGSUSED*/
2125 static int
2126 filt_ext2read(struct knote *kn, long hint)
2127 {
2128         struct vnode *vp = (struct vnode *)kn->kn_hook;
2129         struct inode *ip = VTOI(vp);
2130
2131         /*
2132          * filesystem is gone, so set the EOF flag and schedule 
2133          * the knote for deletion.
2134          */
2135         if (hint == NOTE_REVOKE) {
2136                 kn->kn_flags |= (EV_EOF | EV_ONESHOT);
2137                 return (1);
2138         }
2139
2140         kn->kn_data = ip->i_size - kn->kn_fp->f_offset;
2141         return (kn->kn_data != 0);
2142 }
2143
2144 /*ARGSUSED*/
2145 static int
2146 filt_ext2write(struct knote *kn, long hint)
2147 {
2148         /*
2149          * filesystem is gone, so set the EOF flag and schedule 
2150          * the knote for deletion.
2151          */
2152         if (hint == NOTE_REVOKE)
2153                 kn->kn_flags |= (EV_EOF | EV_ONESHOT);
2154
2155         kn->kn_data = 0;
2156         return (1);
2157 }
2158
2159 static int
2160 filt_ext2vnode(struct knote *kn, long hint)
2161 {
2162         if (kn->kn_sfflags & hint)
2163                 kn->kn_fflags |= hint;
2164         if (hint == NOTE_REVOKE) {
2165                 kn->kn_flags |= EV_EOF;
2166                 return (1);
2167         }
2168         return (kn->kn_fflags != 0);
2169 }
2170
2171 struct vop_ops ext2_vnode_vops = {
2172         .vop_default =          vop_defaultop,
2173         .vop_fsync =            ext2_fsync,
2174         .vop_read =             ext2_read,
2175         .vop_reallocblks =      ext2_reallocblks,
2176         .vop_write =            ext2_write,
2177         .vop_access =           ext2_access,
2178         .vop_advlock =          ext2_advlock,
2179         .vop_bmap =             ext2_bmap,
2180         .vop_old_lookup =       ext2_lookup,
2181         .vop_close =            ext2_close,
2182         .vop_old_create =       ext2_create,
2183         .vop_getattr =          ext2_getattr,
2184         .vop_inactive =         ext2_inactive,
2185         .vop_old_link =         ext2_link,
2186         .vop_old_mkdir =        ext2_mkdir,
2187         .vop_old_mknod =        ext2_mknod,
2188         .vop_mmap =             ext2_mmap,
2189         .vop_open =             ext2_open,
2190         .vop_pathconf =         ext2_pathconf,
2191         .vop_poll =             vop_stdpoll,
2192         .vop_kqfilter =         ext2_kqfilter,
2193         .vop_print =            ext2_print,
2194         .vop_readdir =          ext2_readdir,
2195         .vop_readlink =         ext2_readlink,
2196         .vop_reclaim =          ext2_reclaim,
2197         .vop_old_remove =       ext2_remove,
2198         .vop_old_rename =       ext2_rename,
2199         .vop_old_rmdir =        ext2_rmdir,
2200         .vop_setattr =          ext2_setattr,
2201         .vop_strategy =         ext2_strategy,
2202         .vop_old_symlink =      ext2_symlink,
2203         .vop_old_whiteout =     ext2_whiteout,
2204         .vop_getpages =         ext2_getpages,
2205         .vop_putpages =         vop_stdputpages
2206 };
2207
2208 struct vop_ops ext2_spec_vops = {
2209         .vop_default =          ext2_vnoperatespec,
2210         .vop_fsync =            ext2_fsync,
2211         .vop_access =           ext2_access,
2212         .vop_close =            ext2spec_close,
2213         .vop_getattr =          ext2_getattr,
2214         .vop_inactive =         ext2_inactive,
2215         .vop_print =            ext2_print,
2216         .vop_read =             ext2spec_read,
2217         .vop_reclaim =          ext2_reclaim,
2218         .vop_setattr =          ext2_setattr,
2219         .vop_write =            ext2spec_write
2220 };
2221
2222 struct vop_ops ext2_fifo_vops = {
2223         .vop_default =          ext2_vnoperatefifo,
2224         .vop_fsync =            ext2_fsync,
2225         .vop_access =           ext2_access,
2226         .vop_close =            ext2fifo_close,
2227         .vop_getattr =          ext2_getattr,
2228         .vop_inactive =         ext2_inactive,
2229         .vop_kqfilter =         ext2fifo_kqfilter,
2230         .vop_print =            ext2_print,
2231         .vop_read =             ext2fifo_read,
2232         .vop_reclaim =          ext2_reclaim,
2233         .vop_setattr =          ext2_setattr,
2234         .vop_write =            ext2fifo_write
2235 };
2236
2237 VNODEOP_SET(ext2_vnode_vops);
2238 VNODEOP_SET(ext2_spec_vops);
2239 VNODEOP_SET(ext2_fifo_vops);
2240
2241 /*
2242  * ext2_vnoperate()
2243  */
2244 int
2245 ext2_vnoperate(struct vop_generic_args *ap)
2246 {
2247         return (VOCALL(&ext2_vnode_vops, ap));
2248 }
2249
2250 /*
2251  * ext2_vnoperatefifo()
2252  */
2253 int
2254 ext2_vnoperatefifo(struct vop_generic_args *ap)
2255 {
2256         return (VOCALL(&ext2_fifo_vops, ap));
2257 }
2258
2259 /*
2260  * ext2_vnoperatespec()
2261  */
2262 int
2263 ext2_vnoperatespec(struct vop_generic_args *ap)
2264 {
2265         return (VOCALL(&ext2_spec_vops, ap));
2266 }
2267