gas/
[binutils.git] / bfd / libpei.h
blob10a2a2582a48ed9ca640e8622e82766b3e04a4be
1 /* Support for the generic parts of PE/PEI; common header information.
2 Copyright 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2005, 2006
3 Free Software Foundation, Inc.
4 Written by Cygnus Solutions.
6 This file is part of BFD, the Binary File Descriptor library.
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 2 of the License, or
11 (at your option) any later version.
13 This program is distributed in the hope that it will be useful,
14 but WITHOUT ANY WARRANTY; without even the implied warranty of
15 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 GNU General Public License for more details.
18 You should have received a copy of the GNU General Public License
19 along with this program; if not, write to the Free Software
20 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA 02110-1301, USA. */
22 /* Most of this hacked by Steve Chamberlain,
23 sac@cygnus.com
25 PE/PEI rearrangement (and code added): Donn Terry
26 Softway Systems, Inc. */
28 /* Hey look, some documentation [and in a place you expect to find it]!
30 The main reference for the pei format is "Microsoft Portable Executable
31 and Common Object File Format Specification 4.1". Get it if you need to
32 do some serious hacking on this code.
34 Another reference:
35 "Peering Inside the PE: A Tour of the Win32 Portable Executable
36 File Format", MSJ 1994, Volume 9.
38 The *sole* difference between the pe format and the pei format is that the
39 latter has an MSDOS 2.0 .exe header on the front that prints the message
40 "This app must be run under Windows." (or some such).
41 (FIXME: Whether that statement is *really* true or not is unknown.
42 Are there more subtle differences between pe and pei formats?
43 For now assume there aren't. If you find one, then for God sakes
44 document it here!)
46 The Microsoft docs use the word "image" instead of "executable" because
47 the former can also refer to a DLL (shared library). Confusion can arise
48 because the `i' in `pei' also refers to "image". The `pe' format can
49 also create images (i.e. executables), it's just that to run on a win32
50 system you need to use the pei format.
52 FIXME: Please add more docs here so the next poor fool that has to hack
53 on this code has a chance of getting something accomplished without
54 wasting too much time. */
56 #ifndef GET_FCN_LNNOPTR
57 #define GET_FCN_LNNOPTR(abfd, ext) \
58 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
59 #endif
61 #ifndef GET_FCN_ENDNDX
62 #define GET_FCN_ENDNDX(abfd, ext) \
63 H_GET_32 (abfd, ext->x_sym.x_fcnary.x_fcn.x_endndx)
64 #endif
66 #ifndef PUT_FCN_LNNOPTR
67 #define PUT_FCN_LNNOPTR(abfd, in, ext) \
68 H_PUT_32(abfd, in, ext->x_sym.x_fcnary.x_fcn.x_lnnoptr)
69 #endif
70 #ifndef PUT_FCN_ENDNDX
71 #define PUT_FCN_ENDNDX(abfd, in, ext) \
72 H_PUT_32(abfd, in, ext->x_sym.x_fcnary.x_fcn.x_endndx)
73 #endif
74 #ifndef GET_LNSZ_LNNO
75 #define GET_LNSZ_LNNO(abfd, ext) \
76 H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_lnno)
77 #endif
78 #ifndef GET_LNSZ_SIZE
79 #define GET_LNSZ_SIZE(abfd, ext) \
80 H_GET_16 (abfd, ext->x_sym.x_misc.x_lnsz.x_size)
81 #endif
82 #ifndef PUT_LNSZ_LNNO
83 #define PUT_LNSZ_LNNO(abfd, in, ext) \
84 H_PUT_16(abfd, in, ext->x_sym.x_misc.x_lnsz.x_lnno)
85 #endif
86 #ifndef PUT_LNSZ_SIZE
87 #define PUT_LNSZ_SIZE(abfd, in, ext) \
88 H_PUT_16(abfd, in, ext->x_sym.x_misc.x_lnsz.x_size)
89 #endif
90 #ifndef GET_SCN_SCNLEN
91 #define GET_SCN_SCNLEN(abfd, ext) \
92 H_GET_32 (abfd, ext->x_scn.x_scnlen)
93 #endif
94 #ifndef GET_SCN_NRELOC
95 #define GET_SCN_NRELOC(abfd, ext) \
96 H_GET_16 (abfd, ext->x_scn.x_nreloc)
97 #endif
98 #ifndef GET_SCN_NLINNO
99 #define GET_SCN_NLINNO(abfd, ext) \
100 H_GET_16 (abfd, ext->x_scn.x_nlinno)
101 #endif
102 #ifndef PUT_SCN_SCNLEN
103 #define PUT_SCN_SCNLEN(abfd, in, ext) \
104 H_PUT_32(abfd, in, ext->x_scn.x_scnlen)
105 #endif
106 #ifndef PUT_SCN_NRELOC
107 #define PUT_SCN_NRELOC(abfd, in, ext) \
108 H_PUT_16(abfd, in, ext->x_scn.x_nreloc)
109 #endif
110 #ifndef PUT_SCN_NLINNO
111 #define PUT_SCN_NLINNO(abfd, in, ext) \
112 H_PUT_16(abfd,in, ext->x_scn.x_nlinno)
113 #endif
114 #ifndef GET_LINENO_LNNO
115 #define GET_LINENO_LNNO(abfd, ext) \
116 H_GET_16 (abfd, ext->l_lnno);
117 #endif
118 #ifndef PUT_LINENO_LNNO
119 #define PUT_LINENO_LNNO(abfd, val, ext) \
120 H_PUT_16(abfd,val, ext->l_lnno);
121 #endif
123 /* The f_symptr field in the filehdr is sometimes 64 bits. */
124 #ifndef GET_FILEHDR_SYMPTR
125 #define GET_FILEHDR_SYMPTR H_GET_32
126 #endif
127 #ifndef PUT_FILEHDR_SYMPTR
128 #define PUT_FILEHDR_SYMPTR H_PUT_32
129 #endif
131 /* Some fields in the aouthdr are sometimes 64 bits. */
132 #ifndef GET_AOUTHDR_TSIZE
133 #define GET_AOUTHDR_TSIZE H_GET_32
134 #endif
135 #ifndef PUT_AOUTHDR_TSIZE
136 #define PUT_AOUTHDR_TSIZE H_PUT_32
137 #endif
138 #ifndef GET_AOUTHDR_DSIZE
139 #define GET_AOUTHDR_DSIZE H_GET_32
140 #endif
141 #ifndef PUT_AOUTHDR_DSIZE
142 #define PUT_AOUTHDR_DSIZE H_PUT_32
143 #endif
144 #ifndef GET_AOUTHDR_BSIZE
145 #define GET_AOUTHDR_BSIZE H_GET_32
146 #endif
147 #ifndef PUT_AOUTHDR_BSIZE
148 #define PUT_AOUTHDR_BSIZE H_PUT_32
149 #endif
150 #ifndef GET_AOUTHDR_ENTRY
151 #define GET_AOUTHDR_ENTRY H_GET_32
152 #endif
153 #ifndef PUT_AOUTHDR_ENTRY
154 #define PUT_AOUTHDR_ENTRY H_PUT_32
155 #endif
156 #ifndef GET_AOUTHDR_TEXT_START
157 #define GET_AOUTHDR_TEXT_START H_GET_32
158 #endif
159 #ifndef PUT_AOUTHDR_TEXT_START
160 #define PUT_AOUTHDR_TEXT_START H_PUT_32
161 #endif
162 #ifndef GET_AOUTHDR_DATA_START
163 #define GET_AOUTHDR_DATA_START H_GET_32
164 #endif
165 #ifndef PUT_AOUTHDR_DATA_START
166 #define PUT_AOUTHDR_DATA_START H_PUT_32
167 #endif
169 /* Some fields in the scnhdr are sometimes 64 bits. */
170 #ifndef GET_SCNHDR_PADDR
171 #define GET_SCNHDR_PADDR H_GET_32
172 #endif
173 #ifndef PUT_SCNHDR_PADDR
174 #define PUT_SCNHDR_PADDR H_PUT_32
175 #endif
176 #ifndef GET_SCNHDR_VADDR
177 #define GET_SCNHDR_VADDR H_GET_32
178 #endif
179 #ifndef PUT_SCNHDR_VADDR
180 #define PUT_SCNHDR_VADDR H_PUT_32
181 #endif
182 #ifndef GET_SCNHDR_SIZE
183 #define GET_SCNHDR_SIZE H_GET_32
184 #endif
185 #ifndef PUT_SCNHDR_SIZE
186 #define PUT_SCNHDR_SIZE H_PUT_32
187 #endif
188 #ifndef GET_SCNHDR_SCNPTR
189 #define GET_SCNHDR_SCNPTR H_GET_32
190 #endif
191 #ifndef PUT_SCNHDR_SCNPTR
192 #define PUT_SCNHDR_SCNPTR H_PUT_32
193 #endif
194 #ifndef GET_SCNHDR_RELPTR
195 #define GET_SCNHDR_RELPTR H_GET_32
196 #endif
197 #ifndef PUT_SCNHDR_RELPTR
198 #define PUT_SCNHDR_RELPTR H_PUT_32
199 #endif
200 #ifndef GET_SCNHDR_LNNOPTR
201 #define GET_SCNHDR_LNNOPTR H_GET_32
202 #endif
203 #ifndef PUT_SCNHDR_LNNOPTR
204 #define PUT_SCNHDR_LNNOPTR H_PUT_32
205 #endif
207 #ifdef COFF_WITH_pex64
209 #define GET_OPTHDR_IMAGE_BASE H_GET_64
210 #define PUT_OPTHDR_IMAGE_BASE H_PUT_64
211 #define GET_OPTHDR_SIZE_OF_STACK_RESERVE H_GET_64
212 #define PUT_OPTHDR_SIZE_OF_STACK_RESERVE H_PUT_64
213 #define GET_OPTHDR_SIZE_OF_STACK_COMMIT H_GET_64
214 #define PUT_OPTHDR_SIZE_OF_STACK_COMMIT H_PUT_64
215 #define GET_OPTHDR_SIZE_OF_HEAP_RESERVE H_GET_64
216 #define PUT_OPTHDR_SIZE_OF_HEAP_RESERVE H_PUT_64
217 #define GET_OPTHDR_SIZE_OF_HEAP_COMMIT H_GET_64
218 #define PUT_OPTHDR_SIZE_OF_HEAP_COMMIT H_PUT_64
219 #define GET_PDATA_ENTRY bfd_get_32
221 #define _bfd_XX_bfd_copy_private_bfd_data_common _bfd_pex64_bfd_copy_private_bfd_data_common
222 #define _bfd_XX_bfd_copy_private_section_data _bfd_pex64_bfd_copy_private_section_data
223 #define _bfd_XX_get_symbol_info _bfd_pex64_get_symbol_info
224 #define _bfd_XX_only_swap_filehdr_out _bfd_pex64_only_swap_filehdr_out
225 #define _bfd_XX_print_private_bfd_data_common _bfd_pex64_print_private_bfd_data_common
226 #define _bfd_XXi_final_link_postscript _bfd_pex64i_final_link_postscript
227 #define _bfd_XXi_final_link_postscript _bfd_pex64i_final_link_postscript
228 #define _bfd_XXi_only_swap_filehdr_out _bfd_pex64i_only_swap_filehdr_out
229 #define _bfd_XXi_swap_aouthdr_in _bfd_pex64i_swap_aouthdr_in
230 #define _bfd_XXi_swap_aouthdr_out _bfd_pex64i_swap_aouthdr_out
231 #define _bfd_XXi_swap_aux_in _bfd_pex64i_swap_aux_in
232 #define _bfd_XXi_swap_aux_out _bfd_pex64i_swap_aux_out
233 #define _bfd_XXi_swap_lineno_in _bfd_pex64i_swap_lineno_in
234 #define _bfd_XXi_swap_lineno_out _bfd_pex64i_swap_lineno_out
235 #define _bfd_XXi_swap_scnhdr_out _bfd_pex64i_swap_scnhdr_out
236 #define _bfd_XXi_swap_sym_in _bfd_pex64i_swap_sym_in
237 #define _bfd_XXi_swap_sym_out _bfd_pex64i_swap_sym_out
239 #elif defined COFF_WITH_pep
241 #define GET_OPTHDR_IMAGE_BASE H_GET_64
242 #define PUT_OPTHDR_IMAGE_BASE H_PUT_64
243 #define GET_OPTHDR_SIZE_OF_STACK_RESERVE H_GET_64
244 #define PUT_OPTHDR_SIZE_OF_STACK_RESERVE H_PUT_64
245 #define GET_OPTHDR_SIZE_OF_STACK_COMMIT H_GET_64
246 #define PUT_OPTHDR_SIZE_OF_STACK_COMMIT H_PUT_64
247 #define GET_OPTHDR_SIZE_OF_HEAP_RESERVE H_GET_64
248 #define PUT_OPTHDR_SIZE_OF_HEAP_RESERVE H_PUT_64
249 #define GET_OPTHDR_SIZE_OF_HEAP_COMMIT H_GET_64
250 #define PUT_OPTHDR_SIZE_OF_HEAP_COMMIT H_PUT_64
251 #define GET_PDATA_ENTRY bfd_get_64
253 #define _bfd_XX_bfd_copy_private_bfd_data_common _bfd_pep_bfd_copy_private_bfd_data_common
254 #define _bfd_XX_bfd_copy_private_section_data _bfd_pep_bfd_copy_private_section_data
255 #define _bfd_XX_get_symbol_info _bfd_pep_get_symbol_info
256 #define _bfd_XX_only_swap_filehdr_out _bfd_pep_only_swap_filehdr_out
257 #define _bfd_XX_print_private_bfd_data_common _bfd_pep_print_private_bfd_data_common
258 #define _bfd_XXi_final_link_postscript _bfd_pepi_final_link_postscript
259 #define _bfd_XXi_final_link_postscript _bfd_pepi_final_link_postscript
260 #define _bfd_XXi_only_swap_filehdr_out _bfd_pepi_only_swap_filehdr_out
261 #define _bfd_XXi_swap_aouthdr_in _bfd_pepi_swap_aouthdr_in
262 #define _bfd_XXi_swap_aouthdr_out _bfd_pepi_swap_aouthdr_out
263 #define _bfd_XXi_swap_aux_in _bfd_pepi_swap_aux_in
264 #define _bfd_XXi_swap_aux_out _bfd_pepi_swap_aux_out
265 #define _bfd_XXi_swap_lineno_in _bfd_pepi_swap_lineno_in
266 #define _bfd_XXi_swap_lineno_out _bfd_pepi_swap_lineno_out
267 #define _bfd_XXi_swap_scnhdr_out _bfd_pepi_swap_scnhdr_out
268 #define _bfd_XXi_swap_sym_in _bfd_pepi_swap_sym_in
269 #define _bfd_XXi_swap_sym_out _bfd_pepi_swap_sym_out
271 #else /* !COFF_WITH_pep */
273 #define GET_OPTHDR_IMAGE_BASE H_GET_32
274 #define PUT_OPTHDR_IMAGE_BASE H_PUT_32
275 #define GET_OPTHDR_SIZE_OF_STACK_RESERVE H_GET_32
276 #define PUT_OPTHDR_SIZE_OF_STACK_RESERVE H_PUT_32
277 #define GET_OPTHDR_SIZE_OF_STACK_COMMIT H_GET_32
278 #define PUT_OPTHDR_SIZE_OF_STACK_COMMIT H_PUT_32
279 #define GET_OPTHDR_SIZE_OF_HEAP_RESERVE H_GET_32
280 #define PUT_OPTHDR_SIZE_OF_HEAP_RESERVE H_PUT_32
281 #define GET_OPTHDR_SIZE_OF_HEAP_COMMIT H_GET_32
282 #define PUT_OPTHDR_SIZE_OF_HEAP_COMMIT H_PUT_32
283 #define GET_PDATA_ENTRY bfd_get_32
285 #define _bfd_XX_bfd_copy_private_bfd_data_common _bfd_pe_bfd_copy_private_bfd_data_common
286 #define _bfd_XX_bfd_copy_private_section_data _bfd_pe_bfd_copy_private_section_data
287 #define _bfd_XX_get_symbol_info _bfd_pe_get_symbol_info
288 #define _bfd_XX_only_swap_filehdr_out _bfd_pe_only_swap_filehdr_out
289 #define _bfd_XX_print_private_bfd_data_common _bfd_pe_print_private_bfd_data_common
290 #define _bfd_XXi_final_link_postscript _bfd_pei_final_link_postscript
291 #define _bfd_XXi_final_link_postscript _bfd_pei_final_link_postscript
292 #define _bfd_XXi_only_swap_filehdr_out _bfd_pei_only_swap_filehdr_out
293 #define _bfd_XXi_swap_aouthdr_in _bfd_pei_swap_aouthdr_in
294 #define _bfd_XXi_swap_aouthdr_out _bfd_pei_swap_aouthdr_out
295 #define _bfd_XXi_swap_aux_in _bfd_pei_swap_aux_in
296 #define _bfd_XXi_swap_aux_out _bfd_pei_swap_aux_out
297 #define _bfd_XXi_swap_lineno_in _bfd_pei_swap_lineno_in
298 #define _bfd_XXi_swap_lineno_out _bfd_pei_swap_lineno_out
299 #define _bfd_XXi_swap_scnhdr_out _bfd_pei_swap_scnhdr_out
300 #define _bfd_XXi_swap_sym_in _bfd_pei_swap_sym_in
301 #define _bfd_XXi_swap_sym_out _bfd_pei_swap_sym_out
303 #endif /* !COFF_WITH_pep */
305 /* Macro: Returns true if the bfd is a PE executable as opposed to a PE object file. */
306 #define bfd_pe_executable_p(abfd) \
307 (CONST_STRNEQ ((abfd)->xvec->name, "pei-") \
308 || CONST_STRNEQ ((abfd)->xvec->name, "efi-app-"))
310 /* These functions are architecture dependent, and are in peicode.h:
311 coff_swap_reloc_in
312 int coff_swap_reloc_out
313 coff_swap_filehdr_in
314 coff_swap_scnhdr_in
315 pe_mkobject
316 pe_mkobject_hook */
318 /* The functions described below are common across all PE/PEI
319 implementations architecture types, and actually appear in
320 peigen.c. */
322 #define coff_swap_sym_in _bfd_XXi_swap_sym_in
323 #define coff_swap_sym_out _bfd_XXi_swap_sym_out
324 #define coff_swap_aux_in _bfd_XXi_swap_aux_in
325 #define coff_swap_aux_out _bfd_XXi_swap_aux_out
326 #define coff_swap_lineno_in _bfd_XXi_swap_lineno_in
327 #define coff_swap_lineno_out _bfd_XXi_swap_lineno_out
328 #define coff_swap_aouthdr_in _bfd_XXi_swap_aouthdr_in
329 #define coff_swap_aouthdr_out _bfd_XXi_swap_aouthdr_out
330 #define coff_swap_scnhdr_out _bfd_XXi_swap_scnhdr_out
332 #ifndef coff_final_link_postscript
333 #define coff_final_link_postscript _bfd_XXi_final_link_postscript
334 #endif
336 void _bfd_XXi_swap_sym_in (bfd *, void *, void *);
337 unsigned _bfd_XXi_swap_sym_out (bfd *, void *, void *);
338 void _bfd_XXi_swap_aux_in (bfd *, void *, int, int, int, int, void *);
339 unsigned _bfd_XXi_swap_aux_out (bfd *, void *, int, int, int, int, void *);
340 void _bfd_XXi_swap_lineno_in (bfd *, void *, void *);
341 unsigned _bfd_XXi_swap_lineno_out (bfd *, void *, void *);
342 void _bfd_XXi_swap_aouthdr_in (bfd *, void *, void *);
343 unsigned _bfd_XXi_swap_aouthdr_out (bfd *, void *, void *);
344 unsigned _bfd_XXi_swap_scnhdr_out (bfd *, void *, void *);
345 bfd_boolean _bfd_XX_print_private_bfd_data_common (bfd *, void *);
346 bfd_boolean _bfd_XX_bfd_copy_private_bfd_data_common (bfd *, bfd *);
347 void _bfd_XX_get_symbol_info (bfd *, asymbol *, symbol_info *);
348 bfd_boolean _bfd_XXi_final_link_postscript (bfd *, struct coff_final_link_info *);
350 /* The following are needed only for ONE of pe or pei, but don't
351 otherwise vary; peicode.h fixes up ifdefs but we provide the
352 prototype. */
354 unsigned _bfd_XX_only_swap_filehdr_out (bfd *, void *, void *);
355 unsigned _bfd_XXi_only_swap_filehdr_out (bfd *, void *, void *);
356 bfd_boolean _bfd_XX_bfd_copy_private_section_data (bfd *, asection *, bfd *, asection *);