Mercurial > emacs
annotate src/unexcoff.c @ 112182:e79369283aa1
* dbusbind.c (QCdbus_request_name_allow_replacement): New symbol;
used by Fdbus_register_service.
(QCdbus_request_name_replace_existing): Likewise.
(QCdbus_request_name_do_not_queue): Likewise.
(QCdbus_request_name_reply_primary_owner): Likewise.
(QCdbus_request_name_reply_in_queue): Likewise.
(QCdbus_request_name_reply_exists): Likewise.
(QCdbus_request_name_reply_already_owner): Likewise.
(Fdbus_register_service): New function.
(Fdbus_register_method): Use Fdbus_register_service to do the name
registration.
(syms_of_dbusbind): Add symbols dbus-register-service,
:allow-replacement, :replace-existing, :do-not-queue,
:primary-owner, :existing, :in-queue and :already-owner.
author | Michael Albinus <michael.albinus@gmx.de> |
---|---|
date | Mon, 10 Jan 2011 10:56:17 +0100 |
parents | 98fd8b0e411d |
children | 417b1e4d63cd |
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 /* | |
109628
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
21 * unexcoff.c - Convert a running program into an a.out or COFF file. |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
22 * |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
23 * ================================================================== |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
24 * Note: This file is currently used only by the MSDOS (a.k.a. DJGPP) |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
25 * build of Emacs. If you are not interested in the MSDOS build, you |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
26 * are looking at the wrong version of unexec! |
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
27 * ================================================================== |
172 | 28 * |
29 * Author: Spencer W. Thomas | |
30 * Computer Science Dept. | |
31 * University of Utah | |
32 * Date: Tue Mar 2 1982 | |
109628
8e2c7c31861b
Rename src/unexec.c => src/unexcoff.c.
Eli Zaretskii <eliz@gnu.org>
parents:
109570
diff
changeset
|
33 * Originally under the name unexec.c. |
172 | 34 * Modified heavily since then. |
35 * | |
36 * Synopsis: | |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
37 * unexec (const char *new_name, const char *old_name); |
172 | 38 * |
39 * Takes a snapshot of the program and makes an a.out format file in the | |
40 * file named by the string argument new_name. | |
41 * If a_name is non-NULL, the symbol table will be taken from the given file. | |
42 * On some machines, an existing a_name file is required. | |
43 * | |
44 * If you make improvements I'd like to get them too. | |
45 * harpo!utah-cs!thomas, thomas@Utah-20 | |
46 * | |
47 */ | |
48 | |
49 /* Modified to support SysVr3 shared libraries by James Van Artsdalen | |
50 * of Dell Computer Corporation. james@bigtex.cactus.org. | |
51 */ | |
52 | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
4319
diff
changeset
|
53 #include <config.h> |
172 | 54 #define PERROR(file) report_error (file, new) |
55 | |
56 #ifndef CANNOT_DUMP /* all rest of file! */ | |
57 | |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
58 #ifdef HAVE_COFF_H |
29650
2411aacca614
(toplevel) [COFF]: Include coff.h.
Gerd Moellmann <gerd@gnu.org>
parents:
22647
diff
changeset
|
59 #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
|
60 #ifdef MSDOS |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
61 #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
|
62 #include <crt0.h> /* for _crt0_startup_flags and its bits */ |
109910 | 63 #include <sys/exceptn.h> |
15732
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
64 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
|
65 #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
|
66 #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
|
67 #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
|
68 #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
|
69 #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
|
70 #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
|
71 struct aouthdr |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
72 { |
7626
7ae305576201
[MSDOS]: Don't include files from the dos extender
Richard M. Stallman <rms@gnu.org>
parents:
7307
diff
changeset
|
73 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
|
74 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
|
75 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
|
76 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
|
77 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
|
78 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
|
79 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
|
80 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
|
81 }; |
29668
1e6eeead2f1d
(toplevel): Fix last change, so as not to deprive MSDOS
Eli Zaretskii <eliz@gnu.org>
parents:
29650
diff
changeset
|
82 #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
|
83 #else /* not HAVE_COFF_H */ |
172 | 84 #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
|
85 #endif /* not HAVE_COFF_H */ |
485 | 86 |
9699 | 87 /* Define getpagesize if the system does not. |
88 Note that this may depend on symbols defined in a.out.h. */ | |
172 | 89 #include "getpagesize.h" |
90 | |
91 #ifndef makedev /* Try to detect types.h already loaded */ | |
92 #include <sys/types.h> | |
485 | 93 #endif /* makedev */ |
172 | 94 #include <stdio.h> |
95 #include <sys/stat.h> | |
96 #include <errno.h> | |
97 | |
96926
baf6162e41d4
Remove code depending on !COFF and USG, the file is
Dan Nicolaescu <dann@ics.uci.edu>
parents:
96732
diff
changeset
|
98 #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
|
99 |
109910 | 100 extern char *start_of_data (void); /* Start of initialized data */ |
172 | 101 |
102 static long block_copy_start; /* Old executable start point */ | |
103 static struct filehdr f_hdr; /* File header */ | |
104 static struct aouthdr f_ohdr; /* Optional file header (a.out) */ | |
105 long bias; /* Bias to add for growth */ | |
106 long lnnoptr; /* Pointer to line-number info within file */ | |
107 #define SYMS_START block_copy_start | |
108 | |
109 static long text_scnptr; | |
110 static long data_scnptr; | |
111 | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
112 static long coff_offset; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
113 |
172 | 114 static int pagemask; |
115 | |
116 /* Correct an int which is the bit pattern of a pointer to a byte | |
117 into an int which is the number of a byte. | |
118 This is a no-op on ordinary machines, but not on all. */ | |
119 | |
120 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0) | |
121 | |
105669
68dd71358159
* alloc.c: Do not define struct catchtag.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
105426
diff
changeset
|
122 #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
|
123 #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
|
124 |
109910 | 125 static void |
126 report_error (const char *file, int fd) | |
172 | 127 { |
128 if (fd) | |
129 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
|
130 report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil)); |
172 | 131 } |
132 | |
133 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1 | |
134 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1 | |
135 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1 | |
136 | |
109910 | 137 static void |
138 report_error_1 (int fd, const char *msg, int a1, int a2) | |
172 | 139 { |
140 close (fd); | |
141 error (msg, a1, a2); | |
142 } | |
143 | |
111011
98fd8b0e411d
Fix the MSDOS build broken by latest revisions.
Eli Zaretskii <eliz@gnu.org>
parents:
110758
diff
changeset
|
144 static int make_hdr (int, int, const char *, const char *); |
109910 | 145 static int copy_text_and_data (int, int); |
146 static int copy_sym (int, int, const char *, const char *); | |
147 static void mark_x (const char *); | |
172 | 148 |
149 /* **************************************************************** | |
150 * make_hdr | |
151 * | |
152 * Make the header in the new a.out from the header in core. | |
153 * Modify the text and data sizes. | |
154 */ | |
155 static int | |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
156 make_hdr (int new, int a_out, |
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
157 const char *a_name, const char *new_name) |
172 | 158 { |
159 auto struct scnhdr f_thdr; /* Text section header */ | |
160 auto struct scnhdr f_dhdr; /* Data section header */ | |
161 auto struct scnhdr f_bhdr; /* Bss section header */ | |
162 auto struct scnhdr scntemp; /* Temporary section header */ | |
163 register int scns; | |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
164 unsigned int bss_start; |
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
165 unsigned int data_start; |
172 | 166 |
167 pagemask = getpagesize () - 1; | |
168 | |
169 /* Adjust text/data boundary. */ | |
170 data_start = (int) start_of_data (); | |
171 data_start = ADDR_CORRECT (data_start); | |
172 data_start = data_start & ~pagemask; /* (Down) to page boundary. */ | |
173 | |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
174 bss_start = ADDR_CORRECT (sbrk (0)) + pagemask; |
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
175 bss_start &= ~ pagemask; |
172 | 176 |
177 if (data_start > bss_start) /* Can't have negative data size. */ | |
178 { | |
179 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)", | |
180 data_start, bss_start); | |
181 } | |
182 | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
183 coff_offset = 0L; /* stays zero, except in DJGPP */ |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
184 |
172 | 185 /* Salvage as much info from the existing file as possible */ |
186 if (a_out >= 0) | |
187 { | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
188 #ifdef MSDOS |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
189 /* 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
|
190 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
|
191 unsigned short mz_header[3]; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
192 |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
193 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
|
194 { |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
195 PERROR (a_name); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
196 } |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
197 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
|
198 { |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
199 coff_offset = (long)mz_header[2] * 512L; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
200 if (mz_header[1]) |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
201 coff_offset += (long)mz_header[1] - 512L; |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
202 lseek (a_out, coff_offset, 0); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
203 } |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
204 else |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
205 lseek (a_out, 0L, 0); |
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
206 #endif /* MSDOS */ |
172 | 207 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) |
208 { | |
209 PERROR (a_name); | |
210 } | |
211 block_copy_start += sizeof (f_hdr); | |
212 if (f_hdr.f_opthdr > 0) | |
213 { | |
214 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
215 { | |
216 PERROR (a_name); | |
217 } | |
218 block_copy_start += sizeof (f_ohdr); | |
219 } | |
220 /* Loop through section headers, copying them in */ | |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
221 lseek (a_out, coff_offset + sizeof (f_hdr) + f_hdr.f_opthdr, 0); |
172 | 222 for (scns = f_hdr.f_nscns; scns > 0; scns--) { |
223 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp)) | |
224 { | |
225 PERROR (a_name); | |
226 } | |
227 if (scntemp.s_scnptr > 0L) | |
228 { | |
229 if (block_copy_start < scntemp.s_scnptr + scntemp.s_size) | |
230 block_copy_start = scntemp.s_scnptr + scntemp.s_size; | |
231 } | |
232 if (strcmp (scntemp.s_name, ".text") == 0) | |
233 { | |
234 f_thdr = scntemp; | |
235 } | |
236 else if (strcmp (scntemp.s_name, ".data") == 0) | |
237 { | |
238 f_dhdr = scntemp; | |
239 } | |
240 else if (strcmp (scntemp.s_name, ".bss") == 0) | |
241 { | |
242 f_bhdr = scntemp; | |
243 } | |
244 } | |
245 } | |
246 else | |
247 { | |
248 ERROR0 ("can't build a COFF file from scratch yet"); | |
249 } | |
250 | |
251 /* Now we alter the contents of all the f_*hdr variables | |
252 to correspond to what we want to dump. */ | |
253 | |
254 f_hdr.f_flags |= (F_RELFLG | F_EXEC); | |
255 f_ohdr.dsize = bss_start - f_ohdr.data_start; | |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
256 f_ohdr.bsize = 0; |
172 | 257 f_thdr.s_size = f_ohdr.tsize; |
258 f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr); | |
259 f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr)); | |
260 lnnoptr = f_thdr.s_lnnoptr; | |
261 text_scnptr = f_thdr.s_scnptr; | |
262 f_dhdr.s_paddr = f_ohdr.data_start; | |
263 f_dhdr.s_vaddr = f_ohdr.data_start; | |
264 f_dhdr.s_size = f_ohdr.dsize; | |
265 f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size; | |
266 data_scnptr = f_dhdr.s_scnptr; | |
267 f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize; | |
268 f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize; | |
269 f_bhdr.s_size = f_ohdr.bsize; | |
270 f_bhdr.s_scnptr = 0L; | |
271 bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start; | |
272 | |
273 if (f_hdr.f_symptr > 0L) | |
274 { | |
275 f_hdr.f_symptr += bias; | |
276 } | |
277 | |
278 if (f_thdr.s_lnnoptr > 0L) | |
279 { | |
280 f_thdr.s_lnnoptr += bias; | |
281 } | |
282 | |
283 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) | |
284 { | |
285 PERROR (new_name); | |
286 } | |
287 | |
288 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
289 { | |
290 PERROR (new_name); | |
291 } | |
292 | |
293 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr)) | |
294 { | |
295 PERROR (new_name); | |
296 } | |
297 | |
298 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr)) | |
299 { | |
300 PERROR (new_name); | |
301 } | |
302 | |
303 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr)) | |
304 { | |
305 PERROR (new_name); | |
306 } | |
307 | |
308 return (0); | |
309 | |
310 } | |
311 | |
109910 | 312 void |
313 write_segment (int new, const char *ptr, const char *end) | |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
314 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
315 register int i, nwrite, ret; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
316 /* 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
|
317 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
|
318 int writesize = 1 << 13; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
319 int pagesize = getpagesize (); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
320 char zeros[1 << 13]; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
321 |
109165
750db9f3e6d8
Replace bcopy, bzero, bcmp by memcpy, memmove, memset, memcmp
Andreas Schwab <schwab@linux-m68k.org>
parents:
107737
diff
changeset
|
322 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
|
323 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
324 for (i = 0; ptr < end;) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
325 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
326 /* 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
|
327 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
|
328 /* But not beyond specified end. */ |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
329 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
|
330 ret = write (new, ptr, nwrite); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
331 /* 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
|
332 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
|
333 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
|
334 So write zeros for it. */ |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
335 if (ret == -1 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
336 #ifdef EFAULT |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
337 && errno == EFAULT |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
338 #endif |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
339 ) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
340 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
341 /* Write only a page of zeros at once, |
105426
d0a6d64c3cfc
Fix typos in comments.
Juanma Barranquero <lekktu@gmail.com>
parents:
100951
diff
changeset
|
342 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
|
343 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
|
344 if (nwrite > pagesize) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
345 nwrite = pagesize; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
346 write (new, zeros, nwrite); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
347 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
348 i += nwrite; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
349 ptr += nwrite; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
350 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
351 } |
172 | 352 /* **************************************************************** |
353 * copy_text_and_data | |
354 * | |
355 * Copy the text and data segments from memory to the new a.out | |
356 */ | |
357 static int | |
109910 | 358 copy_text_and_data (int new, int a_out) |
172 | 359 { |
360 register char *end; | |
361 register char *ptr; | |
362 | |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
363 #ifdef MSDOS |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
364 /* 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
|
365 where our exception hooks are registered. */ |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
366 __djgpp_exception_toggle (); |
15732
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
367 |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
368 /* 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
|
369 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
|
370 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
|
371 _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
|
372 #endif |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
373 |
172 | 374 lseek (new, (long) text_scnptr, 0); |
375 ptr = (char *) f_ohdr.text_start; | |
376 end = ptr + f_ohdr.tsize; | |
377 write_segment (new, ptr, end); | |
378 | |
379 lseek (new, (long) data_scnptr, 0); | |
380 ptr = (char *) f_ohdr.data_start; | |
381 end = ptr + f_ohdr.dsize; | |
382 write_segment (new, ptr, end); | |
383 | |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
384 #ifdef MSDOS |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
385 /* Restore our exception hooks. */ |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
386 __djgpp_exception_toggle (); |
15732
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
387 |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
388 /* Restore the startup flags. */ |
c24b00e705ba
(copy_text_and_data) [DJGPP >= 2]: Switch off two bits
Karl Heuer <kwzh@gnu.org>
parents:
14975
diff
changeset
|
389 _crt0_startup_flags = save_djgpp_startup_flags; |
14975
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
390 #endif |
7b91ceb19771
[DJGPP v2]: Include fcntl.h.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
391 |
172 | 392 |
393 return 0; | |
394 } | |
395 | |
396 /* **************************************************************** | |
397 * copy_sym | |
398 * | |
399 * Copy the relocation information and symbol table from the a.out to the new | |
400 */ | |
401 static int | |
109910 | 402 copy_sym (int new, int a_out, const char *a_name, const char *new_name) |
172 | 403 { |
404 char page[1024]; | |
405 int n; | |
406 | |
407 if (a_out < 0) | |
408 return 0; | |
409 | |
410 if (SYMS_START == 0L) | |
411 return 0; | |
412 | |
413 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
|
414 lseek (a_out, coff_offset + lnnoptr, 0); /* start copying from there */ |
172 | 415 else |
22647
1f418e353dd7
[COFF]: New variable coff_offset.
Richard M. Stallman <rms@gnu.org>
parents:
15732
diff
changeset
|
416 lseek (a_out, coff_offset + SYMS_START, 0); /* Position a.out to symtab. */ |
172 | 417 |
418 while ((n = read (a_out, page, sizeof page)) > 0) | |
419 { | |
420 if (write (new, page, n) != n) | |
421 { | |
422 PERROR (new_name); | |
423 } | |
424 } | |
425 if (n < 0) | |
426 { | |
427 PERROR (a_name); | |
428 } | |
429 return 0; | |
430 } | |
431 | |
432 /* **************************************************************** | |
433 * mark_x | |
434 * | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
2917
diff
changeset
|
435 * After successfully building the new a.out, mark it executable |
172 | 436 */ |
437 static void | |
109910 | 438 mark_x (const char *name) |
172 | 439 { |
440 struct stat sbuf; | |
441 int um; | |
442 int new = 0; /* for PERROR */ | |
443 | |
444 um = umask (777); | |
445 umask (um); | |
446 if (stat (name, &sbuf) == -1) | |
447 { | |
448 PERROR (name); | |
449 } | |
450 sbuf.st_mode |= 0111 & ~um; | |
451 if (chmod (name, sbuf.st_mode) == -1) | |
452 PERROR (name); | |
453 } | |
454 | |
455 | |
456 /* | |
457 * If the COFF file contains a symbol table and a line number section, | |
458 * then any auxiliary entries that have values for x_lnnoptr must | |
459 * be adjusted by the amount that the line number section has moved | |
460 * in the file (bias computed in make_hdr). The #@$%&* designers of | |
461 * the auxiliary entry structures used the absolute file offsets for | |
462 * the line number entry rather than an offset from the start of the | |
463 * line number section! | |
464 * | |
465 * When I figure out how to scan through the symbol table and pick out | |
466 * the auxiliary entries that need adjustment, this routine will | |
467 * be fixed. As it is now, all such entries are wrong and sdb | |
468 * will complain. Fred Fish, UniSoft Systems Inc. | |
469 */ | |
470 | |
471 /* This function is probably very slow. Instead of reopening the new | |
472 file for input and output it should copy from the old to the new | |
473 using the two descriptors already open (WRITEDESC and READDESC). | |
474 Instead of reading one small structure at a time it should use | |
475 a reasonable size buffer. But I don't have time to work on such | |
476 things, so I am installing it as submitted to me. -- RMS. */ | |
477 | |
109910 | 478 int |
479 adjust_lnnoptrs (int writedesc, int readdesc, const char *new_name) | |
172 | 480 { |
481 register int nsyms; | |
482 register int new; | |
483 struct syment symentry; | |
484 union auxent auxentry; | |
485 | |
486 if (!lnnoptr || !f_hdr.f_symptr) | |
487 return 0; | |
488 | |
5500
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
489 #ifdef MSDOS |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
490 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
|
491 #else |
7921
b3a5b629fe26
Include <sys/file.h> and [USG5] <fcntl.h> to define O_* macros.
Roland McGrath <roland@gnu.org>
parents:
7626
diff
changeset
|
492 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
|
493 #endif |
172 | 494 { |
495 PERROR (new_name); | |
496 return -1; | |
497 } | |
498 | |
499 lseek (new, f_hdr.f_symptr, 0); | |
500 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++) | |
501 { | |
502 read (new, &symentry, SYMESZ); | |
503 if (symentry.n_numaux) | |
504 { | |
505 read (new, &auxentry, AUXESZ); | |
506 nsyms++; | |
1937
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
507 if (ISFCN (symentry.n_type) || symentry.n_type == 0x2400) |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
508 { |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
509 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
|
510 lseek (new, -AUXESZ, 1); |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
511 write (new, &auxentry, AUXESZ); |
087889e85644
(Fforward_comment): New function.
Richard M. Stallman <rms@gnu.org>
parents:
620
diff
changeset
|
512 } |
172 | 513 } |
514 } | |
5500
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
515 #ifndef MSDOS |
172 | 516 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
|
517 #endif |
6f6637309b38
[MSDOS]: Don't #include <a.out.h>, but use other headers.
Richard M. Stallman <rms@gnu.org>
parents:
4973
diff
changeset
|
518 return 0; |
172 | 519 } |
520 | |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
521 /* **************************************************************** |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
522 * unexec |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
523 * |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
524 * driving logic. |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
525 */ |
109910 | 526 int |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
527 unexec (const char *new_name, const char *a_name) |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
528 { |
109910 | 529 int new = -1, a_out = -1; |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
530 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
531 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
|
532 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
533 PERROR (a_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
534 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
535 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
|
536 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
537 PERROR (new_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
538 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
539 |
110729
99084f50aa8e
Remove unused arguments for unexec.
Dan Nicolaescu <dann@ics.uci.edu>
parents:
109910
diff
changeset
|
540 if (make_hdr (new, a_out, a_name, new_name) < 0 |
60728
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
541 || 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
|
542 || 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
|
543 || 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
|
544 ) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
545 { |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
546 close (new); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
547 return -1; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
548 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
549 |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
550 close (new); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
551 if (a_out >= 0) |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
552 close (a_out); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
553 mark_x (new_name); |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
554 return 0; |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
555 } |
1e22d789c8c7
(write_segment, unexec): Move these functions to avoid forward
Eli Zaretskii <eliz@gnu.org>
parents:
52401
diff
changeset
|
556 |
172 | 557 #endif /* not CANNOT_DUMP */ |
52401 | 558 |
559 /* arch-tag: 62409b69-e27a-4a7c-9413-0210d6b54e7f | |
560 (do not change this comment) */ |