1 /*
2 	mdfour.c
3 
4 	An implementation of MD4 designed for use in the samba SMB
5 	authentication protocol
6 
7 	Copyright (C) 1997-1998  Andrew Tridgell
8 
9 	This program is free software; you can redistribute it and/or
10 	modify it under the terms of the GNU General Public License
11 	as published by the Free Software Foundation; either version 2
12 	of the License, or (at your option) any later version.
13 
14 	This program 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.
17 
18 	See the GNU General Public License for more details.
19 
20 	You should have received a copy of the GNU General Public License
21 	along with this program; if not, write to:
22 
23 		Free Software Foundation, Inc.
24 		59 Temple Place - Suite 330
25 		Boston, MA  02111-1307, USA
26 
27 	$Id: mdfour.c,v 1.1 2002/08/23 22:03:27 abster Exp $
28 */
29 
30 #include "q_shared.h"
31 #include "qcommon.h"
32 
33 struct mdfour {
34 	uint32_t A, B, C, D;
35 	uint32_t totalN;
36 };
37 
38 
39 /* NOTE: This code makes no attempt to be fast!
40 
41    It assumes that an int is at least 32 bits long
42 */
43 
44 static struct mdfour *m;
45 
46 #define F(X,Y,Z) (((X)&(Y)) | ((~(X))&(Z)))
47 #define G(X,Y,Z) (((X)&(Y)) | ((X)&(Z)) | ((Y)&(Z)))
48 #define H(X,Y,Z) ((X)^(Y)^(Z))
49 #define lshift(x,s) (((x)<<(s)) | ((x)>>(32-(s))))
50 
51 #define ROUND1(a,b,c,d,k,s) a = lshift(a + F(b,c,d) + X[k], s)
52 #define ROUND2(a,b,c,d,k,s) a = lshift(a + G(b,c,d) + X[k] + 0x5A827999,s)
53 #define ROUND3(a,b,c,d,k,s) a = lshift(a + H(b,c,d) + X[k] + 0x6ED9EBA1,s)
54 
55 /* this applies md4 to 64 byte chunks */
mdfour64(uint32_t * M)56 static void mdfour64(uint32_t *M)
57 {
58 	int j;
59 	uint32_t AA, BB, CC, DD;
60 	uint32_t X[16];
61 	uint32_t A,B,C,D;
62 
63 	for (j=0;j<16;j++)
64 		X[j] = M[j];
65 
66 	A = m->A; B = m->B; C = m->C; D = m->D;
67 	AA = A; BB = B; CC = C; DD = D;
68 
69         ROUND1(A,B,C,D,  0,  3);  ROUND1(D,A,B,C,  1,  7);
70 	ROUND1(C,D,A,B,  2, 11);  ROUND1(B,C,D,A,  3, 19);
71         ROUND1(A,B,C,D,  4,  3);  ROUND1(D,A,B,C,  5,  7);
72 	ROUND1(C,D,A,B,  6, 11);  ROUND1(B,C,D,A,  7, 19);
73         ROUND1(A,B,C,D,  8,  3);  ROUND1(D,A,B,C,  9,  7);
74 	ROUND1(C,D,A,B, 10, 11);  ROUND1(B,C,D,A, 11, 19);
75         ROUND1(A,B,C,D, 12,  3);  ROUND1(D,A,B,C, 13,  7);
76 	ROUND1(C,D,A,B, 14, 11);  ROUND1(B,C,D,A, 15, 19);
77 
78         ROUND2(A,B,C,D,  0,  3);  ROUND2(D,A,B,C,  4,  5);
79 	ROUND2(C,D,A,B,  8,  9);  ROUND2(B,C,D,A, 12, 13);
80         ROUND2(A,B,C,D,  1,  3);  ROUND2(D,A,B,C,  5,  5);
81 	ROUND2(C,D,A,B,  9,  9);  ROUND2(B,C,D,A, 13, 13);
82         ROUND2(A,B,C,D,  2,  3);  ROUND2(D,A,B,C,  6,  5);
83 	ROUND2(C,D,A,B, 10,  9);  ROUND2(B,C,D,A, 14, 13);
84         ROUND2(A,B,C,D,  3,  3);  ROUND2(D,A,B,C,  7,  5);
85 	ROUND2(C,D,A,B, 11,  9);  ROUND2(B,C,D,A, 15, 13);
86 
87 	ROUND3(A,B,C,D,  0,  3);  ROUND3(D,A,B,C,  8,  9);
88 	ROUND3(C,D,A,B,  4, 11);  ROUND3(B,C,D,A, 12, 15);
89         ROUND3(A,B,C,D,  2,  3);  ROUND3(D,A,B,C, 10,  9);
90 	ROUND3(C,D,A,B,  6, 11);  ROUND3(B,C,D,A, 14, 15);
91         ROUND3(A,B,C,D,  1,  3);  ROUND3(D,A,B,C,  9,  9);
92 	ROUND3(C,D,A,B,  5, 11);  ROUND3(B,C,D,A, 13, 15);
93         ROUND3(A,B,C,D,  3,  3);  ROUND3(D,A,B,C, 11,  9);
94 	ROUND3(C,D,A,B,  7, 11);  ROUND3(B,C,D,A, 15, 15);
95 
96 	A += AA; B += BB; C += CC; D += DD;
97 
98 	for (j=0;j<16;j++)
99 		X[j] = 0;
100 
101 	m->A = A; m->B = B; m->C = C; m->D = D;
102 }
103 
copy64(uint32_t * M,byte * in)104 static void copy64(uint32_t *M, byte *in)
105 {
106 	int i;
107 
108 	for (i=0;i<16;i++)
109 		M[i] =
110 			((uint32_t)in[i*4+3] << 24) |
111 			((uint32_t)in[i*4+2] << 16) |
112 			((uint32_t)in[i*4+1] <<	 8) |
113 			((uint32_t)in[i*4+0] <<	 0) ;
114 }
115 
copy4(byte * out,uint32_t x)116 static void copy4(byte *out,uint32_t x)
117 {
118 	out[0] = x&0xFF;
119 	out[1] = (x>>8)&0xFF;
120 	out[2] = (x>>16)&0xFF;
121 	out[3] = (x>>24)&0xFF;
122 }
123 
mdfour_begin(struct mdfour * md)124 void mdfour_begin(struct mdfour *md)
125 {
126 	md->A = 0x67452301;
127 	md->B = 0xefcdab89;
128 	md->C = 0x98badcfe;
129 	md->D = 0x10325476;
130 	md->totalN = 0;
131 }
132 
133 
mdfour_tail(byte * in,int n)134 static void mdfour_tail(byte *in, int n)
135 {
136 	byte buf[128];
137 	uint32_t M[16];
138 	uint32_t b;
139 
140 	m->totalN += n;
141 
142 	b = m->totalN * 8;
143 
144 	Com_Memset(buf, 0, 128);
145 	if (n) Com_Memcpy(buf, in, n);
146 	buf[n] = 0x80;
147 
148 	if (n <= 55) {
149 		copy4(buf+56, b);
150 		copy64(M, buf);
151 		mdfour64(M);
152 	} else {
153 		copy4(buf+120, b);
154 		copy64(M, buf);
155 		mdfour64(M);
156 		copy64(M, buf+64);
157 		mdfour64(M);
158 	}
159 }
160 
mdfour_update(struct mdfour * md,byte * in,int n)161 static void mdfour_update(struct mdfour *md, byte *in, int n)
162 {
163 	uint32_t M[16];
164 
165 	m = md;
166 
167 	if (n == 0) mdfour_tail(in, n);
168 
169 	while (n >= 64) {
170 		copy64(M, in);
171 		mdfour64(M);
172 		in += 64;
173 		n -= 64;
174 		m->totalN += 64;
175 	}
176 
177 	mdfour_tail(in, n);
178 }
179 
180 
mdfour_result(struct mdfour * md,byte * out)181 static void mdfour_result(struct mdfour *md, byte *out)
182 {
183 	copy4(out, md->A);
184 	copy4(out+4, md->B);
185 	copy4(out+8, md->C);
186 	copy4(out+12, md->D);
187 }
188 
mdfour(byte * out,byte * in,int n)189 static void mdfour(byte *out, byte *in, int n)
190 {
191 	struct mdfour md;
192 	mdfour_begin(&md);
193 	mdfour_update(&md, in, n);
194 	mdfour_result(&md, out);
195 }
196 
197 //===================================================================
198 
Com_BlockChecksum(const void * buffer,int length)199 unsigned Com_BlockChecksum (const void *buffer, int length)
200 {
201 	int				digest[4];
202 	unsigned	val;
203 
204 	mdfour( (byte *)digest, (byte *)buffer, length );
205 
206 	val = digest[0] ^ digest[1] ^ digest[2] ^ digest[3];
207 
208 	return val;
209 }
210