2021-01-02 19:32:25 +00:00
|
|
|
/* Copyright (C) 1998-2021 Free Software Foundation, Inc.
|
1998-05-06 14:43:15 +00:00
|
|
|
This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
The GNU C Library is free software; you can redistribute it and/or
|
2001-07-06 04:58:11 +00:00
|
|
|
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.
|
1998-05-06 14:43:15 +00:00
|
|
|
|
|
|
|
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
|
2001-07-06 04:58:11 +00:00
|
|
|
Lesser General Public License for more details.
|
1998-05-06 14:43:15 +00:00
|
|
|
|
2001-07-06 04:58:11 +00:00
|
|
|
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/>. */
|
1998-05-06 14:43:15 +00:00
|
|
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <unistd.h>
|
2000-03-23 20:31:46 +00:00
|
|
|
#include <ldsodefs.h>
|
2007-05-26 20:13:27 +00:00
|
|
|
#include <sysdep.h>
|
1998-05-06 14:43:15 +00:00
|
|
|
|
2015-10-23 00:26:58 +00:00
|
|
|
#ifndef SHARED
|
|
|
|
#include <hwcapinfo.h>
|
|
|
|
#endif
|
2005-12-30 07:32:48 +00:00
|
|
|
|
2007-08-12 19:03:54 +00:00
|
|
|
/* The main work is done in the generic function. */
|
|
|
|
#define LIBC_START_MAIN generic_start_main
|
|
|
|
#define LIBC_START_DISABLE_INLINE
|
|
|
|
#define LIBC_START_MAIN_AUXVEC_ARG
|
|
|
|
#define MAIN_AUXVEC_ARG
|
|
|
|
#define INIT_MAIN_ARGS
|
|
|
|
#include <csu/libc-start.c>
|
|
|
|
|
|
|
|
struct startup_info
|
|
|
|
{
|
2013-02-13 23:30:40 +00:00
|
|
|
void *sda_base;
|
2007-08-12 19:03:54 +00:00
|
|
|
int (*main) (int, char **, char **, void *);
|
|
|
|
int (*init) (int, char **, char **, void *);
|
|
|
|
void (*fini) (void);
|
|
|
|
};
|
|
|
|
|
1998-05-06 14:43:15 +00:00
|
|
|
int
|
2021-02-25 11:10:57 +00:00
|
|
|
__libc_start_main_impl (int argc, char **argv,
|
|
|
|
char **ev,
|
|
|
|
ElfW (auxv_t) * auxvec,
|
|
|
|
void (*rtld_fini) (void),
|
|
|
|
struct startup_info *stinfo,
|
|
|
|
char **stack_on_entry)
|
1998-05-06 14:43:15 +00:00
|
|
|
{
|
|
|
|
/* the PPC SVR4 ABI says that the top thing on the stack will
|
|
|
|
be a NULL pointer, so if not we assume that we're being called
|
2005-12-30 07:32:48 +00:00
|
|
|
as a statically-linked program by Linux... */
|
1998-05-06 14:43:15 +00:00
|
|
|
if (*stack_on_entry != NULL)
|
|
|
|
{
|
2013-02-13 23:30:40 +00:00
|
|
|
char **temp;
|
1998-05-06 14:43:15 +00:00
|
|
|
/* ...in which case, we have argc as the top thing on the
|
2005-12-30 07:32:48 +00:00
|
|
|
stack, followed by argv (NULL-terminated), envp (likewise),
|
2013-08-29 07:08:54 +00:00
|
|
|
and the auxiliary vector. */
|
2002-09-20 21:39:29 +00:00
|
|
|
/* 32/64-bit agnostic load from stack */
|
2013-02-13 23:30:40 +00:00
|
|
|
argc = *(long int *) stack_on_entry;
|
|
|
|
argv = stack_on_entry + 1;
|
|
|
|
ev = argv + argc + 1;
|
2002-01-02 09:52:33 +00:00
|
|
|
#ifdef HAVE_AUX_VECTOR
|
2013-02-13 23:30:40 +00:00
|
|
|
temp = ev;
|
2002-08-22 19:07:46 +00:00
|
|
|
while (*temp != NULL)
|
2005-12-30 07:32:48 +00:00
|
|
|
++temp;
|
|
|
|
auxvec = (ElfW (auxv_t) *)++ temp;
|
2001-01-07 19:09:48 +00:00
|
|
|
#endif
|
1998-05-06 14:43:15 +00:00
|
|
|
rtld_fini = NULL;
|
|
|
|
}
|
|
|
|
|
2005-12-30 07:32:48 +00:00
|
|
|
for (ElfW (auxv_t) * av = auxvec; av->a_type != AT_NULL; ++av)
|
2004-04-04 01:07:05 +00:00
|
|
|
switch (av->a_type)
|
|
|
|
{
|
2020-01-10 22:14:56 +00:00
|
|
|
/* For the static case, we also need _dl_hwcap, _dl_hwcap2 and
|
|
|
|
_dl_platform, so we can call
|
|
|
|
__tcb_parse_hwcap_and_convert_at_platform (). */
|
2015-10-23 00:26:58 +00:00
|
|
|
#ifndef SHARED
|
|
|
|
case AT_HWCAP:
|
|
|
|
_dl_hwcap = (unsigned long int) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_HWCAP2:
|
|
|
|
_dl_hwcap2 = (unsigned long int) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
case AT_PLATFORM:
|
|
|
|
_dl_platform = (void *) av->a_un.a_val;
|
|
|
|
break;
|
|
|
|
#endif
|
2004-04-04 01:07:05 +00:00
|
|
|
}
|
2007-08-12 19:03:54 +00:00
|
|
|
|
2015-10-23 00:26:58 +00:00
|
|
|
/* Initialize hwcap/hwcap2 and platform data so it can be copied to
|
|
|
|
the TCB later in __libc_setup_tls (). (static case only). */
|
|
|
|
#ifndef SHARED
|
|
|
|
__tcb_parse_hwcap_and_convert_at_platform ();
|
|
|
|
#endif
|
|
|
|
|
2013-02-13 23:30:40 +00:00
|
|
|
return generic_start_main (stinfo->main, argc, argv, auxvec,
|
2003-03-15 23:09:52 +00:00
|
|
|
stinfo->init, stinfo->fini, rtld_fini,
|
|
|
|
stack_on_entry);
|
1998-05-06 14:43:15 +00:00
|
|
|
}
|
2021-02-25 11:10:57 +00:00
|
|
|
DEFINE_LIBC_START_MAIN_VERSION
|