xref: /xnu-10002.61.3/bsd/sys/kern_debug.h (revision 0f4c859e951fba394238ab619495c4e1d54d0f34)
1*0f4c859eSApple OSS Distributions /*
2*0f4c859eSApple OSS Distributions  * Copyright (c) 2021 Apple Computer, Inc. All rights reserved.
3*0f4c859eSApple OSS Distributions  *
4*0f4c859eSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*0f4c859eSApple OSS Distributions  *
6*0f4c859eSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*0f4c859eSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*0f4c859eSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*0f4c859eSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*0f4c859eSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*0f4c859eSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*0f4c859eSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*0f4c859eSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*0f4c859eSApple OSS Distributions  *
15*0f4c859eSApple OSS Distributions  * Please obtain a copy of the License at
16*0f4c859eSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*0f4c859eSApple OSS Distributions  *
18*0f4c859eSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*0f4c859eSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*0f4c859eSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*0f4c859eSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*0f4c859eSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*0f4c859eSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*0f4c859eSApple OSS Distributions  * limitations under the License.
25*0f4c859eSApple OSS Distributions  *
26*0f4c859eSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*0f4c859eSApple OSS Distributions  */
28*0f4c859eSApple OSS Distributions /*
29*0f4c859eSApple OSS Distributions  * @OSF_COPYRIGHT@
30*0f4c859eSApple OSS Distributions  */
31*0f4c859eSApple OSS Distributions 
32*0f4c859eSApple OSS Distributions #ifndef _SYS_KERN_DEBUG_H_
33*0f4c859eSApple OSS Distributions #define _SYS_KERN_DEBUG_H_
34*0f4c859eSApple OSS Distributions 
35*0f4c859eSApple OSS Distributions #include <mach/mach_types.h>
36*0f4c859eSApple OSS Distributions 
37*0f4c859eSApple OSS Distributions #include <sys/types.h>
38*0f4c859eSApple OSS Distributions 
39*0f4c859eSApple OSS Distributions __BEGIN_DECLS
40*0f4c859eSApple OSS Distributions 
41*0f4c859eSApple OSS Distributions /*
42*0f4c859eSApple OSS Distributions  * A selector is just made of an index into syscall_rejection_masks,
43*0f4c859eSApple OSS Distributions  * with the exception of the highest bit, which indicates whether the
44*0f4c859eSApple OSS Distributions  * mask is to be added as an "allow" mask or a "deny" mask.
45*0f4c859eSApple OSS Distributions  */
46*0f4c859eSApple OSS Distributions typedef uint8_t syscall_rejection_selector_t;
47*0f4c859eSApple OSS Distributions 
48*0f4c859eSApple OSS Distributions __END_DECLS
49*0f4c859eSApple OSS Distributions 
50*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_IS_ALLOW_MASK (1 << 6)
51*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_NON_MASK_BITS 1
52*0f4c859eSApple OSS Distributions 
53*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_SELECTOR_BITS 7
54*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_SELECTOR_MASK ((1 << SYSCALL_REJECTION_SELECTOR_BITS) - 1)
55*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_SELECTOR_MASK_COUNT (1 << (SYSCALL_REJECTION_SELECTOR_BITS-SYSCALL_REJECTION_NON_MASK_BITS))
56*0f4c859eSApple OSS Distributions 
57*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_INDEX_MASK       (SYSCALL_REJECTION_SELECTOR_MASK & ~(syscall_rejection_selector_t)(SYSCALL_REJECTION_IS_ALLOW_MASK))
58*0f4c859eSApple OSS Distributions 
59*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_ALLOW(sc)     ((sc) | SYSCALL_REJECTION_IS_ALLOW_MASK)
60*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_DENY(sc)      (sc)
61*0f4c859eSApple OSS Distributions 
62*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_NULL          0
63*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_ALL           1
64*0f4c859eSApple OSS Distributions 
65*0f4c859eSApple OSS Distributions //// Flags for debug_syscall_reject_config
66*0f4c859eSApple OSS Distributions 
67*0f4c859eSApple OSS Distributions /*
68*0f4c859eSApple OSS Distributions  * default (no special behavior)
69*0f4c859eSApple OSS Distributions  */
70*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_FLAGS_DEFAULT 0
71*0f4c859eSApple OSS Distributions 
72*0f4c859eSApple OSS Distributions /*
73*0f4c859eSApple OSS Distributions  * force fatal: Hitting a denied syscall in this thread will always go
74*0f4c859eSApple OSS Distributions  * the fatal path, no matter what the global mode is set to.
75*0f4c859eSApple OSS Distributions  */
76*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_FLAGS_FORCE_FATAL 1
77*0f4c859eSApple OSS Distributions 
78*0f4c859eSApple OSS Distributions /*
79*0f4c859eSApple OSS Distributions  * once: Hitting a denied syscall or mach trap will be remembered for
80*0f4c859eSApple OSS Distributions  * the rest of the lifetime of this thread, and iff the once flag is
81*0f4c859eSApple OSS Distributions  * currently set, such a remembered system call/mach trap will never hit
82*0f4c859eSApple OSS Distributions  * again. (Note: This means that by removing the ONCE flag, all system
83*0f4c859eSApple OSS Distributions  * calls/mach traps will hit again).
84*0f4c859eSApple OSS Distributions  */
85*0f4c859eSApple OSS Distributions #define SYSCALL_REJECTION_FLAGS_ONCE           2
86*0f4c859eSApple OSS Distributions 
87*0f4c859eSApple OSS Distributions #ifndef KERNEL
88*0f4c859eSApple OSS Distributions 
89*0f4c859eSApple OSS Distributions __BEGIN_DECLS
90*0f4c859eSApple OSS Distributions 
91*0f4c859eSApple OSS Distributions /* Request that the syscall rejection mask of the current thread be changed to the
92*0f4c859eSApple OSS Distributions  * one specified by the list of selectors provided, e.g.
93*0f4c859eSApple OSS Distributions  * syscall_rejection_selector_t selectors[] =
94*0f4c859eSApple OSS Distributions  *     [ SYSCALL_REJECTION_DENY(SYSCALL_REJECTION_ALL),
95*0f4c859eSApple OSS Distributions  *       SYSCALL_REJECTION_ALLOW(MY_SELECTOR) ];
96*0f4c859eSApple OSS Distributions  * ret = debug_syscall_reject_config(selectors, countof(selectors), SYSCALL_REJECTION_FLAGS_DEFAULT);
97*0f4c859eSApple OSS Distributions  */
98*0f4c859eSApple OSS Distributions 
99*0f4c859eSApple OSS Distributions int debug_syscall_reject_config(const syscall_rejection_selector_t *selectors, size_t len, uint64_t flags);
100*0f4c859eSApple OSS Distributions 
101*0f4c859eSApple OSS Distributions /* Compatibility with old interface. */
102*0f4c859eSApple OSS Distributions int debug_syscall_reject(const syscall_rejection_selector_t *selectors, size_t len);
103*0f4c859eSApple OSS Distributions 
104*0f4c859eSApple OSS Distributions __END_DECLS
105*0f4c859eSApple OSS Distributions 
106*0f4c859eSApple OSS Distributions #else /* KERNEL */
107*0f4c859eSApple OSS Distributions 
108*0f4c859eSApple OSS Distributions #include <stdbool.h>
109*0f4c859eSApple OSS Distributions 
110*0f4c859eSApple OSS Distributions #include <kern/bits.h>
111*0f4c859eSApple OSS Distributions 
112*0f4c859eSApple OSS Distributions #include <sys/sysproto.h>
113*0f4c859eSApple OSS Distributions 
114*0f4c859eSApple OSS Distributions __BEGIN_DECLS
115*0f4c859eSApple OSS Distributions 
116*0f4c859eSApple OSS Distributions typedef bitmap_t *syscall_rejection_mask_t;
117*0f4c859eSApple OSS Distributions 
118*0f4c859eSApple OSS Distributions int sys_debug_syscall_reject_config(struct proc *p, struct debug_syscall_reject_config_args *args, int *ret);
119*0f4c859eSApple OSS Distributions 
120*0f4c859eSApple OSS Distributions int debug_syscall_reject(struct proc *p, struct debug_syscall_reject_args *args, int *ret);
121*0f4c859eSApple OSS Distributions 
122*0f4c859eSApple OSS Distributions bool debug_syscall_rejection_handle(int syscall_mach_trap_number);
123*0f4c859eSApple OSS Distributions 
124*0f4c859eSApple OSS Distributions void reset_debug_syscall_rejection_mode(void);
125*0f4c859eSApple OSS Distributions 
126*0f4c859eSApple OSS Distributions void rejected_syscall_guard_ast(thread_t thread, mach_exception_data_type_t code, mach_exception_data_type_t subcode);
127*0f4c859eSApple OSS Distributions 
128*0f4c859eSApple OSS Distributions extern int debug_syscall_rejection_mode;
129*0f4c859eSApple OSS Distributions 
130*0f4c859eSApple OSS Distributions __END_DECLS
131*0f4c859eSApple OSS Distributions 
132*0f4c859eSApple OSS Distributions #endif /* KERNEL */
133*0f4c859eSApple OSS Distributions 
134*0f4c859eSApple OSS Distributions #endif  /* _SYS_KERN_DEBUG_H_ */
135