2 * Copyright (c) 2008 Apple Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
31 #include <mach/vm_prot.h>
32 #include <sys/types.h>
34 #include <libkern/kxld_types.h>
36 #include "kxld_types.h"
39 #include "kxld_array.h"
43 struct segment_command
;
44 struct segment_command_64
;
45 typedef struct kxld_seg KXLDSeg
;
49 kxld_addr_t base_addr
;
50 kxld_addr_t link_addr
;
59 /*******************************************************************************
60 * Constructors and Destructors
61 *******************************************************************************/
63 #if KXLD_USER_OR_ILP32
64 kern_return_t
kxld_seg_init_from_macho_32(KXLDSeg
*seg
, struct segment_command
*src
)
65 __attribute__((nonnull
, visibility("hidden")));
66 #endif /* KXLD_USER_OR_ILP32 */
69 kern_return_t
kxld_seg_init_from_macho_64(KXLDSeg
*seg
, struct segment_command_64
*src
)
70 __attribute__((nonnull
, visibility("hidden")));
71 #endif /* KXLD_USER_OR_LP64 */
73 #if KXLD_USER_OR_OBJECT
74 kern_return_t
kxld_seg_create_seg_from_sections(KXLDArray
*segarray
,
76 __attribute__((nonnull
, visibility("hidden")));
78 kern_return_t
kxld_seg_finalize_object_segment(KXLDArray
*segarray
,
79 KXLDArray
*section_order
, u_long hdrsize
)
80 __attribute__((nonnull
, visibility("hidden")));
82 kern_return_t
kxld_seg_init_linkedit(KXLDArray
*segs
)
83 __attribute__((nonnull
, visibility("hidden")));
84 #endif /* KXLD_USER_OR_OBJECT */
86 void kxld_seg_clear(KXLDSeg
*seg
)
87 __attribute__((nonnull
, visibility("hidden")));
89 void kxld_seg_deinit(KXLDSeg
*seg
)
90 __attribute__((nonnull
, visibility("hidden")));
93 /*******************************************************************************
95 *******************************************************************************/
97 kxld_size_t
kxld_seg_get_vmsize(const KXLDSeg
*seg
)
98 __attribute__((pure
, nonnull
, visibility("hidden")));
100 u_long
kxld_seg_get_macho_header_size(const KXLDSeg
*seg
, boolean_t is_32_bit
)
101 __attribute__((pure
, nonnull
, visibility("hidden")));
104 /* This is no longer used, but may be useful some day... */
105 u_long
kxld_seg_get_macho_data_size(const KXLDSeg
*seg
)
106 __attribute__((pure
, nonnull
, visibility("hidden")));
110 kxld_seg_export_macho_to_file_buffer(const KXLDSeg
*seg
, u_char
*buf
,
111 u_long
*header_offset
, u_long header_size
,
112 u_long
*data_offset
, u_long data_size
,
114 __attribute__((nonnull
, visibility("hidden")));
117 kxld_seg_export_macho_to_vm(const KXLDSeg
*seg
, u_char
*buf
,
118 u_long
*header_offset
, u_long header_size
,
119 u_long data_size
, kxld_addr_t file_link_addr
,
121 __attribute__((nonnull
, visibility("hidden")));
123 /*******************************************************************************
125 *******************************************************************************/
127 kern_return_t
kxld_seg_add_section(KXLDSeg
*seg
, struct kxld_sect
*sect
)
128 __attribute__((nonnull
, visibility("hidden")));
130 /* To be called after all sections are added */
131 kern_return_t
kxld_seg_finish_init(KXLDSeg
*seg
)
132 __attribute__((nonnull
, visibility("hidden")));
134 void kxld_seg_set_vm_protections(KXLDSeg
*seg
, boolean_t strict_protections
)
135 __attribute__((nonnull
, visibility("hidden")));
137 void kxld_seg_relocate(KXLDSeg
*seg
, kxld_addr_t link_addr
)
138 __attribute__((nonnull
, visibility("hidden")));
140 void kxld_seg_populate_linkedit(KXLDSeg
*seg
, const struct kxld_symtab
*symtab
,
143 , const struct kxld_array
*locrelocs
144 , const struct kxld_array
*extrelocs
145 , boolean_t target_supports_slideable_kexts
146 #endif /* KXLD_PIC_KEXTS */
148 __attribute__((nonnull
, visibility("hidden")));
150 #endif /* _KXLD_SEG_H_ */