NetBSD/lib/libc/gen/nlist.c

102 lines
3.1 KiB
C
Raw Normal View History

/* $NetBSD: nlist.c,v 1.10 1996/10/01 00:27:38 cgd Exp $ */
1993-03-21 12:45:37 +03:00
/*
* Copyright (c) 1996 Christopher G. Demetriou. All rights reserved.
1994-05-09 07:14:43 +04:00
* Copyright (c) 1989, 1993
* The Regents of the University of California. All rights reserved.
1993-03-21 12:45:37 +03:00
*
* 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.
*/
#if defined(LIBC_SCCS) && !defined(lint)
#if 0
1994-05-09 07:14:43 +04:00
static char sccsid[] = "@(#)nlist.c 8.1 (Berkeley) 6/4/93";
#else
static char rcsid[] = "$NetBSD: nlist.c,v 1.10 1996/10/01 00:27:38 cgd Exp $";
#endif
1993-03-21 12:45:37 +03:00
#endif /* LIBC_SCCS and not lint */
1994-05-09 07:14:43 +04:00
#include <sys/param.h>
#include <sys/mman.h>
#include <sys/stat.h>
1993-03-21 12:45:37 +03:00
#include <sys/file.h>
1994-05-09 07:14:43 +04:00
#include <errno.h>
1993-03-21 12:45:37 +03:00
#include <stdio.h>
#include <string.h>
#include <unistd.h>
#include <a.out.h> /* for 'struct nlist' declaration */
#include "nlist_private.h"
1993-03-21 12:45:37 +03:00
static struct {
int (*fdnlist) __P((int, struct nlist *));
} fdnlist_fmts[] = {
#ifdef NLIST_AOUT
{ __fdnlist_aout },
#endif
#ifdef NLIST_ECOFF
{ __fdnlist_ecoff },
#endif
#ifdef NLIST_ELF32
{ __fdnlist_elf32 },
#endif
#ifdef NLIST_ELF64
{ __fdnlist_elf64 },
#endif
};
1993-03-21 12:45:37 +03:00
int
nlist(name, list)
const char *name;
1994-05-09 07:14:43 +04:00
struct nlist *list;
1993-03-21 12:45:37 +03:00
{
1994-05-09 07:14:43 +04:00
int fd, n;
fd = open(name, O_RDONLY, 0);
if (fd < 0)
return (-1);
n = __fdnlist(fd, list);
(void)close(fd);
return (n);
}
1993-03-21 12:45:37 +03:00
1994-05-09 07:14:43 +04:00
int
__fdnlist(fd, list)
int fd;
struct nlist *list;
{
int i, rv;
for (i = 0; i < sizeof(fdnlist_fmts) / sizeof(fdnlist_fmts[0]); i++)
if ((rv = (*fdnlist_fmts[i].fdnlist)(fd, list)) != -1)
return rv;
return -1;
}