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