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