Mercurial > emacs
annotate src/unexaix.c @ 9036:fd91a0b1e333
Delete BROKEN_FASYNC conditional.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 24 Sep 1994 00:20:07 +0000 |
parents | 390019f3ab08 |
children | bd477b542ca4 |
rev | line source |
---|---|
560 | 1 /* Modified by Andrew.Vignaux@comp.vuw.ac.nz to get it to work :-) */ |
2 | |
3 /* Copyright (C) 1985, 1986, 1987, 1988 Free Software Foundation, Inc. | |
4 | |
5 This program is free software; you can redistribute it and/or modify | |
6 it under the terms of the GNU General Public License as published by | |
7 the Free Software Foundation; either version 1, or (at your option) | |
8 any later version. | |
9 | |
10 This program is distributed in the hope that it will be useful, | |
11 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
12 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
13 GNU General Public License for more details. | |
14 | |
15 You should have received a copy of the GNU General Public License | |
16 along with this program; if not, write to the Free Software | |
17 Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. | |
18 | |
19 In other words, you are welcome to use, share and improve this program. | |
20 You are forbidden to forbid anyone else to use, share and improve | |
21 what you give them. Help stamp out software-hoarding! */ | |
22 | |
117
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
23 |
560 | 24 /* |
25 * unexec.c - Convert a running program into an a.out file. | |
26 * | |
27 * Author: Spencer W. Thomas | |
28 * Computer Science Dept. | |
29 * University of Utah | |
30 * Date: Tue Mar 2 1982 | |
31 * Modified heavily since then. | |
32 * | |
33 * Synopsis: | |
34 * unexec (new_name, a_name, data_start, bss_start, entry_address) | |
35 * char *new_name, *a_name; | |
36 * unsigned data_start, bss_start, entry_address; | |
37 * | |
38 * Takes a snapshot of the program and makes an a.out format file in the | |
39 * file named by the string argument new_name. | |
40 * If a_name is non-NULL, the symbol table will be taken from the given file. | |
41 * On some machines, an existing a_name file is required. | |
42 * | |
43 * The boundaries within the a.out file may be adjusted with the data_start | |
44 * and bss_start arguments. Either or both may be given as 0 for defaults. | |
45 * | |
46 * Data_start gives the boundary between the text segment and the data | |
47 * segment of the program. The text segment can contain shared, read-only | |
48 * program code and literal data, while the data segment is always unshared | |
49 * and unprotected. Data_start gives the lowest unprotected address. | |
50 * The value you specify may be rounded down to a suitable boundary | |
51 * as required by the machine you are using. | |
52 * | |
53 * Specifying zero for data_start means the boundary between text and data | |
54 * should not be the same as when the program was loaded. | |
55 * If NO_REMAP is defined, the argument data_start is ignored and the | |
56 * segment boundaries are never changed. | |
57 * | |
58 * Bss_start indicates how much of the data segment is to be saved in the | |
59 * a.out file and restored when the program is executed. It gives the lowest | |
60 * unsaved address, and is rounded up to a page boundary. The default when 0 | |
61 * is given assumes that the entire data segment is to be stored, including | |
62 * the previous data and bss as well as any additional storage allocated with | |
63 * break (2). | |
64 * | |
65 * The new file is set up to start at entry_address. | |
66 * | |
67 * If you make improvements I'd like to get them too. | |
68 * harpo!utah-cs!thomas, thomas@Utah-20 | |
69 * | |
70 */ | |
71 | |
72 /* There are several compilation parameters affecting unexec: | |
73 | |
74 * COFF | |
117
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
75 |
560 | 76 Define this if your system uses COFF for executables. |
77 Otherwise we assume you use Berkeley format. | |
78 | |
79 * NO_REMAP | |
80 | |
81 Define this if you do not want to try to save Emacs's pure data areas | |
82 as part of the text segment. | |
83 | |
84 Saving them as text is good because it allows users to share more. | |
85 | |
86 However, on machines that locate the text area far from the data area, | |
87 the boundary cannot feasibly be moved. Such machines require | |
88 NO_REMAP. | |
89 | |
90 Also, remapping can cause trouble with the built-in startup routine | |
91 /lib/crt0.o, which defines `environ' as an initialized variable. | |
92 Dumping `environ' as pure does not work! So, to use remapping, | |
93 you must write a startup routine for your machine in Emacs's crt0.c. | |
94 If NO_REMAP is defined, Emacs uses the system's crt0.o. | |
95 | |
96 * SECTION_ALIGNMENT | |
97 | |
98 Some machines that use COFF executables require that each section | |
99 start on a certain boundary *in the COFF file*. Such machines should | |
100 define SECTION_ALIGNMENT to a mask of the low-order bits that must be | |
101 zero on such a boundary. This mask is used to control padding between | |
102 segments in the COFF file. | |
103 | |
104 If SECTION_ALIGNMENT is not defined, the segments are written | |
105 consecutively with no attempt at alignment. This is right for | |
106 unmodified system V. | |
107 | |
108 * SEGMENT_MASK | |
117
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
109 |
560 | 110 Some machines require that the beginnings and ends of segments |
111 *in core* be on certain boundaries. For most machines, a page | |
112 boundary is sufficient. That is the default. When a larger | |
113 boundary is needed, define SEGMENT_MASK to a mask of | |
114 the bits that must be zero on such a boundary. | |
115 | |
116 * A_TEXT_OFFSET(HDR) | |
117 | |
118 Some machines count the a.out header as part of the size of the text | |
119 segment (a_text); they may actually load the header into core as the | |
120 first data in the text segment. Some have additional padding between | |
121 the header and the real text of the program that is counted in a_text. | |
122 | |
123 For these machines, define A_TEXT_OFFSET(HDR) to examine the header | |
124 structure HDR and return the number of bytes to add to `a_text' | |
125 before writing it (above and beyond the number of bytes of actual | |
126 program text). HDR's standard fields are already correct, except that | |
127 this adjustment to the `a_text' field has not yet been made; | |
128 thus, the amount of offset can depend on the data in the file. | |
129 | |
130 * A_TEXT_SEEK(HDR) | |
117
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
131 |
560 | 132 If defined, this macro specifies the number of bytes to seek into the |
133 a.out file before starting to write the text segment.a | |
134 | |
135 * EXEC_MAGIC | |
136 | |
137 For machines using COFF, this macro, if defined, is a value stored | |
138 into the magic number field of the output file. | |
139 | |
140 * ADJUST_EXEC_HEADER | |
141 | |
142 This macro can be used to generate statements to adjust or | |
143 initialize nonstandard fields in the file header | |
144 | |
145 * ADDR_CORRECT(ADDR) | |
146 | |
147 Macro to correct an int which is the bit pattern of a pointer to a byte | |
148 into an int which is the number of a byte. | |
149 | |
150 This macro has a default definition which is usually right. | |
151 This default definition is a no-op on most machines (where a | |
152 pointer looks like an int) but not on all machines. | |
153 | |
117
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
154 */ |
08356dc1077c
*** empty log message ***
Richard M. Stallman <rms@gnu.org>
parents:
110
diff
changeset
|
155 |
560 | 156 #define XCOFF |
157 #define COFF | |
158 #define NO_REMAP | |
110 | 159 |
560 | 160 #ifndef emacs |
161 #define PERROR(arg) perror (arg); return -1 | |
162 #else | |
4696
1fc792473491
Include <config.h> instead of "config.h".
Roland McGrath <roland@gnu.org>
parents:
3591
diff
changeset
|
163 #include <config.h> |
560 | 164 #define PERROR(file) report_error (file, new) |
165 #endif | |
110 | 166 |
560 | 167 #ifndef CANNOT_DUMP /* all rest of file! */ |
168 | |
169 #ifndef CANNOT_UNEXEC /* most of rest of file */ | |
110 | 170 |
560 | 171 #include <a.out.h> |
172 /* Define getpagesize () if the system does not. | |
173 Note that this may depend on symbols defined in a.out.h | |
174 */ | |
175 #include "getpagesize.h" | |
110 | 176 |
560 | 177 #ifndef makedev /* Try to detect types.h already loaded */ |
178 #include <sys/types.h> | |
179 #endif | |
180 #include <stdio.h> | |
181 #include <sys/stat.h> | |
182 #include <errno.h> | |
110 | 183 |
560 | 184 extern char *start_of_text (); /* Start of text */ |
185 extern char *start_of_data (); /* Start of initialized data */ | |
110 | 186 |
560 | 187 extern int _data; |
188 extern int _edata; | |
189 extern int _text; | |
190 extern int _etext; | |
191 extern int _end; | |
192 #ifdef COFF | |
193 #ifndef USG | |
194 #ifndef STRIDE | |
195 #ifndef UMAX | |
196 #ifndef sun386 | |
197 /* I have a suspicion that these are turned off on all systems | |
198 and can be deleted. Try it in version 19. */ | |
199 #include <filehdr.h> | |
200 #include <aouthdr.h> | |
201 #include <scnhdr.h> | |
202 #include <syms.h> | |
203 #endif /* not sun386 */ | |
204 #endif /* not UMAX */ | |
205 #endif /* Not STRIDE */ | |
206 #endif /* not USG */ | |
207 static long block_copy_start; /* Old executable start point */ | |
208 static struct filehdr f_hdr; /* File header */ | |
209 static struct aouthdr f_ohdr; /* Optional file header (a.out) */ | |
210 long bias; /* Bias to add for growth */ | |
211 long lnnoptr; /* Pointer to line-number info within file */ | |
212 #define SYMS_START block_copy_start | |
110 | 213 |
560 | 214 static long text_scnptr; |
215 static long data_scnptr; | |
216 #ifdef XCOFF | |
217 static long load_scnptr; | |
218 static long orig_load_scnptr; | |
219 static long orig_data_scnptr; | |
220 #endif | |
221 static long data_st; | |
110 | 222 |
560 | 223 #ifndef MAX_SECTIONS |
224 #define MAX_SECTIONS 10 | |
225 #endif | |
110 | 226 |
560 | 227 #endif /* COFF */ |
228 | |
229 static int pagemask; | |
110 | 230 |
560 | 231 /* Correct an int which is the bit pattern of a pointer to a byte |
232 into an int which is the number of a byte. | |
233 This is a no-op on ordinary machines, but not on all. */ | |
234 | |
235 #ifndef ADDR_CORRECT /* Let m-*.h files override this definition */ | |
236 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0) | |
237 #endif | |
238 | |
239 #ifdef emacs | |
8956
390019f3ab08
(report_error): Include reason in error message.
Karl Heuer <kwzh@gnu.org>
parents:
7867
diff
changeset
|
240 #include "lisp.h" |
110 | 241 |
560 | 242 static |
243 report_error (file, fd) | |
244 char *file; | |
245 int fd; | |
246 { | |
247 if (fd) | |
248 close (fd); | |
8956
390019f3ab08
(report_error): Include reason in error message.
Karl Heuer <kwzh@gnu.org>
parents:
7867
diff
changeset
|
249 report_file_error ("Cannot unexec", Fcons (build_string (file), Qnil)); |
560 | 250 } |
251 #endif /* emacs */ | |
110 | 252 |
560 | 253 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1 |
254 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1 | |
255 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1 | |
110 | 256 |
560 | 257 static |
258 report_error_1 (fd, msg, a1, a2) | |
259 int fd; | |
260 char *msg; | |
261 int a1, a2; | |
110 | 262 { |
560 | 263 close (fd); |
264 #ifdef emacs | |
265 error (msg, a1, a2); | |
266 #else | |
267 fprintf (stderr, msg, a1, a2); | |
268 fprintf (stderr, "\n"); | |
269 #endif | |
270 } | |
110 | 271 |
560 | 272 static int make_hdr (); |
273 static void mark_x (); | |
274 static int copy_text_and_data (); | |
275 static int copy_sym (); | |
276 | |
277 /* **************************************************************** | |
278 * unexec | |
279 * | |
280 * driving logic. | |
281 */ | |
282 unexec (new_name, a_name, data_start, bss_start, entry_address) | |
283 char *new_name, *a_name; | |
284 unsigned data_start, bss_start, entry_address; | |
285 { | |
286 int new, a_out = -1; | |
287 | |
288 if (a_name && (a_out = open (a_name, 0)) < 0) | |
110 | 289 { |
560 | 290 PERROR (a_name); |
291 } | |
292 if ((new = creat (new_name, 0666)) < 0) | |
293 { | |
294 PERROR (new_name); | |
110 | 295 } |
560 | 296 if (make_hdr (new,a_out,data_start,bss_start,entry_address,a_name,new_name) < 0 |
297 || copy_text_and_data (new) < 0 | |
298 || copy_sym (new, a_out, a_name, new_name) < 0 | |
299 #ifdef COFF | |
300 || adjust_lnnoptrs (new, a_out, new_name) < 0 | |
301 #endif | |
302 #ifdef XCOFF | |
303 || unrelocate_symbols (new, a_out, a_name, new_name) < 0 | |
304 #endif | |
305 ) | |
110 | 306 { |
560 | 307 close (new); |
308 /* unlink (new_name); /* Failed, unlink new a.out */ | |
309 return -1; | |
110 | 310 } |
311 | |
560 | 312 close (new); |
313 if (a_out >= 0) | |
314 close (a_out); | |
315 mark_x (new_name); | |
316 return 0; | |
317 } | |
318 | |
319 /* **************************************************************** | |
320 * make_hdr | |
321 * | |
322 * Make the header in the new a.out from the header in core. | |
323 * Modify the text and data sizes. | |
324 */ | |
325 static int | |
326 make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) | |
327 int new, a_out; | |
328 unsigned data_start, bss_start, entry_address; | |
329 char *a_name; | |
330 char *new_name; | |
331 { | |
332 register int scns; | |
333 unsigned int bss_end; | |
110 | 334 |
560 | 335 struct scnhdr section[MAX_SECTIONS]; |
336 struct scnhdr * f_thdr; /* Text section header */ | |
337 struct scnhdr * f_dhdr; /* Data section header */ | |
338 struct scnhdr * f_bhdr; /* Bss section header */ | |
339 struct scnhdr * f_lhdr; /* Loader section header */ | |
340 struct scnhdr * f_tchdr; /* Typechk section header */ | |
341 struct scnhdr * f_dbhdr; /* Debug section header */ | |
342 struct scnhdr * f_xhdr; /* Except section header */ | |
343 | |
344 load_scnptr = orig_load_scnptr = lnnoptr = 0; | |
345 pagemask = getpagesize () - 1; | |
346 | |
347 /* Adjust text/data boundary. */ | |
348 #ifdef NO_REMAP | |
349 data_start = (long) start_of_data (); | |
350 #endif /* NO_REMAP */ | |
351 data_start = ADDR_CORRECT (data_start); | |
352 | |
353 #ifdef SEGMENT_MASK | |
354 data_start = data_start & ~SEGMENT_MASK; /* (Down) to segment boundary. */ | |
355 #else | |
356 data_start = data_start & ~pagemask; /* (Down) to page boundary. */ | |
357 #endif | |
358 | |
359 | |
360 bss_end = ADDR_CORRECT (sbrk (0)) + pagemask; | |
361 bss_end &= ~ pagemask; | |
362 /* Adjust data/bss boundary. */ | |
363 if (bss_start != 0) | |
110 | 364 { |
560 | 365 bss_start = (ADDR_CORRECT (bss_start) + pagemask); |
366 /* (Up) to page bdry. */ | |
367 bss_start &= ~ pagemask; | |
368 if (bss_start > bss_end) | |
369 { | |
370 ERROR1 ("unexec: Specified bss_start (%u) is past end of program", | |
371 bss_start); | |
372 } | |
110 | 373 } |
560 | 374 else |
375 bss_start = bss_end; | |
110 | 376 |
560 | 377 if (data_start > bss_start) /* Can't have negative data size. */ |
110 | 378 { |
560 | 379 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)", |
380 data_start, bss_start); | |
110 | 381 } |
382 | |
560 | 383 #ifdef COFF |
384 /* Salvage as much info from the existing file as possible */ | |
385 block_copy_start = 0; | |
386 f_thdr = NULL; f_dhdr = NULL; f_bhdr = NULL; | |
387 f_lhdr = NULL; f_tchdr = NULL; f_dbhdr = NULL; f_xhdr = NULL; | |
388 if (a_out >= 0) | |
110 | 389 { |
560 | 390 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) |
391 { | |
392 PERROR (a_name); | |
393 } | |
394 block_copy_start += sizeof (f_hdr); | |
395 if (f_hdr.f_opthdr > 0) | |
396 { | |
397 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
398 { | |
399 PERROR (a_name); | |
400 } | |
401 block_copy_start += sizeof (f_ohdr); | |
402 } | |
403 if (f_hdr.f_nscns > MAX_SECTIONS) | |
404 { | |
405 ERROR0 ("unexec: too many section headers -- increase MAX_SECTIONS"); | |
406 } | |
407 /* Loop through section headers */ | |
408 for (scns = 0; scns < f_hdr.f_nscns; scns++) { | |
409 struct scnhdr *s = §ion[scns]; | |
410 if (read (a_out, s, sizeof (*s)) != sizeof (*s)) | |
411 { | |
412 PERROR (a_name); | |
413 } | |
414 if (s->s_scnptr > 0L) | |
415 { | |
416 if (block_copy_start < s->s_scnptr + s->s_size) | |
417 block_copy_start = s->s_scnptr + s->s_size; | |
418 } | |
110 | 419 |
560 | 420 #define CHECK_SCNHDR(ptr, name, flags) \ |
421 if (strcmp(s->s_name, name) == 0) { \ | |
422 if (s->s_flags != flags) { \ | |
423 fprintf(stderr, "unexec: %x flags where %x expected in %s section.\n", \ | |
424 s->s_flags, flags, name); \ | |
425 } \ | |
426 if (ptr) { \ | |
427 fprintf(stderr, "unexec: duplicate section header for section %s.\n", \ | |
428 name); \ | |
429 } \ | |
430 ptr = s; \ | |
431 } | |
432 CHECK_SCNHDR(f_thdr, _TEXT, STYP_TEXT); | |
433 CHECK_SCNHDR(f_dhdr, _DATA, STYP_DATA); | |
434 CHECK_SCNHDR(f_bhdr, _BSS, STYP_BSS); | |
435 CHECK_SCNHDR(f_lhdr, _LOADER, STYP_LOADER); | |
436 CHECK_SCNHDR(f_dbhdr, _DEBUG, STYP_DEBUG); | |
437 CHECK_SCNHDR(f_tchdr, _TYPCHK, STYP_TYPCHK); | |
438 CHECK_SCNHDR(f_xhdr, _EXCEPT, STYP_EXCEPT); | |
439 } | |
440 | |
441 if (f_thdr == 0) | |
442 { | |
443 ERROR1 ("unexec: couldn't find \"%s\" section", _TEXT); | |
444 } | |
445 if (f_dhdr == 0) | |
446 { | |
447 ERROR1 ("unexec: couldn't find \"%s\" section", _DATA); | |
448 } | |
449 if (f_bhdr == 0) | |
110 | 450 { |
560 | 451 ERROR1 ("unexec: couldn't find \"%s\" section", _BSS); |
452 } | |
453 } | |
454 else | |
455 { | |
456 ERROR0 ("can't build a COFF file from scratch yet"); | |
457 } | |
458 orig_data_scnptr = f_dhdr->s_scnptr; | |
459 orig_load_scnptr = f_lhdr ? f_lhdr->s_scnptr : 0; | |
110 | 460 |
560 | 461 /* Now we alter the contents of all the f_*hdr variables |
462 to correspond to what we want to dump. */ | |
463 f_hdr.f_flags |= (F_RELFLG | F_EXEC); /* Why? */ | |
464 #ifdef EXEC_MAGIC | |
465 f_ohdr.magic = EXEC_MAGIC; | |
466 #endif | |
467 #ifndef NO_REMAP | |
468 f_ohdr.tsize = data_start - f_ohdr.text_start; | |
469 f_ohdr.text_start = (long) start_of_text (); | |
470 #endif | |
471 f_ohdr.dsize = bss_start - ((unsigned) &_data); | |
472 f_ohdr.bsize = bss_end - bss_start; | |
110 | 473 |
560 | 474 f_dhdr->s_size = f_ohdr.dsize; |
475 f_bhdr->s_size = f_ohdr.bsize; | |
476 f_bhdr->s_paddr = f_ohdr.dsize; | |
477 f_bhdr->s_vaddr = f_ohdr.dsize; | |
478 | |
479 /* fix scnptr's */ | |
480 { | |
481 long ptr; | |
482 | |
483 for (scns = 0; scns < f_hdr.f_nscns; scns++) { | |
484 struct scnhdr *s = §ion[scns]; | |
485 if (scns == 0) | |
486 ptr = s->s_scnptr; | |
487 | |
488 if (s->s_scnptr != 0) | |
489 { | |
490 s->s_scnptr = ptr; | |
110 | 491 } |
492 | |
560 | 493 if ((s->s_flags & 0xffff) == STYP_PAD) |
110 | 494 { |
560 | 495 /* |
496 * the text_start should probably be o_algntext but that doesn't | |
497 * seem to change | |
498 */ | |
499 if (f_ohdr.text_start != 0) /* && scns != 0 */ | |
500 { | |
501 s->s_size = 512 - (s->s_scnptr % 512); | |
502 if (s->s_size == 512) | |
503 s->s_size = 0; | |
504 } | |
110 | 505 } |
506 | |
560 | 507 ptr = ptr + s->s_size; |
508 } | |
509 | |
510 bias = ptr - block_copy_start; | |
511 } | |
512 | |
513 /* fix other pointers */ | |
514 for (scns = 0; scns < f_hdr.f_nscns; scns++) { | |
515 struct scnhdr *s = §ion[scns]; | |
516 | |
517 if (s->s_relptr != 0) | |
518 { | |
519 s->s_relptr += bias; | |
520 } | |
521 if (s->s_lnnoptr != 0) | |
522 { | |
523 if (lnnoptr == 0) lnnoptr = s->s_lnnoptr; | |
524 s->s_lnnoptr += bias; | |
525 } | |
526 } | |
110 | 527 |
560 | 528 if (f_hdr.f_symptr > 0L) |
529 { | |
530 f_hdr.f_symptr += bias; | |
531 } | |
110 | 532 |
560 | 533 data_st = data_start; |
534 text_scnptr = f_thdr->s_scnptr; | |
535 data_scnptr = f_dhdr->s_scnptr; | |
536 load_scnptr = f_lhdr ? f_lhdr->s_scnptr : 0; | |
537 block_copy_start = orig_load_scnptr; | |
110 | 538 |
560 | 539 #ifdef ADJUST_EXEC_HEADER |
540 ADJUST_EXEC_HEADER | |
541 #endif /* ADJUST_EXEC_HEADER */ | |
542 | |
543 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr)) | |
544 { | |
545 PERROR (new_name); | |
546 } | |
547 | |
548 if (f_hdr.f_opthdr > 0) | |
549 { | |
550 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr)) | |
110 | 551 { |
560 | 552 PERROR (new_name); |
110 | 553 } |
554 } | |
555 | |
560 | 556 for (scns = 0; scns < f_hdr.f_nscns; scns++) { |
557 struct scnhdr *s = §ion[scns]; | |
558 if (write (new, s, sizeof (*s)) != sizeof (*s)) | |
559 { | |
560 PERROR (new_name); | |
561 } | |
562 } | |
563 | |
564 return (0); | |
565 | |
566 #endif /* COFF */ | |
567 } | |
568 | |
569 /* **************************************************************** | |
570 | |
571 * | |
572 * Copy the text and data segments from memory to the new a.out | |
573 */ | |
574 static int | |
575 copy_text_and_data (new) | |
576 int new; | |
577 { | |
578 register char *end; | |
579 register char *ptr; | |
580 | |
581 lseek (new, (long) text_scnptr, 0); | |
582 ptr = start_of_text () + text_scnptr; | |
583 end = ptr + f_ohdr.tsize; | |
584 write_segment (new, ptr, end); | |
585 | |
586 lseek (new, (long) data_scnptr, 0); | |
587 ptr = (char *) &_data; | |
588 end = ptr + f_ohdr.dsize; | |
589 write_segment (new, ptr, end); | |
590 | |
591 return 0; | |
110 | 592 } |
593 | |
560 | 594 write_segment (new, ptr, end) |
595 int new; | |
596 register char *ptr, *end; | |
597 { | |
598 register int i, nwrite, ret; | |
599 char buf[80]; | |
600 extern int errno; | |
601 char zeros[128]; | |
602 | |
603 bzero (zeros, sizeof zeros); | |
110 | 604 |
560 | 605 for (i = 0; ptr < end;) |
606 { | |
607 /* distance to next multiple of 128. */ | |
608 nwrite = (((int) ptr + 128) & -128) - (int) ptr; | |
609 /* But not beyond specified end. */ | |
610 if (nwrite > end - ptr) nwrite = end - ptr; | |
611 ret = write (new, ptr, nwrite); | |
612 /* If write gets a page fault, it means we reached | |
613 a gap between the old text segment and the old data segment. | |
614 This gap has probably been remapped into part of the text segment. | |
615 So write zeros for it. */ | |
616 if (ret == -1 && errno == EFAULT) | |
617 { | |
618 write (new, zeros, nwrite); | |
619 } | |
620 else if (nwrite != ret) | |
621 { | |
622 sprintf (buf, | |
623 "unexec write failure: addr 0x%x, fileno %d, size 0x%x, wrote 0x%x, errno %d", | |
624 ptr, new, nwrite, ret, errno); | |
625 PERROR (buf); | |
626 } | |
627 i += nwrite; | |
628 ptr += nwrite; | |
629 } | |
630 } | |
631 | |
632 /* **************************************************************** | |
633 * copy_sym | |
634 * | |
635 * Copy the relocation information and symbol table from the a.out to the new | |
636 */ | |
637 static int | |
638 copy_sym (new, a_out, a_name, new_name) | |
639 int new, a_out; | |
640 char *a_name, *new_name; | |
110 | 641 { |
560 | 642 char page[1024]; |
643 int n; | |
644 | |
645 if (a_out < 0) | |
646 return 0; | |
647 | |
648 if (SYMS_START == 0L) | |
649 return 0; | |
650 | |
651 if (lnnoptr && lnnoptr < SYMS_START) /* if there is line number info */ | |
652 lseek (a_out, lnnoptr, 0); /* start copying from there */ | |
653 else | |
654 lseek (a_out, SYMS_START, 0); /* Position a.out to symtab. */ | |
655 | |
656 while ((n = read (a_out, page, sizeof page)) > 0) | |
657 { | |
658 if (write (new, page, n) != n) | |
659 { | |
660 PERROR (new_name); | |
661 } | |
662 } | |
663 if (n < 0) | |
664 { | |
665 PERROR (a_name); | |
666 } | |
667 return 0; | |
668 } | |
669 | |
670 /* **************************************************************** | |
671 * mark_x | |
672 * | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
560
diff
changeset
|
673 * After successfully building the new a.out, mark it executable |
560 | 674 */ |
675 static void | |
676 mark_x (name) | |
677 char *name; | |
678 { | |
679 struct stat sbuf; | |
680 int um; | |
681 int new = 0; /* for PERROR */ | |
110 | 682 |
560 | 683 um = umask (777); |
684 umask (um); | |
685 if (stat (name, &sbuf) == -1) | |
686 { | |
687 PERROR (name); | |
688 } | |
689 sbuf.st_mode |= 0111 & ~um; | |
690 if (chmod (name, sbuf.st_mode) == -1) | |
691 PERROR (name); | |
692 } | |
693 | |
694 /* | |
695 * If the COFF file contains a symbol table and a line number section, | |
696 * then any auxiliary entries that have values for x_lnnoptr must | |
697 * be adjusted by the amount that the line number section has moved | |
698 * in the file (bias computed in make_hdr). The #@$%&* designers of | |
699 * the auxiliary entry structures used the absolute file offsets for | |
700 * the line number entry rather than an offset from the start of the | |
701 * line number section! | |
702 * | |
703 * When I figure out how to scan through the symbol table and pick out | |
704 * the auxiliary entries that need adjustment, this routine will | |
705 * be fixed. As it is now, all such entries are wrong and sdb | |
706 * will complain. Fred Fish, UniSoft Systems Inc. | |
707 */ | |
708 | |
709 #ifdef COFF | |
710 | |
711 /* This function is probably very slow. Instead of reopening the new | |
712 file for input and output it should copy from the old to the new | |
713 using the two descriptors already open (WRITEDESC and READDESC). | |
714 Instead of reading one small structure at a time it should use | |
715 a reasonable size buffer. But I don't have time to work on such | |
716 things, so I am installing it as submitted to me. -- RMS. */ | |
717 | |
718 adjust_lnnoptrs (writedesc, readdesc, new_name) | |
719 int writedesc; | |
720 int readdesc; | |
721 char *new_name; | |
722 { | |
723 register int nsyms; | |
7867
087c9b909feb
(adjust_lnnoptrs): Handle multiple aux symbols.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
724 register int naux; |
560 | 725 register int new; |
726 #ifdef amdahl_uts | |
727 SYMENT symentry; | |
728 AUXENT auxentry; | |
729 #else | |
730 struct syment symentry; | |
731 union auxent auxentry; | |
732 #endif | |
110 | 733 |
560 | 734 if (!lnnoptr || !f_hdr.f_symptr) |
735 return 0; | |
736 | |
737 if ((new = open (new_name, 2)) < 0) | |
738 { | |
739 PERROR (new_name); | |
740 return -1; | |
741 } | |
742 | |
743 lseek (new, f_hdr.f_symptr, 0); | |
744 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++) | |
745 { | |
746 read (new, &symentry, SYMESZ); | |
7867
087c9b909feb
(adjust_lnnoptrs): Handle multiple aux symbols.
Richard M. Stallman <rms@gnu.org>
parents:
4696
diff
changeset
|
747 for (naux = 0; naux < symentry.n_numaux; naux++) |
560 | 748 { |
749 read (new, &auxentry, AUXESZ); | |
750 nsyms++; | |
751 if (ISFCN (symentry.n_type)) { | |
752 auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias; | |
753 lseek (new, -AUXESZ, 1); | |
754 write (new, &auxentry, AUXESZ); | |
755 } | |
756 } | |
757 } | |
758 close (new); | |
759 } | |
760 | |
761 #endif /* COFF */ | |
762 | |
763 #ifdef XCOFF | |
764 | |
765 /* It is probably a false economy to optimise this routine (it used to | |
766 read one LDREL and do do two lseeks per iteration) but the wrath of | |
767 RMS (see above :-) would be too much to bear */ | |
768 | |
769 unrelocate_symbols (new, a_out, a_name, new_name) | |
770 int new, a_out; | |
771 char *a_name, *new_name; | |
772 { | |
773 register int i; | |
774 register int l; | |
775 register LDREL *ldrel; | |
776 LDHDR ldhdr; | |
777 LDREL ldrel_buf [20]; | |
778 ulong t_start = (ulong) &_text; | |
779 ulong d_start = (ulong) &_data; | |
780 int * p; | |
781 int dirty; | |
782 | |
783 if (load_scnptr == 0) | |
784 return 0; | |
785 | |
786 lseek (a_out, orig_load_scnptr, 0); | |
787 if (read (a_out, &ldhdr, sizeof (ldhdr)) != sizeof (ldhdr)) | |
788 { | |
789 PERROR (new_name); | |
790 } | |
791 | |
792 #define SYMNDX_TEXT 0 | |
793 #define SYMNDX_DATA 1 | |
794 #define SYMNDX_BSS 2 | |
795 l = 0; | |
796 for (i = 0; i < ldhdr.l_nreloc; i++, l--, ldrel++) | |
797 { | |
798 if (l == 0) { | |
799 lseek (a_out, | |
800 orig_load_scnptr + LDHDRSZ + LDSYMSZ*ldhdr.l_nsyms + LDRELSZ*i, | |
801 0); | |
110 | 802 |
560 | 803 l = ldhdr.l_nreloc - i; |
804 if (l > sizeof (ldrel_buf) / LDRELSZ) | |
805 l = sizeof (ldrel_buf) / LDRELSZ; | |
806 | |
807 if (read (a_out, ldrel_buf, l * LDRELSZ) != l * LDRELSZ) | |
808 { | |
809 PERROR (a_name); | |
810 } | |
811 ldrel = ldrel_buf; | |
812 } | |
813 dirty = 0; | |
814 | |
815 /* this code may not be necessary */ | |
816 /* I originally had == in the "assignment" and it still unrelocated */ | |
817 | |
818 /* move the BSS loader symbols to the DATA segment */ | |
819 if (ldrel->l_rsecnm == f_ohdr.o_snbss) | |
820 ldrel->l_rsecnm = f_ohdr.o_sndata, dirty++; | |
821 | |
822 if (ldrel->l_symndx == SYMNDX_BSS) | |
823 ldrel->l_symndx = SYMNDX_DATA, dirty++; | |
824 | |
825 if (dirty) | |
826 { | |
827 lseek (new, | |
828 load_scnptr + LDHDRSZ + LDSYMSZ*ldhdr.l_nsyms + LDRELSZ*i, | |
829 0); | |
830 | |
831 if (write (new, ldrel, LDRELSZ) != LDRELSZ) | |
832 { | |
833 PERROR (new_name); | |
834 } | |
835 } | |
836 | |
837 if (ldrel->l_rsecnm == f_ohdr.o_sndata) | |
838 { | |
839 int orig_int; | |
840 | |
841 lseek (a_out, orig_data_scnptr + ldrel->l_vaddr, 0); | |
842 | |
843 if (read (a_out, (void *) &orig_int, sizeof (orig_int)) != sizeof (orig_int)) | |
844 { | |
845 PERROR (a_name); | |
846 } | |
847 | |
848 switch (ldrel->l_symndx) { | |
849 case SYMNDX_TEXT: | |
850 p = (int *) (d_start + ldrel->l_vaddr); | |
851 orig_int = * p - (t_start - f_ohdr.text_start); | |
852 break; | |
853 | |
854 case SYMNDX_DATA: | |
855 case SYMNDX_BSS: | |
856 p = (int *) (d_start + ldrel->l_vaddr); | |
857 orig_int = * p - (d_start - f_ohdr.data_start); | |
858 break; | |
859 } | |
860 | |
861 lseek (new, data_scnptr + ldrel->l_vaddr, 0); | |
862 if (write (new, (void *) &orig_int, sizeof (orig_int)) != sizeof (orig_int)) | |
863 { | |
864 PERROR (new_name); | |
865 } | |
866 } | |
867 } | |
110 | 868 } |
560 | 869 #endif /* XCOFF */ |
870 | |
871 #endif /* not CANNOT_UNEXEC */ | |
872 | |
873 #endif /* not CANNOT_DUMP */ |