Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 1 | //===-------------------------- random.cpp --------------------------------===// |
| 2 | // |
Howard Hinnant | f5256e1 | 2010-05-11 21:36:01 +0000 | [diff] [blame] | 3 | // The LLVM Compiler Infrastructure |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 4 | // |
Howard Hinnant | b64f8b0 | 2010-11-16 22:09:02 +0000 | [diff] [blame] | 5 | // This file is dual licensed under the MIT and the University of Illinois Open |
| 6 | // Source Licenses. See LICENSE.TXT for details. |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 7 | // |
| 8 | //===----------------------------------------------------------------------===// |
| 9 | |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 10 | #if defined(_LIBCPP_USING_WIN32_RANDOM) |
Marshall Clow | b8dd5ca | 2013-10-09 21:49:03 +0000 | [diff] [blame] | 11 | // Must be defined before including stdlib.h to enable rand_s(). |
| 12 | #define _CRT_RAND_S |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 13 | #endif // defined(_LIBCPP_USING_WIN32_RANDOM) |
Marshall Clow | b8dd5ca | 2013-10-09 21:49:03 +0000 | [diff] [blame] | 14 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 15 | #include "random" |
| 16 | #include "system_error" |
| 17 | |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 18 | #if defined(__sun__) |
David Chisnall | 997e454 | 2012-02-29 13:05:08 +0000 | [diff] [blame] | 19 | #define rename solaris_headers_are_broken |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 20 | #endif // defined(__sun__) |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 21 | |
| 22 | #include <errno.h> |
| 23 | #include <stdio.h> |
| 24 | #include <stdlib.h> |
| 25 | |
| 26 | #if defined(_LIBCPP_USING_DEV_RANDOM) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 27 | #include <fcntl.h> |
| 28 | #include <unistd.h> |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 29 | #elif defined(_LIBCPP_USING_NACL_RANDOM) |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 30 | #include <nacl/nacl_random.h> |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 31 | #endif |
| 32 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 33 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 34 | _LIBCPP_BEGIN_NAMESPACE_STD |
| 35 | |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 36 | #if defined(_LIBCPP_USING_ARC4_RANDOM) |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 37 | |
| 38 | random_device::random_device(const string& __token) |
| 39 | { |
| 40 | if (__token != "/dev/urandom") |
| 41 | __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 42 | } |
| 43 | |
| 44 | random_device::~random_device() |
| 45 | { |
| 46 | } |
| 47 | |
| 48 | unsigned |
| 49 | random_device::operator()() |
| 50 | { |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 51 | return arc4random(); |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 52 | } |
| 53 | |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 54 | #elif defined(_LIBCPP_USING_DEV_RANDOM) |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 55 | |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 56 | random_device::random_device(const string& __token) |
| 57 | : __f_(open(__token.c_str(), O_RDONLY)) |
| 58 | { |
David Majnemer | 8db32cc | 2014-06-03 02:21:37 +0000 | [diff] [blame] | 59 | if (__f_ < 0) |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 60 | __throw_system_error(errno, ("random_device failed to open " + __token).c_str()); |
| 61 | } |
| 62 | |
| 63 | random_device::~random_device() |
| 64 | { |
| 65 | close(__f_); |
| 66 | } |
| 67 | |
| 68 | unsigned |
| 69 | random_device::operator()() |
| 70 | { |
| 71 | unsigned r; |
David Majnemer | 4d9f97b | 2014-06-03 02:40:39 +0000 | [diff] [blame] | 72 | size_t n = sizeof(r); |
| 73 | char* p = reinterpret_cast<char*>(&r); |
| 74 | while (n > 0) |
| 75 | { |
| 76 | ssize_t s = read(__f_, p, n); |
| 77 | if (s == 0) |
| 78 | __throw_system_error(ENODATA, "random_device got EOF"); |
| 79 | if (s == -1) |
| 80 | { |
| 81 | if (errno != EINTR) |
| 82 | __throw_system_error(errno, "random_device got an unexpected error"); |
| 83 | continue; |
| 84 | } |
| 85 | n -= static_cast<size_t>(s); |
| 86 | p += static_cast<size_t>(s); |
| 87 | } |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 88 | return r; |
| 89 | } |
JF Bastien | 2bd5ffd | 2014-12-01 19:19:55 +0000 | [diff] [blame] | 90 | |
Ed Schouten | 63e70b6 | 2015-03-10 07:46:06 +0000 | [diff] [blame] | 91 | #elif defined(_LIBCPP_USING_NACL_RANDOM) |
| 92 | |
| 93 | random_device::random_device(const string& __token) |
| 94 | { |
| 95 | if (__token != "/dev/urandom") |
| 96 | __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); |
| 97 | int error = nacl_secure_random_init(); |
| 98 | if (error) |
| 99 | __throw_system_error(error, ("random device failed to open " + __token).c_str()); |
| 100 | } |
| 101 | |
| 102 | random_device::~random_device() |
| 103 | { |
| 104 | } |
| 105 | |
| 106 | unsigned |
| 107 | random_device::operator()() |
| 108 | { |
| 109 | unsigned r; |
| 110 | size_t n = sizeof(r); |
| 111 | size_t bytes_written; |
| 112 | int error = nacl_secure_random(&r, n, &bytes_written); |
| 113 | if (error != 0) |
| 114 | __throw_system_error(error, "random_device failed getting bytes"); |
| 115 | else if (bytes_written != n) |
| 116 | __throw_runtime_error("random_device failed to obtain enough bytes"); |
| 117 | return r; |
| 118 | } |
| 119 | |
| 120 | #elif defined(_LIBCPP_USING_WIN32_RANDOM) |
| 121 | |
| 122 | random_device::random_device(const string& __token) |
| 123 | { |
| 124 | if (__token != "/dev/urandom") |
| 125 | __throw_system_error(ENOENT, ("random device not supported " + __token).c_str()); |
| 126 | } |
| 127 | |
| 128 | random_device::~random_device() |
| 129 | { |
| 130 | } |
| 131 | |
| 132 | unsigned |
| 133 | random_device::operator()() |
| 134 | { |
| 135 | unsigned r; |
| 136 | errno_t err = rand_s(&r); |
| 137 | if (err) |
| 138 | __throw_system_error(err, "random_device rand_s failed."); |
| 139 | return r; |
| 140 | } |
| 141 | |
| 142 | #else |
| 143 | #error "Random device not implemented for this architecture" |
| 144 | #endif |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 145 | |
| 146 | double |
Howard Hinnant | c83960a | 2012-07-20 21:44:27 +0000 | [diff] [blame] | 147 | random_device::entropy() const _NOEXCEPT |
Howard Hinnant | bc8d3f9 | 2010-05-11 19:42:16 +0000 | [diff] [blame] | 148 | { |
| 149 | return 0; |
| 150 | } |
| 151 | |
| 152 | _LIBCPP_END_NAMESPACE_STD |