crypto_scrypt.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258
  1. /*-
  2. * Copyright 2009 Colin Percival
  3. * All rights reserved.
  4. *
  5. * Redistribution and use in source and binary forms, with or without
  6. * modification, are permitted provided that the following conditions
  7. * are met:
  8. * 1. Redistributions of source code must retain the above copyright
  9. * notice, this list of conditions and the following disclaimer.
  10. * 2. Redistributions in binary form must reproduce the above copyright
  11. * notice, this list of conditions and the following disclaimer in the
  12. * documentation and/or other materials provided with the distribution.
  13. *
  14. * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
  15. * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
  16. * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  17. * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
  18. * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
  19. * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
  20. * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
  21. * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
  22. * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
  23. * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
  24. * SUCH DAMAGE.
  25. *
  26. * This file was originally written by Colin Percival as part of the Tarsnap
  27. * online backup system.
  28. */
  29. #include "platform.h"
  30. #include <sys/types.h>
  31. #include <sys/mman.h>
  32. #include <errno.h>
  33. #include <stdint.h>
  34. #include <stdlib.h>
  35. #include <string.h>
  36. #include "cpusupport.h"
  37. #include "sha256.h"
  38. #include "warnp.h"
  39. #include "crypto_scrypt_smix.h"
  40. #include "crypto_scrypt_smix_sse2.h"
  41. #include "crypto_scrypt.h"
  42. static void (* smix_func)(uint8_t *, size_t, uint64_t, void *, void *) = NULL;
  43. /**
  44. * crypto_scrypt_internal(passwd, passwdlen, salt, saltlen, N, r, p, buf,
  45. * buflen, smix):
  46. * Perform the requested scrypt computation, using ${smix} as the smix routine.
  47. */
  48. static int
  49. crypto_scrypt_internal(const uint8_t * passwd, size_t passwdlen,
  50. const uint8_t * salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p,
  51. uint8_t * buf, size_t buflen,
  52. void (* smix)(uint8_t *, size_t, uint64_t, void *, void *))
  53. {
  54. void * B0, * V0, * XY0;
  55. uint8_t * B;
  56. uint32_t * V;
  57. uint32_t * XY;
  58. size_t r = _r, p = _p;
  59. uint32_t i;
  60. /* Sanity-check parameters. */
  61. if ((r == 0) || (p == 0)) {
  62. errno = EINVAL;
  63. goto err0;
  64. }
  65. #if SIZE_MAX > UINT32_MAX
  66. if (buflen > (((uint64_t)(1) << 32) - 1) * 32) {
  67. errno = EFBIG;
  68. goto err0;
  69. }
  70. #endif
  71. if ((uint64_t)(r) * (uint64_t)(p) >= (1 << 30)) {
  72. errno = EFBIG;
  73. goto err0;
  74. }
  75. if (((N & (N - 1)) != 0) || (N < 2)) {
  76. errno = EINVAL;
  77. goto err0;
  78. }
  79. if ((r > SIZE_MAX / 128 / p) ||
  80. #if SIZE_MAX / 256 <= UINT32_MAX
  81. (r > (SIZE_MAX - 64) / 256) ||
  82. #endif
  83. (N > SIZE_MAX / 128 / r)) {
  84. errno = ENOMEM;
  85. goto err0;
  86. }
  87. /* Allocate memory. */
  88. #ifdef HAVE_POSIX_MEMALIGN
  89. if ((errno = posix_memalign(&B0, 64, 128 * r * p)) != 0)
  90. goto err0;
  91. B = (uint8_t *)(B0);
  92. if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
  93. goto err1;
  94. XY = (uint32_t *)(XY0);
  95. #if !defined(MAP_ANON) || !defined(HAVE_MMAP)
  96. if ((errno = posix_memalign(&V0, 64, (size_t)(128 * r * N))) != 0)
  97. goto err2;
  98. V = (uint32_t *)(V0);
  99. #endif
  100. #else
  101. if ((B0 = malloc(128 * r * p + 63)) == NULL)
  102. goto err0;
  103. B = (uint8_t *)(((uintptr_t)(B0) + 63) & ~ (uintptr_t)(63));
  104. if ((XY0 = malloc(256 * r + 64 + 63)) == NULL)
  105. goto err1;
  106. XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
  107. #if !defined(MAP_ANON) || !defined(HAVE_MMAP)
  108. if ((V0 = malloc(128 * r * N + 63)) == NULL)
  109. goto err2;
  110. V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63));
  111. #endif
  112. #endif
  113. #if defined(MAP_ANON) && defined(HAVE_MMAP)
  114. if ((V0 = mmap(NULL, (size_t)(128 * r * N), PROT_READ | PROT_WRITE,
  115. #ifdef MAP_NOCORE
  116. MAP_ANON | MAP_PRIVATE | MAP_NOCORE,
  117. #else
  118. MAP_ANON | MAP_PRIVATE,
  119. #endif
  120. -1, 0)) == MAP_FAILED)
  121. goto err2;
  122. V = (uint32_t *)(V0);
  123. #endif
  124. /* 1: (B_0 ... B_{p-1}) <-- PBKDF2(P, S, 1, p * MFLen) */
  125. PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r);
  126. /* 2: for i = 0 to p - 1 do */
  127. for (i = 0; i < p; i++) {
  128. /* 3: B_i <-- MF(B_i, N) */
  129. (smix)(&B[i * 128 * r], r, N, V, XY);
  130. }
  131. /* 5: DK <-- PBKDF2(P, B, 1, dkLen) */
  132. PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen);
  133. /* Free memory. */
  134. #if defined(MAP_ANON) && defined(HAVE_MMAP)
  135. if (munmap(V0, (size_t)(128 * r * N)))
  136. goto err2;
  137. #else
  138. free(V0);
  139. #endif
  140. free(XY0);
  141. free(B0);
  142. /* Success! */
  143. return (0);
  144. err2:
  145. free(XY0);
  146. err1:
  147. free(B0);
  148. err0:
  149. /* Failure! */
  150. return (-1);
  151. }
  152. #define TESTLEN 64
  153. static struct scrypt_test {
  154. const char * passwd;
  155. const char * salt;
  156. uint64_t N;
  157. uint32_t r;
  158. uint32_t p;
  159. uint8_t result[TESTLEN];
  160. } testcase = {
  161. .passwd = "pleaseletmein",
  162. .salt = "SodiumChloride",
  163. .N = 16,
  164. .r = 8,
  165. .p = 1,
  166. .result = {
  167. 0x25, 0xa9, 0xfa, 0x20, 0x7f, 0x87, 0xca, 0x09,
  168. 0xa4, 0xef, 0x8b, 0x9f, 0x77, 0x7a, 0xca, 0x16,
  169. 0xbe, 0xb7, 0x84, 0xae, 0x18, 0x30, 0xbf, 0xbf,
  170. 0xd3, 0x83, 0x25, 0xaa, 0xbb, 0x93, 0x77, 0xdf,
  171. 0x1b, 0xa7, 0x84, 0xd7, 0x46, 0xea, 0x27, 0x3b,
  172. 0xf5, 0x16, 0xa4, 0x6f, 0xbf, 0xac, 0xf5, 0x11,
  173. 0xc5, 0xbe, 0xba, 0x4c, 0x4a, 0xb3, 0xac, 0xc7,
  174. 0xfa, 0x6f, 0x46, 0x0b, 0x6c, 0x0f, 0x47, 0x7b,
  175. }
  176. };
  177. static int
  178. testsmix(void (* smix)(uint8_t *, size_t, uint64_t, void *, void *))
  179. {
  180. uint8_t hbuf[TESTLEN];
  181. /* Perform the computation. */
  182. if (crypto_scrypt_internal(
  183. (const uint8_t *)testcase.passwd, strlen(testcase.passwd),
  184. (const uint8_t *)testcase.salt, strlen(testcase.salt),
  185. testcase.N, testcase.r, testcase.p, hbuf, TESTLEN, smix))
  186. return (-1);
  187. /* Does it match? */
  188. return (memcmp(testcase.result, hbuf, TESTLEN));
  189. }
  190. static void
  191. selectsmix(void)
  192. {
  193. #ifdef CPUSUPPORT_X86_SSE2
  194. /* If we're running on an SSE2-capable CPU, try that code. */
  195. if (cpusupport_x86_sse2()) {
  196. /* If SSE2ized smix works, use it. */
  197. if (!testsmix(crypto_scrypt_smix_sse2)) {
  198. smix_func = crypto_scrypt_smix_sse2;
  199. return;
  200. }
  201. warn0("Disabling broken SSE2 scrypt support - please report bug!");
  202. }
  203. #endif
  204. /* If generic smix works, use it. */
  205. if (!testsmix(crypto_scrypt_smix)) {
  206. smix_func = crypto_scrypt_smix;
  207. return;
  208. }
  209. warn0("Generic scrypt code is broken - please report bug!");
  210. /* If we get here, something really bad happened. */
  211. abort();
  212. }
  213. /**
  214. * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
  215. * Compute scrypt(passwd[0 .. passwdlen - 1], salt[0 .. saltlen - 1], N, r,
  216. * p, buflen) and write the result into buf. The parameters r, p, and buflen
  217. * must satisfy 0 < r * p < 2^30 and buflen <= (2^32 - 1) * 32. The parameter
  218. * N must be a power of 2 greater than 1.
  219. *
  220. * Return 0 on success; or -1 on error.
  221. */
  222. int
  223. crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
  224. const uint8_t * salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p,
  225. uint8_t * buf, size_t buflen)
  226. {
  227. if (smix_func == NULL)
  228. selectsmix();
  229. return (crypto_scrypt_internal(passwd, passwdlen, salt, saltlen, N,
  230. _r, _p, buf, buflen, smix_func));
  231. }