Mercurial > emacs
annotate src/unexec.c @ 109591:1fb35da4a097
Merge from mainline.
author | Katsumi Yamaoka <yamaoka@jpl.org> |
---|---|
date | Thu, 29 Jul 2010 23:01:42 +0000 |
parents | 88810df348ab |
children |
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, |
106815 | 2 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software Foundation, Inc. |
172 | 3 |
4 This file is part of GNU Emacs. | |
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 | 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 | 10 |
11 GNU Emacs is distributed in the hope that it will be useful, | |
12 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
14 GNU General Public License for more details. | |
15 | |
16 You should have received a copy of the GNU General Public License | |
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 | 18 |
19 | |
20 /* | |
21 * unexec.c - Convert a running program into an a.out file. | |
22 * | |
23 * Author: Spencer W. Thomas | |
24 * Computer Science Dept. | |
25 * University of Utah | |
26 * Date: Tue Mar 2 1982 | |
27 * Modified heavily since then. | |
28 * | |
29 * Synopsis: | |
30 * unexec (new_name, a_name, data_start, bss_start, entry_address) | |
31 * char *new_name, *a_name; | |
32 * unsigned data_start, bss_start, entry_address; | |
33 * | |
34 * Takes a snapshot of the program and makes an a.out format file in the | |
35 * file named by the string argument new_name. | |
36 * If a_name is non-NULL, the symbol table will be taken from the given file. | |
37 * On some machines, an existing a_name file is required. | |
38 * | |
39 * The boundaries within the a.out file may be adjusted with the data_start | |
40 * and bss_start arguments. Either or both may be given as 0 for defaults. | |
41 * | |
42 * Data_start gives the boundary between the text segment and the data | |
43 * segment of the program. The text segment can contain shared, read-only | |
44 * program code and literal data, while the data segment is always unshared | |
45 * and unprotected. Data_start gives the lowest unprotected address. | |
46 * The value you specify may be rounded down to a suitable boundary | |
47 * as required by the machine you are using. | |
48 * | |
49 * Specifying zero for data_start means the boundary between text and data | |
50 * should not be the same as when the program was loaded. | |
51 * | |
52 * Bss_start indicates how much of the data segment is to be saved in the | |
53 * a.out file and restored when the program is executed. It gives the lowest | |
54 * unsaved address, and is rounded up to a page boundary. The default when 0 | |
55 * is given assumes that the entire data segment is to be stored, including | |
56 * the previous data and bss as well as any additional storage allocated with | |
57 * break (2). | |
58 * | |
59 * The new file is set up to start at entry_address. | |
60 * | |
61 * If you make improvements I'd like to get them too. | |
62 * harpo!utah-cs!thomas, thomas@Utah-20 | |
63 * | |
64 */ | |
65 | |
66 /* Modified to support SysVr3 shared libraries by James Van Artsdalen | |
67 * of Dell Computer Corporation. james@bigtex.cactus.org. | |
68 */ | |
69 | |
70 #ifndef emacs | |
71 #define PERROR(arg) perror (arg); return -1 | |
72 #else | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4319
diff
changeset
|
73 #include <config.h> |
172 | 74 #define PERROR(file) report_error (file, new) |
75 #endif | |
76 | |
77 #ifndef CANNOT_DUMP /* all rest of file! */ | |
78 | |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
79 #ifdef HAVE_COFF_H |
29650
2411aacca614
(toplevel) [COFF]: Include coff.h.
Gerd Moellmann <gerd@gnu.org>
parents:
22647
diff
changeset
|
80 #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
|
81 #ifdef MSDOS |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
82 #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
|
83 #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
|
84 static int save_djgpp_startup_flags; |
5500
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
85 #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
|
86 #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
|
87 #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
|
88 #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
|
89 #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
|
90 #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
|
91 struct aouthdr |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
92 { |
7626
7ae305576201
[MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
93 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
|
94 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
|
95 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
|
96 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
|
97 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
|
98 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
|
99 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
|
100 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
|
101 }; |
29668
1e6eeead2f1d
(toplevel): Fix last change, so as not to deprive MSDOS
Eli Zaretskii <eliz@gnu.org>
parents:
29650
diff
changeset
|
102 #endif /* not MSDOS */ |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
103 #else /* not HAVE_COFF_H */ |
172 | 104 #include <a.out.h> |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
105 #endif /* not HAVE_COFF_H */ |
485 | 106 |
9699 | 107 /* Define getpagesize if the system does not. |
108 Note that this may depend on symbols defined in a.out.h. */ | |
172 | 109 #include "getpagesize.h" |
110 | |
111 #ifndef makedev /* Try to detect types.h already loaded */ | |
112 #include <sys/types.h> | |
485 | 113 #endif /* makedev */ |
172 | 114 #include <stdio.h> |
115 #include <sys/stat.h> | |
116 #include <errno.h> | |
117 | |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
118 #include <sys/file.h> |
7921
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
119 |
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
120 #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
|
121 #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
|
122 #endif |
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
123 #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
|
124 #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
|
125 #endif |
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
126 |
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
127 |
172 | 128 extern char *start_of_text (); /* Start of text */ |
129 extern char *start_of_data (); /* Start of initialized data */ | |
130 | |
131 static long block_copy_start; /* Old executable start point */ | |
132 static struct filehdr f_hdr; /* File header */ | |
133 static struct aouthdr f_ohdr; /* Optional file header (a.out) */ | |
134 long bias; /* Bias to add for growth */ | |
135 long lnnoptr; /* Pointer to line-number info within file */ | |
136 #define SYMS_START block_copy_start | |
137 | |
138 static long text_scnptr; | |
139 static long data_scnptr; | |
140 | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
141 static long coff_offset; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
142 |
172 | 143 static int pagemask; |
144 | |
145 /* Correct an int which is the bit pattern of a pointer to a byte | |
146 into an int which is the number of a byte. | |
147 This is a no-op on ordinary machines, but not on all. */ | |
148 | |
149 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0) | |
150 | |
151 #ifdef emacs | |
152 | |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105426
diff
changeset
|
153 #include <setjmp.h> |
7921
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
154 #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
|
155 |
172 | 156 static |
157 report_error (file, fd) | |
158 char *file; | |
159 int fd; | |
160 { | |
161 if (fd) | |
162 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
|
163 report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil)); |
172 | 164 } |
165 #endif /* emacs */ | |
166 | |
167 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1 | |
168 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1 | |
169 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1 | |
170 | |
171 static | |
172 report_error_1 (fd, msg, a1, a2) | |
173 int fd; | |
174 char *msg; | |
175 int a1, a2; | |
176 { | |
177 close (fd); | |
178 #ifdef emacs | |
179 error (msg, a1, a2); | |
180 #else | |
181 fprintf (stderr, msg, a1, a2); | |
182 fprintf (stderr, "\n"); | |
183 #endif | |
184 } | |
185 | |
186 static int make_hdr (); | |
187 static int copy_text_and_data (); | |
188 static int copy_sym (); | |
189 static void mark_x (); | |
190 | |
191 /* **************************************************************** | |
192 * make_hdr | |
193 * | |
194 * Make the header in the new a.out from the header in core. | |
195 * Modify the text and data sizes. | |
196 */ | |
197 static int | |
198 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) | |
199 int new, a_out; | |
200 unsigned data_start, bss_start, entry_address; | |
201 char *a_name; | |
202 char *new_name; | |
203 { | |
204 int tem; | |
205 auto struct scnhdr f_thdr; /* Text section header */ | |
206 auto struct scnhdr f_dhdr; /* Data section header */ | |
207 auto struct scnhdr f_bhdr; /* Bss section header */ | |
208 auto struct scnhdr scntemp; /* Temporary section header */ | |
209 register int scns; | |
210 unsigned int bss_end; | |
211 | |
212 pagemask = getpagesize () - 1; | |
213 | |
214 /* Adjust text/data boundary. */ | |
215 data_start = (int) start_of_data (); | |
216 data_start = ADDR_CORRECT (data_start); | |
217 data_start = data_start & ~pagemask; /* (Down) to page boundary. */ | |
218 | |
219 bss_end = ADDR_CORRECT (sbrk (0)) + pagemask; | |
220 bss_end &= ~ pagemask; | |
221 | |
222 /* Adjust data/bss boundary. */ | |
223 if (bss_start != 0) | |
224 { | |
225 bss_start = (ADDR_CORRECT (bss_start) + pagemask); | |
226 /* (Up) to page bdry. */ | |
227 bss_start &= ~ pagemask; | |
228 if (bss_start > bss_end) | |
229 { | |
230 ERROR1 ("unexec: Specified bss_start (%u) is past end of program", | |
231 bss_start); | |
232 } | |
233 } | |
234 else | |
235 bss_start = bss_end; | |
236 | |
237 if (data_start > bss_start) /* Can't have negative data size. */ | |
238 { | |
239 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)", | |
240 data_start, bss_start); | |
241 } | |
242 | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
243 coff_offset = 0L; /* stays zero, except in DJGPP */ |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
244 |
172 | 245 /* Salvage as much info from the existing file as possible */ |
246 if (a_out >= 0) | |
247 { | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
248 #ifdef MSDOS |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
249 /* 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
|
250 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
|
251 unsigned short mz_header[3]; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
252 |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
253 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
|
254 { |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
255 PERROR (a_name); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
256 } |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
257 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
|
258 { |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
259 coff_offset = (long)mz_header[2] * 512L; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
260 if (mz_header[1]) |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
261 coff_offset += (long)mz_header[1] - 512L; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
262 lseek (a_out, coff_offset, 0); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
263 } |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
264 else |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
265 lseek (a_out, 0L, 0); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
266 #endif /* MSDOS */ |
172 | 267 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) |
268 { | |
269 PERROR (a_name); | |
270 } | |
271 block_copy_start += sizeof (f_hdr); | |
272 if (f_hdr.f_opthdr > 0) | |
273 { | |
274 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
275 { | |
276 PERROR (a_name); | |
277 } | |
278 block_copy_start += sizeof (f_ohdr); | |
279 } | |
280 /* Loop through section headers, copying them in */ | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
281 lseek (a_out, coff_offset + sizeof (f_hdr) + f_hdr.f_opthdr, 0); |
172 | 282 for (scns = f_hdr.f_nscns; scns > 0; scns--) { |
283 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp)) | |
284 { | |
285 PERROR (a_name); | |
286 } | |
287 if (scntemp.s_scnptr > 0L) | |
288 { | |
289 if (block_copy_start < scntemp.s_scnptr + scntemp.s_size) | |
290 block_copy_start = scntemp.s_scnptr + scntemp.s_size; | |
291 } | |
292 if (strcmp (scntemp.s_name, ".text") == 0) | |
293 { | |
294 f_thdr = scntemp; | |
295 } | |
296 else if (strcmp (scntemp.s_name, ".data") == 0) | |
297 { | |
298 f_dhdr = scntemp; | |
299 } | |
300 else if (strcmp (scntemp.s_name, ".bss") == 0) | |
301 { | |
302 f_bhdr = scntemp; | |
303 } | |
304 } | |
305 } | |
306 else | |
307 { | |
308 ERROR0 ("can't build a COFF file from scratch yet"); | |
309 } | |
310 | |
311 /* Now we alter the contents of all the f_*hdr variables | |
312 to correspond to what we want to dump. */ | |
313 | |
314 f_hdr.f_flags |= (F_RELFLG | F_EXEC); | |
315 f_ohdr.text_start = (long) start_of_text (); | |
316 f_ohdr.tsize = data_start - f_ohdr.text_start; | |
317 f_ohdr.data_start = data_start; | |
318 f_ohdr.dsize = bss_start - f_ohdr.data_start; | |
319 f_ohdr.bsize = bss_end - bss_start; | |
320 f_thdr.s_size = f_ohdr.tsize; | |
321 f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr); | |
322 f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr)); | |
323 lnnoptr = f_thdr.s_lnnoptr; | |
324 text_scnptr = f_thdr.s_scnptr; | |
325 f_dhdr.s_paddr = f_ohdr.data_start; | |
326 f_dhdr.s_vaddr = f_ohdr.data_start; | |
327 f_dhdr.s_size = f_ohdr.dsize; | |
328 f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size; | |
329 data_scnptr = f_dhdr.s_scnptr; | |
330 f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize; | |
331 f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize; | |
332 f_bhdr.s_size = f_ohdr.bsize; | |
333 f_bhdr.s_scnptr = 0L; | |
334 bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start; | |
335 | |
336 if (f_hdr.f_symptr > 0L) | |
337 { | |
338 f_hdr.f_symptr += bias; | |
339 } | |
340 | |
341 if (f_thdr.s_lnnoptr > 0L) | |
342 { | |
343 f_thdr.s_lnnoptr += bias; | |
344 } | |
345 | |
346 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) | |
347 { | |
348 PERROR (new_name); | |
349 } | |
350 | |
351 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
352 { | |
353 PERROR (new_name); | |
354 } | |
355 | |
356 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr)) | |
357 { | |
358 PERROR (new_name); | |
359 } | |
360 | |
361 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr)) | |
362 { | |
363 PERROR (new_name); | |
364 } | |
365 | |
366 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr)) | |
367 { | |
368 PERROR (new_name); | |
369 } | |
370 | |
371 return (0); | |
372 | |
373 } | |
374 | |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
375 write_segment (new, ptr, end) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
376 int new; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
377 register char *ptr, *end; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
378 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
379 register int i, nwrite, ret; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
380 char buf[80]; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
381 /* 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
|
382 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
|
383 int writesize = 1 << 13; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
384 int pagesize = getpagesize (); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
385 char zeros[1 << 13]; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
386 |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
107737
diff
changeset
|
387 memset (zeros, 0, sizeof (zeros)); |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
388 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
389 for (i = 0; ptr < end;) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
390 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
391 /* 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
|
392 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
|
393 /* But not beyond specified end. */ |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
394 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
|
395 ret = write (new, ptr, nwrite); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
396 /* 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
|
397 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
|
398 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
|
399 So write zeros for it. */ |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
400 if (ret == -1 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
401 #ifdef EFAULT |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
402 && errno == EFAULT |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
403 #endif |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
404 ) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
405 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
406 /* Write only a page of zeros at once, |
105426
d0a6d64c3cfc
Fix typos in comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
407 so that we don't overshoot the start |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
408 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
|
409 if (nwrite > pagesize) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
410 nwrite = pagesize; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
411 write (new, zeros, nwrite); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
412 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
413 #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
|
414 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
|
415 else if (nwrite != ret) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
416 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
417 sprintf (buf, |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
418 "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
|
419 ptr, new, nwrite, ret, errno); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
420 PERROR (buf); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
421 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
422 #endif |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
423 i += nwrite; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
424 ptr += nwrite; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
425 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
426 } |
172 | 427 /* **************************************************************** |
428 * copy_text_and_data | |
429 * | |
430 * Copy the text and data segments from memory to the new a.out | |
431 */ | |
432 static int | |
433 copy_text_and_data (new, a_out) | |
434 int new, a_out; | |
435 { | |
436 register char *end; | |
437 register char *ptr; | |
438 | |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
439 #ifdef MSDOS |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
440 /* 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
|
441 where our exception hooks are registered. */ |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
442 __djgpp_exception_toggle (); |
15732
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
443 |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
444 /* 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
|
445 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
|
446 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
|
447 _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
|
448 #endif |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
449 |
172 | 450 lseek (new, (long) text_scnptr, 0); |
451 ptr = (char *) f_ohdr.text_start; | |
452 end = ptr + f_ohdr.tsize; | |
453 write_segment (new, ptr, end); | |
454 | |
455 lseek (new, (long) data_scnptr, 0); | |
456 ptr = (char *) f_ohdr.data_start; | |
457 end = ptr + f_ohdr.dsize; | |
458 write_segment (new, ptr, end); | |
459 | |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
460 #ifdef MSDOS |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
461 /* Restore our exception hooks. */ |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
462 __djgpp_exception_toggle (); |
15732
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
463 |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
464 /* Restore the startup flags. */ |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
465 _crt0_startup_flags = save_djgpp_startup_flags; |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
466 #endif |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
467 |
172 | 468 |
469 return 0; | |
470 } | |
471 | |
472 /* **************************************************************** | |
473 * copy_sym | |
474 * | |
475 * Copy the relocation information and symbol table from the a.out to the new | |
476 */ | |
477 static int | |
478 copy_sym (new, a_out, a_name, new_name) | |
479 int new, a_out; | |
480 char *a_name, *new_name; | |
481 { | |
482 char page[1024]; | |
483 int n; | |
484 | |
485 if (a_out < 0) | |
486 return 0; | |
487 | |
488 if (SYMS_START == 0L) | |
489 return 0; | |
490 | |
491 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
|
492 lseek (a_out, coff_offset + lnnoptr, 0); /* start copying from there */ |
172 | 493 else |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
494 lseek (a_out, coff_offset + SYMS_START, 0); /* Position a.out to symtab. */ |
172 | 495 |
496 while ((n = read (a_out, page, sizeof page)) > 0) | |
497 { | |
498 if (write (new, page, n) != n) | |
499 { | |
500 PERROR (new_name); | |
501 } | |
502 } | |
503 if (n < 0) | |
504 { | |
505 PERROR (a_name); | |
506 } | |
507 return 0; | |
508 } | |
509 | |
510 /* **************************************************************** | |
511 * mark_x | |
512 * | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
513 * After successfully building the new a.out, mark it executable |
172 | 514 */ |
515 static void | |
516 mark_x (name) | |
517 char *name; | |
518 { | |
519 struct stat sbuf; | |
520 int um; | |
521 int new = 0; /* for PERROR */ | |
522 | |
523 um = umask (777); | |
524 umask (um); | |
525 if (stat (name, &sbuf) == -1) | |
526 { | |
527 PERROR (name); | |
528 } | |
529 sbuf.st_mode |= 0111 & ~um; | |
530 if (chmod (name, sbuf.st_mode) == -1) | |
531 PERROR (name); | |
532 } | |
533 | |
534 | |
535 /* | |
536 * If the COFF file contains a symbol table and a line number section, | |
537 * then any auxiliary entries that have values for x_lnnoptr must | |
538 * be adjusted by the amount that the line number section has moved | |
539 * in the file (bias computed in make_hdr). The #@$%&* designers of | |
540 * the auxiliary entry structures used the absolute file offsets for | |
541 * the line number entry rather than an offset from the start of the | |
542 * line number section! | |
543 * | |
544 * When I figure out how to scan through the symbol table and pick out | |
545 * the auxiliary entries that need adjustment, this routine will | |
546 * be fixed. As it is now, all such entries are wrong and sdb | |
547 * will complain. Fred Fish, UniSoft Systems Inc. | |
548 */ | |
549 | |
550 /* This function is probably very slow. Instead of reopening the new | |
551 file for input and output it should copy from the old to the new | |
552 using the two descriptors already open (WRITEDESC and READDESC). | |
553 Instead of reading one small structure at a time it should use | |
554 a reasonable size buffer. But I don't have time to work on such | |
555 things, so I am installing it as submitted to me. -- RMS. */ | |
556 | |
557 adjust_lnnoptrs (writedesc, readdesc, new_name) | |
558 int writedesc; | |
559 int readdesc; | |
560 char *new_name; | |
561 { | |
562 register int nsyms; | |
563 register int new; | |
564 struct syment symentry; | |
565 union auxent auxentry; | |
566 | |
567 if (!lnnoptr || !f_hdr.f_symptr) | |
568 return 0; | |
569 | |
5500
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
570 #ifdef MSDOS |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
571 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
|
572 #else |
7921
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
573 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
|
574 #endif |
172 | 575 { |
576 PERROR (new_name); | |
577 return -1; | |
578 } | |
579 | |
580 lseek (new, f_hdr.f_symptr, 0); | |
581 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++) | |
582 { | |
583 read (new, &symentry, SYMESZ); | |
584 if (symentry.n_numaux) | |
585 { | |
586 read (new, &auxentry, AUXESZ); | |
587 nsyms++; | |
1937
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
588 if (ISFCN (symentry.n_type) || symentry.n_type == 0x2400) |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
589 { |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
590 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
|
591 lseek (new, -AUXESZ, 1); |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
592 write (new, &auxentry, AUXESZ); |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
593 } |
172 | 594 } |
595 } | |
5500
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
596 #ifndef MSDOS |
172 | 597 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
|
598 #endif |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
599 return 0; |
172 | 600 } |
601 | |
109168
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
602 extern unsigned start __asm__ ("start"); |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
603 |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
604 /* |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
605 * Return the address of the start of the text segment prior to |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
606 * doing an unexec. After unexec the return value is undefined. |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
607 * See crt0.c for further explanation and _start. |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
608 * |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
609 */ |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
610 |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
611 char * |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
612 start_of_text (void) |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
613 { |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
614 return ((char *) &start); |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
615 } |
fb5779a6cf4b
Simplify start_of_data, start_of_text and related code.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109165
diff
changeset
|
616 |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
617 /* **************************************************************** |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
618 * unexec |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
619 * |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
620 * driving logic. |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
621 */ |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
622 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
|
623 char *new_name, *a_name; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
624 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
|
625 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
626 int new, a_out = -1; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
627 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
628 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
|
629 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
630 PERROR (a_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
631 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
632 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
|
633 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
634 PERROR (new_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
635 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
636 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
637 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
|
638 || 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
|
639 || 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
|
640 || 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
|
641 ) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
642 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
643 close (new); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
644 /* 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
|
645 return -1; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
646 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
647 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
648 close (new); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
649 if (a_out >= 0) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
650 close (a_out); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
651 mark_x (new_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
652 return 0; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
653 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
654 |
172 | 655 #endif /* not CANNOT_DUMP */ |
52401 | 656 |
657 /* arch-tag: 62409b69-e27a-4a7c-9413-0210d6b54e7f | |
658 (do not change this comment) */ |