1*043036a2SApple OSS Distributions /* 2*043036a2SApple OSS Distributions * Copyright © 2017-2024 Apple Inc. All rights reserved. 3*043036a2SApple OSS Distributions * 4*043036a2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_START@ 5*043036a2SApple OSS Distributions * 6*043036a2SApple OSS Distributions * This file contains Original Code and/or Modifications of Original Code 7*043036a2SApple OSS Distributions * as defined in and that are subject to the Apple Public Source License 8*043036a2SApple OSS Distributions * Version 2.0 (the 'License'). You may not use this file except in 9*043036a2SApple OSS Distributions * compliance with the License. The rights granted to you under the License 10*043036a2SApple OSS Distributions * may not be used to create, or enable the creation or redistribution of, 11*043036a2SApple OSS Distributions * unlawful or unlicensed copies of an Apple operating system, or to 12*043036a2SApple OSS Distributions * circumvent, violate, or enable the circumvention or violation of, any 13*043036a2SApple OSS Distributions * terms of an Apple operating system software license agreement. 14*043036a2SApple OSS Distributions * 15*043036a2SApple OSS Distributions * Please obtain a copy of the License at 16*043036a2SApple OSS Distributions * http://www.opensource.apple.com/apsl/ and read it before using this file. 17*043036a2SApple OSS Distributions * 18*043036a2SApple OSS Distributions * The Original Code and all software distributed under the License are 19*043036a2SApple OSS Distributions * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER 20*043036a2SApple OSS Distributions * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES, 21*043036a2SApple OSS Distributions * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY, 22*043036a2SApple OSS Distributions * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT. 23*043036a2SApple OSS Distributions * Please see the License for the specific language governing rights and 24*043036a2SApple OSS Distributions * limitations under the License. 25*043036a2SApple OSS Distributions * 26*043036a2SApple OSS Distributions * @APPLE_OSREFERENCE_LICENSE_HEADER_END@ 27*043036a2SApple OSS Distributions */ 28*043036a2SApple OSS Distributions /*! 29*043036a2SApple OSS Distributions * @header 30*043036a2SApple OSS Distributions * Interface structure for the upward-exported AppleImage4 API. 31*043036a2SApple OSS Distributions * 32*043036a2SApple OSS Distributions * This header relies entirely on transitive inclusion from dlxk.h to satisfy 33*043036a2SApple OSS Distributions * its dependencies. 34*043036a2SApple OSS Distributions */ 35*043036a2SApple OSS Distributions #ifndef __IMAGE4_DLXK_INTERFACE_H 36*043036a2SApple OSS Distributions #define __IMAGE4_DLXK_INTERFACE_H 37*043036a2SApple OSS Distributions 38*043036a2SApple OSS Distributions #if !defined(__IMAGE4_XNU_INDIRECT) 39*043036a2SApple OSS Distributions #error "Please include <libkern/image4/dlxk.h> instead of this file" 40*043036a2SApple OSS Distributions #endif 41*043036a2SApple OSS Distributions 42*043036a2SApple OSS Distributions __BEGIN_DECLS 43*043036a2SApple OSS Distributions OS_ASSUME_NONNULL_BEGIN 44*043036a2SApple OSS Distributions OS_ASSUME_PTR_ABI_SINGLE_BEGIN 45*043036a2SApple OSS Distributions 46*043036a2SApple OSS Distributions #pragma mark Macros 47*043036a2SApple OSS Distributions #define image4_xnu_dlxk_type(_s) _image4_ ## _s ## _dlxk_t 48*043036a2SApple OSS Distributions #define image4_xnu_dlxk_fld(_s) dlxk_ ## _s 49*043036a2SApple OSS Distributions #define image4_xnu_dlxk_fld_decl(_s) \ 50*043036a2SApple OSS Distributions image4_xnu_dlxk_type(_s) image4_xnu_dlxk_fld(_s) 51*043036a2SApple OSS Distributions 52*043036a2SApple OSS Distributions #pragma mark Types 53*043036a2SApple OSS Distributions typedef struct _image4_dlxk_interface { 54*043036a2SApple OSS Distributions image4_struct_version_t dlxk_version; 55*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_host); 56*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_ap); 57*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_ap_local); 58*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_cryptex1); 59*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_sep); 60*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_x86); 61*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_init); 62*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_new); 63*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_set_secure_boot); 64*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_set_callbacks); 65*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_copy_nonce_digest); 66*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_roll_nonce); 67*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_generate_nonce_proposal); 68*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_commit_nonce_proposal); 69*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_get_nonce_handle); 70*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_destroy); 71*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_init); 72*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_new); 73*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_set_payload); 74*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_set_booter); 75*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_record_property_bool); 76*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_record_property_integer); 77*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_record_property_data); 78*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluate); 79*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_destroy); 80*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluation_exec); 81*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluation_preflight); 82*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluation_sign); 83*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluation_boot); 84*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(cs_trap_resolve_handler); 85*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(cs_trap_vector_size); 86*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_evaluation_normalize); 87*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_identify); 88*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_get_digest_info); 89*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(environment_flash); 90*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_resolve_from_manifest); 91*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_bootpc); 92*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_vma2); 93*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(coprocessor_vma3); 94*043036a2SApple OSS Distributions #if IMAGE4_API_VERSION >= 20240503 95*043036a2SApple OSS Distributions image4_xnu_dlxk_fld_decl(trust_set_result_buffer); 96*043036a2SApple OSS Distributions #endif 97*043036a2SApple OSS Distributions } image4_dlxk_interface_t; 98*043036a2SApple OSS Distributions 99*043036a2SApple OSS Distributions OS_ASSUME_PTR_ABI_SINGLE_END 100*043036a2SApple OSS Distributions OS_ASSUME_NONNULL_END 101*043036a2SApple OSS Distributions __END_DECLS 102*043036a2SApple OSS Distributions 103*043036a2SApple OSS Distributions #endif // __IMAGE4_DLXK_INTERFACE_H 104