mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-10 07:10:06 +00:00
9cf27b8d09
Completing the removal of the obsolete INTDEF / INTUSE mechanism, this patch removes the final use - that for _dl_starting_up - replacing it by rtld_hidden_def / rtld_hidden_proto. Having removed the last use, the mechanism itself is also removed. Tested for x86_64 that installed stripped shared libraries are unchanged by the patch. (This is not much of a test since this variable is only defined and used in the !HAVE_INLINED_SYSCALLS case.) [BZ #14132] * include/libc-symbols.h (INTUSE): Remove macro. (INTDEF): Likewise. (INTVARDEF): Likewise. (_INTVARDEF): Likewise. (INTDEF2): Likewise. (INTVARDEF2): Likewise. * elf/rtld.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Use rtld_hidden_def instead of INTVARDEF. * sysdeps/generic/ldsodefs.h [IS_IN_rtld] (_dl_starting_up_internal): Remove declaration. (_dl_starting_up): Use rtld_hidden_proto. * elf/dl-init.c [!HAVE_INLINED_SYSCALLS] (_dl_starting_up): Remove declaration. [!HAVE_INLINED_SYSCALLS] (_dl_starting_up_internal): Likewise. (_dl_init) [!HAVE_INLINED_SYSCALLS]: Don't use INTUSE with _dl_starting_up. * elf/dl-writev.h (_dl_writev): Likewise. * sysdeps/powerpc/powerpc64/dl-machine.h [!HAVE_INLINED_SYSCALLS] (DL_STARTING_UP_DEF): Use __GI__dl_starting_up instead of _dl_starting_up_internal.
57 lines
2.1 KiB
C
57 lines
2.1 KiB
C
/* Message-writing for the dynamic linker. Generic version.
|
|
Copyright (C) 2013-2014 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 Lesser General Public
|
|
License as published by the Free Software Foundation; either
|
|
version 2.1 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
|
|
Lesser General Public License for more details.
|
|
|
|
You should have received a copy of the GNU Lesser General Public
|
|
License along with the GNU C Library; if not, see
|
|
<http://www.gnu.org/licenses/>. */
|
|
|
|
#include <sys/uio.h>
|
|
#include <ldsodefs.h>
|
|
#include <bits/libc-lock.h>
|
|
|
|
/* This is used from only one place: dl-misc.c:_dl_debug_vdprintf.
|
|
Hence it's in a header with the expectation it will be inlined.
|
|
|
|
This is writev, but with a constraint added and others loosened:
|
|
|
|
1. Under RTLD_PRIVATE_ERRNO, it must not clobber the private errno
|
|
when another thread holds the dl_load_lock.
|
|
2. It is not obliged to detect and report errors at all.
|
|
3. It's not really obliged to deliver a single atomic write
|
|
(though it may be preferable). */
|
|
|
|
static inline void
|
|
_dl_writev (int fd, const struct iovec *iov, size_t niov)
|
|
{
|
|
/* Note that if __writev is an implementation that calls malloc,
|
|
this will cause linking problems building the dynamic linker. */
|
|
|
|
#if RTLD_PRIVATE_ERRNO
|
|
/* We have to take this lock just to be sure we don't clobber the private
|
|
errno when it's being used by another thread that cares about it.
|
|
Yet we must be sure not to try calling the lock functions before
|
|
the thread library is fully initialized. */
|
|
if (__glibc_unlikely (_dl_starting_up))
|
|
__writev (fd, iov, niov);
|
|
else
|
|
{
|
|
__rtld_lock_lock_recursive (GL(dl_load_lock));
|
|
__writev (fd, iov, niov);
|
|
__rtld_lock_unlock_recursive (GL(dl_load_lock));
|
|
}
|
|
#else
|
|
__writev (fd, iov, niov);
|
|
#endif
|
|
}
|