]> git.ipfire.org Git - thirdparty/glibc.git/blob - elf/elf.h
update from main archive 960105
[thirdparty/glibc.git] / elf / elf.h
1 /* This file defines standard ELF types, structures, and macros.
2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ian Lance Taylor <ian@cygnus.com>.
5
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Library General Public License as
8 published by the Free Software Foundation; either version 2 of the
9 License, or (at your option) any later version.
10
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Library General Public License for more details.
15
16 You should have received a copy of the GNU Library General Public
17 License along with the GNU C Library; see the file COPYING.LIB. If not,
18 write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
19 Boston, MA 02111-1307, USA. */
20
21 #ifndef _ELF_H
22
23 #define _ELF_H 1
24 #include <sys/cdefs.h>
25
26 __BEGIN_DECLS
27
28 /* Standard ELF types. Using __attribute__ mode ensures that GCC
29 will choose the right number of bits for these types. */
30
31 /* Type for a 16-bit quantity. */
32 typedef unsigned int Elf32_Half __attribute__ ((mode (HI)));
33 typedef unsigned int Elf64_Half __attribute__ ((mode (HI)));
34
35 /* Types for signed and unsigned 32-bit quantities. */
36 typedef unsigned int Elf32_Word __attribute__ ((mode (SI)));
37 typedef int Elf32_Sword __attribute__ ((mode (SI)));
38 typedef unsigned int Elf64_Word __attribute__ ((mode (SI)));
39 typedef int Elf64_Sword __attribute__ ((mode (SI)));
40
41 /* Types for signed and unsigned 64-bit quantities. */
42 typedef unsigned int Elf32_Xword __attribute__ ((mode (DI)));
43 typedef int Elf32_Sxword __attribute__ ((mode (DI)));
44 typedef unsigned int Elf64_Xword __attribute__ ((mode (DI)));
45 typedef int Elf64_Sxword __attribute__ ((mode (DI)));
46
47 /* Type of addresses. */
48 typedef unsigned int Elf32_Addr __attribute__ ((mode (SI)));
49 typedef unsigned int Elf64_Addr __attribute__ ((mode (DI)));
50
51 /* Type of file offsets. */
52 typedef unsigned int Elf32_Off __attribute__ ((mode (SI)));
53 typedef unsigned int Elf64_Off __attribute__ ((mode (DI)));
54
55 /* Type for section indices, which are 16-bit quantities. */
56 typedef unsigned int Elf32_Section __attribute__ ((mode (HI)));
57 typedef unsigned int Elf64_Section __attribute__ ((mode (HI)));
58
59 /* Type of symbol indices. */
60 typedef unsigned int Elf32_Symndx __attribute__ ((mode (SI)));
61 typedef unsigned int Elf64_Symndx __attribute__ ((mode (DI)));
62
63
64 /* The ELF file header. This appears at the start of every ELF file. */
65
66 #define EI_NIDENT (16)
67
68 typedef struct
69 {
70 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
71 Elf32_Half e_type; /* Object file type */
72 Elf32_Half e_machine; /* Architecture */
73 Elf32_Word e_version; /* Object file version */
74 Elf32_Addr e_entry; /* Entry point virtual address */
75 Elf32_Off e_phoff; /* Program header table file offset */
76 Elf32_Off e_shoff; /* Section header table file offset */
77 Elf32_Word e_flags; /* Processor-specific flags */
78 Elf32_Half e_ehsize; /* ELF header size in bytes */
79 Elf32_Half e_phentsize; /* Program header table entry size */
80 Elf32_Half e_phnum; /* Program header table entry count */
81 Elf32_Half e_shentsize; /* Section header table entry size */
82 Elf32_Half e_shnum; /* Section header table entry count */
83 Elf32_Half e_shstrndx; /* Section header string table index */
84 } Elf32_Ehdr;
85
86 typedef struct
87 {
88 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
89 Elf64_Half e_type; /* Object file type */
90 Elf64_Half e_machine; /* Architecture */
91 Elf64_Word e_version; /* Object file version */
92 Elf64_Addr e_entry; /* Entry point virtual address */
93 Elf64_Off e_phoff; /* Program header table file offset */
94 Elf64_Off e_shoff; /* Section header table file offset */
95 Elf64_Word e_flags; /* Processor-specific flags */
96 Elf64_Half e_ehsize; /* ELF header size in bytes */
97 Elf64_Half e_phentsize; /* Program header table entry size */
98 Elf64_Half e_phnum; /* Program header table entry count */
99 Elf64_Half e_shentsize; /* Section header table entry size */
100 Elf64_Half e_shnum; /* Section header table entry count */
101 Elf64_Half e_shstrndx; /* Section header string table index */
102 } Elf64_Ehdr;
103
104 /* Fields in the e_ident array. The EI_* macros are indices into the
105 array. The macros under each EI_* macro are the values the byte
106 may have. */
107
108 #define EI_MAG0 0 /* File identification byte 0 index */
109 #define ELFMAG0 0x7f /* Magic number byte 0 */
110
111 #define EI_MAG1 1 /* File identification byte 1 index */
112 #define ELFMAG1 'E' /* Magic number byte 1 */
113
114 #define EI_MAG2 2 /* File identification byte 2 index */
115 #define ELFMAG2 'L' /* Magic number byte 2 */
116
117 #define EI_MAG3 3 /* File identification byte 3 index */
118 #define ELFMAG3 'F' /* Magic number byte 3 */
119
120 /* Conglomeration of the identification bytes, for easy testing as a word. */
121 #define ELFMAG "\177ELF"
122 #define SELFMAG 4
123
124 #define EI_CLASS 4 /* File class byte index */
125 #define ELFCLASSNONE 0 /* Invalid class */
126 #define ELFCLASS32 1 /* 32-bit objects */
127 #define ELFCLASS64 2 /* 64-bit objects */
128
129 #define EI_DATA 5 /* Data encoding byte index */
130 #define ELFDATANONE 0 /* Invalid data encoding */
131 #define ELFDATA2LSB 1 /* 2's complement, little endian */
132 #define ELFDATA2MSB 2 /* 2's complement, big endian */
133
134 #define EI_VERSION 6 /* File version byte index */
135 /* Value must be EV_CURRENT */
136
137 #define EI_PAD 7 /* Byte index of padding bytes */
138
139 /* Legal values for e_type (object file type). */
140
141 #define ET_NONE 0 /* No file type */
142 #define ET_REL 1 /* Relocatable file */
143 #define ET_EXEC 2 /* Executable file */
144 #define ET_DYN 3 /* Shared object file */
145 #define ET_CORE 4 /* Core file */
146 #define ET_NUM 5 /* Number of defined types. */
147 #define ET_LOPROC 0xff00 /* Processor-specific */
148 #define ET_HIPROC 0xffff /* Processor-specific */
149
150 /* Legal values for e_machine (architecture). */
151
152 #define EM_NONE 0 /* No machine */
153 #define EM_M32 1 /* AT&T WE 32100 */
154 #define EM_SPARC 2 /* SUN SPARC */
155 #define EM_386 3 /* Intel 80386 */
156 #define EM_68K 4 /* Motorola m68k family */
157 #define EM_88K 5 /* Motorola m88k family */
158 #define EM_486 6 /* Intel 80486 */
159 #define EM_860 7 /* Intel 80860 */
160 #define EM_MIPS 8 /* MIPS R3000 big-endian */
161 #define EM_S370 9 /* Amdahl */
162 #define EM_MIPS_RS4_BE 10 /* MIPS R4000 big-endian */
163
164 #define EM_SPARC64 11 /* SPARC v9 (not official) 64-bit */
165
166 #define EM_PARISC 15 /* HPPA */
167 #define EM_PPC 20 /* PowerPC */
168
169 /* If it is necessary to assign new unofficial EM_* values, please
170 pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the
171 chances of collision with official or non-GNU unofficial values. */
172
173 #define EM_ALPHA 0x9026
174
175 /* Legal values for e_version (version). */
176
177 #define EV_NONE 0 /* Invalid ELF version */
178 #define EV_CURRENT 1 /* Current version */
179
180 /* Section header. */
181
182 typedef struct
183 {
184 Elf32_Word sh_name; /* Section name (string tbl index) */
185 Elf32_Word sh_type; /* Section type */
186 Elf32_Word sh_flags; /* Section flags */
187 Elf32_Addr sh_addr; /* Section virtual addr at execution */
188 Elf32_Off sh_offset; /* Section file offset */
189 Elf32_Word sh_size; /* Section size in bytes */
190 Elf32_Word sh_link; /* Link to another section */
191 Elf32_Word sh_info; /* Additional section information */
192 Elf32_Word sh_addralign; /* Section alignment */
193 Elf32_Word sh_entsize; /* Entry size if section holds table */
194 } Elf32_Shdr;
195
196 typedef struct
197 {
198 Elf64_Word sh_name; /* Section name (string tbl index) */
199 Elf64_Word sh_type; /* Section type */
200 Elf64_Xword sh_flags; /* Section flags */
201 Elf64_Addr sh_addr; /* Section virtual addr at execution */
202 Elf64_Off sh_offset; /* Section file offset */
203 Elf64_Xword sh_size; /* Section size in bytes */
204 Elf64_Word sh_link; /* Link to another section */
205 Elf64_Word sh_info; /* Additional section information */
206 Elf64_Xword sh_addralign; /* Section alignment */
207 Elf64_Xword sh_entsize; /* Entry size if section holds table */
208 } Elf64_Shdr;
209
210 /* Special section indices. */
211
212 #define SHN_UNDEF 0 /* Undefined section */
213 #define SHN_LORESERVE 0xff00 /* Start of reserved indices */
214 #define SHN_LOPROC 0xff00 /* Start of processor-specific */
215 #define SHN_HIPROC 0xff1f /* End of processor-specific */
216 #define SHN_ABS 0xfff1 /* Associated symbol is absolute */
217 #define SHN_COMMON 0xfff2 /* Associated symbol is common */
218 #define SHN_HIRESERVE 0xffff /* End of reserved indices */
219
220 /* Legal values for sh_type (section type). */
221
222 #define SHT_NULL 0 /* Section header table entry unused */
223 #define SHT_PROGBITS 1 /* Program data */
224 #define SHT_SYMTAB 2 /* Symbol table */
225 #define SHT_STRTAB 3 /* String table */
226 #define SHT_RELA 4 /* Relocation entries with addends */
227 #define SHT_HASH 5 /* Symbol hash table */
228 #define SHT_DYNAMIC 6 /* Dynamic linking information */
229 #define SHT_NOTE 7 /* Notes */
230 #define SHT_NOBITS 8 /* Program space with no data (bss) */
231 #define SHT_REL 9 /* Relocation entries, no addends */
232 #define SHT_SHLIB 10 /* Reserved */
233 #define SHT_DYNSYM 11 /* Dynamic linker symbol table */
234 #define SHT_NUM 12 /* Number of defined types. */
235 #define SHT_LOPROC 0x70000000 /* Start of processor-specific */
236 #define SHT_HIPROC 0x7fffffff /* End of processor-specific */
237 #define SHT_LOUSER 0x80000000 /* Start of application-specific */
238 #define SHT_HIUSER 0x8fffffff /* End of application-specific */
239
240 /* Legal values for sh_flags (section flags). */
241
242 #define SHF_WRITE (1 << 0) /* Writable */
243 #define SHF_ALLOC (1 << 1) /* Occupies memory during execution */
244 #define SHF_EXECINSTR (1 << 2) /* Executable */
245 #define SHF_MASKPROC 0xf0000000 /* Processor-specific */
246
247 /* Symbol table entry. */
248
249 typedef struct
250 {
251 Elf32_Word st_name; /* Symbol name (string tbl index) */
252 Elf32_Addr st_value; /* Symbol value */
253 Elf32_Word st_size; /* Symbol size */
254 unsigned char st_info; /* Symbol type and binding */
255 unsigned char st_other; /* No defined meaning, 0 */
256 Elf32_Section st_shndx; /* Section index */
257 } Elf32_Sym;
258
259 typedef struct
260 {
261 Elf64_Word st_name; /* Symbol name (string tbl index) */
262 unsigned char st_info; /* Symbol type and binding */
263 unsigned char st_other; /* No defined meaning, 0 */
264 Elf64_Section st_shndx; /* Section index */
265 Elf64_Addr st_value; /* Symbol value */
266 Elf64_Xword st_size; /* Symbol size */
267 } Elf64_Sym;
268
269 /* Special section index. */
270
271 #define SHN_UNDEF 0 /* No section, undefined symbol. */
272
273 /* How to extract and insert information held in the st_info field. */
274
275 #define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4)
276 #define ELF32_ST_TYPE(val) ((val) & 0xf)
277 #define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
278
279 /* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
280 #define ELF64_ST_BIND(val) ELF32_ST_BIND (val)
281 #define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val)
282 #define ELF64_ST_INFO(bind, type) ELF32_ST_INFO ((bind), (type))
283
284 /* Legal values for ST_BIND subfield of st_info (symbol binding). */
285
286 #define STB_LOCAL 0 /* Local symbol */
287 #define STB_GLOBAL 1 /* Global symbol */
288 #define STB_WEAK 2 /* Weak symbol */
289 #define STB_NUM 3 /* Number of defined types. */
290 #define STB_LOPROC 13 /* Start of processor-specific */
291 #define STB_HIPROC 15 /* End of processor-specific */
292
293 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
294
295 #define STT_NOTYPE 0 /* Symbol type is unspecified */
296 #define STT_OBJECT 1 /* Symbol is a data object */
297 #define STT_FUNC 2 /* Symbol is a code object */
298 #define STT_SECTION 3 /* Symbol associated with a section */
299 #define STT_FILE 4 /* Symbol's name is file name */
300 #define STT_NUM 5 /* Number of defined types. */
301 #define STT_LOPROC 13 /* Start of processor-specific */
302 #define STT_HIPROC 15 /* End of processor-specific */
303
304
305 /* Symbol table indices are found in the hash buckets and chain table
306 of a symbol hash table section. This special index value indicates
307 the end of a chain, meaning no further symbols are found in that bucket. */
308
309 #define STN_UNDEF 0 /* End of a chain. */
310
311
312 /* Relocation table entry without addend (in section of type SHT_REL). */
313
314 typedef struct
315 {
316 Elf32_Addr r_offset; /* Address */
317 Elf32_Word r_info; /* Relocation type and symbol index */
318 } Elf32_Rel;
319
320 /* I have seen two different definitions of the Elf64_Rel and
321 Elf64_Rela structures, so we'll leave them out until Novell (or
322 whoever) gets their act together. */
323 /* The following, at least, is used on Sparc v9, MIPS, and Alpha. */
324
325 typedef struct
326 {
327 Elf64_Addr r_offset; /* Address */
328 Elf64_Xword r_info; /* Relocation type and symbol index */
329 } Elf64_Rel;
330
331 /* Relocation table entry with addend (in section of type SHT_RELA). */
332
333 typedef struct
334 {
335 Elf32_Addr r_offset; /* Address */
336 Elf32_Word r_info; /* Relocation type and symbol index */
337 Elf32_Sword r_addend; /* Addend */
338 } Elf32_Rela;
339
340 typedef struct
341 {
342 Elf64_Addr r_offset; /* Address */
343 Elf64_Xword r_info; /* Relocation type and symbol index */
344 Elf64_Sxword r_addend; /* Addend */
345 } Elf64_Rela;
346
347 /* How to extract and insert information held in the r_info field. */
348
349 #define ELF32_R_SYM(val) ((val) >> 8)
350 #define ELF32_R_TYPE(val) ((val) & 0xff)
351 #define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff))
352
353 #define ELF64_R_SYM(i) ((i) >> 32)
354 #define ELF64_R_TYPE(i) ((i) & 0xffffffff)
355 #define ELF64_R_INFO(sym,type) (((sym) << 32) + (type))
356
357 /* Program segment header. */
358
359 typedef struct
360 {
361 Elf32_Word p_type; /* Segment type */
362 Elf32_Off p_offset; /* Segment file offset */
363 Elf32_Addr p_vaddr; /* Segment virtual address */
364 Elf32_Addr p_paddr; /* Segment physical address */
365 Elf32_Word p_filesz; /* Segment size in file */
366 Elf32_Word p_memsz; /* Segment size in memory */
367 Elf32_Word p_flags; /* Segment flags */
368 Elf32_Word p_align; /* Segment alignment */
369 } Elf32_Phdr;
370
371 typedef struct
372 {
373 Elf64_Word p_type; /* Segment type */
374 Elf64_Word p_flags; /* Segment flags */
375 Elf64_Off p_offset; /* Segment file offset */
376 Elf64_Addr p_vaddr; /* Segment virtual address */
377 Elf64_Addr p_paddr; /* Segment physical address */
378 Elf64_Xword p_filesz; /* Segment size in file */
379 Elf64_Xword p_memsz; /* Segment size in memory */
380 Elf64_Xword p_align; /* Segment alignment */
381 } Elf64_Phdr;
382
383 /* Legal values for p_type (segment type). */
384
385 #define PT_NULL 0 /* Program header table entry unused */
386 #define PT_LOAD 1 /* Loadable program segment */
387 #define PT_DYNAMIC 2 /* Dynamic linking information */
388 #define PT_INTERP 3 /* Program interpreter */
389 #define PT_NOTE 4 /* Auxiliary information */
390 #define PT_SHLIB 5 /* Reserved */
391 #define PT_PHDR 6 /* Entry for header table itself */
392 #define PT_NUM 7 /* Number of defined types. */
393 #define PT_LOPROC 0x70000000 /* Start of processor-specific */
394 #define PT_HIPROC 0x7fffffff /* End of processor-specific */
395
396 /* Legal values for p_flags (segment flags). */
397
398 #define PF_X (1 << 0) /* Segment is executable */
399 #define PF_W (1 << 1) /* Segment is writable */
400 #define PF_R (1 << 2) /* Segment is readable */
401 #define PF_MASKPROC 0xf0000000 /* Processor-specific */
402
403 /* Legal values for note segment descriptor types for core files. */
404
405 #define NT_PRSTATUS 1 /* Contains copy of prstatus struct */
406 #define NT_FPREGSET 2 /* Contains copy of fpregset struct */
407 #define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */
408
409 /* Legal values for the note segment descriptor types for object files. */
410
411 #define NT_VERSION 1 /* Contains a version string. */
412
413
414 /* Dynamic section entry. */
415
416 typedef struct
417 {
418 Elf32_Sword d_tag; /* Dynamic entry type */
419 union
420 {
421 Elf32_Word d_val; /* Integer value */
422 Elf32_Addr d_ptr; /* Address value */
423 } d_un;
424 } Elf32_Dyn;
425
426 typedef struct
427 {
428 Elf64_Sxword d_tag; /* Dynamic entry type */
429 union
430 {
431 Elf64_Xword d_val; /* Integer value */
432 Elf64_Addr d_ptr; /* Address value */
433 } d_un;
434 } Elf64_Dyn;
435
436 /* Legal values for d_tag (dynamic entry type). */
437
438 #define DT_NULL 0 /* Marks end of dynamic section */
439 #define DT_NEEDED 1 /* Name of needed library */
440 #define DT_PLTRELSZ 2 /* Size in bytes of PLT relocs */
441 #define DT_PLTGOT 3 /* Processor defined value */
442 #define DT_HASH 4 /* Address of symbol hash table */
443 #define DT_STRTAB 5 /* Address of string table */
444 #define DT_SYMTAB 6 /* Address of symbol table */
445 #define DT_RELA 7 /* Address of Rela relocs */
446 #define DT_RELASZ 8 /* Total size of Rela relocs */
447 #define DT_RELAENT 9 /* Size of one Rela reloc */
448 #define DT_STRSZ 10 /* Size of string table */
449 #define DT_SYMENT 11 /* Size of one symbol table entry */
450 #define DT_INIT 12 /* Address of init function */
451 #define DT_FINI 13 /* Address of termination function */
452 #define DT_SONAME 14 /* Name of shared object */
453 #define DT_RPATH 15 /* Library search path */
454 #define DT_SYMBOLIC 16 /* Start symbol search here */
455 #define DT_REL 17 /* Address of Rel relocs */
456 #define DT_RELSZ 18 /* Total size of Rel relocs */
457 #define DT_RELENT 19 /* Size of one Rel reloc */
458 #define DT_PLTREL 20 /* Type of reloc in PLT */
459 #define DT_DEBUG 21 /* For debugging; unspecified */
460 #define DT_TEXTREL 22 /* Reloc might modify .text */
461 #define DT_JMPREL 23 /* Address of PLT relocs */
462 #define DT_NUM 24 /* Number used */
463 #define DT_LOPROC 0x70000000 /* Start of processor-specific */
464 #define DT_HIPROC 0x7fffffff /* End of processor-specific */
465 #define DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */
466
467 /* Sun added these machine-independent extensions in the "processor-specific"
468 range. Be compatible. */
469 #define DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */
470 #define DT_FILTER 0x7fffffff /* Shared object to get values from */
471 #define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1)
472 #define DT_EXTRANUM 3
473
474
475 /* Auxiliary vector. */
476
477 /* This vector is normally only used by the program interpreter. The
478 usual definition in an ABI supplement uses the name auxv_t. The
479 vector is not usually defined in a standard <elf.h> file, but it
480 can't hurt. We rename it to avoid conflicts. The sizes of these
481 types are an arrangement between the exec server and the program
482 interpreter, so we don't fully specify them here. */
483
484 typedef struct
485 {
486 int a_type; /* Entry type */
487 union
488 {
489 long int a_val; /* Integer value */
490 void *a_ptr; /* Pointer value */
491 void (*a_fcn) (void); /* Function pointer value */
492 } a_un;
493 } Elf32_auxv_t;
494
495 typedef struct
496 {
497 long int a_type; /* Entry type */
498 union
499 {
500 long int a_val; /* Integer value */
501 void *a_ptr; /* Pointer value */
502 void (*a_fcn) (void); /* Function pointer value */
503 } a_un;
504 } Elf64_auxv_t;
505
506 /* Legal values for a_type (entry type). */
507
508 #define AT_NULL 0 /* End of vector */
509 #define AT_IGNORE 1 /* Entry should be ignored */
510 #define AT_EXECFD 2 /* File descriptor of program */
511 #define AT_PHDR 3 /* Program headers for program */
512 #define AT_PHENT 4 /* Size of program header entry */
513 #define AT_PHNUM 5 /* Number of program headers */
514 #define AT_PAGESZ 6 /* System page size */
515 #define AT_BASE 7 /* Base address of interpreter */
516 #define AT_FLAGS 8 /* Flags */
517 #define AT_ENTRY 9 /* Entry point of program */
518 #define AT_NOTELF 10 /* Program is not ELF */
519 #define AT_UID 11 /* Real uid */
520 #define AT_EUID 12 /* Effective uid */
521 #define AT_GID 13 /* Real gid */
522 #define AT_EGID 14 /* Effective gid */
523
524 /* Motorola 68k specific definitions. */
525
526 /* m68k relocs. */
527
528 #define R_68K_NONE 0 /* No reloc */
529 #define R_68K_32 1 /* Direct 32 bit */
530 #define R_68K_16 2 /* Direct 16 bit */
531 #define R_68K_8 3 /* Direct 8 bit */
532 #define R_68K_PC32 4 /* PC relative 32 bit */
533 #define R_68K_PC16 5 /* PC relative 16 bit */
534 #define R_68K_PC8 6 /* PC relative 8 bit */
535 #define R_68K_GOT32 7 /* 32 bit PC relative GOT entry */
536 #define R_68K_GOT16 8 /* 16 bit PC relative GOT entry */
537 #define R_68K_GOT8 9 /* 8 bit PC relative GOT entry */
538 #define R_68K_GOT32O 10 /* 32 bit GOT offset */
539 #define R_68K_GOT16O 11 /* 16 bit GOT offset */
540 #define R_68K_GOT8O 12 /* 8 bit GOT offset */
541 #define R_68K_PLT32 13 /* 32 bit PC relative PLT address */
542 #define R_68K_PLT16 14 /* 16 bit PC relative PLT address */
543 #define R_68K_PLT8 15 /* 8 bit PC relative PLT address */
544 #define R_68K_PLT32O 16 /* 32 bit PLT offset */
545 #define R_68K_PLT16O 17 /* 16 bit PLT offset */
546 #define R_68K_PLT8O 18 /* 8 bit PLT offset */
547 #define R_68K_COPY 19 /* Copy symbol at runtime */
548 #define R_68K_GLOB_DAT 20 /* Create GOT entry */
549 #define R_68K_JMP_SLOT 21 /* Create PLT entry */
550 #define R_68K_RELATIVE 22 /* Adjust by program base */
551
552 /* Intel 80386 specific definitions. */
553
554 /* i386 relocs. */
555
556 #define R_386_NONE 0 /* No reloc */
557 #define R_386_32 1 /* Direct 32 bit */
558 #define R_386_PC32 2 /* PC relative 32 bit */
559 #define R_386_GOT32 3 /* 32 bit GOT entry */
560 #define R_386_PLT32 4 /* 32 bit PLT address */
561 #define R_386_COPY 5 /* Copy symbol at runtime */
562 #define R_386_GLOB_DAT 6 /* Create GOT entry */
563 #define R_386_JMP_SLOT 7 /* Create PLT entry */
564 #define R_386_RELATIVE 8 /* Adjust by program base */
565 #define R_386_GOTOFF 9 /* 32 bit offset to GOT */
566 #define R_386_GOTPC 10 /* 32 bit PC relative offset to GOT */
567
568 /* SUN SPARC specific definitions. */
569
570 /* SPARC relocs. */
571
572 #define R_SPARC_NONE 0 /* No reloc */
573 #define R_SPARC_8 1 /* Direct 8 bit */
574 #define R_SPARC_16 2 /* Direct 16 bit */
575 #define R_SPARC_32 3 /* Direct 32 bit */
576 #define R_SPARC_DISP8 4 /* PC relative 8 bit */
577 #define R_SPARC_DISP16 5 /* PC relative 16 bit */
578 #define R_SPARC_DISP32 6 /* PC relative 32 bit */
579 #define R_SPARC_WDISP30 7 /* PC relative 30 bit shifted */
580 #define R_SPARC_WDISP22 8 /* PC relative 22 bit shifted */
581 #define R_SPARC_HI22 9 /* High 22 bit */
582 #define R_SPARC_22 10 /* Direct 22 bit */
583 #define R_SPARC_13 11 /* Direct 13 bit */
584 #define R_SPARC_LO10 12 /* Truncated 10 bit */
585 #define R_SPARC_GOT10 13 /* Truncated 10 bit GOT entry */
586 #define R_SPARC_GOT13 14 /* 13 bit GOT entry */
587 #define R_SPARC_GOT22 15 /* 22 bit GOT entry shifted */
588 #define R_SPARC_PC10 16 /* PC relative 10 bit truncated */
589 #define R_SPARC_PC22 17 /* PC relative 22 bit shifted */
590 #define R_SPARC_WPLT30 18 /* 30 bit PC relative PLT address */
591 #define R_SPARC_COPY 19 /* Copy symbol at runtime */
592 #define R_SPARC_GLOB_DAT 20 /* Create GOT entry */
593 #define R_SPARC_JMP_SLOT 21 /* Create PLT entry */
594 #define R_SPARC_RELATIVE 22 /* Adjust by program base */
595 #define R_SPARC_UA32 23 /* Direct 32 bit unaligned */
596
597 /* MIPS R3000 specific definitions. */
598
599 /* Legal values for e_flags field of Elf32_Ehdr. */
600
601 #define EF_MIPS_NOREORDER 1 /* A .noreorder directive was used */
602 #define EF_MIPS_PIC 2 /* Contains PIC code */
603 #define EF_MIPS_CPIC 4 /* Uses PIC calling sequence */
604 #define EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level */
605
606 /* Legal values for MIPS architecture level. */
607
608 #define E_MIPS_ARCH_1 0x00000000 /* -mips1 code. */
609 #define E_MIPS_ARCH_2 0x10000000 /* -mips2 code. */
610 #define E_MIPS_ARCH_3 0x20000000 /* -mips3 code. */
611
612 /* Special section indices. */
613
614 #define SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols */
615 #define SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */
616 #define SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */
617 #define SHN_MIPS_SCOMMON 0xff03 /* Small common symbols */
618 #define SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols */
619
620 /* Legal values for sh_type field of Elf32_Shdr. */
621
622 #define SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link */
623 #define SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols */
624 #define SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes */
625 #define SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */
626 #define SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging information */
627 #define SHT_MIPS_REGINFO 0x70000006 /* Register usage information */
628 #define SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */
629 #define SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */
630 #define SHT_MIPS_EVENTS 0x70000021 /* Event section. */
631
632 /* Legal values for sh_flags field of Elf32_Shdr. */
633
634 #define SHF_MIPS_GPREL 0x10000000 /* Must be part of global data area */
635
636 /* Entries found in sections of type SHT_MIPS_GPTAB. */
637
638 typedef union
639 {
640 struct
641 {
642 Elf32_Word gt_current_g_value; /* -G value used for compilation */
643 Elf32_Word gt_unused; /* Not used */
644 } gt_header; /* First entry in section */
645 struct
646 {
647 Elf32_Word gt_g_value; /* If this value were used for -G */
648 Elf32_Word gt_bytes; /* This many bytes would be used */
649 } gt_entry; /* Subsequent entries in section */
650 } Elf32_gptab;
651
652 /* Entry found in sections of type SHT_MIPS_REGINFO. */
653
654 typedef struct
655 {
656 Elf32_Word ri_gprmask; /* General registers used */
657 Elf32_Word ri_cprmask[4]; /* Coprocessor registers used */
658 Elf32_Sword ri_gp_value; /* $gp register value */
659 } Elf32_RegInfo;
660
661 /* MIPS relocs. */
662
663 #define R_MIPS_NONE 0 /* No reloc */
664 #define R_MIPS_16 1 /* Direct 16 bit */
665 #define R_MIPS_32 2 /* Direct 32 bit */
666 #define R_MIPS_REL32 3 /* PC relative 32 bit */
667 #define R_MIPS_26 4 /* Direct 26 bit shifted */
668 #define R_MIPS_HI16 5 /* High 16 bit */
669 #define R_MIPS_LO16 6 /* Low 16 bit */
670 #define R_MIPS_GPREL16 7 /* GP relative 16 bit */
671 #define R_MIPS_LITERAL 8 /* 16 bit literal entry */
672 #define R_MIPS_GOT16 9 /* 16 bit GOT entry */
673 #define R_MIPS_PC16 10 /* PC relative 16 bit */
674 #define R_MIPS_CALL16 11 /* 16 bit GOT entry for function */
675 #define R_MIPS_GPREL32 12 /* GP relative 32 bit */
676
677 /* Legal values for p_type field of Elf32_Phdr. */
678
679 #define PT_MIPS_REGINFO 0x70000000 /* Register usage information */
680
681 /* Legal values for d_tag field of Elf32_Dyn. */
682
683 #define DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */
684 #define DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */
685 #define DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */
686 #define DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */
687 #define DT_MIPS_FLAGS 0x70000005 /* Flags */
688 #define DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */
689 #define DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */
690 #define DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */
691 #define DT_MIPS_LOCAL_GOTNO 0x7000000a /* Number of local GOT entries */
692 #define DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */
693 #define DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */
694 #define DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */
695 #define DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */
696 #define DT_MIPS_GOTSYM 0x70000013 /* First GOT entry in DYNSYM */
697 #define DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */
698 #define DT_MIPS_RLD_MAP 0x70000016 /* Address of run time loader map. */
699 #define DT_MIPS_NUM 0x17
700
701 /* Legal values for DT_MIPS_FLAG Elf32_Dyn entry. */
702
703 #define RHF_NONE 0 /* No flags */
704 #define RHF_QUICKSTART (1 << 0) /* Use quickstart */
705 #define RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */
706 #define RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */
707
708 /* Entries found in sections of type SHT_MIPS_LIBLIST. */
709
710 typedef struct
711 {
712 Elf32_Word l_name; /* Name (string table index) */
713 Elf32_Word l_time_stamp; /* Timestamp */
714 Elf32_Word l_checksum; /* Checksum */
715 Elf32_Word l_version; /* Interface version */
716 Elf32_Word l_flags; /* Flags */
717 } Elf32_Lib;
718
719 /* Legal values for l_flags. */
720
721 #define LL_EXACT_MATCH (1 << 0) /* Require exact match */
722 #define LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */
723
724 /* Entries found in sections of type SHT_MIPS_CONFLICT. */
725
726 typedef Elf32_Addr Elf32_Conflict;
727
728
729 /* HPPA specific definitions. */
730
731 /* Legal values for sh_type field of Elf32_Shdr. */
732
733 #define SHT_PARISC_GOT 0x70000000 /* GOT for external data. */
734 #define SHT_PARISC_ARCH 0x70000001 /* Architecture extensions. */
735 #define SHT_PARISC_GLOBAL 0x70000002 /* Definition of $global$. */
736 #define SHT_PARISC_MILLI 0x70000003 /* Millicode routines. */
737 #define SHT_PARISC_UNWIND 0x70000004 /* Unwind information. */
738 #define SHT_PARISC_PLT 0x70000005 /* Procedure linkage table. */
739 #define SHT_PARISC_SDATA 0x70000006 /* Short initialized data. */
740 #define SHT_PARISC_SBSS 0x70000007 /* Short uninitialized data. */
741 #define SHT_PARISC_SYMEXTN 0x70000008 /* Argument/relocation info. */
742 #define SHT_PARISC_STUBS 0x70000009 /* Linker stubs. */
743
744 /* Legal values for sh_flags field of Elf32_Shdr. */
745
746 #define SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */
747
748 /* Legal values for ST_TYPE subfield of st_info (symbol type). */
749
750 #define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */
751
752
753 /* Alpha specific declarations. */
754
755 /* Alpha relocs. */
756
757 #define R_ALPHA_NONE 0 /* No reloc */
758 #define R_ALPHA_REFLONG 1 /* Direct 32 bit */
759 #define R_ALPHA_REFQUAD 2 /* Direct 64 bit */
760 #define R_ALPHA_GPREL32 3 /* GP relative 32 bit */
761 #define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */
762 #define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */
763 #define R_ALPHA_GPDISP 6 /* Add displacement to GP */
764 #define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */
765 #define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */
766 #define R_ALPHA_SREL16 9 /* PC relative 16 bit */
767 #define R_ALPHA_SREL32 10 /* PC relative 32 bit */
768 #define R_ALPHA_SREL64 11 /* PC relative 64 bit */
769 #define R_ALPHA_OP_PUSH 12 /* OP stack push */
770 #define R_ALPHA_OP_STORE 13 /* OP stack pop and store */
771 #define R_ALPHA_OP_PSUB 14 /* OP stack subtract */
772 #define R_ALPHA_OP_PRSHIFT 15 /* OP stack right shift */
773 #define R_ALPHA_GPVALUE 16
774 #define R_ALPHA_GPRELHIGH 17
775 #define R_ALPHA_GPRELLOW 18
776 #define R_ALPHA_IMMED_GP_16 19
777 #define R_ALPHA_IMMED_GP_HI32 20
778 #define R_ALPHA_IMMED_SCN_HI32 21
779 #define R_ALPHA_IMMED_BR_HI32 22
780 #define R_ALPHA_IMMED_LO32 23
781 #define R_ALPHA_COPY 24 /* Copy symbol at runtime */
782 #define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */
783 #define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */
784 #define R_ALPHA_RELATIVE 27 /* Adjust by program base */
785
786 __END_DECLS
787
788 #endif /* elf.h */