Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 | /* * Copyright (c) 2021 Apple Inc. All rights reserved. * * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ * * This file contains Original Code and/or Modifications of Original Code * as defined in and that are subject to the Apple Public Source License * Version 2.0 (the 'License'). You may not use this file except in * compliance with the License. The rights granted to you under the License * may not be used to create, or enable the creation or redistribution of, * unlawful or unlicensed copies of an Apple operating system, or to * circumvent, violate, or enable the circumvention or violation of, any * terms of an Apple operating system software license agreement. * * Please obtain a copy of the License at * http://www.opensource.apple.com/apsl/ and read it before using this file. * * The Original Code and all software distributed under the License are * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. * Please see the License for the specific language governing rights and * limitations under the License. * * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ */ #ifndef _SYS_PROC_RO_H_ #define _SYS_PROC_RO_H_ #include <mach/task_info.h> #include <stdint.h> #include <sys/_types/_pid_t.h> #include <sys/cdefs.h> #include <kern/smr_types.h> __BEGIN_DECLS __ASSUME_PTR_ABI_SINGLE_BEGIN #pragma GCC visibility push(hidden) struct proc; struct task; struct ucred; struct proc_platform_ro_data { uint32_t p_platform; uint32_t p_min_sdk; uint32_t p_sdk; }; struct task_token_ro_data { security_token_t sec_token; audit_token_t audit_token; }; struct task_filter_ro_data { uint8_t *__unsafe_indexable mach_trap_filter_mask; /* Mach trap filter bitmask (len: mach_trap_count bits) */ uint8_t *__unsafe_indexable mach_kobj_filter_mask; /* Mach kobject filter bitmask (len: mach_kobj_count bits) */ }; /*! * @struct proc_ro * * @brief * Store read-only data associated to a task and/or proc * * @discussion * The lifetime of a @c proc_ro structure is 1:1 with that * of a @c proc_t or a @c task_t. @c proc_t and @c task_t * point to the same @c proc_ro, except for corpses which * have an invalid and uninitialized @c proc_t, and the * proc_data field is uninitalized. */ struct proc_ro { struct proc *pr_proc; struct task *pr_task; __xnu_struct_group(proc_ro_data, proc_data, { uint64_t p_uniqueid; /* process unique ID - incremented on fork/spawn/vfork, remains same across exec. */ int p_idversion; /* version of process identity */ pid_t p_orig_ppid; /* process's original parent pid, doesn't change if reparented */ int p_orig_ppidversion; /* process's original parent pid version, doesn't change if reparented */ uint32_t p_csflags; SMR_POINTER(struct ucred *) p_ucred; /* Process owner's identity. (PUCL) */ uint8_t *__unsafe_indexable syscall_filter_mask; /* syscall filter bitmask (length: nsysent bits) */ struct proc_platform_ro_data p_platform_data; }); __xnu_struct_group(task_ro_data, task_data, { /* Task security and audit tokens */ struct task_token_ro_data task_tokens; #ifdef CONFIG_MACF struct task_filter_ro_data task_filters; #endif uint32_t t_flags_ro; /* RO-protected task flags (see osfmk/kern/task.h) */ task_control_port_options_t task_control_port_options; }); }; typedef const struct proc_ro_data *proc_ro_data_t; typedef const struct task_ro_data *task_ro_data_t; typedef struct proc_ro *proc_ro_t; extern proc_ro_t proc_ro_alloc(struct proc *p, proc_ro_data_t p_data, struct task *t, task_ro_data_t t_data); extern proc_ro_t proc_ro_ref_task(proc_ro_t pr, struct task *t, task_ro_data_t t_data); extern void proc_ro_erase_task(proc_ro_t pr); extern proc_ro_t proc_get_ro(struct proc *p) __pure2; extern proc_ro_t task_get_ro(struct task *t) __pure2; extern struct task *proc_ro_task(proc_ro_t pr) __pure2; #pragma GCC visibility pop __ASSUME_PTR_ABI_SINGLE_END __END_DECLS #endif /* _SYS_PROC_RO_H_ */ |