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