xref: /xnu-11215.1.10/libsyscall/wrappers/_libkernel_init.h (revision 8d741a5de7ff4191bf97d57b9f54c2f6d4a15585)
1*8d741a5dSApple OSS Distributions /*
2*8d741a5dSApple OSS Distributions  * Copyright (c) 2010-2014 Apple Inc. All rights reserved.
3*8d741a5dSApple OSS Distributions  *
4*8d741a5dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
5*8d741a5dSApple OSS Distributions  *
6*8d741a5dSApple OSS Distributions  * This file contains Original Code and/or Modifications of Original Code
7*8d741a5dSApple OSS Distributions  * as defined in and that are subject to the Apple Public Source License
8*8d741a5dSApple OSS Distributions  * Version 2.0 (the 'License'). You may not use this file except in
9*8d741a5dSApple OSS Distributions  * compliance with the License. The rights granted to you under the License
10*8d741a5dSApple OSS Distributions  * may not be used to create, or enable the creation or redistribution of,
11*8d741a5dSApple OSS Distributions  * unlawful or unlicensed copies of an Apple operating system, or to
12*8d741a5dSApple OSS Distributions  * circumvent, violate, or enable the circumvention or violation of, any
13*8d741a5dSApple OSS Distributions  * terms of an Apple operating system software license agreement.
14*8d741a5dSApple OSS Distributions  *
15*8d741a5dSApple OSS Distributions  * Please obtain a copy of the License at
16*8d741a5dSApple OSS Distributions  * http://www.opensource.apple.com/apsl/ and read it before using this file.
17*8d741a5dSApple OSS Distributions  *
18*8d741a5dSApple OSS Distributions  * The Original Code and all software distributed under the License are
19*8d741a5dSApple OSS Distributions  * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20*8d741a5dSApple OSS Distributions  * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21*8d741a5dSApple OSS Distributions  * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22*8d741a5dSApple OSS Distributions  * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23*8d741a5dSApple OSS Distributions  * Please see the License for the specific language governing rights and
24*8d741a5dSApple OSS Distributions  * limitations under the License.
25*8d741a5dSApple OSS Distributions  *
26*8d741a5dSApple OSS Distributions  * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27*8d741a5dSApple OSS Distributions  */
28*8d741a5dSApple OSS Distributions 
29*8d741a5dSApple OSS Distributions #ifndef __LIBKERNEL_INIT_H
30*8d741a5dSApple OSS Distributions #define __LIBKERNEL_INIT_H
31*8d741a5dSApple OSS Distributions 
32*8d741a5dSApple OSS Distributions #include <ptrauth.h>
33*8d741a5dSApple OSS Distributions #include <stdbool.h>
34*8d741a5dSApple OSS Distributions #include <sys/types.h>
35*8d741a5dSApple OSS Distributions #include <mach/mach.h>
36*8d741a5dSApple OSS Distributions #include <mach/message.h>
37*8d741a5dSApple OSS Distributions #include <mach/mach_types.h>
38*8d741a5dSApple OSS Distributions 
39*8d741a5dSApple OSS Distributions #ifndef __OS_VOUCHER_PRIVATE__
40*8d741a5dSApple OSS Distributions // We cannot include the actual os/voucher_private.h definition of voucher_t
41*8d741a5dSApple OSS Distributions // here, as that also marks the voucher_XXX functions as exported, which causes
42*8d741a5dSApple OSS Distributions // a compile error when we attempt to mark them hidden in the .c file.
43*8d741a5dSApple OSS Distributions //
44*8d741a5dSApple OSS Distributions // The Libsystem init.c file does include os/voucher_private.h though, as well
45*8d741a5dSApple OSS Distributions // as this file, and this typedef causes an error if it is unguarded.
46*8d741a5dSApple OSS Distributions struct voucher_s;
47*8d741a5dSApple OSS Distributions typedef struct voucher_s *voucher_t;
48*8d741a5dSApple OSS Distributions #endif
49*8d741a5dSApple OSS Distributions 
50*8d741a5dSApple OSS Distributions typedef unsigned long long malloc_type_id_t;
51*8d741a5dSApple OSS Distributions 
52*8d741a5dSApple OSS Distributions #if __PTRAUTH_INTRINSICS__ && __has_builtin(__builtin_ptrauth_string_discriminator)
53*8d741a5dSApple OSS Distributions #define LIBKERNEL_FUNCTION_PTRAUTH(f) \
54*8d741a5dSApple OSS Distributions 	__ptrauth(ptrauth_key_function_pointer,1, \
55*8d741a5dSApple OSS Distributions 	        __builtin_ptrauth_string_discriminator("libkernel_functions_" # f) \
56*8d741a5dSApple OSS Distributions 	) f
57*8d741a5dSApple OSS Distributions #else
58*8d741a5dSApple OSS Distributions #define LIBKERNEL_FUNCTION_PTRAUTH(f) f
59*8d741a5dSApple OSS Distributions #endif
60*8d741a5dSApple OSS Distributions 
61*8d741a5dSApple OSS Distributions typedef const struct _libkernel_functions {
62*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
63*8d741a5dSApple OSS Distributions 	unsigned long version;
64*8d741a5dSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(dlsym))(void*, const char*);
65*8d741a5dSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(malloc))(size_t);
66*8d741a5dSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(free))(void*);
67*8d741a5dSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(realloc))(void*, size_t);
68*8d741a5dSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(_pthread_exit_if_canceled))(int);
69*8d741a5dSApple OSS Distributions 
70*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 2 of this structure */
71*8d741a5dSApple OSS Distributions 	void *reserved1;
72*8d741a5dSApple OSS Distributions 	void *reserved2;
73*8d741a5dSApple OSS Distributions 	void *reserved3;
74*8d741a5dSApple OSS Distributions 	void *reserved4;
75*8d741a5dSApple OSS Distributions 	void *reserved5;
76*8d741a5dSApple OSS Distributions 
77*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 3 of this structure */
78*8d741a5dSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(pthread_clear_qos_tsd))(mach_port_t);
79*8d741a5dSApple OSS Distributions 
80*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 4 of this structure */
81*8d741a5dSApple OSS Distributions 	int(*LIBKERNEL_FUNCTION_PTRAUTH(pthread_current_stack_contains_np))(const void *, size_t);
82*8d741a5dSApple OSS Distributions 
83*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 5 of this structure */
84*8d741a5dSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(malloc_type_malloc))(size_t, malloc_type_id_t);
85*8d741a5dSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(malloc_type_free))(void *, malloc_type_id_t);
86*8d741a5dSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(malloc_type_realloc))(void *, size_t, malloc_type_id_t);
87*8d741a5dSApple OSS Distributions 
88*8d741a5dSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
89*8d741a5dSApple OSS Distributions } *_libkernel_functions_t;
90*8d741a5dSApple OSS Distributions 
91*8d741a5dSApple OSS Distributions typedef const struct _libkernel_string_functions {
92*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
93*8d741a5dSApple OSS Distributions 	unsigned long version;
94*8d741a5dSApple OSS Distributions 	void (*bzero)(void *s, size_t n);
95*8d741a5dSApple OSS Distributions 	void * (*memchr)(const void *s, int c, size_t n);
96*8d741a5dSApple OSS Distributions 	int (*memcmp)(const void *s1, const void *s2, size_t n);
97*8d741a5dSApple OSS Distributions 	void * (*memmove)(void *dst, const void *src, size_t n);
98*8d741a5dSApple OSS Distributions 	void * (*memccpy)(void *__restrict dst, const void *__restrict src, int c, size_t n);
99*8d741a5dSApple OSS Distributions 	void * (*memset)(void *b, int c, size_t len);
100*8d741a5dSApple OSS Distributions 	char * (*strchr)(const char *s, int c);
101*8d741a5dSApple OSS Distributions 	int (*strcmp)(const char *s1, const char *s2);
102*8d741a5dSApple OSS Distributions 	char * (*strcpy)(char * restrict dst, const char * restrict src);
103*8d741a5dSApple OSS Distributions 	size_t (*strlcat)(char * restrict dst, const char * restrict src, size_t maxlen);
104*8d741a5dSApple OSS Distributions 	size_t (*strlcpy)(char * restrict dst, const char * restrict src, size_t maxlen);
105*8d741a5dSApple OSS Distributions 	size_t (*strlen)(const char *str);
106*8d741a5dSApple OSS Distributions 	int (*strncmp)(const char *s1, const char *s2, size_t n);
107*8d741a5dSApple OSS Distributions 	char * (*strncpy)(char * restrict dst, const char * restrict src, size_t maxlen);
108*8d741a5dSApple OSS Distributions 	size_t (*strnlen)(const char *s, size_t maxlen);
109*8d741a5dSApple OSS Distributions 	char * (*strstr)(const char *s, const char *find);
110*8d741a5dSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
111*8d741a5dSApple OSS Distributions } *_libkernel_string_functions_t;
112*8d741a5dSApple OSS Distributions 
113*8d741a5dSApple OSS Distributions typedef const struct _libkernel_voucher_functions {
114*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
115*8d741a5dSApple OSS Distributions 	unsigned long version;
116*8d741a5dSApple OSS Distributions 	boolean_t (*voucher_mach_msg_set)(mach_msg_header_t*);
117*8d741a5dSApple OSS Distributions 	void (*voucher_mach_msg_clear)(mach_msg_header_t*);
118*8d741a5dSApple OSS Distributions 	voucher_mach_msg_state_t (*voucher_mach_msg_adopt)(mach_msg_header_t*);
119*8d741a5dSApple OSS Distributions 	void (*voucher_mach_msg_revert)(voucher_mach_msg_state_t);
120*8d741a5dSApple OSS Distributions 
121*8d741a5dSApple OSS Distributions 	/* version 2 is skipped */
122*8d741a5dSApple OSS Distributions 
123*8d741a5dSApple OSS Distributions 	/* The following functions are included in version 3 of this structure */
124*8d741a5dSApple OSS Distributions 	mach_msg_size_t (*voucher_mach_msg_fill_aux)(mach_msg_aux_header_t*, mach_msg_size_t);
125*8d741a5dSApple OSS Distributions 
126*8d741a5dSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
127*8d741a5dSApple OSS Distributions } *_libkernel_voucher_functions_t;
128*8d741a5dSApple OSS Distributions 
129*8d741a5dSApple OSS Distributions typedef struct _libkernel_late_init_config {
130*8d741a5dSApple OSS Distributions 	unsigned long version;
131*8d741a5dSApple OSS Distributions 
132*8d741a5dSApple OSS Distributions 	/* Version 1 fields */
133*8d741a5dSApple OSS Distributions 	bool enable_system_version_compat;
134*8d741a5dSApple OSS Distributions 
135*8d741a5dSApple OSS Distributions 	/* Version 2 fields */
136*8d741a5dSApple OSS Distributions 	bool enable_ios_version_compat;
137*8d741a5dSApple OSS Distributions 
138*8d741a5dSApple OSS Distributions 	/* Version 3 fields */
139*8d741a5dSApple OSS Distributions 	bool enable_posix_spawn_filtering;
140*8d741a5dSApple OSS Distributions } *_libkernel_late_init_config_t;
141*8d741a5dSApple OSS Distributions 
142*8d741a5dSApple OSS Distributions struct ProgramVars; /* forward reference */
143*8d741a5dSApple OSS Distributions 
144*8d741a5dSApple OSS Distributions void __libkernel_init(_libkernel_functions_t fns, const char *envp[],
145*8d741a5dSApple OSS Distributions     const char *apple[], const struct ProgramVars *vars);
146*8d741a5dSApple OSS Distributions 
147*8d741a5dSApple OSS Distributions kern_return_t __libkernel_platform_init(_libkernel_string_functions_t fns);
148*8d741a5dSApple OSS Distributions 
149*8d741a5dSApple OSS Distributions kern_return_t __libkernel_voucher_init(_libkernel_voucher_functions_t fns);
150*8d741a5dSApple OSS Distributions 
151*8d741a5dSApple OSS Distributions void __libkernel_init_late(_libkernel_late_init_config_t config);
152*8d741a5dSApple OSS Distributions 
153*8d741a5dSApple OSS Distributions typedef struct _libkernel_init_after_boot_tasks_config {
154*8d741a5dSApple OSS Distributions 	unsigned long version;
155*8d741a5dSApple OSS Distributions 
156*8d741a5dSApple OSS Distributions 	/* Version 1 fields */
157*8d741a5dSApple OSS Distributions 	bool enable_posix_spawn_filtering;
158*8d741a5dSApple OSS Distributions } *_libkernel_init_after_boot_tasks_config_t;
159*8d741a5dSApple OSS Distributions 
160*8d741a5dSApple OSS Distributions void __libkernel_init_after_boot_tasks(
161*8d741a5dSApple OSS Distributions 	_libkernel_init_after_boot_tasks_config_t config);
162*8d741a5dSApple OSS Distributions 
163*8d741a5dSApple OSS Distributions #endif // __LIBKERNEL_INIT_H
164