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