]> CyberLeo.Net >> Repos - FreeBSD/stable/9.git/blob - sys/fs/ext2fs/ext2_vnops.c
MFC r234104:
[FreeBSD/stable/9.git] / sys / fs / 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  * 4. Neither the name of the University nor the names of its contributors
25  *    may be used to endorse or promote products derived from this software
26  *    without specific prior written permission.
27  *
28  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
29  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
30  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
31  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
32  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
33  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
34  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
35  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
36  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
37  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
38  * SUCH DAMAGE.
39  *
40  *      @(#)ufs_vnops.c 8.7 (Berkeley) 2/3/94
41  *      @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95
42  * $FreeBSD$
43  */
44
45 #include "opt_suiddir.h"
46
47 #include <sys/param.h>
48 #include <sys/systm.h>
49 #include <sys/kernel.h>
50 #include <sys/fcntl.h>
51 #include <sys/stat.h>
52 #include <sys/bio.h>
53 #include <sys/buf.h>
54 #include <sys/endian.h>
55 #include <sys/priv.h>
56 #include <sys/mount.h>
57 #include <sys/unistd.h>
58 #include <sys/time.h>
59 #include <sys/vnode.h>
60 #include <sys/namei.h>
61 #include <sys/lockf.h>
62 #include <sys/event.h>
63 #include <sys/conf.h>
64 #include <sys/file.h>
65
66 #include <vm/vm.h>
67 #include <vm/vm_page.h>
68 #include <vm/vm_object.h>
69 #include <vm/vm_extern.h>
70 #include <vm/vnode_pager.h>
71
72 #include "opt_directio.h"
73
74 #include <fs/fifofs/fifo.h>
75
76 #include <ufs/ufs/dir.h>
77
78 #include <fs/ext2fs/fs.h>
79 #include <fs/ext2fs/inode.h>
80 #include <fs/ext2fs/ext2_extern.h>
81 #include <fs/ext2fs/ext2fs.h>
82 #include <fs/ext2fs/ext2_dinode.h>
83 #include <fs/ext2fs/ext2_dir.h>
84 #include <fs/ext2fs/ext2_mount.h>
85
86 static int ext2_makeinode(int mode, struct vnode *, struct vnode **, struct componentname *);
87 static void ext2_itimes_locked(struct vnode *);
88
89 static vop_access_t     ext2_access;
90 static int ext2_chmod(struct vnode *, int, struct ucred *, struct thread *);
91 static int ext2_chown(struct vnode *, uid_t, gid_t, struct ucred *,
92     struct thread *);
93 static vop_close_t      ext2_close;
94 static vop_create_t     ext2_create;
95 static vop_fsync_t      ext2_fsync;
96 static vop_getattr_t    ext2_getattr;
97 static vop_link_t       ext2_link;
98 static vop_mkdir_t      ext2_mkdir;
99 static vop_mknod_t      ext2_mknod;
100 static vop_open_t       ext2_open;
101 static vop_pathconf_t   ext2_pathconf;
102 static vop_print_t      ext2_print;
103 static vop_read_t       ext2_read;
104 static vop_readlink_t   ext2_readlink;
105 static vop_remove_t     ext2_remove;
106 static vop_rename_t     ext2_rename;
107 static vop_rmdir_t      ext2_rmdir;
108 static vop_setattr_t    ext2_setattr;
109 static vop_strategy_t   ext2_strategy;
110 static vop_symlink_t    ext2_symlink;
111 static vop_write_t      ext2_write;
112 static vop_vptofh_t     ext2_vptofh;
113 static vop_close_t      ext2fifo_close;
114 static vop_kqfilter_t   ext2fifo_kqfilter;
115
116 /* Global vfs data structures for ext2. */
117 struct vop_vector ext2_vnodeops = {
118         .vop_default =          &default_vnodeops,
119         .vop_access =           ext2_access,
120         .vop_bmap =             ext2_bmap,
121         .vop_cachedlookup =     ext2_lookup,
122         .vop_close =            ext2_close,
123         .vop_create =           ext2_create,
124         .vop_fsync =            ext2_fsync,
125         .vop_getattr =          ext2_getattr,
126         .vop_inactive =         ext2_inactive,
127         .vop_link =             ext2_link,
128         .vop_lookup =           vfs_cache_lookup,
129         .vop_mkdir =            ext2_mkdir,
130         .vop_mknod =            ext2_mknod,
131         .vop_open =             ext2_open,
132         .vop_pathconf =         ext2_pathconf,
133         .vop_poll =             vop_stdpoll,
134         .vop_print =            ext2_print,
135         .vop_read =             ext2_read,
136         .vop_readdir =          ext2_readdir,
137         .vop_readlink =         ext2_readlink,
138         .vop_reallocblks =      ext2_reallocblks,
139         .vop_reclaim =          ext2_reclaim,
140         .vop_remove =           ext2_remove,
141         .vop_rename =           ext2_rename,
142         .vop_rmdir =            ext2_rmdir,
143         .vop_setattr =          ext2_setattr,
144         .vop_strategy =         ext2_strategy,
145         .vop_symlink =          ext2_symlink,
146         .vop_write =            ext2_write,
147         .vop_vptofh =           ext2_vptofh,
148 };
149
150 struct vop_vector ext2_fifoops = {
151         .vop_default =          &fifo_specops,
152         .vop_access =           ext2_access,
153         .vop_close =            ext2fifo_close,
154         .vop_fsync =            ext2_fsync,
155         .vop_getattr =          ext2_getattr,
156         .vop_inactive =         ext2_inactive,
157         .vop_kqfilter =         ext2fifo_kqfilter,
158         .vop_print =            ext2_print,
159         .vop_read =             VOP_PANIC,
160         .vop_reclaim =          ext2_reclaim,
161         .vop_setattr =          ext2_setattr,
162         .vop_write =            VOP_PANIC,
163         .vop_vptofh =           ext2_vptofh,
164 };
165
166 /*
167  * A virgin directory (no blushing please).
168  * Note that the type and namlen fields are reversed relative to ext2.
169  * Also, we don't use `struct odirtemplate', since it would just cause
170  * endianness problems.
171  */
172 static struct dirtemplate mastertemplate = {
173         0, 12, 1, EXT2_FT_DIR, ".",
174         0, DIRBLKSIZ - 12, 2, EXT2_FT_DIR, ".."
175 };
176 static struct dirtemplate omastertemplate = {
177         0, 12, 1, EXT2_FT_UNKNOWN, ".",
178         0, DIRBLKSIZ - 12, 2, EXT2_FT_UNKNOWN, ".."
179 };
180
181 static void
182 ext2_itimes_locked(struct vnode *vp)
183 {
184         struct inode *ip;
185         struct timespec ts;
186
187         ASSERT_VI_LOCKED(vp, __func__); 
188
189         ip = VTOI(vp);
190         if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE)) == 0)
191                 return;
192         if ((vp->v_type == VBLK || vp->v_type == VCHR))
193                 ip->i_flag |= IN_LAZYMOD;
194         else
195                 ip->i_flag |= IN_MODIFIED;
196         if ((vp->v_mount->mnt_flag & MNT_RDONLY) == 0) {
197                 vfs_timestamp(&ts);
198                 if (ip->i_flag & IN_ACCESS) {
199                         ip->i_atime = ts.tv_sec;
200                         ip->i_atimensec = ts.tv_nsec;
201                 }
202                 if (ip->i_flag & IN_UPDATE) {
203                         ip->i_mtime = ts.tv_sec;
204                         ip->i_mtimensec = ts.tv_nsec;
205                         ip->i_modrev++;
206                 }
207                 if (ip->i_flag & IN_CHANGE) {
208                         ip->i_ctime = ts.tv_sec;
209                         ip->i_ctimensec = ts.tv_nsec;
210                 }
211         }
212         ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE);
213 }
214
215 void
216 ext2_itimes(struct vnode *vp)
217 {
218
219         VI_LOCK(vp);
220         ext2_itimes_locked(vp);
221         VI_UNLOCK(vp);
222 }
223
224 /*
225  * Create a regular file
226  */
227 static int
228 ext2_create(ap)
229         struct vop_create_args /* {
230                 struct vnode *a_dvp;
231                 struct vnode **a_vpp;
232                 struct componentname *a_cnp;
233                 struct vattr *a_vap;
234         } */ *ap;
235 {
236         int error;
237
238         error =
239             ext2_makeinode(MAKEIMODE(ap->a_vap->va_type, ap->a_vap->va_mode),
240             ap->a_dvp, ap->a_vpp, ap->a_cnp);
241         if (error)
242                 return (error);
243         return (0);
244 }
245
246 static int
247 ext2_open(ap)
248         struct vop_open_args /* {
249                 struct vnode *a_vp;
250                 int  a_mode;
251                 struct ucred *a_cred;
252                 struct thread *a_td;
253         } */ *ap;
254 {
255
256         if (ap->a_vp->v_type == VBLK || ap->a_vp->v_type == VCHR)
257                 return (EOPNOTSUPP);
258
259         /*
260          * Files marked append-only must be opened for appending.
261          */
262         if ((VTOI(ap->a_vp)->i_flags & APPEND) &&
263             (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE)
264                 return (EPERM);
265
266         vnode_create_vobject(ap->a_vp, VTOI(ap->a_vp)->i_size, ap->a_td);
267
268         return (0);
269 }
270
271 /*
272  * Close called.
273  *
274  * Update the times on the inode.
275  */
276 static int
277 ext2_close(ap)
278         struct vop_close_args /* {
279                 struct vnode *a_vp;
280                 int  a_fflag;
281                 struct ucred *a_cred;
282                 struct thread *a_td;
283         } */ *ap;
284 {
285         struct vnode *vp = ap->a_vp;
286
287         VI_LOCK(vp);
288         if (vp->v_usecount > 1)
289                 ext2_itimes_locked(vp);
290         VI_UNLOCK(vp);
291         return (0);
292 }
293
294 static int
295 ext2_access(ap)
296         struct vop_access_args /* {
297                 struct vnode *a_vp;
298                 accmode_t a_accmode;
299                 struct ucred *a_cred;
300                 struct thread *a_td;
301         } */ *ap;
302 {
303         struct vnode *vp = ap->a_vp;
304         struct inode *ip = VTOI(vp);
305         accmode_t accmode = ap->a_accmode;
306         int error;
307
308         if (vp->v_type == VBLK || vp->v_type == VCHR)
309                 return (EOPNOTSUPP);
310
311         /*
312          * Disallow write attempts on read-only file systems;
313          * unless the file is a socket, fifo, or a block or
314          * character device resident on the file system.
315          */
316         if (accmode & VWRITE) {
317                 switch (vp->v_type) {
318                 case VDIR:
319                 case VLNK:
320                 case VREG:
321                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
322                                 return (EROFS);
323                         break;
324                 default:
325                         break;
326                 }
327         }
328
329         /* If immutable bit set, nobody gets to write it. */
330         if ((accmode & VWRITE) && (ip->i_flags & (SF_IMMUTABLE | SF_SNAPSHOT)))
331                 return (EPERM);
332
333         error = vaccess(vp->v_type, ip->i_mode, ip->i_uid, ip->i_gid,
334             ap->a_accmode, ap->a_cred, NULL);
335         return (error);
336 }
337
338 static int
339 ext2_getattr(ap)
340         struct vop_getattr_args /* {
341                 struct vnode *a_vp;
342                 struct vattr *a_vap;
343                 struct ucred *a_cred;
344         } */ *ap;
345 {
346         struct vnode *vp = ap->a_vp;
347         struct inode *ip = VTOI(vp);
348         struct vattr *vap = ap->a_vap;
349
350         ext2_itimes(vp);
351         /*
352          * Copy from inode table
353          */
354         vap->va_fsid = dev2udev(ip->i_devvp->v_rdev);
355         vap->va_fileid = ip->i_number;
356         vap->va_mode = ip->i_mode & ~IFMT;
357         vap->va_nlink = ip->i_nlink;
358         vap->va_uid = ip->i_uid;
359         vap->va_gid = ip->i_gid;
360         vap->va_rdev = ip->i_rdev;
361         vap->va_size = ip->i_size;
362         vap->va_atime.tv_sec = ip->i_atime;
363         vap->va_atime.tv_nsec = E2DI_HAS_XTIME(ip) ? ip->i_atimensec : 0;
364         vap->va_mtime.tv_sec = ip->i_mtime;
365         vap->va_mtime.tv_nsec = E2DI_HAS_XTIME(ip) ? ip->i_mtimensec : 0;
366         vap->va_ctime.tv_sec = ip->i_ctime;
367         vap->va_ctime.tv_nsec = E2DI_HAS_XTIME(ip) ? ip->i_ctimensec : 0;
368         if E2DI_HAS_XTIME(ip) {
369                 vap->va_birthtime.tv_sec = ip->i_birthtime;
370                 vap->va_birthtime.tv_nsec = ip->i_birthnsec;
371         }
372         vap->va_flags = ip->i_flags;
373         vap->va_gen = ip->i_gen;
374         vap->va_blocksize = vp->v_mount->mnt_stat.f_iosize;
375         vap->va_bytes = dbtob((u_quad_t)ip->i_blocks);
376         vap->va_type = IFTOVT(ip->i_mode);
377         vap->va_filerev = ip->i_modrev;
378         return (0);
379 }
380
381 /*
382  * Set attribute vnode op. called from several syscalls
383  */
384 static int
385 ext2_setattr(ap)
386         struct vop_setattr_args /* {
387                 struct vnode *a_vp;
388                 struct vattr *a_vap;
389                 struct ucred *a_cred;
390         } */ *ap;
391 {
392         struct vattr *vap = ap->a_vap;
393         struct vnode *vp = ap->a_vp;
394         struct inode *ip = VTOI(vp);
395         struct ucred *cred = ap->a_cred;
396         struct thread *td = curthread;
397         int error;
398
399         /*
400          * Check for unsettable attributes.
401          */
402         if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
403             (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
404             (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
405             ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
406                 return (EINVAL);
407         }
408         if (vap->va_flags != VNOVAL) {
409                 /* Disallow flags not supported by ext2fs. */
410                 if(vap->va_flags & ~(SF_APPEND | SF_IMMUTABLE | UF_NODUMP))
411                         return (EOPNOTSUPP);
412
413                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
414                         return (EROFS);
415                 /*
416                  * Callers may only modify the file flags on objects they
417                  * have VADMIN rights for.
418                  */
419                 if ((error = VOP_ACCESS(vp, VADMIN, cred, td)))
420                         return (error);
421                 /*
422                  * Unprivileged processes and privileged processes in
423                  * jail() are not permitted to unset system flags, or
424                  * modify flags if any system flags are set.
425                  * Privileged non-jail processes may not modify system flags
426                  * if securelevel > 0 and any existing system flags are set.
427                  */
428                 if (!priv_check_cred(cred, PRIV_VFS_SYSFLAGS, 0)) {
429                         if (ip->i_flags &
430                             (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND)) {
431                                 error = securelevel_gt(cred, 0);
432                                 if (error)
433                                         return (error);
434                         }
435                         ip->i_flags = vap->va_flags;
436                 } else {
437                         if (ip->i_flags &
438                             (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND) ||
439                             (vap->va_flags & UF_SETTABLE) != vap->va_flags)
440                                 return (EPERM);
441                         ip->i_flags &= SF_SETTABLE;
442                         ip->i_flags |= (vap->va_flags & UF_SETTABLE);
443                 }
444                 ip->i_flag |= IN_CHANGE;
445                 if (ip->i_flags & (IMMUTABLE | APPEND))
446                         return (0);
447         }
448         if (ip->i_flags & (IMMUTABLE | APPEND))
449                 return (EPERM);
450         /*
451          * Go through the fields and update iff not VNOVAL.
452          */
453         if (vap->va_uid != (uid_t)VNOVAL || vap->va_gid != (gid_t)VNOVAL) {
454                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
455                         return (EROFS);
456                 if ((error = ext2_chown(vp, vap->va_uid, vap->va_gid, cred,
457                     td)) != 0)
458                         return (error);
459         }
460         if (vap->va_size != VNOVAL) {
461                 /*
462                  * Disallow write attempts on read-only file systems;
463                  * unless the file is a socket, fifo, or a block or
464                  * character device resident on the file system.
465                  */
466                 switch (vp->v_type) {
467                 case VDIR:
468                         return (EISDIR);
469                 case VLNK:
470                 case VREG:
471                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
472                                 return (EROFS);
473                         break;
474                 default:
475                         break;
476                 }
477                 if ((error = ext2_truncate(vp, vap->va_size, 0, cred, td)) != 0)
478                         return (error);
479         }
480         if (vap->va_atime.tv_sec != VNOVAL || vap->va_mtime.tv_sec != VNOVAL) {
481                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
482                         return (EROFS);
483                 /*
484                  * From utimes(2):
485                  * If times is NULL, ... The caller must be the owner of
486                  * the file, have permission to write the file, or be the
487                  * super-user.
488                  * If times is non-NULL, ... The caller must be the owner of
489                  * the file or be the super-user.
490                  */
491                 if ((error = VOP_ACCESS(vp, VADMIN, cred, td)) &&
492                     ((vap->va_vaflags & VA_UTIMES_NULL) == 0 ||
493                     (error = VOP_ACCESS(vp, VWRITE, cred, td))))
494                         return (error);
495                 if (vap->va_atime.tv_sec != VNOVAL)
496                         ip->i_flag |= IN_ACCESS;
497                 if (vap->va_mtime.tv_sec != VNOVAL)
498                         ip->i_flag |= IN_CHANGE | IN_UPDATE;
499                 ext2_itimes(vp);
500                 if (vap->va_atime.tv_sec != VNOVAL) {
501                         ip->i_atime = vap->va_atime.tv_sec;
502                         ip->i_atimensec = vap->va_atime.tv_nsec;
503                 }
504                 if (vap->va_mtime.tv_sec != VNOVAL) {
505                         ip->i_mtime = vap->va_mtime.tv_sec;
506                         ip->i_mtimensec = vap->va_mtime.tv_nsec;
507                 }
508                 ip->i_birthtime = vap->va_birthtime.tv_sec;
509                 ip->i_birthnsec = vap->va_birthtime.tv_nsec;
510                 error = ext2_update(vp, 0);
511                 if (error)
512                         return (error);
513         }
514         error = 0;
515         if (vap->va_mode != (mode_t)VNOVAL) {
516                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
517                         return (EROFS);
518                 error = ext2_chmod(vp, (int)vap->va_mode, cred, td);
519         }
520         return (error);
521 }
522
523 /*
524  * Change the mode on a file.
525  * Inode must be locked before calling.
526  */
527 static int
528 ext2_chmod(vp, mode, cred, td)
529         struct vnode *vp;
530         int mode;
531         struct ucred *cred;
532         struct thread *td;
533 {
534         struct inode *ip = VTOI(vp);
535         int error;
536
537         /*
538          * To modify the permissions on a file, must possess VADMIN
539          * for that file.
540          */
541         if ((error = VOP_ACCESS(vp, VADMIN, cred, td)))
542                 return (error);
543         /*
544          * Privileged processes may set the sticky bit on non-directories,
545          * as well as set the setgid bit on a file with a group that the
546          * process is not a member of.
547          */
548         if (vp->v_type != VDIR && (mode & S_ISTXT)) {
549                 error = priv_check_cred(cred, PRIV_VFS_STICKYFILE, 0);
550                 if (error)
551                         return (EFTYPE);
552         }
553         if (!groupmember(ip->i_gid, cred) && (mode & ISGID)) {
554                 error = priv_check_cred(cred, PRIV_VFS_SETGID, 0);
555                 if (error)
556                         return (error);
557         }
558         ip->i_mode &= ~ALLPERMS;
559         ip->i_mode |= (mode & ALLPERMS);
560         ip->i_flag |= IN_CHANGE;
561         return (0);
562 }
563
564 /*
565  * Perform chown operation on inode ip;
566  * inode must be locked prior to call.
567  */
568 static int
569 ext2_chown(vp, uid, gid, cred, td)
570         struct vnode *vp;
571         uid_t uid;
572         gid_t gid;
573         struct ucred *cred;
574         struct thread *td;
575 {
576         struct inode *ip = VTOI(vp);
577         uid_t ouid;
578         gid_t ogid;
579         int error = 0;
580
581         if (uid == (uid_t)VNOVAL)
582                 uid = ip->i_uid;
583         if (gid == (gid_t)VNOVAL)
584                 gid = ip->i_gid;
585         /*
586          * To modify the ownership of a file, must possess VADMIN
587          * for that file.
588          */
589         if ((error = VOP_ACCESS(vp, VADMIN, cred, td)))
590                 return (error);
591         /*
592          * To change the owner of a file, or change the group of a file
593          * to a group of which we are not a member, the caller must
594          * have privilege.
595          */
596         if (uid != ip->i_uid || (gid != ip->i_gid &&
597             !groupmember(gid, cred))) {
598                 error = priv_check_cred(cred, PRIV_VFS_CHOWN, 0);
599                 if (error)
600                         return (error);
601         }
602         ogid = ip->i_gid;
603         ouid = ip->i_uid;
604         ip->i_gid = gid;
605         ip->i_uid = uid;
606         ip->i_flag |= IN_CHANGE;
607         if ((ip->i_mode & (ISUID | ISGID)) && (ouid != uid || ogid != gid)) {
608                 if (priv_check_cred(cred, PRIV_VFS_RETAINSUGID, 0) != 0)
609                         ip->i_mode &= ~(ISUID | ISGID);
610         }
611         return (0);
612 }
613
614 /*
615  * Synch an open file.
616  */
617 /* ARGSUSED */
618 static int
619 ext2_fsync(ap)
620         struct vop_fsync_args /* {
621                 struct vnode *a_vp;
622                 struct ucred *a_cred;
623                 int a_waitfor;
624                 struct thread *a_td;
625         } */ *ap;
626 {
627         /*
628          * Flush all dirty buffers associated with a vnode.
629          */
630
631         vop_stdfsync(ap);
632
633         return (ext2_update(ap->a_vp, ap->a_waitfor == MNT_WAIT));
634 }
635
636 /*
637  * Mknod vnode call
638  */
639 /* ARGSUSED */
640 static int
641 ext2_mknod(ap)
642         struct vop_mknod_args /* {
643                 struct vnode *a_dvp;
644                 struct vnode **a_vpp;
645                 struct componentname *a_cnp;
646                 struct vattr *a_vap;
647         } */ *ap;
648 {
649         struct vattr *vap = ap->a_vap;
650         struct vnode **vpp = ap->a_vpp;
651         struct inode *ip;
652         ino_t ino;
653         int error;
654
655         error = ext2_makeinode(MAKEIMODE(vap->va_type, vap->va_mode),
656             ap->a_dvp, vpp, ap->a_cnp);
657         if (error)
658                 return (error);
659         ip = VTOI(*vpp);
660         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
661         if (vap->va_rdev != VNOVAL) {
662                 /*
663                  * Want to be able to use this to make badblock
664                  * inodes, so don't truncate the dev number.
665                  */
666                 ip->i_rdev = vap->va_rdev;
667         }
668         /*
669          * Remove inode, then reload it through VFS_VGET so it is
670          * checked to see if it is an alias of an existing entry in
671          * the inode cache.      XXX I don't believe this is necessary now.
672          */
673         (*vpp)->v_type = VNON;
674         ino = ip->i_number;     /* Save this before vgone() invalidates ip. */
675         vgone(*vpp);
676         vput(*vpp);
677         error = VFS_VGET(ap->a_dvp->v_mount, ino, LK_EXCLUSIVE, vpp);
678         if (error) {
679                 *vpp = NULL;
680                 return (error);
681         }
682         return (0);
683 }
684
685 static int
686 ext2_remove(ap)
687         struct vop_remove_args /* {
688                 struct vnode *a_dvp;
689                 struct vnode *a_vp;
690                 struct componentname *a_cnp;
691         } */ *ap;
692 {
693         struct inode *ip;
694         struct vnode *vp = ap->a_vp;
695         struct vnode *dvp = ap->a_dvp;
696         int error;
697
698         ip = VTOI(vp);
699         if ((ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
700             (VTOI(dvp)->i_flags & APPEND)) {
701                 error = EPERM;
702                 goto out;
703         }
704         error = ext2_dirremove(dvp, ap->a_cnp);
705         if (error == 0) {
706                 ip->i_nlink--;
707                 ip->i_flag |= IN_CHANGE;
708         }
709 out:
710         return (error);
711 }
712
713 /*
714  * link vnode call
715  */
716 static int
717 ext2_link(ap)
718         struct vop_link_args /* {
719                 struct vnode *a_tdvp;
720                 struct vnode *a_vp;
721                 struct componentname *a_cnp;
722         } */ *ap;
723 {
724         struct vnode *vp = ap->a_vp;
725         struct vnode *tdvp = ap->a_tdvp;
726         struct componentname *cnp = ap->a_cnp;
727         struct inode *ip;
728         int error;
729
730 #ifdef DIAGNOSTIC
731         if ((cnp->cn_flags & HASBUF) == 0)
732                 panic("ext2_link: no name");
733 #endif
734         if (tdvp->v_mount != vp->v_mount) {
735                 error = EXDEV;
736                 goto out;
737         }
738         ip = VTOI(vp);
739         if ((nlink_t)ip->i_nlink >= LINK_MAX) {
740                 error = EMLINK;
741                 goto out;
742         }
743         if (ip->i_flags & (IMMUTABLE | APPEND)) {
744                 error = EPERM;
745                 goto out;
746         }
747         ip->i_nlink++;
748         ip->i_flag |= IN_CHANGE;
749         error = ext2_update(vp, !DOINGASYNC(vp));
750         if (!error)
751                 error = ext2_direnter(ip, tdvp, cnp);
752         if (error) {
753                 ip->i_nlink--;
754                 ip->i_flag |= IN_CHANGE;
755         }
756 out:
757         return (error);
758 }
759
760 /*
761  * Rename system call.
762  *      rename("foo", "bar");
763  * is essentially
764  *      unlink("bar");
765  *      link("foo", "bar");
766  *      unlink("foo");
767  * but ``atomically''.  Can't do full commit without saving state in the
768  * inode on disk which isn't feasible at this time.  Best we can do is
769  * always guarantee the target exists.
770  *
771  * Basic algorithm is:
772  *
773  * 1) Bump link count on source while we're linking it to the
774  *    target.  This also ensure the inode won't be deleted out
775  *    from underneath us while we work (it may be truncated by
776  *    a concurrent `trunc' or `open' for creation).
777  * 2) Link source to destination.  If destination already exists,
778  *    delete it first.
779  * 3) Unlink source reference to inode if still around. If a
780  *    directory was moved and the parent of the destination
781  *    is different from the source, patch the ".." entry in the
782  *    directory.
783  */
784 static int
785 ext2_rename(ap)
786         struct vop_rename_args  /* {
787                 struct vnode *a_fdvp;
788                 struct vnode *a_fvp;
789                 struct componentname *a_fcnp;
790                 struct vnode *a_tdvp;
791                 struct vnode *a_tvp;
792                 struct componentname *a_tcnp;
793         } */ *ap;
794 {
795         struct vnode *tvp = ap->a_tvp;
796         struct vnode *tdvp = ap->a_tdvp;
797         struct vnode *fvp = ap->a_fvp;
798         struct vnode *fdvp = ap->a_fdvp;
799         struct componentname *tcnp = ap->a_tcnp;
800         struct componentname *fcnp = ap->a_fcnp;
801         struct inode *ip, *xp, *dp;
802         struct dirtemplate dirbuf;
803         int doingdirectory = 0, oldparent = 0, newparent = 0;
804         int error = 0;
805         u_char namlen;
806
807 #ifdef DIAGNOSTIC
808         if ((tcnp->cn_flags & HASBUF) == 0 ||
809             (fcnp->cn_flags & HASBUF) == 0)
810                 panic("ext2_rename: no name");
811 #endif
812         /*
813          * Check for cross-device rename.
814          */
815         if ((fvp->v_mount != tdvp->v_mount) ||
816             (tvp && (fvp->v_mount != tvp->v_mount))) {
817                 error = EXDEV;
818 abortit:
819                 if (tdvp == tvp)
820                         vrele(tdvp);
821                 else
822                         vput(tdvp);
823                 if (tvp)
824                         vput(tvp);
825                 vrele(fdvp);
826                 vrele(fvp);
827                 return (error);
828         }
829
830         if (tvp && ((VTOI(tvp)->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
831             (VTOI(tdvp)->i_flags & APPEND))) {
832                 error = EPERM;
833                 goto abortit;
834         }
835
836         /*
837          * Renaming a file to itself has no effect.  The upper layers should
838          * not call us in that case.  Temporarily just warn if they do.
839          */
840         if (fvp == tvp) {
841                 printf("ext2_rename: fvp == tvp (can't happen)\n");
842                 error = 0;
843                 goto abortit;
844         }
845
846         if ((error = vn_lock(fvp, LK_EXCLUSIVE)) != 0)
847                 goto abortit;
848         dp = VTOI(fdvp);
849         ip = VTOI(fvp);
850         if (ip->i_nlink >= LINK_MAX) {
851                 VOP_UNLOCK(fvp, 0);
852                 error = EMLINK;
853                 goto abortit;
854         }
855         if ((ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))
856             || (dp->i_flags & APPEND)) {
857                 VOP_UNLOCK(fvp, 0);
858                 error = EPERM;
859                 goto abortit;
860         }
861         if ((ip->i_mode & IFMT) == IFDIR) {
862                 /*
863                  * Avoid ".", "..", and aliases of "." for obvious reasons.
864                  */
865                 if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
866                     dp == ip || (fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT ||
867                     (ip->i_flag & IN_RENAME)) {
868                         VOP_UNLOCK(fvp, 0);
869                         error = EINVAL;
870                         goto abortit;
871                 }
872                 ip->i_flag |= IN_RENAME;
873                 oldparent = dp->i_number;
874                 doingdirectory++;
875         }
876         vrele(fdvp);
877
878         /*
879          * When the target exists, both the directory
880          * and target vnodes are returned locked.
881          */
882         dp = VTOI(tdvp);
883         xp = NULL;
884         if (tvp)
885                 xp = VTOI(tvp);
886
887         /*
888          * 1) Bump link count while we're moving stuff
889          *    around.  If we crash somewhere before
890          *    completing our work, the link count
891          *    may be wrong, but correctable.
892          */
893         ip->i_nlink++;
894         ip->i_flag |= IN_CHANGE;
895         if ((error = ext2_update(fvp, !DOINGASYNC(fvp))) != 0) {
896                 VOP_UNLOCK(fvp, 0);
897                 goto bad;
898         }
899
900         /*
901          * If ".." must be changed (ie the directory gets a new
902          * parent) then the source directory must not be in the
903          * directory hierarchy above the target, as this would
904          * orphan everything below the source directory. Also
905          * the user must have write permission in the source so
906          * as to be able to change "..". We must repeat the call
907          * to namei, as the parent directory is unlocked by the
908          * call to checkpath().
909          */
910         error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_thread);
911         VOP_UNLOCK(fvp, 0);
912         if (oldparent != dp->i_number)
913                 newparent = dp->i_number;
914         if (doingdirectory && newparent) {
915                 if (error)      /* write access check above */
916                         goto bad;
917                 if (xp != NULL)
918                         vput(tvp);
919                 error = ext2_checkpath(ip, dp, tcnp->cn_cred);
920                 if (error)
921                         goto out;
922                 VREF(tdvp);
923                 error = relookup(tdvp, &tvp, tcnp);
924                 if (error)
925                         goto out;
926                 vrele(tdvp);
927                 dp = VTOI(tdvp);
928                 xp = NULL;
929                 if (tvp)
930                         xp = VTOI(tvp);
931         }
932         /*
933          * 2) If target doesn't exist, link the target
934          *    to the source and unlink the source.
935          *    Otherwise, rewrite the target directory
936          *    entry to reference the source inode and
937          *    expunge the original entry's existence.
938          */
939         if (xp == NULL) {
940                 if (dp->i_devvp != ip->i_devvp)
941                         panic("ext2_rename: EXDEV");
942                 /*
943                  * Account for ".." in new directory.
944                  * When source and destination have the same
945                  * parent we don't fool with the link count.
946                  */
947                 if (doingdirectory && newparent) {
948                         if ((nlink_t)dp->i_nlink >= LINK_MAX) {
949                                 error = EMLINK;
950                                 goto bad;
951                         }
952                         dp->i_nlink++;
953                         dp->i_flag |= IN_CHANGE;
954                         error = ext2_update(tdvp, !DOINGASYNC(tdvp));
955                         if (error)
956                                 goto bad;
957                 }
958                 error = ext2_direnter(ip, tdvp, tcnp);
959                 if (error) {
960                         if (doingdirectory && newparent) {
961                                 dp->i_nlink--;
962                                 dp->i_flag |= IN_CHANGE;
963                                 (void)ext2_update(tdvp, 1);
964                         }
965                         goto bad;
966                 }
967                 vput(tdvp);
968         } else {
969                 if (xp->i_devvp != dp->i_devvp || xp->i_devvp != ip->i_devvp)
970                        panic("ext2_rename: EXDEV");
971                 /*
972                  * Short circuit rename(foo, foo).
973                  */
974                 if (xp->i_number == ip->i_number)
975                         panic("ext2_rename: same file");
976                 /*
977                  * If the parent directory is "sticky", then the user must
978                  * own the parent directory, or the destination of the rename,
979                  * otherwise the destination may not be changed (except by
980                  * root). This implements append-only directories.
981                  */
982                 if ((dp->i_mode & S_ISTXT) && tcnp->cn_cred->cr_uid != 0 &&
983                     tcnp->cn_cred->cr_uid != dp->i_uid &&
984                     xp->i_uid != tcnp->cn_cred->cr_uid) {
985                         error = EPERM;
986                         goto bad;
987                 }
988                 /*
989                  * Target must be empty if a directory and have no links
990                  * to it. Also, ensure source and target are compatible
991                  * (both directories, or both not directories).
992                  */
993                 if ((xp->i_mode&IFMT) == IFDIR) {
994                         if (! ext2_dirempty(xp, dp->i_number, tcnp->cn_cred) || 
995                             xp->i_nlink > 2) {
996                                 error = ENOTEMPTY;
997                                 goto bad;
998                         }
999                         if (!doingdirectory) {
1000                                 error = ENOTDIR;
1001                                 goto bad;
1002                         }
1003                         cache_purge(tdvp);
1004                 } else if (doingdirectory) {
1005                         error = EISDIR;
1006                         goto bad;
1007                 }
1008                 error = ext2_dirrewrite(dp, ip, tcnp);
1009                 if (error)
1010                         goto bad;
1011                 /*
1012                  * If the target directory is in the same
1013                  * directory as the source directory,
1014                  * decrement the link count on the parent
1015                  * of the target directory.
1016                  */
1017                 if (doingdirectory && !newparent) {
1018                        dp->i_nlink--;
1019                        dp->i_flag |= IN_CHANGE;
1020                 }
1021                 vput(tdvp);
1022                 /*
1023                  * Adjust the link count of the target to
1024                  * reflect the dirrewrite above.  If this is
1025                  * a directory it is empty and there are
1026                  * no links to it, so we can squash the inode and
1027                  * any space associated with it.  We disallowed
1028                  * renaming over top of a directory with links to
1029                  * it above, as the remaining link would point to
1030                  * a directory without "." or ".." entries.
1031                  */
1032                 xp->i_nlink--;
1033                 if (doingdirectory) {
1034                         if (--xp->i_nlink != 0)
1035                                 panic("ext2_rename: linked directory");
1036                         error = ext2_truncate(tvp, (off_t)0, IO_SYNC,
1037                             tcnp->cn_cred, tcnp->cn_thread);
1038                 }
1039                 xp->i_flag |= IN_CHANGE;
1040                 vput(tvp);
1041                 xp = NULL;
1042         }
1043
1044         /*
1045          * 3) Unlink the source.
1046          */
1047         fcnp->cn_flags &= ~MODMASK;
1048         fcnp->cn_flags |= LOCKPARENT | LOCKLEAF;
1049         VREF(fdvp);
1050         error = relookup(fdvp, &fvp, fcnp);
1051         if (error == 0)
1052                 vrele(fdvp);
1053         if (fvp != NULL) {
1054                 xp = VTOI(fvp);
1055                 dp = VTOI(fdvp);
1056         } else {
1057                 /*
1058                  * From name has disappeared.
1059                  */
1060                 if (doingdirectory)
1061                         panic("ext2_rename: lost dir entry");
1062                 vrele(ap->a_fvp);
1063                 return (0);
1064         }
1065         /*
1066          * Ensure that the directory entry still exists and has not
1067          * changed while the new name has been entered. If the source is
1068          * a file then the entry may have been unlinked or renamed. In
1069          * either case there is no further work to be done. If the source
1070          * is a directory then it cannot have been rmdir'ed; its link
1071          * count of three would cause a rmdir to fail with ENOTEMPTY.
1072          * The IN_RENAME flag ensures that it cannot be moved by another
1073          * rename.
1074          */
1075         if (xp != ip) {
1076                 if (doingdirectory)
1077                         panic("ext2_rename: lost dir entry");
1078         } else {
1079                 /*
1080                  * If the source is a directory with a
1081                  * new parent, the link count of the old
1082                  * parent directory must be decremented
1083                  * and ".." set to point to the new parent.
1084                  */
1085                 if (doingdirectory && newparent) {
1086                         dp->i_nlink--;
1087                         dp->i_flag |= IN_CHANGE;
1088                         error = vn_rdwr(UIO_READ, fvp, (caddr_t)&dirbuf,
1089                                 sizeof(struct dirtemplate), (off_t)0,
1090                                 UIO_SYSSPACE, IO_NODELOCKED | IO_NOMACCHECK,
1091                                 tcnp->cn_cred, NOCRED, NULL, NULL);
1092                         if (error == 0) {
1093                                 /* Like ufs little-endian: */
1094                                 namlen = dirbuf.dotdot_type;
1095                                 if (namlen != 2 ||
1096                                     dirbuf.dotdot_name[0] != '.' ||
1097                                     dirbuf.dotdot_name[1] != '.') {
1098                                         ext2_dirbad(xp, (doff_t)12,
1099                                             "rename: mangled dir");
1100                                 } else {
1101                                         dirbuf.dotdot_ino = newparent;
1102                                         (void) vn_rdwr(UIO_WRITE, fvp,
1103                                             (caddr_t)&dirbuf,
1104                                             sizeof(struct dirtemplate),
1105                                             (off_t)0, UIO_SYSSPACE,
1106                                             IO_NODELOCKED | IO_SYNC |
1107                                             IO_NOMACCHECK, tcnp->cn_cred,
1108                                             NOCRED, NULL, NULL);
1109                                         cache_purge(fdvp);
1110                                 }
1111                         }
1112                 }
1113                 error = ext2_dirremove(fdvp, fcnp);
1114                 if (!error) {
1115                         xp->i_nlink--;
1116                         xp->i_flag |= IN_CHANGE;
1117                 }
1118                 xp->i_flag &= ~IN_RENAME;
1119         }
1120         if (dp)
1121                 vput(fdvp);
1122         if (xp)
1123                 vput(fvp);
1124         vrele(ap->a_fvp);
1125         return (error);
1126
1127 bad:
1128         if (xp)
1129                 vput(ITOV(xp));
1130         vput(ITOV(dp));
1131 out:
1132         if (doingdirectory)
1133                 ip->i_flag &= ~IN_RENAME;
1134         if (vn_lock(fvp, LK_EXCLUSIVE) == 0) {
1135                 ip->i_nlink--;
1136                 ip->i_flag |= IN_CHANGE;
1137                 ip->i_flag &= ~IN_RENAME;
1138                 vput(fvp);
1139         } else
1140                 vrele(fvp);
1141         return (error);
1142 }
1143
1144 /*
1145  * Mkdir system call
1146  */
1147 static int
1148 ext2_mkdir(ap)
1149         struct vop_mkdir_args /* {
1150                 struct vnode *a_dvp;
1151                 struct vnode **a_vpp;
1152                 struct componentname *a_cnp;
1153                 struct vattr *a_vap;
1154         } */ *ap;
1155 {
1156         struct vnode *dvp = ap->a_dvp;
1157         struct vattr *vap = ap->a_vap;
1158         struct componentname *cnp = ap->a_cnp;
1159         struct inode *ip, *dp;
1160         struct vnode *tvp;
1161         struct dirtemplate dirtemplate, *dtp;
1162         int error, dmode;
1163
1164 #ifdef DIAGNOSTIC
1165         if ((cnp->cn_flags & HASBUF) == 0)
1166                 panic("ext2_mkdir: no name");
1167 #endif
1168         dp = VTOI(dvp);
1169         if ((nlink_t)dp->i_nlink >= LINK_MAX) {
1170                 error = EMLINK;
1171                 goto out;
1172         }
1173         dmode = vap->va_mode & 0777;
1174         dmode |= IFDIR;
1175         /*
1176          * Must simulate part of ext2_makeinode here to acquire the inode,
1177          * but not have it entered in the parent directory. The entry is
1178          * made later after writing "." and ".." entries.
1179          */
1180         error = ext2_valloc(dvp, dmode, cnp->cn_cred, &tvp);
1181         if (error)
1182                 goto out;
1183         ip = VTOI(tvp);
1184         ip->i_gid = dp->i_gid;
1185 #ifdef SUIDDIR
1186         {
1187                 /*
1188                  * if we are hacking owners here, (only do this where told to)
1189                  * and we are not giving it TOO root, (would subvert quotas)
1190                  * then go ahead and give it to the other user.
1191                  * The new directory also inherits the SUID bit. 
1192                  * If user's UID and dir UID are the same,
1193                  * 'give it away' so that the SUID is still forced on.
1194                  */
1195                 if ( (dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
1196                    (dp->i_mode & ISUID) && dp->i_uid) {
1197                         dmode |= ISUID;
1198                         ip->i_uid = dp->i_uid;
1199                 } else {
1200                         ip->i_uid = cnp->cn_cred->cr_uid;
1201                 }
1202         }
1203 #else
1204         ip->i_uid = cnp->cn_cred->cr_uid;
1205 #endif
1206         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
1207         ip->i_mode = dmode;
1208         tvp->v_type = VDIR;     /* Rest init'd in getnewvnode(). */
1209         ip->i_nlink = 2;
1210         if (cnp->cn_flags & ISWHITEOUT)
1211                 ip->i_flags |= UF_OPAQUE;
1212         error = ext2_update(tvp, 1);
1213
1214         /*
1215          * Bump link count in parent directory
1216          * to reflect work done below.  Should
1217          * be done before reference is created
1218          * so reparation is possible if we crash.
1219          */
1220         dp->i_nlink++;
1221         dp->i_flag |= IN_CHANGE;
1222         error = ext2_update(dvp, !DOINGASYNC(dvp));
1223         if (error)
1224                 goto bad;
1225
1226         /* Initialize directory with "." and ".." from static template. */
1227         if (EXT2_HAS_INCOMPAT_FEATURE(ip->i_e2fs,
1228             EXT2F_INCOMPAT_FTYPE))
1229                 dtp = &mastertemplate;
1230         else
1231                 dtp = &omastertemplate;
1232         dirtemplate = *dtp;
1233         dirtemplate.dot_ino = ip->i_number;
1234         dirtemplate.dotdot_ino = dp->i_number;
1235         /* note that in ext2 DIRBLKSIZ == blocksize, not DEV_BSIZE 
1236          * so let's just redefine it - for this function only
1237          */
1238 #undef  DIRBLKSIZ 
1239 #define DIRBLKSIZ  VTOI(dvp)->i_e2fs->e2fs_bsize
1240         dirtemplate.dotdot_reclen = DIRBLKSIZ - 12;
1241         error = vn_rdwr(UIO_WRITE, tvp, (caddr_t)&dirtemplate,
1242             sizeof(dirtemplate), (off_t)0, UIO_SYSSPACE,
1243             IO_NODELOCKED | IO_SYNC | IO_NOMACCHECK, cnp->cn_cred, NOCRED,
1244             NULL, NULL);
1245         if (error) {
1246                 dp->i_nlink--;
1247                 dp->i_flag |= IN_CHANGE;
1248                 goto bad;
1249         }
1250         if (DIRBLKSIZ > VFSTOEXT2(dvp->v_mount)->um_mountp->mnt_stat.f_bsize)
1251                 /* XXX should grow with balloc() */
1252                 panic("ext2_mkdir: blksize");
1253         else {
1254                 ip->i_size = DIRBLKSIZ;
1255                 ip->i_flag |= IN_CHANGE;
1256         }
1257
1258         /* Directory set up, now install its entry in the parent directory. */
1259         error = ext2_direnter(ip, dvp, cnp);
1260         if (error) {
1261                 dp->i_nlink--;
1262                 dp->i_flag |= IN_CHANGE;
1263         }
1264 bad:
1265         /*
1266          * No need to do an explicit VOP_TRUNCATE here, vrele will do this
1267          * for us because we set the link count to 0.
1268          */
1269         if (error) {
1270                 ip->i_nlink = 0;
1271                 ip->i_flag |= IN_CHANGE;
1272                 vput(tvp);
1273         } else
1274                 *ap->a_vpp = tvp;
1275 out:
1276         return (error);
1277 #undef  DIRBLKSIZ
1278 #define DIRBLKSIZ  DEV_BSIZE
1279 }
1280
1281 /*
1282  * Rmdir system call.
1283  */
1284 static int
1285 ext2_rmdir(ap)
1286         struct vop_rmdir_args /* {
1287                 struct vnode *a_dvp;
1288                 struct vnode *a_vp;
1289                 struct componentname *a_cnp;
1290         } */ *ap;
1291 {
1292         struct vnode *vp = ap->a_vp;
1293         struct vnode *dvp = ap->a_dvp;
1294         struct componentname *cnp = ap->a_cnp;
1295         struct inode *ip, *dp;
1296         int error;
1297
1298         ip = VTOI(vp);
1299         dp = VTOI(dvp);
1300
1301         /*
1302          * Verify the directory is empty (and valid).
1303          * (Rmdir ".." won't be valid since
1304          *  ".." will contain a reference to
1305          *  the current directory and thus be
1306          *  non-empty.)
1307          */
1308         error = 0;
1309         if (ip->i_nlink != 2 || !ext2_dirempty(ip, dp->i_number, cnp->cn_cred)) {
1310                 error = ENOTEMPTY;
1311                 goto out;
1312         }
1313         if ((dp->i_flags & APPEND)
1314             || (ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))) {
1315                 error = EPERM;
1316                 goto out;
1317         }
1318         /*
1319          * Delete reference to directory before purging
1320          * inode.  If we crash in between, the directory
1321          * will be reattached to lost+found,
1322          */
1323         error = ext2_dirremove(dvp, cnp);
1324         if (error)
1325                 goto out;
1326         dp->i_nlink--;
1327         dp->i_flag |= IN_CHANGE;
1328         cache_purge(dvp);
1329         VOP_UNLOCK(dvp, 0);
1330         /*
1331          * Truncate inode.  The only stuff left
1332          * in the directory is "." and "..".  The
1333          * "." reference is inconsequential since
1334          * we're quashing it.  The ".." reference
1335          * has already been adjusted above.  We've
1336          * removed the "." reference and the reference
1337          * in the parent directory, but there may be
1338          * other hard links so decrement by 2 and
1339          * worry about them later.
1340          */
1341         ip->i_nlink -= 2;
1342         error = ext2_truncate(vp, (off_t)0, IO_SYNC, cnp->cn_cred,
1343             cnp->cn_thread);
1344         cache_purge(ITOV(ip));
1345         vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
1346 out:
1347         return (error);
1348 }
1349
1350 /*
1351  * symlink -- make a symbolic link
1352  */
1353 static int
1354 ext2_symlink(ap)
1355         struct vop_symlink_args /* {
1356                 struct vnode *a_dvp;
1357                 struct vnode **a_vpp;
1358                 struct componentname *a_cnp;
1359                 struct vattr *a_vap;
1360                 char *a_target;
1361         } */ *ap;
1362 {
1363         struct vnode *vp, **vpp = ap->a_vpp;
1364         struct inode *ip;
1365         int len, error;
1366
1367         error = ext2_makeinode(IFLNK | ap->a_vap->va_mode, ap->a_dvp,
1368             vpp, ap->a_cnp);
1369         if (error)
1370                 return (error);
1371         vp = *vpp;
1372         len = strlen(ap->a_target);
1373         if (len < vp->v_mount->mnt_maxsymlinklen) {
1374                 ip = VTOI(vp);
1375                 bcopy(ap->a_target, (char *)ip->i_shortlink, len);
1376                 ip->i_size = len;
1377                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
1378         } else
1379                 error = vn_rdwr(UIO_WRITE, vp, ap->a_target, len, (off_t)0,
1380                     UIO_SYSSPACE, IO_NODELOCKED | IO_NOMACCHECK,
1381                     ap->a_cnp->cn_cred, NOCRED, NULL, NULL);
1382         if (error)
1383                 vput(vp);
1384         return (error);
1385 }
1386
1387 /*
1388  * Return target name of a symbolic link
1389  */
1390 static int
1391 ext2_readlink(ap)
1392         struct vop_readlink_args /* {
1393                 struct vnode *a_vp;
1394                 struct uio *a_uio;
1395                 struct ucred *a_cred;
1396         } */ *ap;
1397 {
1398         struct vnode *vp = ap->a_vp;
1399         struct inode *ip = VTOI(vp);
1400         int isize;
1401
1402         isize = ip->i_size;
1403         if (isize < vp->v_mount->mnt_maxsymlinklen) {
1404                 uiomove((char *)ip->i_shortlink, isize, ap->a_uio);
1405                 return (0);
1406         }
1407         return (VOP_READ(vp, ap->a_uio, 0, ap->a_cred));
1408 }
1409
1410 /*
1411  * Calculate the logical to physical mapping if not done already,
1412  * then call the device strategy routine.
1413  *
1414  * In order to be able to swap to a file, the ext2_bmaparray() operation may not
1415  * deadlock on memory.  See ext2_bmap() for details.
1416  */
1417 static int
1418 ext2_strategy(ap)
1419         struct vop_strategy_args /* {
1420                 struct vnode *a_vp;
1421                 struct buf *a_bp;
1422         } */ *ap;
1423 {
1424         struct buf *bp = ap->a_bp;
1425         struct vnode *vp = ap->a_vp;
1426         struct inode *ip;
1427         struct bufobj *bo;
1428         int32_t blkno;
1429         int error;
1430
1431         ip = VTOI(vp);
1432         if (vp->v_type == VBLK || vp->v_type == VCHR)
1433                 panic("ext2_strategy: spec");
1434         if (bp->b_blkno == bp->b_lblkno) {
1435                 error = ext2_bmaparray(vp, bp->b_lblkno, &blkno, NULL, NULL);
1436                 bp->b_blkno = blkno;
1437                 if (error) {
1438                         bp->b_error = error;
1439                         bp->b_ioflags |= BIO_ERROR;
1440                         bufdone(bp);
1441                         return (0);
1442                 }
1443                 if ((long)bp->b_blkno == -1)
1444                         vfs_bio_clrbuf(bp);
1445         }
1446         if ((long)bp->b_blkno == -1) {
1447                 bufdone(bp);
1448                 return (0);
1449         }
1450         bp->b_iooffset = dbtob(bp->b_blkno);
1451         bo = VFSTOEXT2(vp->v_mount)->um_bo;
1452         BO_STRATEGY(bo, bp);
1453         return (0);
1454 }
1455
1456 /*
1457  * Print out the contents of an inode.
1458  */
1459 static int
1460 ext2_print(ap)
1461         struct vop_print_args /* {
1462                 struct vnode *a_vp;
1463         } */ *ap;
1464 {
1465         struct vnode *vp = ap->a_vp;
1466         struct inode *ip = VTOI(vp);
1467
1468         vn_printf(ip->i_devvp, "\tino %lu", (u_long)ip->i_number);
1469         if (vp->v_type == VFIFO)
1470                 fifo_printinfo(vp);
1471         printf("\n");
1472         return (0);
1473 }
1474
1475 /*
1476  * Close wrapper for fifos.
1477  *
1478  * Update the times on the inode then do device close.
1479  */
1480 static int
1481 ext2fifo_close(ap)
1482         struct vop_close_args /* {
1483                 struct vnode *a_vp;
1484                 int  a_fflag;
1485                 struct ucred *a_cred;
1486                 struct thread *a_td;
1487         } */ *ap;
1488 {
1489         struct vnode *vp = ap->a_vp;
1490
1491         VI_LOCK(vp);
1492         if (vp->v_usecount > 1)
1493                 ext2_itimes_locked(vp);
1494         VI_UNLOCK(vp);
1495         return (fifo_specops.vop_close(ap));
1496 }
1497
1498 /*
1499  * Kqfilter wrapper for fifos.
1500  *
1501  * Fall through to ext2 kqfilter routines if needed 
1502  */
1503 static int
1504 ext2fifo_kqfilter(ap)
1505         struct vop_kqfilter_args *ap;
1506 {
1507         int error;
1508
1509         error = fifo_specops.vop_kqfilter(ap);
1510         if (error)
1511                 error = vfs_kqfilter(ap);
1512         return (error);
1513 }
1514
1515 /*
1516  * Return POSIX pathconf information applicable to ext2 filesystems.
1517  */
1518 static int
1519 ext2_pathconf(ap)
1520         struct vop_pathconf_args /* {
1521                 struct vnode *a_vp;
1522                 int a_name;
1523                 int *a_retval;
1524         } */ *ap;
1525 {
1526
1527         switch (ap->a_name) {
1528         case _PC_LINK_MAX:
1529                 *ap->a_retval = LINK_MAX;
1530                 return (0);
1531         case _PC_NAME_MAX:
1532                 *ap->a_retval = NAME_MAX;
1533                 return (0);
1534         case _PC_PATH_MAX:
1535                 *ap->a_retval = PATH_MAX;
1536                 return (0);
1537         case _PC_PIPE_BUF:
1538                 *ap->a_retval = PIPE_BUF;
1539                 return (0);
1540         case _PC_CHOWN_RESTRICTED:
1541                 *ap->a_retval = 1;
1542                 return (0);
1543         case _PC_NO_TRUNC:
1544                 *ap->a_retval = 1;
1545                 return (0);
1546         default:
1547                 return (EINVAL);
1548         }
1549         /* NOTREACHED */
1550 }
1551
1552 /*
1553  * Vnode pointer to File handle
1554  */
1555 /* ARGSUSED */
1556 static int
1557 ext2_vptofh(ap)
1558         struct vop_vptofh_args /* {
1559                 struct vnode *a_vp;
1560                 struct fid *a_fhp;
1561         } */ *ap;
1562 {
1563         struct inode *ip;
1564         struct ufid *ufhp;
1565
1566         ip = VTOI(ap->a_vp);
1567         ufhp = (struct ufid *)ap->a_fhp;
1568         ufhp->ufid_len = sizeof(struct ufid);
1569         ufhp->ufid_ino = ip->i_number;
1570         ufhp->ufid_gen = ip->i_gen;
1571         return (0);
1572 }
1573
1574 /*
1575  * Initialize the vnode associated with a new inode, handle aliased
1576  * vnodes.
1577  */
1578 int
1579 ext2_vinit(mntp, fifoops, vpp)
1580         struct mount *mntp;
1581         struct vop_vector *fifoops;
1582         struct vnode **vpp;
1583 {
1584         struct inode *ip;
1585         struct vnode *vp;
1586
1587         vp = *vpp;
1588         ip = VTOI(vp);
1589         vp->v_type = IFTOVT(ip->i_mode);
1590         if (vp->v_type == VFIFO)
1591                 vp->v_op = fifoops;
1592
1593         if (ip->i_number == EXT2_ROOTINO)
1594                 vp->v_vflag |= VV_ROOT;
1595         ip->i_modrev = init_va_filerev();
1596         *vpp = vp;
1597         return (0);
1598 }
1599
1600 /*
1601  * Allocate a new inode.
1602  */
1603 static int
1604 ext2_makeinode(mode, dvp, vpp, cnp)
1605         int mode;
1606         struct vnode *dvp;
1607         struct vnode **vpp;
1608         struct componentname *cnp;
1609 {
1610         struct inode *ip, *pdir;
1611         struct vnode *tvp;
1612         int error;
1613
1614         pdir = VTOI(dvp);
1615 #ifdef DIAGNOSTIC
1616         if ((cnp->cn_flags & HASBUF) == 0)
1617                 panic("ext2_makeinode: no name");
1618 #endif
1619         *vpp = NULL;
1620         if ((mode & IFMT) == 0)
1621                 mode |= IFREG;
1622
1623         error = ext2_valloc(dvp, mode, cnp->cn_cred, &tvp);
1624         if (error) {
1625                 return (error);
1626         }
1627         ip = VTOI(tvp);
1628         ip->i_gid = pdir->i_gid;
1629 #ifdef SUIDDIR
1630         {
1631                 /*
1632                  * if we are
1633                  * not the owner of the directory,
1634                  * and we are hacking owners here, (only do this where told to)
1635                  * and we are not giving it TOO root, (would subvert quotas)
1636                  * then go ahead and give it to the other user.
1637                  * Note that this drops off the execute bits for security.
1638                  */
1639                 if ( (dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
1640                      (pdir->i_mode & ISUID) &&
1641                      (pdir->i_uid != cnp->cn_cred->cr_uid) && pdir->i_uid) {
1642                         ip->i_uid = pdir->i_uid;
1643                         mode &= ~07111;
1644                 } else {
1645                         ip->i_uid = cnp->cn_cred->cr_uid;
1646                 }
1647         }
1648 #else
1649         ip->i_uid = cnp->cn_cred->cr_uid;
1650 #endif
1651         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
1652         ip->i_mode = mode;
1653         tvp->v_type = IFTOVT(mode);     /* Rest init'd in getnewvnode(). */
1654         ip->i_nlink = 1;
1655         if ((ip->i_mode & ISGID) && !groupmember(ip->i_gid, cnp->cn_cred)) {
1656                 if (priv_check_cred(cnp->cn_cred, PRIV_VFS_RETAINSUGID, 0))
1657                         ip->i_mode &= ~ISGID;
1658         }
1659
1660         if (cnp->cn_flags & ISWHITEOUT)
1661                 ip->i_flags |= UF_OPAQUE;
1662
1663         /*
1664          * Make sure inode goes to disk before directory entry.
1665          */
1666         error = ext2_update(tvp, !DOINGASYNC(tvp));
1667         if (error)
1668                 goto bad;
1669         error = ext2_direnter(ip, dvp, cnp);
1670         if (error)
1671                 goto bad;
1672
1673         *vpp = tvp;
1674         return (0);
1675
1676 bad:
1677         /*
1678          * Write error occurred trying to update the inode
1679          * or the directory so must deallocate the inode.
1680          */
1681         ip->i_nlink = 0;
1682         ip->i_flag |= IN_CHANGE;
1683         vput(tvp);
1684         return (error);
1685 }
1686
1687 /*
1688  * Vnode op for reading.
1689  */
1690 static int
1691 ext2_read(ap)
1692         struct vop_read_args /* {
1693                 struct vnode *a_vp;
1694                 struct uio *a_uio;
1695                 int a_ioflag;
1696                 struct ucred *a_cred;
1697         } */ *ap;
1698 {
1699         struct vnode *vp;
1700         struct inode *ip;
1701         struct uio *uio;
1702         struct m_ext2fs *fs;
1703         struct buf *bp;
1704         daddr_t lbn, nextlbn;
1705         off_t bytesinfile;
1706         long size, xfersize, blkoffset;
1707         int error, orig_resid, seqcount;
1708         int ioflag;
1709
1710         vp = ap->a_vp;
1711         uio = ap->a_uio;
1712         ioflag = ap->a_ioflag;
1713
1714         seqcount = ap->a_ioflag >> IO_SEQSHIFT;
1715         ip = VTOI(vp);
1716
1717 #ifdef INVARIANTS
1718         if (uio->uio_rw != UIO_READ)
1719                 panic("%s: mode", "ext2_read");
1720
1721         if (vp->v_type == VLNK) {
1722                 if ((int)ip->i_size < vp->v_mount->mnt_maxsymlinklen)
1723                         panic("%s: short symlink", "ext2_read");
1724         } else if (vp->v_type != VREG && vp->v_type != VDIR)
1725                 panic("%s: type %d", "ext2_read", vp->v_type);
1726 #endif
1727         orig_resid = uio->uio_resid;
1728         KASSERT(orig_resid >= 0, ("ext2_read: uio->uio_resid < 0"));
1729         if (orig_resid == 0)
1730                 return (0);
1731         KASSERT(uio->uio_offset >= 0, ("ext2_read: uio->uio_offset < 0"));
1732         fs = ip->i_e2fs;
1733         if (uio->uio_offset < ip->i_size &&
1734             uio->uio_offset >= fs->e2fs_maxfilesize)
1735                 return (EOVERFLOW);
1736
1737         for (error = 0, bp = NULL; uio->uio_resid > 0; bp = NULL) {
1738                 if ((bytesinfile = ip->i_size - uio->uio_offset) <= 0)
1739                         break;
1740                 lbn = lblkno(fs, uio->uio_offset);
1741                 nextlbn = lbn + 1;
1742                 size = blksize(fs, ip, lbn);
1743                 blkoffset = blkoff(fs, uio->uio_offset);
1744
1745                 xfersize = fs->e2fs_fsize - blkoffset;
1746                 if (uio->uio_resid < xfersize)
1747                         xfersize = uio->uio_resid;
1748                 if (bytesinfile < xfersize)
1749                         xfersize = bytesinfile;
1750
1751                 if (lblktosize(fs, nextlbn) >= ip->i_size)
1752                         error = bread(vp, lbn, size, NOCRED, &bp);
1753                 else if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERR) == 0)
1754                         error = cluster_read(vp, ip->i_size, lbn, size,
1755                             NOCRED, blkoffset + uio->uio_resid, seqcount, &bp);
1756                 else if (seqcount > 1) {
1757                         int nextsize = blksize(fs, ip, nextlbn);
1758                         error = breadn(vp, lbn,
1759                             size, &nextlbn, &nextsize, 1, NOCRED, &bp);
1760                 } else
1761                         error = bread(vp, lbn, size, NOCRED, &bp);
1762                 if (error) {
1763                         brelse(bp);
1764                         bp = NULL;
1765                         break;
1766                 }
1767
1768                 /*
1769                  * If IO_DIRECT then set B_DIRECT for the buffer.  This
1770                  * will cause us to attempt to release the buffer later on
1771                  * and will cause the buffer cache to attempt to free the
1772                  * underlying pages.
1773                  */
1774                 if (ioflag & IO_DIRECT)
1775                         bp->b_flags |= B_DIRECT;
1776
1777                 /*
1778                  * We should only get non-zero b_resid when an I/O error
1779                  * has occurred, which should cause us to break above.
1780                  * However, if the short read did not cause an error,
1781                  * then we want to ensure that we do not uiomove bad
1782                  * or uninitialized data.
1783                  */
1784                 size -= bp->b_resid;
1785                 if (size < xfersize) {
1786                         if (size == 0)
1787                                 break;
1788                         xfersize = size;
1789                 }
1790                 error = uiomove((char *)bp->b_data + blkoffset,
1791                         (int)xfersize, uio);
1792                 if (error)
1793                         break;
1794
1795                 if (ioflag & (IO_VMIO|IO_DIRECT)) {
1796                         /*
1797                          * If it's VMIO or direct I/O, then we don't
1798                          * need the buf, mark it available for
1799                          * freeing. If it's non-direct VMIO, the VM has
1800                          * the data.
1801                          */
1802                         bp->b_flags |= B_RELBUF;
1803                         brelse(bp);
1804                 } else {
1805                         /*
1806                          * Otherwise let whoever
1807                          * made the request take care of
1808                          * freeing it. We just queue
1809                          * it onto another list.
1810                          */
1811                         bqrelse(bp);
1812                 }
1813         }
1814
1815         /* 
1816          * This can only happen in the case of an error
1817          * because the loop above resets bp to NULL on each iteration
1818          * and on normal completion has not set a new value into it.
1819          * so it must have come from a 'break' statement
1820          */
1821         if (bp != NULL) {
1822                 if (ioflag & (IO_VMIO|IO_DIRECT)) {
1823                         bp->b_flags |= B_RELBUF;
1824                         brelse(bp);
1825                 } else {
1826                         bqrelse(bp);
1827                 }
1828         }
1829
1830         if ((error == 0 || uio->uio_resid != orig_resid) &&
1831             (vp->v_mount->mnt_flag & MNT_NOATIME) == 0)
1832                 ip->i_flag |= IN_ACCESS;
1833         return (error);
1834 }
1835
1836 /*
1837  * Vnode op for writing.
1838  */
1839 static int
1840 ext2_write(ap)
1841         struct vop_write_args /* {
1842                 struct vnode *a_vp;
1843                 struct uio *a_uio;
1844                 int a_ioflag;
1845                 struct ucred *a_cred;
1846         } */ *ap;
1847 {
1848         struct vnode *vp;
1849         struct uio *uio;
1850         struct inode *ip;
1851         struct m_ext2fs *fs;
1852         struct buf *bp;
1853         daddr_t lbn;
1854         off_t osize;
1855         int blkoffset, error, flags, ioflag, resid, size, seqcount, xfersize;
1856
1857         ioflag = ap->a_ioflag;
1858         uio = ap->a_uio;
1859         vp = ap->a_vp;
1860
1861         seqcount = ioflag >> IO_SEQSHIFT;
1862         ip = VTOI(vp);
1863
1864 #ifdef INVARIANTS
1865         if (uio->uio_rw != UIO_WRITE)
1866                 panic("%s: mode", "ext2_write");
1867 #endif
1868
1869         switch (vp->v_type) {
1870         case VREG:
1871                 if (ioflag & IO_APPEND)
1872                         uio->uio_offset = ip->i_size;
1873                 if ((ip->i_flags & APPEND) && uio->uio_offset != ip->i_size)
1874                         return (EPERM);
1875                 /* FALLTHROUGH */
1876         case VLNK:
1877                 break;
1878         case VDIR:
1879                 /* XXX differs from ffs -- this is called from ext2_mkdir(). */
1880                 if ((ioflag & IO_SYNC) == 0)
1881                 panic("ext2_write: nonsync dir write");
1882                 break;
1883         default:
1884                 panic("ext2_write: type %p %d (%jd,%jd)", (void *)vp,
1885                     vp->v_type, (intmax_t)uio->uio_offset,
1886                     (intmax_t)uio->uio_resid);
1887         }
1888
1889         KASSERT(uio->uio_resid >= 0, ("ext2_write: uio->uio_resid < 0"));
1890         KASSERT(uio->uio_offset >= 0, ("ext2_write: uio->uio_offset < 0"));
1891         fs = ip->i_e2fs;
1892         if ((uoff_t)uio->uio_offset + uio->uio_resid > fs->e2fs_maxfilesize)
1893                 return (EFBIG);
1894         /*
1895          * Maybe this should be above the vnode op call, but so long as
1896          * file servers have no limits, I don't think it matters.
1897          */
1898         if (vn_rlimit_fsize(vp, uio, uio->uio_td))
1899                 return (EFBIG);
1900
1901         resid = uio->uio_resid;
1902         osize = ip->i_size;
1903         if (seqcount > BA_SEQMAX)
1904                 flags = BA_SEQMAX << BA_SEQSHIFT;
1905         else
1906                 flags = seqcount << BA_SEQSHIFT;
1907         if ((ioflag & IO_SYNC) && !DOINGASYNC(vp))
1908                 flags |= IO_SYNC;
1909
1910         for (error = 0; uio->uio_resid > 0;) {
1911                 lbn = lblkno(fs, uio->uio_offset);
1912                 blkoffset = blkoff(fs, uio->uio_offset);
1913                 xfersize = fs->e2fs_fsize - blkoffset;
1914                 if (uio->uio_resid < xfersize)
1915                         xfersize = uio->uio_resid;
1916                 if (uio->uio_offset + xfersize > ip->i_size)
1917                         vnode_pager_setsize(vp, uio->uio_offset + xfersize);
1918
1919                 /*
1920                  * We must perform a read-before-write if the transfer size
1921                  * does not cover the entire buffer.
1922                  */
1923                 if (fs->e2fs_bsize > xfersize)
1924                         flags |= BA_CLRBUF;
1925                 else
1926                         flags &= ~BA_CLRBUF;
1927                 error = ext2_balloc(ip, lbn, blkoffset + xfersize,
1928                     ap->a_cred, &bp, flags);
1929                 if (error != 0)
1930                         break;
1931
1932                 /*
1933                  * If the buffer is not valid and we did not clear garbage
1934                  * out above, we have to do so here even though the write
1935                  * covers the entire buffer in order to avoid a mmap()/write
1936                  * race where another process may see the garbage prior to
1937                  * the uiomove() for a write replacing it.
1938                  */
1939                 if ((bp->b_flags & B_CACHE) == 0 && fs->e2fs_bsize <= xfersize)
1940                         vfs_bio_clrbuf(bp);
1941                 if ((ioflag & (IO_SYNC|IO_INVAL)) == (IO_SYNC|IO_INVAL))
1942                         bp->b_flags |= B_NOCACHE;
1943                 if (uio->uio_offset + xfersize > ip->i_size)
1944                         ip->i_size = uio->uio_offset + xfersize;
1945                 size = blksize(fs, ip, lbn) - bp->b_resid;
1946                 if (size < xfersize)
1947                         xfersize = size;
1948
1949                 error =
1950                     uiomove((char *)bp->b_data + blkoffset, (int)xfersize, uio);
1951                 if (ioflag & (IO_VMIO|IO_DIRECT)) {
1952                         bp->b_flags |= B_RELBUF;
1953                 }
1954
1955                 /*
1956                  * If IO_SYNC each buffer is written synchronously.  Otherwise
1957                  * if we have a severe page deficiency write the buffer
1958                  * asynchronously.  Otherwise try to cluster, and if that
1959                  * doesn't do it then either do an async write (if O_DIRECT),
1960                  * or a delayed write (if not).
1961                  */
1962                 if (ioflag & IO_SYNC) {
1963                         (void)bwrite(bp);
1964                 } else if (vm_page_count_severe() ||
1965                     buf_dirty_count_severe() ||
1966                     (ioflag & IO_ASYNC)) {
1967                         bp->b_flags |= B_CLUSTEROK;
1968                         bawrite(bp);
1969                 } else if (xfersize + blkoffset == fs->e2fs_fsize) {
1970                         if ((vp->v_mount->mnt_flag & MNT_NOCLUSTERW) == 0) {
1971                                 bp->b_flags |= B_CLUSTEROK;
1972                                 cluster_write(vp, bp, ip->i_size, seqcount);
1973                         } else {
1974                                 bawrite(bp);
1975                         }
1976                 } else if (ioflag & IO_DIRECT) {
1977                         bp->b_flags |= B_CLUSTEROK;
1978                         bawrite(bp);
1979                 } else {
1980                         bp->b_flags |= B_CLUSTEROK;
1981                         bdwrite(bp);
1982                 }
1983                 if (error || xfersize == 0)
1984                         break;
1985         }
1986         /*
1987          * If we successfully wrote any data, and we are not the superuser
1988          * we clear the setuid and setgid bits as a precaution against
1989          * tampering.
1990          */
1991         if ((ip->i_mode & (ISUID | ISGID)) && resid > uio->uio_resid &&
1992             ap->a_cred) {
1993                 if (priv_check_cred(ap->a_cred, PRIV_VFS_RETAINSUGID, 0))
1994                         ip->i_mode &= ~(ISUID | ISGID);
1995         }
1996         if (error) {
1997                 if (ioflag & IO_UNIT) {
1998                         (void)ext2_truncate(vp, osize,
1999                             ioflag & IO_SYNC, ap->a_cred, uio->uio_td);
2000                         uio->uio_offset -= resid - uio->uio_resid;
2001                         uio->uio_resid = resid;
2002                 }
2003         }
2004         if (uio->uio_resid != resid) {
2005                ip->i_flag |= IN_CHANGE | IN_UPDATE;
2006                if (ioflag & IO_SYNC)
2007                        error = ext2_update(vp, 1);
2008        }
2009         return (error);
2010 }