sha1.c 6.3 KB

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