mirror of
https://github.com/EnderIce2/Fennix.git
synced 2025-05-28 15:34:31 +00:00
fix(userspace/libc): modify __libc_init and crt0 to initialize "environ"
Signed-off-by: EnderIce2 <enderice2@protonmail.com>
This commit is contained in:
parent
4d333f94bc
commit
d7cbeb9eba
@ -44,10 +44,12 @@ __attribute__((naked, used, no_stack_protector, section(".text"))) void _start()
|
|||||||
"andq $-16, %rsp\n"
|
"andq $-16, %rsp\n"
|
||||||
"movq %rsp, %rbp\n"
|
"movq %rsp, %rbp\n"
|
||||||
|
|
||||||
|
"movq %rdx, %rax\n"
|
||||||
"pushq %rcx\n"
|
"pushq %rcx\n"
|
||||||
"pushq %rdx\n"
|
"pushq %rdx\n"
|
||||||
"pushq %rsi\n"
|
"pushq %rsi\n"
|
||||||
"pushq %rdi\n"
|
"pushq %rdi\n"
|
||||||
|
"movq %rax, %rdi\n"
|
||||||
|
|
||||||
"call __libc_init\n"
|
"call __libc_init\n"
|
||||||
"call __crt_init_array\n"
|
"call __crt_init_array\n"
|
||||||
|
@ -21,9 +21,11 @@
|
|||||||
|
|
||||||
int __init_pthread(void);
|
int __init_pthread(void);
|
||||||
void __init_stdio(void);
|
void __init_stdio(void);
|
||||||
|
extern char **environ;
|
||||||
|
|
||||||
__attribute__((visibility("default"))) void __libc_init(void)
|
__attribute__((visibility("default"))) void __libc_init(const char **env)
|
||||||
{
|
{
|
||||||
|
environ = (char **)env;
|
||||||
__init_pthread();
|
__init_pthread();
|
||||||
__init_stdio();
|
__init_stdio();
|
||||||
}
|
}
|
||||||
|
@ -15,14 +15,8 @@
|
|||||||
along with Fennix C Library. If not, see <https://www.gnu.org/licenses/>.
|
along with Fennix C Library. If not, see <https://www.gnu.org/licenses/>.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
typedef void (*fct)(void);
|
#include "../runtime/crt1.c"
|
||||||
#define asm __asm__ __volatile__
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__preinit_array_start[])(void) __attribute__((weak));
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__preinit_array_end[])(void) __attribute__((weak));
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__init_array_start[])(void) __attribute__((weak));
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__init_array_end[])(void) __attribute__((weak));
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__fini_array_start[])(void) __attribute__((weak));
|
|
||||||
__attribute__((__visibility__("hidden"))) extern void (*__fini_array_end[])(void) __attribute__((weak));
|
|
||||||
const char __interp[] __attribute__((section(".interp"))) = "/lib/ld.so";
|
const char __interp[] __attribute__((section(".interp"))) = "/lib/ld.so";
|
||||||
|
|
||||||
#ifndef LIBC_GIT_COMMIT
|
#ifndef LIBC_GIT_COMMIT
|
||||||
@ -53,38 +47,6 @@ const char __interp[] __attribute__((section(".interp"))) = "/lib/ld.so";
|
|||||||
CONVERT_TO_BYTE(hex[36], hex[37]), \
|
CONVERT_TO_BYTE(hex[36], hex[37]), \
|
||||||
CONVERT_TO_BYTE(hex[38], hex[39])}
|
CONVERT_TO_BYTE(hex[38], hex[39])}
|
||||||
|
|
||||||
/* These are declared in GNU ld */
|
|
||||||
enum
|
|
||||||
{
|
|
||||||
NT_FNX_ABI_TAG = 1,
|
|
||||||
NT_FNX_VERSION = 2,
|
|
||||||
NT_FNX_BUILD_ID = 3,
|
|
||||||
NT_FNX_ARCH = 4
|
|
||||||
};
|
|
||||||
|
|
||||||
typedef struct Elf_Nhdr
|
|
||||||
{
|
|
||||||
__UINT32_TYPE__ n_namesz;
|
|
||||||
__UINT32_TYPE__ n_descsz;
|
|
||||||
__UINT32_TYPE__ n_type;
|
|
||||||
char n_name[];
|
|
||||||
} __attribute__((packed)) Elf_Nhdr;
|
|
||||||
|
|
||||||
const struct
|
|
||||||
{
|
|
||||||
Elf_Nhdr header;
|
|
||||||
char name[4];
|
|
||||||
__UINT32_TYPE__ desc[4];
|
|
||||||
} __abi_tag __attribute__((aligned(4), section(".note.ABI-tag"))) = {
|
|
||||||
.header = {
|
|
||||||
.n_namesz = 4, /* "FNX" + '\0' */
|
|
||||||
.n_descsz = sizeof(__UINT32_TYPE__) * 4, /* Description Size */
|
|
||||||
.n_type = NT_FNX_ABI_TAG, /* Type */
|
|
||||||
},
|
|
||||||
.name = "FNX",
|
|
||||||
.desc = {0, 0, 0, 0},
|
|
||||||
};
|
|
||||||
|
|
||||||
const struct
|
const struct
|
||||||
{
|
{
|
||||||
Elf_Nhdr header;
|
Elf_Nhdr header;
|
||||||
@ -100,54 +62,6 @@ const struct
|
|||||||
.desc = HASH_BYTES(LIBC_GIT_COMMIT),
|
.desc = HASH_BYTES(LIBC_GIT_COMMIT),
|
||||||
};
|
};
|
||||||
|
|
||||||
void __crt_init_array(void)
|
|
||||||
{
|
|
||||||
for (fct *func = __init_array_start; func != __init_array_end; func++)
|
|
||||||
(*func)();
|
|
||||||
}
|
|
||||||
|
|
||||||
void __crt_fini_array(void)
|
|
||||||
{
|
|
||||||
for (fct *func = __fini_array_start; func != __fini_array_end; func++)
|
|
||||||
(*func)();
|
|
||||||
}
|
|
||||||
|
|
||||||
__attribute__((naked, used, no_stack_protector, section(".text"))) void _start()
|
|
||||||
{
|
|
||||||
#if defined(__amd64__)
|
|
||||||
asm("movq $0, %rbp\n"
|
|
||||||
"pushq %rbp\n"
|
|
||||||
"pushq %rbp\n"
|
|
||||||
"movq %rsp, %rbp\n"
|
|
||||||
|
|
||||||
"pushq %rcx\n"
|
|
||||||
"pushq %rdx\n"
|
|
||||||
"pushq %rsi\n"
|
|
||||||
"pushq %rdi\n"
|
|
||||||
|
|
||||||
"call __libc_init\n"
|
|
||||||
"call __crt_init_array\n"
|
|
||||||
|
|
||||||
"popq %rdi\n"
|
|
||||||
"popq %rsi\n"
|
|
||||||
"popq %rdx\n"
|
|
||||||
"popq %rcx\n"
|
|
||||||
|
|
||||||
"call main\n"
|
|
||||||
|
|
||||||
"pushq %rax\n"
|
|
||||||
"call __crt_fini_array\n"
|
|
||||||
"popq %rax\n"
|
|
||||||
|
|
||||||
"movl %eax, %edi\n"
|
|
||||||
"call _exit\n");
|
|
||||||
#elif defined(__i386__)
|
|
||||||
#warning "i386 _start not implemented"
|
|
||||||
#else
|
|
||||||
#warning "unknown architecture"
|
|
||||||
#endif
|
|
||||||
}
|
|
||||||
|
|
||||||
int main(int argc, char *argv[], char *envp[])
|
int main(int argc, char *argv[], char *envp[])
|
||||||
{
|
{
|
||||||
(void)argc;
|
(void)argc;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user