elfcpp/:
[external/binutils.git] / elfcpp / elfcpp.h
1 // elfcpp.h -- main header file for elfcpp    -*- C++ -*-
2
3 // Copyright 2006, 2007, 2008, 2009 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
5
6 // This file is part of elfcpp.
7
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public License
10 // as published by the Free Software Foundation; either version 2, or
11 // (at your option) any later version.
12
13 // In addition to the permissions in the GNU Library General Public
14 // License, the Free Software Foundation gives you unlimited
15 // permission to link the compiled version of this file into
16 // combinations with other programs, and to distribute those
17 // combinations without any restriction coming from the use of this
18 // file.  (The Library Public License restrictions do apply in other
19 // respects; for example, they cover modification of the file, and
20 // distribution when not linked into a combined executable.)
21
22 // This program is distributed in the hope that it will be useful, but
23 // WITHOUT ANY WARRANTY; without even the implied warranty of
24 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
25 // Library General Public License for more details.
26
27 // You should have received a copy of the GNU Library General Public
28 // License along with this program; if not, write to the Free Software
29 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
30 // 02110-1301, USA.
31
32 // This is the external interface for elfcpp.
33
34 #ifndef ELFCPP_H
35 #define ELFCPP_H
36
37 #include "elfcpp_swap.h"
38
39 #include <stdint.h>
40
41 namespace elfcpp
42 {
43
44 // Basic ELF types.
45
46 // These types are always the same size.
47
48 typedef uint16_t Elf_Half;
49 typedef uint32_t Elf_Word;
50 typedef int32_t Elf_Sword;
51 typedef uint64_t Elf_Xword;
52 typedef int64_t Elf_Sxword;
53
54 // These types vary in size depending on the ELF file class.  The
55 // template parameter should be 32 or 64.
56
57 template<int size>
58 struct Elf_types;
59
60 template<>
61 struct Elf_types<32>
62 {
63   typedef uint32_t Elf_Addr;
64   typedef uint32_t Elf_Off;
65   typedef uint32_t Elf_WXword;
66   typedef int32_t Elf_Swxword;
67 };
68
69 template<>
70 struct Elf_types<64>
71 {
72   typedef uint64_t Elf_Addr;
73   typedef uint64_t Elf_Off;
74   typedef uint64_t Elf_WXword;
75   typedef int64_t Elf_Swxword;
76 };
77
78 // Offsets within the Ehdr e_ident field.
79
80 const int EI_MAG0 = 0;
81 const int EI_MAG1 = 1;
82 const int EI_MAG2 = 2;
83 const int EI_MAG3 = 3;
84 const int EI_CLASS = 4;
85 const int EI_DATA = 5;
86 const int EI_VERSION = 6;
87 const int EI_OSABI = 7;
88 const int EI_ABIVERSION = 8;
89 const int EI_PAD = 9;
90 const int EI_NIDENT = 16;
91
92 // The valid values found in Ehdr e_ident[EI_MAG0 through EI_MAG3].
93
94 const int ELFMAG0 = 0x7f;
95 const int ELFMAG1 = 'E';
96 const int ELFMAG2 = 'L';
97 const int ELFMAG3 = 'F';
98
99 // The valid values found in Ehdr e_ident[EI_CLASS].
100
101 enum
102 {
103   ELFCLASSNONE = 0,
104   ELFCLASS32 = 1,
105   ELFCLASS64 = 2
106 };
107
108 // The valid values found in Ehdr e_ident[EI_DATA].
109
110 enum
111 {
112   ELFDATANONE = 0,
113   ELFDATA2LSB = 1,
114   ELFDATA2MSB = 2
115 };
116
117 // The valid values found in Ehdr e_ident[EI_VERSION] and e_version.
118
119 enum
120 {
121   EV_NONE = 0,
122   EV_CURRENT = 1
123 };
124
125 // The valid values found in Ehdr e_ident[EI_OSABI].
126
127 enum ELFOSABI
128 {
129   ELFOSABI_NONE = 0,
130   ELFOSABI_HPUX = 1,
131   ELFOSABI_NETBSD = 2,
132   // ELFOSABI_LINUX is not listed in the ELF standard.
133   ELFOSABI_LINUX = 3,
134   // ELFOSABI_HURD is not listed in the ELF standard.
135   ELFOSABI_HURD = 4,
136   ELFOSABI_SOLARIS = 6,
137   ELFOSABI_AIX = 7,
138   ELFOSABI_IRIX = 8,
139   ELFOSABI_FREEBSD = 9,
140   ELFOSABI_TRU64 = 10,
141   ELFOSABI_MODESTO = 11,
142   ELFOSABI_OPENBSD = 12,
143   ELFOSABI_OPENVMS = 13,
144   ELFOSABI_NSK = 14,
145   ELFOSABI_AROS = 15,
146   // A GNU extension for the ARM.
147   ELFOSABI_ARM = 97,
148   // A GNU extension for the MSP.
149   ELFOSABI_STANDALONE = 255
150 };
151
152 // The valid values found in the Ehdr e_type field.
153
154 enum ET
155 {
156   ET_NONE = 0,
157   ET_REL = 1,
158   ET_EXEC = 2,
159   ET_DYN = 3,
160   ET_CORE = 4,
161   ET_LOOS = 0xfe00,
162   ET_HIOS = 0xfeff,
163   ET_LOPROC = 0xff00,
164   ET_HIPROC = 0xffff
165 };
166
167 // The valid values found in the Ehdr e_machine field.
168
169 enum EM
170 {
171   EM_NONE = 0,
172   EM_M32 = 1,
173   EM_SPARC = 2,
174   EM_386 = 3,
175   EM_68K = 4,
176   EM_88K = 5,
177   // 6 used to be EM_486
178   EM_860 = 7,
179   EM_MIPS = 8,
180   EM_S370 = 9,
181   EM_MIPS_RS3_LE = 10,
182   // 11 was the old Sparc V9 ABI.
183   // 12 through 14 are reserved.
184   EM_PARISC = 15,
185   // 16 is reserved.
186   // Some old PowerPC object files use 17.
187   EM_VPP500 = 17,
188   EM_SPARC32PLUS = 18,
189   EM_960 = 19,
190   EM_PPC = 20,
191   EM_PPC64 = 21,
192   EM_S390 = 22,
193   // 23 through 35 are served.
194   EM_V800 = 36,
195   EM_FR20 = 37,
196   EM_RH32 = 38,
197   EM_RCE = 39,
198   EM_ARM = 40,
199   EM_ALPHA = 41,
200   EM_SH = 42,
201   EM_SPARCV9 = 43,
202   EM_TRICORE = 44,
203   EM_ARC = 45,
204   EM_H8_300 = 46,
205   EM_H8_300H = 47,
206   EM_H8S = 48,
207   EM_H8_500 = 49,
208   EM_IA_64 = 50,
209   EM_MIPS_X = 51,
210   EM_COLDFIRE = 52,
211   EM_68HC12 = 53,
212   EM_MMA = 54,
213   EM_PCP = 55,
214   EM_NCPU = 56,
215   EM_NDR1 = 57,
216   EM_STARCORE = 58,
217   EM_ME16 = 59,
218   EM_ST100 = 60,
219   EM_TINYJ = 61,
220   EM_X86_64 = 62,
221   EM_PDSP = 63,
222   EM_PDP10 = 64,
223   EM_PDP11 = 65,
224   EM_FX66 = 66,
225   EM_ST9PLUS = 67,
226   EM_ST7 = 68,
227   EM_68HC16 = 69,
228   EM_68HC11 = 70,
229   EM_68HC08 = 71,
230   EM_68HC05 = 72,
231   EM_SVX = 73,
232   EM_ST19 = 74,
233   EM_VAX = 75,
234   EM_CRIS = 76,
235   EM_JAVELIN = 77,
236   EM_FIREPATH = 78,
237   EM_ZSP = 79,
238   EM_MMIX = 80,
239   EM_HUANY = 81,
240   EM_PRISM = 82,
241   EM_AVR = 83,
242   EM_FR30 = 84,
243   EM_D10V = 85,
244   EM_D30V = 86,
245   EM_V850 = 87,
246   EM_M32R = 88,
247   EM_MN10300 = 89,
248   EM_MN10200 = 90,
249   EM_PJ = 91,
250   EM_OPENRISC = 92,
251   EM_ARC_A5 = 93,
252   EM_XTENSA = 94,
253   EM_VIDEOCORE = 95,
254   EM_TMM_GPP = 96,
255   EM_NS32K = 97,
256   EM_TPC = 98,
257   // Some old picoJava object files use 99 (EM_PJ is correct).
258   EM_SNP1K = 99,
259   EM_ST200 = 100,
260   EM_IP2K = 101,
261   EM_MAX = 102,
262   EM_CR = 103,
263   EM_F2MC16 = 104,
264   EM_MSP430 = 105,
265   EM_BLACKFIN = 106,
266   EM_SE_C33 = 107,
267   EM_SEP = 108,
268   EM_ARCA = 109,
269   EM_UNICORE = 110,
270   EM_ALTERA_NIOS2 = 113,
271   EM_CRX = 114,
272   // The Morph MT.
273   EM_MT = 0x2530,
274   // DLX.
275   EM_DLX = 0x5aa5,
276   // FRV.
277   EM_FRV = 0x5441,
278   // Infineon Technologies 16-bit microcontroller with C166-V2 core.
279   EM_X16X = 0x4688,
280   // Xstorym16
281   EM_XSTORMY16 = 0xad45,
282   // Renesas M32C
283   EM_M32C = 0xfeb0,
284   // Vitesse IQ2000
285   EM_IQ2000 = 0xfeba,
286   // NIOS
287   EM_NIOS32 = 0xfebb
288   // Old AVR objects used 0x1057 (EM_AVR is correct).
289   // Old MSP430 objects used 0x1059 (EM_MSP430 is correct).
290   // Old FR30 objects used 0x3330 (EM_FR30 is correct).
291   // Old OpenRISC objects used 0x3426 and 0x8472 (EM_OPENRISC is correct).
292   // Old D10V objects used 0x7650 (EM_D10V is correct).
293   // Old D30V objects used 0x7676 (EM_D30V is correct).
294   // Old IP2X objects used 0x8217 (EM_IP2K is correct).
295   // Old PowerPC objects used 0x9025 (EM_PPC is correct).
296   // Old Alpha objects used 0x9026 (EM_ALPHA is correct).
297   // Old M32R objects used 0x9041 (EM_M32R is correct).
298   // Old V850 objects used 0x9080 (EM_V850 is correct).
299   // Old S/390 objects used 0xa390 (EM_S390 is correct).
300   // Old Xtensa objects used 0xabc7 (EM_XTENSA is correct).
301   // Old MN10300 objects used 0xbeef (EM_MN10300 is correct).
302   // Old MN10200 objects used 0xdead (EM_MN10200 is correct).
303 };
304
305 // A special value found in the Ehdr e_phnum field.
306
307 enum
308 {
309   // Number of program segments stored in sh_info field of first
310   // section headre.
311   PN_XNUM = 0xffff
312 };
313
314 // Special section indices.
315
316 enum
317 {
318   SHN_UNDEF = 0,
319   SHN_LORESERVE = 0xff00,
320   SHN_LOPROC = 0xff00,
321   SHN_HIPROC = 0xff1f,
322   SHN_LOOS = 0xff20,
323   SHN_HIOS = 0xff3f,
324   SHN_ABS = 0xfff1,
325   SHN_COMMON = 0xfff2,
326   SHN_XINDEX = 0xffff,
327   SHN_HIRESERVE = 0xffff,
328
329   // Provide for initial and final section ordering in conjunction
330   // with the SHF_LINK_ORDER and SHF_ORDERED section flags.
331   SHN_BEFORE = 0xff00,
332   SHN_AFTER = 0xff01,
333
334   // x86_64 specific large common symbol.
335   SHN_X86_64_LCOMMON = 0xff02
336 };
337
338 // The valid values found in the Shdr sh_type field.
339
340 enum SHT
341 {
342   SHT_NULL = 0,
343   SHT_PROGBITS = 1,
344   SHT_SYMTAB = 2,
345   SHT_STRTAB = 3,
346   SHT_RELA = 4,
347   SHT_HASH = 5,
348   SHT_DYNAMIC = 6,
349   SHT_NOTE = 7,
350   SHT_NOBITS = 8,
351   SHT_REL = 9,
352   SHT_SHLIB = 10,
353   SHT_DYNSYM = 11,
354   SHT_INIT_ARRAY = 14,
355   SHT_FINI_ARRAY = 15,
356   SHT_PREINIT_ARRAY = 16,
357   SHT_GROUP = 17,
358   SHT_SYMTAB_SHNDX = 18,
359   SHT_LOOS = 0x60000000,
360   SHT_HIOS = 0x6fffffff,
361   SHT_LOPROC = 0x70000000,
362   SHT_HIPROC = 0x7fffffff,
363   SHT_LOUSER = 0x80000000,
364   SHT_HIUSER = 0xffffffff,
365   // The remaining values are not in the standard.
366   // Incremental build data.
367   SHT_GNU_INCREMENTAL_INPUTS = 0x6fff4700,
368   // Object attributes.
369   SHT_GNU_ATTRIBUTES = 0x6ffffff5,
370   // GNU style dynamic hash table.
371   SHT_GNU_HASH = 0x6ffffff6,
372   // List of prelink dependencies.
373   SHT_GNU_LIBLIST = 0x6ffffff7,
374   // Versions defined by file.
375   SHT_SUNW_verdef = 0x6ffffffd,
376   SHT_GNU_verdef = 0x6ffffffd,
377   // Versions needed by file.
378   SHT_SUNW_verneed = 0x6ffffffe,
379   SHT_GNU_verneed = 0x6ffffffe,
380   // Symbol versions,
381   SHT_SUNW_versym = 0x6fffffff,
382   SHT_GNU_versym = 0x6fffffff,
383
384   SHT_SPARC_GOTDATA = 0x70000000,
385
386   // ARM-specific section types.
387   // Exception Index table.
388   SHT_ARM_EXIDX = 0x70000001,
389   // BPABI DLL dynamic linking pre-emption map.
390   SHT_ARM_PREEMPTMAP = 0x70000002,
391   // Object file compatibility attributes.
392   SHT_ARM_ATTRIBUTES = 0x70000003,
393   // Support for debugging overlaid programs.
394   SHT_ARM_DEBUGOVERLAY = 0x70000004,
395   SHT_ARM_OVERLAYSECTION = 0x70000005,
396
397   // x86_64 unwind information.
398   SHT_X86_64_UNWIND = 0x70000001,
399
400   // Link editor is to sort the entries in this section based on the
401   // address specified in the associated symbol table entry.
402   SHT_ORDERED = 0x7fffffff
403 };
404
405 // The valid bit flags found in the Shdr sh_flags field.
406
407 enum SHF
408 {
409   SHF_WRITE = 0x1,
410   SHF_ALLOC = 0x2,
411   SHF_EXECINSTR = 0x4,
412   SHF_MERGE = 0x10,
413   SHF_STRINGS = 0x20,
414   SHF_INFO_LINK = 0x40,
415   SHF_LINK_ORDER = 0x80,
416   SHF_OS_NONCONFORMING = 0x100,
417   SHF_GROUP = 0x200,
418   SHF_TLS = 0x400,
419   SHF_MASKOS = 0x0ff00000,
420   SHF_MASKPROC = 0xf0000000,
421
422   // Indicates this section requires ordering in relation to
423   // other sections of the same type.  Ordered sections are
424   // combined within the section pointed to by the sh_link entry.
425   // The sh_info values SHN_BEFORE and SHN_AFTER imply that the
426   // sorted section is to precede or follow, respectively, all
427   // other sections in the set being ordered.
428   SHF_ORDERED = 0x40000000,
429   // This section is excluded from input to the link-edit of an
430   // executable or shared object.  This flag is ignored if SHF_ALLOC
431   // is also set, or if relocations exist against the section.
432   SHF_EXCLUDE = 0x80000000,
433
434   // x86_64 specific large section.
435   SHF_X86_64_LARGE = 0x10000000
436 };
437
438 // Bit flags which appear in the first 32-bit word of the section data
439 // of a SHT_GROUP section.
440
441 enum
442 {
443   GRP_COMDAT = 0x1,
444   GRP_MASKOS = 0x0ff00000,
445   GRP_MASKPROC = 0xf0000000
446 };
447
448 // The valid values found in the Phdr p_type field.
449
450 enum PT
451 {
452   PT_NULL = 0,
453   PT_LOAD = 1,
454   PT_DYNAMIC = 2,
455   PT_INTERP = 3,
456   PT_NOTE = 4,
457   PT_SHLIB = 5,
458   PT_PHDR = 6,
459   PT_TLS = 7,
460   PT_LOOS = 0x60000000,
461   PT_HIOS = 0x6fffffff,
462   PT_LOPROC = 0x70000000,
463   PT_HIPROC = 0x7fffffff,
464   // The remaining values are not in the standard.
465   // Frame unwind information.
466   PT_GNU_EH_FRAME = 0x6474e550,
467   PT_SUNW_EH_FRAME = 0x6474e550,
468   // Stack flags.
469   PT_GNU_STACK = 0x6474e551,
470   // Read only after relocation.
471   PT_GNU_RELRO = 0x6474e552,
472   // Platform architecture compatibility information
473   PT_ARM_ARCHEXT = 0x70000000,
474   // Exception unwind tables
475   PT_ARM_EXIDX = 0x70000001
476 };
477
478 // The valid bit flags found in the Phdr p_flags field.
479
480 enum PF
481 {
482   PF_X = 0x1,
483   PF_W = 0x2,
484   PF_R = 0x4,
485   PF_MASKOS = 0x0ff00000,
486   PF_MASKPROC = 0xf0000000
487 };
488
489 // Symbol binding from Sym st_info field.
490
491 enum STB
492 {
493   STB_LOCAL = 0,
494   STB_GLOBAL = 1,
495   STB_WEAK = 2,
496   STB_LOOS = 10,
497   STB_GNU_UNIQUE = 10,
498   STB_HIOS = 12,
499   STB_LOPROC = 13,
500   STB_HIPROC = 15
501 };
502
503 // Symbol types from Sym st_info field.
504
505 enum STT
506 {
507   STT_NOTYPE = 0,
508   STT_OBJECT = 1,
509   STT_FUNC = 2,
510   STT_SECTION = 3,
511   STT_FILE = 4,
512   STT_COMMON = 5,
513   STT_TLS = 6,
514   STT_LOOS = 10,
515   STT_GNU_IFUNC = 10,
516   STT_HIOS = 12,
517   STT_LOPROC = 13,
518   STT_HIPROC = 15,
519
520   // The section type that must be used for register symbols on
521   // Sparc.  These symbols initialize a global register.
522   STT_SPARC_REGISTER = 13,
523
524   // ARM: a THUMB function.  This is not defined in ARM ELF Specification but
525   // used by the GNU tool-chain.
526   STT_ARM_TFUNC = 13
527 };
528
529 inline STB
530 elf_st_bind(unsigned char info)
531 {
532   return static_cast<STB>(info >> 4);
533 }
534
535 inline STT
536 elf_st_type(unsigned char info)
537 {
538   return static_cast<STT>(info & 0xf);
539 }
540
541 inline unsigned char
542 elf_st_info(STB bind, STT type)
543 {
544   return ((static_cast<unsigned char>(bind) << 4)
545           + (static_cast<unsigned char>(type) & 0xf));
546 }
547
548 // Symbol visibility from Sym st_other field.
549
550 enum STV
551 {
552   STV_DEFAULT = 0,
553   STV_INTERNAL = 1,
554   STV_HIDDEN = 2,
555   STV_PROTECTED = 3
556 };
557
558 inline STV
559 elf_st_visibility(unsigned char other)
560 {
561   return static_cast<STV>(other & 0x3);
562 }
563
564 inline unsigned char
565 elf_st_nonvis(unsigned char other)
566 {
567   return static_cast<STV>(other >> 2);
568 }
569
570 inline unsigned char
571 elf_st_other(STV vis, unsigned char nonvis)
572 {
573   return ((nonvis << 2)
574           + (static_cast<unsigned char>(vis) & 3));
575 }
576
577 // Reloc information from Rel/Rela r_info field.
578
579 template<int size>
580 unsigned int
581 elf_r_sym(typename Elf_types<size>::Elf_WXword);
582
583 template<>
584 inline unsigned int
585 elf_r_sym<32>(Elf_Word v)
586 {
587   return v >> 8;
588 }
589
590 template<>
591 inline unsigned int
592 elf_r_sym<64>(Elf_Xword v)
593 {
594   return v >> 32;
595 }
596
597 template<int size>
598 unsigned int
599 elf_r_type(typename Elf_types<size>::Elf_WXword);
600
601 template<>
602 inline unsigned int
603 elf_r_type<32>(Elf_Word v)
604 {
605   return v & 0xff;
606 }
607
608 template<>
609 inline unsigned int
610 elf_r_type<64>(Elf_Xword v)
611 {
612   return v & 0xffffffff;
613 }
614
615 template<int size>
616 typename Elf_types<size>::Elf_WXword
617 elf_r_info(unsigned int s, unsigned int t);
618
619 template<>
620 inline Elf_Word
621 elf_r_info<32>(unsigned int s, unsigned int t)
622 {
623   return (s << 8) + (t & 0xff);
624 }
625
626 template<>
627 inline Elf_Xword
628 elf_r_info<64>(unsigned int s, unsigned int t)
629 {
630   return (static_cast<Elf_Xword>(s) << 32) + (t & 0xffffffff);
631 }
632
633 // Dynamic tags found in the PT_DYNAMIC segment.
634
635 enum DT
636 {
637   DT_NULL = 0,
638   DT_NEEDED = 1,
639   DT_PLTRELSZ = 2,
640   DT_PLTGOT = 3,
641   DT_HASH = 4,
642   DT_STRTAB = 5,
643   DT_SYMTAB = 6,
644   DT_RELA = 7,
645   DT_RELASZ = 8,
646   DT_RELAENT = 9,
647   DT_STRSZ = 10,
648   DT_SYMENT = 11,
649   DT_INIT = 12,
650   DT_FINI = 13,
651   DT_SONAME = 14,
652   DT_RPATH = 15,
653   DT_SYMBOLIC = 16,
654   DT_REL = 17,
655   DT_RELSZ = 18,
656   DT_RELENT = 19,
657   DT_PLTREL = 20,
658   DT_DEBUG = 21,
659   DT_TEXTREL = 22,
660   DT_JMPREL = 23,
661   DT_BIND_NOW = 24,
662   DT_INIT_ARRAY = 25,
663   DT_FINI_ARRAY = 26,
664   DT_INIT_ARRAYSZ = 27,
665   DT_FINI_ARRAYSZ = 28,
666   DT_RUNPATH = 29,
667   DT_FLAGS = 30,
668
669   // This is used to mark a range of dynamic tags.  It is not really
670   // a tag value.
671   DT_ENCODING = 32,
672
673   DT_PREINIT_ARRAY = 32,
674   DT_PREINIT_ARRAYSZ = 33,
675   DT_LOOS = 0x6000000d,
676   DT_HIOS = 0x6ffff000,
677   DT_LOPROC = 0x70000000,
678   DT_HIPROC = 0x7fffffff,
679
680   // The remaining values are extensions used by GNU or Solaris.
681   DT_VALRNGLO = 0x6ffffd00,
682   DT_GNU_PRELINKED = 0x6ffffdf5,
683   DT_GNU_CONFLICTSZ = 0x6ffffdf6,
684   DT_GNU_LIBLISTSZ = 0x6ffffdf7,
685   DT_CHECKSUM = 0x6ffffdf8,
686   DT_PLTPADSZ = 0x6ffffdf9,
687   DT_MOVEENT = 0x6ffffdfa,
688   DT_MOVESZ = 0x6ffffdfb,
689   DT_FEATURE = 0x6ffffdfc,
690   DT_POSFLAG_1 = 0x6ffffdfd,
691   DT_SYMINSZ = 0x6ffffdfe,
692   DT_SYMINENT = 0x6ffffdff,
693   DT_VALRNGHI = 0x6ffffdff,
694
695   DT_ADDRRNGLO = 0x6ffffe00,
696   DT_GNU_HASH = 0x6ffffef5,
697   DT_TLSDESC_PLT = 0x6ffffef6,
698   DT_TLSDESC_GOT = 0x6ffffef7,
699   DT_GNU_CONFLICT = 0x6ffffef8,
700   DT_GNU_LIBLIST = 0x6ffffef9,
701   DT_CONFIG = 0x6ffffefa,
702   DT_DEPAUDIT = 0x6ffffefb,
703   DT_AUDIT = 0x6ffffefc,
704   DT_PLTPAD = 0x6ffffefd,
705   DT_MOVETAB = 0x6ffffefe,
706   DT_SYMINFO = 0x6ffffeff,
707   DT_ADDRRNGHI = 0x6ffffeff,
708
709   DT_RELACOUNT = 0x6ffffff9,
710   DT_RELCOUNT = 0x6ffffffa,
711   DT_FLAGS_1 = 0x6ffffffb,
712   DT_VERDEF = 0x6ffffffc,
713   DT_VERDEFNUM = 0x6ffffffd,
714   DT_VERNEED = 0x6ffffffe,
715   DT_VERNEEDNUM = 0x6fffffff,
716
717   DT_VERSYM = 0x6ffffff0,
718
719   // Specify the value of _GLOBAL_OFFSET_TABLE_.
720   DT_PPC_GOT = 0x70000000,
721
722   // Specify the start of the .glink section.
723   DT_PPC64_GLINK = 0x70000000,
724
725   // Specify the start and size of the .opd section.
726   DT_PPC64_OPD = 0x70000001,
727   DT_PPC64_OPDSZ = 0x70000002,
728
729   // The index of an STT_SPARC_REGISTER symbol within the DT_SYMTAB
730   // symbol table.  One dynamic entry exists for every STT_SPARC_REGISTER
731   // symbol in the symbol table.
732   DT_SPARC_REGISTER = 0x70000001,
733
734   DT_AUXILIARY = 0x7ffffffd,
735   DT_USED = 0x7ffffffe,
736   DT_FILTER = 0x7fffffff
737 };
738
739 // Flags found in the DT_FLAGS dynamic element.
740
741 enum DF
742 {
743   DF_ORIGIN = 0x1,
744   DF_SYMBOLIC = 0x2,
745   DF_TEXTREL = 0x4,
746   DF_BIND_NOW = 0x8,
747   DF_STATIC_TLS = 0x10
748 };
749
750 // Flags found in the DT_FLAGS_1 dynamic element.
751
752 enum DF_1
753 {
754   DF_1_NOW = 0x1,
755   DF_1_GLOBAL = 0x2,
756   DF_1_GROUP = 0x4,
757   DF_1_NODELETE = 0x8,
758   DF_1_LOADFLTR = 0x10,
759   DF_1_INITFIRST = 0x20,
760   DF_1_NOOPEN = 0x40,
761   DF_1_ORIGIN = 0x80,
762   DF_1_DIRECT = 0x100,
763   DF_1_TRANS = 0x200,
764   DF_1_INTERPOSE = 0x400,
765   DF_1_NODEFLIB = 0x800,
766   DF_1_NODUMP = 0x1000,
767   DF_1_CONLFAT = 0x2000
768 };
769
770 // Version numbers which appear in the vd_version field of a Verdef
771 // structure.
772
773 const int VER_DEF_NONE = 0;
774 const int VER_DEF_CURRENT = 1;
775
776 // Version numbers which appear in the vn_version field of a Verneed
777 // structure.
778
779 const int VER_NEED_NONE = 0;
780 const int VER_NEED_CURRENT = 1;
781
782 // Bit flags which appear in vd_flags of Verdef and vna_flags of
783 // Vernaux.
784
785 const int VER_FLG_BASE = 0x1;
786 const int VER_FLG_WEAK = 0x2;
787
788 // Special constants found in the SHT_GNU_versym entries.
789
790 const int VER_NDX_LOCAL = 0;
791 const int VER_NDX_GLOBAL = 1;
792
793 // A SHT_GNU_versym section holds 16-bit words.  This bit is set if
794 // the symbol is hidden and can only be seen when referenced using an
795 // explicit version number.  This is a GNU extension.
796
797 const int VERSYM_HIDDEN = 0x8000;
798
799 // This is the mask for the rest of the data in a word read from a
800 // SHT_GNU_versym section.
801
802 const int VERSYM_VERSION = 0x7fff;
803
804 // Note descriptor type codes for notes in a non-core file with an
805 // empty name.
806
807 enum
808 {
809   // A version string.
810   NT_VERSION = 1,
811   // An architecture string.
812   NT_ARCH = 2
813 };
814
815 // Note descriptor type codes for notes in a non-core file with the
816 // name "GNU".
817
818 enum
819 {
820   // The minimum ABI level.  This is used by the dynamic linker to
821   // describe the minimal kernel version on which a shared library may
822   // be used.  Th value should be four words.  Word 0 is an OS
823   // descriptor (see below).  Word 1 is the major version of the ABI.
824   // Word 2 is the minor version.  Word 3 is the subminor version.
825   NT_GNU_ABI_TAG = 1,
826   // Hardware capabilities information.  Word 0 is the number of
827   // entries.  Word 1 is a bitmask of enabled entries.  The rest of
828   // the descriptor is a series of entries, where each entry is a
829   // single byte followed by a nul terminated string.  The byte gives
830   // the bit number to test if enabled in the bitmask.
831   NT_GNU_HWCAP = 2,
832   // The build ID as set by the linker's --build-id option.  The
833   // format of the descriptor depends on the build ID style.
834   NT_GNU_BUILD_ID = 3,
835   // The version of gold used to link.  Th descriptor is just a
836   // string.
837   NT_GNU_GOLD_VERSION = 4
838 };
839
840 // The OS values which may appear in word 0 of a NT_GNU_ABI_TAG note.
841
842 enum
843 {
844   ELF_NOTE_OS_LINUX = 0,
845   ELF_NOTE_OS_GNU = 1,
846   ELF_NOTE_OS_SOLARIS2 = 2,
847   ELF_NOTE_OS_FREEBSD = 3,
848   ELF_NOTE_OS_NETBSD = 4,
849   ELF_NOTE_OS_SYLLABLE = 5
850 };
851
852 } // End namespace elfcpp.
853
854 // Include internal details after defining the types.
855 #include "elfcpp_internal.h"
856
857 namespace elfcpp
858 {
859
860 // The offset of the ELF file header in the ELF file.
861
862 const int file_header_offset = 0;
863
864 // ELF structure sizes.
865
866 template<int size>
867 struct Elf_sizes
868 {
869   // Size of ELF file header.
870   static const int ehdr_size = sizeof(internal::Ehdr_data<size>);
871   // Size of ELF segment header.
872   static const int phdr_size = sizeof(internal::Phdr_data<size>);
873   // Size of ELF section header.
874   static const int shdr_size = sizeof(internal::Shdr_data<size>);
875   // Size of ELF symbol table entry.
876   static const int sym_size = sizeof(internal::Sym_data<size>);
877   // Sizes of ELF reloc entries.
878   static const int rel_size = sizeof(internal::Rel_data<size>);
879   static const int rela_size = sizeof(internal::Rela_data<size>);
880   // Size of ELF dynamic entry.
881   static const int dyn_size = sizeof(internal::Dyn_data<size>);
882   // Size of ELF version structures.
883   static const int verdef_size = sizeof(internal::Verdef_data);
884   static const int verdaux_size = sizeof(internal::Verdaux_data);
885   static const int verneed_size = sizeof(internal::Verneed_data);
886   static const int vernaux_size = sizeof(internal::Vernaux_data);
887 };
888
889 // Accessor class for the ELF file header.
890
891 template<int size, bool big_endian>
892 class Ehdr
893 {
894  public:
895   Ehdr(const unsigned char* p)
896     : p_(reinterpret_cast<const internal::Ehdr_data<size>*>(p))
897   { }
898
899   template<typename File>
900   Ehdr(File* file, typename File::Location loc)
901     : p_(reinterpret_cast<const internal::Ehdr_data<size>*>(
902            file->view(loc.file_offset, loc.data_size).data()))
903   { }
904
905   const unsigned char*
906   get_e_ident() const
907   { return this->p_->e_ident; }
908
909   Elf_Half
910   get_e_type() const
911   { return Convert<16, big_endian>::convert_host(this->p_->e_type); }
912
913   Elf_Half
914   get_e_machine() const
915   { return Convert<16, big_endian>::convert_host(this->p_->e_machine); }
916
917   Elf_Word
918   get_e_version() const
919   { return Convert<32, big_endian>::convert_host(this->p_->e_version); }
920
921   typename Elf_types<size>::Elf_Addr
922   get_e_entry() const
923   { return Convert<size, big_endian>::convert_host(this->p_->e_entry); }
924
925   typename Elf_types<size>::Elf_Off
926   get_e_phoff() const
927   { return Convert<size, big_endian>::convert_host(this->p_->e_phoff); }
928
929   typename Elf_types<size>::Elf_Off
930   get_e_shoff() const
931   { return Convert<size, big_endian>::convert_host(this->p_->e_shoff); }
932
933   Elf_Word
934   get_e_flags() const
935   { return Convert<32, big_endian>::convert_host(this->p_->e_flags); }
936
937   Elf_Half
938   get_e_ehsize() const
939   { return Convert<16, big_endian>::convert_host(this->p_->e_ehsize); }
940
941   Elf_Half
942   get_e_phentsize() const
943   { return Convert<16, big_endian>::convert_host(this->p_->e_phentsize); }
944
945   Elf_Half
946   get_e_phnum() const
947   { return Convert<16, big_endian>::convert_host(this->p_->e_phnum); }
948
949   Elf_Half
950   get_e_shentsize() const
951   { return Convert<16, big_endian>::convert_host(this->p_->e_shentsize); }
952
953   Elf_Half
954   get_e_shnum() const
955   { return Convert<16, big_endian>::convert_host(this->p_->e_shnum); }
956
957   Elf_Half
958   get_e_shstrndx() const
959   { return Convert<16, big_endian>::convert_host(this->p_->e_shstrndx); }
960
961  private:
962   const internal::Ehdr_data<size>* p_;
963 };
964
965 // Write class for the ELF file header.
966
967 template<int size, bool big_endian>
968 class Ehdr_write
969 {
970  public:
971   Ehdr_write(unsigned char* p)
972     : p_(reinterpret_cast<internal::Ehdr_data<size>*>(p))
973   { }
974
975   void
976   put_e_ident(const unsigned char v[EI_NIDENT]) const
977   { memcpy(this->p_->e_ident, v, EI_NIDENT); }
978
979   void
980   put_e_type(Elf_Half v)
981   { this->p_->e_type = Convert<16, big_endian>::convert_host(v); }
982
983   void
984   put_e_machine(Elf_Half v)
985   { this->p_->e_machine = Convert<16, big_endian>::convert_host(v); }
986
987   void
988   put_e_version(Elf_Word v)
989   { this->p_->e_version = Convert<32, big_endian>::convert_host(v); }
990
991   void
992   put_e_entry(typename Elf_types<size>::Elf_Addr v)
993   { this->p_->e_entry = Convert<size, big_endian>::convert_host(v); }
994
995   void
996   put_e_phoff(typename Elf_types<size>::Elf_Off v)
997   { this->p_->e_phoff = Convert<size, big_endian>::convert_host(v); }
998
999   void
1000   put_e_shoff(typename Elf_types<size>::Elf_Off v)
1001   { this->p_->e_shoff = Convert<size, big_endian>::convert_host(v); }
1002
1003   void
1004   put_e_flags(Elf_Word v)
1005   { this->p_->e_flags = Convert<32, big_endian>::convert_host(v); }
1006
1007   void
1008   put_e_ehsize(Elf_Half v)
1009   { this->p_->e_ehsize = Convert<16, big_endian>::convert_host(v); }
1010
1011   void
1012   put_e_phentsize(Elf_Half v)
1013   { this->p_->e_phentsize = Convert<16, big_endian>::convert_host(v); }
1014
1015   void
1016   put_e_phnum(Elf_Half v)
1017   { this->p_->e_phnum = Convert<16, big_endian>::convert_host(v); }
1018
1019   void
1020   put_e_shentsize(Elf_Half v)
1021   { this->p_->e_shentsize = Convert<16, big_endian>::convert_host(v); }
1022
1023   void
1024   put_e_shnum(Elf_Half v)
1025   { this->p_->e_shnum = Convert<16, big_endian>::convert_host(v); }
1026
1027   void
1028   put_e_shstrndx(Elf_Half v)
1029   { this->p_->e_shstrndx = Convert<16, big_endian>::convert_host(v); }
1030
1031  private:
1032   internal::Ehdr_data<size>* p_;
1033 };
1034
1035 // Accessor class for an ELF section header.
1036
1037 template<int size, bool big_endian>
1038 class Shdr
1039 {
1040  public:
1041   Shdr(const unsigned char* p)
1042     : p_(reinterpret_cast<const internal::Shdr_data<size>*>(p))
1043   { }
1044
1045   template<typename File>
1046   Shdr(File* file, typename File::Location loc)
1047     : p_(reinterpret_cast<const internal::Shdr_data<size>*>(
1048            file->view(loc.file_offset, loc.data_size).data()))
1049   { }
1050
1051   Elf_Word
1052   get_sh_name() const
1053   { return Convert<32, big_endian>::convert_host(this->p_->sh_name); }
1054
1055   Elf_Word
1056   get_sh_type() const
1057   { return Convert<32, big_endian>::convert_host(this->p_->sh_type); }
1058
1059   typename Elf_types<size>::Elf_WXword
1060   get_sh_flags() const
1061   { return Convert<size, big_endian>::convert_host(this->p_->sh_flags); }
1062
1063   typename Elf_types<size>::Elf_Addr
1064   get_sh_addr() const
1065   { return Convert<size, big_endian>::convert_host(this->p_->sh_addr); }
1066
1067   typename Elf_types<size>::Elf_Off
1068   get_sh_offset() const
1069   { return Convert<size, big_endian>::convert_host(this->p_->sh_offset); }
1070
1071   typename Elf_types<size>::Elf_WXword
1072   get_sh_size() const
1073   { return Convert<size, big_endian>::convert_host(this->p_->sh_size); }
1074
1075   Elf_Word
1076   get_sh_link() const
1077   { return Convert<32, big_endian>::convert_host(this->p_->sh_link); }
1078
1079   Elf_Word
1080   get_sh_info() const
1081   { return Convert<32, big_endian>::convert_host(this->p_->sh_info); }
1082
1083   typename Elf_types<size>::Elf_WXword
1084   get_sh_addralign() const
1085   { return
1086       Convert<size, big_endian>::convert_host(this->p_->sh_addralign); }
1087
1088   typename Elf_types<size>::Elf_WXword
1089   get_sh_entsize() const
1090   { return Convert<size, big_endian>::convert_host(this->p_->sh_entsize); }
1091
1092  private:
1093   const internal::Shdr_data<size>* p_;
1094 };
1095
1096 // Write class for an ELF section header.
1097
1098 template<int size, bool big_endian>
1099 class Shdr_write
1100 {
1101  public:
1102   Shdr_write(unsigned char* p)
1103     : p_(reinterpret_cast<internal::Shdr_data<size>*>(p))
1104   { }
1105
1106   void
1107   put_sh_name(Elf_Word v)
1108   { this->p_->sh_name = Convert<32, big_endian>::convert_host(v); }
1109
1110   void
1111   put_sh_type(Elf_Word v)
1112   { this->p_->sh_type = Convert<32, big_endian>::convert_host(v); }
1113
1114   void
1115   put_sh_flags(typename Elf_types<size>::Elf_WXword v)
1116   { this->p_->sh_flags = Convert<size, big_endian>::convert_host(v); }
1117
1118   void
1119   put_sh_addr(typename Elf_types<size>::Elf_Addr v)
1120   { this->p_->sh_addr = Convert<size, big_endian>::convert_host(v); }
1121
1122   void
1123   put_sh_offset(typename Elf_types<size>::Elf_Off v)
1124   { this->p_->sh_offset = Convert<size, big_endian>::convert_host(v); }
1125
1126   void
1127   put_sh_size(typename Elf_types<size>::Elf_WXword v)
1128   { this->p_->sh_size = Convert<size, big_endian>::convert_host(v); }
1129
1130   void
1131   put_sh_link(Elf_Word v)
1132   { this->p_->sh_link = Convert<32, big_endian>::convert_host(v); }
1133
1134   void
1135   put_sh_info(Elf_Word v)
1136   { this->p_->sh_info = Convert<32, big_endian>::convert_host(v); }
1137
1138   void
1139   put_sh_addralign(typename Elf_types<size>::Elf_WXword v)
1140   { this->p_->sh_addralign = Convert<size, big_endian>::convert_host(v); }
1141
1142   void
1143   put_sh_entsize(typename Elf_types<size>::Elf_WXword v)
1144   { this->p_->sh_entsize = Convert<size, big_endian>::convert_host(v); }
1145
1146  private:
1147   internal::Shdr_data<size>* p_;
1148 };
1149
1150 // Accessor class for an ELF segment header.
1151
1152 template<int size, bool big_endian>
1153 class Phdr
1154 {
1155  public:
1156   Phdr(const unsigned char* p)
1157     : p_(reinterpret_cast<const internal::Phdr_data<size>*>(p))
1158   { }
1159
1160   template<typename File>
1161   Phdr(File* file, typename File::Location loc)
1162     : p_(reinterpret_cast<internal::Phdr_data<size>*>(
1163            file->view(loc.file_offset, loc.data_size).data()))
1164   { }
1165
1166   Elf_Word
1167   get_p_type() const
1168   { return Convert<32, big_endian>::convert_host(this->p_->p_type); }
1169
1170   typename Elf_types<size>::Elf_Off
1171   get_p_offset() const
1172   { return Convert<size, big_endian>::convert_host(this->p_->p_offset); }
1173
1174   typename Elf_types<size>::Elf_Addr
1175   get_p_vaddr() const
1176   { return Convert<size, big_endian>::convert_host(this->p_->p_vaddr); }
1177
1178   typename Elf_types<size>::Elf_Addr
1179   get_p_paddr() const
1180   { return Convert<size, big_endian>::convert_host(this->p_->p_paddr); }
1181
1182   typename Elf_types<size>::Elf_WXword
1183   get_p_filesz() const
1184   { return Convert<size, big_endian>::convert_host(this->p_->p_filesz); }
1185
1186   typename Elf_types<size>::Elf_WXword
1187   get_p_memsz() const
1188   { return Convert<size, big_endian>::convert_host(this->p_->p_memsz); }
1189
1190   Elf_Word
1191   get_p_flags() const
1192   { return Convert<32, big_endian>::convert_host(this->p_->p_flags); }
1193
1194   typename Elf_types<size>::Elf_WXword
1195   get_p_align() const
1196   { return Convert<size, big_endian>::convert_host(this->p_->p_align); }
1197
1198  private:
1199   const internal::Phdr_data<size>* p_;
1200 };
1201
1202 // Write class for an ELF segment header.
1203
1204 template<int size, bool big_endian>
1205 class Phdr_write
1206 {
1207  public:
1208   Phdr_write(unsigned char* p)
1209     : p_(reinterpret_cast<internal::Phdr_data<size>*>(p))
1210   { }
1211
1212   void
1213   put_p_type(Elf_Word v)
1214   { this->p_->p_type = Convert<32, big_endian>::convert_host(v); }
1215
1216   void
1217   put_p_offset(typename Elf_types<size>::Elf_Off v)
1218   { this->p_->p_offset = Convert<size, big_endian>::convert_host(v); }
1219
1220   void
1221   put_p_vaddr(typename Elf_types<size>::Elf_Addr v)
1222   { this->p_->p_vaddr = Convert<size, big_endian>::convert_host(v); }
1223
1224   void
1225   put_p_paddr(typename Elf_types<size>::Elf_Addr v)
1226   { this->p_->p_paddr = Convert<size, big_endian>::convert_host(v); }
1227
1228   void
1229   put_p_filesz(typename Elf_types<size>::Elf_WXword v)
1230   { this->p_->p_filesz = Convert<size, big_endian>::convert_host(v); }
1231
1232   void
1233   put_p_memsz(typename Elf_types<size>::Elf_WXword v)
1234   { this->p_->p_memsz = Convert<size, big_endian>::convert_host(v); }
1235
1236   void
1237   put_p_flags(Elf_Word v)
1238   { this->p_->p_flags = Convert<32, big_endian>::convert_host(v); }
1239
1240   void
1241   put_p_align(typename Elf_types<size>::Elf_WXword v)
1242   { this->p_->p_align = Convert<size, big_endian>::convert_host(v); }
1243
1244  private:
1245   internal::Phdr_data<size>* p_;
1246 };
1247
1248 // Accessor class for an ELF symbol table entry.
1249
1250 template<int size, bool big_endian>
1251 class Sym
1252 {
1253  public:
1254   Sym(const unsigned char* p)
1255     : p_(reinterpret_cast<const internal::Sym_data<size>*>(p))
1256   { }
1257
1258   template<typename File>
1259   Sym(File* file, typename File::Location loc)
1260     : p_(reinterpret_cast<const internal::Sym_data<size>*>(
1261            file->view(loc.file_offset, loc.data_size).data()))
1262   { }
1263
1264   Elf_Word
1265   get_st_name() const
1266   { return Convert<32, big_endian>::convert_host(this->p_->st_name); }
1267
1268   typename Elf_types<size>::Elf_Addr
1269   get_st_value() const
1270   { return Convert<size, big_endian>::convert_host(this->p_->st_value); }
1271
1272   typename Elf_types<size>::Elf_WXword
1273   get_st_size() const
1274   { return Convert<size, big_endian>::convert_host(this->p_->st_size); }
1275
1276   unsigned char
1277   get_st_info() const
1278   { return this->p_->st_info; }
1279
1280   STB
1281   get_st_bind() const
1282   { return elf_st_bind(this->get_st_info()); }
1283
1284   STT
1285   get_st_type() const
1286   { return elf_st_type(this->get_st_info()); }
1287
1288   unsigned char
1289   get_st_other() const
1290   { return this->p_->st_other; }
1291
1292   STV
1293   get_st_visibility() const
1294   { return elf_st_visibility(this->get_st_other()); }
1295
1296   unsigned char
1297   get_st_nonvis() const
1298   { return elf_st_nonvis(this->get_st_other()); }
1299
1300   Elf_Half
1301   get_st_shndx() const
1302   { return Convert<16, big_endian>::convert_host(this->p_->st_shndx); }
1303
1304  private:
1305   const internal::Sym_data<size>* p_;
1306 };
1307
1308 // Writer class for an ELF symbol table entry.
1309
1310 template<int size, bool big_endian>
1311 class Sym_write
1312 {
1313  public:
1314   Sym_write(unsigned char* p)
1315     : p_(reinterpret_cast<internal::Sym_data<size>*>(p))
1316   { }
1317
1318   void
1319   put_st_name(Elf_Word v)
1320   { this->p_->st_name = Convert<32, big_endian>::convert_host(v); }
1321
1322   void
1323   put_st_value(typename Elf_types<size>::Elf_Addr v)
1324   { this->p_->st_value = Convert<size, big_endian>::convert_host(v); }
1325
1326   void
1327   put_st_size(typename Elf_types<size>::Elf_WXword v)
1328   { this->p_->st_size = Convert<size, big_endian>::convert_host(v); }
1329
1330   void
1331   put_st_info(unsigned char v)
1332   { this->p_->st_info = v; }
1333
1334   void
1335   put_st_info(STB bind, STT type)
1336   { this->p_->st_info = elf_st_info(bind, type); }
1337
1338   void
1339   put_st_other(unsigned char v)
1340   { this->p_->st_other = v; }
1341
1342   void
1343   put_st_other(STV vis, unsigned char nonvis)
1344   { this->p_->st_other = elf_st_other(vis, nonvis); }
1345
1346   void
1347   put_st_shndx(Elf_Half v)
1348   { this->p_->st_shndx = Convert<16, big_endian>::convert_host(v); }
1349
1350   Sym<size, big_endian>
1351   sym()
1352   { return Sym<size, big_endian>(reinterpret_cast<unsigned char*>(this->p_)); }
1353
1354  private:
1355   internal::Sym_data<size>* p_;
1356 };
1357
1358 // Accessor classes for an ELF REL relocation entry.
1359
1360 template<int size, bool big_endian>
1361 class Rel
1362 {
1363  public:
1364   Rel(const unsigned char* p)
1365     : p_(reinterpret_cast<const internal::Rel_data<size>*>(p))
1366   { }
1367
1368   template<typename File>
1369   Rel(File* file, typename File::Location loc)
1370     : p_(reinterpret_cast<const internal::Rel_data<size>*>(
1371            file->view(loc.file_offset, loc.data_size).data()))
1372   { }
1373
1374   typename Elf_types<size>::Elf_Addr
1375   get_r_offset() const
1376   { return Convert<size, big_endian>::convert_host(this->p_->r_offset); }
1377
1378   typename Elf_types<size>::Elf_WXword
1379   get_r_info() const
1380   { return Convert<size, big_endian>::convert_host(this->p_->r_info); }
1381
1382  private:
1383   const internal::Rel_data<size>* p_;
1384 };
1385
1386 // Writer class for an ELF Rel relocation.
1387
1388 template<int size, bool big_endian>
1389 class Rel_write
1390 {
1391  public:
1392   Rel_write(unsigned char* p)
1393     : p_(reinterpret_cast<internal::Rel_data<size>*>(p))
1394   { }
1395
1396   void
1397   put_r_offset(typename Elf_types<size>::Elf_Addr v)
1398   { this->p_->r_offset = Convert<size, big_endian>::convert_host(v); }
1399
1400   void
1401   put_r_info(typename Elf_types<size>::Elf_WXword v)
1402   { this->p_->r_info = Convert<size, big_endian>::convert_host(v); }
1403
1404  private:
1405   internal::Rel_data<size>* p_;
1406 };
1407
1408 // Accessor class for an ELF Rela relocation.
1409
1410 template<int size, bool big_endian>
1411 class Rela
1412 {
1413  public:
1414   Rela(const unsigned char* p)
1415     : p_(reinterpret_cast<const internal::Rela_data<size>*>(p))
1416   { }
1417
1418   template<typename File>
1419   Rela(File* file, typename File::Location loc)
1420     : p_(reinterpret_cast<const internal::Rela_data<size>*>(
1421            file->view(loc.file_offset, loc.data_size).data()))
1422   { }
1423
1424   typename Elf_types<size>::Elf_Addr
1425   get_r_offset() const
1426   { return Convert<size, big_endian>::convert_host(this->p_->r_offset); }
1427
1428   typename Elf_types<size>::Elf_WXword
1429   get_r_info() const
1430   { return Convert<size, big_endian>::convert_host(this->p_->r_info); }
1431
1432   typename Elf_types<size>::Elf_Swxword
1433   get_r_addend() const
1434   { return Convert<size, big_endian>::convert_host(this->p_->r_addend); }
1435
1436  private:
1437   const internal::Rela_data<size>* p_;
1438 };
1439
1440 // Writer class for an ELF Rela relocation.
1441
1442 template<int size, bool big_endian>
1443 class Rela_write
1444 {
1445  public:
1446   Rela_write(unsigned char* p)
1447     : p_(reinterpret_cast<internal::Rela_data<size>*>(p))
1448   { }
1449
1450   void
1451   put_r_offset(typename Elf_types<size>::Elf_Addr v)
1452   { this->p_->r_offset = Convert<size, big_endian>::convert_host(v); }
1453
1454   void
1455   put_r_info(typename Elf_types<size>::Elf_WXword v)
1456   { this->p_->r_info = Convert<size, big_endian>::convert_host(v); }
1457
1458   void
1459   put_r_addend(typename Elf_types<size>::Elf_Swxword v)
1460   { this->p_->r_addend = Convert<size, big_endian>::convert_host(v); }
1461
1462  private:
1463   internal::Rela_data<size>* p_;
1464 };
1465
1466 // Accessor classes for entries in the ELF SHT_DYNAMIC section aka
1467 // PT_DYNAMIC segment.
1468
1469 template<int size, bool big_endian>
1470 class Dyn
1471 {
1472  public:
1473   Dyn(const unsigned char* p)
1474     : p_(reinterpret_cast<const internal::Dyn_data<size>*>(p))
1475   { }
1476
1477   template<typename File>
1478   Dyn(File* file, typename File::Location loc)
1479     : p_(reinterpret_cast<const internal::Dyn_data<size>*>(
1480            file->view(loc.file_offset, loc.data_size).data()))
1481   { }
1482
1483   typename Elf_types<size>::Elf_Swxword
1484   get_d_tag() const
1485   { return Convert<size, big_endian>::convert_host(this->p_->d_tag); }
1486
1487   typename Elf_types<size>::Elf_WXword
1488   get_d_val() const
1489   { return Convert<size, big_endian>::convert_host(this->p_->d_val); }
1490
1491   typename Elf_types<size>::Elf_Addr
1492   get_d_ptr() const
1493   { return Convert<size, big_endian>::convert_host(this->p_->d_val); }
1494
1495  private:
1496   const internal::Dyn_data<size>* p_;
1497 };
1498
1499 // Write class for an entry in the SHT_DYNAMIC section.
1500
1501 template<int size, bool big_endian>
1502 class Dyn_write
1503 {
1504  public:
1505   Dyn_write(unsigned char* p)
1506     : p_(reinterpret_cast<internal::Dyn_data<size>*>(p))
1507   { }
1508
1509   void
1510   put_d_tag(typename Elf_types<size>::Elf_Swxword v)
1511   { this->p_->d_tag = Convert<size, big_endian>::convert_host(v); }
1512
1513   void
1514   put_d_val(typename Elf_types<size>::Elf_WXword v)
1515   { this->p_->d_val = Convert<size, big_endian>::convert_host(v); }
1516
1517   void
1518   put_d_ptr(typename Elf_types<size>::Elf_Addr v)
1519   { this->p_->d_val = Convert<size, big_endian>::convert_host(v); }
1520
1521  private:
1522   internal::Dyn_data<size>* p_;
1523 };
1524
1525 // Accessor classes for entries in the ELF SHT_GNU_verdef section.
1526
1527 template<int size, bool big_endian>
1528 class Verdef
1529 {
1530  public:
1531   Verdef(const unsigned char* p)
1532     : p_(reinterpret_cast<const internal::Verdef_data*>(p))
1533   { }
1534
1535   template<typename File>
1536   Verdef(File* file, typename File::Location loc)
1537     : p_(reinterpret_cast<const internal::Verdef_data*>(
1538            file->view(loc.file_offset, loc.data_size).data()))
1539   { }
1540
1541   Elf_Half
1542   get_vd_version() const
1543   { return Convert<16, big_endian>::convert_host(this->p_->vd_version); }
1544
1545   Elf_Half
1546   get_vd_flags() const
1547   { return Convert<16, big_endian>::convert_host(this->p_->vd_flags); }
1548
1549   Elf_Half
1550   get_vd_ndx() const
1551   { return Convert<16, big_endian>::convert_host(this->p_->vd_ndx); }
1552
1553   Elf_Half
1554   get_vd_cnt() const
1555   { return Convert<16, big_endian>::convert_host(this->p_->vd_cnt); }
1556
1557   Elf_Word
1558   get_vd_hash() const
1559   { return Convert<32, big_endian>::convert_host(this->p_->vd_hash); }
1560
1561   Elf_Word
1562   get_vd_aux() const
1563   { return Convert<32, big_endian>::convert_host(this->p_->vd_aux); }
1564
1565   Elf_Word
1566   get_vd_next() const
1567   { return Convert<32, big_endian>::convert_host(this->p_->vd_next); }
1568
1569  private:
1570   const internal::Verdef_data* p_;
1571 };
1572
1573 template<int size, bool big_endian>
1574 class Verdef_write
1575 {
1576  public:
1577   Verdef_write(unsigned char* p)
1578     : p_(reinterpret_cast<internal::Verdef_data*>(p))
1579   { }
1580
1581   void
1582   set_vd_version(Elf_Half v)
1583   { this->p_->vd_version = Convert<16, big_endian>::convert_host(v); }
1584
1585   void
1586   set_vd_flags(Elf_Half v)
1587   { this->p_->vd_flags = Convert<16, big_endian>::convert_host(v); }
1588
1589   void
1590   set_vd_ndx(Elf_Half v)
1591   { this->p_->vd_ndx = Convert<16, big_endian>::convert_host(v); }
1592
1593   void
1594   set_vd_cnt(Elf_Half v)
1595   { this->p_->vd_cnt = Convert<16, big_endian>::convert_host(v); }
1596
1597   void
1598   set_vd_hash(Elf_Word v)
1599   { this->p_->vd_hash = Convert<32, big_endian>::convert_host(v); }
1600
1601   void
1602   set_vd_aux(Elf_Word v)
1603   { this->p_->vd_aux = Convert<32, big_endian>::convert_host(v); }
1604
1605   void
1606   set_vd_next(Elf_Word v)
1607   { this->p_->vd_next = Convert<32, big_endian>::convert_host(v); }
1608
1609  private:
1610   internal::Verdef_data* p_;
1611 };
1612
1613 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verdef
1614 // section.
1615
1616 template<int size, bool big_endian>
1617 class Verdaux
1618 {
1619  public:
1620   Verdaux(const unsigned char* p)
1621     : p_(reinterpret_cast<const internal::Verdaux_data*>(p))
1622   { }
1623
1624   template<typename File>
1625   Verdaux(File* file, typename File::Location loc)
1626     : p_(reinterpret_cast<const internal::Verdaux_data*>(
1627            file->view(loc.file_offset, loc.data_size).data()))
1628   { }
1629
1630   Elf_Word
1631   get_vda_name() const
1632   { return Convert<32, big_endian>::convert_host(this->p_->vda_name); }
1633
1634   Elf_Word
1635   get_vda_next() const
1636   { return Convert<32, big_endian>::convert_host(this->p_->vda_next); }
1637
1638  private:
1639   const internal::Verdaux_data* p_;
1640 };
1641
1642 template<int size, bool big_endian>
1643 class Verdaux_write
1644 {
1645  public:
1646   Verdaux_write(unsigned char* p)
1647     : p_(reinterpret_cast<internal::Verdaux_data*>(p))
1648   { }
1649
1650   void
1651   set_vda_name(Elf_Word v)
1652   { this->p_->vda_name = Convert<32, big_endian>::convert_host(v); }
1653
1654   void
1655   set_vda_next(Elf_Word v)
1656   { this->p_->vda_next = Convert<32, big_endian>::convert_host(v); }
1657
1658  private:
1659   internal::Verdaux_data* p_;
1660 };
1661
1662 // Accessor classes for entries in the ELF SHT_GNU_verneed section.
1663
1664 template<int size, bool big_endian>
1665 class Verneed
1666 {
1667  public:
1668   Verneed(const unsigned char* p)
1669     : p_(reinterpret_cast<const internal::Verneed_data*>(p))
1670   { }
1671
1672   template<typename File>
1673   Verneed(File* file, typename File::Location loc)
1674     : p_(reinterpret_cast<const internal::Verneed_data*>(
1675            file->view(loc.file_offset, loc.data_size).data()))
1676   { }
1677
1678   Elf_Half
1679   get_vn_version() const
1680   { return Convert<16, big_endian>::convert_host(this->p_->vn_version); }
1681
1682   Elf_Half
1683   get_vn_cnt() const
1684   { return Convert<16, big_endian>::convert_host(this->p_->vn_cnt); }
1685
1686   Elf_Word
1687   get_vn_file() const
1688   { return Convert<32, big_endian>::convert_host(this->p_->vn_file); }
1689
1690   Elf_Word
1691   get_vn_aux() const
1692   { return Convert<32, big_endian>::convert_host(this->p_->vn_aux); }
1693
1694   Elf_Word
1695   get_vn_next() const
1696   { return Convert<32, big_endian>::convert_host(this->p_->vn_next); }
1697
1698  private:
1699   const internal::Verneed_data* p_;
1700 };
1701
1702 template<int size, bool big_endian>
1703 class Verneed_write
1704 {
1705  public:
1706   Verneed_write(unsigned char* p)
1707     : p_(reinterpret_cast<internal::Verneed_data*>(p))
1708   { }
1709
1710   void
1711   set_vn_version(Elf_Half v)
1712   { this->p_->vn_version = Convert<16, big_endian>::convert_host(v); }
1713
1714   void
1715   set_vn_cnt(Elf_Half v)
1716   { this->p_->vn_cnt = Convert<16, big_endian>::convert_host(v); }
1717
1718   void
1719   set_vn_file(Elf_Word v)
1720   { this->p_->vn_file = Convert<32, big_endian>::convert_host(v); }
1721
1722   void
1723   set_vn_aux(Elf_Word v)
1724   { this->p_->vn_aux = Convert<32, big_endian>::convert_host(v); }
1725
1726   void
1727   set_vn_next(Elf_Word v)
1728   { this->p_->vn_next = Convert<32, big_endian>::convert_host(v); }
1729
1730  private:
1731   internal::Verneed_data* p_;
1732 };
1733
1734 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verneed
1735 // section.
1736
1737 template<int size, bool big_endian>
1738 class Vernaux
1739 {
1740  public:
1741   Vernaux(const unsigned char* p)
1742     : p_(reinterpret_cast<const internal::Vernaux_data*>(p))
1743   { }
1744
1745   template<typename File>
1746   Vernaux(File* file, typename File::Location loc)
1747     : p_(reinterpret_cast<const internal::Vernaux_data*>(
1748            file->view(loc.file_offset, loc.data_size).data()))
1749   { }
1750
1751   Elf_Word
1752   get_vna_hash() const
1753   { return Convert<32, big_endian>::convert_host(this->p_->vna_hash); }
1754
1755   Elf_Half
1756   get_vna_flags() const
1757   { return Convert<16, big_endian>::convert_host(this->p_->vna_flags); }
1758
1759   Elf_Half
1760   get_vna_other() const
1761   { return Convert<16, big_endian>::convert_host(this->p_->vna_other); }
1762
1763   Elf_Word
1764   get_vna_name() const
1765   { return Convert<32, big_endian>::convert_host(this->p_->vna_name); }
1766
1767   Elf_Word
1768   get_vna_next() const
1769   { return Convert<32, big_endian>::convert_host(this->p_->vna_next); }
1770
1771  private:
1772   const internal::Vernaux_data* p_;
1773 };
1774
1775 template<int size, bool big_endian>
1776 class Vernaux_write
1777 {
1778  public:
1779   Vernaux_write(unsigned char* p)
1780     : p_(reinterpret_cast<internal::Vernaux_data*>(p))
1781   { }
1782
1783   void
1784   set_vna_hash(Elf_Word v)
1785   { this->p_->vna_hash = Convert<32, big_endian>::convert_host(v); }
1786
1787   void
1788   set_vna_flags(Elf_Half v)
1789   { this->p_->vna_flags = Convert<16, big_endian>::convert_host(v); }
1790
1791   void
1792   set_vna_other(Elf_Half v)
1793   { this->p_->vna_other = Convert<16, big_endian>::convert_host(v); }
1794
1795   void
1796   set_vna_name(Elf_Word v)
1797   { this->p_->vna_name = Convert<32, big_endian>::convert_host(v); }
1798
1799   void
1800   set_vna_next(Elf_Word v)
1801   { this->p_->vna_next = Convert<32, big_endian>::convert_host(v); }
1802
1803  private:
1804   internal::Vernaux_data* p_;
1805 };
1806
1807 } // End namespace elfcpp.
1808
1809 #endif // !defined(ELFPCP_H)