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