Robustify mi-simplerun.
[deliverable/binutils-gdb.git] / gold / fileread.cc
CommitLineData
bae7f79e
ILT
1// fileread.cc -- read files for gold
2
ebdbb458 3// Copyright 2006, 2007, 2008 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
bae7f79e
ILT
23#include "gold.h"
24
bae7f79e
ILT
25#include <cstring>
26#include <cerrno>
27#include <fcntl.h>
28#include <unistd.h>
d1038c21 29#include <sys/mman.h>
cb295612 30#include <sys/uio.h>
51dee2fe 31#include "filenames.h"
bae7f79e 32
2285a610 33#include "debug.h"
bc644c6c 34#include "parameters.h"
bae7f79e
ILT
35#include "options.h"
36#include "dirsearch.h"
bc644c6c
ILT
37#include "target.h"
38#include "binary.h"
bae7f79e
ILT
39#include "fileread.h"
40
41namespace gold
42{
43
44// Class File_read::View.
45
46File_read::View::~View()
47{
a3ad94ed 48 gold_assert(!this->is_locked());
d1038c21
ILT
49 if (!this->mapped_)
50 delete[] this->data_;
51 else
52 {
53 if (::munmap(const_cast<unsigned char*>(this->data_), this->size_) != 0)
75f2446e 54 gold_warning(_("munmap failed: %s"), strerror(errno));
e44fcf3b
ILT
55
56 File_read::current_mapped_bytes -= this->size_;
d1038c21 57 }
bae7f79e
ILT
58}
59
60void
61File_read::View::lock()
62{
63 ++this->lock_count_;
64}
65
66void
67File_read::View::unlock()
68{
a3ad94ed 69 gold_assert(this->lock_count_ > 0);
bae7f79e
ILT
70 --this->lock_count_;
71}
72
73bool
74File_read::View::is_locked()
75{
76 return this->lock_count_ > 0;
77}
78
79// Class File_read.
80
e44fcf3b
ILT
81// The File_read static variables.
82unsigned long long File_read::total_mapped_bytes;
83unsigned long long File_read::current_mapped_bytes;
84unsigned long long File_read::maximum_mapped_bytes;
85
bae7f79e
ILT
86// The File_read class is designed to support file descriptor caching,
87// but this is not currently implemented.
88
89File_read::~File_read()
90{
17a1d0a9 91 gold_assert(this->token_.is_writable());
bae7f79e
ILT
92 if (this->descriptor_ >= 0)
93 {
94 if (close(this->descriptor_) < 0)
75f2446e
ILT
95 gold_warning(_("close of %s failed: %s"),
96 this->name_.c_str(), strerror(errno));
bae7f79e
ILT
97 this->descriptor_ = -1;
98 }
99 this->name_.clear();
100 this->clear_views(true);
101}
102
5a6f7e2d
ILT
103// Open the file.
104
bae7f79e 105bool
17a1d0a9 106File_read::open(const Task* task, const std::string& name)
bae7f79e 107{
17a1d0a9 108 gold_assert(this->token_.is_writable()
a3ad94ed
ILT
109 && this->descriptor_ < 0
110 && this->name_.empty());
bae7f79e 111 this->name_ = name;
82dcae9d 112
bae7f79e 113 this->descriptor_ = ::open(this->name_.c_str(), O_RDONLY);
82dcae9d
ILT
114
115 if (this->descriptor_ >= 0)
116 {
117 struct stat s;
118 if (::fstat(this->descriptor_, &s) < 0)
75f2446e
ILT
119 gold_error(_("%s: fstat failed: %s"),
120 this->name_.c_str(), strerror(errno));
82dcae9d 121 this->size_ = s.st_size;
2285a610
ILT
122 gold_debug(DEBUG_FILES, "Attempt to open %s succeeded",
123 this->name_.c_str());
82dcae9d
ILT
124 }
125
17a1d0a9 126 this->token_.add_writer(task);
82dcae9d 127
bae7f79e
ILT
128 return this->descriptor_ >= 0;
129}
130
bc644c6c 131// Open the file with the contents in memory.
5a6f7e2d
ILT
132
133bool
17a1d0a9
ILT
134File_read::open(const Task* task, const std::string& name,
135 const unsigned char* contents, off_t size)
bae7f79e 136{
17a1d0a9 137 gold_assert(this->token_.is_writable()
5a6f7e2d
ILT
138 && this->descriptor_ < 0
139 && this->name_.empty());
140 this->name_ = name;
141 this->contents_ = contents;
82dcae9d 142 this->size_ = size;
17a1d0a9 143 this->token_.add_writer(task);
5a6f7e2d 144 return true;
bae7f79e
ILT
145}
146
17a1d0a9
ILT
147// Release the file. This is called when we are done with the file in
148// a Task.
149
bae7f79e 150void
17a1d0a9 151File_read::release()
bae7f79e 152{
17a1d0a9
ILT
153 gold_assert(this->is_locked());
154
155 File_read::total_mapped_bytes += this->mapped_bytes_;
156 File_read::current_mapped_bytes += this->mapped_bytes_;
157 this->mapped_bytes_ = 0;
158 if (File_read::current_mapped_bytes > File_read::maximum_mapped_bytes)
159 File_read::maximum_mapped_bytes = File_read::current_mapped_bytes;
160
39d0cb0e
ILT
161 // Only clear views if there is only one attached object. Otherwise
162 // we waste time trying to clear cached archive views.
163 if (this->object_count_ <= 1)
164 this->clear_views(false);
17a1d0a9
ILT
165
166 this->released_ = true;
bae7f79e
ILT
167}
168
17a1d0a9
ILT
169// Lock the file.
170
bae7f79e 171void
17a1d0a9 172File_read::lock(const Task* task)
bae7f79e 173{
17a1d0a9
ILT
174 gold_assert(this->released_);
175 this->token_.add_writer(task);
176 this->released_ = false;
177}
e44fcf3b 178
17a1d0a9
ILT
179// Unlock the file.
180
181void
182File_read::unlock(const Task* task)
183{
184 this->release();
185 this->token_.remove_writer(task);
bae7f79e
ILT
186}
187
17a1d0a9
ILT
188// Return whether the file is locked.
189
bae7f79e 190bool
7004837e 191File_read::is_locked() const
bae7f79e 192{
17a1d0a9
ILT
193 if (!this->token_.is_writable())
194 return true;
195 // The file is not locked, so it should have been released.
196 gold_assert(this->released_);
197 return false;
bae7f79e
ILT
198}
199
200// See if we have a view which covers the file starting at START for
201// SIZE bytes. Return a pointer to the View if found, NULL if not.
39d0cb0e
ILT
202// If BYTESHIFT is not -1U, the returned View must have the specified
203// byte shift; otherwise, it may have any byte shift. If VSHIFTED is
204// not NULL, this sets *VSHIFTED to a view which would have worked if
205// not for the requested BYTESHIFT.
bae7f79e 206
ead1e424 207inline File_read::View*
39d0cb0e
ILT
208File_read::find_view(off_t start, section_size_type size,
209 unsigned int byteshift, File_read::View** vshifted) const
bae7f79e 210{
39d0cb0e
ILT
211 if (vshifted != NULL)
212 *vshifted = NULL;
213
ead1e424 214 off_t page = File_read::page_offset(start);
cb295612 215
39d0cb0e
ILT
216 unsigned int bszero = 0;
217 Views::const_iterator p = this->views_.upper_bound(std::make_pair(page - 1,
218 bszero));
219
220 while (p != this->views_.end() && p->first.first <= page)
cb295612 221 {
39d0cb0e
ILT
222 if (p->second->start() <= start
223 && (p->second->start() + static_cast<off_t>(p->second->size())
224 >= start + static_cast<off_t>(size)))
225 {
226 if (byteshift == -1U || byteshift == p->second->byteshift())
227 {
228 p->second->set_accessed();
229 return p->second;
230 }
cb295612 231
39d0cb0e
ILT
232 if (vshifted != NULL && *vshifted == NULL)
233 *vshifted = p->second;
234 }
cb295612 235
39d0cb0e
ILT
236 ++p;
237 }
cb295612 238
39d0cb0e 239 return NULL;
bae7f79e
ILT
240}
241
82dcae9d 242// Read SIZE bytes from the file starting at offset START. Read into
9eb9fa57 243// the buffer at P.
bae7f79e 244
9eb9fa57 245void
fe8718a4 246File_read::do_read(off_t start, section_size_type size, void* p) const
bae7f79e 247{
8cce6718 248 ssize_t bytes;
82dcae9d 249 if (this->contents_ != NULL)
bae7f79e 250 {
9eb9fa57 251 bytes = this->size_ - start;
8cce6718 252 if (static_cast<section_size_type>(bytes) >= size)
9eb9fa57
ILT
253 {
254 memcpy(p, this->contents_ + start, size);
255 return;
256 }
bae7f79e 257 }
9eb9fa57 258 else
82dcae9d 259 {
8cce6718
ILT
260 bytes = ::pread(this->descriptor_, p, size, start);
261 if (static_cast<section_size_type>(bytes) == size)
262 return;
263
264 if (bytes < 0)
9eb9fa57 265 {
75f2446e
ILT
266 gold_fatal(_("%s: pread failed: %s"),
267 this->filename().c_str(), strerror(errno));
268 return;
9eb9fa57 269 }
bae7f79e 270 }
9eb9fa57 271
75f2446e
ILT
272 gold_fatal(_("%s: file too short: read only %lld of %lld bytes at %lld"),
273 this->filename().c_str(),
274 static_cast<long long>(bytes),
275 static_cast<long long>(size),
276 static_cast<long long>(start));
bae7f79e
ILT
277}
278
ba45d247
ILT
279// Read data from the file.
280
bae7f79e 281void
fe8718a4 282File_read::read(off_t start, section_size_type size, void* p) const
ba45d247 283{
39d0cb0e 284 const File_read::View* pv = this->find_view(start, size, -1U, NULL);
ba45d247
ILT
285 if (pv != NULL)
286 {
39d0cb0e 287 memcpy(p, pv->data() + (start - pv->start() + pv->byteshift()), size);
ba45d247
ILT
288 return;
289 }
290
9eb9fa57 291 this->do_read(start, size, p);
bae7f79e
ILT
292}
293
39d0cb0e
ILT
294// Add a new view. There may already be an existing view at this
295// offset. If there is, the new view will be larger, and should
296// replace the old view.
bae7f79e 297
39d0cb0e
ILT
298void
299File_read::add_view(File_read::View* v)
bae7f79e 300{
39d0cb0e
ILT
301 std::pair<Views::iterator, bool> ins =
302 this->views_.insert(std::make_pair(std::make_pair(v->start(),
303 v->byteshift()),
304 v));
305 if (ins.second)
306 return;
307
308 // There was an existing view at this offset. It must not be large
309 // enough. We can't delete it here, since something might be using
310 // it; we put it on a list to be deleted when the file is unlocked.
311 File_read::View* vold = ins.first->second;
312 gold_assert(vold->size() < v->size());
313 if (vold->should_cache())
cb295612 314 {
39d0cb0e
ILT
315 v->set_cache();
316 vold->clear_cache();
cb295612 317 }
39d0cb0e 318 this->saved_views_.push_back(vold);
cb295612 319
39d0cb0e
ILT
320 ins.first->second = v;
321}
ead1e424 322
39d0cb0e
ILT
323// Make a new view with a specified byteshift, reading the data from
324// the file.
ead1e424 325
39d0cb0e
ILT
326File_read::View*
327File_read::make_view(off_t start, section_size_type size,
328 unsigned int byteshift, bool cache)
329{
330 off_t poff = File_read::page_offset(start);
ead1e424 331
fe8718a4 332 section_size_type psize = File_read::pages(size + (start - poff));
bae7f79e 333
8d32f935 334 if (poff + static_cast<off_t>(psize) >= this->size_)
82dcae9d
ILT
335 {
336 psize = this->size_ - poff;
fe8718a4 337 gold_assert(psize >= size);
82dcae9d 338 }
ead1e424 339
39d0cb0e
ILT
340 File_read::View* v;
341 if (this->contents_ != NULL || byteshift != 0)
d1038c21 342 {
39d0cb0e
ILT
343 unsigned char* p = new unsigned char[psize + byteshift];
344 memset(p, 0, byteshift);
345 this->do_read(poff, psize, p + byteshift);
346 v = new File_read::View(poff, psize, p, byteshift, cache, false);
d1038c21
ILT
347 }
348 else
349 {
cb295612 350 void* p = ::mmap(NULL, psize, PROT_READ, MAP_PRIVATE,
d1038c21
ILT
351 this->descriptor_, poff);
352 if (p == MAP_FAILED)
75f2446e
ILT
353 gold_fatal(_("%s: mmap offset %lld size %lld failed: %s"),
354 this->filename().c_str(),
355 static_cast<long long>(poff),
356 static_cast<long long>(psize),
357 strerror(errno));
d1038c21 358
e44fcf3b
ILT
359 this->mapped_bytes_ += psize;
360
d1038c21 361 const unsigned char* pbytes = static_cast<const unsigned char*>(p);
39d0cb0e 362 v = new File_read::View(poff, psize, pbytes, 0, cache, true);
d1038c21 363 }
ead1e424 364
39d0cb0e
ILT
365 this->add_view(v);
366
82dcae9d 367 return v;
bae7f79e
ILT
368}
369
39d0cb0e
ILT
370// Find a View or make a new one, shifted as required by the file
371// offset OFFSET and ALIGNED.
372
373File_read::View*
374File_read::find_or_make_view(off_t offset, off_t start,
375 section_size_type size, bool aligned, bool cache)
376{
377 unsigned int byteshift;
378 if (offset == 0)
379 byteshift = 0;
380 else
381 {
382 unsigned int target_size = (!parameters->target_valid()
383 ? 64
384 : parameters->target().get_size());
385 byteshift = offset & ((target_size / 8) - 1);
386
387 // Set BYTESHIFT to the number of dummy bytes which must be
388 // inserted before the data in order for this data to be
389 // aligned.
390 if (byteshift != 0)
391 byteshift = (target_size / 8) - byteshift;
392 }
393
394 // Try to find a View with the required BYTESHIFT.
395 File_read::View* vshifted;
396 File_read::View* v = this->find_view(offset + start, size,
397 aligned ? byteshift : -1U,
398 &vshifted);
399 if (v != NULL)
400 {
401 if (cache)
402 v->set_cache();
403 return v;
404 }
405
406 // If VSHIFTED is not NULL, then it has the data we need, but with
407 // the wrong byteshift.
408 v = vshifted;
409 if (v != NULL)
410 {
411 gold_assert(aligned);
412
413 unsigned char* pbytes = new unsigned char[v->size() + byteshift];
414 memset(pbytes, 0, byteshift);
415 memcpy(pbytes + byteshift, v->data() + v->byteshift(), v->size());
416
417 File_read::View* shifted_view = new File_read::View(v->start(), v->size(),
418 pbytes, byteshift,
419 cache, false);
420
421 this->add_view(shifted_view);
422 return shifted_view;
423 }
424
425 // Make a new view. If we don't need an aligned view, use a
426 // byteshift of 0, so that we can use mmap.
427 return this->make_view(offset + start, size,
428 aligned ? byteshift : 0,
429 cache);
430}
431
17a1d0a9 432// Get a view into the file.
bae7f79e
ILT
433
434const unsigned char*
39d0cb0e
ILT
435File_read::get_view(off_t offset, off_t start, section_size_type size,
436 bool aligned, bool cache)
ba45d247 437{
39d0cb0e
ILT
438 File_read::View* pv = this->find_or_make_view(offset, start, size,
439 aligned, cache);
440 return pv->data() + (offset + start - pv->start() + pv->byteshift());
bae7f79e
ILT
441}
442
443File_view*
39d0cb0e
ILT
444File_read::get_lasting_view(off_t offset, off_t start, section_size_type size,
445 bool aligned, bool cache)
bae7f79e 446{
39d0cb0e
ILT
447 File_read::View* pv = this->find_or_make_view(offset, start, size,
448 aligned, cache);
bae7f79e 449 pv->lock();
39d0cb0e
ILT
450 return new File_view(*this, pv,
451 (pv->data()
452 + (offset + start - pv->start() + pv->byteshift())));
bae7f79e
ILT
453}
454
cb295612
ILT
455// Use readv to read COUNT entries from RM starting at START. BASE
456// must be added to all file offsets in RM.
457
458void
459File_read::do_readv(off_t base, const Read_multiple& rm, size_t start,
460 size_t count)
461{
462 unsigned char discard[File_read::page_size];
463 iovec iov[File_read::max_readv_entries * 2];
464 size_t iov_index = 0;
465
466 off_t first_offset = rm[start].file_offset;
467 off_t last_offset = first_offset;
468 ssize_t want = 0;
469 for (size_t i = 0; i < count; ++i)
470 {
471 const Read_multiple_entry& i_entry(rm[start + i]);
472
473 if (i_entry.file_offset > last_offset)
474 {
475 size_t skip = i_entry.file_offset - last_offset;
476 gold_assert(skip <= sizeof discard);
477
478 iov[iov_index].iov_base = discard;
479 iov[iov_index].iov_len = skip;
480 ++iov_index;
481
482 want += skip;
483 }
484
485 iov[iov_index].iov_base = i_entry.buffer;
486 iov[iov_index].iov_len = i_entry.size;
487 ++iov_index;
488
489 want += i_entry.size;
490
491 last_offset = i_entry.file_offset + i_entry.size;
492 }
493
494 gold_assert(iov_index < sizeof iov / sizeof iov[0]);
495
496 if (::lseek(this->descriptor_, base + first_offset, SEEK_SET) < 0)
497 gold_fatal(_("%s: lseek failed: %s"),
498 this->filename().c_str(), strerror(errno));
499
500 ssize_t got = ::readv(this->descriptor_, iov, iov_index);
501
502 if (got < 0)
503 gold_fatal(_("%s: readv failed: %s"),
504 this->filename().c_str(), strerror(errno));
505 if (got != want)
506 gold_fatal(_("%s: file too short: read only %zd of %zd bytes at %lld"),
507 this->filename().c_str(),
508 got, want, static_cast<long long>(base + first_offset));
509}
510
511// Read several pieces of data from the file.
512
513void
514File_read::read_multiple(off_t base, const Read_multiple& rm)
515{
516 size_t count = rm.size();
517 size_t i = 0;
518 while (i < count)
519 {
520 // Find up to MAX_READV_ENTRIES consecutive entries which are
521 // less than one page apart.
522 const Read_multiple_entry& i_entry(rm[i]);
523 off_t i_off = i_entry.file_offset;
524 off_t end_off = i_off + i_entry.size;
525 size_t j;
526 for (j = i + 1; j < count; ++j)
527 {
528 if (j - i >= File_read::max_readv_entries)
529 break;
530 const Read_multiple_entry& j_entry(rm[j]);
531 off_t j_off = j_entry.file_offset;
532 gold_assert(j_off >= end_off);
533 off_t j_end_off = j_off + j_entry.size;
534 if (j_end_off - end_off >= File_read::page_size)
535 break;
536 end_off = j_end_off;
537 }
538
539 if (j == i + 1)
540 this->read(base + i_off, i_entry.size, i_entry.buffer);
541 else
542 {
543 File_read::View* view = this->find_view(base + i_off,
39d0cb0e
ILT
544 end_off - i_off,
545 -1U, NULL);
cb295612
ILT
546 if (view == NULL)
547 this->do_readv(base, rm, i, j - i);
548 else
549 {
550 const unsigned char* v = (view->data()
39d0cb0e
ILT
551 + (base + i_off - view->start()
552 + view->byteshift()));
cb295612
ILT
553 for (size_t k = i; k < j; ++k)
554 {
555 const Read_multiple_entry& k_entry(rm[k]);
be2f3dec
ILT
556 gold_assert((convert_to_section_size_type(k_entry.file_offset
557 - i_off)
558 + k_entry.size)
559 <= convert_to_section_size_type(end_off
560 - i_off));
cb295612
ILT
561 memcpy(k_entry.buffer,
562 v + (k_entry.file_offset - i_off),
563 k_entry.size);
564 }
565 }
566 }
567
568 i = j;
569 }
570}
571
572// Mark all views as no longer cached.
573
574void
575File_read::clear_view_cache_marks()
576{
577 // Just ignore this if there are multiple objects associated with
578 // the file. Otherwise we will wind up uncaching and freeing some
579 // views for other objects.
580 if (this->object_count_ > 1)
581 return;
582
583 for (Views::iterator p = this->views_.begin();
584 p != this->views_.end();
585 ++p)
586 p->second->clear_cache();
587 for (Saved_views::iterator p = this->saved_views_.begin();
588 p != this->saved_views_.end();
589 ++p)
590 (*p)->clear_cache();
591}
592
593// Remove all the file views. For a file which has multiple
594// associated objects (i.e., an archive), we keep accessed views
595// around until next time, in the hopes that they will be useful for
596// the next object.
bae7f79e
ILT
597
598void
599File_read::clear_views(bool destroying)
600{
fcf29b24
ILT
601 Views::iterator p = this->views_.begin();
602 while (p != this->views_.end())
bae7f79e 603 {
cb295612
ILT
604 bool should_delete;
605 if (p->second->is_locked())
606 should_delete = false;
607 else if (destroying)
608 should_delete = true;
609 else if (p->second->should_cache())
610 should_delete = false;
611 else if (this->object_count_ > 1 && p->second->accessed())
612 should_delete = false;
613 else
614 should_delete = true;
615
616 if (should_delete)
fcf29b24
ILT
617 {
618 delete p->second;
619
620 // map::erase invalidates only the iterator to the deleted
621 // element.
622 Views::iterator pe = p;
623 ++p;
624 this->views_.erase(pe);
625 }
ead1e424 626 else
bae7f79e 627 {
a3ad94ed 628 gold_assert(!destroying);
cb295612 629 p->second->clear_accessed();
fcf29b24 630 ++p;
bae7f79e 631 }
ead1e424 632 }
ead1e424 633
fcf29b24
ILT
634 Saved_views::iterator q = this->saved_views_.begin();
635 while (q != this->saved_views_.end())
ead1e424 636 {
cb295612 637 if (!(*q)->is_locked())
bae7f79e 638 {
fcf29b24
ILT
639 delete *q;
640 q = this->saved_views_.erase(q);
ead1e424
ILT
641 }
642 else
643 {
a3ad94ed 644 gold_assert(!destroying);
fcf29b24 645 ++q;
bae7f79e
ILT
646 }
647 }
648}
649
e44fcf3b
ILT
650// Print statistical information to stderr. This is used for --stats.
651
652void
653File_read::print_stats()
654{
655 fprintf(stderr, _("%s: total bytes mapped for read: %llu\n"),
656 program_name, File_read::total_mapped_bytes);
657 fprintf(stderr, _("%s: maximum bytes mapped for read at one time: %llu\n"),
658 program_name, File_read::maximum_mapped_bytes);
659}
660
bae7f79e
ILT
661// Class File_view.
662
663File_view::~File_view()
664{
a3ad94ed 665 gold_assert(this->file_.is_locked());
bae7f79e
ILT
666 this->view_->unlock();
667}
668
669// Class Input_file.
670
5a6f7e2d
ILT
671// Create a file for testing.
672
17a1d0a9
ILT
673Input_file::Input_file(const Task* task, const char* name,
674 const unsigned char* contents, off_t size)
5a6f7e2d
ILT
675 : file_()
676{
677 this->input_argument_ =
88dd47ac
ILT
678 new Input_file_argument(name, false, "", false,
679 Position_dependent_options());
17a1d0a9 680 bool ok = file_.open(task, name, contents, size);
5a6f7e2d
ILT
681 gold_assert(ok);
682}
683
14144f39
ILT
684// Return the position dependent options in force for this file.
685
686const Position_dependent_options&
687Input_file::options() const
688{
689 return this->input_argument_->options();
690}
691
692// Return the name given by the user. For -lc this will return "c".
693
694const char*
695Input_file::name() const
88dd47ac
ILT
696{
697 return this->input_argument_->name();
698}
699
700// Return whether we are only reading symbols.
701
702bool
703Input_file::just_symbols() const
704{
705 return this->input_argument_->just_symbols();
706}
14144f39 707
5a6f7e2d
ILT
708// Open the file.
709
51dee2fe
ILT
710// If the filename is not absolute, we assume it is in the current
711// directory *except* when:
712// A) input_argument_->is_lib() is true; or
713// B) input_argument_->extra_search_path() is not empty.
714// In both cases, we look in extra_search_path + library_path to find
715// the file location, rather than the current directory.
716
75f2446e 717bool
17a1d0a9
ILT
718Input_file::open(const General_options& options, const Dirsearch& dirpath,
719 const Task* task)
bae7f79e
ILT
720{
721 std::string name;
51dee2fe
ILT
722
723 // Case 1: name is an absolute file, just try to open it
724 // Case 2: name is relative but is_lib is false and extra_search_path
725 // is empty
726 if (IS_ABSOLUTE_PATH (this->input_argument_->name())
727 || (!this->input_argument_->is_lib()
728 && this->input_argument_->extra_search_path() == NULL))
e2aacd2c
ILT
729 {
730 name = this->input_argument_->name();
731 this->found_name_ = name;
732 }
51dee2fe
ILT
733 // Case 3: is_lib is true
734 else if (this->input_argument_->is_lib())
bae7f79e 735 {
51dee2fe
ILT
736 // We don't yet support extra_search_path with -l.
737 gold_assert(this->input_argument_->extra_search_path() == NULL);
bae7f79e 738 std::string n1("lib");
5a6f7e2d 739 n1 += this->input_argument_->name();
bae7f79e 740 std::string n2;
61611222 741 if (options.is_static()
7cc619c3 742 || !this->input_argument_->options().Bdynamic())
f6ce93d6
ILT
743 n1 += ".a";
744 else
745 {
746 n2 = n1 + ".a";
747 n1 += ".so";
748 }
ad2d6943 749 name = dirpath.find(n1, n2, &this->is_in_sysroot_);
bae7f79e
ILT
750 if (name.empty())
751 {
a0c4fb0a 752 gold_error(_("cannot find -l%s"),
75f2446e
ILT
753 this->input_argument_->name());
754 return false;
bae7f79e 755 }
e2aacd2c
ILT
756 if (n2.empty() || name[name.length() - 1] == 'o')
757 this->found_name_ = n1;
758 else
759 this->found_name_ = n2;
bae7f79e 760 }
51dee2fe
ILT
761 // Case 4: extra_search_path is not empty
762 else
763 {
764 gold_assert(this->input_argument_->extra_search_path() != NULL);
765
766 // First, check extra_search_path.
767 name = this->input_argument_->extra_search_path();
768 if (!IS_DIR_SEPARATOR (name[name.length() - 1]))
769 name += '/';
770 name += this->input_argument_->name();
771 struct stat dummy_stat;
772 if (::stat(name.c_str(), &dummy_stat) < 0)
773 {
774 // extra_search_path failed, so check the normal search-path.
ad2d6943
ILT
775 name = dirpath.find(this->input_argument_->name(), "",
776 &this->is_in_sysroot_);
51dee2fe
ILT
777 if (name.empty())
778 {
a0c4fb0a 779 gold_error(_("cannot find %s"),
75f2446e
ILT
780 this->input_argument_->name());
781 return false;
51dee2fe
ILT
782 }
783 }
e2aacd2c 784 this->found_name_ = this->input_argument_->name();
51dee2fe
ILT
785 }
786
787 // Now that we've figured out where the file lives, try to open it.
bc644c6c
ILT
788
789 General_options::Object_format format =
7cc619c3 790 this->input_argument_->options().format_enum();
bc644c6c
ILT
791 bool ok;
792 if (format == General_options::OBJECT_FORMAT_ELF)
793 ok = this->file_.open(task, name);
794 else
795 {
796 gold_assert(format == General_options::OBJECT_FORMAT_BINARY);
0daa6f62 797 ok = this->open_binary(options, task, name);
bc644c6c
ILT
798 }
799
800 if (!ok)
bae7f79e 801 {
a0c4fb0a 802 gold_error(_("cannot open %s: %s"),
75f2446e
ILT
803 name.c_str(), strerror(errno));
804 return false;
bae7f79e 805 }
75f2446e
ILT
806
807 return true;
bae7f79e
ILT
808}
809
bc644c6c
ILT
810// Open a file for --format binary.
811
812bool
8851ecca 813Input_file::open_binary(const General_options&,
0daa6f62 814 const Task* task, const std::string& name)
bc644c6c
ILT
815{
816 // In order to open a binary file, we need machine code, size, and
0daa6f62
ILT
817 // endianness. We may not have a valid target at this point, in
818 // which case we use the default target.
8851ecca
ILT
819 const Target* target;
820 if (parameters->target_valid())
821 target = &parameters->target();
bc644c6c 822 else
8851ecca 823 target = &parameters->default_target();
bc644c6c 824
0daa6f62
ILT
825 Binary_to_elf binary_to_elf(target->machine_code(),
826 target->get_size(),
827 target->is_big_endian(),
828 name);
bc644c6c
ILT
829 if (!binary_to_elf.convert(task))
830 return false;
831 return this->file_.open(task, name, binary_to_elf.converted_data_leak(),
832 binary_to_elf.converted_size());
833}
834
bae7f79e 835} // End namespace gold.
This page took 0.191998 seconds and 4 git commands to generate.