1 /* NLM (NetWare Loadable Module) executable support for BFD.
2 Copyright (C) 1993, 94, 95, 98, 1999 Free Software Foundation, Inc.
4 Written by Fred Fish @ Cygnus Support, using ELF support as the
7 This file is part of BFD, the Binary File Descriptor library.
9 This program is free software; you can redistribute it and/or modify
10 it under the terms of the GNU General Public License as published by
11 the Free Software Foundation; either version 2 of the License, or
12 (at your option) any later version.
14 This program is distributed in the hope that it will be useful,
15 but WITHOUT ANY WARRANTY; without even the implied warranty of
16 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 GNU General Public License for more details.
19 You should have received a copy of the GNU General Public License
20 along with this program; if not, write to the Free Software
21 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */
28 /* The functions in this file do not use the names they appear to use.
29 This file is actually compiled multiple times, once for each size
30 of NLM target we are using. At each size we use a different name,
31 constructed by the macro nlmNAME. For example, the function which
32 is named nlm_symbol_type below is actually named nlm32_symbol_type
33 in the final executable. */
35 #define Nlm_External_Fixed_Header NlmNAME(External_Fixed_Header)
36 #define Nlm_External_Version_Header NlmNAME(External_Version_Header)
37 #define Nlm_External_Copyright_Header NlmNAME(External_Copyright_Header)
38 #define Nlm_External_Extended_Header NlmNAME(External_Extended_Header)
39 #define Nlm_External_Custom_Header NlmNAME(External_Custom_Header)
40 #define Nlm_External_Cygnus_Ext_Header NlmNAME(External_Cygnus_Ext_Header)
42 #define nlm_symbol_type nlmNAME(symbol_type)
43 #define nlm_get_symtab_upper_bound nlmNAME(get_symtab_upper_bound)
44 #define nlm_get_symtab nlmNAME(get_symtab)
45 #define nlm_make_empty_symbol nlmNAME(make_empty_symbol)
46 #define nlm_print_symbol nlmNAME(print_symbol)
47 #define nlm_get_symbol_info nlmNAME(get_symbol_info)
48 #define nlm_get_reloc_upper_bound nlmNAME(get_reloc_upper_bound)
49 #define nlm_canonicalize_reloc nlmNAME(canonicalize_reloc)
50 #define nlm_object_p nlmNAME(object_p)
51 #define nlm_set_section_contents nlmNAME(set_section_contents)
52 #define nlm_write_object_contents nlmNAME(write_object_contents)
54 #define nlm_swap_fixed_header_in(abfd,src,dst) \
55 (nlm_swap_fixed_header_in_func(abfd)) (abfd,src,dst)
56 #define nlm_swap_fixed_header_out(abfd,src,dst) \
57 (nlm_swap_fixed_header_out_func(abfd)) (abfd,src,dst)
59 /* Forward declarations of static functions */
61 static boolean add_bfd_section
62 PARAMS ((bfd
*, char *, file_ptr
, bfd_size_type
, flagword
));
63 static boolean nlm_swap_variable_header_in
65 static boolean nlm_swap_variable_header_out
67 static boolean find_nonzero
68 PARAMS ((PTR
, size_t));
69 static boolean nlm_swap_auxiliary_headers_in
71 static boolean nlm_swap_auxiliary_headers_out
73 static boolean nlm_slurp_symbol_table
75 static boolean nlm_slurp_reloc_fixups
77 static boolean nlm_compute_section_file_positions
79 static int nlm_external_reloc_compare
80 PARAMS ((const void *, const void *));
82 /* Should perhaps use put_offset, put_word, etc. For now, the two versions
83 can be handled by explicitly specifying 32 bits or "the long type". */
85 #define put_word bfd_h_put_64
86 #define get_word bfd_h_get_64
89 #define put_word bfd_h_put_32
90 #define get_word bfd_h_get_32
97 struct nlm_obj_tdata
*preserved_tdata
= nlm_tdata (abfd
);
98 boolean (*backend_object_p
) PARAMS ((bfd
*));
100 Nlm_Internal_Fixed_Header
*i_fxdhdrp
;
101 struct nlm_obj_tdata
*new_tdata
= NULL
;
102 const char *signature
;
103 enum bfd_architecture arch
;
105 /* Some NLM formats have a prefix before the standard NLM fixed
107 backend_object_p
= nlm_backend_object_p_func (abfd
);
108 if (backend_object_p
)
110 if (!(*backend_object_p
) (abfd
))
111 goto got_wrong_format_error
;
114 /* Read in the fixed length portion of the NLM header in external format. */
116 x_fxdhdr
= (PTR
) bfd_malloc ((size_t) nlm_fixed_header_size (abfd
));
117 if (x_fxdhdr
== NULL
)
120 if (bfd_read ((PTR
) x_fxdhdr
, nlm_fixed_header_size (abfd
), 1, abfd
) !=
121 nlm_fixed_header_size (abfd
))
123 if (bfd_get_error () != bfd_error_system_call
)
124 goto got_wrong_format_error
;
129 /* Allocate an instance of the nlm_obj_tdata structure and hook it up to
130 the tdata pointer in the bfd. */
132 new_tdata
= ((struct nlm_obj_tdata
*)
133 bfd_zalloc (abfd
, sizeof (struct nlm_obj_tdata
)));
134 if (new_tdata
== NULL
)
137 nlm_tdata (abfd
) = new_tdata
;
139 i_fxdhdrp
= nlm_fixed_header (abfd
);
140 nlm_swap_fixed_header_in (abfd
, x_fxdhdr
, i_fxdhdrp
);
144 /* Check to see if we have an NLM file for this backend by matching
145 the NLM signature. */
147 signature
= nlm_signature (abfd
);
148 if (signature
!= NULL
149 && *signature
!= '\0'
150 && strncmp ((char *) i_fxdhdrp
->signature
, signature
,
151 NLM_SIGNATURE_SIZE
) != 0)
152 goto got_wrong_format_error
;
154 /* There's no supported way to discover the endianess of an NLM, so test for
155 a sane version number after doing byte swapping appropriate for this
156 XVEC. (Hack alert!) */
158 if (i_fxdhdrp
->version
> 0xFFFF)
159 goto got_wrong_format_error
;
161 /* There's no supported way to check for 32 bit versus 64 bit addresses,
162 so ignore this distinction for now. (FIXME) */
164 /* Swap in the rest of the required header. */
165 if (!nlm_swap_variable_header_in (abfd
))
167 if (bfd_get_error () != bfd_error_system_call
)
168 goto got_wrong_format_error
;
173 /* Add the sections supplied by all NLM's, and then read in the
174 auxiliary headers. Reading the auxiliary headers may create
175 additional sections described in the cygnus_ext header.
176 From this point on we assume that we have an NLM, and do not
177 treat errors as indicating the wrong format. */
179 if (!add_bfd_section (abfd
, NLM_CODE_NAME
,
180 i_fxdhdrp
->codeImageOffset
,
181 i_fxdhdrp
->codeImageSize
,
182 (SEC_CODE
| SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
184 || !add_bfd_section (abfd
, NLM_INITIALIZED_DATA_NAME
,
185 i_fxdhdrp
->dataImageOffset
,
186 i_fxdhdrp
->dataImageSize
,
187 (SEC_DATA
| SEC_ALLOC
| SEC_LOAD
| SEC_HAS_CONTENTS
189 || !add_bfd_section (abfd
, NLM_UNINITIALIZED_DATA_NAME
,
191 i_fxdhdrp
->uninitializedDataSize
,
195 if (!nlm_swap_auxiliary_headers_in (abfd
))
198 if (nlm_fixed_header (abfd
)->numberOfRelocationFixups
!= 0
199 || nlm_fixed_header (abfd
)->numberOfExternalReferences
!= 0)
200 abfd
->flags
|= HAS_RELOC
;
201 if (nlm_fixed_header (abfd
)->numberOfPublics
!= 0
202 || nlm_fixed_header (abfd
)->numberOfDebugRecords
!= 0
203 || nlm_fixed_header (abfd
)->numberOfExternalReferences
!= 0)
204 abfd
->flags
|= HAS_SYMS
;
206 arch
= nlm_architecture (abfd
);
207 if (arch
!= bfd_arch_unknown
)
208 bfd_default_set_arch_mach (abfd
, arch
, (unsigned long) 0);
210 abfd
->flags
|= EXEC_P
;
211 bfd_get_start_address (abfd
) = nlm_fixed_header (abfd
)->codeStartOffset
;
215 got_wrong_format_error
:
216 bfd_set_error (bfd_error_wrong_format
);
218 nlm_tdata (abfd
) = preserved_tdata
;
219 if (new_tdata
!= NULL
)
220 bfd_release (abfd
, new_tdata
);
221 if (x_fxdhdr
!= NULL
)
226 /* Add a section to the bfd. */
229 add_bfd_section (abfd
, name
, offset
, size
, flags
)
238 newsect
= bfd_make_section (abfd
, name
);
243 newsect
->vma
= 0; /* NLM's are relocatable. */
244 newsect
->_raw_size
= size
;
245 newsect
->filepos
= offset
;
246 newsect
->flags
= flags
;
247 newsect
->alignment_power
= bfd_log2 (0); /* FIXME */
251 /* Read and swap in the variable length header. All the fields must
252 exist in the NLM, and must exist in the order they are read here. */
255 nlm_swap_variable_header_in (abfd
)
258 unsigned char temp
[NLM_TARGET_LONG_SIZE
];
260 /* Read the description length and text members. */
262 if (bfd_read ((PTR
) & nlm_variable_header (abfd
)->descriptionLength
,
263 sizeof (nlm_variable_header (abfd
)->descriptionLength
),
265 sizeof (nlm_variable_header (abfd
)->descriptionLength
))
267 if (bfd_read ((PTR
) nlm_variable_header (abfd
)->descriptionText
,
268 nlm_variable_header (abfd
)->descriptionLength
+ 1,
270 (bfd_size_type
) nlm_variable_header (abfd
)->descriptionLength
+ 1)
273 /* Read and convert the stackSize field. */
275 if (bfd_read ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
277 nlm_variable_header (abfd
)->stackSize
= get_word (abfd
, (bfd_byte
*) temp
);
279 /* Read and convert the reserved field. */
281 if (bfd_read ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
283 nlm_variable_header (abfd
)->reserved
= get_word (abfd
, (bfd_byte
*) temp
);
285 /* Read the oldThreadName field. This field is a fixed length string. */
287 if (bfd_read ((PTR
) nlm_variable_header (abfd
)->oldThreadName
,
288 sizeof (nlm_variable_header (abfd
)->oldThreadName
),
290 sizeof (nlm_variable_header (abfd
)->oldThreadName
))
293 /* Read the screen name length and text members. */
295 if (bfd_read ((PTR
) & nlm_variable_header (abfd
)->screenNameLength
,
296 sizeof (nlm_variable_header (abfd
)->screenNameLength
),
298 sizeof (nlm_variable_header (abfd
)->screenNameLength
))
300 if (bfd_read ((PTR
) nlm_variable_header (abfd
)->screenName
,
301 nlm_variable_header (abfd
)->screenNameLength
+ 1,
303 (bfd_size_type
) nlm_variable_header (abfd
)->screenNameLength
+ 1)
306 /* Read the thread name length and text members. */
308 if (bfd_read ((PTR
) & nlm_variable_header (abfd
)->threadNameLength
,
309 sizeof (nlm_variable_header (abfd
)->threadNameLength
),
311 sizeof (nlm_variable_header (abfd
)->threadNameLength
))
313 if (bfd_read ((PTR
) nlm_variable_header (abfd
)->threadName
,
314 nlm_variable_header (abfd
)->threadNameLength
+ 1,
316 (bfd_size_type
) nlm_variable_header (abfd
)->threadNameLength
+ 1)
321 /* Swap and write out the variable length header. All the fields must
322 exist in the NLM, and must exist in this order. */
325 nlm_swap_variable_header_out (abfd
)
328 unsigned char temp
[NLM_TARGET_LONG_SIZE
];
330 /* Write the description length and text members. */
332 if (bfd_write ((PTR
) & nlm_variable_header (abfd
)->descriptionLength
,
333 sizeof (nlm_variable_header (abfd
)->descriptionLength
),
335 sizeof (nlm_variable_header (abfd
)->descriptionLength
))
337 if (bfd_write ((PTR
) nlm_variable_header (abfd
)->descriptionText
,
338 nlm_variable_header (abfd
)->descriptionLength
+ 1,
340 (bfd_size_type
) nlm_variable_header (abfd
)->descriptionLength
+ 1)
343 /* Convert and write the stackSize field. */
345 put_word (abfd
, (bfd_vma
) nlm_variable_header (abfd
)->stackSize
,
347 if (bfd_write ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
350 /* Convert and write the reserved field. */
352 put_word (abfd
, (bfd_vma
) nlm_variable_header (abfd
)->reserved
,
354 if (bfd_write ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
357 /* Write the oldThreadName field. This field is a fixed length string. */
359 if (bfd_write ((PTR
) nlm_variable_header (abfd
)->oldThreadName
,
360 sizeof (nlm_variable_header (abfd
)->oldThreadName
),
362 sizeof (nlm_variable_header (abfd
)->oldThreadName
))
365 /* Write the screen name length and text members. */
367 if (bfd_write ((PTR
) & nlm_variable_header (abfd
)->screenNameLength
,
368 sizeof (nlm_variable_header (abfd
)->screenNameLength
),
370 sizeof (nlm_variable_header (abfd
)->screenNameLength
))
372 if (bfd_write ((PTR
) nlm_variable_header (abfd
)->screenName
,
373 nlm_variable_header (abfd
)->screenNameLength
+ 1,
375 (bfd_size_type
) nlm_variable_header (abfd
)->screenNameLength
+ 1)
378 /* Write the thread name length and text members. */
380 if (bfd_write ((PTR
) & nlm_variable_header (abfd
)->threadNameLength
,
381 sizeof (nlm_variable_header (abfd
)->threadNameLength
),
383 sizeof (nlm_variable_header (abfd
)->threadNameLength
))
385 if (bfd_write ((PTR
) nlm_variable_header (abfd
)->threadName
,
386 nlm_variable_header (abfd
)->threadNameLength
+ 1,
388 (bfd_size_type
) nlm_variable_header (abfd
)->threadNameLength
+ 1)
393 /* Read and swap in the contents of all the auxiliary headers. Because of
394 the braindead design, we have to do strcmps on strings of indeterminate
395 length to figure out what each auxiliary header is. Even worse, we have
396 no way of knowing how many auxiliary headers there are or where the end
397 of the auxiliary headers are, except by finding something that doesn't
398 look like a known auxiliary header. This means that the first new type
399 of auxiliary header added will break all existing tools that don't
403 nlm_swap_auxiliary_headers_in (abfd
)
411 position
= bfd_tell (abfd
);
412 if (bfd_read ((PTR
) tempstr
, sizeof (tempstr
), 1, abfd
) !=
415 if (bfd_seek (abfd
, position
, SEEK_SET
) == -1)
417 if (strncmp (tempstr
, "VeRsIoN#", 8) == 0)
419 Nlm_External_Version_Header thdr
;
420 if (bfd_read ((PTR
) & thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
422 memcpy (nlm_version_header (abfd
)->stamp
, thdr
.stamp
,
423 sizeof (thdr
.stamp
));
424 nlm_version_header (abfd
)->majorVersion
=
425 get_word (abfd
, (bfd_byte
*) thdr
.majorVersion
);
426 nlm_version_header (abfd
)->minorVersion
=
427 get_word (abfd
, (bfd_byte
*) thdr
.minorVersion
);
428 nlm_version_header (abfd
)->revision
=
429 get_word (abfd
, (bfd_byte
*) thdr
.revision
);
430 nlm_version_header (abfd
)->year
=
431 get_word (abfd
, (bfd_byte
*) thdr
.year
);
432 nlm_version_header (abfd
)->month
=
433 get_word (abfd
, (bfd_byte
*) thdr
.month
);
434 nlm_version_header (abfd
)->day
=
435 get_word (abfd
, (bfd_byte
*) thdr
.day
);
437 else if (strncmp (tempstr
, "MeSsAgEs", 8) == 0)
439 Nlm_External_Extended_Header thdr
;
440 if (bfd_read ((PTR
) & thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
442 memcpy (nlm_extended_header (abfd
)->stamp
, thdr
.stamp
,
443 sizeof (thdr
.stamp
));
444 nlm_extended_header (abfd
)->languageID
=
445 get_word (abfd
, (bfd_byte
*) thdr
.languageID
);
446 nlm_extended_header (abfd
)->messageFileOffset
=
447 get_word (abfd
, (bfd_byte
*) thdr
.messageFileOffset
);
448 nlm_extended_header (abfd
)->messageFileLength
=
449 get_word (abfd
, (bfd_byte
*) thdr
.messageFileLength
);
450 nlm_extended_header (abfd
)->messageCount
=
451 get_word (abfd
, (bfd_byte
*) thdr
.messageCount
);
452 nlm_extended_header (abfd
)->helpFileOffset
=
453 get_word (abfd
, (bfd_byte
*) thdr
.helpFileOffset
);
454 nlm_extended_header (abfd
)->helpFileLength
=
455 get_word (abfd
, (bfd_byte
*) thdr
.helpFileLength
);
456 nlm_extended_header (abfd
)->RPCDataOffset
=
457 get_word (abfd
, (bfd_byte
*) thdr
.RPCDataOffset
);
458 nlm_extended_header (abfd
)->RPCDataLength
=
459 get_word (abfd
, (bfd_byte
*) thdr
.RPCDataLength
);
460 nlm_extended_header (abfd
)->sharedCodeOffset
=
461 get_word (abfd
, (bfd_byte
*) thdr
.sharedCodeOffset
);
462 nlm_extended_header (abfd
)->sharedCodeLength
=
463 get_word (abfd
, (bfd_byte
*) thdr
.sharedCodeLength
);
464 nlm_extended_header (abfd
)->sharedDataOffset
=
465 get_word (abfd
, (bfd_byte
*) thdr
.sharedDataOffset
);
466 nlm_extended_header (abfd
)->sharedDataLength
=
467 get_word (abfd
, (bfd_byte
*) thdr
.sharedDataLength
);
468 nlm_extended_header (abfd
)->sharedRelocationFixupOffset
=
469 get_word (abfd
, (bfd_byte
*) thdr
.sharedRelocationFixupOffset
);
470 nlm_extended_header (abfd
)->sharedRelocationFixupCount
=
471 get_word (abfd
, (bfd_byte
*) thdr
.sharedRelocationFixupCount
);
472 nlm_extended_header (abfd
)->sharedExternalReferenceOffset
=
473 get_word (abfd
, (bfd_byte
*) thdr
.sharedExternalReferenceOffset
);
474 nlm_extended_header (abfd
)->sharedExternalReferenceCount
=
475 get_word (abfd
, (bfd_byte
*) thdr
.sharedExternalReferenceCount
);
476 nlm_extended_header (abfd
)->sharedPublicsOffset
=
477 get_word (abfd
, (bfd_byte
*) thdr
.sharedPublicsOffset
);
478 nlm_extended_header (abfd
)->sharedPublicsCount
=
479 get_word (abfd
, (bfd_byte
*) thdr
.sharedPublicsCount
);
480 nlm_extended_header (abfd
)->sharedDebugRecordOffset
=
481 get_word (abfd
, (bfd_byte
*) thdr
.sharedDebugRecordOffset
);
482 nlm_extended_header (abfd
)->sharedDebugRecordCount
=
483 get_word (abfd
, (bfd_byte
*) thdr
.sharedDebugRecordCount
);
484 nlm_extended_header (abfd
)->SharedInitializationOffset
=
485 get_word (abfd
, (bfd_byte
*) thdr
.sharedInitializationOffset
);
486 nlm_extended_header (abfd
)->SharedExitProcedureOffset
=
487 get_word (abfd
, (bfd_byte
*) thdr
.SharedExitProcedureOffset
);
488 nlm_extended_header (abfd
)->productID
=
489 get_word (abfd
, (bfd_byte
*) thdr
.productID
);
490 nlm_extended_header (abfd
)->reserved0
=
491 get_word (abfd
, (bfd_byte
*) thdr
.reserved0
);
492 nlm_extended_header (abfd
)->reserved1
=
493 get_word (abfd
, (bfd_byte
*) thdr
.reserved1
);
494 nlm_extended_header (abfd
)->reserved2
=
495 get_word (abfd
, (bfd_byte
*) thdr
.reserved2
);
496 nlm_extended_header (abfd
)->reserved3
=
497 get_word (abfd
, (bfd_byte
*) thdr
.reserved3
);
498 nlm_extended_header (abfd
)->reserved4
=
499 get_word (abfd
, (bfd_byte
*) thdr
.reserved4
);
500 nlm_extended_header (abfd
)->reserved5
=
501 get_word (abfd
, (bfd_byte
*) thdr
.reserved5
);
503 else if (strncmp (tempstr
, "CoPyRiGhT=", 10) == 0)
505 if (bfd_read ((PTR
) nlm_copyright_header (abfd
)->stamp
,
506 sizeof (nlm_copyright_header (abfd
)->stamp
),
508 != sizeof (nlm_copyright_header (abfd
)->stamp
))
510 if (bfd_read ((PTR
) & (nlm_copyright_header (abfd
)
511 ->copyrightMessageLength
),
514 /* The copyright message is a variable length string. */
515 if (bfd_read ((PTR
) nlm_copyright_header (abfd
)->copyrightMessage
,
516 nlm_copyright_header (abfd
)->copyrightMessageLength
+ 1,
519 nlm_copyright_header (abfd
)->copyrightMessageLength
+ 1))
522 else if (strncmp (tempstr
, "CuStHeAd", 8) == 0)
524 Nlm_External_Custom_Header thdr
;
525 bfd_size_type hdrLength
;
527 bfd_size_type dataLength
;
531 /* Read the stamp ("CuStHeAd"). */
532 if (bfd_read ((PTR
) thdr
.stamp
, 1, sizeof (thdr
.stamp
), abfd
)
533 != sizeof (thdr
.stamp
))
535 /* Read the length of this custom header. */
536 if (bfd_read ((PTR
) thdr
.length
, 1, sizeof (thdr
.length
), abfd
)
537 != sizeof (thdr
.length
))
539 hdrLength
= get_word (abfd
, (bfd_byte
*) thdr
.length
);
540 /* Read further fields if we have them. */
541 if (hdrLength
< NLM_TARGET_LONG_SIZE
)
545 if (bfd_read ((PTR
) thdr
.dataOffset
, 1,
546 sizeof (thdr
.dataOffset
), abfd
)
547 != sizeof (thdr
.dataOffset
))
549 dataOffset
= get_word (abfd
, (bfd_byte
*) thdr
.dataOffset
);
551 if (hdrLength
< 2 * NLM_TARGET_LONG_SIZE
)
555 if (bfd_read ((PTR
) thdr
.dataLength
, 1,
556 sizeof (thdr
.dataLength
), abfd
)
557 != sizeof (thdr
.dataLength
))
559 dataLength
= get_word (abfd
, (bfd_byte
*) thdr
.dataLength
);
561 if (hdrLength
< 2 * NLM_TARGET_LONG_SIZE
+ 8)
562 memset (dataStamp
, 0, sizeof (dataStamp
));
565 if (bfd_read ((PTR
) dataStamp
, 1, sizeof (dataStamp
), abfd
)
566 != sizeof (dataStamp
))
570 /* Read the rest of the header, if any. */
571 if (hdrLength
<= 2 * NLM_TARGET_LONG_SIZE
+ 8)
578 hdrLength
-= 2 * NLM_TARGET_LONG_SIZE
+ 8;
579 hdr
= bfd_alloc (abfd
, hdrLength
);
582 if (bfd_read (hdr
, 1, hdrLength
, abfd
) != hdrLength
)
586 /* If we have found a Cygnus header, process it. Otherwise,
587 just save the associated data without trying to interpret
589 if (strncmp (dataStamp
, "CyGnUsEx", 8) == 0)
595 BFD_ASSERT (hdrLength
== 0 && hdr
== NULL
);
597 pos
= bfd_tell (abfd
);
598 if (bfd_seek (abfd
, dataOffset
, SEEK_SET
) != 0)
600 contents
= (bfd_byte
*) bfd_alloc (abfd
, dataLength
);
601 if (contents
== NULL
)
603 if (bfd_read (contents
, 1, dataLength
, abfd
) != dataLength
)
605 if (bfd_seek (abfd
, pos
, SEEK_SET
) != 0)
608 memcpy (nlm_cygnus_ext_header (abfd
), "CyGnUsEx", 8);
609 nlm_cygnus_ext_header (abfd
)->offset
= dataOffset
;
610 nlm_cygnus_ext_header (abfd
)->length
= dataLength
;
612 /* This data this header points to provides a list of
613 the sections which were in the original object file
614 which was converted to become an NLM. We locate
615 those sections and add them to the BFD. Note that
616 this is likely to create a second .text, .data and
617 .bss section; retrieving the sections by name will
618 get the actual NLM sections, which is what we want to
619 happen. The sections from the original file, which
620 may be subsets of the NLM section, can only be found
621 using bfd_map_over_sections. */
623 pend
= p
+ dataLength
;
632 /* The format of this information is
633 null terminated section name
634 zeroes to adjust to 4 byte boundary
635 4 byte section data file pointer
640 l
= strlen (name
) + 1;
643 filepos
= bfd_h_get_32 (abfd
, p
);
645 size
= bfd_h_get_32 (abfd
, p
);
648 newsec
= bfd_make_section_anyway (abfd
, name
);
649 if (newsec
== (asection
*) NULL
)
651 newsec
->_raw_size
= size
;
654 newsec
->filepos
= filepos
;
655 newsec
->flags
|= SEC_HAS_CONTENTS
;
661 memcpy (nlm_custom_header (abfd
)->stamp
, thdr
.stamp
,
662 sizeof (thdr
.stamp
));
663 nlm_custom_header (abfd
)->hdrLength
= hdrLength
;
664 nlm_custom_header (abfd
)->dataOffset
= dataOffset
;
665 nlm_custom_header (abfd
)->dataLength
= dataLength
;
666 memcpy (nlm_custom_header (abfd
)->dataStamp
, dataStamp
,
668 nlm_custom_header (abfd
)->hdr
= hdr
;
679 /* Return whether there is a non-zero byte in a memory block. */
682 find_nonzero (buf
, size
)
686 char *p
= (char *) buf
;
694 /* Swap out the contents of the auxiliary headers. We create those
695 auxiliary headers which have been set non-zero. We do not require
696 the caller to set up the stamp fields. */
699 nlm_swap_auxiliary_headers_out (abfd
)
702 /* Write out the version header if there is one. */
703 if (find_nonzero ((PTR
) nlm_version_header (abfd
),
704 sizeof (Nlm_Internal_Version_Header
)))
706 Nlm_External_Version_Header thdr
;
708 memcpy (thdr
.stamp
, "VeRsIoN#", 8);
709 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->majorVersion
,
710 (bfd_byte
*) thdr
.majorVersion
);
711 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->minorVersion
,
712 (bfd_byte
*) thdr
.minorVersion
);
713 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->revision
,
714 (bfd_byte
*) thdr
.revision
);
715 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->year
,
716 (bfd_byte
*) thdr
.year
);
717 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->month
,
718 (bfd_byte
*) thdr
.month
);
719 put_word (abfd
, (bfd_vma
) nlm_version_header (abfd
)->day
,
720 (bfd_byte
*) thdr
.day
);
721 if (bfd_write ((PTR
) & thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
725 /* Write out the extended header if there is one. */
726 if (find_nonzero ((PTR
) nlm_extended_header (abfd
),
727 sizeof (Nlm_Internal_Extended_Header
)))
729 Nlm_External_Extended_Header thdr
;
731 memcpy (thdr
.stamp
, "MeSsAgEs", 8);
733 (bfd_vma
) nlm_extended_header (abfd
)->languageID
,
734 (bfd_byte
*) thdr
.languageID
);
736 (bfd_vma
) nlm_extended_header (abfd
)->messageFileOffset
,
737 (bfd_byte
*) thdr
.messageFileOffset
);
739 (bfd_vma
) nlm_extended_header (abfd
)->messageFileLength
,
740 (bfd_byte
*) thdr
.messageFileLength
);
742 (bfd_vma
) nlm_extended_header (abfd
)->messageCount
,
743 (bfd_byte
*) thdr
.messageCount
);
745 (bfd_vma
) nlm_extended_header (abfd
)->helpFileOffset
,
746 (bfd_byte
*) thdr
.helpFileOffset
);
748 (bfd_vma
) nlm_extended_header (abfd
)->helpFileLength
,
749 (bfd_byte
*) thdr
.helpFileLength
);
751 (bfd_vma
) nlm_extended_header (abfd
)->RPCDataOffset
,
752 (bfd_byte
*) thdr
.RPCDataOffset
);
754 (bfd_vma
) nlm_extended_header (abfd
)->RPCDataLength
,
755 (bfd_byte
*) thdr
.RPCDataLength
);
757 (bfd_vma
) nlm_extended_header (abfd
)->sharedCodeOffset
,
758 (bfd_byte
*) thdr
.sharedCodeOffset
);
760 (bfd_vma
) nlm_extended_header (abfd
)->sharedCodeLength
,
761 (bfd_byte
*) thdr
.sharedCodeLength
);
763 (bfd_vma
) nlm_extended_header (abfd
)->sharedDataOffset
,
764 (bfd_byte
*) thdr
.sharedDataOffset
);
766 (bfd_vma
) nlm_extended_header (abfd
)->sharedDataLength
,
767 (bfd_byte
*) thdr
.sharedDataLength
);
769 (bfd_vma
) nlm_extended_header (abfd
)->sharedRelocationFixupOffset
,
770 (bfd_byte
*) thdr
.sharedRelocationFixupOffset
);
772 (bfd_vma
) nlm_extended_header (abfd
)->sharedRelocationFixupCount
,
773 (bfd_byte
*) thdr
.sharedRelocationFixupCount
);
775 (bfd_vma
) nlm_extended_header (abfd
)->sharedExternalReferenceOffset
,
776 (bfd_byte
*) thdr
.sharedExternalReferenceOffset
);
778 (bfd_vma
) nlm_extended_header (abfd
)->sharedExternalReferenceCount
,
779 (bfd_byte
*) thdr
.sharedExternalReferenceCount
);
781 (bfd_vma
) nlm_extended_header (abfd
)->sharedPublicsOffset
,
782 (bfd_byte
*) thdr
.sharedPublicsOffset
);
784 (bfd_vma
) nlm_extended_header (abfd
)->sharedPublicsCount
,
785 (bfd_byte
*) thdr
.sharedPublicsCount
);
787 (bfd_vma
) nlm_extended_header (abfd
)->sharedDebugRecordOffset
,
788 (bfd_byte
*) thdr
.sharedDebugRecordOffset
);
790 (bfd_vma
) nlm_extended_header (abfd
)->sharedDebugRecordCount
,
791 (bfd_byte
*) thdr
.sharedDebugRecordCount
);
793 (bfd_vma
) nlm_extended_header (abfd
)->SharedInitializationOffset
,
794 (bfd_byte
*) thdr
.sharedInitializationOffset
);
796 (bfd_vma
) nlm_extended_header (abfd
)->SharedExitProcedureOffset
,
797 (bfd_byte
*) thdr
.SharedExitProcedureOffset
);
799 (bfd_vma
) nlm_extended_header (abfd
)->productID
,
800 (bfd_byte
*) thdr
.productID
);
802 (bfd_vma
) nlm_extended_header (abfd
)->reserved0
,
803 (bfd_byte
*) thdr
.reserved0
);
805 (bfd_vma
) nlm_extended_header (abfd
)->reserved1
,
806 (bfd_byte
*) thdr
.reserved1
);
808 (bfd_vma
) nlm_extended_header (abfd
)->reserved2
,
809 (bfd_byte
*) thdr
.reserved2
);
811 (bfd_vma
) nlm_extended_header (abfd
)->reserved3
,
812 (bfd_byte
*) thdr
.reserved3
);
814 (bfd_vma
) nlm_extended_header (abfd
)->reserved4
,
815 (bfd_byte
*) thdr
.reserved4
);
817 (bfd_vma
) nlm_extended_header (abfd
)->reserved5
,
818 (bfd_byte
*) thdr
.reserved5
);
819 if (bfd_write ((PTR
) & thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
823 /* Write out the copyright header if there is one. */
824 if (find_nonzero ((PTR
) nlm_copyright_header (abfd
),
825 sizeof (Nlm_Internal_Copyright_Header
)))
827 Nlm_External_Copyright_Header thdr
;
829 memcpy (thdr
.stamp
, "CoPyRiGhT=", 10);
830 if (bfd_write ((PTR
) thdr
.stamp
, sizeof (thdr
.stamp
), 1, abfd
)
831 != sizeof (thdr
.stamp
))
833 thdr
.copyrightMessageLength
[0] =
834 nlm_copyright_header (abfd
)->copyrightMessageLength
;
835 if (bfd_write ((PTR
) thdr
.copyrightMessageLength
, 1, 1, abfd
) != 1)
837 /* The copyright message is a variable length string. */
838 if (bfd_write ((PTR
) nlm_copyright_header (abfd
)->copyrightMessage
,
839 nlm_copyright_header (abfd
)->copyrightMessageLength
+ 1,
842 nlm_copyright_header (abfd
)->copyrightMessageLength
+ 1))
846 /* Write out the custom header if there is one. */
847 if (find_nonzero ((PTR
) nlm_custom_header (abfd
),
848 sizeof (Nlm_Internal_Custom_Header
)))
850 Nlm_External_Custom_Header thdr
;
852 bfd_size_type hdrLength
;
854 ds
= find_nonzero ((PTR
) nlm_custom_header (abfd
)->dataStamp
,
855 sizeof (nlm_custom_header (abfd
)->dataStamp
));
856 memcpy (thdr
.stamp
, "CuStHeAd", 8);
857 hdrLength
= (2 * NLM_TARGET_LONG_SIZE
+ (ds
? 8 : 0)
858 + nlm_custom_header (abfd
)->hdrLength
);
859 put_word (abfd
, hdrLength
, thdr
.length
);
860 put_word (abfd
, (bfd_vma
) nlm_custom_header (abfd
)->dataOffset
,
862 put_word (abfd
, (bfd_vma
) nlm_custom_header (abfd
)->dataLength
,
866 BFD_ASSERT (nlm_custom_header (abfd
)->hdrLength
== 0);
867 if (bfd_write ((PTR
) &thdr
, 1,
868 sizeof (thdr
) - sizeof (thdr
.dataStamp
), abfd
)
869 != sizeof (thdr
) - sizeof (thdr
.dataStamp
))
874 memcpy (thdr
.dataStamp
, nlm_custom_header (abfd
)->dataStamp
,
875 sizeof (thdr
.dataStamp
));
876 if (bfd_write ((PTR
) &thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
878 if (bfd_write (nlm_custom_header (abfd
)->hdr
, 1,
879 nlm_custom_header (abfd
)->hdrLength
, abfd
)
880 != nlm_custom_header (abfd
)->hdrLength
)
885 /* Write out the Cygnus debugging header if there is one. */
886 if (find_nonzero ((PTR
) nlm_cygnus_ext_header (abfd
),
887 sizeof (Nlm_Internal_Cygnus_Ext_Header
)))
889 Nlm_External_Custom_Header thdr
;
891 memcpy (thdr
.stamp
, "CuStHeAd", 8);
892 put_word (abfd
, (bfd_vma
) 2 * NLM_TARGET_LONG_SIZE
+ 8,
893 (bfd_byte
*) thdr
.length
);
894 put_word (abfd
, (bfd_vma
) nlm_cygnus_ext_header (abfd
)->offset
,
895 (bfd_byte
*) thdr
.dataOffset
);
896 put_word (abfd
, (bfd_vma
) nlm_cygnus_ext_header (abfd
)->length
,
897 (bfd_byte
*) thdr
.dataLength
);
898 memcpy (thdr
.dataStamp
, "CyGnUsEx", 8);
899 if (bfd_write ((PTR
) &thdr
, sizeof (thdr
), 1, abfd
) != sizeof (thdr
))
906 /* We read the NLM's public symbols and use it to generate a bfd symbol
907 table (hey, it's better than nothing) on a one-for-one basis. Thus
908 use the number of public symbols as the number of bfd symbols we will
909 have once we actually get around to reading them in.
911 Return the number of bytes required to hold the symtab vector, based on
912 the count plus 1, since we will NULL terminate the vector allocated based
916 nlm_get_symtab_upper_bound (abfd
)
919 Nlm_Internal_Fixed_Header
*i_fxdhdrp
; /* Nlm file header, internal form */
921 long symtab_size
= 0;
923 i_fxdhdrp
= nlm_fixed_header (abfd
);
924 symcount
= (i_fxdhdrp
->numberOfPublics
925 + i_fxdhdrp
->numberOfDebugRecords
926 + i_fxdhdrp
->numberOfExternalReferences
);
927 symtab_size
= (symcount
+ 1) * (sizeof (asymbol
));
928 return (symtab_size
);
931 /* Note that bfd_get_symcount is guaranteed to be zero if slurping the
932 symbol table fails. */
935 nlm_get_symtab (abfd
, alocation
)
939 nlm_symbol_type
*symbase
;
940 bfd_size_type counter
= 0;
942 if (nlm_slurp_symbol_table (abfd
) == false)
944 symbase
= nlm_get_symbols (abfd
);
945 while (counter
< bfd_get_symcount (abfd
))
947 *alocation
++ = &symbase
->symbol
;
951 *alocation
= (asymbol
*) NULL
;
952 return bfd_get_symcount (abfd
);
955 /* Make an NLM symbol. There is nothing special to do here. */
958 nlm_make_empty_symbol (abfd
)
961 nlm_symbol_type
*new;
963 new = (nlm_symbol_type
*) bfd_zalloc (abfd
, sizeof (nlm_symbol_type
));
965 new->symbol
.the_bfd
= abfd
;
969 /* Get symbol information. */
972 nlm_get_symbol_info (ignore_abfd
, symbol
, ret
)
973 bfd
*ignore_abfd ATTRIBUTE_UNUSED
;
977 bfd_symbol_info (symbol
, ret
);
980 /* Print symbol information. */
983 nlm_print_symbol (abfd
, afile
, symbol
, how
)
984 bfd
*abfd ATTRIBUTE_UNUSED
;
987 bfd_print_symbol_type how
;
989 FILE *file
= (FILE *) afile
;
993 case bfd_print_symbol_name
:
994 case bfd_print_symbol_more
:
996 fprintf (file
, "%s", symbol
->name
);
998 case bfd_print_symbol_all
:
999 bfd_print_symbol_vandf ((PTR
) file
, symbol
);
1000 fprintf (file
, " %-5s", symbol
->section
->name
);
1002 fprintf (file
, " %s", symbol
->name
);
1007 /* Slurp in nlm symbol table.
1009 In the external (in-file) form, NLM export records are variable length,
1010 with the following form:
1012 1 byte length of the symbol name (N)
1013 N bytes the symbol name
1014 4 bytes the symbol offset from start of it's section
1016 We also read in the debugging symbols and import records. Import
1017 records are treated as undefined symbols. As we read the import
1018 records we also read in the associated reloc information, which is
1019 attached to the symbol.
1021 The bfd symbols are copied to SYMPTRS.
1023 When we return, the bfd symcount is either zero or contains the correct
1028 nlm_slurp_symbol_table (abfd
)
1031 Nlm_Internal_Fixed_Header
*i_fxdhdrp
; /* Nlm file header, internal form */
1032 bfd_size_type totsymcount
; /* Number of NLM symbols */
1033 bfd_size_type symcount
; /* Counter of NLM symbols */
1034 nlm_symbol_type
*sym
; /* Pointer to current bfd symbol */
1035 unsigned char symlength
; /* Symbol length read into here */
1036 unsigned char symtype
; /* Type of debugging symbol */
1037 bfd_byte temp
[NLM_TARGET_LONG_SIZE
]; /* Symbol offsets read into here */
1038 boolean (*read_import_func
) PARAMS ((bfd
*, nlm_symbol_type
*));
1039 boolean (*set_public_section_func
) PARAMS ((bfd
*, nlm_symbol_type
*));
1041 if (nlm_get_symbols (abfd
) != NULL
)
1044 /* Read each raw NLM symbol, using the information to create a canonical bfd
1047 Note that we allocate the initial bfd canonical symbol buffer based on a
1048 one-to-one mapping of the NLM symbols to canonical symbols. We actually
1049 use all the NLM symbols, so there will be no space left over at the end.
1050 When we have all the symbols, we build the caller's pointer vector. */
1053 i_fxdhdrp
= nlm_fixed_header (abfd
);
1054 totsymcount
= (i_fxdhdrp
->numberOfPublics
1055 + i_fxdhdrp
->numberOfDebugRecords
1056 + i_fxdhdrp
->numberOfExternalReferences
);
1057 if (totsymcount
== 0)
1062 if (bfd_seek (abfd
, i_fxdhdrp
->publicsOffset
, SEEK_SET
) == -1)
1065 sym
= ((nlm_symbol_type
*)
1066 bfd_zalloc (abfd
, totsymcount
* sizeof (nlm_symbol_type
)));
1069 nlm_set_symbols (abfd
, sym
);
1071 /* We use the bfd's symcount directly as the control count, so that early
1072 termination of the loop leaves the symcount correct for the symbols that
1075 set_public_section_func
= nlm_set_public_section_func (abfd
);
1076 symcount
= i_fxdhdrp
->numberOfPublics
;
1077 while (abfd
->symcount
< symcount
)
1079 if (bfd_read ((PTR
) & symlength
, sizeof (symlength
), 1, abfd
)
1080 != sizeof (symlength
))
1082 sym
->symbol
.the_bfd
= abfd
;
1083 sym
->symbol
.name
= bfd_alloc (abfd
, symlength
+ 1);
1084 if (!sym
->symbol
.name
)
1086 if (bfd_read ((PTR
) sym
->symbol
.name
, symlength
, 1, abfd
)
1089 /* Cast away const. */
1090 ((char *) (sym
->symbol
.name
))[symlength
] = '\0';
1091 if (bfd_read ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
1093 sym
->symbol
.flags
= BSF_GLOBAL
| BSF_EXPORT
;
1094 sym
->symbol
.value
= get_word (abfd
, temp
);
1095 if (set_public_section_func
)
1097 /* Most backends can use the code below, but unfortunately
1098 some use a different scheme. */
1099 if ((*set_public_section_func
) (abfd
, sym
) == false)
1104 if (sym
->symbol
.value
& NLM_HIBIT
)
1106 sym
->symbol
.value
&= ~NLM_HIBIT
;
1107 sym
->symbol
.flags
|= BSF_FUNCTION
;
1108 sym
->symbol
.section
=
1109 bfd_get_section_by_name (abfd
, NLM_CODE_NAME
);
1113 sym
->symbol
.section
=
1114 bfd_get_section_by_name (abfd
, NLM_INITIALIZED_DATA_NAME
);
1122 /* Read the debugging records. */
1124 if (i_fxdhdrp
->numberOfDebugRecords
> 0)
1126 if (bfd_seek (abfd
, i_fxdhdrp
->debugInfoOffset
, SEEK_SET
) == -1)
1129 symcount
+= i_fxdhdrp
->numberOfDebugRecords
;
1130 while (abfd
->symcount
< symcount
)
1132 if ((bfd_read ((PTR
) & symtype
, sizeof (symtype
), 1, abfd
)
1133 != sizeof (symtype
))
1134 || bfd_read ((PTR
) temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
)
1135 || (bfd_read ((PTR
) & symlength
, sizeof (symlength
), 1, abfd
)
1136 != sizeof (symlength
)))
1138 sym
->symbol
.the_bfd
= abfd
;
1139 sym
->symbol
.name
= bfd_alloc (abfd
, symlength
+ 1);
1140 if (!sym
->symbol
.name
)
1142 if (bfd_read ((PTR
) sym
->symbol
.name
, symlength
, 1, abfd
)
1145 /* Cast away const. */
1146 ((char *) (sym
->symbol
.name
))[symlength
] = '\0';
1147 sym
->symbol
.flags
= BSF_LOCAL
;
1148 sym
->symbol
.value
= get_word (abfd
, temp
);
1151 sym
->symbol
.section
=
1152 bfd_get_section_by_name (abfd
, NLM_INITIALIZED_DATA_NAME
);
1154 else if (symtype
== 1)
1156 sym
->symbol
.flags
|= BSF_FUNCTION
;
1157 sym
->symbol
.section
=
1158 bfd_get_section_by_name (abfd
, NLM_CODE_NAME
);
1162 sym
->symbol
.section
= bfd_abs_section_ptr
;
1170 /* Read in the import records. We can only do this if we know how
1171 to read relocs for this target. */
1173 read_import_func
= nlm_read_import_func (abfd
);
1174 if (read_import_func
!= NULL
)
1176 if (bfd_seek (abfd
, i_fxdhdrp
->externalReferencesOffset
, SEEK_SET
)
1180 symcount
+= i_fxdhdrp
->numberOfExternalReferences
;
1181 while (abfd
->symcount
< symcount
)
1183 if ((*read_import_func
) (abfd
, sym
) == false)
1193 /* Get the relocs for an NLM file. There are two types of relocs.
1194 Imports are relocs against symbols defined in other NLM files. We
1195 treat these as relocs against global symbols. Relocation fixups
1196 are internal relocs.
1198 The actual format used to store the relocs is machine specific. */
1200 /* Read in the relocation fixup information. This is stored in
1201 nlm_relocation_fixups, an array of arelent structures, and
1202 nlm_relocation_fixup_secs, an array of section pointers. The
1203 section pointers are needed because the relocs are not sorted by
1207 nlm_slurp_reloc_fixups (abfd
)
1210 boolean (*read_func
) PARAMS ((bfd
*, nlm_symbol_type
*, asection
**,
1212 bfd_size_type count
;
1216 if (nlm_relocation_fixups (abfd
) != NULL
)
1218 read_func
= nlm_read_reloc_func (abfd
);
1219 if (read_func
== NULL
)
1222 if (bfd_seek (abfd
, nlm_fixed_header (abfd
)->relocationFixupOffset
,
1226 count
= nlm_fixed_header (abfd
)->numberOfRelocationFixups
;
1227 rels
= (arelent
*) bfd_alloc (abfd
, count
* sizeof (arelent
));
1228 secs
= (asection
**) bfd_alloc (abfd
, count
* sizeof (asection
*));
1229 if ((rels
== NULL
|| secs
== NULL
) && count
!= 0)
1231 nlm_relocation_fixups (abfd
) = rels
;
1232 nlm_relocation_fixup_secs (abfd
) = secs
;
1234 /* We have to read piece by piece, because we don't know how large
1235 the machine specific reloc information is. */
1236 while (count
-- != 0)
1238 if ((*read_func
) (abfd
, (nlm_symbol_type
*) NULL
, secs
, rels
) == false)
1240 nlm_relocation_fixups (abfd
) = NULL
;
1241 nlm_relocation_fixup_secs (abfd
) = NULL
;
1251 /* Get the number of relocs. This really just returns an upper bound,
1252 since it does not attempt to distinguish them based on the section.
1253 That will be handled when they are actually read. */
1256 nlm_get_reloc_upper_bound (abfd
, sec
)
1260 nlm_symbol_type
*syms
;
1261 bfd_size_type count
;
1264 /* If we don't know how to read relocs, just return 0. */
1265 if (nlm_read_reloc_func (abfd
) == NULL
)
1267 /* Make sure we have either the code or the data section. */
1268 if ((bfd_get_section_flags (abfd
, sec
) & (SEC_CODE
| SEC_DATA
)) == 0)
1271 syms
= nlm_get_symbols (abfd
);
1274 if (nlm_slurp_symbol_table (abfd
) == false)
1276 syms
= nlm_get_symbols (abfd
);
1279 ret
= nlm_fixed_header (abfd
)->numberOfRelocationFixups
;
1281 count
= bfd_get_symcount (abfd
);
1282 while (count
-- != 0)
1288 return (ret
+ 1) * sizeof (arelent
*);
1291 /* Get the relocs themselves. */
1294 nlm_canonicalize_reloc (abfd
, sec
, relptr
, symbols
)
1302 bfd_size_type count
, i
;
1305 /* Get the relocation fixups. */
1306 rels
= nlm_relocation_fixups (abfd
);
1309 if (nlm_slurp_reloc_fixups (abfd
) == false)
1311 rels
= nlm_relocation_fixups (abfd
);
1313 secs
= nlm_relocation_fixup_secs (abfd
);
1316 count
= nlm_fixed_header (abfd
)->numberOfRelocationFixups
;
1317 for (i
= 0; i
< count
; i
++, rels
++, secs
++)
1326 /* Get the import symbols. */
1327 count
= bfd_get_symcount (abfd
);
1328 for (i
= 0; i
< count
; i
++, symbols
++)
1333 if (bfd_asymbol_flavour (sym
) == bfd_target_nlm_flavour
)
1335 nlm_symbol_type
*nlm_sym
;
1338 nlm_sym
= (nlm_symbol_type
*) sym
;
1339 for (j
= 0; j
< nlm_sym
->rcnt
; j
++)
1341 if (nlm_sym
->relocs
[j
].section
== sec
)
1343 *relptr
= &nlm_sym
->relocs
[j
].reloc
;
1344 (*relptr
)->sym_ptr_ptr
= symbols
;
1357 /* Compute the section file positions for an NLM file. All variable
1358 length data in the file headers must be set before this function is
1359 called. If the variable length data is changed later, the
1360 resulting object file will be incorrect. Unfortunately, there is
1361 no way to check this.
1363 This routine also sets the Size and Offset fields in the fixed
1366 It also looks over the symbols and moves any common symbols into
1367 the .bss section; NLM has no way to represent a common symbol.
1368 This approach means that either the symbols must already have been
1369 set at this point, or there must be no common symbols. We need to
1370 move the symbols at this point so that mangle_relocs can see the
1374 nlm_compute_section_file_positions (abfd
)
1379 bfd_vma text
, data
, bss
;
1380 bfd_vma text_low
, data_low
;
1381 unsigned int text_align
, data_align
, other_align
;
1382 file_ptr text_ptr
, data_ptr
, other_ptr
;
1384 asymbol
**sym_ptr_ptr
;
1386 if (abfd
->output_has_begun
== true)
1389 /* Make sure we have a section to hold uninitialized data. */
1390 bss_sec
= bfd_get_section_by_name (abfd
, NLM_UNINITIALIZED_DATA_NAME
);
1391 if (bss_sec
== NULL
)
1393 if (!add_bfd_section (abfd
, NLM_UNINITIALIZED_DATA_NAME
,
1394 (file_ptr
) 0, (bfd_size_type
) 0,
1397 bss_sec
= bfd_get_section_by_name (abfd
, NLM_UNINITIALIZED_DATA_NAME
);
1400 abfd
->output_has_begun
= true;
1402 /* The fixed header. */
1403 sofar
= nlm_optional_prefix_size (abfd
) + nlm_fixed_header_size (abfd
);
1405 /* The variable header. */
1406 sofar
+= (sizeof (nlm_variable_header (abfd
)->descriptionLength
)
1407 + nlm_variable_header (abfd
)->descriptionLength
+ 1
1408 + NLM_TARGET_LONG_SIZE
/* stackSize */
1409 + NLM_TARGET_LONG_SIZE
/* reserved */
1410 + sizeof (nlm_variable_header (abfd
)->oldThreadName
)
1411 + sizeof (nlm_variable_header (abfd
)->screenNameLength
)
1412 + nlm_variable_header (abfd
)->screenNameLength
+ 1
1413 + sizeof (nlm_variable_header (abfd
)->threadNameLength
)
1414 + nlm_variable_header (abfd
)->threadNameLength
+ 1);
1416 /* The auxiliary headers. */
1417 if (find_nonzero ((PTR
) nlm_version_header (abfd
),
1418 sizeof (Nlm_Internal_Version_Header
)))
1419 sofar
+= sizeof (Nlm_External_Version_Header
);
1420 if (find_nonzero ((PTR
) nlm_extended_header (abfd
),
1421 sizeof (Nlm_Internal_Extended_Header
)))
1422 sofar
+= sizeof (Nlm_External_Extended_Header
);
1423 if (find_nonzero ((PTR
) nlm_copyright_header (abfd
),
1424 sizeof (Nlm_Internal_Copyright_Header
)))
1425 sofar
+= (sizeof (Nlm_External_Copyright_Header
)
1426 + nlm_copyright_header (abfd
)->copyrightMessageLength
+ 1);
1427 if (find_nonzero ((PTR
) nlm_custom_header (abfd
),
1428 sizeof (Nlm_Internal_Custom_Header
)))
1429 sofar
+= (sizeof (Nlm_External_Custom_Header
)
1430 + nlm_custom_header (abfd
)->hdrLength
);
1431 if (find_nonzero ((PTR
) nlm_cygnus_ext_header (abfd
),
1432 sizeof (Nlm_Internal_Cygnus_Ext_Header
)))
1433 sofar
+= sizeof (Nlm_External_Custom_Header
);
1435 /* Compute the section file positions in two passes. First get the
1436 sizes of the text and data sections, and then set the file
1437 positions. This code aligns the sections in the file using the
1438 same alignment restrictions that apply to the sections in memory;
1439 this may not be necessary. */
1441 text_low
= (bfd_vma
) - 1;
1444 data_low
= (bfd_vma
) - 1;
1448 for (sec
= abfd
->sections
; sec
!= (asection
*) NULL
; sec
= sec
->next
)
1452 sec
->_raw_size
= BFD_ALIGN (sec
->_raw_size
, 1 << sec
->alignment_power
);
1454 f
= bfd_get_section_flags (abfd
, sec
);
1457 text
+= sec
->_raw_size
;
1458 if (bfd_get_section_vma (abfd
, sec
) < text_low
)
1459 text_low
= bfd_get_section_vma (abfd
, sec
);
1460 if (sec
->alignment_power
> text_align
)
1461 text_align
= sec
->alignment_power
;
1463 else if (f
& SEC_DATA
)
1465 data
+= sec
->_raw_size
;
1466 if (bfd_get_section_vma (abfd
, sec
) < data_low
)
1467 data_low
= bfd_get_section_vma (abfd
, sec
);
1468 if (sec
->alignment_power
> data_align
)
1469 data_align
= sec
->alignment_power
;
1471 else if (f
& SEC_HAS_CONTENTS
)
1473 if (sec
->alignment_power
> other_align
)
1474 other_align
= sec
->alignment_power
;
1476 else if (f
& SEC_ALLOC
)
1477 bss
+= sec
->_raw_size
;
1480 nlm_set_text_low (abfd
, text_low
);
1481 nlm_set_data_low (abfd
, data_low
);
1483 if (nlm_no_uninitialized_data (abfd
))
1485 /* This NetWare format does not use uninitialized data. We must
1486 increase the size of the data section. We will never wind up
1487 writing those file locations, so they will remain zero. */
1492 text_ptr
= BFD_ALIGN (sofar
, 1 << text_align
);
1493 data_ptr
= BFD_ALIGN (text_ptr
+ text
, 1 << data_align
);
1494 other_ptr
= BFD_ALIGN (data_ptr
+ data
, 1 << other_align
);
1496 /* Fill in some fields in the header for which we now have the
1498 nlm_fixed_header (abfd
)->codeImageOffset
= text_ptr
;
1499 nlm_fixed_header (abfd
)->codeImageSize
= text
;
1500 nlm_fixed_header (abfd
)->dataImageOffset
= data_ptr
;
1501 nlm_fixed_header (abfd
)->dataImageSize
= data
;
1502 nlm_fixed_header (abfd
)->uninitializedDataSize
= bss
;
1504 for (sec
= abfd
->sections
; sec
!= (asection
*) NULL
; sec
= sec
->next
)
1508 f
= bfd_get_section_flags (abfd
, sec
);
1512 sec
->filepos
= text_ptr
;
1513 text_ptr
+= sec
->_raw_size
;
1515 else if (f
& SEC_DATA
)
1517 sec
->filepos
= data_ptr
;
1518 data_ptr
+= sec
->_raw_size
;
1520 else if (f
& SEC_HAS_CONTENTS
)
1522 sec
->filepos
= other_ptr
;
1523 other_ptr
+= sec
->_raw_size
;
1527 nlm_fixed_header (abfd
)->relocationFixupOffset
= other_ptr
;
1529 /* Move all common symbols into the .bss section. */
1531 sym_ptr_ptr
= bfd_get_outsymbols (abfd
);
1532 if (sym_ptr_ptr
!= NULL
)
1537 sym_end
= sym_ptr_ptr
+ bfd_get_symcount (abfd
);
1539 for (; sym_ptr_ptr
< sym_end
; sym_ptr_ptr
++)
1546 if (!bfd_is_com_section (bfd_get_section (sym
)))
1549 /* Put the common symbol in the .bss section, and increase
1550 the size of the .bss section by the size of the common
1551 symbol (which is the old value of the symbol). */
1552 sym
->section
= bss_sec
;
1554 sym
->value
= bss_sec
->_raw_size
+ add
;
1556 add
= BFD_ALIGN (add
, 1 << bss_sec
->alignment_power
);
1560 if (nlm_no_uninitialized_data (abfd
))
1562 /* We could handle this case, but so far it hasn't been
1566 nlm_fixed_header (abfd
)->uninitializedDataSize
+= add
;
1567 bss_sec
->_raw_size
+= add
;
1574 /* Set the contents of a section. To do this we need to know where
1575 the section is going to be located in the output file. That means
1576 that the sizes of all the sections must be set, and all the
1577 variable size header information must be known. */
1580 nlm_set_section_contents (abfd
, section
, location
, offset
, count
)
1585 bfd_size_type count
;
1587 if (abfd
->output_has_begun
== false
1588 && nlm_compute_section_file_positions (abfd
) == false)
1594 /* i386 NetWare has a very restricted set of relocs. In order for
1595 objcopy to work, the NLM i386 backend needs a chance to rework
1596 the section contents so that its set of relocs will work. If all
1597 the relocs are already acceptable, this will not do anything. */
1598 if (section
->reloc_count
!= 0)
1600 boolean (*mangle_relocs_func
) PARAMS ((bfd
*, asection
*, PTR
,
1601 bfd_vma
, bfd_size_type
));
1603 mangle_relocs_func
= nlm_mangle_relocs_func (abfd
);
1604 if (mangle_relocs_func
!= NULL
)
1606 if (!(*mangle_relocs_func
) (abfd
, section
, location
,
1607 (bfd_vma
) offset
, count
))
1612 if (bfd_seek (abfd
, (file_ptr
) (section
->filepos
+ offset
), SEEK_SET
) != 0
1613 || bfd_write (location
, 1, count
, abfd
) != count
)
1619 /* We need to sort a list of relocs associated with sections when we
1620 write out the external relocs. */
1623 nlm_external_reloc_compare (p1
, p2
)
1627 const struct reloc_and_sec
*r1
= (const struct reloc_and_sec
*) p1
;
1628 const struct reloc_and_sec
*r2
= (const struct reloc_and_sec
*) p2
;
1631 cmp
= strcmp ((*r1
->rel
->sym_ptr_ptr
)->name
,
1632 (*r2
->rel
->sym_ptr_ptr
)->name
);
1636 /* We sort by address within symbol to make the sort more stable and
1637 increase the chances that different hosts will generate bit for
1638 bit equivalent results. */
1639 return (int) (r1
->rel
->address
- r2
->rel
->address
);
1642 /* Write out an NLM file. We write out the information in this order:
1648 other sections (custom data, messages, help, shared NLM, RPC,
1649 module dependencies)
1651 external references (imports)
1652 public symbols (exports)
1654 This is similar to the order used by the NetWare tools; the
1655 difference is that NetWare puts the sections other than code, data
1656 and custom data at the end of the NLM. It is convenient for us to
1657 know where the sections are going to be before worrying about the
1658 size of the other information.
1660 By the time this function is called, all the section data should
1661 have been output using set_section_contents. Note that custom
1662 data, the message file, the help file, the shared NLM file, the RPC
1663 data, and the module dependencies are all considered to be
1664 sections; the caller is responsible for filling in the offset and
1665 length fields in the NLM headers. The relocation fixups and
1666 imports are both obtained from the list of relocs attached to each
1667 section. The exports and debugging records are obtained from the
1668 list of outsymbols. */
1671 nlm_write_object_contents (abfd
)
1675 boolean (*write_import_func
) PARAMS ((bfd
*, asection
*, arelent
*));
1676 bfd_size_type external_reloc_count
, internal_reloc_count
, i
, c
;
1677 struct reloc_and_sec
*external_relocs
;
1678 asymbol
**sym_ptr_ptr
;
1680 boolean (*write_prefix_func
) PARAMS ((bfd
*));
1681 unsigned char *fixed_header
= NULL
;
1683 fixed_header
= ((unsigned char *)
1684 bfd_malloc ((size_t) nlm_fixed_header_size (abfd
)));
1685 if (fixed_header
== NULL
)
1688 if (abfd
->output_has_begun
== false
1689 && nlm_compute_section_file_positions (abfd
) == false)
1692 /* Write out the variable length headers. */
1694 nlm_optional_prefix_size (abfd
) + nlm_fixed_header_size (abfd
),
1697 if (nlm_swap_variable_header_out (abfd
) == false
1698 || nlm_swap_auxiliary_headers_out (abfd
) == false)
1700 bfd_set_error (bfd_error_system_call
);
1704 /* A weak check on whether the section file positions were
1706 if (bfd_tell (abfd
) > nlm_fixed_header (abfd
)->codeImageOffset
)
1708 bfd_set_error (bfd_error_invalid_operation
);
1712 /* Advance to the relocs. */
1713 if (bfd_seek (abfd
, nlm_fixed_header (abfd
)->relocationFixupOffset
,
1717 /* The format of the relocation entries is dependent upon the
1718 particular target. We use an external routine to write the reloc
1720 write_import_func
= nlm_write_import_func (abfd
);
1722 /* Write out the internal relocation fixups. While we're looping
1723 over the relocs, we also count the external relocs, which is
1724 needed when they are written out below. */
1725 internal_reloc_count
= 0;
1726 external_reloc_count
= 0;
1727 for (sec
= abfd
->sections
; sec
!= (asection
*) NULL
; sec
= sec
->next
)
1729 arelent
**rel_ptr_ptr
, **rel_end
;
1731 if (sec
->reloc_count
== 0)
1734 /* We can only represent relocs within a code or data
1735 section. We ignore them for a debugging section. */
1736 if ((bfd_get_section_flags (abfd
, sec
) & (SEC_CODE
| SEC_DATA
)) == 0)
1739 /* We need to know how to write out imports */
1740 if (write_import_func
== NULL
)
1742 bfd_set_error (bfd_error_invalid_operation
);
1746 rel_ptr_ptr
= sec
->orelocation
;
1747 rel_end
= rel_ptr_ptr
+ sec
->reloc_count
;
1748 for (; rel_ptr_ptr
< rel_end
; rel_ptr_ptr
++)
1754 sym
= *rel
->sym_ptr_ptr
;
1756 if (! bfd_is_und_section (bfd_get_section (sym
)))
1758 ++internal_reloc_count
;
1759 if ((*write_import_func
) (abfd
, sec
, rel
) == false)
1763 ++external_reloc_count
;
1766 nlm_fixed_header (abfd
)->numberOfRelocationFixups
= internal_reloc_count
;
1768 /* Write out the imports (relocs against external symbols). These
1769 are output as a symbol name followed by all the relocs for that
1770 symbol, so we must first gather together all the relocs against
1771 external symbols and sort them. */
1773 (struct reloc_and_sec
*) bfd_alloc (abfd
,
1774 (external_reloc_count
1775 * sizeof (struct reloc_and_sec
)));
1776 if (external_relocs
== (struct reloc_and_sec
*) NULL
)
1779 for (sec
= abfd
->sections
; sec
!= (asection
*) NULL
; sec
= sec
->next
)
1781 arelent
**rel_ptr_ptr
, **rel_end
;
1783 if (sec
->reloc_count
== 0)
1786 rel_ptr_ptr
= sec
->orelocation
;
1787 rel_end
= rel_ptr_ptr
+ sec
->reloc_count
;
1788 for (; rel_ptr_ptr
< rel_end
; rel_ptr_ptr
++)
1794 sym
= *rel
->sym_ptr_ptr
;
1796 if (! bfd_is_und_section (bfd_get_section (sym
)))
1799 external_relocs
[i
].rel
= rel
;
1800 external_relocs
[i
].sec
= sec
;
1805 BFD_ASSERT (i
== external_reloc_count
);
1807 /* Sort the external relocs by name. */
1808 qsort ((PTR
) external_relocs
, (size_t) external_reloc_count
,
1809 sizeof (struct reloc_and_sec
), nlm_external_reloc_compare
);
1811 /* Write out the external relocs. */
1812 nlm_fixed_header (abfd
)->externalReferencesOffset
= bfd_tell (abfd
);
1815 while (i
< external_reloc_count
)
1819 bfd_size_type j
, cnt
;
1823 rel
= external_relocs
[i
].rel
;
1824 sym
= *rel
->sym_ptr_ptr
;
1828 (j
< external_reloc_count
1829 && *external_relocs
[j
].rel
->sym_ptr_ptr
== sym
);
1833 if ((*nlm_write_external_func (abfd
)) (abfd
, cnt
, sym
,
1834 &external_relocs
[i
])
1841 nlm_fixed_header (abfd
)->numberOfExternalReferences
= c
;
1843 /* Write out the public symbols (exports). */
1844 sym_ptr_ptr
= bfd_get_outsymbols (abfd
);
1845 if (sym_ptr_ptr
!= (asymbol
**) NULL
)
1847 bfd_vma (*get_public_offset_func
) PARAMS ((bfd
*, asymbol
*));
1848 boolean (*write_export_func
) PARAMS ((bfd
*, asymbol
*, bfd_vma
));
1852 nlm_fixed_header (abfd
)->publicsOffset
= bfd_tell (abfd
);
1853 get_public_offset_func
= nlm_get_public_offset_func (abfd
);
1854 write_export_func
= nlm_write_export_func (abfd
);
1856 sym_end
= sym_ptr_ptr
+ bfd_get_symcount (abfd
);
1857 for (; sym_ptr_ptr
< sym_end
; sym_ptr_ptr
++)
1862 bfd_byte temp
[NLM_TARGET_LONG_SIZE
];
1866 if ((sym
->flags
& (BSF_EXPORT
| BSF_GLOBAL
)) == 0
1867 || bfd_is_und_section (bfd_get_section (sym
)))
1872 if (get_public_offset_func
)
1874 /* Most backends can use the code below, but
1875 unfortunately some use a different scheme. */
1876 offset
= (*get_public_offset_func
) (abfd
, sym
);
1880 offset
= bfd_asymbol_value (sym
);
1882 if (sec
->flags
& SEC_CODE
)
1884 offset
-= nlm_get_text_low (abfd
);
1885 offset
|= NLM_HIBIT
;
1887 else if (sec
->flags
& (SEC_DATA
| SEC_ALLOC
))
1889 /* SEC_ALLOC is for the .bss section. */
1890 offset
-= nlm_get_data_low (abfd
);
1894 /* We can't handle an exported symbol that is not in
1895 the code or data segment. */
1896 bfd_set_error (bfd_error_invalid_operation
);
1901 if (write_export_func
)
1903 if ((*write_export_func
) (abfd
, sym
, offset
) == false)
1908 len
= strlen (sym
->name
);
1909 if ((bfd_write (&len
, sizeof (bfd_byte
), 1, abfd
)
1910 != sizeof (bfd_byte
))
1911 || bfd_write (sym
->name
, len
, 1, abfd
) != len
)
1914 put_word (abfd
, offset
, temp
);
1915 if (bfd_write (temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
1919 nlm_fixed_header (abfd
)->numberOfPublics
= c
;
1921 /* Write out the debugging records. The NLM conversion program
1922 wants to be able to inhibit this, so as a special hack if
1923 debugInfoOffset is set to -1 we don't write any debugging
1924 information. This can not be handled by fiddling with the
1925 symbol table, because exported symbols appear in both the
1926 exported symbol list and the debugging information. */
1927 if (nlm_fixed_header (abfd
)->debugInfoOffset
== (file_ptr
) - 1)
1929 nlm_fixed_header (abfd
)->debugInfoOffset
= 0;
1930 nlm_fixed_header (abfd
)->numberOfDebugRecords
= 0;
1934 nlm_fixed_header (abfd
)->debugInfoOffset
= bfd_tell (abfd
);
1936 sym_ptr_ptr
= bfd_get_outsymbols (abfd
);
1937 sym_end
= sym_ptr_ptr
+ bfd_get_symcount (abfd
);
1938 for (; sym_ptr_ptr
< sym_end
; sym_ptr_ptr
++)
1943 bfd_byte temp
[NLM_TARGET_LONG_SIZE
];
1947 /* The NLM notion of a debugging symbol is actually what
1948 BFD calls a local or global symbol. What BFD calls a
1949 debugging symbol NLM does not understand at all. */
1950 if ((sym
->flags
& (BSF_LOCAL
| BSF_GLOBAL
| BSF_EXPORT
)) == 0
1951 || (sym
->flags
& BSF_DEBUGGING
) != 0
1952 || bfd_is_und_section (bfd_get_section (sym
)))
1957 offset
= bfd_asymbol_value (sym
);
1959 if (sec
->flags
& SEC_CODE
)
1961 offset
-= nlm_get_text_low (abfd
);
1964 else if (sec
->flags
& (SEC_DATA
| SEC_ALLOC
))
1966 /* SEC_ALLOC is for the .bss section. */
1967 offset
-= nlm_get_data_low (abfd
);
1973 /* The type is 0 for data, 1 for code, 2 for absolute. */
1974 if (bfd_write (&type
, sizeof (bfd_byte
), 1, abfd
)
1975 != sizeof (bfd_byte
))
1978 put_word (abfd
, offset
, temp
);
1979 if (bfd_write (temp
, sizeof (temp
), 1, abfd
) != sizeof (temp
))
1982 len
= strlen (sym
->name
);
1983 if ((bfd_write (&len
, sizeof (bfd_byte
), 1, abfd
)
1984 != sizeof (bfd_byte
))
1985 || bfd_write (sym
->name
, len
, 1, abfd
) != len
)
1988 nlm_fixed_header (abfd
)->numberOfDebugRecords
= c
;
1992 /* NLMLINK fills in offset values even if there is no data, so we do
1994 last
= bfd_tell (abfd
);
1995 if (nlm_fixed_header (abfd
)->codeImageOffset
== 0)
1996 nlm_fixed_header (abfd
)->codeImageOffset
= last
;
1997 if (nlm_fixed_header (abfd
)->dataImageOffset
== 0)
1998 nlm_fixed_header (abfd
)->dataImageOffset
= last
;
1999 if (nlm_fixed_header (abfd
)->customDataOffset
== 0)
2000 nlm_fixed_header (abfd
)->customDataOffset
= last
;
2001 if (nlm_fixed_header (abfd
)->moduleDependencyOffset
== 0)
2002 nlm_fixed_header (abfd
)->moduleDependencyOffset
= last
;
2003 if (nlm_fixed_header (abfd
)->relocationFixupOffset
== 0)
2004 nlm_fixed_header (abfd
)->relocationFixupOffset
= last
;
2005 if (nlm_fixed_header (abfd
)->externalReferencesOffset
== 0)
2006 nlm_fixed_header (abfd
)->externalReferencesOffset
= last
;
2007 if (nlm_fixed_header (abfd
)->publicsOffset
== 0)
2008 nlm_fixed_header (abfd
)->publicsOffset
= last
;
2009 if (nlm_fixed_header (abfd
)->debugInfoOffset
== 0)
2010 nlm_fixed_header (abfd
)->debugInfoOffset
= last
;
2012 /* At this point everything has been written out except the fixed
2014 memcpy (nlm_fixed_header (abfd
)->signature
, nlm_signature (abfd
),
2015 NLM_SIGNATURE_SIZE
);
2016 nlm_fixed_header (abfd
)->version
= NLM_HEADER_VERSION
;
2017 nlm_fixed_header (abfd
)->codeStartOffset
=
2018 (bfd_get_start_address (abfd
)
2019 - nlm_get_text_low (abfd
));
2021 /* We have no convenient way for the caller to pass in the exit
2022 procedure or the check unload procedure, so the caller must set
2023 the values in the header to the values of the symbols. */
2024 nlm_fixed_header (abfd
)->exitProcedureOffset
-= nlm_get_text_low (abfd
);
2025 if (nlm_fixed_header (abfd
)->checkUnloadProcedureOffset
!= 0)
2026 nlm_fixed_header (abfd
)->checkUnloadProcedureOffset
-=
2027 nlm_get_text_low (abfd
);
2029 if (bfd_seek (abfd
, 0, SEEK_SET
) != 0)
2032 write_prefix_func
= nlm_write_prefix_func (abfd
);
2033 if (write_prefix_func
)
2035 if ((*write_prefix_func
) (abfd
) == false)
2039 BFD_ASSERT ((bfd_size_type
) bfd_tell (abfd
)
2040 == nlm_optional_prefix_size (abfd
));
2042 nlm_swap_fixed_header_out (abfd
, nlm_fixed_header (abfd
), fixed_header
);
2043 if (bfd_write (fixed_header
, nlm_fixed_header_size (abfd
), 1, abfd
)
2044 != nlm_fixed_header_size (abfd
))
2047 if (fixed_header
!= NULL
)
2048 free (fixed_header
);
2052 if (fixed_header
!= NULL
)
2053 free (fixed_header
);