2 * Copyright (c) 2000-2019 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 NeXT Computer, Inc. All Rights Reserved */
30 * Copyright (c) 1982, 1986, 1989, 1991, 1993
31 * The Regents of the University of California. All rights reserved.
33 * Redistribution and use in source and binary forms, with or without
34 * modification, are permitted provided that the following conditions
36 * 1. Redistributions of source code must retain the above copyright
37 * notice, this list of conditions and the following disclaimer.
38 * 2. Redistributions in binary form must reproduce the above copyright
39 * notice, this list of conditions and the following disclaimer in the
40 * documentation and/or other materials provided with the distribution.
41 * 3. All advertising materials mentioning features or use of this software
42 * must display the following acknowledgement:
43 * This product includes software developed by the University of
44 * California, Berkeley and its contributors.
45 * 4. Neither the name of the University nor the names of its contributors
46 * may be used to endorse or promote products derived from this software
47 * without specific prior written permission.
49 * THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
50 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
51 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
52 * ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
53 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
54 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
55 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
56 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
57 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
58 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
61 * @(#)kern_proc.c 8.4 (Berkeley) 1/4/94
64 * NOTICE: This file was modified by SPARTA, Inc. in 2005 to introduce
65 * support for mandatory and extensible security protections. This notice
66 * is included in support of clause 2.2 (b) of the Apple Public License,
70 * 04-Aug-97 Umesh Vaishampayan (umeshv@apple.com)
71 * Added current_proc_EXTERNAL() function for the use of kernel
74 * 05-Jun-95 Mac Gillon (mgillon) at NeXT
75 * New version based on 3.3NS and 4.4
79 #include <sys/param.h>
80 #include <sys/systm.h>
81 #include <sys/kernel.h>
82 #include <sys/proc_internal.h>
85 #include <sys/file_internal.h>
87 #include <sys/malloc.h>
90 #include <sys/ioctl.h>
92 #include <sys/signalvar.h>
93 #include <sys/syslog.h>
94 #include <sys/sysctl.h>
95 #include <sys/sysproto.h>
96 #include <sys/kauth.h>
97 #include <sys/codesign.h>
98 #include <sys/kernel_types.h>
100 #include <kern/kalloc.h>
101 #include <kern/task.h>
102 #include <kern/coalition.h>
103 #include <sys/coalition.h>
104 #include <kern/assert.h>
105 #include <vm/vm_protos.h>
106 #include <vm/vm_map.h> /* vm_map_switch_protect() */
107 #include <vm/vm_pageout.h>
108 #include <mach/task.h>
109 #include <mach/message.h>
110 #include <sys/priv.h>
111 #include <sys/proc_info.h>
112 #include <sys/bsdtask_info.h>
113 #include <sys/persona.h>
114 #include <sys/sysent.h>
115 #include <sys/reason.h>
116 #include <IOKit/IOBSD.h> /* IOTaskHasEntitlement() */
118 #ifdef CONFIG_32BIT_TELEMETRY
119 #include <sys/kasl.h>
120 #endif /* CONFIG_32BIT_TELEMETRY */
126 #if CONFIG_MEMORYSTATUS
127 #include <sys/kern_memorystatus.h>
131 #include <security/mac_framework.h>
134 #include <libkern/crypto/sha1.h>
136 #ifdef CONFIG_32BIT_TELEMETRY
137 #define MAX_32BIT_EXEC_SIG_SIZE 160
138 #endif /* CONFIG_32BIT_TELEMETRY */
141 * Structure associated with user cacheing.
144 LIST_ENTRY(uidinfo
) ui_hash
;
148 #define UIHASH(uid) (&uihashtbl[(uid) & uihash])
149 LIST_HEAD(uihashhead
, uidinfo
) * uihashtbl
;
150 u_long uihash
; /* size of hash table - 1 */
153 * Other process lists
155 struct pidhashhead
*pidhashtbl
;
157 struct pgrphashhead
*pgrphashtbl
;
159 struct sesshashhead
*sesshashtbl
;
162 struct proclist allproc
;
163 struct proclist zombproc
;
164 extern struct tty cons
;
168 #if DEVELOPMENT || DEBUG
169 int syscallfilter_disable
= 0;
170 #endif // DEVELOPMENT || DEBUG
173 #define __PROC_INTERNAL_DEBUG 1
176 /* Name to give to core files */
177 #if defined(XNU_TARGET_OS_BRIDGE)
178 __XNU_PRIVATE_EXTERN
char corefilename
[MAXPATHLEN
+ 1] = {"/private/var/internal/%N.core"};
179 #elif CONFIG_EMBEDDED
180 __XNU_PRIVATE_EXTERN
char corefilename
[MAXPATHLEN
+ 1] = {"/private/var/cores/%N.core"};
182 __XNU_PRIVATE_EXTERN
char corefilename
[MAXPATHLEN
+ 1] = {"/cores/core.%P"};
187 #include <kern/backtrace.h>
190 typedef uint64_t unaligned_u64
__attribute__((aligned(1)));
192 static void orphanpg(struct pgrp
* pg
);
193 void proc_name_kdp(task_t t
, char * buf
, int size
);
194 boolean_t
proc_binary_uuid_kdp(task_t task
, uuid_t uuid
);
195 int proc_threadname_kdp(void * uth
, char * buf
, size_t size
);
196 void proc_starttime_kdp(void * p
, unaligned_u64
*tv_sec
, unaligned_u64
*tv_usec
, unaligned_u64
*abstime
);
197 char * proc_name_address(void * p
);
199 static void pgrp_add(struct pgrp
* pgrp
, proc_t parent
, proc_t child
);
200 static void pgrp_remove(proc_t p
);
201 static void pgrp_replace(proc_t p
, struct pgrp
*pgrp
);
202 static void pgdelete_dropref(struct pgrp
*pgrp
);
203 extern void pg_rele_dropref(struct pgrp
* pgrp
);
204 static int csops_internal(pid_t pid
, int ops
, user_addr_t uaddr
, user_size_t usersize
, user_addr_t uaddittoken
);
205 static boolean_t
proc_parent_is_currentproc(proc_t p
);
207 struct fixjob_iterargs
{
209 struct session
* mysession
;
213 int fixjob_callback(proc_t
, void *);
216 get_current_unique_pid(void)
218 proc_t p
= current_proc();
221 return p
->p_uniqueid
;
228 * Initialize global process hashing structures.
234 LIST_INIT(&zombproc
);
235 pidhashtbl
= hashinit(maxproc
/ 4, M_PROC
, &pidhash
);
236 pgrphashtbl
= hashinit(maxproc
/ 4, M_PROC
, &pgrphash
);
237 sesshashtbl
= hashinit(maxproc
/ 4, M_PROC
, &sesshash
);
238 uihashtbl
= hashinit(maxproc
/ 16, M_PROC
, &uihash
);
240 personas_bootstrap();
245 * Change the count associated with number of processes
246 * a given user is using. This routine protects the uihash
250 chgproccnt(uid_t uid
, int diff
)
253 struct uidinfo
*newuip
= NULL
;
254 struct uihashhead
*uipp
;
260 for (uip
= uipp
->lh_first
; uip
!= 0; uip
= uip
->ui_hash
.le_next
) {
261 if (uip
->ui_uid
== uid
) {
266 uip
->ui_proccnt
+= diff
;
267 if (uip
->ui_proccnt
> 0) {
268 retval
= uip
->ui_proccnt
;
272 if (uip
->ui_proccnt
< 0) {
273 panic("chgproccnt: procs < 0");
275 LIST_REMOVE(uip
, ui_hash
);
278 FREE_ZONE(uip
, sizeof(*uip
), M_PROC
);
287 panic("chgproccnt: lost user");
289 if (newuip
!= NULL
) {
292 LIST_INSERT_HEAD(uipp
, uip
, ui_hash
);
294 uip
->ui_proccnt
= diff
;
300 MALLOC_ZONE(newuip
, struct uidinfo
*, sizeof(*uip
), M_PROC
, M_WAITOK
);
301 if (newuip
== NULL
) {
302 panic("chgproccnt: M_PROC zone depleted");
306 if (newuip
!= NULL
) {
307 FREE_ZONE(newuip
, sizeof(*uip
), M_PROC
);
313 * Is p an inferior of the current process?
321 for (; p
!= current_proc(); p
= p
->p_pptr
) {
333 * Is p an inferior of t ?
336 isinferior(proc_t p
, proc_t t
)
342 /* if p==t they are not inferior */
348 for (; p
!= t
; p
= p
->p_pptr
) {
351 /* Detect here if we're in a cycle */
352 if ((p
->p_pid
== 0) || (p
->p_pptr
== start
) || (nchecked
>= nprocs
)) {
363 proc_isinferior(int pid1
, int pid2
)
365 proc_t p
= PROC_NULL
;
366 proc_t t
= PROC_NULL
;
369 if (((p
= proc_find(pid1
)) != (proc_t
)0) && ((t
= proc_find(pid2
)) != (proc_t
)0)) {
370 retval
= isinferior(p
, t
);
373 if (p
!= PROC_NULL
) {
376 if (t
!= PROC_NULL
) {
386 return proc_findinternal(pid
, 0);
390 proc_findinternal(int pid
, int locked
)
392 proc_t p
= PROC_NULL
;
398 p
= pfind_locked(pid
);
399 if ((p
== PROC_NULL
) || (p
!= proc_ref_locked(p
))) {
411 proc_findthread(thread_t thread
)
413 proc_t p
= PROC_NULL
;
417 uth
= get_bsdthread_info(thread
);
418 if (uth
&& (uth
->uu_flag
& UT_VFORK
)) {
421 p
= (proc_t
)(get_bsdthreadtask_info(thread
));
423 p
= proc_ref_locked(p
);
429 uthread_reset_proc_refcount(void *uthread
)
433 uth
= (uthread_t
) uthread
;
434 uth
->uu_proc_refcount
= 0;
437 if (proc_ref_tracking_disabled
) {
447 uthread_get_proc_refcount(void *uthread
)
451 if (proc_ref_tracking_disabled
) {
455 uth
= (uthread_t
) uthread
;
457 return uth
->uu_proc_refcount
;
462 record_procref(proc_t p __unused
, int count
)
466 uth
= current_uthread();
467 uth
->uu_proc_refcount
+= count
;
470 if (proc_ref_tracking_disabled
) {
474 if (uth
->uu_pindex
< NUM_PROC_REFS_TO_TRACK
) {
475 backtrace((uintptr_t *) &uth
->uu_proc_pcs
[uth
->uu_pindex
],
476 PROC_REF_STACK_DEPTH
, NULL
);
478 uth
->uu_proc_ps
[uth
->uu_pindex
] = p
;
485 uthread_needs_to_wait_in_proc_refwait(void)
487 uthread_t uth
= current_uthread();
490 * Allow threads holding no proc refs to wait
491 * in proc_refwait, allowing threads holding
492 * proc refs to wait in proc_refwait causes
493 * deadlocks and makes proc_find non-reentrant.
495 if (uth
->uu_proc_refcount
== 0) {
520 if (p
!= proc_ref_locked(p
)) {
529 proc_ref_locked(proc_t p
)
532 int pid
= proc_pid(p
);
536 * if process still in creation or proc got recycled
537 * during msleep then return failure.
539 if ((p
== PROC_NULL
) || (p1
!= p
) || ((p
->p_listflag
& P_LIST_INCREATE
) != 0)) {
544 * Do not return process marked for termination
545 * or proc_refdrain called without ref wait.
546 * Wait for proc_refdrain_with_refwait to complete if
547 * process in refdrain and refwait flag is set, unless
548 * the current thread is holding to a proc_ref
551 if ((p
->p_stat
!= SZOMB
) &&
552 ((p
->p_listflag
& P_LIST_EXITED
) == 0) &&
553 ((p
->p_listflag
& P_LIST_DEAD
) == 0) &&
554 (((p
->p_listflag
& (P_LIST_DRAIN
| P_LIST_DRAINWAIT
)) == 0) ||
555 ((p
->p_listflag
& P_LIST_REFWAIT
) != 0))) {
556 if ((p
->p_listflag
& P_LIST_REFWAIT
) != 0 && uthread_needs_to_wait_in_proc_refwait()) {
557 msleep(&p
->p_listflag
, proc_list_mlock
, 0, "proc_refwait", 0);
559 * the proc might have been recycled since we dropped
560 * the proc list lock, get the proc again.
562 p
= pfind_locked(pid
);
566 record_procref(p
, 1);
575 proc_rele_locked(proc_t p
)
577 if (p
->p_refcount
> 0) {
579 record_procref(p
, -1);
580 if ((p
->p_refcount
== 0) && ((p
->p_listflag
& P_LIST_DRAINWAIT
) == P_LIST_DRAINWAIT
)) {
581 p
->p_listflag
&= ~P_LIST_DRAINWAIT
;
582 wakeup(&p
->p_refcount
);
585 panic("proc_rele_locked -ve ref\n");
590 proc_find_zombref(int pid
)
597 p
= pfind_locked(pid
);
599 /* should we bail? */
600 if ((p
== PROC_NULL
) /* not found */
601 || ((p
->p_listflag
& P_LIST_INCREATE
) != 0) /* not created yet */
602 || ((p
->p_listflag
& P_LIST_EXITED
) == 0)) { /* not started exit */
607 /* If someone else is controlling the (unreaped) zombie - wait */
608 if ((p
->p_listflag
& P_LIST_WAITING
) != 0) {
609 (void)msleep(&p
->p_stat
, proc_list_mlock
, PWAIT
, "waitcoll", 0);
612 p
->p_listflag
|= P_LIST_WAITING
;
620 proc_drop_zombref(proc_t p
)
623 if ((p
->p_listflag
& P_LIST_WAITING
) == P_LIST_WAITING
) {
624 p
->p_listflag
&= ~P_LIST_WAITING
;
632 proc_refdrain(proc_t p
)
634 proc_refdrain_with_refwait(p
, FALSE
);
638 proc_refdrain_with_refwait(proc_t p
, boolean_t get_ref_and_allow_wait
)
640 boolean_t initexec
= FALSE
;
643 p
->p_listflag
|= P_LIST_DRAIN
;
644 if (get_ref_and_allow_wait
) {
646 * All the calls to proc_ref_locked will wait
647 * for the flag to get cleared before returning a ref,
648 * unless the current thread is holding to a proc ref
651 p
->p_listflag
|= P_LIST_REFWAIT
;
657 /* Do not wait in ref drain for launchd exec */
658 while (p
->p_refcount
&& !initexec
) {
659 p
->p_listflag
|= P_LIST_DRAINWAIT
;
660 msleep(&p
->p_refcount
, proc_list_mlock
, 0, "proc_refdrain", 0);
663 p
->p_listflag
&= ~P_LIST_DRAIN
;
664 if (!get_ref_and_allow_wait
) {
665 p
->p_listflag
|= P_LIST_DEAD
;
667 /* Return a ref to the caller */
669 record_procref(p
, 1);
674 if (get_ref_and_allow_wait
) {
681 proc_refwake(proc_t p
)
684 p
->p_listflag
&= ~P_LIST_REFWAIT
;
685 wakeup(&p
->p_listflag
);
690 proc_parentholdref(proc_t p
)
692 proc_t parent
= PROC_NULL
;
700 if ((pp
== PROC_NULL
) || (pp
->p_stat
== SZOMB
) || ((pp
->p_listflag
& (P_LIST_CHILDDRSTART
| P_LIST_CHILDDRAINED
)) == (P_LIST_CHILDDRSTART
| P_LIST_CHILDDRAINED
))) {
705 if ((pp
->p_listflag
& (P_LIST_CHILDDRSTART
| P_LIST_CHILDDRAINED
)) == P_LIST_CHILDDRSTART
) {
706 pp
->p_listflag
|= P_LIST_CHILDDRWAIT
;
707 msleep(&pp
->p_childrencnt
, proc_list_mlock
, 0, "proc_parent", 0);
716 if ((pp
->p_listflag
& (P_LIST_CHILDDRSTART
| P_LIST_CHILDDRAINED
)) == 0) {
727 proc_parentdropref(proc_t p
, int listlocked
)
729 if (listlocked
== 0) {
733 if (p
->p_parentref
> 0) {
735 if ((p
->p_parentref
== 0) && ((p
->p_listflag
& P_LIST_PARENTREFWAIT
) == P_LIST_PARENTREFWAIT
)) {
736 p
->p_listflag
&= ~P_LIST_PARENTREFWAIT
;
737 wakeup(&p
->p_parentref
);
740 panic("proc_parentdropref -ve ref\n");
742 if (listlocked
== 0) {
750 proc_childdrainstart(proc_t p
)
752 #if __PROC_INTERNAL_DEBUG
753 if ((p
->p_listflag
& P_LIST_CHILDDRSTART
) == P_LIST_CHILDDRSTART
) {
754 panic("proc_childdrainstart: childdrain already started\n");
757 p
->p_listflag
|= P_LIST_CHILDDRSTART
;
758 /* wait for all that hold parentrefs to drop */
759 while (p
->p_parentref
> 0) {
760 p
->p_listflag
|= P_LIST_PARENTREFWAIT
;
761 msleep(&p
->p_parentref
, proc_list_mlock
, 0, "proc_childdrainstart", 0);
767 proc_childdrainend(proc_t p
)
769 #if __PROC_INTERNAL_DEBUG
770 if (p
->p_childrencnt
> 0) {
771 panic("exiting: children stil hanging around\n");
774 p
->p_listflag
|= P_LIST_CHILDDRAINED
;
775 if ((p
->p_listflag
& (P_LIST_CHILDLKWAIT
| P_LIST_CHILDDRWAIT
)) != 0) {
776 p
->p_listflag
&= ~(P_LIST_CHILDLKWAIT
| P_LIST_CHILDDRWAIT
);
777 wakeup(&p
->p_childrencnt
);
782 proc_checkdeadrefs(__unused proc_t p
)
784 #if __PROC_INTERNAL_DEBUG
785 if ((p
->p_listflag
& P_LIST_INHASH
) != 0) {
786 panic("proc being freed and still in hash %p: %u\n", p
, p
->p_listflag
);
788 if (p
->p_childrencnt
!= 0) {
789 panic("proc being freed and pending children cnt %p:%d\n", p
, p
->p_childrencnt
);
791 if (p
->p_refcount
!= 0) {
792 panic("proc being freed and pending refcount %p:%d\n", p
, p
->p_refcount
);
794 if (p
->p_parentref
!= 0) {
795 panic("proc being freed and pending parentrefs %p:%d\n", p
, p
->p_parentref
);
819 proc_original_ppid(proc_t p
)
822 return p
->p_original_ppid
;
830 return current_proc()->p_pid
;
836 return current_proc()->p_ppid
;
840 proc_selfcsflags(void)
842 return (uint64_t)current_proc()->p_csflags
;
846 proc_csflags(proc_t p
, uint64_t *flags
)
849 *flags
= (uint64_t)p
->p_csflags
;
856 proc_platform(proc_t p
)
859 return p
->p_platform
;
875 dtrace_current_proc_vforking(void)
877 thread_t th
= current_thread();
878 struct uthread
*ut
= get_bsdthread_info(th
);
881 ((ut
->uu_flag
& (UT_VFORK
| UT_VFORKING
)) == (UT_VFORK
| UT_VFORKING
))) {
883 * Handle the narrow window where we're in the vfork syscall,
884 * but we're not quite ready to claim (in particular, to DTrace)
885 * that we're running as the child.
887 return get_bsdtask_info(get_threadtask(th
));
889 return current_proc();
893 dtrace_proc_selfpid(void)
895 return dtrace_current_proc_vforking()->p_pid
;
899 dtrace_proc_selfppid(void)
901 return dtrace_current_proc_vforking()->p_ppid
;
905 dtrace_proc_selfruid(void)
907 return dtrace_current_proc_vforking()->p_ruid
;
909 #endif /* CONFIG_DTRACE */
912 proc_parent(proc_t p
)
920 parent
= proc_ref_locked(pp
);
921 if ((parent
== PROC_NULL
) && (pp
!= PROC_NULL
) && (pp
->p_stat
!= SZOMB
) && ((pp
->p_listflag
& P_LIST_EXITED
) != 0) && ((pp
->p_listflag
& P_LIST_CHILDDRAINED
) == 0)) {
922 pp
->p_listflag
|= P_LIST_CHILDLKWAIT
;
923 msleep(&pp
->p_childrencnt
, proc_list_mlock
, 0, "proc_parent", 0);
931 proc_parent_is_currentproc(proc_t p
)
933 boolean_t ret
= FALSE
;
936 if (p
->p_pptr
== current_proc()) {
945 proc_name(int pid
, char * buf
, int size
)
955 if ((p
= proc_find(pid
)) != PROC_NULL
) {
956 strlcpy(buf
, &p
->p_comm
[0], size
);
962 proc_name_kdp(task_t t
, char * buf
, int size
)
964 proc_t p
= get_bsdtask_info(t
);
965 if (p
== PROC_NULL
) {
969 if ((size_t)size
> sizeof(p
->p_comm
)) {
970 strlcpy(buf
, &p
->p_name
[0], MIN((int)sizeof(p
->p_name
), size
));
972 strlcpy(buf
, &p
->p_comm
[0], MIN((int)sizeof(p
->p_comm
), size
));
977 proc_binary_uuid_kdp(task_t task
, uuid_t uuid
)
979 proc_t p
= get_bsdtask_info(task
);
980 if (p
== PROC_NULL
) {
984 proc_getexecutableuuid(p
, uuid
, sizeof(uuid_t
));
990 proc_threadname_kdp(void * uth
, char * buf
, size_t size
)
992 if (size
< MAXTHREADNAMESIZE
) {
993 /* this is really just a protective measure for the future in
994 * case the thread name size in stackshot gets out of sync with
995 * the BSD max thread name size. Note that bsd_getthreadname
996 * doesn't take input buffer size into account. */
1001 bsd_getthreadname(uth
, buf
);
1007 /* note that this function is generally going to be called from stackshot,
1008 * and the arguments will be coming from a struct which is declared packed
1009 * thus the input arguments will in general be unaligned. We have to handle
1012 proc_starttime_kdp(void *p
, unaligned_u64
*tv_sec
, unaligned_u64
*tv_usec
, unaligned_u64
*abstime
)
1014 proc_t pp
= (proc_t
)p
;
1015 if (pp
!= PROC_NULL
) {
1016 if (tv_sec
!= NULL
) {
1017 *tv_sec
= pp
->p_start
.tv_sec
;
1019 if (tv_usec
!= NULL
) {
1020 *tv_usec
= pp
->p_start
.tv_usec
;
1022 if (abstime
!= NULL
) {
1023 if (pp
->p_stats
!= NULL
) {
1024 *abstime
= pp
->p_stats
->ps_start
;
1033 proc_name_address(void *p
)
1035 return &((proc_t
)p
)->p_comm
[0];
1039 proc_best_name(proc_t p
)
1041 if (p
->p_name
[0] != 0) {
1042 return &p
->p_name
[0];
1044 return &p
->p_comm
[0];
1048 proc_selfname(char * buf
, int size
)
1052 if ((p
= current_proc()) != (proc_t
)0) {
1053 strlcpy(buf
, &p
->p_comm
[0], size
);
1058 proc_signal(int pid
, int signum
)
1062 if ((p
= proc_find(pid
)) != PROC_NULL
) {
1069 proc_issignal(int pid
, sigset_t mask
)
1074 if ((p
= proc_find(pid
)) != PROC_NULL
) {
1075 error
= proc_pendingsignals(p
, mask
);
1083 proc_noremotehang(proc_t p
)
1088 retval
= p
->p_flag
& P_NOREMOTEHANG
;
1090 return retval
? 1: 0;
1094 proc_exiting(proc_t p
)
1099 retval
= p
->p_lflag
& P_LEXIT
;
1101 return retval
? 1: 0;
1105 proc_in_teardown(proc_t p
)
1110 retval
= p
->p_lflag
& P_LPEXIT
;
1112 return retval
? 1: 0;
1116 proc_forcequota(proc_t p
)
1121 retval
= p
->p_flag
& P_FORCEQUOTA
;
1123 return retval
? 1: 0;
1127 proc_suser(proc_t p
)
1129 kauth_cred_t my_cred
;
1132 my_cred
= kauth_cred_proc_ref(p
);
1133 error
= suser(my_cred
, &p
->p_acflag
);
1134 kauth_cred_unref(&my_cred
);
1139 proc_task(proc_t proc
)
1141 return (task_t
)proc
->task
;
1145 * Obtain the first thread in a process
1147 * XXX This is a bad thing to do; it exists predominantly to support the
1148 * XXX use of proc_t's in places that should really be using
1149 * XXX thread_t's instead. This maintains historical behaviour, but really
1150 * XXX needs an audit of the context (proxy vs. not) to clean up.
1153 proc_thread(proc_t proc
)
1155 uthread_t uth
= TAILQ_FIRST(&proc
->p_uthlist
);
1158 return uth
->uu_context
.vc_thread
;
1165 proc_ucred(proc_t p
)
1173 thread_t th
= current_thread();
1175 return (struct uthread
*)get_bsdthread_info(th
);
1180 proc_is64bit(proc_t p
)
1182 return IS_64BIT_PROCESS(p
);
1186 proc_is64bit_data(proc_t p
)
1189 return (int)task_get_64bit_data(p
->task
);
1193 proc_pidversion(proc_t p
)
1195 return p
->p_idversion
;
1199 proc_persona_id(proc_t p
)
1201 return (uint32_t)persona_id_from_proc(p
);
1205 proc_getuid(proc_t p
)
1211 proc_getgid(proc_t p
)
1217 proc_uniqueid(proc_t p
)
1219 return p
->p_uniqueid
;
1223 proc_puniqueid(proc_t p
)
1225 return p
->p_puniqueid
;
1229 proc_coalitionids(__unused proc_t p
, __unused
uint64_t ids
[COALITION_NUM_TYPES
])
1231 #if CONFIG_COALITIONS
1232 task_coalition_ids(p
->task
, ids
);
1234 memset(ids
, 0, sizeof(uint64_t[COALITION_NUM_TYPES
]));
1240 proc_was_throttled(proc_t p
)
1242 return p
->was_throttled
;
1246 proc_did_throttle(proc_t p
)
1248 return p
->did_throttle
;
1252 proc_getcdhash(proc_t p
, unsigned char *cdhash
)
1254 return vn_getcdhash(p
->p_textvp
, p
->p_textoff
, cdhash
);
1258 proc_exitstatus(proc_t p
)
1260 return p
->p_xstat
& 0xffff;
1264 proc_getexecutableuuid(proc_t p
, unsigned char *uuidbuf
, unsigned long size
)
1266 if (size
>= sizeof(p
->p_uuid
)) {
1267 memcpy(uuidbuf
, p
->p_uuid
, sizeof(p
->p_uuid
));
1271 /* Return vnode for executable with an iocount. Must be released with vnode_put() */
1273 proc_getexecutablevnode(proc_t p
)
1275 vnode_t tvp
= p
->p_textvp
;
1277 if (tvp
!= NULLVP
) {
1278 if (vnode_getwithref(tvp
) == 0) {
1287 proc_gettty(proc_t p
, vnode_t
*vp
)
1293 struct session
*procsp
= proc_session(p
);
1296 if (procsp
!= SESSION_NULL
) {
1297 session_lock(procsp
);
1298 vnode_t ttyvp
= procsp
->s_ttyvp
;
1299 int ttyvid
= procsp
->s_ttyvid
;
1300 session_unlock(procsp
);
1303 if (vnode_getwithvid(ttyvp
, ttyvid
) == 0) {
1304 *vp
= procsp
->s_ttyvp
;
1311 session_rele(procsp
);
1318 proc_gettty_dev(proc_t p
, dev_t
*dev
)
1320 struct session
*procsp
= proc_session(p
);
1321 boolean_t has_tty
= FALSE
;
1323 if (procsp
!= SESSION_NULL
) {
1324 session_lock(procsp
);
1326 struct tty
* tp
= SESSION_TP(procsp
);
1327 if (tp
!= TTY_NULL
) {
1332 session_unlock(procsp
);
1333 session_rele(procsp
);
1344 proc_selfexecutableargs(uint8_t *buf
, size_t *buflen
)
1346 proc_t p
= current_proc();
1348 // buflen must always be provided
1349 if (buflen
== NULL
) {
1353 // If a buf is provided, there must be at least enough room to fit argc
1354 if (buf
&& *buflen
< sizeof(p
->p_argc
)) {
1358 if (!p
->user_stack
) {
1363 *buflen
= p
->p_argslen
+ sizeof(p
->p_argc
);
1367 // Copy in argc to the first 4 bytes
1368 memcpy(buf
, &p
->p_argc
, sizeof(p
->p_argc
));
1370 if (*buflen
> sizeof(p
->p_argc
) && p
->p_argslen
> 0) {
1371 // See memory layout comment in kern_exec.c:exec_copyout_strings()
1372 // We want to copy starting from `p_argslen` bytes away from top of stack
1373 return copyin(p
->user_stack
- p
->p_argslen
,
1374 buf
+ sizeof(p
->p_argc
),
1375 MIN(p
->p_argslen
, *buflen
- sizeof(p
->p_argc
)));
1382 proc_getexecutableoffset(proc_t p
)
1384 return p
->p_textoff
;
1388 bsd_set_dependency_capable(task_t task
)
1390 proc_t p
= get_bsdtask_info(task
);
1393 OSBitOrAtomic(P_DEPENDENCY_CAPABLE
, &p
->p_flag
);
1400 IS_64BIT_PROCESS(proc_t p
)
1402 if (p
&& (p
->p_flag
& P_LP64
)) {
1411 * Locate a process by number
1414 pfind_locked(pid_t pid
)
1425 for (p
= PIDHASH(pid
)->lh_first
; p
!= 0; p
= p
->p_hash
.le_next
) {
1426 if (p
->p_pid
== pid
) {
1428 for (q
= p
->p_hash
.le_next
; q
!= 0; q
= q
->p_hash
.le_next
) {
1429 if ((p
!= q
) && (q
->p_pid
== pid
)) {
1430 panic("two procs with same pid %p:%p:%d:%d\n", p
, q
, p
->p_pid
, q
->p_pid
);
1441 * Locate a zombie by PID
1443 __private_extern__ proc_t
1451 for (p
= zombproc
.lh_first
; p
!= 0; p
= p
->p_list
.le_next
) {
1452 if (p
->p_pid
== pid
) {
1463 * Locate a process group by number
1472 pgrp
= pgfind_internal(pgid
);
1473 if ((pgrp
== NULL
) || ((pgrp
->pg_listflags
& PGRP_FLAG_TERMINATE
) != 0)) {
1476 pgrp
->pg_refcount
++;
1485 pgfind_internal(pid_t pgid
)
1489 for (pgrp
= PGRPHASH(pgid
)->lh_first
; pgrp
!= 0; pgrp
= pgrp
->pg_hash
.le_next
) {
1490 if (pgrp
->pg_id
== pgid
) {
1498 pg_rele(struct pgrp
* pgrp
)
1500 if (pgrp
== PGRP_NULL
) {
1503 pg_rele_dropref(pgrp
);
1507 pg_rele_dropref(struct pgrp
* pgrp
)
1510 if ((pgrp
->pg_refcount
== 1) && ((pgrp
->pg_listflags
& PGRP_FLAG_TERMINATE
) == PGRP_FLAG_TERMINATE
)) {
1512 pgdelete_dropref(pgrp
);
1516 pgrp
->pg_refcount
--;
1521 session_find_internal(pid_t sessid
)
1523 struct session
*sess
;
1525 for (sess
= SESSHASH(sessid
)->lh_first
; sess
!= 0; sess
= sess
->s_hash
.le_next
) {
1526 if (sess
->s_sid
== sessid
) {
1535 * Make a new process ready to become a useful member of society by making it
1536 * visible in all the right places and initialize its own lists to empty.
1538 * Parameters: parent The parent of the process to insert
1539 * child The child process to insert
1543 * Notes: Insert a child process into the parents process group, assign
1544 * the child the parent process pointer and PPID of the parent,
1545 * place it on the parents p_children list as a sibling,
1546 * initialize its own child list, place it in the allproc list,
1547 * insert it in the proper hash bucket, and initialize its
1551 pinsertchild(proc_t parent
, proc_t child
)
1555 LIST_INIT(&child
->p_children
);
1556 TAILQ_INIT(&child
->p_evlist
);
1557 child
->p_pptr
= parent
;
1558 child
->p_ppid
= parent
->p_pid
;
1559 child
->p_original_ppid
= parent
->p_pid
;
1560 child
->p_puniqueid
= parent
->p_uniqueid
;
1561 child
->p_xhighbits
= 0;
1563 pg
= proc_pgrp(parent
);
1564 pgrp_add(pg
, parent
, child
);
1569 #if CONFIG_MEMORYSTATUS
1570 memorystatus_add(child
, TRUE
);
1573 parent
->p_childrencnt
++;
1574 LIST_INSERT_HEAD(&parent
->p_children
, child
, p_sibling
);
1576 LIST_INSERT_HEAD(&allproc
, child
, p_list
);
1577 /* mark the completion of proc creation */
1578 child
->p_listflag
&= ~P_LIST_INCREATE
;
1584 * Move p to a new or existing process group (and session)
1586 * Returns: 0 Success
1587 * ESRCH No such process
1590 enterpgrp(proc_t p
, pid_t pgid
, int mksess
)
1593 struct pgrp
*mypgrp
;
1594 struct session
* procsp
;
1596 pgrp
= pgfind(pgid
);
1597 mypgrp
= proc_pgrp(p
);
1598 procsp
= proc_session(p
);
1601 if (pgrp
!= NULL
&& mksess
) { /* firewalls */
1602 panic("enterpgrp: setsid into non-empty pgrp");
1604 if (SESS_LEADER(p
, procsp
)) {
1605 panic("enterpgrp: session leader attempted setpgrp");
1608 if (pgrp
== PGRP_NULL
) {
1609 pid_t savepid
= p
->p_pid
;
1610 proc_t np
= PROC_NULL
;
1615 if (p
->p_pid
!= pgid
) {
1616 panic("enterpgrp: new pgrp and pid != pgid");
1619 MALLOC_ZONE(pgrp
, struct pgrp
*, sizeof(struct pgrp
), M_PGRP
,
1622 panic("enterpgrp: M_PGRP zone depleted");
1624 if ((np
= proc_find(savepid
)) == NULL
|| np
!= p
) {
1625 if (np
!= PROC_NULL
) {
1628 if (mypgrp
!= PGRP_NULL
) {
1631 if (procsp
!= SESSION_NULL
) {
1632 session_rele(procsp
);
1634 FREE_ZONE(pgrp
, sizeof(struct pgrp
), M_PGRP
);
1639 struct session
*sess
;
1644 MALLOC_ZONE(sess
, struct session
*,
1645 sizeof(struct session
), M_SESSION
, M_WAITOK
);
1647 panic("enterpgrp: M_SESSION zone depleted");
1650 sess
->s_sid
= p
->p_pid
;
1652 sess
->s_ttyvp
= NULL
;
1653 sess
->s_ttyp
= TTY_NULL
;
1655 sess
->s_listflags
= 0;
1656 sess
->s_ttypgrpid
= NO_PID
;
1658 lck_mtx_init(&sess
->s_mlock
, proc_mlock_grp
, proc_lck_attr
);
1660 bcopy(procsp
->s_login
, sess
->s_login
,
1661 sizeof(sess
->s_login
));
1662 OSBitAndAtomic(~((uint32_t)P_CONTROLT
), &p
->p_flag
);
1664 LIST_INSERT_HEAD(SESSHASH(sess
->s_sid
), sess
, s_hash
);
1666 pgrp
->pg_session
= sess
;
1668 if (p
!= current_proc()) {
1669 panic("enterpgrp: mksession and p != curproc");
1674 pgrp
->pg_session
= procsp
;
1676 if ((pgrp
->pg_session
->s_listflags
& (S_LIST_TERM
| S_LIST_DEAD
)) != 0) {
1677 panic("enterpgrp: providing ref to terminating session ");
1679 pgrp
->pg_session
->s_count
++;
1684 lck_mtx_init(&pgrp
->pg_mlock
, proc_mlock_grp
, proc_lck_attr
);
1686 LIST_INIT(&pgrp
->pg_members
);
1687 pgrp
->pg_membercnt
= 0;
1690 pgrp
->pg_refcount
= 1;
1691 pgrp
->pg_listflags
= 0;
1692 LIST_INSERT_HEAD(PGRPHASH(pgid
), pgrp
, pg_hash
);
1694 } else if (pgrp
== mypgrp
) {
1696 if (mypgrp
!= NULL
) {
1699 if (procsp
!= SESSION_NULL
) {
1700 session_rele(procsp
);
1705 if (procsp
!= SESSION_NULL
) {
1706 session_rele(procsp
);
1709 * Adjust eligibility of affected pgrps to participate in job control.
1710 * Increment eligibility counts before decrementing, otherwise we
1711 * could reach 0 spuriously during the first call.
1713 fixjobc(p
, pgrp
, 1);
1714 fixjobc(p
, mypgrp
, 0);
1716 if (mypgrp
!= PGRP_NULL
) {
1719 pgrp_replace(p
, pgrp
);
1726 * remove process from process group
1736 * delete a process group
1739 pgdelete_dropref(struct pgrp
*pgrp
)
1743 struct session
*sessp
;
1747 if (pgrp
->pg_membercnt
!= 0) {
1753 pgrp
->pg_refcount
--;
1754 if ((emptypgrp
== 0) || (pgrp
->pg_membercnt
!= 0)) {
1759 pgrp
->pg_listflags
|= PGRP_FLAG_TERMINATE
;
1761 if (pgrp
->pg_refcount
> 0) {
1766 pgrp
->pg_listflags
|= PGRP_FLAG_DEAD
;
1767 LIST_REMOVE(pgrp
, pg_hash
);
1771 ttyp
= SESSION_TP(pgrp
->pg_session
);
1772 if (ttyp
!= TTY_NULL
) {
1773 if (ttyp
->t_pgrp
== pgrp
) {
1775 /* Re-check after acquiring the lock */
1776 if (ttyp
->t_pgrp
== pgrp
) {
1777 ttyp
->t_pgrp
= NULL
;
1778 pgrp
->pg_session
->s_ttypgrpid
= NO_PID
;
1786 sessp
= pgrp
->pg_session
;
1787 if ((sessp
->s_listflags
& (S_LIST_TERM
| S_LIST_DEAD
)) != 0) {
1788 panic("pg_deleteref: manipulating refs of already terminating session");
1790 if (--sessp
->s_count
== 0) {
1791 if ((sessp
->s_listflags
& (S_LIST_TERM
| S_LIST_DEAD
)) != 0) {
1792 panic("pg_deleteref: terminating already terminated session");
1794 sessp
->s_listflags
|= S_LIST_TERM
;
1795 ttyp
= SESSION_TP(sessp
);
1796 LIST_REMOVE(sessp
, s_hash
);
1798 if (ttyp
!= TTY_NULL
) {
1800 if (ttyp
->t_session
== sessp
) {
1801 ttyp
->t_session
= NULL
;
1806 sessp
->s_listflags
|= S_LIST_DEAD
;
1807 if (sessp
->s_count
!= 0) {
1808 panic("pg_deleteref: freeing session in use");
1811 lck_mtx_destroy(&sessp
->s_mlock
, proc_mlock_grp
);
1813 FREE_ZONE(sessp
, sizeof(struct session
), M_SESSION
);
1817 lck_mtx_destroy(&pgrp
->pg_mlock
, proc_mlock_grp
);
1818 FREE_ZONE(pgrp
, sizeof(*pgrp
), M_PGRP
);
1823 * Adjust pgrp jobc counters when specified process changes process group.
1824 * We count the number of processes in each process group that "qualify"
1825 * the group for terminal job control (those with a parent in a different
1826 * process group of the same session). If that count reaches zero, the
1827 * process group becomes orphaned. Check both the specified process'
1828 * process group and that of its children.
1829 * entering == 0 => p is leaving specified group.
1830 * entering == 1 => p is entering specified group.
1833 fixjob_callback(proc_t p
, void * arg
)
1835 struct fixjob_iterargs
*fp
;
1836 struct pgrp
* pg
, *hispg
;
1837 struct session
* mysession
, *hissess
;
1840 fp
= (struct fixjob_iterargs
*)arg
;
1842 mysession
= fp
->mysession
;
1843 entering
= fp
->entering
;
1845 hispg
= proc_pgrp(p
);
1846 hissess
= proc_session(p
);
1848 if ((hispg
!= pg
) &&
1849 (hissess
== mysession
)) {
1854 } else if (--hispg
->pg_jobc
== 0) {
1861 if (hissess
!= SESSION_NULL
) {
1862 session_rele(hissess
);
1864 if (hispg
!= PGRP_NULL
) {
1868 return PROC_RETURNED
;
1872 fixjobc(proc_t p
, struct pgrp
*pgrp
, int entering
)
1874 struct pgrp
*hispgrp
= PGRP_NULL
;
1875 struct session
*hissess
= SESSION_NULL
;
1876 struct session
*mysession
= pgrp
->pg_session
;
1878 struct fixjob_iterargs fjarg
;
1879 boolean_t proc_parent_self
;
1882 * Check if p's parent is current proc, if yes then no need to take
1883 * a ref; calling proc_parent with current proc as parent may
1884 * deadlock if current proc is exiting.
1886 proc_parent_self
= proc_parent_is_currentproc(p
);
1887 if (proc_parent_self
) {
1888 parent
= current_proc();
1890 parent
= proc_parent(p
);
1893 if (parent
!= PROC_NULL
) {
1894 hispgrp
= proc_pgrp(parent
);
1895 hissess
= proc_session(parent
);
1896 if (!proc_parent_self
) {
1903 * Check p's parent to see whether p qualifies its own process
1904 * group; if so, adjust count for p's process group.
1906 if ((hispgrp
!= pgrp
) &&
1907 (hissess
== mysession
)) {
1912 } else if (--pgrp
->pg_jobc
== 0) {
1920 if (hissess
!= SESSION_NULL
) {
1921 session_rele(hissess
);
1923 if (hispgrp
!= PGRP_NULL
) {
1928 * Check this process' children to see whether they qualify
1929 * their process groups; if so, adjust counts for children's
1933 fjarg
.mysession
= mysession
;
1934 fjarg
.entering
= entering
;
1935 proc_childrenwalk(p
, fixjob_callback
, &fjarg
);
1939 * The pidlist_* routines support the functions in this file that
1940 * walk lists of processes applying filters and callouts to the
1941 * elements of the list.
1943 * A prior implementation used a single linear array, which can be
1944 * tricky to allocate on large systems. This implementation creates
1945 * an SLIST of modestly sized arrays of PIDS_PER_ENTRY elements.
1947 * The array should be sized large enough to keep the overhead of
1948 * walking the list low, but small enough that blocking allocations of
1949 * pidlist_entry_t structures always succeed.
1952 #define PIDS_PER_ENTRY 1021
1954 typedef struct pidlist_entry
{
1955 SLIST_ENTRY(pidlist_entry
) pe_link
;
1957 pid_t pe_pid
[PIDS_PER_ENTRY
];
1961 SLIST_HEAD(, pidlist_entry
) pl_head
;
1962 struct pidlist_entry
*pl_active
;
1966 static __inline__ pidlist_t
*
1967 pidlist_init(pidlist_t
*pl
)
1969 SLIST_INIT(&pl
->pl_head
);
1970 pl
->pl_active
= NULL
;
1976 pidlist_alloc(pidlist_t
*pl
, u_int needed
)
1978 while (pl
->pl_nalloc
< needed
) {
1979 pidlist_entry_t
*pe
= kalloc(sizeof(*pe
));
1981 panic("no space for pidlist entry");
1984 SLIST_INSERT_HEAD(&pl
->pl_head
, pe
, pe_link
);
1985 pl
->pl_nalloc
+= (sizeof(pe
->pe_pid
) / sizeof(pe
->pe_pid
[0]));
1987 return pl
->pl_nalloc
;
1991 pidlist_free(pidlist_t
*pl
)
1993 pidlist_entry_t
*pe
;
1994 while (NULL
!= (pe
= SLIST_FIRST(&pl
->pl_head
))) {
1995 SLIST_FIRST(&pl
->pl_head
) = SLIST_NEXT(pe
, pe_link
);
1996 kfree(pe
, sizeof(*pe
));
2001 static __inline__
void
2002 pidlist_set_active(pidlist_t
*pl
)
2004 pl
->pl_active
= SLIST_FIRST(&pl
->pl_head
);
2005 assert(pl
->pl_active
);
2009 pidlist_add_pid(pidlist_t
*pl
, pid_t pid
)
2011 pidlist_entry_t
*pe
= pl
->pl_active
;
2012 if (pe
->pe_nused
>= sizeof(pe
->pe_pid
) / sizeof(pe
->pe_pid
[0])) {
2013 if (NULL
== (pe
= SLIST_NEXT(pe
, pe_link
))) {
2014 panic("pidlist allocation exhausted");
2018 pe
->pe_pid
[pe
->pe_nused
++] = pid
;
2021 static __inline__ u_int
2022 pidlist_nalloc(const pidlist_t
*pl
)
2024 return pl
->pl_nalloc
;
2028 * A process group has become orphaned; if there are any stopped processes in
2029 * the group, hang-up all process in that group.
2032 orphanpg(struct pgrp
*pgrp
)
2034 pidlist_t pid_list
, *pl
= pidlist_init(&pid_list
);
2035 u_int pid_count_available
= 0;
2038 /* allocate outside of the pgrp_lock */
2042 boolean_t should_iterate
= FALSE
;
2043 pid_count_available
= 0;
2045 PGMEMBERS_FOREACH(pgrp
, p
) {
2046 pid_count_available
++;
2047 if (p
->p_stat
== SSTOP
) {
2048 should_iterate
= TRUE
;
2051 if (pid_count_available
== 0 || !should_iterate
) {
2053 goto out
; /* no orphaned processes OR nothing stopped */
2055 if (pidlist_nalloc(pl
) >= pid_count_available
) {
2060 pidlist_alloc(pl
, pid_count_available
);
2062 pidlist_set_active(pl
);
2064 u_int pid_count
= 0;
2065 PGMEMBERS_FOREACH(pgrp
, p
) {
2066 pidlist_add_pid(pl
, proc_pid(p
));
2067 if (++pid_count
>= pid_count_available
) {
2073 const pidlist_entry_t
*pe
;
2074 SLIST_FOREACH(pe
, &(pl
->pl_head
), pe_link
) {
2075 for (u_int i
= 0; i
< pe
->pe_nused
; i
++) {
2076 const pid_t pid
= pe
->pe_pid
[i
];
2078 continue; /* skip kernproc */
2084 proc_transwait(p
, 0);
2087 psignal(p
, SIGCONT
);
2096 proc_is_classic(proc_t p __unused
)
2101 /* XXX Why does this function exist? Need to kill it off... */
2103 current_proc_EXTERNAL(void)
2105 return current_proc();
2109 proc_is_forcing_hfs_case_sensitivity(proc_t p
)
2111 return (p
->p_vfs_iopolicy
& P_VFS_IOPOLICY_FORCE_HFS_CASE_SENSITIVITY
) ? 1 : 0;
2116 * proc_core_name(name, uid, pid)
2117 * Expand the name described in corefilename, using name, uid, and pid.
2118 * corefilename is a printf-like string, with three format specifiers:
2119 * %N name of process ("name")
2120 * %P process id (pid)
2122 * For example, "%N.core" is the default; they can be disabled completely
2123 * by using "/dev/null", or all core files can be stored in "/cores/%U/%N-%P".
2124 * This is controlled by the sysctl variable kern.corefile (see above).
2126 __private_extern__
int
2127 proc_core_name(const char *name
, uid_t uid
, pid_t pid
, char *cf_name
,
2130 const char *format
, *appendstr
;
2131 char id_buf
[11]; /* Buffer for pid/uid -- max 4B */
2134 if (cf_name
== NULL
) {
2138 format
= corefilename
;
2139 for (i
= 0, n
= 0; n
< cf_name_len
&& format
[i
]; i
++) {
2140 switch (format
[i
]) {
2141 case '%': /* Format character */
2143 switch (format
[i
]) {
2147 case 'N': /* process name */
2150 case 'P': /* process id */
2151 snprintf(id_buf
, sizeof(id_buf
), "%u", pid
);
2154 case 'U': /* user id */
2155 snprintf(id_buf
, sizeof(id_buf
), "%u", uid
);
2158 case '\0': /* format string ended in % symbol */
2163 "Unknown format character %c in `%s'\n",
2166 l
= strlen(appendstr
);
2167 if ((n
+ l
) >= cf_name_len
) {
2170 bcopy(appendstr
, cf_name
+ n
, l
);
2174 cf_name
[n
++] = format
[i
];
2177 if (format
[i
] != '\0') {
2182 log(LOG_ERR
, "pid %ld (%s), uid (%u): corename is too long\n",
2183 (long)pid
, name
, (uint32_t)uid
);
2186 log(LOG_ERR
, "pid %ld (%s), uid (%u): unexpected end of string after %% token\n",
2187 (long)pid
, name
, (uint32_t)uid
);
2190 #endif /* CONFIG_COREDUMP */
2192 /* Code Signing related routines */
2195 csops(__unused proc_t p
, struct csops_args
*uap
, __unused
int32_t *retval
)
2197 return csops_internal(uap
->pid
, uap
->ops
, uap
->useraddr
,
2198 uap
->usersize
, USER_ADDR_NULL
);
2202 csops_audittoken(__unused proc_t p
, struct csops_audittoken_args
*uap
, __unused
int32_t *retval
)
2204 if (uap
->uaudittoken
== USER_ADDR_NULL
) {
2207 return csops_internal(uap
->pid
, uap
->ops
, uap
->useraddr
,
2208 uap
->usersize
, uap
->uaudittoken
);
2212 csops_copy_token(void *start
, size_t length
, user_size_t usize
, user_addr_t uaddr
)
2214 char fakeheader
[8] = { 0 };
2217 if (usize
< sizeof(fakeheader
)) {
2221 /* if no blob, fill in zero header */
2222 if (NULL
== start
) {
2224 length
= sizeof(fakeheader
);
2225 } else if (usize
< length
) {
2226 /* ... if input too short, copy out length of entitlement */
2227 uint32_t length32
= htonl((uint32_t)length
);
2228 memcpy(&fakeheader
[4], &length32
, sizeof(length32
));
2230 error
= copyout(fakeheader
, uaddr
, sizeof(fakeheader
));
2232 return ERANGE
; /* input buffer to short, ERANGE signals that */
2236 return copyout(start
, uaddr
, length
);
2240 csops_internal(pid_t pid
, int ops
, user_addr_t uaddr
, user_size_t usersize
, user_addr_t uaudittoken
)
2242 size_t usize
= (size_t)CAST_DOWN(size_t, usersize
);
2248 unsigned char cdhash
[SHA1_RESULTLEN
];
2249 audit_token_t token
;
2250 unsigned int upid
= 0, uidversion
= 0;
2252 forself
= error
= 0;
2255 pid
= proc_selfpid();
2257 if (pid
== proc_selfpid()) {
2265 case CS_OPS_PIDOFFSET
:
2266 case CS_OPS_ENTITLEMENTS_BLOB
:
2267 case CS_OPS_IDENTITY
:
2270 case CS_OPS_CLEAR_LV
:
2271 break; /* not restricted to root */
2273 if (forself
== 0 && kauth_cred_issuser(kauth_cred_get()) != TRUE
) {
2279 pt
= proc_find(pid
);
2280 if (pt
== PROC_NULL
) {
2285 uidversion
= pt
->p_idversion
;
2286 if (uaudittoken
!= USER_ADDR_NULL
) {
2287 error
= copyin(uaudittoken
, &token
, sizeof(audit_token_t
));
2291 /* verify the audit token pid/idversion matches with proc */
2292 if ((token
.val
[5] != upid
) || (token
.val
[7] != uidversion
)) {
2300 case CS_OPS_MARKINVALID
:
2301 case CS_OPS_MARKHARD
:
2302 case CS_OPS_MARKKILL
:
2303 case CS_OPS_MARKRESTRICT
:
2304 case CS_OPS_SET_STATUS
:
2305 case CS_OPS_CLEARINSTALLER
:
2306 case CS_OPS_CLEARPLATFORM
:
2307 case CS_OPS_CLEAR_LV
:
2308 if ((error
= mac_proc_check_set_cs_info(current_proc(), pt
, ops
))) {
2313 if ((error
= mac_proc_check_get_cs_info(current_proc(), pt
, ops
))) {
2320 case CS_OPS_STATUS
: {
2324 retflags
= pt
->p_csflags
;
2325 if (cs_process_enforcement(pt
)) {
2326 retflags
|= CS_ENFORCEMENT
;
2328 if (csproc_get_platform_binary(pt
)) {
2329 retflags
|= CS_PLATFORM_BINARY
;
2331 if (csproc_get_platform_path(pt
)) {
2332 retflags
|= CS_PLATFORM_PATH
;
2334 //Don't return CS_REQUIRE_LV if we turned it on with CS_FORCED_LV but still report CS_FORCED_LV
2335 if ((pt
->p_csflags
& CS_FORCED_LV
) == CS_FORCED_LV
) {
2336 retflags
&= (~CS_REQUIRE_LV
);
2340 if (uaddr
!= USER_ADDR_NULL
) {
2341 error
= copyout(&retflags
, uaddr
, sizeof(uint32_t));
2345 case CS_OPS_MARKINVALID
:
2347 if ((pt
->p_csflags
& CS_VALID
) == CS_VALID
) { /* is currently valid */
2348 pt
->p_csflags
&= ~CS_VALID
; /* set invalid */
2349 if ((pt
->p_csflags
& CS_KILL
) == CS_KILL
) {
2350 pt
->p_csflags
|= CS_KILLED
;
2353 printf("CODE SIGNING: marked invalid by pid %d: "
2354 "p=%d[%s] honoring CS_KILL, final status 0x%x\n",
2355 proc_selfpid(), pt
->p_pid
, pt
->p_comm
, pt
->p_csflags
);
2357 psignal(pt
, SIGKILL
);
2367 case CS_OPS_MARKHARD
:
2369 pt
->p_csflags
|= CS_HARD
;
2370 if ((pt
->p_csflags
& CS_VALID
) == 0) {
2371 /* @@@ allow? reject? kill? @@@ */
2380 case CS_OPS_MARKKILL
:
2382 pt
->p_csflags
|= CS_KILL
;
2383 if ((pt
->p_csflags
& CS_VALID
) == 0) {
2385 psignal(pt
, SIGKILL
);
2391 case CS_OPS_PIDOFFSET
:
2392 toff
= pt
->p_textoff
;
2394 error
= copyout(&toff
, uaddr
, sizeof(toff
));
2399 /* pt already holds a reference on its p_textvp */
2401 toff
= pt
->p_textoff
;
2403 if (tvp
== NULLVP
|| usize
!= SHA1_RESULTLEN
) {
2408 error
= vn_getcdhash(tvp
, toff
, cdhash
);
2412 error
= copyout(cdhash
, uaddr
, sizeof(cdhash
));
2417 case CS_OPS_ENTITLEMENTS_BLOB
: {
2423 if ((pt
->p_csflags
& (CS_VALID
| CS_DEBUGGED
)) == 0) {
2429 error
= cs_entitlements_blob_get(pt
, &start
, &length
);
2435 error
= csops_copy_token(start
, length
, usize
, uaddr
);
2438 case CS_OPS_MARKRESTRICT
:
2440 pt
->p_csflags
|= CS_RESTRICT
;
2444 case CS_OPS_SET_STATUS
: {
2447 if (usize
< sizeof(flags
)) {
2452 error
= copyin(uaddr
, &flags
, sizeof(flags
));
2457 /* only allow setting a subset of all code sign flags */
2459 CS_HARD
| CS_EXEC_SET_HARD
|
2460 CS_KILL
| CS_EXEC_SET_KILL
|
2463 CS_ENFORCEMENT
| CS_EXEC_SET_ENFORCEMENT
;
2466 if (pt
->p_csflags
& CS_VALID
) {
2467 pt
->p_csflags
|= flags
;
2475 case CS_OPS_CLEAR_LV
: {
2477 * This option is used to remove library validation from
2478 * a running process. This is used in plugin architectures
2479 * when a program needs to load untrusted libraries. This
2480 * allows the process to maintain library validation as
2481 * long as possible, then drop it only when required.
2482 * Once a process has loaded the untrusted library,
2483 * relying on library validation in the future will
2484 * not be effective. An alternative is to re-exec
2485 * your application without library validation, or
2486 * fork an untrusted child.
2488 #ifdef CONFIG_EMBEDDED
2489 // On embedded platforms, we don't support dropping LV
2493 * if we have the flag set, and the caller wants
2494 * to remove it, and they're entitled to, then
2495 * we remove it from the csflags
2497 * NOTE: We are fine to poke into the task because
2498 * we get a ref to pt when we do the proc_find
2499 * at the beginning of this function.
2501 * We also only allow altering ourselves.
2503 if (forself
== 1 && IOTaskHasEntitlement(pt
->task
, CLEAR_LV_ENTITLEMENT
)) {
2505 pt
->p_csflags
&= (~(CS_REQUIRE_LV
| CS_FORCED_LV
));
2519 if ((pt
->p_csflags
& (CS_VALID
| CS_DEBUGGED
)) == 0) {
2525 error
= cs_blob_get(pt
, &start
, &length
);
2531 error
= csops_copy_token(start
, length
, usize
, uaddr
);
2534 case CS_OPS_IDENTITY
:
2535 case CS_OPS_TEAMID
: {
2536 const char *identity
;
2537 uint8_t fakeheader
[8];
2542 * Make identity have a blob header to make it
2543 * easier on userland to guess the identity
2546 if (usize
< sizeof(fakeheader
)) {
2550 memset(fakeheader
, 0, sizeof(fakeheader
));
2553 if ((pt
->p_csflags
& (CS_VALID
| CS_DEBUGGED
)) == 0) {
2559 identity
= ops
== CS_OPS_TEAMID
? csproc_get_teamid(pt
) : cs_identity_get(pt
);
2561 if (identity
== NULL
) {
2566 length
= strlen(identity
) + 1; /* include NUL */
2567 idlen
= htonl(length
+ sizeof(fakeheader
));
2568 memcpy(&fakeheader
[4], &idlen
, sizeof(idlen
));
2570 error
= copyout(fakeheader
, uaddr
, sizeof(fakeheader
));
2575 if (usize
< sizeof(fakeheader
) + length
) {
2577 } else if (usize
> sizeof(fakeheader
)) {
2578 error
= copyout(identity
, uaddr
+ sizeof(fakeheader
), length
);
2584 case CS_OPS_CLEARINSTALLER
:
2586 pt
->p_csflags
&= ~(CS_INSTALLER
| CS_DATAVAULT_CONTROLLER
| CS_EXEC_INHERIT_SIP
);
2590 case CS_OPS_CLEARPLATFORM
:
2591 #if DEVELOPMENT || DEBUG
2592 if (cs_process_global_enforcement()) {
2598 if (csr_check(CSR_ALLOW_APPLE_INTERNAL
) != 0) {
2605 pt
->p_csflags
&= ~(CS_PLATFORM_BINARY
| CS_PLATFORM_PATH
);
2606 csproc_clear_platform_binary(pt
);
2612 #endif /* !DEVELOPMENT || DEBUG */
2626 proc_iterate_fn_t callout
,
2628 proc_iterate_fn_t filterfn
,
2631 pidlist_t pid_list
, *pl
= pidlist_init(&pid_list
);
2632 u_int pid_count_available
= 0;
2634 assert(callout
!= NULL
);
2636 /* allocate outside of the proc_list_lock */
2639 pid_count_available
= nprocs
+ 1; /* kernel_task not counted in nprocs */
2640 assert(pid_count_available
> 0);
2641 if (pidlist_nalloc(pl
) > pid_count_available
) {
2646 pidlist_alloc(pl
, pid_count_available
);
2648 pidlist_set_active(pl
);
2650 /* filter pids into the pid_list */
2652 u_int pid_count
= 0;
2653 if (flags
& PROC_ALLPROCLIST
) {
2655 ALLPROC_FOREACH(p
) {
2656 /* ignore processes that are being forked */
2657 if (p
->p_stat
== SIDL
) {
2660 if ((filterfn
!= NULL
) && (filterfn(p
, filterarg
) == 0)) {
2663 pidlist_add_pid(pl
, proc_pid(p
));
2664 if (++pid_count
>= pid_count_available
) {
2670 if ((pid_count
< pid_count_available
) &&
2671 (flags
& PROC_ZOMBPROCLIST
)) {
2673 ZOMBPROC_FOREACH(p
) {
2674 if ((filterfn
!= NULL
) && (filterfn(p
, filterarg
) == 0)) {
2677 pidlist_add_pid(pl
, proc_pid(p
));
2678 if (++pid_count
>= pid_count_available
) {
2686 /* call callout on processes in the pid_list */
2688 const pidlist_entry_t
*pe
;
2689 SLIST_FOREACH(pe
, &(pl
->pl_head
), pe_link
) {
2690 for (u_int i
= 0; i
< pe
->pe_nused
; i
++) {
2691 const pid_t pid
= pe
->pe_pid
[i
];
2692 proc_t p
= proc_find(pid
);
2694 if ((flags
& PROC_NOWAITTRANS
) == 0) {
2695 proc_transwait(p
, 0);
2697 const int callout_ret
= callout(p
, arg
);
2699 switch (callout_ret
) {
2700 case PROC_RETURNED_DONE
:
2703 case PROC_CLAIMED_DONE
:
2712 panic("%s: callout =%d for pid %d",
2713 __func__
, callout_ret
, pid
);
2716 } else if (flags
& PROC_ZOMBPROCLIST
) {
2717 p
= proc_find_zombref(pid
);
2721 const int callout_ret
= callout(p
, arg
);
2723 switch (callout_ret
) {
2724 case PROC_RETURNED_DONE
:
2725 proc_drop_zombref(p
);
2727 case PROC_CLAIMED_DONE
:
2731 proc_drop_zombref(p
);
2736 panic("%s: callout =%d for zombie %d",
2737 __func__
, callout_ret
, pid
);
2749 proc_iterate_fn_t callout
,
2751 proc_iterate_fn_t filterfn
,
2756 assert(callout
!= NULL
);
2758 proc_shutdown_exitcount
= 0;
2764 ALLPROC_FOREACH(p
) {
2765 if ((filterfn
!= NULL
) && filterfn(p
, filterarg
) == 0) {
2768 p
= proc_ref_locked(p
);
2775 proc_transwait(p
, 0);
2776 (void)callout(p
, arg
);
2779 goto restart_foreach
;
2788 proc_iterate_fn_t callout
,
2791 pidlist_t pid_list
, *pl
= pidlist_init(&pid_list
);
2792 u_int pid_count_available
= 0;
2794 assert(parent
!= NULL
);
2795 assert(callout
!= NULL
);
2799 pid_count_available
= parent
->p_childrencnt
;
2800 if (pid_count_available
== 0) {
2804 if (pidlist_nalloc(pl
) > pid_count_available
) {
2809 pidlist_alloc(pl
, pid_count_available
);
2811 pidlist_set_active(pl
);
2813 u_int pid_count
= 0;
2815 PCHILDREN_FOREACH(parent
, p
) {
2816 if (p
->p_stat
== SIDL
) {
2819 pidlist_add_pid(pl
, proc_pid(p
));
2820 if (++pid_count
>= pid_count_available
) {
2827 const pidlist_entry_t
*pe
;
2828 SLIST_FOREACH(pe
, &(pl
->pl_head
), pe_link
) {
2829 for (u_int i
= 0; i
< pe
->pe_nused
; i
++) {
2830 const pid_t pid
= pe
->pe_pid
[i
];
2835 const int callout_ret
= callout(p
, arg
);
2837 switch (callout_ret
) {
2838 case PROC_RETURNED_DONE
:
2841 case PROC_CLAIMED_DONE
:
2850 panic("%s: callout =%d for pid %d",
2851 __func__
, callout_ret
, pid
);
2864 proc_iterate_fn_t callout
,
2866 proc_iterate_fn_t filterfn
,
2869 pidlist_t pid_list
, *pl
= pidlist_init(&pid_list
);
2870 u_int pid_count_available
= 0;
2872 assert(pgrp
!= NULL
);
2873 assert(callout
!= NULL
);
2877 pid_count_available
= pgrp
->pg_membercnt
;
2878 if (pid_count_available
== 0) {
2880 if (flags
& PGRP_DROPREF
) {
2885 if (pidlist_nalloc(pl
) > pid_count_available
) {
2890 pidlist_alloc(pl
, pid_count_available
);
2892 pidlist_set_active(pl
);
2894 const pid_t pgid
= pgrp
->pg_id
;
2895 u_int pid_count
= 0;
2897 PGMEMBERS_FOREACH(pgrp
, p
) {
2898 if ((filterfn
!= NULL
) && (filterfn(p
, filterarg
) == 0)) {
2901 pidlist_add_pid(pl
, proc_pid(p
));
2902 if (++pid_count
>= pid_count_available
) {
2909 if (flags
& PGRP_DROPREF
) {
2913 const pidlist_entry_t
*pe
;
2914 SLIST_FOREACH(pe
, &(pl
->pl_head
), pe_link
) {
2915 for (u_int i
= 0; i
< pe
->pe_nused
; i
++) {
2916 const pid_t pid
= pe
->pe_pid
[i
];
2918 continue; /* skip kernproc */
2924 if (p
->p_pgrpid
!= pgid
) {
2928 const int callout_ret
= callout(p
, arg
);
2930 switch (callout_ret
) {
2936 case PROC_RETURNED_DONE
:
2939 case PROC_CLAIMED_DONE
:
2943 panic("%s: callout =%d for pid %d",
2944 __func__
, callout_ret
, pid
);
2954 pgrp_add(struct pgrp
* pgrp
, struct proc
* parent
, struct proc
* child
)
2957 child
->p_pgrp
= pgrp
;
2958 child
->p_pgrpid
= pgrp
->pg_id
;
2959 child
->p_listflag
|= P_LIST_INPGRP
;
2961 * When pgrp is being freed , a process can still
2962 * request addition using setpgid from bash when
2963 * login is terminated (login cycler) return ESRCH
2964 * Safe to hold lock due to refcount on pgrp
2966 if ((pgrp
->pg_listflags
& (PGRP_FLAG_TERMINATE
| PGRP_FLAG_DEAD
)) == PGRP_FLAG_TERMINATE
) {
2967 pgrp
->pg_listflags
&= ~PGRP_FLAG_TERMINATE
;
2970 if ((pgrp
->pg_listflags
& PGRP_FLAG_DEAD
) == PGRP_FLAG_DEAD
) {
2971 panic("pgrp_add : pgrp is dead adding process");
2976 pgrp
->pg_membercnt
++;
2977 if (parent
!= PROC_NULL
) {
2978 LIST_INSERT_AFTER(parent
, child
, p_pglist
);
2980 LIST_INSERT_HEAD(&pgrp
->pg_members
, child
, p_pglist
);
2985 if (((pgrp
->pg_listflags
& (PGRP_FLAG_TERMINATE
| PGRP_FLAG_DEAD
)) == PGRP_FLAG_TERMINATE
) && (pgrp
->pg_membercnt
!= 0)) {
2986 pgrp
->pg_listflags
&= ~PGRP_FLAG_TERMINATE
;
2992 pgrp_remove(struct proc
* p
)
2999 #if __PROC_INTERNAL_DEBUG
3000 if ((p
->p_listflag
& P_LIST_INPGRP
) == 0) {
3001 panic("removing from pglist but no named ref\n");
3004 p
->p_pgrpid
= PGRPID_DEAD
;
3005 p
->p_listflag
&= ~P_LIST_INPGRP
;
3009 if (pg
== PGRP_NULL
) {
3010 panic("pgrp_remove: pg is NULL");
3015 if (pg
->pg_membercnt
< 0) {
3016 panic("pgprp: -ve membercnt pgprp:%p p:%p\n", pg
, p
);
3019 LIST_REMOVE(p
, p_pglist
);
3020 if (pg
->pg_members
.lh_first
== 0) {
3022 pgdelete_dropref(pg
);
3030 /* cannot use proc_pgrp as it maybe stalled */
3032 pgrp_replace(struct proc
* p
, struct pgrp
* newpg
)
3034 struct pgrp
* oldpg
;
3040 while ((p
->p_listflag
& P_LIST_PGRPTRANS
) == P_LIST_PGRPTRANS
) {
3041 p
->p_listflag
|= P_LIST_PGRPTRWAIT
;
3042 (void)msleep(&p
->p_pgrpid
, proc_list_mlock
, 0, "proc_pgrp", 0);
3045 p
->p_listflag
|= P_LIST_PGRPTRANS
;
3048 if (oldpg
== PGRP_NULL
) {
3049 panic("pgrp_replace: oldpg NULL");
3051 oldpg
->pg_refcount
++;
3052 #if __PROC_INTERNAL_DEBUG
3053 if ((p
->p_listflag
& P_LIST_INPGRP
) == 0) {
3054 panic("removing from pglist but no named ref\n");
3057 p
->p_pgrpid
= PGRPID_DEAD
;
3058 p
->p_listflag
&= ~P_LIST_INPGRP
;
3064 oldpg
->pg_membercnt
--;
3065 if (oldpg
->pg_membercnt
< 0) {
3066 panic("pgprp: -ve membercnt pgprp:%p p:%p\n", oldpg
, p
);
3068 LIST_REMOVE(p
, p_pglist
);
3069 if (oldpg
->pg_members
.lh_first
== 0) {
3071 pgdelete_dropref(oldpg
);
3079 p
->p_pgrpid
= newpg
->pg_id
;
3080 p
->p_listflag
|= P_LIST_INPGRP
;
3082 * When pgrp is being freed , a process can still
3083 * request addition using setpgid from bash when
3084 * login is terminated (login cycler) return ESRCH
3085 * Safe to hold lock due to refcount on pgrp
3087 if ((newpg
->pg_listflags
& (PGRP_FLAG_TERMINATE
| PGRP_FLAG_DEAD
)) == PGRP_FLAG_TERMINATE
) {
3088 newpg
->pg_listflags
&= ~PGRP_FLAG_TERMINATE
;
3091 if ((newpg
->pg_listflags
& PGRP_FLAG_DEAD
) == PGRP_FLAG_DEAD
) {
3092 panic("pgrp_add : pgrp is dead adding process");
3097 newpg
->pg_membercnt
++;
3098 LIST_INSERT_HEAD(&newpg
->pg_members
, p
, p_pglist
);
3102 if (((newpg
->pg_listflags
& (PGRP_FLAG_TERMINATE
| PGRP_FLAG_DEAD
)) == PGRP_FLAG_TERMINATE
) && (newpg
->pg_membercnt
!= 0)) {
3103 newpg
->pg_listflags
&= ~PGRP_FLAG_TERMINATE
;
3106 p
->p_listflag
&= ~P_LIST_PGRPTRANS
;
3107 if ((p
->p_listflag
& P_LIST_PGRPTRWAIT
) == P_LIST_PGRPTRWAIT
) {
3108 p
->p_listflag
&= ~P_LIST_PGRPTRWAIT
;
3109 wakeup(&p
->p_pgrpid
);
3115 pgrp_lock(struct pgrp
* pgrp
)
3117 lck_mtx_lock(&pgrp
->pg_mlock
);
3121 pgrp_unlock(struct pgrp
* pgrp
)
3123 lck_mtx_unlock(&pgrp
->pg_mlock
);
3127 session_lock(struct session
* sess
)
3129 lck_mtx_lock(&sess
->s_mlock
);
3134 session_unlock(struct session
* sess
)
3136 lck_mtx_unlock(&sess
->s_mlock
);
3144 if (p
== PROC_NULL
) {
3149 while ((p
->p_listflag
& P_LIST_PGRPTRANS
) == P_LIST_PGRPTRANS
) {
3150 p
->p_listflag
|= P_LIST_PGRPTRWAIT
;
3151 (void)msleep(&p
->p_pgrpid
, proc_list_mlock
, 0, "proc_pgrp", 0);
3156 assert(pgrp
!= NULL
);
3158 if (pgrp
!= PGRP_NULL
) {
3159 pgrp
->pg_refcount
++;
3160 if ((pgrp
->pg_listflags
& (PGRP_FLAG_TERMINATE
| PGRP_FLAG_DEAD
)) != 0) {
3161 panic("proc_pgrp: ref being povided for dead pgrp");
3171 tty_pgrp(struct tty
* tp
)
3173 struct pgrp
* pg
= PGRP_NULL
;
3178 if (pg
!= PGRP_NULL
) {
3179 if ((pg
->pg_listflags
& PGRP_FLAG_DEAD
) != 0) {
3180 panic("tty_pgrp: ref being povided for dead pgrp");
3190 proc_session(proc_t p
)
3192 struct session
* sess
= SESSION_NULL
;
3194 if (p
== PROC_NULL
) {
3195 return SESSION_NULL
;
3200 /* wait during transitions */
3201 while ((p
->p_listflag
& P_LIST_PGRPTRANS
) == P_LIST_PGRPTRANS
) {
3202 p
->p_listflag
|= P_LIST_PGRPTRWAIT
;
3203 (void)msleep(&p
->p_pgrpid
, proc_list_mlock
, 0, "proc_pgrp", 0);
3206 if ((p
->p_pgrp
!= PGRP_NULL
) && ((sess
= p
->p_pgrp
->pg_session
) != SESSION_NULL
)) {
3207 if ((sess
->s_listflags
& (S_LIST_TERM
| S_LIST_DEAD
)) != 0) {
3208 panic("proc_session:returning sesssion ref on terminating session");
3217 session_rele(struct session
*sess
)
3220 if (--sess
->s_count
== 0) {
3221 if ((sess
->s_listflags
& (S_LIST_TERM
| S_LIST_DEAD
)) != 0) {
3222 panic("session_rele: terminating already terminated session");
3224 sess
->s_listflags
|= S_LIST_TERM
;
3225 LIST_REMOVE(sess
, s_hash
);
3226 sess
->s_listflags
|= S_LIST_DEAD
;
3227 if (sess
->s_count
!= 0) {
3228 panic("session_rele: freeing session in use");
3231 lck_mtx_destroy(&sess
->s_mlock
, proc_mlock_grp
);
3232 FREE_ZONE(sess
, sizeof(struct session
), M_SESSION
);
3239 proc_transstart(proc_t p
, int locked
, int non_blocking
)
3244 while ((p
->p_lflag
& P_LINTRANSIT
) == P_LINTRANSIT
) {
3245 if (((p
->p_lflag
& P_LTRANSCOMMIT
) == P_LTRANSCOMMIT
) || non_blocking
) {
3251 p
->p_lflag
|= P_LTRANSWAIT
;
3252 msleep(&p
->p_lflag
, &p
->p_mlock
, 0, "proc_signstart", NULL
);
3254 p
->p_lflag
|= P_LINTRANSIT
;
3255 p
->p_transholder
= current_thread();
3263 proc_transcommit(proc_t p
, int locked
)
3269 assert((p
->p_lflag
& P_LINTRANSIT
) == P_LINTRANSIT
);
3270 assert(p
->p_transholder
== current_thread());
3271 p
->p_lflag
|= P_LTRANSCOMMIT
;
3273 if ((p
->p_lflag
& P_LTRANSWAIT
) == P_LTRANSWAIT
) {
3274 p
->p_lflag
&= ~P_LTRANSWAIT
;
3275 wakeup(&p
->p_lflag
);
3283 proc_transend(proc_t p
, int locked
)
3289 p
->p_lflag
&= ~(P_LINTRANSIT
| P_LTRANSCOMMIT
);
3290 p
->p_transholder
= NULL
;
3292 if ((p
->p_lflag
& P_LTRANSWAIT
) == P_LTRANSWAIT
) {
3293 p
->p_lflag
&= ~P_LTRANSWAIT
;
3294 wakeup(&p
->p_lflag
);
3302 proc_transwait(proc_t p
, int locked
)
3307 while ((p
->p_lflag
& P_LINTRANSIT
) == P_LINTRANSIT
) {
3308 if ((p
->p_lflag
& P_LTRANSCOMMIT
) == P_LTRANSCOMMIT
&& current_proc() == p
) {
3314 p
->p_lflag
|= P_LTRANSWAIT
;
3315 msleep(&p
->p_lflag
, &p
->p_mlock
, 0, "proc_signstart", NULL
);
3324 proc_klist_lock(void)
3326 lck_mtx_lock(proc_klist_mlock
);
3330 proc_klist_unlock(void)
3332 lck_mtx_unlock(proc_klist_mlock
);
3336 proc_knote(struct proc
* p
, long hint
)
3339 KNOTE(&p
->p_klist
, hint
);
3340 proc_klist_unlock();
3344 proc_knote_drain(struct proc
*p
)
3346 struct knote
*kn
= NULL
;
3349 * Clear the proc's klist to avoid references after the proc is reaped.
3352 while ((kn
= SLIST_FIRST(&p
->p_klist
))) {
3353 kn
->kn_proc
= PROC_NULL
;
3354 KNOTE_DETACH(&p
->p_klist
, kn
);
3356 proc_klist_unlock();
3360 proc_setregister(proc_t p
)
3363 p
->p_lflag
|= P_LREGISTER
;
3368 proc_resetregister(proc_t p
)
3371 p
->p_lflag
&= ~P_LREGISTER
;
3376 proc_pgrpid(proc_t p
)
3382 proc_sessionid(proc_t p
)
3385 struct session
* sessp
= proc_session(p
);
3387 if (sessp
!= SESSION_NULL
) {
3389 session_rele(sessp
);
3398 return current_proc()->p_pgrpid
;
3402 /* return control and action states */
3404 proc_getpcontrol(int pid
, int * pcontrolp
)
3409 if (p
== PROC_NULL
) {
3412 if (pcontrolp
!= NULL
) {
3413 *pcontrolp
= p
->p_pcaction
;
3421 proc_dopcontrol(proc_t p
)
3424 os_reason_t kill_reason
;
3428 pcontrol
= PROC_CONTROL_STATE(p
);
3430 if (PROC_ACTION_STATE(p
) == 0) {
3433 PROC_SETACTION_STATE(p
);
3435 printf("low swap: throttling pid %d (%s)\n", p
->p_pid
, p
->p_comm
);
3439 PROC_SETACTION_STATE(p
);
3441 printf("low swap: suspending pid %d (%s)\n", p
->p_pid
, p
->p_comm
);
3442 task_suspend(p
->task
);
3446 PROC_SETACTION_STATE(p
);
3448 printf("low swap: killing pid %d (%s)\n", p
->p_pid
, p
->p_comm
);
3449 kill_reason
= os_reason_create(OS_REASON_JETSAM
, JETSAM_REASON_LOWSWAP
);
3450 psignal_with_reason(p
, SIGKILL
, kill_reason
);
3460 return PROC_RETURNED
;
3465 * Resume a throttled or suspended process. This is an internal interface that's only
3466 * used by the user level code that presents the GUI when we run out of swap space and
3467 * hence is restricted to processes with superuser privileges.
3471 proc_resetpcontrol(int pid
)
3476 proc_t self
= current_proc();
3478 /* if the process has been validated to handle resource control or root is valid one */
3479 if (((self
->p_lflag
& P_LVMRSRCOWNER
) == 0) && (error
= suser(kauth_cred_get(), 0))) {
3484 if (p
== PROC_NULL
) {
3490 pcontrol
= PROC_CONTROL_STATE(p
);
3492 if (PROC_ACTION_STATE(p
) != 0) {
3495 PROC_RESETACTION_STATE(p
);
3497 printf("low swap: unthrottling pid %d (%s)\n", p
->p_pid
, p
->p_comm
);
3501 PROC_RESETACTION_STATE(p
);
3503 printf("low swap: resuming pid %d (%s)\n", p
->p_pid
, p
->p_comm
);
3504 task_resume(p
->task
);
3509 PROC_SETACTION_STATE(p
);
3511 printf("low swap: attempt to unkill pid %d (%s) ignored\n", p
->p_pid
, p
->p_comm
);
3527 struct no_paging_space
{
3528 uint64_t pcs_max_size
;
3529 uint64_t pcs_uniqueid
;
3532 uint64_t pcs_total_size
;
3534 uint64_t npcs_max_size
;
3535 uint64_t npcs_uniqueid
;
3537 int npcs_proc_count
;
3538 uint64_t npcs_total_size
;
3540 int apcs_proc_count
;
3541 uint64_t apcs_total_size
;
3546 proc_pcontrol_filter(proc_t p
, void *arg
)
3548 struct no_paging_space
*nps
;
3549 uint64_t compressed
;
3551 nps
= (struct no_paging_space
*)arg
;
3553 compressed
= get_task_compressed(p
->task
);
3555 if (PROC_CONTROL_STATE(p
)) {
3556 if (PROC_ACTION_STATE(p
) == 0) {
3557 if (compressed
> nps
->pcs_max_size
) {
3558 nps
->pcs_pid
= p
->p_pid
;
3559 nps
->pcs_uniqueid
= p
->p_uniqueid
;
3560 nps
->pcs_max_size
= compressed
;
3562 nps
->pcs_total_size
+= compressed
;
3563 nps
->pcs_proc_count
++;
3565 nps
->apcs_total_size
+= compressed
;
3566 nps
->apcs_proc_count
++;
3569 if (compressed
> nps
->npcs_max_size
) {
3570 nps
->npcs_pid
= p
->p_pid
;
3571 nps
->npcs_uniqueid
= p
->p_uniqueid
;
3572 nps
->npcs_max_size
= compressed
;
3574 nps
->npcs_total_size
+= compressed
;
3575 nps
->npcs_proc_count
++;
3582 proc_pcontrol_null(__unused proc_t p
, __unused
void *arg
)
3584 return PROC_RETURNED
;
3589 * Deal with the low on compressor pool space condition... this function
3590 * gets called when we are approaching the limits of the compressor pool or
3591 * we are unable to create a new swap file.
3592 * Since this eventually creates a memory deadlock situtation, we need to take action to free up
3593 * memory resources (both compressed and uncompressed) in order to prevent the system from hanging completely.
3594 * There are 2 categories of processes to deal with. Those that have an action
3595 * associated with them by the task itself and those that do not. Actionable
3596 * tasks can have one of three categories specified: ones that
3597 * can be killed immediately, ones that should be suspended, and ones that should
3598 * be throttled. Processes that do not have an action associated with them are normally
3599 * ignored unless they are utilizing such a large percentage of the compressor pool (currently 50%)
3600 * that only by killing them can we hope to put the system back into a usable state.
3603 #define NO_PAGING_SPACE_DEBUG 0
3605 extern uint64_t vm_compressor_pages_compressed(void);
3607 struct timeval last_no_space_action
= {.tv_sec
= 0, .tv_usec
= 0};
3609 #if DEVELOPMENT || DEBUG
3610 extern boolean_t kill_on_no_paging_space
;
3611 #endif /* DEVELOPMENT || DEBUG */
3613 #define MB_SIZE (1024 * 1024ULL)
3614 boolean_t
memorystatus_kill_on_VM_compressor_space_shortage(boolean_t
);
3616 extern int32_t max_kill_priority
;
3617 extern int memorystatus_get_proccnt_upto_priority(int32_t max_bucket_index
);
3620 no_paging_space_action()
3623 struct no_paging_space nps
;
3625 os_reason_t kill_reason
;
3628 * Throttle how often we come through here. Once every 5 seconds should be plenty.
3632 if (now
.tv_sec
<= last_no_space_action
.tv_sec
+ 5) {
3637 * Examine all processes and find the biggest (biggest is based on the number of pages this
3638 * task has in the compressor pool) that has been marked to have some action
3639 * taken when swap space runs out... we also find the biggest that hasn't been marked for
3642 * If the biggest non-actionable task is over the "dangerously big" threashold (currently 50% of
3643 * the total number of pages held by the compressor, we go ahead and kill it since no other task
3644 * can have any real effect on the situation. Otherwise, we go after the actionable process.
3646 bzero(&nps
, sizeof(nps
));
3648 proc_iterate(PROC_ALLPROCLIST
, proc_pcontrol_null
, (void *)NULL
, proc_pcontrol_filter
, (void *)&nps
);
3650 #if NO_PAGING_SPACE_DEBUG
3651 printf("low swap: npcs_proc_count = %d, npcs_total_size = %qd, npcs_max_size = %qd\n",
3652 nps
.npcs_proc_count
, nps
.npcs_total_size
, nps
.npcs_max_size
);
3653 printf("low swap: pcs_proc_count = %d, pcs_total_size = %qd, pcs_max_size = %qd\n",
3654 nps
.pcs_proc_count
, nps
.pcs_total_size
, nps
.pcs_max_size
);
3655 printf("low swap: apcs_proc_count = %d, apcs_total_size = %qd\n",
3656 nps
.apcs_proc_count
, nps
.apcs_total_size
);
3658 if (nps
.npcs_max_size
> (vm_compressor_pages_compressed() * 50) / 100) {
3660 * for now we'll knock out any task that has more then 50% of the pages
3661 * held by the compressor
3663 if ((p
= proc_find(nps
.npcs_pid
)) != PROC_NULL
) {
3664 if (nps
.npcs_uniqueid
== p
->p_uniqueid
) {
3666 * verify this is still the same process
3667 * in case the proc exited and the pid got reused while
3668 * we were finishing the proc_iterate and getting to this point
3670 last_no_space_action
= now
;
3672 printf("low swap: killing largest compressed process with pid %d (%s) and size %llu MB\n", p
->p_pid
, p
->p_comm
, (nps
.pcs_max_size
/ MB_SIZE
));
3673 kill_reason
= os_reason_create(OS_REASON_JETSAM
, JETSAM_REASON_LOWSWAP
);
3674 psignal_with_reason(p
, SIGKILL
, kill_reason
);
3686 * We have some processes within our jetsam bands of consideration and hence can be killed.
3687 * So we will invoke the memorystatus thread to go ahead and kill something.
3689 if (memorystatus_get_proccnt_upto_priority(max_kill_priority
) > 0) {
3690 last_no_space_action
= now
;
3691 memorystatus_kill_on_VM_compressor_space_shortage(TRUE
/* async */);
3696 * No eligible processes to kill. So let's suspend/kill the largest
3697 * process depending on its policy control specifications.
3700 if (nps
.pcs_max_size
> 0) {
3701 if ((p
= proc_find(nps
.pcs_pid
)) != PROC_NULL
) {
3702 if (nps
.pcs_uniqueid
== p
->p_uniqueid
) {
3704 * verify this is still the same process
3705 * in case the proc exited and the pid got reused while
3706 * we were finishing the proc_iterate and getting to this point
3708 last_no_space_action
= now
;
3720 last_no_space_action
= now
;
3722 printf("low swap: unable to find any eligible processes to take action on\n");
3728 proc_trace_log(__unused proc_t p
, struct proc_trace_log_args
*uap
, __unused
int *retval
)
3731 proc_t target_proc
= PROC_NULL
;
3732 pid_t target_pid
= uap
->pid
;
3733 uint64_t target_uniqueid
= uap
->uniqueid
;
3734 task_t target_task
= NULL
;
3736 if (priv_check_cred(kauth_cred_get(), PRIV_PROC_TRACE_INSPECT
, 0)) {
3740 target_proc
= proc_find(target_pid
);
3741 if (target_proc
!= PROC_NULL
) {
3742 if (target_uniqueid
!= proc_uniqueid(target_proc
)) {
3747 target_task
= proc_task(target_proc
);
3748 if (task_send_trace_memory(target_task
, target_pid
, target_uniqueid
)) {
3757 if (target_proc
!= PROC_NULL
) {
3758 proc_rele(target_proc
);
3763 #if VM_SCAN_FOR_SHADOW_CHAIN
3764 extern int vm_map_shadow_max(vm_map_t map
);
3765 int proc_shadow_max(void);
3767 proc_shadow_max(void)
3776 for (p
= allproc
.lh_first
; (p
!= 0); p
= p
->p_list
.le_next
) {
3777 if (p
->p_stat
== SIDL
) {
3784 map
= get_task_map(task
);
3788 retval
= vm_map_shadow_max(map
);
3796 #endif /* VM_SCAN_FOR_SHADOW_CHAIN */
3798 void proc_set_responsible_pid(proc_t target_proc
, pid_t responsible_pid
);
3800 proc_set_responsible_pid(proc_t target_proc
, pid_t responsible_pid
)
3802 if (target_proc
!= NULL
) {
3803 target_proc
->p_responsible_pid
= responsible_pid
;
3809 proc_chrooted(proc_t p
)
3815 retval
= (p
->p_fd
->fd_rdir
!= NULL
) ? 1 : 0;
3823 proc_send_synchronous_EXC_RESOURCE(proc_t p
)
3825 if (p
== PROC_NULL
) {
3829 /* Send sync EXC_RESOURCE if the process is traced */
3830 if (ISSET(p
->p_lflag
, P_LTRACED
)) {
3837 proc_get_syscall_filter_mask_size(int which
)
3839 if (which
== SYSCALL_MASK_UNIX
) {
3847 proc_set_syscall_filter_mask(proc_t p
, int which
, unsigned char *maskptr
, size_t masklen
)
3849 #if DEVELOPMENT || DEBUG
3850 if (syscallfilter_disable
) {
3851 printf("proc_set_syscall_filter_mask: attempt to set policy for pid %d, but disabled by boot-arg\n", proc_pid(p
));
3852 return KERN_SUCCESS
;
3854 #endif // DEVELOPMENT || DEBUG
3856 if (which
!= SYSCALL_MASK_UNIX
||
3857 (maskptr
!= NULL
&& masklen
!= nsysent
)) {
3861 p
->syscall_filter_mask
= maskptr
;
3863 return KERN_SUCCESS
;
3866 #ifdef CONFIG_32BIT_TELEMETRY
3868 proc_log_32bit_telemetry(proc_t p
)
3871 char signature_buf
[MAX_32BIT_EXEC_SIG_SIZE
] = { 0 };
3872 char * signature_cur_end
= &signature_buf
[0];
3873 char * signature_buf_end
= &signature_buf
[MAX_32BIT_EXEC_SIG_SIZE
- 1];
3874 int bytes_printed
= 0;
3876 const char * teamid
= NULL
;
3877 const char * identity
= NULL
;
3878 struct cs_blob
* csblob
= NULL
;
3883 * Get proc name and parent proc name; if the parent execs, we'll get a
3886 bytes_printed
= scnprintf(signature_cur_end
,
3887 signature_buf_end
- signature_cur_end
,
3888 "%s,%s,", p
->p_name
,
3889 (p
->p_pptr
? p
->p_pptr
->p_name
: ""));
3891 if (bytes_printed
> 0) {
3892 signature_cur_end
+= bytes_printed
;
3897 /* Get developer info. */
3898 vnode_t v
= proc_getexecutablevnode(p
);
3901 csblob
= csvnode_get_blob(v
, 0);
3904 teamid
= csblob_get_teamid(csblob
);
3905 identity
= csblob_get_identity(csblob
);
3909 if (teamid
== NULL
) {
3913 if (identity
== NULL
) {
3917 bytes_printed
= scnprintf(signature_cur_end
,
3918 signature_buf_end
- signature_cur_end
,
3919 "%s,%s", teamid
, identity
);
3921 if (bytes_printed
> 0) {
3922 signature_cur_end
+= bytes_printed
;
3930 * We may want to rate limit here, although the SUMMARIZE key should
3931 * help us aggregate events in userspace.
3935 kern_asl_msg(LOG_DEBUG
, "messagetracer", 3,
3936 /* 0 */ "com.apple.message.domain", "com.apple.kernel.32bit_exec",
3937 /* 1 */ "com.apple.message.signature", signature_buf
,
3938 /* 2 */ "com.apple.message.summarize", "YES",
3941 #endif /* CONFIG_32BIT_TELEMETRY */