428
|
1 /* Copyright (C) 1985, 1986, 1987, 1988, 1990, 1992, 1993
|
|
2 Free Software Foundation, Inc.
|
|
3
|
|
4 This file is part of XEmacs.
|
|
5
|
|
6 XEmacs is free software; you can redistribute it and/or modify it
|
|
7 under the terms of the GNU General Public License as published by the
|
|
8 Free Software Foundation; either version 2, or (at your option) any
|
|
9 later version.
|
|
10
|
|
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
14 for more details.
|
|
15
|
|
16 You should have received a copy of the GNU General Public License
|
|
17 along with XEmacs; see the file COPYING. If not, write to
|
|
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
19 Boston, MA 02111-1307, USA. */
|
|
20
|
|
21 /* Synched up with: FSF 20.4. */
|
|
22
|
|
23 /*
|
|
24 * unexec.c - Convert a running program into an a.out file.
|
|
25 *
|
|
26 * Author: Spencer W. Thomas
|
|
27 * Computer Science Dept.
|
|
28 * University of Utah
|
|
29 * Date: Tue Mar 2 1982
|
|
30 * Modified heavily since then.
|
|
31 *
|
|
32 * Synopsis:
|
|
33 * unexec (new_name, a_name, data_start, bss_start, entry_address)
|
|
34 * char *new_name, *a_name;
|
|
35 * unsigned data_start, bss_start, entry_address;
|
|
36 *
|
|
37 * Takes a snapshot of the program and makes an a.out format file in the
|
|
38 * file named by the string argument new_name.
|
|
39 * If a_name is non-NULL, the symbol table will be taken from the given file.
|
|
40 * On some machines, an existing a_name file is required.
|
|
41 *
|
|
42 * The boundaries within the a.out file may be adjusted with the data_start
|
|
43 * and bss_start arguments. Either or both may be given as 0 for defaults.
|
|
44 *
|
|
45 * Data_start gives the boundary between the text segment and the data
|
|
46 * segment of the program. The text segment can contain shared, read-only
|
|
47 * program code and literal data, while the data segment is always unshared
|
|
48 * and unprotected. Data_start gives the lowest unprotected address.
|
|
49 * The value you specify may be rounded down to a suitable boundary
|
|
50 * as required by the machine you are using.
|
|
51 *
|
|
52 * Specifying zero for data_start means the boundary between text and data
|
|
53 * should not be the same as when the program was loaded.
|
|
54 * If NO_REMAP is defined, the argument data_start is ignored and the
|
|
55 * segment boundaries are never changed.
|
|
56 *
|
|
57 * Bss_start indicates how much of the data segment is to be saved in the
|
|
58 * a.out file and restored when the program is executed. It gives the lowest
|
|
59 * unsaved address, and is rounded up to a page boundary. The default when 0
|
|
60 * is given assumes that the entire data segment is to be stored, including
|
|
61 * the previous data and bss as well as any additional storage allocated with
|
|
62 * break (2).
|
|
63 *
|
|
64 * The new file is set up to start at entry_address.
|
|
65 *
|
|
66 * If you make improvements I'd like to get them too.
|
|
67 * harpo!utah-cs!thomas, thomas@Utah-20
|
|
68 *
|
|
69 */
|
|
70
|
|
71 /* Even more heavily modified by james@bigtex.cactus.org of Dell Computer Co.
|
|
72 * ELF support added.
|
|
73 *
|
|
74 * Basic theory: the data space of the running process needs to be
|
|
75 * dumped to the output file. Normally we would just enlarge the size
|
|
76 * of .data, scooting everything down. But we can't do that in ELF,
|
|
77 * because there is often something between the .data space and the
|
|
78 * .bss space.
|
|
79 *
|
|
80 * In the temacs dump below, notice that the Global Offset Table
|
|
81 * (.got) and the Dynamic link data (.dynamic) come between .data1 and
|
|
82 * .bss. It does not work to overlap .data with these fields.
|
|
83 *
|
|
84 * The solution is to create a new .data segment. This segment is
|
|
85 * filled with data from the current process. Since the contents of
|
|
86 * various sections refer to sections by index, the new .data segment
|
|
87 * is made the last in the table to avoid changing any existing index.
|
|
88
|
|
89 * This is an example of how the section headers are changed. "Addr"
|
|
90 * is a process virtual address. "Offset" is a file offset.
|
|
91
|
|
92 raid:/nfs/raid/src/dist-18.56/src> dump -h temacs
|
|
93
|
|
94 temacs:
|
|
95
|
|
96 **** SECTION HEADER TABLE ****
|
|
97 [No] Type Flags Addr Offset Size Name
|
|
98 Link Info Adralgn Entsize
|
|
99
|
|
100 [1] 1 2 0x80480d4 0xd4 0x13 .interp
|
|
101 0 0 0x1 0
|
|
102
|
|
103 [2] 5 2 0x80480e8 0xe8 0x388 .hash
|
|
104 3 0 0x4 0x4
|
|
105
|
|
106 [3] 11 2 0x8048470 0x470 0x7f0 .dynsym
|
|
107 4 1 0x4 0x10
|
|
108
|
|
109 [4] 3 2 0x8048c60 0xc60 0x3ad .dynstr
|
|
110 0 0 0x1 0
|
|
111
|
|
112 [5] 9 2 0x8049010 0x1010 0x338 .rel.plt
|
|
113 3 7 0x4 0x8
|
|
114
|
|
115 [6] 1 6 0x8049348 0x1348 0x3 .init
|
|
116 0 0 0x4 0
|
|
117
|
|
118 [7] 1 6 0x804934c 0x134c 0x680 .plt
|
|
119 0 0 0x4 0x4
|
|
120
|
|
121 [8] 1 6 0x80499cc 0x19cc 0x3c56f .text
|
|
122 0 0 0x4 0
|
|
123
|
|
124 [9] 1 6 0x8085f3c 0x3df3c 0x3 .fini
|
|
125 0 0 0x4 0
|
|
126
|
|
127 [10] 1 2 0x8085f40 0x3df40 0x69c .rodata
|
|
128 0 0 0x4 0
|
|
129
|
|
130 [11] 1 2 0x80865dc 0x3e5dc 0xd51 .rodata1
|
|
131 0 0 0x4 0
|
|
132
|
|
133 [12] 1 3 0x8088330 0x3f330 0x20afc .data
|
|
134 0 0 0x4 0
|
|
135
|
|
136 [13] 1 3 0x80a8e2c 0x5fe2c 0x89d .data1
|
|
137 0 0 0x4 0
|
|
138
|
|
139 [14] 1 3 0x80a96cc 0x606cc 0x1a8 .got
|
|
140 0 0 0x4 0x4
|
|
141
|
|
142 [15] 6 3 0x80a9874 0x60874 0x80 .dynamic
|
|
143 4 0 0x4 0x8
|
|
144
|
|
145 [16] 8 3 0x80a98f4 0x608f4 0x449c .bss
|
|
146 0 0 0x4 0
|
|
147
|
|
148 [17] 2 0 0 0x608f4 0x9b90 .symtab
|
|
149 18 371 0x4 0x10
|
|
150
|
|
151 [18] 3 0 0 0x6a484 0x8526 .strtab
|
|
152 0 0 0x1 0
|
|
153
|
|
154 [19] 3 0 0 0x729aa 0x93 .shstrtab
|
|
155 0 0 0x1 0
|
|
156
|
|
157 [20] 1 0 0 0x72a3d 0x68b7 .comment
|
|
158 0 0 0x1 0
|
|
159
|
|
160 raid:/nfs/raid/src/dist-18.56/src> dump -h xemacs
|
|
161
|
|
162 xemacs:
|
|
163
|
|
164 **** SECTION HEADER TABLE ****
|
|
165 [No] Type Flags Addr Offset Size Name
|
|
166 Link Info Adralgn Entsize
|
|
167
|
|
168 [1] 1 2 0x80480d4 0xd4 0x13 .interp
|
|
169 0 0 0x1 0
|
|
170
|
|
171 [2] 5 2 0x80480e8 0xe8 0x388 .hash
|
|
172 3 0 0x4 0x4
|
|
173
|
|
174 [3] 11 2 0x8048470 0x470 0x7f0 .dynsym
|
|
175 4 1 0x4 0x10
|
|
176
|
|
177 [4] 3 2 0x8048c60 0xc60 0x3ad .dynstr
|
|
178 0 0 0x1 0
|
|
179
|
|
180 [5] 9 2 0x8049010 0x1010 0x338 .rel.plt
|
|
181 3 7 0x4 0x8
|
|
182
|
|
183 [6] 1 6 0x8049348 0x1348 0x3 .init
|
|
184 0 0 0x4 0
|
|
185
|
|
186 [7] 1 6 0x804934c 0x134c 0x680 .plt
|
|
187 0 0 0x4 0x4
|
|
188
|
|
189 [8] 1 6 0x80499cc 0x19cc 0x3c56f .text
|
|
190 0 0 0x4 0
|
|
191
|
|
192 [9] 1 6 0x8085f3c 0x3df3c 0x3 .fini
|
|
193 0 0 0x4 0
|
|
194
|
|
195 [10] 1 2 0x8085f40 0x3df40 0x69c .rodata
|
|
196 0 0 0x4 0
|
|
197
|
|
198 [11] 1 2 0x80865dc 0x3e5dc 0xd51 .rodata1
|
|
199 0 0 0x4 0
|
|
200
|
|
201 [12] 1 3 0x8088330 0x3f330 0x20afc .data
|
|
202 0 0 0x4 0
|
|
203
|
|
204 [13] 1 3 0x80a8e2c 0x5fe2c 0x89d .data1
|
|
205 0 0 0x4 0
|
|
206
|
|
207 [14] 1 3 0x80a96cc 0x606cc 0x1a8 .got
|
|
208 0 0 0x4 0x4
|
|
209
|
|
210 [15] 6 3 0x80a9874 0x60874 0x80 .dynamic
|
|
211 4 0 0x4 0x8
|
|
212
|
|
213 [16] 8 3 0x80c6800 0x7d800 0 .bss
|
|
214 0 0 0x4 0
|
|
215
|
|
216 [17] 2 0 0 0x7d800 0x9b90 .symtab
|
|
217 18 371 0x4 0x10
|
|
218
|
|
219 [18] 3 0 0 0x87390 0x8526 .strtab
|
|
220 0 0 0x1 0
|
|
221
|
|
222 [19] 3 0 0 0x8f8b6 0x93 .shstrtab
|
|
223 0 0 0x1 0
|
|
224
|
|
225 [20] 1 0 0 0x8f949 0x68b7 .comment
|
|
226 0 0 0x1 0
|
|
227
|
|
228 [21] 1 3 0x80a98f4 0x608f4 0x1cf0c .data
|
|
229 0 0 0x4 0
|
|
230
|
|
231 * This is an example of how the file header is changed. "Shoff" is
|
|
232 * the section header offset within the file. Since that table is
|
|
233 * after the new .data section, it is moved. "Shnum" is the number of
|
|
234 * sections, which we increment.
|
|
235 *
|
|
236 * "Phoff" is the file offset to the program header. "Phentsize" and
|
|
237 * "Shentsz" are the program and section header entries sizes respectively.
|
|
238 * These can be larger than the apparent struct sizes.
|
|
239
|
|
240 raid:/nfs/raid/src/dist-18.56/src> dump -f temacs
|
|
241
|
|
242 temacs:
|
|
243
|
|
244 **** ELF HEADER ****
|
|
245 Class Data Type Machine Version
|
|
246 Entry Phoff Shoff Flags Ehsize
|
|
247 Phentsize Phnum Shentsz Shnum Shstrndx
|
|
248
|
|
249 1 1 2 3 1
|
|
250 0x80499cc 0x34 0x792f4 0 0x34
|
|
251 0x20 5 0x28 21 19
|
|
252
|
|
253 raid:/nfs/raid/src/dist-18.56/src> dump -f xemacs
|
|
254
|
|
255 xemacs:
|
|
256
|
|
257 **** ELF HEADER ****
|
|
258 Class Data Type Machine Version
|
|
259 Entry Phoff Shoff Flags Ehsize
|
|
260 Phentsize Phnum Shentsz Shnum Shstrndx
|
|
261
|
|
262 1 1 2 3 1
|
|
263 0x80499cc 0x34 0x96200 0 0x34
|
|
264 0x20 5 0x28 22 19
|
|
265
|
|
266 * These are the program headers. "Offset" is the file offset to the
|
|
267 * segment. "Vaddr" is the memory load address. "Filesz" is the
|
|
268 * segment size as it appears in the file, and "Memsz" is the size in
|
|
269 * memory. Below, the third segment is the code and the fourth is the
|
|
270 * data: the difference between Filesz and Memsz is .bss
|
|
271
|
|
272 raid:/nfs/raid/src/dist-18.56/src> dump -o temacs
|
|
273
|
|
274 temacs:
|
|
275 ***** PROGRAM EXECUTION HEADER *****
|
|
276 Type Offset Vaddr Paddr
|
|
277 Filesz Memsz Flags Align
|
|
278
|
|
279 6 0x34 0x8048034 0
|
|
280 0xa0 0xa0 5 0
|
|
281
|
|
282 3 0xd4 0 0
|
|
283 0x13 0 4 0
|
|
284
|
|
285 1 0x34 0x8048034 0
|
|
286 0x3f2f9 0x3f2f9 5 0x1000
|
|
287
|
|
288 1 0x3f330 0x8088330 0
|
|
289 0x215c4 0x25a60 7 0x1000
|
|
290
|
|
291 2 0x60874 0x80a9874 0
|
|
292 0x80 0 7 0
|
|
293
|
|
294 raid:/nfs/raid/src/dist-18.56/src> dump -o xemacs
|
|
295
|
|
296 xemacs:
|
|
297 ***** PROGRAM EXECUTION HEADER *****
|
|
298 Type Offset Vaddr Paddr
|
|
299 Filesz Memsz Flags Align
|
|
300
|
|
301 6 0x34 0x8048034 0
|
|
302 0xa0 0xa0 5 0
|
|
303
|
|
304 3 0xd4 0 0
|
|
305 0x13 0 4 0
|
|
306
|
|
307 1 0x34 0x8048034 0
|
|
308 0x3f2f9 0x3f2f9 5 0x1000
|
|
309
|
|
310 1 0x3f330 0x8088330 0
|
|
311 0x3e4d0 0x3e4d0 7 0x1000
|
|
312
|
|
313 2 0x60874 0x80a9874 0
|
|
314 0x80 0 7 0
|
|
315
|
|
316
|
|
317 */
|
|
318
|
|
319 /* Modified by wtien@urbana.mcd.mot.com of Motorola Inc.
|
|
320 *
|
|
321 * The above mechanism does not work if the unexeced ELF file is being
|
|
322 * re-layout by other applications (such as `strip'). All the applications
|
|
323 * that re-layout the internal of ELF will layout all sections in ascending
|
|
324 * order of their file offsets. After the re-layout, the data2 section will
|
|
325 * still be the LAST section in the section header vector, but its file offset
|
|
326 * is now being pushed far away down, and causes part of it not to be mapped
|
|
327 * in (ie. not covered by the load segment entry in PHDR vector), therefore
|
|
328 * causes the new binary to fail.
|
|
329 *
|
|
330 * The solution is to modify the unexec algorithm to insert the new data2
|
|
331 * section header right before the new bss section header, so their file
|
|
332 * offsets will be in the ascending order. Since some of the section's (all
|
|
333 * sections AFTER the bss section) indexes are now changed, we also need to
|
|
334 * modify some fields to make them point to the right sections. This is done
|
|
335 * by macro PATCH_INDEX. All the fields that need to be patched are:
|
|
336 *
|
|
337 * 1. ELF header e_shstrndx field.
|
|
338 * 2. section header sh_link and sh_info field.
|
|
339 * 3. symbol table entry st_shndx field.
|
|
340 *
|
|
341 * The above example now should look like:
|
|
342
|
|
343 **** SECTION HEADER TABLE ****
|
|
344 [No] Type Flags Addr Offset Size Name
|
|
345 Link Info Adralgn Entsize
|
|
346
|
|
347 [1] 1 2 0x80480d4 0xd4 0x13 .interp
|
|
348 0 0 0x1 0
|
|
349
|
|
350 [2] 5 2 0x80480e8 0xe8 0x388 .hash
|
|
351 3 0 0x4 0x4
|
|
352
|
|
353 [3] 11 2 0x8048470 0x470 0x7f0 .dynsym
|
|
354 4 1 0x4 0x10
|
|
355
|
|
356 [4] 3 2 0x8048c60 0xc60 0x3ad .dynstr
|
|
357 0 0 0x1 0
|
|
358
|
|
359 [5] 9 2 0x8049010 0x1010 0x338 .rel.plt
|
|
360 3 7 0x4 0x8
|
|
361
|
|
362 [6] 1 6 0x8049348 0x1348 0x3 .init
|
|
363 0 0 0x4 0
|
|
364
|
|
365 [7] 1 6 0x804934c 0x134c 0x680 .plt
|
|
366 0 0 0x4 0x4
|
|
367
|
|
368 [8] 1 6 0x80499cc 0x19cc 0x3c56f .text
|
|
369 0 0 0x4 0
|
|
370
|
|
371 [9] 1 6 0x8085f3c 0x3df3c 0x3 .fini
|
|
372 0 0 0x4 0
|
|
373
|
|
374 [10] 1 2 0x8085f40 0x3df40 0x69c .rodata
|
|
375 0 0 0x4 0
|
|
376
|
|
377 [11] 1 2 0x80865dc 0x3e5dc 0xd51 .rodata1
|
|
378 0 0 0x4 0
|
|
379
|
|
380 [12] 1 3 0x8088330 0x3f330 0x20afc .data
|
|
381 0 0 0x4 0
|
|
382
|
|
383 [13] 1 3 0x80a8e2c 0x5fe2c 0x89d .data1
|
|
384 0 0 0x4 0
|
|
385
|
|
386 [14] 1 3 0x80a96cc 0x606cc 0x1a8 .got
|
|
387 0 0 0x4 0x4
|
|
388
|
|
389 [15] 6 3 0x80a9874 0x60874 0x80 .dynamic
|
|
390 4 0 0x4 0x8
|
|
391
|
|
392 [16] 1 3 0x80a98f4 0x608f4 0x1cf0c .data
|
|
393 0 0 0x4 0
|
|
394
|
|
395 [17] 8 3 0x80c6800 0x7d800 0 .bss
|
|
396 0 0 0x4 0
|
|
397
|
|
398 [18] 2 0 0 0x7d800 0x9b90 .symtab
|
|
399 19 371 0x4 0x10
|
|
400
|
|
401 [19] 3 0 0 0x87390 0x8526 .strtab
|
|
402 0 0 0x1 0
|
|
403
|
|
404 [20] 3 0 0 0x8f8b6 0x93 .shstrtab
|
|
405 0 0 0x1 0
|
|
406
|
|
407 [21] 1 0 0 0x8f949 0x68b7 .comment
|
|
408 0 0 0x1 0
|
|
409
|
|
410 */
|
|
411
|
|
412 #ifndef emacs
|
|
413 #define fatal(a, b, c) fprintf (stderr, a, b, c), exit (1)
|
|
414 #else
|
|
415 #include <config.h>
|
2844
|
416 #include "lisp.h"
|
|
417 extern DOESNT_RETURN fatal (const CIbyte *, ...);
|
428
|
418 #endif
|
|
419
|
|
420 #include <sys/types.h>
|
|
421 #include <stdio.h>
|
|
422 #include <sys/stat.h>
|
|
423 #include <memory.h>
|
|
424 #include <string.h>
|
|
425 #include <errno.h>
|
|
426 #include <unistd.h>
|
|
427 #include <fcntl.h>
|
446
|
428 #ifdef HAVE_ELF_H
|
428
|
429 #include <elf.h>
|
|
430 #endif
|
|
431 #include <sys/mman.h>
|
|
432 #if defined (__sony_news) && defined (_SYSTYPE_SYSV)
|
|
433 #include <sys/elf_mips.h>
|
|
434 #include <sym.h>
|
|
435 #endif /* __sony_news && _SYSTYPE_SYSV */
|
|
436 #ifdef __sgi
|
|
437 #include <sym.h> /* for HDRR declaration */
|
|
438 #endif /* __sgi */
|
|
439
|
2286
|
440 #include "compiler.h"
|
|
441
|
428
|
442 #if defined (__alpha__) && !defined (__NetBSD__) && !defined (__OpenBSD__)
|
|
443 /* Declare COFF debugging symbol table. This used to be in
|
|
444 /usr/include/sym.h, but this file is no longer included in Red Hat
|
|
445 5.0 and presumably in any other glibc 2.x based distribution. */
|
|
446 typedef struct {
|
|
447 short magic;
|
|
448 short vstamp;
|
|
449 int ilineMax;
|
|
450 int idnMax;
|
|
451 int ipdMax;
|
|
452 int isymMax;
|
|
453 int ioptMax;
|
|
454 int iauxMax;
|
|
455 int issMax;
|
|
456 int issExtMax;
|
|
457 int ifdMax;
|
|
458 int crfd;
|
|
459 int iextMax;
|
|
460 long cbLine;
|
|
461 long cbLineOffset;
|
|
462 long cbDnOffset;
|
|
463 long cbPdOffset;
|
|
464 long cbSymOffset;
|
|
465 long cbOptOffset;
|
|
466 long cbAuxOffset;
|
|
467 long cbSsOffset;
|
|
468 long cbSsExtOffset;
|
|
469 long cbFdOffset;
|
|
470 long cbRfdOffset;
|
|
471 long cbExtOffset;
|
|
472 } HDRR, *pHDRR;
|
|
473 #define cbHDRR sizeof(HDRR)
|
|
474 #define hdrNil ((pHDRR)0)
|
|
475 #endif
|
|
476
|
|
477 #ifdef __OpenBSD__
|
|
478 # include <sys/exec_elf.h>
|
|
479 #endif
|
|
480
|
2987
|
481 #if defined(__FreeBSD__) && (defined(__alpha__) || defined(_LP64))
|
2687
|
482 # ifdef __STDC__
|
|
483 # define ElfW(type) Elf64_##type
|
|
484 # else
|
|
485 # define ElfW(type) Elf64_/**/type
|
|
486 # endif
|
|
487 #endif
|
|
488
|
428
|
489 #if __GNU_LIBRARY__ - 0 >= 6
|
|
490 # include <link.h> /* get ElfW etc */
|
|
491 #endif
|
|
492
|
|
493 #ifndef ElfW
|
|
494 # ifdef __STDC__
|
|
495 # define ElfW(type) Elf32_##type
|
|
496 # else
|
|
497 # define ElfW(type) Elf32_/**/type
|
|
498 # endif
|
|
499 #endif
|
|
500
|
|
501 #ifndef ELF_BSS_SECTION_NAME
|
|
502 #define ELF_BSS_SECTION_NAME ".bss"
|
|
503 #endif
|
|
504
|
|
505 /* Get the address of a particular section or program header entry,
|
|
506 * accounting for the size of the entries.
|
|
507 */
|
|
508 /*
|
|
509 On PPC Reference Platform running Solaris 2.5.1
|
|
510 the plt section is also of type NOBI like the bss section.
|
|
511 (not really stored) and therefore sections after the bss
|
|
512 section start at the plt offset. The plt section is always
|
|
513 the one just before the bss section.
|
|
514 Thus, we modify the test from
|
|
515 if (NEW_SECTION_H (nn).sh_offset >= new_data2_offset)
|
|
516 to
|
|
517 if (NEW_SECTION_H (nn).sh_offset >=
|
|
518 OLD_SECTION_H (old_bss_index-1).sh_offset)
|
|
519 This is just a hack. We should put the new data section
|
|
520 before the .plt section.
|
|
521 And we should not have this routine at all but use
|
|
522 the libelf library to read the old file and create the new
|
|
523 file.
|
|
524 The changed code is minimal and depends on prep set in m/prep.h
|
|
525 Erik Deumens
|
|
526 Quantum Theory Project
|
|
527 University of Florida
|
|
528 deumens@qtp.ufl.edu
|
|
529 Apr 23, 1996
|
|
530 */
|
|
531
|
|
532 #define OLD_SECTION_H(n) \
|
|
533 (*(ElfW(Shdr) *) ((byte *) old_section_h + old_file_h->e_shentsize * (n)))
|
|
534 #define NEW_SECTION_H(n) \
|
|
535 (*(ElfW(Shdr) *) ((byte *) new_section_h + new_file_h->e_shentsize * (n)))
|
|
536 #define OLD_PROGRAM_H(n) \
|
|
537 (*(ElfW(Phdr) *) ((byte *) old_program_h + old_file_h->e_phentsize * (n)))
|
|
538 #define NEW_PROGRAM_H(n) \
|
|
539 (*(ElfW(Phdr) *) ((byte *) new_program_h + new_file_h->e_phentsize * (n)))
|
|
540
|
|
541 #define PATCH_INDEX(n) \
|
|
542 do { \
|
|
543 if ((int) (n) >= old_bss_index) \
|
|
544 (n)++; } while (0)
|
|
545 typedef unsigned char byte;
|
|
546
|
|
547 /* Round X up to a multiple of Y. */
|
|
548
|
|
549 static ElfW(Addr)
|
|
550 round_up (ElfW(Addr) x, ElfW(Addr) y)
|
|
551 {
|
|
552 int rem = x % y;
|
|
553 if (rem == 0)
|
|
554 return x;
|
|
555 return x - rem + y;
|
|
556 }
|
|
557
|
|
558 /* ****************************************************************
|
|
559 * unexec
|
|
560 *
|
|
561 * driving logic.
|
|
562 *
|
|
563 * In ELF, this works by replacing the old .bss section with a new
|
|
564 * .data section, and inserting an empty .bss immediately afterwards.
|
|
565 *
|
|
566 */
|
2844
|
567 int
|
|
568 unexec (Extbyte *new_name, Extbyte *old_name, unsigned int UNUSED (data_start),
|
2286
|
569 unsigned int UNUSED (bss_start), unsigned int UNUSED (entry_address))
|
428
|
570 {
|
|
571 int new_file, old_file, new_file_size;
|
|
572
|
|
573 /* Pointers to the base of the image of the two files. */
|
|
574 caddr_t old_base, new_base;
|
|
575
|
|
576 /* Pointers to the file, program and section headers for the old and new
|
|
577 * files.
|
|
578 */
|
|
579 ElfW(Ehdr) *old_file_h, *new_file_h;
|
|
580 ElfW(Phdr) *old_program_h, *new_program_h;
|
|
581 ElfW(Shdr) *old_section_h, *new_section_h;
|
|
582
|
|
583 /* Point to the section name table in the old file */
|
|
584 char *old_section_names;
|
|
585
|
|
586 ElfW(Addr) old_bss_addr, new_bss_addr;
|
|
587 ElfW(Word) old_bss_size, new_data2_size;
|
|
588 ElfW(Off) new_data2_offset;
|
|
589 ElfW(Addr) new_data2_addr;
|
|
590
|
|
591 int n, nn, old_bss_index, old_data_index, new_data2_index;
|
|
592 int old_sbss_index, old_mdebug_index;
|
|
593 struct stat stat_buf;
|
|
594
|
|
595 /* Open the old file & map it into the address space. */
|
|
596
|
|
597 old_file = open (old_name, O_RDONLY);
|
|
598
|
|
599 if (old_file < 0)
|
|
600 fatal ("Can't open %s for reading: errno %d\n", old_name, errno);
|
|
601
|
|
602 if (fstat (old_file, &stat_buf) == -1)
|
|
603 fatal ("Can't fstat (%s): errno %d\n", old_name, errno);
|
|
604
|
|
605 old_base = (caddr_t) mmap (0, stat_buf.st_size, PROT_READ, MAP_SHARED, old_file, 0);
|
|
606
|
|
607 if (old_base == (caddr_t) -1)
|
|
608 fatal ("Can't mmap (%s): errno %d\n", old_name, errno);
|
|
609
|
|
610 #ifdef DEBUG
|
|
611 fprintf (stderr, "mmap (%s, %x) -> %x\n", old_name, stat_buf.st_size,
|
|
612 old_base);
|
|
613 #endif
|
|
614
|
|
615 /* Get pointers to headers & section names */
|
|
616
|
|
617 old_file_h = (ElfW(Ehdr) *) old_base;
|
|
618 old_program_h = (ElfW(Phdr) *) ((byte *) old_base + old_file_h->e_phoff);
|
|
619 old_section_h = (ElfW(Shdr) *) ((byte *) old_base + old_file_h->e_shoff);
|
|
620 old_section_names = (char *) old_base
|
|
621 + OLD_SECTION_H (old_file_h->e_shstrndx).sh_offset;
|
|
622
|
|
623 /* Find the old .bss section. Figure out parameters of the new
|
|
624 * data2 and bss sections.
|
|
625 */
|
|
626
|
|
627 for (old_bss_index = 1; old_bss_index < (int) old_file_h->e_shnum;
|
|
628 old_bss_index++)
|
|
629 {
|
|
630 #ifdef DEBUG
|
|
631 fprintf (stderr, "Looking for .bss - found %s\n",
|
|
632 old_section_names + OLD_SECTION_H (old_bss_index).sh_name);
|
|
633 #endif
|
|
634 if (!strcmp (old_section_names + OLD_SECTION_H (old_bss_index).sh_name,
|
|
635 ELF_BSS_SECTION_NAME))
|
|
636 break;
|
|
637 }
|
|
638 if (old_bss_index == old_file_h->e_shnum)
|
2844
|
639 fatal ("Can't find .bss in %s.\n", old_name);
|
428
|
640
|
|
641 for (old_sbss_index = 1; old_sbss_index < (int) old_file_h->e_shnum;
|
|
642 old_sbss_index++)
|
|
643 {
|
|
644 #ifdef DEBUG
|
|
645 fprintf (stderr, "Looking for .sbss - found %s\n",
|
|
646 old_section_names + OLD_SECTION_H (old_sbss_index).sh_name);
|
|
647 #endif
|
|
648 if (!strcmp (old_section_names + OLD_SECTION_H (old_sbss_index).sh_name,
|
|
649 ".sbss"))
|
|
650 break;
|
|
651 }
|
|
652 if (old_sbss_index == old_file_h->e_shnum)
|
|
653 {
|
|
654 old_sbss_index = -1;
|
|
655 old_bss_addr = OLD_SECTION_H(old_bss_index).sh_addr;
|
|
656 old_bss_size = OLD_SECTION_H(old_bss_index).sh_size;
|
|
657 new_data2_index = old_bss_index;
|
|
658 }
|
|
659 else
|
|
660 {
|
|
661 old_bss_addr = OLD_SECTION_H(old_sbss_index).sh_addr;
|
|
662 old_bss_size = OLD_SECTION_H(old_bss_index).sh_size
|
|
663 + OLD_SECTION_H(old_sbss_index).sh_size;
|
|
664 new_data2_index = old_sbss_index;
|
|
665 }
|
|
666
|
|
667 for (old_mdebug_index = 1; old_mdebug_index < (int) old_file_h->e_shnum;
|
|
668 old_mdebug_index++)
|
|
669 {
|
|
670 #ifdef DEBUG
|
|
671 fprintf (stderr, "Looking for .mdebug - found %s\n",
|
|
672 old_section_names + OLD_SECTION_H (old_mdebug_index).sh_name);
|
|
673 #endif
|
|
674 if (!strcmp (old_section_names + OLD_SECTION_H (old_mdebug_index).sh_name,
|
|
675 ".mdebug"))
|
|
676 break;
|
|
677 }
|
|
678 if (old_mdebug_index == old_file_h->e_shnum)
|
|
679 old_mdebug_index = 0;
|
|
680
|
442
|
681 for (old_data_index = 1; old_data_index < (int) old_file_h->e_shnum;
|
|
682 old_data_index++)
|
|
683 {
|
|
684 #ifdef DEBUG
|
|
685 fprintf (stderr, "Looking for .data - found %s\n",
|
|
686 old_section_names + OLD_SECTION_H (old_data_index).sh_name);
|
|
687 #endif
|
|
688 if (!strcmp (old_section_names + OLD_SECTION_H (old_data_index).sh_name,
|
|
689 ".data"))
|
|
690 break;
|
|
691 }
|
|
692 if (old_data_index == old_file_h->e_shnum)
|
|
693 old_data_index = 0;
|
|
694
|
428
|
695 #if defined (emacs) || !defined (DEBUG)
|
|
696 new_bss_addr = (ElfW(Addr)) sbrk (0);
|
|
697 #else
|
|
698 new_bss_addr = old_bss_addr + old_bss_size + 0x1234;
|
|
699 #endif
|
|
700 new_data2_addr = old_bss_addr;
|
|
701 new_data2_size = new_bss_addr - old_bss_addr;
|
442
|
702 new_data2_offset = OLD_SECTION_H (old_data_index).sh_offset +
|
|
703 (new_data2_addr - OLD_SECTION_H (old_data_index).sh_addr);
|
428
|
704
|
|
705 #ifdef DEBUG
|
|
706 fprintf (stderr, "old_bss_index %d\n", old_bss_index);
|
|
707 fprintf (stderr, "old_bss_addr %x\n", old_bss_addr);
|
|
708 fprintf (stderr, "old_bss_size %x\n", old_bss_size);
|
|
709 fprintf (stderr, "new_bss_addr %x\n", new_bss_addr);
|
|
710 fprintf (stderr, "new_data2_addr %x\n", new_data2_addr);
|
|
711 fprintf (stderr, "new_data2_size %x\n", new_data2_size);
|
|
712 fprintf (stderr, "new_data2_offset %x\n", new_data2_offset);
|
|
713 #endif
|
|
714
|
|
715 if ((unsigned) new_bss_addr < (unsigned) old_bss_addr + old_bss_size)
|
2844
|
716 fatal (".bss shrank when undumping???\n");
|
428
|
717
|
|
718 /* Set the output file to the right size and mmap it. Set
|
|
719 * pointers to various interesting objects. stat_buf still has
|
|
720 * old_file data.
|
|
721 */
|
|
722
|
|
723 new_file = open (new_name, O_RDWR | O_CREAT, 0666);
|
|
724 if (new_file < 0)
|
|
725 fatal ("Can't creat (%s): errno %d\n", new_name, errno);
|
|
726
|
|
727 new_file_size = stat_buf.st_size + old_file_h->e_shentsize + new_data2_size;
|
|
728
|
|
729 if (ftruncate (new_file, new_file_size))
|
|
730 fatal ("Can't ftruncate (%s): errno %d\n", new_name, errno);
|
|
731
|
|
732 new_base = (caddr_t) mmap (0, new_file_size, PROT_READ | PROT_WRITE,
|
|
733 #ifdef UNEXEC_USE_MAP_PRIVATE
|
|
734 MAP_PRIVATE,
|
|
735 #else
|
|
736 MAP_SHARED,
|
|
737 #endif
|
|
738 new_file, 0);
|
|
739
|
|
740 if (new_base == (caddr_t) -1)
|
|
741 fatal ("Can't mmap (%s): errno %d\n", new_name, errno);
|
|
742
|
|
743 new_file_h = (ElfW(Ehdr) *) new_base;
|
|
744 new_program_h = (ElfW(Phdr) *) ((byte *) new_base + old_file_h->e_phoff);
|
|
745 new_section_h = (ElfW(Shdr) *)
|
|
746 ((byte *) new_base + old_file_h->e_shoff + new_data2_size);
|
|
747
|
|
748 /* Make our new file, program and section headers as copies of the
|
|
749 * originals.
|
|
750 */
|
|
751
|
|
752 memcpy (new_file_h, old_file_h, old_file_h->e_ehsize);
|
|
753 memcpy (new_program_h, old_program_h,
|
|
754 old_file_h->e_phnum * old_file_h->e_phentsize);
|
|
755
|
|
756 /* Modify the e_shstrndx if necessary. */
|
|
757 PATCH_INDEX (new_file_h->e_shstrndx);
|
|
758
|
|
759 /* Fix up file header. We'll add one section. Section header is
|
|
760 * further away now.
|
|
761 */
|
|
762
|
|
763 new_file_h->e_shoff += new_data2_size;
|
|
764 new_file_h->e_shnum += 1;
|
|
765
|
|
766 #ifdef DEBUG
|
|
767 fprintf (stderr, "Old section offset %x\n", old_file_h->e_shoff);
|
|
768 fprintf (stderr, "Old section count %d\n", old_file_h->e_shnum);
|
|
769 fprintf (stderr, "New section offset %x\n", new_file_h->e_shoff);
|
|
770 fprintf (stderr, "New section count %d\n", new_file_h->e_shnum);
|
|
771 #endif
|
|
772
|
|
773 /* Fix up a new program header. Extend the writable data segment so
|
|
774 * that the bss area is covered too. Find that segment by looking
|
|
775 * for a segment that ends just before the .bss area. Make sure
|
|
776 * that no segments are above the new .data2. Put a loop at the end
|
|
777 * to adjust the offset and address of any segment that is above
|
|
778 * data2, just in case we decide to allow this later.
|
|
779 */
|
|
780
|
|
781 for (n = new_file_h->e_phnum - 1; n >= 0; n--)
|
|
782 {
|
|
783 /* Compute maximum of all requirements for alignment of section. */
|
|
784 ElfW(Word) alignment = (NEW_PROGRAM_H (n)).p_align;
|
|
785 if ((OLD_SECTION_H (old_bss_index)).sh_addralign > alignment)
|
|
786 alignment = OLD_SECTION_H (old_bss_index).sh_addralign;
|
|
787
|
|
788 #ifdef __mips
|
|
789 /* According to r02kar@x4u2.desy.de (Karsten Kuenne)
|
|
790 and oliva@gnu.org (Alexandre Oliva), on IRIX 5.2, we
|
|
791 always get "Program segment above .bss" when dumping
|
|
792 when the executable doesn't have an sbss section. */
|
|
793 if (old_sbss_index != -1)
|
|
794 #endif /* __mips */
|
|
795 if (NEW_PROGRAM_H (n).p_vaddr + NEW_PROGRAM_H (n).p_filesz
|
|
796 > (old_sbss_index == -1
|
|
797 ? old_bss_addr
|
|
798 : round_up (old_bss_addr, alignment)))
|
2844
|
799 fatal ("Program segment above .bss in %s\n", old_name);
|
428
|
800
|
|
801 if (NEW_PROGRAM_H (n).p_type == PT_LOAD
|
|
802 && (round_up ((NEW_PROGRAM_H (n)).p_vaddr
|
|
803 + (NEW_PROGRAM_H (n)).p_filesz,
|
|
804 alignment)
|
|
805 == round_up (old_bss_addr, alignment)))
|
|
806 break;
|
|
807 }
|
|
808 if (n < 0)
|
2844
|
809 fatal ("Couldn't find segment next to .bss in %s\n", old_name);
|
428
|
810
|
|
811 /* Make sure that the size includes any padding before the old .bss
|
|
812 section. */
|
|
813 NEW_PROGRAM_H (n).p_filesz = new_bss_addr - NEW_PROGRAM_H (n).p_vaddr;
|
|
814 NEW_PROGRAM_H (n).p_memsz = NEW_PROGRAM_H (n).p_filesz;
|
|
815
|
|
816 #if 0 /* Maybe allow section after data2 - does this ever happen? */
|
|
817 for (n = new_file_h->e_phnum - 1; n >= 0; n--)
|
|
818 {
|
|
819 if (NEW_PROGRAM_H (n).p_vaddr
|
|
820 && NEW_PROGRAM_H (n).p_vaddr >= new_data2_addr)
|
|
821 NEW_PROGRAM_H (n).p_vaddr += new_data2_size - old_bss_size;
|
|
822
|
|
823 if (NEW_PROGRAM_H (n).p_offset >= new_data2_offset)
|
|
824 NEW_PROGRAM_H (n).p_offset += new_data2_size;
|
|
825 }
|
|
826 #endif
|
|
827
|
|
828 /* Fix up section headers based on new .data2 section. Any section
|
|
829 * whose offset or virtual address is after the new .data2 section
|
|
830 * gets its value adjusted. .bss size becomes zero and new address
|
|
831 * is set. data2 section header gets added by copying the existing
|
|
832 * .data header and modifying the offset, address and size.
|
|
833 */
|
|
834 for (old_data_index = 1; old_data_index < (int) old_file_h->e_shnum;
|
|
835 old_data_index++)
|
|
836 if (!strcmp (old_section_names + OLD_SECTION_H (old_data_index).sh_name,
|
|
837 ".data"))
|
|
838 break;
|
|
839 if (old_data_index == old_file_h->e_shnum)
|
2844
|
840 fatal ("Can't find .data in %s.\n", old_name);
|
428
|
841
|
|
842 /* Walk through all section headers, insert the new data2 section right
|
|
843 before the new bss section. */
|
|
844 for (n = 1, nn = 1; n < (int) old_file_h->e_shnum; n++, nn++)
|
|
845 {
|
|
846 caddr_t src;
|
|
847 /* If it is (s)bss section, insert the new data2 section before it. */
|
|
848 /* new_data2_index is the index of either old_sbss or old_bss, that was
|
|
849 chosen as a section for new_data2. */
|
|
850 if (n == new_data2_index)
|
|
851 {
|
|
852 /* Steal the data section header for this data2 section. */
|
|
853 memcpy (&NEW_SECTION_H (nn), &OLD_SECTION_H (old_data_index),
|
|
854 new_file_h->e_shentsize);
|
|
855
|
|
856 NEW_SECTION_H (nn).sh_addr = new_data2_addr;
|
|
857 NEW_SECTION_H (nn).sh_offset = new_data2_offset;
|
|
858 NEW_SECTION_H (nn).sh_size = new_data2_size;
|
|
859 /* Use the bss section's alignment. This will assure that the
|
|
860 new data2 section always be placed in the same spot as the old
|
|
861 bss section by any other application. */
|
|
862 NEW_SECTION_H (nn).sh_addralign = OLD_SECTION_H (n).sh_addralign;
|
|
863
|
|
864 /* Now copy over what we have in the memory now. */
|
|
865 memcpy (NEW_SECTION_H (nn).sh_offset + new_base,
|
|
866 (caddr_t) OLD_SECTION_H (n).sh_addr,
|
|
867 new_data2_size);
|
|
868 nn++;
|
|
869 }
|
|
870
|
|
871 memcpy (&NEW_SECTION_H (nn), &OLD_SECTION_H (n),
|
|
872 old_file_h->e_shentsize);
|
|
873
|
|
874 if (n == old_bss_index
|
|
875 /* The new bss and sbss section's size is zero, and its file offset
|
|
876 and virtual address should be off by NEW_DATA2_SIZE. */
|
|
877 || n == old_sbss_index
|
|
878 )
|
|
879 {
|
|
880 /* NN should be `old_s?bss_index + 1' at this point. */
|
|
881 NEW_SECTION_H (nn).sh_offset =
|
|
882 NEW_SECTION_H (new_data2_index).sh_offset + new_data2_size;
|
|
883 NEW_SECTION_H (nn).sh_addr =
|
|
884 NEW_SECTION_H (new_data2_index).sh_addr + new_data2_size;
|
|
885 /* Let the new bss section address alignment be the same as the
|
|
886 section address alignment followed the old bss section, so
|
|
887 this section will be placed in exactly the same place. */
|
|
888 NEW_SECTION_H (nn).sh_addralign = OLD_SECTION_H (nn).sh_addralign;
|
|
889 NEW_SECTION_H (nn).sh_size = 0;
|
|
890 }
|
|
891 else
|
|
892 {
|
|
893 /* Any section that was original placed AFTER the bss
|
|
894 section should now be off by NEW_DATA2_SIZE. */
|
|
895 #ifdef SOLARIS_POWERPC
|
|
896 /* On PPC Reference Platform running Solaris 2.5.1
|
|
897 the plt section is also of type NOBI like the bss section.
|
|
898 (not really stored) and therefore sections after the bss
|
|
899 section start at the plt offset. The plt section is always
|
|
900 the one just before the bss section.
|
|
901 It would be better to put the new data section before
|
|
902 the .plt section, or use libelf instead.
|
|
903 Erik Deumens, deumens@qtp.ufl.edu. */
|
|
904 if (NEW_SECTION_H (nn).sh_offset
|
|
905 >= OLD_SECTION_H (old_bss_index-1).sh_offset)
|
|
906 NEW_SECTION_H (nn).sh_offset += new_data2_size;
|
|
907 #else
|
|
908 if (round_up (NEW_SECTION_H (nn).sh_offset,
|
|
909 OLD_SECTION_H (old_bss_index).sh_addralign)
|
|
910 >= new_data2_offset)
|
|
911 NEW_SECTION_H (nn).sh_offset += new_data2_size;
|
|
912 #endif
|
|
913 /* Any section that was originally placed after the section
|
|
914 header table should now be off by the size of one section
|
|
915 header table entry. */
|
|
916 if (NEW_SECTION_H (nn).sh_offset > new_file_h->e_shoff)
|
|
917 NEW_SECTION_H (nn).sh_offset += new_file_h->e_shentsize;
|
|
918 }
|
|
919
|
|
920 /* If any section hdr refers to the section after the new .data
|
|
921 section, make it refer to next one because we have inserted
|
|
922 a new section in between. */
|
|
923
|
|
924 PATCH_INDEX (NEW_SECTION_H (nn).sh_link);
|
|
925 /* For symbol tables, info is a symbol table index,
|
|
926 so don't change it. */
|
|
927 if (NEW_SECTION_H (nn).sh_type != SHT_SYMTAB
|
|
928 && NEW_SECTION_H (nn).sh_type != SHT_DYNSYM)
|
|
929 PATCH_INDEX (NEW_SECTION_H (nn).sh_info);
|
|
930
|
|
931 /* Now, start to copy the content of sections. */
|
|
932 if (NEW_SECTION_H (nn).sh_type == SHT_NULL
|
|
933 || NEW_SECTION_H (nn).sh_type == SHT_NOBITS)
|
|
934 continue;
|
|
935
|
|
936 /* Write out the sections. .data and .data1 (and data2, called
|
|
937 ".data" in the strings table) get copied from the current process
|
|
938 instead of the old file. */
|
|
939 if (!strcmp (old_section_names + NEW_SECTION_H (n).sh_name, ".data")
|
|
940 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
941 ".sdata")
|
|
942 /* Taking these sections from the current process, breaks
|
|
943 Linux in a subtle way. Binaries only run on the
|
|
944 architecture (e.g. i586 vs i686) of the dumping machine */
|
|
945 #ifdef __sgi
|
|
946 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
947 ".lit4")
|
|
948 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
949 ".lit8")
|
|
950 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
951 ".got")
|
|
952 #endif
|
|
953 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
954 ".sdata1")
|
|
955 || !strcmp ((old_section_names + NEW_SECTION_H (n).sh_name),
|
|
956 ".data1"))
|
|
957 src = (caddr_t) OLD_SECTION_H (n).sh_addr;
|
|
958 else
|
|
959 src = old_base + OLD_SECTION_H (n).sh_offset;
|
|
960
|
|
961 memcpy (NEW_SECTION_H (nn).sh_offset + new_base, src,
|
|
962 NEW_SECTION_H (nn).sh_size);
|
|
963
|
|
964 #ifdef __alpha__
|
|
965 /* Update Alpha COFF symbol table: */
|
|
966 if (strcmp (old_section_names + OLD_SECTION_H (n).sh_name, ".mdebug")
|
|
967 == 0)
|
|
968 {
|
|
969 pHDRR symhdr = (pHDRR) (NEW_SECTION_H (nn).sh_offset + new_base);
|
|
970
|
|
971 symhdr->cbLineOffset += new_data2_size;
|
|
972 symhdr->cbDnOffset += new_data2_size;
|
|
973 symhdr->cbPdOffset += new_data2_size;
|
|
974 symhdr->cbSymOffset += new_data2_size;
|
|
975 symhdr->cbOptOffset += new_data2_size;
|
|
976 symhdr->cbAuxOffset += new_data2_size;
|
|
977 symhdr->cbSsOffset += new_data2_size;
|
|
978 symhdr->cbSsExtOffset += new_data2_size;
|
|
979 symhdr->cbFdOffset += new_data2_size;
|
|
980 symhdr->cbRfdOffset += new_data2_size;
|
|
981 symhdr->cbExtOffset += new_data2_size;
|
|
982 }
|
|
983 #endif /* __alpha__ */
|
|
984
|
|
985 #if defined (__sony_news) && defined (_SYSTYPE_SYSV)
|
|
986 if (NEW_SECTION_H (nn).sh_type == SHT_MIPS_DEBUG && old_mdebug_index)
|
|
987 {
|
|
988 int diff = NEW_SECTION_H(nn).sh_offset
|
|
989 - OLD_SECTION_H(old_mdebug_index).sh_offset;
|
|
990 HDRR *phdr = (HDRR *)(NEW_SECTION_H (nn).sh_offset + new_base);
|
|
991
|
|
992 if (diff)
|
|
993 {
|
|
994 phdr->cbLineOffset += diff;
|
|
995 phdr->cbDnOffset += diff;
|
|
996 phdr->cbPdOffset += diff;
|
|
997 phdr->cbSymOffset += diff;
|
|
998 phdr->cbOptOffset += diff;
|
|
999 phdr->cbAuxOffset += diff;
|
|
1000 phdr->cbSsOffset += diff;
|
|
1001 phdr->cbSsExtOffset += diff;
|
|
1002 phdr->cbFdOffset += diff;
|
|
1003 phdr->cbRfdOffset += diff;
|
|
1004 phdr->cbExtOffset += diff;
|
|
1005 }
|
|
1006 }
|
|
1007 #endif /* __sony_news && _SYSTYPE_SYSV */
|
|
1008
|
|
1009 #ifdef __sgi
|
|
1010 /* Adjust the HDRR offsets in .mdebug and copy the
|
|
1011 line data if it's in its usual 'hole' in the object.
|
|
1012 Makes the new file debuggable with dbx.
|
|
1013 patches up two problems: the absolute file offsets
|
|
1014 in the HDRR record of .mdebug (see /usr/include/syms.h), and
|
|
1015 the ld bug that gets the line table in a hole in the
|
|
1016 elf file rather than in the .mdebug section proper.
|
|
1017 David Anderson. davea@sgi.com Jan 16,1994. */
|
|
1018 if (n == old_mdebug_index)
|
|
1019 {
|
|
1020 #define MDEBUGADJUST(__ct,__fileaddr) \
|
|
1021 if (n_phdrr->__ct > 0) \
|
|
1022 { \
|
|
1023 n_phdrr->__fileaddr += movement; \
|
|
1024 }
|
|
1025
|
|
1026 HDRR * o_phdrr = (HDRR *)((byte *)old_base + OLD_SECTION_H (n).sh_offset);
|
|
1027 HDRR * n_phdrr = (HDRR *)((byte *)new_base + NEW_SECTION_H (nn).sh_offset);
|
|
1028 unsigned movement = new_data2_size;
|
|
1029
|
|
1030 MDEBUGADJUST (idnMax, cbDnOffset);
|
|
1031 MDEBUGADJUST (ipdMax, cbPdOffset);
|
|
1032 MDEBUGADJUST (isymMax, cbSymOffset);
|
|
1033 MDEBUGADJUST (ioptMax, cbOptOffset);
|
|
1034 MDEBUGADJUST (iauxMax, cbAuxOffset);
|
|
1035 MDEBUGADJUST (issMax, cbSsOffset);
|
|
1036 MDEBUGADJUST (issExtMax, cbSsExtOffset);
|
|
1037 MDEBUGADJUST (ifdMax, cbFdOffset);
|
|
1038 MDEBUGADJUST (crfd, cbRfdOffset);
|
|
1039 MDEBUGADJUST (iextMax, cbExtOffset);
|
|
1040 /* The Line Section, being possible off in a hole of the object,
|
|
1041 requires special handling. */
|
|
1042 if (n_phdrr->cbLine > 0)
|
|
1043 {
|
|
1044 if (o_phdrr->cbLineOffset > (OLD_SECTION_H (n).sh_offset
|
|
1045 + OLD_SECTION_H (n).sh_size))
|
|
1046 {
|
|
1047 /* line data is in a hole in elf. do special copy and adjust
|
|
1048 for this ld mistake.
|
|
1049 */
|
|
1050 n_phdrr->cbLineOffset += movement;
|
|
1051
|
|
1052 memcpy (n_phdrr->cbLineOffset + new_base,
|
|
1053 o_phdrr->cbLineOffset + old_base, n_phdrr->cbLine);
|
|
1054 }
|
|
1055 else
|
|
1056 {
|
|
1057 /* somehow line data is in .mdebug as it is supposed to be. */
|
|
1058 MDEBUGADJUST (cbLine, cbLineOffset);
|
|
1059 }
|
|
1060 }
|
|
1061 }
|
|
1062 #endif /* __sgi */
|
|
1063
|
|
1064 /* If it is the symbol table, its st_shndx field needs to be patched. */
|
|
1065 if (NEW_SECTION_H (nn).sh_type == SHT_SYMTAB
|
|
1066 || NEW_SECTION_H (nn).sh_type == SHT_DYNSYM)
|
|
1067 {
|
|
1068 ElfW(Shdr) *spt = &NEW_SECTION_H (nn);
|
|
1069 unsigned int num = spt->sh_size / spt->sh_entsize;
|
|
1070 ElfW(Sym) * sym = (ElfW(Sym) *) (NEW_SECTION_H (nn).sh_offset +
|
|
1071 new_base);
|
|
1072 for (; num--; sym++)
|
|
1073 {
|
|
1074 if ((sym->st_shndx == SHN_UNDEF)
|
|
1075 || (sym->st_shndx == SHN_ABS)
|
|
1076 || (sym->st_shndx == SHN_COMMON))
|
|
1077 continue;
|
|
1078
|
|
1079 PATCH_INDEX (sym->st_shndx);
|
|
1080 }
|
|
1081 }
|
|
1082 }
|
|
1083
|
|
1084 /* Update the symbol values of _edata and _end. */
|
|
1085 for (n = new_file_h->e_shnum - 1; n; n--)
|
|
1086 {
|
|
1087 byte *symnames;
|
|
1088 ElfW(Sym) *symp, *symendp;
|
|
1089
|
|
1090 if (NEW_SECTION_H (n).sh_type != SHT_DYNSYM
|
|
1091 && NEW_SECTION_H (n).sh_type != SHT_SYMTAB)
|
|
1092 continue;
|
|
1093
|
|
1094 symnames = ((byte *) new_base
|
|
1095 + NEW_SECTION_H (NEW_SECTION_H (n).sh_link).sh_offset);
|
|
1096 symp = (ElfW(Sym) *) (NEW_SECTION_H (n).sh_offset + new_base);
|
|
1097 symendp = (ElfW(Sym) *) ((byte *)symp + NEW_SECTION_H (n).sh_size);
|
|
1098
|
|
1099 for (; symp < symendp; symp ++)
|
|
1100 if (strcmp ((char *) (symnames + symp->st_name), "_end") == 0
|
|
1101 || strcmp ((char *) (symnames + symp->st_name), "end") == 0
|
|
1102 || strcmp ((char *) (symnames + symp->st_name), "_edata") == 0
|
|
1103 || strcmp ((char *) (symnames + symp->st_name), "edata") == 0)
|
|
1104 memcpy (&symp->st_value, &new_bss_addr, sizeof (new_bss_addr));
|
|
1105 }
|
|
1106
|
|
1107 /* This loop seeks out relocation sections for the data section, so
|
|
1108 that it can undo relocations performed by the runtime linker. */
|
|
1109 for (n = new_file_h->e_shnum - 1; n; n--)
|
|
1110 {
|
|
1111 ElfW(Shdr) section = NEW_SECTION_H (n);
|
|
1112 switch (section.sh_type) {
|
|
1113 default:
|
|
1114 break;
|
|
1115 case SHT_REL:
|
|
1116 case SHT_RELA:
|
|
1117 /* This code handles two different size structs, but there should
|
|
1118 be no harm in that provided that r_offset is always the first
|
|
1119 member. */
|
|
1120 nn = section.sh_info;
|
|
1121 if (!strcmp (old_section_names + NEW_SECTION_H (nn).sh_name, ".data")
|
|
1122 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1123 ".sdata")
|
|
1124 #ifdef __sgi
|
|
1125 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1126 ".lit4")
|
|
1127 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1128 ".lit8")
|
|
1129 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1130 ".got")
|
|
1131 #endif
|
|
1132 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1133 ".sdata1")
|
|
1134 || !strcmp ((old_section_names + NEW_SECTION_H (nn).sh_name),
|
|
1135 ".data1"))
|
|
1136 {
|
|
1137 ElfW(Addr) offset = NEW_SECTION_H (nn).sh_addr -
|
|
1138 NEW_SECTION_H (nn).sh_offset;
|
|
1139 caddr_t reloc = old_base + section.sh_offset, end;
|
|
1140 for (end = reloc + section.sh_size; reloc < end;
|
|
1141 reloc += section.sh_entsize)
|
|
1142 {
|
|
1143 ElfW(Addr) addr = ((ElfW(Rel) *) reloc)->r_offset - offset;
|
|
1144 #ifdef __alpha__
|
|
1145 /* The Alpha ELF binutils currently have a bug that
|
|
1146 sometimes results in relocs that contain all
|
|
1147 zeroes. Work around this for now... */
|
|
1148 if (((ElfW(Rel) *) reloc)->r_offset == 0)
|
|
1149 continue;
|
|
1150 #endif
|
|
1151 memcpy (new_base + addr, old_base + addr, sizeof(ElfW(Addr)));
|
|
1152 }
|
|
1153 }
|
|
1154 break;
|
|
1155 }
|
|
1156 }
|
|
1157
|
|
1158 #ifdef UNEXEC_USE_MAP_PRIVATE
|
|
1159 if (lseek (new_file, 0, SEEK_SET) == -1)
|
|
1160 fatal ("Can't rewind (%s): errno %d\n", new_name, errno);
|
|
1161
|
|
1162 if (write (new_file, new_base, new_file_size) != new_file_size)
|
|
1163 fatal ("Can't write (%s): errno %d\n", new_name, errno);
|
|
1164 #endif
|
|
1165
|
|
1166 /* Close the files and make the new file executable. */
|
|
1167
|
|
1168 if (close (old_file))
|
|
1169 fatal ("Can't close (%s): errno %d\n", old_name, errno);
|
|
1170
|
|
1171 if (close (new_file))
|
|
1172 fatal ("Can't close (%s): errno %d\n", new_name, errno);
|
|
1173
|
|
1174 if (stat (new_name, &stat_buf) == -1)
|
|
1175 fatal ("Can't stat (%s): errno %d\n", new_name, errno);
|
|
1176
|
|
1177 n = umask (777);
|
|
1178 umask (n);
|
|
1179 stat_buf.st_mode |= 0111 & ~n;
|
|
1180 if (chmod (new_name, stat_buf.st_mode) == -1)
|
|
1181 fatal ("Can't chmod (%s): errno %d\n", new_name, errno);
|
2844
|
1182 return 0;
|
428
|
1183 }
|