random.c 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337
  1. /*
  2. * Random number generator
  3. * Copyright (c) 2010-2011, Jouni Malinen <j@w1.fi>
  4. *
  5. * This program is free software; you can redistribute it and/or modify
  6. * it under the terms of the GNU General Public License version 2 as
  7. * published by the Free Software Foundation.
  8. *
  9. * Alternatively, this software may be distributed under the terms of BSD
  10. * license.
  11. *
  12. * See README and COPYING for more details.
  13. *
  14. * This random number generator is used to provide additional entropy to the
  15. * one provided by the operating system (os_get_random()) for session key
  16. * generation. The os_get_random() output is expected to be secure and the
  17. * implementation here is expected to provide only limited protection against
  18. * cases where os_get_random() cannot provide strong randomness. This
  19. * implementation shall not be assumed to be secure as the sole source of
  20. * randomness. The random_get_bytes() function mixes in randomness from
  21. * os_get_random() and as such, calls to os_get_random() can be replaced with
  22. * calls to random_get_bytes() without reducing security.
  23. *
  24. * The design here follows partially the design used in the Linux
  25. * drivers/char/random.c, but the implementation here is simpler and not as
  26. * strong. This is a compromise to reduce duplicated CPU effort and to avoid
  27. * extra code/memory size. As pointed out above, os_get_random() needs to be
  28. * guaranteed to be secure for any of the security assumptions to hold.
  29. */
  30. #include "utils/includes.h"
  31. #ifdef __linux__
  32. #include <fcntl.h>
  33. #endif /* __linux__ */
  34. #include "utils/common.h"
  35. #include "utils/eloop.h"
  36. #include "sha1.h"
  37. #include "random.h"
  38. #define POOL_WORDS 32
  39. #define POOL_WORDS_MASK (POOL_WORDS - 1)
  40. #define POOL_TAP1 26
  41. #define POOL_TAP2 20
  42. #define POOL_TAP3 14
  43. #define POOL_TAP4 7
  44. #define POOL_TAP5 1
  45. #define EXTRACT_LEN 16
  46. #define MIN_READY_MARK 2
  47. static u32 pool[POOL_WORDS];
  48. static unsigned int input_rotate = 0;
  49. static unsigned int pool_pos = 0;
  50. static u8 dummy_key[20];
  51. #ifdef __linux__
  52. static size_t dummy_key_avail = 0;
  53. static int random_fd = -1;
  54. #endif /* __linux__ */
  55. static unsigned int own_pool_ready = 0;
  56. #define MIN_COLLECT_ENTROPY 1000
  57. static unsigned int entropy = 0;
  58. static unsigned int total_collected = 0;
  59. static u32 __ROL32(u32 x, u32 y)
  60. {
  61. return (x << (y & 31)) | (x >> (32 - (y & 31)));
  62. }
  63. static void random_mix_pool(const void *buf, size_t len)
  64. {
  65. static const u32 twist[8] = {
  66. 0x00000000, 0x3b6e20c8, 0x76dc4190, 0x4db26158,
  67. 0xedb88320, 0xd6d6a3e8, 0x9b64c2b0, 0xa00ae278
  68. };
  69. const u8 *pos = buf;
  70. u32 w;
  71. wpa_hexdump_key(MSG_EXCESSIVE, "random_mix_pool", buf, len);
  72. while (len--) {
  73. w = __ROL32(*pos++, input_rotate & 31);
  74. input_rotate += pool_pos ? 7 : 14;
  75. pool_pos = (pool_pos - 1) & POOL_WORDS_MASK;
  76. w ^= pool[pool_pos];
  77. w ^= pool[(pool_pos + POOL_TAP1) & POOL_WORDS_MASK];
  78. w ^= pool[(pool_pos + POOL_TAP2) & POOL_WORDS_MASK];
  79. w ^= pool[(pool_pos + POOL_TAP3) & POOL_WORDS_MASK];
  80. w ^= pool[(pool_pos + POOL_TAP4) & POOL_WORDS_MASK];
  81. w ^= pool[(pool_pos + POOL_TAP5) & POOL_WORDS_MASK];
  82. pool[pool_pos] = (w >> 3) ^ twist[w & 7];
  83. }
  84. }
  85. static void random_extract(u8 *out)
  86. {
  87. unsigned int i;
  88. u8 hash[SHA1_MAC_LEN];
  89. u32 *hash_ptr;
  90. u32 buf[POOL_WORDS / 2];
  91. /* First, add hash back to pool to make backtracking more difficult. */
  92. hmac_sha1(dummy_key, sizeof(dummy_key), (const u8 *) pool,
  93. sizeof(pool), hash);
  94. random_mix_pool(hash, sizeof(hash));
  95. /* Hash half the pool to extra data */
  96. for (i = 0; i < POOL_WORDS / 2; i++)
  97. buf[i] = pool[(pool_pos - i) & POOL_WORDS_MASK];
  98. hmac_sha1(dummy_key, sizeof(dummy_key), (const u8 *) buf,
  99. sizeof(buf), hash);
  100. /*
  101. * Fold the hash to further reduce any potential output pattern.
  102. * Though, compromise this to reduce CPU use for the most common output
  103. * length (32) and return 16 bytes from instead of only half.
  104. */
  105. hash_ptr = (u32 *) hash;
  106. hash_ptr[0] ^= hash_ptr[4];
  107. os_memcpy(out, hash, EXTRACT_LEN);
  108. }
  109. void random_add_randomness(const void *buf, size_t len)
  110. {
  111. struct os_time t;
  112. static unsigned int count = 0;
  113. count++;
  114. wpa_printf(MSG_MSGDUMP, "Add randomness: count=%u entropy=%u",
  115. count, entropy);
  116. if (entropy > MIN_COLLECT_ENTROPY && (count & 0x3ff) != 0) {
  117. /*
  118. * No need to add more entropy at this point, so save CPU and
  119. * skip the update.
  120. */
  121. return;
  122. }
  123. os_get_time(&t);
  124. wpa_hexdump_key(MSG_EXCESSIVE, "random pool",
  125. (const u8 *) pool, sizeof(pool));
  126. random_mix_pool(&t, sizeof(t));
  127. random_mix_pool(buf, len);
  128. wpa_hexdump_key(MSG_EXCESSIVE, "random pool",
  129. (const u8 *) pool, sizeof(pool));
  130. entropy++;
  131. total_collected++;
  132. }
  133. int random_get_bytes(void *buf, size_t len)
  134. {
  135. int ret;
  136. u8 *bytes = buf;
  137. size_t left;
  138. wpa_printf(MSG_MSGDUMP, "Get randomness: len=%u entropy=%u",
  139. (unsigned int) len, entropy);
  140. /* Start with assumed strong randomness from OS */
  141. ret = os_get_random(buf, len);
  142. wpa_hexdump_key(MSG_EXCESSIVE, "random from os_get_random",
  143. buf, len);
  144. /* Mix in additional entropy extracted from the internal pool */
  145. left = len;
  146. while (left) {
  147. size_t siz, i;
  148. u8 tmp[EXTRACT_LEN];
  149. random_extract(tmp);
  150. wpa_hexdump_key(MSG_EXCESSIVE, "random from internal pool",
  151. tmp, sizeof(tmp));
  152. siz = left > EXTRACT_LEN ? EXTRACT_LEN : left;
  153. for (i = 0; i < siz; i++)
  154. *bytes++ ^= tmp[i];
  155. left -= siz;
  156. }
  157. wpa_hexdump_key(MSG_EXCESSIVE, "mixed random", buf, len);
  158. if (entropy < len)
  159. entropy = 0;
  160. else
  161. entropy -= len;
  162. return ret;
  163. }
  164. int random_pool_ready(void)
  165. {
  166. #ifdef __linux__
  167. int fd;
  168. ssize_t res;
  169. /*
  170. * Make sure that there is reasonable entropy available before allowing
  171. * some key derivation operations to proceed.
  172. */
  173. if (dummy_key_avail == sizeof(dummy_key))
  174. return 1; /* Already initialized - good to continue */
  175. /*
  176. * Try to fetch some more data from the kernel high quality
  177. * /dev/random. There may not be enough data available at this point,
  178. * so use non-blocking read to avoid blocking the application
  179. * completely.
  180. */
  181. fd = open("/dev/random", O_RDONLY | O_NONBLOCK);
  182. if (fd < 0) {
  183. #ifndef CONFIG_NO_STDOUT_DEBUG
  184. int error = errno;
  185. perror("open(/dev/random)");
  186. wpa_printf(MSG_ERROR, "random: Cannot open /dev/random: %s",
  187. strerror(error));
  188. #endif /* CONFIG_NO_STDOUT_DEBUG */
  189. return -1;
  190. }
  191. res = read(fd, dummy_key + dummy_key_avail,
  192. sizeof(dummy_key) - dummy_key_avail);
  193. if (res < 0) {
  194. wpa_printf(MSG_ERROR, "random: Cannot read from /dev/random: "
  195. "%s", strerror(errno));
  196. res = 0;
  197. }
  198. wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from "
  199. "/dev/random", (unsigned) res,
  200. (unsigned) (sizeof(dummy_key) - dummy_key_avail));
  201. dummy_key_avail += res;
  202. close(fd);
  203. if (dummy_key_avail == sizeof(dummy_key))
  204. return 1;
  205. wpa_printf(MSG_INFO, "random: Only %u/%u bytes of strong "
  206. "random data available from /dev/random",
  207. (unsigned) dummy_key_avail, (unsigned) sizeof(dummy_key));
  208. if (own_pool_ready >= MIN_READY_MARK ||
  209. total_collected + 10 * own_pool_ready > MIN_COLLECT_ENTROPY) {
  210. wpa_printf(MSG_INFO, "random: Allow operation to proceed "
  211. "based on internal entropy");
  212. return 1;
  213. }
  214. wpa_printf(MSG_INFO, "random: Not enough entropy pool available for "
  215. "secure operations");
  216. return 0;
  217. #else /* __linux__ */
  218. /* TODO: could do similar checks on non-Linux platforms */
  219. return 1;
  220. #endif /* __linux__ */
  221. }
  222. void random_mark_pool_ready(void)
  223. {
  224. own_pool_ready++;
  225. wpa_printf(MSG_DEBUG, "random: Mark internal entropy pool to be "
  226. "ready (count=%u/%u)", own_pool_ready, MIN_READY_MARK);
  227. }
  228. #ifdef __linux__
  229. static void random_close_fd(void)
  230. {
  231. if (random_fd >= 0) {
  232. eloop_unregister_read_sock(random_fd);
  233. close(random_fd);
  234. random_fd = -1;
  235. }
  236. }
  237. static void random_read_fd(int sock, void *eloop_ctx, void *sock_ctx)
  238. {
  239. ssize_t res;
  240. if (dummy_key_avail == sizeof(dummy_key)) {
  241. random_close_fd();
  242. return;
  243. }
  244. res = read(sock, dummy_key + dummy_key_avail,
  245. sizeof(dummy_key) - dummy_key_avail);
  246. if (res < 0) {
  247. wpa_printf(MSG_ERROR, "random: Cannot read from /dev/random: "
  248. "%s", strerror(errno));
  249. return;
  250. }
  251. wpa_printf(MSG_DEBUG, "random: Got %u/%u bytes from /dev/random",
  252. (unsigned) res,
  253. (unsigned) (sizeof(dummy_key) - dummy_key_avail));
  254. dummy_key_avail += res;
  255. if (dummy_key_avail == sizeof(dummy_key))
  256. random_close_fd();
  257. }
  258. #endif /* __linux__ */
  259. void random_init(void)
  260. {
  261. #ifdef __linux__
  262. if (random_fd >= 0)
  263. return;
  264. random_fd = open("/dev/random", O_RDONLY | O_NONBLOCK);
  265. if (random_fd < 0) {
  266. #ifndef CONFIG_NO_STDOUT_DEBUG
  267. int error = errno;
  268. perror("open(/dev/random)");
  269. wpa_printf(MSG_ERROR, "random: Cannot open /dev/random: %s",
  270. strerror(error));
  271. #endif /* CONFIG_NO_STDOUT_DEBUG */
  272. return;
  273. }
  274. wpa_printf(MSG_DEBUG, "random: Trying to read entropy from "
  275. "/dev/random");
  276. eloop_register_read_sock(random_fd, random_read_fd, NULL, NULL);
  277. #endif /* __linux__ */
  278. }
  279. void random_deinit(void)
  280. {
  281. #ifdef __linux__
  282. random_close_fd();
  283. #endif /* __linux__ */
  284. }