1 /* Copyright (C) 1985,86,87,88,92,93,94 Free Software Foundation, Inc.
3 This file is part of GNU Emacs.
5 GNU Emacs is free software; you can redistribute it and/or modify
6 it under the terms of the GNU General Public License as published by
7 the Free Software Foundation; either version 2, or (at your option)
10 GNU Emacs is distributed in the hope that it will be useful,
11 but WITHOUT ANY WARRANTY; without even the implied warranty of
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 GNU General Public License for more details.
15 You should have received a copy of the GNU General Public License
16 along with GNU Emacs; see the file COPYING. If not, write to
17 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 Boston, MA 02111-1307, USA. */
22 * unexec.c - Convert a running program into an a.out file.
24 * Author: Spencer W. Thomas
25 * Computer Science Dept.
27 * Date: Tue Mar 2 1982
28 * Modified heavily since then.
31 * unexec (new_name, a_name, data_start, bss_start, entry_address)
32 * char *new_name, *a_name;
33 * unsigned data_start, bss_start, entry_address;
35 * Takes a snapshot of the program and makes an a.out format file in the
36 * file named by the string argument new_name.
37 * If a_name is non-NULL, the symbol table will be taken from the given file.
38 * On some machines, an existing a_name file is required.
40 * The boundaries within the a.out file may be adjusted with the data_start
41 * and bss_start arguments. Either or both may be given as 0 for defaults.
43 * Data_start gives the boundary between the text segment and the data
44 * segment of the program. The text segment can contain shared, read-only
45 * program code and literal data, while the data segment is always unshared
46 * and unprotected. Data_start gives the lowest unprotected address.
47 * The value you specify may be rounded down to a suitable boundary
48 * as required by the machine you are using.
50 * Specifying zero for data_start means the boundary between text and data
51 * should not be the same as when the program was loaded.
52 * If NO_REMAP is defined, the argument data_start is ignored and the
53 * segment boundaries are never changed.
55 * Bss_start indicates how much of the data segment is to be saved in the
56 * a.out file and restored when the program is executed. It gives the lowest
57 * unsaved address, and is rounded up to a page boundary. The default when 0
58 * is given assumes that the entire data segment is to be stored, including
59 * the previous data and bss as well as any additional storage allocated with
62 * The new file is set up to start at entry_address.
64 * If you make improvements I'd like to get them too.
65 * harpo!utah-cs!thomas, thomas@Utah-20
69 /* Modified to support SysVr3 shared libraries by James Van Artsdalen
70 * of Dell Computer Corporation. james@bigtex.cactus.org.
73 /* There are several compilation parameters affecting unexec:
77 Define this if your system uses COFF for executables.
81 Define this if you are using the GNU coff encapsulated a.out format.
82 This is closer to a.out than COFF. You should *not* define COFF if
83 you define COFF_ENCAPSULATE
85 Otherwise we assume you use Berkeley format.
89 Define this if you do not want to try to save Emacs's pure data areas
90 as part of the text segment.
92 Saving them as text is good because it allows users to share more.
94 However, on machines that locate the text area far from the data area,
95 the boundary cannot feasibly be moved. Such machines require
98 Also, remapping can cause trouble with the built-in startup routine
99 /lib/crt0.o, which defines `environ' as an initialized variable.
100 Dumping `environ' as pure does not work! So, to use remapping,
101 you must write a startup routine for your machine in Emacs's crt0.c.
102 If NO_REMAP is defined, Emacs uses the system's crt0.o.
106 Some machines that use COFF executables require that each section
107 start on a certain boundary *in the COFF file*. Such machines should
108 define SECTION_ALIGNMENT to a mask of the low-order bits that must be
109 zero on such a boundary. This mask is used to control padding between
110 segments in the COFF file.
112 If SECTION_ALIGNMENT is not defined, the segments are written
113 consecutively with no attempt at alignment. This is right for
118 Some machines require that the beginnings and ends of segments
119 *in core* be on certain boundaries. For most machines, a page
120 boundary is sufficient. That is the default. When a larger
121 boundary is needed, define SEGMENT_MASK to a mask of
122 the bits that must be zero on such a boundary.
126 Some machines count the a.out header as part of the size of the text
127 segment (a_text); they may actually load the header into core as the
128 first data in the text segment. Some have additional padding between
129 the header and the real text of the program that is counted in a_text.
131 For these machines, define A_TEXT_OFFSET(HDR) to examine the header
132 structure HDR and return the number of bytes to add to `a_text'
133 before writing it (above and beyond the number of bytes of actual
134 program text). HDR's standard fields are already correct, except that
135 this adjustment to the `a_text' field has not yet been made;
136 thus, the amount of offset can depend on the data in the file.
140 If defined, this macro specifies the number of bytes to seek into the
141 a.out file before starting to write the text segment.
145 For machines using COFF, this macro, if defined, is a value stored
146 into the magic number field of the output file.
150 This macro can be used to generate statements to adjust or
151 initialize nonstandard fields in the file header
155 Macro to correct an int which is the bit pattern of a pointer to a byte
156 into an int which is the number of a byte.
158 This macro has a default definition which is usually right.
159 This default definition is a no-op on most machines (where a
160 pointer looks like an int) but not on all machines.
165 #define PERROR(arg) perror (arg); return -1
169 #define PERROR(file) report_error (file, new)
172 #ifndef CANNOT_DUMP /* all rest of file! */
174 #ifdef COFF_ENCAPSULATE
175 int need_coff_header
= 1;
176 #include <coff-encap/a.out.encap.h> /* The location might be a poor assumption */
180 #include <fcntl.h> /* for O_RDONLY, O_RDWR */
181 #include <crt0.h> /* for _crt0_startup_flags and its bits */
182 static int save_djgpp_startup_flags
;
185 #define filehdr external_filehdr
186 #define scnhdr external_scnhdr
187 #define syment external_syment
188 #define auxent external_auxent
189 #define n_numaux e_numaux
190 #define n_type e_type
193 unsigned short magic
; /* type of file */
194 unsigned short vstamp
; /* version stamp */
195 unsigned long tsize
; /* text size in bytes, padded to FW bdry*/
196 unsigned long dsize
; /* initialized data " " */
197 unsigned long bsize
; /* uninitialized data " " */
198 unsigned long entry
; /* entry pt. */
199 unsigned long text_start
;/* base of text used for this file */
200 unsigned long data_start
;/* base of data used for this file */
204 #else /* not MSDOS */
206 #endif /* not MSDOS */
209 /* Define getpagesize if the system does not.
210 Note that this may depend on symbols defined in a.out.h. */
211 #include "getpagesize.h"
213 #ifndef makedev /* Try to detect types.h already loaded */
214 #include <sys/types.h>
217 #include <sys/stat.h>
220 #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/
234 extern char *start_of_text (); /* Start of text */
235 extern char *start_of_data (); /* Start of initialized data */
238 static long block_copy_start
; /* Old executable start point */
239 static struct filehdr f_hdr
; /* File header */
240 static struct aouthdr f_ohdr
; /* Optional file header (a.out) */
241 long bias
; /* Bias to add for growth */
242 long lnnoptr
; /* Pointer to line-number info within file */
243 #define SYMS_START block_copy_start
245 static long text_scnptr
;
246 static long data_scnptr
;
251 extern void *sbrk ();
254 /* Some systems with __STDC__ compilers still declare this `char *' in some
255 header file, and our declaration conflicts. The return value is always
256 cast, so it should be harmless to leave it undefined. Hopefully
257 machines with different size pointers and ints declare sbrk in a header
260 extern void *sbrk ();
262 extern char *sbrk ();
263 #endif /* __STDC__ */
267 #define SYMS_START ((long) N_SYMOFF (ohdr))
269 /* Some machines override the structure name for an a.out header. */
270 #ifndef EXEC_HDR_TYPE
271 #define EXEC_HDR_TYPE struct exec
276 #define MY_ID HP9000S200_ID
280 #endif /* no HP9000S200_ID */
281 static MAGIC OLDMAGIC
= {MY_ID
, SHARE_MAGIC
};
282 static MAGIC NEWMAGIC
= {MY_ID
, DEMAND_MAGIC
};
283 #define N_TXTOFF(x) TEXT_OFFSET(x)
284 #define N_SYMOFF(x) LESYM_OFFSET(x)
285 static EXEC_HDR_TYPE hdr
, ohdr
;
289 #if defined (USG) && !defined (IBMAIX) && !defined (IRIS) && !defined (COFF_ENCAPSULATE) && !defined (LINUX)
290 static struct bhdr hdr
, ohdr
;
291 #define a_magic fmagic
296 #define a_trsize rtsize
297 #define a_drsize rdsize
298 #define a_entry entry
299 #define N_BADMAG(x) \
300 (((x).fmagic)!=OMAGIC && ((x).fmagic)!=NMAGIC &&\
301 ((x).fmagic)!=FMAGIC && ((x).fmagic)!=IMAGIC)
302 #define NEWMAGIC FMAGIC
303 #else /* IRIS or IBMAIX or not USG */
304 static EXEC_HDR_TYPE hdr
, ohdr
;
305 #define NEWMAGIC ZMAGIC
306 #endif /* IRIS or IBMAIX not USG */
307 #endif /* not HPUX */
309 static int unexec_text_start
;
310 static int unexec_data_start
;
312 #ifdef COFF_ENCAPSULATE
313 /* coffheader is defined in the GNU a.out.encap.h file. */
314 struct coffheader coffheader
;
317 #endif /* not COFF */
321 /* Correct an int which is the bit pattern of a pointer to a byte
322 into an int which is the number of a byte.
323 This is a no-op on ordinary machines, but not on all. */
325 #ifndef ADDR_CORRECT /* Let m-*.h files override this definition */
326 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
334 report_error (file
, fd
)
340 report_file_error ("Cannot unexec", Fcons (build_string (file
), Qnil
));
344 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1
345 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1
346 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1
349 report_error_1 (fd
, msg
, a1
, a2
)
358 fprintf (stderr
, msg
, a1
, a2
);
359 fprintf (stderr
, "\n");
363 static int make_hdr ();
364 static int copy_text_and_data ();
365 static int copy_sym ();
366 static void mark_x ();
368 /* ****************************************************************
373 unexec (new_name
, a_name
, data_start
, bss_start
, entry_address
)
374 char *new_name
, *a_name
;
375 unsigned data_start
, bss_start
, entry_address
;
379 if (a_name
&& (a_out
= open (a_name
, O_RDONLY
)) < 0)
383 if ((new = creat (new_name
, 0666)) < 0)
388 if (make_hdr (new, a_out
, data_start
, bss_start
, entry_address
, a_name
, new_name
) < 0
389 || copy_text_and_data (new, a_out
) < 0
390 || copy_sym (new, a_out
, a_name
, new_name
) < 0
392 #ifndef COFF_BSD_SYMBOLS
393 || adjust_lnnoptrs (new, a_out
, new_name
) < 0
399 /* unlink (new_name); /* Failed, unlink new a.out */
410 /* ****************************************************************
413 * Make the header in the new a.out from the header in core.
414 * Modify the text and data sizes.
417 make_hdr (new, a_out
, data_start
, bss_start
, entry_address
, a_name
, new_name
)
419 unsigned data_start
, bss_start
, entry_address
;
425 auto struct scnhdr f_thdr
; /* Text section header */
426 auto struct scnhdr f_dhdr
; /* Data section header */
427 auto struct scnhdr f_bhdr
; /* Bss section header */
428 auto struct scnhdr scntemp
; /* Temporary section header */
431 #ifdef USG_SHARED_LIBRARIES
432 extern unsigned int bss_end
;
434 unsigned int bss_end
;
437 pagemask
= getpagesize () - 1;
439 /* Adjust text/data boundary. */
441 data_start
= (int) start_of_data ();
442 #else /* not NO_REMAP */
444 data_start
= (int) start_of_data ();
445 #endif /* not NO_REMAP */
446 data_start
= ADDR_CORRECT (data_start
);
449 data_start
= data_start
& ~SEGMENT_MASK
; /* (Down) to segment boundary. */
451 data_start
= data_start
& ~pagemask
; /* (Down) to page boundary. */
454 bss_end
= ADDR_CORRECT (sbrk (0)) + pagemask
;
455 bss_end
&= ~ pagemask
;
457 /* Adjust data/bss boundary. */
460 bss_start
= (ADDR_CORRECT (bss_start
) + pagemask
);
461 /* (Up) to page bdry. */
462 bss_start
&= ~ pagemask
;
463 if (bss_start
> bss_end
)
465 ERROR1 ("unexec: Specified bss_start (%u) is past end of program",
472 if (data_start
> bss_start
) /* Can't have negative data size. */
474 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)",
475 data_start
, bss_start
);
479 /* Salvage as much info from the existing file as possible */
482 if (read (a_out
, &f_hdr
, sizeof (f_hdr
)) != sizeof (f_hdr
))
486 block_copy_start
+= sizeof (f_hdr
);
487 if (f_hdr
.f_opthdr
> 0)
489 if (read (a_out
, &f_ohdr
, sizeof (f_ohdr
)) != sizeof (f_ohdr
))
493 block_copy_start
+= sizeof (f_ohdr
);
495 /* Loop through section headers, copying them in */
496 lseek (a_out
, sizeof (f_hdr
) + f_hdr
.f_opthdr
, 0);
497 for (scns
= f_hdr
.f_nscns
; scns
> 0; scns
--) {
498 if (read (a_out
, &scntemp
, sizeof (scntemp
)) != sizeof (scntemp
))
502 if (scntemp
.s_scnptr
> 0L)
504 if (block_copy_start
< scntemp
.s_scnptr
+ scntemp
.s_size
)
505 block_copy_start
= scntemp
.s_scnptr
+ scntemp
.s_size
;
507 if (strcmp (scntemp
.s_name
, ".text") == 0)
511 else if (strcmp (scntemp
.s_name
, ".data") == 0)
515 else if (strcmp (scntemp
.s_name
, ".bss") == 0)
523 ERROR0 ("can't build a COFF file from scratch yet");
526 /* Now we alter the contents of all the f_*hdr variables
527 to correspond to what we want to dump. */
529 #ifdef USG_SHARED_LIBRARIES
531 /* The amount of data we're adding to the file is distance from the
532 * end of the original .data space to the current end of the .data
536 bias
= bss_start
- (f_ohdr
.data_start
+ f_dhdr
.s_size
);
540 f_hdr
.f_flags
|= (F_RELFLG
| F_EXEC
);
545 f_ohdr
.magic
= EXEC_MAGIC
;
548 f_ohdr
.text_start
= (long) start_of_text ();
549 f_ohdr
.tsize
= data_start
- f_ohdr
.text_start
;
550 f_ohdr
.data_start
= data_start
;
551 #endif /* NO_REMAP */
552 f_ohdr
.dsize
= bss_start
- f_ohdr
.data_start
;
553 f_ohdr
.bsize
= bss_end
- bss_start
;
554 #ifndef KEEP_OLD_TEXT_SCNPTR
555 /* On some machines, the old values are right.
556 ??? Maybe on all machines with NO_REMAP. */
557 f_thdr
.s_size
= f_ohdr
.tsize
;
558 f_thdr
.s_scnptr
= sizeof (f_hdr
) + sizeof (f_ohdr
);
559 f_thdr
.s_scnptr
+= (f_hdr
.f_nscns
) * (sizeof (f_thdr
));
560 #endif /* KEEP_OLD_TEXT_SCNPTR */
561 #ifdef ADJUST_TEXT_SCNHDR_SIZE
562 /* On some machines, `text size' includes all headers. */
563 f_thdr
.s_size
-= f_thdr
.s_scnptr
;
564 #endif /* ADJUST_TEST_SCNHDR_SIZE */
565 lnnoptr
= f_thdr
.s_lnnoptr
;
566 #ifdef SECTION_ALIGNMENT
567 /* Some systems require special alignment
568 of the sections in the file itself. */
570 = (f_thdr
.s_scnptr
+ SECTION_ALIGNMENT
) & ~SECTION_ALIGNMENT
;
571 #endif /* SECTION_ALIGNMENT */
573 f_thdr
.s_scnptr
= 0xd0;
575 text_scnptr
= f_thdr
.s_scnptr
;
576 #ifdef ADJUST_TEXTBASE
577 text_scnptr
= sizeof (f_hdr
) + sizeof (f_ohdr
) + (f_hdr
.f_nscns
) * (sizeof (f_thdr
));
579 #ifndef KEEP_OLD_PADDR
580 f_dhdr
.s_paddr
= f_ohdr
.data_start
;
581 #endif /* KEEP_OLD_PADDR */
582 f_dhdr
.s_vaddr
= f_ohdr
.data_start
;
583 f_dhdr
.s_size
= f_ohdr
.dsize
;
584 f_dhdr
.s_scnptr
= f_thdr
.s_scnptr
+ f_thdr
.s_size
;
585 #ifdef SECTION_ALIGNMENT
586 /* Some systems require special alignment
587 of the sections in the file itself. */
589 = (f_dhdr
.s_scnptr
+ SECTION_ALIGNMENT
) & ~SECTION_ALIGNMENT
;
590 #endif /* SECTION_ALIGNMENT */
591 #ifdef DATA_SECTION_ALIGNMENT
592 /* Some systems require special alignment
593 of the data section only. */
595 = (f_dhdr
.s_scnptr
+ DATA_SECTION_ALIGNMENT
) & ~DATA_SECTION_ALIGNMENT
;
596 #endif /* DATA_SECTION_ALIGNMENT */
597 data_scnptr
= f_dhdr
.s_scnptr
;
598 #ifndef KEEP_OLD_PADDR
599 f_bhdr
.s_paddr
= f_ohdr
.data_start
+ f_ohdr
.dsize
;
600 #endif /* KEEP_OLD_PADDR */
601 f_bhdr
.s_vaddr
= f_ohdr
.data_start
+ f_ohdr
.dsize
;
602 f_bhdr
.s_size
= f_ohdr
.bsize
;
603 f_bhdr
.s_scnptr
= 0L;
604 #ifndef USG_SHARED_LIBRARIES
605 bias
= f_dhdr
.s_scnptr
+ f_dhdr
.s_size
- block_copy_start
;
608 if (f_hdr
.f_symptr
> 0L)
610 f_hdr
.f_symptr
+= bias
;
613 if (f_thdr
.s_lnnoptr
> 0L)
615 f_thdr
.s_lnnoptr
+= bias
;
618 #ifdef ADJUST_EXEC_HEADER
620 #endif /* ADJUST_EXEC_HEADER */
622 if (write (new, &f_hdr
, sizeof (f_hdr
)) != sizeof (f_hdr
))
627 if (write (new, &f_ohdr
, sizeof (f_ohdr
)) != sizeof (f_ohdr
))
632 #ifndef USG_SHARED_LIBRARIES
634 if (write (new, &f_thdr
, sizeof (f_thdr
)) != sizeof (f_thdr
))
639 if (write (new, &f_dhdr
, sizeof (f_dhdr
)) != sizeof (f_dhdr
))
644 if (write (new, &f_bhdr
, sizeof (f_bhdr
)) != sizeof (f_bhdr
))
649 #else /* USG_SHARED_LIBRARIES */
651 /* The purpose of this code is to write out the new file's section
654 * Scan through the original file's sections. If the encountered
655 * section is one we know (.text, .data or .bss), write out the
656 * correct header. If it is a section we do not know (such as
657 * .lib), adjust the address of where the section data is in the
658 * file, and write out the header.
660 * If any section precedes .text or .data in the file, this code
661 * will not adjust the file pointer for that section correctly.
664 /* This used to use sizeof (f_ohdr) instead of .f_opthdr.
665 .f_opthdr is said to be right when there is no optional header. */
666 lseek (a_out
, sizeof (f_hdr
) + f_hdr
.f_opthdr
, 0);
668 for (scns
= f_hdr
.f_nscns
; scns
> 0; scns
--)
670 if (read (a_out
, &scntemp
, sizeof (scntemp
)) != sizeof (scntemp
))
673 if (!strcmp (scntemp
.s_name
, f_thdr
.s_name
)) /* .text */
675 if (write (new, &f_thdr
, sizeof (f_thdr
)) != sizeof (f_thdr
))
678 else if (!strcmp (scntemp
.s_name
, f_dhdr
.s_name
)) /* .data */
680 if (write (new, &f_dhdr
, sizeof (f_dhdr
)) != sizeof (f_dhdr
))
683 else if (!strcmp (scntemp
.s_name
, f_bhdr
.s_name
)) /* .bss */
685 if (write (new, &f_bhdr
, sizeof (f_bhdr
)) != sizeof (f_bhdr
))
690 if (scntemp
.s_scnptr
)
691 scntemp
.s_scnptr
+= bias
;
692 if (write (new, &scntemp
, sizeof (scntemp
)) != sizeof (scntemp
))
696 #endif /* USG_SHARED_LIBRARIES */
700 #else /* if not COFF */
702 /* Get symbol table info from header of a.out file if given one. */
705 #ifdef COFF_ENCAPSULATE
706 if (read (a_out
, &coffheader
, sizeof coffheader
) != sizeof coffheader
)
710 if (coffheader
.f_magic
!= COFF_MAGIC
)
712 ERROR1("%s doesn't have legal coff magic number\n", a_name
);
715 if (read (a_out
, &ohdr
, sizeof hdr
) != sizeof hdr
)
722 ERROR1 ("invalid magic number in %s", a_name
);
728 #ifdef COFF_ENCAPSULATE
729 /* We probably could without too much trouble. The code is in gld
730 * but I don't have that much time or incentive.
732 ERROR0 ("can't build a COFF file from scratch yet");
734 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
735 bzero ((void *)&hdr
, sizeof hdr
);
737 bzero (&hdr
, sizeof hdr
);
742 unexec_text_start
= (long) start_of_text ();
743 unexec_data_start
= data_start
;
745 /* Machine-dependent fixup for header, or maybe for unexec_text_start */
746 #ifdef ADJUST_EXEC_HEADER
748 #endif /* ADJUST_EXEC_HEADER */
752 if (entry_address
!= 0)
753 hdr
.a_entry
= entry_address
;
755 hdr
.a_bss
= bss_end
- bss_start
;
756 hdr
.a_data
= bss_start
- data_start
;
758 hdr
.a_text
= ohdr
.a_text
;
759 #else /* not NO_REMAP */
760 hdr
.a_text
= data_start
- unexec_text_start
;
763 hdr
.a_text
+= A_TEXT_OFFSET (ohdr
);
766 #endif /* not NO_REMAP */
768 #ifdef COFF_ENCAPSULATE
769 /* We are encapsulating BSD format within COFF format. */
771 struct coffscn
*tp
, *dp
, *bp
;
772 tp
= &coffheader
.scns
[0];
773 dp
= &coffheader
.scns
[1];
774 bp
= &coffheader
.scns
[2];
775 tp
->s_size
= hdr
.a_text
+ sizeof(struct exec
);
776 dp
->s_paddr
= data_start
;
777 dp
->s_vaddr
= data_start
;
778 dp
->s_size
= hdr
.a_data
;
779 bp
->s_paddr
= dp
->s_vaddr
+ dp
->s_size
;
780 bp
->s_vaddr
= bp
->s_paddr
;
781 bp
->s_size
= hdr
.a_bss
;
782 coffheader
.tsize
= tp
->s_size
;
783 coffheader
.dsize
= dp
->s_size
;
784 coffheader
.bsize
= bp
->s_size
;
785 coffheader
.text_start
= tp
->s_vaddr
;
786 coffheader
.data_start
= dp
->s_vaddr
;
788 if (write (new, &coffheader
, sizeof coffheader
) != sizeof coffheader
)
792 #endif /* COFF_ENCAPSULATE */
794 if (write (new, &hdr
, sizeof hdr
) != sizeof hdr
)
799 #if 0 /* This #ifndef caused a bug on Linux when using QMAGIC. */
800 /* This adjustment was done above only #ifndef NO_REMAP,
801 so only undo it now #ifndef NO_REMAP. */
802 /* #ifndef NO_REMAP */
805 hdr
.a_text
-= A_TEXT_OFFSET (ohdr
);
810 #endif /* not COFF */
813 /* ****************************************************************
816 * Copy the text and data segments from memory to the new a.out
819 copy_text_and_data (new, a_out
)
827 #ifdef USG_SHARED_LIBRARIES
830 struct scnhdr scntemp
; /* Temporary section header */
832 /* The purpose of this code is to write out the new file's section
835 * Step through the section table. If we know the section (.text,
836 * .data) do the appropriate thing. Otherwise, if the section has
837 * no allocated space in the file (.bss), do nothing. Otherwise,
838 * the section has space allocated in the file, and is not a section
839 * we know. So just copy it.
842 lseek (a_out
, sizeof (struct filehdr
) + sizeof (struct aouthdr
), 0);
844 for (scns
= f_hdr
.f_nscns
; scns
> 0; scns
--)
846 if (read (a_out
, &scntemp
, sizeof (scntemp
)) != sizeof (scntemp
))
849 if (!strcmp (scntemp
.s_name
, ".text"))
851 lseek (new, (long) text_scnptr
, 0);
852 ptr
= (char *) f_ohdr
.text_start
;
853 end
= ptr
+ f_ohdr
.tsize
;
854 write_segment (new, ptr
, end
);
856 else if (!strcmp (scntemp
.s_name
, ".data"))
858 lseek (new, (long) data_scnptr
, 0);
859 ptr
= (char *) f_ohdr
.data_start
;
860 end
= ptr
+ f_ohdr
.dsize
;
861 write_segment (new, ptr
, end
);
863 else if (!scntemp
.s_scnptr
)
864 ; /* do nothing - no data for this section */
869 long old_a_out_ptr
= lseek (a_out
, 0, 1);
871 lseek (a_out
, scntemp
.s_scnptr
, 0);
872 for (size
= scntemp
.s_size
; size
> 0; size
-= sizeof (page
))
874 n
= size
> sizeof (page
) ? sizeof (page
) : size
;
875 if (read (a_out
, page
, n
) != n
|| write (new, page
, n
) != n
)
878 lseek (a_out
, old_a_out_ptr
, 0);
882 #else /* COFF, but not USG_SHARED_LIBRARIES */
886 /* Dump the original table of exception handlers, not the one
887 where our exception hooks are registered. */
888 __djgpp_exception_toggle ();
890 /* Switch off startup flags that might have been set at runtime
891 and which might change the way that dumped Emacs works. */
892 save_djgpp_startup_flags
= _crt0_startup_flags
;
893 _crt0_startup_flags
&= ~(_CRT0_FLAG_NO_LFN
| _CRT0_FLAG_NEARPTR
);
897 lseek (new, (long) text_scnptr
, 0);
898 ptr
= (char *) f_ohdr
.text_start
;
899 #ifdef HEADER_INCL_IN_TEXT
900 /* For Gould UTX/32, text starts after headers */
901 ptr
= (char *) (ptr
+ text_scnptr
);
902 #endif /* HEADER_INCL_IN_TEXT */
903 end
= ptr
+ f_ohdr
.tsize
;
904 write_segment (new, ptr
, end
);
906 lseek (new, (long) data_scnptr
, 0);
907 ptr
= (char *) f_ohdr
.data_start
;
908 end
= ptr
+ f_ohdr
.dsize
;
909 write_segment (new, ptr
, end
);
913 /* Restore our exception hooks. */
914 __djgpp_exception_toggle ();
916 /* Restore the startup flags. */
917 _crt0_startup_flags
= save_djgpp_startup_flags
;
921 #endif /* USG_SHARED_LIBRARIES */
923 #else /* if not COFF */
925 /* Some machines count the header as part of the text segment.
926 That is to say, the header appears in core
927 just before the address that start_of_text returns.
928 For them, N_TXTOFF is the place where the header goes.
929 We must adjust the seek to the place after the header.
930 Note that at this point hdr.a_text does *not* count
931 the extra A_TEXT_OFFSET bytes, only the actual bytes of code. */
934 lseek (new, (long) A_TEXT_SEEK (hdr
), 0);
936 lseek (new, (long) N_TXTOFF (hdr
), 0);
937 #endif /* no A_TEXT_SEEK */
941 /* Acorn's RISC-iX has a wacky way of initialising the position of the heap.
942 * There is a little table in crt0.o that is filled at link time with
943 * the min and current brk positions, among other things. When start
944 * runs, it copies the table to where these parameters live during
945 * execution. This data is in text space, so it cannot be modified here
946 * before saving the executable, so the data is written manually. In
947 * addition, the table does not have a label, and the nearest accessible
948 * label (mcount) is not prefixed with a '_', thus making it inaccessible
949 * from within C programs. To overcome this, emacs's executable is passed
950 * through the command 'nm %s | fgrep mcount' into a pipe, and the
951 * resultant output is then used to find the address of 'mcount'. As far as
952 * is possible to determine, in RISC-iX releases prior to 1.2, the negative
953 * offset of the table from mcount is 0x2c, whereas from 1.2 onwards it is
954 * 0x30. bss_end has been rounded up to page boundary. This solution is
955 * based on suggestions made by Kevin Welton and Steve Hunt of Acorn, and
956 * avoids the need for a custom version of crt0.o for emacs which has its
957 * table in data space.
963 char address_text
[32];
968 int mcount_address
, mcount_offset
, count
;
969 extern char *_execname
;
972 /* The use of _execname is incompatible with RISCiX 1.1 */
973 sprintf (command
, "nm %s | fgrep mcount", _execname
);
975 if ( (pfile
= popen(command
, "r")) == NULL
)
977 sprintf (errbuf
, "Could not open pipe");
982 while ( ((c
=getc(pfile
)) != EOF
) && (c
!= ' ') && (count
< 31))
983 address_text
[count
++]=c
;
984 address_text
[count
]=0;
986 if ((count
== 0) || pclose(pfile
) != NULL
)
988 sprintf (errbuf
, "Failed to execute the command '%s'\n", command
);
992 sscanf(address_text
, "%x", &mcount_address
);
993 ptr
= (char *) unexec_text_start
;
994 mcount_offset
= (char *)mcount_address
- ptr
;
997 #define EDATA_OFFSET 0x2c
999 #define EDATA_OFFSET 0x30
1002 end
= ptr
+ mcount_offset
- EDATA_OFFSET
;
1004 write_segment (new, ptr
, end
);
1006 proforma
[0] = bss_end
; /* becomes _edata */
1007 proforma
[1] = bss_end
; /* becomes _end */
1008 proforma
[2] = bss_end
; /* becomes _minbrk */
1009 proforma
[3] = bss_end
; /* becomes _curbrk */
1011 write (new, proforma
, 16);
1015 end
= temp_ptr
+ hdr
.a_text
;
1017 write_segment (new, ptr
, end
);
1021 ptr
= (char *) unexec_text_start
;
1022 end
= ptr
+ hdr
.a_text
;
1023 write_segment (new, ptr
, end
);
1026 ptr
= (char *) unexec_data_start
;
1027 end
= ptr
+ hdr
.a_data
;
1028 /* This lseek is certainly incorrect when A_TEXT_OFFSET
1029 and I believe it is a no-op otherwise.
1030 Let's see if its absence ever fails. */
1031 /* lseek (new, (long) N_TXTOFF (hdr) + hdr.a_text, 0); */
1032 write_segment (new, ptr
, end
);
1034 #endif /* not COFF */
1039 write_segment (new, ptr
, end
)
1041 register char *ptr
, *end
;
1043 register int i
, nwrite
, ret
;
1046 /* This is the normal amount to write at once.
1047 It is the size of block that NFS uses. */
1048 int writesize
= 1 << 13;
1049 int pagesize
= getpagesize ();
1050 char zeros
[1 << 13];
1052 bzero (zeros
, sizeof (zeros
));
1054 for (i
= 0; ptr
< end
;)
1056 /* Distance to next multiple of writesize. */
1057 nwrite
= (((int) ptr
+ writesize
) & -writesize
) - (int) ptr
;
1058 /* But not beyond specified end. */
1059 if (nwrite
> end
- ptr
) nwrite
= end
- ptr
;
1060 ret
= write (new, ptr
, nwrite
);
1061 /* If write gets a page fault, it means we reached
1062 a gap between the old text segment and the old data segment.
1063 This gap has probably been remapped into part of the text segment.
1064 So write zeros for it. */
1071 /* Write only a page of zeros at once,
1072 so that we we don't overshoot the start
1073 of the valid memory in the old data segment. */
1074 if (nwrite
> pagesize
)
1076 write (new, zeros
, nwrite
);
1078 #if 0 /* Now that we have can ask `write' to write more than a page,
1079 it is legit for write do less than the whole amount specified. */
1080 else if (nwrite
!= ret
)
1083 "unexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %d",
1084 ptr
, new, nwrite
, ret
, errno
);
1093 /* ****************************************************************
1096 * Copy the relocation information and symbol table from the a.out to the new
1099 copy_sym (new, a_out
, a_name
, new_name
)
1101 char *a_name
, *new_name
;
1110 if (SYMS_START
== 0L)
1115 if (lnnoptr
) /* if there is line number info */
1116 lseek (a_out
, lnnoptr
, 0); /* start copying from there */
1119 lseek (a_out
, SYMS_START
, 0); /* Position a.out to symtab. */
1121 while ((n
= read (a_out
, page
, sizeof page
)) > 0)
1123 if (write (new, page
, n
) != n
)
1135 /* ****************************************************************
1138 * After successfully building the new a.out, mark it executable
1146 int new = 0; /* for PERROR */
1150 if (stat (name
, &sbuf
) == -1)
1154 sbuf
.st_mode
|= 0111 & ~um
;
1155 if (chmod (name
, sbuf
.st_mode
) == -1)
1160 #ifndef COFF_BSD_SYMBOLS
1163 * If the COFF file contains a symbol table and a line number section,
1164 * then any auxiliary entries that have values for x_lnnoptr must
1165 * be adjusted by the amount that the line number section has moved
1166 * in the file (bias computed in make_hdr). The #@$%&* designers of
1167 * the auxiliary entry structures used the absolute file offsets for
1168 * the line number entry rather than an offset from the start of the
1169 * line number section!
1171 * When I figure out how to scan through the symbol table and pick out
1172 * the auxiliary entries that need adjustment, this routine will
1173 * be fixed. As it is now, all such entries are wrong and sdb
1174 * will complain. Fred Fish, UniSoft Systems Inc.
1177 /* This function is probably very slow. Instead of reopening the new
1178 file for input and output it should copy from the old to the new
1179 using the two descriptors already open (WRITEDESC and READDESC).
1180 Instead of reading one small structure at a time it should use
1181 a reasonable size buffer. But I don't have time to work on such
1182 things, so I am installing it as submitted to me. -- RMS. */
1184 adjust_lnnoptrs (writedesc
, readdesc
, new_name
)
1191 #if defined (amdahl_uts) || defined (pfa)
1195 struct syment symentry
;
1196 union auxent auxentry
;
1199 if (!lnnoptr
|| !f_hdr
.f_symptr
)
1203 if ((new = writedesc
) < 0)
1205 if ((new = open (new_name
, O_RDWR
)) < 0)
1212 lseek (new, f_hdr
.f_symptr
, 0);
1213 for (nsyms
= 0; nsyms
< f_hdr
.f_nsyms
; nsyms
++)
1215 read (new, &symentry
, SYMESZ
);
1216 if (symentry
.n_numaux
)
1218 read (new, &auxentry
, AUXESZ
);
1220 if (ISFCN (symentry
.n_type
) || symentry
.n_type
== 0x2400)
1222 auxentry
.x_sym
.x_fcnary
.x_fcn
.x_lnnoptr
+= bias
;
1223 lseek (new, -AUXESZ
, 1);
1224 write (new, &auxentry
, AUXESZ
);
1234 #endif /* COFF_BSD_SYMBOLS */
1238 #endif /* not CANNOT_DUMP */