xref: /illumos-gate/usr/src/uts/common/disp/priocntl.c (revision 48bbca81)
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
59acbbeafSnn  * Common Development and Distribution License (the "License").
69acbbeafSnn  * You may not use this file except in compliance with the License.
77c478bd9Sstevel@tonic-gate  *
87c478bd9Sstevel@tonic-gate  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
97c478bd9Sstevel@tonic-gate  * or http://www.opensolaris.org/os/licensing.
107c478bd9Sstevel@tonic-gate  * See the License for the specific language governing permissions
117c478bd9Sstevel@tonic-gate  * and limitations under the License.
127c478bd9Sstevel@tonic-gate  *
137c478bd9Sstevel@tonic-gate  * When distributing Covered Code, include this CDDL HEADER in each
147c478bd9Sstevel@tonic-gate  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
157c478bd9Sstevel@tonic-gate  * If applicable, add the following below this CDDL HEADER, with the
167c478bd9Sstevel@tonic-gate  * fields enclosed by brackets "[]" replaced with your own identifying
177c478bd9Sstevel@tonic-gate  * information: Portions Copyright [yyyy] [name of copyright owner]
187c478bd9Sstevel@tonic-gate  *
197c478bd9Sstevel@tonic-gate  * CDDL HEADER END
207c478bd9Sstevel@tonic-gate  */
21d4204c85Sraf 
227c478bd9Sstevel@tonic-gate /*
2335a5a358SJonathan Adams  * Copyright 2009 Sun Microsystems, Inc.  All rights reserved.
247c478bd9Sstevel@tonic-gate  * Use is subject to license terms.
25*48bbca81SDaniel Hoffman  * Copyright (c) 2016 by Delphix. All rights reserved.
267c478bd9Sstevel@tonic-gate  */
277c478bd9Sstevel@tonic-gate 
287c478bd9Sstevel@tonic-gate /*	Copyright (c) 1984, 1986, 1987, 1988, 1989 AT&T	*/
297c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate #include <sys/types.h>
327c478bd9Sstevel@tonic-gate #include <sys/param.h>
337c478bd9Sstevel@tonic-gate #include <sys/sysmacros.h>
347c478bd9Sstevel@tonic-gate #include <sys/signal.h>
357c478bd9Sstevel@tonic-gate #include <sys/pcb.h>
367c478bd9Sstevel@tonic-gate #include <sys/user.h>
377c478bd9Sstevel@tonic-gate #include <sys/systm.h>
387c478bd9Sstevel@tonic-gate #include <sys/sysinfo.h>
397c478bd9Sstevel@tonic-gate #include <sys/var.h>
407c478bd9Sstevel@tonic-gate #include <sys/errno.h>
417c478bd9Sstevel@tonic-gate #include <sys/cred.h>
427c478bd9Sstevel@tonic-gate #include <sys/proc.h>
437c478bd9Sstevel@tonic-gate #include <sys/procset.h>
447c478bd9Sstevel@tonic-gate #include <sys/debug.h>
457c478bd9Sstevel@tonic-gate #include <sys/inline.h>
467c478bd9Sstevel@tonic-gate #include <sys/priocntl.h>
477c478bd9Sstevel@tonic-gate #include <sys/disp.h>
487c478bd9Sstevel@tonic-gate #include <sys/class.h>
497c478bd9Sstevel@tonic-gate #include <sys/modctl.h>
507c478bd9Sstevel@tonic-gate #include <sys/t_lock.h>
517c478bd9Sstevel@tonic-gate #include <sys/uadmin.h>
527c478bd9Sstevel@tonic-gate #include <sys/cmn_err.h>
537c478bd9Sstevel@tonic-gate #include <sys/policy.h>
54d4204c85Sraf #include <sys/schedctl.h>
557c478bd9Sstevel@tonic-gate 
567c478bd9Sstevel@tonic-gate /*
577c478bd9Sstevel@tonic-gate  * Structure used to pass arguments to the proccmp() function.
587c478bd9Sstevel@tonic-gate  * The arguments must be passed in a structure because proccmp()
597c478bd9Sstevel@tonic-gate  * is called indirectly through the dotoprocs() function which
607c478bd9Sstevel@tonic-gate  * will only pass through a single one word argument.
617c478bd9Sstevel@tonic-gate  */
627c478bd9Sstevel@tonic-gate struct pcmpargs {
637c478bd9Sstevel@tonic-gate 	id_t	*pcmp_cidp;
647c478bd9Sstevel@tonic-gate 	int	*pcmp_cntp;
65d4204c85Sraf 	kthread_t **pcmp_retthreadp;
667c478bd9Sstevel@tonic-gate };
677c478bd9Sstevel@tonic-gate 
687c478bd9Sstevel@tonic-gate /*
697c478bd9Sstevel@tonic-gate  * Structure used to pass arguments to the setparms() function
707c478bd9Sstevel@tonic-gate  * which is called indirectly through dotoprocs().
717c478bd9Sstevel@tonic-gate  */
727c478bd9Sstevel@tonic-gate struct stprmargs {
737c478bd9Sstevel@tonic-gate 	struct pcparms	*stp_parmsp;	/* pointer to parameters */
747c478bd9Sstevel@tonic-gate 	int		stp_error;	/* some errors returned here */
757c478bd9Sstevel@tonic-gate };
767c478bd9Sstevel@tonic-gate 
777c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL) && _LONG_LONG_ALIGNMENT_32 == 4
787c478bd9Sstevel@tonic-gate /*
797c478bd9Sstevel@tonic-gate  * A vaparm_t is an int followed by a long long -- this packs differently
807c478bd9Sstevel@tonic-gate  * between the 64-bit kernel ABI and the 32-bit user ABI.
817c478bd9Sstevel@tonic-gate  */
827c478bd9Sstevel@tonic-gate static int
copyin_vaparms32(caddr_t arg,pc_vaparms_t * vap,uio_seg_t seg)839acbbeafSnn copyin_vaparms32(caddr_t arg, pc_vaparms_t *vap, uio_seg_t seg)
847c478bd9Sstevel@tonic-gate {
857c478bd9Sstevel@tonic-gate 	pc_vaparms32_t vaparms32;
867c478bd9Sstevel@tonic-gate 	pc_vaparm32_t *src;
877c478bd9Sstevel@tonic-gate 	pc_vaparm_t *dst;
887c478bd9Sstevel@tonic-gate 	uint_t cnt;
897c478bd9Sstevel@tonic-gate 
907c478bd9Sstevel@tonic-gate 	ASSERT(get_udatamodel() == DATAMODEL_ILP32);
917c478bd9Sstevel@tonic-gate 
929acbbeafSnn 	if ((seg == UIO_USERSPACE ? copyin : kcopy)(arg, &vaparms32,
939acbbeafSnn 	    sizeof (vaparms32)))
947c478bd9Sstevel@tonic-gate 		return (EFAULT);
957c478bd9Sstevel@tonic-gate 
967c478bd9Sstevel@tonic-gate 	vap->pc_vaparmscnt = vaparms32.pc_vaparmscnt;
977c478bd9Sstevel@tonic-gate 	if ((cnt = vaparms32.pc_vaparmscnt) > PC_VAPARMCNT)
987c478bd9Sstevel@tonic-gate 		cnt = PC_VAPARMCNT;
997c478bd9Sstevel@tonic-gate 	for (src = vaparms32.pc_parms, dst = vap->pc_parms;
1007c478bd9Sstevel@tonic-gate 	    cnt--; src++, dst++) {
1017c478bd9Sstevel@tonic-gate 		dst->pc_key = src->pc_key;
1027c478bd9Sstevel@tonic-gate 		dst->pc_parm = src->pc_parm;
1037c478bd9Sstevel@tonic-gate 	}
1047c478bd9Sstevel@tonic-gate 	return (0);
1057c478bd9Sstevel@tonic-gate }
1067c478bd9Sstevel@tonic-gate 
1079acbbeafSnn #define	COPYIN_VAPARMS(arg, vap, size, seg)	\
1087c478bd9Sstevel@tonic-gate 	(get_udatamodel() == DATAMODEL_NATIVE ?	\
1099acbbeafSnn 	(*copyinfn)(arg, vap, size) : copyin_vaparms32(arg, vap, seg))
1107c478bd9Sstevel@tonic-gate 
1117c478bd9Sstevel@tonic-gate #else
1127c478bd9Sstevel@tonic-gate 
1139acbbeafSnn #define	COPYIN_VAPARMS(arg, vap, size, seg)	(*copyinfn)(arg, vap, size)
1147c478bd9Sstevel@tonic-gate 
1157c478bd9Sstevel@tonic-gate #endif
1167c478bd9Sstevel@tonic-gate 
1177c478bd9Sstevel@tonic-gate static int donice(procset_t *, pcnice_t *);
118d4204c85Sraf static int doprio(procset_t *, pcprio_t *);
1197c478bd9Sstevel@tonic-gate static int proccmp(proc_t *, struct pcmpargs *);
1207c478bd9Sstevel@tonic-gate static int setparms(proc_t *, struct stprmargs *);
121d4204c85Sraf extern int threadcmp(struct pcmpargs *, kthread_t *);
1227c478bd9Sstevel@tonic-gate 
1237c478bd9Sstevel@tonic-gate /*
1247c478bd9Sstevel@tonic-gate  * The priocntl system call.
1257c478bd9Sstevel@tonic-gate  */
1267c478bd9Sstevel@tonic-gate long
priocntl_common(int pc_version,procset_t * psp,int cmd,caddr_t arg,caddr_t arg2,uio_seg_t seg)1279acbbeafSnn priocntl_common(int pc_version, procset_t *psp, int cmd, caddr_t arg,
1289acbbeafSnn     caddr_t arg2, uio_seg_t seg)
1297c478bd9Sstevel@tonic-gate {
1307c478bd9Sstevel@tonic-gate 	pcinfo_t		pcinfo;
1317c478bd9Sstevel@tonic-gate 	pcparms_t		pcparms;
1327c478bd9Sstevel@tonic-gate 	pcnice_t		pcnice;
133d4204c85Sraf 	pcprio_t		pcprio;
1347c478bd9Sstevel@tonic-gate 	pcadmin_t		pcadmin;
1357c478bd9Sstevel@tonic-gate 	pcpri_t			pcpri;
1367c478bd9Sstevel@tonic-gate 	procset_t		procset;
1377c478bd9Sstevel@tonic-gate 	struct stprmargs	stprmargs;
1387c478bd9Sstevel@tonic-gate 	struct pcmpargs		pcmpargs;
1397c478bd9Sstevel@tonic-gate 	pc_vaparms_t		vaparms;
1407c478bd9Sstevel@tonic-gate 	char			clname[PC_CLNMSZ];
1410209230bSgjelinek 	char			*outstr;
1427c478bd9Sstevel@tonic-gate 	int			count;
143d4204c85Sraf 	kthread_t		*retthreadp;
1447c478bd9Sstevel@tonic-gate 	proc_t			*initpp;
1457c478bd9Sstevel@tonic-gate 	int			clnullflag;
1467c478bd9Sstevel@tonic-gate 	int			error = 0;
1477c478bd9Sstevel@tonic-gate 	int			error1 = 0;
1487c478bd9Sstevel@tonic-gate 	int			rv = 0;
1497c478bd9Sstevel@tonic-gate 	pid_t			saved_pid;
1507c478bd9Sstevel@tonic-gate 	id_t			classid;
1510209230bSgjelinek 	int			size;
1529acbbeafSnn 	int (*copyinfn)(const void *, void *, size_t);
1539acbbeafSnn 	int (*copyoutfn)(const void *, void *, size_t);
1547c478bd9Sstevel@tonic-gate 
1557c478bd9Sstevel@tonic-gate 	/*
1567c478bd9Sstevel@tonic-gate 	 * First just check the version number. Right now there is only
1577c478bd9Sstevel@tonic-gate 	 * one version we know about and support.  If we get some other
1587c478bd9Sstevel@tonic-gate 	 * version number from the application it may be that the
1597c478bd9Sstevel@tonic-gate 	 * application was built with some future version and is trying
1607c478bd9Sstevel@tonic-gate 	 * to run on an old release of the system (that's us).  In any
1617c478bd9Sstevel@tonic-gate 	 * case if we don't recognize the version number all we can do is
1627c478bd9Sstevel@tonic-gate 	 * return error.
1637c478bd9Sstevel@tonic-gate 	 */
1647c478bd9Sstevel@tonic-gate 	if (pc_version != PC_VERSION)
1657c478bd9Sstevel@tonic-gate 		return (set_errno(EINVAL));
1667c478bd9Sstevel@tonic-gate 
1679acbbeafSnn 	if (seg == UIO_USERSPACE) {
1689acbbeafSnn 		copyinfn = copyin;
1699acbbeafSnn 		copyoutfn = copyout;
1709acbbeafSnn 	} else {
1719acbbeafSnn 		copyinfn = kcopy;
1729acbbeafSnn 		copyoutfn = kcopy;
1739acbbeafSnn 	}
1749acbbeafSnn 
1757c478bd9Sstevel@tonic-gate 	switch (cmd) {
1767c478bd9Sstevel@tonic-gate 	case PC_GETCID:
1777c478bd9Sstevel@tonic-gate 		/*
1787c478bd9Sstevel@tonic-gate 		 * If the arg pointer is NULL, the user just wants to
1797c478bd9Sstevel@tonic-gate 		 * know the number of classes. If non-NULL, the pointer
1807c478bd9Sstevel@tonic-gate 		 * should point to a valid user pcinfo buffer.  In the
1817c478bd9Sstevel@tonic-gate 		 * dynamic world we need to return the number of loaded
1827c478bd9Sstevel@tonic-gate 		 * classes, not the max number of available classes that
1837c478bd9Sstevel@tonic-gate 		 * can be loaded.
1847c478bd9Sstevel@tonic-gate 		 */
1857c478bd9Sstevel@tonic-gate 		if (arg == NULL) {
1867c478bd9Sstevel@tonic-gate 			rv = loaded_classes;
1877c478bd9Sstevel@tonic-gate 			break;
1887c478bd9Sstevel@tonic-gate 		} else {
1899acbbeafSnn 			if ((*copyinfn)(arg, &pcinfo, sizeof (pcinfo)))
1907c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
1917c478bd9Sstevel@tonic-gate 		}
1927c478bd9Sstevel@tonic-gate 
1937c478bd9Sstevel@tonic-gate 		pcinfo.pc_clname[PC_CLNMSZ-1] = '\0';
1947c478bd9Sstevel@tonic-gate 
1957c478bd9Sstevel@tonic-gate 		/*
1967c478bd9Sstevel@tonic-gate 		 * Get the class ID corresponding to user supplied name.
1977c478bd9Sstevel@tonic-gate 		 */
1987c478bd9Sstevel@tonic-gate 		error = getcid(pcinfo.pc_clname, &pcinfo.pc_cid);
1997c478bd9Sstevel@tonic-gate 		if (error)
2007c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2017c478bd9Sstevel@tonic-gate 
2027c478bd9Sstevel@tonic-gate 		/*
2037c478bd9Sstevel@tonic-gate 		 * Can't get info about the sys class.
2047c478bd9Sstevel@tonic-gate 		 */
2057c478bd9Sstevel@tonic-gate 		if (pcinfo.pc_cid == 0)
2067c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
2077c478bd9Sstevel@tonic-gate 
2087c478bd9Sstevel@tonic-gate 		/*
2097c478bd9Sstevel@tonic-gate 		 * Get the class specific information.
2107c478bd9Sstevel@tonic-gate 		 * we MUST make sure that the class has not already
2117c478bd9Sstevel@tonic-gate 		 * been unloaded before we try the CL_GETCLINFO.
2127c478bd9Sstevel@tonic-gate 		 * If it has then we need to load it.
2137c478bd9Sstevel@tonic-gate 		 */
2147c478bd9Sstevel@tonic-gate 		error =
2157c478bd9Sstevel@tonic-gate 		    scheduler_load(pcinfo.pc_clname, &sclass[pcinfo.pc_cid]);
2167c478bd9Sstevel@tonic-gate 		if (error)
2177c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2187c478bd9Sstevel@tonic-gate 		error = CL_GETCLINFO(&sclass[pcinfo.pc_cid], pcinfo.pc_clinfo);
2197c478bd9Sstevel@tonic-gate 		if (error)
2207c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2217c478bd9Sstevel@tonic-gate 
2229acbbeafSnn 		if ((*copyoutfn)(&pcinfo, arg, sizeof (pcinfo)))
2237c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
2247c478bd9Sstevel@tonic-gate 
2257c478bd9Sstevel@tonic-gate 		rv = loaded_classes;
2267c478bd9Sstevel@tonic-gate 
2277c478bd9Sstevel@tonic-gate 		break;
2287c478bd9Sstevel@tonic-gate 
2297c478bd9Sstevel@tonic-gate 	case PC_GETCLINFO:
2307c478bd9Sstevel@tonic-gate 		/*
2317c478bd9Sstevel@tonic-gate 		 * If the arg pointer is NULL, the user just wants to know
2327c478bd9Sstevel@tonic-gate 		 * the number of classes. If non-NULL, the pointer should
2337c478bd9Sstevel@tonic-gate 		 * point to a valid user pcinfo buffer.
2347c478bd9Sstevel@tonic-gate 		 */
2357c478bd9Sstevel@tonic-gate 		if (arg == NULL) {
2367c478bd9Sstevel@tonic-gate 			rv = loaded_classes;
2377c478bd9Sstevel@tonic-gate 			break;
2387c478bd9Sstevel@tonic-gate 		} else {
2399acbbeafSnn 			if ((*copyinfn)(arg, &pcinfo, sizeof (pcinfo)))
2407c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
2417c478bd9Sstevel@tonic-gate 		}
2427c478bd9Sstevel@tonic-gate 
2437c478bd9Sstevel@tonic-gate 		if (pcinfo.pc_cid >= loaded_classes || pcinfo.pc_cid < 1)
2447c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
2457c478bd9Sstevel@tonic-gate 
2467c478bd9Sstevel@tonic-gate 		(void) strncpy(pcinfo.pc_clname, sclass[pcinfo.pc_cid].cl_name,
2477c478bd9Sstevel@tonic-gate 		    PC_CLNMSZ);
2487c478bd9Sstevel@tonic-gate 
2497c478bd9Sstevel@tonic-gate 		/*
2507c478bd9Sstevel@tonic-gate 		 * Get the class specific information.  we MUST make sure
2517c478bd9Sstevel@tonic-gate 		 * that the class has not already been unloaded before we
2527c478bd9Sstevel@tonic-gate 		 * try the CL_GETCLINFO.  If it has then we need to load
2537c478bd9Sstevel@tonic-gate 		 * it.
2547c478bd9Sstevel@tonic-gate 		 */
2557c478bd9Sstevel@tonic-gate 		error =
2567c478bd9Sstevel@tonic-gate 		    scheduler_load(pcinfo.pc_clname, &sclass[pcinfo.pc_cid]);
2577c478bd9Sstevel@tonic-gate 		if (error)
2587c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2597c478bd9Sstevel@tonic-gate 		error = CL_GETCLINFO(&sclass[pcinfo.pc_cid], pcinfo.pc_clinfo);
2607c478bd9Sstevel@tonic-gate 		if (error)
2617c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2627c478bd9Sstevel@tonic-gate 
2639acbbeafSnn 		if ((*copyoutfn)(&pcinfo, arg, sizeof (pcinfo)))
2647c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
2657c478bd9Sstevel@tonic-gate 
2667c478bd9Sstevel@tonic-gate 		rv = loaded_classes;
2677c478bd9Sstevel@tonic-gate 		break;
2687c478bd9Sstevel@tonic-gate 
2697c478bd9Sstevel@tonic-gate 	case PC_SETPARMS:
2707c478bd9Sstevel@tonic-gate 	case PC_SETXPARMS:
2717c478bd9Sstevel@tonic-gate 		/*
2727c478bd9Sstevel@tonic-gate 		 * First check the validity of the parameters we got from
2737c478bd9Sstevel@tonic-gate 		 * the user.  We don't do any permissions checking here
2747c478bd9Sstevel@tonic-gate 		 * because it's done on a per thread basis by parmsset().
2757c478bd9Sstevel@tonic-gate 		 */
2767c478bd9Sstevel@tonic-gate 		if (cmd == PC_SETPARMS) {
2779acbbeafSnn 			if ((*copyinfn)(arg, &pcparms, sizeof (pcparms)))
2787c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
2797c478bd9Sstevel@tonic-gate 
2807c478bd9Sstevel@tonic-gate 			error = parmsin(&pcparms, NULL);
2817c478bd9Sstevel@tonic-gate 		} else {
2829acbbeafSnn 			if ((*copyinfn)(arg, clname, PC_CLNMSZ) ||
2839acbbeafSnn 			    COPYIN_VAPARMS(arg2, &vaparms, sizeof (vaparms),
2849acbbeafSnn 			    seg))
2857c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
2867c478bd9Sstevel@tonic-gate 			clname[PC_CLNMSZ-1] = '\0';
2877c478bd9Sstevel@tonic-gate 
2887c478bd9Sstevel@tonic-gate 			if (getcid(clname, &pcparms.pc_cid))
2897c478bd9Sstevel@tonic-gate 				return (set_errno(EINVAL));
2907c478bd9Sstevel@tonic-gate 
2917c478bd9Sstevel@tonic-gate 			error = parmsin(&pcparms, &vaparms);
2927c478bd9Sstevel@tonic-gate 		}
2937c478bd9Sstevel@tonic-gate 
2947c478bd9Sstevel@tonic-gate 		if (error)
2957c478bd9Sstevel@tonic-gate 			return (set_errno(error));
2967c478bd9Sstevel@tonic-gate 
2977c478bd9Sstevel@tonic-gate 		/*
2987c478bd9Sstevel@tonic-gate 		 * Get the procset from the user.
2997c478bd9Sstevel@tonic-gate 		 */
3009acbbeafSnn 		if ((*copyinfn)(psp, &procset, sizeof (procset)))
3017c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
3027c478bd9Sstevel@tonic-gate 
3037c478bd9Sstevel@tonic-gate 		/*
3047c478bd9Sstevel@tonic-gate 		 * For performance we do a quick check here to catch
3057c478bd9Sstevel@tonic-gate 		 * common cases where the current thread is the only one
3067c478bd9Sstevel@tonic-gate 		 * in the set.  In such cases we can call parmsset()
3077c478bd9Sstevel@tonic-gate 		 * directly, avoiding the relatively lengthy path through
3087c478bd9Sstevel@tonic-gate 		 * dotoprocs().  The underlying classes expect pidlock to
3097c478bd9Sstevel@tonic-gate 		 * be held.
3107c478bd9Sstevel@tonic-gate 		 */
3117c478bd9Sstevel@tonic-gate 		if (cur_inset_only(&procset) == B_TRUE) {
3127c478bd9Sstevel@tonic-gate 			/* do a single LWP */
3137c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype == P_LWPID) ||
3147c478bd9Sstevel@tonic-gate 			    (procset.p_ridtype == P_LWPID)) {
3157c478bd9Sstevel@tonic-gate 				mutex_enter(&pidlock);
3167c478bd9Sstevel@tonic-gate 				mutex_enter(&curproc->p_lock);
3177c478bd9Sstevel@tonic-gate 				error = parmsset(&pcparms, curthread);
3187c478bd9Sstevel@tonic-gate 				mutex_exit(&curproc->p_lock);
3197c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
3207c478bd9Sstevel@tonic-gate 			} else {
3217c478bd9Sstevel@tonic-gate 				/* do the entire process otherwise */
3227c478bd9Sstevel@tonic-gate 				stprmargs.stp_parmsp = &pcparms;
3237c478bd9Sstevel@tonic-gate 				stprmargs.stp_error = 0;
3247c478bd9Sstevel@tonic-gate 				mutex_enter(&pidlock);
3257c478bd9Sstevel@tonic-gate 				error = setparms(curproc, &stprmargs);
3267c478bd9Sstevel@tonic-gate 				mutex_exit(&pidlock);
3277c478bd9Sstevel@tonic-gate 				if (error == 0 && stprmargs.stp_error != 0)
3287c478bd9Sstevel@tonic-gate 					error = stprmargs.stp_error;
3297c478bd9Sstevel@tonic-gate 			}
3307c478bd9Sstevel@tonic-gate 			if (error)
3317c478bd9Sstevel@tonic-gate 				return (set_errno(error));
3327c478bd9Sstevel@tonic-gate 		} else {
3337c478bd9Sstevel@tonic-gate 			stprmargs.stp_parmsp = &pcparms;
3347c478bd9Sstevel@tonic-gate 			stprmargs.stp_error = 0;
3357c478bd9Sstevel@tonic-gate 
3367c478bd9Sstevel@tonic-gate 			error1 = error = ESRCH;
3377c478bd9Sstevel@tonic-gate 
3387c478bd9Sstevel@tonic-gate 			/*
3397c478bd9Sstevel@tonic-gate 			 * The dotoprocs() call below will cause
3407c478bd9Sstevel@tonic-gate 			 * setparms() to be called for each thread in the
3417c478bd9Sstevel@tonic-gate 			 * specified procset. setparms() will in turn
3427c478bd9Sstevel@tonic-gate 			 * call parmsset() (which does the real work).
3437c478bd9Sstevel@tonic-gate 			 */
3447c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype != P_LWPID) ||
345d4204c85Sraf 			    (procset.p_ridtype != P_LWPID)) {
3467c478bd9Sstevel@tonic-gate 				error1 = dotoprocs(&procset, setparms,
3477c478bd9Sstevel@tonic-gate 				    (char *)&stprmargs);
3487c478bd9Sstevel@tonic-gate 			}
3497c478bd9Sstevel@tonic-gate 
3507c478bd9Sstevel@tonic-gate 			/*
3517c478bd9Sstevel@tonic-gate 			 * take care of the case when any of the
3527c478bd9Sstevel@tonic-gate 			 * operands happen to be LWP's
3537c478bd9Sstevel@tonic-gate 			 */
3547c478bd9Sstevel@tonic-gate 
3557c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype == P_LWPID) ||
3567c478bd9Sstevel@tonic-gate 			    (procset.p_ridtype == P_LWPID)) {
3577c478bd9Sstevel@tonic-gate 				error = dotolwp(&procset, parmsset,
3587c478bd9Sstevel@tonic-gate 				    (char *)&pcparms);
3597c478bd9Sstevel@tonic-gate 				/*
3607c478bd9Sstevel@tonic-gate 				 * Dotolwp() returns with p_lock held.
3617c478bd9Sstevel@tonic-gate 				 * This is required for the GETPARMS case
3627c478bd9Sstevel@tonic-gate 				 * below. So, here we just release the
3637c478bd9Sstevel@tonic-gate 				 * p_lock.
3647c478bd9Sstevel@tonic-gate 				 */
3657c478bd9Sstevel@tonic-gate 				if (MUTEX_HELD(&curproc->p_lock))
3667c478bd9Sstevel@tonic-gate 					mutex_exit(&curproc->p_lock);
3677c478bd9Sstevel@tonic-gate 			}
3687c478bd9Sstevel@tonic-gate 
3697c478bd9Sstevel@tonic-gate 			/*
3707c478bd9Sstevel@tonic-gate 			 * If setparms() encounters a permissions error
3717c478bd9Sstevel@tonic-gate 			 * for one or more of the threads it returns
3727c478bd9Sstevel@tonic-gate 			 * EPERM in stp_error so dotoprocs() will
3737c478bd9Sstevel@tonic-gate 			 * continue through the thread set.  If
3747c478bd9Sstevel@tonic-gate 			 * dotoprocs() returned an error above, it was
3757c478bd9Sstevel@tonic-gate 			 * more serious than permissions and dotoprocs
3767c478bd9Sstevel@tonic-gate 			 * quit when the error was encountered.  We
3777c478bd9Sstevel@tonic-gate 			 * return the more serious error if there was
3787c478bd9Sstevel@tonic-gate 			 * one, otherwise we return EPERM if we got that
3797c478bd9Sstevel@tonic-gate 			 * back.
3807c478bd9Sstevel@tonic-gate 			 */
3817c478bd9Sstevel@tonic-gate 			if (error1 != ESRCH)
3827c478bd9Sstevel@tonic-gate 				error = error1;
3837c478bd9Sstevel@tonic-gate 			if (error == 0 && stprmargs.stp_error != 0)
3847c478bd9Sstevel@tonic-gate 				error = stprmargs.stp_error;
3857c478bd9Sstevel@tonic-gate 		}
3867c478bd9Sstevel@tonic-gate 		break;
3877c478bd9Sstevel@tonic-gate 
3887c478bd9Sstevel@tonic-gate 	case PC_GETPARMS:
3897c478bd9Sstevel@tonic-gate 	case PC_GETXPARMS:
3907c478bd9Sstevel@tonic-gate 		if (cmd == PC_GETPARMS) {
3919acbbeafSnn 			if ((*copyinfn)(arg, &pcparms, sizeof (pcparms)))
3927c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
3937c478bd9Sstevel@tonic-gate 		} else {
3947c478bd9Sstevel@tonic-gate 			if (arg != NULL) {
3959acbbeafSnn 				if ((*copyinfn)(arg, clname, PC_CLNMSZ))
3967c478bd9Sstevel@tonic-gate 					return (set_errno(EFAULT));
3977c478bd9Sstevel@tonic-gate 
3987c478bd9Sstevel@tonic-gate 				clname[PC_CLNMSZ-1] = '\0';
3997c478bd9Sstevel@tonic-gate 
4007c478bd9Sstevel@tonic-gate 				if (getcid(clname, &pcparms.pc_cid))
4017c478bd9Sstevel@tonic-gate 					return (set_errno(EINVAL));
4027c478bd9Sstevel@tonic-gate 			} else
4037c478bd9Sstevel@tonic-gate 				pcparms.pc_cid = PC_CLNULL;
4049acbbeafSnn 
4059acbbeafSnn 			if (COPYIN_VAPARMS(arg2, &vaparms, sizeof (vaparms),
4069acbbeafSnn 			    seg))
4077c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
4087c478bd9Sstevel@tonic-gate 		}
4097c478bd9Sstevel@tonic-gate 
4107c478bd9Sstevel@tonic-gate 		if (pcparms.pc_cid >= loaded_classes ||
4117c478bd9Sstevel@tonic-gate 		    (pcparms.pc_cid < 1 && pcparms.pc_cid != PC_CLNULL))
4127c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
4137c478bd9Sstevel@tonic-gate 
4149acbbeafSnn 		if ((*copyinfn)(psp, &procset, sizeof (procset)))
4157c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
4167c478bd9Sstevel@tonic-gate 
4177c478bd9Sstevel@tonic-gate 		/*
4187c478bd9Sstevel@tonic-gate 		 * Check to see if the current thread is the only one
4197c478bd9Sstevel@tonic-gate 		 * in the set. If not we must go through the whole set
4207c478bd9Sstevel@tonic-gate 		 * to select a thread.
4217c478bd9Sstevel@tonic-gate 		 */
4227c478bd9Sstevel@tonic-gate 		if (cur_inset_only(&procset) == B_TRUE) {
4237c478bd9Sstevel@tonic-gate 			/* do a single LWP */
4247c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype == P_LWPID) ||
4257c478bd9Sstevel@tonic-gate 			    (procset.p_ridtype == P_LWPID)) {
4267c478bd9Sstevel@tonic-gate 				if (pcparms.pc_cid != PC_CLNULL &&
4277c478bd9Sstevel@tonic-gate 				    pcparms.pc_cid != curthread->t_cid) {
4287c478bd9Sstevel@tonic-gate 					/*
4297c478bd9Sstevel@tonic-gate 					 * Specified thread not in
4307c478bd9Sstevel@tonic-gate 					 * specified class.
4317c478bd9Sstevel@tonic-gate 					 */
4327c478bd9Sstevel@tonic-gate 					return (set_errno(ESRCH));
4337c478bd9Sstevel@tonic-gate 				} else {
4347c478bd9Sstevel@tonic-gate 					mutex_enter(&curproc->p_lock);
4357c478bd9Sstevel@tonic-gate 					retthreadp = curthread;
4367c478bd9Sstevel@tonic-gate 				}
4377c478bd9Sstevel@tonic-gate 			} else {
4387c478bd9Sstevel@tonic-gate 				count = 0;
4397c478bd9Sstevel@tonic-gate 				retthreadp = NULL;
4407c478bd9Sstevel@tonic-gate 				pcmpargs.pcmp_cidp = &pcparms.pc_cid;
4417c478bd9Sstevel@tonic-gate 				pcmpargs.pcmp_cntp = &count;
4427c478bd9Sstevel@tonic-gate 				pcmpargs.pcmp_retthreadp = &retthreadp;
4437c478bd9Sstevel@tonic-gate 				/*
4447c478bd9Sstevel@tonic-gate 				 * Specified thread not in specified class.
4457c478bd9Sstevel@tonic-gate 				 */
4467c478bd9Sstevel@tonic-gate 				if (pcparms.pc_cid != PC_CLNULL &&
4477c478bd9Sstevel@tonic-gate 				    pcparms.pc_cid != curthread->t_cid)
4487c478bd9Sstevel@tonic-gate 					return (set_errno(ESRCH));
4497c478bd9Sstevel@tonic-gate 				error = proccmp(curproc, &pcmpargs);
4507c478bd9Sstevel@tonic-gate 				if (error) {
4517c478bd9Sstevel@tonic-gate 					if (retthreadp != NULL)
4527c478bd9Sstevel@tonic-gate 						mutex_exit(&(curproc->p_lock));
4537c478bd9Sstevel@tonic-gate 					return (set_errno(error));
4547c478bd9Sstevel@tonic-gate 				}
4557c478bd9Sstevel@tonic-gate 			}
4567c478bd9Sstevel@tonic-gate 		} else {
4577c478bd9Sstevel@tonic-gate 			/*
4587c478bd9Sstevel@tonic-gate 			 * get initpp early to avoid lock ordering problems
4597c478bd9Sstevel@tonic-gate 			 * (we cannot get pidlock while holding any p_lock).
4607c478bd9Sstevel@tonic-gate 			 */
4617c478bd9Sstevel@tonic-gate 			mutex_enter(&pidlock);
4627c478bd9Sstevel@tonic-gate 			initpp = prfind(P_INITPID);
4637c478bd9Sstevel@tonic-gate 			mutex_exit(&pidlock);
4647c478bd9Sstevel@tonic-gate 
4657c478bd9Sstevel@tonic-gate 			/*
4667c478bd9Sstevel@tonic-gate 			 * Select the thread (from the set) whose
4677c478bd9Sstevel@tonic-gate 			 * parameters we are going to return.  First we
4687c478bd9Sstevel@tonic-gate 			 * set up some locations for return values, then
4697c478bd9Sstevel@tonic-gate 			 * we call proccmp() indirectly through
4707c478bd9Sstevel@tonic-gate 			 * dotoprocs().  proccmp() will call a class
4717c478bd9Sstevel@tonic-gate 			 * specific routine which actually does the
4727c478bd9Sstevel@tonic-gate 			 * selection.  To understand how this works take
4737c478bd9Sstevel@tonic-gate 			 * a careful look at the code below, the
4747c478bd9Sstevel@tonic-gate 			 * dotoprocs() function, the proccmp() function,
4757c478bd9Sstevel@tonic-gate 			 * and the class specific cl_proccmp() functions.
4767c478bd9Sstevel@tonic-gate 			 */
4777c478bd9Sstevel@tonic-gate 			if (pcparms.pc_cid == PC_CLNULL)
4787c478bd9Sstevel@tonic-gate 				clnullflag = 1;
4797c478bd9Sstevel@tonic-gate 			else
4807c478bd9Sstevel@tonic-gate 				clnullflag = 0;
4817c478bd9Sstevel@tonic-gate 			count = 0;
4827c478bd9Sstevel@tonic-gate 			retthreadp = NULL;
4837c478bd9Sstevel@tonic-gate 			pcmpargs.pcmp_cidp = &pcparms.pc_cid;
4847c478bd9Sstevel@tonic-gate 			pcmpargs.pcmp_cntp = &count;
4857c478bd9Sstevel@tonic-gate 			pcmpargs.pcmp_retthreadp = &retthreadp;
4867c478bd9Sstevel@tonic-gate 			error1 = error = ESRCH;
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype != P_LWPID) ||
4897c478bd9Sstevel@tonic-gate 			    (procset.p_ridtype != P_LWPID)) {
4907c478bd9Sstevel@tonic-gate 				error1 = dotoprocs(&procset, proccmp,
4917c478bd9Sstevel@tonic-gate 				    (char *)&pcmpargs);
4927c478bd9Sstevel@tonic-gate 			}
4937c478bd9Sstevel@tonic-gate 
4947c478bd9Sstevel@tonic-gate 			/*
4957c478bd9Sstevel@tonic-gate 			 * take care of combination of LWP and process
4967c478bd9Sstevel@tonic-gate 			 * set case in a procset
4977c478bd9Sstevel@tonic-gate 			 */
4987c478bd9Sstevel@tonic-gate 			if ((procset.p_lidtype == P_LWPID) ||
4997c478bd9Sstevel@tonic-gate 			    (procset.p_ridtype == P_LWPID)) {
5007c478bd9Sstevel@tonic-gate 				error = dotolwp(&procset, threadcmp,
5017c478bd9Sstevel@tonic-gate 				    (char *)&pcmpargs);
5027c478bd9Sstevel@tonic-gate 			}
5037c478bd9Sstevel@tonic-gate 
5047c478bd9Sstevel@tonic-gate 			/*
5057c478bd9Sstevel@tonic-gate 			 * Both proccmp() and threadcmp() return with the
5067c478bd9Sstevel@tonic-gate 			 * p_lock held for the ttoproc(retthreadp). This
5077c478bd9Sstevel@tonic-gate 			 * is required to make sure that the process we
5087c478bd9Sstevel@tonic-gate 			 * chose as the winner doesn't go away
5097c478bd9Sstevel@tonic-gate 			 * i.e. retthreadp has to be a valid pointer.
5107c478bd9Sstevel@tonic-gate 			 *
5117c478bd9Sstevel@tonic-gate 			 * The case below can only happen if the thread
5127c478bd9Sstevel@tonic-gate 			 * with the highest priority was not in your
5137c478bd9Sstevel@tonic-gate 			 * process.  In that case, dotolwp will return
5147c478bd9Sstevel@tonic-gate 			 * holding p_lock for both your process as well
5157c478bd9Sstevel@tonic-gate 			 * as the process in which retthreadp is a
5167c478bd9Sstevel@tonic-gate 			 * thread.
5177c478bd9Sstevel@tonic-gate 			 */
5187c478bd9Sstevel@tonic-gate 			if ((retthreadp != NULL) &&
5197c478bd9Sstevel@tonic-gate 			    (ttoproc(retthreadp) != curproc) &&
5207c478bd9Sstevel@tonic-gate 			    MUTEX_HELD(&(curproc)->p_lock))
5217c478bd9Sstevel@tonic-gate 				mutex_exit(&(curproc)->p_lock);
5227c478bd9Sstevel@tonic-gate 
5237c478bd9Sstevel@tonic-gate 			ASSERT(retthreadp == NULL ||
5247c478bd9Sstevel@tonic-gate 			    MUTEX_HELD(&(ttoproc(retthreadp)->p_lock)));
5257c478bd9Sstevel@tonic-gate 			if (error1 != ESRCH)
5267c478bd9Sstevel@tonic-gate 				error = error1;
5277c478bd9Sstevel@tonic-gate 			if (error) {
5287c478bd9Sstevel@tonic-gate 				if (retthreadp != NULL)
529d4204c85Sraf 				    /* CSTYLED */
5307c478bd9Sstevel@tonic-gate 				    mutex_exit(&(ttoproc(retthreadp)->p_lock));
5317c478bd9Sstevel@tonic-gate 				ASSERT(MUTEX_NOT_HELD(&(curproc)->p_lock));
5327c478bd9Sstevel@tonic-gate 				return (set_errno(error));
5337c478bd9Sstevel@tonic-gate 			}
5347c478bd9Sstevel@tonic-gate 			/*
5357c478bd9Sstevel@tonic-gate 			 * dotoprocs() ignores the init process if it is
5367c478bd9Sstevel@tonic-gate 			 * in the set, unless it was the only process found.
5377c478bd9Sstevel@tonic-gate 			 * Since we are getting parameters here rather than
5387c478bd9Sstevel@tonic-gate 			 * setting them, we want to make sure init is not
5397c478bd9Sstevel@tonic-gate 			 * excluded if it is in the set.
5407c478bd9Sstevel@tonic-gate 			 */
541def11082Srh 			if (initpp != NULL && retthreadp != NULL &&
542def11082Srh 			    ttoproc(retthreadp) != initpp) {
543def11082Srh 				mutex_enter(&initpp->p_lock);
544def11082Srh 				if (procinset(initpp, &procset)) {
545def11082Srh 					mutex_exit(&initpp->p_lock);
546def11082Srh 					(void) proccmp(initpp, &pcmpargs);
547def11082Srh 				} else {
548def11082Srh 					mutex_exit(&initpp->p_lock);
549def11082Srh 				}
550def11082Srh 			}
5517c478bd9Sstevel@tonic-gate 
5527c478bd9Sstevel@tonic-gate 			/*
5537c478bd9Sstevel@tonic-gate 			 * If dotoprocs returned success it found at least
5547c478bd9Sstevel@tonic-gate 			 * one thread in the set.  If proccmp() failed to
5557c478bd9Sstevel@tonic-gate 			 * select a thread it is because the user specified
5567c478bd9Sstevel@tonic-gate 			 * a class and none of the threads in the set
5577c478bd9Sstevel@tonic-gate 			 * belonged to that class, or because the process
5587c478bd9Sstevel@tonic-gate 			 * specified was in the middle of exiting and had
5597c478bd9Sstevel@tonic-gate 			 * cleared its thread list.
5607c478bd9Sstevel@tonic-gate 			 */
5617c478bd9Sstevel@tonic-gate 			if (retthreadp == NULL) {
5627c478bd9Sstevel@tonic-gate 				/*
5637c478bd9Sstevel@tonic-gate 				 * Might be here and still holding p_lock
5647c478bd9Sstevel@tonic-gate 				 * if we did a dotolwp on an lwp that
5657c478bd9Sstevel@tonic-gate 				 * existed but was in the wrong class.
5667c478bd9Sstevel@tonic-gate 				 */
5677c478bd9Sstevel@tonic-gate 				if (MUTEX_HELD(&(curproc)->p_lock))
5687c478bd9Sstevel@tonic-gate 					mutex_exit(&(curproc)->p_lock);
5697c478bd9Sstevel@tonic-gate 				return (set_errno(ESRCH));
5707c478bd9Sstevel@tonic-gate 			}
5717c478bd9Sstevel@tonic-gate 
5727c478bd9Sstevel@tonic-gate 			/*
5737c478bd9Sstevel@tonic-gate 			 * User can only use PC_CLNULL with one thread in set.
5747c478bd9Sstevel@tonic-gate 			 */
5757c478bd9Sstevel@tonic-gate 			if (clnullflag && count > 1) {
5767c478bd9Sstevel@tonic-gate 				if (retthreadp != NULL)
5777c478bd9Sstevel@tonic-gate 					mutex_exit(
5787c478bd9Sstevel@tonic-gate 					    &(ttoproc(retthreadp)->p_lock));
5797c478bd9Sstevel@tonic-gate 				ASSERT(MUTEX_NOT_HELD(&(curproc)->p_lock));
5807c478bd9Sstevel@tonic-gate 				return (set_errno(EINVAL));
5817c478bd9Sstevel@tonic-gate 			}
5827c478bd9Sstevel@tonic-gate 		}
5837c478bd9Sstevel@tonic-gate 
5847c478bd9Sstevel@tonic-gate 		ASSERT(retthreadp == NULL ||
5857c478bd9Sstevel@tonic-gate 		    MUTEX_HELD(&(ttoproc(retthreadp)->p_lock)));
5867c478bd9Sstevel@tonic-gate 		/*
5877c478bd9Sstevel@tonic-gate 		 * It is possible to have retthreadp == NULL. Proccmp()
5887c478bd9Sstevel@tonic-gate 		 * in the rare case (p_tlist == NULL) could return without
5897c478bd9Sstevel@tonic-gate 		 * setting a value for retthreadp.
5907c478bd9Sstevel@tonic-gate 		 */
5917c478bd9Sstevel@tonic-gate 		if (retthreadp == NULL) {
5927c478bd9Sstevel@tonic-gate 			ASSERT(MUTEX_NOT_HELD(&(curproc)->p_lock));
5937c478bd9Sstevel@tonic-gate 			return (set_errno(ESRCH));
5947c478bd9Sstevel@tonic-gate 		}
5957c478bd9Sstevel@tonic-gate 		/*
5967c478bd9Sstevel@tonic-gate 		 * We've selected a thread so now get the parameters.
5977c478bd9Sstevel@tonic-gate 		 */
5987c478bd9Sstevel@tonic-gate 		parmsget(retthreadp, &pcparms);
5997c478bd9Sstevel@tonic-gate 
6007c478bd9Sstevel@tonic-gate 		/*
6017c478bd9Sstevel@tonic-gate 		 * Prepare to return parameters to the user
6027c478bd9Sstevel@tonic-gate 		 */
6037c478bd9Sstevel@tonic-gate 		error = parmsout(&pcparms,
6047c478bd9Sstevel@tonic-gate 		    (cmd == PC_GETPARMS ? NULL : &vaparms));
6057c478bd9Sstevel@tonic-gate 
6067c478bd9Sstevel@tonic-gate 		/*
6077c478bd9Sstevel@tonic-gate 		 * Save pid of selected thread before dropping p_lock.
6087c478bd9Sstevel@tonic-gate 		 */
6097c478bd9Sstevel@tonic-gate 		saved_pid = ttoproc(retthreadp)->p_pid;
6107c478bd9Sstevel@tonic-gate 		mutex_exit(&(ttoproc(retthreadp)->p_lock));
6117c478bd9Sstevel@tonic-gate 		ASSERT(MUTEX_NOT_HELD(&curproc->p_lock));
6127c478bd9Sstevel@tonic-gate 
6137c478bd9Sstevel@tonic-gate 		if (error)
6147c478bd9Sstevel@tonic-gate 			return (set_errno(error));
6157c478bd9Sstevel@tonic-gate 
6167c478bd9Sstevel@tonic-gate 		if (cmd == PC_GETPARMS) {
6179acbbeafSnn 			if ((*copyoutfn)(&pcparms, arg, sizeof (pcparms)))
6187c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
6199acbbeafSnn 		} else if ((error = vaparmsout(arg, &pcparms, &vaparms,
6209acbbeafSnn 		    seg)) != 0)
6217c478bd9Sstevel@tonic-gate 			return (set_errno(error));
6227c478bd9Sstevel@tonic-gate 
6237c478bd9Sstevel@tonic-gate 		/*
6247c478bd9Sstevel@tonic-gate 		 * And finally, return the pid of the selected thread.
6257c478bd9Sstevel@tonic-gate 		 */
6267c478bd9Sstevel@tonic-gate 		rv = saved_pid;
6277c478bd9Sstevel@tonic-gate 		break;
6287c478bd9Sstevel@tonic-gate 
6297c478bd9Sstevel@tonic-gate 	case PC_ADMIN:
6307c478bd9Sstevel@tonic-gate 		if (get_udatamodel() == DATAMODEL_NATIVE) {
6319acbbeafSnn 			if ((*copyinfn)(arg, &pcadmin, sizeof (pcadmin_t)))
6327c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
6337c478bd9Sstevel@tonic-gate #ifdef _SYSCALL32_IMPL
6347c478bd9Sstevel@tonic-gate 		} else {
6357c478bd9Sstevel@tonic-gate 			/* pcadmin struct from ILP32 callers */
6367c478bd9Sstevel@tonic-gate 			pcadmin32_t pcadmin32;
6377c478bd9Sstevel@tonic-gate 
6389acbbeafSnn 			if ((*copyinfn)(arg, &pcadmin32, sizeof (pcadmin32_t)))
6397c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
6407c478bd9Sstevel@tonic-gate 			pcadmin.pc_cid = pcadmin32.pc_cid;
6417c478bd9Sstevel@tonic-gate 			pcadmin.pc_cladmin = (caddr_t)(uintptr_t)
6427c478bd9Sstevel@tonic-gate 			    pcadmin32.pc_cladmin;
6437c478bd9Sstevel@tonic-gate #endif /* _SYSCALL32_IMPL */
6447c478bd9Sstevel@tonic-gate 		}
6457c478bd9Sstevel@tonic-gate 
6467c478bd9Sstevel@tonic-gate 		if (pcadmin.pc_cid >= loaded_classes ||
6477c478bd9Sstevel@tonic-gate 		    pcadmin.pc_cid < 1)
6487c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
6497c478bd9Sstevel@tonic-gate 
6507c478bd9Sstevel@tonic-gate 		/*
6517c478bd9Sstevel@tonic-gate 		 * Have the class do whatever the user is requesting.
6527c478bd9Sstevel@tonic-gate 		 */
6537c478bd9Sstevel@tonic-gate 		mutex_enter(&ualock);
6547c478bd9Sstevel@tonic-gate 		error = CL_ADMIN(&sclass[pcadmin.pc_cid], pcadmin.pc_cladmin,
655d4204c85Sraf 		    CRED());
6567c478bd9Sstevel@tonic-gate 		mutex_exit(&ualock);
6577c478bd9Sstevel@tonic-gate 		break;
6587c478bd9Sstevel@tonic-gate 
6597c478bd9Sstevel@tonic-gate 	case PC_GETPRIRANGE:
6609acbbeafSnn 		if ((*copyinfn)(arg, &pcpri, sizeof (pcpri_t)))
6617c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
6627c478bd9Sstevel@tonic-gate 
6637c478bd9Sstevel@tonic-gate 		if (pcpri.pc_cid >= loaded_classes || pcpri.pc_cid < 0)
6647c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
6657c478bd9Sstevel@tonic-gate 
6667c478bd9Sstevel@tonic-gate 		error = CL_GETCLPRI(&sclass[pcpri.pc_cid], &pcpri);
6677c478bd9Sstevel@tonic-gate 		if (!error) {
6689acbbeafSnn 			if ((*copyoutfn)(&pcpri, arg, sizeof (pcpri)))
6697c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
6707c478bd9Sstevel@tonic-gate 		}
6717c478bd9Sstevel@tonic-gate 		break;
6727c478bd9Sstevel@tonic-gate 
6737c478bd9Sstevel@tonic-gate 	case PC_DONICE:
6747c478bd9Sstevel@tonic-gate 		/*
6757c478bd9Sstevel@tonic-gate 		 * Get pcnice and procset structures from the user.
6767c478bd9Sstevel@tonic-gate 		 */
6779acbbeafSnn 		if ((*copyinfn)(arg, &pcnice, sizeof (pcnice)) ||
6789acbbeafSnn 		    (*copyinfn)(psp, &procset, sizeof (procset)))
6797c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
6807c478bd9Sstevel@tonic-gate 
6817c478bd9Sstevel@tonic-gate 		error = donice(&procset, &pcnice);
6827c478bd9Sstevel@tonic-gate 
6837c478bd9Sstevel@tonic-gate 		if (!error && (pcnice.pc_op == PC_GETNICE)) {
6849acbbeafSnn 			if ((*copyoutfn)(&pcnice, arg, sizeof (pcnice)))
6857c478bd9Sstevel@tonic-gate 				return (set_errno(EFAULT));
6867c478bd9Sstevel@tonic-gate 		}
6877c478bd9Sstevel@tonic-gate 		break;
6887c478bd9Sstevel@tonic-gate 
689d4204c85Sraf 	case PC_DOPRIO:
690d4204c85Sraf 		/*
691d4204c85Sraf 		 * Get pcprio and procset structures from the user.
692d4204c85Sraf 		 */
693d4204c85Sraf 		if ((*copyinfn)(arg, &pcprio, sizeof (pcprio)) ||
694d4204c85Sraf 		    (*copyinfn)(psp, &procset, sizeof (procset)))
695d4204c85Sraf 			return (set_errno(EFAULT));
696d4204c85Sraf 
697d4204c85Sraf 		error = doprio(&procset, &pcprio);
698d4204c85Sraf 
699d4204c85Sraf 		if (!error && (pcprio.pc_op == PC_GETPRIO)) {
700d4204c85Sraf 			if ((*copyoutfn)(&pcprio, arg, sizeof (pcprio)))
701d4204c85Sraf 				return (set_errno(EFAULT));
702d4204c85Sraf 		}
703d4204c85Sraf 		break;
704d4204c85Sraf 
7057c478bd9Sstevel@tonic-gate 	case PC_SETDFLCL:
7067c478bd9Sstevel@tonic-gate 		if (secpolicy_dispadm(CRED()) != 0)
7077c478bd9Sstevel@tonic-gate 			return (set_errno(EPERM));
7087c478bd9Sstevel@tonic-gate 
7097c478bd9Sstevel@tonic-gate 		if (copyin(arg, (caddr_t)clname, PC_CLNMSZ) != 0)
7107c478bd9Sstevel@tonic-gate 			return (set_errno(EFAULT));
7117c478bd9Sstevel@tonic-gate 		clname[PC_CLNMSZ-1] = '\0';
7127c478bd9Sstevel@tonic-gate 
7137c478bd9Sstevel@tonic-gate 		if (getcid(clname, &classid) != 0)
7147c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
71535a5a358SJonathan Adams 		if (CLASS_KERNEL(classid))
7167c478bd9Sstevel@tonic-gate 			return (set_errno(EINVAL));
7177c478bd9Sstevel@tonic-gate 		defaultcid = classid;
7187c478bd9Sstevel@tonic-gate 		ASSERT(defaultcid > 0 && defaultcid < loaded_classes);
7197c478bd9Sstevel@tonic-gate 		break;
7207c478bd9Sstevel@tonic-gate 
7210209230bSgjelinek 	case PC_GETDFLCL:
7220209230bSgjelinek 		mutex_enter(&class_lock);
7230209230bSgjelinek 
7240209230bSgjelinek 		if (defaultcid >= loaded_classes)
7250209230bSgjelinek 			outstr = "";
7260209230bSgjelinek 		else
7270209230bSgjelinek 			outstr = sclass[defaultcid].cl_name;
7280209230bSgjelinek 		size = strlen(outstr) + 1;
7290209230bSgjelinek 		if (arg != NULL)
7300209230bSgjelinek 			if ((*copyoutfn)(outstr, arg, size) != 0)
7310209230bSgjelinek 				error = EFAULT;
7320209230bSgjelinek 
7330209230bSgjelinek 		mutex_exit(&class_lock);
7340209230bSgjelinek 		break;
7350209230bSgjelinek 
7367c478bd9Sstevel@tonic-gate 	default:
7377c478bd9Sstevel@tonic-gate 		error = EINVAL;
7387c478bd9Sstevel@tonic-gate 		break;
7397c478bd9Sstevel@tonic-gate 	}
7407c478bd9Sstevel@tonic-gate 	return (error ? (set_errno(error)) : rv);
7417c478bd9Sstevel@tonic-gate }
7427c478bd9Sstevel@tonic-gate 
7439acbbeafSnn long
priocntlsys(int pc_version,procset_t * psp,int cmd,caddr_t arg,caddr_t arg2)7449acbbeafSnn priocntlsys(int pc_version, procset_t *psp, int cmd, caddr_t arg, caddr_t arg2)
7459acbbeafSnn {
7469acbbeafSnn 	return (priocntl_common(pc_version, psp, cmd, arg, arg2,
7479acbbeafSnn 	    UIO_USERSPACE));
7489acbbeafSnn }
7497c478bd9Sstevel@tonic-gate 
7507c478bd9Sstevel@tonic-gate /*
7517c478bd9Sstevel@tonic-gate  * The proccmp() function is part of the implementation of the
7527c478bd9Sstevel@tonic-gate  * PC_GETPARMS command of the priocntl system call.  This function works
7537c478bd9Sstevel@tonic-gate  * with the system call code and with the class specific cl_globpri()
7547c478bd9Sstevel@tonic-gate  * function to select one thread from a specified procset based on class
7557c478bd9Sstevel@tonic-gate  * specific criteria. proccmp() is called indirectly from the priocntl
7567c478bd9Sstevel@tonic-gate  * code through the dotoprocs function.  Basic strategy is dotoprocs()
7577c478bd9Sstevel@tonic-gate  * calls us once for each thread in the set.  We in turn call the class
7587c478bd9Sstevel@tonic-gate  * specific function to compare the current thread from dotoprocs to the
7597c478bd9Sstevel@tonic-gate  * "best" (according to the class criteria) found so far.  We keep the
7607c478bd9Sstevel@tonic-gate  * "best" thread in *pcmp_retthreadp.
7617c478bd9Sstevel@tonic-gate  */
7627c478bd9Sstevel@tonic-gate static int
proccmp(proc_t * pp,struct pcmpargs * argp)7637c478bd9Sstevel@tonic-gate proccmp(proc_t *pp, struct pcmpargs *argp)
7647c478bd9Sstevel@tonic-gate {
765d4204c85Sraf 	kthread_t	*tx;
766d4204c85Sraf 	kthread_t	*ty;
7677c478bd9Sstevel@tonic-gate 	int		last_pri = -1;
7687c478bd9Sstevel@tonic-gate 	int		tx_pri;
7697c478bd9Sstevel@tonic-gate 	int		found = 0;
7707c478bd9Sstevel@tonic-gate 
7717c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
7727c478bd9Sstevel@tonic-gate 
7737c478bd9Sstevel@tonic-gate 	if (pp->p_tlist == NULL) {
7747c478bd9Sstevel@tonic-gate 		mutex_exit(&pp->p_lock);
7757c478bd9Sstevel@tonic-gate 		return (0);
7767c478bd9Sstevel@tonic-gate 	}
7777c478bd9Sstevel@tonic-gate 	(*argp->pcmp_cntp)++;	/* Increment count of procs in the set */
7787c478bd9Sstevel@tonic-gate 
7797c478bd9Sstevel@tonic-gate 	if (*argp->pcmp_cidp == PC_CLNULL) {
7807c478bd9Sstevel@tonic-gate 		/*
7817c478bd9Sstevel@tonic-gate 		 * If no cid is specified, then lets just pick the first one.
7827c478bd9Sstevel@tonic-gate 		 * It doesn't matter because if the number of processes in the
7837c478bd9Sstevel@tonic-gate 		 * set are more than 1, then we return EINVAL in priocntlsys.
7847c478bd9Sstevel@tonic-gate 		 */
7857c478bd9Sstevel@tonic-gate 		*argp->pcmp_cidp = pp->p_tlist->t_cid;
7867c478bd9Sstevel@tonic-gate 	}
7877c478bd9Sstevel@tonic-gate 	ty = tx = pp->p_tlist;
7887c478bd9Sstevel@tonic-gate 	do {
7897c478bd9Sstevel@tonic-gate 		if (tx->t_cid == *argp->pcmp_cidp) {
7907c478bd9Sstevel@tonic-gate 			/*
7917c478bd9Sstevel@tonic-gate 			 * We found one which matches the required cid.
7927c478bd9Sstevel@tonic-gate 			 */
7937c478bd9Sstevel@tonic-gate 			found = 1;
7947c478bd9Sstevel@tonic-gate 			if ((tx_pri = CL_GLOBPRI(tx)) > last_pri) {
7957c478bd9Sstevel@tonic-gate 				last_pri = tx_pri;
7967c478bd9Sstevel@tonic-gate 				ty = tx;
7977c478bd9Sstevel@tonic-gate 			}
7987c478bd9Sstevel@tonic-gate 		}
7997c478bd9Sstevel@tonic-gate 	} while ((tx = tx->t_forw) != pp->p_tlist);
8007c478bd9Sstevel@tonic-gate 	if (found) {
8017c478bd9Sstevel@tonic-gate 		if (*argp->pcmp_retthreadp == NULL) {
8027c478bd9Sstevel@tonic-gate 			/*
8037c478bd9Sstevel@tonic-gate 			 * First time through for this set.
804*48bbca81SDaniel Hoffman 			 * keep the mutex held. It might be the one!
8057c478bd9Sstevel@tonic-gate 			 */
8067c478bd9Sstevel@tonic-gate 			*argp->pcmp_retthreadp = ty;
8077c478bd9Sstevel@tonic-gate 		} else {
8087c478bd9Sstevel@tonic-gate 			tx = *argp->pcmp_retthreadp;
8097c478bd9Sstevel@tonic-gate 			if (CL_GLOBPRI(ty) <= CL_GLOBPRI(tx)) {
8107c478bd9Sstevel@tonic-gate 				mutex_exit(&pp->p_lock);
8117c478bd9Sstevel@tonic-gate 			} else {
8127c478bd9Sstevel@tonic-gate 				mutex_exit(&(ttoproc(tx)->p_lock));
8137c478bd9Sstevel@tonic-gate 				*argp->pcmp_retthreadp = ty;
8147c478bd9Sstevel@tonic-gate 			}
8157c478bd9Sstevel@tonic-gate 		}
8167c478bd9Sstevel@tonic-gate 	} else {
8177c478bd9Sstevel@tonic-gate 		/*
8187c478bd9Sstevel@tonic-gate 		 * We actually didn't find anything of the same cid in
8197c478bd9Sstevel@tonic-gate 		 * this process.
8207c478bd9Sstevel@tonic-gate 		 */
8217c478bd9Sstevel@tonic-gate 		mutex_exit(&pp->p_lock);
8227c478bd9Sstevel@tonic-gate 	}
8237c478bd9Sstevel@tonic-gate 	return (0);
8247c478bd9Sstevel@tonic-gate }
8257c478bd9Sstevel@tonic-gate 
8267c478bd9Sstevel@tonic-gate 
8277c478bd9Sstevel@tonic-gate int
threadcmp(struct pcmpargs * argp,kthread_t * tp)828d4204c85Sraf threadcmp(struct pcmpargs *argp, kthread_t *tp)
8297c478bd9Sstevel@tonic-gate {
830d4204c85Sraf 	kthread_t	*tx;
8317c478bd9Sstevel@tonic-gate 	proc_t		*pp;
8327c478bd9Sstevel@tonic-gate 
8337c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&(ttoproc(tp))->p_lock));
8347c478bd9Sstevel@tonic-gate 
8357c478bd9Sstevel@tonic-gate 	(*argp->pcmp_cntp)++;   /* Increment count of procs in the set */
8367c478bd9Sstevel@tonic-gate 	if (*argp->pcmp_cidp == PC_CLNULL) {
8377c478bd9Sstevel@tonic-gate 		/*
8387c478bd9Sstevel@tonic-gate 		 * If no cid is specified, then lets just pick the first one.
8397c478bd9Sstevel@tonic-gate 		 * It doesn't matter because if the number of threads in the
8407c478bd9Sstevel@tonic-gate 		 * set are more than 1, then we return EINVAL in priocntlsys.
8417c478bd9Sstevel@tonic-gate 		 */
8427c478bd9Sstevel@tonic-gate 		*argp->pcmp_cidp = tp->t_cid;
8437c478bd9Sstevel@tonic-gate 	}
8447c478bd9Sstevel@tonic-gate 	if (tp->t_cid == *argp->pcmp_cidp) {
8457c478bd9Sstevel@tonic-gate 		if (*argp->pcmp_retthreadp == NULL) {
8467c478bd9Sstevel@tonic-gate 			/*
8477c478bd9Sstevel@tonic-gate 			 * First time through for this set.
8487c478bd9Sstevel@tonic-gate 			 */
8497c478bd9Sstevel@tonic-gate 			*argp->pcmp_retthreadp = tp;
8507c478bd9Sstevel@tonic-gate 		} else {
8517c478bd9Sstevel@tonic-gate 			tx = *argp->pcmp_retthreadp;
8527c478bd9Sstevel@tonic-gate 			if (CL_GLOBPRI(tp) > CL_GLOBPRI(tx)) {
8537c478bd9Sstevel@tonic-gate 				/*
8547c478bd9Sstevel@tonic-gate 				 * Unlike proccmp(), we don't release the
8557c478bd9Sstevel@tonic-gate 				 * p_lock of the ttoproc(tp) if tp's global
8567c478bd9Sstevel@tonic-gate 				 * priority is less than tx's. We need to go
8577c478bd9Sstevel@tonic-gate 				 * through the entire list before we can do
8587c478bd9Sstevel@tonic-gate 				 * that. The p_lock is released by the caller
8597c478bd9Sstevel@tonic-gate 				 * of dotolwp().
8607c478bd9Sstevel@tonic-gate 				 */
8617c478bd9Sstevel@tonic-gate 				pp = ttoproc(tx);
8627c478bd9Sstevel@tonic-gate 				ASSERT(MUTEX_HELD(&pp->p_lock));
8637c478bd9Sstevel@tonic-gate 				if (pp != curproc) {
8647c478bd9Sstevel@tonic-gate 					mutex_exit(&pp->p_lock);
8657c478bd9Sstevel@tonic-gate 				}
8667c478bd9Sstevel@tonic-gate 				*argp->pcmp_retthreadp = tp;
8677c478bd9Sstevel@tonic-gate 			}
8687c478bd9Sstevel@tonic-gate 		}
8697c478bd9Sstevel@tonic-gate 	}
8707c478bd9Sstevel@tonic-gate 	return (0);
8717c478bd9Sstevel@tonic-gate }
8727c478bd9Sstevel@tonic-gate 
8737c478bd9Sstevel@tonic-gate 
8747c478bd9Sstevel@tonic-gate /*
8757c478bd9Sstevel@tonic-gate  * The setparms() function is called indirectly by priocntlsys()
8767c478bd9Sstevel@tonic-gate  * through the dotoprocs() function.  setparms() acts as an
8777c478bd9Sstevel@tonic-gate  * intermediary between dotoprocs() and the parmsset() function,
8787c478bd9Sstevel@tonic-gate  * calling parmsset() for each thread in the set and handling
8797c478bd9Sstevel@tonic-gate  * the error returns on their way back up to dotoprocs().
8807c478bd9Sstevel@tonic-gate  */
8817c478bd9Sstevel@tonic-gate static int
setparms(proc_t * targpp,struct stprmargs * stprmp)8827c478bd9Sstevel@tonic-gate setparms(proc_t *targpp, struct stprmargs *stprmp)
8837c478bd9Sstevel@tonic-gate {
8847c478bd9Sstevel@tonic-gate 	int error = 0;
885d4204c85Sraf 	kthread_t *t;
8867c478bd9Sstevel@tonic-gate 	int err;
8877c478bd9Sstevel@tonic-gate 
8887c478bd9Sstevel@tonic-gate 	mutex_enter(&targpp->p_lock);
8897c478bd9Sstevel@tonic-gate 	if ((t = targpp->p_tlist) == NULL) {
8907c478bd9Sstevel@tonic-gate 		mutex_exit(&targpp->p_lock);
8917c478bd9Sstevel@tonic-gate 		return (0);
8927c478bd9Sstevel@tonic-gate 	}
8937c478bd9Sstevel@tonic-gate 	do {
8947c478bd9Sstevel@tonic-gate 		err = parmsset(stprmp->stp_parmsp, t);
8957c478bd9Sstevel@tonic-gate 		if (error == 0)
8967c478bd9Sstevel@tonic-gate 			error = err;
8977c478bd9Sstevel@tonic-gate 	} while ((t = t->t_forw) != targpp->p_tlist);
8987c478bd9Sstevel@tonic-gate 	mutex_exit(&targpp->p_lock);
8997c478bd9Sstevel@tonic-gate 	if (error) {
9007c478bd9Sstevel@tonic-gate 		if (error == EPERM) {
9017c478bd9Sstevel@tonic-gate 			stprmp->stp_error = EPERM;
9027c478bd9Sstevel@tonic-gate 			return (0);
9037c478bd9Sstevel@tonic-gate 		} else {
9047c478bd9Sstevel@tonic-gate 			return (error);
9057c478bd9Sstevel@tonic-gate 		}
9067c478bd9Sstevel@tonic-gate 	} else
9077c478bd9Sstevel@tonic-gate 		return (0);
9087c478bd9Sstevel@tonic-gate }
9097c478bd9Sstevel@tonic-gate 
9109acbbeafSnn int
setthreadnice(pcnice_t * pcnice,kthread_t * tp)9117c478bd9Sstevel@tonic-gate setthreadnice(pcnice_t *pcnice, kthread_t *tp)
9127c478bd9Sstevel@tonic-gate {
913d4204c85Sraf 	int error;
9147c478bd9Sstevel@tonic-gate 	int nice;
9157c478bd9Sstevel@tonic-gate 	int inc;
9167c478bd9Sstevel@tonic-gate 	id_t rtcid;
9177c478bd9Sstevel@tonic-gate 
9187c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
9197c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&(ttoproc(tp)->p_lock)));
9207c478bd9Sstevel@tonic-gate 
9217c478bd9Sstevel@tonic-gate 	/*
9227c478bd9Sstevel@tonic-gate 	 * The XPG5 standard requires that any realtime process or thread
9237c478bd9Sstevel@tonic-gate 	 * must be unaffected by a call to setpriority().
9247c478bd9Sstevel@tonic-gate 	 */
9257c478bd9Sstevel@tonic-gate 	error = getcidbyname("RT", &rtcid);
926d4204c85Sraf 	if (error == 0 && tp->t_cid == rtcid) {
9277c478bd9Sstevel@tonic-gate 		if (pcnice->pc_op == PC_SETNICE)
928d4204c85Sraf 			return (0);
9297c478bd9Sstevel@tonic-gate 	}
9307c478bd9Sstevel@tonic-gate 
9317c478bd9Sstevel@tonic-gate 	if ((error = CL_DONICE(tp, CRED(), 0, &nice)) != 0)
9327c478bd9Sstevel@tonic-gate 		return (error);
9337c478bd9Sstevel@tonic-gate 
9347c478bd9Sstevel@tonic-gate 	if (pcnice->pc_op == PC_GETNICE) {
9357c478bd9Sstevel@tonic-gate 		/*
9367c478bd9Sstevel@tonic-gate 		 * If there is no change to priority, we should return the
9377c478bd9Sstevel@tonic-gate 		 * highest priority (lowest numerical value) pertaining to
9387c478bd9Sstevel@tonic-gate 		 * any of the specified threads.
9397c478bd9Sstevel@tonic-gate 		 */
9407c478bd9Sstevel@tonic-gate 		if (nice < pcnice->pc_val)
9417c478bd9Sstevel@tonic-gate 			pcnice->pc_val = nice;
9427c478bd9Sstevel@tonic-gate 	} else {
9437c478bd9Sstevel@tonic-gate 		ASSERT(pcnice->pc_op == PC_SETNICE);
9447c478bd9Sstevel@tonic-gate 		/*
9457c478bd9Sstevel@tonic-gate 		 * Try to change the nice value of the thread.
9467c478bd9Sstevel@tonic-gate 		 */
9477c478bd9Sstevel@tonic-gate 		inc = pcnice->pc_val - nice;
9487c478bd9Sstevel@tonic-gate 
9497c478bd9Sstevel@tonic-gate 		error = CL_DONICE(tp, CRED(), inc, &inc);
950d4204c85Sraf 		schedctl_set_cidpri(tp);
9517c478bd9Sstevel@tonic-gate 	}
9527c478bd9Sstevel@tonic-gate 
9537c478bd9Sstevel@tonic-gate 	return (error);
9547c478bd9Sstevel@tonic-gate }
9557c478bd9Sstevel@tonic-gate 
9569acbbeafSnn int
setprocnice(proc_t * pp,pcnice_t * pcnice)9577c478bd9Sstevel@tonic-gate setprocnice(proc_t *pp, pcnice_t *pcnice)
9587c478bd9Sstevel@tonic-gate {
9597c478bd9Sstevel@tonic-gate 	kthread_t *tp;
9607c478bd9Sstevel@tonic-gate 	int retval = 0;
961d4204c85Sraf 	int error;
9627c478bd9Sstevel@tonic-gate 
9637c478bd9Sstevel@tonic-gate 	ASSERT(MUTEX_HELD(&pidlock));
9647c478bd9Sstevel@tonic-gate 	mutex_enter(&pp->p_lock);
9657c478bd9Sstevel@tonic-gate 
9667c478bd9Sstevel@tonic-gate 	if ((tp = pp->p_tlist) == NULL) {
9677c478bd9Sstevel@tonic-gate 		mutex_exit(&pp->p_lock);
9687c478bd9Sstevel@tonic-gate 		return (ESRCH);
9697c478bd9Sstevel@tonic-gate 	}
9707c478bd9Sstevel@tonic-gate 
9717c478bd9Sstevel@tonic-gate 	/*
9727c478bd9Sstevel@tonic-gate 	 * Check permissions before changing the nice value.
9737c478bd9Sstevel@tonic-gate 	 */
9747c478bd9Sstevel@tonic-gate 	if (pcnice->pc_op == PC_SETNICE) {
9757c478bd9Sstevel@tonic-gate 		if (!prochasprocperm(pp, curproc, CRED())) {
9767c478bd9Sstevel@tonic-gate 			mutex_exit(&pp->p_lock);
9777c478bd9Sstevel@tonic-gate 			return (EPERM);
9787c478bd9Sstevel@tonic-gate 		}
9797c478bd9Sstevel@tonic-gate 	}
9807c478bd9Sstevel@tonic-gate 
9817c478bd9Sstevel@tonic-gate 	do {
9827c478bd9Sstevel@tonic-gate 		error = setthreadnice(pcnice, tp);
9837c478bd9Sstevel@tonic-gate 		if (error)
9847c478bd9Sstevel@tonic-gate 			retval = error;
9857c478bd9Sstevel@tonic-gate 	} while ((tp = tp->t_forw) != pp->p_tlist);
9867c478bd9Sstevel@tonic-gate 
9877c478bd9Sstevel@tonic-gate 	mutex_exit(&pp->p_lock);
9887c478bd9Sstevel@tonic-gate 	return (retval);
9897c478bd9Sstevel@tonic-gate }
9907c478bd9Sstevel@tonic-gate 
9917c478bd9Sstevel@tonic-gate /*
9927c478bd9Sstevel@tonic-gate  * Update the nice value of the specified LWP or set of processes.
9937c478bd9Sstevel@tonic-gate  */
9947c478bd9Sstevel@tonic-gate static int
donice(procset_t * procset,pcnice_t * pcnice)9957c478bd9Sstevel@tonic-gate donice(procset_t *procset, pcnice_t *pcnice)
9967c478bd9Sstevel@tonic-gate {
9977c478bd9Sstevel@tonic-gate 	int err_proc = 0;
9987c478bd9Sstevel@tonic-gate 	int err_thread = 0;
9997c478bd9Sstevel@tonic-gate 	int err = 0;
10007c478bd9Sstevel@tonic-gate 
10017c478bd9Sstevel@tonic-gate 	/*
10027c478bd9Sstevel@tonic-gate 	 * Sanity check.
10037c478bd9Sstevel@tonic-gate 	 */
10047c478bd9Sstevel@tonic-gate 	if (pcnice->pc_op != PC_GETNICE && pcnice->pc_op != PC_SETNICE)
10057c478bd9Sstevel@tonic-gate 		return (EINVAL);
10067c478bd9Sstevel@tonic-gate 
10077c478bd9Sstevel@tonic-gate 	/*
10087c478bd9Sstevel@tonic-gate 	 * If it is PC_GETNICE operation then set pc_val to the largest
10097c478bd9Sstevel@tonic-gate 	 * possible nice value to help us find the lowest nice value
10107c478bd9Sstevel@tonic-gate 	 * pertaining to any of the specified processes.
10117c478bd9Sstevel@tonic-gate 	 */
10127c478bd9Sstevel@tonic-gate 	if (pcnice->pc_op == PC_GETNICE)
10137c478bd9Sstevel@tonic-gate 		pcnice->pc_val = NZERO;
10147c478bd9Sstevel@tonic-gate 
10157c478bd9Sstevel@tonic-gate 	if (procset->p_lidtype != P_LWPID ||
10167c478bd9Sstevel@tonic-gate 	    procset->p_ridtype != P_LWPID)
10177c478bd9Sstevel@tonic-gate 		err_proc = dotoprocs(procset, setprocnice, (char *)pcnice);
10187c478bd9Sstevel@tonic-gate 
10197c478bd9Sstevel@tonic-gate 	if (procset->p_lidtype == P_LWPID || procset->p_ridtype == P_LWPID) {
10207c478bd9Sstevel@tonic-gate 		err_thread = dotolwp(procset, setthreadnice, (char *)pcnice);
10217c478bd9Sstevel@tonic-gate 		/*
10227c478bd9Sstevel@tonic-gate 		 * dotolwp() can return with p_lock held.  This is required
10237c478bd9Sstevel@tonic-gate 		 * for the priocntl GETPARMS case.  So, here we just release
10247c478bd9Sstevel@tonic-gate 		 * the p_lock.
10257c478bd9Sstevel@tonic-gate 		 */
10267c478bd9Sstevel@tonic-gate 		if (MUTEX_HELD(&curproc->p_lock))
10277c478bd9Sstevel@tonic-gate 			mutex_exit(&curproc->p_lock);
10287c478bd9Sstevel@tonic-gate 
10297c478bd9Sstevel@tonic-gate 		/*
10307c478bd9Sstevel@tonic-gate 		 * If we were called for a single LWP, then ignore ESRCH
10317c478bd9Sstevel@tonic-gate 		 * returned by the previous dotoprocs() call.
10327c478bd9Sstevel@tonic-gate 		 */
10337c478bd9Sstevel@tonic-gate 		if (err_proc == ESRCH)
10347c478bd9Sstevel@tonic-gate 			err_proc = 0;
10357c478bd9Sstevel@tonic-gate 	}
10367c478bd9Sstevel@tonic-gate 
10377c478bd9Sstevel@tonic-gate 	/*
10387c478bd9Sstevel@tonic-gate 	 * dotoprocs() ignores the init process if it is in the set, unless
10397c478bd9Sstevel@tonic-gate 	 * it was the only process found. We want to make sure init is not
10407c478bd9Sstevel@tonic-gate 	 * excluded if we're going PC_GETNICE operation.
10417c478bd9Sstevel@tonic-gate 	 */
10427c478bd9Sstevel@tonic-gate 	if (pcnice->pc_op == PC_GETNICE) {
10437c478bd9Sstevel@tonic-gate 		proc_t *initpp;
10447c478bd9Sstevel@tonic-gate 
10457c478bd9Sstevel@tonic-gate 		mutex_enter(&pidlock);
1046def11082Srh 		if ((initpp = prfind(P_INITPID)) != NULL) {
1047def11082Srh 			mutex_enter(&initpp->p_lock);
1048def11082Srh 			if (procinset(initpp, procset)) {
1049def11082Srh 				mutex_exit(&initpp->p_lock);
1050def11082Srh 				err = setprocnice(initpp, pcnice);
1051def11082Srh 			} else {
1052def11082Srh 				mutex_exit(&initpp->p_lock);
1053def11082Srh 			}
1054def11082Srh 		}
10557c478bd9Sstevel@tonic-gate 		mutex_exit(&pidlock);
10567c478bd9Sstevel@tonic-gate 	}
10577c478bd9Sstevel@tonic-gate 
10587c478bd9Sstevel@tonic-gate 	/*
10597c478bd9Sstevel@tonic-gate 	 * We're returning the latest error here that we've got back from
10607c478bd9Sstevel@tonic-gate 	 * the setthreadnice() or setprocnice(). That is, err_thread and/or
10617c478bd9Sstevel@tonic-gate 	 * err_proc can be replaced by err.
10627c478bd9Sstevel@tonic-gate 	 */
10637c478bd9Sstevel@tonic-gate 	if (!err)
10647c478bd9Sstevel@tonic-gate 		err = err_thread ? err_thread : err_proc;
10657c478bd9Sstevel@tonic-gate 
10667c478bd9Sstevel@tonic-gate 	return (err);
10677c478bd9Sstevel@tonic-gate }
1068d4204c85Sraf 
1069d4204c85Sraf int
setthreadprio(pcprio_t * pcprio,kthread_t * tp)1070d4204c85Sraf setthreadprio(pcprio_t *pcprio, kthread_t *tp)
1071d4204c85Sraf {
1072d4204c85Sraf 	int prio = 0;
1073d4204c85Sraf 	int incr;
1074d4204c85Sraf 	int error;
1075d4204c85Sraf 
1076d4204c85Sraf 	ASSERT(MUTEX_HELD(&pidlock));
1077d4204c85Sraf 	ASSERT(MUTEX_HELD(&(ttoproc(tp)->p_lock)));
1078d4204c85Sraf 
1079d4204c85Sraf 	if (pcprio->pc_op == PC_SETPRIO && pcprio->pc_cid != tp->t_cid) {
1080d4204c85Sraf 		/*
1081d4204c85Sraf 		 * Target thread must change to new class.
1082d4204c85Sraf 		 * See comments in parmsset(), from where this code was copied.
1083d4204c85Sraf 		 */
1084d4204c85Sraf 		void *bufp = NULL;
1085d4204c85Sraf 		caddr_t clprocp = (caddr_t)tp->t_cldata;
1086d4204c85Sraf 		id_t oldcid = tp->t_cid;
1087d4204c85Sraf 
1088d4204c85Sraf 		error = CL_CANEXIT(tp, NULL);
1089d4204c85Sraf 		if (error)
1090d4204c85Sraf 			return (error);
1091d4204c85Sraf 		if (CL_ALLOC(&bufp, pcprio->pc_cid, KM_NOSLEEP) != 0)
1092d4204c85Sraf 			return (ENOMEM);
1093d4204c85Sraf 		error = CL_ENTERCLASS(tp, pcprio->pc_cid, NULL, CRED(), bufp);
1094d4204c85Sraf 		if (error) {
1095d4204c85Sraf 			CL_FREE(pcprio->pc_cid, bufp);
1096d4204c85Sraf 			return (error);
1097d4204c85Sraf 		}
1098d4204c85Sraf 		CL_EXITCLASS(oldcid, clprocp);
1099d4204c85Sraf 		schedctl_set_cidpri(tp);
1100d4204c85Sraf 	}
1101d4204c85Sraf 
1102d4204c85Sraf 	if ((error = CL_DOPRIO(tp, CRED(), 0, &prio)) != 0)
1103d4204c85Sraf 		return (error);
1104d4204c85Sraf 
1105d4204c85Sraf 	if (pcprio->pc_op == PC_GETPRIO) {
1106d4204c85Sraf 		/*
1107d4204c85Sraf 		 * If we are not setting the priority, we should return the
1108d4204c85Sraf 		 * highest priority pertaining to any of the specified threads.
1109d4204c85Sraf 		 */
1110d4204c85Sraf 		if (prio > pcprio->pc_val) {
1111d4204c85Sraf 			pcprio->pc_cid = tp->t_cid;
1112d4204c85Sraf 			pcprio->pc_val = prio;
1113d4204c85Sraf 		}
1114d4204c85Sraf 	} else if (prio != pcprio->pc_val) {
1115d4204c85Sraf 		/*
1116d4204c85Sraf 		 * Try to change the priority of the thread.
1117d4204c85Sraf 		 */
1118d4204c85Sraf 		incr = pcprio->pc_val - prio;
1119d4204c85Sraf 		error = CL_DOPRIO(tp, CRED(), incr, &prio);
1120d4204c85Sraf 		schedctl_set_cidpri(tp);
1121d4204c85Sraf 	}
1122d4204c85Sraf 
1123d4204c85Sraf 	return (error);
1124d4204c85Sraf }
1125d4204c85Sraf 
1126d4204c85Sraf int
setprocprio(proc_t * pp,pcprio_t * pcprio)1127d4204c85Sraf setprocprio(proc_t *pp, pcprio_t *pcprio)
1128d4204c85Sraf {
1129d4204c85Sraf 	kthread_t *tp;
1130d4204c85Sraf 	int retval = 0;
1131d4204c85Sraf 	int error;
1132d4204c85Sraf 
1133d4204c85Sraf 	ASSERT(MUTEX_HELD(&pidlock));
1134d4204c85Sraf 	mutex_enter(&pp->p_lock);
1135d4204c85Sraf 
1136d4204c85Sraf 	if ((tp = pp->p_tlist) == NULL) {
1137d4204c85Sraf 		mutex_exit(&pp->p_lock);
1138d4204c85Sraf 		return (ESRCH);
1139d4204c85Sraf 	}
1140d4204c85Sraf 
1141d4204c85Sraf 	/*
1142d4204c85Sraf 	 * Check permissions before changing the prio value.
1143d4204c85Sraf 	 */
1144d4204c85Sraf 	if (pcprio->pc_op == PC_SETPRIO) {
1145d4204c85Sraf 		if (!prochasprocperm(pp, curproc, CRED())) {
1146d4204c85Sraf 			mutex_exit(&pp->p_lock);
1147d4204c85Sraf 			return (EPERM);
1148d4204c85Sraf 		}
1149d4204c85Sraf 	}
1150d4204c85Sraf 
1151d4204c85Sraf 	do {
1152d4204c85Sraf 		error = setthreadprio(pcprio, tp);
1153d4204c85Sraf 		if (error)
1154d4204c85Sraf 			retval = error;
1155d4204c85Sraf 	} while ((tp = tp->t_forw) != pp->p_tlist);
1156d4204c85Sraf 
1157d4204c85Sraf 	mutex_exit(&pp->p_lock);
1158d4204c85Sraf 	return (retval);
1159d4204c85Sraf }
1160d4204c85Sraf 
1161d4204c85Sraf /*
1162d4204c85Sraf  * Set the class and priority of the specified LWP or set of processes.
1163d4204c85Sraf  */
1164d4204c85Sraf static int
doprio(procset_t * procset,pcprio_t * pcprio)1165d4204c85Sraf doprio(procset_t *procset, pcprio_t *pcprio)
1166d4204c85Sraf {
1167d4204c85Sraf 	int err_proc = 0;
1168d4204c85Sraf 	int err_thread = 0;
1169d4204c85Sraf 	int err = 0;
1170d4204c85Sraf 
1171d4204c85Sraf 	/*
1172d4204c85Sraf 	 * Sanity check.
1173d4204c85Sraf 	 */
1174d4204c85Sraf 	if (pcprio->pc_op != PC_GETPRIO && pcprio->pc_op != PC_SETPRIO)
1175d4204c85Sraf 		return (EINVAL);
1176d4204c85Sraf 	if (pcprio->pc_op == PC_SETPRIO &&
1177d4204c85Sraf 	    (pcprio->pc_cid >= loaded_classes || pcprio->pc_cid < 1))
1178d4204c85Sraf 		return (EINVAL);
1179d4204c85Sraf 
1180d4204c85Sraf 	/*
1181d4204c85Sraf 	 * If it is a PC_GETPRIO operation then set pc_val to the smallest
1182d4204c85Sraf 	 * possible prio value to help us find the highest priority
1183d4204c85Sraf 	 * pertaining to any of the specified processes.
1184d4204c85Sraf 	 */
1185d4204c85Sraf 	if (pcprio->pc_op == PC_GETPRIO)
1186d4204c85Sraf 		pcprio->pc_val = SHRT_MIN;
1187d4204c85Sraf 
1188d4204c85Sraf 	if (procset->p_lidtype != P_LWPID ||
1189d4204c85Sraf 	    procset->p_ridtype != P_LWPID)
1190d4204c85Sraf 		err_proc = dotoprocs(procset, setprocprio, (char *)pcprio);
1191d4204c85Sraf 
1192d4204c85Sraf 	if (procset->p_lidtype == P_LWPID || procset->p_ridtype == P_LWPID) {
1193d4204c85Sraf 		err_thread = dotolwp(procset, setthreadprio, (char *)pcprio);
1194d4204c85Sraf 		/*
1195d4204c85Sraf 		 * dotolwp() can return with p_lock held.  This is required
1196d4204c85Sraf 		 * for the priocntl GETPARMS case.  So, here we just release
1197d4204c85Sraf 		 * the p_lock.
1198d4204c85Sraf 		 */
1199d4204c85Sraf 		if (MUTEX_HELD(&curproc->p_lock))
1200d4204c85Sraf 			mutex_exit(&curproc->p_lock);
1201d4204c85Sraf 
1202d4204c85Sraf 		/*
1203d4204c85Sraf 		 * If we were called for a single LWP, then ignore ESRCH
1204d4204c85Sraf 		 * returned by the previous dotoprocs() call.
1205d4204c85Sraf 		 */
1206d4204c85Sraf 		if (err_proc == ESRCH)
1207d4204c85Sraf 			err_proc = 0;
1208d4204c85Sraf 	}
1209d4204c85Sraf 
1210d4204c85Sraf 	/*
1211d4204c85Sraf 	 * dotoprocs() ignores the init process if it is in the set, unless
1212d4204c85Sraf 	 * it was the only process found. We want to make sure init is not
1213d4204c85Sraf 	 * excluded if we're going PC_GETPRIO operation.
1214d4204c85Sraf 	 */
1215d4204c85Sraf 	if (pcprio->pc_op == PC_GETPRIO) {
1216d4204c85Sraf 		proc_t *initpp;
1217d4204c85Sraf 
1218d4204c85Sraf 		mutex_enter(&pidlock);
1219def11082Srh 		if ((initpp = prfind(P_INITPID)) != NULL) {
1220def11082Srh 			mutex_enter(&initpp->p_lock);
1221def11082Srh 			if (procinset(initpp, procset)) {
1222def11082Srh 				mutex_exit(&initpp->p_lock);
1223def11082Srh 				err = setprocprio(initpp, pcprio);
1224def11082Srh 			} else {
1225def11082Srh 				mutex_exit(&initpp->p_lock);
1226def11082Srh 			}
1227def11082Srh 		}
1228d4204c85Sraf 		mutex_exit(&pidlock);
1229d4204c85Sraf 	}
1230d4204c85Sraf 
1231d4204c85Sraf 	/*
1232d4204c85Sraf 	 * We're returning the latest error here that we've got back from
1233d4204c85Sraf 	 * the setthreadprio() or setprocprio(). That is, err_thread and/or
1234d4204c85Sraf 	 * err_proc can be replaced by err.
1235d4204c85Sraf 	 */
1236d4204c85Sraf 	if (!err)
1237d4204c85Sraf 		err = err_thread ? err_thread : err_proc;
1238d4204c85Sraf 
1239d4204c85Sraf 	return (err);
1240d4204c85Sraf }
1241