]> git.saurik.com Git - apple/xnu.git/blame - libkern/mach-o/loader.h
xnu-792.12.6.tar.gz
[apple/xnu.git] / libkern / mach-o / loader.h
CommitLineData
1c79356b
A
1/*
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
3 *
8ad349bb 4 * @APPLE_LICENSE_OSREFERENCE_HEADER_START@
1c79356b 5 *
8ad349bb
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
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
14 * agreement.
15 *
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
18 * file.
19 *
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
27 *
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
1c79356b
A
29 */
30#ifndef _MACHO_LOADER_H_
31#define _MACHO_LOADER_H_
32
33/*
34 * This file describes the format of mach object files.
35 */
36
37/*
38 * <mach/machine.h> is needed here for the cpu_type_t and cpu_subtype_t types
39 * and contains the constants for the possible values of these types.
40 */
41#include <mach/machine.h>
42
43/*
44 * <mach/vm_prot.h> is needed here for the vm_prot_t type and contains the
45 * constants that are or'ed together for the possible values of this type.
46 */
47#include <mach/vm_prot.h>
48
49/*
50 * <machine/thread_status.h> is expected to define the flavors of the thread
51 * states and the structures of those flavors for each machine.
52 */
53#include <mach/machine/thread_status.h>
54
8ad349bb
A
55/*
56 * XXX historically, we have not included this header. Continue to not do so.
57 *
58 * #include <architecture/byte_order.h>
59 */
60
91447636
A
61/*
62 * The mach header appears at the very beginning of the object file; it
63 * is the same for both 32-bit and 64-bit architectures.
1c79356b
A
64 */
65struct mach_header {
91447636 66 uint32_t magic; /* mach magic number identifier */
1c79356b
A
67 cpu_type_t cputype; /* cpu specifier */
68 cpu_subtype_t cpusubtype; /* machine specifier */
91447636
A
69 uint32_t filetype; /* type of file */
70 uint32_t ncmds; /* number of load commands */
71 uint32_t sizeofcmds; /* the size of all the load commands */
72 uint32_t flags; /* flags */
1c79356b
A
73};
74
91447636 75/* Constant for the magic field of the mach_header (32-bit architectures) */
1c79356b 76#define MH_MAGIC 0xfeedface /* the mach magic number */
8ad349bb 77#define MH_CIGAM NXSwapInt(MH_MAGIC)
1c79356b 78
91447636
A
79/* Constant for the magic field of the mach_header_64 (64-bit architectures) */
80#define MH_MAGIC_64 0xfeedfacf /* the 64-bit mach magic number */
8ad349bb 81#define MH_CIGAM_64 NXSwapInt(MH_MAGIC_64)
91447636
A
82
83/* Constants for the cmd field of new load commands, the type */
84#define LC_SEGMENT_64 0x19 /* 64-bit segment of this file to be mapped */
85#define LC_ROUTINES_64 0x1a /* 64-bit image routines */
86
87
1c79356b
A
88/*
89 * The layout of the file depends on the filetype. For all but the MH_OBJECT
90 * file type the segments are padded out and aligned on a segment alignment
91 * boundary for efficient demand pageing. The MH_EXECUTE, MH_FVMLIB, MH_DYLIB,
92 * MH_DYLINKER and MH_BUNDLE file types also have the headers included as part
93 * of their first segment.
94 *
95 * The file type MH_OBJECT is a compact format intended as output of the
96 * assembler and input (and possibly output) of the link editor (the .o
97 * format). All sections are in one unnamed segment with no segment padding.
98 * This format is used as an executable format when the file is so small the
99 * segment padding greatly increases it's size.
100 *
101 * The file type MH_PRELOAD is an executable format intended for things that
102 * not executed under the kernel (proms, stand alones, kernels, etc). The
103 * format can be executed under the kernel but may demand paged it and not
104 * preload it before execution.
105 *
106 * A core file is in MH_CORE format and can be any in an arbritray legal
107 * Mach-O file.
108 *
109 * Constants for the filetype field of the mach_header
110 */
111#define MH_OBJECT 0x1 /* relocatable object file */
112#define MH_EXECUTE 0x2 /* demand paged executable file */
113#define MH_FVMLIB 0x3 /* fixed VM shared library file */
114#define MH_CORE 0x4 /* core file */
115#define MH_PRELOAD 0x5 /* preloaded executable file */
116#define MH_DYLIB 0x6 /* dynamicly bound shared library file*/
117#define MH_DYLINKER 0x7 /* dynamic link editor */
118#define MH_BUNDLE 0x8 /* dynamicly bound bundle file */
119
120/* Constants for the flags field of the mach_header */
121#define MH_NOUNDEFS 0x1 /* the object file has no undefined
122 references, can be executed */
123#define MH_INCRLINK 0x2 /* the object file is the output of an
124 incremental link against a base file
125 and can't be link edited again */
126#define MH_DYLDLINK 0x4 /* the object file is input for the
127 dynamic linker and can't be staticly
128 link edited again */
129#define MH_BINDATLOAD 0x8 /* the object file's undefined
130 references are bound by the dynamic
131 linker when loaded. */
132#define MH_PREBOUND 0x10 /* the file has it's dynamic undefined
133 references prebound. */
134
135/*
136 * The load commands directly follow the mach_header. The total size of all
137 * of the commands is given by the sizeofcmds field in the mach_header. All
138 * load commands must have as their first two fields cmd and cmdsize. The cmd
139 * field is filled in with a constant for that command type. Each command type
140 * has a structure specifically for it. The cmdsize field is the size in bytes
141 * of the particular load command structure plus anything that follows it that
142 * is a part of the load command (i.e. section structures, strings, etc.). To
143 * advance to the next load command the cmdsize can be added to the offset or
91447636
A
144 * pointer of the current load command. The cmdsize for 32-bit architectures
145 * MUST be a multiple of 4 bytes and for 64-bit architectures MUST be a multiple
146 * of 8 bytes (these are forever the maximum alignment of any load commands).
1c79356b
A
147 * sizeof(long) (this is forever the maximum alignment of any load commands).
148 * The padded bytes must be zero. All tables in the object file must also
149 * follow these rules so the file can be memory mapped. Otherwise the pointers
150 * to these tables will not work well or at all on some machines. With all
151 * padding zeroed like objects will compare byte for byte.
152 */
153struct load_command {
154 unsigned long cmd; /* type of load command */
155 unsigned long cmdsize; /* total size of command in bytes */
156};
157
158/* Constants for the cmd field of all load commands, the type */
159#define LC_SEGMENT 0x1 /* segment of this file to be mapped */
160#define LC_SYMTAB 0x2 /* link-edit stab symbol table info */
161#define LC_SYMSEG 0x3 /* link-edit gdb symbol table info (obsolete) */
162#define LC_THREAD 0x4 /* thread */
163#define LC_UNIXTHREAD 0x5 /* unix thread (includes a stack) */
164#define LC_LOADFVMLIB 0x6 /* load a specified fixed VM shared library */
165#define LC_IDFVMLIB 0x7 /* fixed VM shared library identification */
166#define LC_IDENT 0x8 /* object identification info (obsolete) */
167#define LC_FVMFILE 0x9 /* fixed VM file inclusion (internal use) */
168#define LC_PREPAGE 0xa /* prepage command (internal use) */
169#define LC_DYSYMTAB 0xb /* dynamic link-edit symbol table info */
170#define LC_LOAD_DYLIB 0xc /* load a dynamicly linked shared library */
171#define LC_ID_DYLIB 0xd /* dynamicly linked shared lib identification */
172#define LC_LOAD_DYLINKER 0xe /* load a dynamic linker */
173#define LC_ID_DYLINKER 0xf /* dynamic linker identification */
174#define LC_PREBOUND_DYLIB 0x10 /* modules prebound for a dynamicly */
175 /* linked shared library */
176
177/*
178 * A variable length string in a load command is represented by an lc_str
179 * union. The strings are stored just after the load command structure and
180 * the offset is from the start of the load command structure. The size
181 * of the string is reflected in the cmdsize field of the load command.
182 * Once again any padded bytes to bring the cmdsize field to a multiple
183 * of sizeof(long) must be zero.
184 */
185union lc_str {
186 unsigned long offset; /* offset to the string */
187 char *ptr; /* pointer to the string */
188};
189
190/*
191 * The segment load command indicates that a part of this file is to be
192 * mapped into the task's address space. The size of this segment in memory,
193 * vmsize, maybe equal to or larger than the amount to map from this file,
194 * filesize. The file is mapped starting at fileoff to the beginning of
195 * the segment in memory, vmaddr. The rest of the memory of the segment,
196 * if any, is allocated zero fill on demand. The segment's maximum virtual
197 * memory protection and initial virtual memory protection are specified
198 * by the maxprot and initprot fields. If the segment has sections then the
199 * section structures directly follow the segment command and their size is
200 * reflected in cmdsize.
201 */
91447636 202struct segment_command { /* for 32-bit architectures */
1c79356b
A
203 unsigned long cmd; /* LC_SEGMENT */
204 unsigned long cmdsize; /* includes sizeof section structs */
205 char segname[16]; /* segment name */
206 unsigned long vmaddr; /* memory address of this segment */
207 unsigned long vmsize; /* memory size of this segment */
208 unsigned long fileoff; /* file offset of this segment */
209 unsigned long filesize; /* amount to map from the file */
210 vm_prot_t maxprot; /* maximum VM protection */
211 vm_prot_t initprot; /* initial VM protection */
212 unsigned long nsects; /* number of sections in segment */
213 unsigned long flags; /* flags */
214};
215
91447636
A
216/*
217 * The 64-bit segment load command indicates that a part of this file is to be
218 * mapped into a 64-bit task's address space. If the 64-bit segment has
219 * sections then section_64 structures directly follow the 64-bit segment
220 * command and their size is reflected in cmdsize.
221 */
222struct segment_command_64 { /* for 64-bit architectures */
223 uint32_t cmd; /* LC_SEGMENT_64 */
224 uint32_t cmdsize; /* includes sizeof section_64 structs */
225 char segname[16]; /* segment name */
226 uint64_t vmaddr; /* memory address of this segment */
227 uint64_t vmsize; /* memory size of this segment */
228 uint32_t fileoff; /* file offset of this segment */
229 uint32_t filesize; /* amount to map from the file */
230 vm_prot_t maxprot; /* maximum VM protection */
231 vm_prot_t initprot; /* initial VM protection */
232 uint32_t nsects; /* number of sections in segment */
233 uint32_t flags; /* flags */
234};
235
236
1c79356b
A
237/* Constants for the flags field of the segment_command */
238#define SG_HIGHVM 0x1 /* the file contents for this segment is for
239 the high part of the VM space, the low part
240 is zero filled (for stacks in core files) */
241#define SG_FVMLIB 0x2 /* this segment is the VM that is allocated by
242 a fixed VM library, for overlap checking in
243 the link editor */
244#define SG_NORELOC 0x4 /* this segment has nothing that was relocated
245 in it and nothing relocated to it, that is
246 it maybe safely replaced without relocation*/
247
248/*
249 * A segment is made up of zero or more sections. Non-MH_OBJECT files have
250 * all of their segments with the proper sections in each, and padded to the
251 * specified segment alignment when produced by the link editor. The first
252 * segment of a MH_EXECUTE and MH_FVMLIB format file contains the mach_header
253 * and load commands of the object file before it's first section. The zero
254 * fill sections are always last in their segment (in all formats). This
255 * allows the zeroed segment padding to be mapped into memory where zero fill
91447636
A
256 * sections might be. The gigabyte zero fill sections, those with the section
257 * type S_GB_ZEROFILL, can only be in a segment with sections of this type.
258 * These segments are then placed after all other segments.
1c79356b
A
259 *
260 * The MH_OBJECT format has all of it's sections in one segment for
261 * compactness. There is no padding to a specified segment boundary and the
262 * mach_header and load commands are not part of the segment.
263 *
264 * Sections with the same section name, sectname, going into the same segment,
265 * segname, are combined by the link editor. The resulting section is aligned
266 * to the maximum alignment of the combined sections and is the new section's
267 * alignment. The combined sections are aligned to their original alignment in
268 * the combined section. Any padded bytes to get the specified alignment are
269 * zeroed.
270 *
271 * The format of the relocation entries referenced by the reloff and nreloc
272 * fields of the section structure for mach object files is described in the
273 * header file <reloc.h>.
274 */
91447636 275struct section { /* for 32-bit architectures */
1c79356b
A
276 char sectname[16]; /* name of this section */
277 char segname[16]; /* segment this section goes in */
278 unsigned long addr; /* memory address of this section */
279 unsigned long size; /* size in bytes of this section */
280 unsigned long offset; /* file offset of this section */
281 unsigned long align; /* section alignment (power of 2) */
282 unsigned long reloff; /* file offset of relocation entries */
283 unsigned long nreloc; /* number of relocation entries */
284 unsigned long flags; /* flags (section type and attributes)*/
285 unsigned long reserved1; /* reserved */
286 unsigned long reserved2; /* reserved */
287};
288
91447636
A
289struct section_64 { /* for 64-bit architectures */
290 char sectname[16]; /* name of this section */
291 char segname[16]; /* segment this section goes in */
292 uint64_t addr; /* memory address of this section */
293 uint64_t size; /* size in bytes of this section */
294 uint32_t offset; /* file offset of this section */
295 uint32_t align; /* section alignment (power of 2) */
296 uint32_t reloff; /* file offset of relocation entries */
297 uint32_t nreloc; /* number of relocation entries */
298 uint32_t flags; /* flags (section type and attributes)*/
299 uint32_t reserved1; /* reserved (for offset or index) */
300 uint32_t reserved2; /* reserved (for count or sizeof) */
301 uint32_t reserved3; /* reserved */
302};
303
304
1c79356b
A
305/*
306 * The flags field of a section structure is separated into two parts a section
307 * type and section attributes. The section types are mutually exclusive (it
308 * can only have one type) but the section attributes are not (it may have more
309 * than one attribute).
310 */
311#define SECTION_TYPE 0x000000ff /* 256 section types */
312#define SECTION_ATTRIBUTES 0xffffff00 /* 24 section attributes */
313
314/* Constants for the type of a section */
315#define S_REGULAR 0x0 /* regular section */
316#define S_ZEROFILL 0x1 /* zero fill on demand section */
317#define S_CSTRING_LITERALS 0x2 /* section with only literal C strings*/
318#define S_4BYTE_LITERALS 0x3 /* section with only 4 byte literals */
319#define S_8BYTE_LITERALS 0x4 /* section with only 8 byte literals */
320#define S_LITERAL_POINTERS 0x5 /* section with only pointers to */
321 /* literals */
322/*
323 * For the two types of symbol pointers sections and the symbol stubs section
324 * they have indirect symbol table entries. For each of the entries in the
325 * section the indirect symbol table entries, in corresponding order in the
326 * indirect symbol table, start at the index stored in the reserved1 field
327 * of the section structure. Since the indirect symbol table entries
328 * correspond to the entries in the section the number of indirect symbol table
329 * entries is inferred from the size of the section divided by the size of the
330 * entries in the section. For symbol pointers sections the size of the entries
331 * in the section is 4 bytes and for symbol stubs sections the byte size of the
332 * stubs is stored in the reserved2 field of the section structure.
333 */
334#define S_NON_LAZY_SYMBOL_POINTERS 0x6 /* section with only non-lazy
335 symbol pointers */
336#define S_LAZY_SYMBOL_POINTERS 0x7 /* section with only lazy symbol
337 pointers */
338#define S_SYMBOL_STUBS 0x8 /* section with only symbol
339 stubs, byte size of stub in
340 the reserved2 field */
341#define S_MOD_INIT_FUNC_POINTERS 0x9 /* section with only function
342 pointers for initialization*/
343/*
344 * Constants for the section attributes part of the flags field of a section
345 * structure.
346 */
347#define SECTION_ATTRIBUTES_USR 0xff000000 /* User setable attributes */
348#define S_ATTR_PURE_INSTRUCTIONS 0x80000000 /* section contains only true
349 machine instructions */
350#define SECTION_ATTRIBUTES_SYS 0x00ffff00 /* system setable attributes */
351#define S_ATTR_SOME_INSTRUCTIONS 0x00000400 /* section contains some
352 machine instructions */
353#define S_ATTR_EXT_RELOC 0x00000200 /* section has external
354 relocation entries */
355#define S_ATTR_LOC_RELOC 0x00000100 /* section has local
356 relocation entries */
357
358
359/*
360 * The names of segments and sections in them are mostly meaningless to the
361 * link-editor. But there are few things to support traditional UNIX
362 * executables that require the link-editor and assembler to use some names
363 * agreed upon by convention.
364 *
365 * The initial protection of the "__TEXT" segment has write protection turned
366 * off (not writeable).
367 *
368 * The link-editor will allocate common symbols at the end of the "__common"
369 * section in the "__DATA" segment. It will create the section and segment
370 * if needed.
371 */
372
373/* The currently known segment names and the section names in those segments */
374
375#define SEG_PAGEZERO "__PAGEZERO" /* the pagezero segment which has no */
376 /* protections and catches NULL */
377 /* references for MH_EXECUTE files */
378
379
380#define SEG_TEXT "__TEXT" /* the tradition UNIX text segment */
381#define SECT_TEXT "__text" /* the real text part of the text */
382 /* section no headers, and no padding */
383#define SECT_FVMLIB_INIT0 "__fvmlib_init0" /* the fvmlib initialization */
384 /* section */
385#define SECT_FVMLIB_INIT1 "__fvmlib_init1" /* the section following the */
386 /* fvmlib initialization */
387 /* section */
388
389#define SEG_DATA "__DATA" /* the tradition UNIX data segment */
390#define SECT_DATA "__data" /* the real initialized data section */
391 /* no padding, no bss overlap */
392#define SECT_BSS "__bss" /* the real uninitialized data section*/
393 /* no padding */
394#define SECT_COMMON "__common" /* the section common symbols are */
395 /* allocated in by the link editor */
396
397#define SEG_OBJC "__OBJC" /* objective-C runtime segment */
398#define SECT_OBJC_SYMBOLS "__symbol_table" /* symbol table */
399#define SECT_OBJC_MODULES "__module_info" /* module information */
400#define SECT_OBJC_STRINGS "__selector_strs" /* string table */
401#define SECT_OBJC_REFS "__selector_refs" /* string table */
402
403#define SEG_ICON "__ICON" /* the NeXT icon segment */
404#define SECT_ICON_HEADER "__header" /* the icon headers */
405#define SECT_ICON_TIFF "__tiff" /* the icons in tiff format */
406
407#define SEG_LINKEDIT "__LINKEDIT" /* the segment containing all structs */
408 /* created and maintained by the link */
409 /* editor. Created with -seglinkedit */
410 /* option to ld(1) for MH_EXECUTE and */
411 /* FVMLIB file types only */
412
413#define SEG_UNIXSTACK "__UNIXSTACK" /* the unix stack segment */
414
415/*
416 * Fixed virtual memory shared libraries are identified by two things. The
417 * target pathname (the name of the library as found for execution), and the
418 * minor version number. The address of where the headers are loaded is in
419 * header_addr.
420 */
421struct fvmlib {
422 union lc_str name; /* library's target pathname */
423 unsigned long minor_version; /* library's minor version number */
424 unsigned long header_addr; /* library's header address */
425};
426
427/*
428 * A fixed virtual shared library (filetype == MH_FVMLIB in the mach header)
429 * contains a fvmlib_command (cmd == LC_IDFVMLIB) to identify the library.
430 * An object that uses a fixed virtual shared library also contains a
431 * fvmlib_command (cmd == LC_LOADFVMLIB) for each library it uses.
432 */
433struct fvmlib_command {
434 unsigned long cmd; /* LC_IDFVMLIB or LC_LOADFVMLIB */
435 unsigned long cmdsize; /* includes pathname string */
436 struct fvmlib fvmlib; /* the library identification */
437};
438
439/*
440 * Dynamicly linked shared libraries are identified by two things. The
441 * pathname (the name of the library as found for execution), and the
442 * compatibility version number. The pathname must match and the compatibility
443 * number in the user of the library must be greater than or equal to the
444 * library being used. The time stamp is used to record the time a library was
445 * built and copied into user so it can be use to determined if the library used
446 * at runtime is exactly the same as used to built the program.
447 */
448struct dylib {
449 union lc_str name; /* library's path name */
450 unsigned long timestamp; /* library's build time stamp */
451 unsigned long current_version; /* library's current version number */
452 unsigned long compatibility_version;/* library's compatibility vers number*/
453};
454
455/*
456 * A dynamicly linked shared library (filetype == MH_DYLIB in the mach header)
457 * contains a dylib_command (cmd == LC_ID_DYLIB) to identify the library.
458 * An object that uses a dynamicly linked shared library also contains a
459 * dylib_command (cmd == LC_LOAD_DYLIB) for each library it uses.
460 */
461struct dylib_command {
462 unsigned long cmd; /* LC_ID_DYLIB or LC_LOAD_DYLIB */
463 unsigned long cmdsize; /* includes pathname string */
464 struct dylib dylib; /* the library identification */
465};
466
467/*
468 * A program (filetype == MH_EXECUTE) or bundle (filetype == MH_BUNDLE) that is
469 * prebound to it's dynamic libraries has one of these for each library that
470 * the static linker used in prebinding. It contains a bit vector for the
471 * modules in the library. The bits indicate which modules are bound (1) and
472 * which are not (0) from the library. The bit for module 0 is the low bit
473 * of the first byte. So the bit for the Nth module is:
474 * (linked_modules[N/8] >> N%8) & 1
475 */
476struct prebound_dylib_command {
477 unsigned long cmd; /* LC_PREBOUND_DYLIB */
478 unsigned long cmdsize; /* includes strings */
479 union lc_str name; /* library's path name */
480 unsigned long nmodules; /* number of modules in library */
481 union lc_str linked_modules; /* bit vector of linked modules */
482};
483
484/*
485 * A program that uses a dynamic linker contains a dylinker_command to identify
486 * the name of the dynamic linker (LC_LOAD_DYLINKER). And a dynamic linker
487 * contains a dylinker_command to identify the dynamic linker (LC_ID_DYLINKER).
488 * A file can have at most one of these.
489 */
490struct dylinker_command {
491 unsigned long cmd; /* LC_ID_DYLINKER or LC_LOAD_DYLINKER */
492 unsigned long cmdsize; /* includes pathname string */
493 union lc_str name; /* dynamic linker's path name */
494};
495
496/*
497 * Thread commands contain machine-specific data structures suitable for
498 * use in the thread state primitives. The machine specific data structures
499 * follow the struct thread_command as follows.
500 * Each flavor of machine specific data structure is preceded by an unsigned
501 * long constant for the flavor of that data structure, an unsigned long
502 * that is the count of longs of the size of the state data structure and then
503 * the state data structure follows. This triple may be repeated for many
504 * flavors. The constants for the flavors, counts and state data structure
505 * definitions are expected to be in the header file <machine/thread_status.h>.
506 * These machine specific data structures sizes must be multiples of
507 * sizeof(long). The cmdsize reflects the total size of the thread_command
508 * and all of the sizes of the constants for the flavors, counts and state
509 * data structures.
510 *
511 * For executable objects that are unix processes there will be one
512 * thread_command (cmd == LC_UNIXTHREAD) created for it by the link-editor.
513 * This is the same as a LC_THREAD, except that a stack is automatically
514 * created (based on the shell's limit for the stack size). Command arguments
515 * and environment variables are copied onto that stack.
516 */
517struct thread_command {
518 unsigned long cmd; /* LC_THREAD or LC_UNIXTHREAD */
519 unsigned long cmdsize; /* total size of this command */
520 /* unsigned long flavor flavor of thread state */
521 /* unsigned long count count of longs in thread state */
522 /* struct XXX_thread_state state thread state for this flavor */
523 /* ... */
524};
525
526/*
527 * The symtab_command contains the offsets and sizes of the link-edit 4.3BSD
528 * "stab" style symbol table information as described in the header files
529 * <nlist.h> and <stab.h>.
530 */
531struct symtab_command {
532 unsigned long cmd; /* LC_SYMTAB */
533 unsigned long cmdsize; /* sizeof(struct symtab_command) */
534 unsigned long symoff; /* symbol table offset */
535 unsigned long nsyms; /* number of symbol table entries */
536 unsigned long stroff; /* string table offset */
537 unsigned long strsize; /* string table size in bytes */
538};
539
540/*
541 * This is the second set of the symbolic information which is used to support
542 * the data structures for the dynamicly link editor.
543 *
544 * The original set of symbolic information in the symtab_command which contains
545 * the symbol and string tables must also be present when this load command is
546 * present. When this load command is present the symbol table is organized
547 * into three groups of symbols:
548 * local symbols (static and debugging symbols) - grouped by module
549 * defined external symbols - grouped by module (sorted by name if not lib)
550 * undefined external symbols (sorted by name)
551 * In this load command there are offsets and counts to each of the three groups
552 * of symbols.
553 *
554 * This load command contains a the offsets and sizes of the following new
555 * symbolic information tables:
556 * table of contents
557 * module table
558 * reference symbol table
559 * indirect symbol table
560 * The first three tables above (the table of contents, module table and
561 * reference symbol table) are only present if the file is a dynamicly linked
562 * shared library. For executable and object modules, which are files
563 * containing only one module, the information that would be in these three
564 * tables is determined as follows:
565 * table of contents - the defined external symbols are sorted by name
566 * module table - the file contains only one module so everything in the
567 * file is part of the module.
568 * reference symbol table - is the defined and undefined external symbols
569 *
570 * For dynamicly linked shared library files this load command also contains
571 * offsets and sizes to the pool of relocation entries for all sections
572 * separated into two groups:
573 * external relocation entries
574 * local relocation entries
575 * For executable and object modules the relocation entries continue to hang
576 * off the section structures.
577 */
578struct dysymtab_command {
579 unsigned long cmd; /* LC_DYSYMTAB */
580 unsigned long cmdsize; /* sizeof(struct dysymtab_command) */
581
582 /*
583 * The symbols indicated by symoff and nsyms of the LC_SYMTAB load command
584 * are grouped into the following three groups:
585 * local symbols (further grouped by the module they are from)
586 * defined external symbols (further grouped by the module they are from)
587 * undefined symbols
588 *
589 * The local symbols are used only for debugging. The dynamic binding
590 * process may have to use them to indicate to the debugger the local
591 * symbols for a module that is being bound.
592 *
593 * The last two groups are used by the dynamic binding process to do the
594 * binding (indirectly through the module table and the reference symbol
595 * table when this is a dynamicly linked shared library file).
596 */
597 unsigned long ilocalsym; /* index to local symbols */
598 unsigned long nlocalsym; /* number of local symbols */
599
600 unsigned long iextdefsym; /* index to externally defined symbols */
601 unsigned long nextdefsym; /* number of externally defined symbols */
602
603 unsigned long iundefsym; /* index to undefined symbols */
604 unsigned long nundefsym; /* number of undefined symbols */
605
606 /*
607 * For the for the dynamic binding process to find which module a symbol
608 * is defined in the table of contents is used (analogous to the ranlib
609 * structure in an archive) which maps defined external symbols to modules
610 * they are defined in. This exists only in a dynamicly linked shared
611 * library file. For executable and object modules the defined external
612 * symbols are sorted by name and is use as the table of contents.
613 */
614 unsigned long tocoff; /* file offset to table of contents */
615 unsigned long ntoc; /* number of entries in table of contents */
616
617 /*
618 * To support dynamic binding of "modules" (whole object files) the symbol
619 * table must reflect the modules that the file was created from. This is
620 * done by having a module table that has indexes and counts into the merged
621 * tables for each module. The module structure that these two entries
622 * refer to is described below. This exists only in a dynamicly linked
623 * shared library file. For executable and object modules the file only
624 * contains one module so everything in the file belongs to the module.
625 */
626 unsigned long modtaboff; /* file offset to module table */
627 unsigned long nmodtab; /* number of module table entries */
628
629 /*
630 * To support dynamic module binding the module structure for each module
631 * indicates the external references (defined and undefined) each module
632 * makes. For each module there is an offset and a count into the
633 * reference symbol table for the symbols that the module references.
634 * This exists only in a dynamicly linked shared library file. For
635 * executable and object modules the defined external symbols and the
636 * undefined external symbols indicates the external references.
637 */
638 unsigned long extrefsymoff; /* offset to referenced symbol table */
639 unsigned long nextrefsyms; /* number of referenced symbol table entries */
640
641 /*
642 * The sections that contain "symbol pointers" and "routine stubs" have
643 * indexes and (implied counts based on the size of the section and fixed
644 * size of the entry) into the "indirect symbol" table for each pointer
645 * and stub. For every section of these two types the index into the
646 * indirect symbol table is stored in the section header in the field
647 * reserved1. An indirect symbol table entry is simply a 32bit index into
648 * the symbol table to the symbol that the pointer or stub is referring to.
649 * The indirect symbol table is ordered to match the entries in the section.
650 */
651 unsigned long indirectsymoff; /* file offset to the indirect symbol table */
652 unsigned long nindirectsyms; /* number of indirect symbol table entries */
653
654 /*
655 * To support relocating an individual module in a library file quickly the
656 * external relocation entries for each module in the library need to be
657 * accessed efficiently. Since the relocation entries can't be accessed
658 * through the section headers for a library file they are separated into
659 * groups of local and external entries further grouped by module. In this
660 * case the presents of this load command who's extreloff, nextrel,
661 * locreloff and nlocrel fields are non-zero indicates that the relocation
662 * entries of non-merged sections are not referenced through the section
663 * structures (and the reloff and nreloc fields in the section headers are
664 * set to zero).
665 *
666 * Since the relocation entries are not accessed through the section headers
667 * this requires the r_address field to be something other than a section
668 * offset to identify the item to be relocated. In this case r_address is
669 * set to the offset from the vmaddr of the first LC_SEGMENT command.
670 *
671 * The relocation entries are grouped by module and the module table
672 * entries have indexes and counts into them for the group of external
673 * relocation entries for that the module.
674 *
675 * For sections that are merged across modules there must not be any
676 * remaining external relocation entries for them (for merged sections
677 * remaining relocation entries must be local).
678 */
679 unsigned long extreloff; /* offset to external relocation entries */
680 unsigned long nextrel; /* number of external relocation entries */
681
682 /*
683 * All the local relocation entries are grouped together (they are not
684 * grouped by their module since they are only used if the object is moved
685 * from it staticly link edited address).
686 */
687 unsigned long locreloff; /* offset to local relocation entries */
688 unsigned long nlocrel; /* number of local relocation entries */
689
690};
691
692/*
693 * An indirect symbol table entry is simply a 32bit index into the symbol table
694 * to the symbol that the pointer or stub is refering to. Unless it is for a
695 * non-lazy symbol pointer section for a defined symbol which strip(1) as
696 * removed. In which case it has the value INDIRECT_SYMBOL_LOCAL. If the
697 * symbol was also absolute INDIRECT_SYMBOL_ABS is or'ed with that.
698 */
699#define INDIRECT_SYMBOL_LOCAL 0x80000000
700#define INDIRECT_SYMBOL_ABS 0x40000000
701
702
703/* a table of contents entry */
704struct dylib_table_of_contents {
705 unsigned long symbol_index; /* the defined external symbol
706 (index into the symbol table) */
707 unsigned long module_index; /* index into the module table this symbol
708 is defined in */
709};
710
711/* a module table entry */
712struct dylib_module {
713 unsigned long module_name; /* the module name (index into string table) */
714
715 unsigned long iextdefsym; /* index into externally defined symbols */
716 unsigned long nextdefsym; /* number of externally defined symbols */
717 unsigned long irefsym; /* index into reference symbol table */
718 unsigned long nrefsym; /* number of reference symbol table entries */
719 unsigned long ilocalsym; /* index into symbols for local symbols */
720 unsigned long nlocalsym; /* number of local symbols */
721
722 unsigned long iextrel; /* index into external relocation entries */
723 unsigned long nextrel; /* number of external relocation entries */
724
725 unsigned long iinit; /* index into the init section */
726 unsigned long ninit; /* number of init section entries */
727
728 unsigned long /* for this module address of the start of */
729 objc_module_info_addr; /* the (__OBJC,__module_info) section */
730 unsigned long /* for this module size of */
731 objc_module_info_size; /* the (__OBJC,__module_info) section */
732};
733
91447636
A
734/* a 64-bit module table entry */
735struct dylib_module_64 {
736 uint32_t module_name; /* the module name (index into string table) */
737
738 uint32_t iextdefsym; /* index into externally defined symbols */
739 uint32_t nextdefsym; /* number of externally defined symbols */
740 uint32_t irefsym; /* index into reference symbol table */
741 uint32_t nrefsym; /* number of reference symbol table entries */
742 uint32_t ilocalsym; /* index into symbols for local symbols */
743 uint32_t nlocalsym; /* number of local symbols */
744
745 uint32_t iextrel; /* index into external relocation entries */
746 uint32_t nextrel; /* number of external relocation entries */
747
748 uint32_t iinit_iterm; /* low 16 bits are the index into the init
749 section, high 16 bits are the index into
750 the term section */
751 uint32_t ninit_nterm; /* low 16 bits are the number of init section
752 entries, high 16 bits are the number of
753 term section entries */
754
755 uint32_t /* for this module size of the */
756 objc_module_info_size; /* (__OBJC,__module_info) section */
757 uint64_t /* for this module address of the start of */
758 objc_module_info_addr; /* the (__OBJC,__module_info) section */
759};
760
761
1c79356b
A
762/*
763 * The entries in the reference symbol table are used when loading the module
764 * (both by the static and dynamic link editors) and if the module is unloaded
765 * or replaced. Therefore all external symbols (defined and undefined) are
766 * listed in the module's reference table. The flags describe the type of
767 * reference that is being made. The constants for the flags are defined in
768 * <mach-o/nlist.h> as they are also used for symbol table entries.
769 */
770struct dylib_reference {
771 unsigned long isym:24, /* index into the symbol table */
772 flags:8; /* flags to indicate the type of reference */
773};
774
775/*
776 * The symseg_command contains the offset and size of the GNU style
777 * symbol table information as described in the header file <symseg.h>.
778 * The symbol roots of the symbol segments must also be aligned properly
779 * in the file. So the requirement of keeping the offsets aligned to a
780 * multiple of a sizeof(long) translates to the length field of the symbol
781 * roots also being a multiple of a long. Also the padding must again be
782 * zeroed. (THIS IS OBSOLETE and no longer supported).
783 */
784struct symseg_command {
785 unsigned long cmd; /* LC_SYMSEG */
786 unsigned long cmdsize; /* sizeof(struct symseg_command) */
787 unsigned long offset; /* symbol segment offset */
788 unsigned long size; /* symbol segment size in bytes */
789};
790
791/*
792 * The ident_command contains a free format string table following the
793 * ident_command structure. The strings are null terminated and the size of
794 * the command is padded out with zero bytes to a multiple of sizeof(long).
795 * (THIS IS OBSOLETE and no longer supported).
796 */
797struct ident_command {
798 unsigned long cmd; /* LC_IDENT */
799 unsigned long cmdsize; /* strings that follow this command */
800};
801
802/*
803 * The fvmfile_command contains a reference to a file to be loaded at the
804 * specified virtual address. (Presently, this command is reserved for NeXT
805 * internal use. The kernel ignores this command when loading a program into
806 * memory).
807 */
808struct fvmfile_command {
809 unsigned long cmd; /* LC_FVMFILE */
810 unsigned long cmdsize; /* includes pathname string */
811 union lc_str name; /* files pathname */
812 unsigned long header_addr; /* files virtual address */
813};
814
815#endif /*_MACHO_LOADER_H_*/