VirtualBox

source: vbox/trunk/include/iprt/formats/mach-o.h@ 77807

Last change on this file since 77807 was 76585, checked in by vboxsync, 6 years ago

*: scm --fix-header-guard-endif

  • Property svn:eol-style set to native
  • Property svn:keywords set to Author Date Id Revision
File size: 29.5 KB
Line 
1/* $Id: mach-o.h 76585 2019-01-01 06:31:29Z vboxsync $ */
2/** @file
3 * IPRT - Mach-O Structures and Constants.
4 */
5
6/*
7 * Copyright (C) 2011-2019 Oracle Corporation
8 *
9 * This file is part of VirtualBox Open Source Edition (OSE), as
10 * available from http://www.virtualbox.org. This file is free software;
11 * you can redistribute it and/or modify it under the terms of the GNU
12 * General Public License (GPL) as published by the Free Software
13 * Foundation, in version 2 as it comes in the "COPYING" file of the
14 * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
15 * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
16 *
17 * The contents of this file may alternatively be used under the terms
18 * of the Common Development and Distribution License Version 1.0
19 * (CDDL) only, as it comes in the "COPYING.CDDL" file of the
20 * VirtualBox OSE distribution, in which case the provisions of the
21 * CDDL are applicable instead of those of the GPL.
22 *
23 * You may elect to license modified versions of this file under the
24 * terms and conditions of either the GPL or the CDDL or both.
25 */
26
27#ifndef IPRT_INCLUDED_formats_mach_o_h
28#define IPRT_INCLUDED_formats_mach_o_h
29#ifndef RT_WITHOUT_PRAGMA_ONCE
30# pragma once
31#endif
32
33#include <iprt/types.h>
34#include <iprt/assertcompile.h>
35
36#ifndef CPU_ARCH_MASK
37
38/* cputype */
39#define CPU_ARCH_MASK INT32_C(0xff000000)
40#define CPU_ARCH_ABI64 INT32_C(0x01000000)
41#define CPU_TYPE_ANY INT32_C(-1)
42#define CPU_TYPE_VAX INT32_C(1)
43#define CPU_TYPE_MC680x0 INT32_C(6)
44#define CPU_TYPE_X86 INT32_C(7)
45#define CPU_TYPE_I386 CPU_TYPE_X86
46#define CPU_TYPE_X86_64 (CPU_TYPE_X86 | CPU_ARCH_ABI64)
47#define CPU_TYPE_MC98000 INT32_C(10)
48#define CPU_TYPE_HPPA INT32_C(11)
49#define CPU_TYPE_MC88000 INT32_C(13)
50#define CPU_TYPE_SPARC INT32_C(14)
51#define CPU_TYPE_I860 INT32_C(15)
52#define CPU_TYPE_POWERPC INT32_C(18)
53#define CPU_TYPE_POWERPC64 (CPU_TYPE_POWERPC | CPU_ARCH_ABI64)
54
55/* cpusubtype */
56#define CPU_SUBTYPE_MULTIPLE INT32_C(-1)
57#define CPU_SUBTYPE_LITTLE_ENDIAN INT32_C(0)
58#define CPU_SUBTYPE_BIG_ENDIAN INT32_C(1)
59
60#define CPU_SUBTYPE_VAX_ALL INT32_C(0)
61#define CPU_SUBTYPE_VAX780 INT32_C(1)
62#define CPU_SUBTYPE_VAX785 INT32_C(2)
63#define CPU_SUBTYPE_VAX750 INT32_C(3)
64#define CPU_SUBTYPE_VAX730 INT32_C(4)
65#define CPU_SUBTYPE_UVAXI INT32_C(5)
66#define CPU_SUBTYPE_UVAXII INT32_C(6)
67#define CPU_SUBTYPE_VAX8200 INT32_C(7)
68#define CPU_SUBTYPE_VAX8500 INT32_C(8)
69#define CPU_SUBTYPE_VAX8600 INT32_C(9)
70#define CPU_SUBTYPE_VAX8650 INT32_C(10)
71#define CPU_SUBTYPE_VAX8800 INT32_C(11)
72#define CPU_SUBTYPE_UVAXIII INT32_C(12)
73
74#define CPU_SUBTYPE_MC680x0_ALL INT32_C(1)
75#define CPU_SUBTYPE_MC68030 INT32_C(1)
76#define CPU_SUBTYPE_MC68040 INT32_C(2)
77#define CPU_SUBTYPE_MC68030_ONLY INT32_C(3)
78
79#define CPU_SUBTYPE_INTEL(fam, model) ( (int32_t )(((model) << 4) | (fam)) )
80#define CPU_SUBTYPE_INTEL_FAMILY(subtype) ( (subtype) & 0xf )
81#define CPU_SUBTYPE_INTEL_MODEL(subtype) ( (subtype) >> 4 )
82#define CPU_SUBTYPE_INTEL_FAMILY_MAX 0xf
83#define CPU_SUBTYPE_INTEL_MODEL_ALL 0
84
85#define CPU_SUBTYPE_I386_ALL CPU_SUBTYPE_INTEL(3, 0)
86#define CPU_SUBTYPE_386 CPU_SUBTYPE_INTEL(3, 0)
87#define CPU_SUBTYPE_486 CPU_SUBTYPE_INTEL(4, 0)
88#define CPU_SUBTYPE_486SX CPU_SUBTYPE_INTEL(4, 8)
89#define CPU_SUBTYPE_586 CPU_SUBTYPE_INTEL(5, 0)
90#define CPU_SUBTYPE_PENT CPU_SUBTYPE_INTEL(5, 0)
91#define CPU_SUBTYPE_PENTPRO CPU_SUBTYPE_INTEL(6, 1)
92#define CPU_SUBTYPE_PENTII_M3 CPU_SUBTYPE_INTEL(6, 3)
93#define CPU_SUBTYPE_PENTII_M5 CPU_SUBTYPE_INTEL(6, 5)
94#define CPU_SUBTYPE_CELERON CPU_SUBTYPE_INTEL(7, 6)
95#define CPU_SUBTYPE_CELERON_MOBILE CPU_SUBTYPE_INTEL(7, 7)
96#define CPU_SUBTYPE_PENTIUM_3 CPU_SUBTYPE_INTEL(8, 0)
97#define CPU_SUBTYPE_PENTIUM_3_M CPU_SUBTYPE_INTEL(8, 1)
98#define CPU_SUBTYPE_PENTIUM_3_XEON CPU_SUBTYPE_INTEL(8, 2)
99#define CPU_SUBTYPE_PENTIUM_M CPU_SUBTYPE_INTEL(9, 0)
100#define CPU_SUBTYPE_PENTIUM_4 CPU_SUBTYPE_INTEL(10, 0)
101#define CPU_SUBTYPE_PENTIUM_4_M CPU_SUBTYPE_INTEL(10, 1)
102#define CPU_SUBTYPE_ITANIUM CPU_SUBTYPE_INTEL(11, 0)
103#define CPU_SUBTYPE_ITANIUM_2 CPU_SUBTYPE_INTEL(11, 1)
104#define CPU_SUBTYPE_XEON CPU_SUBTYPE_INTEL(12, 0)
105#define CPU_SUBTYPE_XEON_MP CPU_SUBTYPE_INTEL(12, 1)
106
107#define CPU_SUBTYPE_X86_ALL INT32_C(3)
108#define CPU_SUBTYPE_X86_64_ALL INT32_C(3)
109#define CPU_SUBTYPE_X86_ARCH1 INT32_C(4)
110
111#define CPU_SUBTYPE_MIPS_ALL INT32_C(0)
112#define CPU_SUBTYPE_MIPS_R2300 INT32_C(1)
113#define CPU_SUBTYPE_MIPS_R2600 INT32_C(2)
114#define CPU_SUBTYPE_MIPS_R2800 INT32_C(3)
115#define CPU_SUBTYPE_MIPS_R2000a INT32_C(4)
116#define CPU_SUBTYPE_MIPS_R2000 INT32_C(5)
117#define CPU_SUBTYPE_MIPS_R3000a INT32_C(6)
118#define CPU_SUBTYPE_MIPS_R3000 INT32_C(7)
119
120#define CPU_SUBTYPE_MC98000_ALL INT32_C(0)
121#define CPU_SUBTYPE_MC98601 INT32_C(1)
122
123#define CPU_SUBTYPE_HPPA_ALL INT32_C(0)
124#define CPU_SUBTYPE_HPPA_7100 INT32_C(0)
125#define CPU_SUBTYPE_HPPA_7100LC INT32_C(1)
126
127#define CPU_SUBTYPE_MC88000_ALL INT32_C(0)
128#define CPU_SUBTYPE_MC88100 INT32_C(1)
129#define CPU_SUBTYPE_MC88110 INT32_C(2)
130
131#define CPU_SUBTYPE_SPARC_ALL INT32_C(0)
132
133#define CPU_SUBTYPE_I860_ALL INT32_C(0)
134#define CPU_SUBTYPE_I860_860 INT32_C(1)
135
136#define CPU_SUBTYPE_POWERPC_ALL INT32_C(0)
137#define CPU_SUBTYPE_POWERPC_601 INT32_C(1)
138#define CPU_SUBTYPE_POWERPC_602 INT32_C(2)
139#define CPU_SUBTYPE_POWERPC_603 INT32_C(3)
140#define CPU_SUBTYPE_POWERPC_603e INT32_C(4)
141#define CPU_SUBTYPE_POWERPC_603ev INT32_C(5)
142#define CPU_SUBTYPE_POWERPC_604 INT32_C(6)
143#define CPU_SUBTYPE_POWERPC_604e INT32_C(7)
144#define CPU_SUBTYPE_POWERPC_620 INT32_C(8)
145#define CPU_SUBTYPE_POWERPC_750 INT32_C(9)
146#define CPU_SUBTYPE_POWERPC_7400 INT32_C(10)
147#define CPU_SUBTYPE_POWERPC_7450 INT32_C(11)
148#define CPU_SUBTYPE_POWERPC_Max INT32_C(10)
149#define CPU_SUBTYPE_POWERPC_SCVger INT32_C(11)
150#define CPU_SUBTYPE_POWERPC_970 INT32_C(100)
151
152#define CPU_SUBTYPE_MASK UINT32_C(0xff000000)
153#define CPU_SUBTYPE_LIB64 UINT32_C(0x80000000)
154
155#endif /* !CPU_ARCH_MASK */
156
157
158typedef struct fat_header
159{
160 uint32_t magic;
161 uint32_t nfat_arch;
162} fat_header_t;
163
164#ifndef IMAGE_FAT_SIGNATURE
165# define IMAGE_FAT_SIGNATURE UINT32_C(0xcafebabe)
166#endif
167#ifndef IMAGE_FAT_SIGNATURE_OE
168# define IMAGE_FAT_SIGNATURE_OE UINT32_C(0xbebafeca)
169#endif
170
171typedef struct fat_arch
172{
173 int32_t cputype;
174 int32_t cpusubtype;
175 uint32_t offset;
176 uint32_t size;
177 uint32_t align;
178} fat_arch_t;
179
180typedef struct mach_header_32
181{
182 uint32_t magic;
183 int32_t cputype;
184 int32_t cpusubtype;
185 uint32_t filetype;
186 uint32_t ncmds;
187 uint32_t sizeofcmds;
188 uint32_t flags;
189} mach_header_32_t;
190
191/* magic */
192#ifndef IMAGE_MACHO32_SIGNATURE
193# define IMAGE_MACHO32_SIGNATURE UINT32_C(0xfeedface)
194#endif
195#ifndef IMAGE_MACHO32_SIGNATURE_OE
196# define IMAGE_MACHO32_SIGNATURE_OE UINT32_C(0xcefaedfe)
197#endif
198#define MH_MAGIC IMAGE_MACHO32_SIGNATURE
199#define MH_CIGAM IMAGE_MACHO32_SIGNATURE_OE
200
201typedef struct mach_header_64
202{
203 uint32_t magic;
204 int32_t cputype;
205 int32_t cpusubtype;
206 uint32_t filetype;
207 uint32_t ncmds;
208 uint32_t sizeofcmds;
209 uint32_t flags;
210 uint32_t reserved;
211} mach_header_64_t;
212
213/* magic */
214#ifndef IMAGE_MACHO64_SIGNATURE
215# define IMAGE_MACHO64_SIGNATURE UINT32_C(0xfeedfacf)
216#endif
217#ifndef IMAGE_MACHO64_SIGNATURE_OE
218# define IMAGE_MACHO64_SIGNATURE_OE UINT32_C(0xfefaedfe)
219#endif
220#define MH_MAGIC_64 IMAGE_MACHO64_SIGNATURE
221#define MH_CIGAM_64 IMAGE_MACHO64_SIGNATURE_OE
222
223/* mach_header_* filetype */
224#define MH_OBJECT UINT32_C(1)
225#define MH_EXECUTE UINT32_C(2)
226#define MH_FVMLIB UINT32_C(3)
227#define MH_CORE UINT32_C(4)
228#define MH_PRELOAD UINT32_C(5)
229#define MH_DYLIB UINT32_C(6)
230#define MH_DYLINKER UINT32_C(7)
231#define MH_BUNDLE UINT32_C(8)
232#define MH_DYLIB_STUB UINT32_C(9)
233#define MH_DSYM UINT32_C(10)
234#define MH_KEXT_BUNDLE UINT32_C(11)
235
236/* mach_header_* flags */
237#define MH_NOUNDEFS UINT32_C(0x00000001)
238#define MH_INCRLINK UINT32_C(0x00000002)
239#define MH_DYLDLINK UINT32_C(0x00000004)
240#define MH_BINDATLOAD UINT32_C(0x00000008)
241#define MH_PREBOUND UINT32_C(0x00000010)
242#define MH_SPLIT_SEGS UINT32_C(0x00000020)
243#define MH_LAZY_INIT UINT32_C(0x00000040)
244#define MH_TWOLEVEL UINT32_C(0x00000080)
245#define MH_FORCE_FLAT UINT32_C(0x00000100)
246#define MH_NOMULTIDEFS UINT32_C(0x00000200)
247#define MH_NOFIXPREBINDING UINT32_C(0x00000400)
248#define MH_PREBINDABLE UINT32_C(0x00000800)
249#define MH_ALLMODSBOUND UINT32_C(0x00001000)
250#define MH_SUBSECTIONS_VIA_SYMBOLS UINT32_C(0x00002000)
251#define MH_CANONICAL UINT32_C(0x00004000)
252#define MH_WEAK_DEFINES UINT32_C(0x00008000)
253#define MH_BINDS_TO_WEAK UINT32_C(0x00010000)
254#define MH_ALLOW_STACK_EXECUTION UINT32_C(0x00020000)
255#define MH_ROOT_SAFE UINT32_C(0x00040000)
256#define MH_SETUID_SAFE UINT32_C(0x00080000)
257#define MH_NO_REEXPORTED_DYLIBS UINT32_C(0x00100000)
258#define MH_PIE UINT32_C(0x00200000)
259#define MH_DEAD_STRIPPABLE_DYLIB UINT32_C(0x00400000)
260#define MH_HAS_TLV_DESCRIPTORS UINT32_C(0x00800000)
261#define MH_NO_HEAP_EXECUTION UINT32_C(0x01000000)
262#define MH_VALID_FLAGS UINT32_C(0x01ffffff)
263
264
265typedef struct load_command
266{
267 uint32_t cmd;
268 uint32_t cmdsize;
269} load_command_t;
270
271/* load cmd */
272#define LC_REQ_DYLD UINT32_C(0x80000000)
273#define LC_SEGMENT_32 UINT32_C(0x01)
274#define LC_SYMTAB UINT32_C(0x02)
275#define LC_SYMSEG UINT32_C(0x03)
276#define LC_THREAD UINT32_C(0x04)
277#define LC_UNIXTHREAD UINT32_C(0x05)
278#define LC_LOADFVMLIB UINT32_C(0x06)
279#define LC_IDFVMLIB UINT32_C(0x07)
280#define LC_IDENT UINT32_C(0x08)
281#define LC_FVMFILE UINT32_C(0x09)
282#define LC_PREPAGE UINT32_C(0x0a)
283#define LC_DYSYMTAB UINT32_C(0x0b)
284#define LC_LOAD_DYLIB UINT32_C(0x0c)
285#define LC_ID_DYLIB UINT32_C(0x0d)
286#define LC_LOAD_DYLINKER UINT32_C(0x0e)
287#define LC_ID_DYLINKER UINT32_C(0x0f)
288#define LC_PREBOUND_DYLIB UINT32_C(0x10)
289#define LC_ROUTINES UINT32_C(0x11)
290#define LC_SUB_FRAMEWORK UINT32_C(0x12)
291#define LC_SUB_UMBRELLA UINT32_C(0x13)
292#define LC_SUB_CLIENT UINT32_C(0x14)
293#define LC_SUB_LIBRARY UINT32_C(0x15)
294#define LC_TWOLEVEL_HINTS UINT32_C(0x16)
295#define LC_PREBIND_CKSUM UINT32_C(0x17)
296#define LC_LOAD_WEAK_DYLIB (UINT32_C(0x18) | LC_REQ_DYLD)
297#define LC_SEGMENT_64 UINT32_C(0x19)
298#define LC_ROUTINES_64 UINT32_C(0x1a)
299#define LC_UUID UINT32_C(0x1b)
300#define LC_RPATH (UINT32_C(0x1c) | LC_REQ_DYLD)
301#define LC_CODE_SIGNATURE UINT32_C(0x1d)
302#define LC_SEGMENT_SPLIT_INFO UINT32_C(0x1e)
303#define LC_REEXPORT_DYLIB (UINT32_C(0x1f) | LC_REQ_DYLD)
304#define LC_LAZY_LOAD_DYLIB UINT32_C(0x20)
305#define LC_ENCRYPTION_INFO UINT32_C(0x21)
306#define LC_DYLD_INFO UINT32_C(0x22)
307#define LC_DYLD_INFO_ONLY (UINT32_C(0x22) | LC_REQ_DYLD)
308#define LC_LOAD_UPWARD_DYLIB (UINT32_C(0x23) | LC_REQ_DYLD)
309#define LC_VERSION_MIN_MACOSX UINT32_C(0x24)
310#define LC_VERSION_MIN_IPHONEOS UINT32_C(0x25)
311#define LC_FUNCTION_STARTS UINT32_C(0x26)
312#define LC_DYLD_ENVIRONMENT UINT32_C(0x27)
313#define LC_MAIN (UINT32_C(0x28) | LC_REQ_DYLD)
314#define LC_DATA_IN_CODE UINT32_C(0x29)
315#define LC_SOURCE_VERSION UINT32_C(0x2a)
316#define LC_DYLIB_CODE_SIGN_DRS UINT32_C(0x2b)
317#define LC_ENCRYPTION_INFO_64 UINT32_C(0x2c)
318#define LC_LINKER_OPTION UINT32_C(0x2d)
319#define LC_LINKER_OPTIMIZATION_HINT UINT32_C(0x2e)
320#define LC_VERSION_MIN_TVOS UINT32_C(0x2f)
321#define LC_VERSION_MIN_WATCHOS UINT32_C(0x30)
322#define LC_NOTE UINT32_C(0x31)
323#define LC_BUILD_VERSION UINT32_C(0x32)
324
325
326typedef struct lc_str
327{
328 uint32_t offset;
329} lc_str_t;
330
331typedef struct segment_command_32
332{
333 uint32_t cmd;
334 uint32_t cmdsize;
335 char segname[16];
336 uint32_t vmaddr;
337 uint32_t vmsize;
338 uint32_t fileoff;
339 uint32_t filesize;
340 uint32_t maxprot;
341 uint32_t initprot;
342 uint32_t nsects;
343 uint32_t flags;
344} segment_command_32_t;
345
346typedef struct segment_command_64
347{
348 uint32_t cmd;
349 uint32_t cmdsize;
350 char segname[16];
351 uint64_t vmaddr;
352 uint64_t vmsize;
353 uint64_t fileoff;
354 uint64_t filesize;
355 uint32_t maxprot;
356 uint32_t initprot;
357 uint32_t nsects;
358 uint32_t flags;
359} segment_command_64_t;
360
361/* segment flags */
362#define SG_HIGHVM UINT32_C(0x00000001)
363#define SG_FVMLIB UINT32_C(0x00000002)
364#define SG_NORELOC UINT32_C(0x00000004)
365#define SG_PROTECTED_VERSION_1 UINT32_C(0x00000008)
366
367/* maxprot/initprot */
368#ifndef VM_PROT_NONE
369# define VM_PROT_NONE UINT32_C(0x00000000)
370# define VM_PROT_READ UINT32_C(0x00000001)
371# define VM_PROT_WRITE UINT32_C(0x00000002)
372# define VM_PROT_EXECUTE UINT32_C(0x00000004)
373# define VM_PROT_ALL UINT32_C(0x00000007)
374#endif
375
376typedef struct section_32
377{
378 char sectname[16];
379 char segname[16];
380 uint32_t addr;
381 uint32_t size;
382 uint32_t offset;
383 uint32_t align;
384 uint32_t reloff;
385 uint32_t nreloc;
386 uint32_t flags;
387 /** For S_LAZY_SYMBOL_POINTERS, S_NON_LAZY_SYMBOL_POINTERS and S_SYMBOL_STUBS
388 * this is the index into the indirect symbol table. */
389 uint32_t reserved1;
390 /** For S_SYMBOL_STUBS this is the entry size. */
391 uint32_t reserved2;
392} section_32_t;
393
394typedef struct section_64
395{
396 char sectname[16];
397 char segname[16];
398 uint64_t addr;
399 uint64_t size;
400 uint32_t offset;
401 uint32_t align;
402 uint32_t reloff;
403 uint32_t nreloc;
404 uint32_t flags;
405 /** For S_LAZY_SYMBOL_POINTERS, S_NON_LAZY_SYMBOL_POINTERS and S_SYMBOL_STUBS
406 * this is the index into the indirect symbol table. */
407 uint32_t reserved1;
408 uint32_t reserved2;
409 uint32_t reserved3;
410} section_64_t;
411
412/* section flags */
413#define SECTION_TYPE UINT32_C(0xff)
414#define S_REGULAR UINT32_C(0x00)
415#define S_ZEROFILL UINT32_C(0x01)
416#define S_CSTRING_LITERALS UINT32_C(0x02)
417#define S_4BYTE_LITERALS UINT32_C(0x03)
418#define S_8BYTE_LITERALS UINT32_C(0x04)
419#define S_LITERAL_POINTERS UINT32_C(0x05)
420#define S_NON_LAZY_SYMBOL_POINTERS UINT32_C(0x06)
421#define S_LAZY_SYMBOL_POINTERS UINT32_C(0x07)
422#define S_SYMBOL_STUBS UINT32_C(0x08)
423#define S_MOD_INIT_FUNC_POINTERS UINT32_C(0x09)
424#define S_MOD_TERM_FUNC_POINTERS UINT32_C(0x0a)
425#define S_COALESCED UINT32_C(0x0b)
426#define S_GB_ZEROFILL UINT32_C(0x0c)
427#define S_INTERPOSING UINT32_C(0x0d)
428#define S_16BYTE_LITERALS UINT32_C(0x0e)
429#define S_DTRACE_DOF UINT32_C(0x0f)
430#define S_LAZY_DYLIB_SYMBOL_POINTERS UINT32_C(0x10)
431#define S_THREAD_LOCAL_REGULAR UINT32_C(0x11)
432#define S_THREAD_LOCAL_ZEROFILL UINT32_C(0x12)
433#define S_THREAD_LOCAL_VARIABLES UINT32_C(0x13)
434#define S_THREAD_LOCAL_VARIABLE_POINTERS UINT32_C(0x14)
435#define S_THREAD_LOCAL_INIT_FUNCTION_POINTERS UINT32_C(0x15)
436
437
438
439
440#define SECTION_ATTRIBUTES UINT32_C(0xffffff00)
441#define SECTION_ATTRIBUTES_USR UINT32_C(0xff000000)
442#define S_ATTR_PURE_INSTRUCTIONS UINT32_C(0x80000000)
443#define S_ATTR_NO_TOC UINT32_C(0x40000000)
444#define S_ATTR_STRIP_STATIC_SYMS UINT32_C(0x20000000)
445#define S_ATTR_NO_DEAD_STRIP UINT32_C(0x10000000)
446#define S_ATTR_LIVE_SUPPORT UINT32_C(0x08000000)
447#define S_ATTR_SELF_MODIFYING_CODE UINT32_C(0x04000000)
448#define S_ATTR_DEBUG UINT32_C(0x02000000)
449#define SECTION_ATTRIBUTES_SYS UINT32_C(0x00ffff00)
450#define S_ATTR_SOME_INSTRUCTIONS UINT32_C(0x00000400)
451#define S_ATTR_EXT_RELOC UINT32_C(0x00000200)
452#define S_ATTR_LOC_RELOC UINT32_C(0x00000100)
453
454/* standard section names */
455#define SEG_PAGEZERO "__PAGEZERO"
456#define SEG_TEXT "__TEXT"
457#define SECT_TEXT "__text"
458#define SECT_FVMLIB_INIT0 "__fvmlib_init0"
459#define SECT_FVMLIB_INIT1 "__fvmlib_init1"
460#define SEG_DATA "__DATA"
461#define SECT_DATA "__data"
462#define SECT_BSS "__bss"
463#define SECT_COMMON "__common"
464#define SEG_OBJC "__OBJC"
465#define SECT_OBJC_SYMBOLS "__symbol_table"
466#define SECT_OBJC_MODULES "__module_info"
467#define SECT_OBJC_STRINGS "__selector_strs"
468#define SECT_OBJC_REFS "__selector_refs"
469#define SEG_ICON "__ICON"
470#define SECT_ICON_HEADER "__header"
471#define SECT_ICON_TIFF "__tiff"
472#define SEG_LINKEDIT "__LINKEDIT"
473#define SEG_UNIXSTACK "__UNIXSTACK"
474#define SEG_IMPORT "__IMPORT"
475
476typedef struct thread_command
477{
478 uint32_t cmd;
479 uint32_t cmdsize;
480} thread_command_t;
481
482typedef struct symtab_command
483{
484 uint32_t cmd;
485 uint32_t cmdsize;
486 uint32_t symoff;
487 uint32_t nsyms;
488 uint32_t stroff;
489 uint32_t strsize;
490} symtab_command_t;
491
492typedef struct dysymtab_command
493{
494 uint32_t cmd;
495 uint32_t cmdsize;
496 /** @name Symbol groupings.
497 * @{ */
498 uint32_t ilocalsym; /**< Index into the symbol table of the first local symbol. */
499 uint32_t nlocalsym; /**< Number of local symbols. */
500 uint32_t iextdefsym; /**< Index into the symbol table of the first externally defined symbol. */
501 uint32_t nextdefsym; /**< Number of externally defined symbols. */
502 uint32_t iundefsym; /**< Index into the symbol table of the first undefined symbol. */
503 uint32_t nundefsym; /**< Number of undefined symbols. */
504 /** @} */
505 uint32_t tocoff; /**< Table of content file offset. (usually empty) */
506 uint32_t ntoc; /**< Number of entries in TOC. */
507 uint32_t modtaboff; /** The module table file offset. (usually empty) */
508 uint32_t nmodtab; /**< Number of entries in the module table. */
509 /** @name Dynamic symbol tables.
510 * @{ */
511 uint32_t extrefsymoff; /**< Externally referenceable symbol table file offset. @sa dylib_reference_t */
512 uint32_t nextrefsym; /**< Number externally referenceable symbols. */
513 uint32_t indirectsymboff; /**< Indirect symbol table (32-bit symtab indexes) for thunks and offset tables. */
514 uint32_t nindirectsymb; /**< Number of indirect symbol table entries. */
515 /** @} */
516 /** @name Relocations.
517 * @{ */
518 uint32_t extreloff; /**< External relocations (r_address is relative to first segment (i.e. RVA)). */
519 uint32_t nextrel; /**< Number of external relocations. */
520 uint32_t locreloff; /**< Local relocations (r_address is relative to first segment (i.e. RVA)). */
521 uint32_t nlocrel; /**< Number of local relocations. */
522 /** @} */
523} dysymtab_command_t;
524AssertCompileSize(dysymtab_command_t, 80);
525
526/** Special indirect symbol table entry value, stripped local symbol. */
527#define INDIRECT_SYMBOL_LOCAL UINT32_C(0x80000000)
528/** Special indirect symbol table entry value, stripped absolute symbol. */
529#define INDIRECT_SYMBOL_ABS UINT32_C(0x40000000)
530
531typedef struct dylib_reference
532{
533 uint32_t isym : 24; /**< Symbol table index. */
534 uint32_t flags : 8; /**< REFERENCE_FLAG_XXX? */
535} dylib_reference_t;
536AssertCompileSize(dylib_reference_t, 4);
537
538
539typedef struct dylib_table_of_contents
540{
541 uint32_t symbol_index; /**< External symbol table entry. */
542 uint32_t module_index; /**< The module table index of the module defining it. */
543} dylib_table_of_contents_t;
544AssertCompileSize(dylib_table_of_contents_t, 8);
545
546
547/** 32-bit module table entry. */
548typedef struct dylib_module
549{
550 uint32_t module_name;
551 uint32_t iextdefsym;
552 uint32_t nextdefsym;
553 uint32_t irefsym;
554 uint32_t nrefsym;
555 uint32_t ilocalsym;
556 uint32_t nlocalsym;
557 uint32_t iextrel;
558 uint32_t nextrel;
559 uint32_t iinit_iterm;
560 uint32_t ninit_nterm;
561 uint32_t objc_module_info_addr;
562 uint32_t objc_module_info_size;
563} dylib_module_32_t;
564AssertCompileSize(dylib_module_32_t, 13*4);
565
566/* a 64-bit module table entry */
567typedef struct dylib_module_64
568{
569 uint32_t module_name;
570 uint32_t iextdefsym;
571 uint32_t nextdefsym;
572 uint32_t irefsym;
573 uint32_t nrefsym;
574 uint32_t ilocalsym;
575 uint32_t nlocalsym;
576 uint32_t iextrel;
577 uint32_t nextrel;
578 uint32_t iinit_iterm;
579 uint32_t ninit_nterm;
580 uint32_t objc_module_info_size;
581 uint64_t objc_module_info_addr;
582} dylib_module_64_t;
583AssertCompileSize(dylib_module_64_t, 12*4+8);
584
585typedef struct uuid_command
586{
587 uint32_t cmd;
588 uint32_t cmdsize;
589 uint8_t uuid[16];
590} uuid_command_t;
591AssertCompileSize(uuid_command_t, 24);
592
593typedef struct linkedit_data_command
594{
595 uint32_t cmd; /**< LC_CODE_SIGNATURE, LC_SEGMENT_SPLIT_INFO, LC_FUNCTION_STARTS */
596 uint32_t cmdsize; /**< Size of this structure. */
597 uint32_t dataoff; /**< Offset into the file of the data. */
598 uint32_t datasize; /**< The size of the data. */
599} linkedit_data_command_t;
600AssertCompileSize(linkedit_data_command_t, 16);
601
602typedef struct version_min_command
603{
604 uint32_t cmd; /**< LC_VERSION_MIN_MACOSX, LC_VERSION_MIN_IPHONEOS */
605 uint32_t cmdsize; /**< Size of this structure. */
606 uint32_t version; /**< 31..16=major, 15..8=minor, 7..0=patch. */
607 uint32_t reserved; /**< MBZ. */
608} version_min_command_t;
609AssertCompileSize(version_min_command_t, 16);
610
611typedef struct macho_nlist_32
612{
613 union
614 {
615 int32_t n_strx;
616 } n_un;
617 uint8_t n_type;
618 uint8_t n_sect;
619 int16_t n_desc;
620 uint32_t n_value;
621} macho_nlist_32_t;
622
623
624typedef struct macho_nlist_64
625{
626 union
627 {
628 uint32_t n_strx;
629 } n_un;
630 uint8_t n_type;
631 uint8_t n_sect;
632 int16_t n_desc;
633 uint64_t n_value;
634} macho_nlist_64_t;
635
636#define MACHO_N_EXT UINT8_C(0x01)
637#define MACHO_N_PEXT UINT8_C(0x10)
638
639#define MACHO_N_TYPE UINT8_C(0x0e)
640#define MACHO_N_UNDF UINT8_C(0x00)
641#define MACHO_N_ABS UINT8_C(0x02)
642#define MACHO_N_INDR UINT8_C(0x0a)
643#define MACHO_N_PBUD UINT8_C(0x0c)
644#define MACHO_N_SECT UINT8_C(0x0e)
645
646#define MACHO_N_STAB UINT8_C(0xe0)
647#define MACHO_N_GSYM UINT8_C(0x20)
648#define MACHO_N_FNAME UINT8_C(0x22)
649#define MACHO_N_FUN UINT8_C(0x24)
650#define MACHO_N_STSYM UINT8_C(0x26)
651#define MACHO_N_LCSYM UINT8_C(0x28)
652#define MACHO_N_BNSYM UINT8_C(0x2e)
653#define MACHO_N_PC UINT8_C(0x30)
654#define MACHO_N_OPT UINT8_C(0x3c)
655#define MACHO_N_RSYM UINT8_C(0x40)
656#define MACHO_N_SLINE UINT8_C(0x44)
657#define MACHO_N_ENSYM UINT8_C(0x4e)
658#define MACHO_N_SSYM UINT8_C(0x60)
659#define MACHO_N_SO UINT8_C(0x64)
660#define MACHO_N_OSO UINT8_C(0x66)
661#define MACHO_N_LSYM UINT8_C(0x80)
662#define MACHO_N_BINCL UINT8_C(0x82)
663#define MACHO_N_SOL UINT8_C(0x84)
664#define MACHO_N_PARAMS UINT8_C(0x86)
665#define MACHO_N_VERSION UINT8_C(0x88)
666#define MACHO_N_OLEVEL UINT8_C(0x8A)
667#define MACHO_N_PSYM UINT8_C(0xa0)
668#define MACHO_N_EINCL UINT8_C(0xa2)
669#define MACHO_N_ENTRY UINT8_C(0xa4)
670#define MACHO_N_LBRAC UINT8_C(0xc0)
671#define MACHO_N_EXCL UINT8_C(0xc2)
672#define MACHO_N_RBRAC UINT8_C(0xe0)
673#define MACHO_N_BCOMM UINT8_C(0xe2)
674#define MACHO_N_ECOMM UINT8_C(0xe4)
675#define MACHO_N_ECOML UINT8_C(0xe8)
676#define MACHO_N_LENG UINT8_C(0xfe)
677
678#define MACHO_NO_SECT UINT8_C(0x00)
679#define MACHO_MAX_SECT UINT8_C(0xff)
680
681#define REFERENCE_TYPE UINT16_C(0x000f)
682#define REFERENCE_FLAG_UNDEFINED_NON_LAZY 0
683#define REFERENCE_FLAG_UNDEFINED_LAZY 1
684#define REFERENCE_FLAG_DEFINED 2
685#define REFERENCE_FLAG_PRIVATE_DEFINED 3
686#define REFERENCE_FLAG_PRIVATE_UNDEFINED_NON_LAZY 4
687#define REFERENCE_FLAG_PRIVATE_UNDEFINED_LAZY 5
688#define REFERENCED_DYNAMICALLY UINT16_C(0x0010)
689
690#define GET_LIBRARY_ORDINAL(a_n_desc) \
691 RT_BYTE2(a_n_desc)
692#define SET_LIBRARY_ORDINAL(a_n_desc, a_ordinal) \
693 do { (a_n_desc) = RT_MAKE_U16(RT_BYTE1(a_n_desc), a_ordinal); } while (0)
694
695#define SELF_LIBRARY_ORDINAL 0x00
696#define MAX_LIBRARY_ORDINAL 0xfd
697#define DYNAMIC_LOOKUP_ORDINAL 0xfe
698#define EXECUTABLE_ORDINAL 0xff
699
700#define N_NO_DEAD_STRIP UINT16_C(0x0020)
701#define N_DESC_DISCARDED UINT16_C(0x0020)
702#define N_WEAK_REF UINT16_C(0x0040)
703#define N_WEAK_DEF UINT16_C(0x0080)
704#define N_REF_TO_WEAK UINT16_C(0x0080)
705#define N_SYMBOL_RESOLVER UINT16_C(0x0100)
706#define N_ALT_ENTRY UINT16_C(0x0200)
707
708typedef struct macho_relocation_info
709{
710 int32_t r_address;
711 uint32_t r_symbolnum : 24;
712 uint32_t r_pcrel : 1;
713 uint32_t r_length : 2;
714 uint32_t r_extern : 1;
715 uint32_t r_type : 4;
716} macho_relocation_info_t;
717AssertCompileSize(macho_relocation_info_t, 8);
718
719#define R_ABS 0
720#define R_SCATTERED UINT32_C(0x80000000)
721
722typedef struct scattered_relocation_info
723{
724#ifdef RT_LITTLE_ENDIAN
725 uint32_t r_address : 24;
726 uint32_t r_type : 4;
727 uint32_t r_length : 2;
728 uint32_t r_pcrel : 1;
729 uint32_t r_scattered : 1;
730#elif defined(RT_BIG_ENDIAN)
731 uint32_t r_scattered : 1;
732 uint32_t r_pcrel : 1;
733 uint32_t r_length : 2;
734 uint32_t r_type : 4;
735 uint32_t r_address : 24;
736#else
737# error "Neither K_ENDIAN isn't LITTLE or BIG!"
738#endif
739 int32_t r_value;
740} scattered_relocation_info_t;
741AssertCompileSize(scattered_relocation_info_t, 8);
742
743typedef union
744{
745 macho_relocation_info_t r;
746 scattered_relocation_info_t s;
747} macho_relocation_union_t;
748AssertCompileSize(macho_relocation_union_t, 8);
749
750typedef enum reloc_type_generic
751{
752 GENERIC_RELOC_VANILLA = 0,
753 GENERIC_RELOC_PAIR,
754 GENERIC_RELOC_SECTDIFF,
755 GENERIC_RELOC_PB_LA_PTR,
756 GENERIC_RELOC_LOCAL_SECTDIFF
757} reloc_type_generic_t;
758
759typedef enum reloc_type_x86_64
760{
761 X86_64_RELOC_UNSIGNED = 0,
762 X86_64_RELOC_SIGNED,
763 X86_64_RELOC_BRANCH,
764 X86_64_RELOC_GOT_LOAD,
765 X86_64_RELOC_GOT,
766 X86_64_RELOC_SUBTRACTOR,
767 X86_64_RELOC_SIGNED_1,
768 X86_64_RELOC_SIGNED_2,
769 X86_64_RELOC_SIGNED_4
770} reloc_type_x86_64_t;
771
772#endif /* !IPRT_INCLUDED_formats_mach_o_h */
773
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette