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