2 * Copyright (c) 2000-2010 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
28 /* Copyright (c) 1995, 1997 Apple Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1986, 1989, 1991, 1993
31 * The Regents of the University of California. All rights reserved.
32 * (c) UNIX System Laboratories, Inc.
33 * All or some portions of this file are derived from material licensed
34 * to the University of California by American Telephone and Telegraph
35 * Co. or Unix System Laboratories, Inc. and are reproduced herein with
36 * the permission of UNIX System Laboratories, Inc.
38 * Redistribution and use in source and binary forms, with or without
39 * modification, are permitted provided that the following conditions
41 * 1. Redistributions of source code must retain the above copyright
42 * notice, this list of conditions and the following disclaimer.
43 * 2. Redistributions in binary form must reproduce the above copyright
44 * notice, this list of conditions and the following disclaimer in the
45 * documentation and/or other materials provided with the distribution.
46 * 3. All advertising materials mentioning features or use of this software
47 * must display the following acknowledgement:
48 * This product includes software developed by the University of
49 * California, Berkeley and its contributors.
50 * 4. Neither the name of the University nor the names of its contributors
51 * may be used to endorse or promote products derived from this software
52 * without specific prior written permission.
54 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
55 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
56 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
57 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
58 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
59 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
60 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
61 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
62 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
63 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
66 * @(#)proc_internal.h 8.15 (Berkeley) 5/19/95
69 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
70 * support for mandatory and extensible security protections. This notice
71 * is included in support of clause 2.2 (b) of the Apple Public License,
75 #ifndef _SYS_PROC_INTERNAL_H_
76 #define _SYS_PROC_INTERNAL_H_
78 #include <libkern/OSAtomic.h>
81 #include <kern/locks.h>
83 #include <kern/thread_call.h>
88 #define __PROC_INTERNAL_DEBUG 1
92 * The short form for various locks that protect fields in the data structures.
94 * PGL = Process Group Lock
95 * PFDL = Process File Desc Lock
96 * PUCL = Process User Credentials Lock
97 * PSL = Process Spin Lock
98 * PPL = Parent Process Lock (planed for later usage)
105 * One structure allocated per session.
108 int s_count
; /* Ref cnt; pgrps in session. (LL) */
109 struct proc
* s_leader
; /* Session leader.(static) */
110 struct vnode
* s_ttyvp
; /* Vnode of controlling terminal.(SL) */
111 int s_ttyvid
; /* Vnode id of the controlling terminal (SL) */
112 struct tty
* s_ttyp
; /* Controlling terminal. (SL + ttyvp != NULL) */
113 pid_t s_ttypgrpid
; /* tty's pgrp id */
114 pid_t s_sid
; /* Session ID (static) */
115 char s_login
[MAXLOGNAME
]; /* Setlogin() name.(SL) */
116 int s_flags
; /* Session flags (s_mlock) */
117 LIST_ENTRY(session
) s_hash
; /* Hash chain.(LL) */
118 lck_mtx_t s_mlock
; /* mutex lock to protect session */
122 #define SESSION_NULL (struct session *)0
125 * accessor for s_ttyp which treats it as invalid if s_ttyvp is not valid;
126 * note that s_ttyp is not a reference in the session structre, so it can
127 * become invalid out from under the session if the device is closed, without
128 * this protection. We can't safely make it into a reference without reflexive
129 * close notification of tty devices through cdevsw[].
131 * NB: <sys/tty.h> is not in scope and there is not typedef type enforcement,
132 * or '0' below would be 'TTY_NULL'.
134 #define SESSION_TP(sp) (((sp)->s_ttyvp != 0) ? (sp)->s_ttyp : 0)
137 * Session flags; used to tunnel information to lower layers and line
140 #define S_DEFAULT 0x00000000 /* No flags set */
141 #define S_NOCTTY 0x00000001 /* Do not associate controlling tty */
142 #define S_CTTYREF 0x00000010 /* vnode ref taken by cttyopen */
145 #define S_LIST_TERM 1 /* marked for termination */
146 #define S_LIST_DEAD 2 /* already dead */
148 * One structure allocated per process group.
151 LIST_ENTRY(pgrp
) pg_hash
; /* Hash chain. (LL) */
152 LIST_HEAD(, proc
) pg_members
; /* Pointer to pgrp members. (PGL) */
153 struct session
* pg_session
; /* Pointer to session. (LL ) */
154 pid_t pg_id
; /* Pgrp id. (static) */
155 int pg_jobc
; /* # procs qualifying pgrp for job control (PGL) */
156 int pg_membercnt
; /* Number of processes in the pgrocess group (PGL) */
157 int pg_refcount
; /* number of current iterators (LL) */
158 unsigned int pg_listflags
; /* (LL) */
159 lck_mtx_t pg_mlock
; /* mutex lock to protect pgrp */
162 #define PGRP_FLAG_TERMINATE 1
163 #define PGRP_FLAG_WAITTERMINATE 2
164 #define PGRP_FLAG_DEAD 4
165 #define PGRP_FLAG_ITERABEGIN 8
166 #define PGRP_FLAG_ITERWAIT 0x10
168 #define PGRP_NULL (struct pgrp *)0
171 #define PROC_NULL (struct proc *)0
173 #define PROC_UPDATE_CREDS_ONPROC(p) { \
174 p->p_uid = kauth_cred_getuid(p->p_ucred); \
175 p->p_gid = kauth_cred_getgid(p->p_ucred); \
176 p->p_ruid = kauth_cred_getruid(p->p_ucred); \
177 p->p_rgid = kauth_cred_getrgid(p->p_ucred); \
178 p->p_svuid = kauth_cred_getsvuid(p->p_ucred); \
179 p->p_svgid = kauth_cred_getsvgid(p->p_ucred); \
182 * Description of a process.
184 * This structure contains the information needed to manage a thread of
185 * control, known in UN*X as a process; it has references to substructures
186 * containing descriptions of things that the process uses, but may share
187 * with related processes. The process structure and the substructures
188 * are always addressible except for those marked "(PROC ONLY)" below,
189 * which might be addressible only on a processor on which the process
193 LIST_ENTRY(proc
) p_list
; /* List of all processes. */
195 pid_t p_pid
; /* Process identifier. (static)*/
196 void * task
; /* corresponding task (static)*/
197 struct proc
* p_pptr
; /* Pointer to parent process.(LL) */
198 pid_t p_ppid
; /* process's parent pid number */
199 pid_t p_pgrpid
; /* process group id of the process (LL)*/
206 uint64_t p_uniqueid
; /* process unique ID - incremented on fork/spawn/vfork, remains same across exec. */
207 uint64_t p_puniqueid
; /* parent's unique ID - set on fork/spawn/vfork, doesn't change if reparented. */
209 lck_mtx_t p_mlock
; /* mutex lock for proc */
211 char p_stat
; /* S* process status. (PL)*/
212 char p_shutdownstate
;
213 char p_kdebug
; /* P_KDEBUG eq (CC)*/
214 char p_btrace
; /* P_BTRACE eq (CC)*/
216 LIST_ENTRY(proc
) p_pglist
; /* List of processes in pgrp.(PGL) */
217 LIST_ENTRY(proc
) p_sibling
; /* List of sibling processes. (LL)*/
218 LIST_HEAD(, proc
) p_children
; /* Pointer to list of children. (LL)*/
219 TAILQ_HEAD( , uthread
) p_uthlist
; /* List of uthreads (PL) */
221 LIST_ENTRY(proc
) p_hash
; /* Hash chain. (LL)*/
222 TAILQ_HEAD( ,eventqelt
) p_evlist
; /* (PL) */
225 struct persona
*p_persona
;
226 LIST_ENTRY(proc
) p_persona_list
;
229 lck_mtx_t p_fdmlock
; /* proc lock to protect fdesc */
230 lck_mtx_t p_ucred_mlock
; /* mutex lock to protect p_ucred */
233 kauth_cred_t p_ucred
; /* Process owner's identity. (PUCL) */
234 struct filedesc
*p_fd
; /* Ptr to open files structure. (PFDL) */
235 struct pstats
*p_stats
; /* Accounting/statistics (PL). */
236 struct plimit
*p_limit
; /* Process limits.(PL) */
238 struct sigacts
*p_sigacts
; /* Signal actions, state (PL) */
239 int p_siglist
; /* signals captured back from threads */
240 lck_spin_t p_slock
; /* spin lock for itimer/profil protection */
242 #define p_rlimit p_limit->pl_rlimit
244 struct plimit
*p_olimit
; /* old process limits - not inherited by child (PL) */
245 unsigned int p_flag
; /* P_* flags. (atomic bit ops) */
246 unsigned int p_lflag
; /* local flags (PL) */
247 unsigned int p_listflag
; /* list flags (LL) */
248 unsigned int p_ladvflag
; /* local adv flags (atomic) */
249 int p_refcount
; /* number of outstanding users(LL) */
250 int p_childrencnt
; /* children holding ref on parent (LL) */
251 int p_parentref
; /* children lookup ref on parent (LL) */
253 pid_t p_oppid
; /* Save parent pid during ptrace. XXX */
254 u_int p_xstat
; /* Exit status for wait; also stop signal. */
256 #ifdef _PROC_HAS_SCHEDINFO_
257 /* may need cleanup, not used */
258 u_int p_estcpu
; /* Time averaged value of p_cpticks.(used by aio and proc_comapre) */
259 fixpt_t p_pctcpu
; /* %cpu for this process during p_swtime (used by aio)*/
260 u_int p_slptime
; /* used by proc_compare */
261 #endif /* _PROC_HAS_SCHEDINFO_ */
263 struct itimerval p_realtimer
; /* Alarm timer. (PSL) */
264 struct timeval p_rtime
; /* Real time.(PSL) */
265 struct itimerval p_vtimer_user
; /* Virtual timers.(PSL) */
266 struct itimerval p_vtimer_prof
; /* (PSL) */
268 struct timeval p_rlim_cpu
; /* Remaining rlim cpu value.(PSL) */
269 int p_debugger
; /* NU 1: can exec set-bit programs if suser */
270 boolean_t sigwait
; /* indication to suspend (PL) */
271 void *sigwait_thread
; /* 'thread' holding sigwait(PL) */
272 void *exit_thread
; /* Which thread is exiting(PL) */
273 int p_vforkcnt
; /* number of outstanding vforks(PL) */
274 void * p_vforkact
; /* activation running this vfork proc)(static) */
275 int p_fpdrainwait
; /* (PFDL) */
276 pid_t p_contproc
; /* last PID to send us a SIGCONT (PL) */
278 /* Following fields are info from SIGCHLD (PL) */
279 pid_t si_pid
; /* (PL) */
280 u_int si_status
; /* (PL) */
281 u_int si_code
; /* (PL) */
282 uid_t si_uid
; /* (PL) */
284 void * vm_shm
; /* (SYSV SHM Lock) for sysV shared memory */
287 user_addr_t p_dtrace_argv
; /* (write once, read only after that) */
288 user_addr_t p_dtrace_envp
; /* (write once, read only after that) */
289 lck_mtx_t p_dtrace_sprlock
; /* sun proc lock emulation */
290 int p_dtrace_probes
; /* (PL) are there probes for this proc? */
291 u_int p_dtrace_count
; /* (sprlock) number of DTrace tracepoints */
292 uint8_t p_dtrace_stop
; /* indicates a DTrace-desired stop */
293 struct dtrace_ptss_page
* p_dtrace_ptss_pages
; /* (sprlock) list of user ptss pages */
294 struct dtrace_ptss_page_entry
* p_dtrace_ptss_free_list
; /* (atomic) list of individual ptss entries */
295 struct dtrace_helpers
* p_dtrace_helpers
; /* (dtrace_lock) DTrace per-proc private */
296 struct dof_ioctl_data
* p_dtrace_lazy_dofs
; /* (sprlock) unloaded dof_helper_t's */
297 #endif /* CONFIG_DTRACE */
299 /* XXXXXXXXXXXXX BCOPY'ed on fork XXXXXXXXXXXXXXXX */
300 /* The following fields are all copied upon creation in fork. */
301 #define p_startcopy p_argslen
303 u_int p_argslen
; /* Length of process arguments. */
304 int p_argc
; /* saved argc for sysctl_procargs() */
305 user_addr_t user_stack
; /* where user stack was allocated */
306 struct vnode
*p_textvp
; /* Vnode of executable. */
307 off_t p_textoff
; /* offset in executable vnode */
309 sigset_t p_sigmask
; /* DEPRECATED */
310 sigset_t p_sigignore
; /* Signals being ignored. (PL) */
311 sigset_t p_sigcatch
; /* Signals being caught by user.(PL) */
313 u_char p_priority
; /* (NU) Process priority. */
314 u_char p_resv0
; /* (NU) User-priority based on p_cpu and p_nice. */
315 char p_nice
; /* Process "nice" value.(PL) */
316 u_char p_resv1
; /* (NU) User-priority based on p_cpu and p_nice. */
319 int p_mac_enforce
; /* MAC policy enforcement control */
322 char p_comm
[MAXCOMLEN
+1];
323 char p_name
[(2*MAXCOMLEN
)+1]; /* PL */
325 struct pgrp
*p_pgrp
; /* Pointer to process group. (LL) */
326 uint32_t p_csflags
; /* flags for codesign (PL) */
327 uint32_t p_pcaction
; /* action for process control on starvation */
328 uint8_t p_uuid
[16]; /* from LC_UUID load command */
331 * CPU type and subtype of binary slice executed in
332 * this process. Protected by proc lock.
334 cpu_type_t p_cputype
;
335 cpu_subtype_t p_cpusubtype
;
337 /* End area that is copied on creation. */
338 /* XXXXXXXXXXXXX End of BCOPY'ed on fork (AIOLOCK)XXXXXXXXXXXXXXXX */
339 #define p_endcopy p_aio_total_count
340 int p_aio_total_count
; /* all allocated AIO requests for this proc */
341 int p_aio_active_count
; /* all unfinished AIO requests for this proc */
342 TAILQ_HEAD( , aio_workq_entry
) p_aio_activeq
; /* active async IO requests */
343 TAILQ_HEAD( , aio_workq_entry
) p_aio_doneq
; /* completed async IO requests */
345 struct klist p_klist
; /* knote list (PL ?)*/
347 struct rusage_superset
*p_ru
; /* Exit information. (PL) */
349 thread_t p_signalholder
;
350 thread_t p_transholder
;
352 /* DEPRECATE following field */
353 u_short p_acflag
; /* Accounting flags. */
354 volatile u_short p_vfs_iopolicy
; /* VFS iopolicy flags. (atomic bit ops) */
356 user_addr_t p_threadstart
; /* pthread start fn */
357 user_addr_t p_wqthread
; /* pthread workqueue fn */
358 int p_pthsize
; /* pthread size */
359 uint32_t p_pth_tsd_offset
; /* offset from pthread_t to TSD for new threads */
360 user_addr_t p_targconc
; /* target concurrency ptr */
361 user_addr_t p_stack_addr_hint
; /* stack allocation hint for wq threads */
362 void * p_wqptr
; /* workq ptr */
363 int p_wqsize
; /* allocated size */
364 boolean_t p_wqiniting
; /* semaphore to serialze wq_open */
365 lck_spin_t p_wqlock
; /* lock to protect work queue */
366 struct kqueue
* p_wqkqueue
; /* private workq kqueue */
368 struct timeval p_start
; /* starting time */
371 int p_idversion
; /* version of process identity */
372 void * p_pthhash
; /* pthread waitqueue hash */
373 volatile uint64_t was_throttled
__attribute__((aligned(8))); /* Counter for number of throttled I/Os */
374 volatile uint64_t did_throttle
__attribute__((aligned(8))); /* Counter for number of I/Os this proc throttled */
377 unsigned int p_fdlock_pc
[4];
378 unsigned int p_fdunlock_pc
[4];
380 unsigned int lockpc
[8];
381 unsigned int unlockpc
[8];
382 #endif /* SIGNAL_DEBUG */
383 #endif /* DIAGNOSTIC */
384 uint64_t p_dispatchqueue_offset
;
385 uint64_t p_dispatchqueue_serialno_offset
;
386 #if VM_PRESSURE_EVENTS
387 struct timeval vm_pressure_last_notify_tstamp
;
390 #if CONFIG_MEMORYSTATUS
391 /* Fields protected by proc list lock */
392 TAILQ_ENTRY(proc
) p_memstat_list
; /* priority bucket link */
393 uint32_t p_memstat_state
; /* state */
394 int32_t p_memstat_effectivepriority
; /* priority after transaction state accounted for */
395 int32_t p_memstat_requestedpriority
; /* active priority */
396 uint32_t p_memstat_dirty
; /* dirty state */
397 uint64_t p_memstat_userdata
; /* user state */
398 uint64_t p_memstat_idledeadline
; /* time at which process became clean */
400 int32_t p_memstat_memlimit
; /* cached memory limit, toggles between active and inactive limits */
401 int32_t p_memstat_memlimit_active
; /* memory limit enforced when process is in active jetsam state */
402 int32_t p_memstat_memlimit_inactive
; /* memory limit enforced when process is in inactive jetsam state */
405 uint32_t p_memstat_suspendedfootprint
; /* footprint at time of suspensions */
406 #endif /* CONFIG_FREEZE */
407 #endif /* CONFIG_MEMORYSTATUS */
409 /* cached proc-specific data required for corpse inspection */
410 pid_t p_responsible_pid
; /* pid resonsible for this process */
413 #define PGRPID_DEAD 0xdeaddead
416 #define P_LIST_DRAIN 0x00000001
417 #define P_LIST_DRAINWAIT 0x00000002
418 #define P_LIST_DRAINED 0x00000004
419 #define P_LIST_DEAD 0x00000008
420 #define P_LIST_WAITING 0x00000010
421 #define P_LIST_EXITED 0x00000040
422 #define P_LIST_CHILDDRSTART 0x00000080
423 #define P_LIST_CHILDDRAINED 0x00000100
424 #define P_LIST_CHILDDRWAIT 0x00000200
425 #define P_LIST_CHILDLKWAIT 0x00000400
426 #define P_LIST_DEADPARENT 0x00000800
427 #define P_LIST_PARENTREFWAIT 0x00001000
428 #define P_LIST_INCREATE 0x00002000
429 /* 0x4000 & 0x8000 Not used */
430 #define P_LIST_INHASH 0x00010000 /* process is in hash */
431 #define P_LIST_INPGRP 0x00020000 /* process is in pgrp */
432 #define P_LIST_PGRPTRANS 0x00040000 /* pgrp is getting replaced */
433 #define P_LIST_PGRPTRWAIT 0x00080000 /* wait for pgrp replacement */
434 #define P_LIST_EXITCOUNT 0x00100000 /* counted for process exit */
438 #define P_LDELAYTERM 0x00000001 /* */
439 #define P_LNOZOMB 0x00000002 /* */
440 #define P_LTERM 0x00000004 /* */
441 #define P_LEXIT 0x00000008 /* */
442 #define P_LPEXIT 0x00000010
443 #define P_LTRANSCOMMIT 0x00000020 /* process is committed to trans */
444 #define P_LINTRANSIT 0x00000040 /* process in exec or in creation */
445 #define P_LTRANSWAIT 0x00000080 /* waiting for trans to complete */
446 #define P_LVFORK 0x00000100 /* parent proc of a vfork */
447 #define P_LINVFORK 0x00000200 /* child proc of a vfork */
448 #define P_LTRACED 0x00000400 /* */
449 #define P_LSIGEXC 0x00000800 /* */
450 #define P_LNOATTACH 0x00001000 /* */
451 #define P_LPPWAIT 0x00002000 /* */
452 #define P_LKQWDRAIN 0x00004000
453 #define P_LKQWDRAINWAIT 0x00008000
454 #define P_LKQWDEAD 0x00010000
455 #define P_LLIMCHANGE 0x00020000
456 #define P_LLIMWAIT 0x00040000
457 #define P_LWAITED 0x00080000
458 #define P_LINSIGNAL 0x00100000
459 #define P_LRETURNWAIT 0x00200000 /* process is completing spawn/vfork-exec/fork */
460 #define P_LRAGE_VNODES 0x00400000
461 #define P_LREGISTER 0x00800000 /* thread start fns registered */
462 #define P_LVMRSRCOWNER 0x01000000 /* can handle the resource ownership of */
463 #define P_LRETURNWAITER 0x02000000 /* thread is waiting on P_LRETURNWAIT being cleared */
464 #define P_LTERM_DECRYPTFAIL 0x04000000 /* process terminating due to key failure to decrypt */
465 #define P_LTERM_JETSAM 0x08000000 /* process is being jetsam'd */
466 #define P_JETSAM_VMPAGESHORTAGE 0x00000000 /* jetsam: lowest jetsam priority proc, killed due to vm page shortage */
467 #define P_JETSAM_VMTHRASHING 0x10000000 /* jetsam: lowest jetsam priority proc, killed due to vm thrashing */
468 #define P_JETSAM_HIWAT 0x20000000 /* jetsam: high water mark */
469 #define P_JETSAM_PID 0x30000000 /* jetsam: pid */
470 #define P_JETSAM_IDLEEXIT 0x40000000 /* jetsam: idle exit */
471 #define P_JETSAM_VNODE 0x50000000 /* jetsam: vnode kill */
472 #define P_JETSAM_FCTHRASHING 0x60000000 /* jetsam: lowest jetsam priority proc, killed due to filecache thrashing */
473 #define P_JETSAM_MASK 0x70000000 /* jetsam type mask */
475 /* Process control state for resource starvation */
476 #define P_PCTHROTTLE 1
481 /* Process control action state on resrouce starvation */
482 #define PROC_ACTION_MASK 0xffff0000;
483 #define PROC_CONTROL_STATE(p) (p->p_pcaction & P_PCMAX)
484 #define PROC_ACTION_STATE(p) ((p->p_pcaction >> 16) & P_PCMAX)
485 #define PROC_SETACTION_STATE(p) (p->p_pcaction = (PROC_CONTROL_STATE(p) | (PROC_CONTROL_STATE(p) << 16)))
486 #define PROC_RESETACTION_STATE(p) (p->p_pcaction = PROC_CONTROL_STATE(p))
488 /* additional process flags */
489 #define P_LADVLOCK 0x01
490 #define P_LXBKIDLEINPROG 0x02
492 /* p_vfs_iopolicy flags */
493 #define P_VFS_IOPOLICY_FORCE_HFS_CASE_SENSITIVITY 0x0001
495 /* defns for proc_iterate */
496 #define PROC_ALLPROCLIST 1 /* walk the allproc list (procs not exited yet) */
497 #define PROC_ZOMBPROCLIST 2 /* walk the zombie list */
498 #define PROC_NOWAITTRANS 4 /* do not wait for transitions (checkdirs only) */
500 /* defns for pgrp_iterate */
501 #define PGRP_DROPREF 1
502 #define PGRP_BLOCKITERATE 2
504 /* return values of the proc iteration callback routine */
505 #define PROC_RETURNED 0
506 #define PROC_RETURNED_DONE 1
507 #define PROC_CLAIMED 2
508 #define PROC_CLAIMED_DONE 3
510 /* process creation arguments */
511 #define PROC_CREATE_FORK 0 /* independent child (running) */
512 #define PROC_CREATE_SPAWN 1 /* independent child (suspended) */
513 #define PROC_CREATE_VFORK 2 /* child borrows context */
516 /* LP64 version of extern_proc. all pointers
517 * grow when we're dealing with a 64-bit process.
518 * WARNING - keep in sync with extern_proc
519 * but use native alignment of 64-bit process.
523 #include <sys/time.h> /* user_timeval, user_itimerval */
525 /* This packing breaks symmetry with userspace side (struct extern_proc
526 * of proc.h) for the ARMV7K ABI where 64-bit types are 64-bit aligned
529 struct user32_extern_proc
{
532 uint32_t __p_forw
; /* Doubly-linked run/sleep queue. */
535 struct user32_timeval __p_starttime
; /* process start time */
537 uint32_t p_vmspace
; /* Address space. */
538 uint32_t p_sigacts
; /* Signal actions, state (PROC ONLY). */
539 int p_flag
; /* P_* flags. */
540 char p_stat
; /* S* process status. */
541 pid_t p_pid
; /* Process identifier. */
542 pid_t p_oppid
; /* Save parent pid during ptrace. XXX */
543 int p_dupfd
; /* Sideways return value from fdopen. XXX */
545 uint32_t user_stack
; /* where user stack was allocated */
546 uint32_t exit_thread
; /* XXX Which thread is exiting? */
547 int p_debugger
; /* allow to debug */
548 boolean_t sigwait
; /* indication to suspend */
550 u_int p_estcpu
; /* Time averaged value of p_cpticks. */
551 int p_cpticks
; /* Ticks of cpu time. */
552 fixpt_t p_pctcpu
; /* %cpu for this process during p_swtime */
553 uint32_t p_wchan
; /* Sleep address. */
554 uint32_t p_wmesg
; /* Reason for sleep. */
555 u_int p_swtime
; /* Time swapped in or out. */
556 u_int p_slptime
; /* Time since last blocked. */
557 struct user32_itimerval p_realtimer
; /* Alarm timer. */
558 struct user32_timeval p_rtime
; /* Real time. */
559 u_quad_t p_uticks
; /* Statclock hits in user mode. */
560 u_quad_t p_sticks
; /* Statclock hits in system mode. */
561 u_quad_t p_iticks
; /* Statclock hits processing intr. */
562 int p_traceflag
; /* Kernel trace points. */
563 uint32_t p_tracep
; /* Trace to vnode. */
564 int p_siglist
; /* DEPRECATED */
565 uint32_t p_textvp
; /* Vnode of executable. */
566 int p_holdcnt
; /* If non-zero, don't swap. */
567 sigset_t p_sigmask
; /* DEPRECATED. */
568 sigset_t p_sigignore
; /* Signals being ignored. */
569 sigset_t p_sigcatch
; /* Signals being caught by user. */
570 u_char p_priority
; /* Process priority. */
571 u_char p_usrpri
; /* User-priority based on p_cpu and p_nice. */
572 char p_nice
; /* Process "nice" value. */
573 char p_comm
[MAXCOMLEN
+1];
574 uint32_t p_pgrp
; /* Pointer to process group. */
575 uint32_t p_addr
; /* Kernel virtual addr of u-area (PROC ONLY). */
576 u_short p_xstat
; /* Exit status for wait; also stop signal. */
577 u_short p_acflag
; /* Accounting flags. */
578 uint32_t p_ru
; /* Exit information. XXX */
581 struct user64_extern_proc
{
584 user_addr_t __p_forw
; /* Doubly-linked run/sleep queue. */
585 user_addr_t __p_back
;
587 struct user64_timeval __p_starttime
; /* process start time */
589 user_addr_t p_vmspace
; /* Address space. */
590 user_addr_t p_sigacts
; /* Signal actions, state (PROC ONLY). */
591 int p_flag
; /* P_* flags. */
592 char p_stat
; /* S* process status. */
593 pid_t p_pid
; /* Process identifier. */
594 pid_t p_oppid
; /* Save parent pid during ptrace. XXX */
595 int p_dupfd
; /* Sideways return value from fdopen. XXX */
597 user_addr_t user_stack
__attribute((aligned(8))); /* where user stack was allocated */
598 user_addr_t exit_thread
; /* XXX Which thread is exiting? */
599 int p_debugger
; /* allow to debug */
600 boolean_t sigwait
; /* indication to suspend */
602 u_int p_estcpu
; /* Time averaged value of p_cpticks. */
603 int p_cpticks
; /* Ticks of cpu time. */
604 fixpt_t p_pctcpu
; /* %cpu for this process during p_swtime */
605 user_addr_t p_wchan
__attribute((aligned(8))); /* Sleep address. */
606 user_addr_t p_wmesg
; /* Reason for sleep. */
607 u_int p_swtime
; /* Time swapped in or out. */
608 u_int p_slptime
; /* Time since last blocked. */
609 struct user64_itimerval p_realtimer
; /* Alarm timer. */
610 struct user64_timeval p_rtime
; /* Real time. */
611 u_quad_t p_uticks
; /* Statclock hits in user mode. */
612 u_quad_t p_sticks
; /* Statclock hits in system mode. */
613 u_quad_t p_iticks
; /* Statclock hits processing intr. */
614 int p_traceflag
; /* Kernel trace points. */
615 user_addr_t p_tracep
__attribute((aligned(8))); /* Trace to vnode. */
616 int p_siglist
; /* DEPRECATED */
617 user_addr_t p_textvp
__attribute((aligned(8))); /* Vnode of executable. */
618 int p_holdcnt
; /* If non-zero, don't swap. */
619 sigset_t p_sigmask
; /* DEPRECATED. */
620 sigset_t p_sigignore
; /* Signals being ignored. */
621 sigset_t p_sigcatch
; /* Signals being caught by user. */
622 u_char p_priority
; /* Process priority. */
623 u_char p_usrpri
; /* User-priority based on p_cpu and p_nice. */
624 char p_nice
; /* Process "nice" value. */
625 char p_comm
[MAXCOMLEN
+1];
626 user_addr_t p_pgrp
__attribute((aligned(8))); /* Pointer to process group. */
627 user_addr_t p_addr
; /* Kernel virtual addr of u-area (PROC ONLY). */
628 u_short p_xstat
; /* Exit status for wait; also stop signal. */
629 u_short p_acflag
; /* Accounting flags. */
630 user_addr_t p_ru
__attribute((aligned(8))); /* Exit information. XXX */
635 * We use process IDs <= PID_MAX; PID_MAX + 1 must also fit in a pid_t,
636 * as it is used to represent "no process group".
638 extern int nprocs
, maxproc
; /* Current and max number of procs. */
639 extern int maxprocperuid
; /* Current number of procs per uid */
640 extern int hard_maxproc
; /* hard limit */
641 extern unsigned int proc_shutdown_exitcount
;
643 #define PID_MAX 99999
644 #define NO_PID 100000
645 extern lck_mtx_t
* proc_list_mlock
;
646 extern lck_mtx_t
* proc_klist_mlock
;
648 #define BSD_SIMUL_EXECS 33 /* 32 , allow for rounding */
649 #define BSD_PAGEABLE_SIZE_PER_EXEC (NCARGS + PAGE_SIZE + PAGE_SIZE) /* page for apple vars, page for executable header */
650 extern int execargs_cache_size
;
651 extern int execargs_free_count
;
652 extern vm_offset_t
* execargs_cache
;
654 #define SESS_LEADER(p, sessp) ((sessp)->s_leader == (p))
656 #define PIDHASH(pid) (&pidhashtbl[(pid) & pidhash])
657 extern LIST_HEAD(pidhashhead
, proc
) *pidhashtbl
;
658 extern u_long pidhash
;
660 #define PGRPHASH(pgid) (&pgrphashtbl[(pgid) & pgrphash])
661 extern LIST_HEAD(pgrphashhead
, pgrp
) *pgrphashtbl
;
662 extern u_long pgrphash
;
663 #define SESSHASH(sessid) (&sesshashtbl[(sessid) & sesshash])
664 extern LIST_HEAD(sesshashhead
, session
) *sesshashtbl
;
665 extern u_long sesshash
;
667 extern lck_grp_t
* proc_lck_grp
;
668 #if CONFIG_FINE_LOCK_GROUPS
669 extern lck_grp_t
* proc_mlock_grp
;
670 extern lck_grp_t
* proc_fdmlock_grp
;
671 extern lck_grp_t
* proc_ucred_mlock_grp
;
672 extern lck_grp_t
* proc_slock_grp
;
674 extern lck_grp_attr_t
* proc_lck_grp_attr
;
675 extern lck_attr_t
* proc_lck_attr
;
677 LIST_HEAD(proclist
, proc
);
678 extern struct proclist allproc
; /* List of all processes. */
679 extern struct proclist zombproc
; /* List of zombie processes. */
680 extern struct proc
*initproc
;
681 extern void procinit(void);
682 extern void proc_lock(struct proc
*);
683 extern void proc_unlock(struct proc
*);
684 extern void proc_spinlock(struct proc
*);
685 extern void proc_spinunlock(struct proc
*);
686 extern void proc_list_lock(void);
687 extern void proc_list_unlock(void);
688 extern void proc_klist_lock(void);
689 extern void proc_klist_unlock(void);
690 extern void proc_fdlock(struct proc
*);
691 extern void proc_fdlock_spin(struct proc
*);
692 extern void proc_fdunlock(struct proc
*);
693 extern void proc_fdlock_assert(proc_t p
, int assertflags
);
694 extern void proc_ucred_lock(struct proc
*);
695 extern void proc_ucred_unlock(struct proc
*);
696 __private_extern__
int proc_core_name(const char *name
, uid_t uid
, pid_t pid
,
697 char *cr_name
, size_t cr_name_len
);
698 extern int isinferior(struct proc
*, struct proc
*);
699 __private_extern__
struct proc
*pzfind(pid_t
); /* Find zombie by id. */
700 __private_extern__
struct proc
*proc_find_zombref(pid_t
); /* Find zombie by id. */
701 __private_extern__
void proc_drop_zombref(struct proc
* p
); /* Find zombie by id. */
704 extern int chgproccnt(uid_t uid
, int diff
);
705 extern void pinsertchild(struct proc
*parent
, struct proc
*child
);
706 extern int enterpgrp(struct proc
*p
, pid_t pgid
, int mksess
);
707 extern void fixjobc(struct proc
*p
, struct pgrp
*pgrp
, int entering
);
708 extern int inferior(struct proc
*p
);
709 extern int leavepgrp(struct proc
*p
);
710 extern void resetpriority(struct proc
*);
711 extern void setrunnable(struct proc
*);
712 extern void setrunqueue(struct proc
*);
713 extern int sleep(void *chan
, int pri
);
714 extern int tsleep0(void *chan
, int pri
, const char *wmesg
, int timo
, int (*continuation
)(int));
715 extern int tsleep1(void *chan
, int pri
, const char *wmesg
, u_int64_t abstime
, int (*continuation
)(int));
716 extern int msleep0(void *chan
, lck_mtx_t
*mtx
, int pri
, const char *wmesg
, int timo
, int (*continuation
)(int));
717 extern void vfork_return(struct proc
*child
, int32_t *retval
, int rval
);
718 extern int exit1(struct proc
*, int, int *);
719 extern int exit1_internal(struct proc
*, int, int *, boolean_t
, boolean_t
, int);
720 extern int fork1(proc_t
, thread_t
*, int, coalition_t
*);
721 extern void vfork_exit_internal(struct proc
*p
, int rv
, int forced
);
722 extern void proc_reparentlocked(struct proc
*child
, struct proc
* newparent
, int cansignal
, int locked
);
723 extern int pgrp_iterate(struct pgrp
* pgrp
, int flags
, int (*callout
)(proc_t
, void *), void *arg
, int (*filterfn
)(proc_t
, void *), void *filterarg
);
724 extern int proc_iterate(int flags
, int (*callout
)(proc_t
, void *), void *arg
, int (*filterfn
)(proc_t
, void *), void *filterarg
);
725 extern int proc_rebootscan(int (*callout
)(proc_t
, void *), void *arg
, int (*filterfn
)(proc_t
, void *), void *filterarg
);
726 extern int proc_childrenwalk(proc_t p
, int (*callout
)(proc_t
, void *), void *arg
);
727 extern proc_t
proc_findinternal(int pid
, int locked
);
728 extern proc_t
proc_findthread(thread_t thread
);
729 extern void proc_refdrain(proc_t
);
730 extern void proc_childdrainlocked(proc_t
);
731 extern void proc_childdrainstart(proc_t
);
732 extern void proc_childdrainend(proc_t
);
733 extern void proc_checkdeadrefs(proc_t
);
734 struct proc
*pfind_locked(pid_t
);
735 extern struct pgrp
*pgfind(pid_t
);
736 extern void pg_rele(struct pgrp
* pgrp
);
737 extern struct session
* session_find_internal(pid_t sessid
);
738 extern struct pgrp
* proc_pgrp(proc_t
);
739 extern struct pgrp
* tty_pgrp(struct tty
* tp
);
740 extern struct pgrp
* pgfind_internal(pid_t
);
741 extern struct session
* proc_session(proc_t
);
742 extern void pgrp_lock(struct pgrp
* pgrp
);
743 extern void pgrp_unlock(struct pgrp
* pgrp
);
744 extern void session_lock(struct session
* sess
);
745 extern void session_unlock(struct session
* sess
);
746 extern struct session
* pgrp_session(struct pgrp
* pgrp
);
747 extern void session_rele(struct session
*sess
);
748 extern int isbackground(proc_t p
, struct tty
*tp
);
749 extern proc_t
proc_parent(proc_t
);
750 extern proc_t
proc_parentholdref(proc_t
);
751 extern int proc_parentdropref(proc_t
, int);
752 int itimerfix(struct timeval
*tv
);
753 int itimerdecr(struct proc
* p
, struct itimerval
*itp
, int usec
);
754 int timespec_is_valid(const struct timespec
*);
755 void proc_signalstart(struct proc
*, int locked
);
756 void proc_signalend(struct proc
*, int locked
);
757 int proc_transstart(struct proc
*, int locked
, int non_blocking
);
758 void proc_transcommit(struct proc
*, int locked
);
759 void proc_transend(struct proc
*, int locked
);
760 int proc_transwait(struct proc
*, int locked
);
761 void proc_rele_locked(struct proc
* p
);
762 struct proc
*proc_ref_locked(struct proc
* p
);
763 void proc_knote(struct proc
* p
, long hint
);
764 void proc_knote_drain(struct proc
*p
);
765 void workqueue_init_lock(proc_t p
);
766 void workqueue_destroy_lock(proc_t p
);
767 void proc_setregister(proc_t p
);
768 void proc_resetregister(proc_t p
);
769 /* returns the first thread_t in the process, or NULL XXX for NFS, DO NOT USE */
770 thread_t
proc_thread(proc_t
);
771 extern int proc_pendingsignals(proc_t
, sigset_t
);
772 int proc_getpcontrol(int pid
, int * pcontrolp
);
773 int proc_dopcontrol(proc_t p
);
774 int proc_resetpcontrol(int pid
);
776 void pth_proc_hashinit(proc_t
);
777 void pth_proc_hashdelete(proc_t
);
778 void pth_global_hashinit(void);
779 extern thread_call_t psynch_thcall
;
780 void psynch_wq_cleanup(__unused
void * param
, __unused
void * param1
);
781 extern lck_mtx_t
* pthread_list_mlock
;
783 struct uthread
* current_uthread(void);
785 void proc_set_return_wait(struct proc
*);
786 void proc_clear_return_wait(proc_t p
, thread_t child_thread
);
787 void proc_wait_to_return(void);
789 /* return 1 if process is forcing case-sensitive HFS+ access, 0 for default */
790 extern int proc_is_forcing_hfs_case_sensitivity(proc_t
);
792 pid_t
dtrace_proc_selfpid(void);
793 pid_t
dtrace_proc_selfppid(void);
794 uid_t
dtrace_proc_selfruid(void);
795 #endif /* !_SYS_PROC_INTERNAL_H_ */