From 68c4b497dd7306e0146ebd8b3bbc8289ed4c6e33 Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Tue, 11 May 2004 11:14:58 +0000 Subject: make certain that getpagesize() returns correct the value for mips by extracting the value from the ELF header. --- libc/misc/internals/__uClibc_main.c | 28 +++++++++++++++++++++++++--- 1 file changed, 25 insertions(+), 3 deletions(-) (limited to 'libc/misc') diff --git a/libc/misc/internals/__uClibc_main.c b/libc/misc/internals/__uClibc_main.c index 73abcfa77..79b71cb3c 100644 --- a/libc/misc/internals/__uClibc_main.c +++ b/libc/misc/internals/__uClibc_main.c @@ -1,6 +1,6 @@ /* * Manuel Novoa III Feb 2001 - * Erik Andersen Mar 2002 + * Erik Andersen 2002-2004 * * __uClibc_main is the routine to be called by all the arch-specific * versions of crt0.S in uClibc. @@ -15,6 +15,8 @@ #include #include #include +#include +#include #ifdef __UCLIBC_PROPOLICE__ extern void __guard_setup(void); #endif @@ -44,6 +46,9 @@ extern void weak_function __pthread_initialize_minimal(void); * environ symbol is also included. */ +extern int _dl_secure; +extern size_t _dl_pagesize; + char **__environ = 0; const char *__progname = 0; weak_alias(__environ, environ); @@ -116,6 +121,23 @@ void __attribute__ ((__noreturn__)) __uClibc_start_main(int argc, char **argv, char **envp, void (*app_init)(void), void (*app_fini)(void)) { + unsigned long *aux_dat; + Elf32_auxv_t auxvt[AT_EGID + 1]; + + /* Pull stuff from the ELF header when possible */ + aux_dat = (unsigned long*)envp; + while (*aux_dat) { + aux_dat++; + } + aux_dat++; + while (*aux_dat) { + Elf32_auxv_t *auxv_entry = (Elf32_auxv_t *) aux_dat; + if (auxv_entry->a_type <= AT_EGID) { + memcpy(&(auxvt[auxv_entry->a_type]), auxv_entry, sizeof(Elf32_auxv_t)); + } + aux_dat += 2; + } + _dl_pagesize = (auxvt[AT_PAGESZ].a_un.a_val)? auxvt[AT_PAGESZ].a_un.a_val : 4096; /* If we are dynamically linked the shared lib loader already * did this for us. But if we are statically linked, we need @@ -134,7 +156,7 @@ __uClibc_start_main(int argc, char **argv, char **envp, #ifdef __UCLIBC_CTOR_DTOR__ /* Arrange for the application's dtors to run before we exit. */ - __app_fini = app_fini; + __app_fini = app_fini; /* Run all the application's ctors now. */ if (app_init!=NULL) { @@ -143,7 +165,7 @@ __uClibc_start_main(int argc, char **argv, char **envp, #endif #ifdef __UCLIBC_PROPOLICE__ - __guard_setup (); + __guard_setup (); #endif /* Note: It is possible that any initialization done above could -- cgit v1.2.3