]>
Commit | Line | Data |
---|---|---|
61ba1cf9 ILT |
1 | // archive.cc -- archive support for gold |
2 | ||
ebdbb458 | 3 | // Copyright 2006, 2007, 2008 Free Software Foundation, Inc. |
6cb15b7f ILT |
4 | // Written by Ian Lance Taylor <[email protected]>. |
5 | ||
6 | // This file is part of gold. | |
7 | ||
8 | // This program is free software; you can redistribute it and/or modify | |
9 | // it under the terms of the GNU General Public License as published by | |
10 | // the Free Software Foundation; either version 3 of the License, or | |
11 | // (at your option) any later version. | |
12 | ||
13 | // This program is distributed in the hope that it will be useful, | |
14 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
15 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
16 | // GNU General Public License for more details. | |
17 | ||
18 | // You should have received a copy of the GNU General Public License | |
19 | // along with this program; if not, write to the Free Software | |
20 | // Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, | |
21 | // MA 02110-1301, USA. | |
22 | ||
61ba1cf9 ILT |
23 | #include "gold.h" |
24 | ||
25 | #include <cerrno> | |
26 | #include <cstring> | |
27 | #include <climits> | |
28 | #include <vector> | |
a1207466 CC |
29 | #include "libiberty.h" |
30 | #include "filenames.h" | |
61ba1cf9 ILT |
31 | |
32 | #include "elfcpp.h" | |
7e1edb90 | 33 | #include "options.h" |
7d9e3d98 | 34 | #include "mapfile.h" |
61ba1cf9 | 35 | #include "fileread.h" |
ead1e424 | 36 | #include "readsyms.h" |
61ba1cf9 ILT |
37 | #include "symtab.h" |
38 | #include "object.h" | |
39 | #include "archive.h" | |
89fc3421 | 40 | #include "plugin.h" |
61ba1cf9 ILT |
41 | |
42 | namespace gold | |
43 | { | |
44 | ||
45 | // The header of an entry in the archive. This is all readable text, | |
46 | // padded with spaces where necesary. If the contents of an archive | |
47 | // are all text file, the entire archive is readable. | |
48 | ||
49 | struct Archive::Archive_header | |
50 | { | |
51 | // The entry name. | |
52 | char ar_name[16]; | |
53 | // The file modification time. | |
54 | char ar_date[12]; | |
55 | // The user's UID in decimal. | |
56 | char ar_uid[6]; | |
57 | // The user's GID in decimal. | |
58 | char ar_gid[6]; | |
59 | // The file mode in octal. | |
60 | char ar_mode[8]; | |
61 | // The file size in decimal. | |
62 | char ar_size[10]; | |
63 | // The final magic code. | |
64 | char ar_fmag[2]; | |
65 | }; | |
66 | ||
ac45a351 CC |
67 | // Class Archive static variables. |
68 | unsigned int Archive::total_archives; | |
69 | unsigned int Archive::total_members; | |
70 | unsigned int Archive::total_members_loaded; | |
71 | ||
61ba1cf9 ILT |
72 | // Archive methods. |
73 | ||
74 | const char Archive::armag[sarmag] = | |
75 | { | |
76 | '!', '<', 'a', 'r', 'c', 'h', '>', '\n' | |
77 | }; | |
78 | ||
a1207466 CC |
79 | const char Archive::armagt[sarmag] = |
80 | { | |
81 | '!', '<', 't', 'h', 'i', 'n', '>', '\n' | |
82 | }; | |
83 | ||
61ba1cf9 ILT |
84 | const char Archive::arfmag[2] = { '`', '\n' }; |
85 | ||
61ba1cf9 ILT |
86 | // Set up the archive: read the symbol map and the extended name |
87 | // table. | |
88 | ||
89 | void | |
ac45a351 | 90 | Archive::setup(Input_objects* input_objects) |
61ba1cf9 | 91 | { |
3e95a404 ILT |
92 | // We need to ignore empty archives. |
93 | if (this->input_file_->file().filesize() == sarmag) | |
a1207466 | 94 | return; |
3e95a404 | 95 | |
61ba1cf9 ILT |
96 | // The first member of the archive should be the symbol table. |
97 | std::string armap_name; | |
8383303e | 98 | section_size_type armap_size = |
cb295612 | 99 | convert_to_section_size_type(this->read_header(sarmag, false, |
a1207466 | 100 | &armap_name, NULL)); |
75f2446e | 101 | off_t off = sarmag; |
4973341a ILT |
102 | if (armap_name.empty()) |
103 | { | |
104 | this->read_armap(sarmag + sizeof(Archive_header), armap_size); | |
105 | off = sarmag + sizeof(Archive_header) + armap_size; | |
106 | } | |
45aa233b | 107 | else if (!this->input_file_->options().whole_archive()) |
75f2446e ILT |
108 | gold_error(_("%s: no archive symbol table (run ranlib)"), |
109 | this->name().c_str()); | |
4973341a | 110 | |
cb295612 ILT |
111 | // See if there is an extended name table. We cache these views |
112 | // because it is likely that we will want to read the following | |
113 | // header in the add_symbols routine. | |
4973341a ILT |
114 | if ((off & 1) != 0) |
115 | ++off; | |
116 | std::string xname; | |
cb295612 | 117 | section_size_type extended_size = |
a1207466 | 118 | convert_to_section_size_type(this->read_header(off, true, &xname, NULL)); |
4973341a ILT |
119 | if (xname == "/") |
120 | { | |
121 | const unsigned char* p = this->get_view(off + sizeof(Archive_header), | |
39d0cb0e | 122 | extended_size, false, true); |
4973341a ILT |
123 | const char* px = reinterpret_cast<const char*>(p); |
124 | this->extended_names_.assign(px, extended_size); | |
125 | } | |
ac45a351 CC |
126 | bool preread_syms = (parameters->options().threads() |
127 | && parameters->options().preread_archive_symbols()); | |
128 | #ifndef ENABLE_THREADS | |
129 | preread_syms = false; | |
89fc3421 CC |
130 | #else |
131 | if (parameters->options().has_plugins()) | |
132 | preread_syms = false; | |
ac45a351 CC |
133 | #endif |
134 | if (preread_syms) | |
135 | this->read_all_symbols(input_objects); | |
a1207466 CC |
136 | } |
137 | ||
138 | // Unlock any nested archives. | |
4973341a | 139 | |
a1207466 CC |
140 | void |
141 | Archive::unlock_nested_archives() | |
142 | { | |
143 | for (Nested_archive_table::iterator p = this->nested_archives_.begin(); | |
144 | p != this->nested_archives_.end(); | |
145 | ++p) | |
146 | { | |
147 | p->second->unlock(this->task_); | |
148 | } | |
4973341a | 149 | } |
61ba1cf9 | 150 | |
4973341a ILT |
151 | // Read the archive symbol map. |
152 | ||
153 | void | |
8383303e | 154 | Archive::read_armap(off_t start, section_size_type size) |
4973341a | 155 | { |
ac45a351 CC |
156 | // To count the total number of archive members, we'll just count |
157 | // the number of times the file offset changes. Since most archives | |
158 | // group the symbols in the armap by object, this ought to give us | |
159 | // an accurate count. | |
160 | off_t last_seen_offset = -1; | |
161 | ||
61ba1cf9 | 162 | // Read in the entire armap. |
39d0cb0e | 163 | const unsigned char* p = this->get_view(start, size, true, false); |
61ba1cf9 ILT |
164 | |
165 | // Numbers in the armap are always big-endian. | |
166 | const elfcpp::Elf_Word* pword = reinterpret_cast<const elfcpp::Elf_Word*>(p); | |
f6ce93d6 | 167 | unsigned int nsyms = elfcpp::Swap<32, true>::readval(pword); |
61ba1cf9 ILT |
168 | ++pword; |
169 | ||
170 | // Note that the addition is in units of sizeof(elfcpp::Elf_Word). | |
171 | const char* pnames = reinterpret_cast<const char*>(pword + nsyms); | |
8383303e ILT |
172 | section_size_type names_size = |
173 | reinterpret_cast<const char*>(p) + size - pnames; | |
9eb9fa57 | 174 | this->armap_names_.assign(pnames, names_size); |
61ba1cf9 ILT |
175 | |
176 | this->armap_.resize(nsyms); | |
177 | ||
8383303e | 178 | section_offset_type name_offset = 0; |
61ba1cf9 ILT |
179 | for (unsigned int i = 0; i < nsyms; ++i) |
180 | { | |
9eb9fa57 ILT |
181 | this->armap_[i].name_offset = name_offset; |
182 | this->armap_[i].file_offset = elfcpp::Swap<32, true>::readval(pword); | |
183 | name_offset += strlen(pnames + name_offset) + 1; | |
61ba1cf9 | 184 | ++pword; |
ac45a351 CC |
185 | if (this->armap_[i].file_offset != last_seen_offset) |
186 | { | |
187 | last_seen_offset = this->armap_[i].file_offset; | |
188 | ++this->num_members_; | |
189 | } | |
61ba1cf9 ILT |
190 | } |
191 | ||
8383303e | 192 | if (static_cast<section_size_type>(name_offset) > names_size) |
75f2446e ILT |
193 | gold_error(_("%s: bad archive symbol table names"), |
194 | this->name().c_str()); | |
a93d6d07 ILT |
195 | |
196 | // This array keeps track of which symbols are for archive elements | |
197 | // which we have already included in the link. | |
198 | this->armap_checked_.resize(nsyms); | |
61ba1cf9 ILT |
199 | } |
200 | ||
201 | // Read the header of an archive member at OFF. Fail if something | |
202 | // goes wrong. Return the size of the member. Set *PNAME to the name | |
203 | // of the member. | |
204 | ||
205 | off_t | |
a1207466 CC |
206 | Archive::read_header(off_t off, bool cache, std::string* pname, |
207 | off_t* nested_off) | |
61ba1cf9 | 208 | { |
39d0cb0e ILT |
209 | const unsigned char* p = this->get_view(off, sizeof(Archive_header), true, |
210 | cache); | |
61ba1cf9 | 211 | const Archive_header* hdr = reinterpret_cast<const Archive_header*>(p); |
a1207466 | 212 | return this->interpret_header(hdr, off, pname, nested_off); |
4973341a | 213 | } |
61ba1cf9 | 214 | |
4973341a ILT |
215 | // Interpret the header of HDR, the header of the archive member at |
216 | // file offset OFF. Fail if something goes wrong. Return the size of | |
217 | // the member. Set *PNAME to the name of the member. | |
218 | ||
219 | off_t | |
220 | Archive::interpret_header(const Archive_header* hdr, off_t off, | |
92de84a6 | 221 | std::string* pname, off_t* nested_off) const |
4973341a | 222 | { |
61ba1cf9 ILT |
223 | if (memcmp(hdr->ar_fmag, arfmag, sizeof arfmag) != 0) |
224 | { | |
75f2446e ILT |
225 | gold_error(_("%s: malformed archive header at %zu"), |
226 | this->name().c_str(), static_cast<size_t>(off)); | |
227 | return this->input_file_->file().filesize() - off; | |
61ba1cf9 ILT |
228 | } |
229 | ||
230 | const int size_string_size = sizeof hdr->ar_size; | |
231 | char size_string[size_string_size + 1]; | |
232 | memcpy(size_string, hdr->ar_size, size_string_size); | |
233 | char* ps = size_string + size_string_size; | |
234 | while (ps[-1] == ' ') | |
235 | --ps; | |
236 | *ps = '\0'; | |
237 | ||
238 | errno = 0; | |
239 | char* end; | |
240 | off_t member_size = strtol(size_string, &end, 10); | |
241 | if (*end != '\0' | |
242 | || member_size < 0 | |
243 | || (member_size == LONG_MAX && errno == ERANGE)) | |
244 | { | |
75f2446e ILT |
245 | gold_error(_("%s: malformed archive header size at %zu"), |
246 | this->name().c_str(), static_cast<size_t>(off)); | |
247 | return this->input_file_->file().filesize() - off; | |
61ba1cf9 ILT |
248 | } |
249 | ||
250 | if (hdr->ar_name[0] != '/') | |
251 | { | |
252 | const char* name_end = strchr(hdr->ar_name, '/'); | |
253 | if (name_end == NULL | |
254 | || name_end - hdr->ar_name >= static_cast<int>(sizeof hdr->ar_name)) | |
255 | { | |
a0c4fb0a | 256 | gold_error(_("%s: malformed archive header name at %zu"), |
75f2446e ILT |
257 | this->name().c_str(), static_cast<size_t>(off)); |
258 | return this->input_file_->file().filesize() - off; | |
61ba1cf9 ILT |
259 | } |
260 | pname->assign(hdr->ar_name, name_end - hdr->ar_name); | |
a1207466 CC |
261 | if (nested_off != NULL) |
262 | *nested_off = 0; | |
61ba1cf9 ILT |
263 | } |
264 | else if (hdr->ar_name[1] == ' ') | |
265 | { | |
266 | // This is the symbol table. | |
267 | pname->clear(); | |
268 | } | |
269 | else if (hdr->ar_name[1] == '/') | |
270 | { | |
271 | // This is the extended name table. | |
272 | pname->assign(1, '/'); | |
273 | } | |
274 | else | |
275 | { | |
276 | errno = 0; | |
277 | long x = strtol(hdr->ar_name + 1, &end, 10); | |
a1207466 CC |
278 | long y = 0; |
279 | if (*end == ':') | |
280 | y = strtol(end + 1, &end, 10); | |
61ba1cf9 ILT |
281 | if (*end != ' ' |
282 | || x < 0 | |
283 | || (x == LONG_MAX && errno == ERANGE) | |
284 | || static_cast<size_t>(x) >= this->extended_names_.size()) | |
285 | { | |
75f2446e ILT |
286 | gold_error(_("%s: bad extended name index at %zu"), |
287 | this->name().c_str(), static_cast<size_t>(off)); | |
288 | return this->input_file_->file().filesize() - off; | |
61ba1cf9 ILT |
289 | } |
290 | ||
291 | const char* name = this->extended_names_.data() + x; | |
a1207466 | 292 | const char* name_end = strchr(name, '\n'); |
61ba1cf9 | 293 | if (static_cast<size_t>(name_end - name) > this->extended_names_.size() |
a1207466 | 294 | || name_end[-1] != '/') |
61ba1cf9 | 295 | { |
75f2446e ILT |
296 | gold_error(_("%s: bad extended name entry at header %zu"), |
297 | this->name().c_str(), static_cast<size_t>(off)); | |
298 | return this->input_file_->file().filesize() - off; | |
61ba1cf9 | 299 | } |
a1207466 CC |
300 | pname->assign(name, name_end - 1 - name); |
301 | if (nested_off != NULL) | |
302 | *nested_off = y; | |
61ba1cf9 ILT |
303 | } |
304 | ||
305 | return member_size; | |
306 | } | |
307 | ||
92de84a6 ILT |
308 | // An archive member iterator. |
309 | ||
310 | class Archive::const_iterator | |
311 | { | |
312 | public: | |
313 | // The header of an archive member. This is what this iterator | |
314 | // points to. | |
315 | struct Header | |
316 | { | |
317 | // The name of the member. | |
318 | std::string name; | |
319 | // The file offset of the member. | |
320 | off_t off; | |
321 | // The file offset of a nested archive member. | |
322 | off_t nested_off; | |
323 | // The size of the member. | |
324 | off_t size; | |
325 | }; | |
326 | ||
2a00e4fb | 327 | const_iterator(Archive* archive, off_t off) |
92de84a6 ILT |
328 | : archive_(archive), off_(off) |
329 | { this->read_next_header(); } | |
330 | ||
331 | const Header& | |
332 | operator*() const | |
333 | { return this->header_; } | |
334 | ||
335 | const Header* | |
336 | operator->() const | |
337 | { return &this->header_; } | |
338 | ||
339 | const_iterator& | |
340 | operator++() | |
341 | { | |
342 | if (this->off_ == this->archive_->file().filesize()) | |
343 | return *this; | |
344 | this->off_ += sizeof(Archive_header); | |
345 | if (!this->archive_->is_thin_archive()) | |
346 | this->off_ += this->header_.size; | |
347 | if ((this->off_ & 1) != 0) | |
348 | ++this->off_; | |
349 | this->read_next_header(); | |
350 | return *this; | |
351 | } | |
352 | ||
353 | const_iterator | |
354 | operator++(int) | |
355 | { | |
356 | const_iterator ret = *this; | |
357 | ++*this; | |
358 | return ret; | |
359 | } | |
360 | ||
361 | bool | |
362 | operator==(const const_iterator p) const | |
363 | { return this->off_ == p->off; } | |
364 | ||
365 | bool | |
366 | operator!=(const const_iterator p) const | |
367 | { return this->off_ != p->off; } | |
368 | ||
369 | private: | |
370 | void | |
371 | read_next_header(); | |
372 | ||
373 | // The underlying archive. | |
2a00e4fb | 374 | Archive* archive_; |
92de84a6 ILT |
375 | // The current offset in the file. |
376 | off_t off_; | |
377 | // The current archive header. | |
378 | Header header_; | |
379 | }; | |
380 | ||
381 | // Read the next archive header. | |
4973341a ILT |
382 | |
383 | void | |
92de84a6 | 384 | Archive::const_iterator::read_next_header() |
4973341a | 385 | { |
92de84a6 | 386 | off_t filesize = this->archive_->file().filesize(); |
4973341a ILT |
387 | while (true) |
388 | { | |
92de84a6 ILT |
389 | if (filesize - this->off_ < static_cast<off_t>(sizeof(Archive_header))) |
390 | { | |
391 | if (filesize != this->off_) | |
392 | { | |
393 | gold_error(_("%s: short archive header at %zu"), | |
394 | this->archive_->filename().c_str(), | |
395 | static_cast<size_t>(this->off_)); | |
396 | this->off_ = filesize; | |
397 | } | |
398 | this->header_.off = filesize; | |
399 | return; | |
400 | } | |
401 | ||
402 | unsigned char buf[sizeof(Archive_header)]; | |
403 | this->archive_->file().read(this->off_, sizeof(Archive_header), buf); | |
404 | ||
405 | const Archive_header* hdr = reinterpret_cast<const Archive_header*>(buf); | |
406 | this->header_.size = | |
407 | this->archive_->interpret_header(hdr, this->off_, &this->header_.name, | |
408 | &this->header_.nested_off); | |
409 | this->header_.off = this->off_; | |
410 | ||
411 | // Skip special members. | |
412 | if (!this->header_.name.empty() && this->header_.name != "/") | |
413 | return; | |
414 | ||
415 | this->off_ += sizeof(Archive_header) + this->header_.size; | |
416 | if ((this->off_ & 1) != 0) | |
417 | ++this->off_; | |
4973341a ILT |
418 | } |
419 | } | |
420 | ||
92de84a6 ILT |
421 | // Initial iterator. |
422 | ||
423 | Archive::const_iterator | |
2a00e4fb | 424 | Archive::begin() |
92de84a6 ILT |
425 | { |
426 | return Archive::const_iterator(this, sarmag); | |
427 | } | |
428 | ||
429 | // Final iterator. | |
430 | ||
431 | Archive::const_iterator | |
2a00e4fb | 432 | Archive::end() |
92de84a6 ILT |
433 | { |
434 | return Archive::const_iterator(this, this->input_file_->file().filesize()); | |
435 | } | |
436 | ||
ac45a351 CC |
437 | // Get the file and offset for an archive member, which may be an |
438 | // external member of a thin archive. Set *INPUT_FILE to the | |
439 | // file containing the actual member, *MEMOFF to the offset | |
440 | // within that file (0 if not a nested archive), and *MEMBER_NAME | |
441 | // to the name of the archive member. Return TRUE on success. | |
442 | ||
443 | bool | |
444 | Archive::get_file_and_offset(off_t off, Input_objects* input_objects, | |
445 | Input_file** input_file, off_t* memoff, | |
89fc3421 | 446 | off_t* memsize, std::string* member_name) |
ac45a351 CC |
447 | { |
448 | off_t nested_off; | |
449 | ||
89fc3421 | 450 | *memsize = this->read_header(off, false, member_name, &nested_off); |
ac45a351 CC |
451 | |
452 | *input_file = this->input_file_; | |
453 | *memoff = off + static_cast<off_t>(sizeof(Archive_header)); | |
454 | ||
455 | if (!this->is_thin_archive_) | |
456 | return true; | |
457 | ||
458 | // Adjust a relative pathname so that it is relative | |
459 | // to the directory containing the archive. | |
460 | if (!IS_ABSOLUTE_PATH(member_name->c_str())) | |
461 | { | |
fbd8a257 | 462 | const char* arch_path = this->filename().c_str(); |
ac45a351 CC |
463 | const char* basename = lbasename(arch_path); |
464 | if (basename > arch_path) | |
465 | member_name->replace(0, 0, | |
fbd8a257 | 466 | this->filename().substr(0, basename - arch_path)); |
ac45a351 CC |
467 | } |
468 | ||
469 | if (nested_off > 0) | |
470 | { | |
471 | // This is a member of a nested archive. Open the containing | |
472 | // archive if we don't already have it open, then do a recursive | |
473 | // call to include the member from that archive. | |
474 | Archive* arch; | |
475 | Nested_archive_table::const_iterator p = | |
476 | this->nested_archives_.find(*member_name); | |
477 | if (p != this->nested_archives_.end()) | |
478 | arch = p->second; | |
479 | else | |
480 | { | |
481 | Input_file_argument* input_file_arg = | |
482 | new Input_file_argument(member_name->c_str(), false, "", false, | |
483 | parameters->options()); | |
484 | *input_file = new Input_file(input_file_arg); | |
485 | if (!(*input_file)->open(parameters->options(), *this->dirpath_, | |
486 | this->task_)) | |
487 | return false; | |
488 | arch = new Archive(*member_name, *input_file, false, this->dirpath_, | |
489 | this->task_); | |
490 | arch->setup(input_objects); | |
491 | std::pair<Nested_archive_table::iterator, bool> ins = | |
492 | this->nested_archives_.insert(std::make_pair(*member_name, arch)); | |
493 | gold_assert(ins.second); | |
494 | } | |
89fc3421 CC |
495 | return arch->get_file_and_offset(nested_off, input_objects, input_file, |
496 | memoff, memsize, member_name); | |
ac45a351 CC |
497 | } |
498 | ||
499 | // This is an external member of a thin archive. Open the | |
500 | // file as a regular relocatable object file. | |
501 | Input_file_argument* input_file_arg = | |
502 | new Input_file_argument(member_name->c_str(), false, "", false, | |
503 | this->input_file_->options()); | |
504 | *input_file = new Input_file(input_file_arg); | |
505 | if (!(*input_file)->open(parameters->options(), *this->dirpath_, | |
506 | this->task_)) | |
507 | return false; | |
508 | ||
509 | *memoff = 0; | |
89fc3421 | 510 | *memsize = (*input_file)->file().filesize(); |
ac45a351 CC |
511 | return true; |
512 | } | |
513 | ||
514 | // Return an ELF object for the member at offset OFF. Set *MEMBER_NAME to | |
515 | // the name of the member. | |
516 | ||
517 | Object* | |
518 | Archive::get_elf_object_for_member(off_t off, Input_objects* input_objects) | |
519 | { | |
520 | std::string member_name; | |
521 | Input_file* input_file; | |
522 | off_t memoff; | |
89fc3421 | 523 | off_t memsize; |
ac45a351 CC |
524 | |
525 | if (!this->get_file_and_offset(off, input_objects, &input_file, &memoff, | |
89fc3421 | 526 | &memsize, &member_name)) |
ac45a351 CC |
527 | return NULL; |
528 | ||
89fc3421 CC |
529 | if (parameters->options().has_plugins()) |
530 | { | |
531 | Object* obj = parameters->options().plugins()->claim_file(input_file, | |
532 | memoff, | |
533 | memsize); | |
534 | if (obj != NULL) | |
535 | { | |
536 | // The input file was claimed by a plugin, and its symbols | |
537 | // have been provided by the plugin. | |
538 | input_file->file().claim_for_plugin(); | |
539 | return obj; | |
540 | } | |
541 | } | |
542 | ||
ac45a351 CC |
543 | off_t filesize = input_file->file().filesize(); |
544 | int read_size = elfcpp::Elf_sizes<64>::ehdr_size; | |
545 | if (filesize - memoff < read_size) | |
546 | read_size = filesize - memoff; | |
547 | ||
548 | if (read_size < 4) | |
549 | { | |
550 | gold_error(_("%s: member at %zu is not an ELF object"), | |
551 | this->name().c_str(), static_cast<size_t>(off)); | |
552 | return NULL; | |
553 | } | |
554 | ||
555 | const unsigned char* ehdr = input_file->file().get_view(memoff, 0, read_size, | |
556 | true, false); | |
557 | ||
558 | static unsigned char elfmagic[4] = | |
559 | { | |
560 | elfcpp::ELFMAG0, elfcpp::ELFMAG1, | |
561 | elfcpp::ELFMAG2, elfcpp::ELFMAG3 | |
562 | }; | |
563 | if (memcmp(ehdr, elfmagic, 4) != 0) | |
564 | { | |
565 | gold_error(_("%s: member at %zu is not an ELF object"), | |
566 | this->name().c_str(), static_cast<size_t>(off)); | |
567 | return NULL; | |
568 | } | |
569 | ||
570 | return make_elf_object((std::string(this->input_file_->filename()) | |
571 | + "(" + member_name + ")"), | |
572 | input_file, memoff, ehdr, read_size); | |
573 | } | |
574 | ||
575 | // Read the symbols from all the archive members in the link. | |
576 | ||
577 | void | |
578 | Archive::read_all_symbols(Input_objects* input_objects) | |
579 | { | |
580 | for (Archive::const_iterator p = this->begin(); | |
581 | p != this->end(); | |
582 | ++p) | |
583 | this->read_symbols(input_objects, p->off); | |
584 | } | |
585 | ||
586 | // Read the symbols from an archive member in the link. OFF is the file | |
587 | // offset of the member header. | |
588 | ||
589 | void | |
590 | Archive::read_symbols(Input_objects* input_objects, off_t off) | |
591 | { | |
592 | Object* obj = this->get_elf_object_for_member(off, input_objects); | |
593 | ||
594 | if (obj == NULL) | |
595 | return; | |
596 | ||
597 | Read_symbols_data* sd = new Read_symbols_data; | |
598 | obj->read_symbols(sd); | |
599 | Archive_member member(obj, sd); | |
600 | this->members_[off] = member; | |
601 | } | |
602 | ||
603 | // Select members from the archive and add them to the link. We walk | |
604 | // through the elements in the archive map, and look each one up in | |
605 | // the symbol table. If it exists as a strong undefined symbol, we | |
606 | // pull in the corresponding element. We have to do this in a loop, | |
607 | // since pulling in one element may create new undefined symbols which | |
608 | // may be satisfied by other objects in the archive. | |
609 | ||
610 | void | |
611 | Archive::add_symbols(Symbol_table* symtab, Layout* layout, | |
612 | Input_objects* input_objects, Mapfile* mapfile) | |
613 | { | |
614 | ++Archive::total_archives; | |
615 | ||
616 | if (this->input_file_->options().whole_archive()) | |
617 | return this->include_all_members(symtab, layout, input_objects, | |
618 | mapfile); | |
619 | ||
620 | Archive::total_members += this->num_members_; | |
621 | ||
622 | input_objects->archive_start(this); | |
623 | ||
624 | const size_t armap_size = this->armap_.size(); | |
625 | ||
626 | // This is a quick optimization, since we usually see many symbols | |
627 | // in a row with the same offset. last_seen_offset holds the last | |
628 | // offset we saw that was present in the seen_offsets_ set. | |
629 | off_t last_seen_offset = -1; | |
630 | ||
631 | // Track which symbols in the symbol table we've already found to be | |
632 | // defined. | |
633 | ||
634 | bool added_new_object; | |
635 | do | |
636 | { | |
637 | added_new_object = false; | |
638 | for (size_t i = 0; i < armap_size; ++i) | |
639 | { | |
640 | if (this->armap_checked_[i]) | |
641 | continue; | |
642 | if (this->armap_[i].file_offset == last_seen_offset) | |
643 | { | |
644 | this->armap_checked_[i] = true; | |
645 | continue; | |
646 | } | |
647 | if (this->seen_offsets_.find(this->armap_[i].file_offset) | |
648 | != this->seen_offsets_.end()) | |
649 | { | |
650 | this->armap_checked_[i] = true; | |
651 | last_seen_offset = this->armap_[i].file_offset; | |
652 | continue; | |
653 | } | |
654 | ||
655 | const char* sym_name = (this->armap_names_.data() | |
656 | + this->armap_[i].name_offset); | |
657 | Symbol* sym = symtab->lookup(sym_name); | |
658 | if (sym == NULL) | |
659 | { | |
660 | // Check whether the symbol was named in a -u option. | |
661 | if (!parameters->options().is_undefined(sym_name)) | |
662 | continue; | |
663 | } | |
664 | else if (!sym->is_undefined()) | |
665 | { | |
666 | this->armap_checked_[i] = true; | |
667 | continue; | |
668 | } | |
669 | else if (sym->binding() == elfcpp::STB_WEAK) | |
670 | continue; | |
671 | ||
672 | // We want to include this object in the link. | |
673 | last_seen_offset = this->armap_[i].file_offset; | |
674 | this->seen_offsets_.insert(last_seen_offset); | |
675 | this->armap_checked_[i] = true; | |
676 | ||
677 | std::string why; | |
678 | if (sym == NULL) | |
679 | { | |
680 | why = "-u "; | |
681 | why += sym_name; | |
682 | } | |
683 | this->include_member(symtab, layout, input_objects, | |
684 | last_seen_offset, mapfile, sym, why.c_str()); | |
685 | ||
686 | added_new_object = true; | |
687 | } | |
688 | } | |
689 | while (added_new_object); | |
690 | ||
691 | input_objects->archive_stop(this); | |
692 | } | |
693 | ||
92de84a6 ILT |
694 | // Include all the archive members in the link. This is for --whole-archive. |
695 | ||
696 | void | |
697 | Archive::include_all_members(Symbol_table* symtab, Layout* layout, | |
698 | Input_objects* input_objects, Mapfile* mapfile) | |
699 | { | |
700 | input_objects->archive_start(this); | |
701 | ||
ac45a351 CC |
702 | if (this->members_.size() > 0) |
703 | { | |
704 | std::map<off_t, Archive_member>::const_iterator p; | |
705 | for (p = this->members_.begin(); | |
706 | p != this->members_.end(); | |
707 | ++p) | |
708 | { | |
709 | this->include_member(symtab, layout, input_objects, p->first, | |
710 | mapfile, NULL, "--whole-archive"); | |
711 | ++Archive::total_members; | |
712 | } | |
713 | } | |
714 | else | |
715 | { | |
716 | for (Archive::const_iterator p = this->begin(); | |
717 | p != this->end(); | |
718 | ++p) | |
719 | { | |
720 | this->include_member(symtab, layout, input_objects, p->off, | |
721 | mapfile, NULL, "--whole-archive"); | |
722 | ++Archive::total_members; | |
723 | } | |
724 | } | |
92de84a6 ILT |
725 | |
726 | input_objects->archive_stop(this); | |
727 | } | |
728 | ||
729 | // Return the number of members in the archive. This is only used for | |
730 | // reports. | |
731 | ||
732 | size_t | |
2a00e4fb | 733 | Archive::count_members() |
92de84a6 ILT |
734 | { |
735 | size_t ret = 0; | |
736 | for (Archive::const_iterator p = this->begin(); | |
737 | p != this->end(); | |
738 | ++p) | |
739 | ++ret; | |
740 | return ret; | |
741 | } | |
742 | ||
61ba1cf9 | 743 | // Include an archive member in the link. OFF is the file offset of |
7d9e3d98 | 744 | // the member header. WHY is the reason we are including this member. |
61ba1cf9 ILT |
745 | |
746 | void | |
7e1edb90 | 747 | Archive::include_member(Symbol_table* symtab, Layout* layout, |
7d9e3d98 ILT |
748 | Input_objects* input_objects, off_t off, |
749 | Mapfile* mapfile, Symbol* sym, const char* why) | |
61ba1cf9 | 750 | { |
ac45a351 | 751 | ++Archive::total_members_loaded; |
7d9e3d98 | 752 | |
ac45a351 CC |
753 | std::map<off_t, Archive_member>::const_iterator p = this->members_.find(off); |
754 | if (p != this->members_.end()) | |
a1207466 | 755 | { |
ac45a351 CC |
756 | Object *obj = p->second.obj_; |
757 | Read_symbols_data *sd = p->second.sd_; | |
758 | if (mapfile != NULL) | |
759 | mapfile->report_include_archive_member(obj->name(), sym, why); | |
760 | if (input_objects->add_object(obj)) | |
a1207466 | 761 | { |
ac45a351 CC |
762 | obj->layout(symtab, layout, sd); |
763 | obj->add_symbols(symtab, sd); | |
a1207466 | 764 | } |
ac45a351 | 765 | delete sd; |
75f2446e | 766 | return; |
61ba1cf9 ILT |
767 | } |
768 | ||
ac45a351 CC |
769 | Object* obj = this->get_elf_object_for_member(off, input_objects); |
770 | if (obj == NULL) | |
771 | return; | |
61ba1cf9 | 772 | |
ac45a351 CC |
773 | if (mapfile != NULL) |
774 | mapfile->report_include_archive_member(obj->name(), sym, why); | |
61ba1cf9 | 775 | |
89fc3421 CC |
776 | Pluginobj* pluginobj = obj->pluginobj(); |
777 | if (pluginobj != NULL) | |
778 | { | |
779 | pluginobj->add_symbols(symtab, layout); | |
780 | return; | |
781 | } | |
782 | ||
019cdb1a ILT |
783 | if (input_objects->add_object(obj)) |
784 | { | |
785 | Read_symbols_data sd; | |
786 | obj->read_symbols(&sd); | |
787 | obj->layout(symtab, layout, &sd); | |
788 | obj->add_symbols(symtab, &sd); | |
fbd8a257 CC |
789 | |
790 | // If this is an external member of a thin archive, unlock the file | |
791 | // for the next task. | |
792 | if (obj->offset() == 0) | |
793 | obj->unlock(this->task_); | |
019cdb1a ILT |
794 | } |
795 | else | |
796 | { | |
797 | // FIXME: We need to close the descriptor here. | |
798 | delete obj; | |
799 | } | |
ac45a351 | 800 | } |
61ba1cf9 | 801 | |
ac45a351 CC |
802 | // Print statistical information to stderr. This is used for --stats. |
803 | ||
804 | void | |
805 | Archive::print_stats() | |
806 | { | |
807 | fprintf(stderr, _("%s: archive libraries: %u\n"), | |
808 | program_name, Archive::total_archives); | |
809 | fprintf(stderr, _("%s: total archive members: %u\n"), | |
810 | program_name, Archive::total_members); | |
811 | fprintf(stderr, _("%s: loaded archive members: %u\n"), | |
812 | program_name, Archive::total_members_loaded); | |
61ba1cf9 ILT |
813 | } |
814 | ||
815 | // Add_archive_symbols methods. | |
816 | ||
817 | Add_archive_symbols::~Add_archive_symbols() | |
818 | { | |
819 | if (this->this_blocker_ != NULL) | |
820 | delete this->this_blocker_; | |
821 | // next_blocker_ is deleted by the task associated with the next | |
822 | // input file. | |
823 | } | |
824 | ||
825 | // Return whether we can add the archive symbols. We are blocked by | |
826 | // this_blocker_. We block next_blocker_. We also lock the file. | |
827 | ||
17a1d0a9 ILT |
828 | Task_token* |
829 | Add_archive_symbols::is_runnable() | |
61ba1cf9 ILT |
830 | { |
831 | if (this->this_blocker_ != NULL && this->this_blocker_->is_blocked()) | |
17a1d0a9 ILT |
832 | return this->this_blocker_; |
833 | return NULL; | |
61ba1cf9 ILT |
834 | } |
835 | ||
17a1d0a9 ILT |
836 | void |
837 | Add_archive_symbols::locks(Task_locker* tl) | |
61ba1cf9 | 838 | { |
17a1d0a9 ILT |
839 | tl->add(this, this->next_blocker_); |
840 | tl->add(this, this->archive_->token()); | |
61ba1cf9 ILT |
841 | } |
842 | ||
843 | void | |
844 | Add_archive_symbols::run(Workqueue*) | |
845 | { | |
7e1edb90 | 846 | this->archive_->add_symbols(this->symtab_, this->layout_, |
7d9e3d98 | 847 | this->input_objects_, this->mapfile_); |
ead1e424 | 848 | |
a1207466 CC |
849 | this->archive_->unlock_nested_archives(); |
850 | ||
17a1d0a9 | 851 | this->archive_->release(); |
39d0cb0e | 852 | this->archive_->clear_uncached_views(); |
17a1d0a9 | 853 | |
ead1e424 ILT |
854 | if (this->input_group_ != NULL) |
855 | this->input_group_->add_archive(this->archive_); | |
856 | else | |
857 | { | |
858 | // We no longer need to know about this archive. | |
859 | delete this->archive_; | |
c7912668 | 860 | this->archive_ = NULL; |
ead1e424 | 861 | } |
61ba1cf9 ILT |
862 | } |
863 | ||
864 | } // End namespace gold. |