Home | History | Annotate | Line # | Download | only in include
bfdlink.h revision 1.1.1.7
      1 /* bfdlink.h -- header file for BFD link routines
      2    Copyright (C) 1993-2019 Free Software Foundation, Inc.
      3    Written by Steve Chamberlain and Ian Lance Taylor, Cygnus Support.
      4 
      5    This file is part of BFD, the Binary File Descriptor library.
      6 
      7    This program is free software; you can redistribute it and/or modify
      8    it under the terms of the GNU General Public License as published by
      9    the Free Software Foundation; either version 3 of the License, or
     10    (at your option) any later version.
     11 
     12    This program is distributed in the hope that it will be useful,
     13    but WITHOUT ANY WARRANTY; without even the implied warranty of
     14    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
     15    GNU General Public License for more details.
     16 
     17    You should have received a copy of the GNU General Public License
     18    along with this program; if not, write to the Free Software
     19    Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
     20    MA 02110-1301, USA.  */
     21 
     22 #ifndef BFDLINK_H
     23 #define BFDLINK_H
     24 
     25 /* Which symbols to strip during a link.  */
     26 enum bfd_link_strip
     27 {
     28   strip_none,		/* Don't strip any symbols.  */
     29   strip_debugger,	/* Strip debugging symbols.  */
     30   strip_some,		/* keep_hash is the list of symbols to keep.  */
     31   strip_all		/* Strip all symbols.  */
     32 };
     33 
     34 /* Which local symbols to discard during a link.  This is irrelevant
     35    if strip_all is used.  */
     36 enum bfd_link_discard
     37 {
     38   discard_sec_merge,	/* Discard local temporary symbols in SEC_MERGE
     39 			   sections.  */
     40   discard_none,		/* Don't discard any locals.  */
     41   discard_l,		/* Discard local temporary symbols.  */
     42   discard_all		/* Discard all locals.  */
     43 };
     44 
     45 /* Whether to generate ELF common symbols with the STT_COMMON type
     46    during a relocatable link.  */
     47 enum bfd_link_elf_stt_common
     48 {
     49   unchanged,
     50   elf_stt_common,
     51   no_elf_stt_common
     52 };
     53 
     54 /* Describes the type of hash table entry structure being used.
     55    Different hash table structure have different fields and so
     56    support different linking features.  */
     57 enum bfd_link_hash_table_type
     58   {
     59     bfd_link_generic_hash_table,
     60     bfd_link_elf_hash_table
     61   };
     62 
     63 /* These are the possible types of an entry in the BFD link hash
     65    table.  */
     66 
     67 enum bfd_link_hash_type
     68 {
     69   bfd_link_hash_new,		/* Symbol is new.  */
     70   bfd_link_hash_undefined,	/* Symbol seen before, but undefined.  */
     71   bfd_link_hash_undefweak,	/* Symbol is weak and undefined.  */
     72   bfd_link_hash_defined,	/* Symbol is defined.  */
     73   bfd_link_hash_defweak,	/* Symbol is weak and defined.  */
     74   bfd_link_hash_common,		/* Symbol is common.  */
     75   bfd_link_hash_indirect,	/* Symbol is an indirect link.  */
     76   bfd_link_hash_warning		/* Like indirect, but warn if referenced.  */
     77 };
     78 
     79 enum bfd_link_common_skip_ar_symbols
     80 {
     81   bfd_link_common_skip_none,
     82   bfd_link_common_skip_text,
     83   bfd_link_common_skip_data,
     84   bfd_link_common_skip_all
     85 };
     86 
     87 struct bfd_link_hash_common_entry
     88   {
     89     unsigned int alignment_power;	/* Alignment.  */
     90     asection *section;		/* Symbol section.  */
     91   };
     92 
     93 /* The linking routines use a hash table which uses this structure for
     94    its elements.  */
     95 
     96 struct bfd_link_hash_entry
     97 {
     98   /* Base hash table entry structure.  */
     99   struct bfd_hash_entry root;
    100 
    101   /* Type of this entry.  */
    102   ENUM_BITFIELD (bfd_link_hash_type) type : 8;
    103 
    104   /* Symbol is referenced in a normal regular object file,
    105      as distinct from a LTO IR object file.  */
    106   unsigned int non_ir_ref_regular : 1;
    107 
    108   /* Symbol is referenced in a normal dynamic object file,
    109      as distinct from a LTO IR object file.  */
    110   unsigned int non_ir_ref_dynamic : 1;
    111 
    112   /* Symbol is a built-in define.  These will be overridden by PROVIDE
    113      in a linker script.  */
    114   unsigned int linker_def : 1;
    115 
    116   /* Symbol defined in a linker script.  */
    117   unsigned int ldscript_def : 1;
    118 
    119   /* Symbol will be converted from absolute to section-relative.  Set for
    120      symbols defined by a script from "dot" (also SEGMENT_START or ORIGIN)
    121      outside of an output section statement.  */
    122   unsigned int rel_from_abs : 1;
    123 
    124   /* A union of information depending upon the type.  */
    125   union
    126     {
    127       /* Nothing is kept for bfd_hash_new.  */
    128       /* bfd_link_hash_undefined, bfd_link_hash_undefweak.  */
    129       struct
    130 	{
    131 	  /* Undefined and common symbols are kept in a linked list through
    132 	     this field.  This field is present in all of the union element
    133 	     so that we don't need to remove entries from the list when we
    134 	     change their type.  Removing entries would either require the
    135 	     list to be doubly linked, which would waste more memory, or
    136 	     require a traversal.  When an undefined or common symbol is
    137 	     created, it should be added to this list, the head of which is in
    138 	     the link hash table itself.  As symbols are defined, they need
    139 	     not be removed from the list; anything which reads the list must
    140 	     doublecheck the symbol type.
    141 
    142 	     Weak symbols are not kept on this list.
    143 
    144 	     Defined and defweak symbols use this field as a reference marker.
    145 	     If the field is not NULL, or this structure is the tail of the
    146 	     undefined symbol list, the symbol has been referenced.  If the
    147 	     symbol is undefined and becomes defined, this field will
    148 	     automatically be non-NULL since the symbol will have been on the
    149 	     undefined symbol list.  */
    150 	  struct bfd_link_hash_entry *next;
    151 	  /* BFD symbol was found in.  */
    152 	  bfd *abfd;
    153 	} undef;
    154       /* bfd_link_hash_defined, bfd_link_hash_defweak.  */
    155       struct
    156 	{
    157 	  struct bfd_link_hash_entry *next;
    158 	  /* Symbol section.  */
    159 	  asection *section;
    160 	  /* Symbol value.  */
    161 	  bfd_vma value;
    162 	} def;
    163       /* bfd_link_hash_indirect, bfd_link_hash_warning.  */
    164       struct
    165 	{
    166 	  struct bfd_link_hash_entry *next;
    167 	  /* Real symbol.  */
    168 	  struct bfd_link_hash_entry *link;
    169 	  /* Warning message (bfd_link_hash_warning only).  */
    170 	  const char *warning;
    171 	} i;
    172       /* bfd_link_hash_common.  */
    173       struct
    174 	{
    175 	  struct bfd_link_hash_entry *next;
    176 	  /* The linker needs to know three things about common
    177 	     symbols: the size, the alignment, and the section in
    178 	     which the symbol should be placed.  We store the size
    179 	     here, and we allocate a small structure to hold the
    180 	     section and the alignment.  The alignment is stored as a
    181 	     power of two.  We don't store all the information
    182 	     directly because we don't want to increase the size of
    183 	     the union; this structure is a major space user in the
    184 	     linker.  */
    185 	  struct bfd_link_hash_common_entry *p;
    186 	  /* Common symbol size.  */
    187 	  bfd_size_type size;
    188 	} c;
    189     } u;
    190 };
    191 
    192 /* This is the link hash table.  It is a derived class of
    193    bfd_hash_table.  */
    194 
    195 struct bfd_link_hash_table
    196 {
    197   /* The hash table itself.  */
    198   struct bfd_hash_table table;
    199   /* A linked list of undefined and common symbols, linked through the
    200      next field in the bfd_link_hash_entry structure.  */
    201   struct bfd_link_hash_entry *undefs;
    202   /* Entries are added to the tail of the undefs list.  */
    203   struct bfd_link_hash_entry *undefs_tail;
    204   /* Function to free the hash table on closing BFD.  */
    205   void (*hash_table_free) (bfd *);
    206   /* The type of the link hash table.  */
    207   enum bfd_link_hash_table_type type;
    208 };
    209 
    210 /* Look up an entry in a link hash table.  If FOLLOW is TRUE, this
    211    follows bfd_link_hash_indirect and bfd_link_hash_warning links to
    212    the real symbol.  */
    213 extern struct bfd_link_hash_entry *bfd_link_hash_lookup
    214   (struct bfd_link_hash_table *, const char *, bfd_boolean create,
    215    bfd_boolean copy, bfd_boolean follow);
    216 
    217 /* Look up an entry in the main linker hash table if the symbol might
    218    be wrapped.  This should only be used for references to an
    219    undefined symbol, not for definitions of a symbol.  */
    220 
    221 extern struct bfd_link_hash_entry *bfd_wrapped_link_hash_lookup
    222   (bfd *, struct bfd_link_info *, const char *, bfd_boolean,
    223    bfd_boolean, bfd_boolean);
    224 
    225 /* If H is a wrapped symbol, ie. the symbol name starts with "__wrap_"
    226    and the remainder is found in wrap_hash, return the real symbol.  */
    227 
    228 extern struct bfd_link_hash_entry *unwrap_hash_lookup
    229   (struct bfd_link_info *, bfd *, struct bfd_link_hash_entry *);
    230 
    231 /* Traverse a link hash table.  */
    232 extern void bfd_link_hash_traverse
    233   (struct bfd_link_hash_table *,
    234     bfd_boolean (*) (struct bfd_link_hash_entry *, void *),
    235     void *);
    236 
    237 /* Add an entry to the undefs list.  */
    238 extern void bfd_link_add_undef
    239   (struct bfd_link_hash_table *, struct bfd_link_hash_entry *);
    240 
    241 /* Remove symbols from the undefs list that don't belong there.  */
    242 extern void bfd_link_repair_undef_list
    243   (struct bfd_link_hash_table *table);
    244 
    245 /* Read symbols and cache symbol pointer array in outsymbols.  */
    246 extern bfd_boolean bfd_generic_link_read_symbols (bfd *);
    247 
    248 /* Check the relocs in the BFD.  Called after all the input
    249    files have been loaded, and garbage collection has tagged
    250    any unneeded sections.  */
    251 extern bfd_boolean bfd_link_check_relocs (bfd *,struct bfd_link_info *);
    252 
    253 struct bfd_sym_chain
    254 {
    255   struct bfd_sym_chain *next;
    256   const char *name;
    257 };
    258 
    259 /* How to handle unresolved symbols.
    261    There are four possibilities which are enumerated below:  */
    262 enum report_method
    263 {
    264   /* This is the initial value when then link_info structure is created.
    265      It allows the various stages of the linker to determine whether they
    266      allowed to set the value.  */
    267   RM_NOT_YET_SET = 0,
    268   RM_IGNORE,
    269   RM_GENERATE_WARNING,
    270   RM_GENERATE_ERROR
    271 };
    272 
    273 typedef enum {with_flags, without_flags} flag_type;
    274 
    275 /* A section flag list.  */
    276 struct flag_info_list
    277 {
    278   flag_type with;
    279   const char *name;
    280   bfd_boolean valid;
    281   struct flag_info_list *next;
    282 };
    283 
    284 /* Section flag info.  */
    285 struct flag_info
    286 {
    287   flagword only_with_flags;
    288   flagword not_with_flags;
    289   struct flag_info_list *flag_list;
    290   bfd_boolean flags_initialized;
    291 };
    292 
    293 struct bfd_elf_dynamic_list;
    294 struct bfd_elf_version_tree;
    295 
    296 /* Types of output.  */
    297 
    298 enum output_type
    299 {
    300   type_pde,
    301   type_pie,
    302   type_relocatable,
    303   type_dll,
    304 };
    305 
    306 #define bfd_link_pde(info)	   ((info)->type == type_pde)
    307 #define bfd_link_dll(info)	   ((info)->type == type_dll)
    308 #define bfd_link_relocatable(info) ((info)->type == type_relocatable)
    309 #define bfd_link_pie(info)	   ((info)->type == type_pie)
    310 #define bfd_link_executable(info)  (bfd_link_pde (info) || bfd_link_pie (info))
    311 #define bfd_link_pic(info)	   (bfd_link_dll (info) || bfd_link_pie (info))
    312 
    313 /* This structure holds all the information needed to communicate
    314    between BFD and the linker when doing a link.  */
    315 
    316 struct bfd_link_info
    317 {
    318   /* Output type.  */
    319   ENUM_BITFIELD (output_type) type : 2;
    320 
    321   /* TRUE if BFD should pre-bind symbols in a shared object.  */
    322   unsigned int symbolic: 1;
    323 
    324   /* TRUE if executable should not contain copy relocs.
    325      Setting this true may result in a non-sharable text segment.  */
    326   unsigned int nocopyreloc: 1;
    327 
    328   /* TRUE if BFD should export all symbols in the dynamic symbol table
    329      of an executable, rather than only those used.  */
    330   unsigned int export_dynamic: 1;
    331 
    332   /* TRUE if a default symbol version should be created and used for
    333      exported symbols.  */
    334   unsigned int create_default_symver: 1;
    335 
    336   /* TRUE if unreferenced sections should be removed.  */
    337   unsigned int gc_sections: 1;
    338 
    339   /* TRUE if exported symbols should be kept during section gc.  */
    340   unsigned int gc_keep_exported: 1;
    341 
    342   /* TRUE if every symbol should be reported back via the notice
    343      callback.  */
    344   unsigned int notice_all: 1;
    345 
    346   /* TRUE if the LTO plugin is active.  */
    347   unsigned int lto_plugin_active: 1;
    348 
    349   /* TRUE if global symbols in discarded sections should be stripped.  */
    350   unsigned int strip_discarded: 1;
    351 
    352   /* TRUE if all data symbols should be dynamic.  */
    353   unsigned int dynamic_data: 1;
    354 
    355   /* TRUE if section groups should be resolved.  */
    356   unsigned int resolve_section_groups: 1;
    357 
    358   /* Which symbols to strip.  */
    359   ENUM_BITFIELD (bfd_link_strip) strip : 2;
    360 
    361   /* Which local symbols to discard.  */
    362   ENUM_BITFIELD (bfd_link_discard) discard : 2;
    363 
    364   /* Whether to generate ELF common symbols with the STT_COMMON type.  */
    365   ENUM_BITFIELD (bfd_link_elf_stt_common) elf_stt_common : 2;
    366 
    367   /* Criteria for skipping symbols when determining
    368      whether to include an object from an archive. */
    369   ENUM_BITFIELD (bfd_link_common_skip_ar_symbols) common_skip_ar_symbols : 2;
    370 
    371   /* What to do with unresolved symbols in an object file.
    372      When producing executables the default is GENERATE_ERROR.
    373      When producing shared libraries the default is IGNORE.  The
    374      assumption with shared libraries is that the reference will be
    375      resolved at load/execution time.  */
    376   ENUM_BITFIELD (report_method) unresolved_syms_in_objects : 2;
    377 
    378   /* What to do with unresolved symbols in a shared library.
    379      The same defaults apply.  */
    380   ENUM_BITFIELD (report_method) unresolved_syms_in_shared_libs : 2;
    381 
    382   /* TRUE if shared objects should be linked directly, not shared.  */
    383   unsigned int static_link: 1;
    384 
    385   /* TRUE if symbols should be retained in memory, FALSE if they
    386      should be freed and reread.  */
    387   unsigned int keep_memory: 1;
    388 
    389   /* TRUE if BFD should generate relocation information in the final
    390      executable.  */
    391   unsigned int emitrelocations: 1;
    392 
    393   /* TRUE if PT_GNU_RELRO segment should be created.  */
    394   unsigned int relro: 1;
    395 
    396   /* TRUE if separate code segment should be created.  */
    397   unsigned int separate_code: 1;
    398 
    399   /* Nonzero if .eh_frame_hdr section and PT_GNU_EH_FRAME ELF segment
    400      should be created.  1 for DWARF2 tables, 2 for compact tables.  */
    401   unsigned int eh_frame_hdr_type: 2;
    402 
    403   /* TRUE if we should warn when adding a DT_TEXTREL to a shared object.  */
    404   unsigned int warn_shared_textrel: 1;
    405 
    406   /* TRUE if we should error when adding a DT_TEXTREL.  */
    407   unsigned int error_textrel: 1;
    408 
    409   /* TRUE if .hash section should be created.  */
    410   unsigned int emit_hash: 1;
    411 
    412   /* TRUE if .gnu.hash section should be created.  */
    413   unsigned int emit_gnu_hash: 1;
    414 
    415   /* If TRUE reduce memory overheads, at the expense of speed. This will
    416      cause map file generation to use an O(N^2) algorithm and disable
    417      caching ELF symbol buffer.  */
    418   unsigned int reduce_memory_overheads: 1;
    419 
    420   /* TRUE if the output file should be in a traditional format.  This
    421      is equivalent to the setting of the BFD_TRADITIONAL_FORMAT flag
    422      on the output file, but may be checked when reading the input
    423      files.  */
    424   unsigned int traditional_format: 1;
    425 
    426   /* TRUE if non-PLT relocs should be merged into one reloc section
    427      and sorted so that relocs against the same symbol come together.  */
    428   unsigned int combreloc: 1;
    429 
    430   /* TRUE if a default symbol version should be created and used for
    431      imported symbols.  */
    432   unsigned int default_imported_symver: 1;
    433 
    434   /* TRUE if the new ELF dynamic tags are enabled. */
    435   unsigned int new_dtags: 1;
    436 
    437   /* FALSE if .eh_frame unwind info should be generated for PLT and other
    438      linker created sections, TRUE if it should be omitted.  */
    439   unsigned int no_ld_generated_unwind_info: 1;
    440 
    441   /* TRUE if BFD should generate a "task linked" object file,
    442      similar to relocatable but also with globals converted to
    443      statics.  */
    444   unsigned int task_link: 1;
    445 
    446   /* TRUE if ok to have multiple definition.  */
    447   unsigned int allow_multiple_definition: 1;
    448 
    449   /* TRUE if ok to have prohibit multiple definition of absolute symbols.  */
    450   unsigned int prohibit_multiple_definition_absolute: 1;
    451 
    452   /* TRUE if ok to have version with no definition.  */
    453   unsigned int allow_undefined_version: 1;
    454 
    455   /* TRUE if some symbols have to be dynamic, controlled by
    456      --dynamic-list command line options.  */
    457   unsigned int dynamic: 1;
    458 
    459   /* TRUE if PT_GNU_STACK segment should be created with PF_R|PF_W|PF_X
    460      flags.  */
    461   unsigned int execstack: 1;
    462 
    463   /* TRUE if PT_GNU_STACK segment should be created with PF_R|PF_W
    464      flags.  */
    465   unsigned int noexecstack: 1;
    466 
    467   /* TRUE if we want to produced optimized output files.  This might
    468      need much more time and therefore must be explicitly selected.  */
    469   unsigned int optimize: 1;
    470 
    471   /* TRUE if user should be informed of removed unreferenced sections.  */
    472   unsigned int print_gc_sections: 1;
    473 
    474   /* TRUE if we should warn alternate ELF machine code.  */
    475   unsigned int warn_alternate_em: 1;
    476 
    477   /* TRUE if the linker script contained an explicit PHDRS command.  */
    478   unsigned int user_phdrs: 1;
    479 
    480   /* TRUE if program headers ought to be loaded.  */
    481   unsigned int load_phdrs: 1;
    482 
    483   /* TRUE if we should check relocations after all input files have
    484      been opened.  */
    485   unsigned int check_relocs_after_open_input: 1;
    486 
    487   /* TRUE if BND prefix in PLT entries is always generated.  */
    488   unsigned int bndplt: 1;
    489 
    490   /* TRUE if IBT-enabled PLT entries should be generated.  */
    491   unsigned int ibtplt: 1;
    492 
    493   /* TRUE if GNU_PROPERTY_X86_FEATURE_1_IBT should be generated.  */
    494   unsigned int ibt: 1;
    495 
    496   /* TRUE if GNU_PROPERTY_X86_FEATURE_1_SHSTK should be generated.  */
    497   unsigned int shstk: 1;
    498 
    499   /* TRUE if generation of .interp/PT_INTERP should be suppressed.  */
    500   unsigned int nointerp: 1;
    501 
    502   /* TRUE if we shouldn't check relocation overflow.  */
    503   unsigned int no_reloc_overflow_check: 1;
    504 
    505   /* TRUE if generate a 1-byte NOP as suffix for x86 call instruction.  */
    506   unsigned int call_nop_as_suffix : 1;
    507 
    508   /* TRUE if common symbols should be treated as undefined.  */
    509   unsigned int inhibit_common_definition : 1;
    510 
    511   /* TRUE if "-Map map" is passed to linker.  */
    512   unsigned int has_map_file : 1;
    513 
    514   /* The 1-byte NOP for x86 call instruction.  */
    515   char call_nop_byte;
    516 
    517   /* Char that may appear as the first char of a symbol, but should be
    518      skipped (like symbol_leading_char) when looking up symbols in
    519      wrap_hash.  Used by PowerPC Linux for 'dot' symbols.  */
    520   char wrap_char;
    521 
    522   /* Separator between archive and filename in linker script filespecs.  */
    523   char path_separator;
    524 
    525   /* Compress DWARF debug sections.  */
    526   enum compressed_debug_section_type compress_debug;
    527 
    528   /* Default stack size.  Zero means default (often zero itself), -1
    529      means explicitly zero-sized.  */
    530   bfd_signed_vma stacksize;
    531 
    532   /* Enable or disable target specific optimizations.
    533 
    534      Not all targets have optimizations to enable.
    535 
    536      Normally these optimizations are disabled by default but some targets
    537      prefer to enable them by default.  So this field is a tri-state variable.
    538      The values are:
    539 
    540      zero: Enable the optimizations (either from --relax being specified on
    541        the command line or the backend's before_allocation emulation function.
    542 
    543      positive: The user has requested that these optimizations be disabled.
    544        (Via the --no-relax command line option).
    545 
    546      negative: The optimizations are disabled.  (Set when initializing the
    547        args_type structure in ldmain.c:main.  */
    548   signed int disable_target_specific_optimizations;
    549 
    550   /* Function callbacks.  */
    551   const struct bfd_link_callbacks *callbacks;
    552 
    553   /* Hash table handled by BFD.  */
    554   struct bfd_link_hash_table *hash;
    555 
    556   /* Hash table of symbols to keep.  This is NULL unless strip is
    557      strip_some.  */
    558   struct bfd_hash_table *keep_hash;
    559 
    560   /* Hash table of symbols to report back via the notice callback.  If
    561      this is NULL, and notice_all is FALSE, then no symbols are
    562      reported back.  */
    563   struct bfd_hash_table *notice_hash;
    564 
    565   /* Hash table of symbols which are being wrapped (the --wrap linker
    566      option).  If this is NULL, no symbols are being wrapped.  */
    567   struct bfd_hash_table *wrap_hash;
    568 
    569   /* Hash table of symbols which may be left unresolved during
    570      a link.  If this is NULL, no symbols can be left unresolved.  */
    571   struct bfd_hash_table *ignore_hash;
    572 
    573   /* The output BFD.  */
    574   bfd *output_bfd;
    575 
    576   /* The import library generated.  */
    577   bfd *out_implib_bfd;
    578 
    579   /* The list of input BFD's involved in the link.  These are chained
    580      together via the link.next field.  */
    581   bfd *input_bfds;
    582   bfd **input_bfds_tail;
    583 
    584   /* If a symbol should be created for each input BFD, this is section
    585      where those symbols should be placed.  It must be a section in
    586      the output BFD.  It may be NULL, in which case no such symbols
    587      will be created.  This is to support CREATE_OBJECT_SYMBOLS in the
    588      linker command language.  */
    589   asection *create_object_symbols_section;
    590 
    591   /* List of global symbol names that are starting points for marking
    592      sections against garbage collection.  */
    593   struct bfd_sym_chain *gc_sym_list;
    594 
    595   /* If a base output file is wanted, then this points to it */
    596   void *base_file;
    597 
    598   /* The function to call when the executable or shared object is
    599      loaded.  */
    600   const char *init_function;
    601 
    602   /* The function to call when the executable or shared object is
    603      unloaded.  */
    604   const char *fini_function;
    605 
    606   /* Number of relaxation passes.  Usually only one relaxation pass
    607      is needed.  But a backend can have as many relaxation passes as
    608      necessary.  During bfd_relax_section call, it is set to the
    609      current pass, starting from 0.  */
    610   int relax_pass;
    611 
    612   /* Number of relaxation trips.  This number is incremented every
    613      time the relaxation pass is restarted due to a previous
    614      relaxation returning true in *AGAIN.  */
    615   int relax_trip;
    616 
    617   /* > 0 to treat protected data defined in the shared library as
    618      reference external.  0 to treat it as internal.  -1 to let
    619      backend to decide.  */
    620   int extern_protected_data;
    621 
    622   /* 1 to make undefined weak symbols dynamic when building a dynamic
    623      object.  0 to resolve undefined weak symbols to zero.  -1 to let
    624      the backend decide.  */
    625   int dynamic_undefined_weak;
    626 
    627   /* Non-zero if auto-import thunks for DATA items in pei386 DLLs
    628      should be generated/linked against.  Set to 1 if this feature
    629      is explicitly requested by the user, -1 if enabled by default.  */
    630   int pei386_auto_import;
    631 
    632   /* Non-zero if runtime relocs for DATA items with non-zero addends
    633      in pei386 DLLs should be generated.  Set to 1 if this feature
    634      is explicitly requested by the user, -1 if enabled by default.  */
    635   int pei386_runtime_pseudo_reloc;
    636 
    637   /* How many spare .dynamic DT_NULL entries should be added?  */
    638   unsigned int spare_dynamic_tags;
    639 
    640   /* May be used to set DT_FLAGS for ELF. */
    641   bfd_vma flags;
    642 
    643   /* May be used to set DT_FLAGS_1 for ELF. */
    644   bfd_vma flags_1;
    645 
    646   /* Start and end of RELRO region.  */
    647   bfd_vma relro_start, relro_end;
    648 
    649   /* List of symbols should be dynamic.  */
    650   struct bfd_elf_dynamic_list *dynamic_list;
    651 
    652   /* The version information.  */
    653   struct bfd_elf_version_tree *version_info;
    654 };
    655 
    656 /* This structures holds a set of callback functions.  These are called
    657    by the BFD linker routines.  */
    658 
    659 struct bfd_link_callbacks
    660 {
    661   /* A function which is called when an object is added from an
    662      archive.  ABFD is the archive element being added.  NAME is the
    663      name of the symbol which caused the archive element to be pulled
    664      in.  This function may set *SUBSBFD to point to an alternative
    665      BFD from which symbols should in fact be added in place of the
    666      original BFD's symbols.  Returns TRUE if the object should be
    667      added, FALSE if it should be skipped.  */
    668   bfd_boolean (*add_archive_element)
    669     (struct bfd_link_info *, bfd *abfd, const char *name, bfd **subsbfd);
    670   /* A function which is called when a symbol is found with multiple
    671      definitions.  H is the symbol which is defined multiple times.
    672      NBFD is the new BFD, NSEC is the new section, and NVAL is the new
    673      value.  NSEC may be bfd_com_section or bfd_ind_section.  */
    674   void (*multiple_definition)
    675     (struct bfd_link_info *, struct bfd_link_hash_entry *h,
    676      bfd *nbfd, asection *nsec, bfd_vma nval);
    677   /* A function which is called when a common symbol is defined
    678      multiple times.  H is the symbol appearing multiple times.
    679      NBFD is the BFD of the new symbol.  NTYPE is the type of the new
    680      symbol, one of bfd_link_hash_defined, bfd_link_hash_common, or
    681      bfd_link_hash_indirect.  If NTYPE is bfd_link_hash_common, NSIZE
    682      is the size of the new symbol.  */
    683   void (*multiple_common)
    684     (struct bfd_link_info *, struct bfd_link_hash_entry *h,
    685      bfd *nbfd, enum bfd_link_hash_type ntype, bfd_vma nsize);
    686   /* A function which is called to add a symbol to a set.  ENTRY is
    687      the link hash table entry for the set itself (e.g.,
    688      __CTOR_LIST__).  RELOC is the relocation to use for an entry in
    689      the set when generating a relocatable file, and is also used to
    690      get the size of the entry when generating an executable file.
    691      ABFD, SEC and VALUE identify the value to add to the set.  */
    692   void (*add_to_set)
    693     (struct bfd_link_info *, struct bfd_link_hash_entry *entry,
    694      bfd_reloc_code_real_type reloc, bfd *abfd, asection *sec, bfd_vma value);
    695   /* A function which is called when the name of a g++ constructor or
    696      destructor is found.  This is only called by some object file
    697      formats.  CONSTRUCTOR is TRUE for a constructor, FALSE for a
    698      destructor.  This will use BFD_RELOC_CTOR when generating a
    699      relocatable file.  NAME is the name of the symbol found.  ABFD,
    700      SECTION and VALUE are the value of the symbol.  */
    701   void (*constructor)
    702     (struct bfd_link_info *, bfd_boolean constructor, const char *name,
    703      bfd *abfd, asection *sec, bfd_vma value);
    704   /* A function which is called to issue a linker warning.  For
    705      example, this is called when there is a reference to a warning
    706      symbol.  WARNING is the warning to be issued.  SYMBOL is the name
    707      of the symbol which triggered the warning; it may be NULL if
    708      there is none.  ABFD, SECTION and ADDRESS identify the location
    709      which trigerred the warning; either ABFD or SECTION or both may
    710      be NULL if the location is not known.  */
    711   void (*warning)
    712     (struct bfd_link_info *, const char *warning, const char *symbol,
    713      bfd *abfd, asection *section, bfd_vma address);
    714   /* A function which is called when a relocation is attempted against
    715      an undefined symbol.  NAME is the symbol which is undefined.
    716      ABFD, SECTION and ADDRESS identify the location from which the
    717      reference is made. IS_FATAL indicates whether an undefined symbol is
    718      a fatal error or not. In some cases SECTION may be NULL.  */
    719   void (*undefined_symbol)
    720     (struct bfd_link_info *, const char *name, bfd *abfd,
    721      asection *section, bfd_vma address, bfd_boolean is_fatal);
    722   /* A function which is called when a reloc overflow occurs. ENTRY is
    723      the link hash table entry for the symbol the reloc is against.
    724      NAME is the name of the local symbol or section the reloc is
    725      against, RELOC_NAME is the name of the relocation, and ADDEND is
    726      any addend that is used.  ABFD, SECTION and ADDRESS identify the
    727      location at which the overflow occurs; if this is the result of a
    728      bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
    729      ABFD will be NULL.  */
    730   void (*reloc_overflow)
    731     (struct bfd_link_info *, struct bfd_link_hash_entry *entry,
    732      const char *name, const char *reloc_name, bfd_vma addend,
    733      bfd *abfd, asection *section, bfd_vma address);
    734   /* A function which is called when a dangerous reloc is performed.
    735      MESSAGE is an appropriate message.
    736      ABFD, SECTION and ADDRESS identify the location at which the
    737      problem occurred; if this is the result of a
    738      bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
    739      ABFD will be NULL.  */
    740   void (*reloc_dangerous)
    741     (struct bfd_link_info *, const char *message,
    742      bfd *abfd, asection *section, bfd_vma address);
    743   /* A function which is called when a reloc is found to be attached
    744      to a symbol which is not being written out.  NAME is the name of
    745      the symbol.  ABFD, SECTION and ADDRESS identify the location of
    746      the reloc; if this is the result of a
    747      bfd_section_reloc_link_order or bfd_symbol_reloc_link_order, then
    748      ABFD will be NULL.  */
    749   void (*unattached_reloc)
    750     (struct bfd_link_info *, const char *name,
    751      bfd *abfd, asection *section, bfd_vma address);
    752   /* A function which is called when a symbol in notice_hash is
    753      defined or referenced.  H is the symbol, INH the indirect symbol
    754      if applicable.  ABFD, SECTION and ADDRESS are the (new) value of
    755      the symbol.  If SECTION is bfd_und_section, this is a reference.
    756      FLAGS are the symbol BSF_* flags.  */
    757   bfd_boolean (*notice)
    758     (struct bfd_link_info *, struct bfd_link_hash_entry *h,
    759      struct bfd_link_hash_entry *inh,
    760      bfd *abfd, asection *section, bfd_vma address, flagword flags);
    761   /* Error or warning link info message.  */
    762   void (*einfo)
    763     (const char *fmt, ...);
    764   /* General link info message.  */
    765   void (*info)
    766     (const char *fmt, ...);
    767   /* Message to be printed in linker map file.  */
    768   void (*minfo)
    769     (const char *fmt, ...);
    770   /* This callback provides a chance for users of the BFD library to
    771      override its decision about whether to place two adjacent sections
    772      into the same segment.  */
    773   bfd_boolean (*override_segment_assignment)
    774     (struct bfd_link_info *, bfd * abfd,
    775      asection * current_section, asection * previous_section,
    776      bfd_boolean new_segment);
    777 };
    778 
    779 /* The linker builds link_order structures which tell the code how to
    781    include input data in the output file.  */
    782 
    783 /* These are the types of link_order structures.  */
    784 
    785 enum bfd_link_order_type
    786 {
    787   bfd_undefined_link_order,	/* Undefined.  */
    788   bfd_indirect_link_order,	/* Built from a section.  */
    789   bfd_data_link_order,		/* Set to explicit data.  */
    790   bfd_section_reloc_link_order,	/* Relocate against a section.  */
    791   bfd_symbol_reloc_link_order	/* Relocate against a symbol.  */
    792 };
    793 
    794 /* This is the link_order structure itself.  These form a chain
    795    attached to the output section whose contents they are describing.  */
    796 
    797 struct bfd_link_order
    798 {
    799   /* Next link_order in chain.  */
    800   struct bfd_link_order *next;
    801   /* Type of link_order.  */
    802   enum bfd_link_order_type type;
    803   /* Offset within output section.  */
    804   bfd_vma offset;
    805   /* Size within output section.  */
    806   bfd_size_type size;
    807   /* Type specific information.  */
    808   union
    809     {
    810       struct
    811 	{
    812 	  /* Section to include.  If this is used, then
    813 	     section->output_section must be the section the
    814 	     link_order is attached to, section->output_offset must
    815 	     equal the link_order offset field, and section->size
    816 	     must equal the link_order size field.  Maybe these
    817 	     restrictions should be relaxed someday.  */
    818 	  asection *section;
    819 	} indirect;
    820       struct
    821 	{
    822 	  /* Size of contents, or zero when contents should be filled by
    823 	     the architecture-dependent fill function.
    824 	     A non-zero value allows filling of the output section
    825 	     with an arbitrary repeated pattern.  */
    826 	  unsigned int size;
    827 	  /* Data to put into file.  */
    828 	  bfd_byte *contents;
    829 	} data;
    830       struct
    831 	{
    832 	  /* Description of reloc to generate.  Used for
    833 	     bfd_section_reloc_link_order and
    834 	     bfd_symbol_reloc_link_order.  */
    835 	  struct bfd_link_order_reloc *p;
    836 	} reloc;
    837     } u;
    838 };
    839 
    840 /* A linker order of type bfd_section_reloc_link_order or
    841    bfd_symbol_reloc_link_order means to create a reloc against a
    842    section or symbol, respectively.  This is used to implement -Ur to
    843    generate relocs for the constructor tables.  The
    844    bfd_link_order_reloc structure describes the reloc that BFD should
    845    create.  It is similar to a arelent, but I didn't use arelent
    846    because the linker does not know anything about most symbols, and
    847    any asymbol structure it creates will be partially meaningless.
    848    This information could logically be in the bfd_link_order struct,
    849    but I didn't want to waste the space since these types of relocs
    850    are relatively rare.  */
    851 
    852 struct bfd_link_order_reloc
    853 {
    854   /* Reloc type.  */
    855   bfd_reloc_code_real_type reloc;
    856 
    857   union
    858     {
    859       /* For type bfd_section_reloc_link_order, this is the section
    860 	 the reloc should be against.  This must be a section in the
    861 	 output BFD, not any of the input BFDs.  */
    862       asection *section;
    863       /* For type bfd_symbol_reloc_link_order, this is the name of the
    864 	 symbol the reloc should be against.  */
    865       const char *name;
    866     } u;
    867 
    868   /* Addend to use.  The object file should contain zero.  The BFD
    869      backend is responsible for filling in the contents of the object
    870      file correctly.  For some object file formats (e.g., COFF) the
    871      addend must be stored into in the object file, and for some
    872      (e.g., SPARC a.out) it is kept in the reloc.  */
    873   bfd_vma addend;
    874 };
    875 
    876 /* Allocate a new link_order for a section.  */
    877 extern struct bfd_link_order *bfd_new_link_order (bfd *, asection *);
    878 
    879 /* These structures are used to describe version information for the
    880    ELF linker.  These structures could be manipulated entirely inside
    881    BFD, but it would be a pain.  Instead, the regular linker sets up
    882    these structures, and then passes them into BFD.  */
    883 
    884 /* Glob pattern for a version.  */
    885 
    886 struct bfd_elf_version_expr
    887 {
    888   /* Next glob pattern for this version.  */
    889   struct bfd_elf_version_expr *next;
    890   /* Glob pattern.  */
    891   const char *pattern;
    892   /* Set if pattern is not a glob.  */
    893   unsigned int literal : 1;
    894   /* Defined by ".symver".  */
    895   unsigned int symver : 1;
    896   /* Defined by version script.  */
    897   unsigned int script : 1;
    898   /* Pattern type.  */
    899 #define BFD_ELF_VERSION_C_TYPE		1
    900 #define BFD_ELF_VERSION_CXX_TYPE	2
    901 #define BFD_ELF_VERSION_JAVA_TYPE	4
    902   unsigned int mask : 3;
    903 };
    904 
    905 struct bfd_elf_version_expr_head
    906 {
    907   /* List of all patterns, both wildcards and non-wildcards.  */
    908   struct bfd_elf_version_expr *list;
    909   /* Hash table for non-wildcards.  */
    910   void *htab;
    911   /* Remaining patterns.  */
    912   struct bfd_elf_version_expr *remaining;
    913   /* What kind of pattern types are present in list (bitmask).  */
    914   unsigned int mask;
    915 };
    916 
    917 /* Version dependencies.  */
    918 
    919 struct bfd_elf_version_deps
    920 {
    921   /* Next dependency for this version.  */
    922   struct bfd_elf_version_deps *next;
    923   /* The version which this version depends upon.  */
    924   struct bfd_elf_version_tree *version_needed;
    925 };
    926 
    927 /* A node in the version tree.  */
    928 
    929 struct bfd_elf_version_tree
    930 {
    931   /* Next version.  */
    932   struct bfd_elf_version_tree *next;
    933   /* Name of this version.  */
    934   const char *name;
    935   /* Version number.  */
    936   unsigned int vernum;
    937   /* Regular expressions for global symbols in this version.  */
    938   struct bfd_elf_version_expr_head globals;
    939   /* Regular expressions for local symbols in this version.  */
    940   struct bfd_elf_version_expr_head locals;
    941   /* List of versions which this version depends upon.  */
    942   struct bfd_elf_version_deps *deps;
    943   /* Index of the version name.  This is used within BFD.  */
    944   unsigned int name_indx;
    945   /* Whether this version tree was used.  This is used within BFD.  */
    946   int used;
    947   /* Matching hook.  */
    948   struct bfd_elf_version_expr *(*match)
    949     (struct bfd_elf_version_expr_head *head,
    950      struct bfd_elf_version_expr *prev, const char *sym);
    951 };
    952 
    953 struct bfd_elf_dynamic_list
    954 {
    955   struct bfd_elf_version_expr_head head;
    956   struct bfd_elf_version_expr *(*match)
    957     (struct bfd_elf_version_expr_head *head,
    958      struct bfd_elf_version_expr *prev, const char *sym);
    959 };
    960 
    961 #endif
    962