mailing list of musl libc
 help / color / mirror / code / Atom feed
5b986238fc4175581abdc35b5e572fb4b247ced2 blob 629 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
 
#include <stddef.h>
#include <elf.h>
#include <poll.h>
#include <fcntl.h>
#include "syscall.h"
#include "libc.h"
#include "atomic.h"

WEAK_PROVIDE_VOIDP;
weak_alias(__weak_dummy_voidp, __init_ssp);

void __init_security(size_t *aux)
{
	struct pollfd pfd[3] = { {.fd=0}, {.fd=1}, {.fd=2} };
	int i;

#ifndef SHARED
	__init_ssp((void *)aux[AT_RANDOM]);
#endif

	if (aux[AT_UID]==aux[AT_EUID] && aux[AT_GID]==aux[AT_EGID]
		&& !aux[AT_SECURE]) return;

	__syscall(SYS_poll, pfd, 3, 0);
	for (i=0; i<3; i++) if (pfd[i].revents&POLLNVAL)
		if (__syscall(SYS_open, "/dev/null", O_RDWR|O_LARGEFILE)<0)
			a_crash();
	libc.secure = 1;
}
debug log:

solving 5b98623 ...
found 5b98623 in https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
found 91b9b10 in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 91b9b1001ac97949c6c05c0b3294abf33487e2a7	src/env/__init_security.c

applying [1/1] https://inbox.vuxu.org/musl/fef8bbf759787cabc4ffd61c4e3357bc11112f8b.1360968989.git.Jens.Gustedt@inria.fr/
diff --git a/src/env/__init_security.c b/src/env/__init_security.c
index 91b9b10..5b98623 100644

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

index at:
100644 5b986238fc4175581abdc35b5e572fb4b247ced2	src/env/__init_security.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).