src/core/ngx_md5.c - nginx source code

Functions defined

Macros defined

Source code


  1. /*
  2. * An internal implementation, based on Alexander Peslyak's
  3. * public domain implementation:
  4. * http://openwall.info/wiki/people/solar/software/public-domain-source-code/md5
  5. */


  6. #include <ngx_config.h>
  7. #include <ngx_core.h>
  8. #include <ngx_md5.h>


  9. static const u_char *ngx_md5_body(ngx_md5_t *ctx, const u_char *data,
  10.     size_t size);


  11. void
  12. ngx_md5_init(ngx_md5_t *ctx)
  13. {
  14.     ctx->a = 0x67452301;
  15.     ctx->b = 0xefcdab89;
  16.     ctx->c = 0x98badcfe;
  17.     ctx->d = 0x10325476;

  18.     ctx->bytes = 0;
  19. }


  20. void
  21. ngx_md5_update(ngx_md5_t *ctx, const void *data, size_t size)
  22. {
  23.     size_t  used, free;

  24.     used = (size_t) (ctx->bytes & 0x3f);
  25.     ctx->bytes += size;

  26.     if (used) {
  27.         free = 64 - used;

  28.         if (size < free) {
  29.             ngx_memcpy(&ctx->buffer[used], data, size);
  30.             return;
  31.         }

  32.         ngx_memcpy(&ctx->buffer[used], data, free);
  33.         data = (u_char *) data + free;
  34.         size -= free;
  35.         (void) ngx_md5_body(ctx, ctx->buffer, 64);
  36.     }

  37.     if (size >= 64) {
  38.         data = ngx_md5_body(ctx, data, size & ~(size_t) 0x3f);
  39.         size &= 0x3f;
  40.     }

  41.     ngx_memcpy(ctx->buffer, data, size);
  42. }


  43. void
  44. ngx_md5_final(u_char result[16], ngx_md5_t *ctx)
  45. {
  46.     size_t  used, free;

  47.     used = (size_t) (ctx->bytes & 0x3f);

  48.     ctx->buffer[used++] = 0x80;

  49.     free = 64 - used;

  50.     if (free < 8) {
  51.         ngx_memzero(&ctx->buffer[used], free);
  52.         (void) ngx_md5_body(ctx, ctx->buffer, 64);
  53.         used = 0;
  54.         free = 64;
  55.     }

  56.     ngx_memzero(&ctx->buffer[used], free - 8);

  57.     ctx->bytes <<= 3;
  58.     ctx->buffer[56] = (u_char) ctx->bytes;
  59.     ctx->buffer[57] = (u_char) (ctx->bytes >> 8);
  60.     ctx->buffer[58] = (u_char) (ctx->bytes >> 16);
  61.     ctx->buffer[59] = (u_char) (ctx->bytes >> 24);
  62.     ctx->buffer[60] = (u_char) (ctx->bytes >> 32);
  63.     ctx->buffer[61] = (u_char) (ctx->bytes >> 40);
  64.     ctx->buffer[62] = (u_char) (ctx->bytes >> 48);
  65.     ctx->buffer[63] = (u_char) (ctx->bytes >> 56);

  66.     (void) ngx_md5_body(ctx, ctx->buffer, 64);

  67.     result[0] = (u_char) ctx->a;
  68.     result[1] = (u_char) (ctx->a >> 8);
  69.     result[2] = (u_char) (ctx->a >> 16);
  70.     result[3] = (u_char) (ctx->a >> 24);
  71.     result[4] = (u_char) ctx->b;
  72.     result[5] = (u_char) (ctx->b >> 8);
  73.     result[6] = (u_char) (ctx->b >> 16);
  74.     result[7] = (u_char) (ctx->b >> 24);
  75.     result[8] = (u_char) ctx->c;
  76.     result[9] = (u_char) (ctx->c >> 8);
  77.     result[10] = (u_char) (ctx->c >> 16);
  78.     result[11] = (u_char) (ctx->c >> 24);
  79.     result[12] = (u_char) ctx->d;
  80.     result[13] = (u_char) (ctx->d >> 8);
  81.     result[14] = (u_char) (ctx->d >> 16);
  82.     result[15] = (u_char) (ctx->d >> 24);

  83.     ngx_memzero(ctx, sizeof(*ctx));
  84. }


  85. /*
  86. * The basic MD5 functions.
  87. *
  88. * F and G are optimized compared to their RFC 1321 definitions for
  89. * architectures that lack an AND-NOT instruction, just like in
  90. * Colin Plumb's implementation.
  91. */

  92. #define F(x, y, z)  ((z) ^ ((x) & ((y) ^ (z))))
  93. #define G(x, y, z)  ((y) ^ ((z) & ((x) ^ (y))))
  94. #define H(x, y, z)  ((x) ^ (y) ^ (z))
  95. #define I(x, y, z)  ((y) ^ ((x) | ~(z)))

  96. /*
  97. * The MD5 transformation for all four rounds.
  98. */

  99. #define STEP(f, a, b, c, d, x, t, s)                                          \
  100.     (a) += f((b), (c), (d)) + (x) + (t);                                      \
  101.     (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s))));                \
  102.     (a) += (b)

  103. /*
  104. * SET() reads 4 input bytes in little-endian byte order and stores them
  105. * in a properly aligned word in host byte order.
  106. *
  107. * The check for little-endian architectures that tolerate unaligned
  108. * memory accesses is just an optimization.  Nothing will break if it
  109. * does not work.
  110. */

  111. #if (NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)

  112. #define SET(n)      (*(uint32_t *) &p[n * 4])
  113. #define GET(n)      (*(uint32_t *) &p[n * 4])

  114. #else

  115. #define SET(n)                                                                \
  116.     (block[n] =                                                               \
  117.     (uint32_t) p[n * 4] |                                                     \
  118.     ((uint32_t) p[n * 4 + 1] << 8) |                                          \
  119.     ((uint32_t) p[n * 4 + 2] << 16) |                                         \
  120.     ((uint32_t) p[n * 4 + 3] << 24))

  121. #define GET(n)      block[n]

  122. #endif


  123. /*
  124. * This processes one or more 64-byte data blocks, but does not update
  125. * the bit counters.  There are no alignment requirements.
  126. */

  127. static const u_char *
  128. ngx_md5_body(ngx_md5_t *ctx, const u_char *data, size_t size)
  129. {
  130.     uint32_t       a, b, c, d;
  131.     uint32_t       saved_a, saved_b, saved_c, saved_d;
  132.     const u_char  *p;
  133. #if !(NGX_HAVE_LITTLE_ENDIAN && NGX_HAVE_NONALIGNED)
  134.     uint32_t       block[16];
  135. #endif

  136.     p = data;

  137.     a = ctx->a;
  138.     b = ctx->b;
  139.     c = ctx->c;
  140.     d = ctx->d;

  141.     do {
  142.         saved_a = a;
  143.         saved_b = b;
  144.         saved_c = c;
  145.         saved_d = d;

  146.         /* Round 1 */

  147.         STEP(F, a, b, c, d, SET(0),  0xd76aa478, 7);
  148.         STEP(F, d, a, b, c, SET(1),  0xe8c7b756, 12);
  149.         STEP(F, c, d, a, b, SET(2),  0x242070db, 17);
  150.         STEP(F, b, c, d, a, SET(3),  0xc1bdceee, 22);
  151.         STEP(F, a, b, c, d, SET(4),  0xf57c0faf, 7);
  152.         STEP(F, d, a, b, c, SET(5),  0x4787c62a, 12);
  153.         STEP(F, c, d, a, b, SET(6),  0xa8304613, 17);
  154.         STEP(F, b, c, d, a, SET(7),  0xfd469501, 22);
  155.         STEP(F, a, b, c, d, SET(8),  0x698098d8, 7);
  156.         STEP(F, d, a, b, c, SET(9),  0x8b44f7af, 12);
  157.         STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17);
  158.         STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22);
  159.         STEP(F, a, b, c, d, SET(12), 0x6b901122, 7);
  160.         STEP(F, d, a, b, c, SET(13), 0xfd987193, 12);
  161.         STEP(F, c, d, a, b, SET(14), 0xa679438e, 17);
  162.         STEP(F, b, c, d, a, SET(15), 0x49b40821, 22);

  163.         /* Round 2 */

  164.         STEP(G, a, b, c, d, GET(1),  0xf61e2562, 5);
  165.         STEP(G, d, a, b, c, GET(6),  0xc040b340, 9);
  166.         STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14);
  167.         STEP(G, b, c, d, a, GET(0),  0xe9b6c7aa, 20);
  168.         STEP(G, a, b, c, d, GET(5),  0xd62f105d, 5);
  169.         STEP(G, d, a, b, c, GET(10), 0x02441453, 9);
  170.         STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14);
  171.         STEP(G, b, c, d, a, GET(4),  0xe7d3fbc8, 20);
  172.         STEP(G, a, b, c, d, GET(9),  0x21e1cde6, 5);
  173.         STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9);
  174.         STEP(G, c, d, a, b, GET(3),  0xf4d50d87, 14);
  175.         STEP(G, b, c, d, a, GET(8),  0x455a14ed, 20);
  176.         STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5);
  177.         STEP(G, d, a, b, c, GET(2),  0xfcefa3f8, 9);
  178.         STEP(G, c, d, a, b, GET(7),  0x676f02d9, 14);
  179.         STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20);

  180.         /* Round 3 */

  181.         STEP(H, a, b, c, d, GET(5),  0xfffa3942, 4);
  182.         STEP(H, d, a, b, c, GET(8),  0x8771f681, 11);
  183.         STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16);
  184.         STEP(H, b, c, d, a, GET(14), 0xfde5380c, 23);
  185.         STEP(H, a, b, c, d, GET(1),  0xa4beea44, 4);
  186.         STEP(H, d, a, b, c, GET(4),  0x4bdecfa9, 11);
  187.         STEP(H, c, d, a, b, GET(7),  0xf6bb4b60, 16);
  188.         STEP(H, b, c, d, a, GET(10), 0xbebfbc70, 23);
  189.         STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4);
  190.         STEP(H, d, a, b, c, GET(0),  0xeaa127fa, 11);
  191.         STEP(H, c, d, a, b, GET(3),  0xd4ef3085, 16);
  192.         STEP(H, b, c, d, a, GET(6),  0x04881d05, 23);
  193.         STEP(H, a, b, c, d, GET(9),  0xd9d4d039, 4);
  194.         STEP(H, d, a, b, c, GET(12), 0xe6db99e5, 11);
  195.         STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16);
  196.         STEP(H, b, c, d, a, GET(2),  0xc4ac5665, 23);

  197.         /* Round 4 */

  198.         STEP(I, a, b, c, d, GET(0),  0xf4292244, 6);
  199.         STEP(I, d, a, b, c, GET(7),  0x432aff97, 10);
  200.         STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15);
  201.         STEP(I, b, c, d, a, GET(5),  0xfc93a039, 21);
  202.         STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6);
  203.         STEP(I, d, a, b, c, GET(3),  0x8f0ccc92, 10);
  204.         STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15);
  205.         STEP(I, b, c, d, a, GET(1),  0x85845dd1, 21);
  206.         STEP(I, a, b, c, d, GET(8),  0x6fa87e4f, 6);
  207.         STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10);
  208.         STEP(I, c, d, a, b, GET(6),  0xa3014314, 15);
  209.         STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21);
  210.         STEP(I, a, b, c, d, GET(4),  0xf7537e82, 6);
  211.         STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10);
  212.         STEP(I, c, d, a, b, GET(2),  0x2ad7d2bb, 15);
  213.         STEP(I, b, c, d, a, GET(9),  0xeb86d391, 21);

  214.         a += saved_a;
  215.         b += saved_b;
  216.         c += saved_c;
  217.         d += saved_d;

  218.         p += 64;

  219.     } while (size -= 64);

  220.     ctx->a = a;
  221.     ctx->b = b;
  222.     ctx->c = c;
  223.     ctx->d = d;

  224.     return p;
  225. }