]>
git.saurik.com Git - apple/network_cmds.git/blob - unbound/compat/getentropy_linux.c
32d58a7cdbb95ff05eedd86b3c55c88e3bc1091e
1 /* $OpenBSD: getentropy_linux.c,v 1.20 2014/07/12 15:43:49 beck Exp $ */
4 * Copyright (c) 2014 Theo de Raadt <deraadt@openbsd.org>
5 * Copyright (c) 2014 Bob Beck <beck@obtuse.com>
7 * Permission to use, copy, modify, and distribute this software for any
8 * purpose with or without fee is hereby granted, provided that the above
9 * copyright notice and this permission notice appear in all copies.
11 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
12 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
13 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
14 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
15 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
16 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
17 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
22 #define _POSIX_C_SOURCE 199309L
25 #include <sys/types.h>
26 #include <sys/param.h>
27 #include <sys/ioctl.h>
28 #include <sys/resource.h>
29 #include <sys/syscall.h>
30 #ifdef HAVE_SYS_SYSCTL_H
31 #include <sys/sysctl.h>
33 #include <sys/statvfs.h>
34 #include <sys/socket.h>
35 #include <sys/mount.h>
49 #include <openssl/sha.h>
51 #include <linux/types.h>
52 #include <linux/random.h>
53 #include <linux/sysctl.h>
60 #define min(a, b) (((a) < (b)) ? (a) : (b))
70 #define HR(x, l) (SHA512_Update(&ctx, (char *)(x), (l)))
71 #define HD(x) (SHA512_Update(&ctx, (char *)&(x), sizeof (x)))
72 #define HF(x) (SHA512_Update(&ctx, (char *)&(x), sizeof (void*)))
74 int getentropy(void *buf
, size_t len
);
76 #ifdef CAN_REFERENCE_MAIN
77 extern int main(int, char *argv
[]);
79 static int gotdata(char *buf
, size_t len
);
80 static int getentropy_urandom(void *buf
, size_t len
);
82 static int getentropy_sysctl(void *buf
, size_t len
);
84 static int getentropy_fallback(void *buf
, size_t len
);
87 getentropy(void *buf
, size_t len
)
97 * Try to get entropy with /dev/urandom
99 * This can fail if the process is inside a chroot or if file
100 * descriptors are exhausted.
102 ret
= getentropy_urandom(buf
, len
);
108 * Try to use sysctl CTL_KERN, KERN_RANDOM, RANDOM_UUID.
109 * sysctl is a failsafe API, so it guarantees a result. This
110 * should work inside a chroot, or when file descriptors are
113 * However this can fail if the Linux kernel removes support
114 * for sysctl. Starting in 2007, there have been efforts to
115 * deprecate the sysctl API/ABI, and push callers towards use
116 * of the chroot-unavailable fd-using /proc mechanism --
117 * essentially the same problems as /dev/urandom.
119 * Numerous setbacks have been encountered in their deprecation
120 * schedule, so as of June 2014 the kernel ABI still exists on
121 * most Linux architectures. The sysctl() stub in libc is missing
122 * on some systems. There are also reports that some kernels
123 * spew messages to the console.
125 ret
= getentropy_sysctl(buf
, len
);
128 #endif /* SYS__sysctl */
131 * Entropy collection via /dev/urandom and sysctl have failed.
133 * No other API exists for collecting entropy. See the large
134 * comment block above.
136 * We have very few options:
137 * - Even syslog_r is unsafe to call at this low level, so
138 * there is no way to alert the user or program.
139 * - Cannot call abort() because some systems have unsafe
141 * - Could raise(SIGKILL) resulting in silent program termination.
142 * - Return EIO, to hint that arc4random's stir function
143 * should raise(SIGKILL)
144 * - Do the best under the circumstances....
146 * This code path exists to bring light to the issue that Linux
147 * does not provide a failsafe API for entropy collection.
149 * We hope this demonstrates that Linux should either retain their
150 * sysctl ABI, or consider providing a new failsafe API which
151 * works in a chroot or when file descriptors are exhausted.
153 #undef FAIL_INSTEAD_OF_TRYING_FALLBACK
154 #ifdef FAIL_INSTEAD_OF_TRYING_FALLBACK
157 ret
= getentropy_fallback(buf
, len
);
166 * Basic sanity checking; wish we could do better.
169 gotdata(char *buf
, size_t len
)
174 for (i
= 0; i
< len
; ++i
)
182 getentropy_urandom(void *buf
, size_t len
)
187 int save_errno
= errno
;
198 fd
= open("/dev/urandom", flags
, 0);
205 fcntl(fd
, F_SETFD
, fcntl(fd
, F_GETFD
) | FD_CLOEXEC
);
208 /* Lightly verify that the device node looks sane */
209 if (fstat(fd
, &st
) == -1 || !S_ISCHR(st
.st_mode
)) {
213 if (ioctl(fd
, RNDGETENTCNT
, &cnt
) == -1) {
217 for (i
= 0; i
< len
; ) {
218 size_t wanted
= len
- i
;
219 ssize_t ret
= read(fd
, (char*)buf
+ i
, wanted
);
222 if (errno
== EAGAIN
|| errno
== EINTR
)
230 if (gotdata(buf
, len
) == 0) {
232 return 0; /* satisfied */
241 getentropy_sysctl(void *buf
, size_t len
)
243 static int mib
[] = { CTL_KERN
, KERN_RANDOM
, RANDOM_UUID
};
245 int save_errno
= errno
;
247 for (i
= 0; i
< len
; ) {
248 size_t chunk
= min(len
- i
, 16);
250 /* SYS__sysctl because some systems already removed sysctl() */
251 struct __sysctl_args args
= {
257 if (syscall(SYS__sysctl
, &args
) != 0)
261 if (gotdata(buf
, len
) == 0) {
263 return (0); /* satisfied */
269 #endif /* SYS__sysctl */
273 #ifdef CLOCK_MONOTONIC
276 #ifdef CLOCK_MONOTONIC_RAW
288 #ifdef CLOCK_PROCESS_CPUTIME_ID
289 CLOCK_PROCESS_CPUTIME_ID
,
291 #ifdef CLOCK_THREAD_CPUTIME_ID
292 CLOCK_THREAD_CPUTIME_ID
,
297 getentropy_fallback(void *buf
, size_t len
)
299 uint8_t results
[SHA512_DIGEST_LENGTH
];
300 int save_errno
= errno
, e
, pgs
= getpagesize(), faster
= 0, repeat
;
308 static pid_t lastpid
;
314 if (lastpid
== pid
) {
322 for (i
= 0; i
< len
; ) {
325 for (j
= 0; j
< repeat
; j
++) {
326 HX((e
= gettimeofday(&tv
, NULL
)) == -1, tv
);
328 cnt
+= (int)tv
.tv_sec
;
329 cnt
+= (int)tv
.tv_usec
;
332 for (ii
= 0; ii
< sizeof(cl
)/sizeof(cl
[0]); ii
++)
333 HX(clock_gettime(cl
[ii
], &ts
) == -1, ts
);
335 HX((pid
= getpid()) == -1, pid
);
336 HX((pid
= getsid(pid
)) == -1, pid
);
337 HX((pid
= getppid()) == -1, pid
);
338 HX((pid
= getpgid(0)) == -1, pid
);
339 HX((e
= getpriority(0, 0)) == -1, e
);
344 (void) nanosleep(&ts
, NULL
);
347 HX(sigpending(&sigset
) == -1, sigset
);
348 HX(sigprocmask(SIG_BLOCK
, NULL
, &sigset
) == -1,
351 #ifdef CAN_REFERENCE_MAIN
352 HF(main
); /* an addr in program */
354 HF(getentropy
); /* an addr in this library */
355 HF(printf
); /* an addr in libc */
357 HD(p
); /* an addr on stack */
359 HD(p
); /* the addr of errno */
362 struct sockaddr_storage ss
;
363 struct statvfs stvfs
;
370 * Prime-sized mappings encourage fragmentation;
371 * thus exposing some address entropy.
377 { 17, MAP_FAILED
}, { 3, MAP_FAILED
},
378 { 11, MAP_FAILED
}, { 2, MAP_FAILED
},
379 { 5, MAP_FAILED
}, { 3, MAP_FAILED
},
380 { 7, MAP_FAILED
}, { 1, MAP_FAILED
},
381 { 57, MAP_FAILED
}, { 3, MAP_FAILED
},
382 { 131, MAP_FAILED
}, { 1, MAP_FAILED
},
385 for (m
= 0; m
< sizeof mm
/sizeof(mm
[0]); m
++) {
386 HX(mm
[m
].p
= mmap(NULL
,
388 PROT_READ
|PROT_WRITE
,
389 MAP_PRIVATE
|MAP_ANON
, -1,
391 if (mm
[m
].p
!= MAP_FAILED
) {
394 /* Touch some memory... */
397 (mm
[m
].npg
* pgs
- 1);
399 cnt
+= (int)((long)(mm
[m
].p
)
403 /* Check cnts and times... */
404 for (ii
= 0; ii
< sizeof(cl
)/sizeof(cl
[0]);
406 HX((e
= clock_gettime(cl
[ii
],
409 cnt
+= (int)ts
.tv_nsec
;
412 HX((e
= getrusage(RUSAGE_SELF
,
415 cnt
+= (int)ru
.ru_utime
.tv_sec
;
416 cnt
+= (int)ru
.ru_utime
.tv_usec
;
420 for (m
= 0; m
< sizeof mm
/sizeof(mm
[0]); m
++) {
421 if (mm
[m
].p
!= MAP_FAILED
)
422 munmap(mm
[m
].p
, mm
[m
].npg
* pgs
);
423 mm
[m
].p
= MAP_FAILED
;
426 HX(stat(".", &st
) == -1, st
);
427 HX(statvfs(".", &stvfs
) == -1, stvfs
);
428 HX(statfs(".", &stfs
) == -1, stfs
);
430 HX(stat("/", &st
) == -1, st
);
431 HX(statvfs("/", &stvfs
) == -1, stvfs
);
432 HX(statfs("/", &stfs
) == -1, stfs
);
434 HX((e
= fstat(0, &st
)) == -1, st
);
436 if (S_ISREG(st
.st_mode
) ||
437 S_ISFIFO(st
.st_mode
) ||
438 S_ISSOCK(st
.st_mode
)) {
439 HX(fstatvfs(0, &stvfs
) == -1,
441 HX(fstatfs(0, &stfs
) == -1,
443 HX((off
= lseek(0, (off_t
)0,
444 SEEK_CUR
)) < 0, off
);
446 if (S_ISCHR(st
.st_mode
)) {
447 HX(tcgetattr(0, &tios
) == -1,
449 } else if (S_ISSOCK(st
.st_mode
)) {
450 memset(&ss
, 0, sizeof ss
);
453 (void *)&ss
, &ssl
) == -1,
458 HX((e
= getrusage(RUSAGE_CHILDREN
,
461 cnt
+= (int)ru
.ru_utime
.tv_sec
;
462 cnt
+= (int)ru
.ru_utime
.tv_usec
;
465 /* Subsequent hashes absorb previous result */
469 HX((e
= gettimeofday(&tv
, NULL
)) == -1, tv
);
471 cnt
+= (int)tv
.tv_sec
;
472 cnt
+= (int)tv
.tv_usec
;
478 /* Not as random as you think but we take what we are given */
479 p
= (char *) getauxval(AT_RANDOM
);
483 #ifdef AT_SYSINFO_EHDR
484 p
= (char *) getauxval(AT_SYSINFO_EHDR
);
489 p
= (char *) getauxval(AT_BASE
);
494 SHA512_Final(results
, &ctx
);
495 memcpy((char*)buf
+ i
, results
, min(sizeof(results
), len
- i
));
496 i
+= min(sizeof(results
), len
- i
);
498 memset(results
, 0, sizeof results
);
499 if (gotdata(buf
, len
) == 0) {
501 return 0; /* satisfied */