3e2e4b6dfabac5d60194c33eee3c1e4b58371dec
[musl] / src / env / __stack_chk_fail.c
1 #include <string.h>
2 #include <inttypes.h>
3 #include <elf.h>
4 #include "pthread_impl.h"
5 #include "atomic.h"
6
7 uintptr_t __stack_chk_guard;
8
9 void __init_ssp(void *entropy)
10 {
11         size_t i;
12         pthread_t self = __pthread_self_init();
13         uintptr_t canary;
14         if (entropy) memcpy(&canary, entropy, sizeof canary);
15         else canary = (uintptr_t)&canary * 1103515245;
16         a_cas_l(&__stack_chk_guard, 0, canary);
17         self->canary = __stack_chk_guard;
18 }
19
20 void __stack_chk_fail(void)
21 {
22         a_crash();
23 }