1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
|
/* $OpenBSD: strip.c,v 1.19 2003/06/03 02:56:17 millert Exp $ */
/*
* Copyright (c) 1988 Regents of the University of California.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted provided that the following conditions
* are met:
* 1. Redistributions of source code must retain the above copyright
* notice, this list of conditions and the following disclaimer.
* 2. Redistributions in binary form must reproduce the above copyright
* notice, this list of conditions and the following disclaimer in the
* documentation and/or other materials provided with the distribution.
* 3. Neither the name of the University nor the names of its contributors
* may be used to endorse or promote products derived from this software
* without specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE REGENTS AND CONTRIBUTORS ``AS IS'' AND
* ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
* IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
* ARE DISCLAIMED. IN NO EVENT SHALL THE REGENTS OR CONTRIBUTORS BE LIABLE
* FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
* DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
* OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
* HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
* LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
* OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
* SUCH DAMAGE.
*/
#ifndef lint
char copyright[] =
"@(#) Copyright (c) 1988 Regents of the University of California.\n\
All rights reserved.\n";
#endif /* not lint */
#ifndef lint
/*static char sccsid[] = "from: @(#)strip.c 5.8 (Berkeley) 11/6/91";*/
static char rcsid[] = "$OpenBSD: strip.c,v 1.19 2003/06/03 02:56:17 millert Exp $";
#endif /* not lint */
#include <sys/param.h>
#include <sys/types.h>
#include <sys/stat.h>
#include <sys/mman.h>
#include <fcntl.h>
#include <errno.h>
#include <a.out.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <err.h>
#include <ranlib.h>
#include "byte.c"
#ifdef MID_MACHINE_OVERRIDE
#undef MID_MACHINE
#define MID_MACHINE MID_MACHINE_OVERRIDE
#endif
typedef struct exec EXEC;
typedef struct nlist NLIST;
#define strx n_un.n_strx
int s_stab(const char *, int, EXEC *, struct stat *, off_t *);
int s_sym(const char *, int, EXEC *, struct stat *, off_t *);
void usage(void);
int xflag = 0;
int
main(argc, argv)
int argc;
char *argv[];
{
int fd;
EXEC *ep;
struct stat sb;
int (*sfcn)(const char *, int, EXEC *, struct stat *, off_t *);
int ch, errors;
char *fn;
off_t newsize;
sfcn = s_sym;
while ((ch = getopt(argc, argv, "dx")) != -1)
switch(ch) {
case 'x':
xflag = 1;
/*FALLTHROUGH*/
case 'd':
sfcn = s_stab;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
errors = 0;
#define ERROR(x) errors |= 1; warnx("%s: %s", fn, strerror(x)); continue;
while ((fn = *argv++)) {
if ((fd = open(fn, O_RDWR)) < 0) {
ERROR(errno);
}
if (fstat(fd, &sb)) {
(void)close(fd);
ERROR(errno);
}
if (sb.st_size < sizeof(EXEC)) {
(void)close(fd);
ERROR(EFTYPE);
}
if ((ep = (EXEC *)mmap(NULL, sb.st_size, PROT_READ|PROT_WRITE,
MAP_SHARED, fd, (off_t)0)) == MAP_FAILED) {
(void)close(fd);
ERROR(errno);
}
if (BAD_OBJECT(*ep)) {
munmap((caddr_t)ep, sb.st_size);
(void)close(fd);
ERROR(EFTYPE);
}
/* since we're dealing with an mmap there, we have to convert once
for dealing with data in memory, and a second time for out
*/
fix_header_order(ep);
newsize = 0;
errors |= sfcn(fn, fd, ep, &sb, &newsize);
fix_header_order(ep);
munmap((caddr_t)ep, sb.st_size);
if (newsize && ftruncate(fd, newsize)) {
warn("%s", fn);
errors = 1;
}
if (close(fd)) {
ERROR(errno);
}
}
#undef ERROR
exit(errors);
}
int
s_sym(fn, fd, ep, sp, sz)
const char *fn;
int fd;
EXEC *ep;
struct stat *sp;
off_t *sz;
{
char *neweof;
#if 0
char *mineof;
#endif
int zmagic;
zmagic = ep->a_data &&
(N_GETMAGIC(*ep) == ZMAGIC || N_GETMAGIC(*ep) == QMAGIC);
/*
* If no symbols or data/text relocation info and
* the file data segment size is already minimized, quit.
*/
if (!ep->a_syms && !ep->a_trsize && !ep->a_drsize) {
#if 0
if (!zmagic)
return 0;
if (sp->st_size < N_TRELOFF(*ep))
#endif
return 0;
}
/*
* New file size is the header plus text and data segments; OMAGIC
* and NMAGIC formats have the text/data immediately following the
* header. ZMAGIC format wastes the rest of of header page.
*/
neweof = (char *)ep + N_TRELOFF(*ep);
#if 0
/*
* Unfortunately, this can't work correctly without changing the way
* the loader works. We could cap it at one page, or even fiddle with
* a_data and a_bss, but this only works for CLBYTES == NBPG. If we
* are on a system where, e.g., CLBYTES is 8k and NBPG is 4k, and we
* happen to remove 4.5k, we will lose. And we really don't want to
* fiddle with pages, because that breaks binary compatibility. Lose.
*/
if (zmagic) {
/*
* Get rid of unneeded zeroes at the end of the data segment
* to reduce the file size even more.
*/
mineof = (char *)ep + N_DATOFF(*ep);
while (neweof > mineof && neweof[-1] == '\0')
neweof--;
}
#endif
/* Set symbol size and relocation info values to 0. */
ep->a_syms = ep->a_trsize = ep->a_drsize = 0;
/* Truncate the file. */
*sz = neweof - (char *)ep;
return 0;
}
int
s_stab(fn, fd, ep, sp, sz)
const char *fn;
int fd;
EXEC *ep;
struct stat *sp;
off_t *sz;
{
int cnt, len;
char *nstr, *nstrbase=0, *used=0, *p, *strbase;
NLIST *sym, *nsym;
u_long allocsize;
int mid;
NLIST *symbase;
unsigned int *mapping=0;
int error=1;
unsigned int nsyms;
struct relocation_info *reloc_base;
unsigned int i, j;
/* Quit if no symbols. */
if (ep->a_syms == 0)
return 0;
if (N_SYMOFF(*ep) >= sp->st_size) {
warnx("%s: bad symbol table", fn);
return 1;
}
mid = N_GETMID(*ep);
/*
* Initialize old and new symbol pointers. They both point to the
* beginning of the symbol table in memory, since we're deleting
* entries.
*/
sym = nsym = symbase = (NLIST *)((char *)ep + N_SYMOFF(*ep));
/*
* Allocate space for the new string table, initialize old and
* new string pointers. Handle the extra long at the beginning
* of the string table.
*/
strbase = (char *)ep + N_STROFF(*ep);
allocsize = fix_long_order(*(u_long *)strbase, mid);
if ((nstrbase = malloc((u_int) allocsize)) == NULL) {
warnx("%s", strerror(ENOMEM));
goto end;
}
nstr = nstrbase + sizeof(u_long);
/* okay, so we also need to keep symbol numbers for relocations. */
nsyms = ep->a_syms/ sizeof(NLIST);
used = calloc(nsyms, 1);
if (!used) {
warnx("%s", strerror(ENOMEM));
goto end;
}
mapping = malloc(nsyms * sizeof(unsigned int));
if (!mapping) {
warnx("%s", strerror(ENOMEM));
goto end;
}
if ((ep->a_trsize || ep->a_drsize) && byte_sex(mid) != BYTE_ORDER) {
warnx("%s: cross-stripping not supported", fn);
goto end;
}
/* first check the relocations for used symbols, and mark them */
/* text */
reloc_base = (struct relocation_info *) ((char *)ep + N_TRELOFF(*ep));
if (N_TRELOFF(*ep) + ep->a_trsize > sp->st_size) {
warnx("%s: bad text relocation", fn);
goto end;
}
for (i = 0; i < ep->a_trsize / sizeof(struct relocation_info); i++) {
if (!reloc_base[i].r_extern)
continue;
if (reloc_base[i].r_symbolnum > nsyms) {
warnx("%s: bad symbol number in text relocation", fn);
goto end;
}
used[reloc_base[i].r_symbolnum] = 1;
}
/* data */
reloc_base = (struct relocation_info *) ((char *)ep + N_DRELOFF(*ep));
if (N_DRELOFF(*ep) + ep->a_drsize > sp->st_size) {
warnx("%s: bad data relocation", fn);
goto end;
}
for (i = 0; i < ep->a_drsize / sizeof(struct relocation_info); i++) {
if (!reloc_base[i].r_extern)
continue;
if (reloc_base[i].r_symbolnum > nsyms) {
warnx("%s: bad symbol number in data relocation", fn);
goto end;
}
used[reloc_base[i].r_symbolnum] = 1;
}
/*
* Read through the symbol table. For each non-debugging symbol,
* copy it and save its string in the new string table. Keep
* track of the number of symbols.
*/
for (cnt = nsyms, i = 0, j = 0; cnt--; ++sym, ++i) {
fix_nlist_order(sym, mid);
if (!(sym->n_type & N_STAB) && sym->strx) {
*nsym = *sym;
nsym->strx = nstr - nstrbase;
p = strbase + sym->strx;
if (xflag && !used[i] &&
(!(sym->n_type & N_EXT) ||
(sym->n_type & ~N_EXT) == N_FN ||
strcmp(p, "gcc_compiled.") == 0 ||
strcmp(p, "gcc2_compiled.") == 0 ||
strncmp(p, "___gnu_compiled_", 16) == 0)) {
continue;
}
len = strlen(p) + 1;
mapping[i] = j++;
if (N_STROFF(*ep) + sym->strx + len > sp->st_size) {
warnx("%s: bad symbol table", fn);
goto end;
}
bcopy(p, nstr, len);
nstr += len;
fix_nlist_order(nsym++, mid);
}
}
/* renumber symbol relocations */
/* text */
reloc_base = (struct relocation_info *) ((char *)ep + N_TRELOFF(*ep));
for (i = 0; i < ep->a_trsize / sizeof(struct relocation_info); i++) {
if (!reloc_base[i].r_extern)
continue;
reloc_base[i].r_symbolnum = mapping[reloc_base[i].r_symbolnum];
}
/* data */
reloc_base = (struct relocation_info *) ((char *)ep + N_DRELOFF(*ep));
for (i = 0; i < ep->a_drsize / sizeof(struct relocation_info); i++) {
if (!reloc_base[i].r_extern)
continue;
reloc_base[i].r_symbolnum = mapping[reloc_base[i].r_symbolnum];
}
/* Fill in new symbol table size. */
ep->a_syms = (nsym - symbase) * sizeof(NLIST);
/* Fill in the new size of the string table. */
len = nstr - nstrbase;
*(u_long *)nstrbase = fix_long_order(len, mid);
/*
* Copy the new string table into place. Nsym should be pointing
* at the address past the last symbol entry.
*/
bcopy(nstrbase, (void *)nsym, len);
error = 0;
end:
free(nstrbase);
free(used);
free(mapping);
/* Truncate to the current length. */
*sz = (char *)nsym + len - (char *)ep;
return error;
}
void
usage()
{
(void)fprintf(stderr, "usage: strip [-dx] file ...\n");
exit(1);
}
|