xref: /xnu-8792.81.2/libsyscall/wrappers/libproc/libproc.h (revision 19c3b8c28c31cb8130e034cfb5df6bf9ba342d90)
1*19c3b8c2SApple OSS Distributions /*
2*19c3b8c2SApple OSS Distributions  * Copyright (c) 2006, 2007, 2010 Apple Inc. All rights reserved.
3*19c3b8c2SApple OSS Distributions  *
4*19c3b8c2SApple OSS Distributions  * @APPLE_LICENSE_HEADER_START@
5*19c3b8c2SApple OSS Distributions  *
6*19c3b8c2SApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*19c3b8c2SApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*19c3b8c2SApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*19c3b8c2SApple OSS Distributions  * compliance with the License. Please obtain a copy of the License at
10*19c3b8c2SApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this
11*19c3b8c2SApple OSS Distributions  * file.
12*19c3b8c2SApple OSS Distributions  *
13*19c3b8c2SApple OSS Distributions  * The Original Code and all software distributed under the License are
14*19c3b8c2SApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
15*19c3b8c2SApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
16*19c3b8c2SApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
17*19c3b8c2SApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
18*19c3b8c2SApple OSS Distributions  * Please see the License for the specific language governing rights and
19*19c3b8c2SApple OSS Distributions  * limitations under the License.
20*19c3b8c2SApple OSS Distributions  *
21*19c3b8c2SApple OSS Distributions  * @APPLE_LICENSE_HEADER_END@
22*19c3b8c2SApple OSS Distributions  */
23*19c3b8c2SApple OSS Distributions #ifndef _LIBPROC_H_
24*19c3b8c2SApple OSS Distributions #define _LIBPROC_H_
25*19c3b8c2SApple OSS Distributions 
26*19c3b8c2SApple OSS Distributions #include <sys/cdefs.h>
27*19c3b8c2SApple OSS Distributions #include <sys/param.h>
28*19c3b8c2SApple OSS Distributions #include <sys/types.h>
29*19c3b8c2SApple OSS Distributions #include <sys/stat.h>
30*19c3b8c2SApple OSS Distributions #include <sys/mount.h>
31*19c3b8c2SApple OSS Distributions #include <sys/resource.h>
32*19c3b8c2SApple OSS Distributions #include <stdint.h>
33*19c3b8c2SApple OSS Distributions #include <stdbool.h>
34*19c3b8c2SApple OSS Distributions #include <mach/message.h> /* for audit_token_t */
35*19c3b8c2SApple OSS Distributions 
36*19c3b8c2SApple OSS Distributions #include <sys/proc_info.h>
37*19c3b8c2SApple OSS Distributions 
38*19c3b8c2SApple OSS Distributions #include <Availability.h>
39*19c3b8c2SApple OSS Distributions #include <os/availability.h>
40*19c3b8c2SApple OSS Distributions 
41*19c3b8c2SApple OSS Distributions /*
42*19c3b8c2SApple OSS Distributions  * This header file contains private interfaces to obtain process information.
43*19c3b8c2SApple OSS Distributions  * These interfaces are subject to change in future releases.
44*19c3b8c2SApple OSS Distributions  */
45*19c3b8c2SApple OSS Distributions 
46*19c3b8c2SApple OSS Distributions /*!
47*19c3b8c2SApple OSS Distributions  *       @define PROC_LISTPIDSPATH_PATH_IS_VOLUME
48*19c3b8c2SApple OSS Distributions  *       @discussion This flag indicates that all processes that hold open
49*19c3b8c2SApple OSS Distributions  *               file references on the volume associated with the specified
50*19c3b8c2SApple OSS Distributions  *               path should be returned.
51*19c3b8c2SApple OSS Distributions  */
52*19c3b8c2SApple OSS Distributions #define PROC_LISTPIDSPATH_PATH_IS_VOLUME        1
53*19c3b8c2SApple OSS Distributions 
54*19c3b8c2SApple OSS Distributions 
55*19c3b8c2SApple OSS Distributions /*!
56*19c3b8c2SApple OSS Distributions  *       @define PROC_LISTPIDSPATH_EXCLUDE_EVTONLY
57*19c3b8c2SApple OSS Distributions  *       @discussion This flag indicates that file references that were opened
58*19c3b8c2SApple OSS Distributions  *               with the O_EVTONLY flag should be excluded from the matching
59*19c3b8c2SApple OSS Distributions  *               criteria.
60*19c3b8c2SApple OSS Distributions  */
61*19c3b8c2SApple OSS Distributions #define PROC_LISTPIDSPATH_EXCLUDE_EVTONLY       2
62*19c3b8c2SApple OSS Distributions 
63*19c3b8c2SApple OSS Distributions __BEGIN_DECLS
64*19c3b8c2SApple OSS Distributions 
65*19c3b8c2SApple OSS Distributions 
66*19c3b8c2SApple OSS Distributions /*!
67*19c3b8c2SApple OSS Distributions  *       @function proc_listpidspath
68*19c3b8c2SApple OSS Distributions  *       @discussion A function which will search through the current
69*19c3b8c2SApple OSS Distributions  *               processes looking for open file references which match
70*19c3b8c2SApple OSS Distributions  *               a specified path or volume.
71*19c3b8c2SApple OSS Distributions  *       @param type types of processes to be searched (see proc_listpids)
72*19c3b8c2SApple OSS Distributions  *       @param typeinfo adjunct information for type
73*19c3b8c2SApple OSS Distributions  *       @param path file or volume path
74*19c3b8c2SApple OSS Distributions  *       @param pathflags flags to control which files should be considered
75*19c3b8c2SApple OSS Distributions  *               during the process search.
76*19c3b8c2SApple OSS Distributions  *       @param buffer a C array of int-sized values to be filled with
77*19c3b8c2SApple OSS Distributions  *               process identifiers that hold an open file reference
78*19c3b8c2SApple OSS Distributions  *               matching the specified path or volume.  Pass NULL to
79*19c3b8c2SApple OSS Distributions  *               obtain the minimum buffer size needed to hold the
80*19c3b8c2SApple OSS Distributions  *               currently active processes.
81*19c3b8c2SApple OSS Distributions  *       @param buffersize the size (in bytes) of the provided buffer.
82*19c3b8c2SApple OSS Distributions  *       @result the number of bytes of data returned in the provided buffer;
83*19c3b8c2SApple OSS Distributions  *               -1 if an error was encountered;
84*19c3b8c2SApple OSS Distributions  */
85*19c3b8c2SApple OSS Distributions int     proc_listpidspath(uint32_t      type,
86*19c3b8c2SApple OSS Distributions     uint32_t      typeinfo,
87*19c3b8c2SApple OSS Distributions     const char    *path,
88*19c3b8c2SApple OSS Distributions     uint32_t      pathflags,
89*19c3b8c2SApple OSS Distributions     void          *buffer,
90*19c3b8c2SApple OSS Distributions     int           buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
91*19c3b8c2SApple OSS Distributions 
92*19c3b8c2SApple OSS Distributions int proc_listpids(uint32_t type, uint32_t typeinfo, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
93*19c3b8c2SApple OSS Distributions int proc_listallpids(void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1);
94*19c3b8c2SApple OSS Distributions int proc_listpgrppids(pid_t pgrpid, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1);
95*19c3b8c2SApple OSS Distributions int proc_listchildpids(pid_t ppid, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_1);
96*19c3b8c2SApple OSS Distributions int proc_pidinfo(int pid, int flavor, uint64_t arg, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
97*19c3b8c2SApple OSS Distributions int proc_pidfdinfo(int pid, int fd, int flavor, void * buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
98*19c3b8c2SApple OSS Distributions int proc_pidfileportinfo(int pid, uint32_t fileport, int flavor, void *buffer, int buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_7, __IPHONE_4_3);
99*19c3b8c2SApple OSS Distributions int proc_name(int pid, void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
100*19c3b8c2SApple OSS Distributions int proc_regionfilename(int pid, uint64_t address, void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
101*19c3b8c2SApple OSS Distributions int proc_kmsgbuf(void * buffer, uint32_t buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
102*19c3b8c2SApple OSS Distributions int proc_pidpath(int pid, void * buffer, uint32_t  buffersize) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
103*19c3b8c2SApple OSS Distributions int proc_pidpath_audittoken(audit_token_t *audittoken, void * buffer, uint32_t  buffersize) API_AVAILABLE(macos(10.16), ios(14.0), watchos(7.0), tvos(14.0));
104*19c3b8c2SApple OSS Distributions int proc_libversion(int *major, int * minor) __OSX_AVAILABLE_STARTING(__MAC_10_5, __IPHONE_2_0);
105*19c3b8c2SApple OSS Distributions 
106*19c3b8c2SApple OSS Distributions /*
107*19c3b8c2SApple OSS Distributions  * Return resource usage information for the given pid, which can be a live process or a zombie.
108*19c3b8c2SApple OSS Distributions  *
109*19c3b8c2SApple OSS Distributions  * Returns 0 on success; or -1 on failure, with errno set to indicate the specific error.
110*19c3b8c2SApple OSS Distributions  */
111*19c3b8c2SApple OSS Distributions int proc_pid_rusage(int pid, int flavor, rusage_info_t *buffer) __OSX_AVAILABLE_STARTING(__MAC_10_9, __IPHONE_7_0);
112*19c3b8c2SApple OSS Distributions 
113*19c3b8c2SApple OSS Distributions /*
114*19c3b8c2SApple OSS Distributions  * A process can use the following api to set its own process control
115*19c3b8c2SApple OSS Distributions  * state on resoure starvation. The argument can have one of the PROC_SETPC_XX values
116*19c3b8c2SApple OSS Distributions  */
117*19c3b8c2SApple OSS Distributions #define PROC_SETPC_NONE         0
118*19c3b8c2SApple OSS Distributions #define PROC_SETPC_THROTTLEMEM  1
119*19c3b8c2SApple OSS Distributions #define PROC_SETPC_SUSPEND      2
120*19c3b8c2SApple OSS Distributions #define PROC_SETPC_TERMINATE    3
121*19c3b8c2SApple OSS Distributions 
122*19c3b8c2SApple OSS Distributions int proc_setpcontrol(const int control) __OSX_AVAILABLE_STARTING(__MAC_10_6, __IPHONE_3_2);
123*19c3b8c2SApple OSS Distributions int proc_setpcontrol(const int control);
124*19c3b8c2SApple OSS Distributions 
125*19c3b8c2SApple OSS Distributions int proc_track_dirty(pid_t pid, uint32_t flags);
126*19c3b8c2SApple OSS Distributions int proc_set_dirty(pid_t pid, bool dirty);
127*19c3b8c2SApple OSS Distributions int proc_get_dirty(pid_t pid, uint32_t *flags);
128*19c3b8c2SApple OSS Distributions int proc_clear_dirty(pid_t pid, uint32_t flags);
129*19c3b8c2SApple OSS Distributions 
130*19c3b8c2SApple OSS Distributions int proc_terminate(pid_t pid, int *sig);
131*19c3b8c2SApple OSS Distributions int proc_terminate_all_rsr(int sig);
132*19c3b8c2SApple OSS Distributions 
133*19c3b8c2SApple OSS Distributions /*
134*19c3b8c2SApple OSS Distributions  * NO_SMT means that on an SMT CPU, this thread must be scheduled alone,
135*19c3b8c2SApple OSS Distributions  * with the paired CPU idle.
136*19c3b8c2SApple OSS Distributions  *
137*19c3b8c2SApple OSS Distributions  * Set NO_SMT on the current proc (all existing and future threads)
138*19c3b8c2SApple OSS Distributions  * This attribute is inherited on fork and exec
139*19c3b8c2SApple OSS Distributions  */
140*19c3b8c2SApple OSS Distributions int proc_set_no_smt(void) __API_AVAILABLE(macos(10.16));
141*19c3b8c2SApple OSS Distributions 
142*19c3b8c2SApple OSS Distributions /* Set NO_SMT on the current thread */
143*19c3b8c2SApple OSS Distributions int proc_setthread_no_smt(void) __API_AVAILABLE(macos(10.16));
144*19c3b8c2SApple OSS Distributions 
145*19c3b8c2SApple OSS Distributions /*
146*19c3b8c2SApple OSS Distributions  * CPU Security Mitigation APIs
147*19c3b8c2SApple OSS Distributions  *
148*19c3b8c2SApple OSS Distributions  * Set CPU security mitigation on the current proc (all existing and future threads)
149*19c3b8c2SApple OSS Distributions  * This attribute is inherited on fork and exec
150*19c3b8c2SApple OSS Distributions  */
151*19c3b8c2SApple OSS Distributions int proc_set_csm(uint32_t flags) __API_AVAILABLE(macos(10.16));
152*19c3b8c2SApple OSS Distributions 
153*19c3b8c2SApple OSS Distributions /* Set CPU security mitigation on the current thread */
154*19c3b8c2SApple OSS Distributions int proc_setthread_csm(uint32_t flags) __API_AVAILABLE(macos(10.16));
155*19c3b8c2SApple OSS Distributions 
156*19c3b8c2SApple OSS Distributions /*
157*19c3b8c2SApple OSS Distributions  * flags for CPU Security Mitigation APIs
158*19c3b8c2SApple OSS Distributions  * PROC_CSM_ALL should be used in most cases,
159*19c3b8c2SApple OSS Distributions  * the individual flags are provided only for performance evaluation etc
160*19c3b8c2SApple OSS Distributions  */
161*19c3b8c2SApple OSS Distributions #define PROC_CSM_ALL         0x0001  /* Set all available mitigations */
162*19c3b8c2SApple OSS Distributions #define PROC_CSM_NOSMT       0x0002  /* Set NO_SMT - see above */
163*19c3b8c2SApple OSS Distributions #define PROC_CSM_TECS        0x0004  /* Execute VERW on every return to user mode */
164*19c3b8c2SApple OSS Distributions 
165*19c3b8c2SApple OSS Distributions int proc_udata_info(int pid, int flavor, void *buffer, int buffersize);
166*19c3b8c2SApple OSS Distributions 
167*19c3b8c2SApple OSS Distributions #if __has_include(<libproc_private.h>)
168*19c3b8c2SApple OSS Distributions #include <libproc_private.h>
169*19c3b8c2SApple OSS Distributions #endif
170*19c3b8c2SApple OSS Distributions 
171*19c3b8c2SApple OSS Distributions __END_DECLS
172*19c3b8c2SApple OSS Distributions 
173*19c3b8c2SApple OSS Distributions #endif /*_LIBPROC_H_ */
174