Remove code depending on !COFF and USG, the file is
[bpt/emacs.git] / src / unexec.c
1 /* Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993, 1994, 2001, 2002, 2003,
2 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
3
4 This file is part of GNU Emacs.
5
6 GNU Emacs is free software: you can redistribute it and/or modify
7 it under the terms of the GNU General Public License as published by
8 the Free Software Foundation, either version 3 of the License, or
9 (at your option) any later version.
10
11 GNU Emacs is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
18
19
20 /*
21 * unexec.c - Convert a running program into an a.out file.
22 *
23 * Author: Spencer W. Thomas
24 * Computer Science Dept.
25 * University of Utah
26 * Date: Tue Mar 2 1982
27 * Modified heavily since then.
28 *
29 * Synopsis:
30 * unexec (new_name, a_name, data_start, bss_start, entry_address)
31 * char *new_name, *a_name;
32 * unsigned data_start, bss_start, entry_address;
33 *
34 * Takes a snapshot of the program and makes an a.out format file in the
35 * file named by the string argument new_name.
36 * If a_name is non-NULL, the symbol table will be taken from the given file.
37 * On some machines, an existing a_name file is required.
38 *
39 * The boundaries within the a.out file may be adjusted with the data_start
40 * and bss_start arguments. Either or both may be given as 0 for defaults.
41 *
42 * Data_start gives the boundary between the text segment and the data
43 * segment of the program. The text segment can contain shared, read-only
44 * program code and literal data, while the data segment is always unshared
45 * and unprotected. Data_start gives the lowest unprotected address.
46 * The value you specify may be rounded down to a suitable boundary
47 * as required by the machine you are using.
48 *
49 * Specifying zero for data_start means the boundary between text and data
50 * should not be the same as when the program was loaded.
51 * If NO_REMAP is defined, the argument data_start is ignored and the
52 * segment boundaries are never changed.
53 *
54 * Bss_start indicates how much of the data segment is to be saved in the
55 * a.out file and restored when the program is executed. It gives the lowest
56 * unsaved address, and is rounded up to a page boundary. The default when 0
57 * is given assumes that the entire data segment is to be stored, including
58 * the previous data and bss as well as any additional storage allocated with
59 * break (2).
60 *
61 * The new file is set up to start at entry_address.
62 *
63 * If you make improvements I'd like to get them too.
64 * harpo!utah-cs!thomas, thomas@Utah-20
65 *
66 */
67
68 /* Modified to support SysVr3 shared libraries by James Van Artsdalen
69 * of Dell Computer Corporation. james@bigtex.cactus.org.
70 */
71
72 /* There are several compilation parameters affecting unexec:
73
74 * COFF
75
76 Define this if your system uses COFF for executables.
77
78 * NO_REMAP
79
80 Define this if you do not want to try to save Emacs's pure data areas
81 as part of the text segment.
82
83 Saving them as text is good because it allows users to share more.
84
85 However, on machines that locate the text area far from the data area,
86 the boundary cannot feasibly be moved. Such machines require
87 NO_REMAP.
88
89 Also, remapping can cause trouble with the built-in startup routine
90 /lib/crt0.o, which defines `environ' as an initialized variable.
91 Dumping `environ' as pure does not work! So, to use remapping,
92 you must write a startup routine for your machine in Emacs's crt0.c.
93 If NO_REMAP is defined, Emacs uses the system's crt0.o.
94
95 * SECTION_ALIGNMENT
96
97 Some machines that use COFF executables require that each section
98 start on a certain boundary *in the COFF file*. Such machines should
99 define SECTION_ALIGNMENT to a mask of the low-order bits that must be
100 zero on such a boundary. This mask is used to control padding between
101 segments in the COFF file.
102
103 If SECTION_ALIGNMENT is not defined, the segments are written
104 consecutively with no attempt at alignment. This is right for
105 unmodified system V.
106
107 * SEGMENT_MASK
108
109 Some machines require that the beginnings and ends of segments
110 *in core* be on certain boundaries. For most machines, a page
111 boundary is sufficient. That is the default. When a larger
112 boundary is needed, define SEGMENT_MASK to a mask of
113 the bits that must be zero on such a boundary.
114
115 * ADJUST_EXEC_HEADER
116
117 This macro can be used to generate statements to adjust or
118 initialize nonstandard fields in the file header
119
120 * ADDR_CORRECT(ADDR)
121
122 Macro to correct an int which is the bit pattern of a pointer to a byte
123 into an int which is the number of a byte.
124
125 This macro has a default definition which is usually right.
126 This default definition is a no-op on most machines (where a
127 pointer looks like an int) but not on all machines.
128
129 */
130
131 #ifndef emacs
132 #define PERROR(arg) perror (arg); return -1
133 #else
134 #include <config.h>
135 #define PERROR(file) report_error (file, new)
136 #endif
137
138 #ifndef CANNOT_DUMP /* all rest of file! */
139
140 #ifdef HAVE_COFF_H
141 #include <coff.h>
142 #ifdef MSDOS
143 #if __DJGPP__ > 1
144 #include <fcntl.h> /* for O_RDONLY, O_RDWR */
145 #include <crt0.h> /* for _crt0_startup_flags and its bits */
146 static int save_djgpp_startup_flags;
147 #endif /* __DJGPP__ > 1 */
148 #define filehdr external_filehdr
149 #define scnhdr external_scnhdr
150 #define syment external_syment
151 #define auxent external_auxent
152 #define n_numaux e_numaux
153 #define n_type e_type
154 struct aouthdr
155 {
156 unsigned short magic; /* type of file */
157 unsigned short vstamp; /* version stamp */
158 unsigned long tsize; /* text size in bytes, padded to FW bdry*/
159 unsigned long dsize; /* initialized data " " */
160 unsigned long bsize; /* uninitialized data " " */
161 unsigned long entry; /* entry pt. */
162 unsigned long text_start;/* base of text used for this file */
163 unsigned long data_start;/* base of data used for this file */
164 };
165 #endif /* not MSDOS */
166 #else /* not HAVE_COFF_H */
167 #include <a.out.h>
168 #endif /* not HAVE_COFF_H */
169
170 /* Define getpagesize if the system does not.
171 Note that this may depend on symbols defined in a.out.h. */
172 #include "getpagesize.h"
173
174 #ifndef makedev /* Try to detect types.h already loaded */
175 #include <sys/types.h>
176 #endif /* makedev */
177 #include <stdio.h>
178 #include <sys/stat.h>
179 #include <errno.h>
180
181 #include <sys/file.h>
182
183 #ifndef O_RDONLY
184 #define O_RDONLY 0
185 #endif
186 #ifndef O_RDWR
187 #define O_RDWR 2
188 #endif
189
190
191 extern char *start_of_text (); /* Start of text */
192 extern char *start_of_data (); /* Start of initialized data */
193
194 static long block_copy_start; /* Old executable start point */
195 static struct filehdr f_hdr; /* File header */
196 static struct aouthdr f_ohdr; /* Optional file header (a.out) */
197 long bias; /* Bias to add for growth */
198 long lnnoptr; /* Pointer to line-number info within file */
199 #define SYMS_START block_copy_start
200
201 static long text_scnptr;
202 static long data_scnptr;
203
204 static long coff_offset;
205
206 static int pagemask;
207
208 /* Correct an int which is the bit pattern of a pointer to a byte
209 into an int which is the number of a byte.
210 This is a no-op on ordinary machines, but not on all. */
211
212 #ifndef ADDR_CORRECT /* Let m-*.h files override this definition */
213 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
214 #endif
215
216 #ifdef emacs
217
218 #include "lisp.h"
219
220 static
221 report_error (file, fd)
222 char *file;
223 int fd;
224 {
225 if (fd)
226 close (fd);
227 report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil));
228 }
229 #endif /* emacs */
230
231 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1
232 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1
233 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1
234
235 static
236 report_error_1 (fd, msg, a1, a2)
237 int fd;
238 char *msg;
239 int a1, a2;
240 {
241 close (fd);
242 #ifdef emacs
243 error (msg, a1, a2);
244 #else
245 fprintf (stderr, msg, a1, a2);
246 fprintf (stderr, "\n");
247 #endif
248 }
249 \f
250 static int make_hdr ();
251 static int copy_text_and_data ();
252 static int copy_sym ();
253 static void mark_x ();
254
255 /* ****************************************************************
256 * make_hdr
257 *
258 * Make the header in the new a.out from the header in core.
259 * Modify the text and data sizes.
260 */
261 static int
262 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name)
263 int new, a_out;
264 unsigned data_start, bss_start, entry_address;
265 char *a_name;
266 char *new_name;
267 {
268 int tem;
269 auto struct scnhdr f_thdr; /* Text section header */
270 auto struct scnhdr f_dhdr; /* Data section header */
271 auto struct scnhdr f_bhdr; /* Bss section header */
272 auto struct scnhdr scntemp; /* Temporary section header */
273 register int scns;
274 unsigned int bss_end;
275
276 pagemask = getpagesize () - 1;
277
278 /* Adjust text/data boundary. */
279 #ifdef NO_REMAP
280 data_start = (int) start_of_data ();
281 #else /* not NO_REMAP */
282 if (!data_start)
283 data_start = (int) start_of_data ();
284 #endif /* not NO_REMAP */
285 data_start = ADDR_CORRECT (data_start);
286
287 #ifdef SEGMENT_MASK
288 data_start = data_start & ~SEGMENT_MASK; /* (Down) to segment boundary. */
289 #else
290 data_start = data_start & ~pagemask; /* (Down) to page boundary. */
291 #endif
292
293 bss_end = ADDR_CORRECT (sbrk (0)) + pagemask;
294 bss_end &= ~ pagemask;
295
296 /* Adjust data/bss boundary. */
297 if (bss_start != 0)
298 {
299 bss_start = (ADDR_CORRECT (bss_start) + pagemask);
300 /* (Up) to page bdry. */
301 bss_start &= ~ pagemask;
302 if (bss_start > bss_end)
303 {
304 ERROR1 ("unexec: Specified bss_start (%u) is past end of program",
305 bss_start);
306 }
307 }
308 else
309 bss_start = bss_end;
310
311 if (data_start > bss_start) /* Can't have negative data size. */
312 {
313 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)",
314 data_start, bss_start);
315 }
316
317 coff_offset = 0L; /* stays zero, except in DJGPP */
318
319 /* Salvage as much info from the existing file as possible */
320 if (a_out >= 0)
321 {
322 #ifdef MSDOS
323 #if __DJGPP__ > 1
324 /* Support the coff-go32-exe format with a prepended stub, since
325 this is what GCC 2.8.0 and later generates by default in DJGPP. */
326 unsigned short mz_header[3];
327
328 if (read (a_out, &mz_header, sizeof (mz_header)) != sizeof (mz_header))
329 {
330 PERROR (a_name);
331 }
332 if (mz_header[0] == 0x5a4d || mz_header[0] == 0x4d5a) /* "MZ" or "ZM" */
333 {
334 coff_offset = (long)mz_header[2] * 512L;
335 if (mz_header[1])
336 coff_offset += (long)mz_header[1] - 512L;
337 lseek (a_out, coff_offset, 0);
338 }
339 else
340 lseek (a_out, 0L, 0);
341 #endif /* __DJGPP__ > 1 */
342 #endif /* MSDOS */
343 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
344 {
345 PERROR (a_name);
346 }
347 block_copy_start += sizeof (f_hdr);
348 if (f_hdr.f_opthdr > 0)
349 {
350 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
351 {
352 PERROR (a_name);
353 }
354 block_copy_start += sizeof (f_ohdr);
355 }
356 /* Loop through section headers, copying them in */
357 lseek (a_out, coff_offset + sizeof (f_hdr) + f_hdr.f_opthdr, 0);
358 for (scns = f_hdr.f_nscns; scns > 0; scns--) {
359 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
360 {
361 PERROR (a_name);
362 }
363 if (scntemp.s_scnptr > 0L)
364 {
365 if (block_copy_start < scntemp.s_scnptr + scntemp.s_size)
366 block_copy_start = scntemp.s_scnptr + scntemp.s_size;
367 }
368 if (strcmp (scntemp.s_name, ".text") == 0)
369 {
370 f_thdr = scntemp;
371 }
372 else if (strcmp (scntemp.s_name, ".data") == 0)
373 {
374 f_dhdr = scntemp;
375 }
376 else if (strcmp (scntemp.s_name, ".bss") == 0)
377 {
378 f_bhdr = scntemp;
379 }
380 }
381 }
382 else
383 {
384 ERROR0 ("can't build a COFF file from scratch yet");
385 }
386
387 /* Now we alter the contents of all the f_*hdr variables
388 to correspond to what we want to dump. */
389
390 f_hdr.f_flags |= (F_RELFLG | F_EXEC);
391 #ifndef NO_REMAP
392 f_ohdr.text_start = (long) start_of_text ();
393 f_ohdr.tsize = data_start - f_ohdr.text_start;
394 f_ohdr.data_start = data_start;
395 #endif /* NO_REMAP */
396 f_ohdr.dsize = bss_start - f_ohdr.data_start;
397 f_ohdr.bsize = bss_end - bss_start;
398 /* On some machines, the old values are right.
399 ??? Maybe on all machines with NO_REMAP. */
400 f_thdr.s_size = f_ohdr.tsize;
401 f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr);
402 f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr));
403 lnnoptr = f_thdr.s_lnnoptr;
404 #ifdef SECTION_ALIGNMENT
405 /* Some systems require special alignment
406 of the sections in the file itself. */
407 f_thdr.s_scnptr
408 = (f_thdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
409 #endif /* SECTION_ALIGNMENT */
410 text_scnptr = f_thdr.s_scnptr;
411 f_dhdr.s_paddr = f_ohdr.data_start;
412 f_dhdr.s_vaddr = f_ohdr.data_start;
413 f_dhdr.s_size = f_ohdr.dsize;
414 f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size;
415 #ifdef SECTION_ALIGNMENT
416 /* Some systems require special alignment
417 of the sections in the file itself. */
418 f_dhdr.s_scnptr
419 = (f_dhdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
420 #endif /* SECTION_ALIGNMENT */
421 #ifdef DATA_SECTION_ALIGNMENT
422 /* Some systems require special alignment
423 of the data section only. */
424 f_dhdr.s_scnptr
425 = (f_dhdr.s_scnptr + DATA_SECTION_ALIGNMENT) & ~DATA_SECTION_ALIGNMENT;
426 #endif /* DATA_SECTION_ALIGNMENT */
427 data_scnptr = f_dhdr.s_scnptr;
428 f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize;
429 f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize;
430 f_bhdr.s_size = f_ohdr.bsize;
431 f_bhdr.s_scnptr = 0L;
432 bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start;
433
434 if (f_hdr.f_symptr > 0L)
435 {
436 f_hdr.f_symptr += bias;
437 }
438
439 if (f_thdr.s_lnnoptr > 0L)
440 {
441 f_thdr.s_lnnoptr += bias;
442 }
443
444 #ifdef ADJUST_EXEC_HEADER
445 ADJUST_EXEC_HEADER;
446 #endif /* ADJUST_EXEC_HEADER */
447
448 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
449 {
450 PERROR (new_name);
451 }
452
453 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
454 {
455 PERROR (new_name);
456 }
457
458 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
459 {
460 PERROR (new_name);
461 }
462
463 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
464 {
465 PERROR (new_name);
466 }
467
468 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
469 {
470 PERROR (new_name);
471 }
472
473 return (0);
474
475 }
476 \f
477 write_segment (new, ptr, end)
478 int new;
479 register char *ptr, *end;
480 {
481 register int i, nwrite, ret;
482 char buf[80];
483 #ifndef USE_CRT_DLL
484 extern int errno;
485 #endif
486 /* This is the normal amount to write at once.
487 It is the size of block that NFS uses. */
488 int writesize = 1 << 13;
489 int pagesize = getpagesize ();
490 char zeros[1 << 13];
491
492 bzero (zeros, sizeof (zeros));
493
494 for (i = 0; ptr < end;)
495 {
496 /* Distance to next multiple of writesize. */
497 nwrite = (((int) ptr + writesize) & -writesize) - (int) ptr;
498 /* But not beyond specified end. */
499 if (nwrite > end - ptr) nwrite = end - ptr;
500 ret = write (new, ptr, nwrite);
501 /* If write gets a page fault, it means we reached
502 a gap between the old text segment and the old data segment.
503 This gap has probably been remapped into part of the text segment.
504 So write zeros for it. */
505 if (ret == -1
506 #ifdef EFAULT
507 && errno == EFAULT
508 #endif
509 )
510 {
511 /* Write only a page of zeros at once,
512 so that we we don't overshoot the start
513 of the valid memory in the old data segment. */
514 if (nwrite > pagesize)
515 nwrite = pagesize;
516 write (new, zeros, nwrite);
517 }
518 #if 0 /* Now that we have can ask `write' to write more than a page,
519 it is legit for write do less than the whole amount specified. */
520 else if (nwrite != ret)
521 {
522 sprintf (buf,
523 "unexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %d",
524 ptr, new, nwrite, ret, errno);
525 PERROR (buf);
526 }
527 #endif
528 i += nwrite;
529 ptr += nwrite;
530 }
531 }
532 /* ****************************************************************
533 * copy_text_and_data
534 *
535 * Copy the text and data segments from memory to the new a.out
536 */
537 static int
538 copy_text_and_data (new, a_out)
539 int new, a_out;
540 {
541 register char *end;
542 register char *ptr;
543
544 #ifdef MSDOS
545 #if __DJGPP__ >= 2
546 /* Dump the original table of exception handlers, not the one
547 where our exception hooks are registered. */
548 __djgpp_exception_toggle ();
549
550 /* Switch off startup flags that might have been set at runtime
551 and which might change the way that dumped Emacs works. */
552 save_djgpp_startup_flags = _crt0_startup_flags;
553 _crt0_startup_flags &= ~(_CRT0_FLAG_NO_LFN | _CRT0_FLAG_NEARPTR);
554 #endif
555 #endif
556
557 lseek (new, (long) text_scnptr, 0);
558 ptr = (char *) f_ohdr.text_start;
559 end = ptr + f_ohdr.tsize;
560 write_segment (new, ptr, end);
561
562 lseek (new, (long) data_scnptr, 0);
563 ptr = (char *) f_ohdr.data_start;
564 end = ptr + f_ohdr.dsize;
565 write_segment (new, ptr, end);
566
567 #ifdef MSDOS
568 #if __DJGPP__ >= 2
569 /* Restore our exception hooks. */
570 __djgpp_exception_toggle ();
571
572 /* Restore the startup flags. */
573 _crt0_startup_flags = save_djgpp_startup_flags;
574 #endif
575 #endif
576
577
578 return 0;
579 }
580 \f
581 /* ****************************************************************
582 * copy_sym
583 *
584 * Copy the relocation information and symbol table from the a.out to the new
585 */
586 static int
587 copy_sym (new, a_out, a_name, new_name)
588 int new, a_out;
589 char *a_name, *new_name;
590 {
591 char page[1024];
592 int n;
593
594 if (a_out < 0)
595 return 0;
596
597 if (SYMS_START == 0L)
598 return 0;
599
600 if (lnnoptr) /* if there is line number info */
601 lseek (a_out, coff_offset + lnnoptr, 0); /* start copying from there */
602 else
603 lseek (a_out, coff_offset + SYMS_START, 0); /* Position a.out to symtab. */
604
605 while ((n = read (a_out, page, sizeof page)) > 0)
606 {
607 if (write (new, page, n) != n)
608 {
609 PERROR (new_name);
610 }
611 }
612 if (n < 0)
613 {
614 PERROR (a_name);
615 }
616 return 0;
617 }
618 \f
619 /* ****************************************************************
620 * mark_x
621 *
622 * After successfully building the new a.out, mark it executable
623 */
624 static void
625 mark_x (name)
626 char *name;
627 {
628 struct stat sbuf;
629 int um;
630 int new = 0; /* for PERROR */
631
632 um = umask (777);
633 umask (um);
634 if (stat (name, &sbuf) == -1)
635 {
636 PERROR (name);
637 }
638 sbuf.st_mode |= 0111 & ~um;
639 if (chmod (name, sbuf.st_mode) == -1)
640 PERROR (name);
641 }
642 \f
643 #ifndef COFF_BSD_SYMBOLS
644
645 /*
646 * If the COFF file contains a symbol table and a line number section,
647 * then any auxiliary entries that have values for x_lnnoptr must
648 * be adjusted by the amount that the line number section has moved
649 * in the file (bias computed in make_hdr). The #@$%&* designers of
650 * the auxiliary entry structures used the absolute file offsets for
651 * the line number entry rather than an offset from the start of the
652 * line number section!
653 *
654 * When I figure out how to scan through the symbol table and pick out
655 * the auxiliary entries that need adjustment, this routine will
656 * be fixed. As it is now, all such entries are wrong and sdb
657 * will complain. Fred Fish, UniSoft Systems Inc.
658 */
659
660 /* This function is probably very slow. Instead of reopening the new
661 file for input and output it should copy from the old to the new
662 using the two descriptors already open (WRITEDESC and READDESC).
663 Instead of reading one small structure at a time it should use
664 a reasonable size buffer. But I don't have time to work on such
665 things, so I am installing it as submitted to me. -- RMS. */
666
667 adjust_lnnoptrs (writedesc, readdesc, new_name)
668 int writedesc;
669 int readdesc;
670 char *new_name;
671 {
672 register int nsyms;
673 register int new;
674 struct syment symentry;
675 union auxent auxentry;
676
677 if (!lnnoptr || !f_hdr.f_symptr)
678 return 0;
679
680 #ifdef MSDOS
681 if ((new = writedesc) < 0)
682 #else
683 if ((new = open (new_name, O_RDWR)) < 0)
684 #endif
685 {
686 PERROR (new_name);
687 return -1;
688 }
689
690 lseek (new, f_hdr.f_symptr, 0);
691 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++)
692 {
693 read (new, &symentry, SYMESZ);
694 if (symentry.n_numaux)
695 {
696 read (new, &auxentry, AUXESZ);
697 nsyms++;
698 if (ISFCN (symentry.n_type) || symentry.n_type == 0x2400)
699 {
700 auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias;
701 lseek (new, -AUXESZ, 1);
702 write (new, &auxentry, AUXESZ);
703 }
704 }
705 }
706 #ifndef MSDOS
707 close (new);
708 #endif
709 return 0;
710 }
711
712 #endif /* COFF_BSD_SYMBOLS */
713
714 /* ****************************************************************
715 * unexec
716 *
717 * driving logic.
718 */
719 unexec (new_name, a_name, data_start, bss_start, entry_address)
720 char *new_name, *a_name;
721 unsigned data_start, bss_start, entry_address;
722 {
723 int new, a_out = -1;
724
725 if (a_name && (a_out = open (a_name, O_RDONLY)) < 0)
726 {
727 PERROR (a_name);
728 }
729 if ((new = creat (new_name, 0666)) < 0)
730 {
731 PERROR (new_name);
732 }
733
734 if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0
735 || copy_text_and_data (new, a_out) < 0
736 || copy_sym (new, a_out, a_name, new_name) < 0
737 #ifndef COFF_BSD_SYMBOLS
738 || adjust_lnnoptrs (new, a_out, new_name) < 0
739 #endif
740 )
741 {
742 close (new);
743 /* unlink (new_name); /* Failed, unlink new a.out */
744 return -1;
745 }
746
747 close (new);
748 if (a_out >= 0)
749 close (a_out);
750 mark_x (new_name);
751 return 0;
752 }
753
754 #endif /* not CANNOT_DUMP */
755
756 /* arch-tag: 62409b69-e27a-4a7c-9413-0210d6b54e7f
757 (do not change this comment) */