ChangeLog rotatation and copyright year update
[deliverable/binutils-gdb.git] / gold / script.h
CommitLineData
dbe717ef
ILT
1// script.h -- handle linker scripts for gold -*- C++ -*-
2
b90efa5b 3// Copyright (C) 2006-2015 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
dbe717ef
ILT
23// We implement a subset of the original GNU ld linker script language
24// for compatibility. The goal is not to implement the entire
25// language. It is merely to implement enough to handle common uses.
26// In particular we need to handle /usr/lib/libc.so on a typical
27// GNU/Linux system, and we want to handle linker scripts used by the
28// Linux kernel build.
29
30#ifndef GOLD_SCRIPT_H
31#define GOLD_SCRIPT_H
32
494e05f4 33#include <cstdio>
04bf7072 34#include <string>
e5756efb
ILT
35#include <vector>
36
e051745c 37#include "elfcpp.h"
494e05f4 38#include "script-sections.h"
09124467 39
dbe717ef
ILT
40namespace gold
41{
42
43class General_options;
3c2fafa5 44class Command_line;
dbe717ef
ILT
45class Symbol_table;
46class Layout;
7d9e3d98 47class Mapfile;
3c2fafa5 48class Input_argument;
072fe7ce 49class Input_arguments;
dbe717ef
ILT
50class Input_objects;
51class Input_group;
52class Input_file;
a445fddf 53class Output_segment;
dbe717ef 54class Task_token;
3c2fafa5 55class Workqueue;
494e05f4
ILT
56struct Version_dependency_list;
57struct Version_expression_list;
58struct Version_tree;
98e090bd
ILT
59struct Version_expression;
60class Lazy_demangler;
c7975edd 61class Incremental_script_entry;
dbe717ef 62
e5756efb
ILT
63// This class represents an expression in a linker script.
64
65class Expression
66{
67 protected:
68 // These should only be created by child classes.
69 Expression()
70 { }
71
72 public:
73 virtual ~Expression()
74 { }
75
a445fddf 76 // Return the value of the expression which is not permitted to
919ed24c
ILT
77 // refer to the dot symbol. CHECK_ASSERTIONS is true if we should
78 // check whether assertions are true.
e5756efb 79 uint64_t
919ed24c 80 eval(const Symbol_table*, const Layout*, bool check_assertions);
e5756efb 81
a445fddf 82 // Return the value of an expression which is permitted to refer to
77e65537
ILT
83 // the dot symbol. DOT_VALUE is the absolute value of the dot
84 // symbol. DOT_SECTION is the section in which dot is defined; it
85 // should be NULL if the dot symbol has an absolute value (e.g., is
86 // defined in a SECTIONS clause outside of any output section
87 // definition). This sets *RESULT_SECTION to indicate where the
88 // value is defined. If the value is absolute *RESULT_SECTION will
89 // be NULL. Note that the returned value is still an absolute
90 // value; to get a section relative value the caller must subtract
f6973bdc
ILT
91 // the section address. If RESULT_ALIGNMENT is not NULL, this sets
92 // *RESULT_ALIGNMENT to the alignment of the value of that alignment
93 // is larger than *RESULT_ALIGNMENT; this will only be non-zero if
286adcf4
CC
94 // this is an ALIGN expression. If IS_SECTION_DOT_ASSIGMENT is true,
95 // we are evaluating an assignment to dot within an output section,
96 // and an absolute value should be interpreted as an offset within
97 // the section.
a445fddf 98 uint64_t
919ed24c
ILT
99 eval_with_dot(const Symbol_table*, const Layout*, bool check_assertions,
100 uint64_t dot_value, Output_section* dot_section,
286adcf4
CC
101 Output_section** result_section, uint64_t* result_alignment,
102 bool is_section_dot_assignment);
a445fddf
ILT
103
104 // Return the value of an expression which may or may not be
105 // permitted to refer to the dot symbol, depending on
286adcf4
CC
106 // is_dot_available. If IS_SECTION_DOT_ASSIGMENT is true,
107 // we are evaluating an assignment to dot within an output section,
108 // and an absolute value should be interpreted as an offset within
109 // the section.
a445fddf 110 uint64_t
919ed24c
ILT
111 eval_maybe_dot(const Symbol_table*, const Layout*, bool check_assertions,
112 bool is_dot_available, uint64_t dot_value,
113 Output_section* dot_section,
286adcf4 114 Output_section** result_section, uint64_t* result_alignment,
e051745c 115 elfcpp::STT* type, elfcpp::STV* vis, unsigned char* nonvis,
286adcf4 116 bool is_section_dot_assignment);
a445fddf 117
494e05f4
ILT
118 // Print the expression to the FILE. This is for debugging.
119 virtual void
120 print(FILE*) const = 0;
121
e5756efb
ILT
122 protected:
123 struct Expression_eval_info;
124
125 public:
126 // Compute the value of the expression (implemented by child class).
127 // This is public rather than protected because it is called
128 // directly by children of Expression on other Expression objects.
129 virtual uint64_t
130 value(const Expression_eval_info*) = 0;
131
132 private:
133 // May not be copied.
134 Expression(const Expression&);
135 Expression& operator=(const Expression&);
136};
137
09124467
ILT
138
139// Version_script_info stores information parsed from the version
140// script, either provided by --version-script or as part of a linker
141// script. A single Version_script_info object per target is owned by
142// Script_options.
143
494e05f4
ILT
144class Version_script_info
145{
09124467 146 public:
6affe781
ILT
147 // The languages which can be specified in a versionn script.
148 enum Language
149 {
150 LANGUAGE_C, // No demangling.
151 LANGUAGE_CXX, // C++ demangling.
152 LANGUAGE_JAVA, // Java demangling.
153 LANGUAGE_COUNT
154 };
155
156 Version_script_info();
157
09124467
ILT
158 ~Version_script_info();
159
1ef1f3d3
ILT
160 // Clear everything.
161 void
162 clear();
163
6affe781
ILT
164 // Finalize the version control information.
165 void
166 finalize();
167
168 // Return whether the information is finalized.
169 bool
170 is_finalized() const
171 { return this->is_finalized_; }
172
09124467
ILT
173 // Return whether any version were defined in the version script.
174 bool
175 empty() const
176 { return this->version_trees_.empty(); }
177
057ead22 178 // If there is a version associated with SYMBOL, return true, and
98e090bd
ILT
179 // set *VERSION to the version, and *IS_GLOBAL to whether the symbol
180 // should be global. Otherwise, return false.
057ead22 181 bool
98e090bd
ILT
182 get_symbol_version(const char* symbol, std::string* version,
183 bool* is_global) const;
057ead22
ILT
184
185 // Return whether this symbol matches the local: section of some
186 // version.
09124467
ILT
187 bool
188 symbol_is_local(const char* symbol) const
98e090bd
ILT
189 {
190 bool is_global;
191 return (this->get_symbol_version(symbol, NULL, &is_global)
192 && !is_global);
193 }
09124467
ILT
194
195 // Return the names of versions defined in the version script.
09124467
ILT
196 std::vector<std::string>
197 get_versions() const;
198
199 // Return the list of dependencies for this version.
200 std::vector<std::string>
201 get_dependencies(const char* version) const;
202
203 // The following functions should only be used by the bison helper
204 // functions. They allocate new structs whose memory belongs to
205 // Version_script_info. The bison functions copy the information
206 // from the version script into these structs.
207 struct Version_dependency_list*
208 allocate_dependency_list();
209
210 struct Version_expression_list*
211 allocate_expression_list();
212
213 struct Version_tree*
214 allocate_version_tree();
215
6affe781
ILT
216 // Build the lookup tables after all data have been read.
217 void
218 build_lookup_tables();
219
62dfdd4d
ILT
220 // Give an error if there are any unmatched names in the version
221 // script.
222 void
223 check_unmatched_names(const Symbol_table*) const;
224
494e05f4
ILT
225 // Print contents to the FILE. This is for debugging.
226 void
227 print(FILE*) const;
228
09124467 229 private:
494e05f4
ILT
230 void
231 print_expression_list(FILE* f, const Version_expression_list*) const;
232
6affe781
ILT
233 bool
234 get_symbol_version_helper(const char* symbol,
235 bool check_global,
236 std::string* pversion) const;
237
98e090bd
ILT
238 // Fast lookup information for a given language.
239
240 // We map from exact match strings to Version_tree's. Historically
241 // version scripts sometimes have the same symbol multiple times,
242 // which is ambiguous. We warn about that case by storing the
243 // second Version_tree we see.
244 struct Version_tree_match
245 {
246 Version_tree_match(const Version_tree* r, bool ig,
247 const Version_expression* e)
248 : real(r), is_global(ig), expression(e), ambiguous(NULL)
249 { }
250
251 // The Version_tree that we return.
252 const Version_tree* real;
253 // True if this is a global match for the REAL member, false if it
254 // is a local match.
255 bool is_global;
256 // Point back to the Version_expression for which we created this
257 // match.
258 const Version_expression* expression;
259 // If not NULL, another Version_tree that defines the symbol.
260 const Version_tree* ambiguous;
261 };
262
263 // Map from an exact match string to a Version_tree.
264
265 typedef Unordered_map<std::string, Version_tree_match> Exact;
62dfdd4d 266
6affe781
ILT
267 // Fast lookup information for a glob pattern.
268 struct Glob
269 {
270 Glob()
98e090bd 271 : expression(NULL), version(NULL), is_global(false)
6affe781
ILT
272 { }
273
98e090bd
ILT
274 Glob(const Version_expression* e, const Version_tree* v, bool ig)
275 : expression(e), version(v), is_global(ig)
6affe781
ILT
276 { }
277
98e090bd
ILT
278 // A pointer to the version expression holding the pattern to
279 // match and the language to use for demangling the symbol before
280 // doing the match.
281 const Version_expression* expression;
6affe781
ILT
282 // The Version_tree we use if this pattern matches.
283 const Version_tree* version;
98e090bd
ILT
284 // True if this is a global symbol.
285 bool is_global;
6affe781
ILT
286 };
287
98e090bd 288 typedef std::vector<Glob> Globs;
6affe781 289
98e090bd
ILT
290 bool
291 unquote(std::string*) const;
6affe781 292
98e090bd
ILT
293 void
294 add_exact_match(const std::string&, const Version_tree*, bool is_global,
295 const Version_expression*, Exact*);
09124467 296
6affe781
ILT
297 void
298 build_expression_list_lookup(const Version_expression_list*,
98e090bd
ILT
299 const Version_tree*, bool);
300
301 const char*
302 get_name_to_match(const char*, int,
303 Lazy_demangler*, Lazy_demangler*) const;
6affe781
ILT
304
305 // All the version dependencies we allocate.
306 std::vector<Version_dependency_list*> dependency_lists_;
307 // All the version expressions we allocate.
308 std::vector<Version_expression_list*> expression_lists_;
309 // The list of versions.
310 std::vector<Version_tree*> version_trees_;
98e090bd
ILT
311 // Exact matches for global symbols, by language.
312 Exact* exact_[LANGUAGE_COUNT];
313 // A vector of glob patterns mapping to Version_trees.
314 Globs globs_;
315 // The default version to use, if there is one. This is from a
316 // pattern of "*".
317 const Version_tree* default_version_;
318 // True if the default version is global.
319 bool default_is_global_;
6affe781
ILT
320 // Whether this has been finalized.
321 bool is_finalized_;
09124467
ILT
322};
323
494e05f4
ILT
324// This class manages assignments to symbols. These can appear in
325// three different locations in scripts: outside of a SECTIONS clause,
326// within a SECTIONS clause, and within an output section definition
327// within a SECTIONS clause. This can also appear on the command line
328// via the --defsym command line option.
329
330class Symbol_assignment
331{
332 public:
99fff23b
ILT
333 Symbol_assignment(const char* name, size_t namelen, bool is_defsym,
334 Expression* val, bool provide, bool hidden)
335 : name_(name, namelen), val_(val), is_defsym_(is_defsym),
336 provide_(provide), hidden_(hidden), sym_(NULL)
494e05f4
ILT
337 { }
338
339 // Add the symbol to the symbol table.
340 void
9b07f471 341 add_to_table(Symbol_table*);
494e05f4
ILT
342
343 // Finalize the symbol value.
a445fddf
ILT
344 void
345 finalize(Symbol_table*, const Layout*);
346
347 // Finalize the symbol value when it can refer to the dot symbol.
348 void
77e65537
ILT
349 finalize_with_dot(Symbol_table*, const Layout*, uint64_t dot_value,
350 Output_section* dot_section);
a445fddf 351
286adcf4
CC
352 // Set the symbol value, but only if the value is absolute or relative to
353 // DOT_SECTION. This is used while processing a SECTIONS clause.
354 // We assume that dot is an absolute value here. We do not check assertions.
a445fddf
ILT
355 void
356 set_if_absolute(Symbol_table*, const Layout*, bool is_dot_available,
286adcf4 357 uint64_t dot_value, Output_section* dot_section);
494e05f4 358
e597fa08
NC
359 const std::string&
360 name() const
361 { return this->name_; }
362
494e05f4
ILT
363 // Print the assignment to the FILE. This is for debugging.
364 void
365 print(FILE*) const;
366
367 private:
a445fddf
ILT
368 // Shared by finalize and finalize_with_dot.
369 void
370 finalize_maybe_dot(Symbol_table*, const Layout*, bool is_dot_available,
77e65537 371 uint64_t dot_value, Output_section* dot_section);
a445fddf 372
494e05f4
ILT
373 // Sized version of finalize.
374 template<int size>
375 void
a445fddf 376 sized_finalize(Symbol_table*, const Layout*, bool is_dot_available,
77e65537 377 uint64_t dot_value, Output_section*);
494e05f4
ILT
378
379 // Symbol name.
380 std::string name_;
381 // Expression to assign to symbol.
382 Expression* val_;
99fff23b
ILT
383 // True if this symbol is defined by a --defsym, false if it is
384 // defined in a linker script.
385 bool is_defsym_;
494e05f4
ILT
386 // Whether the assignment should be provided (only set if there is
387 // an undefined reference to the symbol.
388 bool provide_;
389 // Whether the assignment should be hidden.
390 bool hidden_;
391 // The entry in the symbol table.
392 Symbol* sym_;
393};
394
395// This class manages assertions in linker scripts. These can appear
396// in all the places where a Symbol_assignment can appear.
397
398class Script_assertion
399{
400 public:
2ea97941 401 Script_assertion(Expression* check, const char* message,
494e05f4 402 size_t messagelen)
2ea97941 403 : check_(check), message_(message, messagelen)
494e05f4
ILT
404 { }
405
406 // Check the assertion.
407 void
408 check(const Symbol_table*, const Layout*);
409
410 // Print the assertion to the FILE. This is for debugging.
411 void
412 print(FILE*) const;
413
414 private:
415 // The expression to check.
416 Expression* check_;
417 // The message to issue if the expression fails.
418 std::string message_;
419};
420
e5756efb
ILT
421// We can read a linker script in two different contexts: when
422// initially parsing the command line, and when we find an input file
423// which is actually a linker script. Also some of the data which can
424// be set by a linker script can also be set via command line options
425// like -e and --defsym. This means that we have a type of data which
426// can be set both during command line option parsing and while
427// reading input files. We store that data in an instance of this
428// object. We will keep pointers to that instance in both the
429// Command_line and Layout objects.
430
431class Script_options
432{
433 public:
434 Script_options();
435
494e05f4 436 // Add a symbol to be defined.
e5756efb 437 void
99fff23b
ILT
438 add_symbol_assignment(const char* name, size_t length, bool is_defsym,
439 Expression* value, bool provide, bool hidden);
494e05f4 440
e597fa08
NC
441 // Look for an assigned symbol.
442 bool
443 is_pending_assignment(const char* name);
444
88a4108b
ILT
445 // Add a reference to a symbol.
446 void
447 add_symbol_reference(const char* name, size_t length);
448
494e05f4
ILT
449 // Add an assertion.
450 void
451 add_assertion(Expression* check, const char* message, size_t messagelen);
e5756efb
ILT
452
453 // Define a symbol from the command line.
454 bool
455 define_symbol(const char* definition);
456
919ed24c
ILT
457 // Create sections required by any linker scripts.
458 void
459 create_script_sections(Layout*);
460
e5756efb
ILT
461 // Add all symbol definitions to the symbol table.
462 void
9b07f471 463 add_symbols_to_table(Symbol_table*);
e5756efb 464
88a4108b
ILT
465 // Used to iterate over symbols which are referenced in expressions
466 // but not defined.
467 typedef Unordered_set<std::string>::const_iterator referenced_const_iterator;
468
469 referenced_const_iterator
470 referenced_begin() const
471 { return this->symbol_references_.begin(); }
472
473 referenced_const_iterator
474 referenced_end() const
475 { return this->symbol_references_.end(); }
476
477 // Return whether a symbol is referenced but not defined.
478 bool
479 is_referenced(const std::string& name) const
480 {
481 return (this->symbol_references_.find(name)
482 != this->symbol_references_.end());
483 }
484
485 // Return whether there are any symbols which were referenced but
486 // not defined.
487 bool
488 any_unreferenced() const
489 { return !this->symbol_references_.empty(); }
490
a445fddf 491 // Finalize the symbol values. Also check assertions.
e5756efb
ILT
492 void
493 finalize_symbols(Symbol_table*, const Layout*);
494
09124467
ILT
495 // Version information parsed from a version script. Everything
496 // else has a pointer to this object.
497 Version_script_info*
498 version_script_info()
494e05f4 499 { return &this->version_script_info_; }
09124467 500
a5dc0706
ILT
501 const Version_script_info*
502 version_script_info() const
503 { return &this->version_script_info_; }
504
494e05f4
ILT
505 // A SECTIONS clause parsed from a linker script. Everything else
506 // has a pointer to this object.
507 Script_sections*
508 script_sections()
509 { return &this->script_sections_; }
e5756efb 510
8f2eb564
ILT
511 const Script_sections*
512 script_sections() const
513 { return &this->script_sections_; }
514
a445fddf
ILT
515 // Whether we saw a SECTIONS clause.
516 bool
517 saw_sections_clause() const
518 { return this->script_sections_.saw_sections_clause(); }
519
1c4f3631
ILT
520 // Whether we saw a PHDRS clause.
521 bool
522 saw_phdrs_clause() const
523 { return this->script_sections_.saw_phdrs_clause(); }
524
a445fddf
ILT
525 // Set section addresses using a SECTIONS clause. Return the
526 // segment which should hold the file header and segment headers;
527 // this may return NULL, in which case the headers are not in a
528 // loadable segment.
529 Output_segment*
530 set_section_addresses(Symbol_table*, Layout*);
531
494e05f4 532 // Print the script to the FILE. This is for debugging.
e5756efb 533 void
494e05f4
ILT
534 print(FILE*) const;
535
536 private:
537 // We keep a list of symbol assignments which occur outside of a
538 // SECTIONS clause.
539 typedef std::vector<Symbol_assignment*> Symbol_assignments;
540
541 // We keep a list of all assertions whcih occur outside of a
542 // SECTIONS clause.
543 typedef std::vector<Script_assertion*> Assertions;
e5756efb
ILT
544
545 // The entry address. This will be empty if not set.
546 std::string entry_;
547 // Symbols to set.
548 Symbol_assignments symbol_assignments_;
88a4108b
ILT
549 // Symbols defined in an expression, for faster lookup.
550 Unordered_set<std::string> symbol_definitions_;
551 // Symbols referenced in an expression.
552 Unordered_set<std::string> symbol_references_;
494e05f4
ILT
553 // Assertions to check.
554 Assertions assertions_;
09124467
ILT
555 // Version information parsed from a version script.
556 Version_script_info version_script_info_;
494e05f4
ILT
557 // Information from any SECTIONS clauses.
558 Script_sections script_sections_;
e5756efb
ILT
559};
560
dbe717ef 561// FILE was found as an argument on the command line, but was not
da769d56
ILT
562// recognized as an ELF file. Try to read it as a script. Return
563// true if the file was handled. This has to handle /usr/lib/libc.so
564// on a GNU/Linux system. *USED_NEXT_BLOCKER is set to indicate
565// whether the function took over NEXT_BLOCKER.
dbe717ef
ILT
566
567bool
15f8229b 568read_input_script(Workqueue*, Symbol_table*, Layout*, Dirsearch*, int,
f1ed28fb 569 Input_objects*, Mapfile*, Input_group*,
da769d56
ILT
570 const Input_argument*, Input_file*,
571 Task_token* next_blocker, bool* used_next_blocker);
dbe717ef 572
3c2fafa5
ILT
573// FILE was found as an argument to --script (-T).
574// Read it as a script, and execute its contents immediately.
575
576bool
c82fbeee 577read_commandline_script(const char* filename, Command_line* cmdline);
3c2fafa5 578
09124467
ILT
579// FILE was found as an argument to --version-script. Read it as a
580// version script, and store its contents in
581// cmdline->script_options()->version_script_info().
582
583bool
584read_version_script(const char* filename, Command_line* cmdline);
585
c82fbeee
CS
586// FILENAME was found as an argument to --dynamic-list. Read it as a
587// version script (actually, a versym_node from a version script), and
588// store its contents in DYNAMIC_LIST.
589
590bool
591read_dynamic_list(const char* filename, Command_line* cmdline,
592 Script_options* dynamic_list);
593
dbe717ef
ILT
594} // End namespace gold.
595
596#endif // !defined(GOLD_SCRIPT_H)
This page took 0.348297 seconds and 4 git commands to generate.