annotate src/unexalpha.c @ 371:cc15677e0335 r21-2b1

Import from CVS: tag r21-2b1
author cvs
date Mon, 13 Aug 2007 11:03:08 +0200
parents 972bbb6d6ca2
children 6240c7796c7a
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1 /* Unexec for DEC alpha. schoepf@sc.ZIB-Berlin.DE (Rainer Schoepf).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3 Copyright (C) 1994 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5 This file is part of GNU Emacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 GNU Emacs is free software; you can redistribute it and/or modify
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 it under the terms of the GNU General Public License as published by
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 the Free Software Foundation; either version 2, or (at your option)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10 any later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 GNU Emacs is distributed in the hope that it will be useful,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 but WITHOUT ANY WARRANTY; without even the implied warranty of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15 GNU General Public License for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 along with GNU Emacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 #include <config.h>
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
26 #include <stdlib.h>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
27 #include <string.h>
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
28 #include <unistd.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 #include <sys/file.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 #include <sys/stat.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 #include <sys/mman.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 #include <varargs.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 #include <filehdr.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 #include <aouthdr.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 #include <scnhdr.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 #include <syms.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
40 static void fatal_unexec (char *, char *);
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
41 static void mark_x (char *);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 #define READ(_fd, _buffer, _size, _error_message, _error_arg) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 errno = EEOF; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 if (read (_fd, _buffer, _size) != _size) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 fatal_unexec (_error_message, _error_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 #define WRITE(_fd, _buffer, _size, _error_message, _error_arg) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 if (write (_fd, _buffer, _size) != _size) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 fatal_unexec (_error_message, _error_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 #define SEEK(_fd, _position, _error_message, _error_arg) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 errno = EEOF; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 if (lseek (_fd, _position, L_SET) != _position) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 fatal_unexec (_error_message, _error_arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 extern int errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 extern char *strerror ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 void *sbrk();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 #define EEOF -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 static struct scnhdr *text_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 static struct scnhdr *init_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 static struct scnhdr *finit_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 static struct scnhdr *rdata_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 static struct scnhdr *rconst_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 static struct scnhdr *data_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70 static struct scnhdr *pdata_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 static struct scnhdr *xdata_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 static struct scnhdr *got_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 static struct scnhdr *lit8_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74 static struct scnhdr *lit4_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 static struct scnhdr *sdata_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76 static struct scnhdr *sbss_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 static struct scnhdr *bss_section;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 static unsigned long Brk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 struct headers {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82 struct filehdr fhdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 struct aouthdr aout;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 struct scnhdr section[_MIPS_NSCNS_MAX];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 /* Define name of label for entry point for the dumped executable. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 #ifndef DEFAULT_ENTRY_ADDRESS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 #define DEFAULT_ENTRY_ADDRESS __start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
95 unexec (new_name, a_name, data_start, bss_start, entry_address)
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
96 char *new_name, *a_name;
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
97 unsigned long data_start, bss_start, entry_address;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99 int new, old;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 char * oldptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 struct headers ohdr, nhdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 struct stat stat;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 long pagesize, brk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 long newsyms, symrel;
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
105 int nread;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 int i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107 long vaddr, scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 #define BUFSIZE 8192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 char buffer[BUFSIZE];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 if ((old = open (a_name, O_RDONLY)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 fatal_unexec ("opening %s", a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 new = creat (new_name, 0666);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 if (new < 0) fatal_unexec ("creating %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117 if ((fstat (old, &stat) == -1))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 fatal_unexec ("fstat %s", a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 oldptr = (char *)mmap (0, stat.st_size, PROT_READ, MAP_FILE|MAP_SHARED, old, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 if (oldptr == (char *)-1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 fatal_unexec ("mmap %s", a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125 close (old);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127 /* This is a copy of the a.out header of the original executable */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 ohdr = (*(struct headers *)oldptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 /* This is where we build the new header from the in-memory copy */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 nhdr = *((struct headers *)TEXT_START);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 /* First do some consistency checks */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 if (nhdr.fhdr.f_magic != ALPHAMAGIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 && nhdr.fhdr.f_magic != ALPHAUMAGIC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 fprintf (stderr, "unexec: input file magic number is %x, not %x or %x.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141 nhdr.fhdr.f_magic, ALPHAMAGIC, ALPHAUMAGIC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 exit (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 if (nhdr.fhdr.f_opthdr != sizeof (nhdr.aout))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146 {
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
147 fprintf (stderr, "unexec: input a.out header is %d bytes, not %ld.\n",
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
148 nhdr.fhdr.f_opthdr, (long) (sizeof (nhdr.aout)));
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149 exit (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151 if (nhdr.aout.magic != ZMAGIC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 fprintf (stderr, "unexec: input file a.out magic number is %o, not %o.\n",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154 nhdr.aout.magic, ZMAGIC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 exit (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159 /* Now check the existence of certain header section and grab
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 their addresses. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 #define CHECK_SCNHDR(ptr, name, flags) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163 ptr = NULL; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 for (i = 0; i < nhdr.fhdr.f_nscns && !ptr; i++) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165 if (strcmp (nhdr.section[i].s_name, name) == 0) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 { \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 if (nhdr.section[i].s_flags != flags) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 fprintf (stderr, "unexec: %x flags (%x expected) in %s section.\n", \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 nhdr.section[i].s_flags, flags, name); \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 ptr = nhdr.section + i; \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 } \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 CHECK_SCNHDR (text_section, _TEXT, STYP_TEXT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 CHECK_SCNHDR (init_section, _INIT, STYP_INIT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 #ifdef _FINI
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 CHECK_SCNHDR (finit_section, _FINI, STYP_FINI);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 #endif /* _FINI */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 CHECK_SCNHDR (rdata_section, _RDATA, STYP_RDATA);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 #ifdef _RCONST
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 CHECK_SCNHDR (rconst_section, _RCONST, STYP_RCONST);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #ifdef _PDATA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183 CHECK_SCNHDR (pdata_section, _PDATA, STYP_PDATA);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 #endif /* _PDATA */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 #ifdef _GOT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 CHECK_SCNHDR (got_section, _GOT, STYP_GOT);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 #endif /* _GOT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188 CHECK_SCNHDR (data_section, _DATA, STYP_DATA);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 #ifdef _XDATA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 CHECK_SCNHDR (xdata_section, _XDATA, STYP_XDATA);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 #endif /* _XDATA */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192 #ifdef _LIT8
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
193 CHECK_SCNHDR (lit8_section, _LIT8, STYP_LIT8);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 CHECK_SCNHDR (lit4_section, _LIT4, STYP_LIT4);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 #endif /* _LIT8 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 CHECK_SCNHDR (sdata_section, _SDATA, STYP_SDATA);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
197 CHECK_SCNHDR (sbss_section, _SBSS, STYP_SBSS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198 CHECK_SCNHDR (bss_section, _BSS, STYP_BSS);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 pagesize = getpagesize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202 brk = (((long) (sbrk (0))) + pagesize - 1) & (-pagesize);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204 /* Remember the current break */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 Brk = brk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 nhdr.aout.dsize = brk - DATA_START;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 nhdr.aout.bsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 if (entry_address == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 {
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
212 extern DEFAULT_ENTRY_ADDRESS ();
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 nhdr.aout.entry = (unsigned long)DEFAULT_ENTRY_ADDRESS;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 nhdr.aout.entry = entry_address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 nhdr.aout.bss_start = nhdr.aout.data_start + nhdr.aout.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 if (rdata_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 rdata_section->s_size = data_start - DATA_START;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 /* Adjust start and virtual addresses of rdata_section, too. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 rdata_section->s_vaddr = DATA_START;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 rdata_section->s_paddr = DATA_START;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 rdata_section->s_scnptr = text_section->s_scnptr + nhdr.aout.tsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 data_section->s_vaddr = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 data_section->s_paddr = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 data_section->s_size = brk - data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 if (rdata_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 data_section->s_scnptr = rdata_section->s_scnptr + rdata_section->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 vaddr = data_section->s_vaddr + data_section->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 scnptr = data_section->s_scnptr + data_section->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241 if (lit8_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 lit8_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 lit8_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 lit8_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 lit8_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 if (lit4_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 lit4_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251 lit4_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 lit4_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 lit4_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 if (sdata_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 sdata_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258 sdata_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 sdata_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260 sdata_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #ifdef _XDATA
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 if (xdata_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 xdata_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 xdata_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 xdata_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 xdata_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
270 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
271 #ifdef _GOT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272 if (got_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274 got_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 got_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276 got_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 got_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 #endif /*_GOT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 if (sbss_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 sbss_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 sbss_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284 sbss_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 sbss_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287 if (bss_section != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289 bss_section->s_vaddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 bss_section->s_paddr = vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 bss_section->s_size = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
292 bss_section->s_scnptr = scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 WRITE (new, (char *)TEXT_START, nhdr.aout.tsize,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 "writing text section to %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 WRITE (new, (char *)DATA_START, nhdr.aout.dsize,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 "writing data section to %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
299
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 * Construct new symbol table header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
303 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 282
diff changeset
305 memcpy (buffer, oldptr + nhdr.fhdr.f_symptr, cbHDRR);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #define symhdr ((pHDRR)buffer)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308 newsyms = nhdr.aout.tsize + nhdr.aout.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 symrel = newsyms - nhdr.fhdr.f_symptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310 nhdr.fhdr.f_symptr = newsyms;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 symhdr->cbLineOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 symhdr->cbDnOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 symhdr->cbPdOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 symhdr->cbSymOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315 symhdr->cbOptOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 symhdr->cbAuxOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 symhdr->cbSsOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 symhdr->cbSsExtOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 symhdr->cbFdOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 symhdr->cbRfdOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 symhdr->cbExtOffset += symrel;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 WRITE (new, buffer, cbHDRR, "writing symbol table header of %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 * Copy the symbol table and line numbers
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328 WRITE (new, oldptr + ohdr.fhdr.f_symptr + cbHDRR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 stat.st_size - ohdr.fhdr.f_symptr - cbHDRR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330 "writing symbol table of %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 /* Not needed for now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 update_dynamic_symbols (oldptr, new_name, new, newsyms,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 ((pHDRR) (oldptr + ohdr.fhdr.f_symptr))->issExtMax,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 ((pHDRR) (oldptr + ohdr.fhdr.f_symptr))->cbExtOffset,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 ((pHDRR) (oldptr + ohdr.fhdr.f_symptr))->cbSsExtOffset);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 #undef symhdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 SEEK (new, 0, "seeking to start of header in %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 WRITE (new, &nhdr, sizeof (nhdr),
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 "writing header of %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 close (old);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350 close (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 mark_x (new_name);
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
352 return 0;
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358 /* Not needed for now */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360 /* The following function updates the values of some symbols
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 that are used by the dynamic loader:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 _edata
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 _end
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367
371
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
368
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
369 update_dynamic_symbols (old, new_name, new, newsyms, nsyms, symoff, stroff)
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
370 char *old; /* Pointer to old executable */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
371 char *new_name; /* Name of new executable */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
372 int new; /* File descriptor for new executable */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
373 long newsyms; /* Offset of Symbol table in new executable */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
374 int nsyms; /* Number of symbol table entries */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
375 long symoff; /* Offset of External Symbols in old file */
cc15677e0335 Import from CVS: tag r21-2b1
cvs
parents: 363
diff changeset
376 long stroff; /* Offset of string table in old file */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 long i;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 int found = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 EXTR n_end, n_edata;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 /* We go through the symbol table entries until we have found the two
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 symbols. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 /* cbEXTR is the size of an external symbol table entry */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 for (i = 0; i < nsyms && found < 2; i += cbEXTR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 {
203
850242ba4a81 Import from CVS: tag r20-3b28
cvs
parents: 173
diff changeset
389 REGISTER pEXTR x = (pEXTR) (old + symoff + i);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390 char *s;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 s = old + stroff + x->asym.iss; /* name of the symbol */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 if (!strcmp(s,"_edata"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 found++;
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 282
diff changeset
397 memcpy (&n_edata, x, cbEXTR);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 n_edata.asym.value = Brk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 SEEK (new, newsyms + cbHDRR + i,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 "seeking to symbol _edata in %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 WRITE (new, &n_edata, cbEXTR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 "writing symbol table entry for _edata into %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 else if (!strcmp(s,"_end"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 found++;
288
e11d67e05968 Import from CVS: tag r21-0b42
cvs
parents: 282
diff changeset
407 memcpy (&n_end, x, cbEXTR);
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 n_end.asym.value = Brk;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 SEEK (new, newsyms + cbHDRR + i,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 "seeking to symbol _end in %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 WRITE (new, &n_end, cbEXTR,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412 "writing symbol table entry for _end into %s", new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 * mark_x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424 * After successfully building the new a.out, mark it executable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 static void
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
428 mark_x (char *name)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 struct stat sbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 int um = umask (777);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 umask (um);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433 if (stat (name, &sbuf) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 fatal_unexec ("getting protection on %s", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 sbuf.st_mode |= 0111 & ~um;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 if (chmod (name, sbuf.st_mode) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 fatal_unexec ("setting protection on %s", name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 static void
173
8eaf7971accc Import from CVS: tag r20-3b13
cvs
parents: 0
diff changeset
441 fatal_unexec (char *s, char *arg)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 if (errno == EEOF)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 fputs ("unexec: unexpected end of file, ", stderr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 fprintf (stderr, "unexec: %s, ", strerror (errno));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 fprintf (stderr, s, arg);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448 fputs (".\n", stderr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 exit (1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 }