]> git.ipfire.org Git - thirdparty/glibc.git/blame - elf/elf.h
Update.
[thirdparty/glibc.git] / elf / elf.h
CommitLineData
28f540f4 1/* This file defines standard ELF types, structures, and macros.
df4ef2ab 2 Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
54d79e99
UD
3 This file is part of the GNU C Library.
4 Contributed by Ian Lance Taylor <ian@cygnus.com>.
28f540f4 5
54d79e99
UD
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.
28f540f4 10
54d79e99
UD
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.
28f540f4 15
54d79e99
UD
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. */
28f540f4
RM
20
21#ifndef _ELF_H
22#define _ELF_H 1
5107cf1d 23
54d79e99 24#include <sys/cdefs.h>
28f540f4 25
54d79e99 26__BEGIN_DECLS
28f540f4 27
5107cf1d
UD
28/* Standard ELF types. */
29
30#include <inttypes.h>
28f540f4 31
266180eb 32/* Type for a 16-bit quantity. */
5107cf1d
UD
33typedef uint16_t Elf32_Half;
34typedef uint16_t Elf64_Half;
266180eb
RM
35
36/* Types for signed and unsigned 32-bit quantities. */
5107cf1d
UD
37typedef uint32_t Elf32_Word;
38typedef int32_t Elf32_Sword;
39typedef uint32_t Elf64_Word;
40typedef int32_t Elf64_Sword;
266180eb
RM
41
42/* Types for signed and unsigned 64-bit quantities. */
5107cf1d
UD
43typedef uint64_t Elf32_Xword;
44typedef int64_t Elf32_Sxword;
45typedef uint64_t Elf64_Xword;
46typedef int64_t Elf64_Sxword;
28f540f4 47
266180eb 48/* Type of addresses. */
5107cf1d
UD
49typedef uint32_t Elf32_Addr;
50typedef uint64_t Elf64_Addr;
266180eb
RM
51
52/* Type of file offsets. */
5107cf1d
UD
53typedef uint32_t Elf32_Off;
54typedef uint64_t Elf64_Off;
266180eb
RM
55
56/* Type for section indices, which are 16-bit quantities. */
5107cf1d
UD
57typedef uint16_t Elf32_Section;
58typedef uint16_t Elf64_Section;
266180eb 59
8d6468d0 60/* Type of symbol indices. */
5107cf1d
UD
61typedef uint32_t Elf32_Symndx;
62typedef uint64_t Elf64_Symndx;
8d6468d0 63
28f540f4
RM
64
65/* The ELF file header. This appears at the start of every ELF file. */
66
67#define EI_NIDENT (16)
68
69typedef struct
70{
71 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
72 Elf32_Half e_type; /* Object file type */
73 Elf32_Half e_machine; /* Architecture */
74 Elf32_Word e_version; /* Object file version */
75 Elf32_Addr e_entry; /* Entry point virtual address */
76 Elf32_Off e_phoff; /* Program header table file offset */
77 Elf32_Off e_shoff; /* Section header table file offset */
78 Elf32_Word e_flags; /* Processor-specific flags */
79 Elf32_Half e_ehsize; /* ELF header size in bytes */
80 Elf32_Half e_phentsize; /* Program header table entry size */
81 Elf32_Half e_phnum; /* Program header table entry count */
82 Elf32_Half e_shentsize; /* Section header table entry size */
83 Elf32_Half e_shnum; /* Section header table entry count */
84 Elf32_Half e_shstrndx; /* Section header string table index */
85} Elf32_Ehdr;
86
266180eb
RM
87typedef struct
88{
89 unsigned char e_ident[EI_NIDENT]; /* Magic number and other info */
90 Elf64_Half e_type; /* Object file type */
91 Elf64_Half e_machine; /* Architecture */
92 Elf64_Word e_version; /* Object file version */
93 Elf64_Addr e_entry; /* Entry point virtual address */
94 Elf64_Off e_phoff; /* Program header table file offset */
95 Elf64_Off e_shoff; /* Section header table file offset */
96 Elf64_Word e_flags; /* Processor-specific flags */
97 Elf64_Half e_ehsize; /* ELF header size in bytes */
98 Elf64_Half e_phentsize; /* Program header table entry size */
99 Elf64_Half e_phnum; /* Program header table entry count */
100 Elf64_Half e_shentsize; /* Section header table entry size */
101 Elf64_Half e_shnum; /* Section header table entry count */
102 Elf64_Half e_shstrndx; /* Section header string table index */
103} Elf64_Ehdr;
104
28f540f4
RM
105/* Fields in the e_ident array. The EI_* macros are indices into the
106 array. The macros under each EI_* macro are the values the byte
107 may have. */
108
109#define EI_MAG0 0 /* File identification byte 0 index */
110#define ELFMAG0 0x7f /* Magic number byte 0 */
111
112#define EI_MAG1 1 /* File identification byte 1 index */
113#define ELFMAG1 'E' /* Magic number byte 1 */
114
115#define EI_MAG2 2 /* File identification byte 2 index */
116#define ELFMAG2 'L' /* Magic number byte 2 */
117
118#define EI_MAG3 3 /* File identification byte 3 index */
119#define ELFMAG3 'F' /* Magic number byte 3 */
120
b7976c00 121/* Conglomeration of the identification bytes, for easy testing as a word. */
75598ca6 122#define ELFMAG "\177ELF"
b7976c00
RM
123#define SELFMAG 4
124
28f540f4
RM
125#define EI_CLASS 4 /* File class byte index */
126#define ELFCLASSNONE 0 /* Invalid class */
127#define ELFCLASS32 1 /* 32-bit objects */
128#define ELFCLASS64 2 /* 64-bit objects */
129
130#define EI_DATA 5 /* Data encoding byte index */
131#define ELFDATANONE 0 /* Invalid data encoding */
132#define ELFDATA2LSB 1 /* 2's complement, little endian */
133#define ELFDATA2MSB 2 /* 2's complement, big endian */
134
135#define EI_VERSION 6 /* File version byte index */
136 /* Value must be EV_CURRENT */
137
138#define EI_PAD 7 /* Byte index of padding bytes */
139
140/* Legal values for e_type (object file type). */
141
142#define ET_NONE 0 /* No file type */
143#define ET_REL 1 /* Relocatable file */
144#define ET_EXEC 2 /* Executable file */
145#define ET_DYN 3 /* Shared object file */
146#define ET_CORE 4 /* Core file */
787e4db9 147#define ET_NUM 5 /* Number of defined types. */
28f540f4
RM
148#define ET_LOPROC 0xff00 /* Processor-specific */
149#define ET_HIPROC 0xffff /* Processor-specific */
150
151/* Legal values for e_machine (architecture). */
152
153#define EM_NONE 0 /* No machine */
154#define EM_M32 1 /* AT&T WE 32100 */
155#define EM_SPARC 2 /* SUN SPARC */
156#define EM_386 3 /* Intel 80386 */
157#define EM_68K 4 /* Motorola m68k family */
158#define EM_88K 5 /* Motorola m88k family */
159#define EM_486 6 /* Intel 80486 */
160#define EM_860 7 /* Intel 80860 */
161#define EM_MIPS 8 /* MIPS R3000 big-endian */
9fd18b6c 162#define EM_S370 9 /* Amdahl */
28f540f4
RM
163#define EM_MIPS_RS4_BE 10 /* MIPS R4000 big-endian */
164
165#define EM_SPARC64 11 /* SPARC v9 (not official) 64-bit */
166
167#define EM_PARISC 15 /* HPPA */
0200214b 168#define EM_PPC 20 /* PowerPC */
28f540f4
RM
169
170/* If it is necessary to assign new unofficial EM_* values, please
171 pick large random numbers (0x8523, 0xa7f2, etc.) to minimize the
172 chances of collision with official or non-GNU unofficial values. */
173
266180eb
RM
174#define EM_ALPHA 0x9026
175
28f540f4
RM
176/* Legal values for e_version (version). */
177
178#define EV_NONE 0 /* Invalid ELF version */
179#define EV_CURRENT 1 /* Current version */
180
181/* Section header. */
182
183typedef struct
184{
185 Elf32_Word sh_name; /* Section name (string tbl index) */
186 Elf32_Word sh_type; /* Section type */
187 Elf32_Word sh_flags; /* Section flags */
188 Elf32_Addr sh_addr; /* Section virtual addr at execution */
189 Elf32_Off sh_offset; /* Section file offset */
190 Elf32_Word sh_size; /* Section size in bytes */
191 Elf32_Word sh_link; /* Link to another section */
192 Elf32_Word sh_info; /* Additional section information */
193 Elf32_Word sh_addralign; /* Section alignment */
194 Elf32_Word sh_entsize; /* Entry size if section holds table */
195} Elf32_Shdr;
196
266180eb
RM
197typedef struct
198{
199 Elf64_Word sh_name; /* Section name (string tbl index) */
200 Elf64_Word sh_type; /* Section type */
201 Elf64_Xword sh_flags; /* Section flags */
202 Elf64_Addr sh_addr; /* Section virtual addr at execution */
203 Elf64_Off sh_offset; /* Section file offset */
204 Elf64_Xword sh_size; /* Section size in bytes */
205 Elf64_Word sh_link; /* Link to another section */
206 Elf64_Word sh_info; /* Additional section information */
207 Elf64_Xword sh_addralign; /* Section alignment */
208 Elf64_Xword sh_entsize; /* Entry size if section holds table */
209} Elf64_Shdr;
210
28f540f4
RM
211/* Special section indices. */
212
213#define SHN_UNDEF 0 /* Undefined section */
214#define SHN_LORESERVE 0xff00 /* Start of reserved indices */
215#define SHN_LOPROC 0xff00 /* Start of processor-specific */
216#define SHN_HIPROC 0xff1f /* End of processor-specific */
217#define SHN_ABS 0xfff1 /* Associated symbol is absolute */
218#define SHN_COMMON 0xfff2 /* Associated symbol is common */
219#define SHN_HIRESERVE 0xffff /* End of reserved indices */
220
221/* Legal values for sh_type (section type). */
222
223#define SHT_NULL 0 /* Section header table entry unused */
224#define SHT_PROGBITS 1 /* Program data */
225#define SHT_SYMTAB 2 /* Symbol table */
226#define SHT_STRTAB 3 /* String table */
227#define SHT_RELA 4 /* Relocation entries with addends */
228#define SHT_HASH 5 /* Symbol hash table */
229#define SHT_DYNAMIC 6 /* Dynamic linking information */
230#define SHT_NOTE 7 /* Notes */
231#define SHT_NOBITS 8 /* Program space with no data (bss) */
232#define SHT_REL 9 /* Relocation entries, no addends */
233#define SHT_SHLIB 10 /* Reserved */
234#define SHT_DYNSYM 11 /* Dynamic linker symbol table */
787e4db9 235#define SHT_NUM 12 /* Number of defined types. */
1228ed5c
UD
236#define SHT_LOSUNW 0x6ffffffd /* Sun-specific low bound. */
237#define SHT_GNU_verdef 0x6ffffffd /* Version definition section. */
238#define SHT_GNU_verneed 0x6ffffffe /* Version needs section. */
239#define SHT_GNU_versym 0x6fffffff /* Version symbol table. */
240#define SHT_HISUNW 0x6fffffff /* Sun-specific high bound. */
28f540f4
RM
241#define SHT_LOPROC 0x70000000 /* Start of processor-specific */
242#define SHT_HIPROC 0x7fffffff /* End of processor-specific */
243#define SHT_LOUSER 0x80000000 /* Start of application-specific */
244#define SHT_HIUSER 0x8fffffff /* End of application-specific */
245
246/* Legal values for sh_flags (section flags). */
247
248#define SHF_WRITE (1 << 0) /* Writable */
249#define SHF_ALLOC (1 << 1) /* Occupies memory during execution */
250#define SHF_EXECINSTR (1 << 2) /* Executable */
251#define SHF_MASKPROC 0xf0000000 /* Processor-specific */
252
253/* Symbol table entry. */
254
255typedef struct
256{
257 Elf32_Word st_name; /* Symbol name (string tbl index) */
258 Elf32_Addr st_value; /* Symbol value */
259 Elf32_Word st_size; /* Symbol size */
260 unsigned char st_info; /* Symbol type and binding */
261 unsigned char st_other; /* No defined meaning, 0 */
266180eb 262 Elf32_Section st_shndx; /* Section index */
28f540f4
RM
263} Elf32_Sym;
264
266180eb
RM
265typedef struct
266{
267 Elf64_Word st_name; /* Symbol name (string tbl index) */
268 unsigned char st_info; /* Symbol type and binding */
269 unsigned char st_other; /* No defined meaning, 0 */
270 Elf64_Section st_shndx; /* Section index */
271 Elf64_Addr st_value; /* Symbol value */
272 Elf64_Xword st_size; /* Symbol size */
273} Elf64_Sym;
274
b1f11361 275/* Special section index. */
28f540f4 276
b1f11361 277#define SHN_UNDEF 0 /* No section, undefined symbol. */
28f540f4
RM
278
279/* How to extract and insert information held in the st_info field. */
280
281#define ELF32_ST_BIND(val) (((unsigned char) (val)) >> 4)
282#define ELF32_ST_TYPE(val) ((val) & 0xf)
283#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
284
266180eb
RM
285/* Both Elf32_Sym and Elf64_Sym use the same one-byte st_info field. */
286#define ELF64_ST_BIND(val) ELF32_ST_BIND (val)
287#define ELF64_ST_TYPE(val) ELF32_ST_TYPE (val)
288#define ELF64_ST_INFO(bind, type) ELF32_ST_INFO ((bind), (type))
289
28f540f4
RM
290/* Legal values for ST_BIND subfield of st_info (symbol binding). */
291
292#define STB_LOCAL 0 /* Local symbol */
293#define STB_GLOBAL 1 /* Global symbol */
294#define STB_WEAK 2 /* Weak symbol */
787e4db9 295#define STB_NUM 3 /* Number of defined types. */
28f540f4
RM
296#define STB_LOPROC 13 /* Start of processor-specific */
297#define STB_HIPROC 15 /* End of processor-specific */
298
299/* Legal values for ST_TYPE subfield of st_info (symbol type). */
300
301#define STT_NOTYPE 0 /* Symbol type is unspecified */
302#define STT_OBJECT 1 /* Symbol is a data object */
303#define STT_FUNC 2 /* Symbol is a code object */
304#define STT_SECTION 3 /* Symbol associated with a section */
305#define STT_FILE 4 /* Symbol's name is file name */
787e4db9 306#define STT_NUM 5 /* Number of defined types. */
28f540f4
RM
307#define STT_LOPROC 13 /* Start of processor-specific */
308#define STT_HIPROC 15 /* End of processor-specific */
309
b1f11361
RM
310
311/* Symbol table indices are found in the hash buckets and chain table
312 of a symbol hash table section. This special index value indicates
313 the end of a chain, meaning no further symbols are found in that bucket. */
314
315#define STN_UNDEF 0 /* End of a chain. */
316
317
28f540f4
RM
318/* Relocation table entry without addend (in section of type SHT_REL). */
319
320typedef struct
321{
322 Elf32_Addr r_offset; /* Address */
323 Elf32_Word r_info; /* Relocation type and symbol index */
324} Elf32_Rel;
325
266180eb
RM
326/* I have seen two different definitions of the Elf64_Rel and
327 Elf64_Rela structures, so we'll leave them out until Novell (or
328 whoever) gets their act together. */
329/* The following, at least, is used on Sparc v9, MIPS, and Alpha. */
330
331typedef struct
332{
333 Elf64_Addr r_offset; /* Address */
334 Elf64_Xword r_info; /* Relocation type and symbol index */
335} Elf64_Rel;
336
28f540f4
RM
337/* Relocation table entry with addend (in section of type SHT_RELA). */
338
339typedef struct
340{
341 Elf32_Addr r_offset; /* Address */
342 Elf32_Word r_info; /* Relocation type and symbol index */
343 Elf32_Sword r_addend; /* Addend */
344} Elf32_Rela;
345
266180eb
RM
346typedef struct
347{
348 Elf64_Addr r_offset; /* Address */
349 Elf64_Xword r_info; /* Relocation type and symbol index */
350 Elf64_Sxword r_addend; /* Addend */
351} Elf64_Rela;
352
28f540f4
RM
353/* How to extract and insert information held in the r_info field. */
354
355#define ELF32_R_SYM(val) ((val) >> 8)
356#define ELF32_R_TYPE(val) ((val) & 0xff)
357#define ELF32_R_INFO(sym, type) (((sym) << 8) + ((type) & 0xff))
358
0200214b
RM
359#define ELF64_R_SYM(i) ((i) >> 32)
360#define ELF64_R_TYPE(i) ((i) & 0xffffffff)
361#define ELF64_R_INFO(sym,type) (((sym) << 32) + (type))
362
28f540f4
RM
363/* Program segment header. */
364
266180eb
RM
365typedef struct
366{
28f540f4
RM
367 Elf32_Word p_type; /* Segment type */
368 Elf32_Off p_offset; /* Segment file offset */
369 Elf32_Addr p_vaddr; /* Segment virtual address */
370 Elf32_Addr p_paddr; /* Segment physical address */
371 Elf32_Word p_filesz; /* Segment size in file */
372 Elf32_Word p_memsz; /* Segment size in memory */
373 Elf32_Word p_flags; /* Segment flags */
374 Elf32_Word p_align; /* Segment alignment */
375} Elf32_Phdr;
376
266180eb
RM
377typedef struct
378{
379 Elf64_Word p_type; /* Segment type */
380 Elf64_Word p_flags; /* Segment flags */
381 Elf64_Off p_offset; /* Segment file offset */
382 Elf64_Addr p_vaddr; /* Segment virtual address */
383 Elf64_Addr p_paddr; /* Segment physical address */
384 Elf64_Xword p_filesz; /* Segment size in file */
385 Elf64_Xword p_memsz; /* Segment size in memory */
386 Elf64_Xword p_align; /* Segment alignment */
387} Elf64_Phdr;
388
28f540f4
RM
389/* Legal values for p_type (segment type). */
390
391#define PT_NULL 0 /* Program header table entry unused */
392#define PT_LOAD 1 /* Loadable program segment */
393#define PT_DYNAMIC 2 /* Dynamic linking information */
394#define PT_INTERP 3 /* Program interpreter */
395#define PT_NOTE 4 /* Auxiliary information */
396#define PT_SHLIB 5 /* Reserved */
397#define PT_PHDR 6 /* Entry for header table itself */
787e4db9 398#define PT_NUM 7 /* Number of defined types. */
28f540f4
RM
399#define PT_LOPROC 0x70000000 /* Start of processor-specific */
400#define PT_HIPROC 0x7fffffff /* End of processor-specific */
401
402/* Legal values for p_flags (segment flags). */
403
404#define PF_X (1 << 0) /* Segment is executable */
405#define PF_W (1 << 1) /* Segment is writable */
406#define PF_R (1 << 2) /* Segment is readable */
407#define PF_MASKPROC 0xf0000000 /* Processor-specific */
408
0200214b
RM
409/* Legal values for note segment descriptor types for core files. */
410
411#define NT_PRSTATUS 1 /* Contains copy of prstatus struct */
412#define NT_FPREGSET 2 /* Contains copy of fpregset struct */
413#define NT_PRPSINFO 3 /* Contains copy of prpsinfo struct */
414
415/* Legal values for the note segment descriptor types for object files. */
416
417#define NT_VERSION 1 /* Contains a version string. */
418
419
28f540f4
RM
420/* Dynamic section entry. */
421
422typedef struct
423{
424 Elf32_Sword d_tag; /* Dynamic entry type */
425 union
426 {
427 Elf32_Word d_val; /* Integer value */
428 Elf32_Addr d_ptr; /* Address value */
429 } d_un;
430} Elf32_Dyn;
431
266180eb
RM
432typedef struct
433{
434 Elf64_Sxword d_tag; /* Dynamic entry type */
435 union
436 {
437 Elf64_Xword d_val; /* Integer value */
438 Elf64_Addr d_ptr; /* Address value */
439 } d_un;
440} Elf64_Dyn;
441
28f540f4
RM
442/* Legal values for d_tag (dynamic entry type). */
443
444#define DT_NULL 0 /* Marks end of dynamic section */
445#define DT_NEEDED 1 /* Name of needed library */
446#define DT_PLTRELSZ 2 /* Size in bytes of PLT relocs */
447#define DT_PLTGOT 3 /* Processor defined value */
448#define DT_HASH 4 /* Address of symbol hash table */
449#define DT_STRTAB 5 /* Address of string table */
450#define DT_SYMTAB 6 /* Address of symbol table */
451#define DT_RELA 7 /* Address of Rela relocs */
452#define DT_RELASZ 8 /* Total size of Rela relocs */
453#define DT_RELAENT 9 /* Size of one Rela reloc */
454#define DT_STRSZ 10 /* Size of string table */
455#define DT_SYMENT 11 /* Size of one symbol table entry */
456#define DT_INIT 12 /* Address of init function */
457#define DT_FINI 13 /* Address of termination function */
458#define DT_SONAME 14 /* Name of shared object */
459#define DT_RPATH 15 /* Library search path */
460#define DT_SYMBOLIC 16 /* Start symbol search here */
461#define DT_REL 17 /* Address of Rel relocs */
462#define DT_RELSZ 18 /* Total size of Rel relocs */
463#define DT_RELENT 19 /* Size of one Rel reloc */
464#define DT_PLTREL 20 /* Type of reloc in PLT */
465#define DT_DEBUG 21 /* For debugging; unspecified */
466#define DT_TEXTREL 22 /* Reloc might modify .text */
467#define DT_JMPREL 23 /* Address of PLT relocs */
a2e1b046 468#define DT_NUM 24 /* Number used */
28f540f4
RM
469#define DT_LOPROC 0x70000000 /* Start of processor-specific */
470#define DT_HIPROC 0x7fffffff /* End of processor-specific */
a2e1b046 471#define DT_PROCNUM DT_MIPS_NUM /* Most used by any processor */
28f540f4 472
1228ed5c
UD
473/* The versioning entry types. The next are defined as part of the
474 GNU extension. */
475#define DT_VERSYM 0x6ffffff0
476
477/* These were chosen by Sun. */
478#define DT_VERDEF 0x6ffffffc /* Address of version definition
479 table */
480#define DT_VERDEFNUM 0x6ffffffd /* Number of version definitions */
481#define DT_VERNEED 0x6ffffffe /* Address of table with needed
482 versions */
483#define DT_VERNEEDNUM 0x6fffffff /* Number of needed versions */
484#define DT_VERSIONTAGIDX(tag) (DT_VERNEEDNUM - (tag)) /* Reverse order! */
485#define DT_VERSIONTAGNUM 16
486
df4ef2ab
UD
487/* Sun added these machine-independent extensions in the "processor-specific"
488 range. Be compatible. */
489#define DT_AUXILIARY 0x7ffffffd /* Shared object to load before self */
490#define DT_FILTER 0x7fffffff /* Shared object to get values from */
491#define DT_EXTRATAGIDX(tag) ((Elf32_Word)-((Elf32_Sword) (tag) <<1>>1)-1)
492#define DT_EXTRANUM 3
493
1228ed5c
UD
494/* Version definition sections. */
495
496typedef struct
497{
498 Elf32_Half vd_version; /* Version revision */
499 Elf32_Half vd_flags; /* Version information */
500 Elf32_Half vd_ndx; /* Version Index */
501 Elf32_Half vd_cnt; /* Number of associated aux entries */
502 Elf32_Word vd_hash; /* Version name hash value */
503 Elf32_Word vd_aux; /* Offset in bytes to verdaux array */
504 Elf32_Word vd_next; /* Offset in bytes to next verdef
505 entry */
506} Elf32_Verdef;
507
c84142e8
UD
508/* XXX We have no information what types should be used for 64 bit
509 architectures. What is following is only an intelligent guess. */
510typedef struct
511{
512 Elf64_Half vd_version; /* Version revision */
513 Elf64_Half vd_flags; /* Version information */
514 Elf64_Half vd_ndx; /* Version Index */
515 Elf64_Half vd_cnt; /* Number of associated aux entries */
516 Elf64_Word vd_hash; /* Version name hash value */
517 Elf64_Word vd_aux; /* Offset in bytes to verdaux array */
518 Elf64_Word vd_next; /* Offset in bytes to next verdef
519 entry */
520} Elf64_Verdef;
521
1228ed5c
UD
522/* Legal values for vd_version (version revision). */
523#define VER_DEF_NONE 0 /* No version */
524#define VER_DEF_CURRENT 1 /* Current version */
525#define VER_DEF_NUM 2 /* Given version number */
526
527/* Legal values for vd_flags (version information flags). */
528#define VER_FLG_BASE 0x1 /* Version definition of file itself */
529#define VER_FLG_WEAK 0x2 /* Weak version identifier */
530
531/* Auxialiary version information. */
532
533typedef struct
534{
535 Elf32_Addr vda_name; /* Version or dependency names */
536 Elf32_Word vda_next; /* Offset in bytes to next verdaux
537 entry */
538} Elf32_Verdaux;
539
c84142e8
UD
540/* XXX We have no information what types should be used for 64 bit
541 architectures. What is following is only an intelligent guess. */
542typedef struct
543{
544 Elf64_Addr vda_name; /* Version or dependency names */
545 Elf64_Word vda_next; /* Offset in bytes to next verdaux
546 entry */
547} Elf64_Verdaux;
548
1228ed5c
UD
549/* Version dependency section. */
550
551typedef struct
552{
553 Elf32_Half vn_version; /* Version of structure */
554 Elf32_Half vn_cnt; /* Number of associated aux entries */
555 Elf32_Addr vn_file; /* Offset of filename for this
556 dependency */
557 Elf32_Word vn_aux; /* Offset in bytes to vernaux array */
558 Elf32_Word vn_next; /* Offset in bytes to next verneed
559 entry */
560} Elf32_Verneed;
561
c84142e8
UD
562/* XXX We have no information what types should be used for 64 bit
563 architectures. What is following is only an intelligent guess. */
564typedef struct
565{
566 Elf64_Half vn_version; /* Version of structure */
567 Elf64_Half vn_cnt; /* Number of associated aux entries */
568 Elf64_Addr vn_file; /* Offset of filename for this
569 dependency */
570 Elf64_Word vn_aux; /* Offset in bytes to vernaux array */
571 Elf64_Word vn_next; /* Offset in bytes to next verneed
572 entry */
573} Elf64_Verneed;
574
1228ed5c
UD
575/* Legal values for vn_version (version revision). */
576#define VER_NEED_NONE 0 /* No version */
577#define VER_NEED_CURRENT 1 /* Current version */
578#define VER_NEED_NUM 2 /* Given version number */
579
580/* Auxiliary needed version information. */
581
582typedef struct
583{
584 Elf32_Word vna_hash; /* Hash value of dependency name */
585 Elf32_Half vna_flags; /* Dependency specific information */
586 Elf32_Half vna_other; /* Unused */
587 Elf32_Addr vna_name; /* Dependency name string offset */
588 Elf32_Word vna_next; /* Offset in bytes to next vernaux
589 entry */
590} Elf32_Vernaux;
591
c84142e8
UD
592/* XXX We have no information what types should be used for 64 bit
593 architectures. What is following is only an intelligent guess. */
594typedef struct
595{
596 Elf64_Word vna_hash; /* Hash value of dependency name */
597 Elf64_Half vna_flags; /* Dependency specific information */
598 Elf64_Half vna_other; /* Unused */
599 Elf64_Addr vna_name; /* Dependency name string offset */
600 Elf64_Word vna_next; /* Offset in bytes to next vernaux
601 entry */
602} Elf64_Vernaux;
603
1228ed5c
UD
604/* Legal values for vna_flags. */
605#define VER_FLG_WEAK 0x2 /* Weak verison identifier */
606
df4ef2ab 607
28f540f4
RM
608/* Auxiliary vector. */
609
610/* This vector is normally only used by the program interpreter. The
611 usual definition in an ABI supplement uses the name auxv_t. The
612 vector is not usually defined in a standard <elf.h> file, but it
613 can't hurt. We rename it to avoid conflicts. The sizes of these
614 types are an arrangement between the exec server and the program
615 interpreter, so we don't fully specify them here. */
616
617typedef struct
618{
6025c399 619 int a_type; /* Entry type */
28f540f4
RM
620 union
621 {
6025c399
RM
622 long int a_val; /* Integer value */
623 void *a_ptr; /* Pointer value */
624 void (*a_fcn) (void); /* Function pointer value */
28f540f4
RM
625 } a_un;
626} Elf32_auxv_t;
627
266180eb
RM
628typedef struct
629{
630 long int a_type; /* Entry type */
631 union
632 {
633 long int a_val; /* Integer value */
634 void *a_ptr; /* Pointer value */
635 void (*a_fcn) (void); /* Function pointer value */
636 } a_un;
637} Elf64_auxv_t;
638
28f540f4
RM
639/* Legal values for a_type (entry type). */
640
641#define AT_NULL 0 /* End of vector */
642#define AT_IGNORE 1 /* Entry should be ignored */
643#define AT_EXECFD 2 /* File descriptor of program */
644#define AT_PHDR 3 /* Program headers for program */
645#define AT_PHENT 4 /* Size of program header entry */
646#define AT_PHNUM 5 /* Number of program headers */
647#define AT_PAGESZ 6 /* System page size */
648#define AT_BASE 7 /* Base address of interpreter */
649#define AT_FLAGS 8 /* Flags */
650#define AT_ENTRY 9 /* Entry point of program */
651#define AT_NOTELF 10 /* Program is not ELF */
652#define AT_UID 11 /* Real uid */
653#define AT_EUID 12 /* Effective uid */
60478656 654#define AT_GID 13 /* Real gid */
28f540f4
RM
655#define AT_EGID 14 /* Effective gid */
656
01f3e03b
RM
657/* Motorola 68k specific definitions. */
658
659/* m68k relocs. */
660
661#define R_68K_NONE 0 /* No reloc */
662#define R_68K_32 1 /* Direct 32 bit */
663#define R_68K_16 2 /* Direct 16 bit */
664#define R_68K_8 3 /* Direct 8 bit */
665#define R_68K_PC32 4 /* PC relative 32 bit */
666#define R_68K_PC16 5 /* PC relative 16 bit */
667#define R_68K_PC8 6 /* PC relative 8 bit */
668#define R_68K_GOT32 7 /* 32 bit PC relative GOT entry */
669#define R_68K_GOT16 8 /* 16 bit PC relative GOT entry */
670#define R_68K_GOT8 9 /* 8 bit PC relative GOT entry */
671#define R_68K_GOT32O 10 /* 32 bit GOT offset */
672#define R_68K_GOT16O 11 /* 16 bit GOT offset */
673#define R_68K_GOT8O 12 /* 8 bit GOT offset */
674#define R_68K_PLT32 13 /* 32 bit PC relative PLT address */
675#define R_68K_PLT16 14 /* 16 bit PC relative PLT address */
676#define R_68K_PLT8 15 /* 8 bit PC relative PLT address */
677#define R_68K_PLT32O 16 /* 32 bit PLT offset */
678#define R_68K_PLT16O 17 /* 16 bit PLT offset */
679#define R_68K_PLT8O 18 /* 8 bit PLT offset */
680#define R_68K_COPY 19 /* Copy symbol at runtime */
681#define R_68K_GLOB_DAT 20 /* Create GOT entry */
682#define R_68K_JMP_SLOT 21 /* Create PLT entry */
683#define R_68K_RELATIVE 22 /* Adjust by program base */
684
28f540f4
RM
685/* Intel 80386 specific definitions. */
686
687/* i386 relocs. */
688
689#define R_386_NONE 0 /* No reloc */
690#define R_386_32 1 /* Direct 32 bit */
691#define R_386_PC32 2 /* PC relative 32 bit */
692#define R_386_GOT32 3 /* 32 bit GOT entry */
693#define R_386_PLT32 4 /* 32 bit PLT address */
694#define R_386_COPY 5 /* Copy symbol at runtime */
695#define R_386_GLOB_DAT 6 /* Create GOT entry */
696#define R_386_JMP_SLOT 7 /* Create PLT entry */
697#define R_386_RELATIVE 8 /* Adjust by program base */
698#define R_386_GOTOFF 9 /* 32 bit offset to GOT */
699#define R_386_GOTPC 10 /* 32 bit PC relative offset to GOT */
700
701/* SUN SPARC specific definitions. */
702
703/* SPARC relocs. */
704
705#define R_SPARC_NONE 0 /* No reloc */
706#define R_SPARC_8 1 /* Direct 8 bit */
707#define R_SPARC_16 2 /* Direct 16 bit */
708#define R_SPARC_32 3 /* Direct 32 bit */
709#define R_SPARC_DISP8 4 /* PC relative 8 bit */
710#define R_SPARC_DISP16 5 /* PC relative 16 bit */
711#define R_SPARC_DISP32 6 /* PC relative 32 bit */
712#define R_SPARC_WDISP30 7 /* PC relative 30 bit shifted */
713#define R_SPARC_WDISP22 8 /* PC relative 22 bit shifted */
714#define R_SPARC_HI22 9 /* High 22 bit */
715#define R_SPARC_22 10 /* Direct 22 bit */
716#define R_SPARC_13 11 /* Direct 13 bit */
717#define R_SPARC_LO10 12 /* Truncated 10 bit */
718#define R_SPARC_GOT10 13 /* Truncated 10 bit GOT entry */
719#define R_SPARC_GOT13 14 /* 13 bit GOT entry */
720#define R_SPARC_GOT22 15 /* 22 bit GOT entry shifted */
721#define R_SPARC_PC10 16 /* PC relative 10 bit truncated */
722#define R_SPARC_PC22 17 /* PC relative 22 bit shifted */
723#define R_SPARC_WPLT30 18 /* 30 bit PC relative PLT address */
724#define R_SPARC_COPY 19 /* Copy symbol at runtime */
725#define R_SPARC_GLOB_DAT 20 /* Create GOT entry */
726#define R_SPARC_JMP_SLOT 21 /* Create PLT entry */
727#define R_SPARC_RELATIVE 22 /* Adjust by program base */
728#define R_SPARC_UA32 23 /* Direct 32 bit unaligned */
729
730/* MIPS R3000 specific definitions. */
731
732/* Legal values for e_flags field of Elf32_Ehdr. */
733
734#define EF_MIPS_NOREORDER 1 /* A .noreorder directive was used */
735#define EF_MIPS_PIC 2 /* Contains PIC code */
736#define EF_MIPS_CPIC 4 /* Uses PIC calling sequence */
737#define EF_MIPS_ARCH 0xf0000000 /* MIPS architecture level */
738
0200214b
RM
739/* Legal values for MIPS architecture level. */
740
741#define E_MIPS_ARCH_1 0x00000000 /* -mips1 code. */
742#define E_MIPS_ARCH_2 0x10000000 /* -mips2 code. */
743#define E_MIPS_ARCH_3 0x20000000 /* -mips3 code. */
f21acc89
UD
744#define E_MIPS_ARCH_4 0x30000000 /* -mips4 code. */
745#define E_MIPS_ARCH_5 0x40000000 /* -mips5 code. */
0200214b 746
28f540f4
RM
747/* Special section indices. */
748
749#define SHN_MIPS_ACOMMON 0xff00 /* Allocated common symbols */
76060ec0
RM
750#define SHN_MIPS_TEXT 0xff01 /* Allocated test symbols. */
751#define SHN_MIPS_DATA 0xff02 /* Allocated data symbols. */
28f540f4
RM
752#define SHN_MIPS_SCOMMON 0xff03 /* Small common symbols */
753#define SHN_MIPS_SUNDEFINED 0xff04 /* Small undefined symbols */
754
755/* Legal values for sh_type field of Elf32_Shdr. */
756
757#define SHT_MIPS_LIBLIST 0x70000000 /* Shared objects used in link */
758#define SHT_MIPS_CONFLICT 0x70000002 /* Conflicting symbols */
759#define SHT_MIPS_GPTAB 0x70000003 /* Global data area sizes */
760#define SHT_MIPS_UCODE 0x70000004 /* Reserved for SGI/MIPS compilers */
761#define SHT_MIPS_DEBUG 0x70000005 /* MIPS ECOFF debugging information */
762#define SHT_MIPS_REGINFO 0x70000006 /* Register usage information */
0200214b
RM
763#define SHT_MIPS_OPTIONS 0x7000000d /* Miscellaneous options. */
764#define SHT_MIPS_DWARF 0x7000001e /* DWARF debugging information. */
765#define SHT_MIPS_EVENTS 0x70000021 /* Event section. */
28f540f4
RM
766
767/* Legal values for sh_flags field of Elf32_Shdr. */
768
769#define SHF_MIPS_GPREL 0x10000000 /* Must be part of global data area */
770
771/* Entries found in sections of type SHT_MIPS_GPTAB. */
772
773typedef union
774{
775 struct
776 {
777 Elf32_Word gt_current_g_value; /* -G value used for compilation */
778 Elf32_Word gt_unused; /* Not used */
779 } gt_header; /* First entry in section */
780 struct
781 {
782 Elf32_Word gt_g_value; /* If this value were used for -G */
783 Elf32_Word gt_bytes; /* This many bytes would be used */
784 } gt_entry; /* Subsequent entries in section */
785} Elf32_gptab;
786
787/* Entry found in sections of type SHT_MIPS_REGINFO. */
788
789typedef struct
790{
791 Elf32_Word ri_gprmask; /* General registers used */
792 Elf32_Word ri_cprmask[4]; /* Coprocessor registers used */
793 Elf32_Sword ri_gp_value; /* $gp register value */
794} Elf32_RegInfo;
795
796/* MIPS relocs. */
797
798#define R_MIPS_NONE 0 /* No reloc */
799#define R_MIPS_16 1 /* Direct 16 bit */
800#define R_MIPS_32 2 /* Direct 32 bit */
801#define R_MIPS_REL32 3 /* PC relative 32 bit */
802#define R_MIPS_26 4 /* Direct 26 bit shifted */
803#define R_MIPS_HI16 5 /* High 16 bit */
804#define R_MIPS_LO16 6 /* Low 16 bit */
805#define R_MIPS_GPREL16 7 /* GP relative 16 bit */
806#define R_MIPS_LITERAL 8 /* 16 bit literal entry */
807#define R_MIPS_GOT16 9 /* 16 bit GOT entry */
808#define R_MIPS_PC16 10 /* PC relative 16 bit */
809#define R_MIPS_CALL16 11 /* 16 bit GOT entry for function */
810#define R_MIPS_GPREL32 12 /* GP relative 32 bit */
811
812/* Legal values for p_type field of Elf32_Phdr. */
813
273d56ce 814#define PT_MIPS_REGINFO 0x70000000 /* Register usage information */
f21acc89
UD
815#define PT_MIPS_RTPROC 0x70000001 /* Runtime procedure table. */
816#define PT_MIPS_OPTIONS 0x70000002
28f540f4
RM
817
818/* Legal values for d_tag field of Elf32_Dyn. */
819
820#define DT_MIPS_RLD_VERSION 0x70000001 /* Runtime linker interface version */
821#define DT_MIPS_TIME_STAMP 0x70000002 /* Timestamp */
822#define DT_MIPS_ICHECKSUM 0x70000003 /* Checksum */
823#define DT_MIPS_IVERSION 0x70000004 /* Version string (string tbl index) */
824#define DT_MIPS_FLAGS 0x70000005 /* Flags */
825#define DT_MIPS_BASE_ADDRESS 0x70000006 /* Base address */
826#define DT_MIPS_CONFLICT 0x70000008 /* Address of CONFLICT section */
827#define DT_MIPS_LIBLIST 0x70000009 /* Address of LIBLIST section */
828#define DT_MIPS_LOCAL_GOTNO 0x7000000a /* Number of local GOT entries */
829#define DT_MIPS_CONFLICTNO 0x7000000b /* Number of CONFLICT entries */
830#define DT_MIPS_LIBLISTNO 0x70000010 /* Number of LIBLIST entries */
831#define DT_MIPS_SYMTABNO 0x70000011 /* Number of DYNSYM entries */
832#define DT_MIPS_UNREFEXTNO 0x70000012 /* First external DYNSYM */
833#define DT_MIPS_GOTSYM 0x70000013 /* First GOT entry in DYNSYM */
834#define DT_MIPS_HIPAGENO 0x70000014 /* Number of GOT page table entries */
0200214b
RM
835#define DT_MIPS_RLD_MAP 0x70000016 /* Address of run time loader map. */
836#define DT_MIPS_NUM 0x17
28f540f4
RM
837
838/* Legal values for DT_MIPS_FLAG Elf32_Dyn entry. */
839
840#define RHF_NONE 0 /* No flags */
841#define RHF_QUICKSTART (1 << 0) /* Use quickstart */
842#define RHF_NOTPOT (1 << 1) /* Hash size not power of 2 */
843#define RHF_NO_LIBRARY_REPLACEMENT (1 << 2) /* Ignore LD_LIBRARY_PATH */
844
845/* Entries found in sections of type SHT_MIPS_LIBLIST. */
846
847typedef struct
848{
849 Elf32_Word l_name; /* Name (string table index) */
850 Elf32_Word l_time_stamp; /* Timestamp */
851 Elf32_Word l_checksum; /* Checksum */
852 Elf32_Word l_version; /* Interface version */
853 Elf32_Word l_flags; /* Flags */
854} Elf32_Lib;
855
856/* Legal values for l_flags. */
857
858#define LL_EXACT_MATCH (1 << 0) /* Require exact match */
859#define LL_IGNORE_INT_VER (1 << 1) /* Ignore interface version */
860
861/* Entries found in sections of type SHT_MIPS_CONFLICT. */
862
863typedef Elf32_Addr Elf32_Conflict;
864
865
0200214b
RM
866/* HPPA specific definitions. */
867
868/* Legal values for sh_type field of Elf32_Shdr. */
869
870#define SHT_PARISC_GOT 0x70000000 /* GOT for external data. */
871#define SHT_PARISC_ARCH 0x70000001 /* Architecture extensions. */
872#define SHT_PARISC_GLOBAL 0x70000002 /* Definition of $global$. */
873#define SHT_PARISC_MILLI 0x70000003 /* Millicode routines. */
874#define SHT_PARISC_UNWIND 0x70000004 /* Unwind information. */
875#define SHT_PARISC_PLT 0x70000005 /* Procedure linkage table. */
876#define SHT_PARISC_SDATA 0x70000006 /* Short initialized data. */
877#define SHT_PARISC_SBSS 0x70000007 /* Short uninitialized data. */
878#define SHT_PARISC_SYMEXTN 0x70000008 /* Argument/relocation info. */
879#define SHT_PARISC_STUBS 0x70000009 /* Linker stubs. */
880
881/* Legal values for sh_flags field of Elf32_Shdr. */
882
883#define SHF_PARISC_SHORT 0x20000000 /* Section with short addressing. */
884
885/* Legal values for ST_TYPE subfield of st_info (symbol type). */
886
887#define STT_PARISC_MILLICODE 13 /* Millicode function entry point. */
888
889
266180eb
RM
890/* Alpha specific declarations. */
891
892/* Alpha relocs. */
893
894#define R_ALPHA_NONE 0 /* No reloc */
895#define R_ALPHA_REFLONG 1 /* Direct 32 bit */
896#define R_ALPHA_REFQUAD 2 /* Direct 64 bit */
897#define R_ALPHA_GPREL32 3 /* GP relative 32 bit */
898#define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */
899#define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */
900#define R_ALPHA_GPDISP 6 /* Add displacement to GP */
901#define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */
902#define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */
903#define R_ALPHA_SREL16 9 /* PC relative 16 bit */
904#define R_ALPHA_SREL32 10 /* PC relative 32 bit */
905#define R_ALPHA_SREL64 11 /* PC relative 64 bit */
906#define R_ALPHA_OP_PUSH 12 /* OP stack push */
907#define R_ALPHA_OP_STORE 13 /* OP stack pop and store */
908#define R_ALPHA_OP_PSUB 14 /* OP stack subtract */
909#define R_ALPHA_OP_PRSHIFT 15 /* OP stack right shift */
910#define R_ALPHA_GPVALUE 16
911#define R_ALPHA_GPRELHIGH 17
912#define R_ALPHA_GPRELLOW 18
913#define R_ALPHA_IMMED_GP_16 19
914#define R_ALPHA_IMMED_GP_HI32 20
915#define R_ALPHA_IMMED_SCN_HI32 21
916#define R_ALPHA_IMMED_BR_HI32 22
917#define R_ALPHA_IMMED_LO32 23
918#define R_ALPHA_COPY 24 /* Copy symbol at runtime */
919#define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */
920#define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */
921#define R_ALPHA_RELATIVE 27 /* Adjust by program base */
922
4cca6b86
UD
923
924/* PowerPC specific declarations */
925
926/* PowerPC relocations defined by the ABIs */
927#define R_PPC_NONE 0
928#define R_PPC_ADDR32 1
929#define R_PPC_ADDR24 2
930#define R_PPC_ADDR16 3
931#define R_PPC_ADDR16_LO 4
932#define R_PPC_ADDR16_HI 5
933#define R_PPC_ADDR16_HA 6
934#define R_PPC_ADDR14 7
935#define R_PPC_ADDR14_BRTAKEN 8
936#define R_PPC_ADDR14_BRNTAKEN 9
937#define R_PPC_REL24 10
938#define R_PPC_REL14 11
939#define R_PPC_REL14_BRTAKEN 12
940#define R_PPC_REL14_BRNTAKEN 13
941#define R_PPC_GOT16 14
942#define R_PPC_GOT16_LO 15
943#define R_PPC_GOT16_HI 16
944#define R_PPC_GOT16_HA 17
945#define R_PPC_PLTREL24 18
946#define R_PPC_COPY 19
947#define R_PPC_GLOB_DAT 20
948#define R_PPC_JMP_SLOT 21
949#define R_PPC_RELATIVE 22
950#define R_PPC_LOCAL24PC 23
951#define R_PPC_UADDR32 24
952#define R_PPC_UADDR16 25
953#define R_PPC_REL32 26
954#define R_PPC_PLT32 27
955#define R_PPC_PLTREL32 28
956#define R_PPC_PLT16_LO 29
957#define R_PPC_PLT16_HI 30
958#define R_PPC_PLT16_HA 31
959#define R_PPC_SDAREL16 32
960#define R_PPC_SECTOFF 33
961#define R_PPC_SECTOFF_LO 34
962#define R_PPC_SECTOFF_HI 35
963#define R_PPC_SECTOFF_HA 36
964
965/* The remaining relocs are from the Embedded ELF ABI, and are not
966 in the SVR4 ELF ABI. */
967#define R_PPC_EMB_NADDR32 101
968#define R_PPC_EMB_NADDR16 102
969#define R_PPC_EMB_NADDR16_LO 103
970#define R_PPC_EMB_NADDR16_HI 104
971#define R_PPC_EMB_NADDR16_HA 105
972#define R_PPC_EMB_SDAI16 106
973#define R_PPC_EMB_SDA2I16 107
974#define R_PPC_EMB_SDA2REL 108
975#define R_PPC_EMB_SDA21 109
976#define R_PPC_EMB_MRKREF 110
977#define R_PPC_EMB_RELSEC16 111
978#define R_PPC_EMB_RELST_LO 112
979#define R_PPC_EMB_RELST_HI 113
980#define R_PPC_EMB_RELST_HA 114
981#define R_PPC_EMB_BIT_FLD 115
982#define R_PPC_EMB_RELSDA 116
983
984/* This is a phony reloc to handle any old fashioned TOC16 references
985 that may still be in object files. */
986#define R_PPC_TOC16 255
987
54d79e99 988__END_DECLS
266180eb 989
28f540f4 990#endif /* elf.h */