1 // elfcpp.h -- main header file for elfcpp -*- C++ -*-
3 // Copyright (C) 2006-2019 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of elfcpp.
8 // This program is free software; you can redistribute it and/or
9 // modify it under the terms of the GNU Library General Public License
10 // as published by the Free Software Foundation; either version 2, or
11 // (at your option) any later version.
13 // In addition to the permissions in the GNU Library General Public
14 // License, the Free Software Foundation gives you unlimited
15 // permission to link the compiled version of this file into
16 // combinations with other programs, and to distribute those
17 // combinations without any restriction coming from the use of this
18 // file. (The Library Public License restrictions do apply in other
19 // respects; for example, they cover modification of the file, and
20 // distribution when not linked into a combined executable.)
22 // This program is distributed in the hope that it will be useful, but
23 // WITHOUT ANY WARRANTY; without even the implied warranty of
24 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
25 // Library General Public License for more details.
27 // You should have received a copy of the GNU Library General Public
28 // License along with this program; if not, write to the Free Software
29 // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA
32 // This is the external interface for elfcpp.
37 #include "elfcpp_swap.h"
46 // These types are always the same size.
48 typedef uint16_t Elf_Half
;
49 typedef uint32_t Elf_Word
;
50 typedef int32_t Elf_Sword
;
51 typedef uint64_t Elf_Xword
;
52 typedef int64_t Elf_Sxword
;
54 // These types vary in size depending on the ELF file class. The
55 // template parameter should be 32 or 64.
63 typedef uint32_t Elf_Addr
;
64 typedef uint32_t Elf_Off
;
65 typedef uint32_t Elf_WXword
;
66 typedef int32_t Elf_Swxword
;
72 typedef uint64_t Elf_Addr
;
73 typedef uint64_t Elf_Off
;
74 typedef uint64_t Elf_WXword
;
75 typedef int64_t Elf_Swxword
;
78 // Offsets within the Ehdr e_ident field.
80 const int EI_MAG0
= 0;
81 const int EI_MAG1
= 1;
82 const int EI_MAG2
= 2;
83 const int EI_MAG3
= 3;
84 const int EI_CLASS
= 4;
85 const int EI_DATA
= 5;
86 const int EI_VERSION
= 6;
87 const int EI_OSABI
= 7;
88 const int EI_ABIVERSION
= 8;
90 const int EI_NIDENT
= 16;
92 // The valid values found in Ehdr e_ident[EI_MAG0 through EI_MAG3].
94 const int ELFMAG0
= 0x7f;
95 const int ELFMAG1
= 'E';
96 const int ELFMAG2
= 'L';
97 const int ELFMAG3
= 'F';
99 // The valid values found in Ehdr e_ident[EI_CLASS].
108 // The valid values found in Ehdr e_ident[EI_DATA].
117 // The valid values found in Ehdr e_ident[EI_VERSION] and e_version.
125 // The valid values found in Ehdr e_ident[EI_OSABI].
133 // ELFOSABI_LINUX is an alias for ELFOSABI_GNU.
135 ELFOSABI_SOLARIS
= 6,
138 ELFOSABI_FREEBSD
= 9,
140 ELFOSABI_MODESTO
= 11,
141 ELFOSABI_OPENBSD
= 12,
142 ELFOSABI_OPENVMS
= 13,
145 // A GNU extension for the ARM.
147 // A GNU extension for the MSP.
148 ELFOSABI_STANDALONE
= 255
151 // The valid values found in the Ehdr e_type field.
166 // The valid values found in the Ehdr e_machine field.
181 // 11 was the old Sparc V9 ABI.
182 // 12 through 14 are reserved.
185 // Some old PowerPC object files use 17.
192 // 23 through 35 are served.
256 // Some old picoJava object files use 99 (EM_PJ is correct).
269 EM_ALTERA_NIOS2
= 113,
280 // Infineon Technologies 16-bit microcontroller with C166-V2 core.
283 EM_XSTORMY16
= 0xad45,
290 // Old AVR objects used 0x1057 (EM_AVR is correct).
291 // Old MSP430 objects used 0x1059 (EM_MSP430 is correct).
292 // Old FR30 objects used 0x3330 (EM_FR30 is correct).
293 // Old OpenRISC objects used 0x3426 and 0x8472 (EM_OR1K is correct).
294 // Old D10V objects used 0x7650 (EM_D10V is correct).
295 // Old D30V objects used 0x7676 (EM_D30V is correct).
296 // Old IP2X objects used 0x8217 (EM_IP2K is correct).
297 // Old PowerPC objects used 0x9025 (EM_PPC is correct).
298 // Old Alpha objects used 0x9026 (EM_ALPHA is correct).
299 // Old M32R objects used 0x9041 (EM_M32R is correct).
300 // Old V850 objects used 0x9080 (EM_V850 is correct).
301 // Old S/390 objects used 0xa390 (EM_S390 is correct).
302 // Old Xtensa objects used 0xabc7 (EM_XTENSA is correct).
303 // Old MN10300 objects used 0xbeef (EM_MN10300 is correct).
304 // Old MN10200 objects used 0xdead (EM_MN10200 is correct).
307 // A special value found in the Ehdr e_phnum field.
311 // Number of program segments stored in sh_info field of first
316 // Special section indices.
321 SHN_LORESERVE
= 0xff00,
329 SHN_HIRESERVE
= 0xffff,
331 // Provide for initial and final section ordering in conjunction
332 // with the SHF_LINK_ORDER and SHF_ORDERED section flags.
336 // x86_64 specific large common symbol.
337 SHN_X86_64_LCOMMON
= 0xff02
340 // The valid values found in the Shdr sh_type field.
358 SHT_PREINIT_ARRAY
= 16,
360 SHT_SYMTAB_SHNDX
= 18,
361 SHT_LOOS
= 0x60000000,
362 SHT_HIOS
= 0x6fffffff,
363 SHT_LOPROC
= 0x70000000,
364 SHT_HIPROC
= 0x7fffffff,
365 SHT_LOUSER
= 0x80000000,
366 SHT_HIUSER
= 0xffffffff,
367 // The remaining values are not in the standard.
368 // Incremental build data.
369 SHT_GNU_INCREMENTAL_INPUTS
= 0x6fff4700,
370 SHT_GNU_INCREMENTAL_SYMTAB
= 0x6fff4701,
371 SHT_GNU_INCREMENTAL_RELOCS
= 0x6fff4702,
372 SHT_GNU_INCREMENTAL_GOT_PLT
= 0x6fff4703,
373 // Object attributes.
374 SHT_GNU_ATTRIBUTES
= 0x6ffffff5,
375 // GNU style dynamic hash table.
376 SHT_GNU_HASH
= 0x6ffffff6,
377 // List of prelink dependencies.
378 SHT_GNU_LIBLIST
= 0x6ffffff7,
379 // Versions defined by file.
380 SHT_SUNW_verdef
= 0x6ffffffd,
381 SHT_GNU_verdef
= 0x6ffffffd,
382 // Versions needed by file.
383 SHT_SUNW_verneed
= 0x6ffffffe,
384 SHT_GNU_verneed
= 0x6ffffffe,
386 SHT_SUNW_versym
= 0x6fffffff,
387 SHT_GNU_versym
= 0x6fffffff,
389 SHT_SPARC_GOTDATA
= 0x70000000,
391 // ARM-specific section types.
392 // Exception Index table.
393 SHT_ARM_EXIDX
= 0x70000001,
394 // BPABI DLL dynamic linking pre-emption map.
395 SHT_ARM_PREEMPTMAP
= 0x70000002,
396 // Object file compatibility attributes.
397 SHT_ARM_ATTRIBUTES
= 0x70000003,
398 // Support for debugging overlaid programs.
399 SHT_ARM_DEBUGOVERLAY
= 0x70000004,
400 SHT_ARM_OVERLAYSECTION
= 0x70000005,
402 // x86_64 unwind information.
403 SHT_X86_64_UNWIND
= 0x70000001,
405 // MIPS-specific section types.
406 // Section contains register usage information.
407 SHT_MIPS_REGINFO
= 0x70000006,
408 // Section contains miscellaneous options.
409 SHT_MIPS_OPTIONS
= 0x7000000d,
410 // ABI related flags section.
411 SHT_MIPS_ABIFLAGS
= 0x7000002a,
413 // AARCH64-specific section type.
414 SHT_AARCH64_ATTRIBUTES
= 0x70000003,
416 // Link editor is to sort the entries in this section based on the
417 // address specified in the associated symbol table entry.
418 SHT_ORDERED
= 0x7fffffff
421 // The valid bit flags found in the Shdr sh_flags field.
430 SHF_INFO_LINK
= 0x40,
431 SHF_LINK_ORDER
= 0x80,
432 SHF_OS_NONCONFORMING
= 0x100,
435 SHF_COMPRESSED
= 0x800,
436 SHF_MASKOS
= 0x0ff00000,
437 SHF_MASKPROC
= 0xf0000000,
439 // Indicates this section requires ordering in relation to
440 // other sections of the same type. Ordered sections are
441 // combined within the section pointed to by the sh_link entry.
442 // The sh_info values SHN_BEFORE and SHN_AFTER imply that the
443 // sorted section is to precede or follow, respectively, all
444 // other sections in the set being ordered.
445 SHF_ORDERED
= 0x40000000,
446 // This section is excluded from input to the link-edit of an
447 // executable or shared object. This flag is ignored if SHF_ALLOC
448 // is also set, or if relocations exist against the section.
449 SHF_EXCLUDE
= 0x80000000,
451 // Section with data that is GP relative addressable.
452 SHF_MIPS_GPREL
= 0x10000000,
454 // x86_64 specific large section.
455 SHF_X86_64_LARGE
= 0x10000000
458 // Values which appear in the first Elf_WXword of the section data
459 // of a SHF_COMPRESSED section.
462 ELFCOMPRESS_ZLIB
= 1,
463 ELFCOMPRESS_LOOS
= 0x60000000,
464 ELFCOMPRESS_HIOS
= 0x6fffffff,
465 ELFCOMPRESS_LOPROC
= 0x70000000,
466 ELFCOMPRESS_HIPROC
= 0x7fffffff,
469 // Bit flags which appear in the first 32-bit word of the section data
470 // of a SHT_GROUP section.
475 GRP_MASKOS
= 0x0ff00000,
476 GRP_MASKPROC
= 0xf0000000
479 // The valid values found in the Phdr p_type field.
491 PT_LOOS
= 0x60000000,
492 PT_HIOS
= 0x6fffffff,
493 PT_LOPROC
= 0x70000000,
494 PT_HIPROC
= 0x7fffffff,
495 // The remaining values are not in the standard.
496 // Frame unwind information.
497 PT_GNU_EH_FRAME
= 0x6474e550,
498 PT_SUNW_EH_FRAME
= 0x6474e550,
500 PT_GNU_STACK
= 0x6474e551,
501 // Read only after relocation.
502 PT_GNU_RELRO
= 0x6474e552,
503 // Platform architecture compatibility information
504 PT_ARM_ARCHEXT
= 0x70000000,
505 // Exception unwind tables
506 PT_ARM_EXIDX
= 0x70000001,
507 // Register usage information. Identifies one .reginfo section.
508 PT_MIPS_REGINFO
=0x70000000,
509 // Runtime procedure table.
510 PT_MIPS_RTPROC
= 0x70000001,
511 // .MIPS.options section.
512 PT_MIPS_OPTIONS
= 0x70000002,
513 // .MIPS.abiflags section.
514 PT_MIPS_ABIFLAGS
= 0x70000003,
515 // Platform architecture compatibility information
516 PT_AARCH64_ARCHEXT
= 0x70000000,
517 // Exception unwind tables
518 PT_AARCH64_UNWIND
= 0x70000001,
519 // 4k page table size
520 PT_S390_PGSTE
= 0x70000000,
523 // The valid bit flags found in the Phdr p_flags field.
530 PF_MASKOS
= 0x0ff00000,
531 PF_MASKPROC
= 0xf0000000
534 // Symbol binding from Sym st_info field.
548 // Symbol types from Sym st_info field.
560 // GNU extension: symbol value points to a function which is called
561 // at runtime to determine the final value of the symbol.
569 // The section type that must be used for register symbols on
570 // Sparc. These symbols initialize a global register.
571 STT_SPARC_REGISTER
= 13,
573 // ARM: a THUMB function. This is not defined in ARM ELF Specification but
574 // used by the GNU tool-chain.
579 elf_st_bind(unsigned char info
)
581 return static_cast<STB
>(info
>> 4);
585 elf_st_type(unsigned char info
)
587 return static_cast<STT
>(info
& 0xf);
591 elf_st_info(STB bind
, STT type
)
593 return ((static_cast<unsigned char>(bind
) << 4)
594 + (static_cast<unsigned char>(type
) & 0xf));
597 // Symbol visibility from Sym st_other field.
608 elf_st_visibility(unsigned char other
)
610 return static_cast<STV
>(other
& 0x3);
614 elf_st_nonvis(unsigned char other
)
616 return static_cast<STV
>(other
>> 2);
620 elf_st_other(STV vis
, unsigned char nonvis
)
622 return ((nonvis
<< 2)
623 + (static_cast<unsigned char>(vis
) & 3));
626 // Reloc information from Rel/Rela r_info field.
630 elf_r_sym(typename Elf_types
<size
>::Elf_WXword
);
634 elf_r_sym
<32>(Elf_Word v
)
641 elf_r_sym
<64>(Elf_Xword v
)
648 elf_r_type(typename Elf_types
<size
>::Elf_WXword
);
652 elf_r_type
<32>(Elf_Word v
)
659 elf_r_type
<64>(Elf_Xword v
)
661 return v
& 0xffffffff;
665 typename Elf_types
<size
>::Elf_WXword
666 elf_r_info(unsigned int s
, unsigned int t
);
670 elf_r_info
<32>(unsigned int s
, unsigned int t
)
672 return (s
<< 8) + (t
& 0xff);
677 elf_r_info
<64>(unsigned int s
, unsigned int t
)
679 return (static_cast<Elf_Xword
>(s
) << 32) + (t
& 0xffffffff);
682 // Dynamic tags found in the PT_DYNAMIC segment.
713 DT_INIT_ARRAYSZ
= 27,
714 DT_FINI_ARRAYSZ
= 28,
718 // This is used to mark a range of dynamic tags. It is not really
722 DT_PREINIT_ARRAY
= 32,
723 DT_PREINIT_ARRAYSZ
= 33,
724 DT_LOOS
= 0x6000000d,
725 DT_HIOS
= 0x6ffff000,
726 DT_LOPROC
= 0x70000000,
727 DT_HIPROC
= 0x7fffffff,
729 // The remaining values are extensions used by GNU or Solaris.
730 DT_VALRNGLO
= 0x6ffffd00,
731 DT_GNU_PRELINKED
= 0x6ffffdf5,
732 DT_GNU_CONFLICTSZ
= 0x6ffffdf6,
733 DT_GNU_LIBLISTSZ
= 0x6ffffdf7,
734 DT_CHECKSUM
= 0x6ffffdf8,
735 DT_PLTPADSZ
= 0x6ffffdf9,
736 DT_MOVEENT
= 0x6ffffdfa,
737 DT_MOVESZ
= 0x6ffffdfb,
738 DT_FEATURE
= 0x6ffffdfc,
739 DT_POSFLAG_1
= 0x6ffffdfd,
740 DT_SYMINSZ
= 0x6ffffdfe,
741 DT_SYMINENT
= 0x6ffffdff,
742 DT_VALRNGHI
= 0x6ffffdff,
744 DT_ADDRRNGLO
= 0x6ffffe00,
745 DT_GNU_HASH
= 0x6ffffef5,
746 DT_TLSDESC_PLT
= 0x6ffffef6,
747 DT_TLSDESC_GOT
= 0x6ffffef7,
748 DT_GNU_CONFLICT
= 0x6ffffef8,
749 DT_GNU_LIBLIST
= 0x6ffffef9,
750 DT_CONFIG
= 0x6ffffefa,
751 DT_DEPAUDIT
= 0x6ffffefb,
752 DT_AUDIT
= 0x6ffffefc,
753 DT_PLTPAD
= 0x6ffffefd,
754 DT_MOVETAB
= 0x6ffffefe,
755 DT_SYMINFO
= 0x6ffffeff,
756 DT_ADDRRNGHI
= 0x6ffffeff,
758 DT_RELACOUNT
= 0x6ffffff9,
759 DT_RELCOUNT
= 0x6ffffffa,
760 DT_FLAGS_1
= 0x6ffffffb,
761 DT_VERDEF
= 0x6ffffffc,
762 DT_VERDEFNUM
= 0x6ffffffd,
763 DT_VERNEED
= 0x6ffffffe,
764 DT_VERNEEDNUM
= 0x6fffffff,
766 DT_VERSYM
= 0x6ffffff0,
768 // Specify the value of _GLOBAL_OFFSET_TABLE_.
769 DT_PPC_GOT
= 0x70000000,
771 // Specify whether various optimisations are possible.
772 DT_PPC_OPT
= 0x70000001,
774 // Specify the start of the .glink section.
775 DT_PPC64_GLINK
= 0x70000000,
777 // Specify the start and size of the .opd section.
778 DT_PPC64_OPD
= 0x70000001,
779 DT_PPC64_OPDSZ
= 0x70000002,
781 // Specify whether various optimisations are possible.
782 DT_PPC64_OPT
= 0x70000003,
784 // The index of an STT_SPARC_REGISTER symbol within the DT_SYMTAB
785 // symbol table. One dynamic entry exists for every STT_SPARC_REGISTER
786 // symbol in the symbol table.
787 DT_SPARC_REGISTER
= 0x70000001,
789 // MIPS specific dynamic array tags.
790 // 32 bit version number for runtime linker interface.
791 DT_MIPS_RLD_VERSION
= 0x70000001,
793 DT_MIPS_TIME_STAMP
= 0x70000002,
794 // Checksum of external strings and common sizes.
795 DT_MIPS_ICHECKSUM
= 0x70000003,
796 // Index of version string in string table.
797 DT_MIPS_IVERSION
= 0x70000004,
799 DT_MIPS_FLAGS
= 0x70000005,
800 // Base address of the segment.
801 DT_MIPS_BASE_ADDRESS
= 0x70000006,
803 DT_MIPS_MSYM
= 0x70000007,
804 // Address of .conflict section.
805 DT_MIPS_CONFLICT
= 0x70000008,
806 // Address of .liblist section.
807 DT_MIPS_LIBLIST
= 0x70000009,
808 // Number of local global offset table entries.
809 DT_MIPS_LOCAL_GOTNO
= 0x7000000a,
810 // Number of entries in the .conflict section.
811 DT_MIPS_CONFLICTNO
= 0x7000000b,
812 // Number of entries in the .liblist section.
813 DT_MIPS_LIBLISTNO
= 0x70000010,
814 // Number of entries in the .dynsym section.
815 DT_MIPS_SYMTABNO
= 0x70000011,
816 // Index of first external dynamic symbol not referenced locally.
817 DT_MIPS_UNREFEXTNO
= 0x70000012,
818 // Index of first dynamic symbol in global offset table.
819 DT_MIPS_GOTSYM
= 0x70000013,
820 // Number of page table entries in global offset table.
821 DT_MIPS_HIPAGENO
= 0x70000014,
822 // Address of run time loader map, used for debugging.
823 DT_MIPS_RLD_MAP
= 0x70000016,
824 // Delta C++ class definition.
825 DT_MIPS_DELTA_CLASS
= 0x70000017,
826 // Number of entries in DT_MIPS_DELTA_CLASS.
827 DT_MIPS_DELTA_CLASS_NO
= 0x70000018,
828 // Delta C++ class instances.
829 DT_MIPS_DELTA_INSTANCE
= 0x70000019,
830 // Number of entries in DT_MIPS_DELTA_INSTANCE.
831 DT_MIPS_DELTA_INSTANCE_NO
= 0x7000001a,
832 // Delta relocations.
833 DT_MIPS_DELTA_RELOC
= 0x7000001b,
834 // Number of entries in DT_MIPS_DELTA_RELOC.
835 DT_MIPS_DELTA_RELOC_NO
= 0x7000001c,
836 // Delta symbols that Delta relocations refer to.
837 DT_MIPS_DELTA_SYM
= 0x7000001d,
838 // Number of entries in DT_MIPS_DELTA_SYM.
839 DT_MIPS_DELTA_SYM_NO
= 0x7000001e,
840 // Delta symbols that hold class declarations.
841 DT_MIPS_DELTA_CLASSSYM
= 0x70000020,
842 // Number of entries in DT_MIPS_DELTA_CLASSSYM.
843 DT_MIPS_DELTA_CLASSSYM_NO
= 0x70000021,
844 // Flags indicating information about C++ flavor.
845 DT_MIPS_CXX_FLAGS
= 0x70000022,
846 // Pixie information (???).
847 DT_MIPS_PIXIE_INIT
= 0x70000023,
848 // Address of .MIPS.symlib
849 DT_MIPS_SYMBOL_LIB
= 0x70000024,
850 // The GOT index of the first PTE for a segment
851 DT_MIPS_LOCALPAGE_GOTIDX
= 0x70000025,
852 // The GOT index of the first PTE for a local symbol
853 DT_MIPS_LOCAL_GOTIDX
= 0x70000026,
854 // The GOT index of the first PTE for a hidden symbol
855 DT_MIPS_HIDDEN_GOTIDX
= 0x70000027,
856 // The GOT index of the first PTE for a protected symbol
857 DT_MIPS_PROTECTED_GOTIDX
= 0x70000028,
858 // Address of `.MIPS.options'.
859 DT_MIPS_OPTIONS
= 0x70000029,
860 // Address of `.interface'.
861 DT_MIPS_INTERFACE
= 0x7000002a,
863 DT_MIPS_DYNSTR_ALIGN
= 0x7000002b,
864 // Size of the .interface section.
865 DT_MIPS_INTERFACE_SIZE
= 0x7000002c,
866 // Size of rld_text_resolve function stored in the GOT.
867 DT_MIPS_RLD_TEXT_RESOLVE_ADDR
= 0x7000002d,
868 // Default suffix of DSO to be added by rld on dlopen() calls.
869 DT_MIPS_PERF_SUFFIX
= 0x7000002e,
870 // Size of compact relocation section (O32).
871 DT_MIPS_COMPACT_SIZE
= 0x7000002f,
872 // GP value for auxiliary GOTs.
873 DT_MIPS_GP_VALUE
= 0x70000030,
874 // Address of auxiliary .dynamic.
875 DT_MIPS_AUX_DYNAMIC
= 0x70000031,
876 // Address of the base of the PLTGOT.
877 DT_MIPS_PLTGOT
= 0x70000032,
878 // Points to the base of a writable PLT.
879 DT_MIPS_RWPLT
= 0x70000034,
880 // Relative offset of run time loader map, used for debugging.
881 DT_MIPS_RLD_MAP_REL
= 0x70000035,
883 DT_AUXILIARY
= 0x7ffffffd,
884 DT_USED
= 0x7ffffffe,
885 DT_FILTER
= 0x7fffffff
888 // Flags found in the DT_FLAGS dynamic element.
899 // Flags found in the DT_FLAGS_1 dynamic element.
907 DF_1_LOADFLTR
= 0x10,
908 DF_1_INITFIRST
= 0x20,
913 DF_1_INTERPOSE
= 0x400,
914 DF_1_NODEFLIB
= 0x800,
915 DF_1_NODUMP
= 0x1000,
916 DF_1_CONLFAT
= 0x2000
919 // Version numbers which appear in the vd_version field of a Verdef
922 const int VER_DEF_NONE
= 0;
923 const int VER_DEF_CURRENT
= 1;
925 // Version numbers which appear in the vn_version field of a Verneed
928 const int VER_NEED_NONE
= 0;
929 const int VER_NEED_CURRENT
= 1;
931 // Bit flags which appear in vd_flags of Verdef and vna_flags of
934 const int VER_FLG_BASE
= 0x1;
935 const int VER_FLG_WEAK
= 0x2;
936 const int VER_FLG_INFO
= 0x4;
938 // Special constants found in the SHT_GNU_versym entries.
940 const int VER_NDX_LOCAL
= 0;
941 const int VER_NDX_GLOBAL
= 1;
943 // A SHT_GNU_versym section holds 16-bit words. This bit is set if
944 // the symbol is hidden and can only be seen when referenced using an
945 // explicit version number. This is a GNU extension.
947 const int VERSYM_HIDDEN
= 0x8000;
949 // This is the mask for the rest of the data in a word read from a
950 // SHT_GNU_versym section.
952 const int VERSYM_VERSION
= 0x7fff;
954 // Note descriptor type codes for notes in a non-core file with an
961 // An architecture string.
965 // Note descriptor type codes for notes in a non-core file with the
970 // The minimum ABI level. This is used by the dynamic linker to
971 // describe the minimal kernel version on which a shared library may
972 // be used. Th value should be four words. Word 0 is an OS
973 // descriptor (see below). Word 1 is the major version of the ABI.
974 // Word 2 is the minor version. Word 3 is the subminor version.
976 // Hardware capabilities information. Word 0 is the number of
977 // entries. Word 1 is a bitmask of enabled entries. The rest of
978 // the descriptor is a series of entries, where each entry is a
979 // single byte followed by a nul terminated string. The byte gives
980 // the bit number to test if enabled in the bitmask.
982 // The build ID as set by the linker's --build-id option. The
983 // format of the descriptor depends on the build ID style.
985 // The version of gold used to link. Th descriptor is just a
987 NT_GNU_GOLD_VERSION
= 4,
988 // Program property note, as described in "Linux Extensions to the gABI".
989 NT_GNU_PROPERTY_TYPE_0
= 5
992 // The OS values which may appear in word 0 of a NT_GNU_ABI_TAG note.
996 ELF_NOTE_OS_LINUX
= 0,
998 ELF_NOTE_OS_SOLARIS2
= 2,
999 ELF_NOTE_OS_FREEBSD
= 3,
1000 ELF_NOTE_OS_NETBSD
= 4,
1001 ELF_NOTE_OS_SYLLABLE
= 5
1004 // Program property types for NT_GNU_PROPERTY_TYPE_0.
1008 GNU_PROPERTY_STACK_SIZE
= 1,
1009 GNU_PROPERTY_NO_COPY_ON_PROTECTED
= 2,
1010 GNU_PROPERTY_LOPROC
= 0xc0000000,
1011 GNU_PROPERTY_X86_ISA_1_USED
= 0xc0000000,
1012 GNU_PROPERTY_X86_ISA_1_NEEDED
= 0xc0000001,
1013 GNU_PROPERTY_X86_FEATURE_1_AND
= 0xc0000002,
1014 GNU_PROPERTY_HIPROC
= 0xdfffffff,
1015 GNU_PROPERTY_LOUSER
= 0xe0000000,
1016 GNU_PROPERTY_HIUSER
= 0xffffffff
1019 } // End namespace elfcpp.
1021 // Include internal details after defining the types.
1022 #include "elfcpp_internal.h"
1027 // The offset of the ELF file header in the ELF file.
1029 const int file_header_offset
= 0;
1031 // ELF structure sizes.
1036 // Size of ELF file header.
1037 static const int ehdr_size
= sizeof(internal::Ehdr_data
<size
>);
1038 // Size of ELF segment header.
1039 static const int phdr_size
= sizeof(internal::Phdr_data
<size
>);
1040 // Size of ELF section header.
1041 static const int shdr_size
= sizeof(internal::Shdr_data
<size
>);
1042 // Size of ELF compression header.
1043 static const int chdr_size
= sizeof(internal::Chdr_data
<size
>);
1044 // Size of ELF symbol table entry.
1045 static const int sym_size
= sizeof(internal::Sym_data
<size
>);
1046 // Sizes of ELF reloc entries.
1047 static const int rel_size
= sizeof(internal::Rel_data
<size
>);
1048 static const int rela_size
= sizeof(internal::Rela_data
<size
>);
1049 // Size of ELF dynamic entry.
1050 static const int dyn_size
= sizeof(internal::Dyn_data
<size
>);
1051 // Size of ELF version structures.
1052 static const int verdef_size
= sizeof(internal::Verdef_data
);
1053 static const int verdaux_size
= sizeof(internal::Verdaux_data
);
1054 static const int verneed_size
= sizeof(internal::Verneed_data
);
1055 static const int vernaux_size
= sizeof(internal::Vernaux_data
);
1058 // Accessor class for the ELF file header.
1060 template<int size
, bool big_endian
>
1064 Ehdr(const unsigned char* p
)
1065 : p_(reinterpret_cast<const internal::Ehdr_data
<size
>*>(p
))
1068 template<typename File
>
1069 Ehdr(File
* file
, typename
File::Location loc
)
1070 : p_(reinterpret_cast<const internal::Ehdr_data
<size
>*>(
1071 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1074 const unsigned char*
1076 { return this->p_
->e_ident
; }
1080 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_type
); }
1083 get_e_machine() const
1084 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_machine
); }
1087 get_e_version() const
1088 { return Convert
<32, big_endian
>::convert_host(this->p_
->e_version
); }
1090 typename Elf_types
<size
>::Elf_Addr
1092 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_entry
); }
1094 typename Elf_types
<size
>::Elf_Off
1096 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_phoff
); }
1098 typename Elf_types
<size
>::Elf_Off
1100 { return Convert
<size
, big_endian
>::convert_host(this->p_
->e_shoff
); }
1104 { return Convert
<32, big_endian
>::convert_host(this->p_
->e_flags
); }
1107 get_e_ehsize() const
1108 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_ehsize
); }
1111 get_e_phentsize() const
1112 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_phentsize
); }
1116 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_phnum
); }
1119 get_e_shentsize() const
1120 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shentsize
); }
1124 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shnum
); }
1127 get_e_shstrndx() const
1128 { return Convert
<16, big_endian
>::convert_host(this->p_
->e_shstrndx
); }
1131 const internal::Ehdr_data
<size
>* p_
;
1134 // Write class for the ELF file header.
1136 template<int size
, bool big_endian
>
1140 Ehdr_write(unsigned char* p
)
1141 : p_(reinterpret_cast<internal::Ehdr_data
<size
>*>(p
))
1145 put_e_ident(const unsigned char v
[EI_NIDENT
]) const
1146 { memcpy(this->p_
->e_ident
, v
, EI_NIDENT
); }
1149 put_e_type(Elf_Half v
)
1150 { this->p_
->e_type
= Convert
<16, big_endian
>::convert_host(v
); }
1153 put_e_machine(Elf_Half v
)
1154 { this->p_
->e_machine
= Convert
<16, big_endian
>::convert_host(v
); }
1157 put_e_version(Elf_Word v
)
1158 { this->p_
->e_version
= Convert
<32, big_endian
>::convert_host(v
); }
1161 put_e_entry(typename Elf_types
<size
>::Elf_Addr v
)
1162 { this->p_
->e_entry
= Convert
<size
, big_endian
>::convert_host(v
); }
1165 put_e_phoff(typename Elf_types
<size
>::Elf_Off v
)
1166 { this->p_
->e_phoff
= Convert
<size
, big_endian
>::convert_host(v
); }
1169 put_e_shoff(typename Elf_types
<size
>::Elf_Off v
)
1170 { this->p_
->e_shoff
= Convert
<size
, big_endian
>::convert_host(v
); }
1173 put_e_flags(Elf_Word v
)
1174 { this->p_
->e_flags
= Convert
<32, big_endian
>::convert_host(v
); }
1177 put_e_ehsize(Elf_Half v
)
1178 { this->p_
->e_ehsize
= Convert
<16, big_endian
>::convert_host(v
); }
1181 put_e_phentsize(Elf_Half v
)
1182 { this->p_
->e_phentsize
= Convert
<16, big_endian
>::convert_host(v
); }
1185 put_e_phnum(Elf_Half v
)
1186 { this->p_
->e_phnum
= Convert
<16, big_endian
>::convert_host(v
); }
1189 put_e_shentsize(Elf_Half v
)
1190 { this->p_
->e_shentsize
= Convert
<16, big_endian
>::convert_host(v
); }
1193 put_e_shnum(Elf_Half v
)
1194 { this->p_
->e_shnum
= Convert
<16, big_endian
>::convert_host(v
); }
1197 put_e_shstrndx(Elf_Half v
)
1198 { this->p_
->e_shstrndx
= Convert
<16, big_endian
>::convert_host(v
); }
1201 internal::Ehdr_data
<size
>* p_
;
1204 // Accessor class for an ELF section header.
1206 template<int size
, bool big_endian
>
1210 Shdr(const unsigned char* p
)
1211 : p_(reinterpret_cast<const internal::Shdr_data
<size
>*>(p
))
1214 template<typename File
>
1215 Shdr(File
* file
, typename
File::Location loc
)
1216 : p_(reinterpret_cast<const internal::Shdr_data
<size
>*>(
1217 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1222 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_name
); }
1226 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_type
); }
1228 typename Elf_types
<size
>::Elf_WXword
1229 get_sh_flags() const
1230 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_flags
); }
1232 typename Elf_types
<size
>::Elf_Addr
1234 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_addr
); }
1236 typename Elf_types
<size
>::Elf_Off
1237 get_sh_offset() const
1238 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_offset
); }
1240 typename Elf_types
<size
>::Elf_WXword
1242 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_size
); }
1246 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_link
); }
1250 { return Convert
<32, big_endian
>::convert_host(this->p_
->sh_info
); }
1252 typename Elf_types
<size
>::Elf_WXword
1253 get_sh_addralign() const
1255 Convert
<size
, big_endian
>::convert_host(this->p_
->sh_addralign
); }
1257 typename Elf_types
<size
>::Elf_WXword
1258 get_sh_entsize() const
1259 { return Convert
<size
, big_endian
>::convert_host(this->p_
->sh_entsize
); }
1262 const internal::Shdr_data
<size
>* p_
;
1265 // Write class for an ELF section header.
1267 template<int size
, bool big_endian
>
1271 Shdr_write(unsigned char* p
)
1272 : p_(reinterpret_cast<internal::Shdr_data
<size
>*>(p
))
1276 put_sh_name(Elf_Word v
)
1277 { this->p_
->sh_name
= Convert
<32, big_endian
>::convert_host(v
); }
1280 put_sh_type(Elf_Word v
)
1281 { this->p_
->sh_type
= Convert
<32, big_endian
>::convert_host(v
); }
1284 put_sh_flags(typename Elf_types
<size
>::Elf_WXword v
)
1285 { this->p_
->sh_flags
= Convert
<size
, big_endian
>::convert_host(v
); }
1288 put_sh_addr(typename Elf_types
<size
>::Elf_Addr v
)
1289 { this->p_
->sh_addr
= Convert
<size
, big_endian
>::convert_host(v
); }
1292 put_sh_offset(typename Elf_types
<size
>::Elf_Off v
)
1293 { this->p_
->sh_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1296 put_sh_size(typename Elf_types
<size
>::Elf_WXword v
)
1297 { this->p_
->sh_size
= Convert
<size
, big_endian
>::convert_host(v
); }
1300 put_sh_link(Elf_Word v
)
1301 { this->p_
->sh_link
= Convert
<32, big_endian
>::convert_host(v
); }
1304 put_sh_info(Elf_Word v
)
1305 { this->p_
->sh_info
= Convert
<32, big_endian
>::convert_host(v
); }
1308 put_sh_addralign(typename Elf_types
<size
>::Elf_WXword v
)
1309 { this->p_
->sh_addralign
= Convert
<size
, big_endian
>::convert_host(v
); }
1312 put_sh_entsize(typename Elf_types
<size
>::Elf_WXword v
)
1313 { this->p_
->sh_entsize
= Convert
<size
, big_endian
>::convert_host(v
); }
1316 internal::Shdr_data
<size
>* p_
;
1319 // Accessor class for an ELF compression header.
1321 template<int size
, bool big_endian
>
1325 Chdr(const unsigned char* p
)
1326 : p_(reinterpret_cast<const internal::Chdr_data
<size
>*>(p
))
1329 template<typename File
>
1330 Chdr(File
* file
, typename
File::Location loc
)
1331 : p_(reinterpret_cast<const internal::Chdr_data
<size
>*>(
1332 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1337 { return Convert
<size
, big_endian
>::convert_host(this->p_
->ch_type
); }
1339 typename Elf_types
<size
>::Elf_WXword
1341 { return Convert
<size
, big_endian
>::convert_host(this->p_
->ch_size
); }
1343 typename Elf_types
<size
>::Elf_WXword
1344 get_ch_addralign() const
1346 Convert
<size
, big_endian
>::convert_host(this->p_
->ch_addralign
); }
1349 const internal::Chdr_data
<size
>* p_
;
1352 // Write class for an ELF compression header.
1354 template<int size
, bool big_endian
>
1358 Chdr_write(unsigned char* p
)
1359 : p_(reinterpret_cast<internal::Chdr_data
<size
>*>(p
))
1363 put_ch_type(typename Elf_types
<size
>::Elf_WXword v
)
1364 { this->p_
->ch_type
= Convert
<size
, big_endian
>::convert_host(v
); }
1367 put_ch_size(typename Elf_types
<size
>::Elf_WXword v
)
1368 { this->p_
->ch_size
= Convert
<size
, big_endian
>::convert_host(v
); }
1371 put_ch_addralign(typename Elf_types
<size
>::Elf_WXword v
)
1372 { this->p_
->ch_addralign
= Convert
<size
, big_endian
>::convert_host(v
); }
1375 put_ch_reserved(Elf_Word
);
1378 internal::Chdr_data
<size
>* p_
;
1383 elfcpp::Chdr_write
<64, true>::put_ch_reserved(Elf_Word v
)
1385 this->p_
->ch_reserved
= v
;
1390 elfcpp::Chdr_write
<64, false>::put_ch_reserved(Elf_Word v
)
1392 this->p_
->ch_reserved
= v
;
1395 // Accessor class for an ELF segment header.
1397 template<int size
, bool big_endian
>
1401 Phdr(const unsigned char* p
)
1402 : p_(reinterpret_cast<const internal::Phdr_data
<size
>*>(p
))
1405 template<typename File
>
1406 Phdr(File
* file
, typename
File::Location loc
)
1407 : p_(reinterpret_cast<internal::Phdr_data
<size
>*>(
1408 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1413 { return Convert
<32, big_endian
>::convert_host(this->p_
->p_type
); }
1415 typename Elf_types
<size
>::Elf_Off
1416 get_p_offset() const
1417 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_offset
); }
1419 typename Elf_types
<size
>::Elf_Addr
1421 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_vaddr
); }
1423 typename Elf_types
<size
>::Elf_Addr
1425 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_paddr
); }
1427 typename Elf_types
<size
>::Elf_WXword
1428 get_p_filesz() const
1429 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_filesz
); }
1431 typename Elf_types
<size
>::Elf_WXword
1433 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_memsz
); }
1437 { return Convert
<32, big_endian
>::convert_host(this->p_
->p_flags
); }
1439 typename Elf_types
<size
>::Elf_WXword
1441 { return Convert
<size
, big_endian
>::convert_host(this->p_
->p_align
); }
1444 const internal::Phdr_data
<size
>* p_
;
1447 // Write class for an ELF segment header.
1449 template<int size
, bool big_endian
>
1453 Phdr_write(unsigned char* p
)
1454 : p_(reinterpret_cast<internal::Phdr_data
<size
>*>(p
))
1458 put_p_type(Elf_Word v
)
1459 { this->p_
->p_type
= Convert
<32, big_endian
>::convert_host(v
); }
1462 put_p_offset(typename Elf_types
<size
>::Elf_Off v
)
1463 { this->p_
->p_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1466 put_p_vaddr(typename Elf_types
<size
>::Elf_Addr v
)
1467 { this->p_
->p_vaddr
= Convert
<size
, big_endian
>::convert_host(v
); }
1470 put_p_paddr(typename Elf_types
<size
>::Elf_Addr v
)
1471 { this->p_
->p_paddr
= Convert
<size
, big_endian
>::convert_host(v
); }
1474 put_p_filesz(typename Elf_types
<size
>::Elf_WXword v
)
1475 { this->p_
->p_filesz
= Convert
<size
, big_endian
>::convert_host(v
); }
1478 put_p_memsz(typename Elf_types
<size
>::Elf_WXword v
)
1479 { this->p_
->p_memsz
= Convert
<size
, big_endian
>::convert_host(v
); }
1482 put_p_flags(Elf_Word v
)
1483 { this->p_
->p_flags
= Convert
<32, big_endian
>::convert_host(v
); }
1486 put_p_align(typename Elf_types
<size
>::Elf_WXword v
)
1487 { this->p_
->p_align
= Convert
<size
, big_endian
>::convert_host(v
); }
1490 internal::Phdr_data
<size
>* p_
;
1493 // Accessor class for an ELF symbol table entry.
1495 template<int size
, bool big_endian
>
1499 Sym(const unsigned char* p
)
1500 : p_(reinterpret_cast<const internal::Sym_data
<size
>*>(p
))
1503 template<typename File
>
1504 Sym(File
* file
, typename
File::Location loc
)
1505 : p_(reinterpret_cast<const internal::Sym_data
<size
>*>(
1506 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1511 { return Convert
<32, big_endian
>::convert_host(this->p_
->st_name
); }
1513 typename Elf_types
<size
>::Elf_Addr
1514 get_st_value() const
1515 { return Convert
<size
, big_endian
>::convert_host(this->p_
->st_value
); }
1517 typename Elf_types
<size
>::Elf_WXword
1519 { return Convert
<size
, big_endian
>::convert_host(this->p_
->st_size
); }
1523 { return this->p_
->st_info
; }
1527 { return elf_st_bind(this->get_st_info()); }
1531 { return elf_st_type(this->get_st_info()); }
1534 get_st_other() const
1535 { return this->p_
->st_other
; }
1538 get_st_visibility() const
1539 { return elf_st_visibility(this->get_st_other()); }
1542 get_st_nonvis() const
1543 { return elf_st_nonvis(this->get_st_other()); }
1546 get_st_shndx() const
1547 { return Convert
<16, big_endian
>::convert_host(this->p_
->st_shndx
); }
1550 const internal::Sym_data
<size
>* p_
;
1553 // Writer class for an ELF symbol table entry.
1555 template<int size
, bool big_endian
>
1559 Sym_write(unsigned char* p
)
1560 : p_(reinterpret_cast<internal::Sym_data
<size
>*>(p
))
1564 put_st_name(Elf_Word v
)
1565 { this->p_
->st_name
= Convert
<32, big_endian
>::convert_host(v
); }
1568 put_st_value(typename Elf_types
<size
>::Elf_Addr v
)
1569 { this->p_
->st_value
= Convert
<size
, big_endian
>::convert_host(v
); }
1572 put_st_size(typename Elf_types
<size
>::Elf_WXword v
)
1573 { this->p_
->st_size
= Convert
<size
, big_endian
>::convert_host(v
); }
1576 put_st_info(unsigned char v
)
1577 { this->p_
->st_info
= v
; }
1580 put_st_info(STB bind
, STT type
)
1581 { this->p_
->st_info
= elf_st_info(bind
, type
); }
1584 put_st_other(unsigned char v
)
1585 { this->p_
->st_other
= v
; }
1588 put_st_other(STV vis
, unsigned char nonvis
)
1589 { this->p_
->st_other
= elf_st_other(vis
, nonvis
); }
1592 put_st_shndx(Elf_Half v
)
1593 { this->p_
->st_shndx
= Convert
<16, big_endian
>::convert_host(v
); }
1595 Sym
<size
, big_endian
>
1597 { return Sym
<size
, big_endian
>(reinterpret_cast<unsigned char*>(this->p_
)); }
1600 internal::Sym_data
<size
>* p_
;
1603 // Accessor classes for an ELF REL relocation entry.
1605 template<int size
, bool big_endian
>
1609 Rel(const unsigned char* p
)
1610 : p_(reinterpret_cast<const internal::Rel_data
<size
>*>(p
))
1613 template<typename File
>
1614 Rel(File
* file
, typename
File::Location loc
)
1615 : p_(reinterpret_cast<const internal::Rel_data
<size
>*>(
1616 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1619 typename Elf_types
<size
>::Elf_Addr
1620 get_r_offset() const
1621 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_offset
); }
1623 typename Elf_types
<size
>::Elf_WXword
1625 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_info
); }
1628 const internal::Rel_data
<size
>* p_
;
1631 // Writer class for an ELF Rel relocation.
1633 template<int size
, bool big_endian
>
1637 Rel_write(unsigned char* p
)
1638 : p_(reinterpret_cast<internal::Rel_data
<size
>*>(p
))
1642 put_r_offset(typename Elf_types
<size
>::Elf_Addr v
)
1643 { this->p_
->r_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1646 put_r_info(typename Elf_types
<size
>::Elf_WXword v
)
1647 { this->p_
->r_info
= Convert
<size
, big_endian
>::convert_host(v
); }
1650 internal::Rel_data
<size
>* p_
;
1653 // Accessor class for an ELF Rela relocation.
1655 template<int size
, bool big_endian
>
1659 Rela(const unsigned char* p
)
1660 : p_(reinterpret_cast<const internal::Rela_data
<size
>*>(p
))
1663 template<typename File
>
1664 Rela(File
* file
, typename
File::Location loc
)
1665 : p_(reinterpret_cast<const internal::Rela_data
<size
>*>(
1666 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1669 typename Elf_types
<size
>::Elf_Addr
1670 get_r_offset() const
1671 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_offset
); }
1673 typename Elf_types
<size
>::Elf_WXword
1675 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_info
); }
1677 typename Elf_types
<size
>::Elf_Swxword
1678 get_r_addend() const
1679 { return Convert
<size
, big_endian
>::convert_host(this->p_
->r_addend
); }
1682 const internal::Rela_data
<size
>* p_
;
1685 // Writer class for an ELF Rela relocation.
1687 template<int size
, bool big_endian
>
1691 Rela_write(unsigned char* p
)
1692 : p_(reinterpret_cast<internal::Rela_data
<size
>*>(p
))
1696 put_r_offset(typename Elf_types
<size
>::Elf_Addr v
)
1697 { this->p_
->r_offset
= Convert
<size
, big_endian
>::convert_host(v
); }
1700 put_r_info(typename Elf_types
<size
>::Elf_WXword v
)
1701 { this->p_
->r_info
= Convert
<size
, big_endian
>::convert_host(v
); }
1704 put_r_addend(typename Elf_types
<size
>::Elf_Swxword v
)
1705 { this->p_
->r_addend
= Convert
<size
, big_endian
>::convert_host(v
); }
1708 internal::Rela_data
<size
>* p_
;
1711 // MIPS-64 has a non-standard relocation layout.
1713 template<bool big_endian
>
1717 Mips64_rel(const unsigned char* p
)
1718 : p_(reinterpret_cast<const internal::Mips64_rel_data
*>(p
))
1721 template<typename File
>
1722 Mips64_rel(File
* file
, typename
File::Location loc
)
1723 : p_(reinterpret_cast<const internal::Mips64_rel_data
*>(
1724 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1727 typename Elf_types
<64>::Elf_Addr
1728 get_r_offset() const
1729 { return Convert
<64, big_endian
>::convert_host(this->p_
->r_offset
); }
1733 { return Convert
<32, big_endian
>::convert_host(this->p_
->r_sym
); }
1737 { return this->p_
->r_ssym
; }
1741 { return this->p_
->r_type
; }
1745 { return this->p_
->r_type2
; }
1749 { return this->p_
->r_type3
; }
1752 const internal::Mips64_rel_data
* p_
;
1755 template<bool big_endian
>
1756 class Mips64_rel_write
1759 Mips64_rel_write(unsigned char* p
)
1760 : p_(reinterpret_cast<internal::Mips64_rel_data
*>(p
))
1764 put_r_offset(typename Elf_types
<64>::Elf_Addr v
)
1765 { this->p_
->r_offset
= Convert
<64, big_endian
>::convert_host(v
); }
1768 put_r_sym(Elf_Word v
)
1769 { this->p_
->r_sym
= Convert
<32, big_endian
>::convert_host(v
); }
1772 put_r_ssym(unsigned char v
)
1773 { this->p_
->r_ssym
= v
; }
1776 put_r_type(unsigned char v
)
1777 { this->p_
->r_type
= v
; }
1780 put_r_type2(unsigned char v
)
1781 { this->p_
->r_type2
= v
; }
1784 put_r_type3(unsigned char v
)
1785 { this->p_
->r_type3
= v
; }
1788 internal::Mips64_rel_data
* p_
;
1791 template<bool big_endian
>
1795 Mips64_rela(const unsigned char* p
)
1796 : p_(reinterpret_cast<const internal::Mips64_rela_data
*>(p
))
1799 template<typename File
>
1800 Mips64_rela(File
* file
, typename
File::Location loc
)
1801 : p_(reinterpret_cast<const internal::Mips64_rela_data
*>(
1802 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1805 typename Elf_types
<64>::Elf_Addr
1806 get_r_offset() const
1807 { return Convert
<64, big_endian
>::convert_host(this->p_
->r_offset
); }
1811 { return Convert
<32, big_endian
>::convert_host(this->p_
->r_sym
); }
1815 { return this->p_
->r_ssym
; }
1819 { return this->p_
->r_type
; }
1823 { return this->p_
->r_type2
; }
1827 { return this->p_
->r_type3
; }
1829 typename Elf_types
<64>::Elf_Swxword
1830 get_r_addend() const
1831 { return Convert
<64, big_endian
>::convert_host(this->p_
->r_addend
); }
1834 const internal::Mips64_rela_data
* p_
;
1837 template<bool big_endian
>
1838 class Mips64_rela_write
1841 Mips64_rela_write(unsigned char* p
)
1842 : p_(reinterpret_cast<internal::Mips64_rela_data
*>(p
))
1846 put_r_offset(typename Elf_types
<64>::Elf_Addr v
)
1847 { this->p_
->r_offset
= Convert
<64, big_endian
>::convert_host(v
); }
1850 put_r_sym(Elf_Word v
)
1851 { this->p_
->r_sym
= Convert
<32, big_endian
>::convert_host(v
); }
1854 put_r_ssym(unsigned char v
)
1855 { this->p_
->r_ssym
= v
; }
1858 put_r_type(unsigned char v
)
1859 { this->p_
->r_type
= v
; }
1862 put_r_type2(unsigned char v
)
1863 { this->p_
->r_type2
= v
; }
1866 put_r_type3(unsigned char v
)
1867 { this->p_
->r_type3
= v
; }
1870 put_r_addend(typename Elf_types
<64>::Elf_Swxword v
)
1871 { this->p_
->r_addend
= Convert
<64, big_endian
>::convert_host(v
); }
1874 internal::Mips64_rela_data
* p_
;
1877 // Accessor classes for entries in the ELF SHT_DYNAMIC section aka
1878 // PT_DYNAMIC segment.
1880 template<int size
, bool big_endian
>
1884 Dyn(const unsigned char* p
)
1885 : p_(reinterpret_cast<const internal::Dyn_data
<size
>*>(p
))
1888 template<typename File
>
1889 Dyn(File
* file
, typename
File::Location loc
)
1890 : p_(reinterpret_cast<const internal::Dyn_data
<size
>*>(
1891 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1894 typename Elf_types
<size
>::Elf_Swxword
1896 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_tag
); }
1898 typename Elf_types
<size
>::Elf_WXword
1900 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_val
); }
1902 typename Elf_types
<size
>::Elf_Addr
1904 { return Convert
<size
, big_endian
>::convert_host(this->p_
->d_val
); }
1907 const internal::Dyn_data
<size
>* p_
;
1910 // Write class for an entry in the SHT_DYNAMIC section.
1912 template<int size
, bool big_endian
>
1916 Dyn_write(unsigned char* p
)
1917 : p_(reinterpret_cast<internal::Dyn_data
<size
>*>(p
))
1921 put_d_tag(typename Elf_types
<size
>::Elf_Swxword v
)
1922 { this->p_
->d_tag
= Convert
<size
, big_endian
>::convert_host(v
); }
1925 put_d_val(typename Elf_types
<size
>::Elf_WXword v
)
1926 { this->p_
->d_val
= Convert
<size
, big_endian
>::convert_host(v
); }
1929 put_d_ptr(typename Elf_types
<size
>::Elf_Addr v
)
1930 { this->p_
->d_val
= Convert
<size
, big_endian
>::convert_host(v
); }
1933 internal::Dyn_data
<size
>* p_
;
1936 // Accessor classes for entries in the ELF SHT_GNU_verdef section.
1938 template<int size
, bool big_endian
>
1942 Verdef(const unsigned char* p
)
1943 : p_(reinterpret_cast<const internal::Verdef_data
*>(p
))
1946 template<typename File
>
1947 Verdef(File
* file
, typename
File::Location loc
)
1948 : p_(reinterpret_cast<const internal::Verdef_data
*>(
1949 file
->view(loc
.file_offset
, loc
.data_size
).data()))
1953 get_vd_version() const
1954 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_version
); }
1957 get_vd_flags() const
1958 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_flags
); }
1962 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_ndx
); }
1966 { return Convert
<16, big_endian
>::convert_host(this->p_
->vd_cnt
); }
1970 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_hash
); }
1974 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_aux
); }
1978 { return Convert
<32, big_endian
>::convert_host(this->p_
->vd_next
); }
1981 const internal::Verdef_data
* p_
;
1984 template<int size
, bool big_endian
>
1988 Verdef_write(unsigned char* p
)
1989 : p_(reinterpret_cast<internal::Verdef_data
*>(p
))
1993 set_vd_version(Elf_Half v
)
1994 { this->p_
->vd_version
= Convert
<16, big_endian
>::convert_host(v
); }
1997 set_vd_flags(Elf_Half v
)
1998 { this->p_
->vd_flags
= Convert
<16, big_endian
>::convert_host(v
); }
2001 set_vd_ndx(Elf_Half v
)
2002 { this->p_
->vd_ndx
= Convert
<16, big_endian
>::convert_host(v
); }
2005 set_vd_cnt(Elf_Half v
)
2006 { this->p_
->vd_cnt
= Convert
<16, big_endian
>::convert_host(v
); }
2009 set_vd_hash(Elf_Word v
)
2010 { this->p_
->vd_hash
= Convert
<32, big_endian
>::convert_host(v
); }
2013 set_vd_aux(Elf_Word v
)
2014 { this->p_
->vd_aux
= Convert
<32, big_endian
>::convert_host(v
); }
2017 set_vd_next(Elf_Word v
)
2018 { this->p_
->vd_next
= Convert
<32, big_endian
>::convert_host(v
); }
2021 internal::Verdef_data
* p_
;
2024 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verdef
2027 template<int size
, bool big_endian
>
2031 Verdaux(const unsigned char* p
)
2032 : p_(reinterpret_cast<const internal::Verdaux_data
*>(p
))
2035 template<typename File
>
2036 Verdaux(File
* file
, typename
File::Location loc
)
2037 : p_(reinterpret_cast<const internal::Verdaux_data
*>(
2038 file
->view(loc
.file_offset
, loc
.data_size
).data()))
2042 get_vda_name() const
2043 { return Convert
<32, big_endian
>::convert_host(this->p_
->vda_name
); }
2046 get_vda_next() const
2047 { return Convert
<32, big_endian
>::convert_host(this->p_
->vda_next
); }
2050 const internal::Verdaux_data
* p_
;
2053 template<int size
, bool big_endian
>
2057 Verdaux_write(unsigned char* p
)
2058 : p_(reinterpret_cast<internal::Verdaux_data
*>(p
))
2062 set_vda_name(Elf_Word v
)
2063 { this->p_
->vda_name
= Convert
<32, big_endian
>::convert_host(v
); }
2066 set_vda_next(Elf_Word v
)
2067 { this->p_
->vda_next
= Convert
<32, big_endian
>::convert_host(v
); }
2070 internal::Verdaux_data
* p_
;
2073 // Accessor classes for entries in the ELF SHT_GNU_verneed section.
2075 template<int size
, bool big_endian
>
2079 Verneed(const unsigned char* p
)
2080 : p_(reinterpret_cast<const internal::Verneed_data
*>(p
))
2083 template<typename File
>
2084 Verneed(File
* file
, typename
File::Location loc
)
2085 : p_(reinterpret_cast<const internal::Verneed_data
*>(
2086 file
->view(loc
.file_offset
, loc
.data_size
).data()))
2090 get_vn_version() const
2091 { return Convert
<16, big_endian
>::convert_host(this->p_
->vn_version
); }
2095 { return Convert
<16, big_endian
>::convert_host(this->p_
->vn_cnt
); }
2099 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_file
); }
2103 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_aux
); }
2107 { return Convert
<32, big_endian
>::convert_host(this->p_
->vn_next
); }
2110 const internal::Verneed_data
* p_
;
2113 template<int size
, bool big_endian
>
2117 Verneed_write(unsigned char* p
)
2118 : p_(reinterpret_cast<internal::Verneed_data
*>(p
))
2122 set_vn_version(Elf_Half v
)
2123 { this->p_
->vn_version
= Convert
<16, big_endian
>::convert_host(v
); }
2126 set_vn_cnt(Elf_Half v
)
2127 { this->p_
->vn_cnt
= Convert
<16, big_endian
>::convert_host(v
); }
2130 set_vn_file(Elf_Word v
)
2131 { this->p_
->vn_file
= Convert
<32, big_endian
>::convert_host(v
); }
2134 set_vn_aux(Elf_Word v
)
2135 { this->p_
->vn_aux
= Convert
<32, big_endian
>::convert_host(v
); }
2138 set_vn_next(Elf_Word v
)
2139 { this->p_
->vn_next
= Convert
<32, big_endian
>::convert_host(v
); }
2142 internal::Verneed_data
* p_
;
2145 // Accessor classes for auxiliary entries in the ELF SHT_GNU_verneed
2148 template<int size
, bool big_endian
>
2152 Vernaux(const unsigned char* p
)
2153 : p_(reinterpret_cast<const internal::Vernaux_data
*>(p
))
2156 template<typename File
>
2157 Vernaux(File
* file
, typename
File::Location loc
)
2158 : p_(reinterpret_cast<const internal::Vernaux_data
*>(
2159 file
->view(loc
.file_offset
, loc
.data_size
).data()))
2163 get_vna_hash() const
2164 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_hash
); }
2167 get_vna_flags() const
2168 { return Convert
<16, big_endian
>::convert_host(this->p_
->vna_flags
); }
2171 get_vna_other() const
2172 { return Convert
<16, big_endian
>::convert_host(this->p_
->vna_other
); }
2175 get_vna_name() const
2176 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_name
); }
2179 get_vna_next() const
2180 { return Convert
<32, big_endian
>::convert_host(this->p_
->vna_next
); }
2183 const internal::Vernaux_data
* p_
;
2186 template<int size
, bool big_endian
>
2190 Vernaux_write(unsigned char* p
)
2191 : p_(reinterpret_cast<internal::Vernaux_data
*>(p
))
2195 set_vna_hash(Elf_Word v
)
2196 { this->p_
->vna_hash
= Convert
<32, big_endian
>::convert_host(v
); }
2199 set_vna_flags(Elf_Half v
)
2200 { this->p_
->vna_flags
= Convert
<16, big_endian
>::convert_host(v
); }
2203 set_vna_other(Elf_Half v
)
2204 { this->p_
->vna_other
= Convert
<16, big_endian
>::convert_host(v
); }
2207 set_vna_name(Elf_Word v
)
2208 { this->p_
->vna_name
= Convert
<32, big_endian
>::convert_host(v
); }
2211 set_vna_next(Elf_Word v
)
2212 { this->p_
->vna_next
= Convert
<32, big_endian
>::convert_host(v
); }
2215 internal::Vernaux_data
* p_
;
2218 } // End namespace elfcpp.
2220 #endif // !defined(ELFPCP_H)