This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / include / linux / elf.h
1 #ifndef _LINUX_ELF_H
2 #define _LINUX_ELF_H
3
4 #include <linux/types.h>
5 #include <asm/elf.h>
6
7 /* 32-bit ELF base types. */
8 typedef __u32   Elf32_Addr;
9 typedef __u16   Elf32_Half;
10 typedef __u32   Elf32_Off;
11 typedef __s32   Elf32_Sword;
12 typedef __u32   Elf32_Word;
13
14 /* 64-bit ELF base types. */
15 typedef __u64   Elf64_Addr;
16 typedef __u16   Elf64_Half;
17 typedef __s16   Elf64_SHalf;
18 typedef __u64   Elf64_Off;
19 typedef __s32   Elf64_Sword;
20 typedef __u32   Elf64_Word;
21 typedef __u64   Elf64_Xword;
22 typedef __s64   Elf64_Sxword;
23
24 /* These constants are for the segment types stored in the image headers */
25 #define PT_NULL    0
26 #define PT_LOAD    1
27 #define PT_DYNAMIC 2
28 #define PT_INTERP  3
29 #define PT_NOTE    4
30 #define PT_SHLIB   5
31 #define PT_PHDR    6
32 #define PT_LOOS    0x60000000
33 #define PT_HIOS    0x6fffffff
34 #define PT_LOPROC  0x70000000
35 #define PT_HIPROC  0x7fffffff
36 #define PT_GNU_EH_FRAME         0x6474e550
37
38 #define PT_GNU_STACK    (PT_LOOS + 0x474e551)
39
40 #define PT_GNU_STACK            (PT_LOOS + 0x474e551)
41
42 /* These constants define the different elf file types */
43 #define ET_NONE   0
44 #define ET_REL    1
45 #define ET_EXEC   2
46 #define ET_DYN    3
47 #define ET_CORE   4
48 #define ET_LOPROC 0xff00
49 #define ET_HIPROC 0xffff
50
51 /* These constants define the various ELF target machines */
52 #define EM_NONE  0
53 #define EM_M32   1
54 #define EM_SPARC 2
55 #define EM_386   3
56 #define EM_68K   4
57 #define EM_88K   5
58 #define EM_486   6   /* Perhaps disused */
59 #define EM_860   7
60
61 #define EM_MIPS         8       /* MIPS R3000 (officially, big-endian only) */
62
63 #define EM_MIPS_RS4_BE 10       /* MIPS R4000 big-endian */
64
65 #define EM_PARISC      15       /* HPPA */
66
67 #define EM_SPARC32PLUS 18       /* Sun's "v8plus" */
68
69 #define EM_PPC         20       /* PowerPC */
70 #define EM_PPC64       21       /* PowerPC64 */
71
72 #define EM_SH          42       /* SuperH */
73
74 #define EM_SPARCV9     43       /* SPARC v9 64-bit */
75
76 #define EM_IA_64        50      /* HP/Intel IA-64 */
77
78 #define EM_X86_64       62      /* AMD x86-64 */
79
80 #define EM_S390         22      /* IBM S/390 */
81
82 #define EM_CRIS         76      /* Axis Communications 32-bit embedded processor */
83
84 #define EM_V850         87      /* NEC v850 */
85
86 #define EM_H8_300       46      /* Hitachi H8/300,300H,H8S */
87
88 /*
89  * This is an interim value that we will use until the committee comes
90  * up with a final number.
91  */
92 #define EM_ALPHA        0x9026
93
94 /* Bogus old v850 magic number, used by old tools.  */
95 #define EM_CYGNUS_V850  0x9080
96
97 /*
98  * This is the old interim value for S/390 architecture
99  */
100 #define EM_S390_OLD     0xA390
101
102 /* This is the info that is needed to parse the dynamic section of the file */
103 #define DT_NULL         0
104 #define DT_NEEDED       1
105 #define DT_PLTRELSZ     2
106 #define DT_PLTGOT       3
107 #define DT_HASH         4
108 #define DT_STRTAB       5
109 #define DT_SYMTAB       6
110 #define DT_RELA         7
111 #define DT_RELASZ       8
112 #define DT_RELAENT      9
113 #define DT_STRSZ        10
114 #define DT_SYMENT       11
115 #define DT_INIT         12
116 #define DT_FINI         13
117 #define DT_SONAME       14
118 #define DT_RPATH        15
119 #define DT_SYMBOLIC     16
120 #define DT_REL          17
121 #define DT_RELSZ        18
122 #define DT_RELENT       19
123 #define DT_PLTREL       20
124 #define DT_DEBUG        21
125 #define DT_TEXTREL      22
126 #define DT_JMPREL       23
127 #define DT_LOPROC       0x70000000
128 #define DT_HIPROC       0x7fffffff
129
130 /* This info is needed when parsing the symbol table */
131 #define STB_LOCAL  0
132 #define STB_GLOBAL 1
133 #define STB_WEAK   2
134
135 #define STT_NOTYPE  0
136 #define STT_OBJECT  1
137 #define STT_FUNC    2
138 #define STT_SECTION 3
139 #define STT_FILE    4
140
141 #define ELF_ST_BIND(x)          ((x) >> 4)
142 #define ELF_ST_TYPE(x)          (((unsigned int) x) & 0xf)
143 #define ELF32_ST_BIND(x)        ELF_ST_BIND(x)
144 #define ELF32_ST_TYPE(x)        ELF_ST_TYPE(x)
145 #define ELF64_ST_BIND(x)        ELF_ST_BIND(x)
146 #define ELF64_ST_TYPE(x)        ELF_ST_TYPE(x)
147
148 /* Symbolic values for the entries in the auxiliary table
149    put on the initial stack */
150 #define AT_NULL   0     /* end of vector */
151 #define AT_IGNORE 1     /* entry should be ignored */
152 #define AT_EXECFD 2     /* file descriptor of program */
153 #define AT_PHDR   3     /* program headers for program */
154 #define AT_PHENT  4     /* size of program header entry */
155 #define AT_PHNUM  5     /* number of program headers */
156 #define AT_PAGESZ 6     /* system page size */
157 #define AT_BASE   7     /* base address of interpreter */
158 #define AT_FLAGS  8     /* flags */
159 #define AT_ENTRY  9     /* entry point of program */
160 #define AT_NOTELF 10    /* program is not ELF */
161 #define AT_UID    11    /* real uid */
162 #define AT_EUID   12    /* effective uid */
163 #define AT_GID    13    /* real gid */
164 #define AT_EGID   14    /* effective gid */
165 #define AT_PLATFORM 15  /* string identifying CPU for optimizations */
166 #define AT_HWCAP  16    /* arch dependent hints at CPU capabilities */
167 #define AT_CLKTCK 17    /* frequency at which times() increments */
168
169 #define AT_SECURE 23   /* secure mode boolean */
170
171 typedef struct dynamic{
172   Elf32_Sword d_tag;
173   union{
174     Elf32_Sword d_val;
175     Elf32_Addr  d_ptr;
176   } d_un;
177 } Elf32_Dyn;
178
179 typedef struct {
180   Elf64_Sxword d_tag;           /* entry tag value */
181   union {
182     Elf64_Xword d_val;
183     Elf64_Addr d_ptr;
184   } d_un;
185 } Elf64_Dyn;
186
187 /* The following are used with relocations */
188 #define ELF32_R_SYM(x) ((x) >> 8)
189 #define ELF32_R_TYPE(x) ((x) & 0xff)
190
191 #define ELF64_R_SYM(i)                  ((i) >> 32)
192 #define ELF64_R_TYPE(i)                 ((i) & 0xffffffff)
193
194 typedef struct elf32_rel {
195   Elf32_Addr    r_offset;
196   Elf32_Word    r_info;
197 } Elf32_Rel;
198
199 typedef struct elf64_rel {
200   Elf64_Addr r_offset;  /* Location at which to apply the action */
201   Elf64_Xword r_info;   /* index and type of relocation */
202 } Elf64_Rel;
203
204 typedef struct elf32_rela{
205   Elf32_Addr    r_offset;
206   Elf32_Word    r_info;
207   Elf32_Sword   r_addend;
208 } Elf32_Rela;
209
210 typedef struct elf64_rela {
211   Elf64_Addr r_offset;  /* Location at which to apply the action */
212   Elf64_Xword r_info;   /* index and type of relocation */
213   Elf64_Sxword r_addend;        /* Constant addend used to compute value */
214 } Elf64_Rela;
215
216 typedef struct elf32_sym{
217   Elf32_Word    st_name;
218   Elf32_Addr    st_value;
219   Elf32_Word    st_size;
220   unsigned char st_info;
221   unsigned char st_other;
222   Elf32_Half    st_shndx;
223 } Elf32_Sym;
224
225 typedef struct elf64_sym {
226   Elf64_Word st_name;           /* Symbol name, index in string tbl */
227   unsigned char st_info;        /* Type and binding attributes */
228   unsigned char st_other;       /* No defined meaning, 0 */
229   Elf64_Half st_shndx;          /* Associated section index */
230   Elf64_Addr st_value;          /* Value of the symbol */
231   Elf64_Xword st_size;          /* Associated symbol size */
232 } Elf64_Sym;
233
234
235 #define EI_NIDENT       16
236
237 typedef struct elf32_hdr{
238   unsigned char e_ident[EI_NIDENT];
239   Elf32_Half    e_type;
240   Elf32_Half    e_machine;
241   Elf32_Word    e_version;
242   Elf32_Addr    e_entry;  /* Entry point */
243   Elf32_Off     e_phoff;
244   Elf32_Off     e_shoff;
245   Elf32_Word    e_flags;
246   Elf32_Half    e_ehsize;
247   Elf32_Half    e_phentsize;
248   Elf32_Half    e_phnum;
249   Elf32_Half    e_shentsize;
250   Elf32_Half    e_shnum;
251   Elf32_Half    e_shstrndx;
252 } Elf32_Ehdr;
253
254 typedef struct elf64_hdr {
255   unsigned char e_ident[16];            /* ELF "magic number" */
256   Elf64_Half e_type;
257   Elf64_Half e_machine;
258   Elf64_Word e_version;
259   Elf64_Addr e_entry;           /* Entry point virtual address */
260   Elf64_Off e_phoff;            /* Program header table file offset */
261   Elf64_Off e_shoff;            /* Section header table file offset */
262   Elf64_Word e_flags;
263   Elf64_Half e_ehsize;
264   Elf64_Half e_phentsize;
265   Elf64_Half e_phnum;
266   Elf64_Half e_shentsize;
267   Elf64_Half e_shnum;
268   Elf64_Half e_shstrndx;
269 } Elf64_Ehdr;
270
271 /* These constants define the permissions on sections in the program
272    header, p_flags. */
273 #define PF_R            0x4
274 #define PF_W            0x2
275 #define PF_X            0x1
276
277 typedef struct elf32_phdr{
278   Elf32_Word    p_type;
279   Elf32_Off     p_offset;
280   Elf32_Addr    p_vaddr;
281   Elf32_Addr    p_paddr;
282   Elf32_Word    p_filesz;
283   Elf32_Word    p_memsz;
284   Elf32_Word    p_flags;
285   Elf32_Word    p_align;
286 } Elf32_Phdr;
287
288 typedef struct elf64_phdr {
289   Elf64_Word p_type;
290   Elf64_Word p_flags;
291   Elf64_Off p_offset;           /* Segment file offset */
292   Elf64_Addr p_vaddr;           /* Segment virtual address */
293   Elf64_Addr p_paddr;           /* Segment physical address */
294   Elf64_Xword p_filesz;         /* Segment size in file */
295   Elf64_Xword p_memsz;          /* Segment size in memory */
296   Elf64_Xword p_align;          /* Segment alignment, file & memory */
297 } Elf64_Phdr;
298
299 /* sh_type */
300 #define SHT_NULL        0
301 #define SHT_PROGBITS    1
302 #define SHT_SYMTAB      2
303 #define SHT_STRTAB      3
304 #define SHT_RELA        4
305 #define SHT_HASH        5
306 #define SHT_DYNAMIC     6
307 #define SHT_NOTE        7
308 #define SHT_NOBITS      8
309 #define SHT_REL         9
310 #define SHT_SHLIB       10
311 #define SHT_DYNSYM      11
312 #define SHT_NUM         12
313 #define SHT_LOPROC      0x70000000
314 #define SHT_HIPROC      0x7fffffff
315 #define SHT_LOUSER      0x80000000
316 #define SHT_HIUSER      0xffffffff
317
318 /* sh_flags */
319 #define SHF_WRITE       0x1
320 #define SHF_ALLOC       0x2
321 #define SHF_EXECINSTR   0x4
322 #define SHF_MASKPROC    0xf0000000
323
324 /* special section indexes */
325 #define SHN_UNDEF       0
326 #define SHN_LORESERVE   0xff00
327 #define SHN_LOPROC      0xff00
328 #define SHN_HIPROC      0xff1f
329 #define SHN_ABS         0xfff1
330 #define SHN_COMMON      0xfff2
331 #define SHN_HIRESERVE   0xffff
332  
333 typedef struct {
334   Elf32_Word    sh_name;
335   Elf32_Word    sh_type;
336   Elf32_Word    sh_flags;
337   Elf32_Addr    sh_addr;
338   Elf32_Off     sh_offset;
339   Elf32_Word    sh_size;
340   Elf32_Word    sh_link;
341   Elf32_Word    sh_info;
342   Elf32_Word    sh_addralign;
343   Elf32_Word    sh_entsize;
344 } Elf32_Shdr;
345
346 typedef struct elf64_shdr {
347   Elf64_Word sh_name;           /* Section name, index in string tbl */
348   Elf64_Word sh_type;           /* Type of section */
349   Elf64_Xword sh_flags;         /* Miscellaneous section attributes */
350   Elf64_Addr sh_addr;           /* Section virtual addr at execution */
351   Elf64_Off sh_offset;          /* Section file offset */
352   Elf64_Xword sh_size;          /* Size of section in bytes */
353   Elf64_Word sh_link;           /* Index of another section */
354   Elf64_Word sh_info;           /* Additional section information */
355   Elf64_Xword sh_addralign;     /* Section alignment */
356   Elf64_Xword sh_entsize;       /* Entry size if section holds table */
357 } Elf64_Shdr;
358
359 #define EI_MAG0         0               /* e_ident[] indexes */
360 #define EI_MAG1         1
361 #define EI_MAG2         2
362 #define EI_MAG3         3
363 #define EI_CLASS        4
364 #define EI_DATA         5
365 #define EI_VERSION      6
366 #define EI_OSABI        7
367 #define EI_PAD          8
368
369 #define ELFMAG0         0x7f            /* EI_MAG */
370 #define ELFMAG1         'E'
371 #define ELFMAG2         'L'
372 #define ELFMAG3         'F'
373 #define ELFMAG          "\177ELF"
374 #define SELFMAG         4
375
376 #define ELFCLASSNONE    0               /* EI_CLASS */
377 #define ELFCLASS32      1
378 #define ELFCLASS64      2
379 #define ELFCLASSNUM     3
380
381 #define ELFDATANONE     0               /* e_ident[EI_DATA] */
382 #define ELFDATA2LSB     1
383 #define ELFDATA2MSB     2
384
385 #define EV_NONE         0               /* e_version, EI_VERSION */
386 #define EV_CURRENT      1
387 #define EV_NUM          2
388
389 #define ELFOSABI_NONE   0
390 #define ELFOSABI_LINUX  3
391
392 #ifndef ELF_OSABI
393 #define ELF_OSABI ELFOSABI_NONE
394 #endif
395
396 /* Notes used in ET_CORE */
397 #define NT_PRSTATUS     1
398 #define NT_PRFPREG      2
399 #define NT_PRPSINFO     3
400 #define NT_TASKSTRUCT   4
401 #define NT_AUXV         6
402 #define NT_PRXFPREG     0x46e62b7f      /* copied from gdb5.1/include/elf/common.h */
403
404
405 /* Note header in a PT_NOTE section */
406 typedef struct elf32_note {
407   Elf32_Word    n_namesz;       /* Name size */
408   Elf32_Word    n_descsz;       /* Content size */
409   Elf32_Word    n_type;         /* Content type */
410 } Elf32_Nhdr;
411
412 /* Note header in a PT_NOTE section */
413 typedef struct elf64_note {
414   Elf64_Word n_namesz;  /* Name size */
415   Elf64_Word n_descsz;  /* Content size */
416   Elf64_Word n_type;    /* Content type */
417 } Elf64_Nhdr;
418
419 #if ELF_CLASS == ELFCLASS32
420
421 extern Elf32_Dyn _DYNAMIC [];
422 #define elfhdr          elf32_hdr
423 #define elf_phdr        elf32_phdr
424 #define elf_note        elf32_note
425
426 #else
427
428 extern Elf64_Dyn _DYNAMIC [];
429 #define elfhdr          elf64_hdr
430 #define elf_phdr        elf64_phdr
431 #define elf_note        elf64_note
432
433 #endif
434
435
436 #endif /* _LINUX_ELF_H */