+.weak _init
+.weak _fini
.text
.global _start
_start:
pushl %esp
pushl %esp
pushl %edx
- pushl %ebp
- pushl %ebp
+ call 1f
+1: addl $[_fini-.],(%esp)
+ call 1f
+1: addl $[_init-.],(%esp)
pushl %eax
pushl %ecx
call 1f
/* Written 2011 Nicholas J. Kain, released as Public Domain */
+.weak _init
+.weak _fini
.text
.global _start
_start:
andq $-16,%rsp /* align stack pointer */
push %rax /* 8th arg: glibc ABI compatible */
push %rsp /* 7th arg: glibc ABI compatible */
- xor %r8,%r8 /* 5th arg: always 0 */
- xor %rcx,%rcx /* 4th arg: always 0 */
+ mov $_fini,%r8 /* 5th arg: fini/dtors function */
+ mov $_init,%rcx /* 4th arg: init/ctors function */
mov $main,%rdi /* 1st arg: application entry ip */
call __libc_start_main /* musl init will run the program */
-.L0: jmp .L0
+1: jmp 1b
ino_t ino;
int global;
int relocated;
+ int constructed;
struct dso **deps;
char *name;
char buf[];
return 0;
}
+static void do_init_fini(struct dso *p)
+{
+ size_t dyn[DYN_CNT] = {0};
+ for (; p; p=p->prev) {
+ if (p->constructed) return;
+ decode_vec(p->dynv, dyn, DYN_CNT);
+ if (dyn[0] & (1<<DT_FINI))
+ atexit((void (*)(void))(p->base + dyn[DT_FINI]));
+ if (dyn[0] & (1<<DT_INIT))
+ ((void (*)(void))(p->base + dyn[DT_INIT]))();
+ p->constructed = 1;
+ }
+}
+
void *__dynlink(int argc, char **argv)
{
size_t *auxv, aux[AUX_CNT] = {0};
}
app->name = argv[0];
app->global = 1;
+ app->constructed = 1;
app->dynv = (void *)(app->base + find_dyn(
(void *)aux[AT_PHDR], aux[AT_PHNUM], aux[AT_PHENT]));
decode_dyn(app);
* error. If the dynamic loader (dlopen) will not be used, free
* all memory used by the dynamic linker. */
runtime = 1;
+
+ do_init_fini(tail);
+
if (!rtld_used) {
free_all(head);
free(sys_path);