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