Mercurial > emacs
annotate src/unexsunos4.c @ 8879:434d4feb23ea
(_ALL_SOURCE, HAVE_STRUCT_UTIMBUF): Add #undefs.
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Sun, 18 Sep 1994 18:59:49 +0000 |
parents | 3fe65c32616b |
children | 0675fa3d65fa |
rev | line source |
---|---|
8859
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
1 /* Unexec for Sunos 4 using shared libraries. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
2 Copyright (C) 1990, 1994 Free Software Foundation, Inc. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
3 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
4 This file is part of GNU Emacs. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
5 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
6 GNU Emacs is free software; you can redistribute it and/or modify |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
7 it under the terms of the GNU General Public License as published by |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
8 the Free Software Foundation; either version 2, or (at your option) |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
9 any later version. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
10 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
11 GNU Emacs is distributed in the hope that it will be useful, |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
12 but WITHOUT ANY WARRANTY; without even the implied warranty of |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
14 GNU General Public License for more details. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
15 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
16 You should have received a copy of the GNU General Public License |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
17 along with GNU Emacs; see the file COPYING. If not, write to |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
18 the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
19 |
685 | 20 /* Contributed by Viktor Dukhovni. */ |
486 | 21 /* |
22 * Unexec for Berkeley a.out format + SUNOS shared libraries | |
23 * The unexeced executable contains the __DYNAMIC area from the | |
24 * original text file, and then the rest of data + bss + malloced area of | |
25 * the current process. (The __DYNAMIC area is at the top of the process | |
26 * data segment, we use "data_start" defined externally to mark the start | |
27 * of the "real" data segment.) | |
28 * | |
29 * For programs that want to remap some of the data segment read only | |
30 * a run_time_remap is provided. This attempts to remap largest area starting | |
31 * and ending on page boundaries between "data_start" and "bndry" | |
32 * For this it to figure out where the text file is located. A path search | |
33 * is attempted after trying argv[0] and if all fails we simply do not remap | |
34 * | |
35 * One feature of run_time_remap () is mandatory: reseting the break. | |
36 * | |
37 * Note that we can no longer map data into the text segment, as this causes | |
38 * the __DYNAMIC struct to become read only, breaking the runtime loader. | |
39 * Thus we no longer need to mess with a private crt0.c, the standard one | |
40 * will do just fine, since environ can live in the writable area between | |
41 * __DYNAMIC and data_start, just make sure that pre-crt0.o (the name | |
42 * is somewhat abused here) is loaded first! | |
43 * | |
44 */ | |
45 #include <sys/param.h> | |
46 #include <sys/mman.h> | |
47 #include <sys/file.h> | |
48 #include <sys/stat.h> | |
49 #include <string.h> | |
50 #include <stdio.h> | |
51 #include <a.out.h> | |
52 | |
6016
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
53 /* Do this after the above #include's in case a configuration file wants |
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
54 to define things for this file based on what <a.out.h> defines. */ |
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
55 #ifdef emacs |
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
56 #include <config.h> |
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
57 #endif |
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
58 |
8859
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
59 #ifdef SUNOS4 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
60 #include <link.h> |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
61 #endif |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
62 |
6865
82b01d3bcead
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6016
diff
changeset
|
63 #ifdef HAVE_UNISTD_H |
82b01d3bcead
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6016
diff
changeset
|
64 #include <unistd.h> |
82b01d3bcead
[HAVE_UNISTD_H]: Include unistd.h.
Richard M. Stallman <rms@gnu.org>
parents:
6016
diff
changeset
|
65 #endif |
6016
a8aa874afd11
Move config.h after system includes.
Roland McGrath <roland@gnu.org>
parents:
5216
diff
changeset
|
66 |
5216
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
67 /* NetBSD needs this bit, but SunOS does not have it. */ |
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
68 #ifndef MAP_FILE |
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
69 #define MAP_FILE 0 |
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
70 #endif |
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
71 |
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
72 |
486 | 73 /* |
74 * for programs other than emacs | |
75 * define data_start + initialized here, and make sure | |
76 * this object is loaded first! | |
77 * emacs will define these elsewhere, and load the object containing | |
78 * data_start (pre-crt0.o or firstfile.o?) first! | |
79 * The custom crt0.o *must not* be loaded! | |
80 */ | |
81 #ifndef emacs | |
82 static int data_start = 0; | |
83 static int initialized = 0; | |
84 #else | |
85 extern int initialized; | |
86 extern unsigned data_start; | |
87 extern int pureptr; | |
88 #endif | |
89 | |
90 extern char *getenv (); | |
91 static unsigned Brk; | |
92 static struct exec nhdr; | |
93 static int rd_only_len; | |
94 static long cookie; | |
95 | |
96 | |
97 unexec (new_name, a_name, bndry, bss_start, entry) | |
98 char *new_name, *a_name; | |
99 unsigned bndry, bss_start, entry; | |
100 { | |
101 int fd, new; | |
102 char *old; | |
103 struct exec ohdr; /* Allocate on the stack, not needed in the next life */ | |
104 struct stat stat; | |
105 | |
106 #ifdef emacs | |
107 fprintf (stderr, "Used %d bytes of Pure Storage\n", pureptr); | |
108 #endif | |
109 | |
110 if ((fd = open (a_name, O_RDONLY)) < 0) | |
111 { | |
112 fprintf (stderr, "%s: open: ", a_name); | |
113 perror (a_name); | |
114 exit (1); | |
115 } | |
116 if ((new = open (new_name, O_WRONLY | O_CREAT, 0666)) == -1) | |
117 { | |
118 fprintf (stderr, "%s: open: ", a_name); | |
119 perror (new_name); | |
120 exit (1); | |
121 } | |
122 | |
123 if ((fstat (fd, &stat) == -1)) | |
124 { | |
125 fprintf (stderr, "%s: ", a_name); | |
126 perror ("fstat"); | |
127 exit (1); | |
128 } | |
129 | |
5216
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
130 old = (char *)mmap (0, stat.st_size, PROT_READ, MAP_FILE|MAP_SHARED, fd, 0); |
486 | 131 if (old == (char *)-1) |
132 { | |
133 fprintf (stderr, "%s: ", a_name); | |
134 perror ("mmap"); | |
135 exit (1); | |
136 } | |
137 close (fd); | |
138 | |
139 nhdr = ohdr = (*(struct exec *)old); | |
140 | |
141 | |
142 /* | |
3591
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
971
diff
changeset
|
143 * Remember a magic cookie so we know we've got the right binary |
507f64624555
Apply typo patches from Paul Eggert.
Jim Blandy <jimb@redhat.com>
parents:
971
diff
changeset
|
144 * when remapping. |
486 | 145 */ |
146 cookie = time (0); | |
147 | |
148 Brk = sbrk (0); /* Save the break, it is reset to &_end (by ld.so?) */ | |
149 | |
150 /* | |
151 * Round up data start to a page boundary (Lose if not a 2 power!) | |
152 */ | |
153 data_start = ((((int)&data_start) - 1) & ~(N_PAGSIZ (nhdr) - 1)) + N_PAGSIZ (nhdr); | |
154 | |
155 /* | |
156 * Round down read only pages to a multiple of the page size | |
157 */ | |
158 if (bndry) | |
159 rd_only_len = ((int)bndry & ~(N_PAGSIZ (nhdr) - 1)) - data_start; | |
160 | |
161 #ifndef emacs | |
162 /* Have to do this some time before dumping the data */ | |
163 initialized = 1; | |
164 #endif | |
165 | |
166 /* | |
167 * Handle new data and bss sizes and optional new entry point. | |
168 * No one actually uses bss_start and entry, but tradition compels | |
169 * one to support them. | |
170 * Could complain if bss_start > Brk, but the caller is *supposed* to know | |
171 * what she is doing. | |
172 */ | |
173 nhdr.a_data = (bss_start ? bss_start : Brk) - N_DATADDR (nhdr); | |
174 nhdr.a_bss = bss_start ? Brk - bss_start : 0; | |
175 if (entry) | |
176 nhdr.a_entry = entry; | |
177 | |
178 /* | |
179 * Write out the text segment with new header | |
180 * Dynamic executables are ZMAGIC with N_TXTOFF==0 and the header | |
181 * part of the text segment, but no need to rely on this. | |
182 * So write the TEXT first, then go back replace the header. | |
183 * Doing it in the other order is less general! | |
184 */ | |
185 lseek (new, N_TXTOFF (nhdr), L_SET); | |
186 write (new, old + N_TXTOFF (ohdr), N_TXTOFF (ohdr) + ohdr.a_text); | |
187 lseek (new, 0L, L_SET); | |
188 write (new, &nhdr, sizeof (nhdr)); | |
189 | |
190 /* | |
191 * Write out the head of the old data segment from the file not | |
192 * from core, this has the unresolved __DYNAMIC relocation data | |
193 * we need to reload | |
194 */ | |
195 lseek (new, N_DATOFF (nhdr), L_SET); | |
196 write (new, old + N_DATOFF (ohdr), (int)&data_start - N_DATADDR (ohdr)); | |
197 | |
198 /* | |
199 * Copy the rest of the data from core | |
200 */ | |
201 write (new, &data_start, N_BSSADDR (nhdr) - (int)&data_start); | |
202 | |
203 /* | |
204 * Copy the symbol table and line numbers | |
205 */ | |
206 lseek (new, N_TRELOFF (nhdr), L_SET); | |
207 write (new, old + N_TRELOFF (ohdr), stat.st_size - N_TRELOFF (ohdr)); | |
208 | |
8859
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
209 /* Some other BSD systems use this file. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
210 We don't know whether this change is right for them. */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
211 #ifdef SUNOS4 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
212 /* Undo the relocations done at startup by ld.so. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
213 It will do these relocations again when we start the dumped Emacs. |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
214 Doing them twice gives incorrect results. */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
215 { |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
216 extern struct link_dynamic _DYNAMIC; |
8865
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
217 unsigned long taddr = N_TXTADDR (ohdr) - N_TXTOFF (ohdr); |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
218 unsigned long daddr = N_DATADDR (ohdr) - N_DATOFF (ohdr); |
8859
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
219 unsigned long rel, erel; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
220 unsigned rel_size; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
221 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
222 if (_DYNAMIC.ld_version < 2) |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
223 { |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
224 rel = _DYNAMIC.ld_un.ld_1->ld_rel; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
225 erel = _DYNAMIC.ld_un.ld_1->ld_hash; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
226 } |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
227 else |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
228 { |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
229 rel = _DYNAMIC.ld_un.ld_2->ld_rel; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
230 erel = _DYNAMIC.ld_un.ld_2->ld_hash; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
231 } |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
232 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
233 switch (ohdr.a_machtype) |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
234 { |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
235 case M_68010: |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
236 case M_68020: |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
237 rel_size = 8; /* sizeof(struct reloc_info_m68k) */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
238 break; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
239 case M_SPARC: |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
240 rel_size = 12; /* sizeof(struct reloc_info_sparc) */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
241 break; |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
242 case M_OLDSUN2: |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
243 default: |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
244 fatal ("unknown machine type in unexec!\n"); |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
245 } |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
246 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
247 for (; rel < erel; rel += rel_size) |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
248 { |
8865
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
249 /* This is the unadjusted address from the reloc. */ |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
250 unsigned long pos = *(unsigned long *)(taddr + rel); |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
251 /* This is the amount by which to adjust it. It |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
252 depends on which segment the address belongs to. */ |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
253 unsigned long offset = (pos < (unsigned long)&data_start |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
254 ? taddr : daddr); |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
255 /* This is the adjusted address from the reloc. */ |
3fe65c32616b
(unexec): Fix logic for rounding section boundaries.
Richard M. Stallman <rms@gnu.org>
parents:
8859
diff
changeset
|
256 unsigned long rpos = pos - offset; |
8859
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
257 |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
258 lseek (new, N_TXTOFF (nhdr) + rpos, L_SET); |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
259 write (new, old + N_TXTOFF (ohdr) + rpos, sizeof (unsigned long)); |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
260 } |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
261 } |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
262 #endif /* SUNOS4 */ |
678a41575de0
[SUNOS4]: Include link.h.
Richard M. Stallman <rms@gnu.org>
parents:
6865
diff
changeset
|
263 |
486 | 264 fchmod (new, 0755); |
265 } | |
266 | |
267 void | |
268 run_time_remap (progname) | |
269 char *progname; | |
270 { | |
271 char aout[MAXPATHLEN]; | |
272 register char *path, *p; | |
273 | |
274 /* Just in case */ | |
275 if (!initialized) | |
276 return; | |
277 | |
278 /* Restore the break */ | |
279 brk (Brk); | |
280 | |
281 /* If nothing to remap: we are done! */ | |
282 if (rd_only_len == 0) | |
283 return; | |
284 | |
285 /* | |
286 * Attempt to find the executable | |
287 * First try argv[0], will almost always succeed as shells tend to give | |
288 * the full path from the hash list rather than using execvp () | |
289 */ | |
290 if (is_it (progname)) | |
291 return; | |
292 | |
293 /* | |
294 * If argv[0] is a full path and does not exist, not much sense in | |
295 * searching further | |
296 */ | |
297 if (strchr (progname, '/')) | |
298 return; | |
299 | |
300 /* | |
301 * Try to search for argv[0] on the PATH | |
302 */ | |
303 path = getenv ("PATH"); | |
304 if (path == NULL) | |
305 return; | |
306 | |
307 while (*path) | |
308 { | |
309 /* copy through ':' or end */ | |
310 for (p = aout; *p = *path; ++p, ++path) | |
311 if (*p == ':') | |
312 { | |
313 ++path; /* move past ':' */ | |
314 break; | |
315 } | |
316 *p++ = '/'; | |
317 strcpy (p, progname); | |
318 /* | |
319 * aout is a candidate full path name | |
320 */ | |
321 if (is_it (aout)) | |
322 return; | |
323 } | |
324 } | |
325 | |
326 is_it (path) | |
327 char *path; | |
328 { | |
329 int fd; | |
330 long paths_cookie; | |
331 struct exec hdr; | |
332 | |
333 /* | |
334 * Open an executable and check for a valid header! | |
335 * Can't bcmp() the header with what we had, it may have been stripped! | |
336 * so we may save looking at non executables with the same name, mostly | |
337 * directories. | |
338 */ | |
339 fd = open (path, O_RDONLY); | |
340 if (fd != -1) | |
341 { | |
342 if (read (fd, &hdr, sizeof (hdr)) == sizeof (hdr) | |
343 && !N_BADMAG (hdr) && N_DATOFF (hdr) == N_DATOFF (nhdr) | |
344 && N_TRELOFF (hdr) == N_TRELOFF (nhdr)) | |
345 { | |
346 /* compare cookies */ | |
347 lseek (fd, N_DATOFF (hdr) + (int)&cookie - N_DATADDR (hdr), L_SET); | |
348 read (fd, &paths_cookie, sizeof (paths_cookie)); | |
349 if (paths_cookie == cookie) | |
350 { /* Eureka */ | |
351 | |
352 /* | |
353 * Do the mapping | |
354 * The PROT_EXEC may not be needed, but it is safer this way. | |
355 * should the shared library decide to indirect through | |
356 * addresses in the data segment not part of __DYNAMIC | |
357 */ | |
358 mmap (data_start, rd_only_len, PROT_READ | PROT_EXEC, | |
5216
e094a62cadcd
[! MAP_FILE] (MAP_FILE): Define to zero.
Roland McGrath <roland@gnu.org>
parents:
4696
diff
changeset
|
359 MAP_FILE | MAP_SHARED | MAP_FIXED, fd, |
486 | 360 N_DATOFF (hdr) + data_start - N_DATADDR (hdr)); |
361 close (fd); | |
362 return 1; | |
363 } | |
364 } | |
365 close (fd); | |
366 } | |
367 return 0; | |
368 } |