]> mj.ucw.cz Git - moe.git/blob - src/md5crypt.c
Detect selbstmort.
[moe.git] / src / md5crypt.c
1 /*
2  * md5crypt based on lib/md5crypt.c from Linux shadow package.
3  * adapted by Martin Mares <mj@ucw.cz> in June 2004
4  * ----------------------------------------------------------------------------
5  * "THE BEER-WARE LICENSE" (Revision 42):
6  * <phk@login.dknet.dk> wrote this file.  As long as you retain this notice you
7  * can do whatever you want with this stuff. If we meet some day, and you think
8  * this stuff is worth it, you can buy me a beer in return.   Poul-Henning Kamp
9  * ----------------------------------------------------------------------------
10  */
11
12 #include <stdio.h>
13 #include <string.h>
14 #include <fcntl.h>
15 #include <unistd.h>
16 #include "md5.h"
17
18 static unsigned char itoa64[] =         /* 0 ... 63 => ascii - 64 */
19         "./0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz";
20
21 static void
22 to64(char *s, unsigned int v, int n)
23 {
24   while (--n >= 0)
25     {
26       *s++ = itoa64[v&0x3f];
27       v >>= 6;
28     }
29 }
30
31 static char *
32 libshadow_md5_crypt(const char *pw, const char *salt)
33 {
34         static char     *magic = "$1$"; /*
35                                                  * This string is magic for
36                                                  * this algorithm.  Having
37                                                  * it this way, we can get
38                                                  * get better later on
39                                                  */
40         static char     passwd[120], *p;
41         static const char *sp,*ep;
42         unsigned char   final[16];
43         int sl,pl,i,j;
44         struct MD5Context ctx,ctx1;
45         unsigned long l;
46
47         /* Refine the Salt first */
48         sp = salt;
49
50         /* If it starts with the magic string, then skip that */
51         if(!strncmp(sp,magic,strlen(magic)))
52                 sp += strlen(magic);
53
54         /* It stops at the first '$', max 8 chars */
55         for(ep=sp;*ep && *ep != '$' && ep < (sp+8);ep++)
56                 continue;
57
58         /* get the length of the true salt */
59         sl = ep - sp;
60
61         MD5Init(&ctx);
62
63         /* The password first, since that is what is most unknown */
64         MD5Update(&ctx,pw,strlen(pw));
65
66         /* Then our magic string */
67         MD5Update(&ctx,magic,strlen(magic));
68
69         /* Then the raw salt */
70         MD5Update(&ctx,sp,sl);
71
72         /* Then just as many characters of the MD5(pw,salt,pw) */
73         MD5Init(&ctx1);
74         MD5Update(&ctx1,pw,strlen(pw));
75         MD5Update(&ctx1,sp,sl);
76         MD5Update(&ctx1,pw,strlen(pw));
77         MD5Final(final,&ctx1);
78         for(pl = strlen(pw); pl > 0; pl -= 16)
79                 MD5Update(&ctx,final,pl>16 ? 16 : pl);
80
81         /* Don't leave anything around in vm they could use. */
82         memset(final,0,sizeof final);
83
84         /* Then something really weird... */
85         for (j=0,i = strlen(pw); i ; i >>= 1)
86                 if(i&1)
87                     MD5Update(&ctx, final+j, 1);
88                 else
89                     MD5Update(&ctx, pw+j, 1);
90
91         /* Now make the output string */
92         strcpy(passwd,magic);
93         strncat(passwd,sp,sl);
94         strcat(passwd,"$");
95
96         MD5Final(final,&ctx);
97
98         /*
99          * and now, just to make sure things don't run too fast
100          * On a 60 Mhz Pentium this takes 34 msec, so you would
101          * need 30 seconds to build a 1000 entry dictionary...
102          */
103         for(i=0;i<1000;i++) {
104                 MD5Init(&ctx1);
105                 if(i & 1)
106                         MD5Update(&ctx1,pw,strlen(pw));
107                 else
108                         MD5Update(&ctx1,final,16);
109
110                 if(i % 3)
111                         MD5Update(&ctx1,sp,sl);
112
113                 if(i % 7)
114                         MD5Update(&ctx1,pw,strlen(pw));
115
116                 if(i & 1)
117                         MD5Update(&ctx1,final,16);
118                 else
119                         MD5Update(&ctx1,pw,strlen(pw));
120                 MD5Final(final,&ctx1);
121         }
122
123         p = passwd + strlen(passwd);
124
125         l = (final[ 0]<<16) | (final[ 6]<<8) | final[12]; to64(p,l,4); p += 4;
126         l = (final[ 1]<<16) | (final[ 7]<<8) | final[13]; to64(p,l,4); p += 4;
127         l = (final[ 2]<<16) | (final[ 8]<<8) | final[14]; to64(p,l,4); p += 4;
128         l = (final[ 3]<<16) | (final[ 9]<<8) | final[15]; to64(p,l,4); p += 4;
129         l = (final[ 4]<<16) | (final[10]<<8) | final[ 5]; to64(p,l,4); p += 4;
130         l =                    final[11]                ; to64(p,l,2); p += 2;
131         *p = '\0';
132
133         /* Don't leave anything around in vm they could use. */
134         memset(final,0,sizeof final);
135
136         return passwd;
137 }
138
139 int main(void)
140 {
141   char pass[256], salt[10], rand[8];
142   int fd = open("/dev/urandom", O_RDONLY);
143   int n;
144   if (fd < 0)
145     {
146       fprintf(stderr, "unable to open /dev/urandom: %m\n");
147       return 1;
148     }
149   while (fgets(pass, sizeof(pass), stdin))
150     {
151       char *c = strchr(pass, '\n');
152       if (c)
153         *c = 0;
154       if (read(fd, rand, sizeof(rand)) != sizeof(rand))
155         {
156           fprintf(stderr, "Error reading /dev/urandom: %m\n");
157           return 1;
158         }
159       for (n=0; n<2; n++)
160         to64(salt+4*n, *(uint32 *)(rand+4*n), 4);
161       salt[8] = 0;
162       printf("%s\n", libshadow_md5_crypt(pass, salt));
163     }
164   return 0;
165 }