mailing list of musl libc
 help / color / mirror / code / Atom feed
be31a88a13d0faa5f7edeba973e54f0910620426 blob 802 bytes (raw)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
 
#include <string.h>
#include <stdint.h>
#include "pthread_impl.h"

uintptr_t __stack_chk_guard;

void __init_ssp(void *entropy)
{
	if (entropy) memcpy(&__stack_chk_guard, entropy, sizeof(uintptr_t));
	else __stack_chk_guard = (uintptr_t)&__stack_chk_guard * 1103515245;

#if UINTPTR_MAX >= 0xffffffffffffffff
	/* Sacrifice 8 bits of entropy on 64bit to prevent leaking/overwriting the
	 * canary via string-manipulation functions. The NULL byte is on the second
	 * byte so that off-by-ones can still be detected. Endianness is taken care
	 * of automatically. */
	((char *)&__stack_chk_guard)[1] = 0;
#endif

	__pthread_self()->canary = __stack_chk_guard;
}

void __stack_chk_fail(void)
{
	a_crash();
}

hidden void __stack_chk_fail_local(void);

weak_alias(__stack_chk_fail, __stack_chk_fail_local);
debug log:

solving be31a88a ...
found be31a88a in https://inbox.vuxu.org/musl/20211213200519.117056-1-julien.voisin@dustri.org/
found bf5a280a in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 bf5a280ad95b66187dabb3e61ce4ebecb5d2ac08	src/env/__stack_chk_fail.c

applying [1/1] https://inbox.vuxu.org/musl/20211213200519.117056-1-julien.voisin@dustri.org/
diff --git a/src/env/__stack_chk_fail.c b/src/env/__stack_chk_fail.c
index bf5a280a..be31a88a 100644

Checking patch src/env/__stack_chk_fail.c...
Applied patch src/env/__stack_chk_fail.c cleanly.

index at:
100644 be31a88a13d0faa5f7edeba973e54f0910620426	src/env/__stack_chk_fail.c

Code repositories for project(s) associated with this public inbox

	https://git.vuxu.org/mirror/musl/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).