#define AUX_CNT 24
+void dummy(void)
+{
+}
+weak_alias(dummy, __init_ssp);
+
void __init_security(size_t *auxv)
{
size_t i, aux[AUX_CNT] = { 0 };
struct pollfd pfd[3] = { {.fd=0}, {.fd=1}, {.fd=2} };
+ __init_ssp();
+
for (; auxv[0]; auxv+=2) if (auxv[0]<AUX_CNT) aux[auxv[0]] = auxv[1];
if (aux[AT_UID]==aux[AT_EUID] && aux[AT_GID]==aux[AT_EGID]
&& !aux[AT_SECURE]) return;
char buf[];
};
+struct __pthread;
+struct __pthread *__pthread_self_init(void);
+
static struct dso *head, *tail, *libc;
static char *env_path, *sys_path, *r_path;
static int rtld_used;
+static int ssp_used;
static int runtime;
static jmp_buf rtld_fail;
static pthread_rwlock_t lock;
void *def = 0;
if (h==0x6b366be && !strcmp(s, "dlopen")) rtld_used = 1;
if (h==0x6b3afd && !strcmp(s, "dlsym")) rtld_used = 1;
+ if (h==0x595a4cc && !strcmp(s, "__stack_chk_fail")) ssp_used = 1;
for (; dso; dso=dso->next) {
Sym *sym;
if (!dso->global) continue;
reclaim((void *)builtin_dsos, 0, sizeof builtin_dsos);
}
+ if (ssp_used) __pthread_self_init();
+
errno = 0;
return (void *)aux[AT_ENTRY];
}