~ilya-yanok/ubuntu/precise/grub2/fix-for-948716

« back to all changes in this revision

Viewing changes to grub-core/lib/libgcrypt-grub/cipher/md5.c

  • Committer: Bazaar Package Importer
  • Author(s): Colin Watson
  • Date: 2011-01-17 13:43:06 UTC
  • mto: (17.6.26 experimental)
  • mto: This revision was merged to the branch mainline in revision 102.
  • Revision ID: james.westby@ubuntu.com-20110117134306-fy7qewn4s3qdx2pl
Tags: upstream-1.99~rc1
ImportĀ upstreamĀ versionĀ 1.99~rc1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/* This file was automatically imported with 
 
2
   import_gcry.py. Please don't modify it */
 
3
/* md5.c - MD5 Message-Digest Algorithm
 
4
 * Copyright (C) 1995,1996,1998,1999,2001,2002,
 
5
 *               2003  Free Software Foundation, Inc.
 
6
 *
 
7
 * This file is part of Libgcrypt.
 
8
 *
 
9
 * Libgcrypt is free software; you can redistribute it and/or modify
 
10
 * it under the terms of the GNU Lesser General Public License as
 
11
 * published by the Free Software Foundation; either version 2.1 of
 
12
 * the License, or (at your option) any later version.
 
13
 *
 
14
 * Libgcrypt is distributed in the hope that it will be useful,
 
15
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 
16
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
17
 * GNU Lesser General Public License for more details.
 
18
 *
 
19
 * You should have received a copy of the GNU Lesser General Public
 
20
 * License along with this program; if not, write to the Free Software
 
21
 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
 
22
 *
 
23
 * According to the definition of MD5 in RFC 1321 from April 1992.
 
24
 * NOTE: This is *not* the same file as the one from glibc.
 
25
 * Written by Ulrich Drepper <drepper@gnu.ai.mit.edu>, 1995. 
 
26
 * heavily modified for GnuPG by Werner Koch <wk@gnupg.org> 
 
27
 */
 
28
 
 
29
/* Test values:
 
30
 * ""                  D4 1D 8C D9 8F 00 B2 04  E9 80 09 98 EC F8 42 7E
 
31
 * "a"                 0C C1 75 B9 C0 F1 B6 A8  31 C3 99 E2 69 77 26 61
 
32
 * "abc                90 01 50 98 3C D2 4F B0  D6 96 3F 7D 28 E1 7F 72
 
33
 * "message digest"    F9 6B 69 7D 7C B7 93 8D  52 5A 2F 31 AA F1 61 D0
 
34
 */
 
35
 
 
36
 
 
37
#include "g10lib.h"
 
38
#include "memory.h"
 
39
#include "cipher.h"
 
40
 
 
41
#include "bithelp.h"
 
42
 
 
43
 
 
44
typedef struct {
 
45
    u32 A,B,C,D;          /* chaining variables */
 
46
    u32  nblocks;
 
47
    byte buf[64];
 
48
    int  count;
 
49
} MD5_CONTEXT;
 
50
 
 
51
 
 
52
static void
 
53
md5_init( void *context )
 
54
{
 
55
  MD5_CONTEXT *ctx = context;
 
56
 
 
57
  ctx->A = 0x67452301;
 
58
  ctx->B = 0xefcdab89;
 
59
  ctx->C = 0x98badcfe;
 
60
  ctx->D = 0x10325476;
 
61
 
 
62
  ctx->nblocks = 0;
 
63
  ctx->count = 0;
 
64
}
 
65
 
 
66
 
 
67
/* These are the four functions used in the four steps of the MD5 algorithm
 
68
   and defined in the RFC 1321.  The first function is a little bit optimized
 
69
   (as found in Colin Plumbs public domain implementation).  */
 
70
/* #define FF(b, c, d) ((b & c) | (~b & d)) */
 
71
#define FF(b, c, d) (d ^ (b & (c ^ d)))
 
72
#define FG(b, c, d) FF (d, b, c)
 
73
#define FH(b, c, d) (b ^ c ^ d)
 
74
#define FI(b, c, d) (c ^ (b | ~d))
 
75
 
 
76
 
 
77
/****************
 
78
 * transform n*64 bytes
 
79
 */
 
80
static void
 
81
transform ( MD5_CONTEXT *ctx, const unsigned char *data )
 
82
{
 
83
  u32 correct_words[16];
 
84
  register u32 A = ctx->A;
 
85
  register u32 B = ctx->B;
 
86
  register u32 C = ctx->C;
 
87
  register u32 D = ctx->D;
 
88
  u32 *cwp = correct_words;
 
89
    
 
90
#ifdef WORDS_BIGENDIAN
 
91
  { 
 
92
    int i;
 
93
    byte *p2, *p1;
 
94
    for(i=0, p1=data, p2=(byte*)correct_words; i < 16; i++, p2 += 4 )
 
95
      {
 
96
        p2[3] = *p1++;
 
97
        p2[2] = *p1++;
 
98
        p2[1] = *p1++;
 
99
        p2[0] = *p1++;
 
100
      }
 
101
  }
 
102
#else
 
103
  memcpy( correct_words, data, 64 );
 
104
#endif
 
105
 
 
106
 
 
107
#define OP(a, b, c, d, s, T) \
 
108
  do                                       \
 
109
    {                                      \
 
110
      a += FF (b, c, d) + (*cwp++) + T;    \
 
111
      a = rol(a, s);                       \
 
112
      a += b;                              \
 
113
    }                                      \
 
114
  while (0)
 
115
 
 
116
  /* Before we start, one word about the strange constants.
 
117
     They are defined in RFC 1321 as
 
118
 
 
119
     T[i] = (int) (4294967296.0 * fabs (sin (i))), i=1..64
 
120
  */
 
121
 
 
122
  /* Round 1.  */
 
123
  OP (A, B, C, D,  7, 0xd76aa478);
 
124
  OP (D, A, B, C, 12, 0xe8c7b756);
 
125
  OP (C, D, A, B, 17, 0x242070db);
 
126
  OP (B, C, D, A, 22, 0xc1bdceee);
 
127
  OP (A, B, C, D,  7, 0xf57c0faf);
 
128
  OP (D, A, B, C, 12, 0x4787c62a);
 
129
  OP (C, D, A, B, 17, 0xa8304613);
 
130
  OP (B, C, D, A, 22, 0xfd469501);
 
131
  OP (A, B, C, D,  7, 0x698098d8);
 
132
  OP (D, A, B, C, 12, 0x8b44f7af);
 
133
  OP (C, D, A, B, 17, 0xffff5bb1);
 
134
  OP (B, C, D, A, 22, 0x895cd7be);
 
135
  OP (A, B, C, D,  7, 0x6b901122);
 
136
  OP (D, A, B, C, 12, 0xfd987193);
 
137
  OP (C, D, A, B, 17, 0xa679438e);
 
138
  OP (B, C, D, A, 22, 0x49b40821);
 
139
 
 
140
#undef OP
 
141
#define OP(f, a, b, c, d, k, s, T)  \
 
142
    do                                                                \
 
143
      {                                                               \
 
144
        a += f (b, c, d) + correct_words[k] + T;                      \
 
145
        a = rol(a, s);                                                \
 
146
        a += b;                                                       \
 
147
      }                                                               \
 
148
    while (0)
 
149
 
 
150
  /* Round 2.  */
 
151
  OP (FG, A, B, C, D,  1,  5, 0xf61e2562);
 
152
  OP (FG, D, A, B, C,  6,  9, 0xc040b340);
 
153
  OP (FG, C, D, A, B, 11, 14, 0x265e5a51);
 
154
  OP (FG, B, C, D, A,  0, 20, 0xe9b6c7aa);
 
155
  OP (FG, A, B, C, D,  5,  5, 0xd62f105d);
 
156
  OP (FG, D, A, B, C, 10,  9, 0x02441453);
 
157
  OP (FG, C, D, A, B, 15, 14, 0xd8a1e681);
 
158
  OP (FG, B, C, D, A,  4, 20, 0xe7d3fbc8);
 
159
  OP (FG, A, B, C, D,  9,  5, 0x21e1cde6);
 
160
  OP (FG, D, A, B, C, 14,  9, 0xc33707d6);
 
161
  OP (FG, C, D, A, B,  3, 14, 0xf4d50d87);
 
162
  OP (FG, B, C, D, A,  8, 20, 0x455a14ed);
 
163
  OP (FG, A, B, C, D, 13,  5, 0xa9e3e905);
 
164
  OP (FG, D, A, B, C,  2,  9, 0xfcefa3f8);
 
165
  OP (FG, C, D, A, B,  7, 14, 0x676f02d9);
 
166
  OP (FG, B, C, D, A, 12, 20, 0x8d2a4c8a);
 
167
 
 
168
  /* Round 3.  */
 
169
  OP (FH, A, B, C, D,  5,  4, 0xfffa3942);
 
170
  OP (FH, D, A, B, C,  8, 11, 0x8771f681);
 
171
  OP (FH, C, D, A, B, 11, 16, 0x6d9d6122);
 
172
  OP (FH, B, C, D, A, 14, 23, 0xfde5380c);
 
173
  OP (FH, A, B, C, D,  1,  4, 0xa4beea44);
 
174
  OP (FH, D, A, B, C,  4, 11, 0x4bdecfa9);
 
175
  OP (FH, C, D, A, B,  7, 16, 0xf6bb4b60);
 
176
  OP (FH, B, C, D, A, 10, 23, 0xbebfbc70);
 
177
  OP (FH, A, B, C, D, 13,  4, 0x289b7ec6);
 
178
  OP (FH, D, A, B, C,  0, 11, 0xeaa127fa);
 
179
  OP (FH, C, D, A, B,  3, 16, 0xd4ef3085);
 
180
  OP (FH, B, C, D, A,  6, 23, 0x04881d05);
 
181
  OP (FH, A, B, C, D,  9,  4, 0xd9d4d039);
 
182
  OP (FH, D, A, B, C, 12, 11, 0xe6db99e5);
 
183
  OP (FH, C, D, A, B, 15, 16, 0x1fa27cf8);
 
184
  OP (FH, B, C, D, A,  2, 23, 0xc4ac5665);
 
185
 
 
186
  /* Round 4.  */
 
187
  OP (FI, A, B, C, D,  0,  6, 0xf4292244);
 
188
  OP (FI, D, A, B, C,  7, 10, 0x432aff97);
 
189
  OP (FI, C, D, A, B, 14, 15, 0xab9423a7);
 
190
  OP (FI, B, C, D, A,  5, 21, 0xfc93a039);
 
191
  OP (FI, A, B, C, D, 12,  6, 0x655b59c3);
 
192
  OP (FI, D, A, B, C,  3, 10, 0x8f0ccc92);
 
193
  OP (FI, C, D, A, B, 10, 15, 0xffeff47d);
 
194
  OP (FI, B, C, D, A,  1, 21, 0x85845dd1);
 
195
  OP (FI, A, B, C, D,  8,  6, 0x6fa87e4f);
 
196
  OP (FI, D, A, B, C, 15, 10, 0xfe2ce6e0);
 
197
  OP (FI, C, D, A, B,  6, 15, 0xa3014314);
 
198
  OP (FI, B, C, D, A, 13, 21, 0x4e0811a1);
 
199
  OP (FI, A, B, C, D,  4,  6, 0xf7537e82);
 
200
  OP (FI, D, A, B, C, 11, 10, 0xbd3af235);
 
201
  OP (FI, C, D, A, B,  2, 15, 0x2ad7d2bb);
 
202
  OP (FI, B, C, D, A,  9, 21, 0xeb86d391);
 
203
 
 
204
  /* Put checksum in context given as argument.  */
 
205
  ctx->A += A;
 
206
  ctx->B += B;
 
207
  ctx->C += C;
 
208
  ctx->D += D;
 
209
}
 
210
 
 
211
 
 
212
 
 
213
/* The routine updates the message-digest context to
 
214
 * account for the presence of each of the characters inBuf[0..inLen-1]
 
215
 * in the message whose digest is being computed.
 
216
 */
 
217
static void
 
218
md5_write( void *context, const void *inbuf_arg , size_t inlen)
 
219
{
 
220
  const unsigned char *inbuf = inbuf_arg;
 
221
  MD5_CONTEXT *hd = context;
 
222
  
 
223
  if( hd->count == 64 )  /* flush the buffer */
 
224
    {
 
225
      transform( hd, hd->buf );
 
226
      _gcry_burn_stack (80+6*sizeof(void*));
 
227
      hd->count = 0;
 
228
      hd->nblocks++;
 
229
    }
 
230
  if( !inbuf )
 
231
    return;
 
232
 
 
233
  if( hd->count )
 
234
    {
 
235
      for( ; inlen && hd->count < 64; inlen-- )
 
236
        hd->buf[hd->count++] = *inbuf++;
 
237
      md5_write( hd, NULL, 0 );
 
238
      if( !inlen )
 
239
        return;
 
240
    }
 
241
  _gcry_burn_stack (80+6*sizeof(void*));
 
242
 
 
243
  while( inlen >= 64 ) 
 
244
    {
 
245
      transform( hd, inbuf );
 
246
      hd->count = 0;
 
247
      hd->nblocks++;
 
248
      inlen -= 64;
 
249
      inbuf += 64;
 
250
    }
 
251
  for( ; inlen && hd->count < 64; inlen-- )
 
252
    hd->buf[hd->count++] = *inbuf++;
 
253
 
 
254
}
 
255
 
 
256
 
 
257
 
 
258
/* The routine final terminates the message-digest computation and
 
259
 * ends with the desired message digest in mdContext->digest[0...15].
 
260
 * The handle is prepared for a new MD5 cycle.
 
261
 * Returns 16 bytes representing the digest.
 
262
 */
 
263
 
 
264
static void
 
265
md5_final( void *context)
 
266
{
 
267
  MD5_CONTEXT *hd = context;
 
268
  u32 t, msb, lsb;
 
269
  byte *p;
 
270
  
 
271
  md5_write(hd, NULL, 0); /* flush */;
 
272
 
 
273
  t = hd->nblocks;
 
274
  /* multiply by 64 to make a byte count */
 
275
  lsb = t << 6;
 
276
  msb = t >> 26;
 
277
  /* add the count */
 
278
  t = lsb;
 
279
  if( (lsb += hd->count) < t )
 
280
    msb++;
 
281
  /* multiply by 8 to make a bit count */
 
282
  t = lsb;
 
283
  lsb <<= 3;
 
284
  msb <<= 3;
 
285
  msb |= t >> 29;
 
286
 
 
287
  if( hd->count < 56 )  /* enough room */
 
288
    {
 
289
      hd->buf[hd->count++] = 0x80; /* pad */
 
290
      while( hd->count < 56 )
 
291
        hd->buf[hd->count++] = 0;  /* pad */
 
292
    }
 
293
  else  /* need one extra block */
 
294
    {
 
295
      hd->buf[hd->count++] = 0x80; /* pad character */
 
296
      while( hd->count < 64 )
 
297
        hd->buf[hd->count++] = 0;
 
298
      md5_write(hd, NULL, 0);  /* flush */;
 
299
      memset(hd->buf, 0, 56 ); /* fill next block with zeroes */
 
300
    }
 
301
  /* append the 64 bit count */
 
302
  hd->buf[56] = lsb        ;
 
303
  hd->buf[57] = lsb >>  8;
 
304
  hd->buf[58] = lsb >> 16;
 
305
  hd->buf[59] = lsb >> 24;
 
306
  hd->buf[60] = msb        ;
 
307
  hd->buf[61] = msb >>  8;
 
308
  hd->buf[62] = msb >> 16;
 
309
  hd->buf[63] = msb >> 24;
 
310
  transform( hd, hd->buf );
 
311
  _gcry_burn_stack (80+6*sizeof(void*));
 
312
 
 
313
  p = hd->buf;
 
314
#ifdef WORDS_BIGENDIAN
 
315
#define X(a) do { *p++ = hd->a      ; *p++ = hd->a >> 8;      \
 
316
                  *p++ = hd->a >> 16; *p++ = hd->a >> 24; } while(0)
 
317
#else /* little endian */
 
318
#define X(a) do { *(u32*)p = (*hd).a ; p += 4; } while(0)
 
319
#endif
 
320
  X(A);
 
321
  X(B);
 
322
  X(C);
 
323
  X(D);
 
324
#undef X
 
325
 
 
326
}
 
327
 
 
328
static byte *
 
329
md5_read( void *context )
 
330
{
 
331
  MD5_CONTEXT *hd = (MD5_CONTEXT *) context;
 
332
  return hd->buf;
 
333
}
 
334
 
 
335
static byte asn[18] = /* Object ID is 1.2.840.113549.2.5 */
 
336
  { 0x30, 0x20, 0x30, 0x0c, 0x06, 0x08, 0x2a, 0x86,0x48,
 
337
    0x86, 0xf7, 0x0d, 0x02, 0x05, 0x05, 0x00, 0x04, 0x10 };
 
338
 
 
339
static gcry_md_oid_spec_t oid_spec_md5[] =
 
340
  {
 
341
    /* iso.member-body.us.rsadsi.pkcs.pkcs-1.4 (md5WithRSAEncryption) */
 
342
    { "1.2.840.113549.1.1.4" },
 
343
    /* RSADSI digestAlgorithm MD5 */
 
344
    { "1.2.840.113549.2.5" },
 
345
    { NULL },
 
346
  };
 
347
 
 
348
gcry_md_spec_t _gcry_digest_spec_md5 =
 
349
  {
 
350
    "MD5", asn, DIM (asn), oid_spec_md5, 16,
 
351
    md5_init, md5_write, md5_final, md5_read,
 
352
    sizeof (MD5_CONTEXT)
 
353
    ,
 
354
    .blocksize = 64
 
355
  };
 
356
 
 
357
 
 
358
GRUB_MOD_INIT(gcry_md5)
 
359
{
 
360
  grub_md_register (&_gcry_digest_spec_md5);
 
361
}
 
362
 
 
363
GRUB_MOD_FINI(gcry_md5)
 
364
{
 
365
  grub_md_unregister (&_gcry_digest_spec_md5);
 
366
}