OSDN Git Service

test: NPTL: sync WRITE_BUFFER_SIZE with glibc test
[uclinux-h8/uClibc.git] / libcrypt / md5.c
index c9d65d2..1af11ed 100644 (file)
@@ -28,8 +28,8 @@
  * edited for clarity and style only.
  *
  * ----------------------------------------------------------------------------
- * The md5_crypt() function was taken from freeBSD's libcrypt and contains 
- * this license: 
+ * The md5_crypt() function was taken from freeBSD's libcrypt and contains
+ * this license:
  *    "THE BEER-WARE LICENSE" (Revision 42):
  *     <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
  *     can do whatever you want with this stuff. If we meet some day, and you think
@@ -38,8 +38,9 @@
  * $FreeBSD: src/lib/libcrypt/crypt.c,v 1.7.2.1 1999/08/29 14:56:33 peter Exp $
  *
  * ----------------------------------------------------------------------------
- * On April 19th, 2001 md5_crypt() was modified to make it reentrant 
- * by Erik Andersen <andersen@lineo.com>, <andersee@debian.org>
+ * On April 19th, 2001 md5_crypt() was modified to make it reentrant
+ * by Erik Andersen <andersen@uclibc.org>
+ *
  *
  * June 28, 2001             Manuel Novoa III
  *
  *               in each loop (glacial)
  * On i386, sizes are roughly (-Os -fno-builtin):
  *     0: 3k     1: 2.5k     2: 2.2k     3: 2k
+ *
+ *
+ * Since SuSv3 does not require crypt_r, modified again August 7, 2002
+ * by Erik Andersen to remove reentrance stuff...
  */
 
 /*
 #include <stdio.h>
 #include <crypt.h>
 #include <sys/cdefs.h>
-       
+#include "libcrypt.h"
+
 /* MD5 context. */
-typedef struct MD5Context {
+struct MD5Context {
   u_int32_t state[4];  /* state (ABCD) */
   u_int32_t count[2];  /* number of bits, modulo 2^64 (lsb first) */
   unsigned char buffer[64];    /* input buffer */
-} MD5_CTX;
+};
 
-void   MD5Init (MD5_CTX *);
-void   MD5Update (MD5_CTX *, const unsigned char *, unsigned int);
-void   MD5Pad (MD5_CTX *);
-void   MD5Final (unsigned char [16], MD5_CTX *);
-char * MD5End(MD5_CTX *, char *);
-char * MD5File(const char *, char *);
-char * MD5Data(const unsigned char *, unsigned int, char *);
-char * md5_crypt_r( const char *pw, const char *salt, struct crypt_data * data);
+static void   __md5_Init (struct MD5Context *);
+static void   __md5_Update (struct MD5Context *, const unsigned char *, unsigned int);
+static void   __md5_Pad (struct MD5Context *);
+static void   __md5_Final (unsigned char [16], struct MD5Context *);
+static void __md5_Transform __P((u_int32_t [4], const unsigned char [64]));
 
 
-char   *md5_magic = "$1$";     /* * This string is magic for this algorithm.  Having 
-                                  it this way, we can get better later on */
-static const unsigned char itoa64[] =          /* 0 ... 63 => ascii - 64 */
+#define MD5_MAGIC_STR "$1$"
+#define MD5_MAGIC_LEN (sizeof(MD5_MAGIC_STR) - 1)
+static const unsigned char __md5__magic[] = MD5_MAGIC_STR;
+static const unsigned char __md5_itoa64[] =            /* 0 ... 63 => ascii - 64 */
        "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
 
 
-static void MD5Transform __P((u_int32_t [4], const unsigned char [64]));
-
-#ifdef KERNEL
-#define memset(x,y,z)  bzero(x,z);
-#define memcpy(x,y,z)  bcopy(y, x, z)
-#endif
-
 #ifdef i386
-#define Encode memcpy
-#define Decode memcpy
+#define __md5_Encode memcpy
+#define __md5_Decode memcpy
 #else /* i386 */
 
 /*
- * Encodes input (u_int32_t) into output (unsigned char). Assumes len is
+ * __md5_Encodes input (u_int32_t) into output (unsigned char). Assumes len is
  * a multiple of 4.
  */
 
 static void
-Encode (output, input, len)
-       unsigned char *output;
-       u_int32_t *input;
-       unsigned int len;
+__md5_Encode (unsigned char *output, u_int32_t *input, unsigned int len)
 {
        unsigned int i, j;
 
@@ -132,15 +126,12 @@ Encode (output, input, len)
 }
 
 /*
- * Decodes input (unsigned char) into output (u_int32_t). Assumes len is
+ * __md5_Decodes input (unsigned char) into output (u_int32_t). Assumes len is
  * a multiple of 4.
  */
 
 static void
-Decode (output, input, len)
-       u_int32_t *output;
-       const unsigned char *input;
-       unsigned int len;
+__md5_Decode (u_int32_t *output, const unsigned char *input, unsigned int len)
 {
        unsigned int i, j;
 
@@ -186,7 +177,7 @@ Decode (output, input, len)
 
 /* MD5 initialization. Begins an MD5 operation, writing a new context. */
 
-void MD5Init (MD5_CTX *context)
+static void __md5_Init (struct MD5Context *context)
 {
        context->count[0] = context->count[1] = 0;
 
@@ -197,18 +188,18 @@ void MD5Init (MD5_CTX *context)
        context->state[3] = 0x10325476;
 }
 
-/* 
+/*
  * MD5 block update operation. Continues an MD5 message-digest
  * operation, processing another message block, and updating the
  * context.
  */
 
-void MD5Update ( MD5_CTX *context, const unsigned char *input, unsigned int inputLen)
+static void __md5_Update ( struct MD5Context *context, const unsigned char *input, unsigned int inputLen)
 {
-       unsigned int i, index, partLen;
+       unsigned int i, idx, partLen;
 
        /* Compute number of bytes mod 64 */
-       index = (unsigned int)((context->count[0] >> 3) & 0x3F);
+       idx = (unsigned int)((context->count[0] >> 3) & 0x3F);
 
        /* Update number of bits */
        if ((context->count[0] += ((u_int32_t)inputLen << 3))
@@ -216,24 +207,24 @@ void MD5Update ( MD5_CTX *context, const unsigned char *input, unsigned int inpu
                context->count[1]++;
        context->count[1] += ((u_int32_t)inputLen >> 29);
 
-       partLen = 64 - index;
+       partLen = 64 - idx;
 
        /* Transform as many times as possible. */
        if (inputLen >= partLen) {
-               memcpy((void *)&context->buffer[index], (const void *)input,
+               memcpy((void *)&context->buffer[idx], (const void *)input,
                    partLen);
-               MD5Transform (context->state, context->buffer);
+               __md5_Transform (context->state, context->buffer);
 
                for (i = partLen; i + 63 < inputLen; i += 64)
-                       MD5Transform (context->state, &input[i]);
+                       __md5_Transform (context->state, &input[i]);
 
-               index = 0;
+               idx = 0;
        }
        else
                i = 0;
 
        /* Buffer remaining input */
-       memcpy ((void *)&context->buffer[index], (const void *)&input[i],
+       memcpy ((void *)&context->buffer[idx], (const void *)&input[i],
            inputLen-i);
 }
 
@@ -241,25 +232,25 @@ void MD5Update ( MD5_CTX *context, const unsigned char *input, unsigned int inpu
  * MD5 padding. Adds padding followed by original length.
  */
 
-void MD5Pad ( MD5_CTX *context)
+static void __md5_Pad ( struct MD5Context *context)
 {
        unsigned char bits[8];
-       unsigned int index, padLen;
+       unsigned int idx, padLen;
        unsigned char PADDING[64];
 
        memset(PADDING, 0, sizeof(PADDING));
        PADDING[0] = 0x80;
 
        /* Save number of bits */
-       Encode (bits, context->count, 8);
+       __md5_Encode (bits, context->count, 8);
 
        /* Pad out to 56 mod 64. */
-       index = (unsigned int)((context->count[0] >> 3) & 0x3f);
-       padLen = (index < 56) ? (56 - index) : (120 - index);
-       MD5Update (context, PADDING, padLen);
+       idx = (unsigned int)((context->count[0] >> 3) & 0x3f);
+       padLen = (idx < 56) ? (56 - idx) : (120 - idx);
+       __md5_Update (context, PADDING, padLen);
 
        /* Append length (before padding) */
-       MD5Update (context, bits, 8);
+       __md5_Update (context, bits, 8);
 }
 
 /*
@@ -267,13 +258,13 @@ void MD5Pad ( MD5_CTX *context)
  * the message digest and zeroizing the context.
  */
 
-void MD5Final ( unsigned char digest[16], MD5_CTX *context)
+static void __md5_Final ( unsigned char digest[16], struct MD5Context *context)
 {
        /* Do padding. */
-       MD5Pad (context);
+       __md5_Pad (context);
 
        /* Store state in digest */
-       Encode (digest, context->state, 16);
+       __md5_Encode (digest, context->state, 16);
 
        /* Zeroize sensitive information. */
        memset ((void *)context, 0, sizeof (*context));
@@ -281,13 +272,9 @@ void MD5Final ( unsigned char digest[16], MD5_CTX *context)
 
 /* MD5 basic transformation. Transforms state based on block. */
 
-static void
-MD5Transform (state, block)
-       u_int32_t state[4];
-       const unsigned char block[64];
+static void __md5_Transform (u_int32_t state[4], const unsigned char block[64])
 {
        u_int32_t a, b, c, d, x[16];
-
 #if MD5_SIZE_OVER_SPEED > 1
        u_int32_t temp;
        const char *ps;
@@ -337,9 +324,9 @@ MD5Transform (state, block)
 
 #endif /* MD5_SIZE_OVER_SPEED > 0 */
 
-       Decode (x, block, 64);
+       __md5_Decode (x, block, 64);
 
-       a = state[0]; b = state[1]; c = state[2]; d = state[3]; 
+       a = state[0]; b = state[1]; c = state[2]; d = state[3];
 
 #if MD5_SIZE_OVER_SPEED > 2
        pc = C; pp = P; ps = S - 4;
@@ -527,10 +514,10 @@ MD5Transform (state, block)
 }
 
 
-static void to64( char *s, unsigned long v, int n)
+static void __md5_to64( char *s, unsigned long v, int n)
 {
        while (--n >= 0) {
-               *s++ = itoa64[v&0x3f];
+               *s++ = __md5_itoa64[v&0x3f];
                v >>= 6;
        }
 }
@@ -541,27 +528,25 @@ static void to64( char *s, unsigned long v, int n)
  * Use MD5 for what it is best at...
  */
 
-char * md5_crypt_r( const char *pw, const char *salt, struct crypt_data * data)
+char *__md5_crypt(const unsigned char *pw, const unsigned char *salt)
 {
-       char *p = data->p;
-       const char *sp = data->sp;
-       const char *ep = data->ep;
-       char *passwd = data->key.b_data;        /* This is a nice place where we can grab 
-                                          a bit of reentrant space...  I'd create 
-                                          a separate field in struct crypt_data, 
-                                          but this spot should do nicely... */
+       /* Static stuff */
+       /* "$1$" + salt_up_to_8_chars + "$" + 22_bytes_of_hash + NUL */
+       static char passwd[3 + 8 + 1 + 22 + 1];
+
+       const unsigned char *sp, *ep;
+       char *p;
        unsigned char   final[17];      /* final[16] exists only to aid in looping */
-       int sl,pl,i,md5_magic_len,pw_len;
-       MD5_CTX ctx,ctx1;
+       int sl,pl,i,pw_len;
+       struct MD5Context ctx,ctx1;
        unsigned long l;
 
        /* Refine the Salt first */
        sp = salt;
 
        /* If it starts with the magic string, then skip that */
-       md5_magic_len = strlen(md5_magic);
-       if(!strncmp(sp,md5_magic,md5_magic_len))
-               sp += md5_magic_len;
+       if(!strncmp(sp,__md5__magic,MD5_MAGIC_LEN))
+               sp += MD5_MAGIC_LEN;
 
        /* It stops at the first '$', max 8 chars */
        for(ep=sp;*ep && *ep != '$' && ep < (sp+8);ep++)
@@ -570,41 +555,41 @@ char * md5_crypt_r( const char *pw, const char *salt, struct crypt_data * data)
        /* get the length of the true salt */
        sl = ep - sp;
 
-       MD5Init(&ctx);
+       __md5_Init(&ctx);
 
        /* The password first, since that is what is most unknown */
        pw_len = strlen(pw);
-       MD5Update(&ctx,pw,pw_len);
+       __md5_Update(&ctx,pw,pw_len);
 
        /* Then our magic string */
-       MD5Update(&ctx,md5_magic,md5_magic_len);
+       __md5_Update(&ctx,__md5__magic,MD5_MAGIC_LEN);
 
        /* Then the raw salt */
-       MD5Update(&ctx,sp,sl);
+       __md5_Update(&ctx,sp,sl);
 
        /* Then just as many characters of the MD5(pw,salt,pw) */
-       MD5Init(&ctx1);
-       MD5Update(&ctx1,pw,pw_len);
-       MD5Update(&ctx1,sp,sl);
-       MD5Update(&ctx1,pw,pw_len);
-       MD5Final(final,&ctx1);
+       __md5_Init(&ctx1);
+       __md5_Update(&ctx1,pw,pw_len);
+       __md5_Update(&ctx1,sp,sl);
+       __md5_Update(&ctx1,pw,pw_len);
+       __md5_Final(final,&ctx1);
        for(pl = pw_len; pl > 0; pl -= 16)
-               MD5Update(&ctx,final,pl>16 ? 16 : pl);
+               __md5_Update(&ctx,final,pl>16 ? 16 : pl);
 
        /* Don't leave anything around in vm they could use. */
        memset(final,0,sizeof final);
 
        /* Then something really weird... */
        for (i = pw_len; i ; i >>= 1) {
-               MD5Update(&ctx, ((i&1) ? final : (const unsigned char *) pw), 1);
+               __md5_Update(&ctx, ((i&1) ? final : (const unsigned char *) pw), 1);
        }
 
        /* Now make the output string */
-       strcpy(passwd,md5_magic);
-       strncat(passwd,sp,sl);
-       strcat(passwd,"$");
+       strcpy(passwd,__md5__magic); /* 3 bytes */
+       strncpy(passwd+MD5_MAGIC_LEN,(char*)sp,sl); /* 8 or less */
+       passwd[MD5_MAGIC_LEN+sl] = '$';
 
-       MD5Final(final,&ctx);
+       __md5_Final(final,&ctx);
 
        /*
         * and now, just to make sure things don't run too fast
@@ -612,34 +597,36 @@ char * md5_crypt_r( const char *pw, const char *salt, struct crypt_data * data)
         * need 30 seconds to build a 1000 entry dictionary...
         */
        for(i=0;i<1000;i++) {
-               MD5Init(&ctx1);
+               __md5_Init(&ctx1);
                if(i & 1)
-                       MD5Update(&ctx1,pw,pw_len);
+                       __md5_Update(&ctx1,pw,pw_len);
                else
-                       MD5Update(&ctx1,final,16);
+                       __md5_Update(&ctx1,final,16);
 
                if(i % 3)
-                       MD5Update(&ctx1,sp,sl);
+                       __md5_Update(&ctx1,sp,sl);
 
                if(i % 7)
-                       MD5Update(&ctx1,pw,pw_len);
+                       __md5_Update(&ctx1,pw,pw_len);
 
                if(i & 1)
-                       MD5Update(&ctx1,final,16);
+                       __md5_Update(&ctx1,final,16);
                else
-                       MD5Update(&ctx1,pw,pw_len);
-               MD5Final(final,&ctx1);
+                       __md5_Update(&ctx1,pw,pw_len);
+               __md5_Final(final,&ctx1);
        }
 
-       p = passwd + strlen(passwd);
-
+       /* Add 5*4+2 = 22 bytes of hash, + NUL byte. */
+       p = passwd + MD5_MAGIC_LEN + sl + 1;
        final[16] = final[5];
        for ( i=0 ; i < 5 ; i++ ) {
                l = (final[i]<<16) | (final[i+6]<<8) | final[i+12];
-               to64(p,l,4); p += 4;
+               __md5_to64(p,l,4);
+               p += 4;
        }
        l = final[11];
-       to64(p,l,2); p += 2;
+       __md5_to64(p,l,2);
+       p += 2;
        *p = '\0';
 
        /* Don't leave anything around in vm they could use. */