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