mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-17 18:40:14 +00:00
bc9f6000f6
1997-03-23 02:11 Ulrich Drepper <drepper@cygnus.com> * time/sys/time.h: Make values ITIMER_* also available as macros. * elf/dl-support.c (_dl_sysdep_read_whole_file): Don't call __fstat but instead __fxstat directly to avoid dependency on libc.a when inline failed. * sysdeps/generic/dl-sysdep.c (_dl_sysdep_read_whole_file): Likewise. * math/Makefile (libm-routines): Add s_remquo. * sysdeps/libm-i387/s_remquo.S: New file. * sysdeps/libm-i387/s_remquof.S: New file. * sysdeps/libm-i387/s_remquol.S: New file. * sysdeps/libm-ieee754/s_remquo.c: New file. * sysdeps/libm-ieee754/s_remquof.c: New file. * sysdeps/libm-ieee754/s_remquol.c: New file. * math/libm-test.c (remquo_test): New function. * sysdeps/libm-ieee754/s_rintl.c: Handle implicit leading one correctly. 1997-03-22 14:06 Ulrich Drepper <drepper@cygnus.com> * math/Makefile (libm-calls): Add s_nan. * sysdeps/libm-ieee754/s_nan.c: New file. Implement `nan' function. * sysdeps/libm-ieee754/s_nanf.c: New file. Implement `nanf' function. * sysdeps/libm-ieee754/s_nanl.c: New file. Implement `nanl' function. * math/libm-test.c (basic_tests): Add tests for `nan' function. * math/libm-test.c (copysign_test): New function. (main): Call copysign_test. 1997-03-22 06:28 Ulrich Drepper <drepper@cygnus.com> * sysdeps/libm-ieee754/s_nextafter.c: Return y if x == y. * sysdeps/libm-ieee754/s_nextafterf.c: Likewise. * sysdeps/libm-ieee754/s_nextafterl.c: Likewise. * sysdeps/libm-i387/s_nextafterl.c: Likewise. * math/libm-test.c (fdim_test, fmin_test, fmax_test, nextafter_test): New functions. Test these functions. (main): Call above new functions. 1997-03-22 04:53 Ulrich Drepper <drepper@cygnus.com> * Net release 2.0.2. 1997-03-22 04:37 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/termbits.h (OXTABS): Define as alias for XTABS. * sysdeps/unix/sysv/linux/alpha/termbits.h (OXTABS): Likewise. * termios/sys/ttydefaults.h: Partly revert patch by Andreas Schwab of Sun Dec 15 16:33:44 1996. Proposed by Thomas Bushnell <thomas@gnu.ai.mit.edu>. 1997-03-21 13:41 Roland McGrath <roland@baalperazim.frob.com> * sysdeps/sparc/dl-machine.h (elf_machine_rel): Rewritten as for i386. Check here for non-SHN_UNDEF STB_LOCAL symbols don't do any lookup or consult their values. (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p, ELF_MACHINE_RELOC_NOPLT): New macros. * elf/rtld.c (dl_main): Pass ELF_MACHINE_RELOC_NOPLT to _dl_lookup_symbol in place of DL_LOOKUP_NOPLT. * sysdeps/i386/dl-machine.h (ELF_MACHINE_RELOC_NOPLT): New macro. * sysdeps/i386/dl-machine.h (elf_machine_rel): Rewritten to do the symbol lookup before checking reloc type except for R_386_RELATIVE. (elf_machine_lookup_noexec_p, elf_machine_lookup_noplt_p): New macros. * elf/dl-reloc.c (RESOLVE): Remove STB_LOCAL check; let it be per-machine since it supposedly can't happen on i386. * elf/dl-lookup.c (do_lookup): Change arg FLAGS to RELOC_TYPE. Use elf_machine_lookup_{noexec,noplt}_p macros on it. Remove gratuitous indirection from REF arg; change callers. (_dl_lookup_symbol, _dl_lookup_versioned_symbol): Change arg name. (_dl_lookup_symbol_skip, _dl_lookup_versioned_symbol_skip): Remove FLAGS arg altogether. * elf/dlsym.c: Remove argument of FLAGS parameter. * elf/dlvsym.c: Likewise. * elf/link.h: Update decls. * Makefile (distribute): Add BUGS.
229 lines
5.1 KiB
C
229 lines
5.1 KiB
C
/* Operating system support for run-time dynamic linker. Generic Unix version.
|
||
Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
|
||
This file is part of the GNU C Library.
|
||
|
||
The GNU C Library is free software; you can redistribute it and/or
|
||
modify it under the terms of the GNU Library General Public License as
|
||
published by the Free Software Foundation; either version 2 of the
|
||
License, or (at your option) any later version.
|
||
|
||
The GNU C Library is distributed in the hope that it will be useful,
|
||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
||
Library General Public License for more details.
|
||
|
||
You should have received a copy of the GNU Library General Public
|
||
License along with the GNU C Library; see the file COPYING.LIB. If not,
|
||
write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
||
Boston, MA 02111-1307, USA. */
|
||
|
||
#include <elf.h>
|
||
#include <sys/types.h>
|
||
#include <sys/stat.h>
|
||
#include <sys/mman.h>
|
||
#include <fcntl.h>
|
||
#include <link.h>
|
||
#include <unistd.h>
|
||
#include <stdarg.h>
|
||
#include <string.h>
|
||
|
||
|
||
extern int _dl_argc;
|
||
extern char **_dl_argv;
|
||
extern char **_environ;
|
||
extern size_t _dl_pagesize;
|
||
extern void _end;
|
||
extern void _start (void);
|
||
|
||
int __libc_enable_secure;
|
||
int __libc_multiple_libcs; /* Defining this here avoids the inclusion
|
||
of init-first. */
|
||
|
||
ElfW(Addr)
|
||
_dl_sysdep_start (void **start_argptr,
|
||
void (*dl_main) (const ElfW(Phdr) *phdr, ElfW(Word) phnum,
|
||
ElfW(Addr) *user_entry))
|
||
{
|
||
const ElfW(Phdr) *phdr = NULL;
|
||
ElfW(Word) phnum = 0;
|
||
ElfW(Addr) user_entry;
|
||
ElfW(auxv_t) *av;
|
||
uid_t uid = 0;
|
||
uid_t euid = 0;
|
||
gid_t gid = 0;
|
||
gid_t egid = 0;
|
||
unsigned int seen;
|
||
|
||
user_entry = (ElfW(Addr)) &_start;
|
||
_dl_argc = *(long *) start_argptr;
|
||
_dl_argv = (char **) start_argptr + 1;
|
||
_environ = &_dl_argv[_dl_argc + 1];
|
||
start_argptr = (void **) _environ;
|
||
while (*start_argptr)
|
||
++start_argptr;
|
||
|
||
seen = 0;
|
||
#define M(type) (1 << (type))
|
||
|
||
for (av = (void *) ++start_argptr;
|
||
av->a_type != AT_NULL;
|
||
seen |= M ((++av)->a_type))
|
||
switch (av->a_type)
|
||
{
|
||
case AT_PHDR:
|
||
phdr = av->a_un.a_ptr;
|
||
break;
|
||
case AT_PHNUM:
|
||
phnum = av->a_un.a_val;
|
||
break;
|
||
case AT_PAGESZ:
|
||
_dl_pagesize = av->a_un.a_val;
|
||
break;
|
||
case AT_ENTRY:
|
||
user_entry = av->a_un.a_val;
|
||
break;
|
||
case AT_UID:
|
||
uid = av->a_un.a_val;
|
||
break;
|
||
case AT_GID:
|
||
gid = av->a_un.a_val;
|
||
break;
|
||
case AT_EUID:
|
||
euid = av->a_un.a_val;
|
||
break;
|
||
case AT_EGID:
|
||
egid = av->a_un.a_val;
|
||
break;
|
||
}
|
||
|
||
/* Linux doesn't provide us with any of these values on the stack
|
||
when the dynamic linker is run directly as a program. */
|
||
|
||
#define SEE(UID, uid) if ((seen & M (AT_##UID)) == 0) uid = __get##uid ()
|
||
SEE (UID, uid);
|
||
SEE (GID, gid);
|
||
SEE (EUID, euid);
|
||
SEE (EGID, egid);
|
||
|
||
|
||
__libc_enable_secure = uid != euid || gid != egid;
|
||
|
||
#ifdef DL_SYSDEP_INIT
|
||
DL_SYSDEP_INIT;
|
||
#endif
|
||
|
||
if (__sbrk (0) == &_end)
|
||
{
|
||
/* The dynamic linker was run as a program, and so the initial break
|
||
starts just after our bss, at &_end. The malloc in dl-minimal.c
|
||
will consume the rest of this page, so tell the kernel to move the
|
||
break up that far. When the user program examines its break, it
|
||
will see this new value and not clobber our data. */
|
||
size_t pg = __getpagesize ();
|
||
|
||
__sbrk (pg - ((&_end - (void *) 0) & (pg - 1)));
|
||
}
|
||
|
||
(*dl_main) (phdr, phnum, &user_entry);
|
||
return user_entry;
|
||
}
|
||
|
||
void
|
||
_dl_sysdep_start_cleanup (void)
|
||
{
|
||
}
|
||
|
||
#ifndef MAP_ANON
|
||
/* This is only needed if the system doesn't support MAP_ANON. */
|
||
|
||
int
|
||
_dl_sysdep_open_zero_fill (void)
|
||
{
|
||
return __open ("/dev/zero", O_RDONLY);
|
||
}
|
||
#endif
|
||
|
||
/* Read the whole contents of FILE into new mmap'd space with given
|
||
protections. *SIZEP gets the size of the file. */
|
||
|
||
void *
|
||
_dl_sysdep_read_whole_file (const char *file, size_t *sizep, int prot)
|
||
{
|
||
void *result;
|
||
struct stat st;
|
||
int fd = __open (file, O_RDONLY);
|
||
if (fd < 0)
|
||
return NULL;
|
||
if (__fxstat (_STAT_VER, fd, &st) < 0)
|
||
result = NULL;
|
||
else
|
||
{
|
||
/* Map a copy of the file contents. */
|
||
result = __mmap (0, st.st_size, prot,
|
||
#ifdef MAP_COPY
|
||
MAP_COPY
|
||
#else
|
||
MAP_PRIVATE
|
||
#endif
|
||
#ifdef MAP_FILE
|
||
| MAP_FILE
|
||
#endif
|
||
, fd, 0);
|
||
if (result == (void *) -1)
|
||
result = NULL;
|
||
else
|
||
*sizep = st.st_size;
|
||
}
|
||
__close (fd);
|
||
return result;
|
||
}
|
||
|
||
void
|
||
_dl_sysdep_fatal (const char *msg, ...)
|
||
{
|
||
va_list ap;
|
||
|
||
va_start (ap, msg);
|
||
do
|
||
{
|
||
size_t len = strlen (msg);
|
||
__write (STDERR_FILENO, msg, len);
|
||
msg = va_arg (ap, const char *);
|
||
} while (msg);
|
||
va_end (ap);
|
||
|
||
_exit (127);
|
||
}
|
||
|
||
|
||
void
|
||
_dl_sysdep_error (const char *msg, ...)
|
||
{
|
||
va_list ap;
|
||
|
||
va_start (ap, msg);
|
||
do
|
||
{
|
||
size_t len = strlen (msg);
|
||
__write (STDERR_FILENO, msg, len);
|
||
msg = va_arg (ap, const char *);
|
||
} while (msg);
|
||
va_end (ap);
|
||
}
|
||
|
||
|
||
void
|
||
_dl_sysdep_message (const char *msg, ...)
|
||
{
|
||
va_list ap;
|
||
|
||
va_start (ap, msg);
|
||
do
|
||
{
|
||
size_t len = strlen (msg);
|
||
__write (STDOUT_FILENO, msg, len);
|
||
msg = va_arg (ap, const char *);
|
||
} while (msg);
|
||
va_end (ap);
|
||
}
|