Initial Import from SVN
This commit is contained in:
36
src/cmd/ranlib/Makefile
Normal file
36
src/cmd/ranlib/Makefile
Normal file
@@ -0,0 +1,36 @@
|
||||
TOPSRC = $(shell cd ../../..; pwd)
|
||||
include $(TOPSRC)/target.mk
|
||||
#include $(TOPSRC)/cross.mk
|
||||
|
||||
CFLAGS += -Werror -Wall -g -I. -I../ar
|
||||
LDFLAGS += -g
|
||||
|
||||
SRCS = ../ar/archive.c ranlib.c
|
||||
OBJS = archive.o ranlib.o
|
||||
MAN = ranlib.0 ranlib.5.0
|
||||
MANSRC = ranlib.1
|
||||
|
||||
all: ranlib $(MAN)
|
||||
|
||||
ranlib: ${OBJS}
|
||||
${CC} ${LDFLAGS} -o ranlib.elf ${OBJS} ${LIBS}
|
||||
${OBJDUMP} -S ranlib.elf > ranlib.dis
|
||||
${SIZE} ranlib.elf
|
||||
${ELF2AOUT} ranlib.elf $@
|
||||
|
||||
archive.o: ../ar/archive.c
|
||||
${CC} ${CFLAGS} -c -o $@ $<
|
||||
|
||||
ranlib.0: ranlib.1
|
||||
${MANROFF} $< > $@
|
||||
|
||||
ranlib.5.0: ranlib.5.5
|
||||
${MANROFF} $< > $@
|
||||
|
||||
clean:
|
||||
rm -f *.o *.0 *.elf ${MAN} ranlib *.elf *.dis a.out tags *~
|
||||
|
||||
install:
|
||||
cp ranlib.5.0 ${DESTDIR}/share/man/cat5/ranlib.0
|
||||
cp ranlib.0 ${DESTDIR}/share/man/cat1/ranlib.0
|
||||
install ranlib ${DESTDIR}/bin/ranlib
|
||||
84
src/cmd/ranlib/ranlib.1
Normal file
84
src/cmd/ranlib/ranlib.1
Normal file
@@ -0,0 +1,84 @@
|
||||
.\" Copyright (c) 1990 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.
|
||||
.\"
|
||||
.\" @(#)ranlib.1 6.7 (Berkeley) 5/9/91
|
||||
.\"
|
||||
.TH RANLIB 1 "May 9, 1991"
|
||||
.AT 3
|
||||
.UC 6
|
||||
.SH NAME
|
||||
ranlib \- table-of-contents for archive libraries
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
.ft B
|
||||
ranlib [-t] file ...
|
||||
.fi
|
||||
.ft R
|
||||
.SH DESCRIPTION
|
||||
.I Ranlib
|
||||
creates a table of external references for archive libraries,
|
||||
normally used by the loader,
|
||||
.IR ld (1) .
|
||||
This table is is named ``__.SYMDEF'' and is prepended to the archive.
|
||||
Files in the archive which are not executable and symbols which are
|
||||
uninteresting to the loader are ignored.
|
||||
.PP
|
||||
The options are as follows:
|
||||
.TP
|
||||
\-t
|
||||
Set the modification time of the __.SYMDEF file.
|
||||
This time is compared by the loader with the modification time of the
|
||||
archive to verify that the table is up-to-date with respect to the
|
||||
archive.
|
||||
If the modification time has been changed without any change to the
|
||||
archive (for example, by a
|
||||
.IR cp (1) ) ,
|
||||
the
|
||||
.I \-t
|
||||
option can be used to ``touch'' the modification time so that it
|
||||
appears that the table is up-to-date.
|
||||
.SH FILES
|
||||
.TP 14
|
||||
/tmp
|
||||
default temporary file directory
|
||||
.TP 14
|
||||
ranlib.XXXXXX
|
||||
temporary file names
|
||||
.SH SEE ALSO
|
||||
.IR ar (1) ,
|
||||
.IR ld (1) ,
|
||||
.IR lorder (1) ,
|
||||
.IR nm (1) ,
|
||||
.IR ranlib (5)
|
||||
.SH HISTORY
|
||||
A
|
||||
.I ranlib
|
||||
command appeared in Version 7 AT&T UNIX.
|
||||
70
src/cmd/ranlib/ranlib.5.5
Normal file
70
src/cmd/ranlib/ranlib.5.5
Normal file
@@ -0,0 +1,70 @@
|
||||
.\" Copyright (c) 1990, 1991 The 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.
|
||||
.\"
|
||||
.\" @(#)ranlib.5.5 5.2 (Berkeley) 5/10/91
|
||||
.\"
|
||||
.TH RANLIB 5 "May 10, 1991"
|
||||
.AT 3
|
||||
.UC 6
|
||||
.SH NAME
|
||||
ranlib \- archive (library) table-of-contents format
|
||||
.SH SYNOPSIS
|
||||
.nf
|
||||
.ft B
|
||||
#include <ranlib.h>
|
||||
.fi
|
||||
.ft R
|
||||
.SH DESCRIPTION
|
||||
The archive table-of-contents command
|
||||
.I ranlib
|
||||
creates a table of contents for archives, containing object files, to
|
||||
be used by the link-editor
|
||||
.IR ld (1) .
|
||||
It operates on archives created with the utility
|
||||
.IR ar (1) .
|
||||
.PP
|
||||
The
|
||||
.I Ranlib
|
||||
function
|
||||
prepends a new file to the archive which has two separate parts.
|
||||
The first part is a standard archive header, which has a special name
|
||||
field, "__.SYMDEF".
|
||||
.PP
|
||||
The second part is a list of ranlib structures of variable size.
|
||||
Each of the ranlib structures consists of a sequence of records, terminated
|
||||
by 1, 2, 3 or 4 zero bytes (to align to word boundary).
|
||||
.PP
|
||||
Every record consists of a byte with name length, a word specifying an offset
|
||||
from the beginning of the archive to the start of the archive file which defines the symbol,
|
||||
and a symbol name of given length.
|
||||
.SH SEE ALSO
|
||||
.IR ar (1) ,
|
||||
.IR ranlib (1)
|
||||
467
src/cmd/ranlib/ranlib.c
Normal file
467
src/cmd/ranlib/ranlib.c
Normal file
@@ -0,0 +1,467 @@
|
||||
/*-
|
||||
* Copyright (c) 1990 The Regents of the University of California.
|
||||
* All rights reserved.
|
||||
*
|
||||
* This code is derived from software contributed to Berkeley by
|
||||
* Hugh Smith at The University of Guelph.
|
||||
*
|
||||
* 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.
|
||||
*/
|
||||
#ifdef CROSS
|
||||
# include <stdint.h>
|
||||
# include <sys/types.h>
|
||||
# include <sys/select.h>
|
||||
# include <sys/stat.h>
|
||||
# include <sys/time.h>
|
||||
# include <time.h>
|
||||
# include <sys/fcntl.h>
|
||||
# include <sys/signal.h>
|
||||
# include <stdio.h>
|
||||
# include <string.h>
|
||||
# include <stdlib.h>
|
||||
# include <unistd.h>
|
||||
# include <errno.h>
|
||||
# define _PATH_RANTMP "/tmp/ranlib.XXXXXX"
|
||||
#else
|
||||
# include <sys/types.h>
|
||||
# include <sys/dir.h>
|
||||
# include <sys/file.h>
|
||||
# include <sys/stat.h>
|
||||
# include <sys/param.h>
|
||||
# include <stdio.h>
|
||||
# include <errno.h>
|
||||
# include <stdlib.h>
|
||||
# include <string.h>
|
||||
# include <strings.h>
|
||||
# include <fcntl.h>
|
||||
# include <unistd.h>
|
||||
# include <signal.h>
|
||||
# include <time.h>
|
||||
# include <paths.h>
|
||||
#endif
|
||||
#include <ar.h>
|
||||
#include <ranlib.h>
|
||||
#include <a.out.h>
|
||||
#include "archive.h"
|
||||
|
||||
u_int options; /* UNUSED -- keep open_archive happy */
|
||||
|
||||
CHDR chdr; /* converted header */
|
||||
char *archive; /* archive name */
|
||||
char *tname = "temporary file"; /* temporary file "name" */
|
||||
|
||||
typedef struct _rlib {
|
||||
struct _rlib *next; /* next structure */
|
||||
off_t pos; /* offset of defining archive file */
|
||||
char *sym; /* symbol */
|
||||
int symlen; /* strlen(sym) */
|
||||
} RLIB;
|
||||
RLIB *rhead, **pnext;
|
||||
|
||||
FILE *fp;
|
||||
long symcnt; /* symbol count */
|
||||
long tsymlen; /* total string length */
|
||||
int verbose;
|
||||
|
||||
void error(name)
|
||||
char *name;
|
||||
{
|
||||
(void)fprintf(stderr, "ranlib: %s: %s\n", name, strerror(errno));
|
||||
exit(1);
|
||||
}
|
||||
|
||||
void *emalloc(len)
|
||||
int len;
|
||||
{
|
||||
char *p;
|
||||
|
||||
p = malloc((u_int)len);
|
||||
if (! p)
|
||||
error(archive);
|
||||
return((void *)p);
|
||||
}
|
||||
|
||||
int sgets(buf, n, fp)
|
||||
char *buf;
|
||||
int n;
|
||||
register FILE *fp;
|
||||
{
|
||||
register int i, c;
|
||||
|
||||
n--; /* room for null */
|
||||
for (i = 0; i < n; i++) {
|
||||
c = getc(fp);
|
||||
if (c == EOF || c == 0)
|
||||
break;
|
||||
*buf++ = c;
|
||||
}
|
||||
*buf = '\0';
|
||||
return(i + 1);
|
||||
}
|
||||
|
||||
unsigned int fgetword (f)
|
||||
register FILE *f;
|
||||
{
|
||||
register unsigned int h;
|
||||
|
||||
h = getc (f);
|
||||
h |= getc (f) << 8;
|
||||
h |= getc (f) << 16;
|
||||
h |= getc (f) << 24;
|
||||
return h;
|
||||
}
|
||||
|
||||
/*
|
||||
* Read a symbol table entry.
|
||||
* Return a number of bytes read, 0 on end of table or -1 on EOF.
|
||||
* Format of symbol record:
|
||||
* 1 byte: length of name in bytes
|
||||
* 1 byte: type of symbol (N_UNDF, N_ABS, N_TEXT, etc)
|
||||
* 4 bytes: value
|
||||
* N bytes: name
|
||||
*/
|
||||
int fgetsym (fi, name, value, type)
|
||||
register FILE *fi;
|
||||
register char *name;
|
||||
unsigned *value;
|
||||
unsigned short *type;
|
||||
{
|
||||
register int len;
|
||||
unsigned nbytes;
|
||||
|
||||
len = getc (fi);
|
||||
if (len < 0) {
|
||||
return -1;
|
||||
}
|
||||
if (len == 0) {
|
||||
return 0;
|
||||
}
|
||||
*type = getc (fi);
|
||||
*value = fgetword (fi);
|
||||
nbytes = len + 6;
|
||||
if (name) {
|
||||
while (len-- > 0)
|
||||
*name++ = getc (fi);
|
||||
*name = '\0';
|
||||
} else
|
||||
fseek (fi, len, SEEK_CUR);
|
||||
return nbytes;
|
||||
}
|
||||
|
||||
/*
|
||||
* Read the exec structure; ignore any files that don't look exactly right.
|
||||
*/
|
||||
void rexec(rfd, wfd)
|
||||
int rfd;
|
||||
int wfd;
|
||||
{
|
||||
register RLIB *rp;
|
||||
long nsyms;
|
||||
register int nr, symlen;
|
||||
struct exec ebuf;
|
||||
off_t r_off, w_off;
|
||||
|
||||
/* Get current offsets for original and tmp files. */
|
||||
r_off = lseek(rfd, (off_t)0, SEEK_CUR);
|
||||
w_off = lseek(wfd, (off_t)0, SEEK_CUR);
|
||||
|
||||
/* Read in exec structure. */
|
||||
nr = read(rfd, (char *)&ebuf, sizeof(struct exec));
|
||||
if (nr != sizeof(struct exec))
|
||||
goto bad1;
|
||||
|
||||
/* Check magic number and symbol count. */
|
||||
if (N_BADMAG(ebuf) || ebuf.a_syms == 0)
|
||||
goto bad1;
|
||||
|
||||
/* Seek to symbol table. */
|
||||
if (fseek(fp, (off_t)N_SYMOFF(ebuf) + r_off, SEEK_SET) == (off_t)-1)
|
||||
goto bad1;
|
||||
|
||||
/* For each symbol read the nlist entry and save it as necessary. */
|
||||
nsyms = ebuf.a_syms;
|
||||
while (nsyms > 4) {
|
||||
unsigned value;
|
||||
unsigned short type;
|
||||
char name [256];
|
||||
|
||||
int c = fgetsym(fp, name, &value, &type);
|
||||
if (c < 0) {
|
||||
if (feof(fp)) {
|
||||
/* Bad file format. */
|
||||
errno = EINVAL;
|
||||
}
|
||||
error(archive);
|
||||
}
|
||||
nsyms -= c;
|
||||
symlen = c - 6;
|
||||
|
||||
/* Ignore if no name or local. */
|
||||
if (symlen <= 0 || ! (type & N_EXT))
|
||||
continue;
|
||||
|
||||
/*
|
||||
* If the symbol is an undefined external and the n_value
|
||||
* field is non-zero, keep it.
|
||||
*/
|
||||
if ((type & N_TYPE) == N_UNDF && ! value)
|
||||
continue;
|
||||
|
||||
rp = (RLIB *)emalloc(sizeof(RLIB));
|
||||
rp->next = NULL;
|
||||
rp->pos = w_off;
|
||||
rp->symlen = symlen;
|
||||
rp->sym = (char*) emalloc(symlen + 1);
|
||||
bcopy(name, rp->sym, symlen + 1);
|
||||
tsymlen += symlen;
|
||||
|
||||
/* Build in forward order for "ar -m" command. */
|
||||
*pnext = rp;
|
||||
pnext = &rp->next;
|
||||
++symcnt;
|
||||
}
|
||||
bad1: (void)lseek(rfd, (off_t)r_off, SEEK_SET);
|
||||
}
|
||||
|
||||
/*
|
||||
* symobj --
|
||||
* Write the symbol table into the archive, computing offsets as
|
||||
* writing.
|
||||
*/
|
||||
void symobj()
|
||||
{
|
||||
register RLIB *rp;
|
||||
char hb[sizeof(struct ar_hdr) + 1];
|
||||
long ransize, baseoff;
|
||||
|
||||
/* Rewind the archive, leaving the magic number. */
|
||||
if (fseek(fp, (off_t)SARMAG, SEEK_SET) == (off_t)-1)
|
||||
error(archive);
|
||||
|
||||
/* Compute the size of rantab. */
|
||||
ransize = 0;
|
||||
for (rp = rhead; rp; rp = rp->next) {
|
||||
ransize += rp->symlen + 5;
|
||||
}
|
||||
ransize += 4 - (ransize & 3);
|
||||
|
||||
/* Put out the ranlib archive file header. */
|
||||
(void)sprintf(hb, HDR2, RANLIBMAG, 0L, getuid(), getgid(),
|
||||
0666 & ~umask(0), ransize, ARFMAG);
|
||||
if (! fwrite(hb, sizeof(struct ar_hdr), 1, fp))
|
||||
error(tname);
|
||||
|
||||
/* Offset of the first archive file. */
|
||||
baseoff = SARMAG + sizeof(struct ar_hdr) + ransize;
|
||||
|
||||
/*
|
||||
* Write out the ranlib structures. The offset into the archive
|
||||
* is the base value plus the offset to the first archive file.
|
||||
*/
|
||||
for (rp = rhead; rp; rp = rp->next) {
|
||||
/* Write struct ranlib to file.
|
||||
* 1 byte - length of name.
|
||||
* 4 bytes - seek in archive.
|
||||
* 'len' bytes - symbol name. */
|
||||
unsigned offset = baseoff + rp->pos;
|
||||
fputc (rp->symlen, fp);
|
||||
if (! fwrite((char *)&offset, 4, 1, fp))
|
||||
error(archive);
|
||||
if (! fwrite(rp->sym, rp->symlen, 1, fp))
|
||||
error(tname);
|
||||
if (verbose)
|
||||
fprintf (stderr, "%8u %s\n", offset, rp->sym);
|
||||
ransize -= rp->symlen + 5;
|
||||
}
|
||||
|
||||
/* Align to word boundary. */
|
||||
while (ransize-- > 0)
|
||||
fputc (0, fp);
|
||||
|
||||
(void)fflush(fp);
|
||||
}
|
||||
|
||||
void settime(afd)
|
||||
int afd;
|
||||
{
|
||||
struct ar_hdr *hdr;
|
||||
off_t size;
|
||||
char buf[50];
|
||||
|
||||
size = SARMAG + sizeof(hdr->ar_name);
|
||||
if (lseek(afd, size, SEEK_SET) == (off_t)-1)
|
||||
error(archive);
|
||||
(void)sprintf(buf, "%-12ld", time((time_t *)NULL) + RANLIBSKEW);
|
||||
if (write(afd, buf, sizeof(hdr->ar_date)) != sizeof(hdr->ar_date))
|
||||
error(archive);
|
||||
}
|
||||
|
||||
int tmp()
|
||||
{
|
||||
#ifndef CROSS
|
||||
long set, oset;
|
||||
#endif
|
||||
int fd;
|
||||
char path[MAXPATHLEN];
|
||||
|
||||
bcopy(_PATH_RANTMP, path, sizeof(_PATH_RANTMP));
|
||||
|
||||
#ifndef CROSS
|
||||
set = sigmask(SIGHUP) | sigmask(SIGINT) |
|
||||
sigmask(SIGQUIT) | sigmask(SIGTERM);
|
||||
oset = sigsetmask(set);
|
||||
#endif
|
||||
fd = mkstemp(path);
|
||||
if (fd < 0)
|
||||
error(tname);
|
||||
(void)unlink(path);
|
||||
#ifndef CROSS
|
||||
(void)sigsetmask(oset);
|
||||
#endif
|
||||
return(fd);
|
||||
}
|
||||
|
||||
int build()
|
||||
{
|
||||
CF cf;
|
||||
int afd, tfd;
|
||||
off_t size;
|
||||
|
||||
afd = open_archive(O_RDWR);
|
||||
fp = fdopen(afd, "r+");
|
||||
tfd = tmp();
|
||||
|
||||
SETCF(afd, archive, tfd, tname, RPAD|WPAD);
|
||||
|
||||
/* Read through the archive, creating list of symbols. */
|
||||
pnext = &rhead;
|
||||
symcnt = tsymlen = 0;
|
||||
while(get_arobj(afd)) {
|
||||
if (strcmp(chdr.name, RANLIBMAG) == 0) {
|
||||
skip_arobj(afd);
|
||||
continue;
|
||||
}
|
||||
rexec(afd, tfd);
|
||||
put_arobj(&cf, (struct stat *)NULL);
|
||||
}
|
||||
*pnext = NULL;
|
||||
|
||||
/* Create the symbol table. */
|
||||
symobj();
|
||||
|
||||
/* Copy the saved objects into the archive. */
|
||||
size = lseek(tfd, (off_t)0, SEEK_CUR);
|
||||
(void)lseek(tfd, (off_t)0, SEEK_SET);
|
||||
SETCF(tfd, tname, afd, archive, RPAD|WPAD);
|
||||
copy_ar(&cf, size);
|
||||
(void)ftruncate(afd, lseek(afd, (off_t)0, SEEK_CUR));
|
||||
(void)close(tfd);
|
||||
|
||||
/* Set the time. */
|
||||
settime(afd);
|
||||
close_archive(afd);
|
||||
return(0);
|
||||
}
|
||||
|
||||
int touch()
|
||||
{
|
||||
int afd;
|
||||
|
||||
afd = open_archive(O_RDWR);
|
||||
|
||||
if (!get_arobj(afd) ||
|
||||
strncmp(RANLIBMAG, chdr.name, sizeof(RANLIBMAG) - 1)) {
|
||||
(void)fprintf(stderr,
|
||||
"ranlib: %s: no symbol table.\n", archive);
|
||||
return(1);
|
||||
}
|
||||
settime(afd);
|
||||
return(0);
|
||||
}
|
||||
|
||||
void usage()
|
||||
{
|
||||
fprintf(stderr, "Usage:\n");
|
||||
fprintf(stderr, " ranlib [-t] file...\n");
|
||||
fprintf(stderr, "Options:\n");
|
||||
fprintf(stderr, " -t Update the timestamp of the symbol map\n");
|
||||
fprintf(stderr, " -v Verbose: print the resulting symbol map\n");
|
||||
exit(1);
|
||||
}
|
||||
|
||||
int main(argc, argv)
|
||||
int argc;
|
||||
char **argv;
|
||||
{
|
||||
int ch, eval, tflag;
|
||||
|
||||
tflag = 0;
|
||||
while ((ch = getopt(argc, argv, "tv")) != EOF)
|
||||
switch(ch) {
|
||||
case 't':
|
||||
tflag = 1;
|
||||
break;
|
||||
case 'v':
|
||||
verbose = 1;
|
||||
break;
|
||||
case 'h':
|
||||
case '?':
|
||||
default:
|
||||
usage();
|
||||
}
|
||||
argc -= optind;
|
||||
argv += optind;
|
||||
|
||||
if (! *argv)
|
||||
usage();
|
||||
|
||||
for (eval = 0; (archive = *argv++);)
|
||||
eval |= tflag ? touch() : build();
|
||||
return eval;
|
||||
}
|
||||
|
||||
/*
|
||||
* For archive.c.
|
||||
*/
|
||||
char *rname(path)
|
||||
char *path;
|
||||
{
|
||||
register char *ind;
|
||||
|
||||
ind = rindex(path, '/');
|
||||
if (! ind)
|
||||
return path;
|
||||
return ind + 1;
|
||||
}
|
||||
|
||||
void badfmt()
|
||||
{
|
||||
errno = EINVAL;
|
||||
error(archive);
|
||||
}
|
||||
Reference in New Issue
Block a user