zfs_sha256.c 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144
  1. /*
  2. * GRUB -- GRand Unified Bootloader
  3. * Copyright (C) 1999,2000,2001,2002,2003,2004,2009 Free Software Foundation, Inc.
  4. * Copyright 2007 Sun Microsystems, Inc.
  5. *
  6. * GRUB is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License as published by
  8. * the Free Software Foundation; either version 3 of the License, or
  9. * (at your option) any later version.
  10. *
  11. * GRUB is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. *
  16. * You should have received a copy of the GNU General Public License
  17. * along with GRUB. If not, see <http://www.gnu.org/licenses/>.
  18. */
  19. #include <grub/err.h>
  20. #include <grub/file.h>
  21. #include <grub/mm.h>
  22. #include <grub/misc.h>
  23. #include <grub/disk.h>
  24. #include <grub/dl.h>
  25. #include <grub/types.h>
  26. #include <grub/zfs/zfs.h>
  27. #include <grub/zfs/zio.h>
  28. #include <grub/zfs/dnode.h>
  29. #include <grub/zfs/uberblock_impl.h>
  30. #include <grub/zfs/vdev_impl.h>
  31. #include <grub/zfs/zio_checksum.h>
  32. #include <grub/zfs/zap_impl.h>
  33. #include <grub/zfs/zap_leaf.h>
  34. #include <grub/zfs/zfs_znode.h>
  35. #include <grub/zfs/dmu.h>
  36. #include <grub/zfs/dmu_objset.h>
  37. #include <grub/zfs/dsl_dir.h>
  38. #include <grub/zfs/dsl_dataset.h>
  39. /*
  40. * SHA-256 checksum, as specified in FIPS 180-2, available at:
  41. * http://csrc.nist.gov/cryptval
  42. *
  43. * This is a very compact implementation of SHA-256.
  44. * It is designed to be simple and portable, not to be fast.
  45. */
  46. /*
  47. * The literal definitions according to FIPS180-2 would be:
  48. *
  49. * Ch(x, y, z) (((x) & (y)) ^ ((~(x)) & (z)))
  50. * Maj(x, y, z) (((x) & (y)) | ((x) & (z)) | ((y) & (z)))
  51. *
  52. * We use logical equivalents which require one less op.
  53. */
  54. #define Ch(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
  55. #define Maj(x, y, z) (((x) & (y)) ^ ((z) & ((x) ^ (y))))
  56. #define Rot32(x, s) (((x) >> s) | ((x) << (32 - s)))
  57. #define SIGMA0(x) (Rot32(x, 2) ^ Rot32(x, 13) ^ Rot32(x, 22))
  58. #define SIGMA1(x) (Rot32(x, 6) ^ Rot32(x, 11) ^ Rot32(x, 25))
  59. #define sigma0(x) (Rot32(x, 7) ^ Rot32(x, 18) ^ ((x) >> 3))
  60. #define sigma1(x) (Rot32(x, 17) ^ Rot32(x, 19) ^ ((x) >> 10))
  61. static const grub_uint32_t SHA256_K[64] = {
  62. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5,
  63. 0x3956c25b, 0x59f111f1, 0x923f82a4, 0xab1c5ed5,
  64. 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  65. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174,
  66. 0xe49b69c1, 0xefbe4786, 0x0fc19dc6, 0x240ca1cc,
  67. 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  68. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7,
  69. 0xc6e00bf3, 0xd5a79147, 0x06ca6351, 0x14292967,
  70. 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  71. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85,
  72. 0xa2bfe8a1, 0xa81a664b, 0xc24b8b70, 0xc76c51a3,
  73. 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  74. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5,
  75. 0x391c0cb3, 0x4ed8aa4a, 0x5b9cca4f, 0x682e6ff3,
  76. 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  77. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  78. };
  79. static void
  80. SHA256Transform(grub_uint32_t *H, const grub_uint8_t *cp)
  81. {
  82. grub_uint32_t a, b, c, d, e, f, g, h, t, T1, T2, W[64];
  83. for (t = 0; t < 16; t++, cp += 4)
  84. W[t] = (cp[0] << 24) | (cp[1] << 16) | (cp[2] << 8) | cp[3];
  85. for (t = 16; t < 64; t++)
  86. W[t] = sigma1(W[t - 2]) + W[t - 7] +
  87. sigma0(W[t - 15]) + W[t - 16];
  88. a = H[0]; b = H[1]; c = H[2]; d = H[3];
  89. e = H[4]; f = H[5]; g = H[6]; h = H[7];
  90. for (t = 0; t < 64; t++) {
  91. T1 = h + SIGMA1(e) + Ch(e, f, g) + SHA256_K[t] + W[t];
  92. T2 = SIGMA0(a) + Maj(a, b, c);
  93. h = g; g = f; f = e; e = d + T1;
  94. d = c; c = b; b = a; a = T1 + T2;
  95. }
  96. H[0] += a; H[1] += b; H[2] += c; H[3] += d;
  97. H[4] += e; H[5] += f; H[6] += g; H[7] += h;
  98. }
  99. void
  100. zio_checksum_SHA256(const void *buf, grub_uint64_t size,
  101. grub_zfs_endian_t endian, zio_cksum_t *zcp)
  102. {
  103. grub_uint32_t H[8] = { 0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a,
  104. 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19 };
  105. grub_uint8_t pad[128];
  106. unsigned padsize = size & 63;
  107. unsigned i;
  108. for (i = 0; i < size - padsize; i += 64)
  109. SHA256Transform(H, (grub_uint8_t *)buf + i);
  110. for (i = 0; i < padsize; i++)
  111. pad[i] = ((grub_uint8_t *)buf)[i];
  112. for (pad[padsize++] = 0x80; (padsize & 63) != 56; padsize++)
  113. pad[padsize] = 0;
  114. for (i = 0; i < 8; i++)
  115. pad[padsize++] = (size << 3) >> (56 - 8 * i);
  116. for (i = 0; i < padsize && i <= 64; i += 64)
  117. SHA256Transform(H, pad + i);
  118. zcp->zc_word[0] = grub_cpu_to_zfs64 ((grub_uint64_t)H[0] << 32 | H[1],
  119. endian);
  120. zcp->zc_word[1] = grub_cpu_to_zfs64 ((grub_uint64_t)H[2] << 32 | H[3],
  121. endian);
  122. zcp->zc_word[2] = grub_cpu_to_zfs64 ((grub_uint64_t)H[4] << 32 | H[5],
  123. endian);
  124. zcp->zc_word[3] = grub_cpu_to_zfs64 ((grub_uint64_t)H[6] << 32 | H[7],
  125. endian);
  126. }