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