xref: /titanic_52/usr/src/uts/common/syscall/fcntl.c (revision 303bf60b5a47ba25850d1ab07297f73962521dff)
17c478bd9Sstevel@tonic-gate /*
27c478bd9Sstevel@tonic-gate  * CDDL HEADER START
37c478bd9Sstevel@tonic-gate  *
47c478bd9Sstevel@tonic-gate  * The contents of this file are subject to the terms of the
57c478bd9Sstevel@tonic-gate  * Common Development and Distribution License, Version 1.0 only
67c478bd9Sstevel@tonic-gate  * (the "License").  You may not use this file except in compliance
77c478bd9Sstevel@tonic-gate  * with the License.
87c478bd9Sstevel@tonic-gate  *
97c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
107c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
117c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
127c478bd9Sstevel@tonic-gate  * and limitations under the License.
137c478bd9Sstevel@tonic-gate  *
147c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
157c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
167c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
177c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
187c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
197c478bd9Sstevel@tonic-gate  *
207c478bd9Sstevel@tonic-gate  * CDDL HEADER END
217c478bd9Sstevel@tonic-gate  */
227c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
237c478bd9Sstevel@tonic-gate /*
24*303bf60bSsdebnath  * Copyright 2005 Sun Microsystems, Inc.  All rights reserved.
257c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate /*	Copyright (c) 1983, 1984, 1985, 1986, 1987, 1988, 1989 AT&T	*/
297c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate /*
327c478bd9Sstevel@tonic-gate  * Portions of this source code were derived from Berkeley 4.3 BSD
337c478bd9Sstevel@tonic-gate  * under license from the Regents of the University of California.
347c478bd9Sstevel@tonic-gate  */
357c478bd9Sstevel@tonic-gate 
367c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
377c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate #include <sys/param.h>
407c478bd9Sstevel@tonic-gate #include <sys/isa_defs.h>
417c478bd9Sstevel@tonic-gate #include <sys/types.h>
427c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
437c478bd9Sstevel@tonic-gate #include <sys/systm.h>
447c478bd9Sstevel@tonic-gate #include <sys/errno.h>
457c478bd9Sstevel@tonic-gate #include <sys/fcntl.h>
467c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
477c478bd9Sstevel@tonic-gate #include <sys/flock.h>
487c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
497c478bd9Sstevel@tonic-gate #include <sys/vnode.h>
507c478bd9Sstevel@tonic-gate #include <sys/file.h>
517c478bd9Sstevel@tonic-gate #include <sys/mode.h>
527c478bd9Sstevel@tonic-gate #include <sys/proc.h>
537c478bd9Sstevel@tonic-gate #include <sys/filio.h>
547c478bd9Sstevel@tonic-gate #include <sys/share.h>
557c478bd9Sstevel@tonic-gate #include <sys/debug.h>
567c478bd9Sstevel@tonic-gate #include <sys/rctl.h>
577c478bd9Sstevel@tonic-gate #include <sys/nbmlock.h>
587c478bd9Sstevel@tonic-gate 
59*303bf60bSsdebnath #include <sys/cmn_err.h>
60*303bf60bSsdebnath 
617c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
627c478bd9Sstevel@tonic-gate static int flock_check(vnode_t *, flock64_t *, offset_t, offset_t);
637c478bd9Sstevel@tonic-gate static int flock_get_start(vnode_t *, flock64_t *, offset_t, u_offset_t *);
647c478bd9Sstevel@tonic-gate static void fd_too_big(proc_t *);
657c478bd9Sstevel@tonic-gate 
667c478bd9Sstevel@tonic-gate /*
677c478bd9Sstevel@tonic-gate  * File control.
687c478bd9Sstevel@tonic-gate  */
697c478bd9Sstevel@tonic-gate int
707c478bd9Sstevel@tonic-gate fcntl(int fdes, int cmd, intptr_t arg)
717c478bd9Sstevel@tonic-gate {
727c478bd9Sstevel@tonic-gate 	int iarg;
737c478bd9Sstevel@tonic-gate 	int error = 0;
747c478bd9Sstevel@tonic-gate 	int retval;
757c478bd9Sstevel@tonic-gate 	proc_t *p;
767c478bd9Sstevel@tonic-gate 	file_t *fp;
777c478bd9Sstevel@tonic-gate 	vnode_t *vp;
787c478bd9Sstevel@tonic-gate 	u_offset_t offset;
797c478bd9Sstevel@tonic-gate 	u_offset_t start;
807c478bd9Sstevel@tonic-gate 	struct vattr vattr;
817c478bd9Sstevel@tonic-gate 	int in_crit;
827c478bd9Sstevel@tonic-gate 	int flag;
837c478bd9Sstevel@tonic-gate 	struct flock sbf;
847c478bd9Sstevel@tonic-gate 	struct flock64 bf;
857c478bd9Sstevel@tonic-gate 	struct o_flock obf;
867c478bd9Sstevel@tonic-gate 	struct flock64_32 bf64_32;
877c478bd9Sstevel@tonic-gate 	struct fshare fsh;
887c478bd9Sstevel@tonic-gate 	struct shrlock shr;
897c478bd9Sstevel@tonic-gate 	struct shr_locowner shr_own;
907c478bd9Sstevel@tonic-gate 	offset_t maxoffset;
917c478bd9Sstevel@tonic-gate 	model_t datamodel;
927c478bd9Sstevel@tonic-gate 
937c478bd9Sstevel@tonic-gate #if defined(_ILP32) && !defined(lint) && defined(_SYSCALL32)
947c478bd9Sstevel@tonic-gate 	ASSERT(sizeof (struct flock) == sizeof (struct flock32));
957c478bd9Sstevel@tonic-gate 	ASSERT(sizeof (struct flock64) == sizeof (struct flock64_32));
967c478bd9Sstevel@tonic-gate #endif
977c478bd9Sstevel@tonic-gate #if defined(_LP64) && !defined(lint) && defined(_SYSCALL32)
987c478bd9Sstevel@tonic-gate 	ASSERT(sizeof (struct flock) == sizeof (struct flock64_64));
997c478bd9Sstevel@tonic-gate 	ASSERT(sizeof (struct flock64) == sizeof (struct flock64_64));
1007c478bd9Sstevel@tonic-gate #endif
1017c478bd9Sstevel@tonic-gate 
1027c478bd9Sstevel@tonic-gate 	/*
1037c478bd9Sstevel@tonic-gate 	 * First, for speed, deal with the subset of cases
1047c478bd9Sstevel@tonic-gate 	 * that do not require getf() / releasef().
1057c478bd9Sstevel@tonic-gate 	 */
1067c478bd9Sstevel@tonic-gate 	switch (cmd) {
1077c478bd9Sstevel@tonic-gate 	case F_GETFD:
1087c478bd9Sstevel@tonic-gate 		if ((error = f_getfd_error(fdes, &flag)) == 0)
1097c478bd9Sstevel@tonic-gate 			retval = flag;
1107c478bd9Sstevel@tonic-gate 		goto out;
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate 	case F_SETFD:
1137c478bd9Sstevel@tonic-gate 		error = f_setfd_error(fdes, (int)arg);
1147c478bd9Sstevel@tonic-gate 		retval = 0;
1157c478bd9Sstevel@tonic-gate 		goto out;
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate 	case F_GETFL:
1187c478bd9Sstevel@tonic-gate 		if ((error = f_getfl(fdes, &flag)) == 0)
1197c478bd9Sstevel@tonic-gate 			retval = (flag & (FMASK | FASYNC)) + FOPEN;
1207c478bd9Sstevel@tonic-gate 		goto out;
1217c478bd9Sstevel@tonic-gate 
1227c478bd9Sstevel@tonic-gate 	case F_GETXFL:
1237c478bd9Sstevel@tonic-gate 		if ((error = f_getfl(fdes, &flag)) == 0)
1247c478bd9Sstevel@tonic-gate 			retval = flag + FOPEN;
1257c478bd9Sstevel@tonic-gate 		goto out;
1267c478bd9Sstevel@tonic-gate 	}
1277c478bd9Sstevel@tonic-gate 
1287c478bd9Sstevel@tonic-gate 	/*
1297c478bd9Sstevel@tonic-gate 	 * Second, for speed, deal with the subset of cases that
1307c478bd9Sstevel@tonic-gate 	 * require getf() / releasef() but do not require copyin.
1317c478bd9Sstevel@tonic-gate 	 */
1327c478bd9Sstevel@tonic-gate 	if ((fp = getf(fdes)) == NULL) {
1337c478bd9Sstevel@tonic-gate 		error = EBADF;
1347c478bd9Sstevel@tonic-gate 		goto out;
1357c478bd9Sstevel@tonic-gate 	}
1367c478bd9Sstevel@tonic-gate 	iarg = (int)arg;
1377c478bd9Sstevel@tonic-gate 
1387c478bd9Sstevel@tonic-gate 	switch (cmd) {
1397c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
1407c478bd9Sstevel@tonic-gate 
1417c478bd9Sstevel@tonic-gate 	case F_DUPFD:
1427c478bd9Sstevel@tonic-gate 		p = curproc;
1437c478bd9Sstevel@tonic-gate 		if ((uint_t)iarg >= p->p_fno_ctl) {
1447c478bd9Sstevel@tonic-gate 			if (iarg >= 0)
1457c478bd9Sstevel@tonic-gate 				fd_too_big(p);
1467c478bd9Sstevel@tonic-gate 			error = EINVAL;
1477c478bd9Sstevel@tonic-gate 		} else if ((retval = ufalloc_file(iarg, fp)) == -1) {
1487c478bd9Sstevel@tonic-gate 			error = EMFILE;
1497c478bd9Sstevel@tonic-gate 		} else {
1507c478bd9Sstevel@tonic-gate 			mutex_enter(&fp->f_tlock);
1517c478bd9Sstevel@tonic-gate 			fp->f_count++;
1527c478bd9Sstevel@tonic-gate 			mutex_exit(&fp->f_tlock);
1537c478bd9Sstevel@tonic-gate 		}
1547c478bd9Sstevel@tonic-gate 		goto done;
1557c478bd9Sstevel@tonic-gate 
1567c478bd9Sstevel@tonic-gate 	case F_DUP2FD:
1577c478bd9Sstevel@tonic-gate 		p = curproc;
1587c478bd9Sstevel@tonic-gate 		if (fdes == iarg) {
1597c478bd9Sstevel@tonic-gate 			retval = iarg;
1607c478bd9Sstevel@tonic-gate 		} else if ((uint_t)iarg >= p->p_fno_ctl) {
1617c478bd9Sstevel@tonic-gate 			if (iarg >= 0)
1627c478bd9Sstevel@tonic-gate 				fd_too_big(p);
1637c478bd9Sstevel@tonic-gate 			error = EBADF;
1647c478bd9Sstevel@tonic-gate 		} else {
1657c478bd9Sstevel@tonic-gate 			/*
1667c478bd9Sstevel@tonic-gate 			 * We can't hold our getf(fdes) across the call to
1677c478bd9Sstevel@tonic-gate 			 * closeandsetf() because it creates a window for
1687c478bd9Sstevel@tonic-gate 			 * deadlock: if one thread is doing dup2(a, b) while
1697c478bd9Sstevel@tonic-gate 			 * another is doing dup2(b, a), each one will block
1707c478bd9Sstevel@tonic-gate 			 * waiting for the other to call releasef().  The
1717c478bd9Sstevel@tonic-gate 			 * solution is to increment the file reference count
1727c478bd9Sstevel@tonic-gate 			 * (which we have to do anyway), then releasef(fdes),
1737c478bd9Sstevel@tonic-gate 			 * then closeandsetf().  Incrementing f_count ensures
1747c478bd9Sstevel@tonic-gate 			 * that fp won't disappear after we call releasef().
1757c478bd9Sstevel@tonic-gate 			 */
1767c478bd9Sstevel@tonic-gate 			mutex_enter(&fp->f_tlock);
1777c478bd9Sstevel@tonic-gate 			fp->f_count++;
1787c478bd9Sstevel@tonic-gate 			mutex_exit(&fp->f_tlock);
1797c478bd9Sstevel@tonic-gate 			releasef(fdes);
1807c478bd9Sstevel@tonic-gate 			(void) closeandsetf(iarg, fp);
1817c478bd9Sstevel@tonic-gate 			retval = iarg;
1827c478bd9Sstevel@tonic-gate 			goto out;
1837c478bd9Sstevel@tonic-gate 		}
1847c478bd9Sstevel@tonic-gate 		goto done;
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate 	case F_SETFL:
1877c478bd9Sstevel@tonic-gate 		vp = fp->f_vnode;
1887c478bd9Sstevel@tonic-gate 		flag = fp->f_flag;
1897c478bd9Sstevel@tonic-gate 		if ((iarg & (FNONBLOCK|FNDELAY)) == (FNONBLOCK|FNDELAY))
1907c478bd9Sstevel@tonic-gate 			iarg &= ~FNDELAY;
1917c478bd9Sstevel@tonic-gate 		if ((error = VOP_SETFL(vp, flag, iarg, fp->f_cred)) == 0) {
1927c478bd9Sstevel@tonic-gate 			iarg &= FMASK;
1937c478bd9Sstevel@tonic-gate 			mutex_enter(&fp->f_tlock);
1947c478bd9Sstevel@tonic-gate 			fp->f_flag &= ~FMASK | (FREAD|FWRITE);
1957c478bd9Sstevel@tonic-gate 			fp->f_flag |= (iarg - FOPEN) & ~(FREAD|FWRITE);
1967c478bd9Sstevel@tonic-gate 			mutex_exit(&fp->f_tlock);
1977c478bd9Sstevel@tonic-gate 		}
1987c478bd9Sstevel@tonic-gate 		retval = 0;
1997c478bd9Sstevel@tonic-gate 		goto done;
2007c478bd9Sstevel@tonic-gate 	}
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate 	/*
2037c478bd9Sstevel@tonic-gate 	 * Finally, deal with the expensive cases.
2047c478bd9Sstevel@tonic-gate 	 */
2057c478bd9Sstevel@tonic-gate 	retval = 0;
2067c478bd9Sstevel@tonic-gate 	in_crit = 0;
2077c478bd9Sstevel@tonic-gate 	maxoffset = MAXOFF_T;
2087c478bd9Sstevel@tonic-gate 	datamodel = DATAMODEL_NATIVE;
2097c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
2107c478bd9Sstevel@tonic-gate 	if ((datamodel = get_udatamodel()) == DATAMODEL_ILP32)
2117c478bd9Sstevel@tonic-gate 		maxoffset = MAXOFF32_T;
2127c478bd9Sstevel@tonic-gate #endif
2137c478bd9Sstevel@tonic-gate 
2147c478bd9Sstevel@tonic-gate 	vp = fp->f_vnode;
2157c478bd9Sstevel@tonic-gate 	flag = fp->f_flag;
2167c478bd9Sstevel@tonic-gate 	offset = fp->f_offset;
2177c478bd9Sstevel@tonic-gate 
2187c478bd9Sstevel@tonic-gate 	switch (cmd) {
2197c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
2207c478bd9Sstevel@tonic-gate 	/*
2217c478bd9Sstevel@tonic-gate 	 * The file system and vnode layers understand and implement
2227c478bd9Sstevel@tonic-gate 	 * locking with flock64 structures. So here once we pass through
2237c478bd9Sstevel@tonic-gate 	 * the test for compatibility as defined by LFS API, (for F_SETLK,
2247c478bd9Sstevel@tonic-gate 	 * F_SETLKW, F_GETLK, F_GETLKW, F_FREESP) we transform
2257c478bd9Sstevel@tonic-gate 	 * the flock structure to a flock64 structure and send it to the
2267c478bd9Sstevel@tonic-gate 	 * lower layers. Similarly in case of GETLK the returned flock64
2277c478bd9Sstevel@tonic-gate 	 * structure is transformed to a flock structure if everything fits
2287c478bd9Sstevel@tonic-gate 	 * in nicely, otherwise we return EOVERFLOW.
2297c478bd9Sstevel@tonic-gate 	 */
2307c478bd9Sstevel@tonic-gate 
2317c478bd9Sstevel@tonic-gate 	case F_GETLK:
2327c478bd9Sstevel@tonic-gate 	case F_O_GETLK:
2337c478bd9Sstevel@tonic-gate 	case F_SETLK:
2347c478bd9Sstevel@tonic-gate 	case F_SETLKW:
2357c478bd9Sstevel@tonic-gate 	case F_SETLK_NBMAND:
2367c478bd9Sstevel@tonic-gate 
2377c478bd9Sstevel@tonic-gate 		/*
2387c478bd9Sstevel@tonic-gate 		 * Copy in input fields only.
2397c478bd9Sstevel@tonic-gate 		 */
2407c478bd9Sstevel@tonic-gate 
2417c478bd9Sstevel@tonic-gate 		if (cmd == F_O_GETLK) {
2427c478bd9Sstevel@tonic-gate 			if (datamodel != DATAMODEL_ILP32) {
2437c478bd9Sstevel@tonic-gate 				error = EINVAL;
2447c478bd9Sstevel@tonic-gate 				break;
2457c478bd9Sstevel@tonic-gate 			}
2467c478bd9Sstevel@tonic-gate 
2477c478bd9Sstevel@tonic-gate 			if (copyin((void *)arg, &obf, sizeof (obf))) {
2487c478bd9Sstevel@tonic-gate 				error = EFAULT;
2497c478bd9Sstevel@tonic-gate 				break;
2507c478bd9Sstevel@tonic-gate 			}
2517c478bd9Sstevel@tonic-gate 			bf.l_type = obf.l_type;
2527c478bd9Sstevel@tonic-gate 			bf.l_whence = obf.l_whence;
2537c478bd9Sstevel@tonic-gate 			bf.l_start = (off64_t)obf.l_start;
2547c478bd9Sstevel@tonic-gate 			bf.l_len = (off64_t)obf.l_len;
2557c478bd9Sstevel@tonic-gate 			bf.l_sysid = (int)obf.l_sysid;
2567c478bd9Sstevel@tonic-gate 			bf.l_pid = obf.l_pid;
2577c478bd9Sstevel@tonic-gate 		} else if (datamodel == DATAMODEL_NATIVE) {
2587c478bd9Sstevel@tonic-gate 			if (copyin((void *)arg, &sbf, sizeof (sbf))) {
2597c478bd9Sstevel@tonic-gate 				error = EFAULT;
2607c478bd9Sstevel@tonic-gate 				break;
2617c478bd9Sstevel@tonic-gate 			}
2627c478bd9Sstevel@tonic-gate 			/*
2637c478bd9Sstevel@tonic-gate 			 * XXX	In an LP64 kernel with an LP64 application
2647c478bd9Sstevel@tonic-gate 			 *	there's no need to do a structure copy here
2657c478bd9Sstevel@tonic-gate 			 *	struct flock == struct flock64. However,
2667c478bd9Sstevel@tonic-gate 			 *	we did it this way to avoid more conditional
2677c478bd9Sstevel@tonic-gate 			 *	compilation.
2687c478bd9Sstevel@tonic-gate 			 */
2697c478bd9Sstevel@tonic-gate 			bf.l_type = sbf.l_type;
2707c478bd9Sstevel@tonic-gate 			bf.l_whence = sbf.l_whence;
2717c478bd9Sstevel@tonic-gate 			bf.l_start = (off64_t)sbf.l_start;
2727c478bd9Sstevel@tonic-gate 			bf.l_len = (off64_t)sbf.l_len;
2737c478bd9Sstevel@tonic-gate 			bf.l_sysid = sbf.l_sysid;
2747c478bd9Sstevel@tonic-gate 			bf.l_pid = sbf.l_pid;
2757c478bd9Sstevel@tonic-gate 		}
2767c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
2777c478bd9Sstevel@tonic-gate 		else {
2787c478bd9Sstevel@tonic-gate 			struct flock32 sbf32;
2797c478bd9Sstevel@tonic-gate 			if (copyin((void *)arg, &sbf32, sizeof (sbf32))) {
2807c478bd9Sstevel@tonic-gate 				error = EFAULT;
2817c478bd9Sstevel@tonic-gate 				break;
2827c478bd9Sstevel@tonic-gate 			}
2837c478bd9Sstevel@tonic-gate 			bf.l_type = sbf32.l_type;
2847c478bd9Sstevel@tonic-gate 			bf.l_whence = sbf32.l_whence;
2857c478bd9Sstevel@tonic-gate 			bf.l_start = (off64_t)sbf32.l_start;
2867c478bd9Sstevel@tonic-gate 			bf.l_len = (off64_t)sbf32.l_len;
2877c478bd9Sstevel@tonic-gate 			bf.l_sysid = sbf32.l_sysid;
2887c478bd9Sstevel@tonic-gate 			bf.l_pid = sbf32.l_pid;
2897c478bd9Sstevel@tonic-gate 		}
2907c478bd9Sstevel@tonic-gate #endif /* _SYSCALL32_IMPL */
2917c478bd9Sstevel@tonic-gate 
2927c478bd9Sstevel@tonic-gate 		/*
2937c478bd9Sstevel@tonic-gate 		 * 64-bit support: check for overflow for 32-bit lock ops
2947c478bd9Sstevel@tonic-gate 		 */
2957c478bd9Sstevel@tonic-gate 		if ((error = flock_check(vp, &bf, offset, maxoffset)) != 0)
2967c478bd9Sstevel@tonic-gate 			break;
2977c478bd9Sstevel@tonic-gate 
2987c478bd9Sstevel@tonic-gate 		/*
2997c478bd9Sstevel@tonic-gate 		 * Not all of the filesystems understand F_O_GETLK, and
3007c478bd9Sstevel@tonic-gate 		 * there's no need for them to know.  Map it to F_GETLK.
3017c478bd9Sstevel@tonic-gate 		 */
3027c478bd9Sstevel@tonic-gate 		if ((error = VOP_FRLOCK(vp, (cmd == F_O_GETLK) ? F_GETLK : cmd,
3037c478bd9Sstevel@tonic-gate 		    &bf, flag, offset, NULL, fp->f_cred)) != 0)
3047c478bd9Sstevel@tonic-gate 			break;
3057c478bd9Sstevel@tonic-gate 
3067c478bd9Sstevel@tonic-gate 		/*
3077c478bd9Sstevel@tonic-gate 		 * If command is GETLK and no lock is found, only
3087c478bd9Sstevel@tonic-gate 		 * the type field is changed.
3097c478bd9Sstevel@tonic-gate 		 */
3107c478bd9Sstevel@tonic-gate 		if ((cmd == F_O_GETLK || cmd == F_GETLK) &&
3117c478bd9Sstevel@tonic-gate 		    bf.l_type == F_UNLCK) {
3127c478bd9Sstevel@tonic-gate 			/* l_type always first entry, always a short */
3137c478bd9Sstevel@tonic-gate 			if (copyout(&bf.l_type, &((struct flock *)arg)->l_type,
3147c478bd9Sstevel@tonic-gate 			    sizeof (bf.l_type)))
3157c478bd9Sstevel@tonic-gate 				error = EFAULT;
3167c478bd9Sstevel@tonic-gate 			break;
3177c478bd9Sstevel@tonic-gate 		}
3187c478bd9Sstevel@tonic-gate 
3197c478bd9Sstevel@tonic-gate 		if (cmd == F_O_GETLK) {
3207c478bd9Sstevel@tonic-gate 			/*
3217c478bd9Sstevel@tonic-gate 			 * Return an SVR3 flock structure to the user.
3227c478bd9Sstevel@tonic-gate 			 */
3237c478bd9Sstevel@tonic-gate 			obf.l_type = (int16_t)bf.l_type;
3247c478bd9Sstevel@tonic-gate 			obf.l_whence = (int16_t)bf.l_whence;
3257c478bd9Sstevel@tonic-gate 			obf.l_start = (int32_t)bf.l_start;
3267c478bd9Sstevel@tonic-gate 			obf.l_len = (int32_t)bf.l_len;
3277c478bd9Sstevel@tonic-gate 			if (bf.l_sysid > SHRT_MAX || bf.l_pid > SHRT_MAX) {
3287c478bd9Sstevel@tonic-gate 				/*
3297c478bd9Sstevel@tonic-gate 				 * One or both values for the above fields
3307c478bd9Sstevel@tonic-gate 				 * is too large to store in an SVR3 flock
3317c478bd9Sstevel@tonic-gate 				 * structure.
3327c478bd9Sstevel@tonic-gate 				 */
3337c478bd9Sstevel@tonic-gate 				error = EOVERFLOW;
3347c478bd9Sstevel@tonic-gate 				break;
3357c478bd9Sstevel@tonic-gate 			}
3367c478bd9Sstevel@tonic-gate 			obf.l_sysid = (int16_t)bf.l_sysid;
3377c478bd9Sstevel@tonic-gate 			obf.l_pid = (int16_t)bf.l_pid;
3387c478bd9Sstevel@tonic-gate 			if (copyout(&obf, (void *)arg, sizeof (obf)))
3397c478bd9Sstevel@tonic-gate 				error = EFAULT;
3407c478bd9Sstevel@tonic-gate 		} else if (cmd == F_GETLK) {
3417c478bd9Sstevel@tonic-gate 			/*
3427c478bd9Sstevel@tonic-gate 			 * Copy out SVR4 flock.
3437c478bd9Sstevel@tonic-gate 			 */
3447c478bd9Sstevel@tonic-gate 			int i;
3457c478bd9Sstevel@tonic-gate 
3467c478bd9Sstevel@tonic-gate 			if (bf.l_start > maxoffset || bf.l_len > maxoffset) {
3477c478bd9Sstevel@tonic-gate 				error = EOVERFLOW;
3487c478bd9Sstevel@tonic-gate 				break;
3497c478bd9Sstevel@tonic-gate 			}
3507c478bd9Sstevel@tonic-gate 
3517c478bd9Sstevel@tonic-gate 			if (datamodel == DATAMODEL_NATIVE) {
3527c478bd9Sstevel@tonic-gate 				for (i = 0; i < 4; i++)
3537c478bd9Sstevel@tonic-gate 					sbf.l_pad[i] = 0;
3547c478bd9Sstevel@tonic-gate 				/*
3557c478bd9Sstevel@tonic-gate 				 * XXX	In an LP64 kernel with an LP64
3567c478bd9Sstevel@tonic-gate 				 *	application there's no need to do a
3577c478bd9Sstevel@tonic-gate 				 *	structure copy here as currently
3587c478bd9Sstevel@tonic-gate 				 *	struct flock == struct flock64.
3597c478bd9Sstevel@tonic-gate 				 *	We did it this way to avoid more
3607c478bd9Sstevel@tonic-gate 				 *	conditional compilation.
3617c478bd9Sstevel@tonic-gate 				 */
3627c478bd9Sstevel@tonic-gate 				sbf.l_type = bf.l_type;
3637c478bd9Sstevel@tonic-gate 				sbf.l_whence = bf.l_whence;
3647c478bd9Sstevel@tonic-gate 				sbf.l_start = (off_t)bf.l_start;
3657c478bd9Sstevel@tonic-gate 				sbf.l_len = (off_t)bf.l_len;
3667c478bd9Sstevel@tonic-gate 				sbf.l_sysid = bf.l_sysid;
3677c478bd9Sstevel@tonic-gate 				sbf.l_pid = bf.l_pid;
3687c478bd9Sstevel@tonic-gate 				if (copyout(&sbf, (void *)arg, sizeof (sbf)))
3697c478bd9Sstevel@tonic-gate 					error = EFAULT;
3707c478bd9Sstevel@tonic-gate 			}
3717c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
3727c478bd9Sstevel@tonic-gate 			else {
3737c478bd9Sstevel@tonic-gate 				struct flock32 sbf32;
3747c478bd9Sstevel@tonic-gate 				if (bf.l_start > MAXOFF32_T ||
3757c478bd9Sstevel@tonic-gate 				    bf.l_len > MAXOFF32_T) {
3767c478bd9Sstevel@tonic-gate 					error = EOVERFLOW;
3777c478bd9Sstevel@tonic-gate 					break;
3787c478bd9Sstevel@tonic-gate 				}
3797c478bd9Sstevel@tonic-gate 				for (i = 0; i < 4; i++)
3807c478bd9Sstevel@tonic-gate 					sbf32.l_pad[i] = 0;
3817c478bd9Sstevel@tonic-gate 				sbf32.l_type = (int16_t)bf.l_type;
3827c478bd9Sstevel@tonic-gate 				sbf32.l_whence = (int16_t)bf.l_whence;
3837c478bd9Sstevel@tonic-gate 				sbf32.l_start = (off32_t)bf.l_start;
3847c478bd9Sstevel@tonic-gate 				sbf32.l_len = (off32_t)bf.l_len;
3857c478bd9Sstevel@tonic-gate 				sbf32.l_sysid = (int32_t)bf.l_sysid;
3867c478bd9Sstevel@tonic-gate 				sbf32.l_pid = (pid32_t)bf.l_pid;
3877c478bd9Sstevel@tonic-gate 				if (copyout(&sbf32,
3887c478bd9Sstevel@tonic-gate 				    (void *)arg, sizeof (sbf32)))
3897c478bd9Sstevel@tonic-gate 					error = EFAULT;
3907c478bd9Sstevel@tonic-gate 			}
3917c478bd9Sstevel@tonic-gate #endif
3927c478bd9Sstevel@tonic-gate 		}
3937c478bd9Sstevel@tonic-gate 		break;
3947c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
3957c478bd9Sstevel@tonic-gate 
3967c478bd9Sstevel@tonic-gate 	case F_CHKFL:
3977c478bd9Sstevel@tonic-gate 		/*
3987c478bd9Sstevel@tonic-gate 		 * This is for internal use only, to allow the vnode layer
3997c478bd9Sstevel@tonic-gate 		 * to validate a flags setting before applying it.  User
4007c478bd9Sstevel@tonic-gate 		 * programs can't issue it.
4017c478bd9Sstevel@tonic-gate 		 */
4027c478bd9Sstevel@tonic-gate 		error = EINVAL;
4037c478bd9Sstevel@tonic-gate 		break;
4047c478bd9Sstevel@tonic-gate 
4057c478bd9Sstevel@tonic-gate 	case F_ALLOCSP:
4067c478bd9Sstevel@tonic-gate 	case F_FREESP:
407*303bf60bSsdebnath 	case F_ALLOCSP64:
408*303bf60bSsdebnath 	case F_FREESP64:
4097c478bd9Sstevel@tonic-gate 		if ((flag & FWRITE) == 0) {
4107c478bd9Sstevel@tonic-gate 			error = EBADF;
4117c478bd9Sstevel@tonic-gate 			break;
4127c478bd9Sstevel@tonic-gate 		}
413*303bf60bSsdebnath 
4147c478bd9Sstevel@tonic-gate 		if (vp->v_type != VREG) {
4157c478bd9Sstevel@tonic-gate 			error = EINVAL;
4167c478bd9Sstevel@tonic-gate 			break;
4177c478bd9Sstevel@tonic-gate 		}
4187c478bd9Sstevel@tonic-gate 
419*303bf60bSsdebnath 		if (datamodel != DATAMODEL_ILP32 &&
420*303bf60bSsdebnath 		    (cmd == F_ALLOCSP64 || cmd == F_FREESP64)) {
421*303bf60bSsdebnath 			error = EINVAL;
422*303bf60bSsdebnath 			break;
423*303bf60bSsdebnath 		}
424*303bf60bSsdebnath 
4257c478bd9Sstevel@tonic-gate #if defined(_ILP32) || defined(_SYSCALL32_IMPL)
426*303bf60bSsdebnath 		if (datamodel == DATAMODEL_ILP32 &&
427*303bf60bSsdebnath 		    (cmd == F_ALLOCSP || cmd == F_FREESP)) {
4287c478bd9Sstevel@tonic-gate 			struct flock32 sbf32;
4297c478bd9Sstevel@tonic-gate 			/*
4307c478bd9Sstevel@tonic-gate 			 * For compatibility we overlay an SVR3 flock on an SVR4
4317c478bd9Sstevel@tonic-gate 			 * flock.  This works because the input field offsets
4327c478bd9Sstevel@tonic-gate 			 * in "struct flock" were preserved.
4337c478bd9Sstevel@tonic-gate 			 */
4347c478bd9Sstevel@tonic-gate 			if (copyin((void *)arg, &sbf32, sizeof (sbf32))) {
4357c478bd9Sstevel@tonic-gate 				error = EFAULT;
4367c478bd9Sstevel@tonic-gate 				break;
4377c478bd9Sstevel@tonic-gate 			} else {
4387c478bd9Sstevel@tonic-gate 				bf.l_type = sbf32.l_type;
4397c478bd9Sstevel@tonic-gate 				bf.l_whence = sbf32.l_whence;
4407c478bd9Sstevel@tonic-gate 				bf.l_start = (off64_t)sbf32.l_start;
4417c478bd9Sstevel@tonic-gate 				bf.l_len = (off64_t)sbf32.l_len;
4427c478bd9Sstevel@tonic-gate 				bf.l_sysid = sbf32.l_sysid;
4437c478bd9Sstevel@tonic-gate 				bf.l_pid = sbf32.l_pid;
4447c478bd9Sstevel@tonic-gate 			}
4457c478bd9Sstevel@tonic-gate 		}
4467c478bd9Sstevel@tonic-gate #endif /* _ILP32 || _SYSCALL32_IMPL */
4477c478bd9Sstevel@tonic-gate 
4487c478bd9Sstevel@tonic-gate #if defined(_LP64)
449*303bf60bSsdebnath 		if (datamodel == DATAMODEL_LP64 &&
450*303bf60bSsdebnath 		    (cmd == F_ALLOCSP || cmd == F_FREESP)) {
4517c478bd9Sstevel@tonic-gate 			if (copyin((void *)arg, &bf, sizeof (bf))) {
4527c478bd9Sstevel@tonic-gate 				error = EFAULT;
4537c478bd9Sstevel@tonic-gate 				break;
4547c478bd9Sstevel@tonic-gate 			}
4557c478bd9Sstevel@tonic-gate 		}
456*303bf60bSsdebnath #endif /* defined(_LP64) */
4577c478bd9Sstevel@tonic-gate 
458*303bf60bSsdebnath #if !defined(_LP64) || defined(_SYSCALL32_IMPL)
459*303bf60bSsdebnath 		if (datamodel == DATAMODEL_ILP32 &&
460*303bf60bSsdebnath 		    (cmd == F_ALLOCSP64 || cmd == F_FREESP64)) {
461*303bf60bSsdebnath 			if (copyin((void *)arg, &bf64_32, sizeof (bf64_32))) {
462*303bf60bSsdebnath 				error = EFAULT;
463*303bf60bSsdebnath 				break;
464*303bf60bSsdebnath 			} else {
465*303bf60bSsdebnath 				/*
466*303bf60bSsdebnath 				 * Note that the size of flock64 is different in
467*303bf60bSsdebnath 				 * the ILP32 and LP64 models, due to the l_pad
468*303bf60bSsdebnath 				 * field. We do not want to assume that the
469*303bf60bSsdebnath 				 * flock64 structure is laid out the same in
470*303bf60bSsdebnath 				 * ILP32 and LP64 environments, so we will
471*303bf60bSsdebnath 				 * copy in the ILP32 version of flock64
472*303bf60bSsdebnath 				 * explicitly and copy it to the native
473*303bf60bSsdebnath 				 * flock64 structure.
474*303bf60bSsdebnath 				 */
475*303bf60bSsdebnath 				bf.l_type = (short)bf64_32.l_type;
476*303bf60bSsdebnath 				bf.l_whence = (short)bf64_32.l_whence;
477*303bf60bSsdebnath 				bf.l_start = bf64_32.l_start;
478*303bf60bSsdebnath 				bf.l_len = bf64_32.l_len;
479*303bf60bSsdebnath 				bf.l_sysid = (int)bf64_32.l_sysid;
480*303bf60bSsdebnath 				bf.l_pid = (pid_t)bf64_32.l_pid;
481*303bf60bSsdebnath 			}
482*303bf60bSsdebnath 		}
483*303bf60bSsdebnath #endif /* !defined(_LP64) || defined(_SYSCALL32_IMPL) */
484*303bf60bSsdebnath 
485*303bf60bSsdebnath 		if (cmd == F_ALLOCSP || cmd == F_FREESP)
486*303bf60bSsdebnath 			error = flock_check(vp, &bf, offset, maxoffset);
487*303bf60bSsdebnath 		else if (cmd == F_ALLOCSP64 || cmd == F_FREESP64)
488*303bf60bSsdebnath 			error = flock_check(vp, &bf, offset, MAXOFFSET_T);
489*303bf60bSsdebnath 		if (error)
4907c478bd9Sstevel@tonic-gate 			break;
4917c478bd9Sstevel@tonic-gate 
4927c478bd9Sstevel@tonic-gate 		if (vp->v_type == VREG && bf.l_len == 0 &&
4937c478bd9Sstevel@tonic-gate 		    bf.l_start > OFFSET_MAX(fp)) {
4947c478bd9Sstevel@tonic-gate 			error = EFBIG;
4957c478bd9Sstevel@tonic-gate 			break;
4967c478bd9Sstevel@tonic-gate 		}
4977c478bd9Sstevel@tonic-gate 
4987c478bd9Sstevel@tonic-gate 		/*
4997c478bd9Sstevel@tonic-gate 		 * Make sure that there are no conflicting non-blocking
5007c478bd9Sstevel@tonic-gate 		 * mandatory locks in the region being manipulated. If
5017c478bd9Sstevel@tonic-gate 		 * there are such locks then return EACCES.
5027c478bd9Sstevel@tonic-gate 		 */
5037c478bd9Sstevel@tonic-gate 		if ((error = flock_get_start(vp, &bf, offset, &start)) != 0)
5047c478bd9Sstevel@tonic-gate 			break;
5057c478bd9Sstevel@tonic-gate 
5067c478bd9Sstevel@tonic-gate 		if (nbl_need_check(vp)) {
5077c478bd9Sstevel@tonic-gate 			u_offset_t	begin;
5087c478bd9Sstevel@tonic-gate 			ssize_t		length;
5097c478bd9Sstevel@tonic-gate 
5107c478bd9Sstevel@tonic-gate 			nbl_start_crit(vp, RW_READER);
5117c478bd9Sstevel@tonic-gate 			in_crit = 1;
5127c478bd9Sstevel@tonic-gate 			vattr.va_mask = AT_SIZE;
5137c478bd9Sstevel@tonic-gate 			if ((error = VOP_GETATTR(vp, &vattr, 0, CRED())) != 0)
5147c478bd9Sstevel@tonic-gate 				break;
5157c478bd9Sstevel@tonic-gate 			begin = start > vattr.va_size ? vattr.va_size : start;
5167c478bd9Sstevel@tonic-gate 			length = vattr.va_size > start ? vattr.va_size - start :
5177c478bd9Sstevel@tonic-gate 				start - vattr.va_size;
5187c478bd9Sstevel@tonic-gate 			if (nbl_conflict(vp, NBL_WRITE, begin, length, 0)) {
5197c478bd9Sstevel@tonic-gate 				error = EACCES;
5207c478bd9Sstevel@tonic-gate 				break;
5217c478bd9Sstevel@tonic-gate 			}
5227c478bd9Sstevel@tonic-gate 		}
523*303bf60bSsdebnath 
524*303bf60bSsdebnath 		if (cmd == F_ALLOCSP64)
525*303bf60bSsdebnath 			cmd = F_ALLOCSP;
526*303bf60bSsdebnath 		else if (cmd == F_FREESP64)
527*303bf60bSsdebnath 			cmd = F_FREESP;
528*303bf60bSsdebnath 
5297c478bd9Sstevel@tonic-gate 		error = VOP_SPACE(vp, cmd, &bf, flag, offset, fp->f_cred, NULL);
530*303bf60bSsdebnath 
5317c478bd9Sstevel@tonic-gate 		break;
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate #if !defined(_LP64) || defined(_SYSCALL32_IMPL)
5347c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
5357c478bd9Sstevel@tonic-gate 	case F_GETLK64:
5367c478bd9Sstevel@tonic-gate 	case F_SETLK64:
5377c478bd9Sstevel@tonic-gate 	case F_SETLKW64:
5387c478bd9Sstevel@tonic-gate 	case F_SETLK64_NBMAND:
5397c478bd9Sstevel@tonic-gate 		/*
5407c478bd9Sstevel@tonic-gate 		 * Large Files: Here we set cmd as *LK and send it to
5417c478bd9Sstevel@tonic-gate 		 * lower layers. *LK64 is only for the user land.
5427c478bd9Sstevel@tonic-gate 		 * Most of the comments described above for F_SETLK
5437c478bd9Sstevel@tonic-gate 		 * applies here too.
5447c478bd9Sstevel@tonic-gate 		 * Large File support is only needed for ILP32 apps!
5457c478bd9Sstevel@tonic-gate 		 */
5467c478bd9Sstevel@tonic-gate 		if (datamodel != DATAMODEL_ILP32) {
5477c478bd9Sstevel@tonic-gate 			error = EINVAL;
5487c478bd9Sstevel@tonic-gate 			break;
5497c478bd9Sstevel@tonic-gate 		}
5507c478bd9Sstevel@tonic-gate 
5517c478bd9Sstevel@tonic-gate 		if (cmd == F_GETLK64)
5527c478bd9Sstevel@tonic-gate 			cmd = F_GETLK;
5537c478bd9Sstevel@tonic-gate 		else if (cmd == F_SETLK64)
5547c478bd9Sstevel@tonic-gate 			cmd = F_SETLK;
5557c478bd9Sstevel@tonic-gate 		else if (cmd == F_SETLKW64)
5567c478bd9Sstevel@tonic-gate 			cmd = F_SETLKW;
5577c478bd9Sstevel@tonic-gate 		else if (cmd == F_SETLK64_NBMAND)
5587c478bd9Sstevel@tonic-gate 			cmd = F_SETLK_NBMAND;
5597c478bd9Sstevel@tonic-gate 
5607c478bd9Sstevel@tonic-gate 		/*
5617c478bd9Sstevel@tonic-gate 		 * Note that the size of flock64 is different in the ILP32
5627c478bd9Sstevel@tonic-gate 		 * and LP64 models, due to the sucking l_pad field.
5637c478bd9Sstevel@tonic-gate 		 * We do not want to assume that the flock64 structure is
5647c478bd9Sstevel@tonic-gate 		 * laid out in the same in ILP32 and LP64 environments, so
5657c478bd9Sstevel@tonic-gate 		 * we will copy in the ILP32 version of flock64 explicitly
5667c478bd9Sstevel@tonic-gate 		 * and copy it to the native flock64 structure.
5677c478bd9Sstevel@tonic-gate 		 */
5687c478bd9Sstevel@tonic-gate 
5697c478bd9Sstevel@tonic-gate 		if (copyin((void *)arg, &bf64_32, sizeof (bf64_32))) {
5707c478bd9Sstevel@tonic-gate 			error = EFAULT;
5717c478bd9Sstevel@tonic-gate 			break;
5727c478bd9Sstevel@tonic-gate 		}
573*303bf60bSsdebnath 
5747c478bd9Sstevel@tonic-gate 		bf.l_type = (short)bf64_32.l_type;
5757c478bd9Sstevel@tonic-gate 		bf.l_whence = (short)bf64_32.l_whence;
5767c478bd9Sstevel@tonic-gate 		bf.l_start = bf64_32.l_start;
5777c478bd9Sstevel@tonic-gate 		bf.l_len = bf64_32.l_len;
5787c478bd9Sstevel@tonic-gate 		bf.l_sysid = (int)bf64_32.l_sysid;
5797c478bd9Sstevel@tonic-gate 		bf.l_pid = (pid_t)bf64_32.l_pid;
5807c478bd9Sstevel@tonic-gate 
5817c478bd9Sstevel@tonic-gate 		if ((error = flock_check(vp, &bf, offset, MAXOFFSET_T)) != 0)
5827c478bd9Sstevel@tonic-gate 			break;
5837c478bd9Sstevel@tonic-gate 
5847c478bd9Sstevel@tonic-gate 		if ((error = VOP_FRLOCK(vp, cmd, &bf, flag, offset,
5857c478bd9Sstevel@tonic-gate 		    NULL, fp->f_cred)) != 0)
5867c478bd9Sstevel@tonic-gate 			break;
5877c478bd9Sstevel@tonic-gate 
5887c478bd9Sstevel@tonic-gate 		if ((cmd == F_GETLK) && bf.l_type == F_UNLCK) {
5897c478bd9Sstevel@tonic-gate 			if (copyout(&bf.l_type, &((struct flock *)arg)->l_type,
5907c478bd9Sstevel@tonic-gate 			    sizeof (bf.l_type)))
5917c478bd9Sstevel@tonic-gate 				error = EFAULT;
5927c478bd9Sstevel@tonic-gate 			break;
5937c478bd9Sstevel@tonic-gate 		}
5947c478bd9Sstevel@tonic-gate 
5957c478bd9Sstevel@tonic-gate 		if (cmd == F_GETLK) {
5967c478bd9Sstevel@tonic-gate 			int i;
5977c478bd9Sstevel@tonic-gate 
5987c478bd9Sstevel@tonic-gate 			/*
5997c478bd9Sstevel@tonic-gate 			 * We do not want to assume that the flock64 structure
6007c478bd9Sstevel@tonic-gate 			 * is laid out in the same in ILP32 and LP64
6017c478bd9Sstevel@tonic-gate 			 * environments, so we will copy out the ILP32 version
6027c478bd9Sstevel@tonic-gate 			 * of flock64 explicitly after copying the native
6037c478bd9Sstevel@tonic-gate 			 * flock64 structure to it.
6047c478bd9Sstevel@tonic-gate 			 */
6057c478bd9Sstevel@tonic-gate 			for (i = 0; i < 4; i++)
6067c478bd9Sstevel@tonic-gate 				bf64_32.l_pad[i] = 0;
6077c478bd9Sstevel@tonic-gate 			bf64_32.l_type = (int16_t)bf.l_type;
6087c478bd9Sstevel@tonic-gate 			bf64_32.l_whence = (int16_t)bf.l_whence;
6097c478bd9Sstevel@tonic-gate 			bf64_32.l_start = bf.l_start;
6107c478bd9Sstevel@tonic-gate 			bf64_32.l_len = bf.l_len;
6117c478bd9Sstevel@tonic-gate 			bf64_32.l_sysid = (int32_t)bf.l_sysid;
6127c478bd9Sstevel@tonic-gate 			bf64_32.l_pid = (pid32_t)bf.l_pid;
6137c478bd9Sstevel@tonic-gate 			if (copyout(&bf64_32, (void *)arg, sizeof (bf64_32)))
6147c478bd9Sstevel@tonic-gate 				error = EFAULT;
6157c478bd9Sstevel@tonic-gate 		}
6167c478bd9Sstevel@tonic-gate 		break;
6177c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
618*303bf60bSsdebnath #endif /* !defined(_LP64) || defined(_SYSCALL32_IMPL) */
6197c478bd9Sstevel@tonic-gate 
6207c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
6217c478bd9Sstevel@tonic-gate 	case F_SHARE:
6227c478bd9Sstevel@tonic-gate 	case F_SHARE_NBMAND:
6237c478bd9Sstevel@tonic-gate 	case F_UNSHARE:
6247c478bd9Sstevel@tonic-gate 
6257c478bd9Sstevel@tonic-gate 		/*
6267c478bd9Sstevel@tonic-gate 		 * Copy in input fields only.
6277c478bd9Sstevel@tonic-gate 		 */
6287c478bd9Sstevel@tonic-gate 		if (copyin((void *)arg, &fsh, sizeof (fsh))) {
6297c478bd9Sstevel@tonic-gate 			error = EFAULT;
6307c478bd9Sstevel@tonic-gate 			break;
6317c478bd9Sstevel@tonic-gate 		}
6327c478bd9Sstevel@tonic-gate 
6337c478bd9Sstevel@tonic-gate 		/*
6347c478bd9Sstevel@tonic-gate 		 * Local share reservations always have this simple form
6357c478bd9Sstevel@tonic-gate 		 */
6367c478bd9Sstevel@tonic-gate 		shr.s_access = fsh.f_access;
6377c478bd9Sstevel@tonic-gate 		shr.s_deny = fsh.f_deny;
6387c478bd9Sstevel@tonic-gate 		shr.s_sysid = 0;
6397c478bd9Sstevel@tonic-gate 		shr.s_pid = ttoproc(curthread)->p_pid;
6407c478bd9Sstevel@tonic-gate 		shr_own.sl_pid = shr.s_pid;
6417c478bd9Sstevel@tonic-gate 		shr_own.sl_id = fsh.f_id;
6427c478bd9Sstevel@tonic-gate 		shr.s_own_len = sizeof (shr_own);
6437c478bd9Sstevel@tonic-gate 		shr.s_owner = (caddr_t)&shr_own;
6447c478bd9Sstevel@tonic-gate 		error = VOP_SHRLOCK(vp, cmd, &shr, flag, fp->f_cred);
6457c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
6467c478bd9Sstevel@tonic-gate 		break;
6477c478bd9Sstevel@tonic-gate 
6487c478bd9Sstevel@tonic-gate 	default:
6497c478bd9Sstevel@tonic-gate 		error = EINVAL;
6507c478bd9Sstevel@tonic-gate 		break;
6517c478bd9Sstevel@tonic-gate 	}
6527c478bd9Sstevel@tonic-gate 
6537c478bd9Sstevel@tonic-gate 	if (in_crit)
6547c478bd9Sstevel@tonic-gate 		nbl_end_crit(vp);
6557c478bd9Sstevel@tonic-gate 
6567c478bd9Sstevel@tonic-gate done:
6577c478bd9Sstevel@tonic-gate 	releasef(fdes);
6587c478bd9Sstevel@tonic-gate out:
6597c478bd9Sstevel@tonic-gate 	if (error)
6607c478bd9Sstevel@tonic-gate 		return (set_errno(error));
6617c478bd9Sstevel@tonic-gate 	return (retval);
6627c478bd9Sstevel@tonic-gate }
6637c478bd9Sstevel@tonic-gate 
6647c478bd9Sstevel@tonic-gate int
6657c478bd9Sstevel@tonic-gate dup(int fd)
6667c478bd9Sstevel@tonic-gate {
6677c478bd9Sstevel@tonic-gate 	return (fcntl(fd, F_DUPFD, 0));
6687c478bd9Sstevel@tonic-gate }
6697c478bd9Sstevel@tonic-gate 
6707c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT START */
6717c478bd9Sstevel@tonic-gate int
6727c478bd9Sstevel@tonic-gate flock_check(vnode_t *vp, flock64_t *flp, offset_t offset, offset_t max)
6737c478bd9Sstevel@tonic-gate {
6747c478bd9Sstevel@tonic-gate 	struct vattr	vattr;
6757c478bd9Sstevel@tonic-gate 	int	error;
6767c478bd9Sstevel@tonic-gate 	u_offset_t start, end;
6777c478bd9Sstevel@tonic-gate 
6787c478bd9Sstevel@tonic-gate 	/*
6797c478bd9Sstevel@tonic-gate 	 * Determine the starting point of the request
6807c478bd9Sstevel@tonic-gate 	 */
6817c478bd9Sstevel@tonic-gate 	switch (flp->l_whence) {
6827c478bd9Sstevel@tonic-gate 	case 0:		/* SEEK_SET */
6837c478bd9Sstevel@tonic-gate 		start = (u_offset_t)flp->l_start;
6847c478bd9Sstevel@tonic-gate 		if (start > max)
6857c478bd9Sstevel@tonic-gate 			return (EINVAL);
6867c478bd9Sstevel@tonic-gate 		break;
6877c478bd9Sstevel@tonic-gate 	case 1:		/* SEEK_CUR */
6887c478bd9Sstevel@tonic-gate 		if (flp->l_start > (max - offset))
6897c478bd9Sstevel@tonic-gate 			return (EOVERFLOW);
6907c478bd9Sstevel@tonic-gate 		start = (u_offset_t)(flp->l_start + offset);
6917c478bd9Sstevel@tonic-gate 		if (start > max)
6927c478bd9Sstevel@tonic-gate 			return (EINVAL);
6937c478bd9Sstevel@tonic-gate 		break;
6947c478bd9Sstevel@tonic-gate 	case 2:		/* SEEK_END */
6957c478bd9Sstevel@tonic-gate 		vattr.va_mask = AT_SIZE;
6967c478bd9Sstevel@tonic-gate 		if (error = VOP_GETATTR(vp, &vattr, 0, CRED()))
6977c478bd9Sstevel@tonic-gate 			return (error);
6987c478bd9Sstevel@tonic-gate 		if (flp->l_start > (max - (offset_t)vattr.va_size))
6997c478bd9Sstevel@tonic-gate 			return (EOVERFLOW);
7007c478bd9Sstevel@tonic-gate 		start = (u_offset_t)(flp->l_start + (offset_t)vattr.va_size);
7017c478bd9Sstevel@tonic-gate 		if (start > max)
7027c478bd9Sstevel@tonic-gate 			return (EINVAL);
7037c478bd9Sstevel@tonic-gate 		break;
7047c478bd9Sstevel@tonic-gate 	default:
7057c478bd9Sstevel@tonic-gate 		return (EINVAL);
7067c478bd9Sstevel@tonic-gate 	}
7077c478bd9Sstevel@tonic-gate 
7087c478bd9Sstevel@tonic-gate 	/*
7097c478bd9Sstevel@tonic-gate 	 * Determine the range covered by the request.
7107c478bd9Sstevel@tonic-gate 	 */
7117c478bd9Sstevel@tonic-gate 	if (flp->l_len == 0)
7127c478bd9Sstevel@tonic-gate 		end = MAXEND;
7137c478bd9Sstevel@tonic-gate 	else if ((offset_t)flp->l_len > 0) {
7147c478bd9Sstevel@tonic-gate 		if (flp->l_len > (max - start + 1))
7157c478bd9Sstevel@tonic-gate 			return (EOVERFLOW);
7167c478bd9Sstevel@tonic-gate 		end = (u_offset_t)(start + (flp->l_len - 1));
7177c478bd9Sstevel@tonic-gate 		ASSERT(end <= max);
7187c478bd9Sstevel@tonic-gate 	} else {
7197c478bd9Sstevel@tonic-gate 		/*
7207c478bd9Sstevel@tonic-gate 		 * Negative length; why do we even allow this ?
7217c478bd9Sstevel@tonic-gate 		 * Because this allows easy specification of
7227c478bd9Sstevel@tonic-gate 		 * the last n bytes of the file.
7237c478bd9Sstevel@tonic-gate 		 */
7247c478bd9Sstevel@tonic-gate 		end = start;
7257c478bd9Sstevel@tonic-gate 		start += (u_offset_t)flp->l_len;
7267c478bd9Sstevel@tonic-gate 		(start)++;
7277c478bd9Sstevel@tonic-gate 		if (start > max)
7287c478bd9Sstevel@tonic-gate 			return (EINVAL);
7297c478bd9Sstevel@tonic-gate 		ASSERT(end <= max);
7307c478bd9Sstevel@tonic-gate 	}
7317c478bd9Sstevel@tonic-gate 	ASSERT(start <= max);
7327c478bd9Sstevel@tonic-gate 	if (flp->l_type == F_UNLCK && flp->l_len > 0 &&
7337c478bd9Sstevel@tonic-gate 	    end == (offset_t)max) {
7347c478bd9Sstevel@tonic-gate 		flp->l_len = 0;
7357c478bd9Sstevel@tonic-gate 	}
7367c478bd9Sstevel@tonic-gate 	if (start  > end)
7377c478bd9Sstevel@tonic-gate 		return (EINVAL);
7387c478bd9Sstevel@tonic-gate 	return (0);
7397c478bd9Sstevel@tonic-gate }
7407c478bd9Sstevel@tonic-gate 
7417c478bd9Sstevel@tonic-gate static int
7427c478bd9Sstevel@tonic-gate flock_get_start(vnode_t *vp, flock64_t *flp, offset_t offset, u_offset_t *start)
7437c478bd9Sstevel@tonic-gate {
7447c478bd9Sstevel@tonic-gate 	struct vattr	vattr;
7457c478bd9Sstevel@tonic-gate 	int	error;
7467c478bd9Sstevel@tonic-gate 
7477c478bd9Sstevel@tonic-gate 	/*
7487c478bd9Sstevel@tonic-gate 	 * Determine the starting point of the request. Assume that it is
7497c478bd9Sstevel@tonic-gate 	 * a valid starting point.
7507c478bd9Sstevel@tonic-gate 	 */
7517c478bd9Sstevel@tonic-gate 	switch (flp->l_whence) {
7527c478bd9Sstevel@tonic-gate 	case 0:		/* SEEK_SET */
7537c478bd9Sstevel@tonic-gate 		*start = (u_offset_t)flp->l_start;
7547c478bd9Sstevel@tonic-gate 		break;
7557c478bd9Sstevel@tonic-gate 	case 1:		/* SEEK_CUR */
7567c478bd9Sstevel@tonic-gate 		*start = (u_offset_t)(flp->l_start + offset);
7577c478bd9Sstevel@tonic-gate 		break;
7587c478bd9Sstevel@tonic-gate 	case 2:		/* SEEK_END */
7597c478bd9Sstevel@tonic-gate 		vattr.va_mask = AT_SIZE;
7607c478bd9Sstevel@tonic-gate 		if (error = VOP_GETATTR(vp, &vattr, 0, CRED()))
7617c478bd9Sstevel@tonic-gate 			return (error);
7627c478bd9Sstevel@tonic-gate 		*start = (u_offset_t)(flp->l_start + (offset_t)vattr.va_size);
7637c478bd9Sstevel@tonic-gate 		break;
7647c478bd9Sstevel@tonic-gate 	default:
7657c478bd9Sstevel@tonic-gate 		return (EINVAL);
7667c478bd9Sstevel@tonic-gate 	}
7677c478bd9Sstevel@tonic-gate 
7687c478bd9Sstevel@tonic-gate 	return (0);
7697c478bd9Sstevel@tonic-gate }
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate /*
7727c478bd9Sstevel@tonic-gate  * Take rctl action when the requested file descriptor is too big.
7737c478bd9Sstevel@tonic-gate  */
7747c478bd9Sstevel@tonic-gate static void
7757c478bd9Sstevel@tonic-gate fd_too_big(proc_t *p)
7767c478bd9Sstevel@tonic-gate {
7777c478bd9Sstevel@tonic-gate 	mutex_enter(&p->p_lock);
7787c478bd9Sstevel@tonic-gate 	(void) rctl_action(rctlproc_legacy[RLIMIT_NOFILE],
7797c478bd9Sstevel@tonic-gate 	    p->p_rctls, p, RCA_SAFE);
7807c478bd9Sstevel@tonic-gate 	mutex_exit(&p->p_lock);
7817c478bd9Sstevel@tonic-gate }
7827c478bd9Sstevel@tonic-gate /* ONC_PLUS EXTRACT END */
783