xref: /xnu-8796.121.2/libsyscall/wrappers/_libkernel_init.h (revision c54f35ca767986246321eb901baf8f5ff7923f6a)
1*c54f35caSApple OSS Distributions /*
2*c54f35caSApple OSS Distributions  * Copyright (c) 2010-2014 Apple 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 #ifndef __LIBKERNEL_INIT_H
30*c54f35caSApple OSS Distributions #define __LIBKERNEL_INIT_H
31*c54f35caSApple OSS Distributions 
32*c54f35caSApple OSS Distributions #include <ptrauth.h>
33*c54f35caSApple OSS Distributions #include <stdbool.h>
34*c54f35caSApple OSS Distributions #include <sys/types.h>
35*c54f35caSApple OSS Distributions #include <mach/mach.h>
36*c54f35caSApple OSS Distributions #include <mach/message.h>
37*c54f35caSApple OSS Distributions #include <mach/mach_types.h>
38*c54f35caSApple OSS Distributions 
39*c54f35caSApple OSS Distributions #ifndef __OS_VOUCHER_PRIVATE__
40*c54f35caSApple OSS Distributions // We cannot include the actual os/voucher_private.h definition of voucher_t
41*c54f35caSApple OSS Distributions // here, as that also marks the voucher_XXX functions as exported, which causes
42*c54f35caSApple OSS Distributions // a compile error when we attempt to mark them hidden in the .c file.
43*c54f35caSApple OSS Distributions //
44*c54f35caSApple OSS Distributions // The Libsystem init.c file does include os/voucher_private.h though, as well
45*c54f35caSApple OSS Distributions // as this file, and this typedef causes an error if it is unguarded.
46*c54f35caSApple OSS Distributions struct voucher_s;
47*c54f35caSApple OSS Distributions typedef struct voucher_s *voucher_t;
48*c54f35caSApple OSS Distributions #endif
49*c54f35caSApple OSS Distributions 
50*c54f35caSApple OSS Distributions #if __PTRAUTH_INTRINSICS__ && __has_builtin(__builtin_ptrauth_string_discriminator)
51*c54f35caSApple OSS Distributions #define LIBKERNEL_FUNCTION_PTRAUTH(f) \
52*c54f35caSApple OSS Distributions 	__ptrauth(ptrauth_key_function_pointer,1, \
53*c54f35caSApple OSS Distributions 	        __builtin_ptrauth_string_discriminator("libkernel_functions_" # f) \
54*c54f35caSApple OSS Distributions 	) f
55*c54f35caSApple OSS Distributions #else
56*c54f35caSApple OSS Distributions #define LIBKERNEL_FUNCTION_PTRAUTH(f) f
57*c54f35caSApple OSS Distributions #endif
58*c54f35caSApple OSS Distributions 
59*c54f35caSApple OSS Distributions typedef const struct _libkernel_functions {
60*c54f35caSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
61*c54f35caSApple OSS Distributions 	unsigned long version;
62*c54f35caSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(dlsym))(void*, const char*);
63*c54f35caSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(malloc))(size_t);
64*c54f35caSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(free))(void*);
65*c54f35caSApple OSS Distributions 	void* (*LIBKERNEL_FUNCTION_PTRAUTH(realloc))(void*, size_t);
66*c54f35caSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(_pthread_exit_if_canceled))(int);
67*c54f35caSApple OSS Distributions 
68*c54f35caSApple OSS Distributions 	/* The following functions are included in version 2 of this structure */
69*c54f35caSApple OSS Distributions 	void *reserved1;
70*c54f35caSApple OSS Distributions 	void *reserved2;
71*c54f35caSApple OSS Distributions 	void *reserved3;
72*c54f35caSApple OSS Distributions 	void *reserved4;
73*c54f35caSApple OSS Distributions 	void *reserved5;
74*c54f35caSApple OSS Distributions 
75*c54f35caSApple OSS Distributions 	/* The following functions are included in version 3 of this structure */
76*c54f35caSApple OSS Distributions 	void(*LIBKERNEL_FUNCTION_PTRAUTH(pthread_clear_qos_tsd))(mach_port_t);
77*c54f35caSApple OSS Distributions 
78*c54f35caSApple OSS Distributions 	/* The following functions are included in version 4 of this structure */
79*c54f35caSApple OSS Distributions 	int(*LIBKERNEL_FUNCTION_PTRAUTH(pthread_current_stack_contains_np))(const void *, size_t);
80*c54f35caSApple OSS Distributions 
81*c54f35caSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
82*c54f35caSApple OSS Distributions } *_libkernel_functions_t;
83*c54f35caSApple OSS Distributions 
84*c54f35caSApple OSS Distributions typedef const struct _libkernel_string_functions {
85*c54f35caSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
86*c54f35caSApple OSS Distributions 	unsigned long version;
87*c54f35caSApple OSS Distributions 	void (*bzero)(void *s, size_t n);
88*c54f35caSApple OSS Distributions 	void * (*memchr)(const void *s, int c, size_t n);
89*c54f35caSApple OSS Distributions 	int (*memcmp)(const void *s1, const void *s2, size_t n);
90*c54f35caSApple OSS Distributions 	void * (*memmove)(void *dst, const void *src, size_t n);
91*c54f35caSApple OSS Distributions 	void * (*memccpy)(void *__restrict dst, const void *__restrict src, int c, size_t n);
92*c54f35caSApple OSS Distributions 	void * (*memset)(void *b, int c, size_t len);
93*c54f35caSApple OSS Distributions 	char * (*strchr)(const char *s, int c);
94*c54f35caSApple OSS Distributions 	int (*strcmp)(const char *s1, const char *s2);
95*c54f35caSApple OSS Distributions 	char * (*strcpy)(char * restrict dst, const char * restrict src);
96*c54f35caSApple OSS Distributions 	size_t (*strlcat)(char * restrict dst, const char * restrict src, size_t maxlen);
97*c54f35caSApple OSS Distributions 	size_t (*strlcpy)(char * restrict dst, const char * restrict src, size_t maxlen);
98*c54f35caSApple OSS Distributions 	size_t (*strlen)(const char *str);
99*c54f35caSApple OSS Distributions 	int (*strncmp)(const char *s1, const char *s2, size_t n);
100*c54f35caSApple OSS Distributions 	char * (*strncpy)(char * restrict dst, const char * restrict src, size_t maxlen);
101*c54f35caSApple OSS Distributions 	size_t (*strnlen)(const char *s, size_t maxlen);
102*c54f35caSApple OSS Distributions 	char * (*strstr)(const char *s, const char *find);
103*c54f35caSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
104*c54f35caSApple OSS Distributions } *_libkernel_string_functions_t;
105*c54f35caSApple OSS Distributions 
106*c54f35caSApple OSS Distributions typedef const struct _libkernel_voucher_functions {
107*c54f35caSApple OSS Distributions 	/* The following functions are included in version 1 of this structure */
108*c54f35caSApple OSS Distributions 	unsigned long version;
109*c54f35caSApple OSS Distributions 	boolean_t (*voucher_mach_msg_set)(mach_msg_header_t*);
110*c54f35caSApple OSS Distributions 	void (*voucher_mach_msg_clear)(mach_msg_header_t*);
111*c54f35caSApple OSS Distributions 	voucher_mach_msg_state_t (*voucher_mach_msg_adopt)(mach_msg_header_t*);
112*c54f35caSApple OSS Distributions 	void (*voucher_mach_msg_revert)(voucher_mach_msg_state_t);
113*c54f35caSApple OSS Distributions 
114*c54f35caSApple OSS Distributions 	/* version 2 is skipped */
115*c54f35caSApple OSS Distributions 
116*c54f35caSApple OSS Distributions 	/* The following functions are included in version 3 of this structure */
117*c54f35caSApple OSS Distributions 	mach_msg_size_t (*voucher_mach_msg_fill_aux)(mach_msg_aux_header_t*, mach_msg_size_t);
118*c54f35caSApple OSS Distributions 
119*c54f35caSApple OSS Distributions 	/* Subsequent versions must only add pointers! */
120*c54f35caSApple OSS Distributions } *_libkernel_voucher_functions_t;
121*c54f35caSApple OSS Distributions 
122*c54f35caSApple OSS Distributions typedef struct _libkernel_late_init_config {
123*c54f35caSApple OSS Distributions 	unsigned long version;
124*c54f35caSApple OSS Distributions 
125*c54f35caSApple OSS Distributions 	/* Version 1 fields */
126*c54f35caSApple OSS Distributions 	bool enable_system_version_compat;
127*c54f35caSApple OSS Distributions 
128*c54f35caSApple OSS Distributions 	/* Version 2 fields */
129*c54f35caSApple OSS Distributions 	bool enable_ios_version_compat;
130*c54f35caSApple OSS Distributions 
131*c54f35caSApple OSS Distributions 	/* Version 3 fields */
132*c54f35caSApple OSS Distributions 	bool enable_posix_spawn_filtering;
133*c54f35caSApple OSS Distributions } *_libkernel_late_init_config_t;
134*c54f35caSApple OSS Distributions 
135*c54f35caSApple OSS Distributions struct ProgramVars; /* forward reference */
136*c54f35caSApple OSS Distributions 
137*c54f35caSApple OSS Distributions void __libkernel_init(_libkernel_functions_t fns, const char *envp[],
138*c54f35caSApple OSS Distributions     const char *apple[], const struct ProgramVars *vars);
139*c54f35caSApple OSS Distributions 
140*c54f35caSApple OSS Distributions kern_return_t __libkernel_platform_init(_libkernel_string_functions_t fns);
141*c54f35caSApple OSS Distributions 
142*c54f35caSApple OSS Distributions kern_return_t __libkernel_voucher_init(_libkernel_voucher_functions_t fns);
143*c54f35caSApple OSS Distributions 
144*c54f35caSApple OSS Distributions void __libkernel_init_late(_libkernel_late_init_config_t config);
145*c54f35caSApple OSS Distributions 
146*c54f35caSApple OSS Distributions typedef struct _libkernel_init_after_boot_tasks_config {
147*c54f35caSApple OSS Distributions 	unsigned long version;
148*c54f35caSApple OSS Distributions 
149*c54f35caSApple OSS Distributions 	/* Version 1 fields */
150*c54f35caSApple OSS Distributions 	bool enable_posix_spawn_filtering;
151*c54f35caSApple OSS Distributions } *_libkernel_init_after_boot_tasks_config_t;
152*c54f35caSApple OSS Distributions 
153*c54f35caSApple OSS Distributions void __libkernel_init_after_boot_tasks(
154*c54f35caSApple OSS Distributions 	_libkernel_init_after_boot_tasks_config_t config);
155*c54f35caSApple OSS Distributions 
156*c54f35caSApple OSS Distributions #endif // __LIBKERNEL_INIT_H
157