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