1 // fileread.h -- read files for gold -*- C++ -*-
3 // Copyright (C) 2006-2023 Free Software Foundation, Inc.
4 // Written by Ian Lance Taylor <iant@google.com>.
6 // This file is part of gold.
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.
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.
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.
23 // Classes used to read data from binary input files.
25 #ifndef GOLD_FILEREAD_H
26 #define GOLD_FILEREAD_H
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.
44 : seconds(0), nanoseconds(0)
47 Timespec(time_t a_seconds
, int a_nanoseconds
)
48 : seconds(a_seconds
), nanoseconds(a_nanoseconds
)
55 // Get the last modified time of an unopened file. Returns false if the
56 // file does not exist.
59 get_mtime(const char* filename
, Timespec
* mtime
);
61 class Position_dependent_options
;
62 class Input_file_argument
;
66 // File_read manages a file descriptor and mappings for a file we are
73 : name_(), descriptor_(-1), is_descriptor_opened_(false), object_count_(0),
74 size_(0), token_(false), views_(), saved_views_(), mapped_bytes_(0),
75 released_(true), whole_file_view_(NULL
)
82 open(const Task
*, const std::string
& name
);
84 // Pretend to open the file, but provide the file contents. No
85 // actual file system activity will occur. This is used for
88 open(const Task
*, const std::string
& name
, const unsigned char* contents
,
91 // Return the file name.
94 { return this->name_
; }
96 // Add an object associated with a file.
99 { ++this->object_count_
; }
101 // Remove an object associated with a file.
104 { --this->object_count_
; }
106 // Lock the file for exclusive access within a particular Task::run
107 // execution. This routine may only be called when the workqueue
114 unlock(const Task
* t
);
116 // Test whether the object is locked.
120 // Return the token, so that the task can be queued.
123 { return &this->token_
; }
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.
135 // Return the size of the file.
138 { return this->size_
; }
140 // Return a view into the file starting at file offset START for
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
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
153 get_view(off_t offset
, off_t start
, section_size_type size
, bool aligned
,
156 // Read data from the file into the buffer P starting at file offset
157 // START for SIZE bytes.
159 read(off_t start
, section_size_type size
, void* p
);
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
165 // error if we can not read enough data from the file. The OFFSET,
166 // ALIGNED and CACHE parameters are as in get_view.
168 get_lasting_view(off_t offset
, off_t start
, section_size_type size
,
169 bool aligned
, bool cache
);
171 // Mark all views as no longer cached.
173 clear_view_cache_marks();
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.
179 clear_uncached_views()
180 { this->clear_views(CLEAR_VIEWS_ARCHIVE
); }
182 // A struct used to do a multiple read.
183 struct Read_multiple_entry
185 // The file offset of the data to read.
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
;
192 Read_multiple_entry(off_t o
, section_size_type s
, unsigned char* b
)
193 : file_offset(o
), size(s
), buffer(b
)
197 typedef std::vector
<Read_multiple_entry
> Read_multiple
;
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
204 read_multiple(off_t base
, const Read_multiple
&);
206 // Dump statistical information to stderr.
210 // Write the dependency file listing all files read.
212 write_dependency_file(const char* dependency_file_name
,
213 const char* output_file_name
);
215 // Record that a file was read. File_read::open does this.
217 record_file_read(const std::string
& name
);
219 // Return the open file descriptor (for plugins).
223 this->reopen_descriptor();
224 return this->descriptor_
;
227 // Return the file last modification time. Calls gold_fatal if the stat
228 // system call failed.
233 // Control for what views to clear.
234 enum Clear_views_mode
236 // Clear uncached views not used by an archive.
238 // Clear all uncached views (including in an archive).
240 // Clear all views (i.e., we're destroying the file).
244 // This class may not be copied.
245 File_read(const File_read
&);
246 File_read
& operator=(const File_read
&);
248 // Total bytes mapped into memory during the link if --stats.
249 static unsigned long long total_mapped_bytes
;
251 // Current number of bytes mapped into memory during the link if
253 static unsigned long long current_mapped_bytes
;
255 // High water mark of bytes mapped into memory during the link if
257 static unsigned long long maximum_mapped_bytes
;
259 // Set of names of all files read.
260 static std::vector
<std::string
> files_read
;
262 // A view into the file.
266 // Specifies how to dispose the data on destruction of the view.
269 // Data owned by File object - nothing done in destructor.
271 // Data allocated with new[] and owned by this object - should
273 DATA_ALLOCATED_ARRAY
,
274 // Data mmapped and owned by this object - should munmap.
278 View(off_t start
, section_size_type size
, const unsigned char* data
,
279 unsigned int byteshift
, bool cache
, Data_ownership data_ownership
)
280 : start_(start
), size_(size
), data_(data
), lock_count_(0),
281 byteshift_(byteshift
), cache_(cache
), data_ownership_(data_ownership
),
289 { return this->start_
; }
293 { return this->size_
; }
297 { return this->data_
; }
310 { return this->byteshift_
; }
314 { this->cache_
= true; }
318 { this->cache_
= false; }
322 { return this->cache_
; }
326 { this->accessed_
= true; }
330 { this->accessed_
= false; }
334 { return this->accessed_
; }
336 // Returns TRUE if this view contains permanent data -- e.g., data that
337 // was supplied by the owner of the File object.
339 is_permanent_view() const
340 { return this->data_ownership_
== DATA_NOT_OWNED
; }
344 View
& operator=(const View
&);
346 // The file offset of the start of the view.
348 // The size of the view.
349 section_size_type size_
;
350 // A pointer to the actual bytes.
351 const unsigned char* data_
;
352 // The number of locks on this view.
354 // The number of bytes that the view is shifted relative to the
355 // underlying file. This is used to align data. This is normally
356 // zero, except possibly for an object in an archive.
357 unsigned int byteshift_
;
358 // Whether the view is cached.
360 // Whether the view is mapped into memory. If not, data_ points
361 // to memory allocated using new[].
362 Data_ownership data_ownership_
;
363 // Whether the view has been accessed recently.
368 friend class File_view
;
370 // The type of a mapping from page start and byte shift to views.
371 typedef std::map
<std::pair
<off_t
, unsigned int>, View
*> Views
;
373 // A simple list of Views.
374 typedef std::list
<View
*> Saved_views
;
376 // Open the descriptor if necessary.
380 // Find a view into the file.
382 find_view(off_t start
, section_size_type size
, unsigned int byteshift
,
383 View
** vshifted
) const;
385 // Read data from the file into a buffer.
387 do_read(off_t start
, section_size_type size
, void* p
);
393 // Make a view into the file.
395 make_view(off_t start
, section_size_type size
, unsigned int byteshift
,
398 // Find or make a view into the file.
400 find_or_make_view(off_t offset
, off_t start
, section_size_type size
,
401 bool aligned
, bool cache
);
403 // Clear the file views.
405 clear_views(Clear_views_mode
);
407 // The size of a file page for buffering data.
408 static const off_t page_size
= 8192;
410 // Given a file offset, return the page offset.
412 page_offset(off_t file_offset
)
413 { return file_offset
& ~ (page_size
- 1); }
415 // Given a file size, return the size to read integral pages.
417 pages(off_t file_size
)
418 { return (file_size
+ (page_size
- 1)) & ~ (page_size
- 1); }
420 // The maximum number of entries we will pass to ::readv.
421 static const size_t max_readv_entries
= 128;
423 // Use readv to read data.
425 do_readv(off_t base
, const Read_multiple
&, size_t start
, size_t count
);
431 // Whether we have regained the descriptor after releasing the file.
432 bool is_descriptor_opened_
;
433 // The number of objects associated with this file. This will be
434 // more than 1 in the case of an archive.
438 // A token used to lock the file.
440 // Buffered views into the file.
442 // List of views which were locked but had to be removed from views_
443 // because they were not large enough.
444 Saved_views saved_views_
;
445 // Total amount of space mapped into memory. This is only changed
446 // while the file is locked. When we unlock the file, we transfer
447 // the total to total_mapped_bytes, and reset this to zero.
448 size_t mapped_bytes_
;
449 // Whether the file was released.
451 // A view containing the whole file. May be NULL if we mmap only
452 // the relevant parts of the file. Not NULL if:
453 // - Flag --mmap_whole_files is set (default on 64-bit hosts).
454 // - The contents was specified in the constructor. Used only for
455 // testing purposes).
456 View
* whole_file_view_
;
459 // A view of file data that persists even when the file is unlocked.
460 // Callers should destroy these when no longer required. These are
461 // obtained form File_read::get_lasting_view. They may only be
462 // destroyed when the underlying File_read is locked.
467 // This may only be called when the underlying File_read is locked.
470 // Return a pointer to the data associated with this view.
473 { return this->data_
; }
476 File_view(const File_view
&);
477 File_view
& operator=(const File_view
&);
479 friend class File_read
;
481 // Callers have to get these via File_read::get_lasting_view.
482 File_view(File_read
& file
, File_read::View
* view
, const unsigned char* data
)
483 : file_(file
), view_(view
), data_(data
)
487 File_read::View
* view_
;
488 const unsigned char* data_
;
491 // All the information we hold for a single input file. This can be
492 // an object file, a shared library, or an archive.
504 Input_file(const Input_file_argument
* input_argument
)
505 : input_argument_(input_argument
), found_name_(), file_(),
506 is_in_sysroot_(false), format_(FORMAT_NONE
)
509 // Create an input file given just a filename.
510 Input_file(const char* name
);
512 // Create an input file with the contents already provided. This is
513 // only used for testing. With this path, don't call the open
515 Input_file(const Task
*, const char* name
, const unsigned char* contents
,
518 // Return the command line argument.
519 const Input_file_argument
*
520 input_file_argument() const
521 { return this->input_argument_
; }
523 // Return whether this is a file that we will search for in the list
526 will_search_for() const;
528 // Open the file. If the open fails, this will report an error and
529 // return false. If there is a search, it starts at directory
530 // *PINDEX. *PINDEX should be initialized to zero. It may be
531 // restarted to find the next file with a matching name by
532 // incrementing the result and calling this again.
534 open(const Dirsearch
&, const Task
*, int* pindex
);
536 // Return the name given by the user. For -lc this will return "c".
540 // Return the file name. For -lc this will return something like
541 // "/usr/lib/libc.so".
544 { return this->file_
.filename(); }
546 // Return the name under which we found the file, corresponding to
547 // the command line. For -lc this will return something like
551 { return this->found_name_
; }
553 // Return the position dependent options.
554 const Position_dependent_options
&
560 { return this->file_
; }
564 { return this->file_
; }
566 // Whether we found the file in a directory in the system root.
568 is_in_sysroot() const
569 { return this->is_in_sysroot_
; }
571 // Whether this file is in a system directory.
573 is_in_system_directory() const;
575 // Return whether this file is to be read only for its symbols.
577 just_symbols() const;
579 // Return the format of the unconverted input file.
582 { return this->format_
; }
584 // Try to find a file in the extra search dirs. Returns true on success.
586 try_extra_search_path(int* pindex
,
587 const Input_file_argument
* input_argument
,
588 std::string filename
, std::string
* found_name
,
591 // Find the actual file.
593 find_file(const Dirsearch
& dirpath
, int* pindex
,
594 const Input_file_argument
* input_argument
,
596 std::string
* found_name
, std::string
* namep
);
599 Input_file(const Input_file
&);
600 Input_file
& operator=(const Input_file
&);
602 // Open a binary file.
604 open_binary(const Task
* task
, const std::string
& name
);
606 // The argument from the command line.
607 const Input_file_argument
* input_argument_
;
608 // The name under which we opened the file. This is like the name
609 // on the command line, but -lc turns into libc.so (or whatever).
610 // It only includes the full path if the path was on the command
612 std::string found_name_
;
613 // The file after we open it.
615 // Whether we found the file in a directory in the system root.
617 // Format of unconverted input file.
621 } // end namespace gold
623 #endif // !defined(GOLD_FILEREAD_H)