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