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