]> git.ipfire.org Git - thirdparty/binutils-gdb.git/blame - gold/fileread.h
* ld-srec/srec.exp: Define __stack_chk_fail sym.
[thirdparty/binutils-gdb.git] / gold / fileread.h
CommitLineData
bae7f79e
ILT
1// fileread.h -- read files for gold -*- C++ -*-
2
6cb15b7f
ILT
3// Copyright 2006, 2007 Free Software Foundation, Inc.
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>
bae7f79e
ILT
31
32#include "options.h"
33
34namespace gold
35{
36
37class Dirsearch;
bae7f79e
ILT
38class File_view;
39
40// File_read manages a file descriptor for a file we are reading. We
41// close file descriptors if we run out of them, so this class reopens
42// the file as needed.
43
44class File_read
45{
46 public:
47 File_read()
82dcae9d
ILT
48 : name_(), descriptor_(-1), size_(0), lock_count_(0), views_(),
49 saved_views_(), contents_(NULL)
bae7f79e 50 { }
5a6f7e2d 51
bae7f79e
ILT
52 ~File_read();
53
54 // Open a file.
55 bool
56 open(const std::string& name);
57
5a6f7e2d
ILT
58 // Pretend to open the file, but provide the file contents. No
59 // actual file system activity will occur. This is used for
60 // testing.
61 bool
62 open(const std::string& name, const unsigned char* contents, off_t size);
63
bae7f79e
ILT
64 // Return the file name.
65 const std::string&
66 filename() const
67 { return this->name_; }
68
bae7f79e
ILT
69 // Lock the file for access within a particular Task::run execution.
70 // This means that the descriptor can not be closed. This routine
71 // may only be called from the main thread.
72 void
73 lock();
74
75 // Unlock the descriptor, permitting it to be closed if necessary.
76 void
77 unlock();
4973341a 78
bae7f79e
ILT
79 // Test whether the object is locked.
80 bool
81 is_locked();
82
82dcae9d
ILT
83 // Return the size of the file.
84 off_t
85 filesize() const
86 { return this->size_; }
87
ba45d247
ILT
88 // Return a view into the file starting at file offset START for
89 // SIZE bytes. The pointer will remain valid until the File_read is
90 // unlocked. It is an error if we can not read enough data from the
9eb9fa57
ILT
91 // file. The CACHE parameter is a hint as to whether it will be
92 // useful to cache this data for later accesses--i.e., later calls
93 // to get_view, read, or get_lasting_view which retrieve the same
94 // data.
bae7f79e 95 const unsigned char*
9eb9fa57 96 get_view(off_t start, off_t size, bool cache);
bae7f79e 97
ba45d247
ILT
98 // Read data from the file into the buffer P starting at file offset
99 // START for SIZE bytes.
100 void
101 read(off_t start, off_t size, void* p);
102
ba45d247
ILT
103 // Return a lasting view into the file starting at file offset START
104 // for SIZE bytes. This is allocated with new, and the caller is
105 // responsible for deleting it when done. The data associated with
106 // this view will remain valid until the view is deleted. It is an
9eb9fa57
ILT
107 // error if we can not read enough data from the file. The CACHE
108 // parameter is as in get_view.
bae7f79e 109 File_view*
9eb9fa57 110 get_lasting_view(off_t start, off_t size, bool cache);
bae7f79e
ILT
111
112 private:
113 // This class may not be copied.
114 File_read(const File_read&);
115 File_read& operator=(const File_read&);
116
d1038c21 117 // A view into the file.
bae7f79e
ILT
118 class View
119 {
120 public:
d1038c21
ILT
121 View(off_t start, off_t size, const unsigned char* data, bool cache,
122 bool mapped)
9eb9fa57 123 : start_(start), size_(size), data_(data), lock_count_(0),
d1038c21 124 cache_(cache), mapped_(mapped)
bae7f79e
ILT
125 { }
126
127 ~View();
128
129 off_t
130 start() const
131 { return this->start_; }
132
133 off_t
134 size() const
135 { return this->size_; }
136
e214a02b 137 const unsigned char*
bae7f79e
ILT
138 data() const
139 { return this->data_; }
140
141 void
142 lock();
143
144 void
145 unlock();
146
147 bool
148 is_locked();
149
9eb9fa57
ILT
150 void
151 set_cache()
152 { this->cache_ = true; }
153
154 bool
155 should_cache() const
156 { return this->cache_; }
157
bae7f79e
ILT
158 private:
159 View(const View&);
160 View& operator=(const View&);
161
162 off_t start_;
163 off_t size_;
e214a02b 164 const unsigned char* data_;
bae7f79e 165 int lock_count_;
9eb9fa57 166 bool cache_;
d1038c21 167 bool mapped_;
bae7f79e
ILT
168 };
169
170 friend class File_view;
171
ead1e424 172 // Find a view into the file.
bae7f79e
ILT
173 View*
174 find_view(off_t start, off_t size);
175
ead1e424 176 // Read data from the file into a buffer.
82dcae9d 177 void
9eb9fa57 178 do_read(off_t start, off_t size, void* p);
bae7f79e 179
ead1e424 180 // Find or make a view into the file.
bae7f79e 181 View*
9eb9fa57 182 find_or_make_view(off_t start, off_t size, bool cache);
bae7f79e 183
ead1e424 184 // Clear the file views.
bae7f79e
ILT
185 void
186 clear_views(bool);
187
ead1e424
ILT
188 // The size of a file page for buffering data.
189 static const off_t page_size = 8192;
190
191 // Given a file offset, return the page offset.
192 static off_t
193 page_offset(off_t file_offset)
194 { return file_offset & ~ (page_size - 1); }
195
196 // Given a file size, return the size to read integral pages.
197 static off_t
198 pages(off_t file_size)
199 { return (file_size + (page_size - 1)) & ~ (page_size - 1); }
200
201 // The type of a mapping from page start to views.
202 typedef std::map<off_t, View*> Views;
203
204 // A simple list of Views.
205 typedef std::list<View*> Saved_views;
206
207 // File name.
bae7f79e 208 std::string name_;
ead1e424 209 // File descriptor.
bae7f79e 210 int descriptor_;
82dcae9d
ILT
211 // File size.
212 off_t size_;
ead1e424 213 // Number of locks on the file.
bae7f79e 214 int lock_count_;
ead1e424
ILT
215 // Buffered views into the file.
216 Views views_;
217 // List of views which were locked but had to be removed from views_
218 // because they were not large enough.
219 Saved_views saved_views_;
5a6f7e2d
ILT
220 // Specified file contents. Used only for testing purposes.
221 const unsigned char* contents_;
bae7f79e
ILT
222};
223
224// A view of file data that persists even when the file is unlocked.
225// Callers should destroy these when no longer required. These are
226// obtained form File_read::get_lasting_view. They may only be
227// destroyed when the underlying File_read is locked.
228
229class File_view
230{
231 public:
232 // This may only be called when the underlying File_read is locked.
233 ~File_view();
234
235 // Return a pointer to the data associated with this view.
236 const unsigned char*
237 data() const
238 { return this->data_; }
239
240 private:
241 File_view(const File_view&);
242 File_view& operator=(const File_view&);
243
244 friend class File_read;
245
246 // Callers have to get these via File_read::get_lasting_view.
247 File_view(File_read& file, File_read::View* view, const unsigned char* data)
248 : file_(file), view_(view), data_(data)
249 { }
250
251 File_read& file_;
252 File_read::View* view_;
253 const unsigned char* data_;
254};
255
bae7f79e
ILT
256// All the information we hold for a single input file. This can be
257// an object file, a shared library, or an archive.
258
259class Input_file
260{
261 public:
5a6f7e2d 262 Input_file(const Input_file_argument* input_argument)
e2aacd2c
ILT
263 : input_argument_(input_argument), found_name_(), file_(),
264 is_in_sysroot_(false)
bae7f79e
ILT
265 { }
266
5a6f7e2d
ILT
267 // Create an input file with the contents already provided. This is
268 // only used for testing. With this path, don't call the open
269 // method.
270 Input_file(const char* name, const unsigned char* contents, off_t size);
271
272 // Open the file.
bae7f79e
ILT
273 void
274 open(const General_options&, const Dirsearch&);
275
e2aacd2c 276 // Return the name given by the user. For -lc this will return "c".
bae7f79e
ILT
277 const char*
278 name() const
5a6f7e2d 279 { return this->input_argument_->name(); }
bae7f79e 280
e2aacd2c
ILT
281 // Return the file name. For -lc this will return something like
282 // "/usr/lib/libc.so".
bae7f79e
ILT
283 const std::string&
284 filename() const
285 { return this->file_.filename(); }
286
e2aacd2c
ILT
287 // Return the name under which we found the file, corresponding to
288 // the command line. For -lc this will return something like
289 // "libc.so".
290 const std::string&
291 found_name() const
292 { return this->found_name_; }
293
4973341a
ILT
294 // Return the position dependent options.
295 const Position_dependent_options&
296 options() const
297 { return this->input_argument_->options(); }
298
299 // Return the file.
bae7f79e
ILT
300 File_read&
301 file()
302 { return this->file_; }
303
ad2d6943
ILT
304 // Whether we found the file in a directory in the system root.
305 bool
306 is_in_sysroot() const
307 { return this->is_in_sysroot_; }
308
bae7f79e 309 private:
ead1e424
ILT
310 Input_file(const Input_file&);
311 Input_file& operator=(const Input_file&);
312
ad2d6943 313 // The argument from the command line.
5a6f7e2d 314 const Input_file_argument* input_argument_;
e2aacd2c
ILT
315 // The name under which we opened the file. This is like the name
316 // on the command line, but -lc turns into libc.so (or whatever).
317 // It only includes the full path if the path was on the command
318 // line.
319 std::string found_name_;
ad2d6943 320 // The file after we open it.
bae7f79e 321 File_read file_;
ad2d6943
ILT
322 // Whether we found the file in a directory in the system root.
323 bool is_in_sysroot_;
bae7f79e
ILT
324};
325
326} // end namespace gold
327
328#endif // !defined(GOLD_FILEREAD_H)