xref: /illumos-gate/usr/src/uts/common/sys/proc.h (revision 97eda132)
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  */
22*97eda132Sraf 
237c478bd9Sstevel@tonic-gate /*
247c478bd9Sstevel@tonic-gate  * 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) 1984, 1986, 1987, 1988, 1989 AT&T	*/
297c478bd9Sstevel@tonic-gate /*	  All Rights Reserved  	*/
307c478bd9Sstevel@tonic-gate 
317c478bd9Sstevel@tonic-gate 
327c478bd9Sstevel@tonic-gate #ifndef _SYS_PROC_H
337c478bd9Sstevel@tonic-gate #define	_SYS_PROC_H
347c478bd9Sstevel@tonic-gate 
357c478bd9Sstevel@tonic-gate #pragma ident	"%Z%%M%	%I%	%E% SMI"
367c478bd9Sstevel@tonic-gate 
377c478bd9Sstevel@tonic-gate #include <sys/time.h>
387c478bd9Sstevel@tonic-gate 
397c478bd9Sstevel@tonic-gate #include <sys/thread.h>
407c478bd9Sstevel@tonic-gate #include <sys/cred.h>
417c478bd9Sstevel@tonic-gate #include <sys/user.h>
427c478bd9Sstevel@tonic-gate #include <sys/watchpoint.h>
437c478bd9Sstevel@tonic-gate #include <sys/timer.h>
447c478bd9Sstevel@tonic-gate #if defined(__x86)
457c478bd9Sstevel@tonic-gate #include <sys/tss.h>
467c478bd9Sstevel@tonic-gate #include <sys/segments.h>
477c478bd9Sstevel@tonic-gate #endif
487c478bd9Sstevel@tonic-gate #include <sys/utrap.h>
497c478bd9Sstevel@tonic-gate #include <sys/model.h>
507c478bd9Sstevel@tonic-gate #include <sys/refstr.h>
517c478bd9Sstevel@tonic-gate #include <sys/avl.h>
527c478bd9Sstevel@tonic-gate #include <sys/rctl.h>
537c478bd9Sstevel@tonic-gate #include <sys/list.h>
547c478bd9Sstevel@tonic-gate #include <sys/avl.h>
557c478bd9Sstevel@tonic-gate #include <sys/door_impl.h>
567c478bd9Sstevel@tonic-gate 
577c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
587c478bd9Sstevel@tonic-gate extern "C" {
597c478bd9Sstevel@tonic-gate #endif
607c478bd9Sstevel@tonic-gate 
617c478bd9Sstevel@tonic-gate /*
627c478bd9Sstevel@tonic-gate  * Profile arguments.
637c478bd9Sstevel@tonic-gate  */
647c478bd9Sstevel@tonic-gate struct prof {
657c478bd9Sstevel@tonic-gate 	void		*pr_base;	/* buffer base */
667c478bd9Sstevel@tonic-gate 	uintptr_t	pr_off;		/* pc offset */
677c478bd9Sstevel@tonic-gate 	size_t		pr_size;	/* buffer size */
687c478bd9Sstevel@tonic-gate 	uint32_t	pr_scale;	/* pc scaling */
697c478bd9Sstevel@tonic-gate 	long		pr_samples;	/* sample count */
707c478bd9Sstevel@tonic-gate };
717c478bd9Sstevel@tonic-gate 
727c478bd9Sstevel@tonic-gate /* hash function for the lwpid hash table, p->p_tidhash[] */
737c478bd9Sstevel@tonic-gate #define	TIDHASH(p, tid)	((tid) & ((p)->p_tidhash_sz - 1))
747c478bd9Sstevel@tonic-gate 
757c478bd9Sstevel@tonic-gate /*
767c478bd9Sstevel@tonic-gate  * An lwp directory entry.
777c478bd9Sstevel@tonic-gate  * If le_thread != NULL, this is an active lwp.
787c478bd9Sstevel@tonic-gate  * If le_thread == NULL, this is an unreaped zombie lwp.
797c478bd9Sstevel@tonic-gate  */
807c478bd9Sstevel@tonic-gate typedef struct lwpent {
817c478bd9Sstevel@tonic-gate 	kthread_t	*le_thread;	/* the active lwp, NULL if zombie */
827c478bd9Sstevel@tonic-gate 	id_t		le_lwpid;	/* its lwpid (t->t_tid) */
837c478bd9Sstevel@tonic-gate 	uint16_t	le_waiters;	/* total number of lwp_wait()ers */
847c478bd9Sstevel@tonic-gate 	uint16_t	le_dwaiters;	/* number that are daemons */
857c478bd9Sstevel@tonic-gate 	clock_t		le_start;	/* start time of this lwp */
867c478bd9Sstevel@tonic-gate 	struct vnode	*le_trace;	/* pointer to /proc lwp vnode */
877c478bd9Sstevel@tonic-gate } lwpent_t;
887c478bd9Sstevel@tonic-gate 
897c478bd9Sstevel@tonic-gate /*
907c478bd9Sstevel@tonic-gate  * Elements of the lwp directory, p->p_lwpdir[].
917c478bd9Sstevel@tonic-gate  *
927c478bd9Sstevel@tonic-gate  * We allocate lwp directory entries separately from lwp directory
937c478bd9Sstevel@tonic-gate  * elements because the lwp directory must be allocated as an array.
947c478bd9Sstevel@tonic-gate  * The number of lwps can grow quite large and we want to keep the
957c478bd9Sstevel@tonic-gate  * size of the kmem_alloc()d directory as small as possible.
967c478bd9Sstevel@tonic-gate  *
977c478bd9Sstevel@tonic-gate  * If ld_entry == NULL, the entry is free and is on the free list,
987c478bd9Sstevel@tonic-gate  * p->p_lwpfree, linked through ld_next.  If ld_entry != NULL, the
997c478bd9Sstevel@tonic-gate  * entry is used and ld_next is the thread-id hash link pointer.
1007c478bd9Sstevel@tonic-gate  */
1017c478bd9Sstevel@tonic-gate typedef struct lwpdir {
1027c478bd9Sstevel@tonic-gate 	struct lwpdir	*ld_next;	/* hash chain or free list */
1037c478bd9Sstevel@tonic-gate 	struct lwpent	*ld_entry;	/* lwp directory entry */
1047c478bd9Sstevel@tonic-gate } lwpdir_t;
1057c478bd9Sstevel@tonic-gate 
1067c478bd9Sstevel@tonic-gate struct pool;
1077c478bd9Sstevel@tonic-gate struct task;
1087c478bd9Sstevel@tonic-gate struct zone;
1097c478bd9Sstevel@tonic-gate struct corectl_path;
1107c478bd9Sstevel@tonic-gate struct corectl_content;
1117c478bd9Sstevel@tonic-gate 
1127c478bd9Sstevel@tonic-gate /*
1137c478bd9Sstevel@tonic-gate  * One structure allocated per active process.  It contains all
1147c478bd9Sstevel@tonic-gate  * data needed about the process while the process may be swapped
1157c478bd9Sstevel@tonic-gate  * out.  Other per-process data (user.h) is also inside the proc structure.
1167c478bd9Sstevel@tonic-gate  * Lightweight-process data (lwp.h) and the kernel stack may be swapped out.
1177c478bd9Sstevel@tonic-gate  */
1187c478bd9Sstevel@tonic-gate typedef struct	proc {
1197c478bd9Sstevel@tonic-gate 	/*
1207c478bd9Sstevel@tonic-gate 	 * Fields requiring no explicit locking
1217c478bd9Sstevel@tonic-gate 	 */
1227c478bd9Sstevel@tonic-gate 	struct	vnode *p_exec;		/* pointer to a.out vnode */
1237c478bd9Sstevel@tonic-gate 	struct	as *p_as;		/* process address space pointer */
1247c478bd9Sstevel@tonic-gate 	struct	plock *p_lockp;		/* ptr to proc struct's mutex lock */
1257c478bd9Sstevel@tonic-gate 	kmutex_t p_crlock;		/* lock for p_cred */
1267c478bd9Sstevel@tonic-gate 	struct	cred	*p_cred;	/* process credentials */
1277c478bd9Sstevel@tonic-gate 	/*
1287c478bd9Sstevel@tonic-gate 	 * Fields protected by pidlock
1297c478bd9Sstevel@tonic-gate 	 */
1307c478bd9Sstevel@tonic-gate 	int	p_swapcnt;		/* number of swapped out lwps */
1317c478bd9Sstevel@tonic-gate 	char	p_stat;			/* status of process */
1327c478bd9Sstevel@tonic-gate 	char	p_wcode;		/* current wait code */
1337c478bd9Sstevel@tonic-gate 	ushort_t p_pidflag;		/* flags protected only by pidlock */
1347c478bd9Sstevel@tonic-gate 	int 	p_wdata;		/* current wait return value */
1357c478bd9Sstevel@tonic-gate 	pid_t	p_ppid;			/* process id of parent */
1367c478bd9Sstevel@tonic-gate 	struct	proc	*p_link;	/* forward link */
1377c478bd9Sstevel@tonic-gate 	struct	proc	*p_parent;	/* ptr to parent process */
1387c478bd9Sstevel@tonic-gate 	struct	proc	*p_child;	/* ptr to first child process */
1397c478bd9Sstevel@tonic-gate 	struct	proc	*p_sibling;	/* ptr to next sibling proc on chain */
1407c478bd9Sstevel@tonic-gate 	struct	proc	*p_psibling;	/* ptr to prev sibling proc on chain */
1417c478bd9Sstevel@tonic-gate 	struct	proc	*p_sibling_ns;	/* prt to siblings with new state */
1427c478bd9Sstevel@tonic-gate 	struct	proc	*p_child_ns;	/* prt to children with new state */
1437c478bd9Sstevel@tonic-gate 	struct	proc 	*p_next;	/* active chain link next */
1447c478bd9Sstevel@tonic-gate 	struct	proc 	*p_prev;	/* active chain link prev */
1457c478bd9Sstevel@tonic-gate 	struct	proc 	*p_nextofkin;	/* gets accounting info at exit */
1467c478bd9Sstevel@tonic-gate 	struct	proc 	*p_orphan;
1477c478bd9Sstevel@tonic-gate 	struct	proc 	*p_nextorph;
1487c478bd9Sstevel@tonic-gate 	struct	proc	*p_pglink;	/* process group hash chain link next */
1497c478bd9Sstevel@tonic-gate 	struct	proc	*p_ppglink;	/* process group hash chain link prev */
1507c478bd9Sstevel@tonic-gate 	struct	sess	*p_sessp;	/* session information */
1517c478bd9Sstevel@tonic-gate 	struct	pid 	*p_pidp;	/* process ID info */
1527c478bd9Sstevel@tonic-gate 	struct	pid 	*p_pgidp;	/* process group ID info */
1537c478bd9Sstevel@tonic-gate 	/*
1547c478bd9Sstevel@tonic-gate 	 * Fields protected by p_lock
1557c478bd9Sstevel@tonic-gate 	 */
1567c478bd9Sstevel@tonic-gate 	kcondvar_t p_cv;		/* proc struct's condition variable */
1577c478bd9Sstevel@tonic-gate 	kcondvar_t p_flag_cv;
1587c478bd9Sstevel@tonic-gate 	kcondvar_t p_lwpexit;		/* waiting for some lwp to exit */
1597c478bd9Sstevel@tonic-gate 	kcondvar_t p_holdlwps;		/* process is waiting for its lwps */
1607c478bd9Sstevel@tonic-gate 					/* to to be held.  */
1617c478bd9Sstevel@tonic-gate 	uint_t	p_proc_flag;		/* /proc-related flags */
1627c478bd9Sstevel@tonic-gate 	uint_t	p_flag;			/* protected while set. */
1637c478bd9Sstevel@tonic-gate 					/* flags defined below */
1647c478bd9Sstevel@tonic-gate 	clock_t	p_utime;		/* user time, this process */
1657c478bd9Sstevel@tonic-gate 	clock_t	p_stime;		/* system time, this process */
1667c478bd9Sstevel@tonic-gate 	clock_t	p_cutime;		/* sum of children's user time */
1677c478bd9Sstevel@tonic-gate 	clock_t	p_cstime;		/* sum of children's system time */
1687c478bd9Sstevel@tonic-gate 	avl_tree_t *p_segacct;		/* System V shared segment list */
1697c478bd9Sstevel@tonic-gate 	avl_tree_t *p_semacct;		/* System V semaphore undo list */
1707c478bd9Sstevel@tonic-gate 	caddr_t	p_bssbase;		/* base addr of last bss below heap */
1717c478bd9Sstevel@tonic-gate 	caddr_t	p_brkbase;		/* base addr of heap */
1727c478bd9Sstevel@tonic-gate 	size_t	p_brksize;		/* heap size in bytes */
1737c478bd9Sstevel@tonic-gate 	uint_t	p_brkpageszc;		/* preferred heap max page size code */
1747c478bd9Sstevel@tonic-gate 	/*
1757c478bd9Sstevel@tonic-gate 	 * Per process signal stuff.
1767c478bd9Sstevel@tonic-gate 	 */
1777c478bd9Sstevel@tonic-gate 	k_sigset_t p_sig;		/* signals pending to this process */
1787c478bd9Sstevel@tonic-gate 	k_sigset_t p_extsig;		/* signals sent from another contract */
1797c478bd9Sstevel@tonic-gate 	k_sigset_t p_ignore;		/* ignore when generated */
1807c478bd9Sstevel@tonic-gate 	k_sigset_t p_siginfo;		/* gets signal info with signal */
1817c478bd9Sstevel@tonic-gate 	struct sigqueue *p_sigqueue;	/* queued siginfo structures */
1827c478bd9Sstevel@tonic-gate 	struct sigqhdr *p_sigqhdr;	/* hdr to sigqueue structure pool */
1837c478bd9Sstevel@tonic-gate 	struct sigqhdr *p_signhdr;	/* hdr to signotify structure pool */
1847c478bd9Sstevel@tonic-gate 	uchar_t	p_stopsig;		/* jobcontrol stop signal */
1857c478bd9Sstevel@tonic-gate 
1867c478bd9Sstevel@tonic-gate 	/*
1877c478bd9Sstevel@tonic-gate 	 * Special per-process flag when set will fix misaligned memory
1887c478bd9Sstevel@tonic-gate 	 * references.
1897c478bd9Sstevel@tonic-gate 	 */
1907c478bd9Sstevel@tonic-gate 	char    p_fixalignment;
1917c478bd9Sstevel@tonic-gate 
1927c478bd9Sstevel@tonic-gate 	/*
1937c478bd9Sstevel@tonic-gate 	 * Per process lwp and kernel thread stuff
1947c478bd9Sstevel@tonic-gate 	 */
1957c478bd9Sstevel@tonic-gate 	id_t	p_lwpid;		/* most recently allocated lwpid */
1967c478bd9Sstevel@tonic-gate 	int 	p_lwpcnt;		/* number of lwps in this process */
1977c478bd9Sstevel@tonic-gate 	int	p_lwprcnt;		/* number of not stopped lwps */
1987c478bd9Sstevel@tonic-gate 	int	p_lwpdaemon;		/* number of TP_DAEMON lwps */
1997c478bd9Sstevel@tonic-gate 	int	p_lwpwait;		/* number of lwps in lwp_wait() */
2007c478bd9Sstevel@tonic-gate 	int	p_lwpdwait;		/* number of daemons in lwp_wait() */
2017c478bd9Sstevel@tonic-gate 	int	p_zombcnt;		/* number of zombie lwps */
2027c478bd9Sstevel@tonic-gate 	kthread_t *p_tlist;		/* circular list of threads */
2037c478bd9Sstevel@tonic-gate 	lwpdir_t *p_lwpdir;		/* thread (lwp) directory */
2047c478bd9Sstevel@tonic-gate 	lwpdir_t *p_lwpfree;		/* p_lwpdir free list */
2057c478bd9Sstevel@tonic-gate 	lwpdir_t **p_tidhash;		/* tid (lwpid) lookup hash table */
2067c478bd9Sstevel@tonic-gate 	uint_t	p_lwpdir_sz;		/* number of p_lwpdir[] entries */
2077c478bd9Sstevel@tonic-gate 	uint_t	p_tidhash_sz;		/* number of p_tidhash[] entries */
2087c478bd9Sstevel@tonic-gate 	uint64_t p_lgrpset;		/* unprotected hint of set of lgrps */
2097c478bd9Sstevel@tonic-gate 					/* on which process has threads */
2107c478bd9Sstevel@tonic-gate 	uintptr_t p_lgrpres1;		/* reserved for lgrp migration */
2117c478bd9Sstevel@tonic-gate 	uintptr_t p_lgrpres2;		/* reserved for lgrp migration */
2127c478bd9Sstevel@tonic-gate 	/*
2137c478bd9Sstevel@tonic-gate 	 * /proc (process filesystem) debugger interface stuff.
2147c478bd9Sstevel@tonic-gate 	 */
2157c478bd9Sstevel@tonic-gate 	k_sigset_t p_sigmask;		/* mask of traced signals (/proc) */
2167c478bd9Sstevel@tonic-gate 	k_fltset_t p_fltmask;		/* mask of traced faults (/proc) */
2177c478bd9Sstevel@tonic-gate 	struct vnode *p_trace;		/* pointer to primary /proc vnode */
2187c478bd9Sstevel@tonic-gate 	struct vnode *p_plist;		/* list of /proc vnodes for process */
2197c478bd9Sstevel@tonic-gate 	kthread_t *p_agenttp;		/* thread ptr for /proc agent lwp */
2207c478bd9Sstevel@tonic-gate 	avl_tree_t p_warea;		/* list of watched areas */
2217c478bd9Sstevel@tonic-gate 	avl_tree_t p_wpage;		/* remembered watched pages (vfork) */
2227c478bd9Sstevel@tonic-gate 	watched_page_t *p_wprot;	/* pages that need to have prot set */
2237c478bd9Sstevel@tonic-gate 	int	p_mapcnt;		/* number of active pr_mappage()s */
2247c478bd9Sstevel@tonic-gate 	kmutex_t p_maplock;		/* lock for pr_mappage() */
2257c478bd9Sstevel@tonic-gate 	struct	proc  *p_rlink;		/* linked list for server */
2267c478bd9Sstevel@tonic-gate 	kcondvar_t p_srwchan_cv;
2277c478bd9Sstevel@tonic-gate 	size_t	p_stksize;		/* process stack size in bytes */
2287c478bd9Sstevel@tonic-gate 	uint_t	p_stkpageszc;		/* preferred stack max page size code */
2297c478bd9Sstevel@tonic-gate 
2307c478bd9Sstevel@tonic-gate 	/*
2317c478bd9Sstevel@tonic-gate 	 * Microstate accounting, resource usage, and real-time profiling
2327c478bd9Sstevel@tonic-gate 	 */
2337c478bd9Sstevel@tonic-gate 	hrtime_t p_mstart;		/* hi-res process start time */
2347c478bd9Sstevel@tonic-gate 	hrtime_t p_mterm;		/* hi-res process termination time */
2357c478bd9Sstevel@tonic-gate 	hrtime_t p_mlreal;		/* elapsed time sum over defunct lwps */
2367c478bd9Sstevel@tonic-gate 	hrtime_t p_acct[NMSTATES];	/* microstate sum over defunct lwps */
2377c478bd9Sstevel@tonic-gate 	hrtime_t p_cacct[NMSTATES];	/* microstate sum over child procs */
2387c478bd9Sstevel@tonic-gate 	struct lrusage p_ru;		/* lrusage sum over defunct lwps */
2397c478bd9Sstevel@tonic-gate 	struct lrusage p_cru;		/* lrusage sum over child procs */
2407c478bd9Sstevel@tonic-gate 	struct itimerval p_rprof_timer; /* ITIMER_REALPROF interval timer */
2417c478bd9Sstevel@tonic-gate 	uintptr_t p_rprof_cyclic;	/* ITIMER_REALPROF cyclic */
2427c478bd9Sstevel@tonic-gate 	uint_t	p_defunct;		/* number of defunct lwps */
2437c478bd9Sstevel@tonic-gate 	/*
2447c478bd9Sstevel@tonic-gate 	 * profiling. A lock is used in the event of multiple lwp's
2457c478bd9Sstevel@tonic-gate 	 * using the same profiling base/size.
2467c478bd9Sstevel@tonic-gate 	 */
2477c478bd9Sstevel@tonic-gate 	kmutex_t p_pflock;		/* protects user profile arguments */
2487c478bd9Sstevel@tonic-gate 	struct prof p_prof;		/* profile arguments */
2497c478bd9Sstevel@tonic-gate 
2507c478bd9Sstevel@tonic-gate 	/*
2517c478bd9Sstevel@tonic-gate 	 * The user structure
2527c478bd9Sstevel@tonic-gate 	 */
2537c478bd9Sstevel@tonic-gate 	struct user p_user;		/* (see sys/user.h) */
2547c478bd9Sstevel@tonic-gate 
2557c478bd9Sstevel@tonic-gate 	/*
2567c478bd9Sstevel@tonic-gate 	 * Doors.
2577c478bd9Sstevel@tonic-gate 	 */
2587c478bd9Sstevel@tonic-gate 	door_pool_t		p_server_threads; /* common thread pool */
2597c478bd9Sstevel@tonic-gate 	struct door_node	*p_door_list;	/* active doors */
2607c478bd9Sstevel@tonic-gate 	struct door_node	*p_unref_list;
2617c478bd9Sstevel@tonic-gate 	kcondvar_t		p_unref_cv;
2627c478bd9Sstevel@tonic-gate 	char			p_unref_thread;	/* unref thread created */
2637c478bd9Sstevel@tonic-gate 
2647c478bd9Sstevel@tonic-gate 	/*
2657c478bd9Sstevel@tonic-gate 	 * Kernel probes
2667c478bd9Sstevel@tonic-gate 	 */
2677c478bd9Sstevel@tonic-gate 	uchar_t			p_tnf_flags;
2687c478bd9Sstevel@tonic-gate 
2697c478bd9Sstevel@tonic-gate 	/*
2707c478bd9Sstevel@tonic-gate 	 * C2 Security  (C2_AUDIT)
2717c478bd9Sstevel@tonic-gate 	 */
2727c478bd9Sstevel@tonic-gate 	struct p_audit_data	*p_audit_data; /* per process audit structure */
2737c478bd9Sstevel@tonic-gate #if defined(__x86)
2747c478bd9Sstevel@tonic-gate 	/*
2757c478bd9Sstevel@tonic-gate 	 * LDT support.
2767c478bd9Sstevel@tonic-gate 	 */
2777c478bd9Sstevel@tonic-gate 	kmutex_t	p_ldtlock;	/* protects the following fields */
2787c478bd9Sstevel@tonic-gate 	user_desc_t	*p_ldt;		/* Pointer to private LDT */
2797c478bd9Sstevel@tonic-gate 	system_desc_t	p_ldt_desc;	/* segment descriptor for private LDT */
2807c478bd9Sstevel@tonic-gate 	ushort_t	p_ldtlimit;	/* highest selector used */
2817c478bd9Sstevel@tonic-gate #endif
2827c478bd9Sstevel@tonic-gate 	size_t p_swrss;			/* resident set size before last swap */
2837c478bd9Sstevel@tonic-gate 	struct aio	*p_aio;		/* pointer to async I/O struct */
2847c478bd9Sstevel@tonic-gate 	struct itimer	**p_itimer;	/* interval timers */
2857c478bd9Sstevel@tonic-gate 	timeout_id_t	p_alarmid;	/* alarm's timeout id */
2867c478bd9Sstevel@tonic-gate 	caddr_t		p_usrstack;	/* top of the process stack */
2877c478bd9Sstevel@tonic-gate 	uint_t		p_stkprot;	/* stack memory protection */
2887c478bd9Sstevel@tonic-gate 	uint_t		p_datprot;	/* data memory protection */
2897c478bd9Sstevel@tonic-gate 	model_t		p_model;	/* data model determined at exec time */
2907c478bd9Sstevel@tonic-gate 	struct lwpchan_data *p_lcp;	/* lwpchan cache */
2917c478bd9Sstevel@tonic-gate 	kmutex_t	p_lcp_lock;	/* protects assignments to p_lcp */
2927c478bd9Sstevel@tonic-gate 	utrap_handler_t	*p_utraps;	/* pointer to user trap handlers */
2937c478bd9Sstevel@tonic-gate 	struct corectl_path	*p_corefile;	/* pattern for core file */
2947c478bd9Sstevel@tonic-gate 	struct task	*p_task;	/* our containing task */
2957c478bd9Sstevel@tonic-gate 	struct proc	*p_taskprev;	/* ptr to previous process in task */
2967c478bd9Sstevel@tonic-gate 	struct proc	*p_tasknext;	/* ptr to next process in task */
2977c478bd9Sstevel@tonic-gate 	kmutex_t	p_sc_lock;	/* protects p_pagep */
2987c478bd9Sstevel@tonic-gate 	struct sc_page_ctl *p_pagep;	/* list of process's shared pages */
2997c478bd9Sstevel@tonic-gate 	struct rctl_set	*p_rctls;	/* resource controls for this process */
3007c478bd9Sstevel@tonic-gate 	rlim64_t	p_stk_ctl;	/* currently enforced stack size */
3017c478bd9Sstevel@tonic-gate 	rlim64_t	p_fsz_ctl;	/* currently enforced file size */
3027c478bd9Sstevel@tonic-gate 	rlim64_t	p_vmem_ctl;	/* currently enforced addr-space size */
3037c478bd9Sstevel@tonic-gate 	rlim64_t	p_fno_ctl;	/* currently enforced file-desc limit */
3047c478bd9Sstevel@tonic-gate 	pid_t		p_ancpid;	/* ancestor pid, used by exacct */
3057c478bd9Sstevel@tonic-gate 	struct itimerval p_realitimer;	/* real interval timer */
3067c478bd9Sstevel@tonic-gate 	timeout_id_t	p_itimerid;	/* real interval timer's timeout id */
3077c478bd9Sstevel@tonic-gate 	struct corectl_content *p_content;	/* content of core file */
3087c478bd9Sstevel@tonic-gate 
3097c478bd9Sstevel@tonic-gate 	avl_tree_t	p_ct_held;	/* held contracts */
3107c478bd9Sstevel@tonic-gate 	struct ct_equeue **p_ct_equeue;	/* process-type event queues */
3117c478bd9Sstevel@tonic-gate 
3127c478bd9Sstevel@tonic-gate 	struct cont_process *p_ct_process; /* process contract */
3137c478bd9Sstevel@tonic-gate 	list_node_t	p_ct_member;	/* process contract membership */
3147c478bd9Sstevel@tonic-gate 	sigqueue_t	*p_killsqp;	/* sigqueue pointer for SIGKILL */
3157c478bd9Sstevel@tonic-gate 
3167c478bd9Sstevel@tonic-gate 	int		p_dtrace_probes; /* are there probes for this proc? */
3177c478bd9Sstevel@tonic-gate 	uint64_t	p_dtrace_count;	/* number of DTrace tracepoints */
3187c478bd9Sstevel@tonic-gate 					/* (protected by P_PR_LOCK) */
3197c478bd9Sstevel@tonic-gate 	void		*p_dtrace_helpers; /* DTrace helpers, if any */
3207c478bd9Sstevel@tonic-gate 	struct pool	*p_pool;	/* pointer to containing pool */
3217c478bd9Sstevel@tonic-gate 	kcondvar_t	p_poolcv;	/* synchronization with pools */
3227c478bd9Sstevel@tonic-gate 	uint_t		p_poolcnt;	/* # threads inside pool barrier */
3237c478bd9Sstevel@tonic-gate 	uint_t		p_poolflag;	/* pool-related flags (see below) */
3247c478bd9Sstevel@tonic-gate 	uintptr_t	p_portcnt;	/* event ports counter */
3257c478bd9Sstevel@tonic-gate 	struct zone	*p_zone;	/* zone in which process lives */
3267c478bd9Sstevel@tonic-gate 	struct vnode	*p_execdir;	/* directory that p_exec came from */
3277c478bd9Sstevel@tonic-gate } proc_t;
3287c478bd9Sstevel@tonic-gate 
3297c478bd9Sstevel@tonic-gate #define	PROC_T				/* headers relying on proc_t are OK */
3307c478bd9Sstevel@tonic-gate 
3317c478bd9Sstevel@tonic-gate #ifdef _KERNEL
3327c478bd9Sstevel@tonic-gate 
3337c478bd9Sstevel@tonic-gate /* active process chain */
3347c478bd9Sstevel@tonic-gate 
3357c478bd9Sstevel@tonic-gate extern proc_t *practive;
3367c478bd9Sstevel@tonic-gate 
3377c478bd9Sstevel@tonic-gate /* Well known processes */
3387c478bd9Sstevel@tonic-gate 
3397c478bd9Sstevel@tonic-gate extern proc_t *proc_sched;		/* memory scheduler */
3407c478bd9Sstevel@tonic-gate extern proc_t *proc_init;		/* init */
3417c478bd9Sstevel@tonic-gate extern proc_t *proc_pageout;		/* pageout daemon */
3427c478bd9Sstevel@tonic-gate extern proc_t *proc_fsflush;		/* filesystem sync-er */
3437c478bd9Sstevel@tonic-gate 
3447c478bd9Sstevel@tonic-gate #endif /* _KERNEL */
3457c478bd9Sstevel@tonic-gate 
3467c478bd9Sstevel@tonic-gate /*
3477c478bd9Sstevel@tonic-gate  * Stuff to keep track of the number of processes each uid has.
3487c478bd9Sstevel@tonic-gate  * It is tracked on a per-zone basis; that is, if users in different
3497c478bd9Sstevel@tonic-gate  * zones have the same uid, they are tracked separately.
3507c478bd9Sstevel@tonic-gate  *
3517c478bd9Sstevel@tonic-gate  * A structure is allocated when a new <uid,zoneid> pair shows up
3527c478bd9Sstevel@tonic-gate  * There is a hash to find each structure.
3537c478bd9Sstevel@tonic-gate  */
3547c478bd9Sstevel@tonic-gate struct	upcount	{
3557c478bd9Sstevel@tonic-gate 	struct	upcount	*up_next;
3567c478bd9Sstevel@tonic-gate 	uid_t		up_uid;
3577c478bd9Sstevel@tonic-gate 	zoneid_t	up_zoneid;
3587c478bd9Sstevel@tonic-gate 	uint_t		up_count;
3597c478bd9Sstevel@tonic-gate };
3607c478bd9Sstevel@tonic-gate 
3617c478bd9Sstevel@tonic-gate /* process ID info */
3627c478bd9Sstevel@tonic-gate 
3637c478bd9Sstevel@tonic-gate struct pid {
3647c478bd9Sstevel@tonic-gate 	unsigned int pid_prinactive :1;
3657c478bd9Sstevel@tonic-gate 	unsigned int pid_pgorphaned :1;
3667c478bd9Sstevel@tonic-gate 	unsigned int pid_padding :6;	/* used to be pid_ref, now an int */
3677c478bd9Sstevel@tonic-gate 	unsigned int pid_prslot :24;
3687c478bd9Sstevel@tonic-gate 	pid_t pid_id;
3697c478bd9Sstevel@tonic-gate 	struct proc *pid_pglink;
3707c478bd9Sstevel@tonic-gate 	struct pid *pid_link;
3717c478bd9Sstevel@tonic-gate 	uint_t pid_ref;
3727c478bd9Sstevel@tonic-gate };
3737c478bd9Sstevel@tonic-gate 
3747c478bd9Sstevel@tonic-gate #define	p_pgrp p_pgidp->pid_id
3757c478bd9Sstevel@tonic-gate #define	p_pid  p_pidp->pid_id
3767c478bd9Sstevel@tonic-gate #define	p_slot p_pidp->pid_prslot
3777c478bd9Sstevel@tonic-gate #define	p_detached p_pgidp->pid_pgorphaned
3787c478bd9Sstevel@tonic-gate 
3797c478bd9Sstevel@tonic-gate #define	PID_HOLD(pidp)	ASSERT(MUTEX_HELD(&pidlock)); \
3807c478bd9Sstevel@tonic-gate 			++(pidp)->pid_ref;
3817c478bd9Sstevel@tonic-gate #define	PID_RELE(pidp)	ASSERT(MUTEX_HELD(&pidlock)); \
3827c478bd9Sstevel@tonic-gate 			(pidp)->pid_ref > 1 ? \
3837c478bd9Sstevel@tonic-gate 				--(pidp)->pid_ref : pid_rele(pidp);
3847c478bd9Sstevel@tonic-gate 
3857c478bd9Sstevel@tonic-gate /*
3867c478bd9Sstevel@tonic-gate  * Structure containing persistent process lock.  The structure and
3877c478bd9Sstevel@tonic-gate  * macro allow "mutex_enter(&p->p_lock)" to continue working.
3887c478bd9Sstevel@tonic-gate  */
3897c478bd9Sstevel@tonic-gate struct plock {
3907c478bd9Sstevel@tonic-gate 	kmutex_t pl_lock;
3917c478bd9Sstevel@tonic-gate };
3927c478bd9Sstevel@tonic-gate #define	p_lock	p_lockp->pl_lock
3937c478bd9Sstevel@tonic-gate 
3947c478bd9Sstevel@tonic-gate #ifdef _KERNEL
3957c478bd9Sstevel@tonic-gate extern proc_t p0;		/* process 0 */
3967c478bd9Sstevel@tonic-gate extern struct plock p0lock;	/* p0's plock */
3977c478bd9Sstevel@tonic-gate extern struct pid pid0;		/* p0's pid */
3987c478bd9Sstevel@tonic-gate #endif /* _KERNEL */
3997c478bd9Sstevel@tonic-gate 
4007c478bd9Sstevel@tonic-gate /* stat codes */
4017c478bd9Sstevel@tonic-gate 
4027c478bd9Sstevel@tonic-gate #define	SSLEEP	1		/* awaiting an event */
4037c478bd9Sstevel@tonic-gate #define	SRUN	2		/* running */
4047c478bd9Sstevel@tonic-gate #define	SZOMB	3		/* process terminated but not waited for */
4057c478bd9Sstevel@tonic-gate #define	SSTOP	4		/* process stopped by debugger */
4067c478bd9Sstevel@tonic-gate #define	SIDL	5		/* intermediate state in process creation */
4077c478bd9Sstevel@tonic-gate #define	SONPROC	6		/* process is being run on a processor */
4087c478bd9Sstevel@tonic-gate 
4097c478bd9Sstevel@tonic-gate /* p_pidflag codes */
4107c478bd9Sstevel@tonic-gate #define	CLDPEND	0x0001		/* have yet to post a SIGCLD to the parent */
4117c478bd9Sstevel@tonic-gate #define	CLDCONT	0x0002		/* child has notified parent of CLD_CONTINUED */
4127c478bd9Sstevel@tonic-gate 
4137c478bd9Sstevel@tonic-gate /* p_proc_flag codes -- these flags are mostly private to /proc */
4147c478bd9Sstevel@tonic-gate #define	P_PR_TRACE	0x0001	/* signal, fault or syscall tracing via /proc */
4157c478bd9Sstevel@tonic-gate #define	P_PR_PTRACE	0x0002	/* ptrace() compatibility mode */
4167c478bd9Sstevel@tonic-gate #define	P_PR_FORK	0x0004	/* child inherits tracing flags */
4177c478bd9Sstevel@tonic-gate #define	P_PR_LOCK	0x0008	/* process locked by /proc */
4187c478bd9Sstevel@tonic-gate #define	P_PR_ASYNC	0x0010	/* asynchronous stopping via /proc */
4197c478bd9Sstevel@tonic-gate #define	P_PR_EXEC	0x0020	/* process is in exec() */
4207c478bd9Sstevel@tonic-gate #define	P_PR_BPTADJ	0x0040	/* adjust pc on breakpoint trap */
4217c478bd9Sstevel@tonic-gate #define	P_PR_RUNLCL	0x0080	/* set process running on last /proc close */
4227c478bd9Sstevel@tonic-gate #define	P_PR_KILLCL	0x0100	/* kill process on last /proc close */
4237c478bd9Sstevel@tonic-gate 
4247c478bd9Sstevel@tonic-gate /*
4257c478bd9Sstevel@tonic-gate  * p_flag codes
4267c478bd9Sstevel@tonic-gate  *
4277c478bd9Sstevel@tonic-gate  * note that two of these flags, SMSACCT and SSYS, are exported to /proc's
4287c478bd9Sstevel@tonic-gate  * psinfo_t.p_flag field.  Historically, all were, but since they are
4297c478bd9Sstevel@tonic-gate  * implementation dependant, we only export the ones people have come to
4307c478bd9Sstevel@tonic-gate  * rely upon.  Hence, the bit positions of SSYS and SMSACCT should not be
4317c478bd9Sstevel@tonic-gate  * altered.
4327c478bd9Sstevel@tonic-gate  */
4337c478bd9Sstevel@tonic-gate #define	SSYS	   0x00000001	/* system (resident) process */
434*97eda132Sraf #define	SEXITING   0x00000002	/* process is exiting */
4357c478bd9Sstevel@tonic-gate #define	SITBUSY	   0x00000004	/* setitimer(ITIMER_REAL) in progress */
4367c478bd9Sstevel@tonic-gate #define	SWATCHOK   0x00000010	/* proc in acceptable state for watchpoints */
4377c478bd9Sstevel@tonic-gate #define	SKILLED    0x00000100	/* SIGKILL has been posted to the process */
4387c478bd9Sstevel@tonic-gate #define	SSCONT	   0x00000200	/* SIGCONT has been posted to the process */
4397c478bd9Sstevel@tonic-gate #define	SZONETOP   0x00000400	/* process has no valid PPID in its zone */
4407c478bd9Sstevel@tonic-gate #define	SEXTKILLED 0x00000800	/* SKILLED is from another contract */
4417c478bd9Sstevel@tonic-gate #define	SUGID	   0x00002000	/* process was result of set[ug]id exec */
4427c478bd9Sstevel@tonic-gate #define	SEXECED	   0x00004000	/* this process has execed */
4437c478bd9Sstevel@tonic-gate #define	SJCTL	   0x00010000	/* SIGCLD sent when children stop/continue */
4447c478bd9Sstevel@tonic-gate #define	SNOWAIT    0x00020000	/* children never become zombies */
4457c478bd9Sstevel@tonic-gate #define	SVFORK	   0x00040000	/* child of vfork that has not yet exec'd */
4467c478bd9Sstevel@tonic-gate #define	SVFWAIT	   0x00080000	/* parent of vfork waiting for child to exec */
4477c478bd9Sstevel@tonic-gate #define	SEXITLWPS  0x00100000	/* have lwps exit within the process */
4487c478bd9Sstevel@tonic-gate #define	SHOLDFORK  0x00200000	/* hold lwps where they're cloneable */
4497c478bd9Sstevel@tonic-gate #define	SHOLDFORK1 0x00800000	/* hold lwps in place (not cloning) */
4507c478bd9Sstevel@tonic-gate #define	SCOREDUMP  0x01000000	/* process is dumping core */
4517c478bd9Sstevel@tonic-gate #define	SMSACCT    0x02000000	/* process is keeping micro-state accounting */
4527c478bd9Sstevel@tonic-gate #define	SLWPWRAP   0x04000000	/* process has wrapped its lwp ids */
4537c478bd9Sstevel@tonic-gate #define	SAUTOLPG   0x08000000	/* kernel controls page sizes */
4547c478bd9Sstevel@tonic-gate #define	SNOCD	   0x10000000	/* new creds from VSxID, do not coredump */
4557c478bd9Sstevel@tonic-gate #define	SHOLDWATCH 0x20000000	/* hold lwps for watchpoint operation */
4567c478bd9Sstevel@tonic-gate #define	SMSFORK	   0x40000000	/* child inherits micro-state accounting */
4577c478bd9Sstevel@tonic-gate #define	SDOCORE	   0x80000000	/* process will attempt to dump core */
4587c478bd9Sstevel@tonic-gate 
4597c478bd9Sstevel@tonic-gate /*
4607c478bd9Sstevel@tonic-gate  * p_poolflag codes
4617c478bd9Sstevel@tonic-gate  *
4627c478bd9Sstevel@tonic-gate  * These flags are used to synchronize with the pool subsystem to allow
4637c478bd9Sstevel@tonic-gate  * re-binding of processes to new pools.
4647c478bd9Sstevel@tonic-gate  */
4657c478bd9Sstevel@tonic-gate #define	PBWAIT		0x0001	/* process should wait outside fork/exec/exit */
4667c478bd9Sstevel@tonic-gate #define	PEXITED		0x0002	/* process exited and about to become zombie */
4677c478bd9Sstevel@tonic-gate 
4687c478bd9Sstevel@tonic-gate /* Macro to convert proc pointer to a user block pointer */
4697c478bd9Sstevel@tonic-gate #define	PTOU(p)		(&(p)->p_user)
4707c478bd9Sstevel@tonic-gate 
4717c478bd9Sstevel@tonic-gate #define	tracing(p, sig)	(sigismember(&(p)->p_sigmask, sig))
4727c478bd9Sstevel@tonic-gate 
4737c478bd9Sstevel@tonic-gate /* Macro to reduce unnecessary calls to issig() */
4747c478bd9Sstevel@tonic-gate 
4757c478bd9Sstevel@tonic-gate #define	ISSIG(t, why)	ISSIG_FAST(t, ttolwp(t), ttoproc(t), why)
4767c478bd9Sstevel@tonic-gate 
4777c478bd9Sstevel@tonic-gate /*
4787c478bd9Sstevel@tonic-gate  * Fast version of ISSIG.
4797c478bd9Sstevel@tonic-gate  *	1. uses register pointers to lwp and proc instead of reloading them.
4807c478bd9Sstevel@tonic-gate  *	2. uses bit-wise OR of tests, since the usual case is that none of them
4817c478bd9Sstevel@tonic-gate  *	   are true, this saves orcc's and branches.
4827c478bd9Sstevel@tonic-gate  *	3. load the signal flags instead of using sigisempty() macro which does
4837c478bd9Sstevel@tonic-gate  *	   a branch to convert to boolean.
4847c478bd9Sstevel@tonic-gate  */
4857c478bd9Sstevel@tonic-gate #define	ISSIG_FAST(t, lwp, p, why)		\
4867c478bd9Sstevel@tonic-gate 	(ISSIG_PENDING(t, lwp, p) && issig(why))
4877c478bd9Sstevel@tonic-gate 
4887c478bd9Sstevel@tonic-gate #define	ISSIG_PENDING(t, lwp, p)		\
4897c478bd9Sstevel@tonic-gate 	((lwp)->lwp_cursig |			\
4907c478bd9Sstevel@tonic-gate 	    sigcheck((p), (t)) |		\
4917c478bd9Sstevel@tonic-gate 	    (p)->p_stopsig |			\
4927c478bd9Sstevel@tonic-gate 	    (t)->t_dtrace_stop |		\
4937c478bd9Sstevel@tonic-gate 	    (t)->t_dtrace_sig |			\
4947c478bd9Sstevel@tonic-gate 	    ((t)->t_proc_flag & (TP_PRSTOP|TP_HOLDLWP|TP_CHKPT|TP_PAUSE)) | \
4957c478bd9Sstevel@tonic-gate 	    ((p)->p_flag & (SEXITLWPS|SKILLED|SHOLDFORK1|SHOLDWATCH)))
4967c478bd9Sstevel@tonic-gate 
4977c478bd9Sstevel@tonic-gate #define	ISSTOP(sig)	 (u.u_signal[sig-1] == SIG_DFL && \
4987c478bd9Sstevel@tonic-gate 				sigismember(&stopdefault, sig))
4997c478bd9Sstevel@tonic-gate 
5007c478bd9Sstevel@tonic-gate #define	ISHOLD(p)	((p)->p_flag & SHOLDFORK)
5017c478bd9Sstevel@tonic-gate 
5027c478bd9Sstevel@tonic-gate #define	MUSTRETURN(p, t)	(ISHOLD(p) | (t)->t_activefd.a_stale)
5037c478bd9Sstevel@tonic-gate 
5047c478bd9Sstevel@tonic-gate /*
5057c478bd9Sstevel@tonic-gate  * Determine if there are any watchpoints active in the process.
5067c478bd9Sstevel@tonic-gate  */
5077c478bd9Sstevel@tonic-gate #define	pr_watch_active(p)	(avl_numnodes(&(p)->p_warea) != 0)
5087c478bd9Sstevel@tonic-gate 
5097c478bd9Sstevel@tonic-gate /* Reasons for calling issig() */
5107c478bd9Sstevel@tonic-gate 
5117c478bd9Sstevel@tonic-gate #define	FORREAL		0	/* Usual side-effects */
5127c478bd9Sstevel@tonic-gate #define	JUSTLOOKING	1	/* Don't stop the process */
5137c478bd9Sstevel@tonic-gate 
5147c478bd9Sstevel@tonic-gate /* 'what' values for stop(PR_SUSPENDED, what) */
5157c478bd9Sstevel@tonic-gate #define	SUSPEND_NORMAL	0
5167c478bd9Sstevel@tonic-gate #define	SUSPEND_PAUSE	1
5177c478bd9Sstevel@tonic-gate 
5187c478bd9Sstevel@tonic-gate /* pseudo-flag to lwp_create() */
5197c478bd9Sstevel@tonic-gate #define	NOCLASS	(-1)
5207c478bd9Sstevel@tonic-gate 
5217c478bd9Sstevel@tonic-gate /* LWP stats updated via lwp_stats_update() */
5227c478bd9Sstevel@tonic-gate typedef enum {
5237c478bd9Sstevel@tonic-gate 	LWP_STAT_INBLK,
5247c478bd9Sstevel@tonic-gate 	LWP_STAT_OUBLK,
5257c478bd9Sstevel@tonic-gate 	LWP_STAT_MSGRCV,
5267c478bd9Sstevel@tonic-gate 	LWP_STAT_MSGSND
5277c478bd9Sstevel@tonic-gate } lwp_stat_id_t;
5287c478bd9Sstevel@tonic-gate 
5297c478bd9Sstevel@tonic-gate #ifdef _KERNEL
5307c478bd9Sstevel@tonic-gate 
5317c478bd9Sstevel@tonic-gate /* user profiling functions */
5327c478bd9Sstevel@tonic-gate 
5337c478bd9Sstevel@tonic-gate extern void profil_tick(uintptr_t);
5347c478bd9Sstevel@tonic-gate 
5357c478bd9Sstevel@tonic-gate /* process management functions */
5367c478bd9Sstevel@tonic-gate 
5377c478bd9Sstevel@tonic-gate extern int newproc(void (*)(), caddr_t, id_t, int, struct contract **);
5387c478bd9Sstevel@tonic-gate extern void vfwait(pid_t);
5397c478bd9Sstevel@tonic-gate extern void proc_detach(proc_t *);
5407c478bd9Sstevel@tonic-gate extern void freeproc(proc_t *);
5417c478bd9Sstevel@tonic-gate extern void setrun(kthread_t *);
5427c478bd9Sstevel@tonic-gate extern void setrun_locked(kthread_t *);
5437c478bd9Sstevel@tonic-gate extern void exit(int, int);
5447c478bd9Sstevel@tonic-gate extern int proc_exit(int, int);
545*97eda132Sraf extern void proc_is_exiting(proc_t *);
5467c478bd9Sstevel@tonic-gate extern void relvm(void);
5477c478bd9Sstevel@tonic-gate extern void add_ns(proc_t *, proc_t *);
5487c478bd9Sstevel@tonic-gate extern void delete_ns(proc_t *, proc_t *);
5497c478bd9Sstevel@tonic-gate extern void upcount_inc(uid_t, zoneid_t);
5507c478bd9Sstevel@tonic-gate extern void upcount_dec(uid_t, zoneid_t);
5517c478bd9Sstevel@tonic-gate extern int upcount_get(uid_t, zoneid_t);
5527c478bd9Sstevel@tonic-gate #if defined(__x86)
5537c478bd9Sstevel@tonic-gate extern int ldt_dup(proc_t *, proc_t *);
5547c478bd9Sstevel@tonic-gate extern selector_t setup_thrptr(proc_t *, uintptr_t);
5557c478bd9Sstevel@tonic-gate #endif
5567c478bd9Sstevel@tonic-gate 
5577c478bd9Sstevel@tonic-gate extern void sigcld(proc_t *, sigqueue_t *);
5587c478bd9Sstevel@tonic-gate extern void sigcld_delete(k_siginfo_t *);
5597c478bd9Sstevel@tonic-gate extern void sigcld_repost(void);
5607c478bd9Sstevel@tonic-gate extern int fsig(k_sigset_t *, kthread_t *);
5617c478bd9Sstevel@tonic-gate extern void psig(void);
5627c478bd9Sstevel@tonic-gate extern void stop(int, int);
5637c478bd9Sstevel@tonic-gate extern int stop_on_fault(uint_t, k_siginfo_t *);
5647c478bd9Sstevel@tonic-gate extern int issig(int);
5657c478bd9Sstevel@tonic-gate extern int jobstopped(proc_t *);
5667c478bd9Sstevel@tonic-gate extern void psignal(proc_t *, int);
5677c478bd9Sstevel@tonic-gate extern void tsignal(kthread_t *, int);
5687c478bd9Sstevel@tonic-gate extern void sigtoproc(proc_t *, kthread_t *, int);
5697c478bd9Sstevel@tonic-gate extern void trapsig(k_siginfo_t *, int);
5707c478bd9Sstevel@tonic-gate extern int eat_signal(kthread_t *, int);
5717c478bd9Sstevel@tonic-gate extern int signal_is_blocked(kthread_t *, int);
5727c478bd9Sstevel@tonic-gate extern int sigcheck(proc_t *, kthread_t *);
5737c478bd9Sstevel@tonic-gate extern void sigdefault(proc_t *);
5747c478bd9Sstevel@tonic-gate 
5757c478bd9Sstevel@tonic-gate extern void pid_setmin(void);
5767c478bd9Sstevel@tonic-gate extern pid_t pid_assign(proc_t *);
5777c478bd9Sstevel@tonic-gate extern int pid_rele(struct pid *);
5787c478bd9Sstevel@tonic-gate extern void pid_exit(proc_t *);
5797c478bd9Sstevel@tonic-gate extern void proc_entry_free(struct pid *);
5807c478bd9Sstevel@tonic-gate extern proc_t *prfind(pid_t);
5817c478bd9Sstevel@tonic-gate extern proc_t *prfind_zone(pid_t, zoneid_t);
5827c478bd9Sstevel@tonic-gate extern proc_t *pgfind(pid_t);
5837c478bd9Sstevel@tonic-gate extern proc_t *pgfind_zone(pid_t, zoneid_t);
5847c478bd9Sstevel@tonic-gate extern proc_t *sprlock(pid_t);
5857c478bd9Sstevel@tonic-gate extern proc_t *sprlock_zone(pid_t, zoneid_t);
5867c478bd9Sstevel@tonic-gate extern void sprlock_proc(proc_t *);
5877c478bd9Sstevel@tonic-gate extern void sprunlock(proc_t *);
5887c478bd9Sstevel@tonic-gate extern void pid_init(void);
5897c478bd9Sstevel@tonic-gate extern proc_t *pid_entry(int);
5907c478bd9Sstevel@tonic-gate extern int pid_slot(proc_t *);
5917c478bd9Sstevel@tonic-gate extern void signal(pid_t, int);
5927c478bd9Sstevel@tonic-gate extern void prsignal(struct pid *, int);
5937c478bd9Sstevel@tonic-gate extern int uread(proc_t *, void *, size_t, uintptr_t);
5947c478bd9Sstevel@tonic-gate extern int uwrite(proc_t *, void *, size_t, uintptr_t);
5957c478bd9Sstevel@tonic-gate 
5967c478bd9Sstevel@tonic-gate extern void pgsignal(struct pid *, int);
5977c478bd9Sstevel@tonic-gate extern void pgjoin(proc_t *, struct pid *);
5987c478bd9Sstevel@tonic-gate extern void pgcreate(proc_t *);
5997c478bd9Sstevel@tonic-gate extern void pgexit(proc_t *);
6007c478bd9Sstevel@tonic-gate extern void pgdetach(proc_t *);
6017c478bd9Sstevel@tonic-gate extern int pgmembers(pid_t);
6027c478bd9Sstevel@tonic-gate 
6037c478bd9Sstevel@tonic-gate extern	void	init_mstate(kthread_t *, int);
6047c478bd9Sstevel@tonic-gate extern	int	new_mstate(kthread_t *, int);
6057c478bd9Sstevel@tonic-gate extern	void	restore_mstate(kthread_t *);
6067c478bd9Sstevel@tonic-gate extern	void	term_mstate(kthread_t *);
6077c478bd9Sstevel@tonic-gate extern	void	estimate_msacct(kthread_t *, hrtime_t);
6087c478bd9Sstevel@tonic-gate extern	void	disable_msacct(proc_t *);
6097c478bd9Sstevel@tonic-gate extern	hrtime_t mstate_aggr_state(proc_t *, int);
6107c478bd9Sstevel@tonic-gate extern	void	syscall_mstate(int, int);
6117c478bd9Sstevel@tonic-gate 
6127c478bd9Sstevel@tonic-gate extern	uint_t	cpu_update_pct(kthread_t *, hrtime_t);
6137c478bd9Sstevel@tonic-gate 
6147c478bd9Sstevel@tonic-gate extern void	set_proc_pre_sys(proc_t *p);
6157c478bd9Sstevel@tonic-gate extern void	set_proc_post_sys(proc_t *p);
6167c478bd9Sstevel@tonic-gate extern void	set_proc_sys(proc_t *p);
6177c478bd9Sstevel@tonic-gate extern void	set_proc_ast(proc_t *p);
6187c478bd9Sstevel@tonic-gate extern void	set_all_proc_sys(void);
6197c478bd9Sstevel@tonic-gate 
6207c478bd9Sstevel@tonic-gate /* thread function prototypes */
6217c478bd9Sstevel@tonic-gate 
6227c478bd9Sstevel@tonic-gate extern	kthread_t	*thread_create(
6237c478bd9Sstevel@tonic-gate 	caddr_t		stk,
6247c478bd9Sstevel@tonic-gate 	size_t		stksize,
6257c478bd9Sstevel@tonic-gate 	void		(*proc)(),
6267c478bd9Sstevel@tonic-gate 	void		*arg,
6277c478bd9Sstevel@tonic-gate 	size_t		len,
6287c478bd9Sstevel@tonic-gate 	proc_t 		*pp,
6297c478bd9Sstevel@tonic-gate 	int		state,
6307c478bd9Sstevel@tonic-gate 	pri_t		pri);
6317c478bd9Sstevel@tonic-gate extern	void	thread_exit(void) __NORETURN;
6327c478bd9Sstevel@tonic-gate extern	void	thread_free(kthread_t *);
6337c478bd9Sstevel@tonic-gate extern	void	thread_rele(kthread_t *);
6347c478bd9Sstevel@tonic-gate extern	void	thread_join(kt_did_t);
6357c478bd9Sstevel@tonic-gate extern	int	reaper(void);
6367c478bd9Sstevel@tonic-gate extern	void	installctx(kthread_t *, void *, void (*)(), void (*)(),
6377c478bd9Sstevel@tonic-gate     void (*)(), void (*)(), void (*)(), void (*)());
6387c478bd9Sstevel@tonic-gate extern	int	removectx(kthread_t *, void *, void (*)(), void (*)(),
6397c478bd9Sstevel@tonic-gate     void (*)(), void (*)(), void (*)(), void (*)());
6407c478bd9Sstevel@tonic-gate extern	void	savectx(kthread_t *);
6417c478bd9Sstevel@tonic-gate extern	void	restorectx(kthread_t *);
6427c478bd9Sstevel@tonic-gate extern	void	forkctx(kthread_t *, kthread_t *);
6437c478bd9Sstevel@tonic-gate extern	void	lwp_createctx(kthread_t *, kthread_t *);
6447c478bd9Sstevel@tonic-gate extern	void	exitctx(kthread_t *);
6457c478bd9Sstevel@tonic-gate extern	void	freectx(kthread_t *, int);
6467c478bd9Sstevel@tonic-gate extern	kthread_t *thread_unpin(void);
6477c478bd9Sstevel@tonic-gate extern	void	thread_create_intr(struct cpu *);
6487c478bd9Sstevel@tonic-gate extern	void	thread_init(void);
6497c478bd9Sstevel@tonic-gate extern	void	thread_load(kthread_t *, void (*)(), caddr_t, size_t);
6507c478bd9Sstevel@tonic-gate 
6517c478bd9Sstevel@tonic-gate extern	void	tsd_create(uint_t *, void (*)(void *));
6527c478bd9Sstevel@tonic-gate extern	void	tsd_destroy(uint_t *);
6537c478bd9Sstevel@tonic-gate extern	void	*tsd_getcreate(uint_t *, void (*)(void *), void *(*)(void));
6547c478bd9Sstevel@tonic-gate extern	void	*tsd_get(uint_t);
6557c478bd9Sstevel@tonic-gate extern	int	tsd_set(uint_t, void *);
6567c478bd9Sstevel@tonic-gate extern	void	tsd_exit(void);
6577c478bd9Sstevel@tonic-gate extern	void	*tsd_agent_get(kthread_t *, uint_t);
6587c478bd9Sstevel@tonic-gate extern	int	tsd_agent_set(kthread_t *, uint_t, void *);
6597c478bd9Sstevel@tonic-gate 
6607c478bd9Sstevel@tonic-gate /* lwp function prototypes */
6617c478bd9Sstevel@tonic-gate 
6627c478bd9Sstevel@tonic-gate extern	klwp_t 		*lwp_create(
6637c478bd9Sstevel@tonic-gate 	void		(*proc)(),
6647c478bd9Sstevel@tonic-gate 	caddr_t		arg,
6657c478bd9Sstevel@tonic-gate 	size_t		len,
6667c478bd9Sstevel@tonic-gate 	proc_t		*p,
6677c478bd9Sstevel@tonic-gate 	int		state,
6687c478bd9Sstevel@tonic-gate 	int		pri,
6697c478bd9Sstevel@tonic-gate 	const k_sigset_t *smask,
6707c478bd9Sstevel@tonic-gate 	int		cid,
6717c478bd9Sstevel@tonic-gate 	id_t		lwpid);
6727c478bd9Sstevel@tonic-gate extern	kthread_t *idtot(proc_t *, id_t);
6737c478bd9Sstevel@tonic-gate extern	void	lwp_hash_in(proc_t *, lwpent_t *);
6747c478bd9Sstevel@tonic-gate extern	void	lwp_hash_out(proc_t *, id_t);
6757c478bd9Sstevel@tonic-gate extern	lwpdir_t *lwp_hash_lookup(proc_t *, id_t);
6767c478bd9Sstevel@tonic-gate extern	void	lwp_create_done(kthread_t *);
6777c478bd9Sstevel@tonic-gate extern	void	lwp_exit(void);
6787c478bd9Sstevel@tonic-gate extern	void	lwp_pcb_exit(void);
6797c478bd9Sstevel@tonic-gate extern	void	lwp_cleanup(void);
6807c478bd9Sstevel@tonic-gate extern	int	lwp_suspend(kthread_t *);
6817c478bd9Sstevel@tonic-gate extern	void	lwp_continue(kthread_t *);
6827c478bd9Sstevel@tonic-gate extern	void	holdlwp(void);
6837c478bd9Sstevel@tonic-gate extern	void	stoplwp(void);
6847c478bd9Sstevel@tonic-gate extern	int	holdlwps(int);
6857c478bd9Sstevel@tonic-gate extern	int	holdwatch(void);
6867c478bd9Sstevel@tonic-gate extern	void	pokelwps(proc_t *);
6877c478bd9Sstevel@tonic-gate extern	void	continuelwps(proc_t *);
6887c478bd9Sstevel@tonic-gate extern	int	exitlwps(int);
6897c478bd9Sstevel@tonic-gate extern	void	lwp_ctmpl_copy(klwp_t *, klwp_t *);
6907c478bd9Sstevel@tonic-gate extern	void	lwp_ctmpl_clear(klwp_t *);
6917c478bd9Sstevel@tonic-gate extern	klwp_t	*forklwp(klwp_t *, proc_t *, id_t);
6927c478bd9Sstevel@tonic-gate extern	void	lwp_load(klwp_t *, gregset_t, uintptr_t);
6937c478bd9Sstevel@tonic-gate extern	void	lwp_setrval(klwp_t *, int, int);
6947c478bd9Sstevel@tonic-gate extern	void	lwp_forkregs(klwp_t *, klwp_t *);
6957c478bd9Sstevel@tonic-gate extern	void	lwp_freeregs(klwp_t *, int);
6967c478bd9Sstevel@tonic-gate extern	caddr_t	lwp_stk_init(klwp_t *, caddr_t);
6977c478bd9Sstevel@tonic-gate extern	void	lwp_stk_fini(klwp_t *);
6987c478bd9Sstevel@tonic-gate extern	void	lwp_installctx(klwp_t *);
6997c478bd9Sstevel@tonic-gate extern	void	lwp_rtt(void);
7007c478bd9Sstevel@tonic-gate extern	void	lwp_rtt_initial(void);
7017c478bd9Sstevel@tonic-gate extern	int	lwp_setprivate(klwp_t *, int, uintptr_t);
7027c478bd9Sstevel@tonic-gate extern	void	lwp_stat_update(lwp_stat_id_t, long);
7037c478bd9Sstevel@tonic-gate 
7047c478bd9Sstevel@tonic-gate /*
7057c478bd9Sstevel@tonic-gate  * Signal queue function prototypes. Must be here due to header ordering
7067c478bd9Sstevel@tonic-gate  * dependencies.
7077c478bd9Sstevel@tonic-gate  */
7087c478bd9Sstevel@tonic-gate extern void sigqfree(proc_t *);
7097c478bd9Sstevel@tonic-gate extern void siginfofree(sigqueue_t *);
7107c478bd9Sstevel@tonic-gate extern void sigdeq(proc_t *, kthread_t *, int, sigqueue_t **);
7117c478bd9Sstevel@tonic-gate extern void sigdelq(proc_t *, kthread_t *, int);
7127c478bd9Sstevel@tonic-gate extern void sigaddq(proc_t *, kthread_t *, k_siginfo_t *, int);
7137c478bd9Sstevel@tonic-gate extern void sigaddqa(proc_t *, kthread_t *, sigqueue_t *);
7147c478bd9Sstevel@tonic-gate extern void sigqsend(int, proc_t *, kthread_t *, sigqueue_t *);
7157c478bd9Sstevel@tonic-gate extern void sigdupq(proc_t *, proc_t *);
7167c478bd9Sstevel@tonic-gate extern int sigwillqueue(int, int);
7177c478bd9Sstevel@tonic-gate extern sigqhdr_t *sigqhdralloc(size_t, uint_t);
7187c478bd9Sstevel@tonic-gate extern sigqueue_t *sigqalloc(sigqhdr_t *);
7197c478bd9Sstevel@tonic-gate extern void sigqhdrfree(sigqhdr_t *);
7207c478bd9Sstevel@tonic-gate extern sigqueue_t *sigappend(k_sigset_t *, sigqueue_t *,
7217c478bd9Sstevel@tonic-gate 	k_sigset_t *, sigqueue_t *);
7227c478bd9Sstevel@tonic-gate extern sigqueue_t *sigprepend(k_sigset_t *, sigqueue_t *,
7237c478bd9Sstevel@tonic-gate 	k_sigset_t *, sigqueue_t *);
7247c478bd9Sstevel@tonic-gate extern void winfo(proc_t *, k_siginfo_t *, int);
7257c478bd9Sstevel@tonic-gate extern int wstat(int, int);
7267c478bd9Sstevel@tonic-gate extern int sendsig(int, k_siginfo_t *, void (*)());
7277c478bd9Sstevel@tonic-gate #if defined(_SYSCALL32_IMPL)
7287c478bd9Sstevel@tonic-gate extern int sendsig32(int, k_siginfo_t *, void (*)());
7297c478bd9Sstevel@tonic-gate #endif
7307c478bd9Sstevel@tonic-gate 
7317c478bd9Sstevel@tonic-gate #endif	/* _KERNEL */
7327c478bd9Sstevel@tonic-gate 
7337c478bd9Sstevel@tonic-gate #ifdef	__cplusplus
7347c478bd9Sstevel@tonic-gate }
7357c478bd9Sstevel@tonic-gate #endif
7367c478bd9Sstevel@tonic-gate 
7377c478bd9Sstevel@tonic-gate #endif	/* _SYS_PROC_H */
738