1 // elfcpp.h -- main header file for elfcpp -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2009, 2010, 2011, 2012
4 // Free Software Foundation, Inc.
5 // Written by Ian Lance Taylor <iant@google.com>.
7 // This file is part of elfcpp.
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.
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.)
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.
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
33 // This is the external interface for elfcpp.
38 #include "elfcpp_swap.h"
47 // These types are always the same size.
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
;
55 // These types vary in size depending on the ELF file class. The
56 // template parameter should be 32 or 64.
64 typedef uint32_t Elf_Addr
;
65 typedef uint32_t Elf_Off
;
66 typedef uint32_t Elf_WXword
;
67 typedef int32_t Elf_Swxword
;
73 typedef uint64_t Elf_Addr
;
74 typedef uint64_t Elf_Off
;
75 typedef uint64_t Elf_WXword
;
76 typedef int64_t Elf_Swxword
;
79 // Offsets within the Ehdr e_ident field.
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;
91 const int EI_NIDENT
= 16;
93 // The valid values found in Ehdr e_ident[EI_MAG0 through EI_MAG3].
95 const int ELFMAG0
= 0x7f;
96 const int ELFMAG1
= 'E';
97 const int ELFMAG2
= 'L';
98 const int ELFMAG3
= 'F';
100 // The valid values found in Ehdr e_ident[EI_CLASS].
109 // The valid values found in Ehdr e_ident[EI_DATA].
118 // The valid values found in Ehdr e_ident[EI_VERSION] and e_version.
126 // The valid values found in Ehdr e_ident[EI_OSABI].
134 // ELFOSABI_LINUX is an alias for ELFOSABI_GNU.
136 ELFOSABI_SOLARIS
= 6,
139 ELFOSABI_FREEBSD
= 9,
141 ELFOSABI_MODESTO
= 11,
142 ELFOSABI_OPENBSD
= 12,
143 ELFOSABI_OPENVMS
= 13,
146 // A GNU extension for the ARM.
148 // A GNU extension for the MSP.
149 ELFOSABI_STANDALONE
= 255
152 // The valid values found in the Ehdr e_type field.
167 // The valid values found in the Ehdr e_machine field.
177 // 6 used to be EM_486
182 // 11 was the old Sparc V9 ABI.
183 // 12 through 14 are reserved.
186 // Some old PowerPC object files use 17.
193 // 23 through 35 are served.
257 // Some old picoJava object files use 99 (EM_PJ is correct).
270 EM_ALTERA_NIOS2
= 113,
279 // Infineon Technologies 16-bit microcontroller with C166-V2 core.
282 EM_XSTORMY16
= 0xad45,
289 // Old AVR objects used 0x1057 (EM_AVR is correct).
290 // Old MSP430 objects used 0x1059 (EM_MSP430 is correct).
291 // Old FR30 objects used 0x3330 (EM_FR30 is correct).
292 // Old OpenRISC objects used 0x3426 and 0x8472 (EM_OPENRISC is correct).
293 // Old D10V objects used 0x7650 (EM_D10V is correct).
294 // Old D30V objects used 0x7676 (EM_D30V is correct).
295 // Old IP2X objects used 0x8217 (EM_IP2K is correct).
296 // Old PowerPC objects used 0x9025 (EM_PPC is correct).
297 // Old Alpha objects used 0x9026 (EM_ALPHA is correct).
298 // Old M32R objects used 0x9041 (EM_M32R is correct).
299 // Old V850 objects used 0x9080 (EM_V850 is correct).
300 // Old S/390 objects used 0xa390 (EM_S390 is correct).
301 // Old Xtensa objects used 0xabc7 (EM_XTENSA is correct).
302 // Old MN10300 objects used 0xbeef (EM_MN10300 is correct).
303 // Old MN10200 objects used 0xdead (EM_MN10200 is correct).
306 // A special value found in the Ehdr e_phnum field.
310 // Number of program segments stored in sh_info field of first
315 // Special section indices.
320 SHN_LORESERVE
= 0xff00,
328 SHN_HIRESERVE
= 0xffff,
330 // Provide for initial and final section ordering in conjunction
331 // with the SHF_LINK_ORDER and SHF_ORDERED section flags.
335 // x86_64 specific large common symbol.
336 SHN_X86_64_LCOMMON
= 0xff02
339 // The valid values found in the Shdr sh_type field.
357 SHT_PREINIT_ARRAY
= 16,
359 SHT_SYMTAB_SHNDX
= 18,
360 SHT_LOOS
= 0x60000000,
361 SHT_HIOS
= 0x6fffffff,
362 SHT_LOPROC
= 0x70000000,
363 SHT_HIPROC
= 0x7fffffff,
364 SHT_LOUSER
= 0x80000000,
365 SHT_HIUSER
= 0xffffffff,
366 // The remaining values are not in the standard.
367 // Incremental build data.
368 SHT_GNU_INCREMENTAL_INPUTS
= 0x6fff4700,
369 SHT_GNU_INCREMENTAL_SYMTAB
= 0x6fff4701,
370 SHT_GNU_INCREMENTAL_RELOCS
= 0x6fff4702,
371 SHT_GNU_INCREMENTAL_GOT_PLT
= 0x6fff4703,
372 // Object attributes.
373 SHT_GNU_ATTRIBUTES
= 0x6ffffff5,
374 // GNU style dynamic hash table.
375 SHT_GNU_HASH
= 0x6ffffff6,
376 // List of prelink dependencies.
377 SHT_GNU_LIBLIST
= 0x6ffffff7,
378 // Versions defined by file.
379 SHT_SUNW_verdef
= 0x6ffffffd,
380 SHT_GNU_verdef
= 0x6ffffffd,
381 // Versions needed by file.
382 SHT_SUNW_verneed
= 0x6ffffffe,
383 SHT_GNU_verneed
= 0x6ffffffe,
385 SHT_SUNW_versym
= 0x6fffffff,
386 SHT_GNU_versym
= 0x6fffffff,
388 SHT_SPARC_GOTDATA
= 0x70000000,
390 // ARM-specific section types.
391 // Exception Index table.
392 SHT_ARM_EXIDX
= 0x70000001,
393 // BPABI DLL dynamic linking pre-emption map.
394 SHT_ARM_PREEMPTMAP
= 0x70000002,
395 // Object file compatibility attributes.
396 SHT_ARM_ATTRIBUTES
= 0x70000003,
397 // Support for debugging overlaid programs.
398 SHT_ARM_DEBUGOVERLAY
= 0x70000004,
399 SHT_ARM_OVERLAYSECTION
= 0x70000005,
401 // x86_64 unwind information.
402 SHT_X86_64_UNWIND
= 0x70000001,
404 //MIPS-specific section types.
405 // Register info section
406 SHT_MIPS_REGINFO
= 0x70000006,
408 // Link editor is to sort the entries in this section based on the
409 // address specified in the associated symbol table entry.
410 SHT_ORDERED
= 0x7fffffff
413 // The valid bit flags found in the Shdr sh_flags field.
422 SHF_INFO_LINK
= 0x40,
423 SHF_LINK_ORDER
= 0x80,
424 SHF_OS_NONCONFORMING
= 0x100,
427 SHF_MASKOS
= 0x0ff00000,
428 SHF_MASKPROC
= 0xf0000000,
430 // Indicates this section requires ordering in relation to
431 // other sections of the same type. Ordered sections are
432 // combined within the section pointed to by the sh_link entry.
433 // The sh_info values SHN_BEFORE and SHN_AFTER imply that the
434 // sorted section is to precede or follow, respectively, all
435 // other sections in the set being ordered.
436 SHF_ORDERED
= 0x40000000,
437 // This section is excluded from input to the link-edit of an
438 // executable or shared object. This flag is ignored if SHF_ALLOC
439 // is also set, or if relocations exist against the section.
440 SHF_EXCLUDE
= 0x80000000,
442 // Section with data that is GP relative addressable.
443 SHF_MIPS_GPREL
= 0x10000000,
445 // x86_64 specific large section.
446 SHF_X86_64_LARGE
= 0x10000000
449 // Bit flags which appear in the first 32-bit word of the section data
450 // of a SHT_GROUP section.
455 GRP_MASKOS
= 0x0ff00000,
456 GRP_MASKPROC
= 0xf0000000
459 // The valid values found in the Phdr p_type field.
471 PT_LOOS
= 0x60000000,
472 PT_HIOS
= 0x6fffffff,
473 PT_LOPROC
= 0x70000000,
474 PT_HIPROC
= 0x7fffffff,
475 // The remaining values are not in the standard.
476 // Frame unwind information.
477 PT_GNU_EH_FRAME
= 0x6474e550,
478 PT_SUNW_EH_FRAME
= 0x6474e550,
480 PT_GNU_STACK
= 0x6474e551,
481 // Read only after relocation.
482 PT_GNU_RELRO
= 0x6474e552,
483 // Platform architecture compatibility information
484 PT_ARM_ARCHEXT
= 0x70000000,
485 // Exception unwind tables
486 PT_ARM_EXIDX
= 0x70000001,
487 // Register usage information. Identifies one .reginfo section.
488 PT_MIPS_REGINFO
=0x70000000,
489 // Runtime procedure table.
490 PT_MIPS_RTPROC
= 0x70000001,
491 // .MIPS.options section.
492 PT_MIPS_OPTIONS
= 0x70000002
495 // The valid bit flags found in the Phdr p_flags field.
502 PF_MASKOS
= 0x0ff00000,
503 PF_MASKPROC
= 0xf0000000
506 // Symbol binding from Sym st_info field.
520 // Symbol types from Sym st_info field.
532 // GNU extension: symbol value points to a function which is called
533 // at runtime to determine the final value of the symbol.
541 // The section type that must be used for register symbols on
542 // Sparc. These symbols initialize a global register.
543 STT_SPARC_REGISTER
= 13,
545 // ARM: a THUMB function. This is not defined in ARM ELF Specification but
546 // used by the GNU tool-chain.
551 elf_st_bind(unsigned char info
)
553 return static_cast<STB
>(info
>> 4);
557 elf_st_type(unsigned char info
)
559 return static_cast<STT
>(info
& 0xf);
563 elf_st_info(STB bind
, STT type
)
565 return ((static_cast<unsigned char>(bind
) << 4)
566 + (static_cast<unsigned char>(type
) & 0xf));
569 // Symbol visibility from Sym st_other field.
580 elf_st_visibility(unsigned char other
)
582 return static_cast<STV
>(other
& 0x3);
586 elf_st_nonvis(unsigned char other
)
588 return static_cast<STV
>(other
>> 2);
592 elf_st_other(STV vis
, unsigned char nonvis
)
594 return ((nonvis
<< 2)
595 + (static_cast<unsigned char>(vis
) & 3));
598 // Reloc information from Rel/Rela r_info field.
602 elf_r_sym(typename Elf_types
<size
>::Elf_WXword
);
606 elf_r_sym
<32>(Elf_Word v
)
613 elf_r_sym
<64>(Elf_Xword v
)
620 elf_r_type(typename Elf_types
<size
>::Elf_WXword
);
624 elf_r_type
<32>(Elf_Word v
)
631 elf_r_type
<64>(Elf_Xword v
)
633 return v
& 0xffffffff;
637 typename Elf_types
<size
>::Elf_WXword
638 elf_r_info(unsigned int s
, unsigned int t
);
642 elf_r_info
<32>(unsigned int s
, unsigned int t
)
644 return (s
<< 8) + (t
& 0xff);
649 elf_r_info
<64>(unsigned int s
, unsigned int t
)
651 return (static_cast<Elf_Xword
>(s
) << 32) + (t
& 0xffffffff);
654 // Dynamic tags found in the PT_DYNAMIC segment.
685 DT_INIT_ARRAYSZ
= 27,
686 DT_FINI_ARRAYSZ
= 28,
690 // This is used to mark a range of dynamic tags. It is not really
694 DT_PREINIT_ARRAY
= 32,
695 DT_PREINIT_ARRAYSZ
= 33,
696 DT_LOOS
= 0x6000000d,
697 DT_HIOS
= 0x6ffff000,
698 DT_LOPROC
= 0x70000000,
699 DT_HIPROC
= 0x7fffffff,
701 // The remaining values are extensions used by GNU or Solaris.
702 DT_VALRNGLO
= 0x6ffffd00,
703 DT_GNU_PRELINKED
= 0x6ffffdf5,
704 DT_GNU_CONFLICTSZ
= 0x6ffffdf6,
705 DT_GNU_LIBLISTSZ
= 0x6ffffdf7,
706 DT_CHECKSUM
= 0x6ffffdf8,
707 DT_PLTPADSZ
= 0x6ffffdf9,
708 DT_MOVEENT
= 0x6ffffdfa,
709 DT_MOVESZ
= 0x6ffffdfb,
710 DT_FEATURE
= 0x6ffffdfc,
711 DT_POSFLAG_1
= 0x6ffffdfd,
712 DT_SYMINSZ
= 0x6ffffdfe,
713 DT_SYMINENT
= 0x6ffffdff,
714 DT_VALRNGHI
= 0x6ffffdff,
716 DT_ADDRRNGLO
= 0x6ffffe00,
717 DT_GNU_HASH
= 0x6ffffef5,
718 DT_TLSDESC_PLT
= 0x6ffffef6,
719 DT_TLSDESC_GOT
= 0x6ffffef7,
720 DT_GNU_CONFLICT
= 0x6ffffef8,
721 DT_GNU_LIBLIST
= 0x6ffffef9,
722 DT_CONFIG
= 0x6ffffefa,
723 DT_DEPAUDIT
= 0x6ffffefb,
724 DT_AUDIT
= 0x6ffffefc,
725 DT_PLTPAD
= 0x6ffffefd,
726 DT_MOVETAB
= 0x6ffffefe,
727 DT_SYMINFO
= 0x6ffffeff,
728 DT_ADDRRNGHI
= 0x6ffffeff,
730 DT_RELACOUNT
= 0x6ffffff9,
731 DT_RELCOUNT
= 0x6ffffffa,
732 DT_FLAGS_1
= 0x6ffffffb,
733 DT_VERDEF
= 0x6ffffffc,
734 DT_VERDEFNUM
= 0x6ffffffd,
735 DT_VERNEED
= 0x6ffffffe,
736 DT_VERNEEDNUM
= 0x6fffffff,
738 DT_VERSYM
= 0x6ffffff0,
740 // Specify the value of _GLOBAL_OFFSET_TABLE_.
741 DT_PPC_GOT
= 0x70000000,
743 // Specify the start of the .glink section.
744 DT_PPC64_GLINK
= 0x70000000,
746 // Specify the start and size of the .opd section.
747 DT_PPC64_OPD
= 0x70000001,
748 DT_PPC64_OPDSZ
= 0x70000002,
750 // The index of an STT_SPARC_REGISTER symbol within the DT_SYMTAB
751 // symbol table. One dynamic entry exists for every STT_SPARC_REGISTER
752 // symbol in the symbol table.
753 DT_SPARC_REGISTER
= 0x70000001,
755 // MIPS specific dynamic array tags.
756 // 32 bit version number for runtime linker interface.
757 DT_MIPS_RLD_VERSION
= 0x70000001,
759 DT_MIPS_TIME_STAMP
= 0x70000002,
760 // Checksum of external strings and common sizes.
761 DT_MIPS_ICHECKSUM
= 0x70000003,
762 // Index of version string in string table.
763 DT_MIPS_IVERSION
= 0x70000004,
765 DT_MIPS_FLAGS
= 0x70000005,
766 // Base address of the segment.
767 DT_MIPS_BASE_ADDRESS
= 0x70000006,
769 DT_MIPS_MSYM
= 0x70000007,
770 // Address of .conflict section.
771 DT_MIPS_CONFLICT
= 0x70000008,
772 // Address of .liblist section.
773 DT_MIPS_LIBLIST
= 0x70000009,
774 // Number of local global offset table entries.
775 DT_MIPS_LOCAL_GOTNO
= 0x7000000a,
776 // Number of entries in the .conflict section.
777 DT_MIPS_CONFLICTNO
= 0x7000000b,
778 // Number of entries in the .liblist section.
779 DT_MIPS_LIBLISTNO
= 0x70000010,
780 // Number of entries in the .dynsym section.
781 DT_MIPS_SYMTABNO
= 0x70000011,
782 // Index of first external dynamic symbol not referenced locally.
783 DT_MIPS_UNREFEXTNO
= 0x70000012,
784 // Index of first dynamic symbol in global offset table.
785 DT_MIPS_GOTSYM
= 0x70000013,
786 // Number of page table entries in global offset table.
787 DT_MIPS_HIPAGENO
= 0x70000014,
788 // Address of run time loader map, used for debugging.
789 DT_MIPS_RLD_MAP
= 0x70000016,
790 // Delta C++ class definition.
791 DT_MIPS_DELTA_CLASS
= 0x70000017,
792 // Number of entries in DT_MIPS_DELTA_CLASS.
793 DT_MIPS_DELTA_CLASS_NO
= 0x70000018,
794 // Delta C++ class instances.
795 DT_MIPS_DELTA_INSTANCE
= 0x70000019,
796 // Number of entries in DT_MIPS_DELTA_INSTANCE.
797 DT_MIPS_DELTA_INSTANCE_NO
= 0x7000001a,
798 // Delta relocations.
799 DT_MIPS_DELTA_RELOC
= 0x7000001b,
800 // Number of entries in DT_MIPS_DELTA_RELOC.
801 DT_MIPS_DELTA_RELOC_NO
= 0x7000001c,
802 // Delta symbols that Delta relocations refer to.
803 DT_MIPS_DELTA_SYM
= 0x7000001d,
804 // Number of entries in DT_MIPS_DELTA_SYM.
805 DT_MIPS_DELTA_SYM_NO
= 0x7000001e,
806 // Delta symbols that hold class declarations.
807 DT_MIPS_DELTA_CLASSSYM
= 0x70000020,
808 // Number of entries in DT_MIPS_DELTA_CLASSSYM.
809 DT_MIPS_DELTA_CLASSSYM_NO
= 0x70000021,
810 // Flags indicating information about C++ flavor.
811 DT_MIPS_CXX_FLAGS
= 0x70000022,
812 // Pixie information (???).
813 DT_MIPS_PIXIE_INIT
= 0x70000023,
814 // Address of .MIPS.symlib
815 DT_MIPS_SYMBOL_LIB
= 0x70000024,
816 // The GOT index of the first PTE for a segment
817 DT_MIPS_LOCALPAGE_GOTIDX
= 0x70000025,
818 // The GOT index of the first PTE for a local symbol
819 DT_MIPS_LOCAL_GOTIDX
= 0x70000026,
820 // The GOT index of the first PTE for a hidden symbol
821 DT_MIPS_HIDDEN_GOTIDX
= 0x70000027,
822 // The GOT index of the first PTE for a protected symbol
823 DT_MIPS_PROTECTED_GOTIDX
= 0x70000028,
824 // Address of `.MIPS.options'.
825 DT_MIPS_OPTIONS
= 0x70000029,
826 // Address of `.interface'.
827 DT_MIPS_INTERFACE
= 0x7000002a,
829 DT_MIPS_DYNSTR_ALIGN
= 0x7000002b,
830 // Size of the .interface section.
831 DT_MIPS_INTERFACE_SIZE
= 0x7000002c,
832 // Size of rld_text_resolve function stored in the GOT.
833 DT_MIPS_RLD_TEXT_RESOLVE_ADDR
= 0x7000002d,
834 // Default suffix of DSO to be added by rld on dlopen() calls.
835 DT_MIPS_PERF_SUFFIX
= 0x7000002e,
836 // Size of compact relocation section (O32).
837 DT_MIPS_COMPACT_SIZE
= 0x7000002f,
838 // GP value for auxiliary GOTs.
839 DT_MIPS_GP_VALUE
= 0x70000030,
840 // Address of auxiliary .dynamic.
841 DT_MIPS_AUX_DYNAMIC
= 0x70000031,
842 // Address of the base of the PLTGOT.
843 DT_MIPS_PLTGOT
= 0x70000032,
844 // Points to the base of a writable PLT.
845 DT_MIPS_RWPLT
= 0x70000034,
847 DT_AUXILIARY
= 0x7ffffffd,
848 DT_USED
= 0x7ffffffe,
849 DT_FILTER
= 0x7fffffff
852 // Flags found in the DT_FLAGS dynamic element.
863 // Flags found in the DT_FLAGS_1 dynamic element.
871 DF_1_LOADFLTR
= 0x10,
872 DF_1_INITFIRST
= 0x20,
877 DF_1_INTERPOSE
= 0x400,
878 DF_1_NODEFLIB
= 0x800,
879 DF_1_NODUMP
= 0x1000,
880 DF_1_CONLFAT
= 0x2000
883 // Version numbers which appear in the vd_version field of a Verdef
886 const int VER_DEF_NONE
= 0;
887 const int VER_DEF_CURRENT
= 1;
889 // Version numbers which appear in the vn_version field of a Verneed
892 const int VER_NEED_NONE
= 0;
893 const int VER_NEED_CURRENT
= 1;
895 // Bit flags which appear in vd_flags of Verdef and vna_flags of
898 const int VER_FLG_BASE
= 0x1;
899 const int VER_FLG_WEAK
= 0x2;
900 const int VER_FLG_INFO
= 0x4;
902 // Special constants found in the SHT_GNU_versym entries.
904 const int VER_NDX_LOCAL
= 0;
905 const int VER_NDX_GLOBAL
= 1;
907 // A SHT_GNU_versym section holds 16-bit words. This bit is set if
908 // the symbol is hidden and can only be seen when referenced using an
909 // explicit version number. This is a GNU extension.
911 const int VERSYM_HIDDEN
= 0x8000;
913 // This is the mask for the rest of the data in a word read from a
914 // SHT_GNU_versym section.
916 const int VERSYM_VERSION
= 0x7fff;
918 // Note descriptor type codes for notes in a non-core file with an
925 // An architecture string.
929 // Note descriptor type codes for notes in a non-core file with the
934 // The minimum ABI level. This is used by the dynamic linker to
935 // describe the minimal kernel version on which a shared library may
936 // be used. Th value should be four words. Word 0 is an OS
937 // descriptor (see below). Word 1 is the major version of the ABI.
938 // Word 2 is the minor version. Word 3 is the subminor version.
940 // Hardware capabilities information. Word 0 is the number of
941 // entries. Word 1 is a bitmask of enabled entries. The rest of
942 // the descriptor is a series of entries, where each entry is a
943 // single byte followed by a nul terminated string. The byte gives
944 // the bit number to test if enabled in the bitmask.
946 // The build ID as set by the linker's --build-id option. The
947 // format of the descriptor depends on the build ID style.
949 // The version of gold used to link. Th descriptor is just a
951 NT_GNU_GOLD_VERSION
= 4
954 // The OS values which may appear in word 0 of a NT_GNU_ABI_TAG note.
958 ELF_NOTE_OS_LINUX
= 0,
960 ELF_NOTE_OS_SOLARIS2
= 2,
961 ELF_NOTE_OS_FREEBSD
= 3,
962 ELF_NOTE_OS_NETBSD
= 4,
963 ELF_NOTE_OS_SYLLABLE
= 5
966 } // End namespace elfcpp.
968 // Include internal details after defining the types.
969 #include "elfcpp_internal.h"
974 // The offset of the ELF file header in the ELF file.
976 const int file_header_offset
= 0;
978 // ELF structure sizes.
983 // Size of ELF file header.
984 static const int ehdr_size
= sizeof(internal::Ehdr_data
<size
>);
985 // Size of ELF segment header.
986 static const int phdr_size
= sizeof(internal::Phdr_data
<size
>);
987 // Size of ELF section header.
988 static const int shdr_size
= sizeof(internal::Shdr_data
<size
>);
989 // Size of ELF symbol table entry.
990 static const int sym_size
= sizeof(internal::Sym_data
<size
>);
991 // Sizes of ELF reloc entries.
992 static const int rel_size
= sizeof(internal::Rel_data
<size
>);
993 static const int rela_size
= sizeof(internal::Rela_data
<size
>);
994 // Size of ELF dynamic entry.
995 static const int dyn_size
= sizeof(internal::Dyn_data
<size
>);
996 // Size of ELF version structures.
997 static const int verdef_size
= sizeof(internal::Verdef_data
);
998 static const int verdaux_size
= sizeof(internal::Verdaux_data
);
999 static const int verneed_size
= sizeof(internal::Verneed_data
);
1000 static const int vernaux_size
= sizeof(internal::Vernaux_data
);
1003 // Accessor class for the ELF file header.
1005 template<int size
, bool big_endian
>
1009 Ehdr(const unsigned char* p
)
1010 : p_(reinterpret_cast<const internal::Ehdr_data
<size
>*>(p
))
1013 template<typename File
>
1014 Ehdr(File
* file
, typename
File::Location loc
)
1015 : p_(reinterpret_cast<const internal::Ehdr_data
<size
>*>(
1016 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1019 const unsigned char*
1021 { return this->p_
->e_ident
; }
1025 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_type
); }
1028 get_e_machine() const
1029 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_machine
); }
1032 get_e_version() const
1033 { return Convert
<32, big_endian
>::convert_host(this->p_
->e_version
); }
1035 typename Elf_types
<size
>::Elf_Addr
1037 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_entry
); }
1039 typename Elf_types
<size
>::Elf_Off
1041 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_phoff
); }
1043 typename Elf_types
<size
>::Elf_Off
1045 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_shoff
); }
1049 { return Convert
<32, big_endian
>::convert_host(this->p_
->e_flags
); }
1052 get_e_ehsize() const
1053 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_ehsize
); }
1056 get_e_phentsize() const
1057 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_phentsize
); }
1061 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_phnum
); }
1064 get_e_shentsize() const
1065 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shentsize
); }
1069 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shnum
); }
1072 get_e_shstrndx() const
1073 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shstrndx
); }
1076 const internal::Ehdr_data
<size
>* p_
;
1079 // Write class for the ELF file header.
1081 template<int size
, bool big_endian
>
1085 Ehdr_write(unsigned char* p
)
1086 : p_(reinterpret_cast<internal::Ehdr_data
<size
>*>(p
))
1090 put_e_ident(const unsigned char v
[EI_NIDENT
]) const
1091 { memcpy(this->p_
->e_ident
, v
, EI_NIDENT
); }
1094 put_e_type(Elf_Half v
)
1095 { this->p_
->e_type
= Convert
<16, big_endian
>::convert_host(v
); }
1098 put_e_machine(Elf_Half v
)
1099 { this->p_
->e_machine
= Convert
<16, big_endian
>::convert_host(v
); }
1102 put_e_version(Elf_Word v
)
1103 { this->p_
->e_version
= Convert
<32, big_endian
>::convert_host(v
); }
1106 put_e_entry(typename Elf_types
<size
>::Elf_Addr v
)
1107 { this->p_
->e_entry
= Convert
<size
, big_endian
>::convert_host(v
); }
1110 put_e_phoff(typename Elf_types
<size
>::Elf_Off v
)
1111 { this->p_
->e_phoff
= Convert
<size
, big_endian
>::convert_host(v
); }
1114 put_e_shoff(typename Elf_types
<size
>::Elf_Off v
)
1115 { this->p_
->e_shoff
= Convert
<size
, big_endian
>::convert_host(v
); }
1118 put_e_flags(Elf_Word v
)
1119 { this->p_
->e_flags
= Convert
<32, big_endian
>::convert_host(v
); }
1122 put_e_ehsize(Elf_Half v
)
1123 { this->p_
->e_ehsize
= Convert
<16, big_endian
>::convert_host(v
); }
1126 put_e_phentsize(Elf_Half v
)
1127 { this->p_
->e_phentsize
= Convert
<16, big_endian
>::convert_host(v
); }
1130 put_e_phnum(Elf_Half v
)
1131 { this->p_
->e_phnum
= Convert
<16, big_endian
>::convert_host(v
); }
1134 put_e_shentsize(Elf_Half v
)
1135 { this->p_
->e_shentsize
= Convert
<16, big_endian
>::convert_host(v
); }
1138 put_e_shnum(Elf_Half v
)
1139 { this->p_
->e_shnum
= Convert
<16, big_endian
>::convert_host(v
); }
1142 put_e_shstrndx(Elf_Half v
)
1143 { this->p_
->e_shstrndx
= Convert
<16, big_endian
>::convert_host(v
); }
1146 internal::Ehdr_data
<size
>* p_
;
1149 // Accessor class for an ELF section header.
1151 template<int size
, bool big_endian
>
1155 Shdr(const unsigned char* p
)
1156 : p_(reinterpret_cast<const internal::Shdr_data
<size
>*>(p
))
1159 template<typename File
>
1160 Shdr(File
* file
, typename
File::Location loc
)
1161 : p_(reinterpret_cast<const internal::Shdr_data
<size
>*>(
1162 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1167 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_name
); }
1171 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_type
); }
1173 typename Elf_types
<size
>::Elf_WXword
1174 get_sh_flags() const
1175 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_flags
); }
1177 typename Elf_types
<size
>::Elf_Addr
1179 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_addr
); }
1181 typename Elf_types
<size
>::Elf_Off
1182 get_sh_offset() const
1183 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_offset
); }
1185 typename Elf_types
<size
>::Elf_WXword
1187 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_size
); }
1191 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_link
); }
1195 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_info
); }
1197 typename Elf_types
<size
>::Elf_WXword
1198 get_sh_addralign() const
1200 Convert
<size
, big_endian
>::convert_host(this->p_
->sh_addralign
); }
1202 typename Elf_types
<size
>::Elf_WXword
1203 get_sh_entsize() const
1204 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_entsize
); }
1207 const internal::Shdr_data
<size
>* p_
;
1210 // Write class for an ELF section header.
1212 template<int size
, bool big_endian
>
1216 Shdr_write(unsigned char* p
)
1217 : p_(reinterpret_cast<internal::Shdr_data
<size
>*>(p
))
1221 put_sh_name(Elf_Word v
)
1222 { this->p_
->sh_name
= Convert
<32, big_endian
>::convert_host(v
); }
1225 put_sh_type(Elf_Word v
)
1226 { this->p_
->sh_type
= Convert
<32, big_endian
>::convert_host(v
); }
1229 put_sh_flags(typename Elf_types
<size
>::Elf_WXword v
)
1230 { this->p_
->sh_flags
= Convert
<size
, big_endian
>::convert_host(v
); }
1233 put_sh_addr(typename Elf_types
<size
>::Elf_Addr v
)
1234 { this->p_
->sh_addr
= Convert
<size
, big_endian
>::convert_host(v
); }
1237 put_sh_offset(typename Elf_types
<size
>::Elf_Off v
)
1238 { this->p_
->sh_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1241 put_sh_size(typename Elf_types
<size
>::Elf_WXword v
)
1242 { this->p_
->sh_size
= Convert
<size
, big_endian
>::convert_host(v
); }
1245 put_sh_link(Elf_Word v
)
1246 { this->p_
->sh_link
= Convert
<32, big_endian
>::convert_host(v
); }
1249 put_sh_info(Elf_Word v
)
1250 { this->p_
->sh_info
= Convert
<32, big_endian
>::convert_host(v
); }
1253 put_sh_addralign(typename Elf_types
<size
>::Elf_WXword v
)
1254 { this->p_
->sh_addralign
= Convert
<size
, big_endian
>::convert_host(v
); }
1257 put_sh_entsize(typename Elf_types
<size
>::Elf_WXword v
)
1258 { this->p_
->sh_entsize
= Convert
<size
, big_endian
>::convert_host(v
); }
1261 internal::Shdr_data
<size
>* p_
;
1264 // Accessor class for an ELF segment header.
1266 template<int size
, bool big_endian
>
1270 Phdr(const unsigned char* p
)
1271 : p_(reinterpret_cast<const internal::Phdr_data
<size
>*>(p
))
1274 template<typename File
>
1275 Phdr(File
* file
, typename
File::Location loc
)
1276 : p_(reinterpret_cast<internal::Phdr_data
<size
>*>(
1277 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1282 { return Convert
<32, big_endian
>::convert_host(this->p_
->p_type
); }
1284 typename Elf_types
<size
>::Elf_Off
1285 get_p_offset() const
1286 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_offset
); }
1288 typename Elf_types
<size
>::Elf_Addr
1290 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_vaddr
); }
1292 typename Elf_types
<size
>::Elf_Addr
1294 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_paddr
); }
1296 typename Elf_types
<size
>::Elf_WXword
1297 get_p_filesz() const
1298 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_filesz
); }
1300 typename Elf_types
<size
>::Elf_WXword
1302 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_memsz
); }
1306 { return Convert
<32, big_endian
>::convert_host(this->p_
->p_flags
); }
1308 typename Elf_types
<size
>::Elf_WXword
1310 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_align
); }
1313 const internal::Phdr_data
<size
>* p_
;
1316 // Write class for an ELF segment header.
1318 template<int size
, bool big_endian
>
1322 Phdr_write(unsigned char* p
)
1323 : p_(reinterpret_cast<internal::Phdr_data
<size
>*>(p
))
1327 put_p_type(Elf_Word v
)
1328 { this->p_
->p_type
= Convert
<32, big_endian
>::convert_host(v
); }
1331 put_p_offset(typename Elf_types
<size
>::Elf_Off v
)
1332 { this->p_
->p_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1335 put_p_vaddr(typename Elf_types
<size
>::Elf_Addr v
)
1336 { this->p_
->p_vaddr
= Convert
<size
, big_endian
>::convert_host(v
); }
1339 put_p_paddr(typename Elf_types
<size
>::Elf_Addr v
)
1340 { this->p_
->p_paddr
= Convert
<size
, big_endian
>::convert_host(v
); }
1343 put_p_filesz(typename Elf_types
<size
>::Elf_WXword v
)
1344 { this->p_
->p_filesz
= Convert
<size
, big_endian
>::convert_host(v
); }
1347 put_p_memsz(typename Elf_types
<size
>::Elf_WXword v
)
1348 { this->p_
->p_memsz
= Convert
<size
, big_endian
>::convert_host(v
); }
1351 put_p_flags(Elf_Word v
)
1352 { this->p_
->p_flags
= Convert
<32, big_endian
>::convert_host(v
); }
1355 put_p_align(typename Elf_types
<size
>::Elf_WXword v
)
1356 { this->p_
->p_align
= Convert
<size
, big_endian
>::convert_host(v
); }
1359 internal::Phdr_data
<size
>* p_
;
1362 // Accessor class for an ELF symbol table entry.
1364 template<int size
, bool big_endian
>
1368 Sym(const unsigned char* p
)
1369 : p_(reinterpret_cast<const internal::Sym_data
<size
>*>(p
))
1372 template<typename File
>
1373 Sym(File
* file
, typename
File::Location loc
)
1374 : p_(reinterpret_cast<const internal::Sym_data
<size
>*>(
1375 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1380 { return Convert
<32, big_endian
>::convert_host(this->p_
->st_name
); }
1382 typename Elf_types
<size
>::Elf_Addr
1383 get_st_value() const
1384 { return Convert
<size
, big_endian
>::convert_host(this->p_
->st_value
); }
1386 typename Elf_types
<size
>::Elf_WXword
1388 { return Convert
<size
, big_endian
>::convert_host(this->p_
->st_size
); }
1392 { return this->p_
->st_info
; }
1396 { return elf_st_bind(this->get_st_info()); }
1400 { return elf_st_type(this->get_st_info()); }
1403 get_st_other() const
1404 { return this->p_
->st_other
; }
1407 get_st_visibility() const
1408 { return elf_st_visibility(this->get_st_other()); }
1411 get_st_nonvis() const
1412 { return elf_st_nonvis(this->get_st_other()); }
1415 get_st_shndx() const
1416 { return Convert
<16, big_endian
>::convert_host(this->p_
->st_shndx
); }
1419 const internal::Sym_data
<size
>* p_
;
1422 // Writer class for an ELF symbol table entry.
1424 template<int size
, bool big_endian
>
1428 Sym_write(unsigned char* p
)
1429 : p_(reinterpret_cast<internal::Sym_data
<size
>*>(p
))
1433 put_st_name(Elf_Word v
)
1434 { this->p_
->st_name
= Convert
<32, big_endian
>::convert_host(v
); }
1437 put_st_value(typename Elf_types
<size
>::Elf_Addr v
)
1438 { this->p_
->st_value
= Convert
<size
, big_endian
>::convert_host(v
); }
1441 put_st_size(typename Elf_types
<size
>::Elf_WXword v
)
1442 { this->p_
->st_size
= Convert
<size
, big_endian
>::convert_host(v
); }
1445 put_st_info(unsigned char v
)
1446 { this->p_
->st_info
= v
; }
1449 put_st_info(STB bind
, STT type
)
1450 { this->p_
->st_info
= elf_st_info(bind
, type
); }
1453 put_st_other(unsigned char v
)
1454 { this->p_
->st_other
= v
; }
1457 put_st_other(STV vis
, unsigned char nonvis
)
1458 { this->p_
->st_other
= elf_st_other(vis
, nonvis
); }
1461 put_st_shndx(Elf_Half v
)
1462 { this->p_
->st_shndx
= Convert
<16, big_endian
>::convert_host(v
); }
1464 Sym
<size
, big_endian
>
1466 { return Sym
<size
, big_endian
>(reinterpret_cast<unsigned char*>(this->p_
)); }
1469 internal::Sym_data
<size
>* p_
;
1472 // Accessor classes for an ELF REL relocation entry.
1474 template<int size
, bool big_endian
>
1478 Rel(const unsigned char* p
)
1479 : p_(reinterpret_cast<const internal::Rel_data
<size
>*>(p
))
1482 template<typename File
>
1483 Rel(File
* file
, typename
File::Location loc
)
1484 : p_(reinterpret_cast<const internal::Rel_data
<size
>*>(
1485 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1488 typename Elf_types
<size
>::Elf_Addr
1489 get_r_offset() const
1490 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_offset
); }
1492 typename Elf_types
<size
>::Elf_WXword
1494 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_info
); }
1497 const internal::Rel_data
<size
>* p_
;
1500 // Writer class for an ELF Rel relocation.
1502 template<int size
, bool big_endian
>
1506 Rel_write(unsigned char* p
)
1507 : p_(reinterpret_cast<internal::Rel_data
<size
>*>(p
))
1511 put_r_offset(typename Elf_types
<size
>::Elf_Addr v
)
1512 { this->p_
->r_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1515 put_r_info(typename Elf_types
<size
>::Elf_WXword v
)
1516 { this->p_
->r_info
= Convert
<size
, big_endian
>::convert_host(v
); }
1519 internal::Rel_data
<size
>* p_
;
1522 // Accessor class for an ELF Rela relocation.
1524 template<int size
, bool big_endian
>
1528 Rela(const unsigned char* p
)
1529 : p_(reinterpret_cast<const internal::Rela_data
<size
>*>(p
))
1532 template<typename File
>
1533 Rela(File
* file
, typename
File::Location loc
)
1534 : p_(reinterpret_cast<const internal::Rela_data
<size
>*>(
1535 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1538 typename Elf_types
<size
>::Elf_Addr
1539 get_r_offset() const
1540 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_offset
); }
1542 typename Elf_types
<size
>::Elf_WXword
1544 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_info
); }
1546 typename Elf_types
<size
>::Elf_Swxword
1547 get_r_addend() const
1548 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_addend
); }
1551 const internal::Rela_data
<size
>* p_
;
1554 // Writer class for an ELF Rela relocation.
1556 template<int size
, bool big_endian
>
1560 Rela_write(unsigned char* p
)
1561 : p_(reinterpret_cast<internal::Rela_data
<size
>*>(p
))
1565 put_r_offset(typename Elf_types
<size
>::Elf_Addr v
)
1566 { this->p_
->r_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1569 put_r_info(typename Elf_types
<size
>::Elf_WXword v
)
1570 { this->p_
->r_info
= Convert
<size
, big_endian
>::convert_host(v
); }
1573 put_r_addend(typename Elf_types
<size
>::Elf_Swxword v
)
1574 { this->p_
->r_addend
= Convert
<size
, big_endian
>::convert_host(v
); }
1577 internal::Rela_data
<size
>* p_
;
1580 // Accessor classes for entries in the ELF SHT_DYNAMIC section aka
1581 // PT_DYNAMIC segment.
1583 template<int size
, bool big_endian
>
1587 Dyn(const unsigned char* p
)
1588 : p_(reinterpret_cast<const internal::Dyn_data
<size
>*>(p
))
1591 template<typename File
>
1592 Dyn(File
* file
, typename
File::Location loc
)
1593 : p_(reinterpret_cast<const internal::Dyn_data
<size
>*>(
1594 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1597 typename Elf_types
<size
>::Elf_Swxword
1599 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_tag
); }
1601 typename Elf_types
<size
>::Elf_WXword
1603 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_val
); }
1605 typename Elf_types
<size
>::Elf_Addr
1607 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_val
); }
1610 const internal::Dyn_data
<size
>* p_
;
1613 // Write class for an entry in the SHT_DYNAMIC section.
1615 template<int size
, bool big_endian
>
1619 Dyn_write(unsigned char* p
)
1620 : p_(reinterpret_cast<internal::Dyn_data
<size
>*>(p
))
1624 put_d_tag(typename Elf_types
<size
>::Elf_Swxword v
)
1625 { this->p_
->d_tag
= Convert
<size
, big_endian
>::convert_host(v
); }
1628 put_d_val(typename Elf_types
<size
>::Elf_WXword v
)
1629 { this->p_
->d_val
= Convert
<size
, big_endian
>::convert_host(v
); }
1632 put_d_ptr(typename Elf_types
<size
>::Elf_Addr v
)
1633 { this->p_
->d_val
= Convert
<size
, big_endian
>::convert_host(v
); }
1636 internal::Dyn_data
<size
>* p_
;
1639 // Accessor classes for entries in the ELF SHT_GNU_verdef section.
1641 template<int size
, bool big_endian
>
1645 Verdef(const unsigned char* p
)
1646 : p_(reinterpret_cast<const internal::Verdef_data
*>(p
))
1649 template<typename File
>
1650 Verdef(File
* file
, typename
File::Location loc
)
1651 : p_(reinterpret_cast<const internal::Verdef_data
*>(
1652 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1656 get_vd_version() const
1657 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_version
); }
1660 get_vd_flags() const
1661 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_flags
); }
1665 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_ndx
); }
1669 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_cnt
); }
1673 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_hash
); }
1677 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_aux
); }
1681 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_next
); }
1684 const internal::Verdef_data
* p_
;
1687 template<int size
, bool big_endian
>
1691 Verdef_write(unsigned char* p
)
1692 : p_(reinterpret_cast<internal::Verdef_data
*>(p
))
1696 set_vd_version(Elf_Half v
)
1697 { this->p_
->vd_version
= Convert
<16, big_endian
>::convert_host(v
); }
1700 set_vd_flags(Elf_Half v
)
1701 { this->p_
->vd_flags
= Convert
<16, big_endian
>::convert_host(v
); }
1704 set_vd_ndx(Elf_Half v
)
1705 { this->p_
->vd_ndx
= Convert
<16, big_endian
>::convert_host(v
); }
1708 set_vd_cnt(Elf_Half v
)
1709 { this->p_
->vd_cnt
= Convert
<16, big_endian
>::convert_host(v
); }
1712 set_vd_hash(Elf_Word v
)
1713 { this->p_
->vd_hash
= Convert
<32, big_endian
>::convert_host(v
); }
1716 set_vd_aux(Elf_Word v
)
1717 { this->p_
->vd_aux
= Convert
<32, big_endian
>::convert_host(v
); }
1720 set_vd_next(Elf_Word v
)
1721 { this->p_
->vd_next
= Convert
<32, big_endian
>::convert_host(v
); }
1724 internal::Verdef_data
* p_
;
1727 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verdef
1730 template<int size
, bool big_endian
>
1734 Verdaux(const unsigned char* p
)
1735 : p_(reinterpret_cast<const internal::Verdaux_data
*>(p
))
1738 template<typename File
>
1739 Verdaux(File
* file
, typename
File::Location loc
)
1740 : p_(reinterpret_cast<const internal::Verdaux_data
*>(
1741 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1745 get_vda_name() const
1746 { return Convert
<32, big_endian
>::convert_host(this->p_
->vda_name
); }
1749 get_vda_next() const
1750 { return Convert
<32, big_endian
>::convert_host(this->p_
->vda_next
); }
1753 const internal::Verdaux_data
* p_
;
1756 template<int size
, bool big_endian
>
1760 Verdaux_write(unsigned char* p
)
1761 : p_(reinterpret_cast<internal::Verdaux_data
*>(p
))
1765 set_vda_name(Elf_Word v
)
1766 { this->p_
->vda_name
= Convert
<32, big_endian
>::convert_host(v
); }
1769 set_vda_next(Elf_Word v
)
1770 { this->p_
->vda_next
= Convert
<32, big_endian
>::convert_host(v
); }
1773 internal::Verdaux_data
* p_
;
1776 // Accessor classes for entries in the ELF SHT_GNU_verneed section.
1778 template<int size
, bool big_endian
>
1782 Verneed(const unsigned char* p
)
1783 : p_(reinterpret_cast<const internal::Verneed_data
*>(p
))
1786 template<typename File
>
1787 Verneed(File
* file
, typename
File::Location loc
)
1788 : p_(reinterpret_cast<const internal::Verneed_data
*>(
1789 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1793 get_vn_version() const
1794 { return Convert
<16, big_endian
>::convert_host(this->p_
->vn_version
); }
1798 { return Convert
<16, big_endian
>::convert_host(this->p_
->vn_cnt
); }
1802 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_file
); }
1806 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_aux
); }
1810 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_next
); }
1813 const internal::Verneed_data
* p_
;
1816 template<int size
, bool big_endian
>
1820 Verneed_write(unsigned char* p
)
1821 : p_(reinterpret_cast<internal::Verneed_data
*>(p
))
1825 set_vn_version(Elf_Half v
)
1826 { this->p_
->vn_version
= Convert
<16, big_endian
>::convert_host(v
); }
1829 set_vn_cnt(Elf_Half v
)
1830 { this->p_
->vn_cnt
= Convert
<16, big_endian
>::convert_host(v
); }
1833 set_vn_file(Elf_Word v
)
1834 { this->p_
->vn_file
= Convert
<32, big_endian
>::convert_host(v
); }
1837 set_vn_aux(Elf_Word v
)
1838 { this->p_
->vn_aux
= Convert
<32, big_endian
>::convert_host(v
); }
1841 set_vn_next(Elf_Word v
)
1842 { this->p_
->vn_next
= Convert
<32, big_endian
>::convert_host(v
); }
1845 internal::Verneed_data
* p_
;
1848 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verneed
1851 template<int size
, bool big_endian
>
1855 Vernaux(const unsigned char* p
)
1856 : p_(reinterpret_cast<const internal::Vernaux_data
*>(p
))
1859 template<typename File
>
1860 Vernaux(File
* file
, typename
File::Location loc
)
1861 : p_(reinterpret_cast<const internal::Vernaux_data
*>(
1862 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1866 get_vna_hash() const
1867 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_hash
); }
1870 get_vna_flags() const
1871 { return Convert
<16, big_endian
>::convert_host(this->p_
->vna_flags
); }
1874 get_vna_other() const
1875 { return Convert
<16, big_endian
>::convert_host(this->p_
->vna_other
); }
1878 get_vna_name() const
1879 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_name
); }
1882 get_vna_next() const
1883 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_next
); }
1886 const internal::Vernaux_data
* p_
;
1889 template<int size
, bool big_endian
>
1893 Vernaux_write(unsigned char* p
)
1894 : p_(reinterpret_cast<internal::Vernaux_data
*>(p
))
1898 set_vna_hash(Elf_Word v
)
1899 { this->p_
->vna_hash
= Convert
<32, big_endian
>::convert_host(v
); }
1902 set_vna_flags(Elf_Half v
)
1903 { this->p_
->vna_flags
= Convert
<16, big_endian
>::convert_host(v
); }
1906 set_vna_other(Elf_Half v
)
1907 { this->p_
->vna_other
= Convert
<16, big_endian
>::convert_host(v
); }
1910 set_vna_name(Elf_Word v
)
1911 { this->p_
->vna_name
= Convert
<32, big_endian
>::convert_host(v
); }
1914 set_vna_next(Elf_Word v
)
1915 { this->p_
->vna_next
= Convert
<32, big_endian
>::convert_host(v
); }
1918 internal::Vernaux_data
* p_
;
1921 } // End namespace elfcpp.
1923 #endif // !defined(ELFPCP_H)