elf-mithril 0.0.1
Sign up to get free protection for your applications and to get access to all the features.
- data/.gitignore +17 -0
- data/Gemfile +3 -0
- data/LICENSE.txt +22 -0
- data/README.md +29 -0
- data/Rakefile +1 -0
- data/bin/mithril-ld +76 -0
- data/bin/mithril-rewrite +14 -0
- data/bin/mithril-section-symbols +12 -0
- data/lib/mithril.rb +6 -0
- data/lib/mithril/elf.rb +220 -0
- data/lib/mithril/elf_enums.rb +581 -0
- data/lib/mithril/elf_generative.rb +0 -0
- data/lib/mithril/elf_structs.rb +335 -0
- data/lib/mithril/inject_symbols.rb +22 -0
- data/lib/mithril/parser.rb +706 -0
- data/lib/mithril/policy.rb +335 -0
- data/lib/mithril/version.rb +3 -0
- data/lib/mithril/writer.rb +774 -0
- data/lib/mithril/writer2.rb +29 -0
- data/mithril.gemspec +30 -0
- data/test/hash_test.rb +7 -0
- data/tools/#elf_enums.sh# +26 -0
- data/tools/elf.h +991 -0
- data/tools/elf_enums.sh +26 -0
- data/tools/elf_h_processor.sh +5 -0
- data/tools/elf_structs.sh +1 -0
- data/tools/gnu_elf_hash_test +0 -0
- data/tools/gnu_elf_hash_test.cxx +22 -0
- data/tools/hash_test +0 -0
- data/tools/hash_test.c +70 -0
- metadata +192 -0
@@ -0,0 +1,29 @@
|
|
1
|
+
require_relative 'elf'
|
2
|
+
module Elf
|
3
|
+
module Writer2
|
4
|
+
class StringTable < BinData::Record
|
5
|
+
array :strtab, :initial_length => 1 do
|
6
|
+
stringz :initial_value => ""
|
7
|
+
end
|
8
|
+
def initialize
|
9
|
+
@strings = {} #TODO: Do substring matching, compress the string
|
10
|
+
#table.
|
11
|
+
def add_string(string)
|
12
|
+
unless @strings.include? string
|
13
|
+
@strings[string] = self.strtab.num_bytes
|
14
|
+
self.strtab << BinData::Stringz(string)
|
15
|
+
end
|
16
|
+
@strings[string]
|
17
|
+
end
|
18
|
+
end
|
19
|
+
class OutputLayout < BinData::Record
|
20
|
+
end
|
21
|
+
|
22
|
+
|
23
|
+
end
|
24
|
+
end
|
25
|
+
end
|
26
|
+
a= Elf::Writer2::StringTable.new
|
27
|
+
a.add_string("Hello")
|
28
|
+
pp a.to_binary_string
|
29
|
+
binding.pry
|
data/mithril.gemspec
ADDED
@@ -0,0 +1,30 @@
|
|
1
|
+
# coding: utf-8
|
2
|
+
lib = File.expand_path('../lib', __FILE__)
|
3
|
+
$LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
|
4
|
+
require 'mithril/version'
|
5
|
+
|
6
|
+
Gem::Specification.new do |spec|
|
7
|
+
spec.name = "elf-mithril"
|
8
|
+
spec.version = Mithril::VERSION
|
9
|
+
spec.authors = ["Julian Bangert"]
|
10
|
+
spec.email = ["jbangert@acm.org"]
|
11
|
+
spec.description = %q{In Soviet Russia, Mithril forges Elf}
|
12
|
+
spec.summary = %q{The Mithril toolkit for canonical elf manipulation}
|
13
|
+
spec.homepage = ""
|
14
|
+
spec.license = "MIT"
|
15
|
+
|
16
|
+
spec.files = `git ls-files`.split($/)
|
17
|
+
spec.executables = spec.files.grep(%r{^bin/}) { |f| File.basename(f) }
|
18
|
+
spec.test_files = spec.files.grep(%r{^(test|spec|features)/})
|
19
|
+
spec.require_paths = ["lib"]
|
20
|
+
|
21
|
+
spec.add_development_dependency "bundler", "~> 1.3"
|
22
|
+
spec.add_development_dependency "rake"
|
23
|
+
spec.add_dependency 'bindata', '>=1.5.0'
|
24
|
+
spec.add_dependency 'renum' , '1.4.0'
|
25
|
+
spec.add_dependency 'andand'
|
26
|
+
spec.add_dependency 'segment_tree'
|
27
|
+
spec.add_dependency 'rbtree-pure'
|
28
|
+
spec.executables << 'mithril-rewrite'
|
29
|
+
spec.executables << 'mithril-section-symbols'
|
30
|
+
end
|
data/test/hash_test.rb
ADDED
@@ -0,0 +1,26 @@
|
|
1
|
+
#!/bin/bash
|
2
|
+
define_enum() {
|
3
|
+
echo "class $2 < Enum # $1"
|
4
|
+
grep "[[:space:]]$1" elf.h | awk '{print $2, " = ", $3}'
|
5
|
+
echo "end"
|
6
|
+
}
|
7
|
+
|
8
|
+
define_enum EV_ Version
|
9
|
+
define_enum ELFCLASS IdentClass
|
10
|
+
define_enum ELFDATA IdentData
|
11
|
+
define_enum ELFOSABI OsAbi
|
12
|
+
define_enum ET_ Type
|
13
|
+
define_enum EM_ Machine
|
14
|
+
define_enum SHN_ SpecialSection
|
15
|
+
define_enum SHT_ SectionType
|
16
|
+
define_enum SHF_ SectionFlags
|
17
|
+
define_enum PT_ PhdrType
|
18
|
+
define_enum PF_ PhdrFlags
|
19
|
+
define_enum DT_ DynamicType
|
20
|
+
define_enum DF_ DynamicFlags
|
21
|
+
define_enum NT_ CoreNType
|
22
|
+
define_enum STB_ SymbolBinding
|
23
|
+
define_enum STT_ SymbolType
|
24
|
+
define_enum STV_ SymbolVisibility
|
25
|
+
define_enum STN_ SymbolName
|
26
|
+
define_enum R_ Relocation
|
data/tools/elf.h
ADDED
@@ -0,0 +1,991 @@
|
|
1
|
+
/*
|
2
|
+
* Derived from:
|
3
|
+
* $FreeBSD: src/sys/sys/elf32.h,v 1.8.14.1 2005/12/30 22:13:58 marcel Exp $
|
4
|
+
* $FreeBSD: src/sys/sys/elf64.h,v 1.10.14.1 2005/12/30 22:13:58 marcel Exp $
|
5
|
+
* $FreeBSD: src/sys/sys/elf_common.h,v 1.15.8.1 2005/12/30 22:13:58 marcel Exp $
|
6
|
+
* $FreeBSD: src/sys/alpha/include/elf.h,v 1.14 2003/09/25 01:10:22 peter Exp $
|
7
|
+
* $FreeBSD: src/sys/amd64/include/elf.h,v 1.18 2004/08/03 08:21:48 dfr Exp $
|
8
|
+
* $FreeBSD: src/sys/arm/include/elf.h,v 1.5.2.1 2006/06/30 21:42:52 cognet Exp $
|
9
|
+
* $FreeBSD: src/sys/i386/include/elf.h,v 1.16 2004/08/02 19:12:17 dfr Exp $
|
10
|
+
* $FreeBSD: src/sys/powerpc/include/elf.h,v 1.7 2004/11/02 09:47:01 ssouhlal Exp $
|
11
|
+
* $FreeBSD: src/sys/sparc64/include/elf.h,v 1.12 2003/09/25 01:10:26 peter Exp $
|
12
|
+
*
|
13
|
+
* Copyright (c) 1996-1998 John D. Polstra. All rights reserved.
|
14
|
+
* Copyright (c) 2001 David E. O'Brien
|
15
|
+
* Portions Copyright 2009 The Go Authors. All rights reserved.
|
16
|
+
*
|
17
|
+
* Redistribution and use in source and binary forms, with or without
|
18
|
+
* modification, are permitted provided that the following conditions
|
19
|
+
* are met:
|
20
|
+
* 1. Redistributions of source code must retain the above copyright
|
21
|
+
* notice, this list of conditions and the following disclaimer.
|
22
|
+
* 2. Redistributions in binary form must reproduce the above copyright
|
23
|
+
* notice, this list of conditions and the following disclaimer in the
|
24
|
+
* documentation and/or other materials provided with the distribution.
|
25
|
+
*
|
26
|
+
* THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
|
27
|
+
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
28
|
+
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
29
|
+
* ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
|
30
|
+
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
|
31
|
+
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
|
32
|
+
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
|
33
|
+
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
|
34
|
+
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
|
35
|
+
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
|
36
|
+
* SUCH DAMAGE.
|
37
|
+
*
|
38
|
+
*/
|
39
|
+
|
40
|
+
/*
|
41
|
+
* ELF definitions that are independent of architecture or word size.
|
42
|
+
*/
|
43
|
+
|
44
|
+
/*
|
45
|
+
* Note header. The ".note" section contains an array of notes. Each
|
46
|
+
* begins with this header, aligned to a word boundary. Immediately
|
47
|
+
* following the note header is n_namesz bytes of name, padded to the
|
48
|
+
* next word boundary. Then comes n_descsz bytes of descriptor, again
|
49
|
+
* padded to a word boundary. The values of n_namesz and n_descsz do
|
50
|
+
* not include the padding.
|
51
|
+
*/
|
52
|
+
|
53
|
+
typedef struct {
|
54
|
+
uint32 n_namesz; /* Length of name. */
|
55
|
+
uint32 n_descsz; /* Length of descriptor. */
|
56
|
+
uint32 n_type; /* Type of this note. */
|
57
|
+
} Elf_Note;
|
58
|
+
|
59
|
+
/* Indexes into the e_ident array. Keep synced with
|
60
|
+
http://www.sco.com/developer/gabi/ch4.eheader.html */
|
61
|
+
#define EI_MAG0 0 /* Magic number, byte 0. */
|
62
|
+
#define EI_MAG1 1 /* Magic number, byte 1. */
|
63
|
+
#define EI_MAG2 2 /* Magic number, byte 2. */
|
64
|
+
#define EI_MAG3 3 /* Magic number, byte 3. */
|
65
|
+
#define EI_CLASS 4 /* Class of machine. */
|
66
|
+
#define EI_DATA 5 /* Data format. */
|
67
|
+
#define EI_VERSION 6 /* ELF format version. */
|
68
|
+
#define EI_OSABI 7 /* Operating system / ABI identification */
|
69
|
+
#define EI_ABIVERSION 8 /* ABI version */
|
70
|
+
#define OLD_EI_BRAND 8 /* Start of architecture identification. */
|
71
|
+
#define EI_PAD 9 /* Start of padding (per SVR4 ABI). */
|
72
|
+
#define EI_NIDENT 16 /* Size of e_ident array. */
|
73
|
+
|
74
|
+
/* Values for the magic number bytes. */
|
75
|
+
#define ELFMAG0 0x7f
|
76
|
+
#define ELFMAG1 'E'
|
77
|
+
#define ELFMAG2 'L'
|
78
|
+
#define ELFMAG3 'F'
|
79
|
+
#define ELFMAG "\177ELF" /* magic string */
|
80
|
+
#define SELFMAG 4 /* magic string size */
|
81
|
+
|
82
|
+
/* Values for e_ident[EI_VERSION] and e_version. */
|
83
|
+
#define EV_NONE 0
|
84
|
+
#define EV_CURRENT 1
|
85
|
+
|
86
|
+
/* Values for e_ident[EI_CLASS]. */
|
87
|
+
#define ELFCLASSNONE 0 /* Unknown class. */
|
88
|
+
#define ELFCLASS32 1 /* 32-bit architecture. */
|
89
|
+
#define ELFCLASS64 2 /* 64-bit architecture. */
|
90
|
+
|
91
|
+
/* Values for e_ident[EI_DATA]. */
|
92
|
+
#define ELFDATANONE 0 /* Unknown data format. */
|
93
|
+
#define ELFDATA2LSB 1 /* 2's complement little-endian. */
|
94
|
+
#define ELFDATA2MSB 2 /* 2's complement big-endian. */
|
95
|
+
|
96
|
+
/* Values for e_ident[EI_OSABI]. */
|
97
|
+
#define ELFOSABI_NONE 0 /* UNIX System V ABI */
|
98
|
+
#define ELFOSABI_HPUX 1 /* HP-UX operating system */
|
99
|
+
#define ELFOSABI_NETBSD 2 /* NetBSD */
|
100
|
+
#define ELFOSABI_LINUX 3 /* GNU/Linux */
|
101
|
+
#define ELFOSABI_HURD 4 /* GNU/Hurd */
|
102
|
+
#define ELFOSABI_86OPEN 5 /* 86Open common IA32 ABI */
|
103
|
+
#define ELFOSABI_SOLARIS 6 /* Solaris */
|
104
|
+
#define ELFOSABI_AIX 7 /* AIX */
|
105
|
+
#define ELFOSABI_IRIX 8 /* IRIX */
|
106
|
+
#define ELFOSABI_FREEBSD 9 /* FreeBSD */
|
107
|
+
#define ELFOSABI_TRU64 10 /* TRU64 UNIX */
|
108
|
+
#define ELFOSABI_MODESTO 11 /* Novell Modesto */
|
109
|
+
#define ELFOSABI_OPENBSD 12 /* OpenBSD */
|
110
|
+
#define ELFOSABI_OPENVMS 13 /* Open VMS */
|
111
|
+
#define ELFOSABI_NSK 14 /* HP Non-Stop Kernel */
|
112
|
+
#define ELFOSABI_ARM 97 /* ARM */
|
113
|
+
#define ELFOSABI_STANDALONE 255 /* Standalone (embedded) application */
|
114
|
+
|
115
|
+
#define ELFOSABI_SYSV ELFOSABI_NONE /* symbol used in old spec */
|
116
|
+
#define ELFOSABI_MONTEREY ELFOSABI_AIX /* Monterey */
|
117
|
+
|
118
|
+
/* e_ident */
|
119
|
+
#define IS_ELF(ehdr) ((ehdr).e_ident[EI_MAG0] == ELFMAG0 && \
|
120
|
+
(ehdr).e_ident[EI_MAG1] == ELFMAG1 && \
|
121
|
+
(ehdr).e_ident[EI_MAG2] == ELFMAG2 && \
|
122
|
+
(ehdr).e_ident[EI_MAG3] == ELFMAG3)
|
123
|
+
|
124
|
+
/* Values for e_type. */
|
125
|
+
#define ET_NONE 0 /* Unknown type. */
|
126
|
+
#define ET_REL 1 /* Relocatable. */
|
127
|
+
#define ET_EXEC 2 /* Executable. */
|
128
|
+
#define ET_DYN 3 /* Shared object. */
|
129
|
+
#define ET_CORE 4 /* Core file. */
|
130
|
+
#define ET_LOOS 0xfe00 /* First operating system specific. */
|
131
|
+
#define ET_HIOS 0xfeff /* Last operating system-specific. */
|
132
|
+
#define ET_LOPROC 0xff00 /* First processor-specific. */
|
133
|
+
#define ET_HIPROC 0xffff /* Last processor-specific. */
|
134
|
+
|
135
|
+
/* Values for e_machine. */
|
136
|
+
#define EM_NONE 0 /* Unknown machine. */
|
137
|
+
#define EM_M32 1 /* AT&T WE32100. */
|
138
|
+
#define EM_SPARC 2 /* Sun SPARC. */
|
139
|
+
#define EM_386 3 /* Intel i386. */
|
140
|
+
#define EM_68K 4 /* Motorola 68000. */
|
141
|
+
#define EM_88K 5 /* Motorola 88000. */
|
142
|
+
#define EM_860 7 /* Intel i860. */
|
143
|
+
#define EM_MIPS 8 /* MIPS R3000 Big-Endian only. */
|
144
|
+
#define EM_S370 9 /* IBM System/370. */
|
145
|
+
#define EM_MIPS_RS3_LE 10 /* MIPS R3000 Little-Endian. */
|
146
|
+
#define EM_PARISC 15 /* HP PA-RISC. */
|
147
|
+
#define EM_VPP500 17 /* Fujitsu VPP500. */
|
148
|
+
#define EM_SPARC32PLUS 18 /* SPARC v8plus. */
|
149
|
+
#define EM_960 19 /* Intel 80960. */
|
150
|
+
#define EM_PPC 20 /* PowerPC 32-bit. */
|
151
|
+
#define EM_PPC64 21 /* PowerPC 64-bit. */
|
152
|
+
#define EM_S390 22 /* IBM System/390. */
|
153
|
+
#define EM_V800 36 /* NEC V800. */
|
154
|
+
#define EM_FR20 37 /* Fujitsu FR20. */
|
155
|
+
#define EM_RH32 38 /* TRW RH-32. */
|
156
|
+
#define EM_RCE 39 /* Motorola RCE. */
|
157
|
+
#define EM_ARM 40 /* ARM. */
|
158
|
+
#define EM_SH 42 /* Hitachi SH. */
|
159
|
+
#define EM_SPARCV9 43 /* SPARC v9 64-bit. */
|
160
|
+
#define EM_TRICORE 44 /* Siemens TriCore embedded processor. */
|
161
|
+
#define EM_ARC 45 /* Argonaut RISC Core. */
|
162
|
+
#define EM_H8_300 46 /* Hitachi H8/300. */
|
163
|
+
#define EM_H8_300H 47 /* Hitachi H8/300H. */
|
164
|
+
#define EM_H8S 48 /* Hitachi H8S. */
|
165
|
+
#define EM_H8_500 49 /* Hitachi H8/500. */
|
166
|
+
#define EM_IA_64 50 /* Intel IA-64 Processor. */
|
167
|
+
#define EM_MIPS_X 51 /* Stanford MIPS-X. */
|
168
|
+
#define EM_COLDFIRE 52 /* Motorola ColdFire. */
|
169
|
+
#define EM_68HC12 53 /* Motorola M68HC12. */
|
170
|
+
#define EM_MMA 54 /* Fujitsu MMA. */
|
171
|
+
#define EM_PCP 55 /* Siemens PCP. */
|
172
|
+
#define EM_NCPU 56 /* Sony nCPU. */
|
173
|
+
#define EM_NDR1 57 /* Denso NDR1 microprocessor. */
|
174
|
+
#define EM_STARCORE 58 /* Motorola Star*Core processor. */
|
175
|
+
#define EM_ME16 59 /* Toyota ME16 processor. */
|
176
|
+
#define EM_ST100 60 /* STMicroelectronics ST100 processor. */
|
177
|
+
#define EM_TINYJ 61 /* Advanced Logic Corp. TinyJ processor. */
|
178
|
+
#define EM_X86_64 62 /* Advanced Micro Devices x86-64 */
|
179
|
+
|
180
|
+
/* Non-standard or deprecated. */
|
181
|
+
#define EM_486 6 /* Intel i486. */
|
182
|
+
#define EM_MIPS_RS4_BE 10 /* MIPS R4000 Big-Endian */
|
183
|
+
#define EM_ALPHA_STD 41 /* Digital Alpha (standard value). */
|
184
|
+
#define EM_ALPHA 0x9026 /* Alpha (written in the absence of an ABI) */
|
185
|
+
|
186
|
+
/* Special section indexes. */
|
187
|
+
#define SHN_UNDEF 0 /* Undefined, missing, irrelevant. */
|
188
|
+
#define SHN_LORESERVE 0xff00 /* First of reserved range. */
|
189
|
+
#define SHN_LOPROC 0xff00 /* First processor-specific. */
|
190
|
+
#define SHN_HIPROC 0xff1f /* Last processor-specific. */
|
191
|
+
#define SHN_LOOS 0xff20 /* First operating system-specific. */
|
192
|
+
#define SHN_HIOS 0xff3f /* Last operating system-specific. */
|
193
|
+
#define SHN_ABS 0xfff1 /* Absolute values. */
|
194
|
+
#define SHN_COMMON 0xfff2 /* Common data. */
|
195
|
+
#define SHN_XINDEX 0xffff /* Escape -- index stored elsewhere. */
|
196
|
+
#define SHN_HIRESERVE 0xffff /* Last of reserved range. */
|
197
|
+
|
198
|
+
/* sh_type */
|
199
|
+
#define SHT_NULL 0 /* inactive */
|
200
|
+
#define SHT_PROGBITS 1 /* program defined information */
|
201
|
+
#define SHT_SYMTAB 2 /* symbol table section */
|
202
|
+
#define SHT_STRTAB 3 /* string table section */
|
203
|
+
#define SHT_RELA 4 /* relocation section with addends */
|
204
|
+
#define SHT_HASH 5 /* symbol hash table section */
|
205
|
+
#define SHT_DYNAMIC 6 /* dynamic section */
|
206
|
+
#define SHT_NOTE 7 /* note section */
|
207
|
+
#define SHT_NOBITS 8 /* no space section */
|
208
|
+
#define SHT_REL 9 /* relocation section - no addends */
|
209
|
+
#define SHT_SHLIB 10 /* reserved - purpose unknown */
|
210
|
+
#define SHT_DYNSYM 11 /* dynamic symbol table section */
|
211
|
+
#define SHT_INIT_ARRAY 14 /* Initialization function pointers. */
|
212
|
+
#define SHT_FINI_ARRAY 15 /* Termination function pointers. */
|
213
|
+
#define SHT_PREINIT_ARRAY 16 /* Pre-initialization function ptrs. */
|
214
|
+
#define SHT_GROUP 17 /* Section group. */
|
215
|
+
#define SHT_SYMTAB_SHNDX 18 /* Section indexes (see SHN_XINDEX). */
|
216
|
+
#define SHT_LOOS 0x60000000 /* First of OS specific semantics */
|
217
|
+
#define SHT_HIOS 0x6fffffff /* Last of OS specific semantics */
|
218
|
+
#define SHT_GNU_VERDEF 0x6ffffffd
|
219
|
+
#define SHT_GNU_VERNEED 0x6ffffffe
|
220
|
+
#define SHT_GNU_VERSYM 0x6fffffff
|
221
|
+
#define SHT_LOPROC 0x70000000 /* reserved range for processor */
|
222
|
+
#define SHT_HIPROC 0x7fffffff /* specific section header types */
|
223
|
+
#define SHT_LOUSER 0x80000000 /* reserved range for application */
|
224
|
+
#define SHT_HIUSER 0xffffffff /* specific indexes */
|
225
|
+
|
226
|
+
/* Flags for sh_flags. */
|
227
|
+
#define SHF_WRITE 0x1 /* Section contains writable data. */
|
228
|
+
#define SHF_ALLOC 0x2 /* Section occupies memory. */
|
229
|
+
#define SHF_EXECINSTR 0x4 /* Section contains instructions. */
|
230
|
+
#define SHF_MERGE 0x10 /* Section may be merged. */
|
231
|
+
#define SHF_STRINGS 0x20 /* Section contains strings. */
|
232
|
+
#define SHF_INFO_LINK 0x40 /* sh_info holds section index. */
|
233
|
+
#define SHF_LINK_ORDER 0x80 /* Special ordering requirements. */
|
234
|
+
#define SHF_OS_NONCONFORMING 0x100 /* OS-specific processing required. */
|
235
|
+
#define SHF_GROUP 0x200 /* Member of section group. */
|
236
|
+
#define SHF_TLS 0x400 /* Section contains TLS data. */
|
237
|
+
#define SHF_MASKOS 0x0ff00000 /* OS-specific semantics. */
|
238
|
+
#define SHF_MASKPROC 0xf0000000 /* Processor-specific semantics. */
|
239
|
+
|
240
|
+
/* Values for p_type. */
|
241
|
+
#define PT_NULL 0 /* Unused entry. */
|
242
|
+
#define PT_LOAD 1 /* Loadable segment. */
|
243
|
+
#define PT_DYNAMIC 2 /* Dynamic linking information segment. */
|
244
|
+
#define PT_INTERP 3 /* Pathname of interpreter. */
|
245
|
+
#define PT_NOTE 4 /* Auxiliary information. */
|
246
|
+
#define PT_SHLIB 5 /* Reserved (not used). */
|
247
|
+
#define PT_PHDR 6 /* Location of program header itself. */
|
248
|
+
#define PT_TLS 7 /* Thread local storage segment */
|
249
|
+
#define PT_LOOS 0x60000000 /* First OS-specific. */
|
250
|
+
#define PT_HIOS 0x6fffffff /* Last OS-specific. */
|
251
|
+
#define PT_LOPROC 0x70000000 /* First processor-specific type. */
|
252
|
+
#define PT_HIPROC 0x7fffffff /* Last processor-specific type. */
|
253
|
+
#define PT_GNU_STACK 0x6474e551
|
254
|
+
|
255
|
+
/* Values for p_flags. */
|
256
|
+
#define PF_X 0x1 /* Executable. */
|
257
|
+
#define PF_W 0x2 /* Writable. */
|
258
|
+
#define PF_R 0x4 /* Readable. */
|
259
|
+
#define PF_MASKOS 0x0ff00000 /* Operating system-specific. */
|
260
|
+
#define PF_MASKPROC 0xf0000000 /* Processor-specific. */
|
261
|
+
|
262
|
+
/* Values for d_tag. */
|
263
|
+
#define DT_NULL 0 /* Terminating entry. */
|
264
|
+
/* String table offset of a needed shared library. */
|
265
|
+
#define DT_NEEDED 1
|
266
|
+
#define DT_PLTRELSZ 2 /* Total size in bytes of PLT relocations. */
|
267
|
+
#define DT_PLTGOT 3 /* Processor-dependent address. */
|
268
|
+
#define DT_HASH 4 /* Address of symbol hash table. */
|
269
|
+
#define DT_STRTAB 5 /* Address of string table. */
|
270
|
+
#define DT_SYMTAB 6 /* Address of symbol table. */
|
271
|
+
#define DT_RELA 7 /* Address of ElfNN_Rela relocations. */
|
272
|
+
#define DT_RELASZ 8 /* Total size of ElfNN_Rela relocations. */
|
273
|
+
#define DT_RELAENT 9 /* Size of each ElfNN_Rela relocation entry. */
|
274
|
+
#define DT_STRSZ 10 /* Size of string table. */
|
275
|
+
#define DT_SYMENT 11 /* Size of each symbol table entry. */
|
276
|
+
#define DT_INIT 12 /* Address of initialization function. */
|
277
|
+
#define DT_FINI 13 /* Address of finalization function. */
|
278
|
+
/* String table offset of shared object name. */
|
279
|
+
#define DT_SONAME 14
|
280
|
+
#define DT_RPATH 15 /* String table offset of library path. [sup] */
|
281
|
+
#define DT_SYMBOLIC 16 /* Indicates "symbolic" linking. [sup] */
|
282
|
+
#define DT_REL 17 /* Address of ElfNN_Rel relocations. */
|
283
|
+
#define DT_RELSZ 18 /* Total size of ElfNN_Rel relocations. */
|
284
|
+
#define DT_RELENT 19 /* Size of each ElfNN_Rel relocation. */
|
285
|
+
#define DT_PLTREL 20 /* Type of relocation used for PLT. */
|
286
|
+
#define DT_DEBUG 21 /* Reserved (not used). */
|
287
|
+
/* Indicates there may be relocations in non-writable segments. [sup] */
|
288
|
+
#define DT_TEXTREL 22
|
289
|
+
#define DT_JMPREL 23 /* Address of PLT relocations. */
|
290
|
+
#define DT_BIND_NOW 24 /* [sup] */
|
291
|
+
/* Address of the array of pointers to initialization functions */
|
292
|
+
#define DT_INIT_ARRAY 25
|
293
|
+
/* Address of the array of pointers to termination functions */
|
294
|
+
#define DT_FINI_ARRAY 26
|
295
|
+
/* Size in bytes of the array of initialization functions. */
|
296
|
+
#define DT_INIT_ARRAYSZ 27
|
297
|
+
/* Size in bytes of the array of terminationfunctions. */
|
298
|
+
#define DT_FINI_ARRAYSZ 28
|
299
|
+
/* String table offset of a null-terminated library search path string. */
|
300
|
+
#define DT_RUNPATH 29
|
301
|
+
#define DT_FLAGS 30 /* Object specific flag values. */
|
302
|
+
/* Values greater than or equal to DT_ENCODING and less than
|
303
|
+
DT_LOOS follow the rules for the interpretation of the d_un
|
304
|
+
union as follows: even == 'd_ptr', even == 'd_val' or none */
|
305
|
+
#define DT_ENCODING 32
|
306
|
+
/* Address of the array of pointers to pre-initialization functions. */
|
307
|
+
#define DT_PREINIT_ARRAY 32
|
308
|
+
/* Size in bytes of the array of pre-initialization functions. */
|
309
|
+
#define DT_PREINIT_ARRAYSZ 33
|
310
|
+
#define DT_LOOS 0x6000000d /* First OS-specific */
|
311
|
+
#define DT_HIOS 0x6ffff000 /* Last OS-specific */
|
312
|
+
#define DT_LOPROC 0x70000000 /* First processor-specific type. */
|
313
|
+
#define DT_HIPROC 0x7fffffff /* Last processor-specific type. */
|
314
|
+
|
315
|
+
#define DT_VERNEED 0x6ffffffe
|
316
|
+
#define DT_VERNEEDNUM 0x6fffffff
|
317
|
+
#define DT_VERSYM 0x6ffffff0
|
318
|
+
|
319
|
+
/* Values for DT_FLAGS */
|
320
|
+
/* Indicates that the object being loaded may make reference to
|
321
|
+
the $ORIGIN substitution string */
|
322
|
+
#define DF_ORIGIN 0x0001
|
323
|
+
#define DF_SYMBOLIC 0x0002 /* Indicates "symbolic" linking. */
|
324
|
+
/* Indicates there may be relocations in non-writable segments. */
|
325
|
+
#define DF_TEXTREL 0x0004
|
326
|
+
/* Indicates that the dynamic linker should process all
|
327
|
+
relocations for the object containing this entry before
|
328
|
+
transferring control to the program. */
|
329
|
+
#define DF_BIND_NOW 0x0008
|
330
|
+
/* Indicates that the shared object or executable contains code
|
331
|
+
using a static thread-local storage scheme. */
|
332
|
+
#define DF_STATIC_TLS 0x0010
|
333
|
+
|
334
|
+
/* Values for n_type. Used in core files. */
|
335
|
+
#define NT_PRSTATUS 1 /* Process status. */
|
336
|
+
#define NT_FPREGSET 2 /* Floating point registers. */
|
337
|
+
#define NT_PRPSINFO 3 /* Process state info. */
|
338
|
+
|
339
|
+
/* Symbol Binding - ELFNN_ST_BIND - st_info */
|
340
|
+
#define STB_LOCAL 0 /* Local symbol */
|
341
|
+
#define STB_GLOBAL 1 /* Global symbol */
|
342
|
+
#define STB_WEAK 2 /* like global - lower precedence */
|
343
|
+
#define STB_LOOS 10 /* Reserved range for operating system */
|
344
|
+
#define STB_HIOS 12 /* specific semantics. */
|
345
|
+
#define STB_LOPROC 13 /* reserved range for processor */
|
346
|
+
#define STB_HIPROC 15 /* specific semantics. */
|
347
|
+
|
348
|
+
/* Symbol type - ELFNN_ST_TYPE - st_info */
|
349
|
+
#define STT_NOTYPE 0 /* Unspecified type. */
|
350
|
+
#define STT_OBJECT 1 /* Data object. */
|
351
|
+
#define STT_FUNC 2 /* Function. */
|
352
|
+
#define STT_SECTION 3 /* Section. */
|
353
|
+
#define STT_FILE 4 /* Source file. */
|
354
|
+
#define STT_COMMON 5 /* Uninitialized common block. */
|
355
|
+
#define STT_TLS 6 /* TLS object. */
|
356
|
+
#define STT_LOOS 10 /* Reserved range for operating system */
|
357
|
+
#define STT_HIOS 12 /* specific semantics. */
|
358
|
+
#define STT_LOPROC 13 /* reserved range for processor */
|
359
|
+
#define STT_HIPROC 15 /* specific semantics. */
|
360
|
+
|
361
|
+
/* Symbol visibility - ELFNN_ST_VISIBILITY - st_other */
|
362
|
+
#define STV_DEFAULT 0x0 /* Default visibility (see binding). */
|
363
|
+
#define STV_INTERNAL 0x1 /* Special meaning in relocatable objects. */
|
364
|
+
#define STV_HIDDEN 0x2 /* Not visible. */
|
365
|
+
#define STV_PROTECTED 0x3 /* Visible but not preemptible. */
|
366
|
+
|
367
|
+
/* Special symbol table indexes. */
|
368
|
+
#define STN_UNDEF 0 /* Undefined symbol index. */
|
369
|
+
|
370
|
+
/*
|
371
|
+
* ELF definitions common to all 32-bit architectures.
|
372
|
+
*/
|
373
|
+
|
374
|
+
typedef uint32 Elf32_Addr;
|
375
|
+
typedef uint16 Elf32_Half;
|
376
|
+
typedef uint32 Elf32_Off;
|
377
|
+
typedef int32 Elf32_Sword;
|
378
|
+
typedef uint32 Elf32_Word;
|
379
|
+
|
380
|
+
typedef Elf32_Word Elf32_Hashelt;
|
381
|
+
|
382
|
+
/* Non-standard class-dependent datatype used for abstraction. */
|
383
|
+
typedef Elf32_Word Elf32_Size;
|
384
|
+
typedef Elf32_Sword Elf32_Ssize;
|
385
|
+
|
386
|
+
/*
|
387
|
+
* ELF header.
|
388
|
+
*/
|
389
|
+
|
390
|
+
typedef struct {
|
391
|
+
unsigned char ident[EI_NIDENT]; /* File identification. */
|
392
|
+
Elf32_Half type; /* File type. */
|
393
|
+
Elf32_Half machine; /* Machine architecture. */
|
394
|
+
Elf32_Word version; /* ELF format version. */
|
395
|
+
Elf32_Addr entry; /* Entry point. */
|
396
|
+
Elf32_Off phoff; /* Program header file offset. */
|
397
|
+
Elf32_Off shoff; /* Section header file offset. */
|
398
|
+
Elf32_Word flags; /* Architecture-specific flags. */
|
399
|
+
Elf32_Half ehsize; /* Size of ELF header in bytes. */
|
400
|
+
Elf32_Half phentsize; /* Size of program header entry. */
|
401
|
+
Elf32_Half phnum; /* Number of program header entries. */
|
402
|
+
Elf32_Half shentsize; /* Size of section header entry. */
|
403
|
+
Elf32_Half shnum; /* Number of section header entries. */
|
404
|
+
Elf32_Half shstrndx; /* Section name strings section. */
|
405
|
+
} Elf32_Ehdr;
|
406
|
+
|
407
|
+
/*
|
408
|
+
* Section header.
|
409
|
+
*/
|
410
|
+
|
411
|
+
typedef struct {
|
412
|
+
Elf32_Word name; /* Section name (index into the
|
413
|
+
section header string table). */
|
414
|
+
Elf32_Word type; /* Section type. */
|
415
|
+
Elf32_Word flags; /* Section flags. */
|
416
|
+
Elf32_Addr vaddr; /* Address in memory image. */
|
417
|
+
Elf32_Off off; /* Offset in file. */
|
418
|
+
Elf32_Word size; /* Size in bytes. */
|
419
|
+
Elf32_Word link; /* Index of a related section. */
|
420
|
+
Elf32_Word info; /* Depends on section type. */
|
421
|
+
Elf32_Word addralign; /* Alignment in bytes. */
|
422
|
+
Elf32_Word entsize; /* Size of each entry in section. */
|
423
|
+
} Elf32_Shdr;
|
424
|
+
|
425
|
+
/*
|
426
|
+
* Program header.
|
427
|
+
*/
|
428
|
+
|
429
|
+
typedef struct {
|
430
|
+
Elf32_Word type; /* Entry type. */
|
431
|
+
Elf32_Off off; /* File offset of contents. */
|
432
|
+
Elf32_Addr vaddr; /* Virtual address in memory image. */
|
433
|
+
Elf32_Addr paddr; /* Physical address (not used). */
|
434
|
+
Elf32_Word filesz; /* Size of contents in file. */
|
435
|
+
Elf32_Word memsz; /* Size of contents in memory. */
|
436
|
+
Elf32_Word flags; /* Access permission flags. */
|
437
|
+
Elf32_Word align; /* Alignment in memory and file. */
|
438
|
+
} Elf32_Phdr;
|
439
|
+
|
440
|
+
/*
|
441
|
+
* Dynamic structure. The ".dynamic" section contains an array of them.
|
442
|
+
*/
|
443
|
+
|
444
|
+
typedef struct {
|
445
|
+
Elf32_Sword d_tag; /* Entry type. */
|
446
|
+
union {
|
447
|
+
Elf32_Word d_val; /* Integer value. */
|
448
|
+
Elf32_Addr d_ptr; /* Address value. */
|
449
|
+
} d_un;
|
450
|
+
} Elf32_Dyn;
|
451
|
+
|
452
|
+
/*
|
453
|
+
* Relocation entries.
|
454
|
+
*/
|
455
|
+
|
456
|
+
/* Relocations that don't need an addend field. */
|
457
|
+
typedef struct {
|
458
|
+
Elf32_Addr off; /* Location to be relocated. */
|
459
|
+
Elf32_Word info; /* Relocation type and symbol index. */
|
460
|
+
} Elf32_Rel;
|
461
|
+
|
462
|
+
/* Relocations that need an addend field. */
|
463
|
+
typedef struct {
|
464
|
+
Elf32_Addr off; /* Location to be relocated. */
|
465
|
+
Elf32_Word info; /* Relocation type and symbol index. */
|
466
|
+
Elf32_Sword addend; /* Addend. */
|
467
|
+
} Elf32_Rela;
|
468
|
+
|
469
|
+
/* Macros for accessing the fields of r_info. */
|
470
|
+
#define ELF32_R_SYM(info) ((info) >> 8)
|
471
|
+
#define ELF32_R_TYPE(info) ((unsigned char)(info))
|
472
|
+
|
473
|
+
/* Macro for constructing r_info from field values. */
|
474
|
+
#define ELF32_R_INFO(sym, type) (((sym) << 8) + (unsigned char)(type))
|
475
|
+
|
476
|
+
/*
|
477
|
+
* Relocation types.
|
478
|
+
*/
|
479
|
+
|
480
|
+
#define R_X86_64_NONE 0 /* No relocation. */
|
481
|
+
#define R_X86_64_64 1 /* Add 64 bit symbol value. */
|
482
|
+
#define R_X86_64_PC32 2 /* PC-relative 32 bit signed sym value. */
|
483
|
+
#define R_X86_64_GOT32 3 /* PC-relative 32 bit GOT offset. */
|
484
|
+
#define R_X86_64_PLT32 4 /* PC-relative 32 bit PLT offset. */
|
485
|
+
#define R_X86_64_COPY 5 /* Copy data from shared object. */
|
486
|
+
#define R_X86_64_GLOB_DAT 6 /* Set GOT entry to data address. */
|
487
|
+
#define R_X86_64_JMP_SLOT 7 /* Set GOT entry to code address. */
|
488
|
+
#define R_X86_64_RELATIVE 8 /* Add load address of shared object. */
|
489
|
+
#define R_X86_64_GOTPCREL 9 /* Add 32 bit signed pcrel offset to GOT. */
|
490
|
+
#define R_X86_64_32 10 /* Add 32 bit zero extended symbol value */
|
491
|
+
#define R_X86_64_32S 11 /* Add 32 bit sign extended symbol value */
|
492
|
+
#define R_X86_64_16 12 /* Add 16 bit zero extended symbol value */
|
493
|
+
#define R_X86_64_PC16 13 /* Add 16 bit signed extended pc relative symbol value */
|
494
|
+
#define R_X86_64_8 14 /* Add 8 bit zero extended symbol value */
|
495
|
+
#define R_X86_64_PC8 15 /* Add 8 bit signed extended pc relative symbol value */
|
496
|
+
#define R_X86_64_DTPMOD64 16 /* ID of module containing symbol */
|
497
|
+
#define R_X86_64_DTPOFF64 17 /* Offset in TLS block */
|
498
|
+
#define R_X86_64_TPOFF64 18 /* Offset in static TLS block */
|
499
|
+
#define R_X86_64_TLSGD 19 /* PC relative offset to GD GOT entry */
|
500
|
+
#define R_X86_64_TLSLD 20 /* PC relative offset to LD GOT entry */
|
501
|
+
#define R_X86_64_DTPOFF32 21 /* Offset in TLS block */
|
502
|
+
#define R_X86_64_GOTTPOFF 22 /* PC relative offset to IE GOT entry */
|
503
|
+
#define R_X86_64_TPOFF32 23 /* Offset in static TLS block */
|
504
|
+
|
505
|
+
#define R_X86_64_COUNT 24 /* Count of defined relocation types. */
|
506
|
+
|
507
|
+
|
508
|
+
#define R_ALPHA_NONE 0 /* No reloc */
|
509
|
+
#define R_ALPHA_REFLONG 1 /* Direct 32 bit */
|
510
|
+
#define R_ALPHA_REFQUAD 2 /* Direct 64 bit */
|
511
|
+
#define R_ALPHA_GPREL32 3 /* GP relative 32 bit */
|
512
|
+
#define R_ALPHA_LITERAL 4 /* GP relative 16 bit w/optimization */
|
513
|
+
#define R_ALPHA_LITUSE 5 /* Optimization hint for LITERAL */
|
514
|
+
#define R_ALPHA_GPDISP 6 /* Add displacement to GP */
|
515
|
+
#define R_ALPHA_BRADDR 7 /* PC+4 relative 23 bit shifted */
|
516
|
+
#define R_ALPHA_HINT 8 /* PC+4 relative 16 bit shifted */
|
517
|
+
#define R_ALPHA_SREL16 9 /* PC relative 16 bit */
|
518
|
+
#define R_ALPHA_SREL32 10 /* PC relative 32 bit */
|
519
|
+
#define R_ALPHA_SREL64 11 /* PC relative 64 bit */
|
520
|
+
#define R_ALPHA_OP_PUSH 12 /* OP stack push */
|
521
|
+
#define R_ALPHA_OP_STORE 13 /* OP stack pop and store */
|
522
|
+
#define R_ALPHA_OP_PSUB 14 /* OP stack subtract */
|
523
|
+
#define R_ALPHA_OP_PRSHIFT 15 /* OP stack right shift */
|
524
|
+
#define R_ALPHA_GPVALUE 16
|
525
|
+
#define R_ALPHA_GPRELHIGH 17
|
526
|
+
#define R_ALPHA_GPRELLOW 18
|
527
|
+
#define R_ALPHA_IMMED_GP_16 19
|
528
|
+
#define R_ALPHA_IMMED_GP_HI32 20
|
529
|
+
#define R_ALPHA_IMMED_SCN_HI32 21
|
530
|
+
#define R_ALPHA_IMMED_BR_HI32 22
|
531
|
+
#define R_ALPHA_IMMED_LO32 23
|
532
|
+
#define R_ALPHA_COPY 24 /* Copy symbol at runtime */
|
533
|
+
#define R_ALPHA_GLOB_DAT 25 /* Create GOT entry */
|
534
|
+
#define R_ALPHA_JMP_SLOT 26 /* Create PLT entry */
|
535
|
+
#define R_ALPHA_RELATIVE 27 /* Adjust by program base */
|
536
|
+
|
537
|
+
#define R_ALPHA_COUNT 28
|
538
|
+
|
539
|
+
|
540
|
+
#define R_ARM_NONE 0 /* No relocation. */
|
541
|
+
#define R_ARM_PC24 1
|
542
|
+
#define R_ARM_ABS32 2
|
543
|
+
#define R_ARM_REL32 3
|
544
|
+
#define R_ARM_PC13 4
|
545
|
+
#define R_ARM_ABS16 5
|
546
|
+
#define R_ARM_ABS12 6
|
547
|
+
#define R_ARM_THM_ABS5 7
|
548
|
+
#define R_ARM_ABS8 8
|
549
|
+
#define R_ARM_SBREL32 9
|
550
|
+
#define R_ARM_THM_PC22 10
|
551
|
+
#define R_ARM_THM_PC8 11
|
552
|
+
#define R_ARM_AMP_VCALL9 12
|
553
|
+
#define R_ARM_SWI24 13
|
554
|
+
#define R_ARM_THM_SWI8 14
|
555
|
+
#define R_ARM_XPC25 15
|
556
|
+
#define R_ARM_THM_XPC22 16
|
557
|
+
#define R_ARM_COPY 20 /* Copy data from shared object. */
|
558
|
+
#define R_ARM_GLOB_DAT 21 /* Set GOT entry to data address. */
|
559
|
+
#define R_ARM_JUMP_SLOT 22 /* Set GOT entry to code address. */
|
560
|
+
#define R_ARM_RELATIVE 23 /* Add load address of shared object. */
|
561
|
+
#define R_ARM_GOTOFF 24 /* Add GOT-relative symbol address. */
|
562
|
+
#define R_ARM_GOTPC 25 /* Add PC-relative GOT table address. */
|
563
|
+
#define R_ARM_GOT32 26 /* Add PC-relative GOT offset. */
|
564
|
+
#define R_ARM_PLT32 27 /* Add PC-relative PLT offset. */
|
565
|
+
#define R_ARM_GNU_VTENTRY 100
|
566
|
+
#define R_ARM_GNU_VTINHERIT 101
|
567
|
+
#define R_ARM_RSBREL32 250
|
568
|
+
#define R_ARM_THM_RPC22 251
|
569
|
+
#define R_ARM_RREL32 252
|
570
|
+
#define R_ARM_RABS32 253
|
571
|
+
#define R_ARM_RPC24 254
|
572
|
+
#define R_ARM_RBASE 255
|
573
|
+
|
574
|
+
#define R_ARM_COUNT 33 /* Count of defined relocation types. */
|
575
|
+
|
576
|
+
|
577
|
+
#define R_386_NONE 0 /* No relocation. */
|
578
|
+
#define R_386_32 1 /* Add symbol value. */
|
579
|
+
#define R_386_PC32 2 /* Add PC-relative symbol value. */
|
580
|
+
#define R_386_GOT32 3 /* Add PC-relative GOT offset. */
|
581
|
+
#define R_386_PLT32 4 /* Add PC-relative PLT offset. */
|
582
|
+
#define R_386_COPY 5 /* Copy data from shared object. */
|
583
|
+
#define R_386_GLOB_DAT 6 /* Set GOT entry to data address. */
|
584
|
+
#define R_386_JMP_SLOT 7 /* Set GOT entry to code address. */
|
585
|
+
#define R_386_RELATIVE 8 /* Add load address of shared object. */
|
586
|
+
#define R_386_GOTOFF 9 /* Add GOT-relative symbol address. */
|
587
|
+
#define R_386_GOTPC 10 /* Add PC-relative GOT table address. */
|
588
|
+
#define R_386_TLS_TPOFF 14 /* Negative offset in static TLS block */
|
589
|
+
#define R_386_TLS_IE 15 /* Absolute address of GOT for -ve static TLS */
|
590
|
+
#define R_386_TLS_GOTIE 16 /* GOT entry for negative static TLS block */
|
591
|
+
#define R_386_TLS_LE 17 /* Negative offset relative to static TLS */
|
592
|
+
#define R_386_TLS_GD 18 /* 32 bit offset to GOT (index,off) pair */
|
593
|
+
#define R_386_TLS_LDM 19 /* 32 bit offset to GOT (index,zero) pair */
|
594
|
+
#define R_386_TLS_GD_32 24 /* 32 bit offset to GOT (index,off) pair */
|
595
|
+
#define R_386_TLS_GD_PUSH 25 /* pushl instruction for Sun ABI GD sequence */
|
596
|
+
#define R_386_TLS_GD_CALL 26 /* call instruction for Sun ABI GD sequence */
|
597
|
+
#define R_386_TLS_GD_POP 27 /* popl instruction for Sun ABI GD sequence */
|
598
|
+
#define R_386_TLS_LDM_32 28 /* 32 bit offset to GOT (index,zero) pair */
|
599
|
+
#define R_386_TLS_LDM_PUSH 29 /* pushl instruction for Sun ABI LD sequence */
|
600
|
+
#define R_386_TLS_LDM_CALL 30 /* call instruction for Sun ABI LD sequence */
|
601
|
+
#define R_386_TLS_LDM_POP 31 /* popl instruction for Sun ABI LD sequence */
|
602
|
+
#define R_386_TLS_LDO_32 32 /* 32 bit offset from start of TLS block */
|
603
|
+
#define R_386_TLS_IE_32 33 /* 32 bit offset to GOT static TLS offset entry */
|
604
|
+
#define R_386_TLS_LE_32 34 /* 32 bit offset within static TLS block */
|
605
|
+
#define R_386_TLS_DTPMOD32 35 /* GOT entry containing TLS index */
|
606
|
+
#define R_386_TLS_DTPOFF32 36 /* GOT entry containing TLS offset */
|
607
|
+
#define R_386_TLS_TPOFF32 37 /* GOT entry of -ve static TLS offset */
|
608
|
+
|
609
|
+
#define R_386_COUNT 38 /* Count of defined relocation types. */
|
610
|
+
|
611
|
+
#define R_PPC_NONE 0 /* No relocation. */
|
612
|
+
#define R_PPC_ADDR32 1
|
613
|
+
#define R_PPC_ADDR24 2
|
614
|
+
#define R_PPC_ADDR16 3
|
615
|
+
#define R_PPC_ADDR16_LO 4
|
616
|
+
#define R_PPC_ADDR16_HI 5
|
617
|
+
#define R_PPC_ADDR16_HA 6
|
618
|
+
#define R_PPC_ADDR14 7
|
619
|
+
#define R_PPC_ADDR14_BRTAKEN 8
|
620
|
+
#define R_PPC_ADDR14_BRNTAKEN 9
|
621
|
+
#define R_PPC_REL24 10
|
622
|
+
#define R_PPC_REL14 11
|
623
|
+
#define R_PPC_REL14_BRTAKEN 12
|
624
|
+
#define R_PPC_REL14_BRNTAKEN 13
|
625
|
+
#define R_PPC_GOT16 14
|
626
|
+
#define R_PPC_GOT16_LO 15
|
627
|
+
#define R_PPC_GOT16_HI 16
|
628
|
+
#define R_PPC_GOT16_HA 17
|
629
|
+
#define R_PPC_PLTREL24 18
|
630
|
+
#define R_PPC_COPY 19
|
631
|
+
#define R_PPC_GLOB_DAT 20
|
632
|
+
#define R_PPC_JMP_SLOT 21
|
633
|
+
#define R_PPC_RELATIVE 22
|
634
|
+
#define R_PPC_LOCAL24PC 23
|
635
|
+
#define R_PPC_UADDR32 24
|
636
|
+
#define R_PPC_UADDR16 25
|
637
|
+
#define R_PPC_REL32 26
|
638
|
+
#define R_PPC_PLT32 27
|
639
|
+
#define R_PPC_PLTREL32 28
|
640
|
+
#define R_PPC_PLT16_LO 29
|
641
|
+
#define R_PPC_PLT16_HI 30
|
642
|
+
#define R_PPC_PLT16_HA 31
|
643
|
+
#define R_PPC_SDAREL16 32
|
644
|
+
#define R_PPC_SECTOFF 33
|
645
|
+
#define R_PPC_SECTOFF_LO 34
|
646
|
+
#define R_PPC_SECTOFF_HI 35
|
647
|
+
#define R_PPC_SECTOFF_HA 36
|
648
|
+
|
649
|
+
#define R_PPC_COUNT 37 /* Count of defined relocation types. */
|
650
|
+
|
651
|
+
#define R_PPC_TLS 67
|
652
|
+
#define R_PPC_DTPMOD32 68
|
653
|
+
#define R_PPC_TPREL16 69
|
654
|
+
#define R_PPC_TPREL16_LO 70
|
655
|
+
#define R_PPC_TPREL16_HI 71
|
656
|
+
#define R_PPC_TPREL16_HA 72
|
657
|
+
#define R_PPC_TPREL32 73
|
658
|
+
#define R_PPC_DTPREL16 74
|
659
|
+
#define R_PPC_DTPREL16_LO 75
|
660
|
+
#define R_PPC_DTPREL16_HI 76
|
661
|
+
#define R_PPC_DTPREL16_HA 77
|
662
|
+
#define R_PPC_DTPREL32 78
|
663
|
+
#define R_PPC_GOT_TLSGD16 79
|
664
|
+
#define R_PPC_GOT_TLSGD16_LO 80
|
665
|
+
#define R_PPC_GOT_TLSGD16_HI 81
|
666
|
+
#define R_PPC_GOT_TLSGD16_HA 82
|
667
|
+
#define R_PPC_GOT_TLSLD16 83
|
668
|
+
#define R_PPC_GOT_TLSLD16_LO 84
|
669
|
+
#define R_PPC_GOT_TLSLD16_HI 85
|
670
|
+
#define R_PPC_GOT_TLSLD16_HA 86
|
671
|
+
#define R_PPC_GOT_TPREL16 87
|
672
|
+
#define R_PPC_GOT_TPREL16_LO 88
|
673
|
+
#define R_PPC_GOT_TPREL16_HI 89
|
674
|
+
#define R_PPC_GOT_TPREL16_HA 90
|
675
|
+
|
676
|
+
#define R_PPC_EMB_NADDR32 101
|
677
|
+
#define R_PPC_EMB_NADDR16 102
|
678
|
+
#define R_PPC_EMB_NADDR16_LO 103
|
679
|
+
#define R_PPC_EMB_NADDR16_HI 104
|
680
|
+
#define R_PPC_EMB_NADDR16_HA 105
|
681
|
+
#define R_PPC_EMB_SDAI16 106
|
682
|
+
#define R_PPC_EMB_SDA2I16 107
|
683
|
+
#define R_PPC_EMB_SDA2REL 108
|
684
|
+
#define R_PPC_EMB_SDA21 109
|
685
|
+
#define R_PPC_EMB_MRKREF 110
|
686
|
+
#define R_PPC_EMB_RELSEC16 111
|
687
|
+
#define R_PPC_EMB_RELST_LO 112
|
688
|
+
#define R_PPC_EMB_RELST_HI 113
|
689
|
+
#define R_PPC_EMB_RELST_HA 114
|
690
|
+
#define R_PPC_EMB_BIT_FLD 115
|
691
|
+
#define R_PPC_EMB_RELSDA 116
|
692
|
+
|
693
|
+
/* Count of defined relocation types. */
|
694
|
+
#define R_PPC_EMB_COUNT (R_PPC_EMB_RELSDA - R_PPC_EMB_NADDR32 + 1)
|
695
|
+
|
696
|
+
|
697
|
+
#define R_SPARC_NONE 0
|
698
|
+
#define R_SPARC_8 1
|
699
|
+
#define R_SPARC_16 2
|
700
|
+
#define R_SPARC_32 3
|
701
|
+
#define R_SPARC_DISP8 4
|
702
|
+
#define R_SPARC_DISP16 5
|
703
|
+
#define R_SPARC_DISP32 6
|
704
|
+
#define R_SPARC_WDISP30 7
|
705
|
+
#define R_SPARC_WDISP22 8
|
706
|
+
#define R_SPARC_HI22 9
|
707
|
+
#define R_SPARC_22 10
|
708
|
+
#define R_SPARC_13 11
|
709
|
+
#define R_SPARC_LO10 12
|
710
|
+
#define R_SPARC_GOT10 13
|
711
|
+
#define R_SPARC_GOT13 14
|
712
|
+
#define R_SPARC_GOT22 15
|
713
|
+
#define R_SPARC_PC10 16
|
714
|
+
#define R_SPARC_PC22 17
|
715
|
+
#define R_SPARC_WPLT30 18
|
716
|
+
#define R_SPARC_COPY 19
|
717
|
+
#define R_SPARC_GLOB_DAT 20
|
718
|
+
#define R_SPARC_JMP_SLOT 21
|
719
|
+
#define R_SPARC_RELATIVE 22
|
720
|
+
#define R_SPARC_UA32 23
|
721
|
+
#define R_SPARC_PLT32 24
|
722
|
+
#define R_SPARC_HIPLT22 25
|
723
|
+
#define R_SPARC_LOPLT10 26
|
724
|
+
#define R_SPARC_PCPLT32 27
|
725
|
+
#define R_SPARC_PCPLT22 28
|
726
|
+
#define R_SPARC_PCPLT10 29
|
727
|
+
#define R_SPARC_10 30
|
728
|
+
#define R_SPARC_11 31
|
729
|
+
#define R_SPARC_64 32
|
730
|
+
#define R_SPARC_OLO10 33
|
731
|
+
#define R_SPARC_HH22 34
|
732
|
+
#define R_SPARC_HM10 35
|
733
|
+
#define R_SPARC_LM22 36
|
734
|
+
#define R_SPARC_PC_HH22 37
|
735
|
+
#define R_SPARC_PC_HM10 38
|
736
|
+
#define R_SPARC_PC_LM22 39
|
737
|
+
#define R_SPARC_WDISP16 40
|
738
|
+
#define R_SPARC_WDISP19 41
|
739
|
+
#define R_SPARC_GLOB_JMP 42
|
740
|
+
#define R_SPARC_7 43
|
741
|
+
#define R_SPARC_5 44
|
742
|
+
#define R_SPARC_6 45
|
743
|
+
#define R_SPARC_DISP64 46
|
744
|
+
#define R_SPARC_PLT64 47
|
745
|
+
#define R_SPARC_HIX22 48
|
746
|
+
#define R_SPARC_LOX10 49
|
747
|
+
#define R_SPARC_H44 50
|
748
|
+
#define R_SPARC_M44 51
|
749
|
+
#define R_SPARC_L44 52
|
750
|
+
#define R_SPARC_REGISTER 53
|
751
|
+
#define R_SPARC_UA64 54
|
752
|
+
#define R_SPARC_UA16 55
|
753
|
+
|
754
|
+
|
755
|
+
/*
|
756
|
+
* Magic number for the elf trampoline, chosen wisely to be an immediate
|
757
|
+
* value.
|
758
|
+
*/
|
759
|
+
#define ARM_MAGIC_TRAMP_NUMBER 0x5c000003
|
760
|
+
|
761
|
+
|
762
|
+
/*
|
763
|
+
* Symbol table entries.
|
764
|
+
*/
|
765
|
+
|
766
|
+
typedef struct {
|
767
|
+
Elf32_Word name; /* String table index of name. */
|
768
|
+
Elf32_Addr value; /* Symbol value. */
|
769
|
+
Elf32_Word size; /* Size of associated object. */
|
770
|
+
unsigned char info; /* Type and binding information. */
|
771
|
+
unsigned char other; /* Reserved (not used). */
|
772
|
+
Elf32_Half shndx; /* Section index of symbol. */
|
773
|
+
} Elf32_Sym;
|
774
|
+
|
775
|
+
/* Macros for accessing the fields of st_info. */
|
776
|
+
#define ELF32_ST_BIND(info) ((info) >> 4)
|
777
|
+
#define ELF32_ST_TYPE(info) ((info) & 0xf)
|
778
|
+
|
779
|
+
/* Macro for constructing st_info from field values. */
|
780
|
+
#define ELF32_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
781
|
+
|
782
|
+
/* Macro for accessing the fields of st_other. */
|
783
|
+
#define ELF32_ST_VISIBILITY(oth) ((oth) & 0x3)
|
784
|
+
|
785
|
+
/*
|
786
|
+
* ELF definitions common to all 64-bit architectures.
|
787
|
+
*/
|
788
|
+
|
789
|
+
typedef uint64 Elf64_Addr;
|
790
|
+
typedef uint16 Elf64_Half;
|
791
|
+
typedef uint64 Elf64_Off;
|
792
|
+
typedef int32 Elf64_Sword;
|
793
|
+
typedef int64 Elf64_Sxword;
|
794
|
+
typedef uint32 Elf64_Word;
|
795
|
+
typedef uint64 Elf64_Xword;
|
796
|
+
|
797
|
+
/*
|
798
|
+
* Types of dynamic symbol hash table bucket and chain elements.
|
799
|
+
*
|
800
|
+
* This is inconsistent among 64 bit architectures, so a machine dependent
|
801
|
+
* typedef is required.
|
802
|
+
*/
|
803
|
+
|
804
|
+
#ifdef __alpha__
|
805
|
+
typedef Elf64_Off Elf64_Hashelt;
|
806
|
+
#else
|
807
|
+
typedef Elf64_Word Elf64_Hashelt;
|
808
|
+
#endif
|
809
|
+
|
810
|
+
/* Non-standard class-dependent datatype used for abstraction. */
|
811
|
+
typedef Elf64_Xword Elf64_Size;
|
812
|
+
typedef Elf64_Sxword Elf64_Ssize;
|
813
|
+
|
814
|
+
/*
|
815
|
+
* ELF header.
|
816
|
+
*/
|
817
|
+
|
818
|
+
typedef struct {
|
819
|
+
unsigned char ident[EI_NIDENT]; /* File identification. */
|
820
|
+
Elf64_Half type; /* File type. */
|
821
|
+
Elf64_Half machine; /* Machine architecture. */
|
822
|
+
Elf64_Word version; /* ELF format version. */
|
823
|
+
Elf64_Addr entry; /* Entry point. */
|
824
|
+
Elf64_Off phoff; /* Program header file offset. */
|
825
|
+
Elf64_Off shoff; /* Section header file offset. */
|
826
|
+
Elf64_Word flags; /* Architecture-specific flags. */
|
827
|
+
Elf64_Half ehsize; /* Size of ELF header in bytes. */
|
828
|
+
Elf64_Half phentsize; /* Size of program header entry. */
|
829
|
+
Elf64_Half phnum; /* Number of program header entries. */
|
830
|
+
Elf64_Half shentsize; /* Size of section header entry. */
|
831
|
+
Elf64_Half shnum; /* Number of section header entries. */
|
832
|
+
Elf64_Half shstrndx; /* Section name strings section. */
|
833
|
+
} Elf64_Ehdr;
|
834
|
+
|
835
|
+
/*
|
836
|
+
* Section header.
|
837
|
+
*/
|
838
|
+
|
839
|
+
typedef struct {
|
840
|
+
Elf64_Word name; /* Section name (index into the
|
841
|
+
section header string table). */
|
842
|
+
Elf64_Word type; /* Section type. */
|
843
|
+
Elf64_Xword flags; /* Section flags. */
|
844
|
+
Elf64_Addr addr; /* Address in memory image. */
|
845
|
+
Elf64_Off off; /* Offset in file. */
|
846
|
+
Elf64_Xword size; /* Size in bytes. */
|
847
|
+
Elf64_Word link; /* Index of a related section. */
|
848
|
+
Elf64_Word info; /* Depends on section type. */
|
849
|
+
Elf64_Xword addralign; /* Alignment in bytes. */
|
850
|
+
Elf64_Xword entsize; /* Size of each entry in section. */
|
851
|
+
} Elf64_Shdr;
|
852
|
+
|
853
|
+
/*
|
854
|
+
* Program header.
|
855
|
+
*/
|
856
|
+
|
857
|
+
typedef struct {
|
858
|
+
Elf64_Word type; /* Entry type. */
|
859
|
+
Elf64_Word flags; /* Access permission flags. */
|
860
|
+
Elf64_Off off; /* File offset of contents. */
|
861
|
+
Elf64_Addr vaddr; /* Virtual address in memory image. */
|
862
|
+
Elf64_Addr paddr; /* Physical address (not used). */
|
863
|
+
Elf64_Xword filesz; /* Size of contents in file. */
|
864
|
+
Elf64_Xword memsz; /* Size of contents in memory. */
|
865
|
+
Elf64_Xword align; /* Alignment in memory and file. */
|
866
|
+
} Elf64_Phdr;
|
867
|
+
|
868
|
+
/*
|
869
|
+
* Dynamic structure. The ".dynamic" section contains an array of them.
|
870
|
+
*/
|
871
|
+
|
872
|
+
typedef struct {
|
873
|
+
Elf64_Sxword d_tag; /* Entry type. */
|
874
|
+
union {
|
875
|
+
Elf64_Xword d_val; /* Integer value. */
|
876
|
+
Elf64_Addr d_ptr; /* Address value. */
|
877
|
+
} d_un;
|
878
|
+
} Elf64_Dyn;
|
879
|
+
|
880
|
+
/*
|
881
|
+
* Relocation entries.
|
882
|
+
*/
|
883
|
+
|
884
|
+
/* Relocations that don't need an addend field. */
|
885
|
+
typedef struct {
|
886
|
+
Elf64_Addr off; /* Location to be relocated. */
|
887
|
+
Elf64_Xword info; /* Relocation type and symbol index. */
|
888
|
+
} Elf64_Rel;
|
889
|
+
|
890
|
+
/* Relocations that need an addend field. */
|
891
|
+
typedef struct {
|
892
|
+
Elf64_Addr off; /* Location to be relocated. */
|
893
|
+
Elf64_Xword info; /* Relocation type and symbol index. */
|
894
|
+
Elf64_Sxword addend; /* Addend. */
|
895
|
+
} Elf64_Rela;
|
896
|
+
|
897
|
+
/* Macros for accessing the fields of r_info. */
|
898
|
+
#define ELF64_R_SYM(info) ((info) >> 32)
|
899
|
+
#define ELF64_R_TYPE(info) ((info) & 0xffffffffL)
|
900
|
+
|
901
|
+
/* Macro for constructing r_info from field values. */
|
902
|
+
#define ELF64_R_INFO(sym, type) ((((uint64)(sym)) << 32) + (((uint64)(type)) & 0xffffffffULL))
|
903
|
+
|
904
|
+
/*
|
905
|
+
* Symbol table entries.
|
906
|
+
*/
|
907
|
+
|
908
|
+
typedef struct {
|
909
|
+
Elf64_Word name; /* String table index of name. */
|
910
|
+
unsigned char info; /* Type and binding information. */
|
911
|
+
unsigned char other; /* Reserved (not used). */
|
912
|
+
Elf64_Half shndx; /* Section index of symbol. */
|
913
|
+
Elf64_Addr value; /* Symbol value. */
|
914
|
+
Elf64_Xword size; /* Size of associated object. */
|
915
|
+
} Elf64_Sym;
|
916
|
+
|
917
|
+
/* Macros for accessing the fields of st_info. */
|
918
|
+
#define ELF64_ST_BIND(info) ((info) >> 4)
|
919
|
+
#define ELF64_ST_TYPE(info) ((info) & 0xf)
|
920
|
+
|
921
|
+
/* Macro for constructing st_info from field values. */
|
922
|
+
#define ELF64_ST_INFO(bind, type) (((bind) << 4) + ((type) & 0xf))
|
923
|
+
|
924
|
+
/* Macro for accessing the fields of st_other. */
|
925
|
+
#define ELF64_ST_VISIBILITY(oth) ((oth) & 0x3)
|
926
|
+
|
927
|
+
/*
|
928
|
+
* Go linker interface
|
929
|
+
*/
|
930
|
+
|
931
|
+
#define ELF64HDRSIZE 64
|
932
|
+
#define ELF64PHDRSIZE 56
|
933
|
+
#define ELF64SHDRSIZE 64
|
934
|
+
#define ELF64RELSIZE 16
|
935
|
+
#define ELF64RELASIZE 24
|
936
|
+
#define ELF64SYMSIZE sizeof(Elf64_Sym)
|
937
|
+
|
938
|
+
#define ELF32HDRSIZE sizeof(Elf32_Ehdr)
|
939
|
+
#define ELF32PHDRSIZE sizeof(Elf32_Phdr)
|
940
|
+
#define ELF32SHDRSIZE sizeof(Elf32_Shdr)
|
941
|
+
#define ELF32SYMSIZE sizeof(Elf32_Sym)
|
942
|
+
#define ELF32RELSIZE 8
|
943
|
+
|
944
|
+
/*
|
945
|
+
* The interface uses the 64-bit structures always,
|
946
|
+
* to avoid code duplication. The writers know how to
|
947
|
+
* marshal a 32-bit representation from the 64-bit structure.
|
948
|
+
*/
|
949
|
+
typedef Elf64_Ehdr ElfEhdr;
|
950
|
+
typedef Elf64_Shdr ElfShdr;
|
951
|
+
typedef Elf64_Phdr ElfPhdr;
|
952
|
+
|
953
|
+
void elfinit(void);
|
954
|
+
ElfEhdr *getElfEhdr(void);
|
955
|
+
ElfShdr *newElfShstrtab(vlong);
|
956
|
+
ElfShdr *newElfShdr(vlong);
|
957
|
+
ElfPhdr *newElfPhdr(void);
|
958
|
+
uint32 elfwritehdr(void);
|
959
|
+
uint32 elfwritephdrs(void);
|
960
|
+
uint32 elfwriteshdrs(void);
|
961
|
+
void elfwritedynent(Sym*, int, uint64);
|
962
|
+
void elfwritedynentsym(Sym*, int, Sym*);
|
963
|
+
void elfwritedynentsymsize(Sym*, int, Sym*);
|
964
|
+
uint32 elfhash(uchar*);
|
965
|
+
uint64 startelf(void);
|
966
|
+
uint64 endelf(void);
|
967
|
+
extern int numelfphdr;
|
968
|
+
extern int numelfshdr;
|
969
|
+
extern int iself;
|
970
|
+
extern int elfverneed;
|
971
|
+
int elfinterp(ElfShdr*, uint64, uint64, char*);
|
972
|
+
int elfwriteinterp(vlong);
|
973
|
+
int elfnetbsdsig(ElfShdr*, uint64, uint64);
|
974
|
+
int elfwritenetbsdsig(vlong);
|
975
|
+
void elfdynhash(void);
|
976
|
+
ElfPhdr* elfphload(Segment*);
|
977
|
+
ElfShdr* elfshbits(Section*);
|
978
|
+
void elfsetstring(char*, int);
|
979
|
+
void elfaddverneed(Sym*);
|
980
|
+
|
981
|
+
EXTERN int elfstrsize;
|
982
|
+
EXTERN char* elfstrdat;
|
983
|
+
EXTERN int elftextsh;
|
984
|
+
|
985
|
+
/*
|
986
|
+
* Total amount of space to reserve at the start of the file
|
987
|
+
* for Header, PHeaders, SHeaders, and interp.
|
988
|
+
* May waste some.
|
989
|
+
* On FreeBSD, cannot be larger than a page.
|
990
|
+
*/
|
991
|
+
#define ELFRESERVE 3072
|