1 // archive.h -- archive support for gold -*- C++ -*-
3 // Copyright 2006, 2007, 2008, 2010 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 #ifndef GOLD_ARCHIVE_H
24 #define GOLD_ARCHIVE_H
30 #include "workqueue.h"
43 class Read_symbols_data
;
45 class Incremental_archive_entry
;
47 // An entry in the archive map of offsets to members.
51 : obj_(NULL
), sd_(NULL
)
53 Archive_member(Object
* obj
, Read_symbols_data
* sd
)
58 // The data to pass from read_symbols() to add_symbols().
59 Read_symbols_data
* sd_
;
62 // This class represents an archive--generally a libNAME.a file.
63 // Archives have a symbol table and a list of objects.
68 Archive(const std::string
& name
, Input_file
* input_file
,
69 bool is_thin_archive
, Dirsearch
* dirpath
, Task
* task
);
71 // The length of the magic string at the start of an archive.
72 static const int sarmag
= 8;
74 // The magic string at the start of an archive.
75 static const char armag
[sarmag
];
76 static const char armagt
[sarmag
];
78 // The string expected at the end of an archive member header.
79 static const char arfmag
[2];
81 // The name of the object. This is the name used on the command
82 // line; e.g., if "-lgcc" is on the command line, this will be
86 { return this->name_
; }
91 { return this->input_file_
; }
96 { return this->input_file_
->filename(); }
98 // Set up the archive: read the symbol map.
102 // Get a reference to the underlying file.
105 { return this->input_file_
->file(); }
109 { return this->input_file_
->file(); }
111 // Lock the underlying file.
114 { this->input_file_
->file().lock(t
); }
116 // Unlock the underlying file.
118 unlock(const Task
* t
)
119 { this->input_file_
->file().unlock(t
); }
121 // Return whether the underlying file is locked.
124 { return this->input_file_
->file().is_locked(); }
126 // Return the token, so that the task can be queued.
129 { return this->input_file_
->file().token(); }
131 // Release the underlying file.
134 { this->input_file_
->file().release(); }
136 // Clear uncached views in the underlying file.
138 clear_uncached_views()
139 { this->input_file_
->file().clear_uncached_views(); }
141 // Whether this is a thin archive.
143 is_thin_archive() const
144 { return this->is_thin_archive_
; }
146 // Unlock any nested archives.
148 unlock_nested_archives();
150 // Select members from the archive as needed and add them to the
153 add_symbols(Symbol_table
*, Layout
*, Input_objects
*, Mapfile
*);
155 // Dump statistical information to stderr.
159 // Return the number of members in the archive.
163 // Return the no-export flag.
166 { return this->no_export_
; }
168 // Store a pointer to the incremental link info for the archive.
170 set_incremental_info(Incremental_archive_entry
* info
)
171 { this->incremental_info_
= info
; }
173 // Return the pointer to the incremental link info for the archive.
174 Incremental_archive_entry
*
175 incremental_info() const
176 { return this->incremental_info_
; }
178 // When we see a symbol in an archive we might decide to include the member,
179 // not include the member or be undecided. This enum represents these
186 SHOULD_INCLUDE_UNKNOWN
189 static Should_include
190 should_include_member(Symbol_table
* symtab
, Layout
*, const char* sym_name
,
191 Symbol
** symp
, std::string
* why
, char** tmpbufp
,
198 // Iterator class for unused global symbols. This iterator is used
199 // for incremental links.
201 class Unused_symbol_iterator
204 Unused_symbol_iterator(Archive
* arch
,
205 std::vector
<Armap_entry
>::const_iterator it
)
206 : arch_(arch
), it_(it
)
207 { this->skip_used_symbols(); }
211 { return this->arch_
->armap_names_
.data() + this->it_
->name_offset
; }
213 Unused_symbol_iterator
&
217 this->skip_used_symbols();
222 operator==(const Unused_symbol_iterator p
) const
223 { return this->it_
== p
.it_
; }
226 operator!=(const Unused_symbol_iterator p
) const
227 { return this->it_
!= p
.it_
; }
230 // Skip over symbols defined by members that have been included.
234 while (this->it_
!= this->arch_
->armap_
.end()
235 && (this->arch_
->seen_offsets_
.find(this->it_
->file_offset
)
236 != this->arch_
->seen_offsets_
.end()))
240 // The underlying archive.
243 // The underlying iterator over all entries in the archive map.
244 std::vector
<Armap_entry
>::const_iterator it_
;
247 // Return an iterator referring to the first unused symbol.
248 Unused_symbol_iterator
249 unused_symbols_begin()
250 { return Unused_symbol_iterator(this, this->armap_
.begin()); }
252 // Return an iterator referring to the end of the unused symbols.
253 Unused_symbol_iterator
255 { return Unused_symbol_iterator(this, this->armap_
.end()); }
258 Archive(const Archive
&);
259 Archive
& operator=(const Archive
&);
261 struct Archive_header
;
263 // Total number of archives seen.
264 static unsigned int total_archives
;
265 // Total number of archive members seen.
266 static unsigned int total_members
;
267 // Number of archive members loaded.
268 static unsigned int total_members_loaded
;
270 // Get a view into the underlying file.
272 get_view(off_t start
, section_size_type size
, bool aligned
, bool cache
)
273 { return this->input_file_
->file().get_view(0, start
, size
, aligned
, cache
); }
275 // Read the archive symbol map.
277 read_armap(off_t start
, section_size_type size
);
279 // Read an archive member header at OFF. CACHE is whether to cache
280 // the file view. Return the size of the member, and set *PNAME to
283 read_header(off_t off
, bool cache
, std::string
* pname
, off_t
* nested_off
);
285 // Interpret an archive header HDR at OFF. Return the size of the
286 // member, and set *PNAME to the name.
288 interpret_header(const Archive_header
* hdr
, off_t off
, std::string
* pname
,
289 off_t
* nested_off
) const;
291 // Get the file and offset for an archive member, which may be an
292 // external member of a thin archive. Set *INPUT_FILE to the
293 // file containing the actual member, *MEMOFF to the offset
294 // within that file (0 if not a nested archive), and *MEMBER_NAME
295 // to the name of the archive member. Return TRUE on success.
297 get_file_and_offset(off_t off
, Input_file
** input_file
, off_t
* memoff
,
298 off_t
* memsize
, std::string
* member_name
);
300 // Return an ELF object for the member at offset OFF.
302 get_elf_object_for_member(off_t off
, bool*);
304 // Read the symbols from all the archive members in the link.
308 // Read the symbols from an archive member in the link. OFF is the file
309 // offset of the member header.
311 read_symbols(off_t off
);
313 // Include all the archive members in the link.
315 include_all_members(Symbol_table
*, Layout
*, Input_objects
*, Mapfile
*);
317 // Include an archive member in the link.
319 include_member(Symbol_table
*, Layout
*, Input_objects
*, off_t off
,
320 Mapfile
*, Symbol
*, const char* why
);
322 // Return whether we found this archive by searching a directory.
325 { return this->input_file_
->will_search_for(); }
327 // Iterate over archive members.
328 class const_iterator
;
336 friend class const_iterator
;
338 // An entry in the archive map of symbols to object files.
341 // The offset to the symbol name in armap_names_.
343 // The file offset to the object in the archive.
347 // A simple hash code for off_t values.
351 size_t operator()(off_t val
) const
352 { return static_cast<size_t>(val
); }
355 // For keeping track of open nested archives in a thin archive file.
356 typedef Unordered_map
<std::string
, Archive
*> Nested_archive_table
;
358 // Name of object as printed to user.
360 // For reading the file.
361 Input_file
* input_file_
;
363 std::vector
<Armap_entry
> armap_
;
364 // The names in the archive map.
365 std::string armap_names_
;
366 // The extended name table.
367 std::string extended_names_
;
368 // Track which symbols in the archive map are for elements which are
369 // defined or which have already been included in the link.
370 std::vector
<bool> armap_checked_
;
371 // Track which elements have been included by offset.
372 Unordered_set
<off_t
, Seen_hash
> seen_offsets_
;
373 // Table of objects whose symbols have been pre-read.
374 std::map
<off_t
, Archive_member
> members_
;
375 // True if this is a thin archive.
376 const bool is_thin_archive_
;
377 // True if we have included at least one object from this archive.
378 bool included_member_
;
379 // Table of nested archives, indexed by filename.
380 Nested_archive_table nested_archives_
;
381 // The directory search path.
383 // The task reading this archive.
385 // Number of members in this archive;
386 unsigned int num_members_
;
387 // True if we exclude this library archive from automatic export.
389 // The incremental link information for this archive.
390 Incremental_archive_entry
* incremental_info_
;
393 // This class is used to read an archive and pick out the desired
394 // elements and add them to the link.
396 class Add_archive_symbols
: public Task
399 Add_archive_symbols(Symbol_table
* symtab
, Layout
* layout
,
400 Input_objects
* input_objects
, Dirsearch
* dirpath
,
401 int dirindex
, Mapfile
* mapfile
,
402 const Input_argument
* input_argument
,
403 Archive
* archive
, Input_group
* input_group
,
404 Task_token
* this_blocker
,
405 Task_token
* next_blocker
)
406 : symtab_(symtab
), layout_(layout
), input_objects_(input_objects
),
407 dirpath_(dirpath
), dirindex_(dirindex
), mapfile_(mapfile
),
408 input_argument_(input_argument
), archive_(archive
),
409 input_group_(input_group
), this_blocker_(this_blocker
),
410 next_blocker_(next_blocker
)
413 ~Add_archive_symbols();
415 // The standard Task methods.
429 if (this->archive_
== NULL
)
430 return "Add_archive_symbols";
431 return "Add_archive_symbols " + this->archive_
->file().filename();
435 Symbol_table
* symtab_
;
437 Input_objects
* input_objects_
;
441 const Input_argument
* input_argument_
;
443 Input_group
* input_group_
;
444 Task_token
* this_blocker_
;
445 Task_token
* next_blocker_
;
448 // This class represents the files surrounded by a --start-lib ... --end-lib.
453 Lib_group(const Input_file_lib
* lib
, Task
* task
);
455 // Select members from the lib group as needed and add them to the link.
457 add_symbols(Symbol_table
*, Layout
*, Input_objects
*);
459 // Include a member of the lib group in the link.
461 include_member(Symbol_table
*, Layout
*, Input_objects
*, const Archive_member
&);
466 return &this->members_
[i
];
469 // Dump statistical information to stderr.
473 // Total number of archives seen.
474 static unsigned int total_lib_groups
;
475 // Total number of archive members seen.
476 static unsigned int total_members
;
477 // Number of archive members loaded.
478 static unsigned int total_members_loaded
;
481 // For reading the files.
482 const Input_file_lib
* lib_
;
483 // The task reading this lib group.
485 // Table of the objects in the group.
486 std::vector
<Archive_member
> members_
;
489 // This class is used to pick out the desired elements and add them to the link.
491 class Add_lib_group_symbols
: public Task
494 Add_lib_group_symbols(Symbol_table
* symtab
, Layout
* layout
,
495 Input_objects
* input_objects
,
496 Lib_group
* lib
, Task_token
* next_blocker
)
497 : symtab_(symtab
), layout_(layout
), input_objects_(input_objects
),
498 lib_(lib
), readsyms_blocker_(NULL
), this_blocker_(NULL
),
499 next_blocker_(next_blocker
)
502 ~Add_lib_group_symbols();
504 // The standard Task methods.
515 // Set the blocker to use for this task.
517 set_blocker(Task_token
* readsyms_blocker
, Task_token
* this_blocker
)
519 gold_assert(this->readsyms_blocker_
== NULL
&& this->this_blocker_
== NULL
);
520 this->readsyms_blocker_
= readsyms_blocker
;
521 this->this_blocker_
= this_blocker
;
527 return "Add_lib_group_symbols";
531 Symbol_table
* symtab_
;
533 Input_objects
* input_objects_
;
535 Task_token
* readsyms_blocker_
;
536 Task_token
* this_blocker_
;
537 Task_token
* next_blocker_
;
540 } // End namespace gold.
542 #endif // !defined(GOLD_ARCHIVE_H)