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