]> git.saurik.com Git - apple/xnu.git/blame - libkern/kxld/kxld_sym.h
xnu-7195.101.1.tar.gz
[apple/xnu.git] / libkern / kxld / kxld_sym.h
CommitLineData
b0d623f7
A
1/*
2 * Copyright (c) 2008 Apple Inc. All rights reserved.
3 *
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
0a7de745 5 *
b0d623f7
A
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.
0a7de745 14 *
b0d623f7
A
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
0a7de745 17 *
b0d623f7
A
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.
0a7de745 25 *
b0d623f7
A
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
27 */
28#ifndef _KXLD_SYMBOL_H_
29#define _KXLD_SYMBOL_H_
30
b0d623f7
A
31#include <sys/types.h>
32#if KERNEL
33 #include <libkern/kxld_types.h>
34#else
35 #include "kxld_types.h"
36#endif
37
38struct kxld_sect;
39struct nlist;
40struct nlist_64;
41typedef struct kxld_sym KXLDSym;
42typedef boolean_t (*KXLDSymPredicateTest)(const KXLDSym *sym);
43
44struct kxld_sym {
0a7de745
A
45 char *name; // The symbol's name
46 char *alias; // The indirect symbol's alias name
47 kxld_addr_t base_addr; // The symbol's base address
48 kxld_addr_t link_addr; // The relocated address
49 kxld_addr_t got_addr; // The address of this symbol's GOT entry
50 uint16_t desc;
51 uint8_t type;
52 uint8_t sectnum; // The symbol's section number
53 uint8_t relocated_sectnum;
54 u_int is_absolute:1, // Set for absolute symbols
55 is_section:1, // Set for section symbols
56 is_undefined:1, // Set for undefined symbols
57 is_indirect:1, // Set for indirect symbols
58 is_common:1, // Set for common symbols
59 is_external:1, // Set for external symbols
60 is_stab:1, // Set for stab symbols
61 is_weak:1, // Set for weak definition symbols
62 is_resolved:1, // For symbols that have been resolved
63 // externally and should not be exported
64 is_obsolete:1, // For symbols marked as obsolete
65 is_replaced:1, // Set for symbols replaced by patching
66 is_got:1, // Has an entry in the GOT
67 is_cxx:1, // Set for C++ symbols
68 is_pure_virtual:1, // Set for pure virtual symbols
69 is_class_vtable:1, // Set for vtable symbols of classes
70 is_meta_vtable:1, // Set for vtable symbols of MetaClasses
71 is_padslot:1, // Set for pad slot symbols
72 is_metaclass:1, // Set for metaclass symbols
73 is_super_metaclass_pointer:1, // Set for super metaclass pointer syms
74 is_thumb:1; // Set for thumb symbols (ARM only)
b0d623f7
A
75};
76
77/*******************************************************************************
78* Constructors and destructors
79*******************************************************************************/
80
81#if KXLD_USER_OR_ILP32
0a7de745 82kern_return_t kxld_sym_init_from_macho32(KXLDSym *sym, char *strtab,
b0d623f7
A
83 const struct nlist *src) __attribute__((nonnull, visibility("hidden")));
84#endif
85
86#if KXLD_USER_OR_LP64
0a7de745 87kern_return_t kxld_sym_init_from_macho64(KXLDSym *sym, char *strtab,
b0d623f7
A
88 const struct nlist_64 *src) __attribute__((nonnull, visibility("hidden")));
89#endif
90
91void kxld_sym_init_absolute(KXLDSym *sym, char *name, kxld_addr_t link_addr)
0a7de745 92__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
93
94void kxld_sym_deinit(KXLDSym *sym)
0a7de745 95__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
96
97void kxld_sym_destroy(KXLDSym *sym)
0a7de745 98__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
99
100/*******************************************************************************
101* Accessors
102*******************************************************************************/
103
104boolean_t kxld_sym_is_absolute(const KXLDSym *sym)
0a7de745 105__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7 106
0a7de745
A
107boolean_t kxld_sym_is_section(const KXLDSym *sym)
108__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
109
110boolean_t kxld_sym_is_defined(const KXLDSym *sym)
0a7de745 111__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
112
113boolean_t kxld_sym_is_defined_locally(const KXLDSym *sym)
0a7de745 114__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
115
116boolean_t kxld_sym_is_external(const KXLDSym *sym)
0a7de745 117__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
118
119boolean_t kxld_sym_is_exported(const KXLDSym *sym)
0a7de745 120__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
121
122boolean_t kxld_sym_is_undefined(const KXLDSym *sym)
0a7de745 123__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
124
125boolean_t kxld_sym_is_indirect(const KXLDSym *sym)
0a7de745 126__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7 127
6d2010ae 128boolean_t kxld_sym_is_replaced(const KXLDSym *sym)
0a7de745 129__attribute__((pure, nonnull, visibility("hidden")));
6d2010ae 130
b0d623f7
A
131/* We don't wrap this in KXLD_USER_OR_COMMON because even though common symbols
132 * aren't always supported, we always need to be able to detect them.
133 */
134boolean_t kxld_sym_is_common(const KXLDSym *sym)
0a7de745 135__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
136
137boolean_t kxld_sym_is_unresolved(const KXLDSym *sym)
0a7de745 138__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
139
140boolean_t kxld_sym_is_obsolete(const KXLDSym *sym)
0a7de745 141__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
142
143#if KXLD_USER_OR_GOT
144boolean_t kxld_sym_is_got(const KXLDSym *sym)
0a7de745 145__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
146#endif /* KXLD_USER_OR_GOT */
147
148boolean_t kxld_sym_is_stab(const KXLDSym *sym)
0a7de745 149__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
150
151boolean_t kxld_sym_is_weak(const KXLDSym *sym)
0a7de745 152__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
153
154boolean_t kxld_sym_is_cxx(const KXLDSym *sym)
0a7de745 155__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
156
157boolean_t kxld_sym_is_pure_virtual(const KXLDSym *sym)
0a7de745 158__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
159
160boolean_t kxld_sym_is_vtable(const KXLDSym *sym)
0a7de745 161__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
162
163boolean_t kxld_sym_is_class_vtable(const KXLDSym *sym)
0a7de745 164__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
165
166boolean_t kxld_sym_is_metaclass_vtable(const KXLDSym *sym)
0a7de745 167__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
168
169boolean_t kxld_sym_is_padslot(const KXLDSym *sym)
0a7de745 170__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
171
172boolean_t kxld_sym_is_metaclass(const KXLDSym *sym)
0a7de745 173__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
174
175boolean_t kxld_sym_is_super_metaclass_pointer(const KXLDSym *sym)
0a7de745 176__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7 177
6d2010ae 178boolean_t kxld_sym_name_is_pure_virtual(const char *name)
0a7de745 179__attribute__((pure, nonnull, visibility("hidden")));
6d2010ae 180
b0d623f7 181boolean_t kxld_sym_name_is_padslot(const char *name)
0a7de745 182__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7 183
0a7de745 184u_int kxld_sym_get_section_offset(const KXLDSym *sym,
b0d623f7 185 const struct kxld_sect *sect)
0a7de745 186__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
187
188#if KXLD_USER_OR_COMMON
189kxld_size_t kxld_sym_get_common_size(const KXLDSym *sym)
0a7de745 190__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
191
192u_int kxld_sym_get_common_align(const KXLDSym *sym)
0a7de745 193__attribute__((pure, nonnull, visibility("hidden")));
b0d623f7
A
194#endif /* KXLD_USER_OR_COMMON */
195
196kern_return_t kxld_sym_get_class_name_from_metaclass(const KXLDSym *sym,
197 char class_name[], u_long class_name_len)
0a7de745 198__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
199
200kern_return_t kxld_sym_get_class_name_from_super_metaclass_pointer(
0a7de745
A
201 const KXLDSym *sym, char class_name[], u_long class_name_len)
202__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
203
204kern_return_t kxld_sym_get_class_name_from_vtable(const KXLDSym *sym,
205 char class_name[], u_long class_name_len)
0a7de745 206__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
207
208kern_return_t kxld_sym_get_class_name_from_vtable_name(const char *vtable_name,
209 char class_name[], u_long class_name_len)
0a7de745 210__attribute__((nonnull, visibility("hidden")));
b0d623f7 211
0a7de745 212kern_return_t kxld_sym_get_vtable_name_from_class_name(const char *class_name,
b0d623f7 213 char vtable_name[], u_long vtable_name_len)
0a7de745 214__attribute__((nonnull, visibility("hidden")));
b0d623f7 215
0a7de745 216kern_return_t kxld_sym_get_meta_vtable_name_from_class_name(const char *class_name,
b0d623f7 217 char meta_vtable_name[], u_long meta_vtable_name_len)
0a7de745 218__attribute__((nonnull, visibility("hidden")));
b0d623f7 219
0a7de745 220kern_return_t kxld_sym_get_final_sym_name_from_class_name(const char *class_name,
b0d623f7 221 char final_sym_name[], u_long final_sym_name_len)
0a7de745 222__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
223
224u_long kxld_sym_get_function_prefix_from_class_name(const char *class_name,
225 char function_prefix[], u_long function_prefix_len)
0a7de745 226__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
227
228#if KXLD_USER_OR_ILP32
0a7de745 229kern_return_t kxld_sym_export_macho_32(const KXLDSym *sym, u_char *nl,
6d2010ae 230 char *strtab, u_long *stroff, u_long strsize)
0a7de745 231__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
232#endif
233
234#if KXLD_USER_OR_LP64
0a7de745 235kern_return_t kxld_sym_export_macho_64(const KXLDSym *sym, u_char *nl,
6d2010ae 236 char *strtab, u_long *stroff, u_long strsize)
0a7de745 237__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
238#endif
239
240/*******************************************************************************
241* Mutators
242*******************************************************************************/
243
244void kxld_sym_relocate(KXLDSym *sym, const struct kxld_sect *sect)
0a7de745 245__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
246
247#if KXLD_USER_OR_GOT
248void kxld_sym_set_got(KXLDSym *sym)
0a7de745 249__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
250#endif /* KXLD_USER_OR_GOT */
251
6d2010ae 252kern_return_t kxld_sym_resolve(KXLDSym *sym, const kxld_addr_t addr)
0a7de745 253__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
254
255#if KXLD_USER_OR_COMMON
0a7de745 256kern_return_t kxld_sym_resolve_common(KXLDSym *sym, u_int sectnum,
b0d623f7 257 kxld_addr_t base_addr)
0a7de745 258__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
259#endif /* KXLD_USER_OR_COMMON */
260
261void kxld_sym_delete(KXLDSym *sym)
0a7de745
A
262__attribute__((nonnull, visibility("hidden")));
263
b0d623f7 264void kxld_sym_patch(KXLDSym *sym)
0a7de745 265__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
266
267void kxld_sym_mark_private(KXLDSym *sym)
0a7de745 268__attribute__((nonnull, visibility("hidden")));
b0d623f7
A
269
270#endif /* _KXLD_SYMBOL_H_ */