Add 2012 to FSF copyright years for Emacs files
[bpt/emacs.git] / src / unexmacosx.c
CommitLineData
e0f712ba 1/* Dump Emacs in Mach-O format for use on Mac OS X.
acaf905b 2 Copyright (C) 2001-2012 Free Software Foundation, Inc.
e0f712ba
AC
3
4This file is part of GNU Emacs.
5
9ec0b715 6GNU Emacs is free software: you can redistribute it and/or modify
e0f712ba 7it under the terms of the GNU General Public License as published by
9ec0b715
GM
8the Free Software Foundation, either version 3 of the License, or
9(at your option) any later version.
e0f712ba
AC
10
11GNU Emacs is distributed in the hope that it will be useful,
12but WITHOUT ANY WARRANTY; without even the implied warranty of
13MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14GNU General Public License for more details.
15
16You should have received a copy of the GNU General Public License
9ec0b715 17along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
e0f712ba
AC
18
19/* Contributed by Andrew Choi (akochoi@mac.com). */
20
21/* Documentation note.
22
23 Consult the following documents/files for a description of the
24 Mach-O format: the file loader.h, man pages for Mach-O and ld, old
25 NEXTSTEP documents of the Mach-O format. The tool otool dumps the
26 mach header (-h option) and the load commands (-l option) in a
27 Mach-O file. The tool nm on Mac OS X displays the symbol table in
28 a Mach-O file. For examples of unexec for the Mach-O format, see
29 the file unexnext.c in the GNU Emacs distribution, the file
30 unexdyld.c in the Darwin port of GNU Emacs 20.7, and unexdyld.c in
31 the Darwin port of XEmacs 21.1. Also the Darwin Libc source
32 contains the source code for malloc_freezedry and malloc_jumpstart.
33 Read that to see what they do. This file was written completely
34 from scratch, making use of information from the above sources. */
35
36/* The Mac OS X implementation of unexec makes use of Darwin's `zone'
37 memory allocator. All calls to malloc, realloc, and free in Emacs
38 are redirected to unexec_malloc, unexec_realloc, and unexec_free in
39 this file. When temacs is run, all memory requests are handled in
40 the zone EmacsZone. The Darwin memory allocator library calls
41 maintain the data structures to manage this zone. Dumping writes
42 its contents to data segments of the executable file. When emacs
43 is run, the loader recreates the contents of the zone in memory.
44 However since the initialization routine of the zone memory
45 allocator is run again, this `zone' can no longer be used as a
46 heap. That is why emacs uses the ordinary malloc system call to
47 allocate memory. Also, when a block of memory needs to be
48 reallocated and the new size is larger than the old one, a new
49 block must be obtained by malloc and the old contents copied to
50 it. */
51
52/* Peculiarity of the Mach-O files generated by ld in Mac OS X
53 (possible causes of future bugs if changed).
54
55 The file offset of the start of the __TEXT segment is zero. Since
56 the Mach header and load commands are located at the beginning of a
57 Mach-O file, copying the contents of the __TEXT segment from the
58 input file overwrites them in the output file. Despite this,
59 unexec works fine as written below because the segment load command
60 for __TEXT appears, and is therefore processed, before all other
61 load commands except the segment load command for __PAGEZERO, which
62 remains unchanged.
63
64 Although the file offset of the start of the __TEXT segment is
65 zero, none of the sections it contains actually start there. In
66 fact, the earliest one starts a few hundred bytes beyond the end of
67 the last load command. The linker option -headerpad controls the
68 minimum size of this padding. Its setting can be changed in
c57038f8
YM
69 s/darwin.h. A value of 0x690, e.g., leaves room for 30 additional
70 load commands for the newly created __DATA segments (at 56 bytes
71 each). Unexec fails if there is not enough room for these new
72 segments.
e0f712ba
AC
73
74 The __TEXT segment contains the sections __text, __cstring,
75 __picsymbol_stub, and __const and the __DATA segment contains the
76 sections __data, __la_symbol_ptr, __nl_symbol_ptr, __dyld, __bss,
77 and __common. The other segments do not contain any sections.
78 These sections are copied from the input file to the output file,
79 except for __data, __bss, and __common, which are dumped from
80 memory. The types of the sections __bss and __common are changed
81 from S_ZEROFILL to S_REGULAR. Note that the number of sections and
82 their relative order in the input and output files remain
83 unchanged. Otherwise all n_sect fields in the nlist records in the
84 symbol table (specified by the LC_SYMTAB load command) will have to
85 be changed accordingly.
86*/
87
e885315d
JD
88/* config.h #define:s malloc/realloc/free and then includes stdlib.h.
89 We want the undefined versions, but if config.h includes stdlib.h
90 with the #define:s in place, the prototypes will be wrong and we get
91 warnings. To prevent that, include stdlib.h before config.h. */
92
e0f712ba 93#include <stdlib.h>
8beb828a
JD
94#include <config.h>
95#undef malloc
96#undef realloc
97#undef free
ce701a33
PE
98
99#include "unexec.h"
100
e885315d
JD
101#include <stdio.h>
102#include <fcntl.h>
103#include <stdarg.h>
104#include <sys/types.h>
e0f712ba
AC
105#include <unistd.h>
106#include <mach/mach.h>
107#include <mach-o/loader.h>
043131c4
AC
108#include <mach-o/reloc.h>
109#if defined (__ppc__)
110#include <mach-o/ppc/reloc.h>
111#endif
7f900522 112#ifdef HAVE_MALLOC_MALLOC_H
f7f3a65f
ST
113#include <malloc/malloc.h>
114#else
e0f712ba 115#include <objc/malloc.h>
f7f3a65f
ST
116#endif
117
40ef0695
YM
118#include <assert.h>
119
73da71f9
YM
120#ifdef _LP64
121#define mach_header mach_header_64
122#define segment_command segment_command_64
123#undef VM_REGION_BASIC_INFO_COUNT
124#define VM_REGION_BASIC_INFO_COUNT VM_REGION_BASIC_INFO_COUNT_64
125#undef VM_REGION_BASIC_INFO
126#define VM_REGION_BASIC_INFO VM_REGION_BASIC_INFO_64
127#undef LC_SEGMENT
128#define LC_SEGMENT LC_SEGMENT_64
129#define vm_region vm_region_64
130#define section section_64
131#undef MH_MAGIC
132#define MH_MAGIC MH_MAGIC_64
133#endif
e0f712ba
AC
134
135#define VERBOSE 1
136
137/* Size of buffer used to copy data from the input file to the output
138 file in function unexec_copy. */
139#define UNEXEC_COPY_BUFSZ 1024
140
141/* Regions with memory addresses above this value are assumed to be
142 mapped to dynamically loaded libraries and will not be dumped. */
143#define VM_DATA_TOP (20 * 1024 * 1024)
144
e0f712ba
AC
145/* Type of an element on the list of regions to be dumped. */
146struct region_t {
147 vm_address_t address;
148 vm_size_t size;
149 vm_prot_t protection;
150 vm_prot_t max_protection;
151
152 struct region_t *next;
153};
154
155/* Head and tail of the list of regions to be dumped. */
c57038f8
YM
156static struct region_t *region_list_head = 0;
157static struct region_t *region_list_tail = 0;
e0f712ba
AC
158
159/* Pointer to array of load commands. */
c57038f8 160static struct load_command **lca;
e0f712ba
AC
161
162/* Number of load commands. */
c57038f8 163static int nlc;
e0f712ba
AC
164
165/* The highest VM address of segments loaded by the input file.
166 Regions with addresses beyond this are assumed to be allocated
167 dynamically and thus require dumping. */
c57038f8 168static vm_address_t infile_lc_highest_addr = 0;
e0f712ba
AC
169
170/* The lowest file offset used by the all sections in the __TEXT
171 segments. This leaves room at the beginning of the file to store
172 the Mach-O header. Check this value against header size to ensure
173 the added load commands for the new __DATA segments did not
174 overwrite any of the sections in the __TEXT segment. */
c57038f8 175static unsigned long text_seg_lowest_offset = 0x10000000;
e0f712ba
AC
176
177/* Mach header. */
c57038f8 178static struct mach_header mh;
e0f712ba
AC
179
180/* Offset at which the next load command should be written. */
c57038f8 181static unsigned long curr_header_offset = sizeof (struct mach_header);
e0f712ba 182
73da71f9
YM
183/* Offset at which the next segment should be written. */
184static unsigned long curr_file_offset = 0;
185
186static unsigned long pagesize;
187#define ROUNDUP_TO_PAGE_BOUNDARY(x) (((x) + pagesize - 1) & ~(pagesize - 1))
e0f712ba 188
c57038f8 189static int infd, outfd;
e0f712ba 190
c57038f8 191static int in_dumped_exec = 0;
e0f712ba 192
c57038f8 193static malloc_zone_t *emacs_zone;
e0f712ba 194
043131c4 195/* file offset of input file's data segment */
c57038f8 196static off_t data_segment_old_fileoff = 0;
043131c4 197
c57038f8 198static struct segment_command *data_segment_scp;
043131c4 199
dd5ecd6b
DN
200static void unexec_error (const char *format, ...) NO_RETURN;
201
433456d7 202/* Read N bytes from infd into memory starting at address DEST.
e0f712ba
AC
203 Return true if successful, false otherwise. */
204static int
205unexec_read (void *dest, size_t n)
206{
207 return n == read (infd, dest, n);
208}
209
433456d7
YM
210/* Write COUNT bytes from memory starting at address SRC to outfd
211 starting at offset DEST. Return true if successful, false
212 otherwise. */
e0f712ba
AC
213static int
214unexec_write (off_t dest, const void *src, size_t count)
215{
216 if (lseek (outfd, dest, SEEK_SET) != dest)
217 return 0;
218
219 return write (outfd, src, count) == count;
220}
221
433456d7
YM
222/* Write COUNT bytes of zeros to outfd starting at offset DEST.
223 Return true if successful, false otherwise. */
224static int
225unexec_write_zero (off_t dest, size_t count)
226{
227 char buf[UNEXEC_COPY_BUFSZ];
228 ssize_t bytes;
229
72af86bd 230 memset (buf, 0, UNEXEC_COPY_BUFSZ);
433456d7
YM
231 if (lseek (outfd, dest, SEEK_SET) != dest)
232 return 0;
233
234 while (count > 0)
235 {
236 bytes = count > UNEXEC_COPY_BUFSZ ? UNEXEC_COPY_BUFSZ : count;
237 if (write (outfd, buf, bytes) != bytes)
238 return 0;
239 count -= bytes;
240 }
241
242 return 1;
243}
244
245/* Copy COUNT bytes from starting offset SRC in infd to starting
246 offset DEST in outfd. Return true if successful, false
247 otherwise. */
e0f712ba
AC
248static int
249unexec_copy (off_t dest, off_t src, ssize_t count)
250{
251 ssize_t bytes_read;
911c78b4 252 ssize_t bytes_to_read;
e0f712ba
AC
253
254 char buf[UNEXEC_COPY_BUFSZ];
255
256 if (lseek (infd, src, SEEK_SET) != src)
257 return 0;
258
259 if (lseek (outfd, dest, SEEK_SET) != dest)
260 return 0;
261
262 while (count > 0)
263 {
911c78b4
ST
264 bytes_to_read = count > UNEXEC_COPY_BUFSZ ? UNEXEC_COPY_BUFSZ : count;
265 bytes_read = read (infd, buf, bytes_to_read);
e0f712ba
AC
266 if (bytes_read <= 0)
267 return 0;
268 if (write (outfd, buf, bytes_read) != bytes_read)
269 return 0;
270 count -= bytes_read;
271 }
272
273 return 1;
274}
275
276/* Debugging and informational messages routines. */
277
278static void
7aee76f4 279unexec_error (const char *format, ...)
e0f712ba
AC
280{
281 va_list ap;
282
283 va_start (ap, format);
284 fprintf (stderr, "unexec: ");
285 vfprintf (stderr, format, ap);
286 fprintf (stderr, "\n");
287 va_end (ap);
288 exit (1);
289}
290
291static void
292print_prot (vm_prot_t prot)
293{
294 if (prot == VM_PROT_NONE)
295 printf ("none");
296 else
297 {
298 putchar (prot & VM_PROT_READ ? 'r' : ' ');
299 putchar (prot & VM_PROT_WRITE ? 'w' : ' ');
300 putchar (prot & VM_PROT_EXECUTE ? 'x' : ' ');
301 putchar (' ');
302 }
303}
304
305static void
306print_region (vm_address_t address, vm_size_t size, vm_prot_t prot,
307 vm_prot_t max_prot)
308{
73da71f9 309 printf ("%#10lx %#8lx ", (long) address, (long) size);
e0f712ba
AC
310 print_prot (prot);
311 putchar (' ');
312 print_prot (max_prot);
313 putchar ('\n');
314}
315
316static void
3d608a86 317print_region_list (void)
e0f712ba
AC
318{
319 struct region_t *r;
320
321 printf (" address size prot maxp\n");
322
323 for (r = region_list_head; r; r = r->next)
324 print_region (r->address, r->size, r->protection, r->max_protection);
325}
326
c57038f8 327static void
3d608a86 328print_regions (void)
e0f712ba
AC
329{
330 task_t target_task = mach_task_self ();
331 vm_address_t address = (vm_address_t) 0;
332 vm_size_t size;
333 struct vm_region_basic_info info;
334 mach_msg_type_number_t info_count = VM_REGION_BASIC_INFO_COUNT;
335 mach_port_t object_name;
336
337 printf (" address size prot maxp\n");
338
339 while (vm_region (target_task, &address, &size, VM_REGION_BASIC_INFO,
340 (vm_region_info_t) &info, &info_count, &object_name)
341 == KERN_SUCCESS && info_count == VM_REGION_BASIC_INFO_COUNT)
342 {
343 print_region (address, size, info.protection, info.max_protection);
344
345 if (object_name != MACH_PORT_NULL)
346 mach_port_deallocate (target_task, object_name);
177c0ea7 347
e0f712ba
AC
348 address += size;
349 }
350}
351
352/* Build the list of regions that need to be dumped. Regions with
353 addresses above VM_DATA_TOP are omitted. Adjacent regions with
354 identical protection are merged. Note that non-writable regions
355 cannot be omitted because they some regions created at run time are
356 read-only. */
357static void
3d608a86 358build_region_list (void)
e0f712ba
AC
359{
360 task_t target_task = mach_task_self ();
361 vm_address_t address = (vm_address_t) 0;
362 vm_size_t size;
363 struct vm_region_basic_info info;
364 mach_msg_type_number_t info_count = VM_REGION_BASIC_INFO_COUNT;
365 mach_port_t object_name;
366 struct region_t *r;
367
368#if VERBOSE
369 printf ("--- List of All Regions ---\n");
370 printf (" address size prot maxp\n");
371#endif
372
373 while (vm_region (target_task, &address, &size, VM_REGION_BASIC_INFO,
374 (vm_region_info_t) &info, &info_count, &object_name)
375 == KERN_SUCCESS && info_count == VM_REGION_BASIC_INFO_COUNT)
376 {
377 /* Done when we reach addresses of shared libraries, which are
378 loaded in high memory. */
379 if (address >= VM_DATA_TOP)
380 break;
381
382#if VERBOSE
383 print_region (address, size, info.protection, info.max_protection);
384#endif
385
386 /* If a region immediately follows the previous one (the one
387 most recently added to the list) and has identical
388 protection, merge it with the latter. Otherwise create a
389 new list element for it. */
390 if (region_list_tail
391 && info.protection == region_list_tail->protection
392 && info.max_protection == region_list_tail->max_protection
393 && region_list_tail->address + region_list_tail->size == address)
394 {
395 region_list_tail->size += size;
396 }
397 else
398 {
399 r = (struct region_t *) malloc (sizeof (struct region_t));
177c0ea7 400
e0f712ba
AC
401 if (!r)
402 unexec_error ("cannot allocate region structure");
177c0ea7 403
e0f712ba
AC
404 r->address = address;
405 r->size = size;
406 r->protection = info.protection;
407 r->max_protection = info.max_protection;
177c0ea7 408
e0f712ba
AC
409 r->next = 0;
410 if (region_list_head == 0)
411 {
412 region_list_head = r;
413 region_list_tail = r;
414 }
415 else
416 {
417 region_list_tail->next = r;
418 region_list_tail = r;
419 }
177c0ea7 420
e0f712ba
AC
421 /* Deallocate (unused) object name returned by
422 vm_region. */
423 if (object_name != MACH_PORT_NULL)
424 mach_port_deallocate (target_task, object_name);
425 }
177c0ea7 426
e0f712ba
AC
427 address += size;
428 }
429
430 printf ("--- List of Regions to be Dumped ---\n");
431 print_region_list ();
432}
433
434
73da71f9 435#define MAX_UNEXEC_REGIONS 400
e0f712ba 436
c57038f8
YM
437static int num_unexec_regions;
438typedef struct {
439 vm_range_t range;
440 vm_size_t filesize;
441} unexec_region_info;
442static unexec_region_info unexec_regions[MAX_UNEXEC_REGIONS];
e0f712ba
AC
443
444static void
445unexec_regions_recorder (task_t task, void *rr, unsigned type,
446 vm_range_t *ranges, unsigned num)
447{
c57038f8
YM
448 vm_address_t p;
449 vm_size_t filesize;
450
e0f712ba
AC
451 while (num && num_unexec_regions < MAX_UNEXEC_REGIONS)
452 {
ae7c60a9 453 /* Subtract the size of trailing null bytes from filesize. It
c57038f8 454 can be smaller than vmsize in segment commands. In such a
ae7c60a9
YM
455 case, trailing bytes are initialized with zeros. */
456 for (p = ranges->address + ranges->size; p > ranges->address; p--)
457 if (*(((char *) p)-1))
458 break;
459 filesize = p - ranges->address;
c57038f8
YM
460
461 unexec_regions[num_unexec_regions].filesize = filesize;
462 unexec_regions[num_unexec_regions++].range = *ranges;
463 printf ("%#10lx (sz: %#8lx/%#8lx)\n", (long) (ranges->address),
464 (long) filesize, (long) (ranges->size));
e0f712ba
AC
465 ranges++; num--;
466 }
e0f712ba
AC
467}
468
469static kern_return_t
470unexec_reader (task_t task, vm_address_t address, vm_size_t size, void **ptr)
471{
472 *ptr = (void *) address;
473 return KERN_SUCCESS;
474}
475
c57038f8 476static void
3d608a86 477find_emacs_zone_regions (void)
e0f712ba
AC
478{
479 num_unexec_regions = 0;
480
5e617bc2 481 emacs_zone->introspect->enumerator (mach_task_self (), 0,
e0f712ba
AC
482 MALLOC_PTR_REGION_RANGE_TYPE
483 | MALLOC_ADMIN_REGION_RANGE_TYPE,
484 (vm_address_t) emacs_zone,
485 unexec_reader,
486 unexec_regions_recorder);
73da71f9
YM
487
488 if (num_unexec_regions == MAX_UNEXEC_REGIONS)
489 unexec_error ("find_emacs_zone_regions: too many regions");
e0f712ba
AC
490}
491
1dd7ccf2
AC
492static int
493unexec_regions_sort_compare (const void *a, const void *b)
494{
c57038f8
YM
495 vm_address_t aa = ((unexec_region_info *) a)->range.address;
496 vm_address_t bb = ((unexec_region_info *) b)->range.address;
1dd7ccf2
AC
497
498 if (aa < bb)
499 return -1;
500 else if (aa > bb)
501 return 1;
502 else
503 return 0;
504}
505
506static void
3d608a86 507unexec_regions_merge (void)
1dd7ccf2
AC
508{
509 int i, n;
c57038f8 510 unexec_region_info r;
ae7c60a9 511 vm_size_t padsize;
1dd7ccf2
AC
512
513 qsort (unexec_regions, num_unexec_regions, sizeof (unexec_regions[0]),
514 &unexec_regions_sort_compare);
515 n = 0;
516 r = unexec_regions[0];
ae7c60a9
YM
517 padsize = r.range.address & (pagesize - 1);
518 if (padsize)
519 {
520 r.range.address -= padsize;
521 r.range.size += padsize;
522 r.filesize += padsize;
523 }
1dd7ccf2
AC
524 for (i = 1; i < num_unexec_regions; i++)
525 {
c57038f8
YM
526 if (r.range.address + r.range.size == unexec_regions[i].range.address
527 && r.range.size - r.filesize < 2 * pagesize)
1dd7ccf2 528 {
c57038f8
YM
529 r.filesize = r.range.size + unexec_regions[i].filesize;
530 r.range.size += unexec_regions[i].range.size;
1dd7ccf2
AC
531 }
532 else
533 {
534 unexec_regions[n++] = r;
535 r = unexec_regions[i];
ae7c60a9
YM
536 padsize = r.range.address & (pagesize - 1);
537 if (padsize)
538 {
539 if ((unexec_regions[n-1].range.address
540 + unexec_regions[n-1].range.size) == r.range.address)
541 unexec_regions[n-1].range.size -= padsize;
542
543 r.range.address -= padsize;
544 r.range.size += padsize;
545 r.filesize += padsize;
546 }
1dd7ccf2
AC
547 }
548 }
549 unexec_regions[n++] = r;
550 num_unexec_regions = n;
551}
552
e0f712ba
AC
553
554/* More informational messages routines. */
555
556static void
557print_load_command_name (int lc)
558{
559 switch (lc)
560 {
561 case LC_SEGMENT:
73da71f9 562#ifndef _LP64
e0f712ba 563 printf ("LC_SEGMENT ");
73da71f9
YM
564#else
565 printf ("LC_SEGMENT_64 ");
566#endif
e0f712ba
AC
567 break;
568 case LC_LOAD_DYLINKER:
569 printf ("LC_LOAD_DYLINKER ");
570 break;
571 case LC_LOAD_DYLIB:
572 printf ("LC_LOAD_DYLIB ");
573 break;
574 case LC_SYMTAB:
575 printf ("LC_SYMTAB ");
576 break;
577 case LC_DYSYMTAB:
578 printf ("LC_DYSYMTAB ");
579 break;
580 case LC_UNIXTHREAD:
581 printf ("LC_UNIXTHREAD ");
582 break;
583 case LC_PREBOUND_DYLIB:
584 printf ("LC_PREBOUND_DYLIB");
585 break;
586 case LC_TWOLEVEL_HINTS:
587 printf ("LC_TWOLEVEL_HINTS");
588 break;
ae7c60a9
YM
589#ifdef LC_UUID
590 case LC_UUID:
591 printf ("LC_UUID ");
592 break;
6bcd6333
YM
593#endif
594#ifdef LC_DYLD_INFO
595 case LC_DYLD_INFO:
596 printf ("LC_DYLD_INFO ");
597 break;
598 case LC_DYLD_INFO_ONLY:
599 printf ("LC_DYLD_INFO_ONLY");
600 break;
7963fa06
YM
601#endif
602#ifdef LC_VERSION_MIN_MACOSX
603 case LC_VERSION_MIN_MACOSX:
604 printf ("LC_VERSION_MIN_MACOSX");
605 break;
606#endif
607#ifdef LC_FUNCTION_STARTS
608 case LC_FUNCTION_STARTS:
609 printf ("LC_FUNCTION_STARTS");
610 break;
ae7c60a9 611#endif
e0f712ba
AC
612 default:
613 printf ("unknown ");
614 }
615}
616
617static void
618print_load_command (struct load_command *lc)
619{
620 print_load_command_name (lc->cmd);
621 printf ("%8d", lc->cmdsize);
622
623 if (lc->cmd == LC_SEGMENT)
624 {
625 struct segment_command *scp;
626 struct section *sectp;
627 int j;
628
629 scp = (struct segment_command *) lc;
73da71f9
YM
630 printf (" %-16.16s %#10lx %#8lx\n",
631 scp->segname, (long) (scp->vmaddr), (long) (scp->vmsize));
e0f712ba
AC
632
633 sectp = (struct section *) (scp + 1);
634 for (j = 0; j < scp->nsects; j++)
635 {
73da71f9
YM
636 printf (" %-16.16s %#10lx %#8lx\n",
637 sectp->sectname, (long) (sectp->addr), (long) (sectp->size));
e0f712ba
AC
638 sectp++;
639 }
640 }
641 else
642 printf ("\n");
643}
644
645/* Read header and load commands from input file. Store the latter in
646 the global array lca. Store the total number of load commands in
647 global variable nlc. */
648static void
3d608a86 649read_load_commands (void)
e0f712ba 650{
7f900522 651 int i;
e0f712ba
AC
652
653 if (!unexec_read (&mh, sizeof (struct mach_header)))
654 unexec_error ("cannot read mach-o header");
655
656 if (mh.magic != MH_MAGIC)
657 unexec_error ("input file not in Mach-O format");
658
659 if (mh.filetype != MH_EXECUTE)
660 unexec_error ("input Mach-O file is not an executable object file");
661
662#if VERBOSE
663 printf ("--- Header Information ---\n");
664 printf ("Magic = 0x%08x\n", mh.magic);
665 printf ("CPUType = %d\n", mh.cputype);
666 printf ("CPUSubType = %d\n", mh.cpusubtype);
667 printf ("FileType = 0x%x\n", mh.filetype);
668 printf ("NCmds = %d\n", mh.ncmds);
669 printf ("SizeOfCmds = %d\n", mh.sizeofcmds);
670 printf ("Flags = 0x%08x\n", mh.flags);
671#endif
672
673 nlc = mh.ncmds;
674 lca = (struct load_command **) malloc (nlc * sizeof (struct load_command *));
177c0ea7 675
e0f712ba
AC
676 for (i = 0; i < nlc; i++)
677 {
678 struct load_command lc;
679 /* Load commands are variable-size: so read the command type and
680 size first and then read the rest. */
681 if (!unexec_read (&lc, sizeof (struct load_command)))
682 unexec_error ("cannot read load command");
683 lca[i] = (struct load_command *) malloc (lc.cmdsize);
684 memcpy (lca[i], &lc, sizeof (struct load_command));
685 if (!unexec_read (lca[i] + 1, lc.cmdsize - sizeof (struct load_command)))
686 unexec_error ("cannot read content of load command");
687 if (lc.cmd == LC_SEGMENT)
688 {
689 struct segment_command *scp = (struct segment_command *) lca[i];
177c0ea7 690
e0f712ba
AC
691 if (scp->vmaddr + scp->vmsize > infile_lc_highest_addr)
692 infile_lc_highest_addr = scp->vmaddr + scp->vmsize;
693
694 if (strncmp (scp->segname, SEG_TEXT, 16) == 0)
695 {
696 struct section *sectp = (struct section *) (scp + 1);
697 int j;
698
699 for (j = 0; j < scp->nsects; j++)
700 if (sectp->offset < text_seg_lowest_offset)
701 text_seg_lowest_offset = sectp->offset;
702 }
703 }
704 }
705
3d608a86
J
706 printf ("Highest address of load commands in input file: %#8lx\n",
707 (unsigned long)infile_lc_highest_addr);
e0f712ba 708
c57038f8 709 printf ("Lowest offset of all sections in __TEXT segment: %#8lx\n",
e0f712ba
AC
710 text_seg_lowest_offset);
711
712 printf ("--- List of Load Commands in Input File ---\n");
713 printf ("# cmd cmdsize name address size\n");
714
715 for (i = 0; i < nlc; i++)
716 {
717 printf ("%1d ", i);
718 print_load_command (lca[i]);
719 }
720}
721
722/* Copy a LC_SEGMENT load command other than the __DATA segment from
723 the input file to the output file, adjusting the file offset of the
724 segment and the file offsets of sections contained in it. */
725static void
726copy_segment (struct load_command *lc)
727{
728 struct segment_command *scp = (struct segment_command *) lc;
729 unsigned long old_fileoff = scp->fileoff;
730 struct section *sectp;
731 int j;
732
73da71f9 733 scp->fileoff = curr_file_offset;
e0f712ba
AC
734
735 sectp = (struct section *) (scp + 1);
736 for (j = 0; j < scp->nsects; j++)
737 {
73da71f9 738 sectp->offset += curr_file_offset - old_fileoff;
e0f712ba
AC
739 sectp++;
740 }
741
c57038f8
YM
742 printf ("Writing segment %-16.16s @ %#8lx (%#8lx/%#8lx @ %#10lx)\n",
743 scp->segname, (long) (scp->fileoff), (long) (scp->filesize),
744 (long) (scp->vmsize), (long) (scp->vmaddr));
e0f712ba
AC
745
746 if (!unexec_copy (scp->fileoff, old_fileoff, scp->filesize))
747 unexec_error ("cannot copy segment from input to output file");
73da71f9
YM
748 curr_file_offset += ROUNDUP_TO_PAGE_BOUNDARY (scp->filesize);
749
e0f712ba
AC
750 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
751 unexec_error ("cannot write load command to header");
752
753 curr_header_offset += lc->cmdsize;
754}
755
756/* Copy a LC_SEGMENT load command for the __DATA segment in the input
757 file to the output file. We assume that only one such segment load
758 command exists in the input file and it contains the sections
759 __data, __bss, __common, __la_symbol_ptr, __nl_symbol_ptr, and
760 __dyld. The first three of these should be dumped from memory and
761 the rest should be copied from the input file. Note that the
762 sections __bss and __common contain no data in the input file
763 because their flag fields have the value S_ZEROFILL. Dumping these
764 from memory makes it necessary to adjust file offset fields in
765 subsequently dumped load commands. Then, create new __DATA segment
766 load commands for regions on the region list other than the one
767 corresponding to the __DATA segment in the input file. */
768static void
769copy_data_segment (struct load_command *lc)
770{
771 struct segment_command *scp = (struct segment_command *) lc;
772 struct section *sectp;
773 int j;
c57038f8
YM
774 unsigned long header_offset, old_file_offset;
775
776 /* The new filesize of the segment is set to its vmsize because data
777 blocks for segments must start at region boundaries. Note that
778 this may leave unused locations at the end of the segment data
779 block because the total of the sizes of all sections in the
780 segment is generally smaller than vmsize. */
781 scp->filesize = scp->vmsize;
e0f712ba 782
c57038f8
YM
783 printf ("Writing segment %-16.16s @ %#8lx (%#8lx/%#8lx @ %#10lx)\n",
784 scp->segname, curr_file_offset, (long)(scp->filesize),
785 (long)(scp->vmsize), (long) (scp->vmaddr));
e0f712ba
AC
786
787 /* Offsets in the output file for writing the next section structure
788 and segment data block, respectively. */
789 header_offset = curr_header_offset + sizeof (struct segment_command);
790
791 sectp = (struct section *) (scp + 1);
792 for (j = 0; j < scp->nsects; j++)
793 {
794 old_file_offset = sectp->offset;
73da71f9 795 sectp->offset = sectp->addr - scp->vmaddr + curr_file_offset;
e0f712ba
AC
796 /* The __data section is dumped from memory. The __bss and
797 __common sections are also dumped from memory but their flag
798 fields require changing (from S_ZEROFILL to S_REGULAR). The
799 other three kinds of sections are just copied from the input
800 file. */
801 if (strncmp (sectp->sectname, SECT_DATA, 16) == 0)
802 {
803 if (!unexec_write (sectp->offset, (void *) sectp->addr, sectp->size))
804 unexec_error ("cannot write section %s", SECT_DATA);
805 if (!unexec_write (header_offset, sectp, sizeof (struct section)))
806 unexec_error ("cannot write section %s's header", SECT_DATA);
807 }
433456d7 808 else if (strncmp (sectp->sectname, SECT_COMMON, 16) == 0)
e0f712ba
AC
809 {
810 sectp->flags = S_REGULAR;
811 if (!unexec_write (sectp->offset, (void *) sectp->addr, sectp->size))
433456d7 812 unexec_error ("cannot write section %s", sectp->sectname);
e0f712ba 813 if (!unexec_write (header_offset, sectp, sizeof (struct section)))
433456d7
YM
814 unexec_error ("cannot write section %s's header", sectp->sectname);
815 }
816 else if (strncmp (sectp->sectname, SECT_BSS, 16) == 0)
817 {
818 extern char *my_endbss_static;
819 unsigned long my_size;
820
821 sectp->flags = S_REGULAR;
822
823 /* Clear uninitialized local variables in statically linked
824 libraries. In particular, function pointers stored by
825 libSystemStub.a, which is introduced in Mac OS X 10.4 for
826 binary compatibility with respect to long double, are
827 cleared so that they will be reinitialized when the
828 dumped binary is executed on other versions of OS. */
829 my_size = (unsigned long)my_endbss_static - sectp->addr;
830 if (!(sectp->addr <= (unsigned long)my_endbss_static
831 && my_size <= sectp->size))
832 unexec_error ("my_endbss_static is not in section %s",
833 sectp->sectname);
834 if (!unexec_write (sectp->offset, (void *) sectp->addr, my_size))
835 unexec_error ("cannot write section %s", sectp->sectname);
836 if (!unexec_write_zero (sectp->offset + my_size,
837 sectp->size - my_size))
838 unexec_error ("cannot write section %s", sectp->sectname);
839 if (!unexec_write (header_offset, sectp, sizeof (struct section)))
840 unexec_error ("cannot write section %s's header", sectp->sectname);
e0f712ba
AC
841 }
842 else if (strncmp (sectp->sectname, "__la_symbol_ptr", 16) == 0
843 || strncmp (sectp->sectname, "__nl_symbol_ptr", 16) == 0
c47cbdfd 844 || strncmp (sectp->sectname, "__got", 16) == 0
427c5b1b 845 || strncmp (sectp->sectname, "__la_sym_ptr2", 16) == 0
e0f712ba 846 || strncmp (sectp->sectname, "__dyld", 16) == 0
7290a344 847 || strncmp (sectp->sectname, "__const", 16) == 0
b2411edf
YM
848 || strncmp (sectp->sectname, "__cfstring", 16) == 0
849 || strncmp (sectp->sectname, "__gcc_except_tab", 16) == 0
6bcd6333 850 || strncmp (sectp->sectname, "__program_vars", 16) == 0
b2411edf 851 || strncmp (sectp->sectname, "__objc_", 7) == 0)
e0f712ba
AC
852 {
853 if (!unexec_copy (sectp->offset, old_file_offset, sectp->size))
854 unexec_error ("cannot copy section %s", sectp->sectname);
855 if (!unexec_write (header_offset, sectp, sizeof (struct section)))
856 unexec_error ("cannot write section %s's header", sectp->sectname);
857 }
858 else
859 unexec_error ("unrecognized section name in __DATA segment");
177c0ea7 860
73da71f9
YM
861 printf (" section %-16.16s at %#8lx - %#8lx (sz: %#8lx)\n",
862 sectp->sectname, (long) (sectp->offset),
863 (long) (sectp->offset + sectp->size), (long) (sectp->size));
e0f712ba
AC
864
865 header_offset += sizeof (struct section);
866 sectp++;
867 }
868
c57038f8
YM
869 curr_file_offset += ROUNDUP_TO_PAGE_BOUNDARY (scp->filesize);
870
e0f712ba
AC
871 if (!unexec_write (curr_header_offset, scp, sizeof (struct segment_command)))
872 unexec_error ("cannot write header of __DATA segment");
873 curr_header_offset += lc->cmdsize;
874
875 /* Create new __DATA segment load commands for regions on the region
876 list that do not corresponding to any segment load commands in
877 the input file.
73da71f9 878 */
e0f712ba
AC
879 for (j = 0; j < num_unexec_regions; j++)
880 {
881 struct segment_command sc;
177c0ea7 882
e0f712ba
AC
883 sc.cmd = LC_SEGMENT;
884 sc.cmdsize = sizeof (struct segment_command);
885 strncpy (sc.segname, SEG_DATA, 16);
c57038f8
YM
886 sc.vmaddr = unexec_regions[j].range.address;
887 sc.vmsize = unexec_regions[j].range.size;
73da71f9 888 sc.fileoff = curr_file_offset;
c57038f8 889 sc.filesize = unexec_regions[j].filesize;
e0f712ba
AC
890 sc.maxprot = VM_PROT_READ | VM_PROT_WRITE;
891 sc.initprot = VM_PROT_READ | VM_PROT_WRITE;
892 sc.nsects = 0;
893 sc.flags = 0;
177c0ea7 894
c57038f8
YM
895 printf ("Writing segment %-16.16s @ %#8lx (%#8lx/%#8lx @ %#10lx)\n",
896 sc.segname, (long) (sc.fileoff), (long) (sc.filesize),
897 (long) (sc.vmsize), (long) (sc.vmaddr));
e0f712ba 898
c57038f8 899 if (!unexec_write (sc.fileoff, (void *) sc.vmaddr, sc.filesize))
e0f712ba 900 unexec_error ("cannot write new __DATA segment");
73da71f9 901 curr_file_offset += ROUNDUP_TO_PAGE_BOUNDARY (sc.filesize);
177c0ea7 902
e0f712ba
AC
903 if (!unexec_write (curr_header_offset, &sc, sc.cmdsize))
904 unexec_error ("cannot write new __DATA segment's header");
905 curr_header_offset += sc.cmdsize;
906 mh.ncmds++;
907 }
908}
909
910/* Copy a LC_SYMTAB load command from the input file to the output
911 file, adjusting the file offset fields. */
912static void
73da71f9 913copy_symtab (struct load_command *lc, long delta)
e0f712ba
AC
914{
915 struct symtab_command *stp = (struct symtab_command *) lc;
916
917 stp->symoff += delta;
918 stp->stroff += delta;
919
920 printf ("Writing LC_SYMTAB command\n");
921
922 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
923 unexec_error ("cannot write symtab command to header");
924
925 curr_header_offset += lc->cmdsize;
926}
927
043131c4
AC
928/* Fix up relocation entries. */
929static void
7aee2da7 930unrelocate (const char *name, off_t reloff, int nrel, vm_address_t base)
043131c4
AC
931{
932 int i, unreloc_count;
933 struct relocation_info reloc_info;
934 struct scattered_relocation_info *sc_reloc_info
935 = (struct scattered_relocation_info *) &reloc_info;
7aee2da7 936 vm_address_t location;
043131c4
AC
937
938 for (unreloc_count = 0, i = 0; i < nrel; i++)
939 {
940 if (lseek (infd, reloff, L_SET) != reloff)
941 unexec_error ("unrelocate: %s:%d cannot seek to reloc_info", name, i);
942 if (!unexec_read (&reloc_info, sizeof (reloc_info)))
943 unexec_error ("unrelocate: %s:%d cannot read reloc_info", name, i);
944 reloff += sizeof (reloc_info);
945
946 if (sc_reloc_info->r_scattered == 0)
947 switch (reloc_info.r_type)
948 {
949 case GENERIC_RELOC_VANILLA:
7aee2da7 950 location = base + reloc_info.r_address;
b2411edf
YM
951 if (location >= data_segment_scp->vmaddr
952 && location < (data_segment_scp->vmaddr
953 + data_segment_scp->vmsize))
043131c4
AC
954 {
955 off_t src_off = data_segment_old_fileoff
b2411edf 956 + (location - data_segment_scp->vmaddr);
043131c4 957 off_t dst_off = data_segment_scp->fileoff
b2411edf 958 + (location - data_segment_scp->vmaddr);
043131c4
AC
959
960 if (!unexec_copy (dst_off, src_off, 1 << reloc_info.r_length))
961 unexec_error ("unrelocate: %s:%d cannot copy original value",
962 name, i);
963 unreloc_count++;
964 }
965 break;
966 default:
967 unexec_error ("unrelocate: %s:%d cannot handle type = %d",
968 name, i, reloc_info.r_type);
969 }
970 else
971 switch (sc_reloc_info->r_type)
972 {
973#if defined (__ppc__)
974 case PPC_RELOC_PB_LA_PTR:
975 /* nothing to do for prebound lazy pointer */
976 break;
977#endif
978 default:
979 unexec_error ("unrelocate: %s:%d cannot handle scattered type = %d",
980 name, i, sc_reloc_info->r_type);
981 }
982 }
983
984 if (nrel > 0)
985 printf ("Fixed up %d/%d %s relocation entries in data segment.\n",
986 unreloc_count, nrel, name);
987}
988
7aee2da7
YM
989#if __ppc64__
990/* Rebase r_address in the relocation table. */
991static void
992rebase_reloc_address (off_t reloff, int nrel, long linkedit_delta, long diff)
993{
994 int i;
995 struct relocation_info reloc_info;
996 struct scattered_relocation_info *sc_reloc_info
997 = (struct scattered_relocation_info *) &reloc_info;
998
999 for (i = 0; i < nrel; i++, reloff += sizeof (reloc_info))
1000 {
1001 if (lseek (infd, reloff - linkedit_delta, L_SET)
1002 != reloff - linkedit_delta)
1003 unexec_error ("rebase_reloc_table: cannot seek to reloc_info");
1004 if (!unexec_read (&reloc_info, sizeof (reloc_info)))
1005 unexec_error ("rebase_reloc_table: cannot read reloc_info");
1006
1007 if (sc_reloc_info->r_scattered == 0
1008 && reloc_info.r_type == GENERIC_RELOC_VANILLA)
1009 {
1010 reloc_info.r_address -= diff;
1011 if (!unexec_write (reloff, &reloc_info, sizeof (reloc_info)))
1012 unexec_error ("rebase_reloc_table: cannot write reloc_info");
1013 }
1014 }
1015}
1016#endif
1017
e0f712ba
AC
1018/* Copy a LC_DYSYMTAB load command from the input file to the output
1019 file, adjusting the file offset fields. */
1020static void
73da71f9 1021copy_dysymtab (struct load_command *lc, long delta)
e0f712ba
AC
1022{
1023 struct dysymtab_command *dstp = (struct dysymtab_command *) lc;
7aee2da7 1024 vm_address_t base;
e0f712ba 1025
7aee2da7
YM
1026#ifdef _LP64
1027#if __ppc64__
1028 {
1029 int i;
1030
1031 base = 0;
1032 for (i = 0; i < nlc; i++)
1033 if (lca[i]->cmd == LC_SEGMENT)
1034 {
1035 struct segment_command *scp = (struct segment_command *) lca[i];
1036
1037 if (scp->vmaddr + scp->vmsize > 0x100000000
1038 && (scp->initprot & VM_PROT_WRITE) != 0)
1039 {
1040 base = data_segment_scp->vmaddr;
1041 break;
1042 }
1043 }
1044 }
1045#else
1046 /* First writable segment address. */
1047 base = data_segment_scp->vmaddr;
1048#endif
1049#else
1050 /* First segment address in the file (unless MH_SPLIT_SEGS set). */
1051 base = 0;
1052#endif
1053
1054 unrelocate ("local", dstp->locreloff, dstp->nlocrel, base);
1055 unrelocate ("external", dstp->extreloff, dstp->nextrel, base);
e0f712ba
AC
1056
1057 if (dstp->nextrel > 0) {
1058 dstp->extreloff += delta;
1059 }
1060
1061 if (dstp->nlocrel > 0) {
1062 dstp->locreloff += delta;
1063 }
1064
1065 if (dstp->nindirectsyms > 0)
1066 dstp->indirectsymoff += delta;
1067
1068 printf ("Writing LC_DYSYMTAB command\n");
1069
1070 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
1071 unexec_error ("cannot write symtab command to header");
1072
1073 curr_header_offset += lc->cmdsize;
7aee2da7
YM
1074
1075#if __ppc64__
1076 /* Check if the relocation base needs to be changed. */
1077 if (base == 0)
1078 {
1079 vm_address_t newbase = 0;
1080 int i;
1081
1082 for (i = 0; i < num_unexec_regions; i++)
1083 if (unexec_regions[i].range.address + unexec_regions[i].range.size
1084 > 0x100000000)
1085 {
1086 newbase = data_segment_scp->vmaddr;
1087 break;
1088 }
1089
1090 if (newbase)
1091 {
1092 rebase_reloc_address (dstp->locreloff, dstp->nlocrel, delta, newbase);
1093 rebase_reloc_address (dstp->extreloff, dstp->nextrel, delta, newbase);
1094 }
1095 }
1096#endif
e0f712ba
AC
1097}
1098
40e6ff95
ST
1099/* Copy a LC_TWOLEVEL_HINTS load command from the input file to the output
1100 file, adjusting the file offset fields. */
1101static void
73da71f9 1102copy_twolevelhints (struct load_command *lc, long delta)
40e6ff95
ST
1103{
1104 struct twolevel_hints_command *tlhp = (struct twolevel_hints_command *) lc;
1105
1106 if (tlhp->nhints > 0) {
1107 tlhp->offset += delta;
1108 }
1109
1110 printf ("Writing LC_TWOLEVEL_HINTS command\n");
1111
1112 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
1113 unexec_error ("cannot write two level hint command to header");
1114
1115 curr_header_offset += lc->cmdsize;
1116}
1117
6bcd6333
YM
1118#ifdef LC_DYLD_INFO
1119/* Copy a LC_DYLD_INFO(_ONLY) load command from the input file to the output
1120 file, adjusting the file offset fields. */
1121static void
1122copy_dyld_info (struct load_command *lc, long delta)
1123{
1124 struct dyld_info_command *dip = (struct dyld_info_command *) lc;
1125
1126 if (dip->rebase_off > 0)
1127 dip->rebase_off += delta;
1128 if (dip->bind_off > 0)
1129 dip->bind_off += delta;
1130 if (dip->weak_bind_off > 0)
1131 dip->weak_bind_off += delta;
1132 if (dip->lazy_bind_off > 0)
1133 dip->lazy_bind_off += delta;
1134 if (dip->export_off > 0)
1135 dip->export_off += delta;
1136
1137 printf ("Writing ");
1138 print_load_command_name (lc->cmd);
1139 printf (" command\n");
1140
1141 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
1142 unexec_error ("cannot write dyld info command to header");
1143
1144 curr_header_offset += lc->cmdsize;
1145}
1146#endif
1147
7963fa06
YM
1148#ifdef LC_FUNCTION_STARTS
1149/* Copy a LC_FUNCTION_STARTS load command from the input file to the
1150 output file, adjusting the data offset field. */
1151static void
1152copy_linkedit_data (struct load_command *lc, long delta)
1153{
1154 struct linkedit_data_command *ldp = (struct linkedit_data_command *) lc;
1155
1156 if (ldp->dataoff > 0)
1157 ldp->dataoff += delta;
1158
1159 printf ("Writing ");
1160 print_load_command_name (lc->cmd);
1161 printf (" command\n");
1162
1163 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
1164 unexec_error ("cannot write linkedit data command to header");
1165
1166 curr_header_offset += lc->cmdsize;
1167}
1168#endif
1169
e0f712ba
AC
1170/* Copy other kinds of load commands from the input file to the output
1171 file, ones that do not require adjustments of file offsets. */
1172static void
1173copy_other (struct load_command *lc)
1174{
1175 printf ("Writing ");
1176 print_load_command_name (lc->cmd);
1177 printf (" command\n");
1178
1179 if (!unexec_write (curr_header_offset, lc, lc->cmdsize))
1180 unexec_error ("cannot write symtab command to header");
1181
1182 curr_header_offset += lc->cmdsize;
1183}
1184
1185/* Loop through all load commands and dump them. Then write the Mach
1186 header. */
1187static void
3d608a86 1188dump_it (void)
e0f712ba
AC
1189{
1190 int i;
73da71f9 1191 long linkedit_delta = 0;
e0f712ba
AC
1192
1193 printf ("--- Load Commands written to Output File ---\n");
1194
1195 for (i = 0; i < nlc; i++)
1196 switch (lca[i]->cmd)
1197 {
1198 case LC_SEGMENT:
1199 {
1200 struct segment_command *scp = (struct segment_command *) lca[i];
1201 if (strncmp (scp->segname, SEG_DATA, 16) == 0)
1202 {
043131c4
AC
1203 /* save data segment file offset and segment_command for
1204 unrelocate */
73da71f9
YM
1205 if (data_segment_old_fileoff)
1206 unexec_error ("cannot handle multiple DATA segments"
1207 " in input file");
043131c4
AC
1208 data_segment_old_fileoff = scp->fileoff;
1209 data_segment_scp = scp;
1210
e0f712ba
AC
1211 copy_data_segment (lca[i]);
1212 }
1213 else
1214 {
73da71f9
YM
1215 if (strncmp (scp->segname, SEG_LINKEDIT, 16) == 0)
1216 {
1217 if (linkedit_delta)
1218 unexec_error ("cannot handle multiple LINKEDIT segments"
1219 " in input file");
1220 linkedit_delta = curr_file_offset - scp->fileoff;
1221 }
1222
e0f712ba
AC
1223 copy_segment (lca[i]);
1224 }
1225 }
1226 break;
1227 case LC_SYMTAB:
73da71f9 1228 copy_symtab (lca[i], linkedit_delta);
e0f712ba
AC
1229 break;
1230 case LC_DYSYMTAB:
73da71f9 1231 copy_dysymtab (lca[i], linkedit_delta);
e0f712ba 1232 break;
40e6ff95 1233 case LC_TWOLEVEL_HINTS:
73da71f9 1234 copy_twolevelhints (lca[i], linkedit_delta);
40e6ff95 1235 break;
6bcd6333
YM
1236#ifdef LC_DYLD_INFO
1237 case LC_DYLD_INFO:
1238 case LC_DYLD_INFO_ONLY:
1239 copy_dyld_info (lca[i], linkedit_delta);
1240 break;
7963fa06
YM
1241#endif
1242#ifdef LC_FUNCTION_STARTS
1243 case LC_FUNCTION_STARTS:
1244 copy_linkedit_data (lca[i], linkedit_delta);
1245 break;
6bcd6333 1246#endif
e0f712ba
AC
1247 default:
1248 copy_other (lca[i]);
1249 break;
1250 }
1251
1252 if (curr_header_offset > text_seg_lowest_offset)
1253 unexec_error ("not enough room for load commands for new __DATA segments");
1254
c57038f8 1255 printf ("%ld unused bytes follow Mach-O header\n",
e0f712ba
AC
1256 text_seg_lowest_offset - curr_header_offset);
1257
1258 mh.sizeofcmds = curr_header_offset - sizeof (struct mach_header);
1259 if (!unexec_write (0, &mh, sizeof (struct mach_header)))
1260 unexec_error ("cannot write final header contents");
1261}
1262
1263/* Take a snapshot of Emacs and make a Mach-O format executable file
1264 from it. The file names of the output and input files are outfile
1265 and infile, respectively. The three other parameters are
1266 ignored. */
381259ef 1267void
dd5ecd6b 1268unexec (const char *outfile, const char *infile)
e0f712ba 1269{
6dc5c8a7
YM
1270 if (in_dumped_exec)
1271 unexec_error ("Unexec from a dumped executable is not supported.");
1272
73da71f9 1273 pagesize = getpagesize ();
e0f712ba
AC
1274 infd = open (infile, O_RDONLY, 0);
1275 if (infd < 0)
1276 {
1277 unexec_error ("cannot open input file `%s'", infile);
1278 }
177c0ea7 1279
e0f712ba
AC
1280 outfd = open (outfile, O_WRONLY | O_TRUNC | O_CREAT, 0755);
1281 if (outfd < 0)
1282 {
1283 close (infd);
1284 unexec_error ("cannot open output file `%s'", outfile);
1285 }
1286
1287 build_region_list ();
1288 read_load_commands ();
1289
1290 find_emacs_zone_regions ();
1dd7ccf2 1291 unexec_regions_merge ();
e0f712ba
AC
1292
1293 in_dumped_exec = 1;
1294
1295 dump_it ();
1296
1297 close (outfd);
1298}
1299
1300
1301void
3d608a86 1302unexec_init_emacs_zone (void)
e0f712ba
AC
1303{
1304 emacs_zone = malloc_create_zone (0, 0);
1305 malloc_set_zone_name (emacs_zone, "EmacsZone");
1306}
1307
40ef0695
YM
1308#ifndef MACOSX_MALLOC_MULT16
1309#define MACOSX_MALLOC_MULT16 1
1310#endif
1311
1312typedef struct unexec_malloc_header {
1313 union {
1314 char c[8];
1315 size_t size;
1316 } u;
1317} unexec_malloc_header_t;
1318
1319#if MACOSX_MALLOC_MULT16
1320
1321#define ptr_in_unexec_regions(p) ((((vm_address_t) (p)) & 8) != 0)
1322
1323#else
1324
e0f712ba
AC
1325int
1326ptr_in_unexec_regions (void *ptr)
1327{
1328 int i;
1329
1330 for (i = 0; i < num_unexec_regions; i++)
c57038f8
YM
1331 if ((vm_address_t) ptr - unexec_regions[i].range.address
1332 < unexec_regions[i].range.size)
e0f712ba
AC
1333 return 1;
1334
1335 return 0;
1336}
1337
40ef0695
YM
1338#endif
1339
e0f712ba
AC
1340void *
1341unexec_malloc (size_t size)
1342{
1343 if (in_dumped_exec)
40ef0695
YM
1344 {
1345 void *p;
1346
1347 p = malloc (size);
1348#if MACOSX_MALLOC_MULT16
1349 assert (((vm_address_t) p % 16) == 0);
1350#endif
1351 return p;
1352 }
e0f712ba 1353 else
40ef0695
YM
1354 {
1355 unexec_malloc_header_t *ptr;
1356
1357 ptr = (unexec_malloc_header_t *)
1358 malloc_zone_malloc (emacs_zone, size + sizeof (unexec_malloc_header_t));
1359 ptr->u.size = size;
1360 ptr++;
1361#if MACOSX_MALLOC_MULT16
1362 assert (((vm_address_t) ptr % 16) == 8);
1363#endif
1364 return (void *) ptr;
1365 }
e0f712ba
AC
1366}
1367
1368void *
1369unexec_realloc (void *old_ptr, size_t new_size)
1370{
1371 if (in_dumped_exec)
40ef0695
YM
1372 {
1373 void *p;
1374
1375 if (ptr_in_unexec_regions (old_ptr))
1376 {
40ef0695
YM
1377 size_t old_size = ((unexec_malloc_header_t *) old_ptr)[-1].u.size;
1378 size_t size = new_size > old_size ? old_size : new_size;
1379
0da46b6e 1380 p = (size_t *) malloc (new_size);
40ef0695
YM
1381 if (size)
1382 memcpy (p, old_ptr, size);
1383 }
1384 else
1385 {
1386 p = realloc (old_ptr, new_size);
1387 }
1388#if MACOSX_MALLOC_MULT16
1389 assert (((vm_address_t) p % 16) == 0);
1390#endif
1391 return p;
1392 }
e0f712ba 1393 else
40ef0695
YM
1394 {
1395 unexec_malloc_header_t *ptr;
1396
1397 ptr = (unexec_malloc_header_t *)
1398 malloc_zone_realloc (emacs_zone, (unexec_malloc_header_t *) old_ptr - 1,
1399 new_size + sizeof (unexec_malloc_header_t));
1400 ptr->u.size = new_size;
1401 ptr++;
1402#if MACOSX_MALLOC_MULT16
1403 assert (((vm_address_t) ptr % 16) == 8);
1404#endif
1405 return (void *) ptr;
1406 }
e0f712ba
AC
1407}
1408
1409void
1410unexec_free (void *ptr)
1411{
9c5e177e
JM
1412 if (ptr == NULL)
1413 return;
e0f712ba
AC
1414 if (in_dumped_exec)
1415 {
1416 if (!ptr_in_unexec_regions (ptr))
1417 free (ptr);
1418 }
1419 else
40ef0695 1420 malloc_zone_free (emacs_zone, (unexec_malloc_header_t *) ptr - 1);
e0f712ba 1421}