mailing list of musl libc
 help / color / mirror / code / Atom feed
e8cb4d026e7994e8b785283d1e6678527bfde7b1 blob 423 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
 
#define _BSD_SOURCE
#include <unistd.h>
#include <sys/random.h>
#include <pthread.h>
#include <errno.h>

int getentropy(void *buffer, size_t len)
{
	ssize_t ret;
	int cs;

	if (len > 256) {
		errno = EIO;
		return -1;
	}

	pthread_setcancelstate(PTHREAD_CANCEL_DISABLE, &cs);
	ret = getrandom(buffer, len, 0);
	pthread_setcancelstate(cs, 0);

	if (ret != len) {
		if (ret >= 0)
			errno = EIO;
		return -1;
	}
	return 0;
}
debug log:

solving e8cb4d02 ...
found e8cb4d02 in https://inbox.vuxu.org/musl/20220409225851.715796-2-Jason@zx2c4.com/
found 651ea95f in https://git.vuxu.org/mirror/musl/
preparing index
index prepared:
100644 651ea95f14310cda867b88378a0aedf2225d4462	src/misc/getentropy.c

applying [1/1] https://inbox.vuxu.org/musl/20220409225851.715796-2-Jason@zx2c4.com/
diff --git a/src/misc/getentropy.c b/src/misc/getentropy.c
index 651ea95f..e8cb4d02 100644

Checking patch src/misc/getentropy.c...
Applied patch src/misc/getentropy.c cleanly.

index at:
100644 e8cb4d026e7994e8b785283d1e6678527bfde7b1	src/misc/getentropy.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).