]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/fileread.h
* sparc.cc (Target_sparc::Scan::local): Accept R_SPARC_WPLT30.
[thirdparty/binutils-gdb.git] / gold / fileread.h
CommitLineData
bae7f79e
ILT
1// fileread.h -- read files for gold -*- C++ -*-
2
114dfbe1 3// Copyright 2006, 2007, 2008, 2009, 2010 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// Classes used to read data from binary input files.
24
25#ifndef GOLD_FILEREAD_H
26#define GOLD_FILEREAD_H
27
bae7f79e 28#include <list>
ead1e424
ILT
29#include <map>
30#include <string>
0c0a7411 31#include <vector>
bae7f79e 32
17a1d0a9 33#include "token.h"
bae7f79e
ILT
34
35namespace gold
36{
37
98fa85cb
ILT
38// Since not all system supports stat.st_mtim and struct timespec,
39// we define our own structure and fill the nanoseconds if we can.
40
41struct Timespec
42{
43 Timespec()
44 : seconds(0), nanoseconds(0)
45 { }
46
47 Timespec(time_t a_seconds, int a_nanoseconds)
48 : seconds(a_seconds), nanoseconds(a_nanoseconds)
49 { }
50
51 time_t seconds;
52 int nanoseconds;
53};
54
14144f39
ILT
55class Position_dependent_options;
56class Input_file_argument;
bae7f79e 57class Dirsearch;
bae7f79e
ILT
58class File_view;
59
2a00e4fb
ILT
60// File_read manages a file descriptor and mappings for a file we are
61// reading.
bae7f79e
ILT
62
63class File_read
64{
65 public:
66 File_read()
2a00e4fb 67 : name_(), descriptor_(-1), is_descriptor_opened_(false), object_count_(0),
2c849493
ILT
68 size_(0), token_(false), views_(), saved_views_(), mapped_bytes_(0),
69 released_(true), whole_file_view_(NULL)
bae7f79e 70 { }
5a6f7e2d 71
bae7f79e
ILT
72 ~File_read();
73
74 // Open a file.
75 bool
17a1d0a9 76 open(const Task*, const std::string& name);
bae7f79e 77
5a6f7e2d
ILT
78 // Pretend to open the file, but provide the file contents. No
79 // actual file system activity will occur. This is used for
80 // testing.
81 bool
17a1d0a9
ILT
82 open(const Task*, const std::string& name, const unsigned char* contents,
83 off_t size);
5a6f7e2d 84
bae7f79e
ILT
85 // Return the file name.
86 const std::string&
87 filename() const
88 { return this->name_; }
89
cb295612
ILT
90 // Add an object associated with a file.
91 void
92 add_object()
93 { ++this->object_count_; }
94
95 // Remove an object associated with a file.
96 void
97 remove_object()
98 { --this->object_count_; }
99
17a1d0a9 100 // Lock the file for exclusive access within a particular Task::run
2a00e4fb
ILT
101 // execution. This routine may only be called when the workqueue
102 // lock is held.
bae7f79e 103 void
17a1d0a9 104 lock(const Task* t);
bae7f79e 105
2a00e4fb 106 // Unlock the file.
bae7f79e 107 void
17a1d0a9 108 unlock(const Task* t);
4973341a 109
bae7f79e
ILT
110 // Test whether the object is locked.
111 bool
7004837e 112 is_locked() const;
bae7f79e 113
17a1d0a9
ILT
114 // Return the token, so that the task can be queued.
115 Task_token*
116 token()
117 { return &this->token_; }
118
119 // Release the file. This indicates that we aren't going to do
120 // anything further with it until it is unlocked. This is used
121 // because a Task which locks the file never calls either lock or
122 // unlock; it just locks the token. The basic rule is that a Task
123 // which locks a file via the Task::locks interface must explicitly
124 // call release() when it is done. This is not necessary for code
125 // which calls unlock() on the file.
126 void
127 release();
128
82dcae9d
ILT
129 // Return the size of the file.
130 off_t
131 filesize() const
132 { return this->size_; }
133
ba45d247 134 // Return a view into the file starting at file offset START for
39d0cb0e
ILT
135 // SIZE bytes. OFFSET is the offset into the input file for the
136 // file we are reading; this is zero for a normal object file,
137 // non-zero for an object file in an archive. ALIGNED is true if
138 // the data must be naturally aligned; this only matters when OFFSET
139 // is not zero. The pointer will remain valid until the File_read
140 // is unlocked. It is an error if we can not read enough data from
141 // the file. The CACHE parameter is a hint as to whether it will be
9eb9fa57
ILT
142 // useful to cache this data for later accesses--i.e., later calls
143 // to get_view, read, or get_lasting_view which retrieve the same
144 // data.
bae7f79e 145 const unsigned char*
39d0cb0e
ILT
146 get_view(off_t offset, off_t start, section_size_type size, bool aligned,
147 bool cache);
bae7f79e 148
ba45d247
ILT
149 // Read data from the file into the buffer P starting at file offset
150 // START for SIZE bytes.
151 void
2a00e4fb 152 read(off_t start, section_size_type size, void* p);
ba45d247 153
ba45d247
ILT
154 // Return a lasting view into the file starting at file offset START
155 // for SIZE bytes. This is allocated with new, and the caller is
156 // responsible for deleting it when done. The data associated with
157 // this view will remain valid until the view is deleted. It is an
39d0cb0e
ILT
158 // error if we can not read enough data from the file. The OFFSET,
159 // ALIGNED and CACHE parameters are as in get_view.
bae7f79e 160 File_view*
39d0cb0e
ILT
161 get_lasting_view(off_t offset, off_t start, section_size_type size,
162 bool aligned, bool cache);
bae7f79e 163
cb295612
ILT
164 // Mark all views as no longer cached.
165 void
166 clear_view_cache_marks();
167
39d0cb0e
ILT
168 // Discard all uncached views. This is normally done by release(),
169 // but not for objects in archives. FIXME: This is a complicated
170 // interface, and it would be nice to have something more automatic.
171 void
172 clear_uncached_views()
173 { this->clear_views(false); }
174
cb295612
ILT
175 // A struct used to do a multiple read.
176 struct Read_multiple_entry
177 {
178 // The file offset of the data to read.
179 off_t file_offset;
180 // The amount of data to read.
181 section_size_type size;
182 // The buffer where the data should be placed.
183 unsigned char* buffer;
184
185 Read_multiple_entry(off_t o, section_size_type s, unsigned char* b)
186 : file_offset(o), size(s), buffer(b)
187 { }
188 };
189
190 typedef std::vector<Read_multiple_entry> Read_multiple;
191
192 // Read a bunch of data from the file into various different
193 // locations. The vector must be sorted by ascending file_offset.
194 // BASE is a base offset to be added to all the offsets in the
195 // vector.
196 void
197 read_multiple(off_t base, const Read_multiple&);
198
e44fcf3b
ILT
199 // Dump statistical information to stderr.
200 static void
201 print_stats();
202
89fc3421
CC
203 // Return the open file descriptor (for plugins).
204 int
0f7c0701 205 descriptor()
89fc3421 206 {
0f7c0701 207 this->reopen_descriptor();
89fc3421
CC
208 return this->descriptor_;
209 }
98fa85cb
ILT
210
211 // Return the file last modification time. Calls gold_fatal if the stat
212 // system call failed.
213 Timespec
214 get_mtime();
89fc3421 215
bae7f79e
ILT
216 private:
217 // This class may not be copied.
218 File_read(const File_read&);
219 File_read& operator=(const File_read&);
220
114dfbe1 221 // Total bytes mapped into memory during the link if --stats.
e44fcf3b
ILT
222 static unsigned long long total_mapped_bytes;
223
114dfbe1
ILT
224 // Current number of bytes mapped into memory during the link if
225 // --stats.
e44fcf3b
ILT
226 static unsigned long long current_mapped_bytes;
227
114dfbe1
ILT
228 // High water mark of bytes mapped into memory during the link if
229 // --stats.
e44fcf3b
ILT
230 static unsigned long long maximum_mapped_bytes;
231
d1038c21 232 // A view into the file.
bae7f79e
ILT
233 class View
234 {
235 public:
2c849493
ILT
236 // Specifies how to dispose the data on destruction of the view.
237 enum Data_ownership
238 {
239 // Data owned by File object - nothing done in destructor.
240 DATA_NOT_OWNED,
241 // Data alocated with new[] and owned by this object - should
242 // use delete[].
243 DATA_ALLOCATED_ARRAY,
244 // Data mmapped and owned by this object - should munmap.
245 DATA_MMAPPED
246 };
247
2ea97941
ILT
248 View(off_t start, section_size_type size, const unsigned char* data,
249 unsigned int byteshift, bool cache, Data_ownership data_ownership)
250 : start_(start), size_(size), data_(data), lock_count_(0),
251 byteshift_(byteshift), cache_(cache), data_ownership_(data_ownership),
2c849493 252 accessed_(true)
bae7f79e
ILT
253 { }
254
255 ~View();
256
257 off_t
258 start() const
259 { return this->start_; }
260
8383303e 261 section_size_type
bae7f79e
ILT
262 size() const
263 { return this->size_; }
264
e214a02b 265 const unsigned char*
bae7f79e
ILT
266 data() const
267 { return this->data_; }
268
269 void
270 lock();
271
272 void
273 unlock();
274
275 bool
276 is_locked();
277
39d0cb0e
ILT
278 unsigned int
279 byteshift() const
280 { return this->byteshift_; }
281
9eb9fa57
ILT
282 void
283 set_cache()
284 { this->cache_ = true; }
285
cb295612
ILT
286 void
287 clear_cache()
288 { this->cache_ = false; }
289
9eb9fa57
ILT
290 bool
291 should_cache() const
292 { return this->cache_; }
293
cb295612
ILT
294 void
295 set_accessed()
296 { this->accessed_ = true; }
297
298 void
299 clear_accessed()
300 { this->accessed_= false; }
301
302 bool
303 accessed() const
304 { return this->accessed_; }
305
bae7f79e
ILT
306 private:
307 View(const View&);
308 View& operator=(const View&);
309
39d0cb0e 310 // The file offset of the start of the view.
bae7f79e 311 off_t start_;
39d0cb0e 312 // The size of the view.
8383303e 313 section_size_type size_;
39d0cb0e 314 // A pointer to the actual bytes.
e214a02b 315 const unsigned char* data_;
39d0cb0e 316 // The number of locks on this view.
bae7f79e 317 int lock_count_;
39d0cb0e
ILT
318 // The number of bytes that the view is shifted relative to the
319 // underlying file. This is used to align data. This is normally
320 // zero, except possibly for an object in an archive.
321 unsigned int byteshift_;
322 // Whether the view is cached.
9eb9fa57 323 bool cache_;
39d0cb0e
ILT
324 // Whether the view is mapped into memory. If not, data_ points
325 // to memory allocated using new[].
2c849493 326 Data_ownership data_ownership_;
39d0cb0e 327 // Whether the view has been accessed recently.
cb295612 328 bool accessed_;
bae7f79e
ILT
329 };
330
e44fcf3b 331 friend class View;
bae7f79e
ILT
332 friend class File_view;
333
39d0cb0e
ILT
334 // The type of a mapping from page start and byte shift to views.
335 typedef std::map<std::pair<off_t, unsigned int>, View*> Views;
336
337 // A simple list of Views.
338 typedef std::list<View*> Saved_views;
339
2a00e4fb
ILT
340 // Open the descriptor if necessary.
341 void
342 reopen_descriptor();
343
ead1e424 344 // Find a view into the file.
bae7f79e 345 View*
39d0cb0e
ILT
346 find_view(off_t start, section_size_type size, unsigned int byteshift,
347 View** vshifted) const;
bae7f79e 348
ead1e424 349 // Read data from the file into a buffer.
82dcae9d 350 void
2a00e4fb 351 do_read(off_t start, section_size_type size, void* p);
bae7f79e 352
39d0cb0e
ILT
353 // Add a view.
354 void
355 add_view(View*);
356
357 // Make a view into the file.
358 View*
359 make_view(off_t start, section_size_type size, unsigned int byteshift,
360 bool cache);
361
ead1e424 362 // Find or make a view into the file.
bae7f79e 363 View*
39d0cb0e
ILT
364 find_or_make_view(off_t offset, off_t start, section_size_type size,
365 bool aligned, bool cache);
bae7f79e 366
ead1e424 367 // Clear the file views.
bae7f79e
ILT
368 void
369 clear_views(bool);
370
ead1e424
ILT
371 // The size of a file page for buffering data.
372 static const off_t page_size = 8192;
373
374 // Given a file offset, return the page offset.
375 static off_t
376 page_offset(off_t file_offset)
377 { return file_offset & ~ (page_size - 1); }
378
379 // Given a file size, return the size to read integral pages.
380 static off_t
381 pages(off_t file_size)
382 { return (file_size + (page_size - 1)) & ~ (page_size - 1); }
383
cb295612 384 // The maximum number of entries we will pass to ::readv.
d9a893b8 385#ifdef HAVE_READV
cb295612 386 static const size_t max_readv_entries = 128;
d9a893b8
ILT
387#else
388 // On targets that don't have readv set the max to 1 so readv is not
389 // used.
390 static const size_t max_readv_entries = 1;
391#endif
cb295612
ILT
392
393 // Use readv to read data.
394 void
395 do_readv(off_t base, const Read_multiple&, size_t start, size_t count);
396
ead1e424 397 // File name.
bae7f79e 398 std::string name_;
ead1e424 399 // File descriptor.
bae7f79e 400 int descriptor_;
2a00e4fb
ILT
401 // Whether we have regained the descriptor after releasing the file.
402 bool is_descriptor_opened_;
cb295612
ILT
403 // The number of objects associated with this file. This will be
404 // more than 1 in the case of an archive.
405 int object_count_;
82dcae9d
ILT
406 // File size.
407 off_t size_;
17a1d0a9
ILT
408 // A token used to lock the file.
409 Task_token token_;
ead1e424
ILT
410 // Buffered views into the file.
411 Views views_;
412 // List of views which were locked but had to be removed from views_
413 // because they were not large enough.
414 Saved_views saved_views_;
e44fcf3b
ILT
415 // Total amount of space mapped into memory. This is only changed
416 // while the file is locked. When we unlock the file, we transfer
417 // the total to total_mapped_bytes, and reset this to zero.
418 size_t mapped_bytes_;
17a1d0a9
ILT
419 // Whether the file was released.
420 bool released_;
2c849493
ILT
421 // A view containing the whole file. May be NULL if we mmap only
422 // the relevant parts of the file. Not NULL if:
423 // - Flag --mmap_whole_files is set (default on 64-bit hosts).
424 // - The contents was specified in the constructor. Used only for
425 // testing purposes).
426 View* whole_file_view_;
bae7f79e
ILT
427};
428
429// A view of file data that persists even when the file is unlocked.
430// Callers should destroy these when no longer required. These are
431// obtained form File_read::get_lasting_view. They may only be
432// destroyed when the underlying File_read is locked.
433
434class File_view
435{
436 public:
437 // This may only be called when the underlying File_read is locked.
438 ~File_view();
439
440 // Return a pointer to the data associated with this view.
441 const unsigned char*
442 data() const
443 { return this->data_; }
444
445 private:
446 File_view(const File_view&);
447 File_view& operator=(const File_view&);
448
449 friend class File_read;
450
451 // Callers have to get these via File_read::get_lasting_view.
2ea97941
ILT
452 File_view(File_read& file, File_read::View* view, const unsigned char* data)
453 : file_(file), view_(view), data_(data)
bae7f79e
ILT
454 { }
455
456 File_read& file_;
457 File_read::View* view_;
458 const unsigned char* data_;
459};
460
bae7f79e
ILT
461// All the information we hold for a single input file. This can be
462// an object file, a shared library, or an archive.
463
464class Input_file
465{
466 public:
10165461
DK
467 enum Format
468 {
469 FORMAT_NONE,
470 FORMAT_ELF,
471 FORMAT_BINARY
472 };
473
5a6f7e2d 474 Input_file(const Input_file_argument* input_argument)
e2aacd2c 475 : input_argument_(input_argument), found_name_(), file_(),
10165461 476 is_in_sysroot_(false), format_(FORMAT_NONE)
bae7f79e
ILT
477 { }
478
5a6f7e2d
ILT
479 // Create an input file with the contents already provided. This is
480 // only used for testing. With this path, don't call the open
481 // method.
17a1d0a9
ILT
482 Input_file(const Task*, const char* name, const unsigned char* contents,
483 off_t size);
5a6f7e2d 484
15f8229b
ILT
485 // Return the command line argument.
486 const Input_file_argument*
487 input_file_argument() const
488 { return this->input_argument_; }
489
490 // Return whether this is a file that we will search for in the list
491 // of directories.
492 bool
493 will_search_for() const;
494
75f2446e 495 // Open the file. If the open fails, this will report an error and
15f8229b
ILT
496 // return false. If there is a search, it starts at directory
497 // *PINDEX. *PINDEX should be initialized to zero. It may be
498 // restarted to find the next file with a matching name by
499 // incrementing the result and calling this again.
75f2446e 500 bool
15f8229b 501 open(const Dirsearch&, const Task*, int *pindex);
bae7f79e 502
e2aacd2c 503 // Return the name given by the user. For -lc this will return "c".
bae7f79e 504 const char*
14144f39 505 name() const;
bae7f79e 506
e2aacd2c
ILT
507 // Return the file name. For -lc this will return something like
508 // "/usr/lib/libc.so".
bae7f79e
ILT
509 const std::string&
510 filename() const
511 { return this->file_.filename(); }
512
e2aacd2c
ILT
513 // Return the name under which we found the file, corresponding to
514 // the command line. For -lc this will return something like
515 // "libc.so".
516 const std::string&
517 found_name() const
518 { return this->found_name_; }
519
4973341a
ILT
520 // Return the position dependent options.
521 const Position_dependent_options&
14144f39 522 options() const;
4973341a
ILT
523
524 // Return the file.
bae7f79e
ILT
525 File_read&
526 file()
527 { return this->file_; }
528
7004837e
ILT
529 const File_read&
530 file() const
531 { return this->file_; }
532
ad2d6943
ILT
533 // Whether we found the file in a directory in the system root.
534 bool
535 is_in_sysroot() const
536 { return this->is_in_sysroot_; }
537
fd9d194f
ILT
538 // Whether this file is in a system directory.
539 bool
540 is_in_system_directory() const;
541
88dd47ac
ILT
542 // Return whether this file is to be read only for its symbols.
543 bool
544 just_symbols() const;
545
10165461
DK
546 // Return the format of the unconverted input file.
547 Format
548 format() const
549 { return this->format_; }
550
bae7f79e 551 private:
ead1e424
ILT
552 Input_file(const Input_file&);
553 Input_file& operator=(const Input_file&);
554
bc644c6c
ILT
555 // Open a binary file.
556 bool
f1ed28fb 557 open_binary(const Task* task, const std::string& name);
bc644c6c 558
ad2d6943 559 // The argument from the command line.
5a6f7e2d 560 const Input_file_argument* input_argument_;
e2aacd2c
ILT
561 // The name under which we opened the file. This is like the name
562 // on the command line, but -lc turns into libc.so (or whatever).
563 // It only includes the full path if the path was on the command
564 // line.
565 std::string found_name_;
ad2d6943 566 // The file after we open it.
bae7f79e 567 File_read file_;
ad2d6943
ILT
568 // Whether we found the file in a directory in the system root.
569 bool is_in_sysroot_;
10165461
DK
570 // Format of unconverted input file.
571 Format format_;
bae7f79e
ILT
572};
573
574} // end namespace gold
575
576#endif // !defined(GOLD_FILEREAD_H)