forked from rui314/mold
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmold.h
1066 lines (867 loc) · 23.2 KB
/
mold.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
#pragma once
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#include "elf.h"
#include "tbb/concurrent_hash_map.h"
#include "tbb/parallel_for_each.h"
#include "tbb/parallel_invoke.h"
#include "tbb/parallel_reduce.h"
#include "tbb/spin_mutex.h"
#include <algorithm>
#include <atomic>
#include <cassert>
#include <cstdint>
#include <iostream>
#include <mutex>
#include <span>
#include <string>
#include <string_view>
#define SECTOR_SIZE 512
#define PAGE_SIZE 4096
#define GOT_SIZE 8
#define PLT_SIZE 16
#define LIKELY(x) __builtin_expect((x), 1)
#define UNLIKELY(x) __builtin_expect((x), 0)
typedef uint8_t u8;
typedef uint16_t u16;
typedef uint32_t u32;
typedef uint64_t u64;
typedef int8_t i8;
typedef int16_t i16;
typedef int32_t i32;
typedef int64_t i64;
class InputChunk;
class InputFile;
class InputSection;
class MergeableSection;
class MergedSection;
class ObjectFile;
class OutputChunk;
class OutputSection;
class SharedFile;
class Symbol;
struct Config {
std::string dynamic_linker = "/lib64/ld-linux-x86-64.so.2";
std::string entry = "_start";
std::string output;
bool discard_all = false;
bool discard_locals = false;
bool export_dynamic = false;
bool fork = true;
bool is_static = false;
bool perf = false;
bool pie = false;
bool preload = false;
bool print_map = false;
bool stat = false;
bool strip_all = false;
bool trace = false;
bool z_now = false;
int filler = -1;
int thread_count = -1;
std::string sysroot;
std::vector<std::string> globals;
std::vector<std::string_view> rpaths;
std::vector<std::string_view> library_paths;
std::vector<std::string_view> trace_symbol;
std::vector<std::string_view> version_script;
u64 image_base = 0x200000;
};
inline Config config;
void cleanup();
[[noreturn]] inline void error(std::string msg) {
static std::mutex mu;
std::lock_guard lock(mu);
std::cerr << msg << "\n" << std::flush;
cleanup();
_exit(1);
}
#define unreachable() \
error("internal error at " + std::string(__FILE__) + ":" + std::to_string(__LINE__))
std::string to_string(const InputFile *);
//
// Interned string
//
namespace tbb {
template<>
struct tbb_hash_compare<std::string_view> {
static size_t hash(const std::string_view& k) {
return std::hash<std::string_view>()(k);
}
static bool equal(const std::string_view& k1, const std::string_view& k2) {
return k1 == k2;
}
};
}
template<typename ValueT>
class ConcurrentMap {
public:
typedef tbb::concurrent_hash_map<std::string_view, ValueT> MapT;
ValueT *insert(std::string_view key, const ValueT &val) {
typename MapT::const_accessor acc;
size_t hash = std::hash<std::string_view>()(key.size() <= 32 ? key : key.substr(0, 32));
map[hash % NUM_SHARDS].insert(acc, std::make_pair(key, val));
return const_cast<ValueT *>(&acc->second);
}
void for_each_value(std::function<void(const ValueT &)> fn) {
for (int i = 0; i < NUM_SHARDS; i++)
for (typename MapT::const_iterator it = map[i].begin(); it != map[i].end(); ++it)
fn(it->second);
}
size_t size() const {
size_t sum = 0;
for (int i = 0; i < NUM_SHARDS; i++)
sum += map[i].size();
return sum;
}
private:
enum { NUM_SHARDS = 4 };
MapT map[NUM_SHARDS];
};
//
// Symbol
//
struct StringPiece {
StringPiece(std::string_view view)
: data((const char *)view.data()), size(view.size()) {}
StringPiece(const StringPiece &other)
: isec(other.isec.load()), data(other.data), size(other.size),
output_offset(other.output_offset) {}
inline u64 get_addr() const;
std::atomic<MergeableSection *> isec = ATOMIC_VAR_INIT(nullptr);
const char *data;
u32 size;
u32 output_offset = -1;
};
struct StringPieceRef {
StringPiece *piece = nullptr;
u32 input_offset = 0;
i32 addend = 0;
};
enum {
NEEDS_GOT = 1 << 0,
NEEDS_PLT = 1 << 1,
NEEDS_GOTTPOFF = 1 << 2,
NEEDS_TLSGD = 1 << 3,
NEEDS_TLSLD = 1 << 4,
NEEDS_COPYREL = 1 << 5,
NEEDS_DYNSYM = 1 << 6,
};
class Symbol {
public:
Symbol(std::string_view name) : name(name) {}
Symbol(const Symbol &other) : Symbol(other.name) {}
static Symbol *intern(std::string_view name) {
static ConcurrentMap<Symbol> map;
return map.insert(name, Symbol(name));
}
inline u64 get_addr() const;
inline u64 get_got_addr() const;
inline u64 get_gotplt_addr() const;
inline u64 get_gottpoff_addr() const;
inline u64 get_tlsgd_addr() const;
inline u64 get_tlsld_addr() const;
inline u64 get_plt_addr() const;
bool needs_relative_rel() const {
return config.pie && !is_undef_weak;
}
std::string_view name;
InputFile *file = nullptr;
const ElfSym *esym = nullptr;
InputSection *input_section = nullptr;
StringPieceRef piece_ref;
u64 value = -1;
u32 got_idx = -1;
u32 gotplt_idx = -1;
u32 gottpoff_idx = -1;
u32 tlsgd_idx = -1;
u32 tlsld_idx = -1;
u32 plt_idx = -1;
u32 relplt_idx = -1;
u32 dynsym_idx = -1;
u32 dynstr_offset = -1;
u32 copyrel_offset = -1;
u16 shndx = 0;
u16 ver_idx = 0;
tbb::spin_mutex mu;
u8 is_placeholder : 1 = false;
u8 is_imported : 1 = false;
u8 is_weak : 1 = false;
u8 is_undef_weak : 1 = false;
u8 write_symtab : 1 = false;
u8 traced : 1 = false;
std::atomic_uint8_t flags = ATOMIC_VAR_INIT(0);
u8 type = STT_NOTYPE;
};
//
// input_sections.cc
//
class InputChunk {
public:
virtual void copy_buf() {}
inline u64 get_addr() const;
ObjectFile *file;
const ElfShdr &shdr;
OutputSection *output_section = nullptr;
std::string_view name;
u32 offset;
protected:
InputChunk(ObjectFile *file, const ElfShdr &shdr, std::string_view name);
};
enum RelType : u8 {
R_NONE,
R_ABS,
R_DYN,
R_PC,
R_GOT,
R_GOTPC,
R_GOTPCREL,
R_PLT,
R_TLSGD,
R_TLSGD_RELAX_LE,
R_TLSLD,
R_TLSLD_RELAX_LE,
R_TPOFF,
R_GOTTPOFF,
};
class InputSection : public InputChunk {
public:
InputSection(ObjectFile *file, const ElfShdr &shdr, std::string_view name)
: InputChunk(file, shdr, name) {}
void copy_buf() override;
void scan_relocations();
void report_undefined_symbols();
std::span<ElfRela> rels;
std::vector<bool> has_rel_piece;
std::vector<StringPieceRef> rel_pieces;
std::vector<RelType> rel_types;
u64 reldyn_offset = 0;
bool is_comdat_member = false;
bool is_alive = true;
};
class MergeableSection : public InputChunk {
public:
MergeableSection(InputSection *isec, std::string_view contents);
MergedSection &parent;
std::vector<StringPieceRef> pieces;
u32 size = 0;
};
std::string to_string(InputChunk *isec);
//
// output_chunks.cc
//
class OutputChunk {
public:
enum Kind : u8 { HEADER, REGULAR, SYNTHETIC };
OutputChunk(Kind kind) : kind(kind) { shdr.sh_addralign = 1; }
virtual void copy_buf() {}
virtual void update_shdr() {}
std::string_view name;
int shndx = 0;
Kind kind;
bool starts_new_ptload = false;
ElfShdr shdr = {};
};
// ELF header
class OutputEhdr : public OutputChunk {
public:
OutputEhdr() : OutputChunk(HEADER) {
shdr.sh_flags = SHF_ALLOC;
shdr.sh_size = sizeof(ElfEhdr);
}
void copy_buf() override;
};
// Section header
class OutputShdr : public OutputChunk {
public:
OutputShdr() : OutputChunk(HEADER) {
shdr.sh_flags = SHF_ALLOC;
}
void update_shdr() override;
void copy_buf() override;
};
// Program header
class OutputPhdr : public OutputChunk {
public:
OutputPhdr() : OutputChunk(HEADER) {
shdr.sh_flags = SHF_ALLOC;
}
void update_shdr() override;
void copy_buf() override;
};
class InterpSection : public OutputChunk {
public:
InterpSection() : OutputChunk(SYNTHETIC) {
name = ".interp";
shdr.sh_type = SHT_PROGBITS;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_size = config.dynamic_linker.size() + 1;
}
void copy_buf() override;
};
// Sections
class OutputSection : public OutputChunk {
public:
static OutputSection *get_instance(std::string_view name, u32 type, u64 flags);
OutputSection(std::string_view name, u32 type, u64 flags)
: OutputChunk(REGULAR) {
this->name = name;
shdr.sh_type = type;
shdr.sh_flags = flags;
idx = instances.size();
instances.push_back(this);
}
void copy_buf() override;
static inline std::vector<OutputSection *> instances;
std::vector<InputChunk *> members;
u32 idx;
};
class GotSection : public OutputChunk {
public:
GotSection() : OutputChunk(SYNTHETIC) {
name = ".got";
shdr.sh_type = SHT_PROGBITS;
shdr.sh_flags = SHF_ALLOC | SHF_WRITE;
shdr.sh_addralign = GOT_SIZE;
}
void add_got_symbol(Symbol *sym);
void add_gottpoff_symbol(Symbol *sym);
void add_tlsgd_symbol(Symbol *sym);
void add_tlsld_symbol(Symbol *sym);
void copy_buf() override;
std::vector<Symbol *> got_syms;
std::vector<Symbol *> gottpoff_syms;
std::vector<Symbol *> tlsgd_syms;
std::vector<Symbol *> tlsld_syms;
};
class GotPltSection : public OutputChunk {
public:
GotPltSection() : OutputChunk(SYNTHETIC) {
name = ".got.plt";
shdr.sh_type = SHT_PROGBITS;
shdr.sh_flags = SHF_ALLOC | SHF_WRITE;
shdr.sh_addralign = GOT_SIZE;
shdr.sh_size = GOT_SIZE * 3;
}
void copy_buf() override;
};
class PltSection : public OutputChunk {
public:
PltSection() : OutputChunk(SYNTHETIC) {
name = ".plt";
shdr.sh_type = SHT_PROGBITS;
shdr.sh_flags = SHF_ALLOC | SHF_EXECINSTR;
shdr.sh_addralign = 8;
shdr.sh_size = PLT_SIZE;
}
void add_symbol(Symbol *sym);
void copy_buf() override;
std::vector<Symbol *> symbols;
};
class RelPltSection : public OutputChunk {
public:
RelPltSection() : OutputChunk(SYNTHETIC) {
name = ".rela.plt";
shdr.sh_type = SHT_RELA;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_entsize = sizeof(ElfRela);
shdr.sh_addralign = 8;
}
void update_shdr() override;
void copy_buf() override;
};
class RelDynSection : public OutputChunk {
public:
RelDynSection() : OutputChunk(SYNTHETIC) {
name = ".rela.dyn";
shdr.sh_type = SHT_RELA;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_entsize = sizeof(ElfRela);
shdr.sh_addralign = 8;
}
void update_shdr() override;
void copy_buf() override;
};
class StrtabSection : public OutputChunk {
public:
StrtabSection() : OutputChunk(SYNTHETIC) {
name = ".strtab";
shdr.sh_type = SHT_STRTAB;
shdr.sh_addralign = 1;
shdr.sh_size = 1;
}
void update_shdr() override;
};
class ShstrtabSection : public OutputChunk {
public:
ShstrtabSection() : OutputChunk(SYNTHETIC) {
name = ".shstrtab";
shdr.sh_type = SHT_STRTAB;
shdr.sh_addralign = 1;
}
void update_shdr() override;
void copy_buf() override;
};
class DynstrSection : public OutputChunk {
public:
DynstrSection() : OutputChunk(SYNTHETIC) {
name = ".dynstr";
shdr.sh_type = SHT_STRTAB;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_size = 1;
shdr.sh_addralign = 1;
}
u32 add_string(std::string_view str);
u32 find_string(std::string_view str);
void copy_buf() override;
private:
std::vector<std::string_view> contents;
};
class DynamicSection : public OutputChunk {
public:
DynamicSection() : OutputChunk(SYNTHETIC) {
name = ".dynamic";
shdr.sh_type = SHT_DYNAMIC;
shdr.sh_flags = SHF_ALLOC | SHF_WRITE;
shdr.sh_addralign = 8;
shdr.sh_entsize = sizeof(ElfDyn);
}
void update_shdr() override;
void copy_buf() override;
};
class SymtabSection : public OutputChunk {
public:
SymtabSection() : OutputChunk(SYNTHETIC) {
name = ".symtab";
shdr.sh_type = SHT_SYMTAB;
shdr.sh_entsize = sizeof(ElfSym);
shdr.sh_addralign = 8;
shdr.sh_size = sizeof(ElfSym);
}
void update_shdr() override;
void copy_buf() override;
};
class DynsymSection : public OutputChunk {
public:
DynsymSection() : OutputChunk(SYNTHETIC) {
name = ".dynsym";
shdr.sh_type = SHT_DYNSYM;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_entsize = sizeof(ElfSym);
shdr.sh_addralign = 8;
shdr.sh_size = sizeof(ElfSym);
shdr.sh_info = 1;
}
void add_symbol(Symbol *sym);
void update_shdr() override;
void copy_buf() override;
std::vector<Symbol *> symbols;
};
class HashSection : public OutputChunk {
public:
HashSection() : OutputChunk(SYNTHETIC) {
name = ".hash";
shdr.sh_type = SHT_HASH;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_entsize = 4;
shdr.sh_addralign = 4;
}
void update_shdr() override;
void copy_buf() override;
private:
static u32 hash(std::string_view name);
};
class MergedSection : public OutputChunk {
public:
static MergedSection *get_instance(std::string_view name, u32 type, u64 flags);
static inline std::vector<MergedSection *> instances;
ConcurrentMap<StringPiece> map;
void copy_buf() override;
private:
MergedSection(std::string_view name, u64 flags, u32 type)
: OutputChunk(SYNTHETIC) {
this->name = name;
shdr.sh_flags = flags;
shdr.sh_type = type;
shdr.sh_addralign = 1;
}
};
class CopyrelSection : public OutputChunk {
public:
CopyrelSection() : OutputChunk(SYNTHETIC) {
name = ".bss";
shdr.sh_type = SHT_NOBITS;
shdr.sh_flags = SHF_ALLOC | SHF_WRITE;
shdr.sh_addralign = 32;
}
void add_symbol(Symbol *sym);
std::vector<Symbol *> symbols;
};
class VersymSection : public OutputChunk {
public:
VersymSection() : OutputChunk(SYNTHETIC) {
name = ".gnu.version";
shdr.sh_type = SHT_GNU_VERSYM;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_entsize = 2;
shdr.sh_addralign = 2;
}
void update_shdr() override;
void copy_buf() override;
std::vector<u16> contents;
};
class VerneedSection : public OutputChunk {
public:
VerneedSection() : OutputChunk(SYNTHETIC) {
name = ".gnu.version_r";
shdr.sh_type = SHT_GNU_VERNEED;
shdr.sh_flags = SHF_ALLOC;
shdr.sh_addralign = 8;
}
void update_shdr() override;
void copy_buf() override;
std::vector<u8> contents;
};
bool is_c_identifier(std::string_view name);
std::vector<ElfPhdr> create_phdr();
//
// object_file.cc
//
struct ComdatGroup {
ComdatGroup(ObjectFile *file, u32 i)
: file(file), section_idx(i) {}
ComdatGroup(const ComdatGroup &other)
: file(other.file.load()), section_idx(other.section_idx) {}
std::atomic<ObjectFile *> file;
u32 section_idx;
};
class MemoryMappedFile {
public:
static MemoryMappedFile *open(std::string path);
static MemoryMappedFile *must_open(std::string path);
MemoryMappedFile(std::string name, u8 *data, u64 size, u64 mtime = 0)
: name(name), data_(data), size_(size), mtime(mtime) {}
MemoryMappedFile() = delete;
MemoryMappedFile *slice(std::string name, u64 start, u64 size);
u8 *data();
u64 size() { return size_; }
std::string name;
u64 mtime = 0;
private:
std::mutex mu;
MemoryMappedFile *parent;
std::atomic<u8 *> data_;
u64 size_ = 0;
};
class InputFile {
public:
InputFile(MemoryMappedFile *mb);
MemoryMappedFile *mb;
ElfEhdr &ehdr;
std::span<ElfShdr> elf_sections;
std::vector<Symbol *> symbols;
std::string name;
bool is_dso;
u32 priority;
std::atomic_bool is_alive = ATOMIC_VAR_INIT(false);
std::string_view get_string(const ElfShdr &shdr);
std::string_view get_string(u32 idx);
protected:
template<typename T> std::span<T> get_data(const ElfShdr &shdr);
template<typename T> std::span<T> get_data(u32 idx);
ElfShdr *find_section(u32 type);
};
class ObjectFile : public InputFile {
public:
ObjectFile(MemoryMappedFile *mb, std::string archive_name);
void parse();
void initialize_mergeable_sections();
void resolve_symbols();
std::vector<ObjectFile *> mark_live_objects();
void handle_undefined_weak_symbols();
void resolve_comdat_groups();
void eliminate_duplicate_comdat_groups();
void assign_mergeable_string_offsets();
void convert_common_symbols();
void compute_symtab();
void write_symtab();
static ObjectFile *create_internal_file();
std::string archive_name;
std::vector<InputSection *> sections;
std::span<ElfSym> elf_syms;
int first_global = 0;
const bool is_in_archive;
std::atomic_bool has_error = ATOMIC_VAR_INIT(false);
u64 num_dynrel = 0;
u64 reldyn_offset = 0;
u64 local_symtab_offset = 0;
u64 local_symtab_size = 0;
u64 global_symtab_offset = 0;
u64 global_symtab_size = 0;
u64 strtab_offset = 0;
u64 strtab_size = 0;
std::vector<MergeableSection *> mergeable_sections;
private:
void initialize_sections();
void initialize_symbols();
std::vector<StringPieceRef> read_string_pieces(InputSection *isec);
void maybe_override_symbol(Symbol &sym, int symidx);
std::vector<std::pair<ComdatGroup *, std::span<u32>>> comdat_groups;
std::vector<Symbol> local_symbols;
std::vector<StringPieceRef> sym_pieces;
bool has_common_symbol;
std::string_view symbol_strtab;
const ElfShdr *symtab_sec;
};
class SharedFile : public InputFile {
public:
SharedFile(MemoryMappedFile *mb, bool as_needed) : InputFile(mb) {
is_alive = !as_needed;
}
void parse();
void resolve_symbols();
std::span<Symbol *> find_aliases(Symbol *sym);
std::string_view soname;
std::vector<std::string_view> version_strings;
private:
std::string_view get_soname();
void maybe_override_symbol(Symbol &sym, const ElfSym &esym);
std::vector<std::string_view> read_verdef();
std::vector<const ElfSym *> elf_syms;
std::vector<u16> versyms;
std::string_view symbol_strtab;
const ElfShdr *symtab_sec;
};
//
// archive_file.cc
//
std::vector<MemoryMappedFile *> read_archive_members(MemoryMappedFile *mb);
std::vector<MemoryMappedFile *> read_fat_archive_members(MemoryMappedFile *mb);
std::vector<MemoryMappedFile *> read_thin_archive_members(MemoryMappedFile *mb);
//
// linker_script.cc
//
void parse_linker_script(MemoryMappedFile *mb, bool as_needed);
void parse_version_script(std::string path);
//
// perf.cc
//
class Counter {
public:
Counter(std::string_view name, u32 value = 0) : name(name), value(value) {
static std::mutex mu;
std::lock_guard lock(mu);
instances.push_back(this);
}
void inc(u32 delta = 1) {
if (enabled)
value += delta;
}
void set(u32 value) {
this->value = value;
}
static void print();
static bool enabled;
private:
std::string_view name;
std::atomic_uint32_t value;
static std::vector<Counter *> instances;
};
class Timer {
public:
Timer(std::string name);
void stop();
static void print();
private:
static std::vector<Timer *> instances;
std::string name;
u64 start;
u64 end;
u64 user;
u64 sys;
bool stopped = false;
};
class ScopedTimer {
public:
ScopedTimer(std::string name) {
timer = new Timer(name);
}
~ScopedTimer() {
timer->stop();
}
private:
Timer *timer;
};
//
// sha1.cc
//
class SHA1 {
public:
enum { hash_size = 20 };
void update(const u8 *msg, u32 len);
void get_result(u8 *digest);
private:
void process_message_block();
void pad_message();
u32 hash[5] = {0x67452301, 0xEFCDAB89, 0x98BADCFE, 0x10325476, 0xC3D2E1F0};
u32 length_low = 0;
u32 length_high = 0;
i16 block_idx = 0;
u8 block[64] = {};
int computed = 0;
};
//
// mapfile.cc
//
void print_map();
//
// main.cc
//
MemoryMappedFile *find_library(std::string path, std::span<std::string_view> lib_paths);
void read_file(MemoryMappedFile *mb, bool as_needed);
//
// Inline objects and functions
//
namespace out {
inline std::vector<ObjectFile *> objs;
inline std::vector<SharedFile *> dsos;
inline std::vector<OutputChunk *> chunks;
inline u8 *buf;
inline OutputEhdr *ehdr;
inline OutputShdr *shdr;
inline OutputPhdr *phdr;
inline InterpSection *interp;
inline GotSection *got;
inline GotPltSection *gotplt;
inline RelPltSection *relplt;
inline RelDynSection *reldyn;
inline DynamicSection *dynamic;
inline StrtabSection *strtab;
inline DynstrSection *dynstr;
inline HashSection *hash;
inline ShstrtabSection *shstrtab;
inline PltSection *plt;
inline SymtabSection *symtab;
inline DynsymSection *dynsym;
inline CopyrelSection *copyrel;
inline VersymSection *versym;
inline VerneedSection *verneed;
inline u64 tls_end;
inline Symbol *__bss_start;
inline Symbol *__ehdr_start;
inline Symbol *__rela_iplt_start;
inline Symbol *__rela_iplt_end;
inline Symbol *__init_array_start;
inline Symbol *__init_array_end;
inline Symbol *__fini_array_start;
inline Symbol *__fini_array_end;
inline Symbol *__preinit_array_start;
inline Symbol *__preinit_array_end;
inline Symbol *_DYNAMIC;
inline Symbol *_GLOBAL_OFFSET_TABLE_;
inline Symbol *_end;
inline Symbol *_etext;
inline Symbol *_edata;
}
inline void message(std::string msg) {
static std::mutex mu;
std::lock_guard lock(mu);
std::cout << msg << "\n";
}
inline std::string to_string(Symbol sym) {
return std::string(sym.name) + "(" + to_string(sym.file) + ")";
}
inline u64 align_to(u64 val, u64 align) {
assert(__builtin_popcount(align) == 1);
return (val + align - 1) & ~(align - 1);
}
inline u64 Symbol::get_addr() const {
if (piece_ref.piece)
return piece_ref.piece->get_addr() + piece_ref.addend;
if (copyrel_offset != -1)
return out::copyrel->shdr.sh_addr + copyrel_offset;
if (input_section) {
if (!input_section->is_alive) {
// The control can reach here if there's a relocation that refers
// a local symbol belonging to a comdat group section. This is a
// violation of the spec, as all relocations should use only global
// symbols of comdat members. However, .eh_frame tends to have such
// relocations.
return 0;
}
return input_section->get_addr() + value;
}
if (file && file->is_dso && copyrel_offset == -1)
return get_plt_addr();
return value;
}
inline u64 Symbol::get_got_addr() const {
assert(got_idx != -1);
return out::got->shdr.sh_addr + got_idx * GOT_SIZE;
}
inline u64 Symbol::get_gotplt_addr() const {
assert(gotplt_idx != -1);
return out::gotplt->shdr.sh_addr + gotplt_idx * GOT_SIZE;
}
inline u64 Symbol::get_gottpoff_addr() const {
assert(gottpoff_idx != -1);
return out::got->shdr.sh_addr + gottpoff_idx * GOT_SIZE;
}
inline u64 Symbol::get_tlsgd_addr() const {
assert(tlsgd_idx != -1);