blake2b.c 4.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170
  1. // SPDX-License-Identifier: GPL-2.0 OR MIT
  2. /*
  3. * Copyright (C) 2015-2019 Jason A. Donenfeld <Jason@zx2c4.com>. All Rights Reserved.
  4. * Copyright 2025 Google LLC
  5. *
  6. * This is an implementation of the BLAKE2b hash and PRF functions.
  7. *
  8. * Information: https://blake2.net/
  9. */
  10. #include <crypto/blake2b.h>
  11. #include <linux/bug.h>
  12. #include <linux/export.h>
  13. #include <linux/kernel.h>
  14. #include <linux/module.h>
  15. #include <linux/string.h>
  16. #include <linux/unroll.h>
  17. #include <linux/types.h>
  18. static const u8 blake2b_sigma[12][16] = {
  19. { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
  20. { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 },
  21. { 11, 8, 12, 0, 5, 2, 15, 13, 10, 14, 3, 6, 7, 1, 9, 4 },
  22. { 7, 9, 3, 1, 13, 12, 11, 14, 2, 6, 5, 10, 4, 0, 15, 8 },
  23. { 9, 0, 5, 7, 2, 4, 10, 15, 14, 1, 11, 12, 6, 8, 3, 13 },
  24. { 2, 12, 6, 10, 0, 11, 8, 3, 4, 13, 7, 5, 15, 14, 1, 9 },
  25. { 12, 5, 1, 15, 14, 13, 4, 10, 0, 7, 6, 3, 9, 2, 8, 11 },
  26. { 13, 11, 7, 14, 12, 1, 3, 9, 5, 0, 15, 4, 8, 6, 2, 10 },
  27. { 6, 15, 14, 9, 11, 3, 0, 8, 12, 2, 13, 7, 1, 4, 10, 5 },
  28. { 10, 2, 8, 4, 7, 6, 1, 5, 15, 11, 9, 14, 3, 12, 13, 0 },
  29. { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15 },
  30. { 14, 10, 4, 8, 9, 15, 13, 6, 1, 12, 0, 2, 11, 7, 5, 3 }
  31. };
  32. static inline void blake2b_increment_counter(struct blake2b_ctx *ctx, u32 inc)
  33. {
  34. ctx->t[0] += inc;
  35. ctx->t[1] += (ctx->t[0] < inc);
  36. }
  37. static void __maybe_unused
  38. blake2b_compress_generic(struct blake2b_ctx *ctx,
  39. const u8 *data, size_t nblocks, u32 inc)
  40. {
  41. u64 m[16];
  42. u64 v[16];
  43. int i;
  44. WARN_ON(IS_ENABLED(DEBUG) &&
  45. (nblocks > 1 && inc != BLAKE2B_BLOCK_SIZE));
  46. while (nblocks > 0) {
  47. blake2b_increment_counter(ctx, inc);
  48. memcpy(m, data, BLAKE2B_BLOCK_SIZE);
  49. le64_to_cpu_array(m, ARRAY_SIZE(m));
  50. memcpy(v, ctx->h, 64);
  51. v[ 8] = BLAKE2B_IV0;
  52. v[ 9] = BLAKE2B_IV1;
  53. v[10] = BLAKE2B_IV2;
  54. v[11] = BLAKE2B_IV3;
  55. v[12] = BLAKE2B_IV4 ^ ctx->t[0];
  56. v[13] = BLAKE2B_IV5 ^ ctx->t[1];
  57. v[14] = BLAKE2B_IV6 ^ ctx->f[0];
  58. v[15] = BLAKE2B_IV7 ^ ctx->f[1];
  59. #define G(r, i, a, b, c, d) do { \
  60. a += b + m[blake2b_sigma[r][2 * i + 0]]; \
  61. d = ror64(d ^ a, 32); \
  62. c += d; \
  63. b = ror64(b ^ c, 24); \
  64. a += b + m[blake2b_sigma[r][2 * i + 1]]; \
  65. d = ror64(d ^ a, 16); \
  66. c += d; \
  67. b = ror64(b ^ c, 63); \
  68. } while (0)
  69. #ifdef CONFIG_64BIT
  70. /*
  71. * Unroll the rounds loop to enable constant-folding of the
  72. * blake2b_sigma values. Seems worthwhile on 64-bit kernels.
  73. * Not worthwhile on 32-bit kernels because the code size is
  74. * already so large there due to BLAKE2b using 64-bit words.
  75. */
  76. unrolled_full
  77. #endif
  78. for (int r = 0; r < 12; r++) {
  79. G(r, 0, v[0], v[4], v[8], v[12]);
  80. G(r, 1, v[1], v[5], v[9], v[13]);
  81. G(r, 2, v[2], v[6], v[10], v[14]);
  82. G(r, 3, v[3], v[7], v[11], v[15]);
  83. G(r, 4, v[0], v[5], v[10], v[15]);
  84. G(r, 5, v[1], v[6], v[11], v[12]);
  85. G(r, 6, v[2], v[7], v[8], v[13]);
  86. G(r, 7, v[3], v[4], v[9], v[14]);
  87. }
  88. #undef G
  89. for (i = 0; i < 8; ++i)
  90. ctx->h[i] ^= v[i] ^ v[i + 8];
  91. data += BLAKE2B_BLOCK_SIZE;
  92. --nblocks;
  93. }
  94. }
  95. #ifdef CONFIG_CRYPTO_LIB_BLAKE2B_ARCH
  96. #include "blake2b.h" /* $(SRCARCH)/blake2b.h */
  97. #else
  98. #define blake2b_compress blake2b_compress_generic
  99. #endif
  100. static inline void blake2b_set_lastblock(struct blake2b_ctx *ctx)
  101. {
  102. ctx->f[0] = -1;
  103. }
  104. void blake2b_update(struct blake2b_ctx *ctx, const u8 *in, size_t inlen)
  105. {
  106. const size_t fill = BLAKE2B_BLOCK_SIZE - ctx->buflen;
  107. if (unlikely(!inlen))
  108. return;
  109. if (inlen > fill) {
  110. memcpy(ctx->buf + ctx->buflen, in, fill);
  111. blake2b_compress(ctx, ctx->buf, 1, BLAKE2B_BLOCK_SIZE);
  112. ctx->buflen = 0;
  113. in += fill;
  114. inlen -= fill;
  115. }
  116. if (inlen > BLAKE2B_BLOCK_SIZE) {
  117. const size_t nblocks = DIV_ROUND_UP(inlen, BLAKE2B_BLOCK_SIZE);
  118. blake2b_compress(ctx, in, nblocks - 1, BLAKE2B_BLOCK_SIZE);
  119. in += BLAKE2B_BLOCK_SIZE * (nblocks - 1);
  120. inlen -= BLAKE2B_BLOCK_SIZE * (nblocks - 1);
  121. }
  122. memcpy(ctx->buf + ctx->buflen, in, inlen);
  123. ctx->buflen += inlen;
  124. }
  125. EXPORT_SYMBOL(blake2b_update);
  126. void blake2b_final(struct blake2b_ctx *ctx, u8 *out)
  127. {
  128. WARN_ON(IS_ENABLED(DEBUG) && !out);
  129. blake2b_set_lastblock(ctx);
  130. memset(ctx->buf + ctx->buflen, 0,
  131. BLAKE2B_BLOCK_SIZE - ctx->buflen); /* Padding */
  132. blake2b_compress(ctx, ctx->buf, 1, ctx->buflen);
  133. cpu_to_le64_array(ctx->h, ARRAY_SIZE(ctx->h));
  134. memcpy(out, ctx->h, ctx->outlen);
  135. memzero_explicit(ctx, sizeof(*ctx));
  136. }
  137. EXPORT_SYMBOL(blake2b_final);
  138. #ifdef blake2b_mod_init_arch
  139. static int __init blake2b_mod_init(void)
  140. {
  141. blake2b_mod_init_arch();
  142. return 0;
  143. }
  144. subsys_initcall(blake2b_mod_init);
  145. static void __exit blake2b_mod_exit(void)
  146. {
  147. }
  148. module_exit(blake2b_mod_exit);
  149. #endif
  150. MODULE_DESCRIPTION("BLAKE2b hash function");
  151. MODULE_LICENSE("GPL");