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