From Cary Coutant: Improve i386 shared library TLS support.
[external/binutils.git] / gold / layout.h
1 // layout.h -- lay out output file sections for gold  -*- C++ -*-
2
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
23 #ifndef GOLD_LAYOUT_H
24 #define GOLD_LAYOUT_H
25
26 #include <list>
27 #include <string>
28 #include <utility>
29 #include <vector>
30
31 #include "workqueue.h"
32 #include "object.h"
33 #include "dynobj.h"
34 #include "stringpool.h"
35
36 namespace gold
37 {
38
39 class General_options;
40 class Input_objects;
41 class Symbol_table;
42 class Output_section_data;
43 class Output_section;
44 class Output_section_headers;
45 class Output_segment;
46 class Output_data;
47 class Output_data_dynamic;
48 class Eh_frame;
49 class Target;
50
51 // This task function handles mapping the input sections to output
52 // sections and laying them out in memory.
53
54 class Layout_task_runner : public Task_function_runner
55 {
56  public:
57   // OPTIONS is the command line options, INPUT_OBJECTS is the list of
58   // input objects, SYMTAB is the symbol table, LAYOUT is the layout
59   // object.
60   Layout_task_runner(const General_options& options,
61                      const Input_objects* input_objects,
62                      Symbol_table* symtab,
63                      Layout* layout)
64     : options_(options), input_objects_(input_objects), symtab_(symtab),
65       layout_(layout)
66   { }
67
68   // Run the operation.
69   void
70   run(Workqueue*);
71
72  private:
73   Layout_task_runner(const Layout_task_runner&);
74   Layout_task_runner& operator=(const Layout_task_runner&);
75
76   const General_options& options_;
77   const Input_objects* input_objects_;
78   Symbol_table* symtab_;
79   Layout* layout_;
80 };
81
82 // This class handles the details of laying out input sections.
83
84 class Layout
85 {
86  public:
87   Layout(const General_options& options);
88
89   // Given an input section SHNDX, named NAME, with data in SHDR, from
90   // the object file OBJECT, return the output section where this
91   // input section should go.  RELOC_SHNDX is the index of a
92   // relocation section which applies to this section, or 0 if none,
93   // or -1U if more than one.  RELOC_TYPE is the type of the
94   // relocation section if there is one.  Set *OFFSET to the offset
95   // within the output section.
96   template<int size, bool big_endian>
97   Output_section*
98   layout(Sized_relobj<size, big_endian> *object, unsigned int shndx,
99          const char* name, const elfcpp::Shdr<size, big_endian>& shdr,
100          unsigned int reloc_shndx, unsigned int reloc_type, off_t* offset);
101
102   // Like layout, only for exception frame sections.  OBJECT is an
103   // object file.  SYMBOLS is the contents of the symbol table
104   // section, with size SYMBOLS_SIZE.  SYMBOL_NAMES is the contents of
105   // the symbol name section, with size SYMBOL_NAMES_SIZE.  SHNDX is a
106   // .eh_frame section in OBJECT.  SHDR is the section header.
107   // RELOC_SHNDX is the index of a relocation section which applies to
108   // this section, or 0 if none, or -1U if more than one.  RELOC_TYPE
109   // is the type of the relocation section if there is one.  This
110   // returns the output section, and sets *OFFSET to the offset.
111   template<int size, bool big_endian>
112   Output_section*
113   layout_eh_frame(Sized_relobj<size, big_endian>* object,
114                   const unsigned char* symbols,
115                   off_t symbols_size,
116                   const unsigned char* symbol_names,
117                   off_t symbol_names_size,
118                   unsigned int shndx,
119                   const elfcpp::Shdr<size, big_endian>& shdr,
120                   unsigned int reloc_shndx, unsigned int reloc_type,
121                   off_t* offset);
122
123   // Handle a GNU stack note.  This is called once per input object
124   // file.  SEEN_GNU_STACK is true if the object file has a
125   // .note.GNU-stack section.  GNU_STACK_FLAGS is the section flags
126   // from that section if there was one.
127   void
128   layout_gnu_stack(bool seen_gnu_stack, uint64_t gnu_stack_flags);
129
130   // Add an Output_section_data to the layout.  This is used for
131   // special sections like the GOT section.
132   void
133   add_output_section_data(const char* name, elfcpp::Elf_Word type,
134                           elfcpp::Elf_Xword flags,
135                           Output_section_data*);
136
137   // Create dynamic sections if necessary.
138   void
139   create_initial_dynamic_sections(const Input_objects*, Symbol_table*);
140
141   // Define __start and __stop symbols for output sections.
142   void
143   define_section_symbols(Symbol_table*, const Target*);
144
145   // Return the Stringpool used for symbol names.
146   const Stringpool*
147   sympool() const
148   { return &this->sympool_; }
149
150   // Return the Stringpool used for dynamic symbol names and dynamic
151   // tags.
152   const Stringpool*
153   dynpool() const
154   { return &this->dynpool_; }
155
156   // Return whether a section is a .gnu.linkonce section, given the
157   // section name.
158   static inline bool
159   is_linkonce(const char* name)
160   { return strncmp(name, ".gnu.linkonce", sizeof(".gnu.linkonce") - 1) == 0; }
161
162   // Record the signature of a comdat section, and return whether to
163   // include it in the link.  The GROUP parameter is true for a
164   // section group signature, false for a signature derived from a
165   // .gnu.linkonce section.
166   bool
167   add_comdat(const char*, bool group);
168
169   // Finalize the layout after all the input sections have been added.
170   off_t
171   finalize(const Input_objects*, Symbol_table*);
172
173   // Record that we have seen a relocation in the text section.
174   void
175   set_have_textrel()
176   { this->have_textrel_ = true; }
177
178   // Return the size of the output file.
179   off_t
180   output_file_size() const
181   { return this->output_file_size_; }
182
183   // Return the TLS segment.  This will return NULL if there isn't
184   // one.
185   Output_segment*
186   tls_segment() const
187   { return this->tls_segment_; }
188
189   // Return the normal symbol table.
190   Output_section*
191   symtab_section() const
192   {
193     gold_assert(this->symtab_section_ != NULL);
194     return this->symtab_section_;
195   }
196
197   // Return the dynamic symbol table.
198   Output_section*
199   dynsym_section() const
200   {
201     gold_assert(this->dynsym_section_ != NULL);
202     return this->dynsym_section_;
203   }
204
205   // Return the dynamic tags.
206   Output_data_dynamic*
207   dynamic_data() const
208   { return this->dynamic_data_; }
209
210   // Write out the output sections.
211   void
212   write_output_sections(Output_file* of) const;
213
214   // Write out data not associated with an input file or the symbol
215   // table.
216   void
217   write_data(const Symbol_table*, Output_file*) const;
218
219   // Write out output sections which can not be written until all the
220   // input sections are complete.
221   void
222   write_sections_after_input_sections(Output_file* of) const;
223
224   // Return an output section named NAME, or NULL if there is none.
225   Output_section*
226   find_output_section(const char* name) const;
227
228   // Return an output segment of type TYPE, with segment flags SET set
229   // and segment flags CLEAR clear.  Return NULL if there is none.
230   Output_segment*
231   find_output_segment(elfcpp::PT type, elfcpp::Elf_Word set,
232                       elfcpp::Elf_Word clear) const;
233
234   // The list of segments.
235
236   typedef std::vector<Output_segment*> Segment_list;
237
238   // The list of sections not attached to a segment.
239
240   typedef std::vector<Output_section*> Section_list;
241
242   // The list of information to write out which is not attached to
243   // either a section or a segment.
244   typedef std::vector<Output_data*> Data_list;
245
246  private:
247   Layout(const Layout&);
248   Layout& operator=(const Layout&);
249
250   // Mapping from .gnu.linkonce section names to output section names.
251   struct Linkonce_mapping
252   {
253     const char* from;
254     int fromlen;
255     const char* to;
256     int tolen;
257   };
258   static const Linkonce_mapping linkonce_mapping[];
259   static const int linkonce_mapping_count;
260
261   // Create a .note section for gold.
262   void
263   create_gold_note();
264
265   // Record whether the stack must be executable.
266   void
267   create_executable_stack_info(const Target*);
268
269   // Find the first read-only PT_LOAD segment, creating one if
270   // necessary.
271   Output_segment*
272   find_first_load_seg();
273
274   // Create the output sections for the symbol table.
275   void
276   create_symtab_sections(const Input_objects*, Symbol_table*, off_t*);
277
278   // Create the .shstrtab section.
279   Output_section*
280   create_shstrtab();
281
282   // Create the section header table.
283   Output_section_headers*
284   create_shdrs(off_t*);
285
286   // Create the dynamic symbol table.
287   void
288   create_dynamic_symtab(const Target*, Symbol_table*, Output_section** pdynstr,
289                         unsigned int* plocal_dynamic_count,
290                         std::vector<Symbol*>* pdynamic_symbols,
291                         Versions* versions);
292
293   // Finish the .dynamic section and PT_DYNAMIC segment.
294   void
295   finish_dynamic_section(const Input_objects*, const Symbol_table*);
296
297   // Create the .interp section and PT_INTERP segment.
298   void
299   create_interp(const Target* target);
300
301   // Create the version sections.
302   void
303   create_version_sections(const Versions*,
304                           const Symbol_table*,
305                           unsigned int local_symcount,
306                           const std::vector<Symbol*>& dynamic_symbols,
307                           const Output_section* dynstr);
308
309   template<int size, bool big_endian>
310   void
311   sized_create_version_sections(const Versions* versions,
312                                 const Symbol_table*,
313                                 unsigned int local_symcount,
314                                 const std::vector<Symbol*>& dynamic_symbols,
315                                 const Output_section* dynstr
316                                 ACCEPT_SIZE_ENDIAN);
317
318   // Return whether to include this section in the link.
319   template<int size, bool big_endian>
320   bool
321   include_section(Sized_relobj<size, big_endian>* object, const char* name,
322                   const elfcpp::Shdr<size, big_endian>&);
323
324   // Return the output section name to use given an input section
325   // name.  Set *PLEN to the length of the name.  *PLEN must be
326   // initialized to the length of NAME.
327   static const char*
328   output_section_name(const char* name, size_t* plen);
329
330   // Return the output section name to use for a linkonce section
331   // name.  PLEN is as for output_section_name.
332   static const char*
333   linkonce_output_name(const char* name, size_t* plen);
334
335   // Return the output section for NAME, TYPE and FLAGS.
336   Output_section*
337   get_output_section(const char* name, Stringpool::Key name_key,
338                      elfcpp::Elf_Word type, elfcpp::Elf_Xword flags);
339
340   // Create a new Output_section.
341   Output_section*
342   make_output_section(const char* name, elfcpp::Elf_Word type,
343                       elfcpp::Elf_Xword flags);
344
345   // Set the final file offsets of all the segments.
346   off_t
347   set_segment_offsets(const Target*, Output_segment*, unsigned int* pshndx);
348
349   // Set the final file offsets of all the sections not associated
350   // with a segment.
351   off_t
352   set_section_offsets(off_t, bool do_bits_sections);
353
354   // Set the final section indexes of all the sections not associated
355   // with a segment.  Returns the next unused index.
356   unsigned int
357   set_section_indexes(unsigned int pshndx);
358
359   // Return whether SEG1 comes before SEG2 in the output file.
360   static bool
361   segment_precedes(const Output_segment* seg1, const Output_segment* seg2);
362
363   // Map from section flags to segment flags.
364   static elfcpp::Elf_Word
365   section_flags_to_segment(elfcpp::Elf_Xword flags);
366
367   // A mapping used for group signatures.
368   typedef Unordered_map<std::string, bool> Signatures;
369
370   // Mapping from input section name/type/flags to output section.  We
371   // use canonicalized strings here.
372
373   typedef std::pair<Stringpool::Key,
374                     std::pair<elfcpp::Elf_Word, elfcpp::Elf_Xword> > Key;
375
376   struct Hash_key
377   {
378     size_t
379     operator()(const Key& k) const;
380   };
381
382   typedef Unordered_map<Key, Output_section*, Hash_key> Section_name_map;
383
384   // A comparison class for segments.
385
386   struct Compare_segments
387   {
388     bool
389     operator()(const Output_segment* seg1, const Output_segment* seg2)
390     { return Layout::segment_precedes(seg1, seg2); }
391   };
392
393   // A reference to the options on the command line.
394   const General_options& options_;
395   // The output section names.
396   Stringpool namepool_;
397   // The output symbol names.
398   Stringpool sympool_;
399   // The dynamic strings, if needed.
400   Stringpool dynpool_;
401   // The list of group sections and linkonce sections which we have seen.
402   Signatures signatures_;
403   // The mapping from input section name/type/flags to output sections.
404   Section_name_map section_name_map_;
405   // The list of output segments.
406   Segment_list segment_list_;
407   // The list of output sections.
408   Section_list section_list_;
409   // The list of output sections which are not attached to any output
410   // segment.
411   Section_list unattached_section_list_;
412   // The list of unattached Output_data objects which require special
413   // handling because they are not Output_sections.
414   Data_list special_output_list_;
415   // A pointer to the PT_TLS segment if there is one.
416   Output_segment* tls_segment_;
417   // The SHT_SYMTAB output section.
418   Output_section* symtab_section_;
419   // The SHT_DYNSYM output section if there is one.
420   Output_section* dynsym_section_;
421   // The SHT_DYNAMIC output section if there is one.
422   Output_section* dynamic_section_;
423   // The dynamic data which goes into dynamic_section_.
424   Output_data_dynamic* dynamic_data_;
425   // The exception frame output section if there is one.
426   Output_section* eh_frame_section_;
427   // The exception frame data for eh_frame_section_.
428   Eh_frame* eh_frame_data_;
429   // The exception frame header output section if there is one.
430   Output_section* eh_frame_hdr_section_;
431   // The size of the output file.
432   off_t output_file_size_;
433   // Whether we have seen an object file marked to require an
434   // executable stack.
435   bool input_requires_executable_stack_;
436   // Whether we have seen at least one object file with an executable
437   // stack marker.
438   bool input_with_gnu_stack_note_;
439   // Whether we have seen at least one object file without an
440   // executable stack marker.
441   bool input_without_gnu_stack_note_;
442   // Whether we have seen a relocation in the text section.
443   bool have_textrel_;
444 };
445
446 // This task handles writing out data in output sections which is not
447 // part of an input section, or which requires special handling.  When
448 // this is done, it unblocks both output_sections_blocker and
449 // final_blocker.
450
451 class Write_sections_task : public Task
452 {
453  public:
454   Write_sections_task(const Layout* layout, Output_file* of,
455                       Task_token* output_sections_blocker,
456                       Task_token* final_blocker)
457     : layout_(layout), of_(of),
458       output_sections_blocker_(output_sections_blocker),
459       final_blocker_(final_blocker)
460   { }
461
462   // The standard Task methods.
463
464   Is_runnable_type
465   is_runnable(Workqueue*);
466
467   Task_locker*
468   locks(Workqueue*);
469
470   void
471   run(Workqueue*);
472
473  private:
474   class Write_sections_locker;
475
476   const Layout* layout_;
477   Output_file* of_;
478   Task_token* output_sections_blocker_;
479   Task_token* final_blocker_;
480 };
481
482 // This task handles writing out data which is not part of a section
483 // or segment.
484
485 class Write_data_task : public Task
486 {
487  public:
488   Write_data_task(const Layout* layout, const Symbol_table* symtab,
489                   Output_file* of, Task_token* final_blocker)
490     : layout_(layout), symtab_(symtab), of_(of), final_blocker_(final_blocker)
491   { }
492
493   // The standard Task methods.
494
495   Is_runnable_type
496   is_runnable(Workqueue*);
497
498   Task_locker*
499   locks(Workqueue*);
500
501   void
502   run(Workqueue*);
503
504  private:
505   const Layout* layout_;
506   const Symbol_table* symtab_;
507   Output_file* of_;
508   Task_token* final_blocker_;
509 };
510
511 // This task handles writing out the global symbols.
512
513 class Write_symbols_task : public Task
514 {
515  public:
516   Write_symbols_task(const Symbol_table* symtab,
517                      const Input_objects* input_objects,
518                      const Stringpool* sympool, const Stringpool* dynpool,
519                      Output_file* of, Task_token* final_blocker)
520     : symtab_(symtab), input_objects_(input_objects), sympool_(sympool),
521       dynpool_(dynpool), of_(of), final_blocker_(final_blocker)
522   { }
523
524   // The standard Task methods.
525
526   Is_runnable_type
527   is_runnable(Workqueue*);
528
529   Task_locker*
530   locks(Workqueue*);
531
532   void
533   run(Workqueue*);
534
535  private:
536   const Symbol_table* symtab_;
537   const Input_objects* input_objects_;
538   const Stringpool* sympool_;
539   const Stringpool* dynpool_;
540   Output_file* of_;
541   Task_token* final_blocker_;
542 };
543
544 // This task handles writing out data in output sections which can't
545 // be written out until all the input sections have been handled.
546 // This is for sections whose contents is based on the contents of
547 // other output sections.
548
549 class Write_after_input_sections_task : public Task
550 {
551  public:
552   Write_after_input_sections_task(const Layout* layout, Output_file* of,
553                                   Task_token* input_sections_blocker,
554                                   Task_token* final_blocker)
555     : layout_(layout), of_(of),
556       input_sections_blocker_(input_sections_blocker),
557       final_blocker_(final_blocker)
558   { }
559
560   // The standard Task methods.
561
562   Is_runnable_type
563   is_runnable(Workqueue*);
564
565   Task_locker*
566   locks(Workqueue*);
567
568   void
569   run(Workqueue*);
570
571  private:
572   class Write_sections_locker;
573
574   const Layout* layout_;
575   Output_file* of_;
576   Task_token* input_sections_blocker_;
577   Task_token* final_blocker_;
578 };
579
580 // This task function handles closing the file.
581
582 class Close_task_runner : public Task_function_runner
583 {
584  public:
585   Close_task_runner(Output_file* of)
586     : of_(of)
587   { }
588
589   // Run the operation.
590   void
591   run(Workqueue*);
592
593  private:
594   Output_file* of_;
595 };
596
597 // A small helper function to align an address.
598
599 inline uint64_t
600 align_address(uint64_t address, uint64_t addralign)
601 {
602   if (addralign != 0)
603     address = (address + addralign - 1) &~ (addralign - 1);
604   return address;
605 }
606
607 } // End namespace gold.
608
609 #endif // !defined(GOLD_LAYOUT_H)