]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/ufs/ufs/ufs_vnops.c
Import libucl 20160812
[FreeBSD/FreeBSD.git] / sys / ufs / ufs / ufs_vnops.c
1 /*-
2  * Copyright (c) 1982, 1986, 1989, 1993, 1995
3  *      The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 4. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  *
34  *      @(#)ufs_vnops.c 8.27 (Berkeley) 5/27/95
35  */
36
37 #include <sys/cdefs.h>
38 __FBSDID("$FreeBSD$");
39
40 #include "opt_quota.h"
41 #include "opt_suiddir.h"
42 #include "opt_ufs.h"
43 #include "opt_ffs.h"
44
45 #include <sys/param.h>
46 #include <sys/systm.h>
47 #include <sys/malloc.h>
48 #include <sys/namei.h>
49 #include <sys/kernel.h>
50 #include <sys/fcntl.h>
51 #include <sys/filio.h>
52 #include <sys/stat.h>
53 #include <sys/bio.h>
54 #include <sys/buf.h>
55 #include <sys/mount.h>
56 #include <sys/priv.h>
57 #include <sys/refcount.h>
58 #include <sys/unistd.h>
59 #include <sys/vnode.h>
60 #include <sys/dirent.h>
61 #include <sys/lockf.h>
62 #include <sys/conf.h>
63 #include <sys/acl.h>
64
65 #include <security/mac/mac_framework.h>
66
67 #include <sys/file.h>           /* XXX */
68
69 #include <vm/vm.h>
70 #include <vm/vm_extern.h>
71
72 #include <ufs/ufs/acl.h>
73 #include <ufs/ufs/extattr.h>
74 #include <ufs/ufs/quota.h>
75 #include <ufs/ufs/inode.h>
76 #include <ufs/ufs/dir.h>
77 #include <ufs/ufs/ufsmount.h>
78 #include <ufs/ufs/ufs_extern.h>
79 #ifdef UFS_DIRHASH
80 #include <ufs/ufs/dirhash.h>
81 #endif
82 #ifdef UFS_GJOURNAL
83 #include <ufs/ufs/gjournal.h>
84 FEATURE(ufs_gjournal, "Journaling support through GEOM for UFS");
85 #endif
86
87 #ifdef QUOTA
88 FEATURE(ufs_quota, "UFS disk quotas support");
89 FEATURE(ufs_quota64, "64bit UFS disk quotas support");
90 #endif
91
92 #ifdef SUIDDIR
93 FEATURE(suiddir,
94     "Give all new files in directory the same ownership as the directory");
95 #endif
96
97
98 #include <ufs/ffs/ffs_extern.h>
99
100 static vop_accessx_t    ufs_accessx;
101 static int ufs_chmod(struct vnode *, int, struct ucred *, struct thread *);
102 static int ufs_chown(struct vnode *, uid_t, gid_t, struct ucred *, struct thread *);
103 static vop_close_t      ufs_close;
104 static vop_create_t     ufs_create;
105 static vop_getattr_t    ufs_getattr;
106 static vop_ioctl_t      ufs_ioctl;
107 static vop_link_t       ufs_link;
108 static int ufs_makeinode(int mode, struct vnode *, struct vnode **, struct componentname *);
109 static vop_markatime_t  ufs_markatime;
110 static vop_mkdir_t      ufs_mkdir;
111 static vop_mknod_t      ufs_mknod;
112 static vop_open_t       ufs_open;
113 static vop_pathconf_t   ufs_pathconf;
114 static vop_print_t      ufs_print;
115 static vop_readlink_t   ufs_readlink;
116 static vop_remove_t     ufs_remove;
117 static vop_rename_t     ufs_rename;
118 static vop_rmdir_t      ufs_rmdir;
119 static vop_setattr_t    ufs_setattr;
120 static vop_strategy_t   ufs_strategy;
121 static vop_symlink_t    ufs_symlink;
122 static vop_whiteout_t   ufs_whiteout;
123 static vop_close_t      ufsfifo_close;
124 static vop_kqfilter_t   ufsfifo_kqfilter;
125 static vop_pathconf_t   ufsfifo_pathconf;
126
127 SYSCTL_NODE(_vfs, OID_AUTO, ufs, CTLFLAG_RD, 0, "UFS filesystem");
128
129 /*
130  * A virgin directory (no blushing please).
131  */
132 static struct dirtemplate mastertemplate = {
133         0, 12, DT_DIR, 1, ".",
134         0, DIRBLKSIZ - 12, DT_DIR, 2, ".."
135 };
136 static struct odirtemplate omastertemplate = {
137         0, 12, 1, ".",
138         0, DIRBLKSIZ - 12, 2, ".."
139 };
140
141 static void
142 ufs_itimes_locked(struct vnode *vp)
143 {
144         struct inode *ip;
145         struct timespec ts;
146
147         ASSERT_VI_LOCKED(vp, __func__);
148
149         ip = VTOI(vp);
150         if (UFS_RDONLY(ip))
151                 goto out;
152         if ((ip->i_flag & (IN_ACCESS | IN_CHANGE | IN_UPDATE)) == 0)
153                 return;
154
155         if ((vp->v_type == VBLK || vp->v_type == VCHR) && !DOINGSOFTDEP(vp))
156                 ip->i_flag |= IN_LAZYMOD;
157         else if (((vp->v_mount->mnt_kern_flag &
158                     (MNTK_SUSPENDED | MNTK_SUSPEND)) == 0) ||
159                     (ip->i_flag & (IN_CHANGE | IN_UPDATE)))
160                 ip->i_flag |= IN_MODIFIED;
161         else if (ip->i_flag & IN_ACCESS)
162                 ip->i_flag |= IN_LAZYACCESS;
163         vfs_timestamp(&ts);
164         if (ip->i_flag & IN_ACCESS) {
165                 DIP_SET(ip, i_atime, ts.tv_sec);
166                 DIP_SET(ip, i_atimensec, ts.tv_nsec);
167         }
168         if (ip->i_flag & IN_UPDATE) {
169                 DIP_SET(ip, i_mtime, ts.tv_sec);
170                 DIP_SET(ip, i_mtimensec, ts.tv_nsec);
171         }
172         if (ip->i_flag & IN_CHANGE) {
173                 DIP_SET(ip, i_ctime, ts.tv_sec);
174                 DIP_SET(ip, i_ctimensec, ts.tv_nsec);
175                 DIP_SET(ip, i_modrev, DIP(ip, i_modrev) + 1);
176         }
177
178  out:
179         ip->i_flag &= ~(IN_ACCESS | IN_CHANGE | IN_UPDATE);
180 }
181
182 void
183 ufs_itimes(struct vnode *vp)
184 {
185
186         VI_LOCK(vp);
187         ufs_itimes_locked(vp);
188         VI_UNLOCK(vp);
189 }
190
191 /*
192  * Create a regular file
193  */
194 static int
195 ufs_create(ap)
196         struct vop_create_args /* {
197                 struct vnode *a_dvp;
198                 struct vnode **a_vpp;
199                 struct componentname *a_cnp;
200                 struct vattr *a_vap;
201         } */ *ap;
202 {
203         int error;
204
205         error =
206             ufs_makeinode(MAKEIMODE(ap->a_vap->va_type, ap->a_vap->va_mode),
207             ap->a_dvp, ap->a_vpp, ap->a_cnp);
208         if (error != 0)
209                 return (error);
210         if ((ap->a_cnp->cn_flags & MAKEENTRY) != 0)
211                 cache_enter(ap->a_dvp, *ap->a_vpp, ap->a_cnp);
212         return (0);
213 }
214
215 /*
216  * Mknod vnode call
217  */
218 /* ARGSUSED */
219 static int
220 ufs_mknod(ap)
221         struct vop_mknod_args /* {
222                 struct vnode *a_dvp;
223                 struct vnode **a_vpp;
224                 struct componentname *a_cnp;
225                 struct vattr *a_vap;
226         } */ *ap;
227 {
228         struct vattr *vap = ap->a_vap;
229         struct vnode **vpp = ap->a_vpp;
230         struct inode *ip;
231         ino_t ino;
232         int error;
233
234         error = ufs_makeinode(MAKEIMODE(vap->va_type, vap->va_mode),
235             ap->a_dvp, vpp, ap->a_cnp);
236         if (error)
237                 return (error);
238         ip = VTOI(*vpp);
239         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
240         if (vap->va_rdev != VNOVAL) {
241                 /*
242                  * Want to be able to use this to make badblock
243                  * inodes, so don't truncate the dev number.
244                  */
245                 DIP_SET(ip, i_rdev, vap->va_rdev);
246         }
247         /*
248          * Remove inode, then reload it through VFS_VGET so it is
249          * checked to see if it is an alias of an existing entry in
250          * the inode cache.  XXX I don't believe this is necessary now.
251          */
252         (*vpp)->v_type = VNON;
253         ino = ip->i_number;     /* Save this before vgone() invalidates ip. */
254         vgone(*vpp);
255         vput(*vpp);
256         error = VFS_VGET(ap->a_dvp->v_mount, ino, LK_EXCLUSIVE, vpp);
257         if (error) {
258                 *vpp = NULL;
259                 return (error);
260         }
261         return (0);
262 }
263
264 /*
265  * Open called.
266  */
267 /* ARGSUSED */
268 static int
269 ufs_open(struct vop_open_args *ap)
270 {
271         struct vnode *vp = ap->a_vp;
272         struct inode *ip;
273
274         if (vp->v_type == VCHR || vp->v_type == VBLK)
275                 return (EOPNOTSUPP);
276
277         ip = VTOI(vp);
278         /*
279          * Files marked append-only must be opened for appending.
280          */
281         if ((ip->i_flags & APPEND) &&
282             (ap->a_mode & (FWRITE | O_APPEND)) == FWRITE)
283                 return (EPERM);
284         vnode_create_vobject(vp, DIP(ip, i_size), ap->a_td);
285         return (0);
286 }
287
288 /*
289  * Close called.
290  *
291  * Update the times on the inode.
292  */
293 /* ARGSUSED */
294 static int
295 ufs_close(ap)
296         struct vop_close_args /* {
297                 struct vnode *a_vp;
298                 int  a_fflag;
299                 struct ucred *a_cred;
300                 struct thread *a_td;
301         } */ *ap;
302 {
303         struct vnode *vp = ap->a_vp;
304         int usecount;
305
306         VI_LOCK(vp);
307         usecount = vp->v_usecount;
308         if (usecount > 1)
309                 ufs_itimes_locked(vp);
310         VI_UNLOCK(vp);
311         return (0);
312 }
313
314 static int
315 ufs_accessx(ap)
316         struct vop_accessx_args /* {
317                 struct vnode *a_vp;
318                 accmode_t a_accmode;
319                 struct ucred *a_cred;
320                 struct thread *a_td;
321         } */ *ap;
322 {
323         struct vnode *vp = ap->a_vp;
324         struct inode *ip = VTOI(vp);
325         accmode_t accmode = ap->a_accmode;
326         int error;
327 #ifdef QUOTA
328         int relocked;
329 #endif
330 #ifdef UFS_ACL
331         struct acl *acl;
332         acl_type_t type;
333 #endif
334
335         /*
336          * Disallow write attempts on read-only filesystems;
337          * unless the file is a socket, fifo, or a block or
338          * character device resident on the filesystem.
339          */
340         if (accmode & VMODIFY_PERMS) {
341                 switch (vp->v_type) {
342                 case VDIR:
343                 case VLNK:
344                 case VREG:
345                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
346                                 return (EROFS);
347 #ifdef QUOTA
348                         /*
349                          * Inode is accounted in the quotas only if struct
350                          * dquot is attached to it. VOP_ACCESS() is called
351                          * from vn_open_cred() and provides a convenient
352                          * point to call getinoquota().
353                          */
354                         if (VOP_ISLOCKED(vp) != LK_EXCLUSIVE) {
355
356                                 /*
357                                  * Upgrade vnode lock, since getinoquota()
358                                  * requires exclusive lock to modify inode.
359                                  */
360                                 relocked = 1;
361                                 vhold(vp);
362                                 vn_lock(vp, LK_UPGRADE | LK_RETRY);
363                                 VI_LOCK(vp);
364                                 if (vp->v_iflag & VI_DOOMED) {
365                                         vdropl(vp);
366                                         error = ENOENT;
367                                         goto relock;
368                                 }
369                                 vdropl(vp);
370                         } else
371                                 relocked = 0;
372                         error = getinoquota(ip);
373 relock:
374                         if (relocked)
375                                 vn_lock(vp, LK_DOWNGRADE | LK_RETRY);
376                         if (error != 0)
377                                 return (error);
378 #endif
379                         break;
380                 default:
381                         break;
382                 }
383         }
384
385         /*
386          * If immutable bit set, nobody gets to write it.  "& ~VADMIN_PERMS"
387          * permits the owner of the file to remove the IMMUTABLE flag.
388          */
389         if ((accmode & (VMODIFY_PERMS & ~VADMIN_PERMS)) &&
390             (ip->i_flags & (IMMUTABLE | SF_SNAPSHOT)))
391                 return (EPERM);
392
393 #ifdef UFS_ACL
394         if ((vp->v_mount->mnt_flag & (MNT_ACLS | MNT_NFS4ACLS)) != 0) {
395                 if (vp->v_mount->mnt_flag & MNT_NFS4ACLS)
396                         type = ACL_TYPE_NFS4;
397                 else
398                         type = ACL_TYPE_ACCESS;
399
400                 acl = acl_alloc(M_WAITOK);
401                 if (type == ACL_TYPE_NFS4)
402                         error = ufs_getacl_nfs4_internal(vp, acl, ap->a_td);
403                 else
404                         error = VOP_GETACL(vp, type, acl, ap->a_cred, ap->a_td);
405                 switch (error) {
406                 case 0:
407                         if (type == ACL_TYPE_NFS4) {
408                                 error = vaccess_acl_nfs4(vp->v_type, ip->i_uid,
409                                     ip->i_gid, acl, accmode, ap->a_cred, NULL);
410                         } else {
411                                 error = vfs_unixify_accmode(&accmode);
412                                 if (error == 0)
413                                         error = vaccess_acl_posix1e(vp->v_type, ip->i_uid,
414                                             ip->i_gid, acl, accmode, ap->a_cred, NULL);
415                         }
416                         break;
417                 default:
418                         if (error != EOPNOTSUPP)
419                                 printf(
420 "ufs_accessx(): Error retrieving ACL on object (%d).\n",
421                                     error);
422                         /*
423                          * XXX: Fall back until debugged.  Should
424                          * eventually possibly log an error, and return
425                          * EPERM for safety.
426                          */
427                         error = vfs_unixify_accmode(&accmode);
428                         if (error == 0)
429                                 error = vaccess(vp->v_type, ip->i_mode, ip->i_uid,
430                                     ip->i_gid, accmode, ap->a_cred, NULL);
431                 }
432                 acl_free(acl);
433
434                 return (error);
435         }
436 #endif /* !UFS_ACL */
437         error = vfs_unixify_accmode(&accmode);
438         if (error == 0)
439                 error = vaccess(vp->v_type, ip->i_mode, ip->i_uid, ip->i_gid,
440                     accmode, ap->a_cred, NULL);
441         return (error);
442 }
443
444 /* ARGSUSED */
445 static int
446 ufs_getattr(ap)
447         struct vop_getattr_args /* {
448                 struct vnode *a_vp;
449                 struct vattr *a_vap;
450                 struct ucred *a_cred;
451         } */ *ap;
452 {
453         struct vnode *vp = ap->a_vp;
454         struct inode *ip = VTOI(vp);
455         struct vattr *vap = ap->a_vap;
456
457         VI_LOCK(vp);
458         ufs_itimes_locked(vp);
459         if (I_IS_UFS1(ip)) {
460                 vap->va_atime.tv_sec = ip->i_din1->di_atime;
461                 vap->va_atime.tv_nsec = ip->i_din1->di_atimensec;
462         } else {
463                 vap->va_atime.tv_sec = ip->i_din2->di_atime;
464                 vap->va_atime.tv_nsec = ip->i_din2->di_atimensec;
465         }
466         VI_UNLOCK(vp);
467         /*
468          * Copy from inode table
469          */
470         vap->va_fsid = dev2udev(ITOUMP(ip)->um_dev);
471         vap->va_fileid = ip->i_number;
472         vap->va_mode = ip->i_mode & ~IFMT;
473         vap->va_nlink = ip->i_effnlink;
474         vap->va_uid = ip->i_uid;
475         vap->va_gid = ip->i_gid;
476         if (I_IS_UFS1(ip)) {
477                 vap->va_rdev = ip->i_din1->di_rdev;
478                 vap->va_size = ip->i_din1->di_size;
479                 vap->va_mtime.tv_sec = ip->i_din1->di_mtime;
480                 vap->va_mtime.tv_nsec = ip->i_din1->di_mtimensec;
481                 vap->va_ctime.tv_sec = ip->i_din1->di_ctime;
482                 vap->va_ctime.tv_nsec = ip->i_din1->di_ctimensec;
483                 vap->va_bytes = dbtob((u_quad_t)ip->i_din1->di_blocks);
484                 vap->va_filerev = ip->i_din1->di_modrev;
485         } else {
486                 vap->va_rdev = ip->i_din2->di_rdev;
487                 vap->va_size = ip->i_din2->di_size;
488                 vap->va_mtime.tv_sec = ip->i_din2->di_mtime;
489                 vap->va_mtime.tv_nsec = ip->i_din2->di_mtimensec;
490                 vap->va_ctime.tv_sec = ip->i_din2->di_ctime;
491                 vap->va_ctime.tv_nsec = ip->i_din2->di_ctimensec;
492                 vap->va_birthtime.tv_sec = ip->i_din2->di_birthtime;
493                 vap->va_birthtime.tv_nsec = ip->i_din2->di_birthnsec;
494                 vap->va_bytes = dbtob((u_quad_t)ip->i_din2->di_blocks);
495                 vap->va_filerev = ip->i_din2->di_modrev;
496         }
497         vap->va_flags = ip->i_flags;
498         vap->va_gen = ip->i_gen;
499         vap->va_blocksize = vp->v_mount->mnt_stat.f_iosize;
500         vap->va_type = IFTOVT(ip->i_mode);
501         return (0);
502 }
503
504 /*
505  * Set attribute vnode op. called from several syscalls
506  */
507 static int
508 ufs_setattr(ap)
509         struct vop_setattr_args /* {
510                 struct vnode *a_vp;
511                 struct vattr *a_vap;
512                 struct ucred *a_cred;
513         } */ *ap;
514 {
515         struct vattr *vap = ap->a_vap;
516         struct vnode *vp = ap->a_vp;
517         struct inode *ip = VTOI(vp);
518         struct ucred *cred = ap->a_cred;
519         struct thread *td = curthread;
520         int error;
521
522         /*
523          * Check for unsettable attributes.
524          */
525         if ((vap->va_type != VNON) || (vap->va_nlink != VNOVAL) ||
526             (vap->va_fsid != VNOVAL) || (vap->va_fileid != VNOVAL) ||
527             (vap->va_blocksize != VNOVAL) || (vap->va_rdev != VNOVAL) ||
528             ((int)vap->va_bytes != VNOVAL) || (vap->va_gen != VNOVAL)) {
529                 return (EINVAL);
530         }
531         if (vap->va_flags != VNOVAL) {
532                 if ((vap->va_flags & ~(SF_APPEND | SF_ARCHIVED | SF_IMMUTABLE |
533                     SF_NOUNLINK | SF_SNAPSHOT | UF_APPEND | UF_ARCHIVE |
534                     UF_HIDDEN | UF_IMMUTABLE | UF_NODUMP | UF_NOUNLINK |
535                     UF_OFFLINE | UF_OPAQUE | UF_READONLY | UF_REPARSE |
536                     UF_SPARSE | UF_SYSTEM)) != 0)
537                         return (EOPNOTSUPP);
538                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
539                         return (EROFS);
540                 /*
541                  * Callers may only modify the file flags on objects they
542                  * have VADMIN rights for.
543                  */
544                 if ((error = VOP_ACCESS(vp, VADMIN, cred, td)))
545                         return (error);
546                 /*
547                  * Unprivileged processes are not permitted to unset system
548                  * flags, or modify flags if any system flags are set.
549                  * Privileged non-jail processes may not modify system flags
550                  * if securelevel > 0 and any existing system flags are set.
551                  * Privileged jail processes behave like privileged non-jail
552                  * processes if the security.jail.chflags_allowed sysctl is
553                  * is non-zero; otherwise, they behave like unprivileged
554                  * processes.
555                  */
556                 if (!priv_check_cred(cred, PRIV_VFS_SYSFLAGS, 0)) {
557                         if (ip->i_flags &
558                             (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND)) {
559                                 error = securelevel_gt(cred, 0);
560                                 if (error)
561                                         return (error);
562                         }
563                         /* The snapshot flag cannot be toggled. */
564                         if ((vap->va_flags ^ ip->i_flags) & SF_SNAPSHOT)
565                                 return (EPERM);
566                 } else {
567                         if (ip->i_flags &
568                             (SF_NOUNLINK | SF_IMMUTABLE | SF_APPEND) ||
569                             ((vap->va_flags ^ ip->i_flags) & SF_SETTABLE))
570                                 return (EPERM);
571                 }
572                 ip->i_flags = vap->va_flags;
573                 DIP_SET(ip, i_flags, vap->va_flags);
574                 ip->i_flag |= IN_CHANGE;
575                 error = UFS_UPDATE(vp, 0);
576                 if (ip->i_flags & (IMMUTABLE | APPEND))
577                         return (error);
578         }
579         /*
580          * If immutable or append, no one can change any of its attributes
581          * except the ones already handled (in some cases, file flags
582          * including the immutability flags themselves for the superuser).
583          */
584         if (ip->i_flags & (IMMUTABLE | APPEND))
585                 return (EPERM);
586         /*
587          * Go through the fields and update iff not VNOVAL.
588          */
589         if (vap->va_uid != (uid_t)VNOVAL || vap->va_gid != (gid_t)VNOVAL) {
590                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
591                         return (EROFS);
592                 if ((error = ufs_chown(vp, vap->va_uid, vap->va_gid, cred,
593                     td)) != 0)
594                         return (error);
595         }
596         if (vap->va_size != VNOVAL) {
597                 /*
598                  * XXX most of the following special cases should be in
599                  * callers instead of in N filesystems.  The VDIR check
600                  * mostly already is.
601                  */
602                 switch (vp->v_type) {
603                 case VDIR:
604                         return (EISDIR);
605                 case VLNK:
606                 case VREG:
607                         /*
608                          * Truncation should have an effect in these cases.
609                          * Disallow it if the filesystem is read-only or
610                          * the file is being snapshotted.
611                          */
612                         if (vp->v_mount->mnt_flag & MNT_RDONLY)
613                                 return (EROFS);
614                         if ((ip->i_flags & SF_SNAPSHOT) != 0)
615                                 return (EPERM);
616                         break;
617                 default:
618                         /*
619                          * According to POSIX, the result is unspecified
620                          * for file types other than regular files,
621                          * directories and shared memory objects.  We
622                          * don't support shared memory objects in the file
623                          * system, and have dubious support for truncating
624                          * symlinks.  Just ignore the request in other cases.
625                          */
626                         return (0);
627                 }
628                 if ((error = UFS_TRUNCATE(vp, vap->va_size, IO_NORMAL |
629                     ((vap->va_vaflags & VA_SYNC) != 0 ? IO_SYNC : 0),
630                     cred)) != 0)
631                         return (error);
632         }
633         if (vap->va_atime.tv_sec != VNOVAL ||
634             vap->va_mtime.tv_sec != VNOVAL ||
635             vap->va_birthtime.tv_sec != VNOVAL) {
636                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
637                         return (EROFS);
638                 if ((ip->i_flags & SF_SNAPSHOT) != 0)
639                         return (EPERM);
640                 error = vn_utimes_perm(vp, vap, cred, td);
641                 if (error != 0)
642                         return (error);
643                 ip->i_flag |= IN_CHANGE | IN_MODIFIED;
644                 if (vap->va_atime.tv_sec != VNOVAL) {
645                         ip->i_flag &= ~IN_ACCESS;
646                         DIP_SET(ip, i_atime, vap->va_atime.tv_sec);
647                         DIP_SET(ip, i_atimensec, vap->va_atime.tv_nsec);
648                 }
649                 if (vap->va_mtime.tv_sec != VNOVAL) {
650                         ip->i_flag &= ~IN_UPDATE;
651                         DIP_SET(ip, i_mtime, vap->va_mtime.tv_sec);
652                         DIP_SET(ip, i_mtimensec, vap->va_mtime.tv_nsec);
653                 }
654                 if (vap->va_birthtime.tv_sec != VNOVAL && I_IS_UFS2(ip)) {
655                         ip->i_din2->di_birthtime = vap->va_birthtime.tv_sec;
656                         ip->i_din2->di_birthnsec = vap->va_birthtime.tv_nsec;
657                 }
658                 error = UFS_UPDATE(vp, 0);
659                 if (error)
660                         return (error);
661         }
662         error = 0;
663         if (vap->va_mode != (mode_t)VNOVAL) {
664                 if (vp->v_mount->mnt_flag & MNT_RDONLY)
665                         return (EROFS);
666                 if ((ip->i_flags & SF_SNAPSHOT) != 0 && (vap->va_mode &
667                    (S_IXUSR | S_IWUSR | S_IXGRP | S_IWGRP | S_IXOTH | S_IWOTH)))
668                         return (EPERM);
669                 error = ufs_chmod(vp, (int)vap->va_mode, cred, td);
670         }
671         return (error);
672 }
673
674 #ifdef UFS_ACL
675 static int
676 ufs_update_nfs4_acl_after_mode_change(struct vnode *vp, int mode,
677     int file_owner_id, struct ucred *cred, struct thread *td)
678 {
679         int error;
680         struct acl *aclp;
681
682         aclp = acl_alloc(M_WAITOK);
683         error = ufs_getacl_nfs4_internal(vp, aclp, td);
684         /*
685          * We don't have to handle EOPNOTSUPP here, as the filesystem claims
686          * it supports ACLs.
687          */
688         if (error)
689                 goto out;
690
691         acl_nfs4_sync_acl_from_mode(aclp, mode, file_owner_id);
692         error = ufs_setacl_nfs4_internal(vp, aclp, td);
693
694 out:
695         acl_free(aclp);
696         return (error);
697 }
698 #endif /* UFS_ACL */
699
700 /*
701  * Mark this file's access time for update for vfs_mark_atime().  This
702  * is called from execve() and mmap().
703  */
704 static int
705 ufs_markatime(ap)
706         struct vop_markatime_args /* {
707                 struct vnode *a_vp;
708         } */ *ap;
709 {
710         struct vnode *vp = ap->a_vp;
711         struct inode *ip = VTOI(vp);
712
713         VI_LOCK(vp);
714         ip->i_flag |= IN_ACCESS;
715         VI_UNLOCK(vp);
716         /*
717          * XXXKIB No UFS_UPDATE(ap->a_vp, 0) there.
718          */
719         return (0);
720 }
721
722 /*
723  * Change the mode on a file.
724  * Inode must be locked before calling.
725  */
726 static int
727 ufs_chmod(vp, mode, cred, td)
728         struct vnode *vp;
729         int mode;
730         struct ucred *cred;
731         struct thread *td;
732 {
733         struct inode *ip = VTOI(vp);
734         int error;
735
736         /*
737          * To modify the permissions on a file, must possess VADMIN
738          * for that file.
739          */
740         if ((error = VOP_ACCESSX(vp, VWRITE_ACL, cred, td)))
741                 return (error);
742         /*
743          * Privileged processes may set the sticky bit on non-directories,
744          * as well as set the setgid bit on a file with a group that the
745          * process is not a member of.  Both of these are allowed in
746          * jail(8).
747          */
748         if (vp->v_type != VDIR && (mode & S_ISTXT)) {
749                 if (priv_check_cred(cred, PRIV_VFS_STICKYFILE, 0))
750                         return (EFTYPE);
751         }
752         if (!groupmember(ip->i_gid, cred) && (mode & ISGID)) {
753                 error = priv_check_cred(cred, PRIV_VFS_SETGID, 0);
754                 if (error)
755                         return (error);
756         }
757
758         /*
759          * Deny setting setuid if we are not the file owner.
760          */
761         if ((mode & ISUID) && ip->i_uid != cred->cr_uid) {
762                 error = priv_check_cred(cred, PRIV_VFS_ADMIN, 0);
763                 if (error)
764                         return (error);
765         }
766
767         ip->i_mode &= ~ALLPERMS;
768         ip->i_mode |= (mode & ALLPERMS);
769         DIP_SET(ip, i_mode, ip->i_mode);
770         ip->i_flag |= IN_CHANGE;
771 #ifdef UFS_ACL
772         if ((vp->v_mount->mnt_flag & MNT_NFS4ACLS) != 0)
773                 error = ufs_update_nfs4_acl_after_mode_change(vp, mode, ip->i_uid, cred, td);
774 #endif
775         if (error == 0 && (ip->i_flag & IN_CHANGE) != 0)
776                 error = UFS_UPDATE(vp, 0);
777
778         return (error);
779 }
780
781 /*
782  * Perform chown operation on inode ip;
783  * inode must be locked prior to call.
784  */
785 static int
786 ufs_chown(vp, uid, gid, cred, td)
787         struct vnode *vp;
788         uid_t uid;
789         gid_t gid;
790         struct ucred *cred;
791         struct thread *td;
792 {
793         struct inode *ip = VTOI(vp);
794         uid_t ouid;
795         gid_t ogid;
796         int error = 0;
797 #ifdef QUOTA
798         int i;
799         ufs2_daddr_t change;
800 #endif
801
802         if (uid == (uid_t)VNOVAL)
803                 uid = ip->i_uid;
804         if (gid == (gid_t)VNOVAL)
805                 gid = ip->i_gid;
806         /*
807          * To modify the ownership of a file, must possess VADMIN for that
808          * file.
809          */
810         if ((error = VOP_ACCESSX(vp, VWRITE_OWNER, cred, td)))
811                 return (error);
812         /*
813          * To change the owner of a file, or change the group of a file to a
814          * group of which we are not a member, the caller must have
815          * privilege.
816          */
817         if (((uid != ip->i_uid && uid != cred->cr_uid) || 
818             (gid != ip->i_gid && !groupmember(gid, cred))) &&
819             (error = priv_check_cred(cred, PRIV_VFS_CHOWN, 0)))
820                 return (error);
821         ogid = ip->i_gid;
822         ouid = ip->i_uid;
823 #ifdef QUOTA
824         if ((error = getinoquota(ip)) != 0)
825                 return (error);
826         if (ouid == uid) {
827                 dqrele(vp, ip->i_dquot[USRQUOTA]);
828                 ip->i_dquot[USRQUOTA] = NODQUOT;
829         }
830         if (ogid == gid) {
831                 dqrele(vp, ip->i_dquot[GRPQUOTA]);
832                 ip->i_dquot[GRPQUOTA] = NODQUOT;
833         }
834         change = DIP(ip, i_blocks);
835         (void) chkdq(ip, -change, cred, CHOWN);
836         (void) chkiq(ip, -1, cred, CHOWN);
837         for (i = 0; i < MAXQUOTAS; i++) {
838                 dqrele(vp, ip->i_dquot[i]);
839                 ip->i_dquot[i] = NODQUOT;
840         }
841 #endif
842         ip->i_gid = gid;
843         DIP_SET(ip, i_gid, gid);
844         ip->i_uid = uid;
845         DIP_SET(ip, i_uid, uid);
846 #ifdef QUOTA
847         if ((error = getinoquota(ip)) == 0) {
848                 if (ouid == uid) {
849                         dqrele(vp, ip->i_dquot[USRQUOTA]);
850                         ip->i_dquot[USRQUOTA] = NODQUOT;
851                 }
852                 if (ogid == gid) {
853                         dqrele(vp, ip->i_dquot[GRPQUOTA]);
854                         ip->i_dquot[GRPQUOTA] = NODQUOT;
855                 }
856                 if ((error = chkdq(ip, change, cred, CHOWN)) == 0) {
857                         if ((error = chkiq(ip, 1, cred, CHOWN)) == 0)
858                                 goto good;
859                         else
860                                 (void) chkdq(ip, -change, cred, CHOWN|FORCE);
861                 }
862                 for (i = 0; i < MAXQUOTAS; i++) {
863                         dqrele(vp, ip->i_dquot[i]);
864                         ip->i_dquot[i] = NODQUOT;
865                 }
866         }
867         ip->i_gid = ogid;
868         DIP_SET(ip, i_gid, ogid);
869         ip->i_uid = ouid;
870         DIP_SET(ip, i_uid, ouid);
871         if (getinoquota(ip) == 0) {
872                 if (ouid == uid) {
873                         dqrele(vp, ip->i_dquot[USRQUOTA]);
874                         ip->i_dquot[USRQUOTA] = NODQUOT;
875                 }
876                 if (ogid == gid) {
877                         dqrele(vp, ip->i_dquot[GRPQUOTA]);
878                         ip->i_dquot[GRPQUOTA] = NODQUOT;
879                 }
880                 (void) chkdq(ip, change, cred, FORCE|CHOWN);
881                 (void) chkiq(ip, 1, cred, FORCE|CHOWN);
882                 (void) getinoquota(ip);
883         }
884         return (error);
885 good:
886         if (getinoquota(ip))
887                 panic("ufs_chown: lost quota");
888 #endif /* QUOTA */
889         ip->i_flag |= IN_CHANGE;
890         if ((ip->i_mode & (ISUID | ISGID)) && (ouid != uid || ogid != gid)) {
891                 if (priv_check_cred(cred, PRIV_VFS_RETAINSUGID, 0)) {
892                         ip->i_mode &= ~(ISUID | ISGID);
893                         DIP_SET(ip, i_mode, ip->i_mode);
894                 }
895         }
896         error = UFS_UPDATE(vp, 0);
897         return (error);
898 }
899
900 static int
901 ufs_remove(ap)
902         struct vop_remove_args /* {
903                 struct vnode *a_dvp;
904                 struct vnode *a_vp;
905                 struct componentname *a_cnp;
906         } */ *ap;
907 {
908         struct inode *ip;
909         struct vnode *vp = ap->a_vp;
910         struct vnode *dvp = ap->a_dvp;
911         int error;
912         struct thread *td;
913
914         td = curthread;
915         ip = VTOI(vp);
916         if ((ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
917             (VTOI(dvp)->i_flags & APPEND)) {
918                 error = EPERM;
919                 goto out;
920         }
921 #ifdef UFS_GJOURNAL
922         ufs_gjournal_orphan(vp);
923 #endif
924         error = ufs_dirremove(dvp, ip, ap->a_cnp->cn_flags, 0);
925         if (ip->i_nlink <= 0)
926                 vp->v_vflag |= VV_NOSYNC;
927         if ((ip->i_flags & SF_SNAPSHOT) != 0) {
928                 /*
929                  * Avoid deadlock where another thread is trying to
930                  * update the inodeblock for dvp and is waiting on
931                  * snaplk.  Temporary unlock the vnode lock for the
932                  * unlinked file and sync the directory.  This should
933                  * allow vput() of the directory to not block later on
934                  * while holding the snapshot vnode locked, assuming
935                  * that the directory hasn't been unlinked too.
936                  */
937                 VOP_UNLOCK(vp, 0);
938                 (void) VOP_FSYNC(dvp, MNT_WAIT, td);
939                 vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
940         }
941 out:
942         return (error);
943 }
944
945 /*
946  * link vnode call
947  */
948 static int
949 ufs_link(ap)
950         struct vop_link_args /* {
951                 struct vnode *a_tdvp;
952                 struct vnode *a_vp;
953                 struct componentname *a_cnp;
954         } */ *ap;
955 {
956         struct vnode *vp = ap->a_vp;
957         struct vnode *tdvp = ap->a_tdvp;
958         struct componentname *cnp = ap->a_cnp;
959         struct inode *ip;
960         struct direct newdir;
961         int error;
962
963 #ifdef INVARIANTS
964         if ((cnp->cn_flags & HASBUF) == 0)
965                 panic("ufs_link: no name");
966 #endif
967         if (VTOI(tdvp)->i_effnlink < 2)
968                 panic("ufs_link: Bad link count %d on parent",
969                     VTOI(tdvp)->i_effnlink);
970         ip = VTOI(vp);
971         if ((nlink_t)ip->i_nlink >= LINK_MAX) {
972                 error = EMLINK;
973                 goto out;
974         }
975         /*
976          * The file may have been removed after namei droped the original
977          * lock.
978          */
979         if (ip->i_effnlink == 0) {
980                 error = ENOENT;
981                 goto out;
982         }
983         if (ip->i_flags & (IMMUTABLE | APPEND)) {
984                 error = EPERM;
985                 goto out;
986         }
987         ip->i_effnlink++;
988         ip->i_nlink++;
989         DIP_SET(ip, i_nlink, ip->i_nlink);
990         ip->i_flag |= IN_CHANGE;
991         if (DOINGSOFTDEP(vp))
992                 softdep_setup_link(VTOI(tdvp), ip);
993         error = UFS_UPDATE(vp, !DOINGSOFTDEP(vp) && !DOINGASYNC(vp));
994         if (!error) {
995                 ufs_makedirentry(ip, cnp, &newdir);
996                 error = ufs_direnter(tdvp, vp, &newdir, cnp, NULL, 0);
997         }
998
999         if (error) {
1000                 ip->i_effnlink--;
1001                 ip->i_nlink--;
1002                 DIP_SET(ip, i_nlink, ip->i_nlink);
1003                 ip->i_flag |= IN_CHANGE;
1004                 if (DOINGSOFTDEP(vp))
1005                         softdep_revert_link(VTOI(tdvp), ip);
1006         }
1007 out:
1008         return (error);
1009 }
1010
1011 /*
1012  * whiteout vnode call
1013  */
1014 static int
1015 ufs_whiteout(ap)
1016         struct vop_whiteout_args /* {
1017                 struct vnode *a_dvp;
1018                 struct componentname *a_cnp;
1019                 int a_flags;
1020         } */ *ap;
1021 {
1022         struct vnode *dvp = ap->a_dvp;
1023         struct componentname *cnp = ap->a_cnp;
1024         struct direct newdir;
1025         int error = 0;
1026
1027         switch (ap->a_flags) {
1028         case LOOKUP:
1029                 /* 4.4 format directories support whiteout operations */
1030                 if (dvp->v_mount->mnt_maxsymlinklen > 0)
1031                         return (0);
1032                 return (EOPNOTSUPP);
1033
1034         case CREATE:
1035                 /* create a new directory whiteout */
1036 #ifdef INVARIANTS
1037                 if ((cnp->cn_flags & SAVENAME) == 0)
1038                         panic("ufs_whiteout: missing name");
1039                 if (dvp->v_mount->mnt_maxsymlinklen <= 0)
1040                         panic("ufs_whiteout: old format filesystem");
1041 #endif
1042
1043                 newdir.d_ino = WINO;
1044                 newdir.d_namlen = cnp->cn_namelen;
1045                 bcopy(cnp->cn_nameptr, newdir.d_name, (unsigned)cnp->cn_namelen + 1);
1046                 newdir.d_type = DT_WHT;
1047                 error = ufs_direnter(dvp, NULL, &newdir, cnp, NULL, 0);
1048                 break;
1049
1050         case DELETE:
1051                 /* remove an existing directory whiteout */
1052 #ifdef INVARIANTS
1053                 if (dvp->v_mount->mnt_maxsymlinklen <= 0)
1054                         panic("ufs_whiteout: old format filesystem");
1055 #endif
1056
1057                 cnp->cn_flags &= ~DOWHITEOUT;
1058                 error = ufs_dirremove(dvp, NULL, cnp->cn_flags, 0);
1059                 break;
1060         default:
1061                 panic("ufs_whiteout: unknown op");
1062         }
1063         return (error);
1064 }
1065
1066 static volatile int rename_restarts;
1067 SYSCTL_INT(_vfs_ufs, OID_AUTO, rename_restarts, CTLFLAG_RD,
1068     __DEVOLATILE(int *, &rename_restarts), 0,
1069     "Times rename had to restart due to lock contention");
1070
1071 /*
1072  * Rename system call.
1073  *      rename("foo", "bar");
1074  * is essentially
1075  *      unlink("bar");
1076  *      link("foo", "bar");
1077  *      unlink("foo");
1078  * but ``atomically''.  Can't do full commit without saving state in the
1079  * inode on disk which isn't feasible at this time.  Best we can do is
1080  * always guarantee the target exists.
1081  *
1082  * Basic algorithm is:
1083  *
1084  * 1) Bump link count on source while we're linking it to the
1085  *    target.  This also ensure the inode won't be deleted out
1086  *    from underneath us while we work (it may be truncated by
1087  *    a concurrent `trunc' or `open' for creation).
1088  * 2) Link source to destination.  If destination already exists,
1089  *    delete it first.
1090  * 3) Unlink source reference to inode if still around. If a
1091  *    directory was moved and the parent of the destination
1092  *    is different from the source, patch the ".." entry in the
1093  *    directory.
1094  */
1095 static int
1096 ufs_rename(ap)
1097         struct vop_rename_args  /* {
1098                 struct vnode *a_fdvp;
1099                 struct vnode *a_fvp;
1100                 struct componentname *a_fcnp;
1101                 struct vnode *a_tdvp;
1102                 struct vnode *a_tvp;
1103                 struct componentname *a_tcnp;
1104         } */ *ap;
1105 {
1106         struct vnode *tvp = ap->a_tvp;
1107         struct vnode *tdvp = ap->a_tdvp;
1108         struct vnode *fvp = ap->a_fvp;
1109         struct vnode *fdvp = ap->a_fdvp;
1110         struct vnode *nvp;
1111         struct componentname *tcnp = ap->a_tcnp;
1112         struct componentname *fcnp = ap->a_fcnp;
1113         struct thread *td = fcnp->cn_thread;
1114         struct inode *fip, *tip, *tdp, *fdp;
1115         struct direct newdir;
1116         off_t endoff;
1117         int doingdirectory, newparent;
1118         int error = 0;
1119         struct mount *mp;
1120         ino_t ino;
1121
1122 #ifdef INVARIANTS
1123         if ((tcnp->cn_flags & HASBUF) == 0 ||
1124             (fcnp->cn_flags & HASBUF) == 0)
1125                 panic("ufs_rename: no name");
1126 #endif
1127         endoff = 0;
1128         mp = tdvp->v_mount;
1129         VOP_UNLOCK(tdvp, 0);
1130         if (tvp && tvp != tdvp)
1131                 VOP_UNLOCK(tvp, 0);
1132         /*
1133          * Check for cross-device rename.
1134          */
1135         if ((fvp->v_mount != tdvp->v_mount) ||
1136             (tvp && (fvp->v_mount != tvp->v_mount))) {
1137                 error = EXDEV;
1138                 mp = NULL;
1139                 goto releout;
1140         }
1141 relock:
1142         /* 
1143          * We need to acquire 2 to 4 locks depending on whether tvp is NULL
1144          * and fdvp and tdvp are the same directory.  Subsequently we need
1145          * to double-check all paths and in the directory rename case we
1146          * need to verify that we are not creating a directory loop.  To
1147          * handle this we acquire all but fdvp using non-blocking
1148          * acquisitions.  If we fail to acquire any lock in the path we will
1149          * drop all held locks, acquire the new lock in a blocking fashion,
1150          * and then release it and restart the rename.  This acquire/release
1151          * step ensures that we do not spin on a lock waiting for release.
1152          */
1153         error = vn_lock(fdvp, LK_EXCLUSIVE);
1154         if (error)
1155                 goto releout;
1156         if (vn_lock(tdvp, LK_EXCLUSIVE | LK_NOWAIT) != 0) {
1157                 VOP_UNLOCK(fdvp, 0);
1158                 error = vn_lock(tdvp, LK_EXCLUSIVE);
1159                 if (error)
1160                         goto releout;
1161                 VOP_UNLOCK(tdvp, 0);
1162                 atomic_add_int(&rename_restarts, 1);
1163                 goto relock;
1164         }
1165         /*
1166          * Re-resolve fvp to be certain it still exists and fetch the
1167          * correct vnode.
1168          */
1169         error = ufs_lookup_ino(fdvp, NULL, fcnp, &ino);
1170         if (error) {
1171                 VOP_UNLOCK(fdvp, 0);
1172                 VOP_UNLOCK(tdvp, 0);
1173                 goto releout;
1174         }
1175         error = VFS_VGET(mp, ino, LK_EXCLUSIVE | LK_NOWAIT, &nvp);
1176         if (error) {
1177                 VOP_UNLOCK(fdvp, 0);
1178                 VOP_UNLOCK(tdvp, 0);
1179                 if (error != EBUSY)
1180                         goto releout;
1181                 error = VFS_VGET(mp, ino, LK_EXCLUSIVE, &nvp);
1182                 if (error != 0)
1183                         goto releout;
1184                 VOP_UNLOCK(nvp, 0);
1185                 vrele(fvp);
1186                 fvp = nvp;
1187                 atomic_add_int(&rename_restarts, 1);
1188                 goto relock;
1189         }
1190         vrele(fvp);
1191         fvp = nvp;
1192         /*
1193          * Re-resolve tvp and acquire the vnode lock if present.
1194          */
1195         error = ufs_lookup_ino(tdvp, NULL, tcnp, &ino);
1196         if (error != 0 && error != EJUSTRETURN) {
1197                 VOP_UNLOCK(fdvp, 0);
1198                 VOP_UNLOCK(tdvp, 0);
1199                 VOP_UNLOCK(fvp, 0);
1200                 goto releout;
1201         }
1202         /*
1203          * If tvp disappeared we just carry on.
1204          */
1205         if (error == EJUSTRETURN && tvp != NULL) {
1206                 vrele(tvp);
1207                 tvp = NULL;
1208         }
1209         /*
1210          * Get the tvp ino if the lookup succeeded.  We may have to restart
1211          * if the non-blocking acquire fails.
1212          */
1213         if (error == 0) {
1214                 nvp = NULL;
1215                 error = VFS_VGET(mp, ino, LK_EXCLUSIVE | LK_NOWAIT, &nvp);
1216                 if (tvp)
1217                         vrele(tvp);
1218                 tvp = nvp;
1219                 if (error) {
1220                         VOP_UNLOCK(fdvp, 0);
1221                         VOP_UNLOCK(tdvp, 0);
1222                         VOP_UNLOCK(fvp, 0);
1223                         if (error != EBUSY)
1224                                 goto releout;
1225                         error = VFS_VGET(mp, ino, LK_EXCLUSIVE, &nvp);
1226                         if (error != 0)
1227                                 goto releout;
1228                         vput(nvp);
1229                         atomic_add_int(&rename_restarts, 1);
1230                         goto relock;
1231                 }
1232         }
1233         fdp = VTOI(fdvp);
1234         fip = VTOI(fvp);
1235         tdp = VTOI(tdvp);
1236         tip = NULL;
1237         if (tvp)
1238                 tip = VTOI(tvp);
1239         if (tvp && ((VTOI(tvp)->i_flags & (NOUNLINK | IMMUTABLE | APPEND)) ||
1240             (VTOI(tdvp)->i_flags & APPEND))) {
1241                 error = EPERM;
1242                 goto unlockout;
1243         }
1244         /*
1245          * Renaming a file to itself has no effect.  The upper layers should
1246          * not call us in that case.  However, things could change after
1247          * we drop the locks above.
1248          */
1249         if (fvp == tvp) {
1250                 error = 0;
1251                 goto unlockout;
1252         }
1253         doingdirectory = 0;
1254         newparent = 0;
1255         ino = fip->i_number;
1256         if (fip->i_nlink >= LINK_MAX) {
1257                 error = EMLINK;
1258                 goto unlockout;
1259         }
1260         if ((fip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))
1261             || (fdp->i_flags & APPEND)) {
1262                 error = EPERM;
1263                 goto unlockout;
1264         }
1265         if ((fip->i_mode & IFMT) == IFDIR) {
1266                 /*
1267                  * Avoid ".", "..", and aliases of "." for obvious reasons.
1268                  */
1269                 if ((fcnp->cn_namelen == 1 && fcnp->cn_nameptr[0] == '.') ||
1270                     fdp == fip ||
1271                     (fcnp->cn_flags | tcnp->cn_flags) & ISDOTDOT) {
1272                         error = EINVAL;
1273                         goto unlockout;
1274                 }
1275                 if (fdp->i_number != tdp->i_number)
1276                         newparent = tdp->i_number;
1277                 doingdirectory = 1;
1278         }
1279         if ((fvp->v_type == VDIR && fvp->v_mountedhere != NULL) ||
1280             (tvp != NULL && tvp->v_type == VDIR &&
1281             tvp->v_mountedhere != NULL)) {
1282                 error = EXDEV;
1283                 goto unlockout;
1284         }
1285
1286         /*
1287          * If ".." must be changed (ie the directory gets a new
1288          * parent) then the source directory must not be in the
1289          * directory hierarchy above the target, as this would
1290          * orphan everything below the source directory. Also
1291          * the user must have write permission in the source so
1292          * as to be able to change "..".
1293          */
1294         if (doingdirectory && newparent) {
1295                 error = VOP_ACCESS(fvp, VWRITE, tcnp->cn_cred, tcnp->cn_thread);
1296                 if (error)
1297                         goto unlockout;
1298                 error = ufs_checkpath(ino, fdp->i_number, tdp, tcnp->cn_cred,
1299                     &ino);
1300                 /*
1301                  * We encountered a lock that we have to wait for.  Unlock
1302                  * everything else and VGET before restarting.
1303                  */
1304                 if (ino) {
1305                         VOP_UNLOCK(fdvp, 0);
1306                         VOP_UNLOCK(fvp, 0);
1307                         VOP_UNLOCK(tdvp, 0);
1308                         if (tvp)
1309                                 VOP_UNLOCK(tvp, 0);
1310                         error = VFS_VGET(mp, ino, LK_SHARED, &nvp);
1311                         if (error == 0)
1312                                 vput(nvp);
1313                         atomic_add_int(&rename_restarts, 1);
1314                         goto relock;
1315                 }
1316                 if (error)
1317                         goto unlockout;
1318                 if ((tcnp->cn_flags & SAVESTART) == 0)
1319                         panic("ufs_rename: lost to startdir");
1320         }
1321         if (fip->i_effnlink == 0 || fdp->i_effnlink == 0 ||
1322             tdp->i_effnlink == 0)
1323                 panic("Bad effnlink fip %p, fdp %p, tdp %p", fip, fdp, tdp);
1324
1325         /*
1326          * 1) Bump link count while we're moving stuff
1327          *    around.  If we crash somewhere before
1328          *    completing our work, the link count
1329          *    may be wrong, but correctable.
1330          */
1331         fip->i_effnlink++;
1332         fip->i_nlink++;
1333         DIP_SET(fip, i_nlink, fip->i_nlink);
1334         fip->i_flag |= IN_CHANGE;
1335         if (DOINGSOFTDEP(fvp))
1336                 softdep_setup_link(tdp, fip);
1337         error = UFS_UPDATE(fvp, !DOINGSOFTDEP(fvp) && !DOINGASYNC(fvp));
1338         if (error)
1339                 goto bad;
1340
1341         /*
1342          * 2) If target doesn't exist, link the target
1343          *    to the source and unlink the source.
1344          *    Otherwise, rewrite the target directory
1345          *    entry to reference the source inode and
1346          *    expunge the original entry's existence.
1347          */
1348         if (tip == NULL) {
1349                 if (ITODEV(tdp) != ITODEV(fip))
1350                         panic("ufs_rename: EXDEV");
1351                 if (doingdirectory && newparent) {
1352                         /*
1353                          * Account for ".." in new directory.
1354                          * When source and destination have the same
1355                          * parent we don't adjust the link count.  The
1356                          * actual link modification is completed when
1357                          * .. is rewritten below.
1358                          */
1359                         if ((nlink_t)tdp->i_nlink >= LINK_MAX) {
1360                                 error = EMLINK;
1361                                 goto bad;
1362                         }
1363                 }
1364                 ufs_makedirentry(fip, tcnp, &newdir);
1365                 error = ufs_direnter(tdvp, NULL, &newdir, tcnp, NULL, 1);
1366                 if (error)
1367                         goto bad;
1368                 /* Setup tdvp for directory compaction if needed. */
1369                 if (tdp->i_count && tdp->i_endoff &&
1370                     tdp->i_endoff < tdp->i_size)
1371                         endoff = tdp->i_endoff;
1372         } else {
1373                 if (ITODEV(tip) != ITODEV(tdp) || ITODEV(tip) != ITODEV(fip))
1374                         panic("ufs_rename: EXDEV");
1375                 /*
1376                  * Short circuit rename(foo, foo).
1377                  */
1378                 if (tip->i_number == fip->i_number)
1379                         panic("ufs_rename: same file");
1380                 /*
1381                  * If the parent directory is "sticky", then the caller
1382                  * must possess VADMIN for the parent directory, or the
1383                  * destination of the rename.  This implements append-only
1384                  * directories.
1385                  */
1386                 if ((tdp->i_mode & S_ISTXT) &&
1387                     VOP_ACCESS(tdvp, VADMIN, tcnp->cn_cred, td) &&
1388                     VOP_ACCESS(tvp, VADMIN, tcnp->cn_cred, td)) {
1389                         error = EPERM;
1390                         goto bad;
1391                 }
1392                 /*
1393                  * Target must be empty if a directory and have no links
1394                  * to it. Also, ensure source and target are compatible
1395                  * (both directories, or both not directories).
1396                  */
1397                 if ((tip->i_mode & IFMT) == IFDIR) {
1398                         if ((tip->i_effnlink > 2) ||
1399                             !ufs_dirempty(tip, tdp->i_number, tcnp->cn_cred)) {
1400                                 error = ENOTEMPTY;
1401                                 goto bad;
1402                         }
1403                         if (!doingdirectory) {
1404                                 error = ENOTDIR;
1405                                 goto bad;
1406                         }
1407                         cache_purge(tdvp);
1408                 } else if (doingdirectory) {
1409                         error = EISDIR;
1410                         goto bad;
1411                 }
1412                 if (doingdirectory) {
1413                         if (!newparent) {
1414                                 tdp->i_effnlink--;
1415                                 if (DOINGSOFTDEP(tdvp))
1416                                         softdep_change_linkcnt(tdp);
1417                         }
1418                         tip->i_effnlink--;
1419                         if (DOINGSOFTDEP(tvp))
1420                                 softdep_change_linkcnt(tip);
1421                 }
1422                 error = ufs_dirrewrite(tdp, tip, fip->i_number,
1423                     IFTODT(fip->i_mode),
1424                     (doingdirectory && newparent) ? newparent : doingdirectory);
1425                 if (error) {
1426                         if (doingdirectory) {
1427                                 if (!newparent) {
1428                                         tdp->i_effnlink++;
1429                                         if (DOINGSOFTDEP(tdvp))
1430                                                 softdep_change_linkcnt(tdp);
1431                                 }
1432                                 tip->i_effnlink++;
1433                                 if (DOINGSOFTDEP(tvp))
1434                                         softdep_change_linkcnt(tip);
1435                         }
1436                 }
1437                 if (doingdirectory && !DOINGSOFTDEP(tvp)) {
1438                         /*
1439                          * The only stuff left in the directory is "."
1440                          * and "..". The "." reference is inconsequential
1441                          * since we are quashing it. We have removed the "."
1442                          * reference and the reference in the parent directory,
1443                          * but there may be other hard links. The soft
1444                          * dependency code will arrange to do these operations
1445                          * after the parent directory entry has been deleted on
1446                          * disk, so when running with that code we avoid doing
1447                          * them now.
1448                          */
1449                         if (!newparent) {
1450                                 tdp->i_nlink--;
1451                                 DIP_SET(tdp, i_nlink, tdp->i_nlink);
1452                                 tdp->i_flag |= IN_CHANGE;
1453                         }
1454                         tip->i_nlink--;
1455                         DIP_SET(tip, i_nlink, tip->i_nlink);
1456                         tip->i_flag |= IN_CHANGE;
1457                 }
1458         }
1459
1460         /*
1461          * 3) Unlink the source.  We have to resolve the path again to
1462          * fixup the directory offset and count for ufs_dirremove.
1463          */
1464         if (fdvp == tdvp) {
1465                 error = ufs_lookup_ino(fdvp, NULL, fcnp, &ino);
1466                 if (error)
1467                         panic("ufs_rename: from entry went away!");
1468                 if (ino != fip->i_number)
1469                         panic("ufs_rename: ino mismatch %ju != %ju\n",
1470                             (uintmax_t)ino, (uintmax_t)fip->i_number);
1471         }
1472         /*
1473          * If the source is a directory with a
1474          * new parent, the link count of the old
1475          * parent directory must be decremented
1476          * and ".." set to point to the new parent.
1477          */
1478         if (doingdirectory && newparent) {
1479                 /*
1480                  * If tip exists we simply use its link, otherwise we must
1481                  * add a new one.
1482                  */
1483                 if (tip == NULL) {
1484                         tdp->i_effnlink++;
1485                         tdp->i_nlink++;
1486                         DIP_SET(tdp, i_nlink, tdp->i_nlink);
1487                         tdp->i_flag |= IN_CHANGE;
1488                         if (DOINGSOFTDEP(tdvp))
1489                                 softdep_setup_dotdot_link(tdp, fip);
1490                         error = UFS_UPDATE(tdvp, !DOINGSOFTDEP(tdvp) &&
1491                             !DOINGASYNC(tdvp));
1492                         /* Don't go to bad here as the new link exists. */
1493                         if (error)
1494                                 goto unlockout;
1495                 } else if (DOINGSUJ(tdvp))
1496                         /* Journal must account for each new link. */
1497                         softdep_setup_dotdot_link(tdp, fip);
1498                 fip->i_offset = mastertemplate.dot_reclen;
1499                 ufs_dirrewrite(fip, fdp, newparent, DT_DIR, 0);
1500                 cache_purge(fdvp);
1501         }
1502         error = ufs_dirremove(fdvp, fip, fcnp->cn_flags, 0);
1503         /*
1504          * The kern_renameat() looks up the fvp using the DELETE flag, which
1505          * causes the removal of the name cache entry for fvp.
1506          * As the relookup of the fvp is done in two steps:
1507          * ufs_lookup_ino() and then VFS_VGET(), another thread might do a
1508          * normal lookup of the from name just before the VFS_VGET() call,
1509          * causing the cache entry to be re-instantiated.
1510          *
1511          * The same issue also applies to tvp if it exists as
1512          * otherwise we may have a stale name cache entry for the new
1513          * name that references the old i-node if it has other links
1514          * or open file descriptors.
1515          */
1516         cache_purge(fvp);
1517         if (tvp)
1518                 cache_purge(tvp);
1519         cache_purge_negative(tdvp);
1520
1521 unlockout:
1522         vput(fdvp);
1523         vput(fvp);
1524         if (tvp)
1525                 vput(tvp);
1526         /*
1527          * If compaction or fsync was requested do it now that other locks
1528          * are no longer needed.
1529          */
1530         if (error == 0 && endoff != 0) {
1531                 error = UFS_TRUNCATE(tdvp, endoff, IO_NORMAL |
1532                     (DOINGASYNC(tdvp) ? 0 : IO_SYNC), tcnp->cn_cred);
1533                 if (error != 0)
1534                         vn_printf(tdvp, "ufs_rename: failed to truncate "
1535                             "err %d", error);
1536 #ifdef UFS_DIRHASH
1537                 else if (tdp->i_dirhash != NULL)
1538                         ufsdirhash_dirtrunc(tdp, endoff);
1539 #endif
1540                 /*
1541                  * Even if the directory compaction failed, rename was
1542                  * succesful.  Do not propagate a UFS_TRUNCATE() error
1543                  * to the caller.
1544                  */
1545                 error = 0;
1546         }
1547         if (error == 0 && tdp->i_flag & IN_NEEDSYNC)
1548                 error = VOP_FSYNC(tdvp, MNT_WAIT, td);
1549         vput(tdvp);
1550         return (error);
1551
1552 bad:
1553         fip->i_effnlink--;
1554         fip->i_nlink--;
1555         DIP_SET(fip, i_nlink, fip->i_nlink);
1556         fip->i_flag |= IN_CHANGE;
1557         if (DOINGSOFTDEP(fvp))
1558                 softdep_revert_link(tdp, fip);
1559         goto unlockout;
1560
1561 releout:
1562         vrele(fdvp);
1563         vrele(fvp);
1564         vrele(tdvp);
1565         if (tvp)
1566                 vrele(tvp);
1567
1568         return (error);
1569 }
1570
1571 #ifdef UFS_ACL
1572 static int
1573 ufs_do_posix1e_acl_inheritance_dir(struct vnode *dvp, struct vnode *tvp,
1574     mode_t dmode, struct ucred *cred, struct thread *td)
1575 {
1576         int error;
1577         struct inode *ip = VTOI(tvp);
1578         struct acl *dacl, *acl;
1579
1580         acl = acl_alloc(M_WAITOK);
1581         dacl = acl_alloc(M_WAITOK);
1582
1583         /*
1584          * Retrieve default ACL from parent, if any.
1585          */
1586         error = VOP_GETACL(dvp, ACL_TYPE_DEFAULT, acl, cred, td);
1587         switch (error) {
1588         case 0:
1589                 /*
1590                  * Retrieved a default ACL, so merge mode and ACL if
1591                  * necessary.  If the ACL is empty, fall through to
1592                  * the "not defined or available" case.
1593                  */
1594                 if (acl->acl_cnt != 0) {
1595                         dmode = acl_posix1e_newfilemode(dmode, acl);
1596                         ip->i_mode = dmode;
1597                         DIP_SET(ip, i_mode, dmode);
1598                         *dacl = *acl;
1599                         ufs_sync_acl_from_inode(ip, acl);
1600                         break;
1601                 }
1602                 /* FALLTHROUGH */
1603
1604         case EOPNOTSUPP:
1605                 /*
1606                  * Just use the mode as-is.
1607                  */
1608                 ip->i_mode = dmode;
1609                 DIP_SET(ip, i_mode, dmode);
1610                 error = 0;
1611                 goto out;
1612         
1613         default:
1614                 goto out;
1615         }
1616
1617         /*
1618          * XXX: If we abort now, will Soft Updates notify the extattr
1619          * code that the EAs for the file need to be released?
1620          */
1621         error = VOP_SETACL(tvp, ACL_TYPE_ACCESS, acl, cred, td);
1622         if (error == 0)
1623                 error = VOP_SETACL(tvp, ACL_TYPE_DEFAULT, dacl, cred, td);
1624         switch (error) {
1625         case 0:
1626                 break;
1627
1628         case EOPNOTSUPP:
1629                 /*
1630                  * XXX: This should not happen, as EOPNOTSUPP above
1631                  * was supposed to free acl.
1632                  */
1633                 printf("ufs_mkdir: VOP_GETACL() but no VOP_SETACL()\n");
1634                 /*
1635                 panic("ufs_mkdir: VOP_GETACL() but no VOP_SETACL()");
1636                  */
1637                 break;
1638
1639         default:
1640                 goto out;
1641         }
1642
1643 out:
1644         acl_free(acl);
1645         acl_free(dacl);
1646
1647         return (error);
1648 }
1649
1650 static int
1651 ufs_do_posix1e_acl_inheritance_file(struct vnode *dvp, struct vnode *tvp,
1652     mode_t mode, struct ucred *cred, struct thread *td)
1653 {
1654         int error;
1655         struct inode *ip = VTOI(tvp);
1656         struct acl *acl;
1657
1658         acl = acl_alloc(M_WAITOK);
1659
1660         /*
1661          * Retrieve default ACL for parent, if any.
1662          */
1663         error = VOP_GETACL(dvp, ACL_TYPE_DEFAULT, acl, cred, td);
1664         switch (error) {
1665         case 0:
1666                 /*
1667                  * Retrieved a default ACL, so merge mode and ACL if
1668                  * necessary.
1669                  */
1670                 if (acl->acl_cnt != 0) {
1671                         /*
1672                          * Two possible ways for default ACL to not
1673                          * be present.  First, the EA can be
1674                          * undefined, or second, the default ACL can
1675                          * be blank.  If it's blank, fall through to
1676                          * the it's not defined case.
1677                          */
1678                         mode = acl_posix1e_newfilemode(mode, acl);
1679                         ip->i_mode = mode;
1680                         DIP_SET(ip, i_mode, mode);
1681                         ufs_sync_acl_from_inode(ip, acl);
1682                         break;
1683                 }
1684                 /* FALLTHROUGH */
1685
1686         case EOPNOTSUPP:
1687                 /*
1688                  * Just use the mode as-is.
1689                  */
1690                 ip->i_mode = mode;
1691                 DIP_SET(ip, i_mode, mode);
1692                 error = 0;
1693                 goto out;
1694
1695         default:
1696                 goto out;
1697         }
1698
1699         /*
1700          * XXX: If we abort now, will Soft Updates notify the extattr
1701          * code that the EAs for the file need to be released?
1702          */
1703         error = VOP_SETACL(tvp, ACL_TYPE_ACCESS, acl, cred, td);
1704         switch (error) {
1705         case 0:
1706                 break;
1707
1708         case EOPNOTSUPP:
1709                 /*
1710                  * XXX: This should not happen, as EOPNOTSUPP above was
1711                  * supposed to free acl.
1712                  */
1713                 printf("ufs_makeinode: VOP_GETACL() but no "
1714                     "VOP_SETACL()\n");
1715                 /* panic("ufs_makeinode: VOP_GETACL() but no "
1716                     "VOP_SETACL()"); */
1717                 break;
1718
1719         default:
1720                 goto out;
1721         }
1722
1723 out:
1724         acl_free(acl);
1725
1726         return (error);
1727 }
1728
1729 static int
1730 ufs_do_nfs4_acl_inheritance(struct vnode *dvp, struct vnode *tvp,
1731     mode_t child_mode, struct ucred *cred, struct thread *td)
1732 {
1733         int error;
1734         struct acl *parent_aclp, *child_aclp;
1735
1736         parent_aclp = acl_alloc(M_WAITOK);
1737         child_aclp = acl_alloc(M_WAITOK | M_ZERO);
1738
1739         error = ufs_getacl_nfs4_internal(dvp, parent_aclp, td);
1740         if (error)
1741                 goto out;
1742         acl_nfs4_compute_inherited_acl(parent_aclp, child_aclp,
1743             child_mode, VTOI(tvp)->i_uid, tvp->v_type == VDIR);
1744         error = ufs_setacl_nfs4_internal(tvp, child_aclp, td);
1745         if (error)
1746                 goto out;
1747 out:
1748         acl_free(parent_aclp);
1749         acl_free(child_aclp);
1750
1751         return (error);
1752 }
1753 #endif
1754
1755 /*
1756  * Mkdir system call
1757  */
1758 static int
1759 ufs_mkdir(ap)
1760         struct vop_mkdir_args /* {
1761                 struct vnode *a_dvp;
1762                 struct vnode **a_vpp;
1763                 struct componentname *a_cnp;
1764                 struct vattr *a_vap;
1765         } */ *ap;
1766 {
1767         struct vnode *dvp = ap->a_dvp;
1768         struct vattr *vap = ap->a_vap;
1769         struct componentname *cnp = ap->a_cnp;
1770         struct inode *ip, *dp;
1771         struct vnode *tvp;
1772         struct buf *bp;
1773         struct dirtemplate dirtemplate, *dtp;
1774         struct direct newdir;
1775         int error, dmode;
1776         long blkoff;
1777
1778 #ifdef INVARIANTS
1779         if ((cnp->cn_flags & HASBUF) == 0)
1780                 panic("ufs_mkdir: no name");
1781 #endif
1782         dp = VTOI(dvp);
1783         if ((nlink_t)dp->i_nlink >= LINK_MAX) {
1784                 error = EMLINK;
1785                 goto out;
1786         }
1787         dmode = vap->va_mode & 0777;
1788         dmode |= IFDIR;
1789         /*
1790          * Must simulate part of ufs_makeinode here to acquire the inode,
1791          * but not have it entered in the parent directory. The entry is
1792          * made later after writing "." and ".." entries.
1793          */
1794         error = UFS_VALLOC(dvp, dmode, cnp->cn_cred, &tvp);
1795         if (error)
1796                 goto out;
1797         ip = VTOI(tvp);
1798         ip->i_gid = dp->i_gid;
1799         DIP_SET(ip, i_gid, dp->i_gid);
1800 #ifdef SUIDDIR
1801         {
1802 #ifdef QUOTA
1803                 struct ucred ucred, *ucp;
1804                 gid_t ucred_group;
1805                 ucp = cnp->cn_cred;
1806 #endif
1807                 /*
1808                  * If we are hacking owners here, (only do this where told to)
1809                  * and we are not giving it TO root, (would subvert quotas)
1810                  * then go ahead and give it to the other user.
1811                  * The new directory also inherits the SUID bit.
1812                  * If user's UID and dir UID are the same,
1813                  * 'give it away' so that the SUID is still forced on.
1814                  */
1815                 if ((dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
1816                     (dp->i_mode & ISUID) && dp->i_uid) {
1817                         dmode |= ISUID;
1818                         ip->i_uid = dp->i_uid;
1819                         DIP_SET(ip, i_uid, dp->i_uid);
1820 #ifdef QUOTA
1821                         if (dp->i_uid != cnp->cn_cred->cr_uid) {
1822                                 /*
1823                                  * Make sure the correct user gets charged
1824                                  * for the space.
1825                                  * Make a dummy credential for the victim.
1826                                  * XXX This seems to never be accessed out of
1827                                  * our context so a stack variable is ok.
1828                                  */
1829                                 refcount_init(&ucred.cr_ref, 1);
1830                                 ucred.cr_uid = ip->i_uid;
1831                                 ucred.cr_ngroups = 1;
1832                                 ucred.cr_groups = &ucred_group;
1833                                 ucred.cr_groups[0] = dp->i_gid;
1834                                 ucp = &ucred;
1835                         }
1836 #endif
1837                 } else {
1838                         ip->i_uid = cnp->cn_cred->cr_uid;
1839                         DIP_SET(ip, i_uid, ip->i_uid);
1840                 }
1841 #ifdef QUOTA
1842                 if ((error = getinoquota(ip)) ||
1843                     (error = chkiq(ip, 1, ucp, 0))) {
1844                         if (DOINGSOFTDEP(tvp))
1845                                 softdep_revert_link(dp, ip);
1846                         UFS_VFREE(tvp, ip->i_number, dmode);
1847                         vput(tvp);
1848                         return (error);
1849                 }
1850 #endif
1851         }
1852 #else   /* !SUIDDIR */
1853         ip->i_uid = cnp->cn_cred->cr_uid;
1854         DIP_SET(ip, i_uid, ip->i_uid);
1855 #ifdef QUOTA
1856         if ((error = getinoquota(ip)) ||
1857             (error = chkiq(ip, 1, cnp->cn_cred, 0))) {
1858                 if (DOINGSOFTDEP(tvp))
1859                         softdep_revert_link(dp, ip);
1860                 UFS_VFREE(tvp, ip->i_number, dmode);
1861                 vput(tvp);
1862                 return (error);
1863         }
1864 #endif
1865 #endif  /* !SUIDDIR */
1866         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
1867         ip->i_mode = dmode;
1868         DIP_SET(ip, i_mode, dmode);
1869         tvp->v_type = VDIR;     /* Rest init'd in getnewvnode(). */
1870         ip->i_effnlink = 2;
1871         ip->i_nlink = 2;
1872         DIP_SET(ip, i_nlink, 2);
1873
1874         if (cnp->cn_flags & ISWHITEOUT) {
1875                 ip->i_flags |= UF_OPAQUE;
1876                 DIP_SET(ip, i_flags, ip->i_flags);
1877         }
1878
1879         /*
1880          * Bump link count in parent directory to reflect work done below.
1881          * Should be done before reference is created so cleanup is
1882          * possible if we crash.
1883          */
1884         dp->i_effnlink++;
1885         dp->i_nlink++;
1886         DIP_SET(dp, i_nlink, dp->i_nlink);
1887         dp->i_flag |= IN_CHANGE;
1888         if (DOINGSOFTDEP(dvp))
1889                 softdep_setup_mkdir(dp, ip);
1890         error = UFS_UPDATE(dvp, !DOINGSOFTDEP(dvp) && !DOINGASYNC(dvp));
1891         if (error)
1892                 goto bad;
1893 #ifdef MAC
1894         if (dvp->v_mount->mnt_flag & MNT_MULTILABEL) {
1895                 error = mac_vnode_create_extattr(cnp->cn_cred, dvp->v_mount,
1896                     dvp, tvp, cnp);
1897                 if (error)
1898                         goto bad;
1899         }
1900 #endif
1901 #ifdef UFS_ACL
1902         if (dvp->v_mount->mnt_flag & MNT_ACLS) {
1903                 error = ufs_do_posix1e_acl_inheritance_dir(dvp, tvp, dmode,
1904                     cnp->cn_cred, cnp->cn_thread);
1905                 if (error)
1906                         goto bad;
1907         } else if (dvp->v_mount->mnt_flag & MNT_NFS4ACLS) {
1908                 error = ufs_do_nfs4_acl_inheritance(dvp, tvp, dmode,
1909                     cnp->cn_cred, cnp->cn_thread);
1910                 if (error)
1911                         goto bad;
1912         }
1913 #endif /* !UFS_ACL */
1914
1915         /*
1916          * Initialize directory with "." and ".." from static template.
1917          */
1918         if (dvp->v_mount->mnt_maxsymlinklen > 0)
1919                 dtp = &mastertemplate;
1920         else
1921                 dtp = (struct dirtemplate *)&omastertemplate;
1922         dirtemplate = *dtp;
1923         dirtemplate.dot_ino = ip->i_number;
1924         dirtemplate.dotdot_ino = dp->i_number;
1925         vnode_pager_setsize(tvp, DIRBLKSIZ);
1926         if ((error = UFS_BALLOC(tvp, (off_t)0, DIRBLKSIZ, cnp->cn_cred,
1927             BA_CLRBUF, &bp)) != 0)
1928                 goto bad;
1929         ip->i_size = DIRBLKSIZ;
1930         DIP_SET(ip, i_size, DIRBLKSIZ);
1931         ip->i_flag |= IN_CHANGE | IN_UPDATE;
1932         bcopy((caddr_t)&dirtemplate, (caddr_t)bp->b_data, sizeof dirtemplate);
1933         if (DOINGSOFTDEP(tvp)) {
1934                 /*
1935                  * Ensure that the entire newly allocated block is a
1936                  * valid directory so that future growth within the
1937                  * block does not have to ensure that the block is
1938                  * written before the inode.
1939                  */
1940                 blkoff = DIRBLKSIZ;
1941                 while (blkoff < bp->b_bcount) {
1942                         ((struct direct *)
1943                            (bp->b_data + blkoff))->d_reclen = DIRBLKSIZ;
1944                         blkoff += DIRBLKSIZ;
1945                 }
1946         }
1947         if ((error = UFS_UPDATE(tvp, !DOINGSOFTDEP(tvp) &&
1948             !DOINGASYNC(tvp))) != 0) {
1949                 (void)bwrite(bp);
1950                 goto bad;
1951         }
1952         /*
1953          * Directory set up, now install its entry in the parent directory.
1954          *
1955          * If we are not doing soft dependencies, then we must write out the
1956          * buffer containing the new directory body before entering the new 
1957          * name in the parent. If we are doing soft dependencies, then the
1958          * buffer containing the new directory body will be passed to and
1959          * released in the soft dependency code after the code has attached
1960          * an appropriate ordering dependency to the buffer which ensures that
1961          * the buffer is written before the new name is written in the parent.
1962          */
1963         if (DOINGASYNC(dvp))
1964                 bdwrite(bp);
1965         else if (!DOINGSOFTDEP(dvp) && ((error = bwrite(bp))))
1966                 goto bad;
1967         ufs_makedirentry(ip, cnp, &newdir);
1968         error = ufs_direnter(dvp, tvp, &newdir, cnp, bp, 0);
1969         
1970 bad:
1971         if (error == 0) {
1972                 *ap->a_vpp = tvp;
1973         } else {
1974                 dp->i_effnlink--;
1975                 dp->i_nlink--;
1976                 DIP_SET(dp, i_nlink, dp->i_nlink);
1977                 dp->i_flag |= IN_CHANGE;
1978                 /*
1979                  * No need to do an explicit VOP_TRUNCATE here, vrele will
1980                  * do this for us because we set the link count to 0.
1981                  */
1982                 ip->i_effnlink = 0;
1983                 ip->i_nlink = 0;
1984                 DIP_SET(ip, i_nlink, 0);
1985                 ip->i_flag |= IN_CHANGE;
1986                 if (DOINGSOFTDEP(tvp))
1987                         softdep_revert_mkdir(dp, ip);
1988
1989                 vput(tvp);
1990         }
1991 out:
1992         return (error);
1993 }
1994
1995 /*
1996  * Rmdir system call.
1997  */
1998 static int
1999 ufs_rmdir(ap)
2000         struct vop_rmdir_args /* {
2001                 struct vnode *a_dvp;
2002                 struct vnode *a_vp;
2003                 struct componentname *a_cnp;
2004         } */ *ap;
2005 {
2006         struct vnode *vp = ap->a_vp;
2007         struct vnode *dvp = ap->a_dvp;
2008         struct componentname *cnp = ap->a_cnp;
2009         struct inode *ip, *dp;
2010         int error;
2011
2012         ip = VTOI(vp);
2013         dp = VTOI(dvp);
2014
2015         /*
2016          * Do not remove a directory that is in the process of being renamed.
2017          * Verify the directory is empty (and valid). Rmdir ".." will not be
2018          * valid since ".." will contain a reference to the current directory
2019          * and thus be non-empty. Do not allow the removal of mounted on
2020          * directories (this can happen when an NFS exported filesystem
2021          * tries to remove a locally mounted on directory).
2022          */
2023         error = 0;
2024         if (ip->i_effnlink < 2) {
2025                 error = EINVAL;
2026                 goto out;
2027         }
2028         if (dp->i_effnlink < 3)
2029                 panic("ufs_dirrem: Bad link count %d on parent",
2030                     dp->i_effnlink);
2031         if (!ufs_dirempty(ip, dp->i_number, cnp->cn_cred)) {
2032                 error = ENOTEMPTY;
2033                 goto out;
2034         }
2035         if ((dp->i_flags & APPEND)
2036             || (ip->i_flags & (NOUNLINK | IMMUTABLE | APPEND))) {
2037                 error = EPERM;
2038                 goto out;
2039         }
2040         if (vp->v_mountedhere != 0) {
2041                 error = EINVAL;
2042                 goto out;
2043         }
2044 #ifdef UFS_GJOURNAL
2045         ufs_gjournal_orphan(vp);
2046 #endif
2047         /*
2048          * Delete reference to directory before purging
2049          * inode.  If we crash in between, the directory
2050          * will be reattached to lost+found,
2051          */
2052         dp->i_effnlink--;
2053         ip->i_effnlink--;
2054         if (DOINGSOFTDEP(vp))
2055                 softdep_setup_rmdir(dp, ip);
2056         error = ufs_dirremove(dvp, ip, cnp->cn_flags, 1);
2057         if (error) {
2058                 dp->i_effnlink++;
2059                 ip->i_effnlink++;
2060                 if (DOINGSOFTDEP(vp))
2061                         softdep_revert_rmdir(dp, ip);
2062                 goto out;
2063         }
2064         cache_purge(dvp);
2065         /*
2066          * The only stuff left in the directory is "." and "..". The "."
2067          * reference is inconsequential since we are quashing it. The soft
2068          * dependency code will arrange to do these operations after
2069          * the parent directory entry has been deleted on disk, so
2070          * when running with that code we avoid doing them now.
2071          */
2072         if (!DOINGSOFTDEP(vp)) {
2073                 dp->i_nlink--;
2074                 DIP_SET(dp, i_nlink, dp->i_nlink);
2075                 dp->i_flag |= IN_CHANGE;
2076                 error = UFS_UPDATE(dvp, 0);
2077                 ip->i_nlink--;
2078                 DIP_SET(ip, i_nlink, ip->i_nlink);
2079                 ip->i_flag |= IN_CHANGE;
2080         }
2081         cache_purge(vp);
2082 #ifdef UFS_DIRHASH
2083         /* Kill any active hash; i_effnlink == 0, so it will not come back. */
2084         if (ip->i_dirhash != NULL)
2085                 ufsdirhash_free(ip);
2086 #endif
2087 out:
2088         return (error);
2089 }
2090
2091 /*
2092  * symlink -- make a symbolic link
2093  */
2094 static int
2095 ufs_symlink(ap)
2096         struct vop_symlink_args /* {
2097                 struct vnode *a_dvp;
2098                 struct vnode **a_vpp;
2099                 struct componentname *a_cnp;
2100                 struct vattr *a_vap;
2101                 char *a_target;
2102         } */ *ap;
2103 {
2104         struct vnode *vp, **vpp = ap->a_vpp;
2105         struct inode *ip;
2106         int len, error;
2107
2108         error = ufs_makeinode(IFLNK | ap->a_vap->va_mode, ap->a_dvp,
2109             vpp, ap->a_cnp);
2110         if (error)
2111                 return (error);
2112         vp = *vpp;
2113         len = strlen(ap->a_target);
2114         if (len < vp->v_mount->mnt_maxsymlinklen) {
2115                 ip = VTOI(vp);
2116                 bcopy(ap->a_target, SHORTLINK(ip), len);
2117                 ip->i_size = len;
2118                 DIP_SET(ip, i_size, len);
2119                 ip->i_flag |= IN_CHANGE | IN_UPDATE;
2120                 error = UFS_UPDATE(vp, 0);
2121         } else
2122                 error = vn_rdwr(UIO_WRITE, vp, ap->a_target, len, (off_t)0,
2123                     UIO_SYSSPACE, IO_NODELOCKED | IO_NOMACCHECK,
2124                     ap->a_cnp->cn_cred, NOCRED, NULL, NULL);
2125         if (error)
2126                 vput(vp);
2127         return (error);
2128 }
2129
2130 /*
2131  * Vnode op for reading directories.
2132  */
2133 int
2134 ufs_readdir(ap)
2135         struct vop_readdir_args /* {
2136                 struct vnode *a_vp;
2137                 struct uio *a_uio;
2138                 struct ucred *a_cred;
2139                 int *a_eofflag;
2140                 int *a_ncookies;
2141                 u_long **a_cookies;
2142         } */ *ap;
2143 {
2144         struct vnode *vp = ap->a_vp;
2145         struct uio *uio = ap->a_uio;
2146         struct buf *bp;
2147         struct inode *ip;
2148         struct direct *dp, *edp;
2149         u_long *cookies;
2150         struct dirent dstdp;
2151         off_t offset, startoffset;
2152         size_t readcnt, skipcnt;
2153         ssize_t startresid;
2154         int ncookies;
2155         int error;
2156
2157         if (uio->uio_offset < 0)
2158                 return (EINVAL);
2159         ip = VTOI(vp);
2160         if (ip->i_effnlink == 0)
2161                 return (0);
2162         if (ap->a_ncookies != NULL) {
2163                 ncookies = uio->uio_resid;
2164                 if (uio->uio_offset >= ip->i_size)
2165                         ncookies = 0;
2166                 else if (ip->i_size - uio->uio_offset < ncookies)
2167                         ncookies = ip->i_size - uio->uio_offset;
2168                 ncookies = ncookies / (offsetof(struct direct, d_name) + 4) + 1;
2169                 cookies = malloc(ncookies * sizeof(*cookies), M_TEMP, M_WAITOK);
2170                 *ap->a_ncookies = ncookies;
2171                 *ap->a_cookies = cookies;
2172         } else {
2173                 ncookies = 0;
2174                 cookies = NULL;
2175         }
2176         offset = startoffset = uio->uio_offset;
2177         startresid = uio->uio_resid;
2178         error = 0;
2179         while (error == 0 && uio->uio_resid > 0 &&
2180             uio->uio_offset < ip->i_size) {
2181                 error = ffs_blkatoff(vp, uio->uio_offset, NULL, &bp);
2182                 if (error)
2183                         break;
2184                 if (bp->b_offset + bp->b_bcount > ip->i_size)
2185                         readcnt = ip->i_size - bp->b_offset;
2186                 else
2187                         readcnt = bp->b_bcount;
2188                 skipcnt = (size_t)(uio->uio_offset - bp->b_offset) &
2189                     ~(size_t)(DIRBLKSIZ - 1);
2190                 offset = bp->b_offset + skipcnt;
2191                 dp = (struct direct *)&bp->b_data[skipcnt];
2192                 edp = (struct direct *)&bp->b_data[readcnt];
2193                 while (error == 0 && uio->uio_resid > 0 && dp < edp) {
2194                         if (dp->d_reclen <= offsetof(struct direct, d_name) ||
2195                             (caddr_t)dp + dp->d_reclen > (caddr_t)edp) {
2196                                 error = EIO;
2197                                 break;
2198                         }
2199 #if BYTE_ORDER == LITTLE_ENDIAN
2200                         /* Old filesystem format. */
2201                         if (vp->v_mount->mnt_maxsymlinklen <= 0) {
2202                                 dstdp.d_namlen = dp->d_type;
2203                                 dstdp.d_type = dp->d_namlen;
2204                         } else
2205 #endif
2206                         {
2207                                 dstdp.d_namlen = dp->d_namlen;
2208                                 dstdp.d_type = dp->d_type;
2209                         }
2210                         if (offsetof(struct direct, d_name) + dstdp.d_namlen >
2211                             dp->d_reclen) {
2212                                 error = EIO;
2213                                 break;
2214                         }
2215                         if (offset < startoffset || dp->d_ino == 0)
2216                                 goto nextentry;
2217                         dstdp.d_fileno = dp->d_ino;
2218                         dstdp.d_reclen = GENERIC_DIRSIZ(&dstdp);
2219                         bcopy(dp->d_name, dstdp.d_name, dstdp.d_namlen);
2220                         dstdp.d_name[dstdp.d_namlen] = '\0';
2221                         if (dstdp.d_reclen > uio->uio_resid) {
2222                                 if (uio->uio_resid == startresid)
2223                                         error = EINVAL;
2224                                 else
2225                                         error = EJUSTRETURN;
2226                                 break;
2227                         }
2228                         /* Advance dp. */
2229                         error = uiomove((caddr_t)&dstdp, dstdp.d_reclen, uio);
2230                         if (error)
2231                                 break;
2232                         if (cookies != NULL) {
2233                                 KASSERT(ncookies > 0,
2234                                     ("ufs_readdir: cookies buffer too small"));
2235                                 *cookies = offset + dp->d_reclen;
2236                                 cookies++;
2237                                 ncookies--;
2238                         }
2239 nextentry:
2240                         offset += dp->d_reclen;
2241                         dp = (struct direct *)((caddr_t)dp + dp->d_reclen);
2242                 }
2243                 bqrelse(bp);
2244                 uio->uio_offset = offset;
2245         }
2246         /* We need to correct uio_offset. */
2247         uio->uio_offset = offset;
2248         if (error == EJUSTRETURN)
2249                 error = 0;
2250         if (ap->a_ncookies != NULL) {
2251                 if (error == 0) {
2252                         ap->a_ncookies -= ncookies;
2253                 } else {
2254                         free(*ap->a_cookies, M_TEMP);
2255                         *ap->a_ncookies = 0;
2256                         *ap->a_cookies = NULL;
2257                 }
2258         }
2259         if (error == 0 && ap->a_eofflag)
2260                 *ap->a_eofflag = ip->i_size <= uio->uio_offset;
2261         return (error);
2262 }
2263
2264 /*
2265  * Return target name of a symbolic link
2266  */
2267 static int
2268 ufs_readlink(ap)
2269         struct vop_readlink_args /* {
2270                 struct vnode *a_vp;
2271                 struct uio *a_uio;
2272                 struct ucred *a_cred;
2273         } */ *ap;
2274 {
2275         struct vnode *vp = ap->a_vp;
2276         struct inode *ip = VTOI(vp);
2277         doff_t isize;
2278
2279         isize = ip->i_size;
2280         if ((isize < vp->v_mount->mnt_maxsymlinklen) ||
2281             DIP(ip, i_blocks) == 0) { /* XXX - for old fastlink support */
2282                 return (uiomove(SHORTLINK(ip), isize, ap->a_uio));
2283         }
2284         return (VOP_READ(vp, ap->a_uio, 0, ap->a_cred));
2285 }
2286
2287 /*
2288  * Calculate the logical to physical mapping if not done already,
2289  * then call the device strategy routine.
2290  *
2291  * In order to be able to swap to a file, the ufs_bmaparray() operation may not
2292  * deadlock on memory.  See ufs_bmap() for details.
2293  */
2294 static int
2295 ufs_strategy(ap)
2296         struct vop_strategy_args /* {
2297                 struct vnode *a_vp;
2298                 struct buf *a_bp;
2299         } */ *ap;
2300 {
2301         struct buf *bp = ap->a_bp;
2302         struct vnode *vp = ap->a_vp;
2303         ufs2_daddr_t blkno;
2304         int error;
2305
2306         if (bp->b_blkno == bp->b_lblkno) {
2307                 error = ufs_bmaparray(vp, bp->b_lblkno, &blkno, bp, NULL, NULL);
2308                 bp->b_blkno = blkno;
2309                 if (error) {
2310                         bp->b_error = error;
2311                         bp->b_ioflags |= BIO_ERROR;
2312                         bufdone(bp);
2313                         return (0);
2314                 }
2315                 if ((long)bp->b_blkno == -1)
2316                         vfs_bio_clrbuf(bp);
2317         }
2318         if ((long)bp->b_blkno == -1) {
2319                 bufdone(bp);
2320                 return (0);
2321         }
2322         bp->b_iooffset = dbtob(bp->b_blkno);
2323         BO_STRATEGY(VFSTOUFS(vp->v_mount)->um_bo, bp);
2324         return (0);
2325 }
2326
2327 /*
2328  * Print out the contents of an inode.
2329  */
2330 static int
2331 ufs_print(ap)
2332         struct vop_print_args /* {
2333                 struct vnode *a_vp;
2334         } */ *ap;
2335 {
2336         struct vnode *vp = ap->a_vp;
2337         struct inode *ip = VTOI(vp);
2338
2339         printf("\tino %lu, on dev %s", (u_long)ip->i_number,
2340             devtoname(ITODEV(ip)));
2341         if (vp->v_type == VFIFO)
2342                 fifo_printinfo(vp);
2343         printf("\n");
2344         return (0);
2345 }
2346
2347 /*
2348  * Close wrapper for fifos.
2349  *
2350  * Update the times on the inode then do device close.
2351  */
2352 static int
2353 ufsfifo_close(ap)
2354         struct vop_close_args /* {
2355                 struct vnode *a_vp;
2356                 int  a_fflag;
2357                 struct ucred *a_cred;
2358                 struct thread *a_td;
2359         } */ *ap;
2360 {
2361         struct vnode *vp = ap->a_vp;
2362         int usecount;
2363
2364         VI_LOCK(vp);
2365         usecount = vp->v_usecount;
2366         if (usecount > 1)
2367                 ufs_itimes_locked(vp);
2368         VI_UNLOCK(vp);
2369         return (fifo_specops.vop_close(ap));
2370 }
2371
2372 /*
2373  * Kqfilter wrapper for fifos.
2374  *
2375  * Fall through to ufs kqfilter routines if needed 
2376  */
2377 static int
2378 ufsfifo_kqfilter(ap)
2379         struct vop_kqfilter_args *ap;
2380 {
2381         int error;
2382
2383         error = fifo_specops.vop_kqfilter(ap);
2384         if (error)
2385                 error = vfs_kqfilter(ap);
2386         return (error);
2387 }
2388
2389 /*
2390  * Return POSIX pathconf information applicable to fifos.
2391  */
2392 static int
2393 ufsfifo_pathconf(ap)
2394         struct vop_pathconf_args /* {
2395                 struct vnode *a_vp;
2396                 int a_name;
2397                 int *a_retval;
2398         } */ *ap;
2399 {
2400
2401         switch (ap->a_name) {
2402         case _PC_ACL_EXTENDED:
2403         case _PC_ACL_NFS4:
2404         case _PC_ACL_PATH_MAX:
2405         case _PC_MAC_PRESENT:
2406                 return (ufs_pathconf(ap));
2407         default:
2408                 return (fifo_specops.vop_pathconf(ap));
2409         }
2410         /* NOTREACHED */
2411 }
2412
2413 /*
2414  * Return POSIX pathconf information applicable to ufs filesystems.
2415  */
2416 static int
2417 ufs_pathconf(ap)
2418         struct vop_pathconf_args /* {
2419                 struct vnode *a_vp;
2420                 int a_name;
2421                 int *a_retval;
2422         } */ *ap;
2423 {
2424         int error;
2425
2426         error = 0;
2427         switch (ap->a_name) {
2428         case _PC_LINK_MAX:
2429                 *ap->a_retval = LINK_MAX;
2430                 break;
2431         case _PC_NAME_MAX:
2432                 *ap->a_retval = NAME_MAX;
2433                 break;
2434         case _PC_PATH_MAX:
2435                 *ap->a_retval = PATH_MAX;
2436                 break;
2437         case _PC_PIPE_BUF:
2438                 *ap->a_retval = PIPE_BUF;
2439                 break;
2440         case _PC_CHOWN_RESTRICTED:
2441                 *ap->a_retval = 1;
2442                 break;
2443         case _PC_NO_TRUNC:
2444                 *ap->a_retval = 1;
2445                 break;
2446         case _PC_ACL_EXTENDED:
2447 #ifdef UFS_ACL
2448                 if (ap->a_vp->v_mount->mnt_flag & MNT_ACLS)
2449                         *ap->a_retval = 1;
2450                 else
2451                         *ap->a_retval = 0;
2452 #else
2453                 *ap->a_retval = 0;
2454 #endif
2455                 break;
2456
2457         case _PC_ACL_NFS4:
2458 #ifdef UFS_ACL
2459                 if (ap->a_vp->v_mount->mnt_flag & MNT_NFS4ACLS)
2460                         *ap->a_retval = 1;
2461                 else
2462                         *ap->a_retval = 0;
2463 #else
2464                 *ap->a_retval = 0;
2465 #endif
2466                 break;
2467
2468         case _PC_ACL_PATH_MAX:
2469 #ifdef UFS_ACL
2470                 if (ap->a_vp->v_mount->mnt_flag & (MNT_ACLS | MNT_NFS4ACLS))
2471                         *ap->a_retval = ACL_MAX_ENTRIES;
2472                 else
2473                         *ap->a_retval = 3;
2474 #else
2475                 *ap->a_retval = 3;
2476 #endif
2477                 break;
2478         case _PC_MAC_PRESENT:
2479 #ifdef MAC
2480                 if (ap->a_vp->v_mount->mnt_flag & MNT_MULTILABEL)
2481                         *ap->a_retval = 1;
2482                 else
2483                         *ap->a_retval = 0;
2484 #else
2485                 *ap->a_retval = 0;
2486 #endif
2487                 break;
2488         case _PC_MIN_HOLE_SIZE:
2489                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_iosize;
2490                 break;
2491         case _PC_ASYNC_IO:
2492                 /* _PC_ASYNC_IO should have been handled by upper layers. */
2493                 KASSERT(0, ("_PC_ASYNC_IO should not get here"));
2494                 error = EINVAL;
2495                 break;
2496         case _PC_PRIO_IO:
2497                 *ap->a_retval = 0;
2498                 break;
2499         case _PC_SYNC_IO:
2500                 *ap->a_retval = 0;
2501                 break;
2502         case _PC_ALLOC_SIZE_MIN:
2503                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_bsize;
2504                 break;
2505         case _PC_FILESIZEBITS:
2506                 *ap->a_retval = 64;
2507                 break;
2508         case _PC_REC_INCR_XFER_SIZE:
2509                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_iosize;
2510                 break;
2511         case _PC_REC_MAX_XFER_SIZE:
2512                 *ap->a_retval = -1; /* means ``unlimited'' */
2513                 break;
2514         case _PC_REC_MIN_XFER_SIZE:
2515                 *ap->a_retval = ap->a_vp->v_mount->mnt_stat.f_iosize;
2516                 break;
2517         case _PC_REC_XFER_ALIGN:
2518                 *ap->a_retval = PAGE_SIZE;
2519                 break;
2520         case _PC_SYMLINK_MAX:
2521                 *ap->a_retval = MAXPATHLEN;
2522                 break;
2523
2524         default:
2525                 error = EINVAL;
2526                 break;
2527         }
2528         return (error);
2529 }
2530
2531 /*
2532  * Initialize the vnode associated with a new inode, handle aliased
2533  * vnodes.
2534  */
2535 int
2536 ufs_vinit(mntp, fifoops, vpp)
2537         struct mount *mntp;
2538         struct vop_vector *fifoops;
2539         struct vnode **vpp;
2540 {
2541         struct inode *ip;
2542         struct vnode *vp;
2543
2544         vp = *vpp;
2545         ip = VTOI(vp);
2546         vp->v_type = IFTOVT(ip->i_mode);
2547         if (vp->v_type == VFIFO)
2548                 vp->v_op = fifoops;
2549         ASSERT_VOP_LOCKED(vp, "ufs_vinit");
2550         if (ip->i_number == ROOTINO)
2551                 vp->v_vflag |= VV_ROOT;
2552         *vpp = vp;
2553         return (0);
2554 }
2555
2556 /*
2557  * Allocate a new inode.
2558  * Vnode dvp must be locked.
2559  */
2560 static int
2561 ufs_makeinode(mode, dvp, vpp, cnp)
2562         int mode;
2563         struct vnode *dvp;
2564         struct vnode **vpp;
2565         struct componentname *cnp;
2566 {
2567         struct inode *ip, *pdir;
2568         struct direct newdir;
2569         struct vnode *tvp;
2570         int error;
2571
2572         pdir = VTOI(dvp);
2573 #ifdef INVARIANTS
2574         if ((cnp->cn_flags & HASBUF) == 0)
2575                 panic("ufs_makeinode: no name");
2576 #endif
2577         *vpp = NULL;
2578         if ((mode & IFMT) == 0)
2579                 mode |= IFREG;
2580
2581         if (VTOI(dvp)->i_effnlink < 2)
2582                 panic("ufs_makeinode: Bad link count %d on parent",
2583                     VTOI(dvp)->i_effnlink);
2584         error = UFS_VALLOC(dvp, mode, cnp->cn_cred, &tvp);
2585         if (error)
2586                 return (error);
2587         ip = VTOI(tvp);
2588         ip->i_gid = pdir->i_gid;
2589         DIP_SET(ip, i_gid, pdir->i_gid);
2590 #ifdef SUIDDIR
2591         {
2592 #ifdef QUOTA
2593                 struct ucred ucred, *ucp;
2594                 gid_t ucred_group;
2595                 ucp = cnp->cn_cred;
2596 #endif
2597                 /*
2598                  * If we are not the owner of the directory,
2599                  * and we are hacking owners here, (only do this where told to)
2600                  * and we are not giving it TO root, (would subvert quotas)
2601                  * then go ahead and give it to the other user.
2602                  * Note that this drops off the execute bits for security.
2603                  */
2604                 if ((dvp->v_mount->mnt_flag & MNT_SUIDDIR) &&
2605                     (pdir->i_mode & ISUID) &&
2606                     (pdir->i_uid != cnp->cn_cred->cr_uid) && pdir->i_uid) {
2607                         ip->i_uid = pdir->i_uid;
2608                         DIP_SET(ip, i_uid, ip->i_uid);
2609                         mode &= ~07111;
2610 #ifdef QUOTA
2611                         /*
2612                          * Make sure the correct user gets charged
2613                          * for the space.
2614                          * Quickly knock up a dummy credential for the victim.
2615                          * XXX This seems to never be accessed out of our
2616                          * context so a stack variable is ok.
2617                          */
2618                         refcount_init(&ucred.cr_ref, 1);
2619                         ucred.cr_uid = ip->i_uid;
2620                         ucred.cr_ngroups = 1;
2621                         ucred.cr_groups = &ucred_group;
2622                         ucred.cr_groups[0] = pdir->i_gid;
2623                         ucp = &ucred;
2624 #endif
2625                 } else {
2626                         ip->i_uid = cnp->cn_cred->cr_uid;
2627                         DIP_SET(ip, i_uid, ip->i_uid);
2628                 }
2629
2630 #ifdef QUOTA
2631                 if ((error = getinoquota(ip)) ||
2632                     (error = chkiq(ip, 1, ucp, 0))) {
2633                         if (DOINGSOFTDEP(tvp))
2634                                 softdep_revert_link(pdir, ip);
2635                         UFS_VFREE(tvp, ip->i_number, mode);
2636                         vput(tvp);
2637                         return (error);
2638                 }
2639 #endif
2640         }
2641 #else   /* !SUIDDIR */
2642         ip->i_uid = cnp->cn_cred->cr_uid;
2643         DIP_SET(ip, i_uid, ip->i_uid);
2644 #ifdef QUOTA
2645         if ((error = getinoquota(ip)) ||
2646             (error = chkiq(ip, 1, cnp->cn_cred, 0))) {
2647                 if (DOINGSOFTDEP(tvp))
2648                         softdep_revert_link(pdir, ip);
2649                 UFS_VFREE(tvp, ip->i_number, mode);
2650                 vput(tvp);
2651                 return (error);
2652         }
2653 #endif
2654 #endif  /* !SUIDDIR */
2655         ip->i_flag |= IN_ACCESS | IN_CHANGE | IN_UPDATE;
2656         ip->i_mode = mode;
2657         DIP_SET(ip, i_mode, mode);
2658         tvp->v_type = IFTOVT(mode);     /* Rest init'd in getnewvnode(). */
2659         ip->i_effnlink = 1;
2660         ip->i_nlink = 1;
2661         DIP_SET(ip, i_nlink, 1);
2662         if (DOINGSOFTDEP(tvp))
2663                 softdep_setup_create(VTOI(dvp), ip);
2664         if ((ip->i_mode & ISGID) && !groupmember(ip->i_gid, cnp->cn_cred) &&
2665             priv_check_cred(cnp->cn_cred, PRIV_VFS_SETGID, 0)) {
2666                 ip->i_mode &= ~ISGID;
2667                 DIP_SET(ip, i_mode, ip->i_mode);
2668         }
2669
2670         if (cnp->cn_flags & ISWHITEOUT) {
2671                 ip->i_flags |= UF_OPAQUE;
2672                 DIP_SET(ip, i_flags, ip->i_flags);
2673         }
2674
2675         /*
2676          * Make sure inode goes to disk before directory entry.
2677          */
2678         error = UFS_UPDATE(tvp, !DOINGSOFTDEP(tvp) && !DOINGASYNC(tvp));
2679         if (error)
2680                 goto bad;
2681 #ifdef MAC
2682         if (dvp->v_mount->mnt_flag & MNT_MULTILABEL) {
2683                 error = mac_vnode_create_extattr(cnp->cn_cred, dvp->v_mount,
2684                     dvp, tvp, cnp);
2685                 if (error)
2686                         goto bad;
2687         }
2688 #endif
2689 #ifdef UFS_ACL
2690         if (dvp->v_mount->mnt_flag & MNT_ACLS) {
2691                 error = ufs_do_posix1e_acl_inheritance_file(dvp, tvp, mode,
2692                     cnp->cn_cred, cnp->cn_thread);
2693                 if (error)
2694                         goto bad;
2695         } else if (dvp->v_mount->mnt_flag & MNT_NFS4ACLS) {
2696                 error = ufs_do_nfs4_acl_inheritance(dvp, tvp, mode,
2697                     cnp->cn_cred, cnp->cn_thread);
2698                 if (error)
2699                         goto bad;
2700         }
2701 #endif /* !UFS_ACL */
2702         ufs_makedirentry(ip, cnp, &newdir);
2703         error = ufs_direnter(dvp, tvp, &newdir, cnp, NULL, 0);
2704         if (error)
2705                 goto bad;
2706         *vpp = tvp;
2707         return (0);
2708
2709 bad:
2710         /*
2711          * Write error occurred trying to update the inode
2712          * or the directory so must deallocate the inode.
2713          */
2714         ip->i_effnlink = 0;
2715         ip->i_nlink = 0;
2716         DIP_SET(ip, i_nlink, 0);
2717         ip->i_flag |= IN_CHANGE;
2718         if (DOINGSOFTDEP(tvp))
2719                 softdep_revert_create(VTOI(dvp), ip);
2720         vput(tvp);
2721         return (error);
2722 }
2723
2724 static int
2725 ufs_ioctl(struct vop_ioctl_args *ap)
2726 {
2727
2728         switch (ap->a_command) {
2729         case FIOSEEKDATA:
2730         case FIOSEEKHOLE:
2731                 return (vn_bmap_seekhole(ap->a_vp, ap->a_command,
2732                     (off_t *)ap->a_data, ap->a_cred));
2733         default:
2734                 return (ENOTTY);
2735         }
2736 }
2737
2738 /* Global vfs data structures for ufs. */
2739 struct vop_vector ufs_vnodeops = {
2740         .vop_default =          &default_vnodeops,
2741         .vop_fsync =            VOP_PANIC,
2742         .vop_read =             VOP_PANIC,
2743         .vop_reallocblks =      VOP_PANIC,
2744         .vop_write =            VOP_PANIC,
2745         .vop_accessx =          ufs_accessx,
2746         .vop_bmap =             ufs_bmap,
2747         .vop_cachedlookup =     ufs_lookup,
2748         .vop_close =            ufs_close,
2749         .vop_create =           ufs_create,
2750         .vop_getattr =          ufs_getattr,
2751         .vop_inactive =         ufs_inactive,
2752         .vop_ioctl =            ufs_ioctl,
2753         .vop_link =             ufs_link,
2754         .vop_lookup =           vfs_cache_lookup,
2755         .vop_markatime =        ufs_markatime,
2756         .vop_mkdir =            ufs_mkdir,
2757         .vop_mknod =            ufs_mknod,
2758         .vop_open =             ufs_open,
2759         .vop_pathconf =         ufs_pathconf,
2760         .vop_poll =             vop_stdpoll,
2761         .vop_print =            ufs_print,
2762         .vop_readdir =          ufs_readdir,
2763         .vop_readlink =         ufs_readlink,
2764         .vop_reclaim =          ufs_reclaim,
2765         .vop_remove =           ufs_remove,
2766         .vop_rename =           ufs_rename,
2767         .vop_rmdir =            ufs_rmdir,
2768         .vop_setattr =          ufs_setattr,
2769 #ifdef MAC
2770         .vop_setlabel =         vop_stdsetlabel_ea,
2771 #endif
2772         .vop_strategy =         ufs_strategy,
2773         .vop_symlink =          ufs_symlink,
2774         .vop_whiteout =         ufs_whiteout,
2775 #ifdef UFS_EXTATTR
2776         .vop_getextattr =       ufs_getextattr,
2777         .vop_deleteextattr =    ufs_deleteextattr,
2778         .vop_setextattr =       ufs_setextattr,
2779 #endif
2780 #ifdef UFS_ACL
2781         .vop_getacl =           ufs_getacl,
2782         .vop_setacl =           ufs_setacl,
2783         .vop_aclcheck =         ufs_aclcheck,
2784 #endif
2785 };
2786
2787 struct vop_vector ufs_fifoops = {
2788         .vop_default =          &fifo_specops,
2789         .vop_fsync =            VOP_PANIC,
2790         .vop_accessx =          ufs_accessx,
2791         .vop_close =            ufsfifo_close,
2792         .vop_getattr =          ufs_getattr,
2793         .vop_inactive =         ufs_inactive,
2794         .vop_kqfilter =         ufsfifo_kqfilter,
2795         .vop_markatime =        ufs_markatime,
2796         .vop_pathconf =         ufsfifo_pathconf,
2797         .vop_print =            ufs_print,
2798         .vop_read =             VOP_PANIC,
2799         .vop_reclaim =          ufs_reclaim,
2800         .vop_setattr =          ufs_setattr,
2801 #ifdef MAC
2802         .vop_setlabel =         vop_stdsetlabel_ea,
2803 #endif
2804         .vop_write =            VOP_PANIC,
2805 #ifdef UFS_EXTATTR
2806         .vop_getextattr =       ufs_getextattr,
2807         .vop_deleteextattr =    ufs_deleteextattr,
2808         .vop_setextattr =       ufs_setextattr,
2809 #endif
2810 #ifdef UFS_ACL
2811         .vop_getacl =           ufs_getacl,
2812         .vop_setacl =           ufs_setacl,
2813         .vop_aclcheck =         ufs_aclcheck,
2814 #endif
2815 };