5b479647cbc0f2cc54cd80ad8a5802812492c2b2
[openafs.git] / src / rxkad / md4.c
1 /*
2  * Copyright (c) 1995 - 2001 Kungliga Tekniska Högskolan
3  * (Royal Institute of Technology, Stockholm, Sweden).
4  * All rights reserved.
5  * 
6  * Redistribution and use in source and binary forms, with or without
7  * modification, are permitted provided that the following conditions
8  * are met:
9  * 
10  * 1. Redistributions of source code must retain the above copyright
11  *    notice, this list of conditions and the following disclaimer.
12  * 
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  * 
17  * 3. Neither the name of the Institute nor the names of its contributors
18  *    may be used to endorse or promote products derived from this software
19  *    without specific prior written permission.
20  * 
21  * THIS SOFTWARE IS PROVIDED BY THE INSTITUTE AND CONTRIBUTORS ``AS IS'' AND
22  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24  * ARE DISCLAIMED.  IN NO EVENT SHALL THE INSTITUTE OR CONTRIBUTORS BE LIABLE
25  * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
26  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
27  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
28  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
30  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
31  * SUCH DAMAGE.
32  */
33
34 #include <afsconfig.h>
35 #if defined(UKERNEL)
36 #include "../afs/param.h"
37 #else
38 #include <afs/param.h>
39 #endif
40
41 #if defined(UKERNEL)
42 #include "../afs/sysincludes.h"
43 #include "../afs/afsincludes.h"
44 #include "../afs/stds.h"
45 #include "../rx/xdr.h"
46 #include "../rx/rx.h"
47 #include "../des/des.h"
48 #include "../afs/lifetimes.h"
49 #include "../afs/rxkad.h"
50 #else /* defined(UKERNEL) */
51 #include <afs/stds.h>
52 #include <sys/types.h>
53 #ifdef AFS_NT40_ENV
54 #include <winsock2.h>
55 #else
56 #include <netinet/in.h>
57 #endif
58 #ifdef HAVE_STRING_H
59 #include <string.h>
60 #else
61 #ifdef HAVE_STRINGS_H
62 #include <strings.h>
63 #endif
64 #endif
65 #include <rx/xdr.h>
66 #include <rx/rx.h>
67 #include <des.h>
68 #include "lifetimes.h"
69 #include "rxkad.h"
70 #endif /* defined(UKERNEL) */
71
72 RCSID("$Id$");
73
74 #undef WORDS_BIGENDIAN
75 #ifdef AFSBIG_ENDIAN
76 #define WORDS_BIGENDIAN 1
77 #endif
78
79 #include "md4.h"
80 #include "hash.h"
81
82 #define A m->counter[0]
83 #define B m->counter[1]
84 #define C m->counter[2]
85 #define D m->counter[3]
86 #define X data
87
88 void
89 MD4_Init (struct md4 *m)
90 {
91   m->sz[0] = 0;
92   m->sz[1] = 0;
93   D = 0x10325476;
94   C = 0x98badcfe;
95   B = 0xefcdab89;
96   A = 0x67452301;
97 }
98
99 #define F(x,y,z) CRAYFIX((x & y) | (~x & z))
100 #define G(x,y,z) ((x & y) | (x & z) | (y & z))
101 #define H(x,y,z) (x ^ y ^ z)
102
103 #define DOIT(a,b,c,d,k,s,i,OP) \
104 a = cshift(a + OP(b,c,d) + X[k] + i, s)
105
106 #define DO1(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,F)
107 #define DO2(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,G)
108 #define DO3(a,b,c,d,k,s,i) DOIT(a,b,c,d,k,s,i,H)
109
110 static inline void
111 calc (struct md4 *m, afs_uint32 *data)
112 {
113   afs_uint32 AA, BB, CC, DD;
114
115   AA = A;
116   BB = B;
117   CC = C;
118   DD = D;
119
120   /* Round 1 */
121
122   DO1(A,B,C,D,0,3,0);
123   DO1(D,A,B,C,1,7,0);
124   DO1(C,D,A,B,2,11,0);
125   DO1(B,C,D,A,3,19,0);
126
127   DO1(A,B,C,D,4,3,0);
128   DO1(D,A,B,C,5,7,0);
129   DO1(C,D,A,B,6,11,0);
130   DO1(B,C,D,A,7,19,0);
131
132   DO1(A,B,C,D,8,3,0);
133   DO1(D,A,B,C,9,7,0);
134   DO1(C,D,A,B,10,11,0);
135   DO1(B,C,D,A,11,19,0);
136
137   DO1(A,B,C,D,12,3,0);
138   DO1(D,A,B,C,13,7,0);
139   DO1(C,D,A,B,14,11,0);
140   DO1(B,C,D,A,15,19,0);
141
142   /* Round 2 */
143
144   DO2(A,B,C,D,0,3,0x5A827999);
145   DO2(D,A,B,C,4,5,0x5A827999);
146   DO2(C,D,A,B,8,9,0x5A827999);
147   DO2(B,C,D,A,12,13,0x5A827999);
148
149   DO2(A,B,C,D,1,3,0x5A827999);
150   DO2(D,A,B,C,5,5,0x5A827999);
151   DO2(C,D,A,B,9,9,0x5A827999);
152   DO2(B,C,D,A,13,13,0x5A827999);
153
154   DO2(A,B,C,D,2,3,0x5A827999);
155   DO2(D,A,B,C,6,5,0x5A827999);
156   DO2(C,D,A,B,10,9,0x5A827999);
157   DO2(B,C,D,A,14,13,0x5A827999);
158
159   DO2(A,B,C,D,3,3,0x5A827999);
160   DO2(D,A,B,C,7,5,0x5A827999);
161   DO2(C,D,A,B,11,9,0x5A827999);
162   DO2(B,C,D,A,15,13,0x5A827999);
163
164   /* Round 3 */
165
166   DO3(A,B,C,D,0,3,0x6ED9EBA1);
167   DO3(D,A,B,C,8,9,0x6ED9EBA1);
168   DO3(C,D,A,B,4,11,0x6ED9EBA1);
169   DO3(B,C,D,A,12,15,0x6ED9EBA1);
170
171   DO3(A,B,C,D,2,3,0x6ED9EBA1);
172   DO3(D,A,B,C,10,9,0x6ED9EBA1);
173   DO3(C,D,A,B,6,11,0x6ED9EBA1);
174   DO3(B,C,D,A,14,15,0x6ED9EBA1);
175
176   DO3(A,B,C,D,1,3,0x6ED9EBA1);
177   DO3(D,A,B,C,9,9,0x6ED9EBA1);
178   DO3(C,D,A,B,5,11,0x6ED9EBA1);
179   DO3(B,C,D,A,13,15,0x6ED9EBA1);
180
181   DO3(A,B,C,D,3,3,0x6ED9EBA1);
182   DO3(D,A,B,C,11,9,0x6ED9EBA1);
183   DO3(C,D,A,B,7,11,0x6ED9EBA1);
184   DO3(B,C,D,A,15,15,0x6ED9EBA1);
185
186   A += AA;
187   B += BB;
188   C += CC;
189   D += DD;
190 }
191
192 /*
193  * From `Performance analysis of MD5' by Joseph D. Touch <touch@isi.edu>
194  */
195
196 #if defined(WORDS_BIGENDIAN)
197 static inline afs_uint32
198 swap_afs_uint32 (afs_uint32 t)
199 {
200   afs_uint32 temp1, temp2;
201
202   temp1   = cshift(t, 16);
203   temp2   = temp1 >> 8;
204   temp1  &= 0x00ff00ff;
205   temp2  &= 0x00ff00ff;
206   temp1 <<= 8;
207   return temp1 | temp2;
208 }
209 #endif
210
211 struct x32{
212   unsigned int a:32;
213   unsigned int b:32;
214 };
215
216 void
217 MD4_Update (struct md4 *m, const void *v, size_t len)
218 {
219     const unsigned char *p = v;
220     size_t old_sz = m->sz[0];
221     size_t offset;
222
223     m->sz[0] += len * 8;
224     if (m->sz[0] < old_sz)
225         ++m->sz[1];
226     offset = (old_sz / 8)  % 64;
227     while(len > 0) {
228         size_t l = min(len, 64 - offset);
229         memcpy(m->save + offset, p, l);
230         offset += l;
231         p += l;
232         len -= l;
233         if(offset == 64) {
234 #if defined(WORDS_BIGENDIAN)
235             int i;
236             afs_uint32 current[16];
237             struct x32 *u = (struct x32*)m->save;
238             for(i = 0; i < 8; i++){
239                 current[2*i+0] = swap_afs_uint32(u[i].a);
240                 current[2*i+1] = swap_afs_uint32(u[i].b);
241             }
242             calc(m, current);
243 #else
244             calc(m, (afs_uint32*)m->save);
245 #endif
246             offset = 0;
247         }
248     }
249 }
250
251 void
252 MD4_Final (void *res, struct md4 *m)
253 {
254   static unsigned char zeros[72];
255   unsigned offset = (m->sz[0] / 8) % 64;
256   unsigned int dstart = (120 - offset - 1) % 64 + 1;
257
258   *zeros = 0x80;
259   memset (zeros + 1, 0, sizeof(zeros) - 1);
260   zeros[dstart+0] = (m->sz[0] >> 0) & 0xff;
261   zeros[dstart+1] = (m->sz[0] >> 8) & 0xff;
262   zeros[dstart+2] = (m->sz[0] >> 16) & 0xff;
263   zeros[dstart+3] = (m->sz[0] >> 24) & 0xff;
264   zeros[dstart+4] = (m->sz[1] >> 0) & 0xff;
265   zeros[dstart+5] = (m->sz[1] >> 8) & 0xff;
266   zeros[dstart+6] = (m->sz[1] >> 16) & 0xff;
267   zeros[dstart+7] = (m->sz[1] >> 24) & 0xff;
268   MD4_Update (m, zeros, dstart + 8);
269   {
270       int i;
271       unsigned char *r = (unsigned char *)res;
272
273       for (i = 0; i < 4; ++i) {
274           r[4*i]   = m->counter[i] & 0xFF;
275           r[4*i+1] = (m->counter[i] >> 8) & 0xFF;
276           r[4*i+2] = (m->counter[i] >> 16) & 0xFF;
277           r[4*i+3] = (m->counter[i] >> 24) & 0xFF;
278       }
279   }
280 #if 0
281   {
282     int i;
283     afs_uint32 *r = (afs_uint32 *)res;
284
285     for (i = 0; i < 4; ++i)
286       r[i] = swap_afs_uint32 (m->counter[i]);
287   }
288 #endif
289 }