annotate src/unexec.c @ 380:8626e4521993 r21-2-5

Import from CVS: tag r21-2-5
author cvs
date Mon, 13 Aug 2007 11:07:10 +0200
parents a300bb07d72d
children 74fd4e045ea6
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 /* Copyright (C) 1985, 1986, 1987, 1988, 1992, 1993, 1994
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
2 Free Software Foundation, Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
3
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
4 This file is part of XEmacs.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
6 XEmacs is free software; you can redistribute it and/or modify it
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
7 under the terms of the GNU General Public License as published by the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
8 Free Software Foundation; either version 2, or (at your option) any
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
9 later version.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
10
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
11 XEmacs is distributed in the hope that it will be useful, but WITHOUT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
13 FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
14 for more details.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
15
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
16 You should have received a copy of the GNU General Public License
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
17 along with XEmacs; see the file COPYING. If not, write to
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
18 the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
19 Boston, MA 02111-1307, USA. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
21 /* Synched up with: FSF 19.31. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
22
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
23 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
24 * unexec.c - Convert a running program into an a.out file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 * Author: Spencer W. Thomas
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27 * Computer Science Dept.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 * University of Utah
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 * Date: Tue Mar 2 1982
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 * Modified heavily since then.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 * Synopsis:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 * unexec (new_name, a_name, data_start, bss_start, entry_address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 * char *new_name, *a_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35 * unsigned data_start, bss_start, entry_address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
36 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
37 * Takes a snapshot of the program and makes an a.out format file in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38 * file named by the string argument new_name.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
39 * If a_name is non-NULL, the symbol table will be taken from the given file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
40 * On some machines, an existing a_name file is required.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
41 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42 * The boundaries within the a.out file may be adjusted with the data_start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
43 * and bss_start arguments. Either or both may be given as 0 for defaults.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
44 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45 * Data_start gives the boundary between the text segment and the data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 * segment of the program. The text segment can contain shared, read-only
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 * program code and literal data, while the data segment is always unshared
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 * and unprotected. Data_start gives the lowest unprotected address.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 * The value you specify may be rounded down to a suitable boundary
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
50 * as required by the machine you are using.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 * Specifying zero for data_start means the boundary between text and data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 * should not be the same as when the program was loaded.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 * If NO_REMAP is defined, the argument data_start is ignored and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
55 * segment boundaries are never changed.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
56 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
57 * Bss_start indicates how much of the data segment is to be saved in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
58 * a.out file and restored when the program is executed. It gives the lowest
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
59 * unsaved address, and is rounded up to a page boundary. The default when 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
60 * is given assumes that the entire data segment is to be stored, including
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
61 * the previous data and bss as well as any additional storage allocated with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
62 * break (2).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
63 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
64 * The new file is set up to start at entry_address.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
65 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
66 * If you make improvements I'd like to get them too.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
67 * harpo!utah-cs!thomas, thomas@Utah-20
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
68 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
69 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
70
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
71 /* Modified to support SysVr3 shared libraries by James Van Artsdalen
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
72 * of Dell Computer Corporation. james@bigtex.cactus.org.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
73 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
74
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
75 /* There are several compilation parameters affecting unexec:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
76
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
77 * COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
78
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
79 Define this if your system uses COFF for executables.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
80
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
81 * COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
82
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
83 Define this if you are using the GNU coff encapsulated a.out format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
84 This is closer to a.out than COFF. You should *not* define COFF if
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
85 you define COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
86
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
87 Otherwise we assume you use Berkeley format.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
88
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
89 * NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
90
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
91 Define this if you do not want to try to save Emacs's pure data areas
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
92 as part of the text segment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
93
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
94 Saving them as text is good because it allows users to share more.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
95
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
96 However, on machines that locate the text area far from the data area,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
97 the boundary cannot feasibly be moved. Such machines require
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
98 NO_REMAP.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
99
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
100 Also, remapping can cause trouble with the built-in startup routine
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
101 /lib/crt0.o, which defines `environ' as an initialized variable.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
102 Dumping `environ' as pure does not work! So, to use remapping,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
103 you must write a startup routine for your machine in Emacs's crt0.c.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
104 If NO_REMAP is defined, Emacs uses the system's crt0.o.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
105
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
106 * SECTION_ALIGNMENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
107
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
108 Some machines that use COFF executables require that each section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
109 start on a certain boundary *in the COFF file*. Such machines should
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
110 define SECTION_ALIGNMENT to a mask of the low-order bits that must be
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
111 zero on such a boundary. This mask is used to control padding between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
112 segments in the COFF file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
113
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
114 If SECTION_ALIGNMENT is not defined, the segments are written
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
115 consecutively with no attempt at alignment. This is right for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
116 unmodified system V.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
117
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
118 * SEGMENT_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
119
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
120 Some machines require that the beginnings and ends of segments
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
121 *in core* be on certain boundaries. For most machines, a page
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
122 boundary is sufficient. That is the default. When a larger
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
123 boundary is needed, define SEGMENT_MASK to a mask of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
124 the bits that must be zero on such a boundary.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
125
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
126 * A_TEXT_OFFSET(HDR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
127
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
128 Some machines count the a.out header as part of the size of the text
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
129 segment (a_text); they may actually load the header into core as the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
130 first data in the text segment. Some have additional padding between
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
131 the header and the real text of the program that is counted in a_text.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
132
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
133 For these machines, define A_TEXT_OFFSET(HDR) to examine the header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
134 structure HDR and return the number of bytes to add to `a_text'
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
135 before writing it (above and beyond the number of bytes of actual
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
136 program text). HDR's standard fields are already correct, except that
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
137 this adjustment to the `a_text' field has not yet been made;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
138 thus, the amount of offset can depend on the data in the file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
139
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
140 * A_TEXT_SEEK(HDR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
141
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
142 If defined, this macro specifies the number of bytes to seek into the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
143 a.out file before starting to write the text segment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
144
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
145 * EXEC_MAGIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
146
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
147 For machines using COFF, this macro, if defined, is a value stored
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
148 into the magic number field of the output file.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
149
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
150 * ADJUST_EXEC_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
151
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
152 This macro can be used to generate statements to adjust or
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
153 initialize nonstandard fields in the file header
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
154
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
155 * ADDR_CORRECT(ADDR)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
156
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
157 Macro to correct an int which is the bit pattern of a pointer to a byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
158 into an int which is the number of a byte.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
159
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
160 This macro has a default definition which is usually right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
161 This default definition is a no-op on most machines (where a
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
162 pointer looks like an int) but not on all machines.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
163
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
164 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
165
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
166 #ifndef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
167 #define PERROR(arg) perror (arg); return -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
168 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
169 #define IN_UNEXEC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
170 #define DONT_ENCAPSULATE /* we include lisp.h so we want to make sure we
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
171 don't get filename conversion. The caller
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
172 of unexec() is assumed to have done this
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
173 already (it's easier to do it this way than
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
174 to modify all the unexec modules to ensure
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
175 that all weirdo functions, such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
176 elf_write_modified_data(), have proper
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
177 filename conversion applied). */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
178 #include <config.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
179 #define PERROR(file) report_error (file, new)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
180 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
181
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
182 #if __STDC__ || defined(STDC_HEADERS)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
183
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
184 /* I don't know how correct this attempt to get more prototypes is... */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
185 # if defined(sun) && defined(_POSIX_SOURCE)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
186 # undef _POSIX_SOURCE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
187 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
188
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
189 # if defined(__lucid) && !defined(__STDC_EXTENDED__)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
190 # define __STDC_EXTENDED__ 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
191 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
192
375
a300bb07d72d Import from CVS: tag r21-2b3
cvs
parents: 371
diff changeset
193 # include <stddef.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
194 # include <stdlib.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
195 # include <unistd.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
196 # include <string.h>
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
197 # include <stddef.h>
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
198
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
199 # ifdef __lucid
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
200 # include <sysent.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
201 # endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
202
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
203 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
204
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
205 /* I don't understand this, but it's necessary to get some slots in struct exec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
206 from /usr/include/sys/exec.h when running LCC in strict ANSI mode. We don't
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
207 need this in K&R mode...
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
208 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
209 #if defined(__lucid) && defined(__sparc) && !defined(sun)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
210 # define sun 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
211 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
212
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
213 #ifndef CANNOT_DUMP /* all rest of file! */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
215 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
216 int need_coff_header = 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
217 #include <coff-encap/a.out.encap.h> /* The location might be a poor assumption */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
218 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
219 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
220 #if __DJGPP__ > 1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
221 #include <fcntl.h> /* for O_RDONLY, O_RDWR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
222 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
223 #include <coff.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
224 #define filehdr external_filehdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
225 #define scnhdr external_scnhdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
226 #define syment external_syment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
227 #define auxent external_auxent
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
228 #define n_numaux e_numaux
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
229 #define n_type e_type
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
230 struct aouthdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
231 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
232 unsigned short magic; /* type of file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
233 unsigned short vstamp; /* version stamp */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
234 unsigned long tsize; /* text size in bytes, padded to FW bdry*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
235 unsigned long dsize; /* initialized data " " */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
236 unsigned long bsize; /* uninitialized data " " */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
237 unsigned long entry; /* entry pt. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
238 unsigned long text_start;/* base of text used for this file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
239 unsigned long data_start;/* base of data used for this file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
240 };
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
241
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
242
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
243 #else /* not MSDOS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
244 #include <a.out.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
245 #endif /* not MSDOS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
246 #endif /* not COFF_ENCAPSULATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
247
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
248 /* Define getpagesize if the system does not.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
249 Note that this may depend on symbols defined in a.out.h. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
250 #include "getpagesize.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
251
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
252 #ifndef makedev /* Try to detect types.h already loaded */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
253 #include <sys/types.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
254 #endif /* makedev */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
255 #include <stdio.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
256 #include <sys/stat.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
257 #include <errno.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
258
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
259 #include <sys/file.h> /* Must be after sys/types.h for USG and BSD4_1*/
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
260
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
261 #ifdef USG5
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
262 #include <fcntl.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
263 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
264
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
265 #ifndef O_RDONLY
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
266 #define O_RDONLY 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
267 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
268 #ifndef O_RDWR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
269 #define O_RDWR 2
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
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
272
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
273 extern char *start_of_text (); /* Start of text */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
274
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
275 extern void *start_of_data (); /* Start of initialized data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
276
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
277 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
278 static long block_copy_start; /* Old executable start point */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
279 static struct filehdr f_hdr; /* File header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
280 static struct aouthdr f_ohdr; /* Optional file header (a.out) */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
281 long bias; /* Bias to add for growth */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
282 long lnnoptr; /* Pointer to line-number info within file */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
283 #define SYMS_START block_copy_start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
284
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
285 static long text_scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
286 static long data_scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
287
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
288 #else /* not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
289
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
290 #ifdef __STDC__
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
291 #ifndef __sys_stdtypes_h
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
292 #if !defined(_PTRDIFF_T) && !defined(_BSD_PTRDIFF_T_)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
293 typedef long ptrdiff_t;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
294 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
295 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
296 #ifndef HPUX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
297 /* not sure where this for NetBSD should really go
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
298 and it probably applies to other systems */
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 2
diff changeset
299 #if !defined(__NetBSD__) && !defined(__bsdi__) && !defined(__OpenBSD__)
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
300 extern void *sbrk (ptrdiff_t);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
301 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
302 extern char *sbrk ();
286
57709be46d1b Import from CVS: tag r21-0b41
cvs
parents: 2
diff changeset
303 #endif /* __NetBSD__ or __OpenBSD__ */
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
304 #endif /* HPUX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
305 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
306 extern void *sbrk ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
307 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
308
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
309 #define SYMS_START ((long) N_SYMOFF (ohdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
310
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
311 /* Some machines override the structure name for an a.out header. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
312 #ifndef EXEC_HDR_TYPE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
313 #define EXEC_HDR_TYPE struct exec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
314 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
315
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
316 #ifdef HPUX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
317 #ifdef HP9000S200_ID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
318 #define MY_ID HP9000S200_ID
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
319 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
320 #include <model.h>
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
321 #define MY_ID MYSYS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
322 #endif /* no HP9000S200_ID */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
323 static MAGIC OLDMAGIC = {MY_ID, SHARE_MAGIC};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
324 static MAGIC NEWMAGIC = {MY_ID, DEMAND_MAGIC};
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
325 #define N_TXTOFF(x) TEXT_OFFSET(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
326 #define N_SYMOFF(x) LESYM_OFFSET(x)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
327 static EXEC_HDR_TYPE hdr, ohdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
328
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
329 #else /* not HPUX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
330
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
331 #if defined (USG) && !defined (IBMAIX) && !defined (IRIS) && !defined (COFF_ENCAPSULATE) && !defined (LINUX)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
332 static struct bhdr hdr, ohdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
333 #define a_magic fmagic
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
334 #define a_text tsize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
335 #define a_data dsize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
336 #define a_bss bsize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
337 #define a_syms ssize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
338 #define a_trsize rtsize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
339 #define a_drsize rdsize
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
340 #define a_entry entry
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
341 #define N_BADMAG(x) \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
342 (((x).fmagic)!=OMAGIC && ((x).fmagic)!=NMAGIC &&\
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
343 ((x).fmagic)!=FMAGIC && ((x).fmagic)!=IMAGIC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
344 #define NEWMAGIC FMAGIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
345 #else /* IRIS or IBMAIX or not USG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
346 static EXEC_HDR_TYPE hdr, ohdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
347 #define NEWMAGIC ZMAGIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
348 #endif /* IRIS or IBMAIX not USG */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
349 #endif /* not HPUX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
350
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
351 static int unexec_text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
352 static int unexec_data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
353
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
354 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
355 /* coffheader is defined in the GNU a.out.encap.h file. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
356 struct coffheader coffheader;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
357 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
358
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
359 #endif /* not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
360
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
361 static int pagemask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
362
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
363 /* Correct an int which is the bit pattern of a pointer to a byte
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
364 into an int which is the number of a byte.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
365 This is a no-op on ordinary machines, but not on all. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
366
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
367 #ifndef ADDR_CORRECT /* Let m-*.h files override this definition */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
368 #define ADDR_CORRECT(x) ((char *)(x) - (char*)0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
369 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
370
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
371 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
372
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
373 #include "lisp.h"
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
374
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
375 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
376 report_error (file, fd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
377 CONST char *file;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
378 int fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
379 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
380 if (fd)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
381 close (fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
382 report_file_error ("Cannot unexec",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
383 Fcons (build_ext_string (file, FORMAT_FILENAME), Qnil));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
384 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
385 #endif /* emacs */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
386
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
387 #define ERROR0(msg) report_error_1 (new, msg, 0, 0); return -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
388 #define ERROR1(msg,x) report_error_1 (new, msg, x, 0); return -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
389 #define ERROR2(msg,x,y) report_error_1 (new, msg, x, y); return -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
390
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
391 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
392 report_error_1 (fd, msg, a1, a2)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
393 int fd;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
394 CONST char *msg;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
395 int a1, a2;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
396 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
397 close (fd);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
398 #ifdef emacs
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
399 error (msg, a1, a2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
400 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
401 fprintf (stderr, msg, a1, a2);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
402 fprintf (stderr, "\n");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
403 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
404 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
405
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
406 static int make_hdr (int new, int a_out, unsigned data_start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
407 unsigned bss_start, unsigned entry_address,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
408 char *a_name, char *new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
409 static int copy_text_and_data (int new, int a_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
410 static int copy_sym (int new, int a_out, char *a_name, char *new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
411 static void mark_x (char *name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
412
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
413 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
414 * unexec
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
415 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
416 * driving logic.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
417 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
418 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
419 unexec (new_name, a_name, data_start, bss_start, entry_address)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
420 char *new_name, *a_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
421 unsigned data_start, bss_start, entry_address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
422 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
423 int new, a_out = -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
424
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
425 if (a_name && (a_out = open (a_name, O_RDONLY)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
426 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
427 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
428 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
429 if ((new = creat (new_name, 0666)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
430 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
431 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
432 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
433
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
434 if (make_hdr (new, a_out, data_start, bss_start, entry_address, a_name, new_name) < 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
435 || copy_text_and_data (new, a_out) < 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
436 || copy_sym (new, a_out, a_name, new_name) < 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
437 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
438 #ifndef COFF_BSD_SYMBOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
439 || adjust_lnnoptrs (new, a_out, new_name) < 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
440 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
441 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
442 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
443 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
444 close (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
445 /* unlink (new_name); / * Failed, unlink new a.out */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
446 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
447 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
448
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
449 close (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
450 if (a_out >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
451 close (a_out);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
452 mark_x (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
453 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
454 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
455
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
456 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
457 * make_hdr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
458 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
459 * Make the header in the new a.out from the header in core.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
460 * Modify the text and data sizes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
461 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
462 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
463 make_hdr (int new, int a_out, unsigned data_start, unsigned bss_start,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
464 unsigned entry_address, char *a_name, char *new_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
465 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
466 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
467 auto struct scnhdr f_thdr; /* Text section header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
468 auto struct scnhdr f_dhdr; /* Data section header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
469 auto struct scnhdr f_bhdr; /* Bss section header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
470 auto struct scnhdr scntemp; /* Temporary section header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
471 int scns;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
472 #endif /* COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
473 #ifdef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
474 extern unsigned int bss_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
475 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
476 unsigned int bss_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
477 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
478
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
479 pagemask = getpagesize () - 1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
480
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
481 /* Adjust text/data boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
482 #ifdef NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
483 data_start = (int) start_of_data ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
484 #else /* not NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
485 if (!data_start)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
486 data_start = (int) start_of_data ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
487 #endif /* not NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
488 data_start = ADDR_CORRECT (data_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
489
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
490 #ifdef SEGMENT_MASK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
491 data_start = data_start & ~SEGMENT_MASK; /* (Down) to segment boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
492 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
493 data_start = data_start & ~pagemask; /* (Down) to page boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
494 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
495
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
496 bss_end = ADDR_CORRECT (sbrk (0)) + pagemask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
497 bss_end &= ~ pagemask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
498
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
499 /* Adjust data/bss boundary. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
500 if (bss_start != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
501 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
502 bss_start = (ADDR_CORRECT (bss_start) + pagemask);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
503 /* (Up) to page bdry. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
504 bss_start &= ~ pagemask;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
505 if (bss_start > bss_end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
506 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
507 ERROR1 ("unexec: Specified bss_start (%u) is past end of program",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
508 bss_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
509 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
510 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
511 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
512 bss_start = bss_end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
513
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
514 if (data_start > bss_start) /* Can't have negative data size. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
515 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
516 ERROR2 ("unexec: data_start (%u) can't be greater than bss_start (%u)",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
517 data_start, bss_start);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
518 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
519
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
520 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
521 /* Salvage as much info from the existing file as possible */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
522 if (a_out >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
523 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
524 if (read (a_out, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
525 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
526 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
527 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
528 block_copy_start += sizeof (f_hdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
529 if (f_hdr.f_opthdr > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
530 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
531 if (read (a_out, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
532 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
533 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
534 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
535 block_copy_start += sizeof (f_ohdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
536 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
537 /* Loop through section headers, copying them in */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
538 lseek (a_out, sizeof (f_hdr) + f_hdr.f_opthdr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
539 for (scns = f_hdr.f_nscns; scns > 0; scns--) {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
540 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
541 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
542 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
543 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
544 if (scntemp.s_scnptr > 0L)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
545 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
546 if (block_copy_start < scntemp.s_scnptr + scntemp.s_size)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
547 block_copy_start = scntemp.s_scnptr + scntemp.s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
548 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
549 if (strcmp (scntemp.s_name, ".text") == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
550 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
551 f_thdr = scntemp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
552 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
553 else if (strcmp (scntemp.s_name, ".data") == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
554 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
555 f_dhdr = scntemp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
556 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
557 else if (strcmp (scntemp.s_name, ".bss") == 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
558 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
559 f_bhdr = scntemp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
560 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
561 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
562 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
563 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
564 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
565 ERROR0 ("can't build a COFF file from scratch yet");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
566 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
567
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
568 /* Now we alter the contents of all the f_*hdr variables
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
569 to correspond to what we want to dump. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
570
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
571 #ifdef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
572
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
573 /* The amount of data we're adding to the file is distance from the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
574 * end of the original .data space to the current end of the .data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
575 * space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
576 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
577
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
578 bias = bss_start - (f_ohdr.data_start + f_dhdr.s_size);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
579
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
580 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
581
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
582 f_hdr.f_flags |= (F_RELFLG | F_EXEC);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
583 #ifdef TPIX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
584 f_hdr.f_nscns = 3;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
585 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
586 #ifdef EXEC_MAGIC
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
587 f_ohdr.magic = EXEC_MAGIC;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
588 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
589 #ifndef NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
590 f_ohdr.text_start = (long) start_of_text ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
591 f_ohdr.tsize = data_start - f_ohdr.text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
592 f_ohdr.data_start = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
593 #endif /* NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
594 f_ohdr.dsize = bss_start - f_ohdr.data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
595 f_ohdr.bsize = bss_end - bss_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
596 #ifndef KEEP_OLD_TEXT_SCNPTR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
597 /* On some machines, the old values are right.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
598 ??? Maybe on all machines with NO_REMAP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
599 f_thdr.s_size = f_ohdr.tsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
600 f_thdr.s_scnptr = sizeof (f_hdr) + sizeof (f_ohdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
601 f_thdr.s_scnptr += (f_hdr.f_nscns) * (sizeof (f_thdr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
602 #endif /* KEEP_OLD_TEXT_SCNPTR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
603 #ifdef ADJUST_TEXT_SCNHDR_SIZE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
604 /* On some machines, `text size' includes all headers. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
605 f_thdr.s_size -= f_thdr.s_scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
606 #endif /* ADJUST_TEST_SCNHDR_SIZE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
607 lnnoptr = f_thdr.s_lnnoptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
608 #ifdef SECTION_ALIGNMENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
609 /* Some systems require special alignment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
610 of the sections in the file itself. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
611 f_thdr.s_scnptr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
612 = (f_thdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
613 #endif /* SECTION_ALIGNMENT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
614 #ifdef TPIX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
615 f_thdr.s_scnptr = 0xd0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
616 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
617 text_scnptr = f_thdr.s_scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
618 #ifdef ADJUST_TEXTBASE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
619 text_scnptr = sizeof (f_hdr) + sizeof (f_ohdr) + (f_hdr.f_nscns) * (sizeof (f_thdr));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
620 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
621 #ifndef KEEP_OLD_PADDR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
622 f_dhdr.s_paddr = f_ohdr.data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
623 #endif /* KEEP_OLD_PADDR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
624 f_dhdr.s_vaddr = f_ohdr.data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
625 f_dhdr.s_size = f_ohdr.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
626 f_dhdr.s_scnptr = f_thdr.s_scnptr + f_thdr.s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
627 #ifdef SECTION_ALIGNMENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
628 /* Some systems require special alignment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
629 of the sections in the file itself. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
630 f_dhdr.s_scnptr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
631 = (f_dhdr.s_scnptr + SECTION_ALIGNMENT) & ~SECTION_ALIGNMENT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
632 #endif /* SECTION_ALIGNMENT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
633 #ifdef DATA_SECTION_ALIGNMENT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
634 /* Some systems require special alignment
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
635 of the data section only. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
636 f_dhdr.s_scnptr
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
637 = (f_dhdr.s_scnptr + DATA_SECTION_ALIGNMENT) & ~DATA_SECTION_ALIGNMENT;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
638 #endif /* DATA_SECTION_ALIGNMENT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
639 data_scnptr = f_dhdr.s_scnptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
640 #ifndef KEEP_OLD_PADDR
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
641 f_bhdr.s_paddr = f_ohdr.data_start + f_ohdr.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
642 #endif /* KEEP_OLD_PADDR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
643 f_bhdr.s_vaddr = f_ohdr.data_start + f_ohdr.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
644 f_bhdr.s_size = f_ohdr.bsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
645 f_bhdr.s_scnptr = 0L;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
646 #ifndef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
647 bias = f_dhdr.s_scnptr + f_dhdr.s_size - block_copy_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
648 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
649
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
650 if (f_hdr.f_symptr > 0L)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
651 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
652 f_hdr.f_symptr += bias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
653 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
654
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
655 if (f_thdr.s_lnnoptr > 0L)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
656 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
657 f_thdr.s_lnnoptr += bias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
658 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
659
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
660 #ifdef ADJUST_EXEC_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
661 ADJUST_EXEC_HEADER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
662 #endif /* ADJUST_EXEC_HEADER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
663
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
664 if (write (new, &f_hdr, sizeof (f_hdr)) != sizeof (f_hdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
665 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
666 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
667 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
668
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
669 if (write (new, &f_ohdr, sizeof (f_ohdr)) != sizeof (f_ohdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
670 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
671 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
672 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
673
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
674 #ifndef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
675
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
676 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
677 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
678 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
679 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
680
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
681 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
682 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
683 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
684 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
685
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
686 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
687 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
688 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
689 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
690
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
691 #else /* USG_SHARED_LIBRARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
692
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
693 /* The purpose of this code is to write out the new file's section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
694 * header table.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
695 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
696 * Scan through the original file's sections. If the encountered
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
697 * section is one we know (.text, .data or .bss), write out the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
698 * correct header. If it is a section we do not know (such as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
699 * .lib), adjust the address of where the section data is in the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
700 * file, and write out the header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
701 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
702 * If any section precedes .text or .data in the file, this code
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
703 * will not adjust the file pointer for that section correctly.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
704 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
705
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
706 /* This used to use sizeof (f_ohdr) instead of .f_opthdr.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
707 .f_opthdr is said to be right when there is no optional header. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
708 lseek (a_out, sizeof (f_hdr) + f_hdr.f_opthdr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
709
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
710 for (scns = f_hdr.f_nscns; scns > 0; scns--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
711 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
712 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
713 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
714
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
715 if (!strcmp (scntemp.s_name, f_thdr.s_name)) /* .text */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
716 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
717 if (write (new, &f_thdr, sizeof (f_thdr)) != sizeof (f_thdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
718 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
719 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
720 else if (!strcmp (scntemp.s_name, f_dhdr.s_name)) /* .data */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
721 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
722 if (write (new, &f_dhdr, sizeof (f_dhdr)) != sizeof (f_dhdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
723 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
724 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
725 else if (!strcmp (scntemp.s_name, f_bhdr.s_name)) /* .bss */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
726 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
727 if (write (new, &f_bhdr, sizeof (f_bhdr)) != sizeof (f_bhdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
728 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
729 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
730 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
731 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
732 if (scntemp.s_scnptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
733 scntemp.s_scnptr += bias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
734 if (write (new, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
735 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
736 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
737 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
738 #endif /* USG_SHARED_LIBRARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
739
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
740 return (0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
741
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
742 #else /* if not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
743
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
744 /* Get symbol table info from header of a.out file if given one. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
745 if (a_out >= 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
746 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
747 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
748 if (read (a_out, &coffheader, sizeof coffheader) != sizeof coffheader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
749 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
750 PERROR(a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
751 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
752 if (coffheader.f_magic != COFF_MAGIC)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
753 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
754 ERROR1("%s doesn't have legal coff magic number\n", a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
755 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
756 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
757 if (read (a_out, (char *) &ohdr, sizeof hdr) != sizeof hdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
758 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
759 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
760 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
761
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
762 if (N_BADMAG (ohdr))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
763 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
764 ERROR1 ("invalid magic number in %s", a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
765 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
766 hdr = ohdr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
767 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
768 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
769 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
770 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
771 /* We probably could without too much trouble. The code is in gld
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
772 * but I don't have that much time or incentive.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
773 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
774 ERROR0 ("can't build a COFF file from scratch yet");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
775 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
776 memset ((void *)&hdr, 0, sizeof hdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
777 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
778 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
779
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
780 unexec_text_start = (long) start_of_text ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
781 unexec_data_start = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
782
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
783 /* Machine-dependent fixup for header, or maybe for unexec_text_start */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
784 #ifdef ADJUST_EXEC_HEADER
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
785 ADJUST_EXEC_HEADER;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
786 #endif /* ADJUST_EXEC_HEADER */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
787
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
788 hdr.a_trsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
789 hdr.a_drsize = 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
790 if (entry_address != 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
791 hdr.a_entry = entry_address;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
792
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
793 hdr.a_bss = bss_end - bss_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
794 hdr.a_data = bss_start - data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
795 #ifdef NO_REMAP
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
796 hdr.a_text = ohdr.a_text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
797 #else /* not NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
798 hdr.a_text = data_start - unexec_text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
799
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
800 #ifdef A_TEXT_OFFSET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
801 hdr.a_text += A_TEXT_OFFSET (ohdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
802 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
803
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
804 #endif /* not NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
805
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
806 #ifdef COFF_ENCAPSULATE
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
807 /* We are encapsulating BSD format within COFF format. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
808 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
809 struct coffscn *tp, *dp, *bp;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
810 tp = &coffheader.scns[0];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
811 dp = &coffheader.scns[1];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
812 bp = &coffheader.scns[2];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
813 tp->s_size = hdr.a_text + sizeof(struct exec);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
814 dp->s_paddr = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
815 dp->s_vaddr = data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
816 dp->s_size = hdr.a_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
817 bp->s_paddr = dp->s_vaddr + dp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
818 bp->s_vaddr = bp->s_paddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
819 bp->s_size = hdr.a_bss;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
820 coffheader.tsize = tp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
821 coffheader.dsize = dp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
822 coffheader.bsize = bp->s_size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
823 coffheader.text_start = tp->s_vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
824 coffheader.data_start = dp->s_vaddr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
825 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
826 if (write (new, &coffheader, sizeof coffheader) != sizeof coffheader)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
827 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
828 PERROR(new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
829 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
830 #endif /* COFF_ENCAPSULATE */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
831
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
832 if (write (new, (char *) &hdr, sizeof hdr) != sizeof hdr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
833 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
834 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
835 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
836
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
837 #if 0 /* This #ifndef caused a bug on Linux when using QMAGIC. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
838 /* This adjustment was done above only #ifndef NO_REMAP,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
839 so only undo it now #ifndef NO_REMAP. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
840 /* #ifndef NO_REMAP */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
841 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
842 #ifdef A_TEXT_OFFSET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
843 hdr.a_text -= A_TEXT_OFFSET (ohdr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
844 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
845
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
846 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
847
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
848 #endif /* not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
849 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
850
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
851 static void write_segment (int, char *, char *);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
852
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
853 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
854 * copy_text_and_data
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
855 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
856 * Copy the text and data segments from memory to the new a.out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
857 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
858 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
859 copy_text_and_data (int new, int a_out)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
860 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
861 char *end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
862 char *ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
863
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
864 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
865
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
866 #ifdef USG_SHARED_LIBRARIES
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
867
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
868 int scns;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
869 struct scnhdr scntemp; /* Temporary section header */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
870
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
871 /* The purpose of this code is to write out the new file's section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
872 * contents.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
873 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
874 * Step through the section table. If we know the section (.text,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
875 * .data) do the appropriate thing. Otherwise, if the section has
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
876 * no allocated space in the file (.bss), do nothing. Otherwise,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
877 * the section has space allocated in the file, and is not a section
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
878 * we know. So just copy it.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
879 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
880
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
881 lseek (a_out, sizeof (struct filehdr) + sizeof (struct aouthdr), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
882
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
883 for (scns = f_hdr.f_nscns; scns > 0; scns--)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
884 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
885 if (read (a_out, &scntemp, sizeof (scntemp)) != sizeof (scntemp))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
886 PERROR ("temacs");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
887
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
888 if (!strcmp (scntemp.s_name, ".text"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
889 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
890 lseek (new, (long) text_scnptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
891 ptr = (char *) f_ohdr.text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
892 end = ptr + f_ohdr.tsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
893 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
894 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
895 else if (!strcmp (scntemp.s_name, ".data"))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
896 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
897 lseek (new, (long) data_scnptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
898 ptr = (char *) f_ohdr.data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
899 end = ptr + f_ohdr.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
900 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
901 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
902 else if (!scntemp.s_scnptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
903 ; /* do nothing - no data for this section */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
904 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
905 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
906 char page[BUFSIZ];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
907 int size, n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
908 long old_a_out_ptr = lseek (a_out, 0, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
909
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
910 lseek (a_out, scntemp.s_scnptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
911 for (size = scntemp.s_size; size > 0; size -= sizeof (page))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
912 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
913 n = size > sizeof (page) ? sizeof (page) : size;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
914 if (read (a_out, page, n) != n || write (new, page, n) != n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
915 PERROR ("emacs");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
916 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
917 lseek (a_out, old_a_out_ptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
918 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
919 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
920
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
921 #else /* COFF, but not USG_SHARED_LIBRARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
922
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
923 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
924 #if __DJGPP__ >= 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
925 /* Dump the original table of exception handlers, not the one
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
926 where our exception hooks are registered. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
927 __djgpp_exception_toggle ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
928 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
929 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
930
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
931 lseek (new, (long) text_scnptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
932 ptr = (char *) f_ohdr.text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
933 #ifdef HEADER_INCL_IN_TEXT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
934 /* For Gould UTX/32, text starts after headers */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
935 ptr = (char *) (ptr + text_scnptr);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
936 #endif /* HEADER_INCL_IN_TEXT */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
937 end = ptr + f_ohdr.tsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
938 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
939
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
940 lseek (new, (long) data_scnptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
941 ptr = (char *) f_ohdr.data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
942 end = ptr + f_ohdr.dsize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
943 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
944
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
945 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
946 #if __DJGPP__ >= 2
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
947 /* Restore our exception hooks. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
948 __djgpp_exception_toggle ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
949 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
950 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
951
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
952 #endif /* USG_SHARED_LIBRARIES */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
953
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
954 #else /* if not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
955
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
956 /* Some machines count the header as part of the text segment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
957 That is to say, the header appears in core
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
958 just before the address that start_of_text returns.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
959 For them, N_TXTOFF is the place where the header goes.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
960 We must adjust the seek to the place after the header.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
961 Note that at this point hdr.a_text does *not* count
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
962 the extra A_TEXT_OFFSET bytes, only the actual bytes of code. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
963
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
964 #ifdef A_TEXT_SEEK
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
965 lseek (new, (long) A_TEXT_SEEK (hdr), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
966 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
967 lseek (new, (long) N_TXTOFF (hdr), 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
968 #endif /* no A_TEXT_SEEK */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
969
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
970 #ifdef RISCiX
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
971
380
8626e4521993 Import from CVS: tag r21-2-5
cvs
parents: 375
diff changeset
972 /* Acorn's RISC-iX has a wacky way of initializing the position of the heap.
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
973 * There is a little table in crt0.o that is filled at link time with
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
974 * the min and current brk positions, among other things. When start
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
975 * runs, it copies the table to where these parameters live during
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
976 * execution. This data is in text space, so it cannot be modified here
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
977 * before saving the executable, so the data is written manually. In
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
978 * addition, the table does not have a label, and the nearest accessible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
979 * label (mcount) is not prefixed with a '_', thus making it inaccessible
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
980 * from within C programs. To overcome this, emacs's executable is passed
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
981 * through the command 'nm %s | fgrep mcount' into a pipe, and the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
982 * resultant output is then used to find the address of 'mcount'. As far as
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
983 * is possible to determine, in RISC-iX releases prior to 1.2, the negative
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
984 * offset of the table from mcount is 0x2c, whereas from 1.2 onwards it is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
985 * 0x30. bss_end has been rounded up to page boundary. This solution is
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
986 * based on suggestions made by Kevin Welton and Steve Hunt of Acorn, and
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
987 * avoids the need for a custom version of crt0.o for emacs which has its
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
988 * table in data space.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
989 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
990
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
991 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
992 char command[1024];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
993 char errbuf[1024];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
994 char address_text[32];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
995 int proforma[4];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
996 FILE *pfile;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
997 char *temp_ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
998 char c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
999 int mcount_address, mcount_offset, count;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1000 extern char *_execname;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1001
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1002
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1003 /* The use of _execname is incompatible with RISCiX 1.1 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1004 sprintf (command, "nm %s | fgrep mcount", _execname);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1005
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1006 if ( (pfile = popen(command, "r")) == NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1007 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1008 sprintf (errbuf, "Could not open pipe");
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1009 PERROR (errbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1010 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1011
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1012 count=0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1013 while ( ((c=getc(pfile)) != EOF) && (c != ' ') && (count < 31))
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1014 address_text[count++]=c;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1015 address_text[count]=0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1016
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1017 if ((count == 0) || pclose(pfile) != NULL)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1018 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1019 sprintf (errbuf, "Failed to execute the command '%s'\n", command);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1020 PERROR (errbuf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1021 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1022
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1023 sscanf(address_text, "%x", &mcount_address);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1024 ptr = (char *) unexec_text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1025 mcount_offset = (char *)mcount_address - ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1026
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1027 #ifdef RISCiX_1_1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1028 #define EDATA_OFFSET 0x2c
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1029 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1030 #define EDATA_OFFSET 0x30
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1031 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1032
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1033 end = ptr + mcount_offset - EDATA_OFFSET;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1034
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1035 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1036
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1037 proforma[0] = bss_end; /* becomes _edata */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1038 proforma[1] = bss_end; /* becomes _end */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1039 proforma[2] = bss_end; /* becomes _minbrk */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1040 proforma[3] = bss_end; /* becomes _curbrk */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1041
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1042 write (new, proforma, 16);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1043
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1044 temp_ptr = ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1045 ptr = end + 16;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1046 end = temp_ptr + hdr.a_text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1047
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1048 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1049 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1050
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1051 #else /* !RISCiX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1052 ptr = (char *) unexec_text_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1053 end = ptr + hdr.a_text;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1054 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1055 #endif /* RISCiX */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1056
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1057 ptr = (char *) unexec_data_start;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1058 end = ptr + hdr.a_data;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1059 /* This lseek is certainly incorrect when A_TEXT_OFFSET
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1060 and I believe it is a no-op otherwise.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1061 Let's see if its absence ever fails. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1062 /* lseek (new, (long) N_TXTOFF (hdr) + hdr.a_text, 0); */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1063 write_segment (new, ptr, end);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1064
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1065 #endif /* not COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1066
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1067 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1068 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1069
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1070 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1071 write_segment (new, ptr, end)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1072 int new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1073 char *ptr, *end;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1074 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1075 int i, nwrite, ret;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1076 #if 0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1077 char buf[80];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1078 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1079 extern int errno;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1080 /* This is the normal amount to write at once.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1081 It is the size of block that NFS uses. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1082 int writesize = 1 << 13;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1083 int pagesize = getpagesize ();
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1084 char zeros[1 << 13];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1085
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1086 memset (zeros, 0, sizeof (zeros));
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1087
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1088 for (i = 0; ptr < end;)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1089 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1090 /* Distance to next multiple of writesize. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1091 nwrite = (((int) ptr + writesize) & -writesize) - (int) ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1092 /* But not beyond specified end. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1093 if (nwrite > end - ptr) nwrite = end - ptr;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1094 ret = write (new, ptr, nwrite);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1095 /* If write gets a page fault, it means we reached
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1096 a gap between the old text segment and the old data segment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1097 This gap has probably been remapped into part of the text segment.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1098 So write zeros for it. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1099 if (ret == -1
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1100 #ifdef EFAULT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1101 && errno == EFAULT
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1102 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1103 )
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1104 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1105 /* Write only a page of zeros at once,
2
ac2d302a0011 Import from CVS: tag r19-15b2
cvs
parents: 0
diff changeset
1106 so that we don't overshoot the start
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1107 of the valid memory in the old data segment. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1108 if (nwrite > pagesize)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1109 nwrite = pagesize;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1110 write (new, zeros, nwrite);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1111 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1112 #if 0 /* Now that we have can ask `write' to write more than a page,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1113 it is legit for write do less than the whole amount specified. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1114 else if (nwrite != ret)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1115 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1116 sprintf (buf,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1117 "unexec write failure: addr 0x%lx, fileno %d, size 0x%x, wrote 0x%x, errno %d",
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1118 (unsigned long) ptr, new, nwrite, ret, errno);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1119 PERROR (buf);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1120 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1121 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1122 i += nwrite;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1123 ptr += nwrite;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1124 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1125 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1126
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1127 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1128 * copy_sym
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1129 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1130 * Copy the relocation information and symbol table from the a.out to the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1131 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1132 static int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1133 copy_sym (int new, int a_out, char *a_name, char *new_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1134 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1135 char page[1024];
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1136 int n;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1137
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1138 if (a_out < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1139 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1140
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1141 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1142 if (SYMS_START == 0L)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1143 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1144 #endif /* COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1145
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1146 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1147 if (lnnoptr) /* if there is line number info */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1148 lseek (a_out, lnnoptr, 0); /* start copying from there */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1149 else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1150 #endif /* COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1151 lseek (a_out, SYMS_START, 0); /* Position a.out to symtab. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1152
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1153 while ((n = read (a_out, page, sizeof page)) > 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1154 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1155 if (write (new, page, n) != n)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1156 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1157 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1158 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1159 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1160 if (n < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1161 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1162 PERROR (a_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1163 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1164 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1165 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1166
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1167 /* ****************************************************************
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1168 * mark_x
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1169 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1170 * After successfully building the new a.out, mark it executable
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1171 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1172 static void
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1173 mark_x (char *name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1174 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1175 struct stat sbuf;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1176 int um;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1177 int new = 0; /* for PERROR */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1178
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1179 um = umask (777);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1180 umask (um);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1181 if (stat (name, &sbuf) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1182 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1183 PERROR (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1184 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1185 sbuf.st_mode |= 0111 & ~um;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1186 if (chmod (name, sbuf.st_mode) == -1)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1187 PERROR (name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1188 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1189
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1190 #ifdef COFF
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1191 #ifndef COFF_BSD_SYMBOLS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1192
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1193 /*
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1194 * If the COFF file contains a symbol table and a line number section,
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1195 * then any auxiliary entries that have values for x_lnnoptr must
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1196 * be adjusted by the amount that the line number section has moved
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1197 * in the file (bias computed in make_hdr). The #@$%&* designers of
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1198 * the auxiliary entry structures used the absolute file offsets for
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1199 * the line number entry rather than an offset from the start of the
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1200 * line number section!
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1201 *
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1202 * When I figure out how to scan through the symbol table and pick out
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1203 * the auxiliary entries that need adjustment, this routine will
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1204 * be fixed. As it is now, all such entries are wrong and sdb
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1205 * will complain. Fred Fish, UniSoft Systems Inc.
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1206 */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1207
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1208 /* This function is probably very slow. Instead of reopening the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1209 file for input and output it should copy from the old to the new
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1210 using the two descriptors already open (WRITEDESC and READDESC).
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1211 Instead of reading one small structure at a time it should use
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1212 a reasonable size buffer. But I don't have time to work on such
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1213 things, so I am installing it as submitted to me. -- RMS. */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1214
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1215 int
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1216 adjust_lnnoptrs (writedesc, readdesc, new_name)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1217 int writedesc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1218 int readdesc;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1219 char *new_name;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1220 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1221 int nsyms;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1222 int new;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1223 #if defined (amdahl_uts) || defined (pfa)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1224 SYMENT symentry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1225 AUXENT auxentry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1226 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1227 struct syment symentry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1228 union auxent auxentry;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1229 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1230
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1231 if (!lnnoptr || !f_hdr.f_symptr)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1232 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1233
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1234 #ifdef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1235 if ((new = writedesc) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1236 #else
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1237 if ((new = open (new_name, O_RDWR)) < 0)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1238 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1239 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1240 PERROR (new_name);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1241 return -1;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1242 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1243
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1244 lseek (new, f_hdr.f_symptr, 0);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1245 for (nsyms = 0; nsyms < f_hdr.f_nsyms; nsyms++)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1246 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1247 read (new, &symentry, SYMESZ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1248 if (symentry.n_numaux)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1249 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1250 read (new, &auxentry, AUXESZ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1251 nsyms++;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1252 if (ISFCN (symentry.n_type) || symentry.n_type == 0x2400)
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1253 {
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1254 auxentry.x_sym.x_fcnary.x_fcn.x_lnnoptr += bias;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1255 lseek (new, -AUXESZ, 1);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1256 write (new, &auxentry, AUXESZ);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1257 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1258 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1259 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1260 #ifndef MSDOS
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1261 close (new);
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1262 #endif
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1263 return 0;
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1264 }
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1265
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1266 #endif /* COFF_BSD_SYMBOLS */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1267
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1268 #endif /* COFF */
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1269
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
1270 #endif /* not CANNOT_DUMP */