summaryrefslogtreecommitdiff
path: root/lib/libcrypto/arc4random/arc4random_linux.h
diff options
context:
space:
mode:
authorMatthew Dempsky <matthew@cvs.openbsd.org>2014-07-18 21:40:55 +0000
committerMatthew Dempsky <matthew@cvs.openbsd.org>2014-07-18 21:40:55 +0000
commitc80b1e1bd26a00b37c28de3a88ffe420aaf1fa77 (patch)
tree79101e37f8210e587ee31d7ab381c233bf1b1b01 /lib/libcrypto/arc4random/arc4random_linux.h
parent7e628a7893957d87bb7c974fa301630a8e0aef8d (diff)
Cleanup portable arc4random fork detection code:
1. Use "len" parameter instead of sizeof(*rs). 2. Simplify the atfork handler to be strictly async signal safe by simply writing to a global volatile sig_atomic_t object, and then checking for this in _rs_forkdetect(). (Idea from discussions with Szabolcs Nagy and Rich Felker.) 3. Use memset(rs, 0, sizeof(*rs)) to match OpenBSD's MAP_INHERIT_ZERO fork semantics to avoid any skew in behavior across platforms. ok deraadt
Diffstat (limited to 'lib/libcrypto/arc4random/arc4random_linux.h')
-rw-r--r--lib/libcrypto/arc4random/arc4random_linux.h19
1 files changed, 8 insertions, 11 deletions
diff --git a/lib/libcrypto/arc4random/arc4random_linux.h b/lib/libcrypto/arc4random/arc4random_linux.h
index 2319ccbf427..f02ae388d5f 100644
--- a/lib/libcrypto/arc4random/arc4random_linux.h
+++ b/lib/libcrypto/arc4random/arc4random_linux.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: arc4random_linux.h,v 1.1 2014/07/18 02:05:55 deraadt Exp $ */
+/* $OpenBSD: arc4random_linux.h,v 1.2 2014/07/18 21:40:54 matthew Exp $ */
/*
* Copyright (c) 1996, David Mazieres <dm@uun.org>
@@ -27,21 +27,18 @@ _rs_allocate(size_t len)
{
void *p;
- if ((p = mmap(NULL, sizeof(*rs), PROT_READ|PROT_WRITE,
+ if ((p = mmap(NULL, len, PROT_READ|PROT_WRITE,
MAP_ANON|MAP_PRIVATE, -1, 0)) == MAP_FAILED)
return (NULL);
return (p);
}
+static volatile sig_atomic_t _rs_forked;
+
static inline void
_rs_forkhandler(void)
{
- /*
- * Race-free because we're running single-threaded in a new
- * address space, and once allocated rs is never deallocated.
- */
- if (rs)
- rs->rs_count = 0;
+ _rs_forked = 1;
}
static inline void
@@ -50,11 +47,11 @@ _rs_forkdetect(void)
static pid_t _rs_pid = 0;
pid_t pid = getpid();
- /* If a system lacks MAP_INHERIT_ZERO, resort to getpid() */
- if (_rs_pid == 0 || _rs_pid != pid) {
+ if (_rs_pid == 0 || _rs_pid != pid || _rs_forked) {
_rs_pid = pid;
+ _rs_forked = 0;
if (rs)
- rs->rs_count = 0;
+ memset(rs, 0, sizeof(*rs));
}
}