Mercurial > emacs
annotate src/unexalpha.c @ 38709:00a56d6da660
(image-type-regexps): Use `\`' instead of `^' in
most regular expressions.
| author | Gerd Moellmann <gerd@gnu.org> |
|---|---|
| date | Tue, 07 Aug 2001 08:03:10 +0000 |
| parents | d4a0bd8a25a3 |
| children | 435e087e5d76 |
| rev | line source |
|---|---|
| 8836 | 1 /* Unexec for DEC alpha. schoepf@sc.ZIB-Berlin.DE (Rainer Schoepf). |
| 2 | |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
3 Copyright (C) 1994, 2000 Free Software Foundation, Inc. |
| 8836 | 4 |
| 5 This file is part of GNU Emacs. | |
| 6 | |
| 7 GNU Emacs is free software; you can redistribute it and/or modify | |
| 8 it under the terms of the GNU General Public License as published by | |
| 9 the Free Software Foundation; either version 2, or (at your option) | |
| 10 any later version. | |
| 11 | |
| 12 GNU Emacs is distributed in the hope that it will be useful, | |
| 13 but WITHOUT ANY WARRANTY; without even the implied warranty of | |
| 14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
| 15 GNU General Public License for more details. | |
| 16 | |
| 17 You should have received a copy of the GNU General Public License | |
| 18 along with GNU Emacs; see the file COPYING. If not, write to | |
|
14186
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13512
diff
changeset
|
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330, |
|
ee40177f6c68
Update FSF's address in the preamble.
Erik Naggum <erik@naggum.no>
parents:
13512
diff
changeset
|
20 Boston, MA 02111-1307, USA. */ |
| 8836 | 21 |
| 22 | |
| 23 #include <config.h> | |
| 24 #include <sys/types.h> | |
| 25 #include <sys/file.h> | |
| 26 #include <sys/stat.h> | |
| 27 #include <sys/mman.h> | |
| 28 #include <stdio.h> | |
| 29 #include <varargs.h> | |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
30 #include <errno.h> |
|
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
31 #ifdef HAVE_STRING_H |
|
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
32 #include <string.h> |
|
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
33 #endif |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
34 #if !defined (__NetBSD__) && !defined (__OpenBSD__) |
| 8836 | 35 #include <filehdr.h> |
| 36 #include <aouthdr.h> | |
| 37 #include <scnhdr.h> | |
| 38 #include <syms.h> | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
39 #ifndef __linux__ |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
40 # include <reloc.h> |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
41 # include <elf_abi.h> |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
42 #endif |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
43 #else /* __NetBSD__ or __OpenBSD__ */ |
|
18103
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
44 /* |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
45 * NetBSD/Alpha does not have 'normal' user-land ECOFF support because |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
46 * there's no desire to support ECOFF as the executable format in the |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
47 * long term. |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
48 */ |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
49 #include <sys/exec_ecoff.h> |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
50 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
51 /* Structures, constants, etc., that NetBSD defines strangely. */ |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
52 #define filehdr ecoff_filehdr |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
53 #define aouthdr ecoff_aouthdr |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
54 #define scnhdr ecoff_scnhdr |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
55 #define HDRR struct ecoff_symhdr |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
56 #define pHDRR HDRR * |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
57 #define cbHDRR sizeof(HDRR) |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
58 #ifdef __OpenBSD__ |
|
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
59 #define ALPHAMAGIC ECOFF_MAGIC_NATIVE_ALPHA |
|
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
60 #else |
|
18103
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
61 #define ALPHAMAGIC ECOFF_MAGIC_NETBSD_ALPHA |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
62 #endif |
|
18103
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
63 #define ZMAGIC ECOFF_ZMAGIC |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
64 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
65 /* Misc. constants that NetBSD doesn't define at all. */ |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
66 #define ALPHAUMAGIC 0617 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
67 #define _MIPS_NSCNS_MAX 35 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
68 #define STYP_TEXT 0x00000020 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
69 #define STYP_DATA 0x00000040 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
70 #define STYP_BSS 0x00000080 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
71 #define STYP_RDATA 0x00000100 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
72 #define STYP_SDATA 0x00000200 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
73 #define STYP_SBSS 0x00000400 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
74 #define STYP_INIT 0x80000000 |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
75 #define _TEXT ".text" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
76 #define _DATA ".data" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
77 #define _BSS ".bss" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
78 #define _INIT ".init" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
79 #define _RDATA ".rdata" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
80 #define _SDATA ".sdata" |
|
8e1553706b3d
[__NetBSD__]: Don't include filehdr.h, aouthdr.h
Richard M. Stallman <rms@gnu.org>
parents:
15893
diff
changeset
|
81 #define _SBSS ".sbss" |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
82 #endif /* __NetBSD__ || __OpenBSD__ */ |
| 8836 | 83 |
|
30916
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
84 static void fatal_unexec __P ((char *, char *)); |
|
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
85 static void mark_x __P ((char *)); |
|
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
86 |
|
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
87 static void update_dynamic_symbols __P ((char *, char *, int, struct aouthdr)); |
| 8836 | 88 |
| 89 #define READ(_fd, _buffer, _size, _error_message, _error_arg) \ | |
| 90 errno = EEOF; \ | |
| 91 if (read (_fd, _buffer, _size) != _size) \ | |
| 92 fatal_unexec (_error_message, _error_arg); | |
| 93 | |
| 94 #define WRITE(_fd, _buffer, _size, _error_message, _error_arg) \ | |
| 95 if (write (_fd, _buffer, _size) != _size) \ | |
| 96 fatal_unexec (_error_message, _error_arg); | |
| 97 | |
| 98 #define SEEK(_fd, _position, _error_message, _error_arg) \ | |
| 99 errno = EEOF; \ | |
| 100 if (lseek (_fd, _position, L_SET) != _position) \ | |
| 101 fatal_unexec (_error_message, _error_arg); | |
| 102 | |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
103 #ifdef HAVE_UNISTD_H |
|
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
104 #include <unistd.h> |
|
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
105 #else |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
106 void *sbrk (); |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
107 #endif |
| 8836 | 108 |
| 109 #define EEOF -1 | |
| 110 | |
| 111 static struct scnhdr *text_section; | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
112 static struct scnhdr *rel_dyn_section; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
113 static struct scnhdr *dynstr_section; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
114 static struct scnhdr *dynsym_section; |
| 8836 | 115 static struct scnhdr *init_section; |
| 116 static struct scnhdr *finit_section; | |
| 117 static struct scnhdr *rdata_section; | |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
118 static struct scnhdr *rconst_section; |
| 8836 | 119 static struct scnhdr *data_section; |
| 120 static struct scnhdr *pdata_section; | |
| 121 static struct scnhdr *xdata_section; | |
| 122 static struct scnhdr *got_section; | |
| 123 static struct scnhdr *lit8_section; | |
| 124 static struct scnhdr *lit4_section; | |
| 125 static struct scnhdr *sdata_section; | |
| 126 static struct scnhdr *sbss_section; | |
| 127 static struct scnhdr *bss_section; | |
| 128 | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
129 static struct scnhdr old_data_scnhdr; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
130 |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
131 static unsigned long Brk; |
| 8836 | 132 |
| 133 struct headers { | |
| 134 struct filehdr fhdr; | |
| 135 struct aouthdr aout; | |
| 136 struct scnhdr section[_MIPS_NSCNS_MAX]; | |
| 137 }; | |
| 138 | |
| 139 | |
| 140 | |
| 141 /* Define name of label for entry point for the dumped executable. */ | |
| 142 | |
| 143 #ifndef DEFAULT_ENTRY_ADDRESS | |
| 144 #define DEFAULT_ENTRY_ADDRESS __start | |
| 145 #endif | |
| 146 | |
|
30916
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
147 void |
| 8836 | 148 unexec (new_name, a_name, data_start, bss_start, entry_address) |
| 149 char *new_name, *a_name; | |
| 150 unsigned long data_start, bss_start, entry_address; | |
| 151 { | |
| 152 int new, old; | |
| 153 char * oldptr; | |
| 154 struct headers ohdr, nhdr; | |
| 155 struct stat stat; | |
| 156 long pagesize, brk; | |
| 157 long newsyms, symrel; | |
| 158 int nread; | |
| 159 int i; | |
| 160 long vaddr, scnptr; | |
| 161 #define BUFSIZE 8192 | |
| 162 char buffer[BUFSIZE]; | |
| 163 | |
| 164 if ((old = open (a_name, O_RDONLY)) < 0) | |
| 165 fatal_unexec ("opening %s", a_name); | |
| 166 | |
| 167 new = creat (new_name, 0666); | |
| 168 if (new < 0) fatal_unexec ("creating %s", new_name); | |
| 169 | |
| 170 if ((fstat (old, &stat) == -1)) | |
| 171 fatal_unexec ("fstat %s", a_name); | |
| 172 | |
| 173 oldptr = (char *)mmap (0, stat.st_size, PROT_READ, MAP_FILE|MAP_SHARED, old, 0); | |
| 174 | |
| 175 if (oldptr == (char *)-1) | |
| 176 fatal_unexec ("mmap %s", a_name); | |
| 177 | |
| 178 close (old); | |
| 179 | |
| 180 /* This is a copy of the a.out header of the original executable */ | |
| 181 | |
| 182 ohdr = (*(struct headers *)oldptr); | |
| 183 | |
| 184 /* This is where we build the new header from the in-memory copy */ | |
| 185 | |
| 186 nhdr = *((struct headers *)TEXT_START); | |
| 187 | |
| 188 /* First do some consistency checks */ | |
| 189 | |
| 190 if (nhdr.fhdr.f_magic != ALPHAMAGIC | |
| 191 && nhdr.fhdr.f_magic != ALPHAUMAGIC) | |
| 192 { | |
| 193 fprintf (stderr, "unexec: input file magic number is %x, not %x or %x.\n", | |
| 194 nhdr.fhdr.f_magic, ALPHAMAGIC, ALPHAUMAGIC); | |
| 195 exit (1); | |
| 196 } | |
| 197 | |
| 198 if (nhdr.fhdr.f_opthdr != sizeof (nhdr.aout)) | |
| 199 { | |
| 200 fprintf (stderr, "unexec: input a.out header is %d bytes, not %d.\n", | |
|
19336
46e497d9add2
(unexec): Cast arg to fprintf.
Richard M. Stallman <rms@gnu.org>
parents:
18780
diff
changeset
|
201 nhdr.fhdr.f_opthdr, (int)sizeof (nhdr.aout)); |
| 8836 | 202 exit (1); |
| 203 } | |
| 204 if (nhdr.aout.magic != ZMAGIC) | |
| 205 { | |
| 206 fprintf (stderr, "unexec: input file a.out magic number is %o, not %o.\n", | |
| 207 nhdr.aout.magic, ZMAGIC); | |
| 208 exit (1); | |
| 209 } | |
| 210 | |
| 211 | |
| 212 /* Now check the existence of certain header section and grab | |
| 213 their addresses. */ | |
| 214 | |
| 215 #define CHECK_SCNHDR(ptr, name, flags) \ | |
| 216 ptr = NULL; \ | |
| 217 for (i = 0; i < nhdr.fhdr.f_nscns && !ptr; i++) \ | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
218 if (strncmp (nhdr.section[i].s_name, name, 8) == 0) \ |
| 8836 | 219 { \ |
| 220 if (nhdr.section[i].s_flags != flags) \ | |
| 221 fprintf (stderr, "unexec: %x flags (%x expected) in %s section.\n", \ | |
| 222 nhdr.section[i].s_flags, flags, name); \ | |
| 223 ptr = nhdr.section + i; \ | |
| 224 } \ | |
| 225 | |
| 226 CHECK_SCNHDR (text_section, _TEXT, STYP_TEXT); | |
| 227 CHECK_SCNHDR (init_section, _INIT, STYP_INIT); | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
228 #ifdef _REL_DYN |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
229 CHECK_SCNHDR (rel_dyn_section, _REL_DYN, STYP_REL_DYN); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
230 #endif /* _REL_DYN */ |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
231 #ifdef _DYNSYM |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
232 CHECK_SCNHDR (dynsym_section, _DYNSYM, STYP_DYNSYM); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
233 #endif /* _REL_DYN */ |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
234 #ifdef _DYNSTR |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
235 CHECK_SCNHDR (dynstr_section, _DYNSTR, STYP_DYNSTR); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
236 #endif /* _REL_DYN */ |
| 8836 | 237 #ifdef _FINI |
| 238 CHECK_SCNHDR (finit_section, _FINI, STYP_FINI); | |
| 239 #endif /* _FINI */ | |
| 240 CHECK_SCNHDR (rdata_section, _RDATA, STYP_RDATA); | |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
241 #ifdef _RCONST |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
242 CHECK_SCNHDR (rconst_section, _RCONST, STYP_RCONST); |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
243 #endif |
| 8836 | 244 #ifdef _PDATA |
| 245 CHECK_SCNHDR (pdata_section, _PDATA, STYP_PDATA); | |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
246 #endif /* _PDATA */ |
| 8836 | 247 #ifdef _GOT |
| 248 CHECK_SCNHDR (got_section, _GOT, STYP_GOT); | |
|
29751
ea3c28a8be00
Include errno.h, string.h, unistd.h. Don't declare errno, strerror.
Dave Love <fx@gnu.org>
parents:
19775
diff
changeset
|
249 #endif /* _GOT */ |
| 8836 | 250 CHECK_SCNHDR (data_section, _DATA, STYP_DATA); |
| 251 #ifdef _XDATA | |
| 252 CHECK_SCNHDR (xdata_section, _XDATA, STYP_XDATA); | |
| 253 #endif /* _XDATA */ | |
| 254 #ifdef _LIT8 | |
| 255 CHECK_SCNHDR (lit8_section, _LIT8, STYP_LIT8); | |
| 256 CHECK_SCNHDR (lit4_section, _LIT4, STYP_LIT4); | |
| 257 #endif /* _LIT8 */ | |
| 258 CHECK_SCNHDR (sdata_section, _SDATA, STYP_SDATA); | |
| 259 CHECK_SCNHDR (sbss_section, _SBSS, STYP_SBSS); | |
| 260 CHECK_SCNHDR (bss_section, _BSS, STYP_BSS); | |
| 261 | |
| 262 | |
| 263 pagesize = getpagesize (); | |
| 264 brk = (((long) (sbrk (0))) + pagesize - 1) & (-pagesize); | |
| 265 | |
| 266 /* Remember the current break */ | |
| 267 | |
| 268 Brk = brk; | |
| 269 | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
270 bcopy (data_section, &old_data_scnhdr, sizeof (old_data_scnhdr)); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
271 |
| 8836 | 272 nhdr.aout.dsize = brk - DATA_START; |
| 273 nhdr.aout.bsize = 0; | |
| 274 if (entry_address == 0) | |
| 275 { | |
| 276 extern DEFAULT_ENTRY_ADDRESS (); | |
| 277 nhdr.aout.entry = (unsigned long)DEFAULT_ENTRY_ADDRESS; | |
| 278 } | |
| 279 else | |
| 280 nhdr.aout.entry = entry_address; | |
| 281 | |
| 282 nhdr.aout.bss_start = nhdr.aout.data_start + nhdr.aout.dsize; | |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
283 |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
284 if (rdata_section != NULL) |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
285 { |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
286 rdata_section->s_size = data_start - DATA_START; |
| 8836 | 287 |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
288 /* Adjust start and virtual addresses of rdata_section, too. */ |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
289 rdata_section->s_vaddr = DATA_START; |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
290 rdata_section->s_paddr = DATA_START; |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
291 rdata_section->s_scnptr = text_section->s_scnptr + nhdr.aout.tsize; |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
292 } |
| 8836 | 293 |
| 294 data_section->s_vaddr = data_start; | |
| 295 data_section->s_paddr = data_start; | |
| 296 data_section->s_size = brk - data_start; | |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
297 |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
298 if (rdata_section != NULL) |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
299 { |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
300 data_section->s_scnptr = rdata_section->s_scnptr + rdata_section->s_size; |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
301 } |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
302 |
| 8836 | 303 vaddr = data_section->s_vaddr + data_section->s_size; |
| 304 scnptr = data_section->s_scnptr + data_section->s_size; | |
| 305 if (lit8_section != NULL) | |
| 306 { | |
| 307 lit8_section->s_vaddr = vaddr; | |
| 308 lit8_section->s_paddr = vaddr; | |
| 309 lit8_section->s_size = 0; | |
| 310 lit8_section->s_scnptr = scnptr; | |
| 311 } | |
| 312 if (lit4_section != NULL) | |
| 313 { | |
| 314 lit4_section->s_vaddr = vaddr; | |
| 315 lit4_section->s_paddr = vaddr; | |
| 316 lit4_section->s_size = 0; | |
| 317 lit4_section->s_scnptr = scnptr; | |
| 318 } | |
| 319 if (sdata_section != NULL) | |
| 320 { | |
| 321 sdata_section->s_vaddr = vaddr; | |
| 322 sdata_section->s_paddr = vaddr; | |
| 323 sdata_section->s_size = 0; | |
| 324 sdata_section->s_scnptr = scnptr; | |
| 325 } | |
| 326 #ifdef _XDATA | |
| 327 if (xdata_section != NULL) | |
| 328 { | |
| 329 xdata_section->s_vaddr = vaddr; | |
| 330 xdata_section->s_paddr = vaddr; | |
| 331 xdata_section->s_size = 0; | |
| 332 xdata_section->s_scnptr = scnptr; | |
| 333 } | |
| 334 #endif | |
| 335 #ifdef _GOT | |
| 336 if (got_section != NULL) | |
| 337 { | |
|
15885
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
338 bcopy (got_section, buffer, sizeof (struct scnhdr)); |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
339 |
| 8836 | 340 got_section->s_vaddr = vaddr; |
| 341 got_section->s_paddr = vaddr; | |
| 342 got_section->s_size = 0; | |
| 343 got_section->s_scnptr = scnptr; | |
| 344 } | |
| 345 #endif /*_GOT */ | |
| 346 if (sbss_section != NULL) | |
| 347 { | |
| 348 sbss_section->s_vaddr = vaddr; | |
| 349 sbss_section->s_paddr = vaddr; | |
| 350 sbss_section->s_size = 0; | |
| 351 sbss_section->s_scnptr = scnptr; | |
| 352 } | |
| 353 if (bss_section != NULL) | |
| 354 { | |
| 355 bss_section->s_vaddr = vaddr; | |
| 356 bss_section->s_paddr = vaddr; | |
| 357 bss_section->s_size = 0; | |
| 358 bss_section->s_scnptr = scnptr; | |
| 359 } | |
| 360 | |
| 361 WRITE (new, (char *)TEXT_START, nhdr.aout.tsize, | |
| 362 "writing text section to %s", new_name); | |
| 363 WRITE (new, (char *)DATA_START, nhdr.aout.dsize, | |
| 364 "writing data section to %s", new_name); | |
| 365 | |
|
15885
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
366 #ifdef _GOT |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
367 #define old_got_section ((struct scnhdr *)buffer) |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
368 |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
369 if (got_section != NULL) |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
370 { |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
371 SEEK (new, old_got_section->s_scnptr, |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
372 "seeking to start of got_section in %s", new_name); |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
373 WRITE (new, oldptr + old_got_section->s_scnptr, old_got_section->s_size, |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
374 "writing new got_section of %s", new_name); |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
375 SEEK (new, nhdr.aout.tsize + nhdr.aout.dsize, |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
376 "seeking to end of data section of %s", new_name); |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
377 } |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
378 |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
379 #undef old_got_section |
|
67d9f8e91688
(unexec): Copy the .got section.
Richard M. Stallman <rms@gnu.org>
parents:
14186
diff
changeset
|
380 #endif |
| 8836 | 381 |
| 382 /* | |
| 383 * Construct new symbol table header | |
| 384 */ | |
| 385 | |
| 386 bcopy (oldptr + nhdr.fhdr.f_symptr, buffer, cbHDRR); | |
| 387 | |
| 388 #define symhdr ((pHDRR)buffer) | |
| 389 newsyms = nhdr.aout.tsize + nhdr.aout.dsize; | |
| 390 symrel = newsyms - nhdr.fhdr.f_symptr; | |
| 391 nhdr.fhdr.f_symptr = newsyms; | |
| 392 symhdr->cbLineOffset += symrel; | |
| 393 symhdr->cbDnOffset += symrel; | |
| 394 symhdr->cbPdOffset += symrel; | |
| 395 symhdr->cbSymOffset += symrel; | |
| 396 symhdr->cbOptOffset += symrel; | |
| 397 symhdr->cbAuxOffset += symrel; | |
| 398 symhdr->cbSsOffset += symrel; | |
| 399 symhdr->cbSsExtOffset += symrel; | |
| 400 symhdr->cbFdOffset += symrel; | |
| 401 symhdr->cbRfdOffset += symrel; | |
| 402 symhdr->cbExtOffset += symrel; | |
| 403 | |
| 404 WRITE (new, buffer, cbHDRR, "writing symbol table header of %s", new_name); | |
| 405 | |
| 406 /* | |
| 407 * Copy the symbol table and line numbers | |
| 408 */ | |
| 409 WRITE (new, oldptr + ohdr.fhdr.f_symptr + cbHDRR, | |
| 410 stat.st_size - ohdr.fhdr.f_symptr - cbHDRR, | |
| 411 "writing symbol table of %s", new_name); | |
| 412 | |
|
18780
a9b9bd05a8df
(unexec): Don't call update_dynamic_symbols if static link.
Richard M. Stallman <rms@gnu.org>
parents:
18639
diff
changeset
|
413 #ifdef _REL_DYN |
|
a9b9bd05a8df
(unexec): Don't call update_dynamic_symbols if static link.
Richard M. Stallman <rms@gnu.org>
parents:
18639
diff
changeset
|
414 if (rel_dyn_section) |
|
a9b9bd05a8df
(unexec): Don't call update_dynamic_symbols if static link.
Richard M. Stallman <rms@gnu.org>
parents:
18639
diff
changeset
|
415 update_dynamic_symbols (oldptr, new_name, new, nhdr.aout); |
|
a9b9bd05a8df
(unexec): Don't call update_dynamic_symbols if static link.
Richard M. Stallman <rms@gnu.org>
parents:
18639
diff
changeset
|
416 #endif |
| 8836 | 417 |
| 418 #undef symhdr | |
| 419 | |
| 420 SEEK (new, 0, "seeking to start of header in %s", new_name); | |
| 421 WRITE (new, &nhdr, sizeof (nhdr), | |
| 422 "writing header of %s", new_name); | |
| 423 | |
| 424 close (old); | |
| 425 close (new); | |
| 426 mark_x (new_name); | |
| 427 } | |
| 428 | |
| 429 | |
|
30916
d4a0bd8a25a3
Prototype fatal_unexec, mark_x, update_dynamic_symbols. Declare
Dave Love <fx@gnu.org>
parents:
29751
diff
changeset
|
430 static void |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
431 update_dynamic_symbols (old, new_name, new, aout) |
|
9693
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
432 char *old; /* Pointer to old executable */ |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
433 char *new_name; /* Name of new executable */ |
|
b6ce6e2ccd15
(Brk): Declare as unsigned long.
Richard M. Stallman <rms@gnu.org>
parents:
8836
diff
changeset
|
434 int new; /* File descriptor for new executable */ |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
435 struct aouthdr aout; /* a.out info from the file header */ |
| 8836 | 436 { |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
437 #if !defined (__linux__) && !defined (__NetBSD__) && !defined (__OpenBSD__) |
|
18218
c8bf40360ae7
(unexec): Call update_dynamic_symbols unconditionally.
Richard M. Stallman <rms@gnu.org>
parents:
18103
diff
changeset
|
438 |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
439 typedef struct dynrel_info { |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
440 char * addr; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
441 unsigned type:8; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
442 unsigned index:24; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
443 unsigned info:8; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
444 unsigned pad:8; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
445 } dr_info; |
| 8836 | 446 |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
447 int nsyms = rel_dyn_section->s_size / sizeof (struct dynrel_info); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
448 int i; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
449 dr_info * rd_base = (dr_info *) (old + rel_dyn_section->s_scnptr); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
450 Elf32_Sym * ds_base = (Elf32_Sym *) (old + dynsym_section->s_scnptr); |
| 8836 | 451 |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
452 for (i = 0; i < nsyms; i++) { |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
453 register Elf32_Sym x; |
| 8836 | 454 |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
455 if (rd_base[i].index == 0) |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
456 continue; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
457 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
458 x = ds_base[rd_base[i].index]; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
459 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
460 #if 0 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
461 fprintf (stderr, "Object inspected: %s, addr = %lx, shndx = %x", |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
462 old + dynstr_section->s_scnptr + x.st_name, rd_base[i].addr, x.st_shndx); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
463 #endif |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
464 |
| 8836 | 465 |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
466 if ((ELF32_ST_BIND (x.st_info) == STB_GLOBAL) |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
467 && (x.st_shndx == 0) |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
468 /* && (x.st_value == NULL) */ |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
469 ) { |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
470 /* OK, this is probably a reference to an object in a shared |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
471 library, so copy the old value. This is done in several steps: |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
472 1. reladdr is the address of the location in question relative to |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
473 the start of the data section, |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
474 2. oldref is the addr is the mapped in temacs executable, |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
475 3. newref is the address of the location in question in the |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
476 undumped executable, |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
477 4. len is the size of the object reference in bytes -- |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
478 currently only 4 (long) and 8 (quad) are supported. |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
479 */ |
|
18639
2ad503f49fd7
(update_dynamic_symbols): Add cast when setting reladdr.
Richard M. Stallman <rms@gnu.org>
parents:
18218
diff
changeset
|
480 register unsigned long reladdr = (long)rd_base[i].addr - old_data_scnhdr.s_vaddr; |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
481 char * oldref = old + old_data_scnhdr.s_scnptr + reladdr; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
482 unsigned long newref = aout.tsize + reladdr; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
483 int len; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
484 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
485 #if 0 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
486 fprintf (stderr, "...relocated\n"); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
487 #endif |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
488 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
489 if (rd_base[i].type == R_REFLONG) |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
490 len = 4; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
491 else if (rd_base[i].type == R_REFQUAD) |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
492 len = 8; |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
493 else |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
494 fatal_unexec ("unrecognized relocation type in .dyn.rel section (symbol #%d)", i); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
495 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
496 SEEK (new, newref, "seeking to dynamic symbol in %s", new_name); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
497 WRITE (new, oldref, len, "writing old dynrel info in %s", new_name); |
| 8836 | 498 } |
| 499 | |
|
15893
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
500 #if 0 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
501 else |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
502 fprintf (stderr, "...not relocated\n"); |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
503 #endif |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
504 |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
505 } |
|
56d0b28891da
Conditionalize the changes below on not __linux__.
Richard M. Stallman <rms@gnu.org>
parents:
15885
diff
changeset
|
506 |
|
19775
70b808126773
Test __OpenBSD__ along with __NetBSD__.
Richard M. Stallman <rms@gnu.org>
parents:
19336
diff
changeset
|
507 #endif /* not __linux__ and not __NetBSD__ and not __OpenBSD__ */ |
| 8836 | 508 } |
| 509 | |
| 510 | |
| 511 /* | |
| 512 * mark_x | |
| 513 * | |
| 514 * After successfully building the new a.out, mark it executable | |
| 515 */ | |
| 516 | |
| 517 static void | |
| 518 mark_x (name) | |
| 519 char *name; | |
| 520 { | |
| 521 struct stat sbuf; | |
| 522 int um = umask (777); | |
| 523 umask (um); | |
| 524 if (stat (name, &sbuf) < 0) | |
| 525 fatal_unexec ("getting protection on %s", name); | |
| 526 sbuf.st_mode |= 0111 & ~um; | |
| 527 if (chmod (name, sbuf.st_mode) < 0) | |
| 528 fatal_unexec ("setting protection on %s", name); | |
| 529 } | |
| 530 | |
| 531 static void | |
|
13512
738750464578
(fatal_unexec): Don't use varargs.
Richard M. Stallman <rms@gnu.org>
parents:
12826
diff
changeset
|
532 fatal_unexec (s, arg) |
|
738750464578
(fatal_unexec): Don't use varargs.
Richard M. Stallman <rms@gnu.org>
parents:
12826
diff
changeset
|
533 char *s; |
|
738750464578
(fatal_unexec): Don't use varargs.
Richard M. Stallman <rms@gnu.org>
parents:
12826
diff
changeset
|
534 char *arg; |
| 8836 | 535 { |
| 536 if (errno == EEOF) | |
| 537 fputs ("unexec: unexpected end of file, ", stderr); | |
| 538 else | |
| 539 fprintf (stderr, "unexec: %s, ", strerror (errno)); | |
|
13512
738750464578
(fatal_unexec): Don't use varargs.
Richard M. Stallman <rms@gnu.org>
parents:
12826
diff
changeset
|
540 fprintf (stderr, s, arg); |
| 8836 | 541 fputs (".\n", stderr); |
| 542 exit (1); | |
| 543 } |
