crypto_scrypt.c 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  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(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen, smix):
  45. * Perform the requested scrypt computation, using ${smix} as the smix routine.
  46. */
  47. static int
  48. _crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
  49. const uint8_t * salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p,
  50. uint8_t * buf, size_t buflen,
  51. void (*smix)(uint8_t *, size_t, uint64_t, void *, void *))
  52. {
  53. void * B0, * V0, * XY0;
  54. uint8_t * B;
  55. uint32_t * V;
  56. uint32_t * XY;
  57. size_t r = _r, p = _p;
  58. uint32_t i;
  59. /* Sanity-check parameters. */
  60. if ((r == 0) || (p == 0)) {
  61. errno = EINVAL;
  62. goto err0;
  63. }
  64. #if SIZE_MAX > UINT32_MAX
  65. if (buflen > (((uint64_t)(1) << 32) - 1) * 32) {
  66. errno = EFBIG;
  67. goto err0;
  68. }
  69. #endif
  70. if ((uint64_t)(r) * (uint64_t)(p) >= (1 << 30)) {
  71. errno = EFBIG;
  72. goto err0;
  73. }
  74. if (((N & (N - 1)) != 0) || (N < 2)) {
  75. errno = EINVAL;
  76. goto err0;
  77. }
  78. if ((r > SIZE_MAX / 128 / p) ||
  79. #if SIZE_MAX / 256 <= UINT32_MAX
  80. (r > (SIZE_MAX - 64) / 256) ||
  81. #endif
  82. (N > SIZE_MAX / 128 / r)) {
  83. errno = ENOMEM;
  84. goto err0;
  85. }
  86. /* Allocate memory. */
  87. #ifdef HAVE_POSIX_MEMALIGN
  88. if ((errno = posix_memalign(&B0, 64, 128 * r * p)) != 0)
  89. goto err0;
  90. B = (uint8_t *)(B0);
  91. if ((errno = posix_memalign(&XY0, 64, 256 * r + 64)) != 0)
  92. goto err1;
  93. XY = (uint32_t *)(XY0);
  94. #if !defined(MAP_ANON) || !defined(HAVE_MMAP)
  95. if ((errno = posix_memalign(&V0, 64, (size_t)(128 * r * N))) != 0)
  96. goto err2;
  97. V = (uint32_t *)(V0);
  98. #endif
  99. #else
  100. if ((B0 = malloc(128 * r * p + 63)) == NULL)
  101. goto err0;
  102. B = (uint8_t *)(((uintptr_t)(B0) + 63) & ~ (uintptr_t)(63));
  103. if ((XY0 = malloc(256 * r + 64 + 63)) == NULL)
  104. goto err1;
  105. XY = (uint32_t *)(((uintptr_t)(XY0) + 63) & ~ (uintptr_t)(63));
  106. #if !defined(MAP_ANON) || !defined(HAVE_MMAP)
  107. if ((V0 = malloc(128 * r * N + 63)) == NULL)
  108. goto err2;
  109. V = (uint32_t *)(((uintptr_t)(V0) + 63) & ~ (uintptr_t)(63));
  110. #endif
  111. #endif
  112. #if defined(MAP_ANON) && defined(HAVE_MMAP)
  113. if ((V0 = mmap(NULL, (size_t)(128 * r * N), PROT_READ | PROT_WRITE,
  114. #ifdef MAP_NOCORE
  115. MAP_ANON | MAP_PRIVATE | MAP_NOCORE,
  116. #else
  117. MAP_ANON | MAP_PRIVATE,
  118. #endif
  119. -1, 0)) == MAP_FAILED)
  120. goto err2;
  121. V = (uint32_t *)(V0);
  122. #endif
  123. /* 1: (B_0 ... B_{p-1}) <-- PBKDF2(P, S, 1, p * MFLen) */
  124. PBKDF2_SHA256(passwd, passwdlen, salt, saltlen, 1, B, p * 128 * r);
  125. /* 2: for i = 0 to p - 1 do */
  126. for (i = 0; i < p; i++) {
  127. /* 3: B_i <-- MF(B_i, N) */
  128. (smix)(&B[i * 128 * r], r, N, V, XY);
  129. }
  130. /* 5: DK <-- PBKDF2(P, B, 1, dkLen) */
  131. PBKDF2_SHA256(passwd, passwdlen, B, p * 128 * r, 1, buf, buflen);
  132. /* Free memory. */
  133. #if defined(MAP_ANON) && defined(HAVE_MMAP)
  134. if (munmap(V0, (size_t)(128 * r * N)))
  135. goto err2;
  136. #else
  137. free(V0);
  138. #endif
  139. free(XY0);
  140. free(B0);
  141. /* Success! */
  142. return (0);
  143. err2:
  144. free(XY0);
  145. err1:
  146. free(B0);
  147. err0:
  148. /* Failure! */
  149. return (-1);
  150. }
  151. #define TESTLEN 64
  152. static struct scrypt_test {
  153. const char * passwd;
  154. const char * salt;
  155. uint64_t N;
  156. uint32_t r;
  157. uint32_t p;
  158. uint8_t result[TESTLEN];
  159. } testcase = {
  160. .passwd = "pleaseletmein",
  161. .salt = "SodiumChloride",
  162. .N = 16,
  163. .r = 8,
  164. .p = 1,
  165. .result = {
  166. 0x25, 0xa9, 0xfa, 0x20, 0x7f, 0x87, 0xca, 0x09,
  167. 0xa4, 0xef, 0x8b, 0x9f, 0x77, 0x7a, 0xca, 0x16,
  168. 0xbe, 0xb7, 0x84, 0xae, 0x18, 0x30, 0xbf, 0xbf,
  169. 0xd3, 0x83, 0x25, 0xaa, 0xbb, 0x93, 0x77, 0xdf,
  170. 0x1b, 0xa7, 0x84, 0xd7, 0x46, 0xea, 0x27, 0x3b,
  171. 0xf5, 0x16, 0xa4, 0x6f, 0xbf, 0xac, 0xf5, 0x11,
  172. 0xc5, 0xbe, 0xba, 0x4c, 0x4a, 0xb3, 0xac, 0xc7,
  173. 0xfa, 0x6f, 0x46, 0x0b, 0x6c, 0x0f, 0x47, 0x7b,
  174. }
  175. };
  176. static int
  177. testsmix(void (*smix)(uint8_t *, size_t, uint64_t, void *, void *))
  178. {
  179. uint8_t hbuf[TESTLEN];
  180. /* Perform the computation. */
  181. if (_crypto_scrypt(
  182. (const uint8_t *)testcase.passwd, strlen(testcase.passwd),
  183. (const uint8_t *)testcase.salt, strlen(testcase.salt),
  184. testcase.N, testcase.r, testcase.p, hbuf, TESTLEN, smix))
  185. return (-1);
  186. /* Does it match? */
  187. return (memcmp(testcase.result, hbuf, TESTLEN));
  188. }
  189. static void
  190. selectsmix(void)
  191. {
  192. #ifdef CPUSUPPORT_X86_SSE2
  193. /* If we're running on an SSE2-capable CPU, try that code. */
  194. if (cpusupport_x86_sse2()) {
  195. /* If SSE2ized smix works, use it. */
  196. if (!testsmix(crypto_scrypt_smix_sse2)) {
  197. smix_func = crypto_scrypt_smix_sse2;
  198. return;
  199. }
  200. warn0("Disabling broken SSE2 scrypt support - please report bug!");
  201. }
  202. #endif
  203. /* If generic smix works, use it. */
  204. if (!testsmix(crypto_scrypt_smix)) {
  205. smix_func = crypto_scrypt_smix;
  206. return;
  207. }
  208. warn0("Generic scrypt code is broken - please report bug!");
  209. /* If we get here, something really bad happened. */
  210. abort();
  211. }
  212. /**
  213. * crypto_scrypt(passwd, passwdlen, salt, saltlen, N, r, p, buf, buflen):
  214. * Compute scrypt(passwd[0 .. passwdlen - 1], salt[0 .. saltlen - 1], N, r,
  215. * p, buflen) and write the result into buf. The parameters r, p, and buflen
  216. * must satisfy 0 < r * p < 2^30 and buflen <= (2^32 - 1) * 32. The parameter
  217. * N must be a power of 2 greater than 1.
  218. *
  219. * Return 0 on success; or -1 on error.
  220. */
  221. int
  222. crypto_scrypt(const uint8_t * passwd, size_t passwdlen,
  223. const uint8_t * salt, size_t saltlen, uint64_t N, uint32_t _r, uint32_t _p,
  224. uint8_t * buf, size_t buflen)
  225. {
  226. if (smix_func == NULL)
  227. selectsmix();
  228. return (_crypto_scrypt(passwd, passwdlen, salt, saltlen, N, _r, _p,
  229. buf, buflen, smix_func));
  230. }