gdb: Extend the trad-frame API
[deliverable/binutils-gdb.git] / bfd / mach-o.c
CommitLineData
3af9a47b 1/* Mach-O support for BFD.
219d1afa 2 Copyright (C) 1999-2018 Free Software Foundation, Inc.
3af9a47b
NC
3
4 This file is part of BFD, the Binary File Descriptor library.
5
6 This program is free software; you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
cd123cb7 8 the Free Software Foundation; either version 3 of the License, or
3af9a47b
NC
9 (at your option) any later version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
a95a4550 17 along with this program; if not, write to the Free Software
cd123cb7
NC
18 Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston,
19 MA 02110-1301, USA. */
3af9a47b 20
3db64b00 21#include "sysdep.h"
3af9a47b
NC
22#include "mach-o.h"
23#include "bfd.h"
3af9a47b
NC
24#include "libbfd.h"
25#include "libiberty.h"
15e1c58a 26#include "aout/stab_gnu.h"
46d1c23b
TG
27#include "mach-o/reloc.h"
28#include "mach-o/external.h"
3af9a47b 29#include <ctype.h>
7f307238
IS
30#include <stdlib.h>
31#include <string.h>
3af9a47b 32
154a1ee5
TG
33#define bfd_mach_o_object_p bfd_mach_o_gen_object_p
34#define bfd_mach_o_core_p bfd_mach_o_gen_core_p
42fa0891 35#define bfd_mach_o_mkobject bfd_mach_o_gen_mkobject
116c20d2 36
92bc0e80 37#define FILE_ALIGN(off, algn) \
b6518b38 38 (((off) + ((file_ptr) 1 << (algn)) - 1) & ((file_ptr) -1U << (algn)))
92bc0e80 39
c9ffd2ea
TG
40static bfd_boolean
41bfd_mach_o_read_dyld_content (bfd *abfd, bfd_mach_o_dyld_info_command *cmd);
42
c2f09c75 43unsigned int
1e8a024a
TG
44bfd_mach_o_version (bfd *abfd)
45{
46 bfd_mach_o_data_struct *mdata = NULL;
47
48 BFD_ASSERT (bfd_mach_o_valid (abfd));
046b007d 49 mdata = bfd_mach_o_get_data (abfd);
1e8a024a
TG
50
51 return mdata->header.version;
52}
53
b34976b6 54bfd_boolean
116c20d2 55bfd_mach_o_valid (bfd *abfd)
3af9a47b
NC
56{
57 if (abfd == NULL || abfd->xvec == NULL)
154a1ee5 58 return FALSE;
3af9a47b 59
154a1ee5
TG
60 if (abfd->xvec->flavour != bfd_target_mach_o_flavour)
61 return FALSE;
3af9a47b 62
046b007d 63 if (bfd_mach_o_get_data (abfd) == NULL)
154a1ee5
TG
64 return FALSE;
65 return TRUE;
66}
67
c2f09c75
TG
68static INLINE bfd_boolean
69mach_o_wide_p (bfd_mach_o_header *header)
70{
71 switch (header->version)
72 {
73 case 1:
74 return FALSE;
75 case 2:
76 return TRUE;
77 default:
78 BFD_FAIL ();
79 return FALSE;
80 }
81}
82
83static INLINE bfd_boolean
84bfd_mach_o_wide_p (bfd *abfd)
85{
046b007d 86 return mach_o_wide_p (&bfd_mach_o_get_data (abfd)->header);
c2f09c75 87}
68ffbac6 88
154a1ee5
TG
89/* Tables to translate well known Mach-O segment/section names to bfd
90 names. Use of canonical names (such as .text or .debug_frame) is required
91 by gdb. */
92
a4551119
TG
93/* __TEXT Segment. */
94static const mach_o_section_name_xlat text_section_names_xlat[] =
154a1ee5 95 {
68ffbac6 96 { ".text", "__text",
a4551119
TG
97 SEC_CODE | SEC_LOAD, BFD_MACH_O_S_REGULAR,
98 BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS, 0},
99 { ".const", "__const",
100 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
101 BFD_MACH_O_S_ATTR_NONE, 0},
102 { ".static_const", "__static_const",
103 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
104 BFD_MACH_O_S_ATTR_NONE, 0},
105 { ".cstring", "__cstring",
106 SEC_READONLY | SEC_DATA | SEC_LOAD | SEC_MERGE | SEC_STRINGS,
107 BFD_MACH_O_S_CSTRING_LITERALS,
108 BFD_MACH_O_S_ATTR_NONE, 0},
109 { ".literal4", "__literal4",
110 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_4BYTE_LITERALS,
111 BFD_MACH_O_S_ATTR_NONE, 2},
112 { ".literal8", "__literal8",
113 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_8BYTE_LITERALS,
114 BFD_MACH_O_S_ATTR_NONE, 3},
115 { ".literal16", "__literal16",
116 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_16BYTE_LITERALS,
117 BFD_MACH_O_S_ATTR_NONE, 4},
118 { ".constructor", "__constructor",
119 SEC_CODE | SEC_LOAD, BFD_MACH_O_S_REGULAR,
120 BFD_MACH_O_S_ATTR_NONE, 0},
121 { ".destructor", "__destructor",
122 SEC_CODE | SEC_LOAD, BFD_MACH_O_S_REGULAR,
123 BFD_MACH_O_S_ATTR_NONE, 0},
124 { ".eh_frame", "__eh_frame",
632039e0 125 SEC_READONLY | SEC_DATA | SEC_LOAD, BFD_MACH_O_S_COALESCED,
a4551119
TG
126 BFD_MACH_O_S_ATTR_LIVE_SUPPORT
127 | BFD_MACH_O_S_ATTR_STRIP_STATIC_SYMS
632039e0 128 | BFD_MACH_O_S_ATTR_NO_TOC, 2},
a4551119 129 { NULL, NULL, 0, 0, 0, 0}
154a1ee5
TG
130 };
131
a4551119
TG
132/* __DATA Segment. */
133static const mach_o_section_name_xlat data_section_names_xlat[] =
154a1ee5 134 {
a4551119
TG
135 { ".data", "__data",
136 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
137 BFD_MACH_O_S_ATTR_NONE, 0},
138 { ".bss", "__bss",
139 SEC_NO_FLAGS, BFD_MACH_O_S_ZEROFILL,
140 BFD_MACH_O_S_ATTR_NONE, 0},
141 { ".const_data", "__const",
142 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
143 BFD_MACH_O_S_ATTR_NONE, 0},
144 { ".static_data", "__static_data",
145 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
146 BFD_MACH_O_S_ATTR_NONE, 0},
147 { ".mod_init_func", "__mod_init_func",
148 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_MOD_INIT_FUNC_POINTERS,
149 BFD_MACH_O_S_ATTR_NONE, 2},
150 { ".mod_term_func", "__mod_term_func",
151 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_MOD_FINI_FUNC_POINTERS,
152 BFD_MACH_O_S_ATTR_NONE, 2},
153 { ".dyld", "__dyld",
154 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
155 BFD_MACH_O_S_ATTR_NONE, 0},
156 { ".cfstring", "__cfstring",
157 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
158 BFD_MACH_O_S_ATTR_NONE, 2},
159 { NULL, NULL, 0, 0, 0, 0}
154a1ee5
TG
160 };
161
a4551119
TG
162/* __DWARF Segment. */
163static const mach_o_section_name_xlat dwarf_section_names_xlat[] =
154a1ee5 164 {
a4551119
TG
165 { ".debug_frame", "__debug_frame",
166 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
167 BFD_MACH_O_S_ATTR_DEBUG, 0},
168 { ".debug_info", "__debug_info",
169 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
170 BFD_MACH_O_S_ATTR_DEBUG, 0},
171 { ".debug_abbrev", "__debug_abbrev",
172 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
173 BFD_MACH_O_S_ATTR_DEBUG, 0},
174 { ".debug_aranges", "__debug_aranges",
175 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
176 BFD_MACH_O_S_ATTR_DEBUG, 0},
177 { ".debug_macinfo", "__debug_macinfo",
178 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
179 BFD_MACH_O_S_ATTR_DEBUG, 0},
180 { ".debug_line", "__debug_line",
181 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
182 BFD_MACH_O_S_ATTR_DEBUG, 0},
183 { ".debug_loc", "__debug_loc",
184 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
185 BFD_MACH_O_S_ATTR_DEBUG, 0},
186 { ".debug_pubnames", "__debug_pubnames",
187 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
188 BFD_MACH_O_S_ATTR_DEBUG, 0},
189 { ".debug_pubtypes", "__debug_pubtypes",
190 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
191 BFD_MACH_O_S_ATTR_DEBUG, 0},
192 { ".debug_str", "__debug_str",
193 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
194 BFD_MACH_O_S_ATTR_DEBUG, 0},
195 { ".debug_ranges", "__debug_ranges",
196 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
197 BFD_MACH_O_S_ATTR_DEBUG, 0},
198 { ".debug_macro", "__debug_macro",
199 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
200 BFD_MACH_O_S_ATTR_DEBUG, 0},
671a6cbe
NC
201 { ".debug_gdb_scripts", "__debug_gdb_scri",
202 SEC_DEBUGGING, BFD_MACH_O_S_REGULAR,
203 BFD_MACH_O_S_ATTR_DEBUG, 0},
a4551119 204 { NULL, NULL, 0, 0, 0, 0}
154a1ee5
TG
205 };
206
a4551119
TG
207/* __OBJC Segment. */
208static const mach_o_section_name_xlat objc_section_names_xlat[] =
209 {
210 { ".objc_class", "__class",
211 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
212 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
213 { ".objc_meta_class", "__meta_class",
214 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
215 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
216 { ".objc_cat_cls_meth", "__cat_cls_meth",
217 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
218 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
219 { ".objc_cat_inst_meth", "__cat_inst_meth",
220 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
221 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
222 { ".objc_protocol", "__protocol",
223 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
224 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
225 { ".objc_string_object", "__string_object",
226 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
227 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
228 { ".objc_cls_meth", "__cls_meth",
229 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
230 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
231 { ".objc_inst_meth", "__inst_meth",
232 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
233 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
234 { ".objc_cls_refs", "__cls_refs",
235 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_LITERAL_POINTERS,
236 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
237 { ".objc_message_refs", "__message_refs",
238 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_LITERAL_POINTERS,
239 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
240 { ".objc_symbols", "__symbols",
241 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
242 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
243 { ".objc_category", "__category",
244 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
245 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
246 { ".objc_class_vars", "__class_vars",
247 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
248 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
249 { ".objc_instance_vars", "__instance_vars",
250 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
251 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
252 { ".objc_module_info", "__module_info",
253 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
254 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
255 { ".objc_selector_strs", "__selector_strs",
256 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_CSTRING_LITERALS,
257 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
258 { ".objc_image_info", "__image_info",
259 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
260 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
261 { ".objc_selector_fixup", "__sel_fixup",
262 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
263 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
264 /* Objc V1 */
265 { ".objc1_class_ext", "__class_ext",
266 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
267 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
268 { ".objc1_property_list", "__property",
269 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
270 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
271 { ".objc1_protocol_ext", "__protocol_ext",
272 SEC_DATA | SEC_LOAD, BFD_MACH_O_S_REGULAR,
273 BFD_MACH_O_S_ATTR_NO_DEAD_STRIP, 0},
274 { NULL, NULL, 0, 0, 0, 0}
275 };
5a5cbf72 276
a4551119 277static const mach_o_segment_name_xlat segsec_names_xlat[] =
154a1ee5 278 {
154a1ee5
TG
279 { "__TEXT", text_section_names_xlat },
280 { "__DATA", data_section_names_xlat },
5a5cbf72 281 { "__DWARF", dwarf_section_names_xlat },
a4551119 282 { "__OBJC", objc_section_names_xlat },
154a1ee5
TG
283 { NULL, NULL }
284 };
285
2ca7691a
TG
286static const char dsym_subdir[] = ".dSYM/Contents/Resources/DWARF";
287
a4551119
TG
288/* For both cases bfd-name => mach-o name and vice versa, the specific target
289 is checked before the generic. This allows a target (e.g. ppc for cstring)
290 to override the generic definition with a more specific one. */
154a1ee5 291
a4551119
TG
292/* Fetch the translation from a Mach-O section designation (segment, section)
293 as a bfd short name, if one exists. Otherwise return NULL.
68ffbac6 294
a4551119
TG
295 Allow the segment and section names to be unterminated 16 byte arrays. */
296
297const mach_o_section_name_xlat *
298bfd_mach_o_section_data_for_mach_sect (bfd *abfd, const char *segname,
299 const char *sectname)
154a1ee5
TG
300{
301 const struct mach_o_segment_name_xlat *seg;
a4551119
TG
302 const mach_o_section_name_xlat *sec;
303 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
154a1ee5 304
a4551119
TG
305 /* First try any target-specific translations defined... */
306 if (bed->segsec_names_xlat)
307 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
308 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
309 for (sec = seg->sections; sec->mach_o_name; sec++)
310 if (strncmp (sec->mach_o_name, sectname,
311 BFD_MACH_O_SECTNAME_SIZE) == 0)
312 return sec;
8462aec7 313
a4551119 314 /* ... and then the Mach-O generic ones. */
154a1ee5 315 for (seg = segsec_names_xlat; seg->segname; seg++)
a4551119
TG
316 if (strncmp (seg->segname, segname, BFD_MACH_O_SEGNAME_SIZE) == 0)
317 for (sec = seg->sections; sec->mach_o_name; sec++)
07d6d2b8 318 if (strncmp (sec->mach_o_name, sectname,
a4551119 319 BFD_MACH_O_SECTNAME_SIZE) == 0)
07d6d2b8 320 return sec;
154a1ee5 321
68ffbac6 322 return NULL;
53d58d96
TG
323}
324
a4551119 325/* If the bfd_name for this section is a 'canonical' form for which we
68ffbac6 326 know the Mach-O data, return the segment name and the data for the
a4551119 327 Mach-O equivalent. Otherwise return NULL. */
7ba695a9 328
a4551119
TG
329const mach_o_section_name_xlat *
330bfd_mach_o_section_data_for_bfd_name (bfd *abfd, const char *bfd_name,
331 const char **segname)
53d58d96 332{
a4551119
TG
333 const struct mach_o_segment_name_xlat *seg;
334 const mach_o_section_name_xlat *sec;
335 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
336 *segname = NULL;
337
338 if (bfd_name[0] != '.')
339 return NULL;
340
341 /* First try any target-specific translations defined... */
342 if (bed->segsec_names_xlat)
343 for (seg = bed->segsec_names_xlat; seg->segname; seg++)
344 for (sec = seg->sections; sec->bfd_name; sec++)
345 if (strcmp (bfd_name, sec->bfd_name) == 0)
346 {
347 *segname = seg->segname;
348 return sec;
349 }
350
351 /* ... and then the Mach-O generic ones. */
352 for (seg = segsec_names_xlat; seg->segname; seg++)
353 for (sec = seg->sections; sec->bfd_name; sec++)
354 if (strcmp (bfd_name, sec->bfd_name) == 0)
355 {
356 *segname = seg->segname;
357 return sec;
358 }
359
68ffbac6 360 return NULL;
a4551119
TG
361}
362
363/* Convert Mach-O section name to BFD.
364
68ffbac6 365 Try to use standard/canonical names, for which we have tables including
a4551119
TG
366 default flag settings - which are returned. Otherwise forge a new name
367 in the form "<segmentname>.<sectionname>" this will be prefixed with
368 LC_SEGMENT. if the segment name does not begin with an underscore.
369
370 SEGNAME and SECTNAME are 16 byte arrays (they do not need to be NUL-
371 terminated if the name length is exactly 16 bytes - but must be if the name
372 length is less than 16 characters). */
373
374void
375bfd_mach_o_convert_section_name_to_bfd (bfd *abfd, const char *segname,
376 const char *secname, const char **name,
377 flagword *flags)
378{
379 const mach_o_section_name_xlat *xlat;
53d58d96
TG
380 char *res;
381 unsigned int len;
382 const char *pfx = "";
383
a4551119
TG
384 *name = NULL;
385 *flags = SEC_NO_FLAGS;
53d58d96 386
68ffbac6 387 /* First search for a canonical name...
a4551119
TG
388 xlat will be non-null if there is an entry for segname, secname. */
389 xlat = bfd_mach_o_section_data_for_mach_sect (abfd, segname, secname);
390 if (xlat)
391 {
392 len = strlen (xlat->bfd_name);
64d29018 393 res = bfd_alloc (abfd, len + 1);
a4551119
TG
394 if (res == NULL)
395 return;
396 memcpy (res, xlat->bfd_name, len+1);
397 *name = res;
398 *flags = xlat->bfd_flags;
399 return;
400 }
401
402 /* ... else we make up a bfd name from the segment concatenated with the
403 section. */
154a1ee5 404
7ba695a9 405 len = 16 + 1 + 16 + 1;
154a1ee5 406
c2f09c75
TG
407 /* Put "LC_SEGMENT." prefix if the segment name is weird (ie doesn't start
408 with an underscore. */
f1bde64c 409 if (segname[0] != '_')
c2f09c75
TG
410 {
411 static const char seg_pfx[] = "LC_SEGMENT.";
412
413 pfx = seg_pfx;
414 len += sizeof (seg_pfx) - 1;
415 }
416
154a1ee5
TG
417 res = bfd_alloc (abfd, len);
418 if (res == NULL)
8462aec7 419 return;
a4551119 420 snprintf (res, len, "%s%.16s.%.16s", pfx, segname, secname);
8462aec7 421 *name = res;
154a1ee5
TG
422}
423
a4551119 424/* Convert a bfd section name to a Mach-O segment + section name.
154a1ee5 425
a4551119
TG
426 If the name is a canonical one for which we have a Darwin match
427 return the translation table - which contains defaults for flags,
428 type, attribute and default alignment data.
429
68ffbac6 430 Otherwise, expand the bfd_name (assumed to be in the form
a4551119
TG
431 "[LC_SEGMENT.]<segmentname>.<sectionname>") and return NULL. */
432
433static const mach_o_section_name_xlat *
154a1ee5 434bfd_mach_o_convert_section_name_to_mach_o (bfd *abfd ATTRIBUTE_UNUSED,
07d6d2b8
AM
435 asection *sect,
436 bfd_mach_o_section *section)
154a1ee5 437{
a4551119 438 const mach_o_section_name_xlat *xlat;
154a1ee5 439 const char *name = bfd_get_section_name (abfd, sect);
a4551119 440 const char *segname;
154a1ee5
TG
441 const char *dot;
442 unsigned int len;
443 unsigned int seglen;
444 unsigned int seclen;
445
a4551119
TG
446 memset (section->segname, 0, BFD_MACH_O_SEGNAME_SIZE + 1);
447 memset (section->sectname, 0, BFD_MACH_O_SECTNAME_SIZE + 1);
448
449 /* See if is a canonical name ... */
450 xlat = bfd_mach_o_section_data_for_bfd_name (abfd, name, &segname);
451 if (xlat)
452 {
453 strcpy (section->segname, segname);
454 strcpy (section->sectname, xlat->mach_o_name);
455 return xlat;
456 }
154a1ee5 457
a4551119
TG
458 /* .. else we convert our constructed one back to Mach-O.
459 Strip LC_SEGMENT. prefix, if present. */
154a1ee5
TG
460 if (strncmp (name, "LC_SEGMENT.", 11) == 0)
461 name += 11;
462
463 /* Find a dot. */
464 dot = strchr (name, '.');
465 len = strlen (name);
466
467 /* Try to split name into segment and section names. */
468 if (dot && dot != name)
469 {
470 seglen = dot - name;
471 seclen = len - (dot + 1 - name);
472
ca148c5a
TG
473 if (seglen <= BFD_MACH_O_SEGNAME_SIZE
474 && seclen <= BFD_MACH_O_SECTNAME_SIZE)
07d6d2b8
AM
475 {
476 memcpy (section->segname, name, seglen);
477 section->segname[seglen] = 0;
478 memcpy (section->sectname, dot + 1, seclen);
479 section->sectname[seclen] = 0;
480 return NULL;
481 }
154a1ee5
TG
482 }
483
a4551119
TG
484 /* The segment and section names are both missing - don't make them
485 into dots. */
486 if (dot && dot == name)
487 return NULL;
488
489 /* Just duplicate the name into both segment and section. */
154a1ee5
TG
490 if (len > 16)
491 len = 16;
492 memcpy (section->segname, name, len);
493 section->segname[len] = 0;
494 memcpy (section->sectname, name, len);
495 section->sectname[len] = 0;
a4551119 496 return NULL;
3af9a47b
NC
497}
498
b2b62060
TG
499/* Return the size of an entry for section SEC.
500 Must be called only for symbol pointer section and symbol stubs
501 sections. */
502
c5012cd8 503unsigned int
b2b62060
TG
504bfd_mach_o_section_get_entry_size (bfd *abfd, bfd_mach_o_section *sec)
505{
506 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
507 {
508 case BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS:
509 case BFD_MACH_O_S_LAZY_SYMBOL_POINTERS:
510 return bfd_mach_o_wide_p (abfd) ? 8 : 4;
511 case BFD_MACH_O_S_SYMBOL_STUBS:
512 return sec->reserved2;
513 default:
514 BFD_FAIL ();
515 return 0;
516 }
517}
518
519/* Return the number of indirect symbols for a section.
520 Must be called only for symbol pointer section and symbol stubs
521 sections. */
522
c5012cd8 523unsigned int
b2b62060
TG
524bfd_mach_o_section_get_nbr_indirect (bfd *abfd, bfd_mach_o_section *sec)
525{
526 unsigned int elsz;
527
528 elsz = bfd_mach_o_section_get_entry_size (abfd, sec);
529 if (elsz == 0)
530 return 0;
531 else
532 return sec->size / elsz;
533}
534
c9ffd2ea
TG
535/* Append command CMD to ABFD. Note that header.ncmds is not updated. */
536
537static void
538bfd_mach_o_append_command (bfd *abfd, bfd_mach_o_load_command *cmd)
539{
540 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
541
542 if (mdata->last_command != NULL)
543 mdata->last_command->next = cmd;
544 else
545 mdata->first_command = cmd;
546 mdata->last_command = cmd;
547 cmd->next = NULL;
548}
b2b62060 549
3af9a47b
NC
550/* Copy any private info we understand from the input symbol
551 to the output symbol. */
552
154a1ee5 553bfd_boolean
116c20d2 554bfd_mach_o_bfd_copy_private_symbol_data (bfd *ibfd ATTRIBUTE_UNUSED,
b22161d6 555 asymbol *isymbol,
116c20d2 556 bfd *obfd ATTRIBUTE_UNUSED,
b22161d6
IS
557 asymbol *osymbol)
558{
559 bfd_mach_o_asymbol *os, *is;
c9ffd2ea 560
b22161d6
IS
561 os = (bfd_mach_o_asymbol *)osymbol;
562 is = (bfd_mach_o_asymbol *)isymbol;
563 os->n_type = is->n_type;
564 os->n_sect = is->n_sect;
565 os->n_desc = is->n_desc;
566 os->symbol.udata.i = is->symbol.udata.i;
c9ffd2ea 567
b34976b6 568 return TRUE;
3af9a47b
NC
569}
570
571/* Copy any private info we understand from the input section
572 to the output section. */
573
154a1ee5 574bfd_boolean
c9ffd2ea
TG
575bfd_mach_o_bfd_copy_private_section_data (bfd *ibfd, asection *isection,
576 bfd *obfd, asection *osection)
a4551119 577{
c9ffd2ea
TG
578 bfd_mach_o_section *os = bfd_mach_o_get_mach_o_section (osection);
579 bfd_mach_o_section *is = bfd_mach_o_get_mach_o_section (isection);
68ffbac6 580
c9ffd2ea
TG
581 if (ibfd->xvec->flavour != bfd_target_mach_o_flavour
582 || obfd->xvec->flavour != bfd_target_mach_o_flavour)
583 return TRUE;
584
585 BFD_ASSERT (is != NULL && os != NULL);
586
587 os->flags = is->flags;
588 os->reserved1 = is->reserved1;
589 os->reserved2 = is->reserved2;
590 os->reserved3 = is->reserved3;
a4551119 591
b34976b6 592 return TRUE;
3af9a47b
NC
593}
594
c6643fcc
NC
595static const char *
596cputype (unsigned long value)
597{
598 switch (value)
599 {
600 case BFD_MACH_O_CPU_TYPE_VAX: return "VAX";
601 case BFD_MACH_O_CPU_TYPE_MC680x0: return "MC68k";
602 case BFD_MACH_O_CPU_TYPE_I386: return "I386";
603 case BFD_MACH_O_CPU_TYPE_MIPS: return "MIPS";
604 case BFD_MACH_O_CPU_TYPE_MC98000: return "MC98k";
605 case BFD_MACH_O_CPU_TYPE_HPPA: return "HPPA";
606 case BFD_MACH_O_CPU_TYPE_ARM: return "ARM";
607 case BFD_MACH_O_CPU_TYPE_MC88000: return "MC88K";
608 case BFD_MACH_O_CPU_TYPE_SPARC: return "SPARC";
609 case BFD_MACH_O_CPU_TYPE_I860: return "I860";
610 case BFD_MACH_O_CPU_TYPE_ALPHA: return "ALPHA";
611 case BFD_MACH_O_CPU_TYPE_POWERPC: return "PPC";
612 case BFD_MACH_O_CPU_TYPE_POWERPC_64: return "PPC64";
613 case BFD_MACH_O_CPU_TYPE_X86_64: return "X86_64";
614 case BFD_MACH_O_CPU_TYPE_ARM64: return "ARM64";
615 default: return _("<unknown>");
616 }
617}
618
619static const char *
620cpusubtype (unsigned long cputype, unsigned long cpusubtype)
621{
622 static char buffer[128];
623
624 buffer[0] = 0;
625 switch (cpusubtype & BFD_MACH_O_CPU_SUBTYPE_MASK)
626 {
627 case 0:
628 break;
629 case BFD_MACH_O_CPU_SUBTYPE_LIB64:
630 sprintf (buffer, " (LIB64)"); break;
631 default:
632 sprintf (buffer, _("<unknown mask flags>")); break;
633 }
634
635 cpusubtype &= ~ BFD_MACH_O_CPU_SUBTYPE_MASK;
636
637 switch (cputype)
638 {
639 case BFD_MACH_O_CPU_TYPE_X86_64:
640 case BFD_MACH_O_CPU_TYPE_I386:
641 switch (cpusubtype)
642 {
643 case BFD_MACH_O_CPU_SUBTYPE_X86_ALL:
644 return strcat (buffer, " (X86_ALL)");
645 default:
646 break;
647 }
648 break;
649
650 case BFD_MACH_O_CPU_TYPE_ARM:
651 switch (cpusubtype)
652 {
653 case BFD_MACH_O_CPU_SUBTYPE_ARM_ALL:
654 return strcat (buffer, " (ARM_ALL)");
655 case BFD_MACH_O_CPU_SUBTYPE_ARM_V4T:
656 return strcat (buffer, " (ARM_V4T)");
657 case BFD_MACH_O_CPU_SUBTYPE_ARM_V6:
658 return strcat (buffer, " (ARM_V6)");
659 case BFD_MACH_O_CPU_SUBTYPE_ARM_V5TEJ:
660 return strcat (buffer, " (ARM_V5TEJ)");
661 case BFD_MACH_O_CPU_SUBTYPE_ARM_XSCALE:
662 return strcat (buffer, " (ARM_XSCALE)");
663 case BFD_MACH_O_CPU_SUBTYPE_ARM_V7:
664 return strcat (buffer, " (ARM_V7)");
665 default:
666 break;
667 }
668 break;
669
670 case BFD_MACH_O_CPU_TYPE_ARM64:
671 switch (cpusubtype)
672 {
673 case BFD_MACH_O_CPU_SUBTYPE_ARM64_ALL:
674 return strcat (buffer, " (ARM64_ALL)");
675 case BFD_MACH_O_CPU_SUBTYPE_ARM64_V8:
676 return strcat (buffer, " (ARM64_V8)");
677 default:
678 break;
679 }
680 break;
681
682 default:
683 break;
684 }
685
686 if (cpusubtype != 0)
687 return strcat (buffer, _(" (<unknown>)"));
688
689 return buffer;
690}
691
692bfd_boolean
693bfd_mach_o_bfd_print_private_bfd_data (bfd *abfd, void *ptr)
694{
695 FILE * file = (FILE *) ptr;
696 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
697
698 fprintf (file, _(" MACH-O header:\n"));
699 fprintf (file, _(" magic: %#lx\n"), (long) mdata->header.magic);
700 fprintf (file, _(" cputype: %#lx (%s)\n"), (long) mdata->header.cputype,
701 cputype (mdata->header.cputype));
702 fprintf (file, _(" cpusubtype: %#lx%s\n"), (long) mdata->header.cpusubtype,
703 cpusubtype (mdata->header.cputype, mdata->header.cpusubtype));
704 fprintf (file, _(" filetype: %#lx\n"), (long) mdata->header.filetype);
705 fprintf (file, _(" ncmds: %#lx\n"), (long) mdata->header.ncmds);
706 fprintf (file, _(" sizeocmds: %#lx\n"), (long) mdata->header.sizeofcmds);
707 fprintf (file, _(" flags: %#lx\n"), (long) mdata->header.flags);
708 fprintf (file, _(" version: %x\n"), mdata->header.version);
709
710 return TRUE;
711}
712
3af9a47b
NC
713/* Copy any private info we understand from the input bfd
714 to the output bfd. */
715
154a1ee5 716bfd_boolean
967b2c53 717bfd_mach_o_bfd_copy_private_header_data (bfd *ibfd, bfd *obfd)
3af9a47b 718{
c9ffd2ea
TG
719 bfd_mach_o_data_struct *imdata;
720 bfd_mach_o_data_struct *omdata;
721 bfd_mach_o_load_command *icmd;
722
154a1ee5
TG
723 if (bfd_get_flavour (ibfd) != bfd_target_mach_o_flavour
724 || bfd_get_flavour (obfd) != bfd_target_mach_o_flavour)
725 return TRUE;
726
3af9a47b
NC
727 BFD_ASSERT (bfd_mach_o_valid (ibfd));
728 BFD_ASSERT (bfd_mach_o_valid (obfd));
729
c9ffd2ea
TG
730 imdata = bfd_mach_o_get_data (ibfd);
731 omdata = bfd_mach_o_get_data (obfd);
732
733 /* Copy header flags. */
734 omdata->header.flags = imdata->header.flags;
735
c6643fcc
NC
736 /* PR 23299. Copy the cputype. */
737 if (imdata->header.cputype != omdata->header.cputype)
738 {
739 if (omdata->header.cputype == 0)
740 omdata->header.cputype = imdata->header.cputype;
741 else if (imdata->header.cputype != 0)
742 /* Urg - what has happened ? */
743 _bfd_error_handler (_("incompatible cputypes in mach-o files: %ld vs %ld"),
744 (long) imdata->header.cputype,
745 (long) omdata->header.cputype);
746 }
747
748 /* Copy the cpusubtype. */
749 omdata->header.cpusubtype = imdata->header.cpusubtype;
750
c9ffd2ea
TG
751 /* Copy commands. */
752 for (icmd = imdata->first_command; icmd != NULL; icmd = icmd->next)
753 {
754 bfd_mach_o_load_command *ocmd;
755
756 switch (icmd->type)
757 {
758 case BFD_MACH_O_LC_LOAD_DYLIB:
759 case BFD_MACH_O_LC_LOAD_DYLINKER:
760 case BFD_MACH_O_LC_DYLD_INFO:
761 /* Command is copied. */
762 ocmd = bfd_alloc (obfd, sizeof (bfd_mach_o_load_command));
763 if (ocmd == NULL)
764 return FALSE;
765
766 /* Copy common fields. */
767 ocmd->type = icmd->type;
768 ocmd->type_required = icmd->type_required;
769 ocmd->offset = 0;
770 ocmd->len = icmd->len;
771 break;
772
773 default:
774 /* Command is not copied. */
775 continue;
776 break;
777 }
778
779 switch (icmd->type)
780 {
781 case BFD_MACH_O_LC_LOAD_DYLIB:
782 {
783 bfd_mach_o_dylib_command *idy = &icmd->command.dylib;
784 bfd_mach_o_dylib_command *ody = &ocmd->command.dylib;
785
786 ody->name_offset = idy->name_offset;
787 ody->timestamp = idy->timestamp;
788 ody->current_version = idy->current_version;
789 ody->compatibility_version = idy->compatibility_version;
790 ody->name_str = idy->name_str;
791 }
792 break;
793
794 case BFD_MACH_O_LC_LOAD_DYLINKER:
795 {
796 bfd_mach_o_dylinker_command *idy = &icmd->command.dylinker;
797 bfd_mach_o_dylinker_command *ody = &ocmd->command.dylinker;
798
799 ody->name_offset = idy->name_offset;
800 ody->name_str = idy->name_str;
801 }
802 break;
803
804 case BFD_MACH_O_LC_DYLD_INFO:
805 {
806 bfd_mach_o_dyld_info_command *idy = &icmd->command.dyld_info;
807 bfd_mach_o_dyld_info_command *ody = &ocmd->command.dyld_info;
808
809 if (bfd_mach_o_read_dyld_content (ibfd, idy))
810 {
811 ody->rebase_size = idy->rebase_size;
812 ody->rebase_content = idy->rebase_content;
813
814 ody->bind_size = idy->bind_size;
815 ody->bind_content = idy->bind_content;
816
817 ody->weak_bind_size = idy->weak_bind_size;
818 ody->weak_bind_content = idy->weak_bind_content;
819
820 ody->lazy_bind_size = idy->lazy_bind_size;
821 ody->lazy_bind_content = idy->lazy_bind_content;
822
823 ody->export_size = idy->export_size;
824 ody->export_content = idy->export_content;
825 }
86eafac0
NC
826 /* PR 17512L: file: 730e492d. */
827 else
828 {
1b786873
L
829 ody->rebase_size =
830 ody->bind_size =
831 ody->weak_bind_size =
832 ody->lazy_bind_size =
86eafac0 833 ody->export_size = 0;
1b786873
L
834 ody->rebase_content =
835 ody->bind_content =
836 ody->weak_bind_content =
837 ody->lazy_bind_content =
86eafac0
NC
838 ody->export_content = NULL;
839 }
c9ffd2ea
TG
840 }
841 break;
842
843 default:
844 /* That command should be handled. */
845 abort ();
846 }
847
848 /* Insert command. */
849 bfd_mach_o_append_command (obfd, ocmd);
850 }
154a1ee5 851
b34976b6 852 return TRUE;
3af9a47b
NC
853}
854
0c9ef0f0
TG
855/* This allows us to set up to 32 bits of flags (unless we invent some
856 fiendish scheme to subdivide). For now, we'll just set the file flags
857 without error checking - just overwrite. */
68ffbac6 858
0c9ef0f0
TG
859bfd_boolean
860bfd_mach_o_bfd_set_private_flags (bfd *abfd, flagword flags)
861{
862 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
863
864 if (!mdata)
865 return FALSE;
866
867 mdata->header.flags = flags;
868 return TRUE;
869}
870
046b007d 871/* Count the total number of symbols. */
154a1ee5 872
3af9a47b 873static long
116c20d2 874bfd_mach_o_count_symbols (bfd *abfd)
3af9a47b 875{
046b007d 876 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b 877
046b007d
TG
878 if (mdata->symtab == NULL)
879 return 0;
880 return mdata->symtab->nsyms;
3af9a47b
NC
881}
882
154a1ee5 883long
116c20d2 884bfd_mach_o_get_symtab_upper_bound (bfd *abfd)
3af9a47b
NC
885{
886 long nsyms = bfd_mach_o_count_symbols (abfd);
887
3af9a47b
NC
888 return ((nsyms + 1) * sizeof (asymbol *));
889}
890
154a1ee5 891long
116c20d2 892bfd_mach_o_canonicalize_symtab (bfd *abfd, asymbol **alocation)
3af9a47b 893{
046b007d 894 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b 895 long nsyms = bfd_mach_o_count_symbols (abfd);
046b007d
TG
896 bfd_mach_o_symtab_command *sym = mdata->symtab;
897 unsigned long j;
3af9a47b
NC
898
899 if (nsyms < 0)
900 return nsyms;
901
092d27ff
TG
902 if (nsyms == 0)
903 {
904 /* Do not try to read symbols if there are none. */
905 alocation[0] = NULL;
906 return 0;
907 }
908
afbb9e17 909 if (!bfd_mach_o_read_symtab_symbols (abfd))
3af9a47b 910 {
4eca0228 911 _bfd_error_handler
07d6d2b8 912 (_("bfd_mach_o_canonicalize_symtab: unable to load symbols"));
046b007d
TG
913 return 0;
914 }
3af9a47b 915
046b007d 916 BFD_ASSERT (sym->symbols != NULL);
3af9a47b 917
046b007d
TG
918 for (j = 0; j < sym->nsyms; j++)
919 alocation[j] = &sym->symbols[j].symbol;
3af9a47b 920
046b007d 921 alocation[j] = NULL;
a95a4550 922
3af9a47b
NC
923 return nsyms;
924}
925
aeefa1c9
TG
926/* Create synthetic symbols for indirect symbols. */
927
b2b62060
TG
928long
929bfd_mach_o_get_synthetic_symtab (bfd *abfd,
07d6d2b8
AM
930 long symcount ATTRIBUTE_UNUSED,
931 asymbol **syms ATTRIBUTE_UNUSED,
932 long dynsymcount ATTRIBUTE_UNUSED,
933 asymbol **dynsyms ATTRIBUTE_UNUSED,
934 asymbol **ret)
b2b62060
TG
935{
936 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
937 bfd_mach_o_dysymtab_command *dysymtab = mdata->dysymtab;
938 bfd_mach_o_symtab_command *symtab = mdata->symtab;
939 asymbol *s;
896ca098
NC
940 char * s_start;
941 char * s_end;
b2b62060
TG
942 unsigned long count, i, j, n;
943 size_t size;
944 char *names;
945 char *nul_name;
896ca098 946 const char stub [] = "$stub";
b2b62060
TG
947
948 *ret = NULL;
949
aeefa1c9 950 /* Stop now if no symbols or no indirect symbols. */
896ca098
NC
951 if (dysymtab == NULL || dysymtab->nindirectsyms == 0
952 || symtab == NULL || symtab->symbols == NULL)
b2b62060
TG
953 return 0;
954
aeefa1c9
TG
955 /* We need to allocate a bfd symbol for every indirect symbol and to
956 allocate the memory for its name. */
b2b62060
TG
957 count = dysymtab->nindirectsyms;
958 size = count * sizeof (asymbol) + 1;
959
960 for (j = 0; j < count; j++)
961 {
896ca098 962 const char * strng;
b2b62060 963 unsigned int isym = dysymtab->indirect_syms[j];
aeefa1c9
TG
964
965 /* Some indirect symbols are anonymous. */
896ca098
NC
966 if (isym < symtab->nsyms && (strng = symtab->symbols[isym].symbol.name))
967 /* PR 17512: file: f5b8eeba. */
968 size += strnlen (strng, symtab->strsize - (strng - symtab->strtab)) + sizeof (stub);
b2b62060
TG
969 }
970
896ca098
NC
971 s_start = bfd_malloc (size);
972 s = *ret = (asymbol *) s_start;
b2b62060
TG
973 if (s == NULL)
974 return -1;
975 names = (char *) (s + count);
976 nul_name = names;
977 *names++ = 0;
896ca098 978 s_end = s_start + size;
68ffbac6 979
b2b62060
TG
980 n = 0;
981 for (i = 0; i < mdata->nsects; i++)
982 {
983 bfd_mach_o_section *sec = mdata->sections[i];
91d6fa6a 984 unsigned int first, last;
b2b62060
TG
985 bfd_vma addr;
986 bfd_vma entry_size;
68ffbac6 987
b2b62060 988 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
07d6d2b8
AM
989 {
990 case BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS:
991 case BFD_MACH_O_S_LAZY_SYMBOL_POINTERS:
992 case BFD_MACH_O_S_SYMBOL_STUBS:
993 /* Only these sections have indirect symbols. */
994 first = sec->reserved1;
995 last = first + bfd_mach_o_section_get_nbr_indirect (abfd, sec);
996 addr = sec->addr;
997 entry_size = bfd_mach_o_section_get_entry_size (abfd, sec);
896ca098
NC
998
999 /* PR 17512: file: 08e15eec. */
1000 if (first >= count || last >= count || first > last)
1001 goto fail;
1002
07d6d2b8
AM
1003 for (j = first; j < last; j++)
1004 {
1005 unsigned int isym = dysymtab->indirect_syms[j];
b2b62060 1006
896ca098
NC
1007 /* PR 17512: file: 04d64d9b. */
1008 if (((char *) s) + sizeof (* s) > s_end)
1009 goto fail;
1010
07d6d2b8
AM
1011 s->flags = BSF_GLOBAL | BSF_SYNTHETIC;
1012 s->section = sec->bfdsection;
1013 s->value = addr - sec->addr;
1014 s->udata.p = NULL;
68ffbac6 1015
07d6d2b8
AM
1016 if (isym < symtab->nsyms
1017 && symtab->symbols[isym].symbol.name)
1018 {
1019 const char *sym = symtab->symbols[isym].symbol.name;
1020 size_t len;
b2b62060 1021
07d6d2b8
AM
1022 s->name = names;
1023 len = strlen (sym);
896ca098
NC
1024 /* PR 17512: file: 47dfd4d2. */
1025 if (names + len >= s_end)
1026 goto fail;
07d6d2b8
AM
1027 memcpy (names, sym, len);
1028 names += len;
896ca098
NC
1029 /* PR 17512: file: 18f340a4. */
1030 if (names + sizeof (stub) >= s_end)
1031 goto fail;
07d6d2b8
AM
1032 memcpy (names, stub, sizeof (stub));
1033 names += sizeof (stub);
1034 }
1035 else
1036 s->name = nul_name;
1037
1038 addr += entry_size;
1039 s++;
1040 n++;
1041 }
1042 break;
1043 default:
1044 break;
1045 }
b2b62060
TG
1046 }
1047
1048 return n;
896ca098
NC
1049
1050 fail:
1051 free (s_start);
1052 * ret = NULL;
1053 return -1;
b2b62060
TG
1054}
1055
154a1ee5 1056void
116c20d2
NC
1057bfd_mach_o_get_symbol_info (bfd *abfd ATTRIBUTE_UNUSED,
1058 asymbol *symbol,
1059 symbol_info *ret)
3af9a47b
NC
1060{
1061 bfd_symbol_info (symbol, ret);
1062}
1063
154a1ee5 1064void
116c20d2 1065bfd_mach_o_print_symbol (bfd *abfd,
91d6fa6a 1066 void * afile,
116c20d2
NC
1067 asymbol *symbol,
1068 bfd_print_symbol_type how)
3af9a47b
NC
1069{
1070 FILE *file = (FILE *) afile;
15e1c58a 1071 const char *name;
92bc0e80 1072 bfd_mach_o_asymbol *asym = (bfd_mach_o_asymbol *)symbol;
3af9a47b
NC
1073
1074 switch (how)
1075 {
1076 case bfd_print_symbol_name:
1077 fprintf (file, "%s", symbol->name);
1078 break;
1079 default:
91d6fa6a 1080 bfd_print_symbol_vandf (abfd, (void *) file, symbol);
92bc0e80
TG
1081 if (asym->n_type & BFD_MACH_O_N_STAB)
1082 name = bfd_get_stab_name (asym->n_type);
15e1c58a 1083 else
92bc0e80 1084 switch (asym->n_type & BFD_MACH_O_N_TYPE)
15e1c58a
TG
1085 {
1086 case BFD_MACH_O_N_UNDF:
07d6d2b8
AM
1087 if (symbol->value == 0)
1088 name = "UND";
1089 else
1090 name = "COM";
15e1c58a
TG
1091 break;
1092 case BFD_MACH_O_N_ABS:
1093 name = "ABS";
1094 break;
1095 case BFD_MACH_O_N_INDR:
1096 name = "INDR";
1097 break;
1098 case BFD_MACH_O_N_PBUD:
1099 name = "PBUD";
1100 break;
1101 case BFD_MACH_O_N_SECT:
1102 name = "SECT";
1103 break;
1104 default:
1105 name = "???";
1106 break;
1107 }
1108 if (name == NULL)
1109 name = "";
92bc0e80 1110 fprintf (file, " %02x %-6s %02x %04x",
07d6d2b8 1111 asym->n_type, name, asym->n_sect, asym->n_desc);
92bc0e80
TG
1112 if ((asym->n_type & BFD_MACH_O_N_STAB) == 0
1113 && (asym->n_type & BFD_MACH_O_N_TYPE) == BFD_MACH_O_N_SECT)
e0ce1005 1114 fprintf (file, " [%s]", symbol->section->name);
15e1c58a 1115 fprintf (file, " %s", symbol->name);
3af9a47b
NC
1116 }
1117}
1118
1119static void
116c20d2 1120bfd_mach_o_convert_architecture (bfd_mach_o_cpu_type mtype,
0b2de107 1121 bfd_mach_o_cpu_subtype msubtype,
116c20d2
NC
1122 enum bfd_architecture *type,
1123 unsigned long *subtype)
3af9a47b
NC
1124{
1125 *subtype = bfd_arch_unknown;
1126
1127 switch (mtype)
1128 {
0b2de107
TG
1129 case BFD_MACH_O_CPU_TYPE_VAX:
1130 *type = bfd_arch_vax;
1131 break;
1132 case BFD_MACH_O_CPU_TYPE_MC680x0:
1133 *type = bfd_arch_m68k;
1134 break;
1e8a024a
TG
1135 case BFD_MACH_O_CPU_TYPE_I386:
1136 *type = bfd_arch_i386;
1137 *subtype = bfd_mach_i386_i386;
1138 break;
1139 case BFD_MACH_O_CPU_TYPE_X86_64:
1140 *type = bfd_arch_i386;
1141 *subtype = bfd_mach_x86_64;
1142 break;
0b2de107
TG
1143 case BFD_MACH_O_CPU_TYPE_MIPS:
1144 *type = bfd_arch_mips;
1145 break;
1146 case BFD_MACH_O_CPU_TYPE_MC98000:
1147 *type = bfd_arch_m98k;
1148 break;
1149 case BFD_MACH_O_CPU_TYPE_HPPA:
1150 *type = bfd_arch_hppa;
1151 break;
1152 case BFD_MACH_O_CPU_TYPE_ARM:
1153 *type = bfd_arch_arm;
1154 switch (msubtype)
07d6d2b8
AM
1155 {
1156 case BFD_MACH_O_CPU_SUBTYPE_ARM_V4T:
1157 *subtype = bfd_mach_arm_4T;
1158 break;
1159 case BFD_MACH_O_CPU_SUBTYPE_ARM_V6:
1160 *subtype = bfd_mach_arm_4T; /* Best fit ? */
1161 break;
1162 case BFD_MACH_O_CPU_SUBTYPE_ARM_V5TEJ:
1163 *subtype = bfd_mach_arm_5TE;
1164 break;
1165 case BFD_MACH_O_CPU_SUBTYPE_ARM_XSCALE:
1166 *subtype = bfd_mach_arm_XScale;
1167 break;
1168 case BFD_MACH_O_CPU_SUBTYPE_ARM_V7:
1169 *subtype = bfd_mach_arm_5TE; /* Best fit ? */
1170 break;
1171 case BFD_MACH_O_CPU_SUBTYPE_ARM_ALL:
1172 default:
1173 break;
1174 }
0b2de107 1175 break;
1e8a024a
TG
1176 case BFD_MACH_O_CPU_TYPE_SPARC:
1177 *type = bfd_arch_sparc;
1178 *subtype = bfd_mach_sparc;
1179 break;
0b2de107
TG
1180 case BFD_MACH_O_CPU_TYPE_ALPHA:
1181 *type = bfd_arch_alpha;
1182 break;
1e8a024a
TG
1183 case BFD_MACH_O_CPU_TYPE_POWERPC:
1184 *type = bfd_arch_powerpc;
c2f09c75 1185 *subtype = bfd_mach_ppc;
1e8a024a
TG
1186 break;
1187 case BFD_MACH_O_CPU_TYPE_POWERPC_64:
1188 *type = bfd_arch_powerpc;
c2f09c75 1189 *subtype = bfd_mach_ppc64;
1e8a024a 1190 break;
d8028530
TG
1191 case BFD_MACH_O_CPU_TYPE_ARM64:
1192 *type = bfd_arch_aarch64;
1193 *subtype = bfd_mach_aarch64;
1194 break;
3af9a47b 1195 default:
1e8a024a
TG
1196 *type = bfd_arch_unknown;
1197 break;
3af9a47b
NC
1198 }
1199}
a95a4550 1200
c9ffd2ea
TG
1201/* Write n NUL bytes to ABFD so that LEN + n is a multiple of 4. Return the
1202 number of bytes written or -1 in case of error. */
1203
1204static int
1205bfd_mach_o_pad4 (bfd *abfd, unsigned int len)
1206{
1207 if (len % 4 != 0)
1208 {
1209 char pad[4] = {0,0,0,0};
1210 unsigned int padlen = 4 - (len % 4);
1211
1212 if (bfd_bwrite (pad, padlen, abfd) != padlen)
1213 return -1;
1214
1215 return padlen;
1216 }
1217 else
1218 return 0;
1219}
1220
1221/* Likewise, but for a command. */
1222
1223static int
1224bfd_mach_o_pad_command (bfd *abfd, unsigned int len)
1225{
1226 unsigned int align = bfd_mach_o_wide_p (abfd) ? 8 : 4;
1227
1228 if (len % align != 0)
1229 {
1230 char pad[8] = {0};
1231 unsigned int padlen = align - (len % align);
1232
1233 if (bfd_bwrite (pad, padlen, abfd) != padlen)
1234 return -1;
1235
1236 return padlen;
1237 }
1238 else
1239 return 0;
1240}
1241
154a1ee5 1242static bfd_boolean
116c20d2
NC
1243bfd_mach_o_write_header (bfd *abfd, bfd_mach_o_header *header)
1244{
46d1c23b 1245 struct mach_o_header_external raw;
1e8a024a
TG
1246 unsigned int size;
1247
c2f09c75 1248 size = mach_o_wide_p (header) ?
154a1ee5 1249 BFD_MACH_O_HEADER_64_SIZE : BFD_MACH_O_HEADER_SIZE;
116c20d2 1250
46d1c23b
TG
1251 bfd_h_put_32 (abfd, header->magic, raw.magic);
1252 bfd_h_put_32 (abfd, header->cputype, raw.cputype);
1253 bfd_h_put_32 (abfd, header->cpusubtype, raw.cpusubtype);
1254 bfd_h_put_32 (abfd, header->filetype, raw.filetype);
1255 bfd_h_put_32 (abfd, header->ncmds, raw.ncmds);
1256 bfd_h_put_32 (abfd, header->sizeofcmds, raw.sizeofcmds);
1257 bfd_h_put_32 (abfd, header->flags, raw.flags);
116c20d2 1258
c2f09c75 1259 if (mach_o_wide_p (header))
46d1c23b 1260 bfd_h_put_32 (abfd, header->reserved, raw.reserved);
1e8a024a 1261
c2f09c75 1262 if (bfd_seek (abfd, 0, SEEK_SET) != 0
46d1c23b 1263 || bfd_bwrite (&raw, size, abfd) != size)
154a1ee5 1264 return FALSE;
116c20d2 1265
154a1ee5 1266 return TRUE;
116c20d2
NC
1267}
1268
452216ab 1269static bfd_boolean
ab273af8 1270bfd_mach_o_write_thread (bfd *abfd, bfd_mach_o_load_command *command)
116c20d2
NC
1271{
1272 bfd_mach_o_thread_command *cmd = &command->command.thread;
1273 unsigned int i;
46d1c23b 1274 struct mach_o_thread_command_external raw;
92bc0e80 1275 unsigned int offset;
116c20d2
NC
1276
1277 BFD_ASSERT ((command->type == BFD_MACH_O_LC_THREAD)
1278 || (command->type == BFD_MACH_O_LC_UNIXTHREAD));
1279
c9ffd2ea 1280 offset = BFD_MACH_O_LC_SIZE;
116c20d2
NC
1281 for (i = 0; i < cmd->nflavours; i++)
1282 {
1283 BFD_ASSERT ((cmd->flavours[i].size % 4) == 0);
46d1c23b 1284 BFD_ASSERT (cmd->flavours[i].offset ==
07d6d2b8 1285 (command->offset + offset + BFD_MACH_O_LC_SIZE));
116c20d2 1286
46d1c23b
TG
1287 bfd_h_put_32 (abfd, cmd->flavours[i].flavour, raw.flavour);
1288 bfd_h_put_32 (abfd, (cmd->flavours[i].size / 4), raw.count);
116c20d2 1289
c2f09c75 1290 if (bfd_seek (abfd, command->offset + offset, SEEK_SET) != 0
07d6d2b8 1291 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 1292 return FALSE;
116c20d2 1293
46d1c23b 1294 offset += cmd->flavours[i].size + sizeof (raw);
116c20d2
NC
1295 }
1296
452216ab 1297 return TRUE;
116c20d2
NC
1298}
1299
c9ffd2ea
TG
1300static bfd_boolean
1301bfd_mach_o_write_dylinker (bfd *abfd, bfd_mach_o_load_command *command)
1302{
1303 bfd_mach_o_dylinker_command *cmd = &command->command.dylinker;
1304 struct mach_o_str_command_external raw;
1305 unsigned int namelen;
1306
1307 bfd_h_put_32 (abfd, cmd->name_offset, raw.str);
1308
1309 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1310 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
1311 return FALSE;
1312
1313 namelen = strlen (cmd->name_str) + 1;
1314 if (bfd_bwrite (cmd->name_str, namelen, abfd) != namelen)
1315 return FALSE;
1316
1317 if (bfd_mach_o_pad_command (abfd, namelen) < 0)
1318 return FALSE;
1319
1320 return TRUE;
1321}
1322
1323static bfd_boolean
1324bfd_mach_o_write_dylib (bfd *abfd, bfd_mach_o_load_command *command)
1325{
1326 bfd_mach_o_dylib_command *cmd = &command->command.dylib;
1327 struct mach_o_dylib_command_external raw;
1328 unsigned int namelen;
1329
1330 bfd_h_put_32 (abfd, cmd->name_offset, raw.name);
1331 bfd_h_put_32 (abfd, cmd->timestamp, raw.timestamp);
1332 bfd_h_put_32 (abfd, cmd->current_version, raw.current_version);
1333 bfd_h_put_32 (abfd, cmd->compatibility_version, raw.compatibility_version);
1334
1335 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1336 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
1337 return FALSE;
1338
1339 namelen = strlen (cmd->name_str) + 1;
1340 if (bfd_bwrite (cmd->name_str, namelen, abfd) != namelen)
1341 return FALSE;
1342
1343 if (bfd_mach_o_pad_command (abfd, namelen) < 0)
1344 return FALSE;
1345
1346 return TRUE;
1347}
1348
1349static bfd_boolean
1350bfd_mach_o_write_main (bfd *abfd, bfd_mach_o_load_command *command)
1351{
1352 bfd_mach_o_main_command *cmd = &command->command.main;
1353 struct mach_o_entry_point_command_external raw;
1354
1355 bfd_h_put_64 (abfd, cmd->entryoff, raw.entryoff);
1356 bfd_h_put_64 (abfd, cmd->stacksize, raw.stacksize);
1357
1358 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1359 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
1360 return FALSE;
1361
1362 return TRUE;
1363}
1364
1365static bfd_boolean
1366bfd_mach_o_write_dyld_info (bfd *abfd, bfd_mach_o_load_command *command)
1367{
1368 bfd_mach_o_dyld_info_command *cmd = &command->command.dyld_info;
1369 struct mach_o_dyld_info_command_external raw;
1370
1371 bfd_h_put_32 (abfd, cmd->rebase_off, raw.rebase_off);
1372 bfd_h_put_32 (abfd, cmd->rebase_size, raw.rebase_size);
1373 bfd_h_put_32 (abfd, cmd->bind_off, raw.bind_off);
1374 bfd_h_put_32 (abfd, cmd->bind_size, raw.bind_size);
1375 bfd_h_put_32 (abfd, cmd->weak_bind_off, raw.weak_bind_off);
1376 bfd_h_put_32 (abfd, cmd->weak_bind_size, raw.weak_bind_size);
1377 bfd_h_put_32 (abfd, cmd->lazy_bind_off, raw.lazy_bind_off);
1378 bfd_h_put_32 (abfd, cmd->lazy_bind_size, raw.lazy_bind_size);
1379 bfd_h_put_32 (abfd, cmd->export_off, raw.export_off);
1380 bfd_h_put_32 (abfd, cmd->export_size, raw.export_size);
1381
1382 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1383 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
1384 return FALSE;
1385
1386 if (cmd->rebase_size != 0)
1387 if (bfd_seek (abfd, cmd->rebase_off, SEEK_SET) != 0
1388 || (bfd_bwrite (cmd->rebase_content, cmd->rebase_size, abfd) !=
1389 cmd->rebase_size))
1390 return FALSE;
1391
1392 if (cmd->bind_size != 0)
1393 if (bfd_seek (abfd, cmd->bind_off, SEEK_SET) != 0
1394 || (bfd_bwrite (cmd->bind_content, cmd->bind_size, abfd) !=
1395 cmd->bind_size))
1396 return FALSE;
1397
1398 if (cmd->weak_bind_size != 0)
1399 if (bfd_seek (abfd, cmd->weak_bind_off, SEEK_SET) != 0
1400 || (bfd_bwrite (cmd->weak_bind_content, cmd->weak_bind_size, abfd) !=
1401 cmd->weak_bind_size))
1402 return FALSE;
1403
1404 if (cmd->lazy_bind_size != 0)
1405 if (bfd_seek (abfd, cmd->lazy_bind_off, SEEK_SET) != 0
1406 || (bfd_bwrite (cmd->lazy_bind_content, cmd->lazy_bind_size, abfd) !=
1407 cmd->lazy_bind_size))
1408 return FALSE;
1409
1410 if (cmd->export_size != 0)
1411 if (bfd_seek (abfd, cmd->export_off, SEEK_SET) != 0
1412 || (bfd_bwrite (cmd->export_content, cmd->export_size, abfd) !=
1413 cmd->export_size))
1414 return FALSE;
1415
1416 return TRUE;
1417}
1418
92bc0e80
TG
1419long
1420bfd_mach_o_get_reloc_upper_bound (bfd *abfd ATTRIBUTE_UNUSED,
07d6d2b8 1421 asection *asect)
92bc0e80
TG
1422{
1423 return (asect->reloc_count + 1) * sizeof (arelent *);
1424}
1425
19765f52
IS
1426/* In addition to the need to byte-swap the symbol number, the bit positions
1427 of the fields in the relocation information vary per target endian-ness. */
1428
bcb51645 1429void
19765f52 1430bfd_mach_o_swap_in_non_scattered_reloc (bfd *abfd, bfd_mach_o_reloc_info *rel,
c6643fcc 1431 unsigned char *fields)
19765f52
IS
1432{
1433 unsigned char info = fields[3];
1434
1435 if (bfd_big_endian (abfd))
1436 {
1437 rel->r_value = (fields[0] << 16) | (fields[1] << 8) | fields[2];
1438 rel->r_type = (info >> BFD_MACH_O_BE_TYPE_SHIFT) & BFD_MACH_O_TYPE_MASK;
1439 rel->r_pcrel = (info & BFD_MACH_O_BE_PCREL) ? 1 : 0;
68ffbac6 1440 rel->r_length = (info >> BFD_MACH_O_BE_LENGTH_SHIFT)
19765f52
IS
1441 & BFD_MACH_O_LENGTH_MASK;
1442 rel->r_extern = (info & BFD_MACH_O_BE_EXTERN) ? 1 : 0;
1443 }
1444 else
1445 {
1446 rel->r_value = (fields[2] << 16) | (fields[1] << 8) | fields[0];
1447 rel->r_type = (info >> BFD_MACH_O_LE_TYPE_SHIFT) & BFD_MACH_O_TYPE_MASK;
1448 rel->r_pcrel = (info & BFD_MACH_O_LE_PCREL) ? 1 : 0;
68ffbac6 1449 rel->r_length = (info >> BFD_MACH_O_LE_LENGTH_SHIFT)
19765f52
IS
1450 & BFD_MACH_O_LENGTH_MASK;
1451 rel->r_extern = (info & BFD_MACH_O_LE_EXTERN) ? 1 : 0;
1452 }
1453}
1454
bcb51645
TG
1455/* Set syms_ptr_ptr and addend of RES. */
1456
1457bfd_boolean
1458bfd_mach_o_canonicalize_non_scattered_reloc (bfd *abfd,
1459 bfd_mach_o_reloc_info *reloc,
1460 arelent *res, asymbol **syms)
92bc0e80 1461{
046b007d 1462 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
bcb51645 1463 unsigned int num;
b32e07d7
TG
1464 asymbol **sym;
1465
bcb51645
TG
1466 /* Non-scattered relocation. */
1467 reloc->r_scattered = 0;
1468 res->addend = 0;
1469
1470 num = reloc->r_value;
1471
1472 if (reloc->r_extern)
1473 {
1474 /* PR 17512: file: 8396-1185-0.004. */
1475 if (num >= (unsigned) bfd_mach_o_count_symbols (abfd))
1476 sym = bfd_und_section_ptr->symbol_ptr_ptr;
1477 else if (syms == NULL)
1478 sym = bfd_und_section_ptr->symbol_ptr_ptr;
1479 else
1480 /* An external symbol number. */
1481 sym = syms + num;
1482 }
1483 else if (num == 0x00ffffff || num == 0)
1484 {
1485 /* The 'symnum' in a non-scattered PAIR is 0x00ffffff. But as this
1486 is generic code, we don't know wether this is really a PAIR.
1487 This value is almost certainly not a valid section number, hence
1488 this specific case to avoid an assertion failure.
1489 Target specific swap_reloc_in routine should adjust that. */
1490 sym = bfd_abs_section_ptr->symbol_ptr_ptr;
1491 }
1492 else
1493 {
1494 /* PR 17512: file: 006-2964-0.004. */
1495 if (num > mdata->nsects)
1496 return FALSE;
1497
1498 /* A section number. */
1499 sym = mdata->sections[num - 1]->bfdsection->symbol_ptr_ptr;
1500 /* For a symbol defined in section S, the addend (stored in the
1501 binary) contains the address of the section. To comply with
1502 bfd convention, subtract the section address.
1503 Use the address from the header, so that the user can modify
07d6d2b8 1504 the vma of the section. */
bcb51645
TG
1505 res->addend = -mdata->sections[num - 1]->addr;
1506 }
1507
1508 /* Note: Pairs for PPC LO/HI/HA are not scattered, but contain the offset
1509 in the lower 16bits of the address value. So we have to find the
1510 'symbol' from the preceding reloc. We do this even though the
1511 section symbol is probably not needed here, because NULL symbol
1512 values cause an assert in generic BFD code. This must be done in
1513 the PPC swap_reloc_in routine. */
1514 res->sym_ptr_ptr = sym;
1515
1516 return TRUE;
1517}
1518
1519/* Do most of the work for canonicalize_relocs on RAW: create internal
1520 representation RELOC and set most fields of RES using symbol table SYMS.
1521 Each target still has to set the howto of RES and possibly adjust other
1522 fields.
1523 Previously the Mach-O hook point was simply swap_in, but some targets
1524 (like arm64) don't follow the generic rules (symnum is a value for the
1525 non-scattered relocation ADDEND). */
1526
1527bfd_boolean
1528bfd_mach_o_pre_canonicalize_one_reloc (bfd *abfd,
1529 struct mach_o_reloc_info_external *raw,
1530 bfd_mach_o_reloc_info *reloc,
1531 arelent *res, asymbol **syms)
1532{
1533 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
1534 bfd_vma addr;
1535
46d1c23b 1536 addr = bfd_get_32 (abfd, raw->r_address);
19765f52
IS
1537 res->sym_ptr_ptr = NULL;
1538 res->addend = 0;
f4716ee2 1539
b32e07d7
TG
1540 if (addr & BFD_MACH_O_SR_SCATTERED)
1541 {
1542 unsigned int j;
19765f52 1543 bfd_vma symnum = bfd_get_32 (abfd, raw->r_symbolnum);
b32e07d7 1544
19765f52 1545 /* Scattered relocation, can't be extern. */
bcb51645
TG
1546 reloc->r_scattered = 1;
1547 reloc->r_extern = 0;
19765f52
IS
1548
1549 /* Extract section and offset from r_value (symnum). */
bcb51645 1550 reloc->r_value = symnum;
19765f52
IS
1551 /* FIXME: This breaks when a symbol in a reloc exactly follows the
1552 end of the data for the section (e.g. in a calculation of section
1553 data length). At present, the symbol will end up associated with
1554 the following section or, if it falls within alignment padding, as
1555 null - which will assert later. */
b32e07d7 1556 for (j = 0; j < mdata->nsects; j++)
07d6d2b8
AM
1557 {
1558 bfd_mach_o_section *sect = mdata->sections[j];
1559 if (symnum >= sect->addr && symnum < sect->addr + sect->size)
1560 {
1561 res->sym_ptr_ptr = sect->bfdsection->symbol_ptr_ptr;
1562 res->addend = symnum - sect->addr;
1563 break;
1564 }
1565 }
19765f52
IS
1566
1567 /* Extract the info and address fields from r_address. */
bcb51645
TG
1568 reloc->r_type = BFD_MACH_O_GET_SR_TYPE (addr);
1569 reloc->r_length = BFD_MACH_O_GET_SR_LENGTH (addr);
1570 reloc->r_pcrel = addr & BFD_MACH_O_SR_PCREL;
1571 reloc->r_address = BFD_MACH_O_GET_SR_TYPE (addr);
19765f52 1572 res->address = BFD_MACH_O_GET_SR_ADDRESS (addr);
b32e07d7
TG
1573 }
1574 else
1575 {
19765f52 1576 /* Non-scattered relocation. */
bcb51645
TG
1577 reloc->r_scattered = 0;
1578 reloc->r_address = addr;
1579 res->address = addr;
f4716ee2 1580
19765f52 1581 /* The value and info fields have to be extracted dependent on target
07d6d2b8 1582 endian-ness. */
bcb51645 1583 bfd_mach_o_swap_in_non_scattered_reloc (abfd, reloc, raw->r_symbolnum);
19765f52 1584
bcb51645
TG
1585 if (!bfd_mach_o_canonicalize_non_scattered_reloc (abfd, reloc,
1586 res, syms))
1587 return FALSE;
b32e07d7 1588 }
f4716ee2
TG
1589
1590 /* We have set up a reloc with all the information present, so the swapper
1591 can modify address, value and addend fields, if necessary, to convey
1592 information in the generic BFD reloc that is mach-o specific. */
19765f52 1593
bcb51645 1594 return TRUE;
b32e07d7
TG
1595}
1596
1597static int
1598bfd_mach_o_canonicalize_relocs (bfd *abfd, unsigned long filepos,
07d6d2b8
AM
1599 unsigned long count,
1600 arelent *res, asymbol **syms)
b32e07d7 1601{
bcb51645 1602 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
92bc0e80 1603 unsigned long i;
46d1c23b 1604 struct mach_o_reloc_info_external *native_relocs;
92bc0e80
TG
1605 bfd_size_type native_size;
1606
92bc0e80 1607 /* Allocate and read relocs. */
b32e07d7 1608 native_size = count * BFD_MACH_O_RELENT_SIZE;
033539e2 1609
64d29018
NC
1610 /* PR 17512: file: 09477b57. */
1611 if (native_size < count)
1612 return -1;
1613
46d1c23b
TG
1614 native_relocs =
1615 (struct mach_o_reloc_info_external *) bfd_malloc (native_size);
92bc0e80
TG
1616 if (native_relocs == NULL)
1617 return -1;
1618
b32e07d7 1619 if (bfd_seek (abfd, filepos, SEEK_SET) != 0
92bc0e80 1620 || bfd_bread (native_relocs, native_size, abfd) != native_size)
b32e07d7
TG
1621 goto err;
1622
1623 for (i = 0; i < count; i++)
92bc0e80 1624 {
bcb51645 1625 if (!(*bed->_bfd_mach_o_canonicalize_one_reloc)(abfd, &native_relocs[i],
ca4cf9b9 1626 &res[i], syms, res))
07d6d2b8 1627 goto err;
92bc0e80 1628 }
b32e07d7
TG
1629 free (native_relocs);
1630 return i;
1631 err:
1632 free (native_relocs);
1633 return -1;
1634}
1635
1636long
1637bfd_mach_o_canonicalize_reloc (bfd *abfd, asection *asect,
07d6d2b8 1638 arelent **rels, asymbol **syms)
b32e07d7
TG
1639{
1640 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
1641 unsigned long i;
1642 arelent *res;
1643
1644 if (asect->reloc_count == 0)
1645 return 0;
1646
1647 /* No need to go further if we don't know how to read relocs. */
bcb51645 1648 if (bed->_bfd_mach_o_canonicalize_one_reloc == NULL)
b32e07d7 1649 return 0;
92bc0e80 1650
dff55db0 1651 if (asect->relocation == NULL)
92bc0e80 1652 {
64d29018
NC
1653 if (asect->reloc_count * sizeof (arelent) < asect->reloc_count)
1654 return -1;
dff55db0
TG
1655 res = bfd_malloc (asect->reloc_count * sizeof (arelent));
1656 if (res == NULL)
07d6d2b8 1657 return -1;
dff55db0
TG
1658
1659 if (bfd_mach_o_canonicalize_relocs (abfd, asect->rel_filepos,
07d6d2b8
AM
1660 asect->reloc_count, res, syms) < 0)
1661 {
1662 free (res);
1663 return -1;
1664 }
dff55db0 1665 asect->relocation = res;
92bc0e80
TG
1666 }
1667
dff55db0 1668 res = asect->relocation;
92bc0e80 1669 for (i = 0; i < asect->reloc_count; i++)
b32e07d7
TG
1670 rels[i] = &res[i];
1671 rels[i] = NULL;
92bc0e80 1672
b32e07d7
TG
1673 return i;
1674}
92bc0e80 1675
b32e07d7
TG
1676long
1677bfd_mach_o_get_dynamic_reloc_upper_bound (bfd *abfd)
1678{
1679 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
92bc0e80 1680
b32e07d7
TG
1681 if (mdata->dysymtab == NULL)
1682 return 1;
dff55db0 1683 return (mdata->dysymtab->nextrel + mdata->dysymtab->nlocrel + 1)
b32e07d7
TG
1684 * sizeof (arelent *);
1685}
92bc0e80 1686
b32e07d7
TG
1687long
1688bfd_mach_o_canonicalize_dynamic_reloc (bfd *abfd, arelent **rels,
07d6d2b8 1689 struct bfd_symbol **syms)
b32e07d7
TG
1690{
1691 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
1692 bfd_mach_o_dysymtab_command *dysymtab = mdata->dysymtab;
1693 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
1694 unsigned long i;
1695 arelent *res;
1696
1697 if (dysymtab == NULL)
1698 return 0;
1699 if (dysymtab->nextrel == 0 && dysymtab->nlocrel == 0)
1700 return 0;
1701
1702 /* No need to go further if we don't know how to read relocs. */
bcb51645 1703 if (bed->_bfd_mach_o_canonicalize_one_reloc == NULL)
b32e07d7
TG
1704 return 0;
1705
dff55db0 1706 if (mdata->dyn_reloc_cache == NULL)
b32e07d7 1707 {
64d29018
NC
1708 if ((dysymtab->nextrel + dysymtab->nlocrel) * sizeof (arelent)
1709 < (dysymtab->nextrel + dysymtab->nlocrel))
1710 return -1;
1711
dff55db0 1712 res = bfd_malloc ((dysymtab->nextrel + dysymtab->nlocrel)
07d6d2b8 1713 * sizeof (arelent));
dff55db0 1714 if (res == NULL)
07d6d2b8 1715 return -1;
b32e07d7 1716
dff55db0 1717 if (bfd_mach_o_canonicalize_relocs (abfd, dysymtab->extreloff,
07d6d2b8
AM
1718 dysymtab->nextrel, res, syms) < 0)
1719 {
1720 free (res);
1721 return -1;
1722 }
dff55db0
TG
1723
1724 if (bfd_mach_o_canonicalize_relocs (abfd, dysymtab->locreloff,
07d6d2b8
AM
1725 dysymtab->nlocrel,
1726 res + dysymtab->nextrel, syms) < 0)
1727 {
1728 free (res);
1729 return -1;
1730 }
dff55db0
TG
1731
1732 mdata->dyn_reloc_cache = res;
b32e07d7
TG
1733 }
1734
dff55db0 1735 res = mdata->dyn_reloc_cache;
b32e07d7
TG
1736 for (i = 0; i < dysymtab->nextrel + dysymtab->nlocrel; i++)
1737 rels[i] = &res[i];
1738 rels[i] = NULL;
92bc0e80
TG
1739 return i;
1740}
1741
19765f52
IS
1742/* In addition to the need to byte-swap the symbol number, the bit positions
1743 of the fields in the relocation information vary per target endian-ness. */
1744
1745static void
1746bfd_mach_o_swap_out_non_scattered_reloc (bfd *abfd, unsigned char *fields,
c6643fcc 1747 bfd_mach_o_reloc_info *rel)
19765f52
IS
1748{
1749 unsigned char info = 0;
1750
1751 BFD_ASSERT (rel->r_type <= 15);
1752 BFD_ASSERT (rel->r_length <= 3);
1753
1754 if (bfd_big_endian (abfd))
1755 {
1756 fields[0] = (rel->r_value >> 16) & 0xff;
1757 fields[1] = (rel->r_value >> 8) & 0xff;
1758 fields[2] = rel->r_value & 0xff;
1759 info |= rel->r_type << BFD_MACH_O_BE_TYPE_SHIFT;
1760 info |= rel->r_pcrel ? BFD_MACH_O_BE_PCREL : 0;
1761 info |= rel->r_length << BFD_MACH_O_BE_LENGTH_SHIFT;
1762 info |= rel->r_extern ? BFD_MACH_O_BE_EXTERN : 0;
1763 }
1764 else
1765 {
1766 fields[2] = (rel->r_value >> 16) & 0xff;
1767 fields[1] = (rel->r_value >> 8) & 0xff;
1768 fields[0] = rel->r_value & 0xff;
1769 info |= rel->r_type << BFD_MACH_O_LE_TYPE_SHIFT;
1770 info |= rel->r_pcrel ? BFD_MACH_O_LE_PCREL : 0;
1771 info |= rel->r_length << BFD_MACH_O_LE_LENGTH_SHIFT;
1772 info |= rel->r_extern ? BFD_MACH_O_LE_EXTERN : 0;
1773 }
1774 fields[3] = info;
1775}
1776
92bc0e80 1777static bfd_boolean
ab273af8 1778bfd_mach_o_write_relocs (bfd *abfd, bfd_mach_o_section *section)
92bc0e80 1779{
92bc0e80
TG
1780 unsigned int i;
1781 arelent **entries;
1782 asection *sec;
1783 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
1784
1785 sec = section->bfdsection;
1786 if (sec->reloc_count == 0)
1787 return TRUE;
1788
1789 if (bed->_bfd_mach_o_swap_reloc_out == NULL)
1790 return TRUE;
1791
92bc0e80
TG
1792 if (bfd_seek (abfd, section->reloff, SEEK_SET) != 0)
1793 return FALSE;
1794
1795 /* Convert and write. */
1796 entries = section->bfdsection->orelocation;
1797 for (i = 0; i < section->nreloc; i++)
1798 {
1799 arelent *rel = entries[i];
46d1c23b 1800 struct mach_o_reloc_info_external raw;
92bc0e80
TG
1801 bfd_mach_o_reloc_info info, *pinfo = &info;
1802
1803 /* Convert relocation to an intermediate representation. */
1804 if (!(*bed->_bfd_mach_o_swap_reloc_out) (rel, pinfo))
07d6d2b8 1805 return FALSE;
92bc0e80
TG
1806
1807 /* Lower the relocation info. */
1808 if (pinfo->r_scattered)
07d6d2b8
AM
1809 {
1810 unsigned long v;
1811
1812 v = BFD_MACH_O_SR_SCATTERED
1813 | (pinfo->r_pcrel ? BFD_MACH_O_SR_PCREL : 0)
1814 | BFD_MACH_O_SET_SR_LENGTH (pinfo->r_length)
1815 | BFD_MACH_O_SET_SR_TYPE (pinfo->r_type)
1816 | BFD_MACH_O_SET_SR_ADDRESS (pinfo->r_address);
1817 /* Note: scattered relocs have field in reverse order... */
1818 bfd_put_32 (abfd, v, raw.r_address);
1819 bfd_put_32 (abfd, pinfo->r_value, raw.r_symbolnum);
1820 }
92bc0e80 1821 else
07d6d2b8
AM
1822 {
1823 bfd_put_32 (abfd, pinfo->r_address, raw.r_address);
1824 bfd_mach_o_swap_out_non_scattered_reloc (abfd, raw.r_symbolnum,
19765f52 1825 pinfo);
07d6d2b8 1826 }
92bc0e80 1827
46d1c23b 1828 if (bfd_bwrite (&raw, BFD_MACH_O_RELENT_SIZE, abfd)
07d6d2b8
AM
1829 != BFD_MACH_O_RELENT_SIZE)
1830 return FALSE;
92bc0e80
TG
1831 }
1832 return TRUE;
1833}
1834
452216ab 1835static bfd_boolean
ab273af8 1836bfd_mach_o_write_section_32 (bfd *abfd, bfd_mach_o_section *section)
116c20d2 1837{
46d1c23b
TG
1838 struct mach_o_section_32_external raw;
1839
1840 memcpy (raw.sectname, section->sectname, 16);
72b5104c 1841 memcpy (raw.segname, section->segname, 16);
46d1c23b
TG
1842 bfd_h_put_32 (abfd, section->addr, raw.addr);
1843 bfd_h_put_32 (abfd, section->size, raw.size);
1844 bfd_h_put_32 (abfd, section->offset, raw.offset);
1845 bfd_h_put_32 (abfd, section->align, raw.align);
1846 bfd_h_put_32 (abfd, section->reloff, raw.reloff);
1847 bfd_h_put_32 (abfd, section->nreloc, raw.nreloc);
1848 bfd_h_put_32 (abfd, section->flags, raw.flags);
1849 bfd_h_put_32 (abfd, section->reserved1, raw.reserved1);
1850 bfd_h_put_32 (abfd, section->reserved2, raw.reserved2);
1851
1852 if (bfd_bwrite (&raw, BFD_MACH_O_SECTION_SIZE, abfd)
92bc0e80 1853 != BFD_MACH_O_SECTION_SIZE)
452216ab 1854 return FALSE;
116c20d2 1855
452216ab 1856 return TRUE;
116c20d2
NC
1857}
1858
452216ab 1859static bfd_boolean
ab273af8 1860bfd_mach_o_write_section_64 (bfd *abfd, bfd_mach_o_section *section)
116c20d2 1861{
46d1c23b
TG
1862 struct mach_o_section_64_external raw;
1863
1864 memcpy (raw.sectname, section->sectname, 16);
1865 memcpy (raw.segname, section->segname, 16);
1866 bfd_h_put_64 (abfd, section->addr, raw.addr);
1867 bfd_h_put_64 (abfd, section->size, raw.size);
1868 bfd_h_put_32 (abfd, section->offset, raw.offset);
1869 bfd_h_put_32 (abfd, section->align, raw.align);
1870 bfd_h_put_32 (abfd, section->reloff, raw.reloff);
1871 bfd_h_put_32 (abfd, section->nreloc, raw.nreloc);
1872 bfd_h_put_32 (abfd, section->flags, raw.flags);
1873 bfd_h_put_32 (abfd, section->reserved1, raw.reserved1);
1874 bfd_h_put_32 (abfd, section->reserved2, raw.reserved2);
1875 bfd_h_put_32 (abfd, section->reserved3, raw.reserved3);
1876
1877 if (bfd_bwrite (&raw, BFD_MACH_O_SECTION_64_SIZE, abfd)
92bc0e80 1878 != BFD_MACH_O_SECTION_64_SIZE)
452216ab 1879 return FALSE;
116c20d2 1880
452216ab 1881 return TRUE;
1e8a024a
TG
1882}
1883
452216ab 1884static bfd_boolean
ab273af8 1885bfd_mach_o_write_segment_32 (bfd *abfd, bfd_mach_o_load_command *command)
1e8a024a 1886{
46d1c23b 1887 struct mach_o_segment_command_32_external raw;
1e8a024a 1888 bfd_mach_o_segment_command *seg = &command->command.segment;
f1bde64c 1889 bfd_mach_o_section *sec;
1e8a024a 1890
c2f09c75
TG
1891 BFD_ASSERT (command->type == BFD_MACH_O_LC_SEGMENT);
1892
f1bde64c
TG
1893 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
1894 if (!bfd_mach_o_write_relocs (abfd, sec))
452216ab 1895 return FALSE;
c2f09c75 1896
46d1c23b
TG
1897 memcpy (raw.segname, seg->segname, 16);
1898 bfd_h_put_32 (abfd, seg->vmaddr, raw.vmaddr);
1899 bfd_h_put_32 (abfd, seg->vmsize, raw.vmsize);
1900 bfd_h_put_32 (abfd, seg->fileoff, raw.fileoff);
1901 bfd_h_put_32 (abfd, seg->filesize, raw.filesize);
1902 bfd_h_put_32 (abfd, seg->maxprot, raw.maxprot);
1903 bfd_h_put_32 (abfd, seg->initprot, raw.initprot);
1904 bfd_h_put_32 (abfd, seg->nsects, raw.nsects);
1905 bfd_h_put_32 (abfd, seg->flags, raw.flags);
68ffbac6 1906
46d1c23b
TG
1907 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1908 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 1909 return FALSE;
1e8a024a 1910
f1bde64c 1911 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
452216ab
TG
1912 if (!bfd_mach_o_write_section_32 (abfd, sec))
1913 return FALSE;
1e8a024a 1914
452216ab 1915 return TRUE;
116c20d2
NC
1916}
1917
452216ab 1918static bfd_boolean
ab273af8 1919bfd_mach_o_write_segment_64 (bfd *abfd, bfd_mach_o_load_command *command)
1e8a024a 1920{
46d1c23b 1921 struct mach_o_segment_command_64_external raw;
c2f09c75 1922 bfd_mach_o_segment_command *seg = &command->command.segment;
f1bde64c 1923 bfd_mach_o_section *sec;
c2f09c75
TG
1924
1925 BFD_ASSERT (command->type == BFD_MACH_O_LC_SEGMENT_64);
1926
f1bde64c
TG
1927 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
1928 if (!bfd_mach_o_write_relocs (abfd, sec))
452216ab 1929 return FALSE;
c2f09c75 1930
46d1c23b
TG
1931 memcpy (raw.segname, seg->segname, 16);
1932 bfd_h_put_64 (abfd, seg->vmaddr, raw.vmaddr);
1933 bfd_h_put_64 (abfd, seg->vmsize, raw.vmsize);
1934 bfd_h_put_64 (abfd, seg->fileoff, raw.fileoff);
1935 bfd_h_put_64 (abfd, seg->filesize, raw.filesize);
1936 bfd_h_put_32 (abfd, seg->maxprot, raw.maxprot);
1937 bfd_h_put_32 (abfd, seg->initprot, raw.initprot);
1938 bfd_h_put_32 (abfd, seg->nsects, raw.nsects);
1939 bfd_h_put_32 (abfd, seg->flags, raw.flags);
1940
1941 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
1942 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 1943 return FALSE;
c2f09c75 1944
f1bde64c 1945 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
452216ab
TG
1946 if (!bfd_mach_o_write_section_64 (abfd, sec))
1947 return FALSE;
c2f09c75 1948
452216ab 1949 return TRUE;
1e8a024a
TG
1950}
1951
c2f09c75 1952static bfd_boolean
c9ffd2ea 1953bfd_mach_o_write_symtab_content (bfd *abfd, bfd_mach_o_symtab_command *sym)
116c20d2 1954{
046b007d 1955 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
116c20d2 1956 unsigned long i;
c2f09c75 1957 unsigned int wide = bfd_mach_o_wide_p (abfd);
c2f09c75
TG
1958 struct bfd_strtab_hash *strtab;
1959 asymbol **symbols = bfd_get_outsymbols (abfd);
c9ffd2ea 1960 int padlen;
c2f09c75
TG
1961
1962 /* Write the symbols first. */
1963 if (bfd_seek (abfd, sym->symoff, SEEK_SET) != 0)
1964 return FALSE;
1965
c2f09c75
TG
1966 strtab = _bfd_stringtab_init ();
1967 if (strtab == NULL)
1968 return FALSE;
116c20d2 1969
a4551119
TG
1970 if (sym->nsyms > 0)
1971 /* Although we don't strictly need to do this, for compatibility with
1972 Darwin system tools, actually output an empty string for the index
1973 0 entry. */
1974 _bfd_stringtab_add (strtab, "", TRUE, FALSE);
1975
116c20d2
NC
1976 for (i = 0; i < sym->nsyms; i++)
1977 {
91d6fa6a 1978 bfd_size_type str_index;
92bc0e80 1979 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *)symbols[i];
68ffbac6 1980
92bc0e80 1981 if (s->symbol.name == 0 || s->symbol.name[0] == '\0')
7f307238 1982 /* An index of 0 always means the empty string. */
07d6d2b8 1983 str_index = 0;
c2f09c75 1984 else
07d6d2b8
AM
1985 {
1986 str_index = _bfd_stringtab_add (strtab, s->symbol.name, TRUE, FALSE);
7f307238 1987
07d6d2b8
AM
1988 if (str_index == (bfd_size_type) -1)
1989 goto err;
1990 }
46d1c23b 1991
c2f09c75 1992 if (wide)
07d6d2b8
AM
1993 {
1994 struct mach_o_nlist_64_external raw;
1995
1996 bfd_h_put_32 (abfd, str_index, raw.n_strx);
1997 bfd_h_put_8 (abfd, s->n_type, raw.n_type);
1998 bfd_h_put_8 (abfd, s->n_sect, raw.n_sect);
1999 bfd_h_put_16 (abfd, s->n_desc, raw.n_desc);
2000 bfd_h_put_64 (abfd, s->symbol.section->vma + s->symbol.value,
2001 raw.n_value);
2002
2003 if (bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
2004 goto err;
2005 }
c2f09c75 2006 else
07d6d2b8
AM
2007 {
2008 struct mach_o_nlist_external raw;
116c20d2 2009
07d6d2b8
AM
2010 bfd_h_put_32 (abfd, str_index, raw.n_strx);
2011 bfd_h_put_8 (abfd, s->n_type, raw.n_type);
2012 bfd_h_put_8 (abfd, s->n_sect, raw.n_sect);
2013 bfd_h_put_16 (abfd, s->n_desc, raw.n_desc);
2014 bfd_h_put_32 (abfd, s->symbol.section->vma + s->symbol.value,
2015 raw.n_value);
46d1c23b 2016
07d6d2b8
AM
2017 if (bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
2018 goto err;
2019 }
116c20d2 2020 }
c2f09c75 2021 sym->strsize = _bfd_stringtab_size (strtab);
92bc0e80
TG
2022 sym->stroff = mdata->filelen;
2023 mdata->filelen += sym->strsize;
116c20d2 2024
c9ffd2ea 2025 if (bfd_seek (abfd, sym->stroff, SEEK_SET) != 0)
64d29018 2026 goto err;
c9ffd2ea 2027
535b785f 2028 if (!_bfd_stringtab_emit (abfd, strtab))
c2f09c75 2029 goto err;
116c20d2 2030
c9ffd2ea
TG
2031 /* Pad string table. */
2032 padlen = bfd_mach_o_pad4 (abfd, sym->strsize);
2033 if (padlen < 0)
2034 return FALSE;
2035 mdata->filelen += padlen;
2036 sym->strsize += padlen;
116c20d2 2037
c2f09c75 2038 return TRUE;
116c20d2 2039
c2f09c75
TG
2040 err:
2041 _bfd_stringtab_free (strtab);
64d29018 2042 sym->strsize = 0;
c2f09c75 2043 return FALSE;
116c20d2
NC
2044}
2045
c9ffd2ea
TG
2046static bfd_boolean
2047bfd_mach_o_write_symtab (bfd *abfd, bfd_mach_o_load_command *command)
2048{
2049 bfd_mach_o_symtab_command *sym = &command->command.symtab;
2050 struct mach_o_symtab_command_external raw;
2051
2052 BFD_ASSERT (command->type == BFD_MACH_O_LC_SYMTAB);
2053
2054 /* The command. */
2055 bfd_h_put_32 (abfd, sym->symoff, raw.symoff);
2056 bfd_h_put_32 (abfd, sym->nsyms, raw.nsyms);
2057 bfd_h_put_32 (abfd, sym->stroff, raw.stroff);
2058 bfd_h_put_32 (abfd, sym->strsize, raw.strsize);
2059
2060 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0
2061 || bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
2062 return FALSE;
2063
2064 return TRUE;
2065}
2066
2067/* Count the number of indirect symbols in the image.
2068 Requires that the sections are in their final order. */
2069
2070static unsigned int
2071bfd_mach_o_count_indirect_symbols (bfd *abfd, bfd_mach_o_data_struct *mdata)
2072{
2073 unsigned int i;
2074 unsigned int nisyms = 0;
2075
2076 for (i = 0; i < mdata->nsects; ++i)
2077 {
2078 bfd_mach_o_section *sec = mdata->sections[i];
2079
2080 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
2081 {
2082 case BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS:
2083 case BFD_MACH_O_S_LAZY_SYMBOL_POINTERS:
2084 case BFD_MACH_O_S_SYMBOL_STUBS:
2085 nisyms += bfd_mach_o_section_get_nbr_indirect (abfd, sec);
2086 break;
2087 default:
2088 break;
2089 }
2090 }
2091 return nisyms;
2092}
2093
2094/* Create the dysymtab. */
2095
2096static bfd_boolean
2097bfd_mach_o_build_dysymtab (bfd *abfd, bfd_mach_o_dysymtab_command *cmd)
2098{
2099 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
2100
2101 /* TODO:
2102 We are not going to try and fill these in yet and, moreover, we are
2103 going to bail if they are already set. */
2104 if (cmd->nmodtab != 0
2105 || cmd->ntoc != 0
2106 || cmd->nextrefsyms != 0)
2107 {
4eca0228
AM
2108 _bfd_error_handler (_("sorry: modtab, toc and extrefsyms are not yet"
2109 " implemented for dysymtab commands."));
c9ffd2ea
TG
2110 return FALSE;
2111 }
2112
2113 cmd->ilocalsym = 0;
2114
2115 if (bfd_get_symcount (abfd) > 0)
2116 {
2117 asymbol **symbols = bfd_get_outsymbols (abfd);
2118 unsigned long i;
2119
2120 /* Count the number of each kind of symbol. */
2121 for (i = 0; i < bfd_get_symcount (abfd); ++i)
2122 {
2123 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *)symbols[i];
2124 if (s->n_type & (BFD_MACH_O_N_EXT | BFD_MACH_O_N_PEXT))
2125 break;
2126 }
2127 cmd->nlocalsym = i;
2128 cmd->iextdefsym = i;
2129 for (; i < bfd_get_symcount (abfd); ++i)
2130 {
2131 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *)symbols[i];
2132 if ((s->n_type & BFD_MACH_O_N_TYPE) == BFD_MACH_O_N_UNDF)
2133 break;
2134 }
2135 cmd->nextdefsym = i - cmd->nlocalsym;
2136 cmd->iundefsym = cmd->nextdefsym + cmd->iextdefsym;
2137 cmd->nundefsym = bfd_get_symcount (abfd)
2138 - cmd->nlocalsym
2139 - cmd->nextdefsym;
2140 }
2141 else
2142 {
2143 cmd->nlocalsym = 0;
2144 cmd->iextdefsym = 0;
2145 cmd->nextdefsym = 0;
2146 cmd->iundefsym = 0;
2147 cmd->nundefsym = 0;
2148 }
2149
2150 cmd->nindirectsyms = bfd_mach_o_count_indirect_symbols (abfd, mdata);
2151 if (cmd->nindirectsyms > 0)
2152 {
2153 unsigned i;
2154 unsigned n;
2155
2156 mdata->filelen = FILE_ALIGN (mdata->filelen, 2);
2157 cmd->indirectsymoff = mdata->filelen;
2158 mdata->filelen += cmd->nindirectsyms * 4;
2159
64d29018
NC
2160 if (cmd->nindirectsyms * 4 < cmd->nindirectsyms)
2161 return FALSE;
c9ffd2ea
TG
2162 cmd->indirect_syms = bfd_zalloc (abfd, cmd->nindirectsyms * 4);
2163 if (cmd->indirect_syms == NULL)
07d6d2b8 2164 return FALSE;
c9ffd2ea
TG
2165
2166 n = 0;
2167 for (i = 0; i < mdata->nsects; ++i)
2168 {
2169 bfd_mach_o_section *sec = mdata->sections[i];
2170
2171 switch (sec->flags & BFD_MACH_O_SECTION_TYPE_MASK)
2172 {
2173 case BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS:
2174 case BFD_MACH_O_S_LAZY_SYMBOL_POINTERS:
2175 case BFD_MACH_O_S_SYMBOL_STUBS:
2176 {
2177 unsigned j, num;
2178 bfd_mach_o_asymbol **isyms = sec->indirect_syms;
2179
2180 num = bfd_mach_o_section_get_nbr_indirect (abfd, sec);
2181 if (isyms == NULL || num == 0)
2182 break;
2183 /* Record the starting index in the reserved1 field. */
2184 sec->reserved1 = n;
2185 for (j = 0; j < num; j++, n++)
2186 {
2187 if (isyms[j] == NULL)
07d6d2b8 2188 cmd->indirect_syms[n] = BFD_MACH_O_INDIRECT_SYM_LOCAL;
c9ffd2ea
TG
2189 else if (isyms[j]->symbol.section == bfd_abs_section_ptr
2190 && ! (isyms[j]->n_type & BFD_MACH_O_N_EXT))
07d6d2b8 2191 cmd->indirect_syms[n] = BFD_MACH_O_INDIRECT_SYM_LOCAL
c9ffd2ea
TG
2192 | BFD_MACH_O_INDIRECT_SYM_ABS;
2193 else
07d6d2b8 2194 cmd->indirect_syms[n] = isyms[j]->symbol.udata.i;
c9ffd2ea
TG
2195 }
2196 }
2197 break;
2198 default:
2199 break;
2200 }
2201 }
2202 }
2203
2204 return TRUE;
2205}
2206
7f307238
IS
2207/* Write a dysymtab command.
2208 TODO: Possibly coalesce writes of smaller objects. */
2209
2210static bfd_boolean
2211bfd_mach_o_write_dysymtab (bfd *abfd, bfd_mach_o_load_command *command)
2212{
2213 bfd_mach_o_dysymtab_command *cmd = &command->command.dysymtab;
2214
2215 BFD_ASSERT (command->type == BFD_MACH_O_LC_DYSYMTAB);
2216
2217 if (cmd->nmodtab != 0)
2218 {
2219 unsigned int i;
2220
2221 if (bfd_seek (abfd, cmd->modtaboff, SEEK_SET) != 0)
2222 return FALSE;
2223
2224 for (i = 0; i < cmd->nmodtab; i++)
2225 {
2226 bfd_mach_o_dylib_module *module = &cmd->dylib_module[i];
2227 unsigned int iinit;
2228 unsigned int ninit;
2229
2230 iinit = module->iinit & 0xffff;
2231 iinit |= ((module->iterm & 0xffff) << 16);
2232
2233 ninit = module->ninit & 0xffff;
2234 ninit |= ((module->nterm & 0xffff) << 16);
2235
2236 if (bfd_mach_o_wide_p (abfd))
2237 {
2238 struct mach_o_dylib_module_64_external w;
2239
2240 bfd_h_put_32 (abfd, module->module_name_idx, &w.module_name);
2241 bfd_h_put_32 (abfd, module->iextdefsym, &w.iextdefsym);
2242 bfd_h_put_32 (abfd, module->nextdefsym, &w.nextdefsym);
2243 bfd_h_put_32 (abfd, module->irefsym, &w.irefsym);
2244 bfd_h_put_32 (abfd, module->nrefsym, &w.nrefsym);
2245 bfd_h_put_32 (abfd, module->ilocalsym, &w.ilocalsym);
2246 bfd_h_put_32 (abfd, module->nlocalsym, &w.nlocalsym);
2247 bfd_h_put_32 (abfd, module->iextrel, &w.iextrel);
2248 bfd_h_put_32 (abfd, module->nextrel, &w.nextrel);
2249 bfd_h_put_32 (abfd, iinit, &w.iinit_iterm);
2250 bfd_h_put_32 (abfd, ninit, &w.ninit_nterm);
2251 bfd_h_put_64 (abfd, module->objc_module_info_addr,
2252 &w.objc_module_info_addr);
2253 bfd_h_put_32 (abfd, module->objc_module_info_size,
2254 &w.objc_module_info_size);
2255
2256 if (bfd_bwrite ((void *) &w, sizeof (w), abfd) != sizeof (w))
2257 return FALSE;
2258 }
2259 else
2260 {
2261 struct mach_o_dylib_module_external n;
2262
2263 bfd_h_put_32 (abfd, module->module_name_idx, &n.module_name);
2264 bfd_h_put_32 (abfd, module->iextdefsym, &n.iextdefsym);
2265 bfd_h_put_32 (abfd, module->nextdefsym, &n.nextdefsym);
2266 bfd_h_put_32 (abfd, module->irefsym, &n.irefsym);
2267 bfd_h_put_32 (abfd, module->nrefsym, &n.nrefsym);
2268 bfd_h_put_32 (abfd, module->ilocalsym, &n.ilocalsym);
2269 bfd_h_put_32 (abfd, module->nlocalsym, &n.nlocalsym);
2270 bfd_h_put_32 (abfd, module->iextrel, &n.iextrel);
2271 bfd_h_put_32 (abfd, module->nextrel, &n.nextrel);
2272 bfd_h_put_32 (abfd, iinit, &n.iinit_iterm);
2273 bfd_h_put_32 (abfd, ninit, &n.ninit_nterm);
2274 bfd_h_put_32 (abfd, module->objc_module_info_addr,
2275 &n.objc_module_info_addr);
2276 bfd_h_put_32 (abfd, module->objc_module_info_size,
2277 &n.objc_module_info_size);
2278
2279 if (bfd_bwrite ((void *) &n, sizeof (n), abfd) != sizeof (n))
2280 return FALSE;
2281 }
2282 }
2283 }
2284
2285 if (cmd->ntoc != 0)
2286 {
2287 unsigned int i;
2288
2289 if (bfd_seek (abfd, cmd->tocoff, SEEK_SET) != 0)
2290 return FALSE;
2291
2292 for (i = 0; i < cmd->ntoc; i++)
2293 {
2294 struct mach_o_dylib_table_of_contents_external raw;
2295 bfd_mach_o_dylib_table_of_content *toc = &cmd->dylib_toc[i];
2296
2297 bfd_h_put_32 (abfd, toc->symbol_index, &raw.symbol_index);
2298 bfd_h_put_32 (abfd, toc->module_index, &raw.module_index);
2299
2300 if (bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
2301 return FALSE;
2302 }
2303 }
68ffbac6 2304
7f307238
IS
2305 if (cmd->nindirectsyms > 0)
2306 {
2307 unsigned int i;
2308
2309 if (bfd_seek (abfd, cmd->indirectsymoff, SEEK_SET) != 0)
2310 return FALSE;
2311
2312 for (i = 0; i < cmd->nindirectsyms; ++i)
2313 {
2314 unsigned char raw[4];
2315
2316 bfd_h_put_32 (abfd, cmd->indirect_syms[i], &raw);
2317 if (bfd_bwrite (raw, sizeof (raw), abfd) != sizeof (raw))
2318 return FALSE;
68ffbac6 2319 }
7f307238
IS
2320 }
2321
2322 if (cmd->nextrefsyms != 0)
2323 {
2324 unsigned int i;
2325
2326 if (bfd_seek (abfd, cmd->extrefsymoff, SEEK_SET) != 0)
2327 return FALSE;
2328
2329 for (i = 0; i < cmd->nextrefsyms; i++)
2330 {
2331 unsigned long v;
2332 unsigned char raw[4];
2333 bfd_mach_o_dylib_reference *ref = &cmd->ext_refs[i];
2334
2335 /* Fields isym and flags are written as bit-fields, thus we need
2336 a specific processing for endianness. */
2337
2338 if (bfd_big_endian (abfd))
2339 {
2340 v = ((ref->isym & 0xffffff) << 8);
2341 v |= ref->flags & 0xff;
2342 }
2343 else
2344 {
2345 v = ref->isym & 0xffffff;
2346 v |= ((ref->flags & 0xff) << 24);
2347 }
2348
2349 bfd_h_put_32 (abfd, v, raw);
2350 if (bfd_bwrite (raw, sizeof (raw), abfd) != sizeof (raw))
2351 return FALSE;
2352 }
2353 }
2354
2355 /* The command. */
2356 if (bfd_seek (abfd, command->offset + BFD_MACH_O_LC_SIZE, SEEK_SET) != 0)
2357 return FALSE;
2358 else
2359 {
2360 struct mach_o_dysymtab_command_external raw;
2361
2362 bfd_h_put_32 (abfd, cmd->ilocalsym, &raw.ilocalsym);
2363 bfd_h_put_32 (abfd, cmd->nlocalsym, &raw.nlocalsym);
2364 bfd_h_put_32 (abfd, cmd->iextdefsym, &raw.iextdefsym);
2365 bfd_h_put_32 (abfd, cmd->nextdefsym, &raw.nextdefsym);
2366 bfd_h_put_32 (abfd, cmd->iundefsym, &raw.iundefsym);
2367 bfd_h_put_32 (abfd, cmd->nundefsym, &raw.nundefsym);
2368 bfd_h_put_32 (abfd, cmd->tocoff, &raw.tocoff);
2369 bfd_h_put_32 (abfd, cmd->ntoc, &raw.ntoc);
2370 bfd_h_put_32 (abfd, cmd->modtaboff, &raw.modtaboff);
2371 bfd_h_put_32 (abfd, cmd->nmodtab, &raw.nmodtab);
2372 bfd_h_put_32 (abfd, cmd->extrefsymoff, &raw.extrefsymoff);
2373 bfd_h_put_32 (abfd, cmd->nextrefsyms, &raw.nextrefsyms);
2374 bfd_h_put_32 (abfd, cmd->indirectsymoff, &raw.indirectsymoff);
2375 bfd_h_put_32 (abfd, cmd->nindirectsyms, &raw.nindirectsyms);
2376 bfd_h_put_32 (abfd, cmd->extreloff, &raw.extreloff);
2377 bfd_h_put_32 (abfd, cmd->nextrel, &raw.nextrel);
2378 bfd_h_put_32 (abfd, cmd->locreloff, &raw.locreloff);
2379 bfd_h_put_32 (abfd, cmd->nlocrel, &raw.nlocrel);
2380
2381 if (bfd_bwrite (&raw, sizeof (raw), abfd) != sizeof (raw))
2382 return FALSE;
2383 }
2384
2385 return TRUE;
2386}
2387
2388static unsigned
b22161d6 2389bfd_mach_o_primary_symbol_sort_key (bfd_mach_o_asymbol *s)
7f307238 2390{
b22161d6 2391 unsigned mtyp = s->n_type & BFD_MACH_O_N_TYPE;
68588f95
IS
2392
2393 /* Just leave debug symbols where they are (pretend they are local, and
2394 then they will just be sorted on position). */
b22161d6 2395 if (s->n_type & BFD_MACH_O_N_STAB)
68588f95
IS
2396 return 0;
2397
7f307238 2398 /* Local (we should never see an undefined local AFAICT). */
b22161d6 2399 if (! (s->n_type & (BFD_MACH_O_N_EXT | BFD_MACH_O_N_PEXT)))
7f307238
IS
2400 return 0;
2401
2402 /* Common symbols look like undefined externs. */
68588f95 2403 if (mtyp == BFD_MACH_O_N_UNDF)
7f307238
IS
2404 return 2;
2405
b22161d6 2406 /* A defined non-local, non-debug symbol. */
7f307238
IS
2407 return 1;
2408}
2409
2410static int
2411bfd_mach_o_cf_symbols (const void *a, const void *b)
2412{
2413 bfd_mach_o_asymbol *sa = *(bfd_mach_o_asymbol **) a;
2414 bfd_mach_o_asymbol *sb = *(bfd_mach_o_asymbol **) b;
2415 unsigned int soa, sob;
2416
b22161d6
IS
2417 soa = bfd_mach_o_primary_symbol_sort_key (sa);
2418 sob = bfd_mach_o_primary_symbol_sort_key (sb);
7f307238
IS
2419 if (soa < sob)
2420 return -1;
2421
2422 if (soa > sob)
2423 return 1;
2424
68588f95 2425 /* If it's local or stab, just preserve the input order. */
7f307238
IS
2426 if (soa == 0)
2427 {
2428 if (sa->symbol.udata.i < sb->symbol.udata.i)
07d6d2b8 2429 return -1;
7f307238 2430 if (sa->symbol.udata.i > sb->symbol.udata.i)
07d6d2b8 2431 return 1;
b22161d6
IS
2432
2433 /* This is probably an error. */
7f307238
IS
2434 return 0;
2435 }
2436
b22161d6
IS
2437 /* The second sort key is name. */
2438 return strcmp (sa->symbol.name, sb->symbol.name);
7f307238
IS
2439}
2440
2441/* Process the symbols.
2442
2443 This should be OK for single-module files - but it is not likely to work
2444 for multi-module shared libraries.
2445
2446 (a) If the application has not filled in the relevant mach-o fields, make
2447 an estimate.
2448
2449 (b) Order them, like this:
2450 ( i) local.
2451 (unsorted)
2452 ( ii) external defined
2453 (by name)
b22161d6 2454 (iii) external undefined/common
7f307238
IS
2455 (by name)
2456 ( iv) common
2457 (by name)
b22161d6 2458*/
92bc0e80
TG
2459
2460static bfd_boolean
b22161d6 2461bfd_mach_o_mangle_symbols (bfd *abfd)
92bc0e80
TG
2462{
2463 unsigned long i;
2464 asymbol **symbols = bfd_get_outsymbols (abfd);
2465
7f307238
IS
2466 if (symbols == NULL || bfd_get_symcount (abfd) == 0)
2467 return TRUE;
2468
92bc0e80
TG
2469 for (i = 0; i < bfd_get_symcount (abfd); i++)
2470 {
2471 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *)symbols[i];
2472
b22161d6
IS
2473 /* We use this value, which is out-of-range as a symbol index, to signal
2474 that the mach-o-specific data are not filled in and need to be created
2475 from the bfd values. It is much preferable for the application to do
2476 this, since more meaningful diagnostics can be made that way. */
2477
2478 if (s->symbol.udata.i == SYM_MACHO_FIELDS_UNSET)
07d6d2b8
AM
2479 {
2480 /* No symbol information has been set - therefore determine
2481 it from the bfd symbol flags/info. */
2482 if (s->symbol.section == bfd_abs_section_ptr)
2483 s->n_type = BFD_MACH_O_N_ABS;
2484 else if (s->symbol.section == bfd_und_section_ptr)
2485 {
2486 s->n_type = BFD_MACH_O_N_UNDF;
2487 if (s->symbol.flags & BSF_WEAK)
2488 s->n_desc |= BFD_MACH_O_N_WEAK_REF;
2489 /* mach-o automatically makes undefined symbols extern. */
7f307238 2490 s->n_type |= BFD_MACH_O_N_EXT;
b22161d6 2491 s->symbol.flags |= BSF_GLOBAL;
07d6d2b8
AM
2492 }
2493 else if (s->symbol.section == bfd_com_section_ptr)
b22161d6 2494 {
07d6d2b8
AM
2495 s->n_type = BFD_MACH_O_N_UNDF | BFD_MACH_O_N_EXT;
2496 s->symbol.flags |= BSF_GLOBAL;
2497 }
2498 else
2499 s->n_type = BFD_MACH_O_N_SECT;
07d6d2b8 2500 }
92bc0e80 2501
ae19acf3 2502 /* Update external symbol bit in case objcopy changed it. */
2503 if (s->symbol.flags & BSF_GLOBAL)
2504 s->n_type |= BFD_MACH_O_N_EXT;
2505 else
2506 s->n_type &= ~BFD_MACH_O_N_EXT;
2507
7f307238 2508 /* Put the section index in, where required. */
68588f95 2509 if ((s->symbol.section != bfd_abs_section_ptr
07d6d2b8
AM
2510 && s->symbol.section != bfd_und_section_ptr
2511 && s->symbol.section != bfd_com_section_ptr)
2512 || ((s->n_type & BFD_MACH_O_N_STAB) != 0
2513 && s->symbol.name == NULL))
707e555b 2514 s->n_sect = s->symbol.section->output_section->target_index;
92bc0e80 2515
b22161d6
IS
2516 /* Number to preserve order for local and debug syms. */
2517 s->symbol.udata.i = i;
7f307238
IS
2518 }
2519
b22161d6
IS
2520 /* Sort the symbols. */
2521 qsort ((void *) symbols, (size_t) bfd_get_symcount (abfd),
2522 sizeof (asymbol *), bfd_mach_o_cf_symbols);
7f307238 2523
b22161d6
IS
2524 for (i = 0; i < bfd_get_symcount (abfd); ++i)
2525 {
2526 bfd_mach_o_asymbol *s = (bfd_mach_o_asymbol *)symbols[i];
2527 s->symbol.udata.i = i; /* renumber. */
7f307238
IS
2528 }
2529
2530 return TRUE;
2531}
2532
2533/* We build a flat table of sections, which can be re-ordered if necessary.
2534 Fill in the section number and other mach-o-specific data. */
2535
2536static bfd_boolean
2537bfd_mach_o_mangle_sections (bfd *abfd, bfd_mach_o_data_struct *mdata)
2538{
2539 asection *sec;
2540 unsigned target_index;
2541 unsigned nsect;
2542
2543 nsect = bfd_count_sections (abfd);
68ffbac6 2544
7f307238
IS
2545 /* Don't do it if it's already set - assume the application knows what it's
2546 doing. */
2547 if (mdata->nsects == nsect
2548 && (mdata->nsects == 0 || mdata->sections != NULL))
2549 return TRUE;
2550
a1165289
NC
2551 /* We need to check that this can be done... */
2552 if (nsect > 255)
2553 {
4eca0228
AM
2554 _bfd_error_handler (_("mach-o: there are too many sections (%u)"
2555 " maximum is 255,\n"), nsect);
a1165289
NC
2556 return FALSE;
2557 }
2558
7f307238 2559 mdata->nsects = nsect;
64d29018
NC
2560 mdata->sections = bfd_alloc2 (abfd,
2561 mdata->nsects, sizeof (bfd_mach_o_section *));
7f307238
IS
2562 if (mdata->sections == NULL)
2563 return FALSE;
2564
7f307238 2565 /* Create Mach-O sections.
68ffbac6 2566 Section type, attribute and align should have been set when the
7f307238
IS
2567 section was created - either read in or specified. */
2568 target_index = 0;
2569 for (sec = abfd->sections; sec; sec = sec->next)
2570 {
2571 unsigned bfd_align = bfd_get_section_alignment (abfd, sec);
2572 bfd_mach_o_section *msect = bfd_mach_o_get_mach_o_section (sec);
2573
2574 mdata->sections[target_index] = msect;
2575
2576 msect->addr = bfd_get_section_vma (abfd, sec);
2577 msect->size = bfd_get_section_size (sec);
2578
68ffbac6 2579 /* Use the largest alignment set, in case it was bumped after the
7f307238
IS
2580 section was created. */
2581 msect->align = msect->align > bfd_align ? msect->align : bfd_align;
2582
2583 msect->offset = 0;
2584 sec->target_index = ++target_index;
92bc0e80 2585 }
7f307238 2586
92bc0e80
TG
2587 return TRUE;
2588}
2589
154a1ee5 2590bfd_boolean
116c20d2 2591bfd_mach_o_write_contents (bfd *abfd)
3af9a47b 2592{
046b007d 2593 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
c9ffd2ea
TG
2594 bfd_mach_o_load_command *cmd;
2595 bfd_mach_o_symtab_command *symtab = NULL;
2596 bfd_mach_o_dysymtab_command *dysymtab = NULL;
2597 bfd_mach_o_segment_command *linkedit = NULL;
3af9a47b 2598
7f307238 2599 /* Make the commands, if not already present. */
c9ffd2ea
TG
2600 if (!abfd->output_has_begun && !bfd_mach_o_build_commands (abfd))
2601 return FALSE;
2602 abfd->output_has_begun = TRUE;
92bc0e80 2603
c9ffd2ea 2604 /* Write the header. */
154a1ee5 2605 if (!bfd_mach_o_write_header (abfd, &mdata->header))
b34976b6 2606 return FALSE;
3af9a47b 2607
c9ffd2ea
TG
2608 /* First pass: allocate the linkedit segment. */
2609 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
2610 switch (cmd->type)
2611 {
2612 case BFD_MACH_O_LC_SEGMENT_64:
2613 case BFD_MACH_O_LC_SEGMENT:
2614 if (strcmp (cmd->command.segment.segname, "__LINKEDIT") == 0)
2615 linkedit = &cmd->command.segment;
2616 break;
2617 case BFD_MACH_O_LC_SYMTAB:
2618 symtab = &cmd->command.symtab;
2619 break;
2620 case BFD_MACH_O_LC_DYSYMTAB:
2621 dysymtab = &cmd->command.dysymtab;
2622 break;
2623 case BFD_MACH_O_LC_DYLD_INFO:
2624 {
2625 bfd_mach_o_dyld_info_command *di = &cmd->command.dyld_info;
2626
2627 if (di->rebase_size != 0)
2628 {
2629 di->rebase_off = mdata->filelen;
2630 mdata->filelen += di->rebase_size;
2631 }
2632 if (di->bind_size != 0)
2633 {
2634 di->bind_off = mdata->filelen;
2635 mdata->filelen += di->bind_size;
2636 }
2637 if (di->weak_bind_size != 0)
2638 {
2639 di->weak_bind_off = mdata->filelen;
2640 mdata->filelen += di->weak_bind_size;
2641 }
2642 if (di->lazy_bind_size != 0)
2643 {
2644 di->lazy_bind_off = mdata->filelen;
2645 mdata->filelen += di->lazy_bind_size;
2646 }
2647 if (di->export_size != 0)
2648 {
2649 di->export_off = mdata->filelen;
2650 mdata->filelen += di->export_size;
2651 }
2652 }
2653 break;
2654 case BFD_MACH_O_LC_LOAD_DYLIB:
2655 case BFD_MACH_O_LC_LOAD_DYLINKER:
2656 case BFD_MACH_O_LC_MAIN:
2657 /* Nothing to do. */
2658 break;
2659 default:
4eca0228 2660 _bfd_error_handler
d42c267e
AM
2661 (_("unable to allocate data for load command %#x"),
2662 cmd->type);
c9ffd2ea
TG
2663 break;
2664 }
2665
2666 /* Specially handle symtab and dysymtab. */
2667
2668 /* Pre-allocate the symbol table (but not the string table). The reason
2669 is that the dysymtab is after the symbol table but before the string
2670 table (required by the native strip tool). */
2671 if (symtab != NULL)
2672 {
2673 unsigned int symlen;
2674 unsigned int wide = bfd_mach_o_wide_p (abfd);
2675
2676 symlen = wide ? BFD_MACH_O_NLIST_64_SIZE : BFD_MACH_O_NLIST_SIZE;
2677
2678 /* Align for symbols. */
2679 mdata->filelen = FILE_ALIGN (mdata->filelen, wide ? 3 : 2);
2680 symtab->symoff = mdata->filelen;
2681
2682 symtab->nsyms = bfd_get_symcount (abfd);
2683 mdata->filelen += symtab->nsyms * symlen;
2684 }
2685
2686 /* Build the dysymtab. */
2687 if (dysymtab != NULL)
2688 if (!bfd_mach_o_build_dysymtab (abfd, dysymtab))
2689 return FALSE;
2690
2691 /* Write symtab and strtab. */
2692 if (symtab != NULL)
2693 if (!bfd_mach_o_write_symtab_content (abfd, symtab))
2694 return FALSE;
2695
2696 /* Adjust linkedit size. */
2697 if (linkedit != NULL)
2698 {
2699 /* bfd_vma pagemask = bfd_mach_o_get_backend_data (abfd)->page_size - 1; */
2700
2701 linkedit->vmsize = mdata->filelen - linkedit->fileoff;
2702 /* linkedit->vmsize = (linkedit->vmsize + pagemask) & ~pagemask; */
2703 linkedit->filesize = mdata->filelen - linkedit->fileoff;
2704
2705 linkedit->initprot = BFD_MACH_O_PROT_READ;
2706 linkedit->maxprot = BFD_MACH_O_PROT_READ | BFD_MACH_O_PROT_WRITE
2707 | BFD_MACH_O_PROT_EXECUTE;
2708 }
2709
2710 /* Second pass: write commands. */
2711 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3af9a47b 2712 {
46d1c23b 2713 struct mach_o_load_command_external raw;
3af9a47b
NC
2714 unsigned long typeflag;
2715
c9ffd2ea 2716 typeflag = cmd->type | (cmd->type_required ? BFD_MACH_O_LC_REQ_DYLD : 0);
3af9a47b 2717
46d1c23b 2718 bfd_h_put_32 (abfd, typeflag, raw.cmd);
c9ffd2ea 2719 bfd_h_put_32 (abfd, cmd->len, raw.cmdsize);
3af9a47b 2720
c9ffd2ea 2721 if (bfd_seek (abfd, cmd->offset, SEEK_SET) != 0
07d6d2b8 2722 || bfd_bwrite (&raw, BFD_MACH_O_LC_SIZE, abfd) != 8)
b34976b6 2723 return FALSE;
3af9a47b 2724
c9ffd2ea 2725 switch (cmd->type)
3af9a47b
NC
2726 {
2727 case BFD_MACH_O_LC_SEGMENT:
c9ffd2ea 2728 if (!bfd_mach_o_write_segment_32 (abfd, cmd))
1e8a024a
TG
2729 return FALSE;
2730 break;
2731 case BFD_MACH_O_LC_SEGMENT_64:
c9ffd2ea 2732 if (!bfd_mach_o_write_segment_64 (abfd, cmd))
b34976b6 2733 return FALSE;
3af9a47b
NC
2734 break;
2735 case BFD_MACH_O_LC_SYMTAB:
c9ffd2ea 2736 if (!bfd_mach_o_write_symtab (abfd, cmd))
b34976b6 2737 return FALSE;
3af9a47b 2738 break;
7f307238 2739 case BFD_MACH_O_LC_DYSYMTAB:
c9ffd2ea 2740 if (!bfd_mach_o_write_dysymtab (abfd, cmd))
7f307238
IS
2741 return FALSE;
2742 break;
3af9a47b
NC
2743 case BFD_MACH_O_LC_THREAD:
2744 case BFD_MACH_O_LC_UNIXTHREAD:
c9ffd2ea 2745 if (!bfd_mach_o_write_thread (abfd, cmd))
b34976b6 2746 return FALSE;
3af9a47b 2747 break;
3af9a47b 2748 case BFD_MACH_O_LC_LOAD_DYLIB:
c9ffd2ea
TG
2749 if (!bfd_mach_o_write_dylib (abfd, cmd))
2750 return FALSE;
2751 break;
3af9a47b 2752 case BFD_MACH_O_LC_LOAD_DYLINKER:
c9ffd2ea
TG
2753 if (!bfd_mach_o_write_dylinker (abfd, cmd))
2754 return FALSE;
2755 break;
2756 case BFD_MACH_O_LC_MAIN:
2757 if (!bfd_mach_o_write_main (abfd, cmd))
2758 return FALSE;
2759 break;
2760 case BFD_MACH_O_LC_DYLD_INFO:
2761 if (!bfd_mach_o_write_dyld_info (abfd, cmd))
2762 return FALSE;
3af9a47b
NC
2763 break;
2764 default:
4eca0228 2765 _bfd_error_handler
d42c267e
AM
2766 (_("unable to write unknown load command %#x"),
2767 cmd->type);
b34976b6 2768 return FALSE;
3af9a47b
NC
2769 }
2770 }
2771
b34976b6 2772 return TRUE;
3af9a47b
NC
2773}
2774
f1bde64c
TG
2775static void
2776bfd_mach_o_append_section_to_segment (bfd_mach_o_segment_command *seg,
07d6d2b8 2777 bfd_mach_o_section *s)
f1bde64c 2778{
f1bde64c
TG
2779 if (seg->sect_head == NULL)
2780 seg->sect_head = s;
2781 else
2782 seg->sect_tail->next = s;
2783 seg->sect_tail = s;
2784}
2785
2786/* Create section Mach-O flags from BFD flags. */
2787
2788static void
3cc27770
TG
2789bfd_mach_o_set_section_flags_from_bfd (bfd *abfd ATTRIBUTE_UNUSED,
2790 asection *sec)
f1bde64c
TG
2791{
2792 flagword bfd_flags;
2793 bfd_mach_o_section *s = bfd_mach_o_get_mach_o_section (sec);
2794
2795 /* Create default flags. */
2796 bfd_flags = bfd_get_section_flags (abfd, sec);
2797 if ((bfd_flags & SEC_CODE) == SEC_CODE)
2798 s->flags = BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS
2799 | BFD_MACH_O_S_ATTR_SOME_INSTRUCTIONS
2800 | BFD_MACH_O_S_REGULAR;
2801 else if ((bfd_flags & (SEC_ALLOC | SEC_LOAD)) == SEC_ALLOC)
2802 s->flags = BFD_MACH_O_S_ZEROFILL;
2803 else if (bfd_flags & SEC_DEBUGGING)
2804 s->flags = BFD_MACH_O_S_REGULAR | BFD_MACH_O_S_ATTR_DEBUG;
2805 else
2806 s->flags = BFD_MACH_O_S_REGULAR;
2807}
2808
7f307238 2809static bfd_boolean
c9ffd2ea 2810bfd_mach_o_build_obj_seg_command (bfd *abfd, bfd_mach_o_segment_command *seg)
7f307238 2811{
c9ffd2ea
TG
2812 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
2813 unsigned int i, j;
7f307238 2814
7f307238 2815 seg->vmaddr = 0;
7f307238 2816 seg->fileoff = mdata->filelen;
c9ffd2ea
TG
2817 seg->initprot = BFD_MACH_O_PROT_READ | BFD_MACH_O_PROT_WRITE
2818 | BFD_MACH_O_PROT_EXECUTE;
2819 seg->maxprot = seg->initprot;
7f307238 2820
68ffbac6 2821 /* Append sections to the segment.
09903f4b
IS
2822
2823 This is a little tedious, we have to honor the need to account zerofill
2824 sections after all the rest. This forces us to do the calculation of
68ffbac6 2825 total vmsize in three passes so that any alignment increments are
09903f4b 2826 properly accounted. */
7f307238
IS
2827 for (i = 0; i < mdata->nsects; ++i)
2828 {
2829 bfd_mach_o_section *s = mdata->sections[i];
2830 asection *sec = s->bfdsection;
2831
09903f4b
IS
2832 /* Although we account for zerofill section sizes in vm order, they are
2833 placed in the file in source sequence. */
c9ffd2ea 2834 bfd_mach_o_append_section_to_segment (seg, s);
e5081f2f 2835 s->offset = 0;
68ffbac6 2836
c9ffd2ea
TG
2837 /* Zerofill sections have zero file size & offset, the only content
2838 written to the file is the symbols. */
e5081f2f 2839 if ((s->flags & BFD_MACH_O_SECTION_TYPE_MASK) == BFD_MACH_O_S_ZEROFILL
07d6d2b8 2840 || ((s->flags & BFD_MACH_O_SECTION_TYPE_MASK)
c9ffd2ea 2841 == BFD_MACH_O_S_GB_ZEROFILL))
07d6d2b8 2842 continue;
e5081f2f 2843
c9ffd2ea
TG
2844 /* The Darwin system tools (in MH_OBJECT files, at least) always account
2845 sections, even those with zero size. */
e5081f2f 2846 if (s->size > 0)
c9ffd2ea 2847 {
09903f4b
IS
2848 seg->vmsize = FILE_ALIGN (seg->vmsize, s->align);
2849 seg->vmsize += s->size;
2850
c9ffd2ea
TG
2851 /* MH_OBJECT files have unaligned content. */
2852 if (1)
2853 {
2854 seg->filesize = FILE_ALIGN (seg->filesize, s->align);
07d6d2b8
AM
2855 mdata->filelen = FILE_ALIGN (mdata->filelen, s->align);
2856 }
09903f4b
IS
2857 seg->filesize += s->size;
2858
c9ffd2ea
TG
2859 /* The system tools write even zero-sized sections with an offset
2860 field set to the current file position. */
07d6d2b8 2861 s->offset = mdata->filelen;
c9ffd2ea 2862 }
7f307238
IS
2863
2864 sec->filepos = s->offset;
7f307238
IS
2865 mdata->filelen += s->size;
2866 }
2867
3cc27770 2868 /* Now pass through again, for zerofill, only now we just update the
c9ffd2ea
TG
2869 vmsize, and then for zerofill_GB. */
2870 for (j = 0; j < 2; j++)
09903f4b 2871 {
c9ffd2ea 2872 unsigned int stype;
68ffbac6 2873
c9ffd2ea
TG
2874 if (j == 0)
2875 stype = BFD_MACH_O_S_ZEROFILL;
2876 else
2877 stype = BFD_MACH_O_S_GB_ZEROFILL;
09903f4b 2878
c9ffd2ea
TG
2879 for (i = 0; i < mdata->nsects; ++i)
2880 {
2881 bfd_mach_o_section *s = mdata->sections[i];
2882
2883 if ((s->flags & BFD_MACH_O_SECTION_TYPE_MASK) != stype)
2884 continue;
2885
2886 if (s->size > 0)
2887 {
2888 seg->vmsize = FILE_ALIGN (seg->vmsize, s->align);
2889 seg->vmsize += s->size;
2890 }
09903f4b
IS
2891 }
2892 }
bb76d940 2893
09903f4b 2894 /* Allocate space for the relocations. */
707e555b 2895 mdata->filelen = FILE_ALIGN (mdata->filelen, 2);
bb76d940
IS
2896
2897 for (i = 0; i < mdata->nsects; ++i)
2898 {
2899 bfd_mach_o_section *ms = mdata->sections[i];
2900 asection *sec = ms->bfdsection;
68ffbac6 2901
c9ffd2ea
TG
2902 ms->nreloc = sec->reloc_count;
2903 if (ms->nreloc == 0)
07d6d2b8 2904 {
c9ffd2ea 2905 /* Clear nreloc and reloff if there is no relocs. */
bb76d940
IS
2906 ms->reloff = 0;
2907 continue;
07d6d2b8 2908 }
bb76d940
IS
2909 sec->rel_filepos = mdata->filelen;
2910 ms->reloff = sec->rel_filepos;
2911 mdata->filelen += sec->reloc_count * BFD_MACH_O_RELENT_SIZE;
2912 }
7f307238
IS
2913
2914 return TRUE;
2915}
2916
c9ffd2ea
TG
2917static bfd_boolean
2918bfd_mach_o_build_exec_seg_command (bfd *abfd, bfd_mach_o_segment_command *seg)
50d10658 2919{
c9ffd2ea 2920 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
50d10658 2921 unsigned int i;
c9ffd2ea
TG
2922 bfd_vma pagemask = bfd_mach_o_get_backend_data (abfd)->page_size - 1;
2923 bfd_vma vma;
2924 bfd_mach_o_section *s;
2925
2926 seg->vmsize = 0;
50d10658 2927
c9ffd2ea
TG
2928 seg->fileoff = mdata->filelen;
2929 seg->maxprot = 0;
2930 seg->initprot = 0;
2931 seg->flags = 0;
2932
2933 /* Append sections to the segment. We assume they are properly ordered
2934 by vma (but we check that). */
2935 vma = 0;
50d10658
IS
2936 for (i = 0; i < mdata->nsects; ++i)
2937 {
c9ffd2ea 2938 s = mdata->sections[i];
50d10658 2939
c9ffd2ea
TG
2940 /* Consider only sections for this segment. */
2941 if (strcmp (seg->segname, s->segname) != 0)
2942 continue;
50d10658 2943
c9ffd2ea 2944 bfd_mach_o_append_section_to_segment (seg, s);
7f307238 2945
86eafac0
NC
2946 if (s->addr < vma)
2947 {
4eca0228 2948 _bfd_error_handler
695344c0 2949 /* xgettext:c-format */
2dcf00ce
AM
2950 (_("section address (%#" PRIx64 ") "
2951 "below start of segment (%#" PRIx64 ")"),
2952 (uint64_t) s->addr, (uint64_t) vma);
86eafac0
NC
2953 return FALSE;
2954 }
2955
c9ffd2ea 2956 vma = s->addr + s->size;
7f307238
IS
2957 }
2958
c9ffd2ea
TG
2959 /* Set segment file offset: make it page aligned. */
2960 vma = seg->sect_head->addr;
2961 seg->vmaddr = vma & ~pagemask;
2962 if ((mdata->filelen & pagemask) > (vma & pagemask))
2963 mdata->filelen += pagemask + 1;
2964 seg->fileoff = mdata->filelen & ~pagemask;
2965 mdata->filelen = seg->fileoff + (vma & pagemask);
7f307238 2966
c9ffd2ea
TG
2967 /* Set section file offset. */
2968 for (s = seg->sect_head; s != NULL; s = s->next)
7f307238 2969 {
c9ffd2ea
TG
2970 asection *sec = s->bfdsection;
2971 flagword flags = bfd_get_section_flags (abfd, sec);
b22161d6 2972
c9ffd2ea
TG
2973 /* Adjust segment size. */
2974 seg->vmsize = FILE_ALIGN (seg->vmsize, s->align);
2975 seg->vmsize += s->size;
2976
2977 /* File offset and length. */
2978 seg->filesize = FILE_ALIGN (seg->filesize, s->align);
2979
2980 if ((s->flags & BFD_MACH_O_SECTION_TYPE_MASK) != BFD_MACH_O_S_ZEROFILL
07d6d2b8 2981 && ((s->flags & BFD_MACH_O_SECTION_TYPE_MASK)
c9ffd2ea 2982 != BFD_MACH_O_S_GB_ZEROFILL))
b22161d6 2983 {
c9ffd2ea
TG
2984 mdata->filelen = FILE_ALIGN (mdata->filelen, s->align);
2985
2986 s->offset = mdata->filelen;
2987 s->bfdsection->filepos = s->offset;
2988
2989 seg->filesize += s->size;
2990 mdata->filelen += s->size;
b22161d6 2991 }
c9ffd2ea 2992 else
b22161d6 2993 {
c9ffd2ea
TG
2994 s->offset = 0;
2995 s->bfdsection->filepos = 0;
2996 }
2997
2998 /* Set protection. */
2999 if (flags & SEC_LOAD)
3000 {
3001 if (flags & SEC_CODE)
3002 seg->initprot |= BFD_MACH_O_PROT_READ | BFD_MACH_O_PROT_EXECUTE;
3003 if ((flags & (SEC_DATA | SEC_READONLY)) == SEC_DATA)
3004 seg->initprot |= BFD_MACH_O_PROT_WRITE | BFD_MACH_O_PROT_READ;
b22161d6 3005 }
c9ffd2ea
TG
3006
3007 /* Relocs shouldn't appear in non-object files. */
3008 if (s->bfdsection->reloc_count != 0)
3009 return FALSE;
b22161d6 3010 }
c9ffd2ea
TG
3011
3012 /* Set maxprot. */
3013 if (seg->initprot != 0)
3014 seg->maxprot = BFD_MACH_O_PROT_READ | BFD_MACH_O_PROT_WRITE
3015 | BFD_MACH_O_PROT_EXECUTE;
b22161d6 3016 else
c9ffd2ea 3017 seg->maxprot = 0;
b22161d6 3018
c9ffd2ea
TG
3019 /* Round segment size (and file size). */
3020 seg->vmsize = (seg->vmsize + pagemask) & ~pagemask;
3021 seg->filesize = (seg->filesize + pagemask) & ~pagemask;
3022 mdata->filelen = (mdata->filelen + pagemask) & ~pagemask;
7f307238 3023
c9ffd2ea
TG
3024 return TRUE;
3025}
68ffbac6 3026
c9ffd2ea
TG
3027/* Layout the commands: set commands size and offset, set ncmds and sizeofcmds
3028 fields in header. */
68ffbac6 3029
86eafac0 3030static bfd_boolean
c9ffd2ea
TG
3031bfd_mach_o_layout_commands (bfd_mach_o_data_struct *mdata)
3032{
3033 unsigned wide = mach_o_wide_p (&mdata->header);
3034 unsigned int hdrlen;
3035 ufile_ptr offset;
3036 bfd_mach_o_load_command *cmd;
3037 unsigned int align;
86eafac0 3038 bfd_boolean ret = TRUE;
c9ffd2ea
TG
3039
3040 hdrlen = wide ? BFD_MACH_O_HEADER_64_SIZE : BFD_MACH_O_HEADER_SIZE;
3041 align = wide ? 8 - 1 : 4 - 1;
3042 offset = hdrlen;
3043 mdata->header.ncmds = 0;
50d10658 3044
c9ffd2ea
TG
3045 for (cmd = mdata->first_command; cmd; cmd = cmd->next)
3046 {
3047 mdata->header.ncmds++;
3048 cmd->offset = offset;
68ffbac6 3049
c9ffd2ea
TG
3050 switch (cmd->type)
3051 {
3052 case BFD_MACH_O_LC_SEGMENT_64:
3053 cmd->len = BFD_MACH_O_LC_SEGMENT_64_SIZE
3054 + BFD_MACH_O_SECTION_64_SIZE * cmd->command.segment.nsects;
3055 break;
3056 case BFD_MACH_O_LC_SEGMENT:
3057 cmd->len = BFD_MACH_O_LC_SEGMENT_SIZE
3058 + BFD_MACH_O_SECTION_SIZE * cmd->command.segment.nsects;
3059 break;
3060 case BFD_MACH_O_LC_SYMTAB:
3061 cmd->len = sizeof (struct mach_o_symtab_command_external)
3062 + BFD_MACH_O_LC_SIZE;
3063 break;
3064 case BFD_MACH_O_LC_DYSYMTAB:
3065 cmd->len = sizeof (struct mach_o_dysymtab_command_external)
3066 + BFD_MACH_O_LC_SIZE;
3067 break;
3068 case BFD_MACH_O_LC_LOAD_DYLIB:
3069 cmd->len = sizeof (struct mach_o_dylib_command_external)
3070 + BFD_MACH_O_LC_SIZE;
3071 cmd->command.dylib.name_offset = cmd->len;
3072 cmd->len += strlen (cmd->command.dylib.name_str);
3073 cmd->len = (cmd->len + align) & ~align;
3074 break;
3075 case BFD_MACH_O_LC_LOAD_DYLINKER:
3076 cmd->len = sizeof (struct mach_o_str_command_external)
3077 + BFD_MACH_O_LC_SIZE;
3078 cmd->command.dylinker.name_offset = cmd->len;
3079 cmd->len += strlen (cmd->command.dylinker.name_str);
3080 cmd->len = (cmd->len + align) & ~align;
3081 break;
3082 case BFD_MACH_O_LC_MAIN:
3083 cmd->len = sizeof (struct mach_o_entry_point_command_external)
3084 + BFD_MACH_O_LC_SIZE;
3085 break;
3086 case BFD_MACH_O_LC_DYLD_INFO:
3087 cmd->len = sizeof (struct mach_o_dyld_info_command_external)
3088 + BFD_MACH_O_LC_SIZE;
3089 break;
3090 default:
4eca0228 3091 _bfd_error_handler
d42c267e
AM
3092 (_("unable to layout unknown load command %#x"),
3093 cmd->type);
86eafac0 3094 ret = FALSE;
c9ffd2ea 3095 break;
7f307238 3096 }
c9ffd2ea
TG
3097
3098 BFD_ASSERT (cmd->len % (align + 1) == 0);
3099 offset += cmd->len;
7f307238 3100 }
c9ffd2ea
TG
3101 mdata->header.sizeofcmds = offset - hdrlen;
3102 mdata->filelen = offset;
86eafac0
NC
3103
3104 return ret;
c9ffd2ea 3105}
7f307238 3106
c9ffd2ea
TG
3107/* Subroutine of bfd_mach_o_build_commands: set type, name and nsects of a
3108 segment. */
3109
3110static void
3111bfd_mach_o_init_segment (bfd_mach_o_data_struct *mdata,
3112 bfd_mach_o_load_command *cmd,
3113 const char *segname, unsigned int nbr_sect)
3114{
3115 bfd_mach_o_segment_command *seg = &cmd->command.segment;
3116 unsigned wide = mach_o_wide_p (&mdata->header);
3117
3118 /* Init segment command. */
3119 cmd->type = wide ? BFD_MACH_O_LC_SEGMENT_64 : BFD_MACH_O_LC_SEGMENT;
3120 cmd->type_required = FALSE;
3121
3122 strcpy (seg->segname, segname);
3123 seg->nsects = nbr_sect;
3124
3125 seg->vmaddr = 0;
3126 seg->vmsize = 0;
3127
3128 seg->fileoff = 0;
3129 seg->filesize = 0;
3130 seg->maxprot = 0;
3131 seg->initprot = 0;
3132 seg->flags = 0;
3133 seg->sect_head = NULL;
3134 seg->sect_tail = NULL;
7f307238
IS
3135}
3136
3137/* Build Mach-O load commands (currently assuming an MH_OBJECT file).
3138 TODO: Other file formats, rebuilding symtab/dysymtab commands for strip
3139 and copy functionality. */
154a1ee5
TG
3140
3141bfd_boolean
3142bfd_mach_o_build_commands (bfd *abfd)
3143{
046b007d 3144 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
bbd56171 3145 unsigned wide = mach_o_wide_p (&mdata->header);
c9ffd2ea
TG
3146 unsigned int nbr_segcmd = 0;
3147 bfd_mach_o_load_command *commands;
3148 unsigned int nbr_commands;
bbd56171
IS
3149 int symtab_idx = -1;
3150 int dysymtab_idx = -1;
c9ffd2ea
TG
3151 int main_idx = -1;
3152 unsigned int i;
154a1ee5 3153
c9ffd2ea
TG
3154 /* Return now if already built. */
3155 if (mdata->header.ncmds != 0)
3156 return TRUE;
154a1ee5 3157
7f307238 3158 /* Fill in the file type, if not already set. */
7f307238 3159 if (mdata->header.filetype == 0)
154a1ee5 3160 {
7f307238 3161 if (abfd->flags & EXEC_P)
07d6d2b8 3162 mdata->header.filetype = BFD_MACH_O_MH_EXECUTE;
7f307238 3163 else if (abfd->flags & DYNAMIC)
07d6d2b8 3164 mdata->header.filetype = BFD_MACH_O_MH_DYLIB;
7f307238 3165 else
07d6d2b8 3166 mdata->header.filetype = BFD_MACH_O_MH_OBJECT;
154a1ee5 3167 }
7f307238
IS
3168
3169 /* If hasn't already been done, flatten sections list, and sort
3170 if/when required. Must be done before the symbol table is adjusted,
3171 since that depends on properly numbered sections. */
3172 if (mdata->nsects == 0 || mdata->sections == NULL)
3173 if (! bfd_mach_o_mangle_sections (abfd, mdata))
3174 return FALSE;
3175
3176 /* Order the symbol table, fill-in/check mach-o specific fields and
3177 partition out any indirect symbols. */
b22161d6 3178 if (!bfd_mach_o_mangle_symbols (abfd))
7f307238
IS
3179 return FALSE;
3180
c9ffd2ea
TG
3181 /* Segment commands. */
3182 if (mdata->header.filetype == BFD_MACH_O_MH_OBJECT)
3183 {
3184 /* Only one segment for all the sections. But the segment is
3185 optional if there is no sections. */
3186 nbr_segcmd = (mdata->nsects > 0) ? 1 : 0;
3187 }
3188 else
3189 {
3190 bfd_mach_o_section *prev_sect = NULL;
bbd56171 3191
c9ffd2ea
TG
3192 /* One pagezero segment and one linkedit segment. */
3193 nbr_segcmd = 2;
bbd56171 3194
c9ffd2ea
TG
3195 /* Create one segment for associated segment name in sections.
3196 Assume that sections with the same segment name are consecutive. */
3197 for (i = 0; i < mdata->nsects; i++)
3198 {
3199 bfd_mach_o_section *this_sect = mdata->sections[i];
bbd56171 3200
c9ffd2ea
TG
3201 if (prev_sect == NULL
3202 || strcmp (prev_sect->segname, this_sect->segname) != 0)
3203 {
3204 nbr_segcmd++;
3205 prev_sect = this_sect;
3206 }
3207 }
154a1ee5 3208 }
154a1ee5 3209
c9ffd2ea
TG
3210 nbr_commands = nbr_segcmd;
3211
3212 /* One command for the symbol table (only if there are symbols. */
7f307238 3213 if (bfd_get_symcount (abfd) > 0)
c9ffd2ea 3214 symtab_idx = nbr_commands++;
c2f09c75 3215
bbd56171
IS
3216 /* FIXME:
3217 This is a rather crude test for whether we should build a dysymtab. */
3218 if (bfd_mach_o_should_emit_dysymtab ()
3219 && bfd_get_symcount (abfd))
3220 {
bbd56171
IS
3221 /* If there should be a case where a dysymtab could be emitted without
3222 a symtab (seems improbable), this would need amending. */
c9ffd2ea 3223 dysymtab_idx = nbr_commands++;
bbd56171 3224 }
154a1ee5 3225
c9ffd2ea
TG
3226 /* Add an entry point command. */
3227 if (mdata->header.filetype == BFD_MACH_O_MH_EXECUTE
3228 && bfd_get_start_address (abfd) != 0)
3229 main_idx = nbr_commands++;
c2f09c75 3230
bbd56171 3231 /* Well, we must have a header, at least. */
c9ffd2ea 3232 mdata->filelen = wide ? BFD_MACH_O_HEADER_64_SIZE : BFD_MACH_O_HEADER_SIZE;
f1bde64c 3233
bbd56171 3234 /* A bit unusual, but no content is valid;
7f307238 3235 as -n empty.s -o empty.o */
c9ffd2ea
TG
3236 if (nbr_commands == 0)
3237 {
3238 /* Layout commands (well none...) and set headers command fields. */
86eafac0 3239 return bfd_mach_o_layout_commands (mdata);
c9ffd2ea 3240 }
f1bde64c 3241
c9ffd2ea
TG
3242 /* Create commands for segments (and symtabs), prepend them. */
3243 commands = bfd_zalloc (abfd, nbr_commands * sizeof (bfd_mach_o_load_command));
3244 if (commands == NULL)
7f307238 3245 return FALSE;
c9ffd2ea
TG
3246 for (i = 0; i < nbr_commands - 1; i++)
3247 commands[i].next = &commands[i + 1];
3248 commands[nbr_commands - 1].next = mdata->first_command;
3249 if (mdata->first_command == NULL)
3250 mdata->last_command = &commands[nbr_commands - 1];
3251 mdata->first_command = &commands[0];
3252
3253 if (mdata->header.filetype == BFD_MACH_O_MH_OBJECT && nbr_segcmd != 0)
3254 {
3255 /* For object file, there is only one segment. */
3256 bfd_mach_o_init_segment (mdata, &commands[0], "", mdata->nsects);
3257 }
3258 else if (nbr_segcmd != 0)
68ffbac6 3259 {
c9ffd2ea 3260 bfd_mach_o_load_command *cmd;
7f307238 3261
c9ffd2ea 3262 BFD_ASSERT (nbr_segcmd >= 2);
7f307238 3263
c9ffd2ea
TG
3264 /* The pagezero. */
3265 cmd = &commands[0];
3266 bfd_mach_o_init_segment (mdata, cmd, "__PAGEZERO", 0);
3267
3268 /* Segments from sections. */
3269 cmd++;
3270 for (i = 0; i < mdata->nsects;)
7f307238 3271 {
c9ffd2ea
TG
3272 const char *segname = mdata->sections[i]->segname;
3273 unsigned int nbr_sect = 1;
3274
3275 /* Count number of sections for this segment. */
3276 for (i++; i < mdata->nsects; i++)
3277 if (strcmp (mdata->sections[i]->segname, segname) == 0)
3278 nbr_sect++;
3279 else
3280 break;
3281
3282 bfd_mach_o_init_segment (mdata, cmd, segname, nbr_sect);
3283 cmd++;
7f307238 3284 }
bbd56171 3285
c9ffd2ea
TG
3286 /* The linkedit. */
3287 bfd_mach_o_init_segment (mdata, cmd, "__LINKEDIT", 0);
7f307238 3288 }
f1bde64c 3289
bbd56171 3290 if (symtab_idx >= 0)
7f307238
IS
3291 {
3292 /* Init symtab command. */
c9ffd2ea 3293 bfd_mach_o_load_command *cmd = &commands[symtab_idx];
68ffbac6 3294
bbd56171 3295 cmd->type = BFD_MACH_O_LC_SYMTAB;
bbd56171 3296 cmd->type_required = FALSE;
7f307238 3297 }
154a1ee5 3298
bbd56171
IS
3299 /* If required, setup symtab command, see comment above about the quality
3300 of this test. */
3301 if (dysymtab_idx >= 0)
7f307238 3302 {
c9ffd2ea 3303 bfd_mach_o_load_command *cmd = &commands[dysymtab_idx];
bbd56171 3304
7f307238 3305 cmd->type = BFD_MACH_O_LC_DYSYMTAB;
7f307238 3306 cmd->type_required = FALSE;
c9ffd2ea
TG
3307 }
3308
3309 /* Create the main command. */
3310 if (main_idx >= 0)
3311 {
3312 bfd_mach_o_load_command *cmd = &commands[main_idx];
7f307238 3313
c9ffd2ea
TG
3314 cmd->type = BFD_MACH_O_LC_MAIN;
3315 cmd->type_required = TRUE;
3316
3317 cmd->command.main.entryoff = 0;
3318 cmd->command.main.stacksize = 0;
154a1ee5 3319 }
154a1ee5 3320
c9ffd2ea 3321 /* Layout commands. */
86eafac0
NC
3322 if (! bfd_mach_o_layout_commands (mdata))
3323 return FALSE;
c9ffd2ea 3324
7f307238
IS
3325 /* So, now we have sized the commands and the filelen set to that.
3326 Now we can build the segment command and set the section file offsets. */
c9ffd2ea
TG
3327 if (mdata->header.filetype == BFD_MACH_O_MH_OBJECT)
3328 {
3329 for (i = 0; i < nbr_segcmd; i++)
3330 if (!bfd_mach_o_build_obj_seg_command
3331 (abfd, &commands[i].command.segment))
3332 return FALSE;
3333 }
3334 else
3335 {
3336 bfd_vma maxvma = 0;
7f307238 3337
c9ffd2ea
TG
3338 /* Skip pagezero and linkedit segments. */
3339 for (i = 1; i < nbr_segcmd - 1; i++)
3340 {
3341 bfd_mach_o_segment_command *seg = &commands[i].command.segment;
3342
3343 if (!bfd_mach_o_build_exec_seg_command (abfd, seg))
3344 return FALSE;
3345
3346 if (seg->vmaddr + seg->vmsize > maxvma)
3347 maxvma = seg->vmaddr + seg->vmsize;
3348 }
3349
3350 /* Set the size of __PAGEZERO. */
3351 commands[0].command.segment.vmsize =
3352 commands[1].command.segment.vmaddr;
3353
3354 /* Set the vma and fileoff of __LINKEDIT. */
3355 commands[nbr_segcmd - 1].command.segment.vmaddr = maxvma;
3356 commands[nbr_segcmd - 1].command.segment.fileoff = mdata->filelen;
3357
3358 /* Set entry point (once segments have been laid out). */
3359 if (main_idx >= 0)
3360 commands[main_idx].command.main.entryoff =
3361 bfd_get_start_address (abfd) - commands[1].command.segment.vmaddr;
3362 }
7f307238 3363
154a1ee5
TG
3364 return TRUE;
3365}
3366
3367/* Set the contents of a section. */
3368
3369bfd_boolean
3370bfd_mach_o_set_section_contents (bfd *abfd,
3371 asection *section,
3372 const void * location,
3373 file_ptr offset,
3374 bfd_size_type count)
3375{
3376 file_ptr pos;
3377
7f307238
IS
3378 /* Trying to write the first section contents will trigger the creation of
3379 the load commands if they are not already present. */
c9ffd2ea 3380 if (!abfd->output_has_begun && !bfd_mach_o_build_commands (abfd))
154a1ee5
TG
3381 return FALSE;
3382
3383 if (count == 0)
3384 return TRUE;
3385
3386 pos = section->filepos + offset;
3387 if (bfd_seek (abfd, pos, SEEK_SET) != 0
3388 || bfd_bwrite (location, count, abfd) != count)
3389 return FALSE;
3390
3391 return TRUE;
3392}
3393
3394int
116c20d2 3395bfd_mach_o_sizeof_headers (bfd *a ATTRIBUTE_UNUSED,
a6b96beb 3396 struct bfd_link_info *info ATTRIBUTE_UNUSED)
3af9a47b
NC
3397{
3398 return 0;
3399}
3400
3401/* Make an empty symbol. This is required only because
3402 bfd_make_section_anyway wants to create a symbol for the section. */
3403
154a1ee5 3404asymbol *
116c20d2 3405bfd_mach_o_make_empty_symbol (bfd *abfd)
3af9a47b 3406{
d3ce72d0
NC
3407 asymbol *new_symbol;
3408
3409 new_symbol = bfd_zalloc (abfd, sizeof (bfd_mach_o_asymbol));
3410 if (new_symbol == NULL)
3411 return new_symbol;
3412 new_symbol->the_bfd = abfd;
b22161d6 3413 new_symbol->udata.i = SYM_MACHO_FIELDS_UNSET;
d3ce72d0 3414 return new_symbol;
3af9a47b
NC
3415}
3416
154a1ee5 3417static bfd_boolean
47daa70f 3418bfd_mach_o_read_header (bfd *abfd, file_ptr hdr_off, bfd_mach_o_header *header)
3af9a47b 3419{
46d1c23b 3420 struct mach_o_header_external raw;
1e8a024a 3421 unsigned int size;
edeb6e24 3422 bfd_vma (*get32) (const void *) = NULL;
3af9a47b 3423
1e8a024a 3424 /* Just read the magic number. */
47daa70f 3425 if (bfd_seek (abfd, hdr_off, SEEK_SET) != 0
46d1c23b 3426 || bfd_bread (raw.magic, sizeof (raw.magic), abfd) != 4)
154a1ee5 3427 return FALSE;
3af9a47b 3428
46d1c23b 3429 if (bfd_getb32 (raw.magic) == BFD_MACH_O_MH_MAGIC)
3af9a47b
NC
3430 {
3431 header->byteorder = BFD_ENDIAN_BIG;
154a1ee5 3432 header->magic = BFD_MACH_O_MH_MAGIC;
1e8a024a 3433 header->version = 1;
3af9a47b
NC
3434 get32 = bfd_getb32;
3435 }
46d1c23b 3436 else if (bfd_getl32 (raw.magic) == BFD_MACH_O_MH_MAGIC)
3af9a47b 3437 {
a95a4550 3438 header->byteorder = BFD_ENDIAN_LITTLE;
154a1ee5 3439 header->magic = BFD_MACH_O_MH_MAGIC;
1e8a024a
TG
3440 header->version = 1;
3441 get32 = bfd_getl32;
3442 }
46d1c23b 3443 else if (bfd_getb32 (raw.magic) == BFD_MACH_O_MH_MAGIC_64)
1e8a024a
TG
3444 {
3445 header->byteorder = BFD_ENDIAN_BIG;
154a1ee5 3446 header->magic = BFD_MACH_O_MH_MAGIC_64;
1e8a024a
TG
3447 header->version = 2;
3448 get32 = bfd_getb32;
3449 }
46d1c23b 3450 else if (bfd_getl32 (raw.magic) == BFD_MACH_O_MH_MAGIC_64)
1e8a024a
TG
3451 {
3452 header->byteorder = BFD_ENDIAN_LITTLE;
154a1ee5 3453 header->magic = BFD_MACH_O_MH_MAGIC_64;
1e8a024a 3454 header->version = 2;
3af9a47b
NC
3455 get32 = bfd_getl32;
3456 }
3457 else
3458 {
3459 header->byteorder = BFD_ENDIAN_UNKNOWN;
154a1ee5 3460 return FALSE;
3af9a47b 3461 }
a95a4550 3462
1e8a024a 3463 /* Once the size of the header is known, read the full header. */
c2f09c75 3464 size = mach_o_wide_p (header) ?
154a1ee5 3465 BFD_MACH_O_HEADER_64_SIZE : BFD_MACH_O_HEADER_SIZE;
1e8a024a 3466
47daa70f 3467 if (bfd_seek (abfd, hdr_off, SEEK_SET) != 0
46d1c23b 3468 || bfd_bread (&raw, size, abfd) != size)
154a1ee5 3469 return FALSE;
1e8a024a 3470
46d1c23b
TG
3471 header->cputype = (*get32) (raw.cputype);
3472 header->cpusubtype = (*get32) (raw.cpusubtype);
3473 header->filetype = (*get32) (raw.filetype);
3474 header->ncmds = (*get32) (raw.ncmds);
3475 header->sizeofcmds = (*get32) (raw.sizeofcmds);
3476 header->flags = (*get32) (raw.flags);
3af9a47b 3477
c2f09c75 3478 if (mach_o_wide_p (header))
46d1c23b 3479 header->reserved = (*get32) (raw.reserved);
facf03f2
TG
3480 else
3481 header->reserved = 0;
1e8a024a 3482
154a1ee5 3483 return TRUE;
3af9a47b
NC
3484}
3485
f1bde64c
TG
3486bfd_boolean
3487bfd_mach_o_new_section_hook (bfd *abfd, asection *sec)
3488{
3489 bfd_mach_o_section *s;
a4551119 3490 unsigned bfdalign = bfd_get_section_alignment (abfd, sec);
f1bde64c
TG
3491
3492 s = bfd_mach_o_get_mach_o_section (sec);
3493 if (s == NULL)
3494 {
3495 flagword bfd_flags;
a4551119 3496 static const mach_o_section_name_xlat * xlat;
f1bde64c
TG
3497
3498 s = (bfd_mach_o_section *) bfd_zalloc (abfd, sizeof (*s));
3499 if (s == NULL)
3500 return FALSE;
3501 sec->used_by_bfd = s;
3502 s->bfdsection = sec;
3503
a4551119
TG
3504 /* Create the Darwin seg/sect name pair from the bfd name.
3505 If this is a canonical name for which a specific paiting exists
3506 there will also be defined flags, type, attribute and alignment
3507 values. */
3508 xlat = bfd_mach_o_convert_section_name_to_mach_o (abfd, sec, s);
3509 if (xlat != NULL)
3510 {
3511 s->flags = xlat->macho_sectype | xlat->macho_secattr;
68ffbac6 3512 s->align = xlat->sectalign > bfdalign ? xlat->sectalign
a4551119 3513 : bfdalign;
a253d456 3514 (void) bfd_set_section_alignment (abfd, sec, s->align);
a4551119
TG
3515 bfd_flags = bfd_get_section_flags (abfd, sec);
3516 if (bfd_flags == SEC_NO_FLAGS)
3517 bfd_set_section_flags (abfd, sec, xlat->bfd_flags);
3518 }
f1bde64c 3519 else
a4551119
TG
3520 /* Create default flags. */
3521 bfd_mach_o_set_section_flags_from_bfd (abfd, sec);
f1bde64c
TG
3522 }
3523
3524 return _bfd_generic_new_section_hook (abfd, sec);
3525}
3526
3527static void
3528bfd_mach_o_init_section_from_mach_o (bfd *abfd, asection *sec,
07d6d2b8 3529 unsigned long prot)
3af9a47b 3530{
117ed4f8 3531 flagword flags;
f1bde64c 3532 bfd_mach_o_section *section;
3af9a47b 3533
f1bde64c
TG
3534 flags = bfd_get_section_flags (abfd, sec);
3535 section = bfd_mach_o_get_mach_o_section (sec);
3af9a47b 3536
a4551119
TG
3537 /* TODO: see if we should use the xlat system for doing this by
3538 preference and fall back to this for unknown sections. */
3539
8462aec7 3540 if (flags == SEC_NO_FLAGS)
ef17cb22 3541 {
8462aec7
TG
3542 /* Try to guess flags. */
3543 if (section->flags & BFD_MACH_O_S_ATTR_DEBUG)
07d6d2b8 3544 flags = SEC_DEBUGGING;
8462aec7 3545 else
07d6d2b8
AM
3546 {
3547 flags = SEC_ALLOC;
3548 if ((section->flags & BFD_MACH_O_SECTION_TYPE_MASK)
3549 != BFD_MACH_O_S_ZEROFILL)
3550 {
3551 flags |= SEC_LOAD;
3552 if (prot & BFD_MACH_O_PROT_EXECUTE)
3553 flags |= SEC_CODE;
3554 if (prot & BFD_MACH_O_PROT_WRITE)
3555 flags |= SEC_DATA;
3556 else if (prot & BFD_MACH_O_PROT_READ)
3557 flags |= SEC_READONLY;
3558 }
3559 }
ef17cb22 3560 }
15e1c58a
TG
3561 else
3562 {
8462aec7 3563 if ((flags & SEC_DEBUGGING) == 0)
07d6d2b8 3564 flags |= SEC_ALLOC;
15e1c58a 3565 }
8462aec7
TG
3566
3567 if (section->offset != 0)
3568 flags |= SEC_HAS_CONTENTS;
92bc0e80
TG
3569 if (section->nreloc != 0)
3570 flags |= SEC_RELOC;
3571
f1bde64c
TG
3572 bfd_set_section_flags (abfd, sec, flags);
3573
3574 sec->vma = section->addr;
3575 sec->lma = section->addr;
3576 sec->size = section->size;
3577 sec->filepos = section->offset;
3578 sec->alignment_power = section->align;
3579 sec->segment_mark = 0;
3580 sec->reloc_count = section->nreloc;
3581 sec->rel_filepos = section->reloff;
3582}
3583
3584static asection *
3585bfd_mach_o_make_bfd_section (bfd *abfd,
07d6d2b8
AM
3586 const unsigned char *segname,
3587 const unsigned char *sectname)
f1bde64c
TG
3588{
3589 const char *sname;
3590 flagword flags;
a95a4550 3591
f1bde64c
TG
3592 bfd_mach_o_convert_section_name_to_bfd
3593 (abfd, (const char *)segname, (const char *)sectname, &sname, &flags);
3594 if (sname == NULL)
3595 return NULL;
3af9a47b 3596
f1bde64c 3597 return bfd_make_section_anyway_with_flags (abfd, sname, flags);
3af9a47b
NC
3598}
3599
f1bde64c 3600static asection *
47daa70f 3601bfd_mach_o_read_section_32 (bfd *abfd, unsigned long prot)
3af9a47b 3602{
46d1c23b 3603 struct mach_o_section_32_external raw;
f1bde64c
TG
3604 asection *sec;
3605 bfd_mach_o_section *section;
3af9a47b 3606
47daa70f
TG
3607 if (bfd_bread (&raw, BFD_MACH_O_SECTION_SIZE, abfd)
3608 != BFD_MACH_O_SECTION_SIZE)
f1bde64c 3609 return NULL;
a95a4550 3610
5a5cbf72 3611 sec = bfd_mach_o_make_bfd_section (abfd, raw.segname, raw.sectname);
f1bde64c
TG
3612 if (sec == NULL)
3613 return NULL;
3614
3615 section = bfd_mach_o_get_mach_o_section (sec);
3616 memcpy (section->segname, raw.segname, sizeof (raw.segname));
3617 section->segname[BFD_MACH_O_SEGNAME_SIZE] = 0;
3618 memcpy (section->sectname, raw.sectname, sizeof (raw.sectname));
69499dca 3619 section->sectname[BFD_MACH_O_SECTNAME_SIZE] = 0;
46d1c23b
TG
3620 section->addr = bfd_h_get_32 (abfd, raw.addr);
3621 section->size = bfd_h_get_32 (abfd, raw.size);
3622 section->offset = bfd_h_get_32 (abfd, raw.offset);
3623 section->align = bfd_h_get_32 (abfd, raw.align);
c86934ce
NC
3624 /* PR 17512: file: 0017eb76. */
3625 if (section->align > 64)
3626 {
4eca0228 3627 _bfd_error_handler
d42c267e 3628 (_("bfd_mach_o_read_section_32: overlarge alignment value: %#lx, "
4eca0228 3629 "using 32 instead"), section->align);
c86934ce
NC
3630 section->align = 32;
3631 }
46d1c23b
TG
3632 section->reloff = bfd_h_get_32 (abfd, raw.reloff);
3633 section->nreloc = bfd_h_get_32 (abfd, raw.nreloc);
3634 section->flags = bfd_h_get_32 (abfd, raw.flags);
3635 section->reserved1 = bfd_h_get_32 (abfd, raw.reserved1);
3636 section->reserved2 = bfd_h_get_32 (abfd, raw.reserved2);
1e8a024a 3637 section->reserved3 = 0;
1e8a024a 3638
f1bde64c 3639 bfd_mach_o_init_section_from_mach_o (abfd, sec, prot);
1e8a024a 3640
f1bde64c 3641 return sec;
1e8a024a
TG
3642}
3643
f1bde64c 3644static asection *
47daa70f 3645bfd_mach_o_read_section_64 (bfd *abfd, unsigned long prot)
1e8a024a 3646{
46d1c23b 3647 struct mach_o_section_64_external raw;
f1bde64c
TG
3648 asection *sec;
3649 bfd_mach_o_section *section;
1e8a024a 3650
47daa70f
TG
3651 if (bfd_bread (&raw, BFD_MACH_O_SECTION_64_SIZE, abfd)
3652 != BFD_MACH_O_SECTION_64_SIZE)
f1bde64c
TG
3653 return NULL;
3654
5a5cbf72 3655 sec = bfd_mach_o_make_bfd_section (abfd, raw.segname, raw.sectname);
f1bde64c
TG
3656 if (sec == NULL)
3657 return NULL;
1e8a024a 3658
f1bde64c
TG
3659 section = bfd_mach_o_get_mach_o_section (sec);
3660 memcpy (section->segname, raw.segname, sizeof (raw.segname));
3661 section->segname[BFD_MACH_O_SEGNAME_SIZE] = 0;
3662 memcpy (section->sectname, raw.sectname, sizeof (raw.sectname));
69499dca 3663 section->sectname[BFD_MACH_O_SECTNAME_SIZE] = 0;
46d1c23b
TG
3664 section->addr = bfd_h_get_64 (abfd, raw.addr);
3665 section->size = bfd_h_get_64 (abfd, raw.size);
3666 section->offset = bfd_h_get_32 (abfd, raw.offset);
3667 section->align = bfd_h_get_32 (abfd, raw.align);
c86934ce
NC
3668 if (section->align > 64)
3669 {
4eca0228 3670 _bfd_error_handler
d42c267e 3671 (_("bfd_mach_o_read_section_64: overlarge alignment value: %#lx, "
4eca0228 3672 "using 32 instead"), section->align);
c86934ce
NC
3673 section->align = 32;
3674 }
46d1c23b
TG
3675 section->reloff = bfd_h_get_32 (abfd, raw.reloff);
3676 section->nreloc = bfd_h_get_32 (abfd, raw.nreloc);
3677 section->flags = bfd_h_get_32 (abfd, raw.flags);
3678 section->reserved1 = bfd_h_get_32 (abfd, raw.reserved1);
3679 section->reserved2 = bfd_h_get_32 (abfd, raw.reserved2);
3680 section->reserved3 = bfd_h_get_32 (abfd, raw.reserved3);
3af9a47b 3681
f1bde64c 3682 bfd_mach_o_init_section_from_mach_o (abfd, sec, prot);
3af9a47b 3683
f1bde64c 3684 return sec;
3af9a47b
NC
3685}
3686
f1bde64c 3687static asection *
47daa70f 3688bfd_mach_o_read_section (bfd *abfd, unsigned long prot, unsigned int wide)
1e8a024a
TG
3689{
3690 if (wide)
47daa70f 3691 return bfd_mach_o_read_section_64 (abfd, prot);
1e8a024a 3692 else
47daa70f 3693 return bfd_mach_o_read_section_32 (abfd, prot);
1e8a024a
TG
3694}
3695
afbb9e17 3696static bfd_boolean
ab273af8 3697bfd_mach_o_read_symtab_symbol (bfd *abfd,
07d6d2b8
AM
3698 bfd_mach_o_symtab_command *sym,
3699 bfd_mach_o_asymbol *s,
3700 unsigned long i)
3af9a47b 3701{
046b007d 3702 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
c2f09c75 3703 unsigned int wide = mach_o_wide_p (&mdata->header);
046b007d
TG
3704 unsigned int symwidth =
3705 wide ? BFD_MACH_O_NLIST_64_SIZE : BFD_MACH_O_NLIST_SIZE;
92bc0e80 3706 unsigned int symoff = sym->symoff + (i * symwidth);
46d1c23b 3707 struct mach_o_nlist_64_external raw;
3af9a47b
NC
3708 unsigned char type = -1;
3709 unsigned char section = -1;
3710 short desc = -1;
1e8a024a 3711 symvalue value = -1;
3af9a47b
NC
3712 unsigned long stroff = -1;
3713 unsigned int symtype = -1;
3714
3715 BFD_ASSERT (sym->strtab != NULL);
3716
c2f09c75 3717 if (bfd_seek (abfd, symoff, SEEK_SET) != 0
46d1c23b 3718 || bfd_bread (&raw, symwidth, abfd) != symwidth)
3af9a47b 3719 {
4eca0228 3720 _bfd_error_handler
695344c0 3721 /* xgettext:c-format */
07d6d2b8
AM
3722 (_("bfd_mach_o_read_symtab_symbol: unable to read %d bytes at %u"),
3723 symwidth, symoff);
afbb9e17 3724 return FALSE;
3af9a47b
NC
3725 }
3726
46d1c23b
TG
3727 stroff = bfd_h_get_32 (abfd, raw.n_strx);
3728 type = bfd_h_get_8 (abfd, raw.n_type);
c2f09c75 3729 symtype = type & BFD_MACH_O_N_TYPE;
46d1c23b
TG
3730 section = bfd_h_get_8 (abfd, raw.n_sect);
3731 desc = bfd_h_get_16 (abfd, raw.n_desc);
1e8a024a 3732 if (wide)
46d1c23b 3733 value = bfd_h_get_64 (abfd, raw.n_value);
1e8a024a 3734 else
46d1c23b 3735 value = bfd_h_get_32 (abfd, raw.n_value);
3af9a47b
NC
3736
3737 if (stroff >= sym->strsize)
3738 {
4eca0228 3739 _bfd_error_handler
695344c0 3740 /* xgettext:c-format */
07d6d2b8
AM
3741 (_("bfd_mach_o_read_symtab_symbol: name out of range (%lu >= %u)"),
3742 stroff,
3743 sym->strsize);
afbb9e17 3744 return FALSE;
3af9a47b
NC
3745 }
3746
92bc0e80
TG
3747 s->symbol.the_bfd = abfd;
3748 s->symbol.name = sym->strtab + stroff;
3749 s->symbol.value = value;
3750 s->symbol.flags = 0x0;
b22161d6 3751 s->symbol.udata.i = i;
92bc0e80
TG
3752 s->n_type = type;
3753 s->n_sect = section;
3754 s->n_desc = desc;
3af9a47b
NC
3755
3756 if (type & BFD_MACH_O_N_STAB)
3757 {
92bc0e80
TG
3758 s->symbol.flags |= BSF_DEBUGGING;
3759 s->symbol.section = bfd_und_section_ptr;
15e1c58a
TG
3760 switch (type)
3761 {
3762 case N_FUN:
3763 case N_STSYM:
3764 case N_LCSYM:
3765 case N_BNSYM:
3766 case N_SLINE:
3767 case N_ENSYM:
3768 case N_ECOMM:
3769 case N_ECOML:
3770 case N_GSYM:
3771 if ((section > 0) && (section <= mdata->nsects))
3772 {
92bc0e80
TG
3773 s->symbol.section = mdata->sections[section - 1]->bfdsection;
3774 s->symbol.value =
07d6d2b8 3775 s->symbol.value - mdata->sections[section - 1]->addr;
15e1c58a
TG
3776 }
3777 break;
3778 }
3af9a47b
NC
3779 }
3780 else
3781 {
b22161d6 3782 if (type & (BFD_MACH_O_N_PEXT | BFD_MACH_O_N_EXT))
92bc0e80 3783 s->symbol.flags |= BSF_GLOBAL;
b22161d6 3784 else
92bc0e80 3785 s->symbol.flags |= BSF_LOCAL;
3af9a47b
NC
3786
3787 switch (symtype)
3788 {
3789 case BFD_MACH_O_N_UNDF:
07d6d2b8
AM
3790 if (type == (BFD_MACH_O_N_UNDF | BFD_MACH_O_N_EXT)
3791 && s->symbol.value != 0)
3792 {
3793 /* A common symbol. */
3794 s->symbol.section = bfd_com_section_ptr;
3795 s->symbol.flags = BSF_NO_FLAGS;
3796 }
3797 else
3798 {
3799 s->symbol.section = bfd_und_section_ptr;
3800 if (s->n_desc & BFD_MACH_O_N_WEAK_REF)
3801 s->symbol.flags |= BSF_WEAK;
3802 }
3af9a47b
NC
3803 break;
3804 case BFD_MACH_O_N_PBUD:
92bc0e80 3805 s->symbol.section = bfd_und_section_ptr;
3af9a47b
NC
3806 break;
3807 case BFD_MACH_O_N_ABS:
92bc0e80 3808 s->symbol.section = bfd_abs_section_ptr;
3af9a47b
NC
3809 break;
3810 case BFD_MACH_O_N_SECT:
3811 if ((section > 0) && (section <= mdata->nsects))
3812 {
92bc0e80
TG
3813 s->symbol.section = mdata->sections[section - 1]->bfdsection;
3814 s->symbol.value =
07d6d2b8 3815 s->symbol.value - mdata->sections[section - 1]->addr;
3af9a47b
NC
3816 }
3817 else
3818 {
3819 /* Mach-O uses 0 to mean "no section"; not an error. */
3820 if (section != 0)
3821 {
4eca0228 3822 _bfd_error_handler
695344c0 3823 /* xgettext:c-format */
4eca0228
AM
3824 (_("bfd_mach_o_read_symtab_symbol: "
3825 "symbol \"%s\" specified invalid section %d (max %lu): "
3826 "setting to undefined"),
3827 s->symbol.name, section, mdata->nsects);
3af9a47b 3828 }
92bc0e80 3829 s->symbol.section = bfd_und_section_ptr;
3af9a47b
NC
3830 }
3831 break;
3832 case BFD_MACH_O_N_INDR:
0596a831
TG
3833 /* FIXME: we don't follow the BFD convention as this indirect symbol
3834 won't be followed by the referenced one. This looks harmless
3835 unless we start using the linker. */
3836 s->symbol.flags |= BSF_INDIRECT;
3837 s->symbol.section = bfd_ind_section_ptr;
3838 s->symbol.value = 0;
3af9a47b
NC
3839 break;
3840 default:
4eca0228 3841 _bfd_error_handler
695344c0 3842 /* xgettext:c-format */
4eca0228
AM
3843 (_("bfd_mach_o_read_symtab_symbol: "
3844 "symbol \"%s\" specified invalid type field 0x%x: "
3845 "setting to undefined"), s->symbol.name, symtype);
92bc0e80 3846 s->symbol.section = bfd_und_section_ptr;
3af9a47b
NC
3847 break;
3848 }
3849 }
3850
afbb9e17 3851 return TRUE;
3af9a47b
NC
3852}
3853
c5012cd8 3854bfd_boolean
ab273af8 3855bfd_mach_o_read_symtab_strtab (bfd *abfd)
3af9a47b 3856{
046b007d
TG
3857 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3858 bfd_mach_o_symtab_command *sym = mdata->symtab;
3859
3860 /* Fail if there is no symtab. */
3861 if (sym == NULL)
afbb9e17 3862 return FALSE;
046b007d
TG
3863
3864 /* Success if already loaded. */
3865 if (sym->strtab)
afbb9e17 3866 return TRUE;
3af9a47b
NC
3867
3868 if (abfd->flags & BFD_IN_MEMORY)
3869 {
3870 struct bfd_in_memory *b;
3871
3872 b = (struct bfd_in_memory *) abfd->iostream;
3873
3874 if ((sym->stroff + sym->strsize) > b->size)
3875 {
3876 bfd_set_error (bfd_error_file_truncated);
afbb9e17 3877 return FALSE;
3af9a47b 3878 }
f075ee0c 3879 sym->strtab = (char *) b->buffer + sym->stroff;
3af9a47b 3880 }
046b007d 3881 else
3af9a47b 3882 {
8bdf0be1
NC
3883 /* See PR 21840 for a reproducer. */
3884 if ((sym->strsize + 1) == 0)
3885 return FALSE;
e7287c7f 3886 sym->strtab = bfd_alloc (abfd, sym->strsize + 1);
046b007d 3887 if (sym->strtab == NULL)
07d6d2b8 3888 return FALSE;
046b007d
TG
3889
3890 if (bfd_seek (abfd, sym->stroff, SEEK_SET) != 0
07d6d2b8
AM
3891 || bfd_bread (sym->strtab, sym->strsize, abfd) != sym->strsize)
3892 {
a1165289
NC
3893 /* PR 17512: file: 10888-1609-0.004. */
3894 bfd_release (abfd, sym->strtab);
3895 sym->strtab = NULL;
07d6d2b8
AM
3896 bfd_set_error (bfd_error_file_truncated);
3897 return FALSE;
3898 }
e7287c7f
NC
3899 /* Zero terminate the string table. */
3900 sym->strtab[sym->strsize] = 0;
3af9a47b
NC
3901 }
3902
afbb9e17 3903 return TRUE;
3af9a47b
NC
3904}
3905
c5012cd8 3906bfd_boolean
ab273af8 3907bfd_mach_o_read_symtab_symbols (bfd *abfd)
3af9a47b 3908{
046b007d
TG
3909 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3910 bfd_mach_o_symtab_command *sym = mdata->symtab;
3af9a47b 3911 unsigned long i;
3af9a47b 3912
092d27ff 3913 if (sym == NULL || sym->symbols)
0a9d414a
NC
3914 /* Return now if there are no symbols or if already loaded. */
3915 return TRUE;
046b007d 3916
64d29018 3917 sym->symbols = bfd_alloc2 (abfd, sym->nsyms, sizeof (bfd_mach_o_asymbol));
3af9a47b
NC
3918 if (sym->symbols == NULL)
3919 {
4eca0228
AM
3920 _bfd_error_handler (_("bfd_mach_o_read_symtab_symbols: "
3921 "unable to allocate memory for symbols"));
64d29018 3922 sym->nsyms = 0;
afbb9e17 3923 return FALSE;
3af9a47b 3924 }
a95a4550 3925
afbb9e17 3926 if (!bfd_mach_o_read_symtab_strtab (abfd))
64d29018 3927 goto fail;
3af9a47b
NC
3928
3929 for (i = 0; i < sym->nsyms; i++)
64d29018
NC
3930 if (!bfd_mach_o_read_symtab_symbol (abfd, sym, &sym->symbols[i], i))
3931 goto fail;
a95a4550 3932
afbb9e17 3933 return TRUE;
64d29018
NC
3934
3935 fail:
3936 bfd_release (abfd, sym->symbols);
3937 sym->symbols = NULL;
3938 sym->nsyms = 0;
3939 return FALSE;
3af9a47b
NC
3940}
3941
3942static const char *
116c20d2 3943bfd_mach_o_i386_flavour_string (unsigned int flavour)
3af9a47b
NC
3944{
3945 switch ((int) flavour)
3946 {
15e1c58a
TG
3947 case BFD_MACH_O_x86_THREAD_STATE32: return "x86_THREAD_STATE32";
3948 case BFD_MACH_O_x86_FLOAT_STATE32: return "x86_FLOAT_STATE32";
3949 case BFD_MACH_O_x86_EXCEPTION_STATE32: return "x86_EXCEPTION_STATE32";
3950 case BFD_MACH_O_x86_THREAD_STATE64: return "x86_THREAD_STATE64";
3951 case BFD_MACH_O_x86_FLOAT_STATE64: return "x86_FLOAT_STATE64";
3952 case BFD_MACH_O_x86_EXCEPTION_STATE64: return "x86_EXCEPTION_STATE64";
3953 case BFD_MACH_O_x86_THREAD_STATE: return "x86_THREAD_STATE";
3954 case BFD_MACH_O_x86_FLOAT_STATE: return "x86_FLOAT_STATE";
3955 case BFD_MACH_O_x86_EXCEPTION_STATE: return "x86_EXCEPTION_STATE";
3956 case BFD_MACH_O_x86_DEBUG_STATE32: return "x86_DEBUG_STATE32";
3957 case BFD_MACH_O_x86_DEBUG_STATE64: return "x86_DEBUG_STATE64";
3958 case BFD_MACH_O_x86_DEBUG_STATE: return "x86_DEBUG_STATE";
b32e07d7 3959 case BFD_MACH_O_x86_THREAD_STATE_NONE: return "x86_THREAD_STATE_NONE";
3af9a47b
NC
3960 default: return "UNKNOWN";
3961 }
3962}
3963
3964static const char *
116c20d2 3965bfd_mach_o_ppc_flavour_string (unsigned int flavour)
3af9a47b
NC
3966{
3967 switch ((int) flavour)
3968 {
b32e07d7
TG
3969 case BFD_MACH_O_PPC_THREAD_STATE: return "PPC_THREAD_STATE";
3970 case BFD_MACH_O_PPC_FLOAT_STATE: return "PPC_FLOAT_STATE";
3971 case BFD_MACH_O_PPC_EXCEPTION_STATE: return "PPC_EXCEPTION_STATE";
3972 case BFD_MACH_O_PPC_VECTOR_STATE: return "PPC_VECTOR_STATE";
3973 case BFD_MACH_O_PPC_THREAD_STATE64: return "PPC_THREAD_STATE64";
3974 case BFD_MACH_O_PPC_EXCEPTION_STATE64: return "PPC_EXCEPTION_STATE64";
3af9a47b
NC
3975 default: return "UNKNOWN";
3976 }
3977}
3978
452216ab 3979static bfd_boolean
ab273af8 3980bfd_mach_o_read_dylinker (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b
NC
3981{
3982 bfd_mach_o_dylinker_command *cmd = &command->command.dylinker;
46d1c23b 3983 struct mach_o_str_command_external raw;
3af9a47b 3984 unsigned int nameoff;
4525c51a 3985 unsigned int namelen;
3af9a47b 3986
47daa70f 3987 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 3988 return FALSE;
3af9a47b 3989
46d1c23b 3990 nameoff = bfd_h_get_32 (abfd, raw.str);
3af9a47b 3991
4525c51a
TG
3992 cmd->name_offset = nameoff;
3993 namelen = command->len - nameoff;
3994 nameoff += command->offset;
3995 cmd->name_str = bfd_alloc (abfd, namelen);
b32e07d7 3996 if (cmd->name_str == NULL)
452216ab 3997 return FALSE;
4525c51a
TG
3998 if (bfd_seek (abfd, nameoff, SEEK_SET) != 0
3999 || bfd_bread (cmd->name_str, namelen, abfd) != namelen)
452216ab
TG
4000 return FALSE;
4001 return TRUE;
3af9a47b
NC
4002}
4003
452216ab 4004static bfd_boolean
ab273af8 4005bfd_mach_o_read_dylib (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b 4006{
47daa70f 4007 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b 4008 bfd_mach_o_dylib_command *cmd = &command->command.dylib;
46d1c23b 4009 struct mach_o_dylib_command_external raw;
3af9a47b 4010 unsigned int nameoff;
4525c51a 4011 unsigned int namelen;
3af9a47b 4012
046b007d
TG
4013 switch (command->type)
4014 {
4015 case BFD_MACH_O_LC_LOAD_DYLIB:
fbe383b9 4016 case BFD_MACH_O_LC_LAZY_LOAD_DYLIB:
046b007d 4017 case BFD_MACH_O_LC_LOAD_WEAK_DYLIB:
046b007d 4018 case BFD_MACH_O_LC_ID_DYLIB:
046b007d 4019 case BFD_MACH_O_LC_REEXPORT_DYLIB:
73017762 4020 case BFD_MACH_O_LC_LOAD_UPWARD_DYLIB:
046b007d
TG
4021 break;
4022 default:
b32e07d7 4023 BFD_FAIL ();
452216ab 4024 return FALSE;
046b007d 4025 }
3af9a47b 4026
47daa70f 4027 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4028 return FALSE;
3af9a47b 4029
46d1c23b
TG
4030 nameoff = bfd_h_get_32 (abfd, raw.name);
4031 cmd->timestamp = bfd_h_get_32 (abfd, raw.timestamp);
4032 cmd->current_version = bfd_h_get_32 (abfd, raw.current_version);
4033 cmd->compatibility_version = bfd_h_get_32 (abfd, raw.compatibility_version);
3af9a47b
NC
4034
4035 cmd->name_offset = command->offset + nameoff;
4525c51a
TG
4036 namelen = command->len - nameoff;
4037 cmd->name_str = bfd_alloc (abfd, namelen);
b32e07d7 4038 if (cmd->name_str == NULL)
452216ab 4039 return FALSE;
47daa70f 4040 if (bfd_seek (abfd, mdata->hdr_offset + cmd->name_offset, SEEK_SET) != 0
4525c51a 4041 || bfd_bread (cmd->name_str, namelen, abfd) != namelen)
452216ab
TG
4042 return FALSE;
4043 return TRUE;
3af9a47b
NC
4044}
4045
452216ab 4046static bfd_boolean
7a79c514 4047bfd_mach_o_read_prebound_dylib (bfd *abfd,
07d6d2b8 4048 bfd_mach_o_load_command *command)
3af9a47b 4049{
7a79c514
TG
4050 bfd_mach_o_prebound_dylib_command *cmd = &command->command.prebound_dylib;
4051 struct mach_o_prebound_dylib_command_external raw;
4052 unsigned int nameoff;
4053 unsigned int modoff;
4054 unsigned int str_len;
4055 unsigned char *str;
4056
47daa70f 4057 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4058 return FALSE;
7a79c514
TG
4059
4060 nameoff = bfd_h_get_32 (abfd, raw.name);
4061 modoff = bfd_h_get_32 (abfd, raw.linked_modules);
4062 if (nameoff > command->len || modoff > command->len)
452216ab 4063 return FALSE;
7a79c514
TG
4064
4065 str_len = command->len - sizeof (raw);
4066 str = bfd_alloc (abfd, str_len);
4067 if (str == NULL)
452216ab 4068 return FALSE;
7a79c514 4069 if (bfd_bread (str, str_len, abfd) != str_len)
452216ab 4070 return FALSE;
7a79c514
TG
4071
4072 cmd->name_offset = command->offset + nameoff;
4073 cmd->nmodules = bfd_h_get_32 (abfd, raw.nmodules);
4074 cmd->linked_modules_offset = command->offset + modoff;
4075
4076 cmd->name_str = (char *)str + nameoff - (sizeof (raw) + BFD_MACH_O_LC_SIZE);
4077 cmd->linked_modules = str + modoff - (sizeof (raw) + BFD_MACH_O_LC_SIZE);
452216ab 4078 return TRUE;
7a79c514
TG
4079}
4080
452216ab 4081static bfd_boolean
7a79c514
TG
4082bfd_mach_o_read_prebind_cksum (bfd *abfd,
4083 bfd_mach_o_load_command *command)
4084{
4085 bfd_mach_o_prebind_cksum_command *cmd = &command->command.prebind_cksum;
4086 struct mach_o_prebind_cksum_command_external raw;
3af9a47b 4087
47daa70f 4088 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4089 return FALSE;
7a79c514
TG
4090
4091 cmd->cksum = bfd_get_32 (abfd, raw.cksum);
452216ab 4092 return TRUE;
7a79c514
TG
4093}
4094
452216ab 4095static bfd_boolean
7a79c514
TG
4096bfd_mach_o_read_twolevel_hints (bfd *abfd,
4097 bfd_mach_o_load_command *command)
4098{
4099 bfd_mach_o_twolevel_hints_command *cmd = &command->command.twolevel_hints;
4100 struct mach_o_twolevel_hints_command_external raw;
4101
47daa70f 4102 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4103 return FALSE;
7a79c514
TG
4104
4105 cmd->offset = bfd_get_32 (abfd, raw.offset);
4106 cmd->nhints = bfd_get_32 (abfd, raw.nhints);
452216ab 4107 return TRUE;
3af9a47b
NC
4108}
4109
452216ab 4110static bfd_boolean
9f4a5bd1
TG
4111bfd_mach_o_read_fvmlib (bfd *abfd, bfd_mach_o_load_command *command)
4112{
4113 bfd_mach_o_fvmlib_command *fvm = &command->command.fvmlib;
4114 struct mach_o_fvmlib_command_external raw;
4115 unsigned int nameoff;
4525c51a 4116 unsigned int namelen;
9f4a5bd1 4117
47daa70f 4118 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4119 return FALSE;
9f4a5bd1
TG
4120
4121 nameoff = bfd_h_get_32 (abfd, raw.name);
4122 fvm->minor_version = bfd_h_get_32 (abfd, raw.minor_version);
4123 fvm->header_addr = bfd_h_get_32 (abfd, raw.header_addr);
4124
4125 fvm->name_offset = command->offset + nameoff;
4525c51a
TG
4126 namelen = command->len - nameoff;
4127 fvm->name_str = bfd_alloc (abfd, namelen);
9f4a5bd1 4128 if (fvm->name_str == NULL)
452216ab 4129 return FALSE;
9f4a5bd1 4130 if (bfd_seek (abfd, fvm->name_offset, SEEK_SET) != 0
4525c51a 4131 || bfd_bread (fvm->name_str, namelen, abfd) != namelen)
452216ab
TG
4132 return FALSE;
4133 return TRUE;
9f4a5bd1
TG
4134}
4135
452216ab 4136static bfd_boolean
ab273af8 4137bfd_mach_o_read_thread (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b 4138{
b32e07d7 4139 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b 4140 bfd_mach_o_thread_command *cmd = &command->command.thread;
92bc0e80 4141 unsigned int offset;
3af9a47b
NC
4142 unsigned int nflavours;
4143 unsigned int i;
4144
4145 BFD_ASSERT ((command->type == BFD_MACH_O_LC_THREAD)
4146 || (command->type == BFD_MACH_O_LC_UNIXTHREAD));
4147
b32e07d7 4148 /* Count the number of threads. */
3af9a47b
NC
4149 offset = 8;
4150 nflavours = 0;
4151 while (offset != command->len)
4152 {
46d1c23b
TG
4153 struct mach_o_thread_command_external raw;
4154
3af9a47b 4155 if (offset >= command->len)
452216ab 4156 return FALSE;
3af9a47b 4157
c2f09c75 4158 if (bfd_seek (abfd, command->offset + offset, SEEK_SET) != 0
07d6d2b8 4159 || bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4160 return FALSE;
3af9a47b 4161
46d1c23b 4162 offset += sizeof (raw) + bfd_h_get_32 (abfd, raw.count) * 4;
3af9a47b
NC
4163 nflavours++;
4164 }
4165
b32e07d7 4166 /* Allocate threads. */
64d29018
NC
4167 cmd->flavours = bfd_alloc2
4168 (abfd, nflavours, sizeof (bfd_mach_o_thread_flavour));
3af9a47b 4169 if (cmd->flavours == NULL)
452216ab 4170 return FALSE;
3af9a47b
NC
4171 cmd->nflavours = nflavours;
4172
4173 offset = 8;
4174 nflavours = 0;
4175 while (offset != command->len)
4176 {
46d1c23b
TG
4177 struct mach_o_thread_command_external raw;
4178
3af9a47b 4179 if (offset >= command->len)
452216ab 4180 return FALSE;
3af9a47b
NC
4181
4182 if (nflavours >= cmd->nflavours)
452216ab 4183 return FALSE;
3af9a47b 4184
c2f09c75 4185 if (bfd_seek (abfd, command->offset + offset, SEEK_SET) != 0
07d6d2b8 4186 || bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4187 return FALSE;
3af9a47b 4188
46d1c23b
TG
4189 cmd->flavours[nflavours].flavour = bfd_h_get_32 (abfd, raw.flavour);
4190 cmd->flavours[nflavours].offset = command->offset + offset + sizeof (raw);
4191 cmd->flavours[nflavours].size = bfd_h_get_32 (abfd, raw.count) * 4;
4192 offset += cmd->flavours[nflavours].size + sizeof (raw);
3af9a47b
NC
4193 nflavours++;
4194 }
4195
4196 for (i = 0; i < nflavours; i++)
4197 {
4198 asection *bfdsec;
4199 unsigned int snamelen;
4200 char *sname;
4201 const char *flavourstr;
4202 const char *prefix = "LC_THREAD";
a95a4550
AM
4203 unsigned int j = 0;
4204
3af9a47b
NC
4205 switch (mdata->header.cputype)
4206 {
4207 case BFD_MACH_O_CPU_TYPE_POWERPC:
1e8a024a 4208 case BFD_MACH_O_CPU_TYPE_POWERPC_64:
707e555b
TG
4209 flavourstr =
4210 bfd_mach_o_ppc_flavour_string (cmd->flavours[i].flavour);
3af9a47b
NC
4211 break;
4212 case BFD_MACH_O_CPU_TYPE_I386:
1e8a024a 4213 case BFD_MACH_O_CPU_TYPE_X86_64:
707e555b
TG
4214 flavourstr =
4215 bfd_mach_o_i386_flavour_string (cmd->flavours[i].flavour);
3af9a47b
NC
4216 break;
4217 default:
4218 flavourstr = "UNKNOWN_ARCHITECTURE";
4219 break;
4220 }
a95a4550 4221
3af9a47b 4222 snamelen = strlen (prefix) + 1 + 20 + 1 + strlen (flavourstr) + 1;
116c20d2 4223 sname = bfd_alloc (abfd, snamelen);
3af9a47b 4224 if (sname == NULL)
452216ab 4225 return FALSE;
3af9a47b
NC
4226
4227 for (;;)
4228 {
a95a4550
AM
4229 sprintf (sname, "%s.%s.%u", prefix, flavourstr, j);
4230 if (bfd_get_section_by_name (abfd, sname) == NULL)
3af9a47b 4231 break;
a95a4550 4232 j++;
3af9a47b
NC
4233 }
4234
117ed4f8 4235 bfdsec = bfd_make_section_with_flags (abfd, sname, SEC_HAS_CONTENTS);
a95a4550 4236
3af9a47b
NC
4237 bfdsec->vma = 0;
4238 bfdsec->lma = 0;
eea6121a 4239 bfdsec->size = cmd->flavours[i].size;
3af9a47b
NC
4240 bfdsec->filepos = cmd->flavours[i].offset;
4241 bfdsec->alignment_power = 0x0;
3af9a47b
NC
4242
4243 cmd->section = bfdsec;
4244 }
4245
452216ab 4246 return TRUE;
3af9a47b
NC
4247}
4248
452216ab 4249static bfd_boolean
ab273af8 4250bfd_mach_o_read_dysymtab (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b 4251{
046b007d 4252 bfd_mach_o_dysymtab_command *cmd = &command->command.dysymtab;
b32e07d7 4253 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b
NC
4254
4255 BFD_ASSERT (command->type == BFD_MACH_O_LC_DYSYMTAB);
4256
46d1c23b
TG
4257 {
4258 struct mach_o_dysymtab_command_external raw;
4259
47daa70f 4260 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4261 return FALSE;
3af9a47b 4262
46d1c23b
TG
4263 cmd->ilocalsym = bfd_h_get_32 (abfd, raw.ilocalsym);
4264 cmd->nlocalsym = bfd_h_get_32 (abfd, raw.nlocalsym);
4265 cmd->iextdefsym = bfd_h_get_32 (abfd, raw.iextdefsym);
4266 cmd->nextdefsym = bfd_h_get_32 (abfd, raw.nextdefsym);
4267 cmd->iundefsym = bfd_h_get_32 (abfd, raw.iundefsym);
4268 cmd->nundefsym = bfd_h_get_32 (abfd, raw.nundefsym);
4269 cmd->tocoff = bfd_h_get_32 (abfd, raw.tocoff);
4270 cmd->ntoc = bfd_h_get_32 (abfd, raw.ntoc);
4271 cmd->modtaboff = bfd_h_get_32 (abfd, raw.modtaboff);
4272 cmd->nmodtab = bfd_h_get_32 (abfd, raw.nmodtab);
4273 cmd->extrefsymoff = bfd_h_get_32 (abfd, raw.extrefsymoff);
4274 cmd->nextrefsyms = bfd_h_get_32 (abfd, raw.nextrefsyms);
4275 cmd->indirectsymoff = bfd_h_get_32 (abfd, raw.indirectsymoff);
4276 cmd->nindirectsyms = bfd_h_get_32 (abfd, raw.nindirectsyms);
4277 cmd->extreloff = bfd_h_get_32 (abfd, raw.extreloff);
4278 cmd->nextrel = bfd_h_get_32 (abfd, raw.nextrel);
4279 cmd->locreloff = bfd_h_get_32 (abfd, raw.locreloff);
4280 cmd->nlocrel = bfd_h_get_32 (abfd, raw.nlocrel);
4281 }
046b007d
TG
4282
4283 if (cmd->nmodtab != 0)
4284 {
046b007d
TG
4285 unsigned int i;
4286 int wide = bfd_mach_o_wide_p (abfd);
4287 unsigned int module_len = wide ? 56 : 52;
4288
4289 cmd->dylib_module =
07d6d2b8 4290 bfd_alloc2 (abfd, cmd->nmodtab, sizeof (bfd_mach_o_dylib_module));
046b007d 4291 if (cmd->dylib_module == NULL)
07d6d2b8 4292 return FALSE;
046b007d
TG
4293
4294 if (bfd_seek (abfd, cmd->modtaboff, SEEK_SET) != 0)
07d6d2b8 4295 return FALSE;
046b007d
TG
4296
4297 for (i = 0; i < cmd->nmodtab; i++)
07d6d2b8
AM
4298 {
4299 bfd_mach_o_dylib_module *module = &cmd->dylib_module[i];
4300 unsigned long v;
4301 unsigned char buf[56];
4302
4303 if (bfd_bread ((void *) buf, module_len, abfd) != module_len)
4304 return FALSE;
4305
4306 module->module_name_idx = bfd_h_get_32 (abfd, buf + 0);
4307 module->iextdefsym = bfd_h_get_32 (abfd, buf + 4);
4308 module->nextdefsym = bfd_h_get_32 (abfd, buf + 8);
4309 module->irefsym = bfd_h_get_32 (abfd, buf + 12);
4310 module->nrefsym = bfd_h_get_32 (abfd, buf + 16);
4311 module->ilocalsym = bfd_h_get_32 (abfd, buf + 20);
4312 module->nlocalsym = bfd_h_get_32 (abfd, buf + 24);
4313 module->iextrel = bfd_h_get_32 (abfd, buf + 28);
4314 module->nextrel = bfd_h_get_32 (abfd, buf + 32);
4315 v = bfd_h_get_32 (abfd, buf +36);
4316 module->iinit = v & 0xffff;
4317 module->iterm = (v >> 16) & 0xffff;
4318 v = bfd_h_get_32 (abfd, buf + 40);
4319 module->ninit = v & 0xffff;
4320 module->nterm = (v >> 16) & 0xffff;
4321 if (wide)
4322 {
4323 module->objc_module_info_size = bfd_h_get_32 (abfd, buf + 44);
4324 module->objc_module_info_addr = bfd_h_get_64 (abfd, buf + 48);
4325 }
4326 else
4327 {
4328 module->objc_module_info_addr = bfd_h_get_32 (abfd, buf + 44);
4329 module->objc_module_info_size = bfd_h_get_32 (abfd, buf + 48);
4330 }
4331 }
046b007d 4332 }
afbb9e17 4333
046b007d
TG
4334 if (cmd->ntoc != 0)
4335 {
64d29018 4336 unsigned long i;
046b007d 4337
64d29018 4338 cmd->dylib_toc = bfd_alloc2
07d6d2b8 4339 (abfd, cmd->ntoc, sizeof (bfd_mach_o_dylib_table_of_content));
046b007d 4340 if (cmd->dylib_toc == NULL)
07d6d2b8 4341 return FALSE;
046b007d
TG
4342
4343 if (bfd_seek (abfd, cmd->tocoff, SEEK_SET) != 0)
07d6d2b8 4344 return FALSE;
046b007d
TG
4345
4346 for (i = 0; i < cmd->ntoc; i++)
07d6d2b8
AM
4347 {
4348 struct mach_o_dylib_table_of_contents_external raw;
4349 bfd_mach_o_dylib_table_of_content *toc = &cmd->dylib_toc[i];
046b007d 4350
07d6d2b8
AM
4351 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
4352 return FALSE;
046b007d 4353
07d6d2b8
AM
4354 toc->symbol_index = bfd_h_get_32 (abfd, raw.symbol_index);
4355 toc->module_index = bfd_h_get_32 (abfd, raw.module_index);
4356 }
046b007d
TG
4357 }
4358
4359 if (cmd->nindirectsyms != 0)
4360 {
046b007d
TG
4361 unsigned int i;
4362
64d29018 4363 cmd->indirect_syms = bfd_alloc2
07d6d2b8 4364 (abfd, cmd->nindirectsyms, sizeof (unsigned int));
046b007d 4365 if (cmd->indirect_syms == NULL)
07d6d2b8 4366 return FALSE;
046b007d
TG
4367
4368 if (bfd_seek (abfd, cmd->indirectsymoff, SEEK_SET) != 0)
07d6d2b8 4369 return FALSE;
046b007d
TG
4370
4371 for (i = 0; i < cmd->nindirectsyms; i++)
07d6d2b8
AM
4372 {
4373 unsigned char raw[4];
4374 unsigned int *is = &cmd->indirect_syms[i];
046b007d 4375
07d6d2b8
AM
4376 if (bfd_bread (raw, sizeof (raw), abfd) != sizeof (raw))
4377 return FALSE;
046b007d 4378
07d6d2b8
AM
4379 *is = bfd_h_get_32 (abfd, raw);
4380 }
046b007d
TG
4381 }
4382
4383 if (cmd->nextrefsyms != 0)
4384 {
046b007d
TG
4385 unsigned long v;
4386 unsigned int i;
4387
64d29018 4388 cmd->ext_refs = bfd_alloc2
07d6d2b8 4389 (abfd, cmd->nextrefsyms, sizeof (bfd_mach_o_dylib_reference));
046b007d 4390 if (cmd->ext_refs == NULL)
07d6d2b8 4391 return FALSE;
046b007d
TG
4392
4393 if (bfd_seek (abfd, cmd->extrefsymoff, SEEK_SET) != 0)
07d6d2b8 4394 return FALSE;
046b007d
TG
4395
4396 for (i = 0; i < cmd->nextrefsyms; i++)
07d6d2b8
AM
4397 {
4398 unsigned char raw[4];
4399 bfd_mach_o_dylib_reference *ref = &cmd->ext_refs[i];
4400
4401 if (bfd_bread (raw, sizeof (raw), abfd) != sizeof (raw))
4402 return FALSE;
4403
4404 /* Fields isym and flags are written as bit-fields, thus we need
4405 a specific processing for endianness. */
4406 v = bfd_h_get_32 (abfd, raw);
4407 if (bfd_big_endian (abfd))
4408 {
4409 ref->isym = (v >> 8) & 0xffffff;
4410 ref->flags = v & 0xff;
4411 }
4412 else
4413 {
4414 ref->isym = v & 0xffffff;
4415 ref->flags = (v >> 24) & 0xff;
4416 }
4417 }
046b007d 4418 }
3af9a47b 4419
b32e07d7 4420 if (mdata->dysymtab)
452216ab 4421 return FALSE;
b32e07d7
TG
4422 mdata->dysymtab = cmd;
4423
452216ab 4424 return TRUE;
3af9a47b
NC
4425}
4426
452216ab 4427static bfd_boolean
ab273af8 4428bfd_mach_o_read_symtab (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b 4429{
046b007d
TG
4430 bfd_mach_o_symtab_command *symtab = &command->command.symtab;
4431 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
46d1c23b 4432 struct mach_o_symtab_command_external raw;
3af9a47b
NC
4433
4434 BFD_ASSERT (command->type == BFD_MACH_O_LC_SYMTAB);
4435
47daa70f 4436 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4437 return FALSE;
a95a4550 4438
46d1c23b
TG
4439 symtab->symoff = bfd_h_get_32 (abfd, raw.symoff);
4440 symtab->nsyms = bfd_h_get_32 (abfd, raw.nsyms);
4441 symtab->stroff = bfd_h_get_32 (abfd, raw.stroff);
4442 symtab->strsize = bfd_h_get_32 (abfd, raw.strsize);
046b007d
TG
4443 symtab->symbols = NULL;
4444 symtab->strtab = NULL;
3af9a47b 4445
046b007d 4446 if (symtab->nsyms != 0)
15e1c58a
TG
4447 abfd->flags |= HAS_SYMS;
4448
046b007d 4449 if (mdata->symtab)
452216ab 4450 return FALSE;
046b007d 4451 mdata->symtab = symtab;
452216ab 4452 return TRUE;
3af9a47b
NC
4453}
4454
452216ab 4455static bfd_boolean
ab273af8 4456bfd_mach_o_read_uuid (bfd *abfd, bfd_mach_o_load_command *command)
15e1c58a
TG
4457{
4458 bfd_mach_o_uuid_command *cmd = &command->command.uuid;
15e1c58a
TG
4459
4460 BFD_ASSERT (command->type == BFD_MACH_O_LC_UUID);
4461
47daa70f 4462 if (bfd_bread (cmd->uuid, 16, abfd) != 16)
452216ab 4463 return FALSE;
15e1c58a 4464
452216ab 4465 return TRUE;
15e1c58a
TG
4466}
4467
452216ab 4468static bfd_boolean
ab273af8 4469bfd_mach_o_read_linkedit (bfd *abfd, bfd_mach_o_load_command *command)
046b007d
TG
4470{
4471 bfd_mach_o_linkedit_command *cmd = &command->command.linkedit;
46d1c23b 4472 struct mach_o_linkedit_data_command_external raw;
046b007d 4473
47daa70f 4474 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4475 return FALSE;
046b007d 4476
46d1c23b
TG
4477 cmd->dataoff = bfd_get_32 (abfd, raw.dataoff);
4478 cmd->datasize = bfd_get_32 (abfd, raw.datasize);
452216ab 4479 return TRUE;
046b007d
TG
4480}
4481
452216ab 4482static bfd_boolean
ab273af8 4483bfd_mach_o_read_str (bfd *abfd, bfd_mach_o_load_command *command)
046b007d
TG
4484{
4485 bfd_mach_o_str_command *cmd = &command->command.str;
46d1c23b 4486 struct mach_o_str_command_external raw;
046b007d
TG
4487 unsigned long off;
4488
47daa70f 4489 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4490 return FALSE;
046b007d 4491
46d1c23b 4492 off = bfd_get_32 (abfd, raw.str);
046b007d
TG
4493 cmd->stroff = command->offset + off;
4494 cmd->str_len = command->len - off;
4495 cmd->str = bfd_alloc (abfd, cmd->str_len);
4496 if (cmd->str == NULL)
452216ab 4497 return FALSE;
046b007d 4498 if (bfd_seek (abfd, cmd->stroff, SEEK_SET) != 0
91d6fa6a 4499 || bfd_bread ((void *) cmd->str, cmd->str_len, abfd) != cmd->str_len)
452216ab
TG
4500 return FALSE;
4501 return TRUE;
046b007d
TG
4502}
4503
c9ffd2ea
TG
4504static unsigned char *
4505bfd_mach_o_alloc_and_read (bfd *abfd, unsigned int off, unsigned int size)
4506{
4507 unsigned char *buf;
4508
4509 buf = bfd_alloc (abfd, size);
4510 if (buf == NULL)
4511 return NULL;
4512 if (bfd_seek (abfd, off, SEEK_SET) != 0
4513 || bfd_bread (buf, size, abfd) != size)
4514 return NULL;
4515 return buf;
4516}
4517
4518static bfd_boolean
4519bfd_mach_o_read_dyld_content (bfd *abfd, bfd_mach_o_dyld_info_command *cmd)
4520{
4521 /* Read rebase content. */
4522 if (cmd->rebase_content == NULL && cmd->rebase_size != 0)
4523 {
4524 cmd->rebase_content =
4525 bfd_mach_o_alloc_and_read (abfd, cmd->rebase_off, cmd->rebase_size);
4526 if (cmd->rebase_content == NULL)
4527 return FALSE;
4528 }
4529
4530 /* Read bind content. */
4531 if (cmd->bind_content == NULL && cmd->bind_size != 0)
4532 {
4533 cmd->bind_content =
4534 bfd_mach_o_alloc_and_read (abfd, cmd->bind_off, cmd->bind_size);
4535 if (cmd->bind_content == NULL)
4536 return FALSE;
4537 }
4538
4539 /* Read weak bind content. */
4540 if (cmd->weak_bind_content == NULL && cmd->weak_bind_size != 0)
4541 {
4542 cmd->weak_bind_content = bfd_mach_o_alloc_and_read
4543 (abfd, cmd->weak_bind_off, cmd->weak_bind_size);
4544 if (cmd->weak_bind_content == NULL)
4545 return FALSE;
4546 }
4547
4548 /* Read lazy bind content. */
4549 if (cmd->lazy_bind_content == NULL && cmd->lazy_bind_size != 0)
4550 {
4551 cmd->lazy_bind_content = bfd_mach_o_alloc_and_read
4552 (abfd, cmd->lazy_bind_off, cmd->lazy_bind_size);
4553 if (cmd->lazy_bind_content == NULL)
4554 return FALSE;
4555 }
4556
4557 /* Read export content. */
4558 if (cmd->export_content == NULL && cmd->export_size != 0)
4559 {
4560 cmd->export_content = bfd_mach_o_alloc_and_read
4561 (abfd, cmd->export_off, cmd->export_size);
4562 if (cmd->export_content == NULL)
4563 return FALSE;
4564 }
4565
4566 return TRUE;
4567}
4568
452216ab 4569static bfd_boolean
ab273af8 4570bfd_mach_o_read_dyld_info (bfd *abfd, bfd_mach_o_load_command *command)
ad86f1fb
TG
4571{
4572 bfd_mach_o_dyld_info_command *cmd = &command->command.dyld_info;
46d1c23b 4573 struct mach_o_dyld_info_command_external raw;
ad86f1fb 4574
47daa70f 4575 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
452216ab 4576 return FALSE;
ad86f1fb 4577
46d1c23b
TG
4578 cmd->rebase_off = bfd_get_32 (abfd, raw.rebase_off);
4579 cmd->rebase_size = bfd_get_32 (abfd, raw.rebase_size);
c9ffd2ea 4580 cmd->rebase_content = NULL;
46d1c23b
TG
4581 cmd->bind_off = bfd_get_32 (abfd, raw.bind_off);
4582 cmd->bind_size = bfd_get_32 (abfd, raw.bind_size);
c9ffd2ea 4583 cmd->bind_content = NULL;
46d1c23b
TG
4584 cmd->weak_bind_off = bfd_get_32 (abfd, raw.weak_bind_off);
4585 cmd->weak_bind_size = bfd_get_32 (abfd, raw.weak_bind_size);
c9ffd2ea 4586 cmd->weak_bind_content = NULL;
46d1c23b
TG
4587 cmd->lazy_bind_off = bfd_get_32 (abfd, raw.lazy_bind_off);
4588 cmd->lazy_bind_size = bfd_get_32 (abfd, raw.lazy_bind_size);
c9ffd2ea 4589 cmd->lazy_bind_content = NULL;
46d1c23b
TG
4590 cmd->export_off = bfd_get_32 (abfd, raw.export_off);
4591 cmd->export_size = bfd_get_32 (abfd, raw.export_size);
c9ffd2ea 4592 cmd->export_content = NULL;
452216ab 4593 return TRUE;
ad86f1fb
TG
4594}
4595
edbdea0e
TG
4596static bfd_boolean
4597bfd_mach_o_read_version_min (bfd *abfd, bfd_mach_o_load_command *command)
4598{
4599 bfd_mach_o_version_min_command *cmd = &command->command.version_min;
4600 struct mach_o_version_min_command_external raw;
4601 unsigned int ver;
4602
47daa70f 4603 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
edbdea0e
TG
4604 return FALSE;
4605
4606 ver = bfd_get_32 (abfd, raw.version);
4607 cmd->rel = ver >> 16;
4608 cmd->maj = ver >> 8;
4609 cmd->min = ver;
4610 cmd->reserved = bfd_get_32 (abfd, raw.reserved);
4611 return TRUE;
4612}
4613
fc55a902
TG
4614static bfd_boolean
4615bfd_mach_o_read_encryption_info (bfd *abfd, bfd_mach_o_load_command *command)
4616{
4617 bfd_mach_o_encryption_info_command *cmd = &command->command.encryption_info;
4618 struct mach_o_encryption_info_command_external raw;
4619
47daa70f
TG
4620 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
4621 return FALSE;
4622
4623 cmd->cryptoff = bfd_get_32 (abfd, raw.cryptoff);
4624 cmd->cryptsize = bfd_get_32 (abfd, raw.cryptsize);
4625 cmd->cryptid = bfd_get_32 (abfd, raw.cryptid);
4626 return TRUE;
4627}
4628
4629static bfd_boolean
4630bfd_mach_o_read_encryption_info_64 (bfd *abfd, bfd_mach_o_load_command *command)
4631{
4632 bfd_mach_o_encryption_info_command *cmd = &command->command.encryption_info;
4633 struct mach_o_encryption_info_64_command_external raw;
4634
4635 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
fc55a902
TG
4636 return FALSE;
4637
4638 cmd->cryptoff = bfd_get_32 (abfd, raw.cryptoff);
4639 cmd->cryptsize = bfd_get_32 (abfd, raw.cryptsize);
4640 cmd->cryptid = bfd_get_32 (abfd, raw.cryptid);
4641 return TRUE;
4642}
4643
1778ad74
TG
4644static bfd_boolean
4645bfd_mach_o_read_main (bfd *abfd, bfd_mach_o_load_command *command)
4646{
4647 bfd_mach_o_main_command *cmd = &command->command.main;
4648 struct mach_o_entry_point_command_external raw;
4649
47daa70f 4650 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
1778ad74
TG
4651 return FALSE;
4652
4653 cmd->entryoff = bfd_get_64 (abfd, raw.entryoff);
4654 cmd->stacksize = bfd_get_64 (abfd, raw.stacksize);
4655 return TRUE;
4656}
4657
4658static bfd_boolean
4659bfd_mach_o_read_source_version (bfd *abfd, bfd_mach_o_load_command *command)
4660{
4661 bfd_mach_o_source_version_command *cmd = &command->command.source_version;
4662 struct mach_o_source_version_command_external raw;
4663 bfd_uint64_t ver;
4664
47daa70f 4665 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
1778ad74
TG
4666 return FALSE;
4667
4668 ver = bfd_get_64 (abfd, raw.version);
4669 /* Note: we use a serie of shift to avoid shift > 32 (for which gcc
4670 generates warnings) in case of the host doesn't support 64 bit
4671 integers. */
4672 cmd->e = ver & 0x3ff;
4673 ver >>= 10;
4674 cmd->d = ver & 0x3ff;
4675 ver >>= 10;
4676 cmd->c = ver & 0x3ff;
4677 ver >>= 10;
4678 cmd->b = ver & 0x3ff;
4679 ver >>= 10;
4680 cmd->a = ver & 0xffffff;
4681 return TRUE;
4682}
4683
452216ab 4684static bfd_boolean
ab273af8 4685bfd_mach_o_read_segment (bfd *abfd,
07d6d2b8
AM
4686 bfd_mach_o_load_command *command,
4687 unsigned int wide)
3af9a47b 4688{
3af9a47b
NC
4689 bfd_mach_o_segment_command *seg = &command->command.segment;
4690 unsigned long i;
a95a4550 4691
1e8a024a
TG
4692 if (wide)
4693 {
46d1c23b
TG
4694 struct mach_o_segment_command_64_external raw;
4695
1e8a024a 4696 BFD_ASSERT (command->type == BFD_MACH_O_LC_SEGMENT_64);
3af9a47b 4697
47daa70f 4698 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
07d6d2b8 4699 return FALSE;
3af9a47b 4700
46d1c23b 4701 memcpy (seg->segname, raw.segname, 16);
15e1c58a 4702 seg->segname[16] = '\0';
1e8a024a 4703
46d1c23b
TG
4704 seg->vmaddr = bfd_h_get_64 (abfd, raw.vmaddr);
4705 seg->vmsize = bfd_h_get_64 (abfd, raw.vmsize);
4706 seg->fileoff = bfd_h_get_64 (abfd, raw.fileoff);
4707 seg->filesize = bfd_h_get_64 (abfd, raw.filesize);
4708 seg->maxprot = bfd_h_get_32 (abfd, raw.maxprot);
4709 seg->initprot = bfd_h_get_32 (abfd, raw.initprot);
4710 seg->nsects = bfd_h_get_32 (abfd, raw.nsects);
4711 seg->flags = bfd_h_get_32 (abfd, raw.flags);
1e8a024a
TG
4712 }
4713 else
4714 {
46d1c23b
TG
4715 struct mach_o_segment_command_32_external raw;
4716
1e8a024a
TG
4717 BFD_ASSERT (command->type == BFD_MACH_O_LC_SEGMENT);
4718
47daa70f 4719 if (bfd_bread (&raw, sizeof (raw), abfd) != sizeof (raw))
07d6d2b8 4720 return FALSE;
1e8a024a 4721
46d1c23b 4722 memcpy (seg->segname, raw.segname, 16);
15e1c58a 4723 seg->segname[16] = '\0';
1e8a024a 4724
46d1c23b
TG
4725 seg->vmaddr = bfd_h_get_32 (abfd, raw.vmaddr);
4726 seg->vmsize = bfd_h_get_32 (abfd, raw.vmsize);
4727 seg->fileoff = bfd_h_get_32 (abfd, raw.fileoff);
4728 seg->filesize = bfd_h_get_32 (abfd, raw.filesize);
4729 seg->maxprot = bfd_h_get_32 (abfd, raw.maxprot);
4730 seg->initprot = bfd_h_get_32 (abfd, raw.initprot);
4731 seg->nsects = bfd_h_get_32 (abfd, raw.nsects);
4732 seg->flags = bfd_h_get_32 (abfd, raw.flags);
1e8a024a 4733 }
9d4b6009
TG
4734 seg->sect_head = NULL;
4735 seg->sect_tail = NULL;
3af9a47b 4736
f1bde64c 4737 for (i = 0; i < seg->nsects; i++)
3af9a47b 4738 {
f1bde64c 4739 asection *sec;
a95a4550 4740
47daa70f 4741 sec = bfd_mach_o_read_section (abfd, seg->initprot, wide);
f1bde64c 4742 if (sec == NULL)
07d6d2b8 4743 return FALSE;
f1bde64c 4744
c9ffd2ea
TG
4745 bfd_mach_o_append_section_to_segment
4746 (seg, bfd_mach_o_get_mach_o_section (sec));
3af9a47b
NC
4747 }
4748
452216ab 4749 return TRUE;
3af9a47b
NC
4750}
4751
452216ab 4752static bfd_boolean
ab273af8 4753bfd_mach_o_read_segment_32 (bfd *abfd, bfd_mach_o_load_command *command)
1e8a024a 4754{
ab273af8 4755 return bfd_mach_o_read_segment (abfd, command, 0);
1e8a024a
TG
4756}
4757
452216ab 4758static bfd_boolean
ab273af8 4759bfd_mach_o_read_segment_64 (bfd *abfd, bfd_mach_o_load_command *command)
1e8a024a 4760{
ab273af8 4761 return bfd_mach_o_read_segment (abfd, command, 1);
1e8a024a
TG
4762}
4763
452216ab 4764static bfd_boolean
ab273af8 4765bfd_mach_o_read_command (bfd *abfd, bfd_mach_o_load_command *command)
3af9a47b 4766{
47daa70f 4767 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
46d1c23b
TG
4768 struct mach_o_load_command_external raw;
4769 unsigned int cmd;
3af9a47b 4770
046b007d 4771 /* Read command type and length. */
47daa70f 4772 if (bfd_seek (abfd, mdata->hdr_offset + command->offset, SEEK_SET) != 0
46d1c23b 4773 || bfd_bread (&raw, BFD_MACH_O_LC_SIZE, abfd) != BFD_MACH_O_LC_SIZE)
452216ab 4774 return FALSE;
3af9a47b 4775
46d1c23b
TG
4776 cmd = bfd_h_get_32 (abfd, raw.cmd);
4777 command->type = cmd & ~BFD_MACH_O_LC_REQ_DYLD;
4778 command->type_required = cmd & BFD_MACH_O_LC_REQ_DYLD ? TRUE : FALSE;
4779 command->len = bfd_h_get_32 (abfd, raw.cmdsize);
3af9a47b
NC
4780
4781 switch (command->type)
4782 {
4783 case BFD_MACH_O_LC_SEGMENT:
452216ab
TG
4784 if (!bfd_mach_o_read_segment_32 (abfd, command))
4785 return FALSE;
1e8a024a
TG
4786 break;
4787 case BFD_MACH_O_LC_SEGMENT_64:
452216ab
TG
4788 if (!bfd_mach_o_read_segment_64 (abfd, command))
4789 return FALSE;
3af9a47b
NC
4790 break;
4791 case BFD_MACH_O_LC_SYMTAB:
452216ab
TG
4792 if (!bfd_mach_o_read_symtab (abfd, command))
4793 return FALSE;
3af9a47b
NC
4794 break;
4795 case BFD_MACH_O_LC_SYMSEG:
4796 break;
4797 case BFD_MACH_O_LC_THREAD:
4798 case BFD_MACH_O_LC_UNIXTHREAD:
452216ab
TG
4799 if (!bfd_mach_o_read_thread (abfd, command))
4800 return FALSE;
3af9a47b
NC
4801 break;
4802 case BFD_MACH_O_LC_LOAD_DYLINKER:
4803 case BFD_MACH_O_LC_ID_DYLINKER:
10be66a4 4804 case BFD_MACH_O_LC_DYLD_ENVIRONMENT:
452216ab
TG
4805 if (!bfd_mach_o_read_dylinker (abfd, command))
4806 return FALSE;
3af9a47b
NC
4807 break;
4808 case BFD_MACH_O_LC_LOAD_DYLIB:
fbe383b9 4809 case BFD_MACH_O_LC_LAZY_LOAD_DYLIB:
3af9a47b
NC
4810 case BFD_MACH_O_LC_ID_DYLIB:
4811 case BFD_MACH_O_LC_LOAD_WEAK_DYLIB:
046b007d 4812 case BFD_MACH_O_LC_REEXPORT_DYLIB:
73017762 4813 case BFD_MACH_O_LC_LOAD_UPWARD_DYLIB:
452216ab
TG
4814 if (!bfd_mach_o_read_dylib (abfd, command))
4815 return FALSE;
3af9a47b
NC
4816 break;
4817 case BFD_MACH_O_LC_PREBOUND_DYLIB:
452216ab
TG
4818 if (!bfd_mach_o_read_prebound_dylib (abfd, command))
4819 return FALSE;
3af9a47b
NC
4820 break;
4821 case BFD_MACH_O_LC_LOADFVMLIB:
4822 case BFD_MACH_O_LC_IDFVMLIB:
452216ab
TG
4823 if (!bfd_mach_o_read_fvmlib (abfd, command))
4824 return FALSE;
9f4a5bd1 4825 break;
3af9a47b
NC
4826 case BFD_MACH_O_LC_IDENT:
4827 case BFD_MACH_O_LC_FVMFILE:
4828 case BFD_MACH_O_LC_PREPAGE:
4829 case BFD_MACH_O_LC_ROUTINES:
9b02d212 4830 case BFD_MACH_O_LC_ROUTINES_64:
046b007d 4831 break;
3af9a47b 4832 case BFD_MACH_O_LC_SUB_FRAMEWORK:
046b007d
TG
4833 case BFD_MACH_O_LC_SUB_UMBRELLA:
4834 case BFD_MACH_O_LC_SUB_LIBRARY:
4835 case BFD_MACH_O_LC_SUB_CLIENT:
0c9b2b4c 4836 case BFD_MACH_O_LC_RPATH:
452216ab 4837 if (!bfd_mach_o_read_str (abfd, command))
07d6d2b8 4838 return FALSE;
3af9a47b
NC
4839 break;
4840 case BFD_MACH_O_LC_DYSYMTAB:
452216ab
TG
4841 if (!bfd_mach_o_read_dysymtab (abfd, command))
4842 return FALSE;
3af9a47b 4843 break;
3af9a47b 4844 case BFD_MACH_O_LC_PREBIND_CKSUM:
452216ab
TG
4845 if (!bfd_mach_o_read_prebind_cksum (abfd, command))
4846 return FALSE;
7a79c514
TG
4847 break;
4848 case BFD_MACH_O_LC_TWOLEVEL_HINTS:
452216ab
TG
4849 if (!bfd_mach_o_read_twolevel_hints (abfd, command))
4850 return FALSE;
3af9a47b 4851 break;
15e1c58a 4852 case BFD_MACH_O_LC_UUID:
452216ab
TG
4853 if (!bfd_mach_o_read_uuid (abfd, command))
4854 return FALSE;
15e1c58a
TG
4855 break;
4856 case BFD_MACH_O_LC_CODE_SIGNATURE:
846b9259 4857 case BFD_MACH_O_LC_SEGMENT_SPLIT_INFO:
edbdea0e 4858 case BFD_MACH_O_LC_FUNCTION_STARTS:
1778ad74
TG
4859 case BFD_MACH_O_LC_DATA_IN_CODE:
4860 case BFD_MACH_O_LC_DYLIB_CODE_SIGN_DRS:
47daa70f 4861 case BFD_MACH_O_LC_LINKER_OPTIMIZATION_HINT:
452216ab
TG
4862 if (!bfd_mach_o_read_linkedit (abfd, command))
4863 return FALSE;
15e1c58a 4864 break;
fc55a902
TG
4865 case BFD_MACH_O_LC_ENCRYPTION_INFO:
4866 if (!bfd_mach_o_read_encryption_info (abfd, command))
452216ab 4867 return FALSE;
fc55a902 4868 break;
47daa70f
TG
4869 case BFD_MACH_O_LC_ENCRYPTION_INFO_64:
4870 if (!bfd_mach_o_read_encryption_info_64 (abfd, command))
4871 return FALSE;
4872 break;
ad86f1fb 4873 case BFD_MACH_O_LC_DYLD_INFO:
452216ab
TG
4874 if (!bfd_mach_o_read_dyld_info (abfd, command))
4875 return FALSE;
ad86f1fb 4876 break;
edbdea0e
TG
4877 case BFD_MACH_O_LC_VERSION_MIN_MACOSX:
4878 case BFD_MACH_O_LC_VERSION_MIN_IPHONEOS:
47daa70f 4879 case BFD_MACH_O_LC_VERSION_MIN_WATCHOS:
edbdea0e 4880 if (!bfd_mach_o_read_version_min (abfd, command))
452216ab 4881 return FALSE;
edbdea0e 4882 break;
1778ad74
TG
4883 case BFD_MACH_O_LC_MAIN:
4884 if (!bfd_mach_o_read_main (abfd, command))
452216ab 4885 return FALSE;
1778ad74
TG
4886 break;
4887 case BFD_MACH_O_LC_SOURCE_VERSION:
4888 if (!bfd_mach_o_read_source_version (abfd, command))
452216ab 4889 return FALSE;
1778ad74 4890 break;
3af9a47b 4891 default:
86eafac0 4892 command->len = 0;
871b3ab2 4893 _bfd_error_handler (_("%pB: unknown load command %#x"),
d42c267e 4894 abfd, command->type);
86eafac0 4895 return FALSE;
3af9a47b
NC
4896 }
4897
452216ab 4898 return TRUE;
3af9a47b
NC
4899}
4900
4901static void
116c20d2 4902bfd_mach_o_flatten_sections (bfd *abfd)
3af9a47b 4903{
046b007d 4904 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
c9ffd2ea 4905 bfd_mach_o_load_command *cmd;
3af9a47b 4906 long csect = 0;
a95a4550 4907
15e1c58a 4908 /* Count total number of sections. */
3af9a47b
NC
4909 mdata->nsects = 0;
4910
c9ffd2ea 4911 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3af9a47b 4912 {
c9ffd2ea
TG
4913 if (cmd->type == BFD_MACH_O_LC_SEGMENT
4914 || cmd->type == BFD_MACH_O_LC_SEGMENT_64)
3af9a47b 4915 {
c9ffd2ea 4916 bfd_mach_o_segment_command *seg = &cmd->command.segment;
e84d6fca 4917
3af9a47b
NC
4918 mdata->nsects += seg->nsects;
4919 }
4920 }
4921
15e1c58a 4922 /* Allocate sections array. */
64d29018
NC
4923 mdata->sections = bfd_alloc2 (abfd,
4924 mdata->nsects, sizeof (bfd_mach_o_section *));
15e1c58a
TG
4925
4926 /* Fill the array. */
3af9a47b
NC
4927 csect = 0;
4928
c9ffd2ea 4929 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3af9a47b 4930 {
c9ffd2ea
TG
4931 if (cmd->type == BFD_MACH_O_LC_SEGMENT
4932 || cmd->type == BFD_MACH_O_LC_SEGMENT_64)
3af9a47b 4933 {
c9ffd2ea 4934 bfd_mach_o_segment_command *seg = &cmd->command.segment;
07d6d2b8 4935 bfd_mach_o_section *sec;
3af9a47b
NC
4936
4937 BFD_ASSERT (csect + seg->nsects <= mdata->nsects);
4938
07d6d2b8 4939 for (sec = seg->sect_head; sec != NULL; sec = sec->next)
f1bde64c 4940 mdata->sections[csect++] = sec;
3af9a47b
NC
4941 }
4942 }
4943}
4944
afbb9e17 4945static bfd_boolean
116c20d2 4946bfd_mach_o_scan_start_address (bfd *abfd)
3af9a47b 4947{
046b007d 4948 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
c9ffd2ea
TG
4949 bfd_mach_o_thread_command *thr = NULL;
4950 bfd_mach_o_load_command *cmd;
3af9a47b
NC
4951 unsigned long i;
4952
c9ffd2ea
TG
4953 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
4954 if (cmd->type == BFD_MACH_O_LC_THREAD
4955 || cmd->type == BFD_MACH_O_LC_UNIXTHREAD)
afbb9e17 4956 {
07d6d2b8
AM
4957 thr = &cmd->command.thread;
4958 break;
afbb9e17 4959 }
c9ffd2ea 4960 else if (cmd->type == BFD_MACH_O_LC_MAIN && mdata->nsects > 1)
c0fd7846 4961 {
c9ffd2ea 4962 bfd_mach_o_main_command *main_cmd = &cmd->command.main;
c0fd7846 4963 bfd_mach_o_section *text_sect = mdata->sections[0];
c9ffd2ea 4964
c0fd7846
TG
4965 if (text_sect)
4966 {
4967 abfd->start_address = main_cmd->entryoff
4968 + (text_sect->addr - text_sect->offset);
4969 return TRUE;
4970 }
4971 }
3af9a47b 4972
5ee43bc4 4973 /* An object file has no start address, so do not fail if not found. */
c9ffd2ea 4974 if (thr == NULL)
5ee43bc4 4975 return TRUE;
3af9a47b 4976
afbb9e17 4977 /* FIXME: create a subtarget hook ? */
c9ffd2ea 4978 for (i = 0; i < thr->nflavours; i++)
3af9a47b 4979 {
a95a4550 4980 if ((mdata->header.cputype == BFD_MACH_O_CPU_TYPE_I386)
c9ffd2ea 4981 && (thr->flavours[i].flavour == BFD_MACH_O_x86_THREAD_STATE32))
3af9a47b
NC
4982 {
4983 unsigned char buf[4];
4984
c9ffd2ea 4985 if (bfd_seek (abfd, thr->flavours[i].offset + 40, SEEK_SET) != 0
07d6d2b8 4986 || bfd_bread (buf, 4, abfd) != 4)
afbb9e17 4987 return FALSE;
3af9a47b
NC
4988
4989 abfd->start_address = bfd_h_get_32 (abfd, buf);
4990 }
a95a4550 4991 else if ((mdata->header.cputype == BFD_MACH_O_CPU_TYPE_POWERPC)
c9ffd2ea 4992 && (thr->flavours[i].flavour == BFD_MACH_O_PPC_THREAD_STATE))
3af9a47b
NC
4993 {
4994 unsigned char buf[4];
4995
c9ffd2ea 4996 if (bfd_seek (abfd, thr->flavours[i].offset + 0, SEEK_SET) != 0
07d6d2b8 4997 || bfd_bread (buf, 4, abfd) != 4)
afbb9e17 4998 return FALSE;
3af9a47b
NC
4999
5000 abfd->start_address = bfd_h_get_32 (abfd, buf);
5001 }
1e8a024a 5002 else if ((mdata->header.cputype == BFD_MACH_O_CPU_TYPE_POWERPC_64)
07d6d2b8
AM
5003 && (thr->flavours[i].flavour == BFD_MACH_O_PPC_THREAD_STATE64))
5004 {
5005 unsigned char buf[8];
1e8a024a 5006
07d6d2b8
AM
5007 if (bfd_seek (abfd, thr->flavours[i].offset + 0, SEEK_SET) != 0
5008 || bfd_bread (buf, 8, abfd) != 8)
5009 return FALSE;
1e8a024a 5010
07d6d2b8
AM
5011 abfd->start_address = bfd_h_get_64 (abfd, buf);
5012 }
1e8a024a 5013 else if ((mdata->header.cputype == BFD_MACH_O_CPU_TYPE_X86_64)
07d6d2b8
AM
5014 && (thr->flavours[i].flavour == BFD_MACH_O_x86_THREAD_STATE64))
5015 {
5016 unsigned char buf[8];
1e8a024a 5017
07d6d2b8
AM
5018 if (bfd_seek (abfd, thr->flavours[i].offset + (16 * 8), SEEK_SET) != 0
5019 || bfd_bread (buf, 8, abfd) != 8)
5020 return FALSE;
1e8a024a 5021
07d6d2b8
AM
5022 abfd->start_address = bfd_h_get_64 (abfd, buf);
5023 }
3af9a47b
NC
5024 }
5025
afbb9e17 5026 return TRUE;
3af9a47b
NC
5027}
5028
42fa0891
TG
5029bfd_boolean
5030bfd_mach_o_set_arch_mach (bfd *abfd,
07d6d2b8
AM
5031 enum bfd_architecture arch,
5032 unsigned long machine)
42fa0891
TG
5033{
5034 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
5035
5036 /* If this isn't the right architecture for this backend, and this
5037 isn't the generic backend, fail. */
5038 if (arch != bed->arch
5039 && arch != bfd_arch_unknown
5040 && bed->arch != bfd_arch_unknown)
5041 return FALSE;
5042
5043 return bfd_default_set_arch_mach (abfd, arch, machine);
5044}
5045
afbb9e17 5046static bfd_boolean
116c20d2
NC
5047bfd_mach_o_scan (bfd *abfd,
5048 bfd_mach_o_header *header,
5049 bfd_mach_o_data_struct *mdata)
3af9a47b
NC
5050{
5051 unsigned int i;
3af9a47b
NC
5052 enum bfd_architecture cputype;
5053 unsigned long cpusubtype;
1e8a024a
TG
5054 unsigned int hdrsize;
5055
c2f09c75 5056 hdrsize = mach_o_wide_p (header) ?
154a1ee5 5057 BFD_MACH_O_HEADER_64_SIZE : BFD_MACH_O_HEADER_SIZE;
3af9a47b 5058
3af9a47b 5059 mdata->header = *header;
3af9a47b 5060
154a1ee5 5061 abfd->flags = abfd->flags & BFD_IN_MEMORY;
15e1c58a
TG
5062 switch (header->filetype)
5063 {
5064 case BFD_MACH_O_MH_OBJECT:
5065 abfd->flags |= HAS_RELOC;
5066 break;
5067 case BFD_MACH_O_MH_EXECUTE:
5068 abfd->flags |= EXEC_P;
5069 break;
5070 case BFD_MACH_O_MH_DYLIB:
5071 case BFD_MACH_O_MH_BUNDLE:
5072 abfd->flags |= DYNAMIC;
5073 break;
5074 }
5075
3af9a47b
NC
5076 abfd->tdata.mach_o_data = mdata;
5077
e84d6fca
AM
5078 bfd_mach_o_convert_architecture (header->cputype, header->cpusubtype,
5079 &cputype, &cpusubtype);
3af9a47b
NC
5080 if (cputype == bfd_arch_unknown)
5081 {
4eca0228 5082 _bfd_error_handler
695344c0 5083 /* xgettext:c-format */
07d6d2b8
AM
5084 (_("bfd_mach_o_scan: unknown architecture 0x%lx/0x%lx"),
5085 header->cputype, header->cpusubtype);
afbb9e17 5086 return FALSE;
3af9a47b
NC
5087 }
5088
5089 bfd_set_arch_mach (abfd, cputype, cpusubtype);
a95a4550 5090
3af9a47b
NC
5091 if (header->ncmds != 0)
5092 {
c9ffd2ea
TG
5093 bfd_mach_o_load_command *cmd;
5094
5095 mdata->first_command = NULL;
5096 mdata->last_command = NULL;
64d29018
NC
5097
5098 cmd = bfd_alloc2 (abfd, header->ncmds, sizeof (bfd_mach_o_load_command));
c9ffd2ea 5099 if (cmd == NULL)
afbb9e17 5100 return FALSE;
a95a4550 5101
3af9a47b
NC
5102 for (i = 0; i < header->ncmds; i++)
5103 {
c9ffd2ea
TG
5104 bfd_mach_o_load_command *cur = &cmd[i];
5105
5106 bfd_mach_o_append_command (abfd, cur);
3af9a47b
NC
5107
5108 if (i == 0)
1e8a024a 5109 cur->offset = hdrsize;
3af9a47b
NC
5110 else
5111 {
c9ffd2ea 5112 bfd_mach_o_load_command *prev = &cmd[i - 1];
3af9a47b
NC
5113 cur->offset = prev->offset + prev->len;
5114 }
5115
452216ab 5116 if (!bfd_mach_o_read_command (abfd, cur))
afbb9e17 5117 return FALSE;
a95a4550 5118 }
3af9a47b
NC
5119 }
5120
c0fd7846
TG
5121 /* Sections should be flatten before scanning start address. */
5122 bfd_mach_o_flatten_sections (abfd);
5123 if (!bfd_mach_o_scan_start_address (abfd))
afbb9e17 5124 return FALSE;
3af9a47b 5125
afbb9e17 5126 return TRUE;
3af9a47b
NC
5127}
5128
b34976b6 5129bfd_boolean
154a1ee5 5130bfd_mach_o_mkobject_init (bfd *abfd)
3af9a47b
NC
5131{
5132 bfd_mach_o_data_struct *mdata = NULL;
5133
b30a5d18 5134 mdata = bfd_zalloc (abfd, sizeof (bfd_mach_o_data_struct));
3af9a47b 5135 if (mdata == NULL)
b34976b6 5136 return FALSE;
3af9a47b
NC
5137 abfd->tdata.mach_o_data = mdata;
5138
5139 mdata->header.magic = 0;
5140 mdata->header.cputype = 0;
5141 mdata->header.cpusubtype = 0;
5142 mdata->header.filetype = 0;
5143 mdata->header.ncmds = 0;
5144 mdata->header.sizeofcmds = 0;
5145 mdata->header.flags = 0;
5146 mdata->header.byteorder = BFD_ENDIAN_UNKNOWN;
c9ffd2ea
TG
5147 mdata->first_command = NULL;
5148 mdata->last_command = NULL;
3af9a47b
NC
5149 mdata->nsects = 0;
5150 mdata->sections = NULL;
4434114c 5151 mdata->dyn_reloc_cache = NULL;
3af9a47b 5152
b34976b6 5153 return TRUE;
3af9a47b
NC
5154}
5155
42fa0891
TG
5156static bfd_boolean
5157bfd_mach_o_gen_mkobject (bfd *abfd)
5158{
5159 bfd_mach_o_data_struct *mdata;
5160
5161 if (!bfd_mach_o_mkobject_init (abfd))
5162 return FALSE;
5163
5164 mdata = bfd_mach_o_get_data (abfd);
5165 mdata->header.magic = BFD_MACH_O_MH_MAGIC;
5166 mdata->header.cputype = 0;
5167 mdata->header.cpusubtype = 0;
5168 mdata->header.byteorder = abfd->xvec->byteorder;
5169 mdata->header.version = 1;
5170
5171 return TRUE;
5172}
5173
3af9a47b 5174const bfd_target *
154a1ee5 5175bfd_mach_o_header_p (bfd *abfd,
47daa70f 5176 file_ptr hdr_off,
07d6d2b8
AM
5177 bfd_mach_o_filetype filetype,
5178 bfd_mach_o_cpu_type cputype)
3af9a47b
NC
5179{
5180 bfd_mach_o_header header;
c9ba0c87 5181 bfd_mach_o_data_struct *mdata;
3af9a47b 5182
47daa70f 5183 if (!bfd_mach_o_read_header (abfd, hdr_off, &header))
e84d6fca 5184 goto wrong;
3af9a47b 5185
e84d6fca
AM
5186 if (! (header.byteorder == BFD_ENDIAN_BIG
5187 || header.byteorder == BFD_ENDIAN_LITTLE))
3af9a47b 5188 {
d42c267e
AM
5189 _bfd_error_handler (_("unknown header byte-order value %#x"),
5190 header.byteorder);
e84d6fca 5191 goto wrong;
3af9a47b
NC
5192 }
5193
e84d6fca
AM
5194 if (! ((header.byteorder == BFD_ENDIAN_BIG
5195 && abfd->xvec->byteorder == BFD_ENDIAN_BIG
5196 && abfd->xvec->header_byteorder == BFD_ENDIAN_BIG)
5197 || (header.byteorder == BFD_ENDIAN_LITTLE
5198 && abfd->xvec->byteorder == BFD_ENDIAN_LITTLE
5199 && abfd->xvec->header_byteorder == BFD_ENDIAN_LITTLE)))
5200 goto wrong;
3af9a47b 5201
154a1ee5
TG
5202 /* Check cputype and filetype.
5203 In case of wildcard, do not accept magics that are handled by existing
5204 targets. */
5205 if (cputype)
5206 {
5207 if (header.cputype != cputype)
07d6d2b8 5208 goto wrong;
154a1ee5 5209 }
26954155
TG
5210 else
5211 {
5212#ifndef BFD64
5213 /* Do not recognize 64 architectures if not configured for 64bit targets.
5214 This could happen only for generic targets. */
5215 if (mach_o_wide_p (&header))
5216 goto wrong;
5217#endif
5218 }
b22161d6 5219
154a1ee5
TG
5220 if (filetype)
5221 {
5222 if (header.filetype != filetype)
07d6d2b8 5223 goto wrong;
154a1ee5
TG
5224 }
5225 else
5226 {
5227 switch (header.filetype)
07d6d2b8
AM
5228 {
5229 case BFD_MACH_O_MH_CORE:
5230 /* Handled by core_p */
5231 goto wrong;
5232 default:
5233 break;
5234 }
154a1ee5
TG
5235 }
5236
c9ba0c87
AM
5237 mdata = (bfd_mach_o_data_struct *) bfd_zalloc (abfd, sizeof (*mdata));
5238 if (mdata == NULL)
e84d6fca 5239 goto fail;
47daa70f 5240 mdata->hdr_offset = hdr_off;
3af9a47b 5241
c9ba0c87 5242 if (!bfd_mach_o_scan (abfd, &header, mdata))
e84d6fca 5243 goto wrong;
a95a4550 5244
3af9a47b 5245 return abfd->xvec;
e84d6fca
AM
5246
5247 wrong:
5248 bfd_set_error (bfd_error_wrong_format);
5249
5250 fail:
e84d6fca 5251 return NULL;
3af9a47b
NC
5252}
5253
154a1ee5
TG
5254static const bfd_target *
5255bfd_mach_o_gen_object_p (bfd *abfd)
3af9a47b 5256{
47daa70f 5257 return bfd_mach_o_header_p (abfd, 0, 0, 0);
154a1ee5 5258}
e84d6fca 5259
154a1ee5
TG
5260static const bfd_target *
5261bfd_mach_o_gen_core_p (bfd *abfd)
5262{
47daa70f 5263 return bfd_mach_o_header_p (abfd, 0, BFD_MACH_O_MH_CORE, 0);
3af9a47b
NC
5264}
5265
3cc27770
TG
5266/* Return the base address of ABFD, ie the address at which the image is
5267 mapped. The possible initial pagezero is ignored. */
5268
5269bfd_vma
5270bfd_mach_o_get_base_address (bfd *abfd)
5271{
5272 bfd_mach_o_data_struct *mdata;
c9ffd2ea 5273 bfd_mach_o_load_command *cmd;
3cc27770
TG
5274
5275 /* Check for Mach-O. */
5276 if (!bfd_mach_o_valid (abfd))
5277 return 0;
5278 mdata = bfd_mach_o_get_data (abfd);
5279
c9ffd2ea 5280 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3cc27770 5281 {
3cc27770
TG
5282 if ((cmd->type == BFD_MACH_O_LC_SEGMENT
5283 || cmd->type == BFD_MACH_O_LC_SEGMENT_64))
5284 {
5285 struct bfd_mach_o_segment_command *segcmd = &cmd->command.segment;
5286
5287 if (segcmd->initprot != 0)
5288 return segcmd->vmaddr;
5289 }
5290 }
5291 return 0;
5292}
5293
3af9a47b
NC
5294typedef struct mach_o_fat_archentry
5295{
5296 unsigned long cputype;
5297 unsigned long cpusubtype;
5298 unsigned long offset;
5299 unsigned long size;
5300 unsigned long align;
3af9a47b
NC
5301} mach_o_fat_archentry;
5302
5303typedef struct mach_o_fat_data_struct
5304{
5305 unsigned long magic;
5306 unsigned long nfat_arch;
5307 mach_o_fat_archentry *archentries;
5308} mach_o_fat_data_struct;
5309
5310const bfd_target *
47daa70f 5311bfd_mach_o_fat_archive_p (bfd *abfd)
3af9a47b 5312{
e84d6fca 5313 mach_o_fat_data_struct *adata = NULL;
46d1c23b 5314 struct mach_o_fat_header_external hdr;
3af9a47b
NC
5315 unsigned long i;
5316
c2f09c75 5317 if (bfd_seek (abfd, 0, SEEK_SET) != 0
46d1c23b 5318 || bfd_bread (&hdr, sizeof (hdr), abfd) != sizeof (hdr))
e84d6fca 5319 goto error;
3af9a47b 5320
116c20d2 5321 adata = bfd_alloc (abfd, sizeof (mach_o_fat_data_struct));
3af9a47b 5322 if (adata == NULL)
e84d6fca 5323 goto error;
a95a4550 5324
46d1c23b
TG
5325 adata->magic = bfd_getb32 (hdr.magic);
5326 adata->nfat_arch = bfd_getb32 (hdr.nfat_arch);
3af9a47b 5327 if (adata->magic != 0xcafebabe)
e84d6fca 5328 goto error;
27cc28f9
AS
5329 /* Avoid matching Java bytecode files, which have the same magic number.
5330 In the Java bytecode file format this field contains the JVM version,
5331 which starts at 43.0. */
5332 if (adata->nfat_arch > 30)
5333 goto error;
3af9a47b 5334
c2f09c75 5335 adata->archentries =
64d29018 5336 bfd_alloc2 (abfd, adata->nfat_arch, sizeof (mach_o_fat_archentry));
3af9a47b 5337 if (adata->archentries == NULL)
e84d6fca 5338 goto error;
3af9a47b
NC
5339
5340 for (i = 0; i < adata->nfat_arch; i++)
5341 {
46d1c23b
TG
5342 struct mach_o_fat_arch_external arch;
5343 if (bfd_bread (&arch, sizeof (arch), abfd) != sizeof (arch))
e84d6fca 5344 goto error;
46d1c23b
TG
5345 adata->archentries[i].cputype = bfd_getb32 (arch.cputype);
5346 adata->archentries[i].cpusubtype = bfd_getb32 (arch.cpusubtype);
5347 adata->archentries[i].offset = bfd_getb32 (arch.offset);
5348 adata->archentries[i].size = bfd_getb32 (arch.size);
5349 adata->archentries[i].align = bfd_getb32 (arch.align);
3af9a47b
NC
5350 }
5351
5352 abfd->tdata.mach_o_fat_data = adata;
64d29018 5353
3af9a47b 5354 return abfd->xvec;
e84d6fca
AM
5355
5356 error:
5357 if (adata != NULL)
5358 bfd_release (abfd, adata);
5359 bfd_set_error (bfd_error_wrong_format);
5360 return NULL;
3af9a47b
NC
5361}
5362
a4e241ca
TG
5363/* Set the filename for a fat binary member ABFD, whose bfd architecture is
5364 ARCH_TYPE/ARCH_SUBTYPE and corresponding entry in header is ENTRY.
5365 Set arelt_data and origin fields too. */
5366
5367static void
5368bfd_mach_o_fat_member_init (bfd *abfd,
07d6d2b8
AM
5369 enum bfd_architecture arch_type,
5370 unsigned long arch_subtype,
5371 mach_o_fat_archentry *entry)
a4e241ca
TG
5372{
5373 struct areltdata *areltdata;
5374 /* Create the member filename. Use ARCH_NAME. */
5375 const bfd_arch_info_type *ap = bfd_lookup_arch (arch_type, arch_subtype);
5376
5377 if (ap)
5378 {
5379 /* Use the architecture name if known. */
1be5090b 5380 abfd->filename = xstrdup (ap->printable_name);
a4e241ca
TG
5381 }
5382 else
5383 {
5384 /* Forge a uniq id. */
5385 const size_t namelen = 2 + 8 + 1 + 2 + 8 + 1;
1be5090b 5386 char *name = xmalloc (namelen);
a4e241ca 5387 snprintf (name, namelen, "0x%lx-0x%lx",
07d6d2b8 5388 entry->cputype, entry->cpusubtype);
a4e241ca
TG
5389 abfd->filename = name;
5390 }
5391
06e7acd7 5392 areltdata = bfd_zmalloc (sizeof (struct areltdata));
a4e241ca
TG
5393 areltdata->parsed_size = entry->size;
5394 abfd->arelt_data = areltdata;
5395 abfd->iostream = NULL;
5396 abfd->origin = entry->offset;
5397}
5398
3af9a47b 5399bfd *
47daa70f 5400bfd_mach_o_fat_openr_next_archived_file (bfd *archive, bfd *prev)
3af9a47b 5401{
e84d6fca 5402 mach_o_fat_data_struct *adata;
3af9a47b
NC
5403 mach_o_fat_archentry *entry = NULL;
5404 unsigned long i;
15e1c58a 5405 bfd *nbfd;
15e1c58a
TG
5406 enum bfd_architecture arch_type;
5407 unsigned long arch_subtype;
3af9a47b 5408
e84d6fca 5409 adata = (mach_o_fat_data_struct *) archive->tdata.mach_o_fat_data;
3af9a47b
NC
5410 BFD_ASSERT (adata != NULL);
5411
5412 /* Find index of previous entry. */
5413 if (prev == NULL)
a4e241ca
TG
5414 {
5415 /* Start at first one. */
5416 i = 0;
5417 }
3af9a47b
NC
5418 else
5419 {
a4e241ca 5420 /* Find index of PREV. */
3af9a47b
NC
5421 for (i = 0; i < adata->nfat_arch; i++)
5422 {
15e1c58a 5423 if (adata->archentries[i].offset == prev->origin)
3af9a47b
NC
5424 break;
5425 }
5426
5427 if (i == adata->nfat_arch)
5428 {
5429 /* Not found. */
5430 bfd_set_error (bfd_error_bad_value);
a95a4550 5431 return NULL;
3af9a47b 5432 }
a4e241ca
TG
5433
5434 /* Get next entry. */
5435 i++;
5436 }
a95a4550 5437
3af9a47b
NC
5438 if (i >= adata->nfat_arch)
5439 {
5440 bfd_set_error (bfd_error_no_more_archived_files);
5441 return NULL;
5442 }
5443
5444 entry = &adata->archentries[i];
15e1c58a
TG
5445 nbfd = _bfd_new_bfd_contained_in (archive);
5446 if (nbfd == NULL)
5447 return NULL;
5448
15e1c58a
TG
5449 bfd_mach_o_convert_architecture (entry->cputype, entry->cpusubtype,
5450 &arch_type, &arch_subtype);
846b9259 5451
a4e241ca
TG
5452 bfd_mach_o_fat_member_init (nbfd, arch_type, arch_subtype, entry);
5453
846b9259 5454 bfd_set_arch_mach (nbfd, arch_type, arch_subtype);
3af9a47b 5455
15e1c58a 5456 return nbfd;
3af9a47b
NC
5457}
5458
15bbba8d
TG
5459/* Analogous to stat call. */
5460
5461static int
5462bfd_mach_o_fat_stat_arch_elt (bfd *abfd, struct stat *buf)
5463{
5464 if (abfd->arelt_data == NULL)
5465 {
5466 bfd_set_error (bfd_error_invalid_operation);
5467 return -1;
5468 }
5469
5470 buf->st_mtime = 0;
5471 buf->st_uid = 0;
5472 buf->st_gid = 0;
5473 buf->st_mode = 0644;
5474 buf->st_size = arelt_size (abfd);
5475
5476 return 0;
5477}
5478
846b9259
TG
5479/* If ABFD format is FORMAT and architecture is ARCH, return it.
5480 If ABFD is a fat image containing a member that corresponds to FORMAT
5481 and ARCH, returns it.
5482 In other case, returns NULL.
5483 This function allows transparent uses of fat images. */
a4e241ca 5484
846b9259
TG
5485bfd *
5486bfd_mach_o_fat_extract (bfd *abfd,
5487 bfd_format format,
5488 const bfd_arch_info_type *arch)
5489{
5490 bfd *res;
5491 mach_o_fat_data_struct *adata;
5492 unsigned int i;
5493
5494 if (bfd_check_format (abfd, format))
5495 {
5496 if (bfd_get_arch_info (abfd) == arch)
5497 return abfd;
5498 return NULL;
5499 }
5500 if (!bfd_check_format (abfd, bfd_archive)
5501 || abfd->xvec != &mach_o_fat_vec)
5502 return NULL;
c2f09c75 5503
846b9259
TG
5504 /* This is a Mach-O fat image. */
5505 adata = (mach_o_fat_data_struct *) abfd->tdata.mach_o_fat_data;
5506 BFD_ASSERT (adata != NULL);
5507
5508 for (i = 0; i < adata->nfat_arch; i++)
5509 {
5510 struct mach_o_fat_archentry *e = &adata->archentries[i];
5511 enum bfd_architecture cpu_type;
5512 unsigned long cpu_subtype;
5513
5514 bfd_mach_o_convert_architecture (e->cputype, e->cpusubtype,
5515 &cpu_type, &cpu_subtype);
5516 if (cpu_type != arch->arch || cpu_subtype != arch->mach)
5517 continue;
5518
5519 /* The architecture is found. */
5520 res = _bfd_new_bfd_contained_in (abfd);
5521 if (res == NULL)
5522 return NULL;
5523
a4e241ca 5524 bfd_mach_o_fat_member_init (res, cpu_type, cpu_subtype, e);
846b9259
TG
5525
5526 if (bfd_check_format (res, format))
5527 {
5528 BFD_ASSERT (bfd_get_arch_info (res) == arch);
5529 return res;
5530 }
5531 bfd_close (res);
5532 return NULL;
5533 }
5534
5535 return NULL;
5536}
5537
eac61af6
TT
5538static bfd_boolean
5539bfd_mach_o_fat_close_and_cleanup (bfd *abfd)
5540{
5541 _bfd_unlink_from_archive_parent (abfd);
5542 return TRUE;
5543}
5544
3af9a47b 5545int
116c20d2
NC
5546bfd_mach_o_lookup_command (bfd *abfd,
5547 bfd_mach_o_load_command_type type,
5548 bfd_mach_o_load_command **mcommand)
3af9a47b 5549{
c9ffd2ea
TG
5550 struct mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
5551 struct bfd_mach_o_load_command *cmd;
5552 unsigned int num;
3af9a47b 5553
c9ffd2ea 5554 BFD_ASSERT (mdata != NULL);
3af9a47b
NC
5555 BFD_ASSERT (mcommand != NULL);
5556
5557 num = 0;
c9ffd2ea 5558 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3af9a47b 5559 {
3af9a47b
NC
5560 if (cmd->type != type)
5561 continue;
5562
5563 if (num == 0)
c9ffd2ea 5564 *mcommand = cmd;
3af9a47b
NC
5565 num++;
5566 }
5567
3af9a47b
NC
5568 return num;
5569}
5570
5571unsigned long
116c20d2 5572bfd_mach_o_stack_addr (enum bfd_mach_o_cpu_type type)
3af9a47b
NC
5573{
5574 switch (type)
5575 {
5576 case BFD_MACH_O_CPU_TYPE_MC680x0:
5577 return 0x04000000;
3af9a47b
NC
5578 case BFD_MACH_O_CPU_TYPE_POWERPC:
5579 return 0xc0000000;
5580 case BFD_MACH_O_CPU_TYPE_I386:
5581 return 0xc0000000;
5582 case BFD_MACH_O_CPU_TYPE_SPARC:
5583 return 0xf0000000;
3af9a47b 5584 case BFD_MACH_O_CPU_TYPE_HPPA:
e84d6fca 5585 return 0xc0000000 - 0x04000000;
3af9a47b
NC
5586 default:
5587 return 0;
5588 }
5589}
5590
ab76eeaf
IS
5591/* The following two tables should be kept, as far as possible, in order of
5592 most frequently used entries to optimize their use from gas. */
5593
c5012cd8 5594const bfd_mach_o_xlat_name bfd_mach_o_section_type_name[] =
046b007d
TG
5595{
5596 { "regular", BFD_MACH_O_S_REGULAR},
ab76eeaf 5597 { "coalesced", BFD_MACH_O_S_COALESCED},
046b007d
TG
5598 { "zerofill", BFD_MACH_O_S_ZEROFILL},
5599 { "cstring_literals", BFD_MACH_O_S_CSTRING_LITERALS},
5600 { "4byte_literals", BFD_MACH_O_S_4BYTE_LITERALS},
5601 { "8byte_literals", BFD_MACH_O_S_8BYTE_LITERALS},
ab76eeaf 5602 { "16byte_literals", BFD_MACH_O_S_16BYTE_LITERALS},
046b007d 5603 { "literal_pointers", BFD_MACH_O_S_LITERAL_POINTERS},
046b007d
TG
5604 { "mod_init_func_pointers", BFD_MACH_O_S_MOD_INIT_FUNC_POINTERS},
5605 { "mod_fini_func_pointers", BFD_MACH_O_S_MOD_FINI_FUNC_POINTERS},
046b007d
TG
5606 { "gb_zerofill", BFD_MACH_O_S_GB_ZEROFILL},
5607 { "interposing", BFD_MACH_O_S_INTERPOSING},
046b007d 5608 { "dtrace_dof", BFD_MACH_O_S_DTRACE_DOF},
ab76eeaf
IS
5609 { "non_lazy_symbol_pointers", BFD_MACH_O_S_NON_LAZY_SYMBOL_POINTERS},
5610 { "lazy_symbol_pointers", BFD_MACH_O_S_LAZY_SYMBOL_POINTERS},
a4551119 5611 { "symbol_stubs", BFD_MACH_O_S_SYMBOL_STUBS},
046b007d
TG
5612 { "lazy_dylib_symbol_pointers", BFD_MACH_O_S_LAZY_DYLIB_SYMBOL_POINTERS},
5613 { NULL, 0}
5614};
5615
c5012cd8 5616const bfd_mach_o_xlat_name bfd_mach_o_section_attribute_name[] =
046b007d 5617{
ab76eeaf
IS
5618 { "pure_instructions", BFD_MACH_O_S_ATTR_PURE_INSTRUCTIONS },
5619 { "some_instructions", BFD_MACH_O_S_ATTR_SOME_INSTRUCTIONS },
046b007d
TG
5620 { "loc_reloc", BFD_MACH_O_S_ATTR_LOC_RELOC },
5621 { "ext_reloc", BFD_MACH_O_S_ATTR_EXT_RELOC },
046b007d 5622 { "debug", BFD_MACH_O_S_ATTR_DEBUG },
046b007d
TG
5623 { "live_support", BFD_MACH_O_S_ATTR_LIVE_SUPPORT },
5624 { "no_dead_strip", BFD_MACH_O_S_ATTR_NO_DEAD_STRIP },
5625 { "strip_static_syms", BFD_MACH_O_S_ATTR_STRIP_STATIC_SYMS },
5626 { "no_toc", BFD_MACH_O_S_ATTR_NO_TOC },
a4551119 5627 { "self_modifying_code", BFD_MACH_O_S_SELF_MODIFYING_CODE },
ab76eeaf 5628 { "modifying_code", BFD_MACH_O_S_SELF_MODIFYING_CODE },
046b007d
TG
5629 { NULL, 0}
5630};
5631
a4551119 5632/* Get the section type from NAME. Return 256 if NAME is unknown. */
53d58d96
TG
5633
5634unsigned int
ab76eeaf 5635bfd_mach_o_get_section_type_from_name (bfd *abfd, const char *name)
53d58d96 5636{
afbb9e17 5637 const bfd_mach_o_xlat_name *x;
ab76eeaf 5638 bfd_mach_o_backend_data *bed = bfd_mach_o_get_backend_data (abfd);
53d58d96
TG
5639
5640 for (x = bfd_mach_o_section_type_name; x->name; x++)
5641 if (strcmp (x->name, name) == 0)
ab76eeaf
IS
5642 {
5643 /* We found it... does the target support it? */
5644 if (bed->bfd_mach_o_section_type_valid_for_target == NULL
5645 || bed->bfd_mach_o_section_type_valid_for_target (x->val))
5646 return x->val; /* OK. */
5647 else
5648 break; /* Not supported. */
5649 }
a4551119
TG
5650 /* Maximum section ID = 0xff. */
5651 return 256;
53d58d96
TG
5652}
5653
5654/* Get the section attribute from NAME. Return -1 if NAME is unknown. */
5655
5656unsigned int
5657bfd_mach_o_get_section_attribute_from_name (const char *name)
5658{
afbb9e17 5659 const bfd_mach_o_xlat_name *x;
53d58d96
TG
5660
5661 for (x = bfd_mach_o_section_attribute_name; x->name; x++)
5662 if (strcmp (x->name, name) == 0)
5663 return x->val;
5664 return (unsigned int)-1;
5665}
5666
3af9a47b 5667int
116c20d2
NC
5668bfd_mach_o_core_fetch_environment (bfd *abfd,
5669 unsigned char **rbuf,
5670 unsigned int *rlen)
3af9a47b 5671{
046b007d 5672 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
3af9a47b 5673 unsigned long stackaddr = bfd_mach_o_stack_addr (mdata->header.cputype);
c9ffd2ea 5674 bfd_mach_o_load_command *cmd;
3af9a47b 5675
c9ffd2ea 5676 for (cmd = mdata->first_command; cmd != NULL; cmd = cmd->next)
3af9a47b 5677 {
c9ffd2ea 5678 bfd_mach_o_segment_command *seg;
3af9a47b 5679
c9ffd2ea 5680 if (cmd->type != BFD_MACH_O_LC_SEGMENT)
3af9a47b
NC
5681 continue;
5682
c9ffd2ea 5683 seg = &cmd->command.segment;
3af9a47b
NC
5684
5685 if ((seg->vmaddr + seg->vmsize) == stackaddr)
5686 {
5687 unsigned long start = seg->fileoff;
5688 unsigned long end = seg->fileoff + seg->filesize;
5689 unsigned char *buf = bfd_malloc (1024);
5690 unsigned long size = 1024;
5691
5692 for (;;)
5693 {
5694 bfd_size_type nread = 0;
5695 unsigned long offset;
5696 int found_nonnull = 0;
5697
5698 if (size > (end - start))
5699 size = (end - start);
5700
515ef31d
NC
5701 buf = bfd_realloc_or_free (buf, size);
5702 if (buf == NULL)
5703 return -1;
c2f09c75
TG
5704
5705 if (bfd_seek (abfd, end - size, SEEK_SET) != 0)
07d6d2b8
AM
5706 {
5707 free (buf);
5708 return -1;
5709 }
c2f09c75 5710
3af9a47b 5711 nread = bfd_bread (buf, size, abfd);
a95a4550 5712
3af9a47b 5713 if (nread != size)
515ef31d
NC
5714 {
5715 free (buf);
5716 return -1;
5717 }
a95a4550 5718
3af9a47b
NC
5719 for (offset = 4; offset <= size; offset += 4)
5720 {
e84d6fca 5721 unsigned long val;
3af9a47b 5722
e84d6fca 5723 val = *((unsigned long *) (buf + size - offset));
3af9a47b
NC
5724 if (! found_nonnull)
5725 {
5726 if (val != 0)
5727 found_nonnull = 1;
5728 }
5729 else if (val == 0x0)
5730 {
e84d6fca
AM
5731 unsigned long bottom;
5732 unsigned long top;
3af9a47b 5733
e84d6fca
AM
5734 bottom = seg->fileoff + seg->filesize - offset;
5735 top = seg->fileoff + seg->filesize - 4;
3af9a47b
NC
5736 *rbuf = bfd_malloc (top - bottom);
5737 *rlen = top - bottom;
5738
5739 memcpy (*rbuf, buf + size - *rlen, *rlen);
515ef31d 5740 free (buf);
3af9a47b
NC
5741 return 0;
5742 }
5743 }
5744
5745 if (size == (end - start))
5746 break;
5747
5748 size *= 2;
5749 }
515ef31d
NC
5750
5751 free (buf);
3af9a47b
NC
5752 }
5753 }
5754
5755 return -1;
5756}
5757
5758char *
116c20d2 5759bfd_mach_o_core_file_failing_command (bfd *abfd)
3af9a47b
NC
5760{
5761 unsigned char *buf = NULL;
5762 unsigned int len = 0;
452216ab 5763 int ret;
3af9a47b
NC
5764
5765 ret = bfd_mach_o_core_fetch_environment (abfd, &buf, &len);
5766 if (ret < 0)
5767 return NULL;
5768
f075ee0c 5769 return (char *) buf;
3af9a47b
NC
5770}
5771
5772int
116c20d2 5773bfd_mach_o_core_file_failing_signal (bfd *abfd ATTRIBUTE_UNUSED)
3af9a47b
NC
5774{
5775 return 0;
5776}
5777
2ca7691a
TG
5778static bfd_mach_o_uuid_command *
5779bfd_mach_o_lookup_uuid_command (bfd *abfd)
5780{
09fe2662 5781 bfd_mach_o_load_command *uuid_cmd = NULL;
2ca7691a 5782 int ncmd = bfd_mach_o_lookup_command (abfd, BFD_MACH_O_LC_UUID, &uuid_cmd);
09fe2662 5783 if (ncmd != 1 || uuid_cmd == NULL)
2ca7691a
TG
5784 return FALSE;
5785 return &uuid_cmd->command.uuid;
5786}
5787
5788/* Return true if ABFD is a dSYM file and its UUID matches UUID_CMD. */
5789
5790static bfd_boolean
5791bfd_mach_o_dsym_for_uuid_p (bfd *abfd, const bfd_mach_o_uuid_command *uuid_cmd)
5792{
5793 bfd_mach_o_uuid_command *dsym_uuid_cmd;
5794
5795 BFD_ASSERT (abfd);
5796 BFD_ASSERT (uuid_cmd);
5797
5798 if (!bfd_check_format (abfd, bfd_object))
5799 return FALSE;
5800
5801 if (bfd_get_flavour (abfd) != bfd_target_mach_o_flavour
5802 || bfd_mach_o_get_data (abfd) == NULL
5803 || bfd_mach_o_get_data (abfd)->header.filetype != BFD_MACH_O_MH_DSYM)
5804 return FALSE;
5805
5806 dsym_uuid_cmd = bfd_mach_o_lookup_uuid_command (abfd);
5807 if (dsym_uuid_cmd == NULL)
5808 return FALSE;
5809
5810 if (memcmp (uuid_cmd->uuid, dsym_uuid_cmd->uuid,
07d6d2b8 5811 sizeof (uuid_cmd->uuid)) != 0)
2ca7691a
TG
5812 return FALSE;
5813
5814 return TRUE;
5815}
5816
5817/* Find a BFD in DSYM_FILENAME which matches ARCH and UUID_CMD.
5818 The caller is responsible for closing the returned BFD object and
5819 its my_archive if the returned BFD is in a fat dSYM. */
5820
5821static bfd *
5822bfd_mach_o_find_dsym (const char *dsym_filename,
07d6d2b8
AM
5823 const bfd_mach_o_uuid_command *uuid_cmd,
5824 const bfd_arch_info_type *arch)
2ca7691a
TG
5825{
5826 bfd *base_dsym_bfd, *dsym_bfd;
5827
5828 BFD_ASSERT (uuid_cmd);
5829
5830 base_dsym_bfd = bfd_openr (dsym_filename, NULL);
5831 if (base_dsym_bfd == NULL)
5832 return NULL;
5833
5834 dsym_bfd = bfd_mach_o_fat_extract (base_dsym_bfd, bfd_object, arch);
5835 if (bfd_mach_o_dsym_for_uuid_p (dsym_bfd, uuid_cmd))
5836 return dsym_bfd;
5837
5838 bfd_close (dsym_bfd);
5839 if (base_dsym_bfd != dsym_bfd)
5840 bfd_close (base_dsym_bfd);
5841
5842 return NULL;
5843}
5844
5845/* Return a BFD created from a dSYM file for ABFD.
5846 The caller is responsible for closing the returned BFD object, its
5847 filename, and its my_archive if the returned BFD is in a fat dSYM. */
5848
5849static bfd *
5850bfd_mach_o_follow_dsym (bfd *abfd)
5851{
5852 char *dsym_filename;
5853 bfd_mach_o_uuid_command *uuid_cmd;
5854 bfd *dsym_bfd, *base_bfd = abfd;
5855 const char *base_basename;
5856
5857 if (abfd == NULL || bfd_get_flavour (abfd) != bfd_target_mach_o_flavour)
5858 return NULL;
5859
b0cffb47 5860 if (abfd->my_archive && !bfd_is_thin_archive (abfd->my_archive))
2ca7691a
TG
5861 base_bfd = abfd->my_archive;
5862 /* BFD may have been opened from a stream. */
5863 if (base_bfd->filename == NULL)
5864 {
5865 bfd_set_error (bfd_error_invalid_operation);
5866 return NULL;
5867 }
5868 base_basename = lbasename (base_bfd->filename);
5869
5870 uuid_cmd = bfd_mach_o_lookup_uuid_command (abfd);
5871 if (uuid_cmd == NULL)
5872 return NULL;
5873
5874 /* TODO: We assume the DWARF file has the same as the binary's.
5875 It seems apple's GDB checks all files in the dSYM bundle directory.
5876 http://opensource.apple.com/source/gdb/gdb-1708/src/gdb/macosx/macosx-tdep.c
5877 */
5878 dsym_filename = (char *)bfd_malloc (strlen (base_bfd->filename)
07d6d2b8
AM
5879 + strlen (dsym_subdir) + 1
5880 + strlen (base_basename) + 1);
2ca7691a 5881 sprintf (dsym_filename, "%s%s/%s",
07d6d2b8 5882 base_bfd->filename, dsym_subdir, base_basename);
2ca7691a
TG
5883
5884 dsym_bfd = bfd_mach_o_find_dsym (dsym_filename, uuid_cmd,
07d6d2b8 5885 bfd_get_arch_info (abfd));
2ca7691a
TG
5886 if (dsym_bfd == NULL)
5887 free (dsym_filename);
5888
5889 return dsym_bfd;
5890}
5891
d9071b0c
TG
5892bfd_boolean
5893bfd_mach_o_find_nearest_line (bfd *abfd,
d9071b0c 5894 asymbol **symbols,
fb167eb2 5895 asection *section,
d9071b0c
TG
5896 bfd_vma offset,
5897 const char **filename_ptr,
5898 const char **functionname_ptr,
fb167eb2
AM
5899 unsigned int *line_ptr,
5900 unsigned int *discriminator_ptr)
d9071b0c
TG
5901{
5902 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
2ca7691a 5903 if (mdata == NULL)
d9071b0c 5904 return FALSE;
2ca7691a
TG
5905 switch (mdata->header.filetype)
5906 {
5907 case BFD_MACH_O_MH_OBJECT:
5908 break;
5909 case BFD_MACH_O_MH_EXECUTE:
5910 case BFD_MACH_O_MH_DYLIB:
5911 case BFD_MACH_O_MH_BUNDLE:
5912 case BFD_MACH_O_MH_KEXT_BUNDLE:
5913 if (mdata->dwarf2_find_line_info == NULL)
07d6d2b8
AM
5914 {
5915 mdata->dsym_bfd = bfd_mach_o_follow_dsym (abfd);
5916 /* When we couldn't find dSYM for this binary, we look for
5917 the debug information in the binary itself. In this way,
5918 we won't try finding separated dSYM again because
5919 mdata->dwarf2_find_line_info will be filled. */
5920 if (! mdata->dsym_bfd)
5921 break;
5922 if (! _bfd_dwarf2_slurp_debug_info (abfd, mdata->dsym_bfd,
5923 dwarf_debug_sections, symbols,
5924 &mdata->dwarf2_find_line_info,
93ee1e36 5925 FALSE))
07d6d2b8
AM
5926 return FALSE;
5927 }
2ca7691a
TG
5928 break;
5929 default:
5930 return FALSE;
5931 }
fb167eb2
AM
5932 return _bfd_dwarf2_find_nearest_line (abfd, symbols, NULL, section, offset,
5933 filename_ptr, functionname_ptr,
5934 line_ptr, discriminator_ptr,
5935 dwarf_debug_sections, 0,
5936 &mdata->dwarf2_find_line_info);
d9071b0c
TG
5937}
5938
5939bfd_boolean
5940bfd_mach_o_close_and_cleanup (bfd *abfd)
5941{
5942 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
5943 if (bfd_get_format (abfd) == bfd_object && mdata != NULL)
4434114c
TG
5944 {
5945 _bfd_dwarf2_cleanup_debug_info (abfd, &mdata->dwarf2_find_line_info);
5946 bfd_mach_o_free_cached_info (abfd);
2ca7691a 5947 if (mdata->dsym_bfd != NULL)
07d6d2b8
AM
5948 {
5949 bfd *fat_bfd = mdata->dsym_bfd->my_archive;
cf466c2a
NC
5950#if 0
5951 /* FIXME: PR 19435: This calculation to find the memory allocated by
5952 bfd_mach_o_follow_dsym for the filename does not always end up
5953 selecting the correct pointer. Unfortunately this problem is
5954 very hard to reproduce on a non Mach-O native system, so until it
5955 can be traced and fixed on such a system, this code will remain
5956 commented out. This does mean that there will be a memory leak,
5957 but it is small, and happens when we are closing down, so it
c244074c 5958 should not matter too much. */
07d6d2b8
AM
5959 char *dsym_filename = (char *)(fat_bfd
5960 ? fat_bfd->filename
5961 : mdata->dsym_bfd->filename);
cf466c2a 5962#endif
07d6d2b8
AM
5963 bfd_close (mdata->dsym_bfd);
5964 mdata->dsym_bfd = NULL;
5965 if (fat_bfd)
5966 bfd_close (fat_bfd);
cf466c2a 5967#if 0
07d6d2b8 5968 free (dsym_filename);
cf466c2a 5969#endif
07d6d2b8 5970 }
4434114c 5971 }
dff55db0 5972
d9071b0c
TG
5973 return _bfd_generic_close_and_cleanup (abfd);
5974}
5975
c6643fcc
NC
5976bfd_boolean
5977bfd_mach_o_free_cached_info (bfd *abfd)
dff55db0
TG
5978{
5979 bfd_mach_o_data_struct *mdata = bfd_mach_o_get_data (abfd);
5980 asection *asect;
5981 free (mdata->dyn_reloc_cache);
5982 mdata->dyn_reloc_cache = NULL;
5983 for (asect = abfd->sections; asect != NULL; asect = asect->next)
5984 {
5985 free (asect->relocation);
5986 asect->relocation = NULL;
5987 }
5988
5989 return TRUE;
5990}
5991
68ffbac6 5992#define bfd_mach_o_bfd_reloc_type_lookup _bfd_norelocs_bfd_reloc_type_lookup
92bc0e80
TG
5993#define bfd_mach_o_bfd_reloc_name_lookup _bfd_norelocs_bfd_reloc_name_lookup
5994
bcb51645 5995#define bfd_mach_o_canonicalize_one_reloc NULL
92bc0e80 5996#define bfd_mach_o_swap_reloc_out NULL
b32e07d7 5997#define bfd_mach_o_print_thread NULL
a4551119 5998#define bfd_mach_o_tgt_seg_table NULL
ab76eeaf 5999#define bfd_mach_o_section_type_valid_for_tgt NULL
92bc0e80 6000
07d6d2b8
AM
6001#define TARGET_NAME mach_o_be_vec
6002#define TARGET_STRING "mach-o-be"
42fa0891 6003#define TARGET_ARCHITECTURE bfd_arch_unknown
4384b284 6004#define TARGET_PAGESIZE 1
07d6d2b8
AM
6005#define TARGET_BIG_ENDIAN 1
6006#define TARGET_ARCHIVE 0
b93a1992 6007#define TARGET_PRIORITY 1
3af9a47b
NC
6008#include "mach-o-target.c"
6009
6010#undef TARGET_NAME
6011#undef TARGET_STRING
42fa0891 6012#undef TARGET_ARCHITECTURE
4384b284 6013#undef TARGET_PAGESIZE
3af9a47b
NC
6014#undef TARGET_BIG_ENDIAN
6015#undef TARGET_ARCHIVE
b93a1992 6016#undef TARGET_PRIORITY
3af9a47b 6017
07d6d2b8
AM
6018#define TARGET_NAME mach_o_le_vec
6019#define TARGET_STRING "mach-o-le"
42fa0891 6020#define TARGET_ARCHITECTURE bfd_arch_unknown
4384b284 6021#define TARGET_PAGESIZE 1
07d6d2b8
AM
6022#define TARGET_BIG_ENDIAN 0
6023#define TARGET_ARCHIVE 0
b93a1992 6024#define TARGET_PRIORITY 1
3af9a47b
NC
6025
6026#include "mach-o-target.c"
6027
6028#undef TARGET_NAME
6029#undef TARGET_STRING
42fa0891 6030#undef TARGET_ARCHITECTURE
4384b284 6031#undef TARGET_PAGESIZE
3af9a47b
NC
6032#undef TARGET_BIG_ENDIAN
6033#undef TARGET_ARCHIVE
b93a1992 6034#undef TARGET_PRIORITY
3af9a47b 6035
8f95b6e4 6036/* Not yet handled: creating an archive. */
07d6d2b8 6037#define bfd_mach_o_mkarchive _bfd_noarchive_mkarchive
8f95b6e4 6038
eac61af6 6039#define bfd_mach_o_close_and_cleanup bfd_mach_o_fat_close_and_cleanup
47daa70f 6040
8f95b6e4 6041/* Not used. */
07d6d2b8 6042#define bfd_mach_o_generic_stat_arch_elt bfd_mach_o_fat_stat_arch_elt
47daa70f
TG
6043#define bfd_mach_o_openr_next_archived_file bfd_mach_o_fat_openr_next_archived_file
6044#define bfd_mach_o_archive_p bfd_mach_o_fat_archive_p
8f95b6e4 6045
07d6d2b8
AM
6046#define TARGET_NAME mach_o_fat_vec
6047#define TARGET_STRING "mach-o-fat"
42fa0891 6048#define TARGET_ARCHITECTURE bfd_arch_unknown
4384b284 6049#define TARGET_PAGESIZE 1
07d6d2b8
AM
6050#define TARGET_BIG_ENDIAN 1
6051#define TARGET_ARCHIVE 1
b93a1992 6052#define TARGET_PRIORITY 0
3af9a47b
NC
6053
6054#include "mach-o-target.c"
6055
6056#undef TARGET_NAME
6057#undef TARGET_STRING
42fa0891 6058#undef TARGET_ARCHITECTURE
4384b284 6059#undef TARGET_PAGESIZE
3af9a47b
NC
6060#undef TARGET_BIG_ENDIAN
6061#undef TARGET_ARCHIVE
b93a1992 6062#undef TARGET_PRIORITY
This page took 1.465744 seconds and 4 git commands to generate.