NetBSD/usr.bin/strip/strip.c

293 lines
7.5 KiB
C
Raw Normal View History

1993-03-21 12:45:37 +03:00
/*
* 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. All advertising materials mentioning features or use of this software
* must display the following acknowledgement:
* This product includes software developed by the University of
* California, Berkeley and its contributors.
* 4. 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
1993-08-07 08:44:25 +04:00
/*static char sccsid[] = "from: @(#)strip.c 5.8 (Berkeley) 11/6/91";*/
static char rcsid[] = "$Id: strip.c,v 1.8 1993/11/19 02:24:40 mycroft Exp $";
1993-03-21 12:45:37 +03:00
#endif /* not lint */
#include <sys/types.h>
#include <sys/stat.h>
1993-08-07 08:44:25 +04:00
#include <sys/mman.h>
1993-03-21 12:45:37 +03:00
#include <fcntl.h>
#include <errno.h>
#include <a.out.h>
#include <unistd.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
typedef struct exec EXEC;
typedef struct nlist NLIST;
1993-08-07 08:44:25 +04:00
#define strx n_un.n_strx
1993-03-21 12:45:37 +03:00
void err __P((const char *fmt, ...));
int s_stab __P((const char *, int, EXEC *, struct stat *));
int s_sym __P((const char *, int, EXEC *, struct stat *));
1993-03-21 12:45:37 +03:00
void usage __P((void));
int xflag = 0;
1993-03-21 12:45:37 +03:00
main(argc, argv)
int argc;
char *argv[];
{
register int fd, nb;
EXEC *ep;
struct stat sb;
int (*sfcn)__P((const char *, int, EXEC *, struct stat *));
int ch, errors;
1993-03-21 12:45:37 +03:00
char *fn;
sfcn = s_sym;
while ((ch = getopt(argc, argv, "dx")) != EOF)
1993-03-21 12:45:37 +03:00
switch(ch) {
case 'x':
xflag = 1;
/*FALLTHROUGH*/
1993-03-21 12:45:37 +03:00
case 'd':
sfcn = s_stab;
break;
case '?':
default:
usage();
}
argc -= optind;
argv += optind;
errors = 0;
#define ERROR(x) errors |= 1; err("%s: %s", fn, strerror(x)); continue;
1993-03-21 12:45:37 +03:00
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);
1993-03-21 12:45:37 +03:00
}
if ((ep = (EXEC *)mmap(NULL, sb.st_size, PROT_READ | PROT_WRITE,
MAP_FILE | MAP_SHARED, fd, (off_t)0)) == (EXEC *)-1) {
(void)close(fd);
ERROR(errno);
}
if (N_BADMAG(*ep)) {
munmap((caddr_t)ep, sb.st_size);
(void)close(fd);
ERROR(EFTYPE);
1993-03-21 12:45:37 +03:00
}
errors |= sfcn(fn, fd, ep, &sb);
munmap((caddr_t)ep, sb.st_size);
if (close(fd)) {
ERROR(errno);
}
1993-03-21 12:45:37 +03:00
}
#undef ERROR
exit(errors);
1993-03-21 12:45:37 +03:00
}
int
s_sym(fn, fd, ep, sp)
1993-03-21 12:45:37 +03:00
const char *fn;
int fd;
register EXEC *ep;
struct stat *sp;
1993-03-21 12:45:37 +03:00
{
register char *fileend, *minend;
1993-03-21 12:45:37 +03:00
#if 0
1993-03-21 12:45:37 +03:00
/* If no symbols or data/text relocation info, quit. */
if (!ep->a_syms && !ep->a_trsize && !ep->a_drsize)
return 0;
#endif
1993-03-21 12:45:37 +03:00
/*
* 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.
*/
fileend = (char *)ep + N_RELOFF(*ep);
if (ep->a_data &&
(N_GETMAGIC(*ep) == ZMAGIC || N_GETMAGIC(*ep) == QMAGIC)) {
/*
* Get rid of unneeded zeroes at the end of the data segment
* to reduce the file size even more.
*/
minend = (char *)ep + N_DATOFF(*ep);
while (fileend > minend && fileend[-1] == '\0')
fileend--;
}
1993-03-21 12:45:37 +03:00
/* Set symbol size and relocation info values to 0. */
ep->a_syms = ep->a_trsize = ep->a_drsize = 0;
/* Truncate the file. */
if (ftruncate(fd, fileend - (char *)ep)) {
err("%s: %s", fn, strerror(errno));
return 1;
}
return 0;
1993-03-21 12:45:37 +03:00
}
int
s_stab(fn, fd, ep, sp)
1993-03-21 12:45:37 +03:00
const char *fn;
int fd;
EXEC *ep;
struct stat *sp;
1993-03-21 12:45:37 +03:00
{
1993-08-07 08:44:25 +04:00
register int cnt, len, nsymcnt;
register char *nstr, *nstrbase, *p, *strbase;
register NLIST *sym, *nsym;
NLIST *symbase;
1993-03-21 12:45:37 +03:00
/* Quit if no symbols. */
if (ep->a_syms == 0)
return 0;
1993-03-21 12:45:37 +03:00
if (N_SYMOFF(*ep) >= sp->st_size) {
err("%s: bad symbol table", fn);
return 1;
}
1993-03-21 12:45:37 +03:00
1993-08-07 08:44:25 +04:00
/*
* 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));
1993-03-21 12:45:37 +03:00
/*
1993-08-07 08:44:25 +04:00
* Allocate space for the new string table, initialize old and
* new string pointers. Handle the extra long at the beginning
* of the string table.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 08:44:25 +04:00
strbase = (char *)ep + N_STROFF(*ep);
if ((nstrbase = malloc((u_int)*(u_long *)strbase)) == NULL) {
err("%s", strerror(ENOMEM));
return 1;
}
1993-08-07 08:44:25 +04:00
nstr = nstrbase + sizeof(u_long);
1993-03-21 12:45:37 +03:00
/*
* Read through the symbol table. For each non-debugging symbol,
1993-08-07 08:44:25 +04:00
* copy it and save its string in the new string table. Keep
* track of the number of symbols.
1993-03-21 12:45:37 +03:00
*/
1993-08-07 08:44:25 +04:00
for (cnt = ep->a_syms / sizeof(NLIST); cnt--; ++sym)
if (!(sym->n_type & N_STAB) && sym->strx) {
*nsym = *sym;
nsym->strx = nstr - nstrbase;
p = strbase + sym->strx;
if (xflag &&
(!(sym->n_type & N_EXT) ||
1993-09-07 20:12:15 +04:00
(sym->n_type & ~N_EXT) == N_FN ||
strcmp(p, "gcc_compiled.") == 0 ||
strcmp(p, "gcc2_compiled.") == 0 ||
strncmp(p, "___gnu_compiled_", 16) == 0)) {
continue;
}
1993-03-21 12:45:37 +03:00
len = strlen(p) + 1;
1993-08-07 08:44:25 +04:00
bcopy(p, nstr, len);
nstr += len;
++nsym;
1993-03-21 12:45:37 +03:00
}
/* Fill in new symbol table size. */
1993-08-07 08:44:25 +04:00
ep->a_syms = (nsym - symbase) * sizeof(NLIST);
1993-03-21 12:45:37 +03:00
/* Fill in the new size of the string table. */
1993-08-07 08:44:25 +04:00
*(u_long *)nstrbase = len = nstr - nstrbase;
1993-03-21 12:45:37 +03:00
1993-08-07 08:44:25 +04:00
/*
* Copy the new string table into place. Nsym should be pointing
* at the address past the last symbol entry.
*/
bcopy(nstrbase, (void *)nsym, len);
free(nstrbase);
1993-03-21 12:45:37 +03:00
/* Truncate to the current length. */
if (ftruncate(fd, (char *)nsym + len - (char *)ep)) {
1993-08-07 08:44:25 +04:00
err("%s: %s", fn, strerror(errno));
return 1;
}
return 0;
1993-03-21 12:45:37 +03:00
}
void
usage()
{
(void)fprintf(stderr, "usage: strip [-dx] file ...\n");
1993-03-21 12:45:37 +03:00
exit(1);
}
#if __STDC__
#include <stdarg.h>
#else
#include <varargs.h>
#endif
void
#if __STDC__
err(const char *fmt, ...)
#else
err(fmt, va_alist)
char *fmt;
va_dcl
#endif
{
va_list ap;
#if __STDC__
va_start(ap, fmt);
#else
va_start(ap);
#endif
(void)fprintf(stderr, "strip: ");
(void)vfprintf(stderr, fmt, ap);
va_end(ap);
(void)fprintf(stderr, "\n");
}