annotate src/unexec.c @ 96318:ba6ba98474c2

*** empty log message ***
author Glenn Morris <rgm@gnu.org>
date Thu, 26 Jun 2008 07:16:38 +0000
parents ddedcecb18ef
children 31cae2dacc05
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
75227
e90d04cd455a Update copyright for years from Emacs 21 to present (mainly adding
Glenn Morris <rgm@gnu.org>
parents: 68651
diff changeset
1 /* Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993, 1994, 2001, 2002, 2003,
79759
fc2bcd2a8aad Add 2008 to copyright years.
Glenn Morris <rgm@gnu.org>
parents: 78260
diff changeset
2 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc.
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
3
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
4 This file is part of GNU Emacs.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
5
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91702
diff changeset
6 GNU Emacs is free software: you can redistribute it and/or modify
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
7 it under the terms of the GNU General Public License as published by
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91702
diff changeset
8 the Free Software Foundation, either version 3 of the License, or
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91702
diff changeset
9 (at your option) any later version.
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
10
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
11 GNU Emacs is distributed in the hope that it will be useful,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
14 GNU General Public License for more details.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
15
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
94963
8971ddf55736 Switch to recommended form of GPLv3 permissions notice.
Glenn Morris <rgm@gnu.org>
parents: 91702
diff changeset
17 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>. */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
18
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
19
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
20 /*
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
21 * unexec.c - Convert a running program into an a.out file.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
22 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
23 * Author: Spencer W. Thomas
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
24 * Computer Science Dept.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
25 * University of Utah
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
26 * Date: Tue Mar 2 1982
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
27 * Modified heavily since then.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
28 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
29 * Synopsis:
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
30 * unexec (new_name, a_name, data_start, bss_start, entry_address)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
31 * char *new_name, *a_name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
32 * unsigned data_start, bss_start, entry_address;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
33 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
34 * Takes a snapshot of the program and makes an a.out format file in the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
35 * file named by the string argument new_name.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
36 * If a_name is non-NULL, the symbol table will be taken from the given file.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
37 * On some machines, an existing a_name file is required.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
38 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
39 * The boundaries within the a.out file may be adjusted with the data_start
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
40 * and bss_start arguments. Either or both may be given as 0 for defaults.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
41 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
42 * Data_start gives the boundary between the text segment and the data
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
43 * segment of the program. The text segment can contain shared, read-only
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
44 * program code and literal data, while the data segment is always unshared
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
45 * and unprotected. Data_start gives the lowest unprotected address.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
46 * The value you specify may be rounded down to a suitable boundary
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
47 * as required by the machine you are using.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
48 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
49 * Specifying zero for data_start means the boundary between text and data
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
50 * should not be the same as when the program was loaded.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
51 * If NO_REMAP is defined, the argument data_start is ignored and the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
52 * segment boundaries are never changed.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
53 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
54 * Bss_start indicates how much of the data segment is to be saved in the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
55 * a.out file and restored when the program is executed. It gives the lowest
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
56 * unsaved address, and is rounded up to a page boundary. The default when 0
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
57 * is given assumes that the entire data segment is to be stored, including
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
58 * the previous data and bss as well as any additional storage allocated with
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
59 * break (2).
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
60 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
61 * The new file is set up to start at entry_address.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
62 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
63 * If you make improvements I'd like to get them too.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
64 * harpo!utah-cs!thomas, thomas@Utah-20
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
65 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
66 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
67
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
68 /* Modified to support SysVr3 shared libraries by James Van Artsdalen
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
69 * of Dell Computer Corporation. james@bigtex.cactus.org.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
70 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
71
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
72 /* There are several compilation parameters affecting unexec:
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
73
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
74 * COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
75
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
76 Define this if your system uses COFF for executables.
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 172
diff changeset
77
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
78 * NO_REMAP
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
79
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
80 Define this if you do not want to try to save Emacs's pure data areas
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
81 as part of the text segment.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
82
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
83 Saving them as text is good because it allows users to share more.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
84
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
85 However, on machines that locate the text area far from the data area,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
86 the boundary cannot feasibly be moved. Such machines require
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
87 NO_REMAP.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
88
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
89 Also, remapping can cause trouble with the built-in startup routine
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
90 /lib/crt0.o, which defines `environ' as an initialized variable.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
91 Dumping `environ' as pure does not work! So, to use remapping,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
92 you must write a startup routine for your machine in Emacs's crt0.c.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
93 If NO_REMAP is defined, Emacs uses the system's crt0.o.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
94
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
95 * SECTION_ALIGNMENT
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
96
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
97 Some machines that use COFF executables require that each section
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
98 start on a certain boundary *in the COFF file*. Such machines should
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
99 define SECTION_ALIGNMENT to a mask of the low-order bits that must be
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
100 zero on such a boundary. This mask is used to control padding between
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
101 segments in the COFF file.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
102
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
103 If SECTION_ALIGNMENT is not defined, the segments are written
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
104 consecutively with no attempt at alignment. This is right for
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
105 unmodified system V.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
106
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
107 * SEGMENT_MASK
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
108
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
109 Some machines require that the beginnings and ends of segments
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
110 *in core* be on certain boundaries. For most machines, a page
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
111 boundary is sufficient. That is the default. When a larger
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
112 boundary is needed, define SEGMENT_MASK to a mask of
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
113 the bits that must be zero on such a boundary.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
114
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
115 * A_TEXT_OFFSET(HDR)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
116
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
117 Some machines count the a.out header as part of the size of the text
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
118 segment (a_text); they may actually load the header into core as the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
119 first data in the text segment. Some have additional padding between
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
120 the header and the real text of the program that is counted in a_text.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
121
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
122 For these machines, define A_TEXT_OFFSET(HDR) to examine the header
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
123 structure HDR and return the number of bytes to add to `a_text'
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
124 before writing it (above and beyond the number of bytes of actual
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
125 program text). HDR's standard fields are already correct, except that
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
126 this adjustment to the `a_text' field has not yet been made;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
127 thus, the amount of offset can depend on the data in the file.
49600
23a1cea22d13 Trailing whitespace deleted.
Juanma Barranquero <lekktu@gmail.com>
parents: 41971
diff changeset
128
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
129 * A_TEXT_SEEK(HDR)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
130
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
131 If defined, this macro specifies the number of bytes to seek into the
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
132 a.out file before starting to write the text segment.
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
133
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
134 * ADJUST_EXEC_HEADER
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
135
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
136 This macro can be used to generate statements to adjust or
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
137 initialize nonstandard fields in the file header
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
138
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
139 * ADDR_CORRECT(ADDR)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
140
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
141 Macro to correct an int which is the bit pattern of a pointer to a byte
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
142 into an int which is the number of a byte.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
143
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
144 This macro has a default definition which is usually right.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
145 This default definition is a no-op on most machines (where a
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
146 pointer looks like an int) but not on all machines.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
147
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
148 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
149
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
150 #ifndef emacs
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
151 #define PERROR(arg) perror (arg); return -1
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
152 #else
4696
1fc792473491 Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents: 4319
diff changeset
153 #include <config.h>
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
154 #define PERROR(file) report_error (file, new)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
155 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
156
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
157 #ifndef CANNOT_DUMP /* all rest of file! */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
158
41144
b6ca9b64ce9f Don't include coff.h unless HAVE_COFF_H is defined.
Eli Zaretskii <eliz@gnu.org>
parents: 31103
diff changeset
159 #if defined(COFF) && defined(HAVE_COFF_H)
29650
2411aacca614 (toplevel) [COFF]: Include coff.h.
Gerd Moellmann <gerd@gnu.org>
parents: 22647
diff changeset
160 #include <coff.h>
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
161 #ifdef MSDOS
14975
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
162 #if __DJGPP__ > 1
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
163 #include <fcntl.h> /* for O_RDONLY, O_RDWR */
15732
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
164 #include <crt0.h> /* for _crt0_startup_flags and its bits */
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
165 static int save_djgpp_startup_flags;
29668
1e6eeead2f1d (toplevel): Fix last change, so as not to deprive MSDOS
Eli Zaretskii <eliz@gnu.org>
parents: 29650
diff changeset
166 #endif /* __DJGPP__ > 1 */
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
167 #define filehdr external_filehdr
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
168 #define scnhdr external_scnhdr
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
169 #define syment external_syment
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
170 #define auxent external_auxent
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
171 #define n_numaux e_numaux
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
172 #define n_type e_type
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
173 struct aouthdr
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
174 {
7626
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
175 unsigned short magic; /* type of file */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
176 unsigned short vstamp; /* version stamp */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
177 unsigned long tsize; /* text size in bytes, padded to FW bdry*/
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
178 unsigned long dsize; /* initialized data " " */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
179 unsigned long bsize; /* uninitialized data " " */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
180 unsigned long entry; /* entry pt. */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
181 unsigned long text_start;/* base of text used for this file */
7ae305576201 [MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents: 7307
diff changeset
182 unsigned long data_start;/* base of data used for this file */
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
183 };
29668
1e6eeead2f1d (toplevel): Fix last change, so as not to deprive MSDOS
Eli Zaretskii <eliz@gnu.org>
parents: 29650
diff changeset
184 #endif /* not MSDOS */
1e6eeead2f1d (toplevel): Fix last change, so as not to deprive MSDOS
Eli Zaretskii <eliz@gnu.org>
parents: 29650
diff changeset
185 #else /* not COFF */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
186 #include <a.out.h>
29650
2411aacca614 (toplevel) [COFF]: Include coff.h.
Gerd Moellmann <gerd@gnu.org>
parents: 22647
diff changeset
187 #endif /* not COFF */
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 172
diff changeset
188
9699
0b471201bbd4 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 9351
diff changeset
189 /* Define getpagesize if the system does not.
0b471201bbd4 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 9351
diff changeset
190 Note that this may depend on symbols defined in a.out.h. */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
191 #include "getpagesize.h"
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
192
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
193 #ifndef makedev /* Try to detect types.h already loaded */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
194 #include <sys/types.h>
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 172
diff changeset
195 #endif /* makedev */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
196 #include <stdio.h>
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
197 #include <sys/stat.h>
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
198 #include <errno.h>
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
199
96303
ddedcecb18ef * unexnext.c:
Dan Nicolaescu <dann@ics.uci.edu>
parents: 94963
diff changeset
200 #include <sys/file.h> /* Must be after sys/types.h for USG*/
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
201
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
202 #ifdef USG5
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
203 #include <fcntl.h>
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
204 #endif
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
205
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
206 #ifndef O_RDONLY
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
207 #define O_RDONLY 0
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
208 #endif
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
209 #ifndef O_RDWR
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
210 #define O_RDWR 2
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
211 #endif
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
212
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
213
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
214 extern char *start_of_text (); /* Start of text */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
215 extern char *start_of_data (); /* Start of initialized data */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
216
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
217 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
218 static long block_copy_start; /* Old executable start point */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
219 static struct filehdr f_hdr; /* File header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
220 static struct aouthdr f_ohdr; /* Optional file header (a.out) */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
221 long bias; /* Bias to add for growth */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
222 long lnnoptr; /* Pointer to line-number info within file */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
223 #define SYMS_START block_copy_start
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
224
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
225 static long text_scnptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
226 static long data_scnptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
227
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
228 static long coff_offset;
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
229
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
230 #else /* not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
231
3770
07ba80692381 * unexec.c [HPUX] (sbrk): This returns a void *.
Jim Blandy <jimb@redhat.com>
parents: 3591
diff changeset
232 #ifdef HPUX
07ba80692381 * unexec.c [HPUX] (sbrk): This returns a void *.
Jim Blandy <jimb@redhat.com>
parents: 3591
diff changeset
233 extern void *sbrk ();
07ba80692381 * unexec.c [HPUX] (sbrk): This returns a void *.
Jim Blandy <jimb@redhat.com>
parents: 3591
diff changeset
234 #else
4973
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
235 #if 0
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
236 /* Some systems with __STDC__ compilers still declare this `char *' in some
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
237 header file, and our declaration conflicts. The return value is always
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
238 cast, so it should be harmless to leave it undefined. Hopefully
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
239 machines with different size pointers and ints declare sbrk in a header
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
240 file. */
620
88a29c720fa7 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 579
diff changeset
241 #ifdef __STDC__
88a29c720fa7 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 579
diff changeset
242 extern void *sbrk ();
88a29c720fa7 entered into RCS
Jim Blandy <jimb@redhat.com>
parents: 579
diff changeset
243 #else
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
244 extern char *sbrk ();
3770
07ba80692381 * unexec.c [HPUX] (sbrk): This returns a void *.
Jim Blandy <jimb@redhat.com>
parents: 3591
diff changeset
245 #endif /* __STDC__ */
4973
4e5081dcfc25 [! HPUX]: Don't declare sbrk at all, so as not to conflict with headers.
Roland McGrath <roland@gnu.org>
parents: 4696
diff changeset
246 #endif
3770
07ba80692381 * unexec.c [HPUX] (sbrk): This returns a void *.
Jim Blandy <jimb@redhat.com>
parents: 3591
diff changeset
247 #endif /* HPUX */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
248
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
249 #define SYMS_START ((long) N_SYMOFF (ohdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
250
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
251 #ifdef HPUX
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
252 #ifdef HP9000S200_ID
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
253 #define MY_ID HP9000S200_ID
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
254 #else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
255 #include <model.h>
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
256 #define MY_ID MYSYS
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
257 #endif /* no HP9000S200_ID */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
258 static MAGIC OLDMAGIC = {MY_ID, SHARE_MAGIC};
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
259 static MAGIC NEWMAGIC = {MY_ID, DEMAND_MAGIC};
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
260 #define N_TXTOFF(x) TEXT_OFFSET(x)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
261 #define N_SYMOFF(x) LESYM_OFFSET(x)
91702
b7a5a89054dc * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents: 91691
diff changeset
262 static struct exec hdr, ohdr;
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
263
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
264 #else /* not HPUX */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
265
91702
b7a5a89054dc * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents: 91691
diff changeset
266 #if defined (USG) && !defined (IRIS) && !defined (GNU_LINUX)
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
267 static struct bhdr hdr, ohdr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
268 #define a_magic fmagic
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
269 #define a_text tsize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
270 #define a_data dsize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
271 #define a_bss bsize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
272 #define a_syms ssize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
273 #define a_trsize rtsize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
274 #define a_drsize rdsize
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
275 #define a_entry entry
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
276 #define N_BADMAG(x) \
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
277 (((x).fmagic)!=OMAGIC && ((x).fmagic)!=NMAGIC &&\
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
278 ((x).fmagic)!=FMAGIC && ((x).fmagic)!=IMAGIC)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
279 #define NEWMAGIC FMAGIC
91702
b7a5a89054dc * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents: 91691
diff changeset
280 #else /* IRIS or not USG */
b7a5a89054dc * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents: 91691
diff changeset
281 static struct exec hdr, ohdr;
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
282 #define NEWMAGIC ZMAGIC
91702
b7a5a89054dc * configure.in (LIBX11_MACHINE, HAVE_XFREE386): Remove code
Dan Nicolaescu <dann@ics.uci.edu>
parents: 91691
diff changeset
283 #endif /* IRIS or not USG */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
284 #endif /* not HPUX */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
285
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
286 static int unexec_text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
287 static int unexec_data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
288
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
289 #endif /* not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
290
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
291 static int pagemask;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
292
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
293 /* Correct an int which is the bit pattern of a pointer to a byte
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
294 into an int which is the number of a byte.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
295 This is a no-op on ordinary machines, but not on all. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
296
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
297 #ifndef ADDR_CORRECT /* Let m-*.h files override this definition */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
298 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
299 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
300
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
301 #ifdef emacs
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
302
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
303 #include "lisp.h"
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
304
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
305 static
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
306 report_error (file, fd)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
307 char *file;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
308 int fd;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
309 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
310 if (fd)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
311 close (fd);
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
312 report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil));
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
313 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
314 #endif /* emacs */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
315
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
316 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
317 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
318 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
319
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
320 static
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
321 report_error_1 (fd, msg, a1, a2)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
322 int fd;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
323 char *msg;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
324 int a1, a2;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
325 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
326 close (fd);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
327 #ifdef emacs
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
328 error (msg, a1, a2);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
329 #else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
330 fprintf (stderr, msg, a1, a2);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
331 fprintf (stderr, "\n");
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
332 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
333 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
334
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
335 static int make_hdr ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
336 static int copy_text_and_data ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
337 static int copy_sym ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
338 static void mark_x ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
339
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
340 /* ****************************************************************
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
341 * make_hdr
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
342 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
343 * Make the header in the new a.out from the header in core.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
344 * Modify the text and data sizes.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
345 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
346 static int
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
347 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
348 int new, a_out;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
349 unsigned data_start, bss_start, entry_address;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
350 char *a_name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
351 char *new_name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
352 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
353 int tem;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
354 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
355 auto struct scnhdr f_thdr; /* Text section header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
356 auto struct scnhdr f_dhdr; /* Data section header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
357 auto struct scnhdr f_bhdr; /* Bss section header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
358 auto struct scnhdr scntemp; /* Temporary section header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
359 register int scns;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
360 #endif /* COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
361 #ifdef USG_SHARED_LIBRARIES
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
362 extern unsigned int bss_end;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
363 #else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
364 unsigned int bss_end;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
365 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
366
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
367 pagemask = getpagesize () - 1;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
368
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
369 /* Adjust text/data boundary. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
370 #ifdef NO_REMAP
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
371 data_start = (int) start_of_data ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
372 #else /* not NO_REMAP */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
373 if (!data_start)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
374 data_start = (int) start_of_data ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
375 #endif /* not NO_REMAP */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
376 data_start = ADDR_CORRECT (data_start);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
377
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
378 #ifdef SEGMENT_MASK
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
379 data_start = data_start & ~SEGMENT_MASK; /* (Down) to segment boundary. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
380 #else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
381 data_start = data_start & ~pagemask; /* (Down) to page boundary. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
382 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
383
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
384 bss_end = ADDR_CORRECT (sbrk (0)) + pagemask;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
385 bss_end &= ~ pagemask;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
386
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
387 /* Adjust data/bss boundary. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
388 if (bss_start != 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
389 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
390 bss_start = (ADDR_CORRECT (bss_start) + pagemask);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
391 /* (Up) to page bdry. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
392 bss_start &= ~ pagemask;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
393 if (bss_start > bss_end)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
394 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
395 ERROR1 ("unexec: Specified bss_start (%u) is past end of program",
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
396 bss_start);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
397 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
398 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
399 else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
400 bss_start = bss_end;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
401
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
402 if (data_start > bss_start) /* Can't have negative data size. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
403 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
404 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)",
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
405 data_start, bss_start);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
406 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
407
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
408 #ifdef COFF
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
409 coff_offset = 0L; /* stays zero, except in DJGPP */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
410
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
411 /* Salvage as much info from the existing file as possible */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
412 if (a_out >= 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
413 {
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
414 #ifdef MSDOS
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
415 #if __DJGPP__ > 1
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
416 /* Support the coff-go32-exe format with a prepended stub, since
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
417 this is what GCC 2.8.0 and later generates by default in DJGPP. */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
418 unsigned short mz_header[3];
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
419
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
420 if (read (a_out, &mz_header, sizeof (mz_header)) != sizeof (mz_header))
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
421 {
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
422 PERROR (a_name);
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
423 }
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
424 if (mz_header[0] == 0x5a4d || mz_header[0] == 0x4d5a) /* "MZ" or "ZM" */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
425 {
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
426 coff_offset = (long)mz_header[2] * 512L;
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
427 if (mz_header[1])
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
428 coff_offset += (long)mz_header[1] - 512L;
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
429 lseek (a_out, coff_offset, 0);
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
430 }
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
431 else
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
432 lseek (a_out, 0L, 0);
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
433 #endif /* __DJGPP__ > 1 */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
434 #endif /* MSDOS */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
435 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
436 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
437 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
438 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
439 block_copy_start += sizeof (f_hdr);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
440 if (f_hdr.f_opthdr > 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
441 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
442 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
443 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
444 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
445 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
446 block_copy_start += sizeof (f_ohdr);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
447 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
448 /* Loop through section headers, copying them in */
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
449 lseek (a_out, coff_offset + sizeof (f_hdr) + f_hdr.f_opthdr, 0);
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
450 for (scns = f_hdr.f_nscns; scns > 0; scns--) {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
451 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
452 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
453 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
454 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
455 if (scntemp.s_scnptr > 0L)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
456 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
457 if (block_copy_start < scntemp.s_scnptr + scntemp.s_size)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
458 block_copy_start = scntemp.s_scnptr + scntemp.s_size;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
459 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
460 if (strcmp (scntemp.s_name, ".text") == 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
461 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
462 f_thdr = scntemp;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
463 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
464 else if (strcmp (scntemp.s_name, ".data") == 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
465 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
466 f_dhdr = scntemp;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
467 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
468 else if (strcmp (scntemp.s_name, ".bss") == 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
469 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
470 f_bhdr = scntemp;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
471 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
472 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
473 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
474 else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
475 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
476 ERROR0 ("can't build a COFF file from scratch yet");
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
477 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
478
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
479 /* Now we alter the contents of all the f_*hdr variables
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
480 to correspond to what we want to dump. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
481
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
482 #ifdef USG_SHARED_LIBRARIES
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
483
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
484 /* The amount of data we're adding to the file is distance from the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
485 * end of the original .data space to the current end of the .data
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
486 * space.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
487 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
488
1937
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
489 bias = bss_start - (f_ohdr.data_start + f_dhdr.s_size);
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
490
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
491 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
492
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
493 f_hdr.f_flags |= (F_RELFLG | F_EXEC);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
494 #ifndef NO_REMAP
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
495 f_ohdr.text_start = (long) start_of_text ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
496 f_ohdr.tsize = data_start - f_ohdr.text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
497 f_ohdr.data_start = data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
498 #endif /* NO_REMAP */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
499 f_ohdr.dsize = bss_start - f_ohdr.data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
500 f_ohdr.bsize = bss_end - bss_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
501 /* On some machines, the old values are right.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
502 ??? Maybe on all machines with NO_REMAP. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
503 f_thdr.s_size = f_ohdr.tsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
504 f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
505 f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr));
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
506 #ifdef ADJUST_TEXT_SCNHDR_SIZE
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
507 /* On some machines, `text size' includes all headers. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
508 f_thdr.s_size -= f_thdr.s_scnptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
509 #endif /* ADJUST_TEST_SCNHDR_SIZE */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
510 lnnoptr = f_thdr.s_lnnoptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
511 #ifdef SECTION_ALIGNMENT
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
512 /* Some systems require special alignment
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
513 of the sections in the file itself. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
514 f_thdr.s_scnptr
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
515 = (f_thdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
516 #endif /* SECTION_ALIGNMENT */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
517 text_scnptr = f_thdr.s_scnptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
518 f_dhdr.s_paddr = f_ohdr.data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
519 f_dhdr.s_vaddr = f_ohdr.data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
520 f_dhdr.s_size = f_ohdr.dsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
521 f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
522 #ifdef SECTION_ALIGNMENT
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
523 /* Some systems require special alignment
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
524 of the sections in the file itself. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
525 f_dhdr.s_scnptr
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
526 = (f_dhdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
527 #endif /* SECTION_ALIGNMENT */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
528 #ifdef DATA_SECTION_ALIGNMENT
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
529 /* Some systems require special alignment
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
530 of the data section only. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
531 f_dhdr.s_scnptr
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
532 = (f_dhdr.s_scnptr + DATA_SECTION_ALIGNMENT) & ~DATA_SECTION_ALIGNMENT;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
533 #endif /* DATA_SECTION_ALIGNMENT */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
534 data_scnptr = f_dhdr.s_scnptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
535 f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
536 f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
537 f_bhdr.s_size = f_ohdr.bsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
538 f_bhdr.s_scnptr = 0L;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
539 #ifndef USG_SHARED_LIBRARIES
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
540 bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
541 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
542
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
543 if (f_hdr.f_symptr > 0L)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
544 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
545 f_hdr.f_symptr += bias;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
546 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
547
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
548 if (f_thdr.s_lnnoptr > 0L)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
549 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
550 f_thdr.s_lnnoptr += bias;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
551 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
552
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
553 #ifdef ADJUST_EXEC_HEADER
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
554 ADJUST_EXEC_HEADER;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
555 #endif /* ADJUST_EXEC_HEADER */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
556
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
557 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
558 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
559 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
560 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
561
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
562 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
563 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
564 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
565 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
566
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
567 #ifndef USG_SHARED_LIBRARIES
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
568
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
569 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
570 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
571 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
572 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
573
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
574 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
575 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
576 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
577 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
578
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
579 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
580 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
581 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
582 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
583
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
584 #else /* USG_SHARED_LIBRARIES */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
585
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
586 /* The purpose of this code is to write out the new file's section
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
587 * header table.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
588 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
589 * Scan through the original file's sections. If the encountered
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
590 * section is one we know (.text, .data or .bss), write out the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
591 * correct header. If it is a section we do not know (such as
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
592 * .lib), adjust the address of where the section data is in the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
593 * file, and write out the header.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
594 *
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 2917
diff changeset
595 * If any section precedes .text or .data in the file, this code
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
596 * will not adjust the file pointer for that section correctly.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
597 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
598
7931
359834d749db (make_hdr): Handle case of no "additional header".
Richard M. Stallman <rms@gnu.org>
parents: 7921
diff changeset
599 /* This used to use sizeof (f_ohdr) instead of .f_opthdr.
359834d749db (make_hdr): Handle case of no "additional header".
Richard M. Stallman <rms@gnu.org>
parents: 7921
diff changeset
600 .f_opthdr is said to be right when there is no optional header. */
359834d749db (make_hdr): Handle case of no "additional header".
Richard M. Stallman <rms@gnu.org>
parents: 7921
diff changeset
601 lseek (a_out, sizeof (f_hdr) + f_hdr.f_opthdr, 0);
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
602
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
603 for (scns = f_hdr.f_nscns; scns > 0; scns--)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
604 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
605 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
606 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
607
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
608 if (!strcmp (scntemp.s_name, f_thdr.s_name)) /* .text */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
609 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
610 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
611 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
612 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
613 else if (!strcmp (scntemp.s_name, f_dhdr.s_name)) /* .data */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
614 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
615 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
616 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
617 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
618 else if (!strcmp (scntemp.s_name, f_bhdr.s_name)) /* .bss */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
619 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
620 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
621 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
622 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
623 else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
624 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
625 if (scntemp.s_scnptr)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
626 scntemp.s_scnptr += bias;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
627 if (write (new, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
628 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
629 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
630 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
631 #endif /* USG_SHARED_LIBRARIES */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
632
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
633 return (0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
634
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
635 #else /* if not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
636
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
637 /* Get symbol table info from header of a.out file if given one. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
638 if (a_out >= 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
639 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
640 if (read (a_out, &ohdr, sizeof hdr) != sizeof hdr)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
641 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
642 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
643 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
644
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
645 if (N_BADMAG (ohdr))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
646 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
647 ERROR1 ("invalid magic number in %s", a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
648 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
649 hdr = ohdr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
650 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
651 else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
652 {
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
653 #ifdef MSDOS /* Demacs 1.1.1 91/10/16 HIRANO Satoshi */
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
654 bzero ((void *)&hdr, sizeof hdr);
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
655 #else
4319
43a327b94579 (make_hdr): Use & in call to bzero.
Richard M. Stallman <rms@gnu.org>
parents: 3770
diff changeset
656 bzero (&hdr, sizeof hdr);
485
8c615e453683 *** empty log message ***
Jim Blandy <jimb@redhat.com>
parents: 172
diff changeset
657 #endif
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
658 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
659
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
660 unexec_text_start = (long) start_of_text ();
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
661 unexec_data_start = data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
662
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
663 /* Machine-dependent fixup for header, or maybe for unexec_text_start */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
664 #ifdef ADJUST_EXEC_HEADER
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
665 ADJUST_EXEC_HEADER;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
666 #endif /* ADJUST_EXEC_HEADER */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
667
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
668 hdr.a_trsize = 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
669 hdr.a_drsize = 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
670 if (entry_address != 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
671 hdr.a_entry = entry_address;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
672
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
673 hdr.a_bss = bss_end - bss_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
674 hdr.a_data = bss_start - data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
675 #ifdef NO_REMAP
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
676 hdr.a_text = ohdr.a_text;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
677 #else /* not NO_REMAP */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
678 hdr.a_text = data_start - unexec_text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
679
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
680 #ifdef A_TEXT_OFFSET
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
681 hdr.a_text += A_TEXT_OFFSET (ohdr);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
682 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
683
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
684 #endif /* not NO_REMAP */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
685
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
686 if (write (new, &hdr, sizeof hdr) != sizeof hdr)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
687 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
688 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
689 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
690
51093
2c04067bcdc0 Comment change.
Richard M. Stallman <rms@gnu.org>
parents: 49600
diff changeset
691 #if 0 /* This #ifndef caused a bug on GNU/Linux when using QMAGIC. */
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
692 /* This adjustment was done above only #ifndef NO_REMAP,
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
693 so only undo it now #ifndef NO_REMAP. */
9351
e3303c64b684 (make_hdr): Undo June 16 change.
Richard M. Stallman <rms@gnu.org>
parents: 9038
diff changeset
694 /* #ifndef NO_REMAP */
e3303c64b684 (make_hdr): Undo June 16 change.
Richard M. Stallman <rms@gnu.org>
parents: 9038
diff changeset
695 #endif
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
696 #ifdef A_TEXT_OFFSET
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
697 hdr.a_text -= A_TEXT_OFFSET (ohdr);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
698 #endif
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
699
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
700 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
701
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
702 #endif /* not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
703 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
704
60728
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
705 write_segment (new, ptr, end)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
706 int new;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
707 register char *ptr, *end;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
708 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
709 register int i, nwrite, ret;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
710 char buf[80];
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
711 #ifndef USE_CRT_DLL
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
712 extern int errno;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
713 #endif
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
714 /* This is the normal amount to write at once.
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
715 It is the size of block that NFS uses. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
716 int writesize = 1 << 13;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
717 int pagesize = getpagesize ();
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
718 char zeros[1 << 13];
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
719
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
720 bzero (zeros, sizeof (zeros));
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
721
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
722 for (i = 0; ptr < end;)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
723 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
724 /* Distance to next multiple of writesize. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
725 nwrite = (((int) ptr + writesize) & -writesize) - (int) ptr;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
726 /* But not beyond specified end. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
727 if (nwrite > end - ptr) nwrite = end - ptr;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
728 ret = write (new, ptr, nwrite);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
729 /* If write gets a page fault, it means we reached
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
730 a gap between the old text segment and the old data segment.
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
731 This gap has probably been remapped into part of the text segment.
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
732 So write zeros for it. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
733 if (ret == -1
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
734 #ifdef EFAULT
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
735 && errno == EFAULT
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
736 #endif
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
737 )
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
738 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
739 /* Write only a page of zeros at once,
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
740 so that we we don't overshoot the start
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
741 of the valid memory in the old data segment. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
742 if (nwrite > pagesize)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
743 nwrite = pagesize;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
744 write (new, zeros, nwrite);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
745 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
746 #if 0 /* Now that we have can ask `write' to write more than a page,
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
747 it is legit for write do less than the whole amount specified. */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
748 else if (nwrite != ret)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
749 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
750 sprintf (buf,
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
751 "unexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %d",
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
752 ptr, new, nwrite, ret, errno);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
753 PERROR (buf);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
754 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
755 #endif
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
756 i += nwrite;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
757 ptr += nwrite;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
758 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
759 }
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
760 /* ****************************************************************
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
761 * copy_text_and_data
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
762 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
763 * Copy the text and data segments from memory to the new a.out
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
764 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
765 static int
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
766 copy_text_and_data (new, a_out)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
767 int new, a_out;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
768 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
769 register char *end;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
770 register char *ptr;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
771
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
772 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
773
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
774 #ifdef USG_SHARED_LIBRARIES
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
775
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
776 int scns;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
777 struct scnhdr scntemp; /* Temporary section header */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
778
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
779 /* The purpose of this code is to write out the new file's section
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
780 * contents.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
781 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
782 * Step through the section table. If we know the section (.text,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
783 * .data) do the appropriate thing. Otherwise, if the section has
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
784 * no allocated space in the file (.bss), do nothing. Otherwise,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
785 * the section has space allocated in the file, and is not a section
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
786 * we know. So just copy it.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
787 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
788
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
789 lseek (a_out, sizeof (struct filehdr) + sizeof (struct aouthdr), 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
790
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
791 for (scns = f_hdr.f_nscns; scns > 0; scns--)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
792 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
793 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
794 PERROR ("temacs");
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
795
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
796 if (!strcmp (scntemp.s_name, ".text"))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
797 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
798 lseek (new, (long) text_scnptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
799 ptr = (char *) f_ohdr.text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
800 end = ptr + f_ohdr.tsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
801 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
802 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
803 else if (!strcmp (scntemp.s_name, ".data"))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
804 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
805 lseek (new, (long) data_scnptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
806 ptr = (char *) f_ohdr.data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
807 end = ptr + f_ohdr.dsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
808 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
809 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
810 else if (!scntemp.s_scnptr)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
811 ; /* do nothing - no data for this section */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
812 else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
813 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
814 char page[BUFSIZ];
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
815 int size, n;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
816 long old_a_out_ptr = lseek (a_out, 0, 1);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
817
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
818 lseek (a_out, scntemp.s_scnptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
819 for (size = scntemp.s_size; size > 0; size -= sizeof (page))
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
820 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
821 n = size > sizeof (page) ? sizeof (page) : size;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
822 if (read (a_out, page, n) != n || write (new, page, n) != n)
2125
0920d8d995d0 * unexec.c (copy_text_and_data): Error message tweaked.
Jim Blandy <jimb@redhat.com>
parents: 1937
diff changeset
823 PERROR ("emacs");
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
824 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
825 lseek (a_out, old_a_out_ptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
826 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
827 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
828
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
829 #else /* COFF, but not USG_SHARED_LIBRARIES */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
830
14975
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
831 #ifdef MSDOS
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
832 #if __DJGPP__ >= 2
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
833 /* Dump the original table of exception handlers, not the one
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
834 where our exception hooks are registered. */
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
835 __djgpp_exception_toggle ();
15732
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
836
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
837 /* Switch off startup flags that might have been set at runtime
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
838 and which might change the way that dumped Emacs works. */
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
839 save_djgpp_startup_flags = _crt0_startup_flags;
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
840 _crt0_startup_flags &= ~(_CRT0_FLAG_NO_LFN | _CRT0_FLAG_NEARPTR);
14975
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
841 #endif
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
842 #endif
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
843
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
844 lseek (new, (long) text_scnptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
845 ptr = (char *) f_ohdr.text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
846 end = ptr + f_ohdr.tsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
847 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
848
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
849 lseek (new, (long) data_scnptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
850 ptr = (char *) f_ohdr.data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
851 end = ptr + f_ohdr.dsize;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
852 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
853
14975
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
854 #ifdef MSDOS
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
855 #if __DJGPP__ >= 2
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
856 /* Restore our exception hooks. */
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
857 __djgpp_exception_toggle ();
15732
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
858
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
859 /* Restore the startup flags. */
c24b00e705ba (copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents: 14975
diff changeset
860 _crt0_startup_flags = save_djgpp_startup_flags;
14975
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
861 #endif
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
862 #endif
7b91ceb19771 [DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents: 14186
diff changeset
863
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
864 #endif /* USG_SHARED_LIBRARIES */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
865
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
866 #else /* if not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
867
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
868 /* Some machines count the header as part of the text segment.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
869 That is to say, the header appears in core
9699
0b471201bbd4 Comment changes.
Richard M. Stallman <rms@gnu.org>
parents: 9351
diff changeset
870 just before the address that start_of_text returns.
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
871 For them, N_TXTOFF is the place where the header goes.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
872 We must adjust the seek to the place after the header.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
873 Note that at this point hdr.a_text does *not* count
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
874 the extra A_TEXT_OFFSET bytes, only the actual bytes of code. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
875
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
876 #ifdef A_TEXT_SEEK
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
877 lseek (new, (long) A_TEXT_SEEK (hdr), 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
878 #else
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
879 lseek (new, (long) N_TXTOFF (hdr), 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
880 #endif /* no A_TEXT_SEEK */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
881
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
882 ptr = (char *) unexec_text_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
883 end = ptr + hdr.a_text;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
884 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
885
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
886 ptr = (char *) unexec_data_start;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
887 end = ptr + hdr.a_data;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
888 /* This lseek is certainly incorrect when A_TEXT_OFFSET
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
889 and I believe it is a no-op otherwise.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
890 Let's see if its absence ever fails. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
891 /* lseek (new, (long) N_TXTOFF (hdr) + hdr.a_text, 0); */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
892 write_segment (new, ptr, end);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
893
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
894 #endif /* not COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
895
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
896 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
897 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
898
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
899 /* ****************************************************************
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
900 * copy_sym
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
901 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
902 * Copy the relocation information and symbol table from the a.out to the new
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
903 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
904 static int
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
905 copy_sym (new, a_out, a_name, new_name)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
906 int new, a_out;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
907 char *a_name, *new_name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
908 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
909 char page[1024];
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
910 int n;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
911
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
912 if (a_out < 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
913 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
914
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
915 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
916 if (SYMS_START == 0L)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
917 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
918 #endif /* COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
919
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
920 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
921 if (lnnoptr) /* if there is line number info */
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
922 lseek (a_out, coff_offset + lnnoptr, 0); /* start copying from there */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
923 else
22647
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
924 lseek (a_out, coff_offset + SYMS_START, 0); /* Position a.out to symtab. */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
925 #else /* not COFF */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
926 lseek (a_out, SYMS_START, 0); /* Position a.out to symtab. */
1f418e353dd7 [COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents: 15732
diff changeset
927 #endif /* not COFF */
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
928
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
929 while ((n = read (a_out, page, sizeof page)) > 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
930 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
931 if (write (new, page, n) != n)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
932 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
933 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
934 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
935 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
936 if (n < 0)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
937 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
938 PERROR (a_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
939 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
940 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
941 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
942
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
943 /* ****************************************************************
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
944 * mark_x
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
945 *
3591
507f64624555 Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents: 2917
diff changeset
946 * After successfully building the new a.out, mark it executable
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
947 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
948 static void
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
949 mark_x (name)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
950 char *name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
951 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
952 struct stat sbuf;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
953 int um;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
954 int new = 0; /* for PERROR */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
955
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
956 um = umask (777);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
957 umask (um);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
958 if (stat (name, &sbuf) == -1)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
959 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
960 PERROR (name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
961 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
962 sbuf.st_mode |= 0111 & ~um;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
963 if (chmod (name, sbuf.st_mode) == -1)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
964 PERROR (name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
965 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
966
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
967 #ifdef COFF
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
968 #ifndef COFF_BSD_SYMBOLS
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
969
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
970 /*
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
971 * If the COFF file contains a symbol table and a line number section,
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
972 * then any auxiliary entries that have values for x_lnnoptr must
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
973 * be adjusted by the amount that the line number section has moved
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
974 * in the file (bias computed in make_hdr). The #@$%&* designers of
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
975 * the auxiliary entry structures used the absolute file offsets for
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
976 * the line number entry rather than an offset from the start of the
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
977 * line number section!
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
978 *
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
979 * When I figure out how to scan through the symbol table and pick out
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
980 * the auxiliary entries that need adjustment, this routine will
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
981 * be fixed. As it is now, all such entries are wrong and sdb
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
982 * will complain. Fred Fish, UniSoft Systems Inc.
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
983 */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
984
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
985 /* This function is probably very slow. Instead of reopening the new
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
986 file for input and output it should copy from the old to the new
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
987 using the two descriptors already open (WRITEDESC and READDESC).
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
988 Instead of reading one small structure at a time it should use
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
989 a reasonable size buffer. But I don't have time to work on such
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
990 things, so I am installing it as submitted to me. -- RMS. */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
991
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
992 adjust_lnnoptrs (writedesc, readdesc, new_name)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
993 int writedesc;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
994 int readdesc;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
995 char *new_name;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
996 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
997 register int nsyms;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
998 register int new;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
999 struct syment symentry;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1000 union auxent auxentry;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1001
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1002 if (!lnnoptr || !f_hdr.f_symptr)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1003 return 0;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1004
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1005 #ifdef MSDOS
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1006 if ((new = writedesc) < 0)
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1007 #else
7921
b3a5b629fe26 Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents: 7626
diff changeset
1008 if ((new = open (new_name, O_RDWR)) < 0)
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1009 #endif
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1010 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1011 PERROR (new_name);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1012 return -1;
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1013 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1014
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1015 lseek (new, f_hdr.f_symptr, 0);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1016 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1017 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1018 read (new, &symentry, SYMESZ);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1019 if (symentry.n_numaux)
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1020 {
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1021 read (new, &auxentry, AUXESZ);
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1022 nsyms++;
1937
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1023 if (ISFCN (symentry.n_type) || symentry.n_type == 0x2400)
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1024 {
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1025 auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias;
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1026 lseek (new, -AUXESZ, 1);
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1027 write (new, &auxentry, AUXESZ);
087889e85644 (Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents: 620
diff changeset
1028 }
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1029 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1030 }
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1031 #ifndef MSDOS
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1032 close (new);
5500
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1033 #endif
6f6637309b38 [MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents: 4973
diff changeset
1034 return 0;
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1035 }
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1036
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1037 #endif /* COFF_BSD_SYMBOLS */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1038
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1039 #endif /* COFF */
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1040
60728
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1041 /* ****************************************************************
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1042 * unexec
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1043 *
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1044 * driving logic.
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1045 */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1046 unexec (new_name, a_name, data_start, bss_start, entry_address)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1047 char *new_name, *a_name;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1048 unsigned data_start, bss_start, entry_address;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1049 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1050 int new, a_out = -1;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1051
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1052 if (a_name && (a_out = open (a_name, O_RDONLY)) < 0)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1053 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1054 PERROR (a_name);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1055 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1056 if ((new = creat (new_name, 0666)) < 0)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1057 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1058 PERROR (new_name);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1059 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1060
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1061 if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1062 || copy_text_and_data (new, a_out) < 0
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1063 || copy_sym (new, a_out, a_name, new_name) < 0
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1064 #ifdef COFF
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1065 #ifndef COFF_BSD_SYMBOLS
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1066 || adjust_lnnoptrs (new, a_out, new_name) < 0
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1067 #endif
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1068 #endif
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1069 )
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1070 {
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1071 close (new);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1072 /* unlink (new_name); /* Failed, unlink new a.out */
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1073 return -1;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1074 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1075
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1076 close (new);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1077 if (a_out >= 0)
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1078 close (a_out);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1079 mark_x (new_name);
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1080 return 0;
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1081 }
1e22d789c8c7 (write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents: 52401
diff changeset
1082
172
bd964fa17294 Initial revision
Richard M. Stallman <rms@gnu.org>
parents:
diff changeset
1083 #endif /* not CANNOT_DUMP */
52401
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51093
diff changeset
1084
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51093
diff changeset
1085 /* arch-tag: 62409b69-e27a-4a7c-9413-0210d6b54e7f
695cf19ef79e Add arch taglines
Miles Bader <miles@gnu.org>
parents: 51093
diff changeset
1086 (do not change this comment) */