* peicode.h (coff_swap_filehdr_out) [COFF_IMAGE_WITH_PE]: Define
[platform/upstream/binutils.git] / bfd / peicode.h
1 /* Support for the generic parts of PE/PEI, for BFD.
2    Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001 Free Software Foundation, Inc.
3    Written by Cygnus Solutions.
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 2 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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.  */
20
21 /*
22 Most of this hacked by  Steve Chamberlain,
23                         sac@cygnus.com
24
25 PE/PEI rearrangement (and code added): Donn Terry
26                                        Softway Systems, Inc.
27 */
28
29 /* Hey look, some documentation [and in a place you expect to find it]!
30
31    The main reference for the pei format is "Microsoft Portable Executable
32    and Common Object File Format Specification 4.1".  Get it if you need to
33    do some serious hacking on this code.
34
35    Another reference:
36    "Peering Inside the PE: A Tour of the Win32 Portable Executable
37    File Format", MSJ 1994, Volume 9.
38
39    The *sole* difference between the pe format and the pei format is that the
40    latter has an MSDOS 2.0 .exe header on the front that prints the message
41    "This app must be run under Windows." (or some such).
42    (FIXME: Whether that statement is *really* true or not is unknown.
43    Are there more subtle differences between pe and pei formats?
44    For now assume there aren't.  If you find one, then for God sakes
45    document it here!)
46
47    The Microsoft docs use the word "image" instead of "executable" because
48    the former can also refer to a DLL (shared library).  Confusion can arise
49    because the `i' in `pei' also refers to "image".  The `pe' format can
50    also create images (i.e. executables), it's just that to run on a win32
51    system you need to use the pei format.
52
53    FIXME: Please add more docs here so the next poor fool that has to hack
54    on this code has a chance of getting something accomplished without
55    wasting too much time.
56 */
57
58 #include "libpei.h"
59
60 static boolean (*pe_saved_coff_bfd_print_private_bfd_data)
61     PARAMS ((bfd *, PTR)) =
62 #ifndef coff_bfd_print_private_bfd_data
63      NULL;
64 #else
65      coff_bfd_print_private_bfd_data;
66 #undef coff_bfd_print_private_bfd_data
67 #endif
68
69 static boolean pe_print_private_bfd_data PARAMS ((bfd *, PTR));
70 #define coff_bfd_print_private_bfd_data pe_print_private_bfd_data
71
72 static boolean (*pe_saved_coff_bfd_copy_private_bfd_data)
73     PARAMS ((bfd *, bfd *)) =
74 #ifndef coff_bfd_copy_private_bfd_data
75      NULL;
76 #else
77      coff_bfd_copy_private_bfd_data;
78 #undef coff_bfd_copy_private_bfd_data
79 #endif
80
81 static boolean pe_bfd_copy_private_bfd_data PARAMS ((bfd *, bfd *));
82 #define coff_bfd_copy_private_bfd_data pe_bfd_copy_private_bfd_data
83
84 #define coff_mkobject      pe_mkobject
85 #define coff_mkobject_hook pe_mkobject_hook
86
87 #ifndef NO_COFF_RELOCS
88 static void coff_swap_reloc_in PARAMS ((bfd *, PTR, PTR));
89 static unsigned int coff_swap_reloc_out PARAMS ((bfd *, PTR, PTR));
90 #endif
91 static void coff_swap_filehdr_in PARAMS ((bfd *, PTR, PTR));
92 static void coff_swap_scnhdr_in PARAMS ((bfd *, PTR, PTR));
93 static boolean pe_mkobject PARAMS ((bfd *));
94 static PTR pe_mkobject_hook PARAMS ((bfd *, PTR, PTR));
95
96 #ifdef COFF_IMAGE_WITH_PE
97 /* This structure contains static variables used by the ILF code.  */
98 typedef asection * asection_ptr;
99
100 typedef struct
101 {
102   bfd *                 abfd;
103   bfd_byte *            data;
104   struct bfd_in_memory * bim;
105   unsigned short        magic;
106
107   arelent *             reltab;
108   unsigned int          relcount;
109
110   coff_symbol_type *    sym_cache;
111   coff_symbol_type *    sym_ptr;
112   unsigned int          sym_index;
113
114   unsigned int *        sym_table;
115   unsigned int *        table_ptr;
116
117   combined_entry_type * native_syms;
118   combined_entry_type * native_ptr;
119
120   coff_symbol_type **   sym_ptr_table;
121   coff_symbol_type **   sym_ptr_ptr;
122
123   unsigned int          sec_index;
124
125   char *                string_table;
126   char *                string_ptr;
127   char *                end_string_ptr;
128
129   SYMENT *              esym_table;
130   SYMENT *              esym_ptr;
131
132   struct internal_reloc * int_reltab;
133 }
134 pe_ILF_vars;
135
136 static asection_ptr       pe_ILF_make_a_section   PARAMS ((pe_ILF_vars *, const char *, unsigned int, flagword));
137 static void               pe_ILF_make_a_reloc     PARAMS ((pe_ILF_vars *, bfd_vma, bfd_reloc_code_real_type, asection_ptr));
138 static void               pe_ILF_make_a_symbol    PARAMS ((pe_ILF_vars *, const char *, const char *, asection_ptr, flagword));
139 static void               pe_ILF_save_relocs      PARAMS ((pe_ILF_vars *, asection_ptr));
140 static void               pe_ILF_make_a_symbol_reloc  PARAMS ((pe_ILF_vars *, bfd_vma, bfd_reloc_code_real_type, struct symbol_cache_entry **, unsigned int));
141 static boolean            pe_ILF_build_a_bfd      PARAMS ((bfd *, unsigned short, bfd_byte *, bfd_byte *, unsigned int, unsigned int));
142 static const bfd_target * pe_ILF_object_p         PARAMS ((bfd *));
143 static const bfd_target * pe_bfd_object_p         PARAMS ((bfd *));
144 #endif /* COFF_IMAGE_WITH_PE */
145
146 /**********************************************************************/
147
148 #ifndef NO_COFF_RELOCS
149 static void
150 coff_swap_reloc_in (abfd, src, dst)
151      bfd *abfd;
152      PTR src;
153      PTR dst;
154 {
155   RELOC *reloc_src = (RELOC *) src;
156   struct internal_reloc *reloc_dst = (struct internal_reloc *) dst;
157
158   reloc_dst->r_vaddr = bfd_h_get_32(abfd, (bfd_byte *)reloc_src->r_vaddr);
159   reloc_dst->r_symndx = bfd_h_get_signed_32(abfd, (bfd_byte *) reloc_src->r_symndx);
160
161   reloc_dst->r_type = bfd_h_get_16(abfd, (bfd_byte *) reloc_src->r_type);
162
163 #ifdef SWAP_IN_RELOC_OFFSET
164   reloc_dst->r_offset = SWAP_IN_RELOC_OFFSET(abfd,
165                                              (bfd_byte *) reloc_src->r_offset);
166 #endif
167 }
168
169 static unsigned int
170 coff_swap_reloc_out (abfd, src, dst)
171      bfd       *abfd;
172      PTR        src;
173      PTR        dst;
174 {
175   struct internal_reloc *reloc_src = (struct internal_reloc *)src;
176   struct external_reloc *reloc_dst = (struct external_reloc *)dst;
177   bfd_h_put_32(abfd, reloc_src->r_vaddr, (bfd_byte *) reloc_dst->r_vaddr);
178   bfd_h_put_32(abfd, reloc_src->r_symndx, (bfd_byte *) reloc_dst->r_symndx);
179
180   bfd_h_put_16(abfd, reloc_src->r_type, (bfd_byte *)
181                reloc_dst->r_type);
182
183 #ifdef SWAP_OUT_RELOC_OFFSET
184   SWAP_OUT_RELOC_OFFSET(abfd,
185                         reloc_src->r_offset,
186                         (bfd_byte *) reloc_dst->r_offset);
187 #endif
188 #ifdef SWAP_OUT_RELOC_EXTRA
189   SWAP_OUT_RELOC_EXTRA(abfd,reloc_src, reloc_dst);
190 #endif
191   return RELSZ;
192 }
193 #endif /* not NO_COFF_RELOCS */
194
195 static void
196 coff_swap_filehdr_in (abfd, src, dst)
197      bfd            *abfd;
198      PTR             src;
199      PTR             dst;
200 {
201   FILHDR *filehdr_src = (FILHDR *) src;
202   struct internal_filehdr *filehdr_dst = (struct internal_filehdr *) dst;
203   filehdr_dst->f_magic = bfd_h_get_16(abfd, (bfd_byte *) filehdr_src->f_magic);
204   filehdr_dst->f_nscns = bfd_h_get_16(abfd, (bfd_byte *)filehdr_src-> f_nscns);
205   filehdr_dst->f_timdat = bfd_h_get_32(abfd, (bfd_byte *)filehdr_src-> f_timdat);
206
207   filehdr_dst->f_nsyms = bfd_h_get_32(abfd, (bfd_byte *)filehdr_src-> f_nsyms);
208   filehdr_dst->f_flags = bfd_h_get_16(abfd, (bfd_byte *)filehdr_src-> f_flags);
209   filehdr_dst->f_symptr = bfd_h_get_32 (abfd, (bfd_byte *) filehdr_src->f_symptr);
210
211   /* Other people's tools sometimes generate headers with an nsyms but
212      a zero symptr.  */
213   if (filehdr_dst->f_nsyms != 0 && filehdr_dst->f_symptr == 0)
214     {
215       filehdr_dst->f_nsyms = 0;
216       filehdr_dst->f_flags |= F_LSYMS;
217     }
218
219   filehdr_dst->f_opthdr = bfd_h_get_16(abfd,
220                                        (bfd_byte *)filehdr_src-> f_opthdr);
221 }
222
223 #ifdef COFF_IMAGE_WITH_PE
224 # define coff_swap_filehdr_out _bfd_XXi_only_swap_filehdr_out
225 #else
226 # define coff_swap_filehdr_out _bfd_pe_only_swap_filehdr_out
227 #endif
228
229 static void
230 coff_swap_scnhdr_in (abfd, ext, in)
231      bfd            *abfd;
232      PTR             ext;
233      PTR             in;
234 {
235   SCNHDR *scnhdr_ext = (SCNHDR *) ext;
236   struct internal_scnhdr *scnhdr_int = (struct internal_scnhdr *) in;
237
238   memcpy(scnhdr_int->s_name, scnhdr_ext->s_name, sizeof (scnhdr_int->s_name));
239   scnhdr_int->s_vaddr =
240     GET_SCNHDR_VADDR (abfd, (bfd_byte *) scnhdr_ext->s_vaddr);
241   scnhdr_int->s_paddr =
242     GET_SCNHDR_PADDR (abfd, (bfd_byte *) scnhdr_ext->s_paddr);
243   scnhdr_int->s_size =
244     GET_SCNHDR_SIZE (abfd, (bfd_byte *) scnhdr_ext->s_size);
245   scnhdr_int->s_scnptr =
246     GET_SCNHDR_SCNPTR (abfd, (bfd_byte *) scnhdr_ext->s_scnptr);
247   scnhdr_int->s_relptr =
248     GET_SCNHDR_RELPTR (abfd, (bfd_byte *) scnhdr_ext->s_relptr);
249   scnhdr_int->s_lnnoptr =
250     GET_SCNHDR_LNNOPTR (abfd, (bfd_byte *) scnhdr_ext->s_lnnoptr);
251   scnhdr_int->s_flags = bfd_h_get_32(abfd, (bfd_byte *) scnhdr_ext->s_flags);
252
253   /* MS handles overflow of line numbers by carrying into the reloc
254      field (it appears).  Since it's supposed to be zero for PE
255      *IMAGE* format, that's safe.  This is still a bit iffy.  */
256 #ifdef COFF_IMAGE_WITH_PE
257   scnhdr_int->s_nlnno =
258     (bfd_h_get_16 (abfd, (bfd_byte *) scnhdr_ext->s_nlnno)
259      + (bfd_h_get_16 (abfd, (bfd_byte *) scnhdr_ext->s_nreloc) << 16));
260   scnhdr_int->s_nreloc = 0;
261 #else
262   scnhdr_int->s_nreloc = bfd_h_get_16 (abfd,
263                                        (bfd_byte *) scnhdr_ext->s_nreloc);
264   scnhdr_int->s_nlnno = bfd_h_get_16 (abfd,
265                                       (bfd_byte *) scnhdr_ext->s_nlnno);
266 #endif
267
268   if (scnhdr_int->s_vaddr != 0)
269     {
270       scnhdr_int->s_vaddr += pe_data (abfd)->pe_opthdr.ImageBase;
271       scnhdr_int->s_vaddr &= 0xffffffff;
272     }
273
274 #ifndef COFF_NO_HACK_SCNHDR_SIZE
275   /* If this section holds uninitialized data, use the virtual size
276      (stored in s_paddr) instead of the physical size.  */
277   if ((scnhdr_int->s_flags & IMAGE_SCN_CNT_UNINITIALIZED_DATA) != 0)
278     {
279       scnhdr_int->s_size = scnhdr_int->s_paddr;
280       /* This code used to set scnhdr_int->s_paddr to 0.  However,
281          coff_set_alignment_hook stores s_paddr in virt_size, which
282          only works if it correctly holds the virtual size of the
283          section.  */
284     }
285 #endif
286 }
287
288 static boolean
289 pe_mkobject (abfd)
290      bfd * abfd;
291 {
292   pe_data_type *pe;
293   abfd->tdata.pe_obj_data =
294     (struct pe_tdata *) bfd_zalloc (abfd, sizeof (pe_data_type));
295
296   if (abfd->tdata.pe_obj_data == 0)
297     return false;
298
299   pe = pe_data (abfd);
300
301   pe->coff.pe = 1;
302
303   /* in_reloc_p is architecture dependent.  */
304   pe->in_reloc_p = in_reloc_p;
305
306 #ifdef PEI_FORCE_MINIMUM_ALIGNMENT
307   pe->force_minimum_alignment = 1;
308 #endif
309 #ifdef PEI_TARGET_SUBSYSTEM
310   pe->target_subsystem = PEI_TARGET_SUBSYSTEM;
311 #endif
312
313   return true;
314 }
315
316 /* Create the COFF backend specific information.  */
317 static PTR
318 pe_mkobject_hook (abfd, filehdr, aouthdr)
319      bfd * abfd;
320      PTR filehdr;
321      PTR aouthdr ATTRIBUTE_UNUSED;
322 {
323   struct internal_filehdr *internal_f = (struct internal_filehdr *) filehdr;
324   pe_data_type *pe;
325
326   if (pe_mkobject (abfd) == false)
327     return NULL;
328
329   pe = pe_data (abfd);
330   pe->coff.sym_filepos = internal_f->f_symptr;
331   /* These members communicate important constants about the symbol
332      table to GDB's symbol-reading code.  These `constants'
333      unfortunately vary among coff implementations...  */
334   pe->coff.local_n_btmask = N_BTMASK;
335   pe->coff.local_n_btshft = N_BTSHFT;
336   pe->coff.local_n_tmask = N_TMASK;
337   pe->coff.local_n_tshift = N_TSHIFT;
338   pe->coff.local_symesz = SYMESZ;
339   pe->coff.local_auxesz = AUXESZ;
340   pe->coff.local_linesz = LINESZ;
341
342   pe->coff.timestamp = internal_f->f_timdat;
343
344   obj_raw_syment_count (abfd) =
345     obj_conv_table_size (abfd) =
346       internal_f->f_nsyms;
347
348   pe->real_flags = internal_f->f_flags;
349
350   if ((internal_f->f_flags & F_DLL) != 0)
351     pe->dll = 1;
352
353   if ((internal_f->f_flags & IMAGE_FILE_DEBUG_STRIPPED) == 0)
354     abfd->flags |= HAS_DEBUG;
355
356 #ifdef COFF_IMAGE_WITH_PE
357   if (aouthdr)
358     pe->pe_opthdr = ((struct internal_aouthdr *)aouthdr)->pe;
359 #endif
360
361 #ifdef ARM
362   if (! _bfd_coff_arm_set_private_flags (abfd, internal_f->f_flags))
363     coff_data (abfd) ->flags = 0;
364 #endif
365
366   return (PTR) pe;
367 }
368
369 static boolean
370 pe_print_private_bfd_data (abfd, vfile)
371      bfd *abfd;
372      PTR vfile;
373 {
374   FILE *file = (FILE *) vfile;
375
376   if (!_bfd_XX_print_private_bfd_data_common (abfd, vfile))
377     return false;
378
379   if (pe_saved_coff_bfd_print_private_bfd_data != NULL)
380     {
381       fputc ('\n', file);
382
383       return pe_saved_coff_bfd_print_private_bfd_data (abfd, vfile);
384     }
385
386   return true;
387 }
388
389 /* Copy any private info we understand from the input bfd
390    to the output bfd.  */
391
392 static boolean
393 pe_bfd_copy_private_bfd_data (ibfd, obfd)
394      bfd *ibfd, *obfd;
395 {
396   if (!_bfd_XX_bfd_copy_private_bfd_data_common (ibfd, obfd))
397     return false;
398
399   if (pe_saved_coff_bfd_copy_private_bfd_data)
400     return pe_saved_coff_bfd_copy_private_bfd_data (ibfd, obfd);
401
402   return true;
403 }
404
405 #define coff_bfd_copy_private_section_data \
406   _bfd_XX_bfd_copy_private_section_data
407
408 #define coff_get_symbol_info _bfd_XX_get_symbol_info
409
410 #ifdef COFF_IMAGE_WITH_PE
411 \f
412 /* Code to handle Microsoft's Image Library Format.
413    Also known as LINK6 format.
414    Documentation about this format can be found at:
415
416    http://msdn.microsoft.com/library/specs/pecoff_section8.htm  */
417
418 /* The following constants specify the sizes of the various data
419    structures that we have to create in order to build a bfd describing
420    an ILF object file.  The final "+ 1" in the definitions of SIZEOF_IDATA6
421    and SIZEOF_IDATA7 below is to allow for the possibility that we might
422    need a padding byte in order to ensure 16 bit alignment for the section's
423    contents.
424
425    The value for SIZEOF_ILF_STRINGS is computed as follows:
426
427       There will be NUM_ILF_SECTIONS section symbols.  Allow 9 characters
428       per symbol for their names (longest section name is .idata$x).
429
430       There will be two symbols for the imported value, one the symbol name
431       and one with _imp__ prefixed.  Allowing for the terminating nul's this
432       is strlen (symbol_name) * 2 + 8 + 21 + strlen (source_dll).
433
434       The strings in the string table must start STRING__SIZE_SIZE bytes into
435       the table in order to for the string lookup code in coffgen/coffcode to
436       work.  */
437 #define NUM_ILF_RELOCS          8
438 #define NUM_ILF_SECTIONS        6
439 #define NUM_ILF_SYMS            (2 + NUM_ILF_SECTIONS)
440
441 #define SIZEOF_ILF_SYMS         (NUM_ILF_SYMS * sizeof (* vars.sym_cache))
442 #define SIZEOF_ILF_SYM_TABLE    (NUM_ILF_SYMS * sizeof (* vars.sym_table))
443 #define SIZEOF_ILF_NATIVE_SYMS  (NUM_ILF_SYMS * sizeof (* vars.native_syms))
444 #define SIZEOF_ILF_SYM_PTR_TABLE (NUM_ILF_SYMS * sizeof (* vars.sym_ptr_table))
445 #define SIZEOF_ILF_EXT_SYMS     (NUM_ILF_SYMS * sizeof (* vars.esym_table))
446 #define SIZEOF_ILF_RELOCS       (NUM_ILF_RELOCS * sizeof (* vars.reltab))
447 #define SIZEOF_ILF_INT_RELOCS   (NUM_ILF_RELOCS * sizeof (* vars.int_reltab))
448 #define SIZEOF_ILF_STRINGS      (strlen (symbol_name) * 2 + 8 \
449                                         + 21 + strlen (source_dll) \
450                                         + NUM_ILF_SECTIONS * 9 \
451                                         + STRING_SIZE_SIZE)
452 #define SIZEOF_IDATA2           (5 * 4)
453 #define SIZEOF_IDATA4           (1 * 4)
454 #define SIZEOF_IDATA5           (1 * 4)
455 #define SIZEOF_IDATA6           (2 + strlen (symbol_name) + 1 + 1)
456 #define SIZEOF_IDATA7           (strlen (source_dll) + 1 + 1)
457 #define SIZEOF_ILF_SECTIONS     (NUM_ILF_SECTIONS * sizeof (struct coff_section_tdata))
458
459 #define ILF_DATA_SIZE                           \
460       sizeof (* vars.bim)                       \
461     + SIZEOF_ILF_SYMS                           \
462     + SIZEOF_ILF_SYM_TABLE                      \
463     + SIZEOF_ILF_NATIVE_SYMS                    \
464     + SIZEOF_ILF_SYM_PTR_TABLE                  \
465     + SIZEOF_ILF_EXT_SYMS                       \
466     + SIZEOF_ILF_RELOCS                         \
467     + SIZEOF_ILF_INT_RELOCS                     \
468     + SIZEOF_ILF_STRINGS                        \
469     + SIZEOF_IDATA2                             \
470     + SIZEOF_IDATA4                             \
471     + SIZEOF_IDATA5                             \
472     + SIZEOF_IDATA6                             \
473     + SIZEOF_IDATA7                             \
474     + SIZEOF_ILF_SECTIONS                       \
475     + MAX_TEXT_SECTION_SIZE
476
477 /* Create an empty relocation against the given symbol.  */
478 static void
479 pe_ILF_make_a_symbol_reloc (pe_ILF_vars *                 vars,
480                             bfd_vma                       address,
481                             bfd_reloc_code_real_type      reloc,
482                             struct symbol_cache_entry **  sym,
483                             unsigned int                  sym_index)
484 {
485   arelent * entry;
486   struct internal_reloc * internal;
487
488   entry = vars->reltab + vars->relcount;
489   internal = vars->int_reltab + vars->relcount;
490
491   entry->address     = address;
492   entry->addend      = 0;
493   entry->howto       = bfd_reloc_type_lookup (vars->abfd, reloc);
494   entry->sym_ptr_ptr = sym;
495
496   internal->r_vaddr  = address;
497   internal->r_symndx = sym_index;
498   internal->r_type   = entry->howto->type;
499 #if 0  /* These fields do not need to be initialised.  */
500   internal->r_size   = 0;
501   internal->r_extern = 0;
502   internal->r_offset = 0;
503 #endif
504
505   vars->relcount ++;
506
507   BFD_ASSERT (vars->relcount <= NUM_ILF_RELOCS);
508 }
509
510 /* Create an empty relocation against the given section.  */
511 static void
512 pe_ILF_make_a_reloc (pe_ILF_vars *             vars,
513                      bfd_vma                   address,
514                      bfd_reloc_code_real_type  reloc,
515                      asection_ptr              sec)
516 {
517   pe_ILF_make_a_symbol_reloc (vars, address, reloc, sec->symbol_ptr_ptr,
518                               coff_section_data (vars->abfd, sec)->i);
519 }
520
521 /* Move the queued relocs into the given section.  */
522 static void
523 pe_ILF_save_relocs (pe_ILF_vars * vars,
524                     asection_ptr  sec)
525 {
526   /* Make sure that there is somewhere to store the internal relocs.  */
527   if (coff_section_data (vars->abfd, sec) == NULL)
528     /* We should probably return an error indication here.  */
529     abort ();
530
531   coff_section_data (vars->abfd, sec)->relocs = vars->int_reltab;
532   coff_section_data (vars->abfd, sec)->keep_relocs = true;
533
534   sec->relocation  = vars->reltab;
535   sec->reloc_count = vars->relcount;
536   sec->flags      |= SEC_RELOC;
537
538   vars->reltab     += vars->relcount;
539   vars->int_reltab += vars->relcount;
540   vars->relcount   = 0;
541
542   BFD_ASSERT ((bfd_byte *)vars->int_reltab < (bfd_byte *)vars->string_table);
543 }
544
545 /* Create a global symbol and add it to the relevant tables.  */
546 static void
547 pe_ILF_make_a_symbol (pe_ILF_vars *  vars,
548                       const char *   prefix,
549                       const char *   symbol_name,
550                       asection_ptr   section,
551                       flagword       extra_flags)
552 {
553   coff_symbol_type * sym;
554   combined_entry_type * ent;
555   SYMENT * esym;
556   unsigned short sclass;
557
558   if (extra_flags & BSF_LOCAL)
559     sclass = C_STAT;
560   else
561     sclass = C_EXT;
562
563 #ifdef THUMBPEMAGIC
564   if (vars->magic == THUMBPEMAGIC)
565     {
566       if (extra_flags & BSF_FUNCTION)
567         sclass = C_THUMBEXTFUNC;
568       else if (extra_flags & BSF_LOCAL)
569         sclass = C_THUMBSTAT;
570       else
571         sclass = C_THUMBEXT;
572     }
573 #endif
574
575   BFD_ASSERT (vars->sym_index < NUM_ILF_SYMS);
576
577   sym = vars->sym_ptr;
578   ent = vars->native_ptr;
579   esym = vars->esym_ptr;
580
581   /* Copy the symbol's name into the string table.  */
582   sprintf (vars->string_ptr, "%s%s", prefix, symbol_name);
583
584   if (section == NULL)
585     section = (asection_ptr) & bfd_und_section;
586
587   /* Initialise the external symbol.  */
588   bfd_h_put_32 (vars->abfd, vars->string_ptr - vars->string_table, (bfd_byte *) esym->e.e.e_offset);
589   bfd_h_put_16 (vars->abfd, section->target_index, (bfd_byte *) esym->e_scnum);
590   esym->e_sclass[0] = sclass;
591
592   /* The following initialisations are unnecessary - the memory is
593      zero initialised.  They are just kept here as reminders.  */
594 #if 0
595   esym->e.e.e_zeroes = 0;
596   esym->e_value = 0;
597   esym->e_type = T_NULL;
598   esym->e_numaux = 0;
599 #endif
600
601   /* Initialise the internal symbol structure.  */
602   ent->u.syment.n_sclass          = sclass;
603   ent->u.syment.n_scnum           = section->target_index;
604   ent->u.syment._n._n_n._n_offset = (long) sym;
605
606 #if 0 /* See comment above.  */
607   ent->u.syment.n_value  = 0;
608   ent->u.syment.n_flags  = 0;
609   ent->u.syment.n_type   = T_NULL;
610   ent->u.syment.n_numaux = 0;
611   ent->fix_value         = 0;
612 #endif
613
614   sym->symbol.the_bfd = vars->abfd;
615   sym->symbol.name    = vars->string_ptr;
616   sym->symbol.flags   = BSF_EXPORT | BSF_GLOBAL | extra_flags;
617   sym->symbol.section = section;
618   sym->native         = ent;
619
620 #if 0 /* See comment above.  */
621   sym->symbol.value   = 0;
622   sym->symbol.udata.i = 0;
623   sym->done_lineno    = false;
624   sym->lineno         = NULL;
625 #endif
626
627   * vars->table_ptr = vars->sym_index;
628   * vars->sym_ptr_ptr = sym;
629
630   /* Adjust pointers for the next symbol.  */
631   vars->sym_index ++;
632   vars->sym_ptr ++;
633   vars->sym_ptr_ptr ++;
634   vars->table_ptr ++;
635   vars->native_ptr ++;
636   vars->esym_ptr ++;
637   vars->string_ptr += strlen (symbol_name) + strlen (prefix) + 1;
638
639   BFD_ASSERT (vars->string_ptr < vars->end_string_ptr);
640 }
641
642 /* Create a section.  */
643 static asection_ptr
644 pe_ILF_make_a_section (pe_ILF_vars * vars,
645                        const char *  name,
646                        unsigned int  size,
647                        flagword      extra_flags)
648 {
649   asection_ptr sec;
650   flagword     flags;
651
652   sec = bfd_make_section_old_way (vars->abfd, name);
653   if (sec == NULL)
654     return NULL;
655
656   flags = SEC_HAS_CONTENTS | SEC_ALLOC | SEC_LOAD | SEC_KEEP | SEC_IN_MEMORY;
657
658   bfd_set_section_flags (vars->abfd, sec, flags | extra_flags);
659
660   bfd_set_section_alignment (vars->abfd, sec, 2);
661
662   /* Check that we will not run out of space.  */
663   BFD_ASSERT (vars->data + size < vars->bim->buffer + vars->bim->size);
664
665   /* Set the section size and contents.  The actual
666      contents are filled in by our parent.  */
667   bfd_set_section_size (vars->abfd, sec, size);
668   sec->contents = vars->data;
669   sec->target_index = vars->sec_index ++;
670
671   /* Advance data pointer in the vars structure.  */
672   vars->data += size;
673
674   /* Skip the padding byte if it was not needed.
675      The logic here is that if the string length is odd,
676      then the entire string length, including the null byte,
677      is even and so the extra, padding byte, is not needed.  */
678   if (size & 1)
679     vars->data --;
680
681   /* Create a coff_section_tdata structure for our use.  */
682   sec->used_by_bfd = (struct coff_section_tdata *) vars->data;
683   vars->data += sizeof (struct coff_section_tdata);
684
685   BFD_ASSERT (vars->data <= vars->bim->buffer + vars->bim->size);
686
687   /* Create a symbol to refer to this section.  */
688   pe_ILF_make_a_symbol (vars, "", name, sec, BSF_LOCAL);
689
690   /* Cache the index to the symbol in the coff_section_data structure.  */
691   coff_section_data (vars->abfd, sec)->i = vars->sym_index - 1;
692
693   return sec;
694 }
695
696 /* This structure contains the code that goes into the .text section
697    in order to perform a jump into the DLL lookup table.  The entries
698    in the table are index by the magic number used to represent the
699    machine type in the PE file.  The contents of the data[] arrays in
700    these entries are stolen from the jtab[] arrays in ld/pe-dll.c.
701    The SIZE field says how many bytes in the DATA array are actually
702    used.  The OFFSET field says where in the data array the address
703    of the .idata$5 section should be placed.  */
704 #define MAX_TEXT_SECTION_SIZE 32
705
706 typedef struct
707 {
708   unsigned short magic;
709   unsigned char  data[MAX_TEXT_SECTION_SIZE];
710   unsigned int   size;
711   unsigned int   offset;
712 }
713 jump_table;
714
715 static jump_table jtab[] =
716 {
717 #ifdef I386MAGIC
718   { I386MAGIC,
719     { 0xff, 0x25, 0x00, 0x00, 0x00, 0x00, 0x90, 0x90 },
720     8, 2
721   },
722 #endif
723
724 #ifdef  MC68MAGIC
725   { MC68MAGIC, { /* XXX fill me in */ }, 0, 0 },
726 #endif
727 #ifdef  MIPS_ARCH_MAGIC_WINCE
728   { MIPS_ARCH_MAGIC_WINCE,
729     { 0x00, 0x00, 0x08, 0x3c, 0x00, 0x00, 0x08, 0x8d,
730       0x08, 0x00, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00 },
731     16, 0
732   },
733 #endif
734
735 #ifdef  SH_ARCH_MAGIC_WINCE
736   { SH_ARCH_MAGIC_WINCE,
737     { 0x01, 0xd0, 0x02, 0x60, 0x2b, 0x40,
738       0x09, 0x00, 0x00, 0x00, 0x00, 0x00 },
739     12, 8
740   },
741 #endif
742
743 #ifdef  ARMPEMAGIC
744   { ARMPEMAGIC,
745     { 0x00, 0xc0, 0x9f, 0xe5, 0x00, 0xf0,
746       0x9c, 0xe5, 0x00, 0x00, 0x00, 0x00},
747     12, 8
748   },
749 #endif
750
751 #ifdef  THUMBPEMAGIC
752   { THUMBPEMAGIC,
753     { 0x40, 0xb4, 0x02, 0x4e, 0x36, 0x68, 0xb4, 0x46,
754       0x40, 0xbc, 0x60, 0x47, 0x00, 0x00, 0x00, 0x00 },
755     16, 12
756   },
757 #endif
758   { 0, { 0 }, 0, 0 }
759 };
760
761 #ifndef NUM_ENTRIES
762 #define NUM_ENTRIES(a) (sizeof (a) / sizeof (a)[0])
763 #endif
764
765 /* Build a full BFD from the information supplied in a ILF object.  */
766 static boolean
767 pe_ILF_build_a_bfd (bfd *           abfd,
768                     unsigned short  magic,
769                     bfd_byte *      symbol_name,
770                     bfd_byte *      source_dll,
771                     unsigned int    ordinal,
772                     unsigned int    types)
773 {
774   bfd_byte *               ptr;
775   pe_ILF_vars              vars;
776   struct internal_filehdr  internal_f;
777   unsigned int             import_type;
778   unsigned int             import_name_type;
779   asection_ptr             id4, id5, id6 = NULL, text = NULL;
780   coff_symbol_type **      imp_sym;
781   unsigned int             imp_index;
782
783   /* Decode and verify the types field of the ILF structure.  */
784   import_type = types & 0x3;
785   import_name_type = (types & 0x1c) >> 2;
786
787   switch (import_type)
788     {
789     case IMPORT_CODE:
790     case IMPORT_DATA:
791       break;
792
793     case IMPORT_CONST:
794       /* XXX code yet to be written.  */
795       _bfd_error_handler (_("%s: Unhandled import type; %x"),
796                           bfd_get_filename (abfd), import_type);
797       return false;
798
799     default:
800       _bfd_error_handler (_("%s: Unrecognised import type; %x"),
801                           bfd_get_filename (abfd), import_type);
802       return false;
803     }
804
805   switch (import_name_type)
806     {
807     case IMPORT_ORDINAL:
808     case IMPORT_NAME:
809     case IMPORT_NAME_NOPREFIX:
810     case IMPORT_NAME_UNDECORATE:
811       break;
812
813     default:
814       _bfd_error_handler (_("%s: Unrecognised import name type; %x"),
815                           bfd_get_filename (abfd), import_name_type);
816       return false;
817     }
818
819   /* Initialise local variables.
820
821      Note these are kept in a structure rather than being
822      declared as statics since bfd frowns on global variables.
823
824      We are going to construct the contents of the BFD in memory,
825      so allocate all the space that we will need right now.  */
826   ptr = bfd_zalloc (abfd, ILF_DATA_SIZE);
827   if (ptr == NULL)
828     return false;
829
830   /* Create a bfd_in_memory structure.  */
831   vars.bim = (struct bfd_in_memory *) ptr;
832   vars.bim->buffer = ptr;
833   vars.bim->size   = ILF_DATA_SIZE;
834   ptr += sizeof (* vars.bim);
835
836   /* Initialise the pointers to regions of the memory and the
837      other contents of the pe_ILF_vars structure as well.  */
838   vars.sym_cache = (coff_symbol_type *) ptr;
839   vars.sym_ptr   = (coff_symbol_type *) ptr;
840   vars.sym_index = 0;
841   ptr += SIZEOF_ILF_SYMS;
842
843   vars.sym_table = (unsigned int *) ptr;
844   vars.table_ptr = (unsigned int *) ptr;
845   ptr += SIZEOF_ILF_SYM_TABLE;
846
847   vars.native_syms = (combined_entry_type *) ptr;
848   vars.native_ptr  = (combined_entry_type *) ptr;
849   ptr += SIZEOF_ILF_NATIVE_SYMS;
850
851   vars.sym_ptr_table = (coff_symbol_type **) ptr;
852   vars.sym_ptr_ptr   = (coff_symbol_type **) ptr;
853   ptr += SIZEOF_ILF_SYM_PTR_TABLE;
854
855   vars.esym_table = (SYMENT *) ptr;
856   vars.esym_ptr   = (SYMENT *) ptr;
857   ptr += SIZEOF_ILF_EXT_SYMS;
858
859   vars.reltab   = (arelent *) ptr;
860   vars.relcount = 0;
861   ptr += SIZEOF_ILF_RELOCS;
862
863   vars.int_reltab  = (struct internal_reloc *) ptr;
864   ptr += SIZEOF_ILF_INT_RELOCS;
865
866   vars.string_table = ptr;
867   vars.string_ptr   = ptr + STRING_SIZE_SIZE;
868   ptr += SIZEOF_ILF_STRINGS;
869   vars.end_string_ptr = ptr;
870
871   /* The remaining space in bim->buffer is used
872      by the pe_ILF_make_a_section() function.  */
873   vars.data = ptr;
874   vars.abfd = abfd;
875   vars.sec_index = 0;
876   vars.magic = magic;
877
878   /* Create the initial .idata$<n> sections:
879      [.idata$2:  Import Directory Table -- not needed]
880      .idata$4:  Import Lookup Table
881      .idata$5:  Import Address Table
882
883      Note we do not create a .idata$3 section as this is
884      created for us by the linker script.  */
885   id4 = pe_ILF_make_a_section (& vars, ".idata$4", SIZEOF_IDATA4, 0);
886   id5 = pe_ILF_make_a_section (& vars, ".idata$5", SIZEOF_IDATA5, 0);
887   if (id4 == NULL || id5 == NULL)
888     return false;
889
890   /* Fill in the contents of these sections.  */
891   if (import_name_type == IMPORT_ORDINAL)
892     {
893       if (ordinal == 0)
894         /* XXX - treat as IMPORT_NAME ??? */
895         abort ();
896
897       * (unsigned int *) id4->contents = ordinal | 0x80000000;
898       * (unsigned int *) id5->contents = ordinal | 0x80000000;
899     }
900   else
901     {
902       char * symbol;
903
904       /* Create .idata$6 - the Hint Name Table.  */
905       id6 = pe_ILF_make_a_section (& vars, ".idata$6", SIZEOF_IDATA6, 0);
906       if (id6 == NULL)
907         return false;
908
909       /* If necessary, trim the import symbol name.  */
910       symbol = symbol_name;
911
912       if (import_name_type != IMPORT_NAME)
913         /* Skip any prefix in symbol_name.  */
914         while (*symbol == '@' || * symbol == '?' || * symbol == '_')
915           ++ symbol;
916
917       if (import_name_type == IMPORT_NAME_UNDECORATE)
918         {
919           /* Truncate at the first '@'  */
920           while (* symbol != 0 && * symbol != '@')
921             symbol ++;
922
923           * symbol = 0;
924         }
925
926       id6->contents[0] = ordinal & 0xff;
927       id6->contents[1] = ordinal >> 8;
928
929       strcpy (id6->contents + 2, symbol);
930     }
931
932   if (import_name_type != IMPORT_ORDINAL)
933     {
934       pe_ILF_make_a_reloc (& vars, 0, BFD_RELOC_RVA, id6);
935       pe_ILF_save_relocs (& vars, id4);
936
937       pe_ILF_make_a_reloc (& vars, 0, BFD_RELOC_RVA, id6);
938       pe_ILF_save_relocs (& vars, id5);
939     }
940
941   /* Create extra sections depending upon the type of import we are dealing with.  */
942   switch (import_type)
943     {
944       int i;
945
946     case IMPORT_CODE:
947       /* Create a .text section.
948          First we need to look up its contents in the jump table.  */
949       for (i = NUM_ENTRIES (jtab); i--;)
950         {
951           if (jtab[i].size == 0)
952             continue;
953           if (jtab[i].magic == magic)
954             break;
955         }
956       /* If we did not find a matching entry something is wrong.  */
957       if (i < 0)
958         abort ();
959
960       /* Create the .text section.  */
961       text = pe_ILF_make_a_section (& vars, ".text", jtab[i].size, SEC_CODE);
962       if (text == NULL)
963         return false;
964
965       /* Copy in the jump code.  */
966       memcpy (text->contents, jtab[i].data, jtab[i].size);
967
968       /* Create an import symbol.  */
969       pe_ILF_make_a_symbol (& vars, "__imp_", symbol_name, id5, 0);
970       imp_sym   = vars.sym_ptr_ptr - 1;
971       imp_index = vars.sym_index - 1;
972
973       /* Create a reloc for the data in the text section.  */
974 #ifdef MIPS_ARCH_MAGIC_WINCE
975       if (magic == MIPS_ARCH_MAGIC_WINCE)
976         {
977           pe_ILF_make_a_symbol_reloc (& vars, 0, BFD_RELOC_HI16_S,
978                                       (struct symbol_cache_entry **) imp_sym, imp_index);
979           pe_ILF_make_a_reloc (& vars, 0, BFD_RELOC_LO16, text);
980           pe_ILF_make_a_symbol_reloc (& vars, 4, BFD_RELOC_LO16,
981                                       (struct symbol_cache_entry **) imp_sym, imp_index);
982         }
983       else
984 #endif
985         pe_ILF_make_a_symbol_reloc (& vars, jtab[i].offset, BFD_RELOC_32,
986                                     (asymbol **) imp_sym, imp_index);
987
988       pe_ILF_save_relocs (& vars, text);
989       break;
990
991     case IMPORT_DATA:
992       break;
993
994     default:
995       /* XXX code not yet written.  */
996       abort ();
997     }
998
999   /* Initialise the bfd.  */
1000   memset (& internal_f, 0, sizeof (internal_f));
1001
1002   internal_f.f_magic  = magic;
1003   internal_f.f_symptr = 0;
1004   internal_f.f_nsyms  = 0;
1005   internal_f.f_flags  = F_AR32WR | F_LNNO; /* XXX is this correct ?  */
1006
1007   if (   ! bfd_set_start_address (abfd, 0)
1008       || ! bfd_coff_set_arch_mach_hook (abfd, & internal_f))
1009     return false;
1010
1011   if (bfd_coff_mkobject_hook (abfd, (PTR) & internal_f, NULL) == NULL)
1012     return false;
1013
1014   coff_data (abfd)->pe = 1;
1015 #ifdef THUMBPEMAGIC
1016   if (vars.magic == THUMBPEMAGIC)
1017     /* Stop some linker warnings about thumb code not supporting interworking.  */
1018     coff_data (abfd)->flags |= F_INTERWORK | F_INTERWORK_SET;
1019 #endif
1020
1021   /* Switch from file contents to memory contents.  */
1022   bfd_cache_close (abfd);
1023
1024   abfd->iostream = (PTR) vars.bim;
1025   abfd->flags |= BFD_IN_MEMORY /* | HAS_LOCALS */;
1026   abfd->where = 0;
1027   obj_sym_filepos (abfd) = 0;
1028
1029   /* Now create a symbol describing the imported value.  */
1030   switch (import_type)
1031     {
1032       bfd_byte * ptr;
1033
1034     case IMPORT_CODE:
1035       pe_ILF_make_a_symbol (& vars, "", symbol_name, text,
1036                             BSF_NOT_AT_END | BSF_FUNCTION);
1037
1038       /* Create an import symbol for the DLL, without the
1039        .dll suffix.  */
1040       ptr = strrchr (source_dll, '.');
1041       if (ptr)
1042         * ptr = 0;
1043       pe_ILF_make_a_symbol (& vars, "__IMPORT_DESCRIPTOR_", source_dll, NULL, 0);
1044       if (ptr)
1045         * ptr = '.';
1046       break;
1047
1048     case IMPORT_DATA:
1049       /* Nothing to do here.  */
1050       break;
1051
1052     default:
1053       /* XXX code not yet written.  */
1054       abort ();
1055     }
1056
1057   /* Point the bfd at the symbol table.  */
1058   obj_symbols (abfd) = vars.sym_cache;
1059   bfd_get_symcount (abfd) = vars.sym_index;
1060
1061   obj_raw_syments (abfd) = vars.native_syms;
1062   obj_raw_syment_count (abfd) = vars.sym_index;
1063
1064   obj_coff_external_syms (abfd) = (PTR) vars.esym_table;
1065   obj_coff_keep_syms (abfd) = true;
1066
1067   obj_convert (abfd) = vars.sym_table;
1068   obj_conv_table_size (abfd) = vars.sym_index;
1069
1070   obj_coff_strings (abfd) = vars.string_table;
1071   obj_coff_keep_strings (abfd) = true;
1072
1073   abfd->flags |= HAS_SYMS;
1074
1075   return true;
1076 }
1077
1078 /* We have detected a Image Library Format archive element.
1079    Decode the element and return the appropriate target.  */
1080 static const bfd_target *
1081 pe_ILF_object_p (bfd * abfd)
1082 {
1083   bfd_byte        buffer[16];
1084   bfd_byte *      ptr;
1085   bfd_byte *      symbol_name;
1086   bfd_byte *      source_dll;
1087   unsigned int    machine;
1088   unsigned long   size;
1089   unsigned int    ordinal;
1090   unsigned int    types;
1091   unsigned short  magic;
1092
1093   /* Upon entry the first four buyes of the ILF header have
1094       already been read.  Now read the rest of the header.  */
1095   if (bfd_read (buffer, 1, 16, abfd) != 16)
1096     return NULL;
1097
1098   ptr = buffer;
1099
1100   /*  We do not bother to check the version number.
1101       version = bfd_h_get_16 (abfd, ptr);  */
1102   ptr += 2;
1103
1104   machine = bfd_h_get_16 (abfd, ptr);
1105   ptr += 2;
1106
1107   /* Check that the machine type is recognised.  */
1108   magic = 0;
1109
1110   switch (machine)
1111     {
1112     case IMAGE_FILE_MACHINE_UNKNOWN:
1113     case IMAGE_FILE_MACHINE_ALPHA:
1114     case IMAGE_FILE_MACHINE_ALPHA64:
1115     case IMAGE_FILE_MACHINE_IA64:
1116       break;
1117
1118     case IMAGE_FILE_MACHINE_I386:
1119 #ifdef I386MAGIC
1120       magic = I386MAGIC;
1121 #endif
1122       break;
1123
1124     case IMAGE_FILE_MACHINE_M68K:
1125 #ifdef MC68AGIC
1126       magic = MC68MAGIC;
1127 #endif
1128       break;
1129
1130     case IMAGE_FILE_MACHINE_R3000:
1131     case IMAGE_FILE_MACHINE_R4000:
1132     case IMAGE_FILE_MACHINE_R10000:
1133
1134     case IMAGE_FILE_MACHINE_MIPS16:
1135     case IMAGE_FILE_MACHINE_MIPSFPU:
1136     case IMAGE_FILE_MACHINE_MIPSFPU16:
1137 #ifdef MIPS_ARCH_MAGIC_WINCE
1138       magic = MIPS_ARCH_MAGIC_WINCE;
1139 #endif
1140       break;
1141
1142     case IMAGE_FILE_MACHINE_SH3:
1143     case IMAGE_FILE_MACHINE_SH4:
1144 #ifdef SH_ARCH_MAGIC_WINCE
1145       magic = SH_ARCH_MAGIC_WINCE;
1146 #endif
1147       break;
1148
1149     case IMAGE_FILE_MACHINE_ARM:
1150 #ifdef ARMPEMAGIC
1151       magic = ARMPEMAGIC;
1152 #endif
1153       break;
1154
1155     case IMAGE_FILE_MACHINE_THUMB:
1156 #ifdef THUMBPEMAGIC
1157       {
1158         extern const bfd_target TARGET_LITTLE_SYM;
1159
1160         if (abfd->xvec == & TARGET_LITTLE_SYM)
1161           magic = THUMBPEMAGIC;
1162       }
1163 #endif
1164       break;
1165
1166     case IMAGE_FILE_MACHINE_POWERPC:
1167       /* We no longer support PowerPC.  */
1168     default:
1169       _bfd_error_handler
1170         (
1171 _("%s: Unrecognised machine type (0x%x) in Import Library Format archive"),
1172          bfd_get_filename (abfd), machine);
1173       bfd_set_error (bfd_error_malformed_archive);
1174
1175       return NULL;
1176       break;
1177     }
1178
1179   if (magic == 0)
1180     {
1181       _bfd_error_handler
1182         (
1183 _("%s: Recognised but unhandled machine type (0x%x) in Import Library Format archive"),
1184          bfd_get_filename (abfd), machine);
1185       bfd_set_error (bfd_error_wrong_format);
1186
1187       return NULL;
1188     }
1189
1190   /* We do not bother to check the date.
1191      date = bfd_h_get_32 (abfd, ptr);  */
1192   ptr += 4;
1193
1194   size = bfd_h_get_32 (abfd, ptr);
1195   ptr += 4;
1196
1197   if (size == 0)
1198     {
1199       _bfd_error_handler
1200         (_("%s: size field is zero in Import Library Format header"),
1201          bfd_get_filename (abfd));
1202       bfd_set_error (bfd_error_malformed_archive);
1203
1204       return NULL;
1205     }
1206
1207   ordinal = bfd_h_get_16 (abfd, ptr);
1208   ptr += 2;
1209
1210   types = bfd_h_get_16 (abfd, ptr);
1211   /* ptr += 2; */
1212
1213   /* Now read in the two strings that follow.  */
1214   ptr = bfd_alloc (abfd, size);
1215   if (ptr == NULL)
1216     return NULL;
1217
1218   if (bfd_read (ptr, 1, size, abfd) != size)
1219     return NULL;
1220
1221   symbol_name = ptr;
1222   source_dll  = ptr + strlen (ptr) + 1;
1223
1224   /* Verify that the strings are null terminated.  */
1225   if (ptr[size - 1] != 0 || ((unsigned long) (source_dll - ptr) >= size))
1226     {
1227       _bfd_error_handler
1228         (_("%s: string not null terminated in ILF object file."),
1229          bfd_get_filename (abfd));
1230       bfd_set_error (bfd_error_malformed_archive);
1231
1232       return NULL;
1233     }
1234
1235   /* Now construct the bfd.  */
1236   if (! pe_ILF_build_a_bfd (abfd, magic, symbol_name,
1237                             source_dll, ordinal, types))
1238     return NULL;
1239
1240   return abfd->xvec;
1241 }
1242
1243 static const bfd_target *
1244 pe_bfd_object_p (bfd * abfd)
1245 {
1246   bfd_byte buffer[4];
1247   struct external_PEI_DOS_hdr dos_hdr;
1248   struct external_PEI_IMAGE_hdr image_hdr;
1249   file_ptr offset;
1250
1251   /* Detect if this a Microsoft Import Library Format element.  */
1252   if (bfd_seek (abfd, 0x00, SEEK_SET) != 0
1253       || bfd_read (buffer, 1, 4, abfd) != 4)
1254     {
1255       if (bfd_get_error () != bfd_error_system_call)
1256         bfd_set_error (bfd_error_wrong_format);
1257       return NULL;
1258     }
1259
1260   if (bfd_h_get_32 (abfd, buffer) == 0xffff0000)
1261     return pe_ILF_object_p (abfd);
1262
1263   if (bfd_seek (abfd, 0x00, SEEK_SET) != 0
1264       || bfd_read (&dos_hdr, 1, sizeof (dos_hdr), abfd)
1265          != sizeof (dos_hdr))
1266     {
1267       if (bfd_get_error () != bfd_error_system_call)
1268         bfd_set_error (bfd_error_wrong_format);
1269       return NULL;
1270     }
1271
1272   /* There are really two magic numbers involved; the magic number
1273      that says this is a NT executable (PEI) and the magic number that
1274      determines the architecture.  The former is DOSMAGIC, stored in
1275      the e_magic field.  The latter is stored in the f_magic field.
1276      If the NT magic number isn't valid, the architecture magic number
1277      could be mimicked by some other field (specifically, the number
1278      of relocs in section 3).  Since this routine can only be called
1279      correctly for a PEI file, check the e_magic number here, and, if
1280      it doesn't match, clobber the f_magic number so that we don't get
1281      a false match.  */
1282   if (bfd_h_get_16 (abfd, (bfd_byte *) dos_hdr.e_magic) != DOSMAGIC)
1283     {
1284       bfd_set_error (bfd_error_wrong_format);
1285       return NULL;
1286     }
1287
1288   offset = bfd_h_get_32 (abfd, (bfd_byte *) dos_hdr.e_lfanew);
1289   if (bfd_seek (abfd, (file_ptr) offset, SEEK_SET) != 0
1290       || bfd_read (&image_hdr, 1, sizeof (image_hdr), abfd)
1291          != sizeof (image_hdr))
1292     {
1293       if (bfd_get_error () != bfd_error_system_call)
1294         bfd_set_error (bfd_error_wrong_format);
1295       return NULL;
1296     }
1297
1298   if (bfd_h_get_32 (abfd, (bfd_byte *) image_hdr.nt_signature)
1299       != 0x4550)
1300     {
1301       bfd_set_error (bfd_error_wrong_format);
1302       return NULL;
1303     }
1304
1305   /* Here is the hack.  coff_object_p wants to read filhsz bytes to
1306      pick up the COFF header for PE, see "struct external_PEI_filehdr"
1307      in include/coff/pe.h.  We adjust so that that will work. */
1308   if (bfd_seek (abfd,
1309                 (file_ptr) (offset - sizeof (dos_hdr)),
1310                 SEEK_SET)
1311       != 0)
1312     {
1313       if (bfd_get_error () != bfd_error_system_call)
1314         bfd_set_error (bfd_error_wrong_format);
1315       return NULL;
1316     }
1317
1318   return coff_object_p (abfd);
1319 }
1320
1321 #define coff_object_p pe_bfd_object_p
1322 #endif /* COFF_IMAGE_WITH_PE */