sha1.c 4.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140
  1. // SPDX-License-Identifier: GPL-2.0
  2. /*
  3. * SHA1 routine optimized to do word accesses rather than byte accesses,
  4. * and to avoid unnecessary copies into the context array.
  5. *
  6. * This was based on the git SHA1 implementation.
  7. */
  8. #include <linux/kernel.h>
  9. #include <linux/export.h>
  10. #include <linux/module.h>
  11. #include <linux/bitops.h>
  12. #include <linux/string.h>
  13. #include <crypto/sha1.h>
  14. #include <asm/unaligned.h>
  15. /*
  16. * If you have 32 registers or more, the compiler can (and should)
  17. * try to change the array[] accesses into registers. However, on
  18. * machines with less than ~25 registers, that won't really work,
  19. * and at least gcc will make an unholy mess of it.
  20. *
  21. * So to avoid that mess which just slows things down, we force
  22. * the stores to memory to actually happen (we might be better off
  23. * with a 'W(t)=(val);asm("":"+m" (W(t))' there instead, as
  24. * suggested by Artur Skawina - that will also make gcc unable to
  25. * try to do the silly "optimize away loads" part because it won't
  26. * see what the value will be).
  27. *
  28. * Ben Herrenschmidt reports that on PPC, the C version comes close
  29. * to the optimized asm with this (ie on PPC you don't want that
  30. * 'volatile', since there are lots of registers).
  31. *
  32. * On ARM we get the best code generation by forcing a full memory barrier
  33. * between each SHA_ROUND, otherwise gcc happily get wild with spilling and
  34. * the stack frame size simply explode and performance goes down the drain.
  35. */
  36. #ifdef CONFIG_X86
  37. #define setW(x, val) (*(volatile __u32 *)&W(x) = (val))
  38. #elif defined(CONFIG_ARM)
  39. #define setW(x, val) do { W(x) = (val); __asm__("":::"memory"); } while (0)
  40. #else
  41. #define setW(x, val) (W(x) = (val))
  42. #endif
  43. /* This "rolls" over the 512-bit array */
  44. #define W(x) (array[(x)&15])
  45. /*
  46. * Where do we get the source from? The first 16 iterations get it from
  47. * the input data, the next mix it from the 512-bit array.
  48. */
  49. #define SHA_SRC(t) get_unaligned_be32((__u32 *)data + t)
  50. #define SHA_MIX(t) rol32(W(t+13) ^ W(t+8) ^ W(t+2) ^ W(t), 1)
  51. #define SHA_ROUND(t, input, fn, constant, A, B, C, D, E) do { \
  52. __u32 TEMP = input(t); setW(t, TEMP); \
  53. E += TEMP + rol32(A,5) + (fn) + (constant); \
  54. B = ror32(B, 2); \
  55. TEMP = E; E = D; D = C; C = B; B = A; A = TEMP; } while (0)
  56. #define T_0_15(t, A, B, C, D, E) SHA_ROUND(t, SHA_SRC, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E )
  57. #define T_16_19(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (((C^D)&B)^D) , 0x5a827999, A, B, C, D, E )
  58. #define T_20_39(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0x6ed9eba1, A, B, C, D, E )
  59. #define T_40_59(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, ((B&C)+(D&(B^C))) , 0x8f1bbcdc, A, B, C, D, E )
  60. #define T_60_79(t, A, B, C, D, E) SHA_ROUND(t, SHA_MIX, (B^C^D) , 0xca62c1d6, A, B, C, D, E )
  61. /**
  62. * sha1_transform - single block SHA1 transform (deprecated)
  63. *
  64. * @digest: 160 bit digest to update
  65. * @data: 512 bits of data to hash
  66. * @array: 16 words of workspace (see note)
  67. *
  68. * This function executes SHA-1's internal compression function. It updates the
  69. * 160-bit internal state (@digest) with a single 512-bit data block (@data).
  70. *
  71. * Don't use this function. SHA-1 is no longer considered secure. And even if
  72. * you do have to use SHA-1, this isn't the correct way to hash something with
  73. * SHA-1 as this doesn't handle padding and finalization.
  74. *
  75. * Note: If the hash is security sensitive, the caller should be sure
  76. * to clear the workspace. This is left to the caller to avoid
  77. * unnecessary clears between chained hashing operations.
  78. */
  79. void sha1_transform(__u32 *digest, const char *data, __u32 *array)
  80. {
  81. __u32 A, B, C, D, E;
  82. unsigned int i = 0;
  83. A = digest[0];
  84. B = digest[1];
  85. C = digest[2];
  86. D = digest[3];
  87. E = digest[4];
  88. /* Round 1 - iterations 0-16 take their input from 'data' */
  89. for (; i < 16; ++i)
  90. T_0_15(i, A, B, C, D, E);
  91. /* Round 1 - tail. Input from 512-bit mixing array */
  92. for (; i < 20; ++i)
  93. T_16_19(i, A, B, C, D, E);
  94. /* Round 2 */
  95. for (; i < 40; ++i)
  96. T_20_39(i, A, B, C, D, E);
  97. /* Round 3 */
  98. for (; i < 60; ++i)
  99. T_40_59(i, A, B, C, D, E);
  100. /* Round 4 */
  101. for (; i < 80; ++i)
  102. T_60_79(i, A, B, C, D, E);
  103. digest[0] += A;
  104. digest[1] += B;
  105. digest[2] += C;
  106. digest[3] += D;
  107. digest[4] += E;
  108. }
  109. EXPORT_SYMBOL(sha1_transform);
  110. /**
  111. * sha1_init - initialize the vectors for a SHA1 digest
  112. * @buf: vector to initialize
  113. */
  114. void sha1_init(__u32 *buf)
  115. {
  116. buf[0] = 0x67452301;
  117. buf[1] = 0xefcdab89;
  118. buf[2] = 0x98badcfe;
  119. buf[3] = 0x10325476;
  120. buf[4] = 0xc3d2e1f0;
  121. }
  122. EXPORT_SYMBOL(sha1_init);
  123. MODULE_LICENSE("GPL");