You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sha256.c 7.6KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255
  1. /*
  2. * Copyright (C) 2012 Michael Brown <mbrown@fensystems.co.uk>.
  3. *
  4. * This program is free software; you can redistribute it and/or
  5. * modify it under the terms of the GNU General Public License as
  6. * published by the Free Software Foundation; either version 2 of the
  7. * License, or any later version.
  8. *
  9. * This program is distributed in the hope that it will be useful, but
  10. * WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  12. * General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, write to the Free Software
  16. * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
  17. */
  18. FILE_LICENCE ( GPL2_OR_LATER );
  19. /** @file
  20. *
  21. * SHA-256 algorithm
  22. *
  23. */
  24. #include <stdint.h>
  25. #include <string.h>
  26. #include <byteswap.h>
  27. #include <assert.h>
  28. #include <ipxe/rotate.h>
  29. #include <ipxe/crypto.h>
  30. #include <ipxe/asn1.h>
  31. #include <ipxe/sha256.h>
  32. /** SHA-256 variables */
  33. struct sha256_variables {
  34. /* This layout matches that of struct sha256_digest_data,
  35. * allowing for efficient endianness-conversion,
  36. */
  37. uint32_t a;
  38. uint32_t b;
  39. uint32_t c;
  40. uint32_t d;
  41. uint32_t e;
  42. uint32_t f;
  43. uint32_t g;
  44. uint32_t h;
  45. uint32_t w[64];
  46. } __attribute__ (( packed ));
  47. /** SHA-256 constants */
  48. static const uint32_t k[64] = {
  49. 0x428a2f98, 0x71374491, 0xb5c0fbcf, 0xe9b5dba5, 0x3956c25b, 0x59f111f1,
  50. 0x923f82a4, 0xab1c5ed5, 0xd807aa98, 0x12835b01, 0x243185be, 0x550c7dc3,
  51. 0x72be5d74, 0x80deb1fe, 0x9bdc06a7, 0xc19bf174, 0xe49b69c1, 0xefbe4786,
  52. 0x0fc19dc6, 0x240ca1cc, 0x2de92c6f, 0x4a7484aa, 0x5cb0a9dc, 0x76f988da,
  53. 0x983e5152, 0xa831c66d, 0xb00327c8, 0xbf597fc7, 0xc6e00bf3, 0xd5a79147,
  54. 0x06ca6351, 0x14292967, 0x27b70a85, 0x2e1b2138, 0x4d2c6dfc, 0x53380d13,
  55. 0x650a7354, 0x766a0abb, 0x81c2c92e, 0x92722c85, 0xa2bfe8a1, 0xa81a664b,
  56. 0xc24b8b70, 0xc76c51a3, 0xd192e819, 0xd6990624, 0xf40e3585, 0x106aa070,
  57. 0x19a4c116, 0x1e376c08, 0x2748774c, 0x34b0bcb5, 0x391c0cb3, 0x4ed8aa4a,
  58. 0x5b9cca4f, 0x682e6ff3, 0x748f82ee, 0x78a5636f, 0x84c87814, 0x8cc70208,
  59. 0x90befffa, 0xa4506ceb, 0xbef9a3f7, 0xc67178f2
  60. };
  61. /**
  62. * Initialise SHA-256 algorithm
  63. *
  64. * @v ctx SHA-256 context
  65. */
  66. static void sha256_init ( void *ctx ) {
  67. struct sha256_context *context = ctx;
  68. context->ddd.dd.digest.h[0] = cpu_to_be32 ( 0x6a09e667 );
  69. context->ddd.dd.digest.h[1] = cpu_to_be32 ( 0xbb67ae85 );
  70. context->ddd.dd.digest.h[2] = cpu_to_be32 ( 0x3c6ef372 );
  71. context->ddd.dd.digest.h[3] = cpu_to_be32 ( 0xa54ff53a );
  72. context->ddd.dd.digest.h[4] = cpu_to_be32 ( 0x510e527f );
  73. context->ddd.dd.digest.h[5] = cpu_to_be32 ( 0x9b05688c );
  74. context->ddd.dd.digest.h[6] = cpu_to_be32 ( 0x1f83d9ab );
  75. context->ddd.dd.digest.h[7] = cpu_to_be32 ( 0x5be0cd19 );
  76. context->len = 0;
  77. }
  78. /**
  79. * Calculate SHA-256 digest of accumulated data
  80. *
  81. * @v context SHA-256 context
  82. */
  83. static void sha256_digest ( struct sha256_context *context ) {
  84. union {
  85. union sha256_digest_data_dwords ddd;
  86. struct sha256_variables v;
  87. } u;
  88. uint32_t *a = &u.v.a;
  89. uint32_t *b = &u.v.b;
  90. uint32_t *c = &u.v.c;
  91. uint32_t *d = &u.v.d;
  92. uint32_t *e = &u.v.e;
  93. uint32_t *f = &u.v.f;
  94. uint32_t *g = &u.v.g;
  95. uint32_t *h = &u.v.h;
  96. uint32_t *w = u.v.w;
  97. uint32_t s0;
  98. uint32_t s1;
  99. uint32_t maj;
  100. uint32_t t1;
  101. uint32_t t2;
  102. uint32_t ch;
  103. unsigned int i;
  104. /* Sanity checks */
  105. assert ( ( context->len % sizeof ( context->ddd.dd.data ) ) == 0 );
  106. linker_assert ( &u.ddd.dd.digest.h[0] == a, sha256_bad_layout );
  107. linker_assert ( &u.ddd.dd.digest.h[1] == b, sha256_bad_layout );
  108. linker_assert ( &u.ddd.dd.digest.h[2] == c, sha256_bad_layout );
  109. linker_assert ( &u.ddd.dd.digest.h[3] == d, sha256_bad_layout );
  110. linker_assert ( &u.ddd.dd.digest.h[4] == e, sha256_bad_layout );
  111. linker_assert ( &u.ddd.dd.digest.h[5] == f, sha256_bad_layout );
  112. linker_assert ( &u.ddd.dd.digest.h[6] == g, sha256_bad_layout );
  113. linker_assert ( &u.ddd.dd.digest.h[7] == h, sha256_bad_layout );
  114. linker_assert ( &u.ddd.dd.data.dword[0] == w, sha256_bad_layout );
  115. DBGC ( context, "SHA256 digesting:\n" );
  116. DBGC_HDA ( context, 0, &context->ddd.dd.digest,
  117. sizeof ( context->ddd.dd.digest ) );
  118. DBGC_HDA ( context, context->len, &context->ddd.dd.data,
  119. sizeof ( context->ddd.dd.data ) );
  120. /* Convert h[0..7] to host-endian, and initialise a, b, c, d,
  121. * e, f, g, h, and w[0..15]
  122. */
  123. for ( i = 0 ; i < ( sizeof ( u.ddd.dword ) /
  124. sizeof ( u.ddd.dword[0] ) ) ; i++ ) {
  125. be32_to_cpus ( &context->ddd.dword[i] );
  126. u.ddd.dword[i] = context->ddd.dword[i];
  127. }
  128. /* Initialise w[16..63] */
  129. for ( i = 16 ; i < 64 ; i++ ) {
  130. s0 = ( ror32 ( w[i-15], 7 ) ^ ror32 ( w[i-15], 18 ) ^
  131. ( w[i-15] >> 3 ) );
  132. s1 = ( ror32 ( w[i-2], 17 ) ^ ror32 ( w[i-2], 19 ) ^
  133. ( w[i-2] >> 10 ) );
  134. w[i] = ( w[i-16] + s0 + w[i-7] + s1 );
  135. }
  136. /* Main loop */
  137. for ( i = 0 ; i < 64 ; i++ ) {
  138. s0 = ( ror32 ( *a, 2 ) ^ ror32 ( *a, 13 ) ^ ror32 ( *a, 22 ) );
  139. maj = ( ( *a & *b ) ^ ( *a & *c ) ^ ( *b & *c ) );
  140. t2 = ( s0 + maj );
  141. s1 = ( ror32 ( *e, 6 ) ^ ror32 ( *e, 11 ) ^ ror32 ( *e, 25 ) );
  142. ch = ( ( *e & *f ) ^ ( (~*e) & *g ) );
  143. t1 = ( *h + s1 + ch + k[i] + w[i] );
  144. *h = *g;
  145. *g = *f;
  146. *f = *e;
  147. *e = ( *d + t1 );
  148. *d = *c;
  149. *c = *b;
  150. *b = *a;
  151. *a = ( t1 + t2 );
  152. DBGC2 ( context, "%2d : %08x %08x %08x %08x %08x %08x %08x "
  153. "%08x\n", i, *a, *b, *c, *d, *e, *f, *g, *h );
  154. }
  155. /* Add chunk to hash and convert back to big-endian */
  156. for ( i = 0 ; i < 8 ; i++ ) {
  157. context->ddd.dd.digest.h[i] =
  158. cpu_to_be32 ( context->ddd.dd.digest.h[i] +
  159. u.ddd.dd.digest.h[i] );
  160. }
  161. DBGC ( context, "SHA256 digested:\n" );
  162. DBGC_HDA ( context, 0, &context->ddd.dd.digest,
  163. sizeof ( context->ddd.dd.digest ) );
  164. }
  165. /**
  166. * Accumulate data with SHA-256 algorithm
  167. *
  168. * @v ctx SHA-256 context
  169. * @v data Data
  170. * @v len Length of data
  171. */
  172. static void sha256_update ( void *ctx, const void *data, size_t len ) {
  173. struct sha256_context *context = ctx;
  174. const uint8_t *byte = data;
  175. size_t offset;
  176. /* Accumulate data a byte at a time, performing the digest
  177. * whenever we fill the data buffer
  178. */
  179. while ( len-- ) {
  180. offset = ( context->len % sizeof ( context->ddd.dd.data ) );
  181. context->ddd.dd.data.byte[offset] = *(byte++);
  182. context->len++;
  183. if ( ( context->len % sizeof ( context->ddd.dd.data ) ) == 0 )
  184. sha256_digest ( context );
  185. }
  186. }
  187. /**
  188. * Generate SHA-256 digest
  189. *
  190. * @v ctx SHA-256 context
  191. * @v out Output buffer
  192. */
  193. static void sha256_final ( void *ctx, void *out ) {
  194. struct sha256_context *context = ctx;
  195. uint64_t len_bits;
  196. uint8_t pad;
  197. /* Record length before pre-processing */
  198. len_bits = cpu_to_be64 ( ( ( uint64_t ) context->len ) * 8 );
  199. /* Pad with a single "1" bit followed by as many "0" bits as required */
  200. pad = 0x80;
  201. do {
  202. sha256_update ( ctx, &pad, sizeof ( pad ) );
  203. pad = 0x00;
  204. } while ( ( context->len % sizeof ( context->ddd.dd.data ) ) !=
  205. offsetof ( typeof ( context->ddd.dd.data ), final.len ) );
  206. /* Append length (in bits) */
  207. sha256_update ( ctx, &len_bits, sizeof ( len_bits ) );
  208. assert ( ( context->len % sizeof ( context->ddd.dd.data ) ) == 0 );
  209. /* Copy out final digest */
  210. memcpy ( out, &context->ddd.dd.digest,
  211. sizeof ( context->ddd.dd.digest ) );
  212. }
  213. /** SHA-256 algorithm */
  214. struct digest_algorithm sha256_algorithm = {
  215. .name = "sha256",
  216. .ctxsize = sizeof ( struct sha256_context ),
  217. .blocksize = sizeof ( union sha256_block ),
  218. .digestsize = sizeof ( struct sha256_digest ),
  219. .init = sha256_init,
  220. .update = sha256_update,
  221. .final = sha256_final,
  222. };
  223. /** "sha256" object identifier */
  224. static uint8_t oid_sha256[] = { ASN1_OID_SHA256 };
  225. /** "sha256" OID-identified algorithm */
  226. struct asn1_algorithm oid_sha256_algorithm __asn1_algorithm = {
  227. .name = "sha256",
  228. .digest = &sha256_algorithm,
  229. .oid = ASN1_OID_CURSOR ( oid_sha256 ),
  230. };