xref: /dragonfly/sys/sys/proc.h (revision dcb5d66b)
1 /*-
2  * Copyright (c) 1986, 1989, 1991, 1993
3  *	The Regents of the University of California.  All rights reserved.
4  * (c) UNIX System Laboratories, Inc.
5  * All or some portions of this file are derived from material licensed
6  * to the University of California by American Telephone and Telegraph
7  * Co. or Unix System Laboratories, Inc. and are reproduced herein with
8  * the permission of UNIX System Laboratories, Inc.
9  *
10  * Redistribution and use in source and binary forms, with or without
11  * modification, are permitted provided that the following conditions
12  * are met:
13  * 1. Redistributions of source code must retain the above copyright
14  *    notice, this list of conditions and the following disclaimer.
15  * 2. Redistributions in binary form must reproduce the above copyright
16  *    notice, this list of conditions and the following disclaimer in the
17  *    documentation and/or other materials provided with the distribution.
18  * 3. Neither the name of the University nor the names of its contributors
19  *    may be used to endorse or promote products derived from this software
20  *    without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
23  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
24  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
25  * ARE DISCLAIMED.  IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
26  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
27  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
28  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
29  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
30  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
31  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
32  * SUCH DAMAGE.
33  */
34 #ifndef _SYS_PROC_H_
35 #define	_SYS_PROC_H_
36 
37 #if !defined(_KERNEL) && !defined(_KERNEL_STRUCTURES)
38 
39 #error "Userland must include sys/user.h instead of sys/proc.h"
40 
41 #else
42 
43 #include <sys/callout.h>		/* For struct callout. */
44 #include <sys/filedesc.h>
45 #include <sys/queue.h>
46 #include <sys/tree.h>
47 #include <sys/rtprio.h>			/* For struct rtprio. */
48 #include <sys/signal.h>
49 #include <sys/lock.h>
50 #include <sys/upmap.h>
51 #ifndef _KERNEL
52 #include <sys/time.h>			/* For structs itimerval, timeval. */
53 #endif
54 #include <sys/ucred.h>
55 #include <sys/event.h>			/* For struct klist */
56 #include <sys/eventvar.h>
57 #include <sys/sysent.h>			/* For struct sysentvec */
58 #include <sys/thread.h>
59 #include <sys/varsym.h>
60 #include <sys/resourcevar.h>
61 #ifdef _KERNEL
62 #include <sys/procctl.h>
63 #include <sys/globaldata.h>
64 #endif
65 #include <sys/systimer.h>
66 #include <sys/iosched.h>
67 #include <sys/usched.h>
68 #include <machine/proc.h>		/* Machine-dependent proc substruct. */
69 #include <machine/atomic.h>		/* Machine-dependent proc substruct. */
70 #include <sys/signalvar.h>
71 
72 struct proc;
73 struct pgrp;
74 struct session;
75 struct lwp;
76 struct uidcount;
77 
78 LIST_HEAD(proclist, proc);
79 LIST_HEAD(pgrplist, pgrp);
80 LIST_HEAD(sesslist, session);
81 LIST_HEAD(lwplist, lwp);
82 
83 struct lwp_rb_tree;
84 RB_HEAD(lwp_rb_tree, lwp);
85 RB_PROTOTYPE2(lwp_rb_tree, lwp, u.lwp_rbnode, rb_lwp_compare, lwpid_t);
86 
87 /*
88  * One structure allocated per session.
89  */
90 struct	session {
91 	LIST_ENTRY(session) s_list;	/* Hash chain. */
92 	int	s_count;		/* Ref cnt; pgrps in session. */
93 	struct	proc *s_leader;		/* Session leader. */
94 	struct	vnode *s_ttyvp;		/* Vnode of controlling terminal. */
95 	struct	tty *s_ttyp;		/* Controlling terminal. */
96 	pid_t	s_sid;			/* Session ID */
97 	char	s_login[roundup(MAXLOGNAME, sizeof(long))];	/* Setlogin() name. */
98 };
99 
100 /*
101  * One structure allocated per process group.
102  */
103 struct	pgrp {
104 	LIST_ENTRY(pgrp) pg_list;	/* Hash chain. */
105 	struct proclist pg_members;	/* Pointer to pgrp members. */
106 	struct	session *pg_session;	/* Pointer to session. */
107 	struct  sigiolst pg_sigiolst;	/* List of sigio sources. */
108 	pid_t	pg_id;			/* Pgrp id. */
109 	int	pg_jobc;	/* # procs qualifying pgrp for job control */
110 	u_int	pg_refs;
111 	struct lwkt_token pg_token;
112 	struct lock pg_lock;
113 };
114 
115 #define	PS_NOCLDWAIT	0x0001	/* No zombies if child dies */
116 #define	PS_NOCLDSTOP	0x0002	/* No SIGCHLD when children stop. */
117 #define	PS_CLDSIGIGN	0x0004	/* The SIGCHLD handler is SIG_IGN. */
118 
119 /*
120  * pargs, used to hold a copy of the command line, if it had a sane
121  * length
122  */
123 struct	pargs {
124 	u_int	ar_ref;		/* Reference count */
125 	u_int	ar_length;	/* Length */
126 	u_char	ar_args[0];	/* Arguments */
127 };
128 
129 /*
130  * Description of a process.
131  *
132  * This structure contains the information needed to manage a thread of
133  * control, known in UN*X as a process; it has references to substructures
134  * containing descriptions of things that the process uses, but may share
135  * with related processes.  The process structure and the substructures
136  * are always addressable except for those marked "(PROC ONLY)" below,
137  * which might be addressable only on a processor on which the process
138  * is running.
139  *
140  * NOTE!  The process start time is stored in the thread structure associated
141  * with the process.  If the process is a Zombie, then this field will be
142  * inaccessible due to the thread structure being free'd in kern_wait1().
143  */
144 
145 struct jail;
146 struct vkernel_proc;
147 struct vkernel_lwp;
148 struct vmspace_entry;
149 struct ktrace_node;
150 struct sem_undo;
151 
152 enum lwpstat {
153 	LSRUN = 1,
154 	LSSTOP = 2,
155 	LSSLEEP = 3,
156 };
157 
158 enum procstat {
159 	SIDL = 1,
160 	SACTIVE = 2,
161 	SSTOP = 3,
162 	SZOMB = 4,
163 	SCORE = 5,
164 };
165 
166 struct lwp {
167 	TAILQ_ENTRY(lwp) lwp_procq;	/* run/sleep queue. */
168 	union {
169 	    RB_ENTRY(lwp)	lwp_rbnode;	/* RB tree node - lwp in proc */
170 	    LIST_ENTRY(lwp)	lwp_reap_entry;	/* reaper list */
171 	} u;
172 
173 	struct proc	*lwp_proc;	/* Link to our proc. */
174 	struct vmspace	*lwp_vmspace;	/* Inherited from p_vmspace */
175 	struct vkernel_lwp *lwp_vkernel;/* VKernel support, lwp part */
176 
177 	lwpid_t		lwp_tid;	/* Our thread id, >= 1 */
178 
179 	u_int		lwp_flags;	/* LWP_*    flags */
180 	u_int		lwp_mpflags;	/* LWP_MP_* flags */
181 	enum lwpstat	lwp_stat;	/* LS* lwp status */
182 	int		lwp_lock;	/* lwp lock (prevent destruct) count */
183 
184 	int		lwp_dupfd;	/* Sideways return value from fdopen */
185 
186 	/*
187 	 * The following two fields are marked XXX since (at least) the
188 	 * 4.4BSD-Lite2 import.  I can only guess the reason:  It is ugly.
189 	 * These fields are used to pass the trap code from trapsignal() to
190 	 * postsig(), which gets called later from userret().
191 	 *
192 	 * The correct "fix" for these XXX is to convert our signal system
193 	 * to use signal queues, where each signal can carry its own meta
194 	 * data.
195 	 */
196 	int		lwp_sig;	/* for core dump/debugger XXX */
197         u_long		lwp_code;	/* for core dump/debugger XXX */
198 
199 	/*
200 	 * Scheduling.
201 	 */
202 	sysclock_t	lwp_cpticks;	/* cpu used in sched clock ticks */
203 	sysclock_t	lwp_cpbase;	/* Measurement base */
204 	fixpt_t		lwp_pctcpu;	/* %cpu for this process */
205 	u_int		lwp_slptime;	/* Time since last blocked. */
206 	u_int		lwp_rebal_ticks; /* Timestamp sched on current cpu */
207 
208 	int		lwp_traceflag;	/* Kernel trace points. */
209 
210 	struct rusage	lwp_ru;		/* stats for this lwp */
211 
212 	union usched_data lwp_usdata;	/* User scheduler specific */
213 
214 #define lwp_startcopy	lwp_cpumask
215 	cpumask_t	lwp_cpumask;
216 	sigset_t	lwp_siglist;	/* Signals arrived but not delivered. */
217 	sigset_t	lwp_oldsigmask;	/* saved mask from before sigpause */
218 	sigset_t	lwp_sigmask;	/* Current signal mask. */
219 	stack_t		lwp_sigstk;	/* sp & on stack state variable */
220 
221 	struct rtprio	lwp_rtprio;	/* Realtime priority. */
222 #define	lwp_endcopy	lwp_md
223 
224 	struct mdproc	lwp_md;		/* Any machine-dependent fields. */
225 
226 	struct thread	*lwp_thread;	/* backpointer to proc's thread */
227 	void		*lwp_unused01;	/* for future fields */
228 	struct kqueue	lwp_kqueue;	/* for select/poll */
229 	uint64_t	lwp_kqueue_serial; /* for select/poll */
230 	struct lwkt_token lwp_token;	/* per-lwp token for signal/state */
231 	struct spinlock lwp_spin;	/* spinlock for signal handling */
232 	void		*lwp_reserveds1; /* reserved for lwp_saveusp */
233 	void		*lwp_reserveds2; /* reserved for lwp_saveupc */
234 };
235 
236 struct	proc {
237 	LIST_ENTRY(proc) p_list;	/* List of all processes. */
238 
239 	/* substructures: */
240 	struct ucred	*p_ucred;	/* Process owner's identity. */
241 	struct filedesc	*p_fd;		/* Ptr to open files structure. */
242 	struct filedesc_to_leader *p_fdtol; /* Ptr to tracking node XXX lwp */
243 	struct plimit	*p_limit;	/* Process limits. */
244 	struct pstats	*p_stats;
245 	u_int		p_mqueue_cnt;	/* Count of open mqueues. */
246 	long		p_waitgen;	/* wait interlock allows late signal */
247 	struct sigacts	*p_sigacts;
248 #define p_sigignore	p_sigacts->ps_sigignore
249 #define p_sigcatch	p_sigacts->ps_sigcatch
250 #define	p_rlimit	p_limit->pl_rlimit
251 
252 	int		p_flags;	/* P_* flags. */
253 	enum procstat	p_stat;		/* S* process status. */
254 	char		p_advlock_flag;	/* replaces P_ADVLOCK */
255 	char		p_pad1[2];
256 
257 	pid_t		p_pid;		/* Process identifier. */
258 	pid_t		p_ppid;		/* Current parent pid */
259 	LIST_ENTRY(proc) p_pglist;	/* List of processes in pgrp. */
260 	struct proc	*p_pptr;	/* Pointer to parent process. */
261 	LIST_ENTRY(proc) p_sibling;	/* List of sibling processes. */
262 	struct proclist p_children;	/* Pointer to list of children. */
263 	struct callout	p_ithandle;	/* for scheduling p_realtimer */
264 	struct varsymset p_varsymset;
265 	struct iosched_data p_iosdata;	/* Dynamic I/O scheduling data */
266 
267 	pid_t		p_oppid;	/* Save parent pid during ptrace. XXX */
268 
269 	struct vmspace	*p_vmspace;	/* Current address space. */
270 
271 	unsigned int	p_swtime;	/* Time swapped in or out */
272 
273 	struct itimerval p_realtimer;	/* Alarm timer. */
274 	struct itimerval p_timer[3];	/* Virtual-time timers. */
275 
276 	int		p_traceflag;	/* Kernel trace points. */
277 	struct ktrace_node *p_tracenode; /* Trace to vnode. */
278 
279 	sigset_t	p_siglist;	/* Signals arrived but not delivered. */
280 
281 	struct vnode	*p_textvp;	/* Vnode of executable. */
282 	struct nchandle	p_textnch;	/* namecache handle of executable. */
283 
284 	unsigned int	p_stops;	/* procfs event bitmask */
285 	unsigned int	p_stype;	/* procfs stop event type */
286 	char		p_step;		/* procfs stop *once* flag */
287 	unsigned char	p_pfsflags;	/* procfs flags */
288 	char		p_pad2[2];
289 	struct		sigiolst p_sigiolst;	/* list of sigio sources */
290 	int		p_sigparent;	/* signal to parent on exit */
291 	struct klist	p_klist;	/* knotes attached to this process */
292 
293 	struct timeval	p_start;	/* start time for a process */
294 
295 	struct rusage	p_ru;		/* stats for this proc */
296 	struct rusage	p_cru;		/* sum of stats for reaped children */
297 	void		*p_unused01;
298 
299 /* The following fields are all copied upon creation in fork. */
300 #define	p_startcopy	p_comm
301 
302 	char		p_comm[MAXCOMLEN+1]; /* typ 16+1 bytes */
303 	char		p_pad3;
304 	char		p_nice;		/* Process "nice" value. */
305 	char		p_pad4;
306 	int		p_osrel;	/* release date for binary ELF note */
307 
308 	struct pgrp	*p_pgrp;	/* Pointer to process group. */
309 
310 	struct sysentvec *p_sysent;	/* System call dispatch information. */
311 
312 	struct uprof	p_prof;		/* Profiling arguments. */
313 	struct rtprio	p_rtprio;	/* Realtime priority. */
314 	struct pargs	*p_args;
315 	u_short		p_xstat;	/* Exit status or last stop signal */
316 	u_short		p_depth;	/* Used to downscale resource limits */
317 
318 	int		p_ionice;
319 	void		*p_unused02;
320 /* End area that is copied on creation. */
321 #define	p_endcopy	p_unused02
322 	u_short		p_acflag;	/* Accounting flags. */
323 
324 	int		p_lock;		/* Prevent proc destruction */
325 	int		p_nthreads;	/* Number of threads in this process. */
326 	int		p_nstopped;	/* Number of stopped threads. */
327 	int		p_lasttid;	/* Last tid used. */
328 	struct lwp_rb_tree p_lwp_tree;	/* RB tree of LWPs for this process */
329 	void		*p_aioinfo;	/* ASYNC I/O info */
330 	int		p_wakeup;	/* thread id XXX lwp */
331 	struct proc	*p_peers;	/* XXX lwp */
332 	struct proc	*p_leader;	/* XXX lwp */
333 	void		*p_emuldata;	/* process-specific emulator state */
334 	struct usched	*p_usched;	/* Userland scheduling control */
335 	struct vkernel_proc *p_vkernel; /* VKernel support, proc part */
336 	struct uidcount *p_uidpcpu;
337 	void		(*p_userret)(void);/* p: return-to-user hook */
338 
339 	struct spinlock p_spin;		/* Spinlock for LWP access to proc */
340 	struct lwkt_token p_token;	/* Token for LWP access to proc */
341 	struct sem_undo	*p_sem_undo;	/* Fast semaphore tracking lookup */
342 	void		*p_drv_priv;	/* scp linkage (for syscons) */
343 	void		*p_vmm;
344 	cpulock_t	p_vmm_cpulock;	/* count cpus in and kickout lock */
345 	cpumask_t	p_vmm_cpumask;	/* cpus entering or in vmm */
346 	struct sys_upmap *p_upmap;	/* user RO mappable per-process page */
347 	forkid_t	p_forkid;	/* unique forkid */
348 	struct sysreaper *p_reaper;	/* reaper control */
349 	void		*p_reserveds[3]; /* reserved for future */
350 };
351 
352 #define lwp_wchan	lwp_thread->td_wchan
353 #define lwp_wmesg	lwp_thread->td_wmesg
354 #define	p_session	p_pgrp->pg_session
355 #define	p_pgid		p_pgrp->pg_id
356 
357 /* These flags are kept in p_flags. */
358 #define	P_UNUSED00	0x00001 /* was: Process may hold a POSIX advisory lock */
359 #define	P_CONTROLT	0x00002	/* Has a controlling terminal */
360 #define	P_SWAPPEDOUT	0x00004	/* Swapped out of memory */
361 #define P_SYSVSEM	0x00008	/* Might have SysV semaphores */
362 #define	P_PPWAIT	0x00010	/* Parent is waiting for child to exec/exit */
363 #define	P_PROFIL	0x00020	/* Has started profiling */
364 #define P_POSTEXIT	0x00040 /* Prevent procfs from stepping after this pt */
365 #define	P_SCMOUSE	0x00080 /* Process is held by syscons ioctl */
366 				/* was: Sleep is interruptible */
367 #define	P_SUGID		0x00100	/* Had set id privileges since last exec */
368 #define	P_SYSTEM	0x00200	/* System proc: no sigs, stats or swapping */
369 #define	P_MAYBETHREADED	0x00400	/* might be threaded optimization */
370 #define	P_TRACED	0x00800	/* Debugged process being traced */
371 #define	P_WAITED	0x01000	/* SIGSTOP status was returned by wait3/4 */
372 #define	P_WEXIT		0x02000	/* Working on exiting (master exit) */
373 #define	P_EXEC		0x04000	/* Process called exec */
374 #define	P_CONTINUED	0x08000	/* Proc has continued from a stopped state */
375 
376 #define P_LOWMEMKILL	0x00010000 /* trying to kill due to low memory */
377 #define	P_UNUSED17	0x00020000
378 
379 #define	P_SWAPWAIT	0x00040000 /* Waiting for a swapin */
380 #define	P_UNUSED19	0x00080000 /* was: Now in a zombied state */
381 
382 /* Marked a kernel thread */
383 #define	P_UNUSED20	0x00100000 /* was: on a user scheduling run queue */
384 #define	P_UNUSED21	0x00200000 /* was: Process is really a kernel thread */
385 #define P_IDLESWAP	0x00400000 /* Swapout was due to idleswap, not load */
386 
387 #define	P_JAILED	0x01000000 /* Process is in jail */
388 #define	P_SIGVTALRM	0x02000000 /* signal SIGVTALRM pending due to itimer */
389 #define	P_SIGPROF	0x04000000 /* signal SIGPROF pending due to itimer */
390 #define	P_INEXEC	0x08000000 /* Process is in execve(). */
391 #define P_DIDCHROOT	0x10000000 /* Did at least one chroot */
392 #define	P_UNUSED29	0x20000000
393 #define P_XCPU		0x40000000 /* SIGXCPU */
394 
395 #define	LWP_ALTSTACK	0x0000001 /* have alternate signal stack */
396 #define	LWP_OLDMASK	0x0000002 /* need to restore mask before pause */
397 #define	LWP_SINTR	0x0000008 /* Sleep is interruptible. */
398 #define LWP_SELECT	0x0000010 /* Selecting; wakeup/waiting danger. */
399 #define LWP_UNUSED20	0x0000020
400 #define	LWP_UNUSED40	0x0000040
401 #define	LWP_UNUSED80	0x0000080
402 #define LWP_PASSIVE_ACQ	0x0000100 /* Passive acquire cpu (see kern_switch) */
403 #define LWP_PAGING	0x0000200 /* Currently in vm_fault */
404 
405 /*
406  * LWP_MP_WSTOP: When set the thread will stop prior to return to userland
407  *	      and has been counted in the process stop-threads-count, but
408  *	      may still be running in kernel-land.
409  *
410  * LWP_MP_WEXIT: When set the thread has been asked to exit and will not return
411  *	      to userland.  p_nthreads will not be decremented until the
412  *	      thread has actually exited.
413  */
414 #define	LWP_MP_ONRUNQ	0x0000001 /* on a user scheduling run queue */
415 #define LWP_MP_WEXIT	0x0000002 /* working on exiting (lwpuserret()) */
416 #define	LWP_MP_WSTOP	0x0000004 /* working on stopping */
417 #define	LWP_MP_ULOAD	0x0000008 /* uload accounting for current cpu */
418 #define	LWP_MP_RRFORCE	0x0000010 /* forced resched due to rrcount */
419 #define LWP_MP_VNLRU	0x0000020 /* check excessive vnode allocations (lwpuserret()) */
420 
421 #define LWP_MP_URETMASK	(LWP_MP_WEXIT | LWP_MP_VNLRU)
422 
423 #define	FIRST_LWP_IN_PROC(p)		RB_FIRST(lwp_rb_tree, &(p)->p_lwp_tree)
424 #define	FOREACH_LWP_IN_PROC(lp, p)	\
425 	RB_FOREACH(lp, lwp_rb_tree, &(p)->p_lwp_tree)
426 #define	ONLY_LWP_IN_PROC(p)		_only_lwp_in_proc(p, __func__)
427 
428 struct procglob {
429 	struct lwkt_token proc_token;
430 	struct proclist allproc;	/* locked by proc_token */
431 	struct pgrplist allpgrp;	/* locked by proc_token */
432 	struct sesslist allsess;	/* locked by proc_token */
433 	void    *pad01;			/* pad for clarity */
434 } __cachealign;
435 
436 #ifdef _KERNEL
437 static inline struct lwp *
438 _only_lwp_in_proc(struct proc *p, const char *caller)
439 {
440 	if (p->p_nthreads != 1) {
441 		panic("%s: proc %p (pid %d cmd %s) has more than one thread",
442 		    caller, p, p->p_pid, p->p_comm);
443 	}
444 	return RB_ROOT(&p->p_lwp_tree);
445 }
446 #endif
447 
448 /*
449  * We use process IDs <= PID_MAX.  NO_PID must also fit in a pid_t and
450  * is used to represent "no process group".
451  */
452 #define	PID_MAX		999999
453 #define	NO_PID		0x7FFFFFFF
454 
455 #define SESS_LEADER(p)	((p)->p_session->s_leader == (p))
456 
457 #ifdef _KERNEL
458 
459 #ifdef MALLOC_DECLARE
460 MALLOC_DECLARE(M_SESSION);
461 MALLOC_DECLARE(M_PROC);
462 MALLOC_DECLARE(M_LWP);
463 MALLOC_DECLARE(M_SUBPROC);
464 MALLOC_DECLARE(M_PARGS);
465 #endif
466 
467 /* for priv_check_cred() */
468 #define	NULL_CRED_OKAY	0x2
469 
470 /*
471  * Handy macro to determine if p1 can mangle p2.
472  *
473  * Must be spin-safe.
474  */
475 #define PRISON_CHECK(cr1, cr2) \
476 	((!(cr1)->cr_prison) || (cr1)->cr_prison == (cr2)->cr_prison)
477 
478 /*
479  * STOPEVENT
480  */
481 extern void stopevent(struct proc*, unsigned int, unsigned int);
482 #define	STOPEVENT(p,e,v)			\
483 	do {					\
484 		if ((p)->p_stops & (e)) {	\
485 			stopevent(p,e,v);	\
486 		}				\
487 	} while (0)
488 
489 /*
490  * Hold process in memory, don't destruct, used by ktrace, procfs, sigio,
491  * and signaling code (e.g. ksignal()).
492  *
493  * MPSAFE
494  */
495 #define PHOLD(p)	phold((p))
496 #define PRELE(p)	prele((p))
497 #define PHOLDZOMB(p)	pholdzomb((p))
498 #define PRELEZOMB(p)	prelezomb((p))
499 #define PSTALL(p, msg, n) \
500 	do { if ((p)->p_lock > (n)) pstall((p), (msg), (n)); } while (0)
501 
502 #define STOPLWP(p, lp)						\
503 	(((p)->p_stat == SSTOP || (p)->p_stat == SCORE) &&	\
504 	 ((lp)->lwp_mpflags & LWP_MP_WEXIT) == 0)
505 
506 /*
507  * Hold lwp in memory, don't destruct, normally for ptrace/procfs work
508  * atomic ops because they can occur from an IPI.
509  * MPSAFE
510  */
511 #define LWPHOLD(lp)	atomic_add_int(&(lp)->lwp_lock, 1)
512 #define LWPRELE(lp)	atomic_add_int(&(lp)->lwp_lock, -1)
513 
514 extern struct proc proc0;		/* Process slot for swapper. */
515 extern struct lwp lwp0;			/* LWP slot for swapper. */
516 extern struct thread thread0;		/* Thread slot for swapper. */
517 extern int nprocs, maxproc;		/* Current and max number of procs. */
518 extern int maxprocperuid;		/* Max procs per uid. */
519 
520 extern struct proc *initproc;		/* Process slot for init */
521 extern struct thread *pagethread;
522 extern struct thread *emergpager;
523 extern struct thread *updatethread;
524 
525 /*
526  * Scheduler independant variables.  The primary scheduler polling frequency,
527  * the maximum ESTCPU value, and the weighting factor for nice values.  A
528  * cpu bound program's estcpu will increase to ESTCPUMAX - 1.
529  */
530 #define ESTCPUFREQ	50
531 
532 extern	u_long ps_arg_cache_limit;
533 extern	int ps_argsopen;
534 extern	int ps_showallprocs;
535 
536 struct proc *pfind (pid_t);	/* Find process by id w/ref */
537 struct proc *pfindn (pid_t);	/* Find process by id wo/ref */
538 struct pgrp *pgfind (pid_t);	/* Find process group by id w/ref */
539 struct proc *zpfind (pid_t);	/* Find zombie process by id w/ref */
540 void pgref (struct pgrp *);	/* Ref pgrp preventing disposal */
541 void pgrel (struct pgrp *);	/* Deref pgrp & dispose on 1->0 trans */
542 
543 struct globaldata;
544 struct lwp_params;
545 
546 int	enterpgrp (struct proc *p, pid_t pgid, int mksess);
547 void	proc_add_allproc(struct proc *p);
548 void	proc_move_allproc_zombie(struct proc *);
549 void	proc_remove_zombie(struct proc *);
550 void	allproc_scan(int (*callback)(struct proc *, void *), void *data,
551 			int segmented);
552 void	alllwp_scan(int (*callback)(struct lwp *, void *), void *data,
553 			int segmented);
554 void	zombproc_scan(int (*callback)(struct proc *, void *), void *data);
555 void	fixjobc (struct proc *p, struct pgrp *pgrp, int entering);
556 void	updatepcpu(struct lwp *, int, int);
557 int	inferior (struct proc *p);
558 int	leavepgrp (struct proc *p);
559 void	sess_hold(struct session *sp);
560 void	sess_rele(struct session *sp);
561 void	procinit (void);
562 void	procinsertinit(struct proc *p);
563 void	sessinsertinit(struct session *sess);
564 void	pgrpinsertinit(struct pgrp *pg);
565 void	relscurproc(struct proc *curp);
566 int	p_trespass (struct ucred *cr1, struct ucred *cr2);
567 void	setrunnable (struct lwp *);
568 void	proc_stop (struct proc *, int);
569 void	proc_unstop (struct proc *, int);
570 void	sleep_early_gdinit (struct globaldata *);
571 void	sleep_gdinit (struct globaldata *);
572 thread_t cpu_heavy_switch (struct thread *);
573 thread_t cpu_lwkt_switch (struct thread *);
574 
575 void	cpu_lwp_exit (void) __dead2;
576 void	cpu_thread_exit (void) __dead2;
577 void	lwp_exit (int masterexit, void *waddr) __dead2;
578 void	lwp_dispose (struct lwp *);
579 int	killalllwps (int);
580 void	exit1 (int) __dead2;
581 void	cpu_fork (struct lwp *, struct lwp *, int);
582 int	cpu_prepare_lwp(struct lwp *, struct lwp_params *);
583 void	cpu_set_fork_handler (struct lwp *, void (*)(void *, struct trapframe *), void *);
584 void	cpu_set_thread_handler(struct thread *td, void (*retfunc)(void), void *func, void *arg);
585 int	fork1 (struct lwp *, int, struct proc **);
586 void	start_forked_proc (struct lwp *, struct proc *);
587 int	trace_req (struct proc *);
588 void	cpu_thread_wait (struct thread *);
589 void	setsugid (void);
590 void	faultin (struct proc *p);
591 void	swapin_request (void);
592 void	phold (struct proc *);
593 void	prele (struct proc *);
594 int	pholdzomb (struct proc *);
595 void	prelezomb (struct proc *);
596 void	pstall (struct proc *, const char *, int);
597 void	lwpuserret(struct lwp *);
598 void	lwpkthreaddeferred(void);
599 void	proc_usermap(struct proc *p, int invfork);
600 void	proc_userunmap(struct proc *p);
601 void	reaper_hold(struct sysreaper *reap);
602 void	reaper_drop(struct sysreaper *reap);
603 int	reaper_sigtest(struct proc *sender, struct proc *target, int reaper_ok);
604 struct sysreaper *reaper_exit(struct proc *p);
605 void	reaper_init(struct proc *p, struct sysreaper *reap);
606 struct proc *reaper_get(struct sysreaper *reap);
607 
608 u_int32_t	procrunnable (void);
609 
610 #endif	/* _KERNEL */
611 
612 #endif	/* _KERNEL || _KERNEL_STRUCTURES */
613 #endif	/* !_SYS_PROC_H_ */
614