2005-12-14 08:43:25 +00:00
|
|
|
/* Operating system support for run-time dynamic linker. Generic Unix version.
|
2021-01-02 19:32:25 +00:00
|
|
|
Copyright (C) 1995-2021 Free Software Foundation, Inc.
|
2005-12-14 08:43:25 +00:00
|
|
|
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
|
2012-02-09 23:18:22 +00:00
|
|
|
License along with the GNU C Library; if not, see
|
Prefer https to http for gnu.org and fsf.org URLs
Also, change sources.redhat.com to sourceware.org.
This patch was automatically generated by running the following shell
script, which uses GNU sed, and which avoids modifying files imported
from upstream:
sed -ri '
s,(http|ftp)(://(.*\.)?(gnu|fsf|sourceware)\.org($|[^.]|\.[^a-z])),https\2,g
s,(http|ftp)(://(.*\.)?)sources\.redhat\.com($|[^.]|\.[^a-z]),https\2sourceware.org\4,g
' \
$(find $(git ls-files) -prune -type f \
! -name '*.po' \
! -name 'ChangeLog*' \
! -path COPYING ! -path COPYING.LIB \
! -path manual/fdl-1.3.texi ! -path manual/lgpl-2.1.texi \
! -path manual/texinfo.tex ! -path scripts/config.guess \
! -path scripts/config.sub ! -path scripts/install-sh \
! -path scripts/mkinstalldirs ! -path scripts/move-if-change \
! -path INSTALL ! -path locale/programs/charmap-kw.h \
! -path po/libc.pot ! -path sysdeps/gnu/errlist.c \
! '(' -name configure \
-execdir test -f configure.ac -o -f configure.in ';' ')' \
! '(' -name preconfigure \
-execdir test -f preconfigure.ac ';' ')' \
-print)
and then by running 'make dist-prepare' to regenerate files built
from the altered files, and then executing the following to cleanup:
chmod a+x sysdeps/unix/sysv/linux/riscv/configure
# Omit irrelevant whitespace and comment-only changes,
# perhaps from a slightly-different Autoconf version.
git checkout -f \
sysdeps/csky/configure \
sysdeps/hppa/configure \
sysdeps/riscv/configure \
sysdeps/unix/sysv/linux/csky/configure
# Omit changes that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/powerpc/powerpc64/ppc-mcount.S: trailing lines
git checkout -f \
sysdeps/powerpc/powerpc64/ppc-mcount.S \
sysdeps/unix/sysv/linux/s390/s390-64/syscall.S
# Omit change that caused a pre-commit check to fail like this:
# remote: *** error: sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S: last line does not end in newline
git checkout -f sysdeps/sparc/sparc64/multiarch/memcpy-ultra3.S
2019-09-07 05:40:42 +00:00
|
|
|
<https://www.gnu.org/licenses/>. */
|
2005-12-14 08:43:25 +00:00
|
|
|
|
2012-09-28 21:29:14 +00:00
|
|
|
/* We conditionalize the whole of this file rather than simply eliding it
|
|
|
|
from the static build, because other sysdeps/ versions of this file
|
|
|
|
might define things needed by a static build. */
|
|
|
|
|
|
|
|
#ifdef SHARED
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
#include <assert.h>
|
|
|
|
#include <elf.h>
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <libintl.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <string.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <sys/mman.h>
|
|
|
|
#include <ldsodefs.h>
|
2012-03-20 23:00:23 +00:00
|
|
|
#include <_itoa.h>
|
2005-12-14 08:43:25 +00:00
|
|
|
#include <fpu_control.h>
|
|
|
|
|
|
|
|
#include <entry.h>
|
|
|
|
#include <dl-machine.h>
|
|
|
|
#include <dl-procinfo.h>
|
|
|
|
#include <dl-osinfo.h>
|
2017-08-21 12:32:21 +00:00
|
|
|
#include <libc-internal.h>
|
2005-12-14 08:43:25 +00:00
|
|
|
#include <tls.h>
|
|
|
|
|
2016-12-31 18:02:17 +00:00
|
|
|
#include <dl-tunables.h>
|
2020-01-10 22:14:56 +00:00
|
|
|
#include <dl-auxv.h>
|
2021-05-19 09:09:57 +00:00
|
|
|
#include <dl-hwcap-check.h>
|
2016-12-31 18:02:17 +00:00
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
extern char **_environ attribute_hidden;
|
2010-03-26 16:16:21 +00:00
|
|
|
extern char _end[] attribute_hidden;
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
/* Protect SUID program against misuse of file descriptors. */
|
|
|
|
extern void __libc_check_standard_fds (void);
|
|
|
|
|
|
|
|
int __libc_enable_secure attribute_relro = 0;
|
2014-10-10 11:13:11 +00:00
|
|
|
rtld_hidden_data_def (__libc_enable_secure)
|
2005-12-14 08:43:25 +00:00
|
|
|
/* This variable contains the lowest stack address ever used. */
|
|
|
|
void *__libc_stack_end attribute_relro = NULL;
|
|
|
|
rtld_hidden_data_def(__libc_stack_end)
|
2009-01-11 04:44:06 +00:00
|
|
|
void *_dl_random attribute_relro = NULL;
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
#ifndef DL_FIND_ARG_COMPONENTS
|
|
|
|
# define DL_FIND_ARG_COMPONENTS(cookie, argc, argv, envp, auxp) \
|
|
|
|
do { \
|
|
|
|
void **_tmp; \
|
|
|
|
(argc) = *(long int *) cookie; \
|
|
|
|
(argv) = (char **) ((long int *) cookie + 1); \
|
|
|
|
(envp) = (argv) + (argc) + 1; \
|
|
|
|
for (_tmp = (void **) (envp); *_tmp; ++_tmp) \
|
|
|
|
continue; \
|
|
|
|
(auxp) = (void *) ++_tmp; \
|
|
|
|
} while (0)
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef DL_STACK_END
|
|
|
|
# define DL_STACK_END(cookie) ((void *) (cookie))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
ElfW(Addr)
|
|
|
|
_dl_sysdep_start (void **start_argptr,
|
|
|
|
void (*dl_main) (const ElfW(Phdr) *phdr, ElfW(Word) phnum,
|
2010-01-15 17:09:35 +00:00
|
|
|
ElfW(Addr) *user_entry, ElfW(auxv_t) *auxv))
|
2005-12-14 08:43:25 +00:00
|
|
|
{
|
|
|
|
const ElfW(Phdr) *phdr = NULL;
|
|
|
|
ElfW(Word) phnum = 0;
|
|
|
|
ElfW(Addr) user_entry;
|
|
|
|
ElfW(auxv_t) *av;
|
|
|
|
#ifdef HAVE_AUX_SECURE
|
|
|
|
# define set_seen(tag) (tag) /* Evaluate for the side effects. */
|
|
|
|
# define set_seen_secure() ((void) 0)
|
|
|
|
#else
|
|
|
|
uid_t uid = 0;
|
|
|
|
gid_t gid = 0;
|
|
|
|
unsigned int seen = 0;
|
|
|
|
# define set_seen_secure() (seen = -1)
|
|
|
|
# ifdef HAVE_AUX_XID
|
|
|
|
# define set_seen(tag) (tag) /* Evaluate for the side effects. */
|
|
|
|
# else
|
|
|
|
# define M(type) (1 << (type))
|
|
|
|
# define set_seen(tag) seen |= M ((tag)->a_type)
|
|
|
|
# endif
|
|
|
|
#endif
|
|
|
|
#ifdef NEED_DL_SYSINFO
|
|
|
|
uintptr_t new_sysinfo = 0;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
__libc_stack_end = DL_STACK_END (start_argptr);
|
2014-11-04 17:39:39 +00:00
|
|
|
DL_FIND_ARG_COMPONENTS (start_argptr, _dl_argc, _dl_argv, _environ,
|
2012-05-20 17:34:00 +00:00
|
|
|
GLRO(dl_auxv));
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
user_entry = (ElfW(Addr)) ENTRY_POINT;
|
|
|
|
GLRO(dl_platform) = NULL; /* Default to nothing known about the platform. */
|
|
|
|
|
2021-02-01 19:00:38 +00:00
|
|
|
/* NB: Default to a constant CONSTANT_MINSIGSTKSZ. */
|
|
|
|
_Static_assert (__builtin_constant_p (CONSTANT_MINSIGSTKSZ),
|
|
|
|
"CONSTANT_MINSIGSTKSZ is constant");
|
|
|
|
GLRO(dl_minsigstacksize) = CONSTANT_MINSIGSTKSZ;
|
|
|
|
|
2012-05-20 17:34:00 +00:00
|
|
|
for (av = GLRO(dl_auxv); av->a_type != AT_NULL; set_seen (av++))
|
2005-12-14 08:43:25 +00:00
|
|
|
switch (av->a_type)
|
|
|
|
{
|
|
|
|
case AT_PHDR:
|
|
|
|
phdr = (void *) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_PHNUM:
|
|
|
|
phnum = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_PAGESZ:
|
|
|
|
GLRO(dl_pagesize) = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_ENTRY:
|
|
|
|
user_entry = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#ifndef HAVE_AUX_SECURE
|
|
|
|
case AT_UID:
|
|
|
|
case AT_EUID:
|
|
|
|
uid ^= av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_GID:
|
|
|
|
case AT_EGID:
|
|
|
|
gid ^= av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#endif
|
|
|
|
case AT_SECURE:
|
|
|
|
#ifndef HAVE_AUX_SECURE
|
|
|
|
seen = -1;
|
|
|
|
#endif
|
2014-10-10 11:13:11 +00:00
|
|
|
__libc_enable_secure = av->a_un.a_val;
|
2005-12-14 08:43:25 +00:00
|
|
|
break;
|
|
|
|
case AT_PLATFORM:
|
|
|
|
GLRO(dl_platform) = (void *) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_HWCAP:
|
|
|
|
GLRO(dl_hwcap) = (unsigned long int) av->a_un.a_val;
|
|
|
|
break;
|
2013-06-28 21:50:48 +00:00
|
|
|
case AT_HWCAP2:
|
|
|
|
GLRO(dl_hwcap2) = (unsigned long int) av->a_un.a_val;
|
|
|
|
break;
|
2005-12-14 08:43:25 +00:00
|
|
|
case AT_CLKTCK:
|
|
|
|
GLRO(dl_clktck) = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_FPUCW:
|
|
|
|
GLRO(dl_fpu_control) = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#ifdef NEED_DL_SYSINFO
|
|
|
|
case AT_SYSINFO:
|
|
|
|
new_sysinfo = av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#endif
|
2013-03-01 22:44:44 +00:00
|
|
|
#ifdef NEED_DL_SYSINFO_DSO
|
2005-12-14 08:43:25 +00:00
|
|
|
case AT_SYSINFO_EHDR:
|
|
|
|
GLRO(dl_sysinfo_dso) = (void *) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#endif
|
2009-01-11 04:44:06 +00:00
|
|
|
case AT_RANDOM:
|
|
|
|
_dl_random = (void *) av->a_un.a_val;
|
|
|
|
break;
|
2021-02-01 19:00:38 +00:00
|
|
|
case AT_MINSIGSTKSZ:
|
|
|
|
GLRO(dl_minsigstacksize) = av->a_un.a_val;
|
|
|
|
break;
|
2005-12-14 08:43:25 +00:00
|
|
|
DL_PLATFORM_AUXV
|
|
|
|
}
|
|
|
|
|
2021-05-19 09:09:57 +00:00
|
|
|
dl_hwcap_check ();
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
#ifndef HAVE_AUX_SECURE
|
|
|
|
if (seen != -1)
|
|
|
|
{
|
|
|
|
/* Fill in the values we have not gotten from the kernel through the
|
|
|
|
auxiliary vector. */
|
|
|
|
# ifndef HAVE_AUX_XID
|
|
|
|
# define SEE(UID, var, uid) \
|
|
|
|
if ((seen & M (AT_##UID)) == 0) var ^= __get##uid ()
|
|
|
|
SEE (UID, uid, uid);
|
|
|
|
SEE (EUID, uid, euid);
|
|
|
|
SEE (GID, gid, gid);
|
|
|
|
SEE (EGID, gid, egid);
|
|
|
|
# endif
|
|
|
|
|
|
|
|
/* If one of the two pairs of IDs does not match this is a setuid
|
|
|
|
or setgid run. */
|
2014-10-10 11:13:11 +00:00
|
|
|
__libc_enable_secure = uid | gid;
|
2005-12-14 08:43:25 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef HAVE_AUX_PAGESIZE
|
|
|
|
if (GLRO(dl_pagesize) == 0)
|
|
|
|
GLRO(dl_pagesize) = __getpagesize ();
|
|
|
|
#endif
|
|
|
|
|
2013-05-03 22:09:48 +00:00
|
|
|
#ifdef NEED_DL_SYSINFO
|
|
|
|
if (new_sysinfo != 0)
|
|
|
|
{
|
|
|
|
# ifdef NEED_DL_SYSINFO_DSO
|
|
|
|
/* Only set the sysinfo value if we also have the vsyscall DSO. */
|
|
|
|
if (GLRO(dl_sysinfo_dso) != 0)
|
|
|
|
# endif
|
|
|
|
GLRO(dl_sysinfo) = new_sysinfo;
|
|
|
|
}
|
2005-12-14 08:43:25 +00:00
|
|
|
#endif
|
|
|
|
|
2016-12-31 18:02:17 +00:00
|
|
|
__tunables_init (_environ);
|
|
|
|
|
2021-10-21 13:41:22 +00:00
|
|
|
/* Initialize DSO sorting algorithm after tunables. */
|
|
|
|
_dl_sort_maps_init ();
|
|
|
|
|
2005-12-14 08:43:25 +00:00
|
|
|
#ifdef DL_SYSDEP_INIT
|
|
|
|
DL_SYSDEP_INIT;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef DL_PLATFORM_INIT
|
|
|
|
DL_PLATFORM_INIT;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
/* Determine the length of the platform name. */
|
|
|
|
if (GLRO(dl_platform) != NULL)
|
|
|
|
GLRO(dl_platformlen) = strlen (GLRO(dl_platform));
|
|
|
|
|
2010-03-26 16:16:21 +00:00
|
|
|
if (__sbrk (0) == _end)
|
2005-12-14 08:43:25 +00:00
|
|
|
/* 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. */
|
|
|
|
__sbrk (GLRO(dl_pagesize)
|
2010-03-26 16:16:21 +00:00
|
|
|
- ((_end - (char *) 0) & (GLRO(dl_pagesize) - 1)));
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
/* If this is a SUID program we make sure that FDs 0, 1, and 2 are
|
|
|
|
allocated. If necessary we are doing it ourself. If it is not
|
|
|
|
possible we stop the program. */
|
2014-10-10 11:13:11 +00:00
|
|
|
if (__builtin_expect (__libc_enable_secure, 0))
|
2005-12-14 08:43:25 +00:00
|
|
|
__libc_check_standard_fds ();
|
|
|
|
|
2012-05-20 17:34:00 +00:00
|
|
|
(*dl_main) (phdr, phnum, &user_entry, GLRO(dl_auxv));
|
2005-12-14 08:43:25 +00:00
|
|
|
return user_entry;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_dl_sysdep_start_cleanup (void)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
_dl_show_auxv (void)
|
|
|
|
{
|
|
|
|
char buf[64];
|
|
|
|
ElfW(auxv_t) *av;
|
|
|
|
|
|
|
|
/* Terminate string. */
|
|
|
|
buf[63] = '\0';
|
|
|
|
|
|
|
|
/* The following code assumes that the AT_* values are encoded
|
|
|
|
starting from 0 with AT_NULL, 1 for AT_IGNORE, and all other values
|
|
|
|
close by (otherwise the array will be too large). In case we have
|
|
|
|
to support a platform where these requirements are not fulfilled
|
|
|
|
some alternative implementation has to be used. */
|
2012-05-20 17:34:00 +00:00
|
|
|
for (av = GLRO(dl_auxv); av->a_type != AT_NULL; ++av)
|
2005-12-14 08:43:25 +00:00
|
|
|
{
|
|
|
|
static const struct
|
|
|
|
{
|
Print cache size and geometry auxv types on LD_SHOW_AUXV=1
Add support for AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE,
AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and AT_L3_CACHEGEOMETRY when
LD_SHOW_AUXV=1.
AT_L*_CACHESIZE is printed as decimal and represent the number of
bytes of the cache.
AT_L*_CACHEGEOMETRY is treated in order to specify the cache line size
and its associativity.
Example output from a POWER8:
AT_L1I_CACHESIZE: 32768
AT_L1I_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L1D_CACHESIZE: 65536
AT_L1D_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L2_CACHESIZE: 524288
AT_L2_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L3_CACHESIZE: 8388608
AT_L3_CACHEGEOMETRY: 128B line size, 8-way set associative
Some of the new types are longer than the previous ones, requiring to
increase the indentation in order to keep the values aligned.
* elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
fields.
(_dl_show_auxv): Give a special treatment to
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
and AT_L3_CACHEGEOMETRY.
* sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
(_dl_procinfo): Fix indentation when printing AT_HWCAP and
AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2018-12-19 21:03:12 +00:00
|
|
|
const char label[22];
|
2009-03-14 18:33:58 +00:00
|
|
|
enum { unknown = 0, dec, hex, str, ignore } form : 8;
|
2005-12-14 08:43:25 +00:00
|
|
|
} auxvars[] =
|
|
|
|
{
|
Print cache size and geometry auxv types on LD_SHOW_AUXV=1
Add support for AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE,
AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and AT_L3_CACHEGEOMETRY when
LD_SHOW_AUXV=1.
AT_L*_CACHESIZE is printed as decimal and represent the number of
bytes of the cache.
AT_L*_CACHEGEOMETRY is treated in order to specify the cache line size
and its associativity.
Example output from a POWER8:
AT_L1I_CACHESIZE: 32768
AT_L1I_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L1D_CACHESIZE: 65536
AT_L1D_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L2_CACHESIZE: 524288
AT_L2_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L3_CACHESIZE: 8388608
AT_L3_CACHEGEOMETRY: 128B line size, 8-way set associative
Some of the new types are longer than the previous ones, requiring to
increase the indentation in order to keep the values aligned.
* elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
fields.
(_dl_show_auxv): Give a special treatment to
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
and AT_L3_CACHEGEOMETRY.
* sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
(_dl_procinfo): Fix indentation when printing AT_HWCAP and
AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2018-12-19 21:03:12 +00:00
|
|
|
[AT_EXECFD - 2] = { "EXECFD: ", dec },
|
|
|
|
[AT_EXECFN - 2] = { "EXECFN: ", str },
|
|
|
|
[AT_PHDR - 2] = { "PHDR: 0x", hex },
|
|
|
|
[AT_PHENT - 2] = { "PHENT: ", dec },
|
|
|
|
[AT_PHNUM - 2] = { "PHNUM: ", dec },
|
|
|
|
[AT_PAGESZ - 2] = { "PAGESZ: ", dec },
|
|
|
|
[AT_BASE - 2] = { "BASE: 0x", hex },
|
|
|
|
[AT_FLAGS - 2] = { "FLAGS: 0x", hex },
|
|
|
|
[AT_ENTRY - 2] = { "ENTRY: 0x", hex },
|
|
|
|
[AT_NOTELF - 2] = { "NOTELF: ", hex },
|
|
|
|
[AT_UID - 2] = { "UID: ", dec },
|
|
|
|
[AT_EUID - 2] = { "EUID: ", dec },
|
|
|
|
[AT_GID - 2] = { "GID: ", dec },
|
|
|
|
[AT_EGID - 2] = { "EGID: ", dec },
|
|
|
|
[AT_PLATFORM - 2] = { "PLATFORM: ", str },
|
|
|
|
[AT_HWCAP - 2] = { "HWCAP: ", hex },
|
|
|
|
[AT_CLKTCK - 2] = { "CLKTCK: ", dec },
|
|
|
|
[AT_FPUCW - 2] = { "FPUCW: ", hex },
|
|
|
|
[AT_DCACHEBSIZE - 2] = { "DCACHEBSIZE: 0x", hex },
|
|
|
|
[AT_ICACHEBSIZE - 2] = { "ICACHEBSIZE: 0x", hex },
|
|
|
|
[AT_UCACHEBSIZE - 2] = { "UCACHEBSIZE: 0x", hex },
|
2009-03-14 18:33:58 +00:00
|
|
|
[AT_IGNOREPPC - 2] = { "IGNOREPPC", ignore },
|
Print cache size and geometry auxv types on LD_SHOW_AUXV=1
Add support for AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE,
AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and AT_L3_CACHEGEOMETRY when
LD_SHOW_AUXV=1.
AT_L*_CACHESIZE is printed as decimal and represent the number of
bytes of the cache.
AT_L*_CACHEGEOMETRY is treated in order to specify the cache line size
and its associativity.
Example output from a POWER8:
AT_L1I_CACHESIZE: 32768
AT_L1I_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L1D_CACHESIZE: 65536
AT_L1D_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L2_CACHESIZE: 524288
AT_L2_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L3_CACHESIZE: 8388608
AT_L3_CACHEGEOMETRY: 128B line size, 8-way set associative
Some of the new types are longer than the previous ones, requiring to
increase the indentation in order to keep the values aligned.
* elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
fields.
(_dl_show_auxv): Give a special treatment to
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
and AT_L3_CACHEGEOMETRY.
* sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
(_dl_procinfo): Fix indentation when printing AT_HWCAP and
AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2018-12-19 21:03:12 +00:00
|
|
|
[AT_SECURE - 2] = { "SECURE: ", dec },
|
|
|
|
[AT_BASE_PLATFORM - 2] = { "BASE_PLATFORM: ", str },
|
|
|
|
[AT_SYSINFO - 2] = { "SYSINFO: 0x", hex },
|
|
|
|
[AT_SYSINFO_EHDR - 2] = { "SYSINFO_EHDR: 0x", hex },
|
|
|
|
[AT_RANDOM - 2] = { "RANDOM: 0x", hex },
|
|
|
|
[AT_HWCAP2 - 2] = { "HWCAP2: 0x", hex },
|
2021-08-20 14:24:05 +00:00
|
|
|
[AT_MINSIGSTKSZ - 2] = { "MINSIGSTKSZ: ", dec },
|
Print cache size and geometry auxv types on LD_SHOW_AUXV=1
Add support for AT_L1I_CACHESIZE, AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY, AT_L2_CACHESIZE,
AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and AT_L3_CACHEGEOMETRY when
LD_SHOW_AUXV=1.
AT_L*_CACHESIZE is printed as decimal and represent the number of
bytes of the cache.
AT_L*_CACHEGEOMETRY is treated in order to specify the cache line size
and its associativity.
Example output from a POWER8:
AT_L1I_CACHESIZE: 32768
AT_L1I_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L1D_CACHESIZE: 65536
AT_L1D_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L2_CACHESIZE: 524288
AT_L2_CACHEGEOMETRY: 128B line size, 8-way set associative
AT_L3_CACHESIZE: 8388608
AT_L3_CACHEGEOMETRY: 128B line size, 8-way set associative
Some of the new types are longer than the previous ones, requiring to
increase the indentation in order to keep the values aligned.
* elf/dl-sysdep.c (auxvars): Add AT_L1I_CACHESIZE,
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHESIZE, AT_L1D_CACHEGEOMETRY,
AT_L2_CACHESIZE, AT_L2_CACHEGEOMETRY, AT_L3_CACHESIZE and
AT_L3_CACHEGEOMETRY. Fix indentation when printing the other
fields.
(_dl_show_auxv): Give a special treatment to
AT_L1I_CACHEGEOMETRY, AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY
and AT_L3_CACHEGEOMETRY.
* sysdeps/powerpc/dl-procinfo.h (cache_geometry): New function.
(_dl_procinfo): Fix indentation when printing AT_HWCAP and
AT_HWCAP2. Add support for AT_L1I_CACHEGEOMETRY,
AT_L1D_CACHEGEOMETRY, AT_L2_CACHEGEOMETRY and AT_L3_CACHEGEOMETRY.
Signed-off-by: Tulio Magno Quites Machado Filho <tuliom@linux.ibm.com>
2018-12-19 21:03:12 +00:00
|
|
|
[AT_L1I_CACHESIZE - 2] = { "L1I_CACHESIZE: ", dec },
|
|
|
|
[AT_L1I_CACHEGEOMETRY - 2] = { "L1I_CACHEGEOMETRY: 0x", hex },
|
|
|
|
[AT_L1D_CACHESIZE - 2] = { "L1D_CACHESIZE: ", dec },
|
|
|
|
[AT_L1D_CACHEGEOMETRY - 2] = { "L1D_CACHEGEOMETRY: 0x", hex },
|
|
|
|
[AT_L2_CACHESIZE - 2] = { "L2_CACHESIZE: ", dec },
|
|
|
|
[AT_L2_CACHEGEOMETRY - 2] = { "L2_CACHEGEOMETRY: 0x", hex },
|
|
|
|
[AT_L3_CACHESIZE - 2] = { "L3_CACHESIZE: ", dec },
|
|
|
|
[AT_L3_CACHEGEOMETRY - 2] = { "L3_CACHEGEOMETRY: 0x", hex },
|
2005-12-14 08:43:25 +00:00
|
|
|
};
|
|
|
|
unsigned int idx = (unsigned int) (av->a_type - 2);
|
|
|
|
|
2012-05-02 21:35:30 +00:00
|
|
|
if ((unsigned int) av->a_type < 2u
|
|
|
|
|| (idx < sizeof (auxvars) / sizeof (auxvars[0])
|
|
|
|
&& auxvars[idx].form == ignore))
|
2005-12-14 08:43:25 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
assert (AT_NULL == 0);
|
|
|
|
assert (AT_IGNORE == 1);
|
|
|
|
|
2019-03-13 09:45:35 +00:00
|
|
|
/* Some entries are handled in a special way per platform. */
|
|
|
|
if (_dl_procinfo (av->a_type, av->a_un.a_val) == 0)
|
|
|
|
continue;
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
if (idx < sizeof (auxvars) / sizeof (auxvars[0])
|
|
|
|
&& auxvars[idx].form != unknown)
|
|
|
|
{
|
|
|
|
const char *val = (char *) av->a_un.a_val;
|
|
|
|
|
|
|
|
if (__builtin_expect (auxvars[idx].form, dec) == dec)
|
|
|
|
val = _itoa ((unsigned long int) av->a_un.a_val,
|
|
|
|
buf + sizeof buf - 1, 10, 0);
|
|
|
|
else if (__builtin_expect (auxvars[idx].form, hex) == hex)
|
|
|
|
val = _itoa ((unsigned long int) av->a_un.a_val,
|
|
|
|
buf + sizeof buf - 1, 16, 0);
|
|
|
|
|
2009-03-14 18:33:58 +00:00
|
|
|
_dl_printf ("AT_%s%s\n", auxvars[idx].label, val);
|
2005-12-14 08:43:25 +00:00
|
|
|
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Unknown value: print a generic line. */
|
|
|
|
char buf2[17];
|
2009-06-03 15:30:35 +00:00
|
|
|
buf2[sizeof (buf2) - 1] = '\0';
|
2005-12-14 08:43:25 +00:00
|
|
|
const char *val2 = _itoa ((unsigned long int) av->a_un.a_val,
|
|
|
|
buf2 + sizeof buf2 - 1, 16, 0);
|
|
|
|
const char *val = _itoa ((unsigned long int) av->a_type,
|
|
|
|
buf + sizeof buf - 1, 16, 0);
|
|
|
|
_dl_printf ("AT_??? (0x%s): 0x%s\n", val, val2);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-09-28 21:29:14 +00:00
|
|
|
#endif
|