1*7c3d14c8STreehugger Robot //===-- tsan_md5.cc -------------------------------------------------------===//
2*7c3d14c8STreehugger Robot //
3*7c3d14c8STreehugger Robot // The LLVM Compiler Infrastructure
4*7c3d14c8STreehugger Robot //
5*7c3d14c8STreehugger Robot // This file is distributed under the University of Illinois Open Source
6*7c3d14c8STreehugger Robot // License. See LICENSE.TXT for details.
7*7c3d14c8STreehugger Robot //
8*7c3d14c8STreehugger Robot //===----------------------------------------------------------------------===//
9*7c3d14c8STreehugger Robot //
10*7c3d14c8STreehugger Robot // This file is a part of ThreadSanitizer (TSan), a race detector.
11*7c3d14c8STreehugger Robot //
12*7c3d14c8STreehugger Robot //===----------------------------------------------------------------------===//
13*7c3d14c8STreehugger Robot #include "tsan_defs.h"
14*7c3d14c8STreehugger Robot
15*7c3d14c8STreehugger Robot namespace __tsan {
16*7c3d14c8STreehugger Robot
17*7c3d14c8STreehugger Robot #define F(x, y, z) ((z) ^ ((x) & ((y) ^ (z))))
18*7c3d14c8STreehugger Robot #define G(x, y, z) ((y) ^ ((z) & ((x) ^ (y))))
19*7c3d14c8STreehugger Robot #define H(x, y, z) ((x) ^ (y) ^ (z))
20*7c3d14c8STreehugger Robot #define I(x, y, z) ((y) ^ ((x) | ~(z)))
21*7c3d14c8STreehugger Robot
22*7c3d14c8STreehugger Robot #define STEP(f, a, b, c, d, x, t, s) \
23*7c3d14c8STreehugger Robot (a) += f((b), (c), (d)) + (x) + (t); \
24*7c3d14c8STreehugger Robot (a) = (((a) << (s)) | (((a) & 0xffffffff) >> (32 - (s)))); \
25*7c3d14c8STreehugger Robot (a) += (b);
26*7c3d14c8STreehugger Robot
27*7c3d14c8STreehugger Robot #define SET(n) \
28*7c3d14c8STreehugger Robot (*(const MD5_u32plus *)&ptr[(n) * 4])
29*7c3d14c8STreehugger Robot #define GET(n) \
30*7c3d14c8STreehugger Robot SET(n)
31*7c3d14c8STreehugger Robot
32*7c3d14c8STreehugger Robot typedef unsigned int MD5_u32plus;
33*7c3d14c8STreehugger Robot typedef unsigned long ulong_t; // NOLINT
34*7c3d14c8STreehugger Robot
35*7c3d14c8STreehugger Robot typedef struct {
36*7c3d14c8STreehugger Robot MD5_u32plus lo, hi;
37*7c3d14c8STreehugger Robot MD5_u32plus a, b, c, d;
38*7c3d14c8STreehugger Robot unsigned char buffer[64];
39*7c3d14c8STreehugger Robot MD5_u32plus block[16];
40*7c3d14c8STreehugger Robot } MD5_CTX;
41*7c3d14c8STreehugger Robot
body(MD5_CTX * ctx,const void * data,ulong_t size)42*7c3d14c8STreehugger Robot static const void *body(MD5_CTX *ctx, const void *data, ulong_t size) {
43*7c3d14c8STreehugger Robot const unsigned char *ptr = (const unsigned char *)data;
44*7c3d14c8STreehugger Robot MD5_u32plus a, b, c, d;
45*7c3d14c8STreehugger Robot MD5_u32plus saved_a, saved_b, saved_c, saved_d;
46*7c3d14c8STreehugger Robot
47*7c3d14c8STreehugger Robot a = ctx->a;
48*7c3d14c8STreehugger Robot b = ctx->b;
49*7c3d14c8STreehugger Robot c = ctx->c;
50*7c3d14c8STreehugger Robot d = ctx->d;
51*7c3d14c8STreehugger Robot
52*7c3d14c8STreehugger Robot do {
53*7c3d14c8STreehugger Robot saved_a = a;
54*7c3d14c8STreehugger Robot saved_b = b;
55*7c3d14c8STreehugger Robot saved_c = c;
56*7c3d14c8STreehugger Robot saved_d = d;
57*7c3d14c8STreehugger Robot
58*7c3d14c8STreehugger Robot STEP(F, a, b, c, d, SET(0), 0xd76aa478, 7)
59*7c3d14c8STreehugger Robot STEP(F, d, a, b, c, SET(1), 0xe8c7b756, 12)
60*7c3d14c8STreehugger Robot STEP(F, c, d, a, b, SET(2), 0x242070db, 17)
61*7c3d14c8STreehugger Robot STEP(F, b, c, d, a, SET(3), 0xc1bdceee, 22)
62*7c3d14c8STreehugger Robot STEP(F, a, b, c, d, SET(4), 0xf57c0faf, 7)
63*7c3d14c8STreehugger Robot STEP(F, d, a, b, c, SET(5), 0x4787c62a, 12)
64*7c3d14c8STreehugger Robot STEP(F, c, d, a, b, SET(6), 0xa8304613, 17)
65*7c3d14c8STreehugger Robot STEP(F, b, c, d, a, SET(7), 0xfd469501, 22)
66*7c3d14c8STreehugger Robot STEP(F, a, b, c, d, SET(8), 0x698098d8, 7)
67*7c3d14c8STreehugger Robot STEP(F, d, a, b, c, SET(9), 0x8b44f7af, 12)
68*7c3d14c8STreehugger Robot STEP(F, c, d, a, b, SET(10), 0xffff5bb1, 17)
69*7c3d14c8STreehugger Robot STEP(F, b, c, d, a, SET(11), 0x895cd7be, 22)
70*7c3d14c8STreehugger Robot STEP(F, a, b, c, d, SET(12), 0x6b901122, 7)
71*7c3d14c8STreehugger Robot STEP(F, d, a, b, c, SET(13), 0xfd987193, 12)
72*7c3d14c8STreehugger Robot STEP(F, c, d, a, b, SET(14), 0xa679438e, 17)
73*7c3d14c8STreehugger Robot STEP(F, b, c, d, a, SET(15), 0x49b40821, 22)
74*7c3d14c8STreehugger Robot
75*7c3d14c8STreehugger Robot STEP(G, a, b, c, d, GET(1), 0xf61e2562, 5)
76*7c3d14c8STreehugger Robot STEP(G, d, a, b, c, GET(6), 0xc040b340, 9)
77*7c3d14c8STreehugger Robot STEP(G, c, d, a, b, GET(11), 0x265e5a51, 14)
78*7c3d14c8STreehugger Robot STEP(G, b, c, d, a, GET(0), 0xe9b6c7aa, 20)
79*7c3d14c8STreehugger Robot STEP(G, a, b, c, d, GET(5), 0xd62f105d, 5)
80*7c3d14c8STreehugger Robot STEP(G, d, a, b, c, GET(10), 0x02441453, 9)
81*7c3d14c8STreehugger Robot STEP(G, c, d, a, b, GET(15), 0xd8a1e681, 14)
82*7c3d14c8STreehugger Robot STEP(G, b, c, d, a, GET(4), 0xe7d3fbc8, 20)
83*7c3d14c8STreehugger Robot STEP(G, a, b, c, d, GET(9), 0x21e1cde6, 5)
84*7c3d14c8STreehugger Robot STEP(G, d, a, b, c, GET(14), 0xc33707d6, 9)
85*7c3d14c8STreehugger Robot STEP(G, c, d, a, b, GET(3), 0xf4d50d87, 14)
86*7c3d14c8STreehugger Robot STEP(G, b, c, d, a, GET(8), 0x455a14ed, 20)
87*7c3d14c8STreehugger Robot STEP(G, a, b, c, d, GET(13), 0xa9e3e905, 5)
88*7c3d14c8STreehugger Robot STEP(G, d, a, b, c, GET(2), 0xfcefa3f8, 9)
89*7c3d14c8STreehugger Robot STEP(G, c, d, a, b, GET(7), 0x676f02d9, 14)
90*7c3d14c8STreehugger Robot STEP(G, b, c, d, a, GET(12), 0x8d2a4c8a, 20)
91*7c3d14c8STreehugger Robot
92*7c3d14c8STreehugger Robot STEP(H, a, b, c, d, GET(5), 0xfffa3942, 4)
93*7c3d14c8STreehugger Robot STEP(H, d, a, b, c, GET(8), 0x8771f681, 11)
94*7c3d14c8STreehugger Robot STEP(H, c, d, a, b, GET(11), 0x6d9d6122, 16)
95*7c3d14c8STreehugger Robot STEP(H, b, c, d, a, GET(14), 0xfde5380c, 23)
96*7c3d14c8STreehugger Robot STEP(H, a, b, c, d, GET(1), 0xa4beea44, 4)
97*7c3d14c8STreehugger Robot STEP(H, d, a, b, c, GET(4), 0x4bdecfa9, 11)
98*7c3d14c8STreehugger Robot STEP(H, c, d, a, b, GET(7), 0xf6bb4b60, 16)
99*7c3d14c8STreehugger Robot STEP(H, b, c, d, a, GET(10), 0xbebfbc70, 23)
100*7c3d14c8STreehugger Robot STEP(H, a, b, c, d, GET(13), 0x289b7ec6, 4)
101*7c3d14c8STreehugger Robot STEP(H, d, a, b, c, GET(0), 0xeaa127fa, 11)
102*7c3d14c8STreehugger Robot STEP(H, c, d, a, b, GET(3), 0xd4ef3085, 16)
103*7c3d14c8STreehugger Robot STEP(H, b, c, d, a, GET(6), 0x04881d05, 23)
104*7c3d14c8STreehugger Robot STEP(H, a, b, c, d, GET(9), 0xd9d4d039, 4)
105*7c3d14c8STreehugger Robot STEP(H, d, a, b, c, GET(12), 0xe6db99e5, 11)
106*7c3d14c8STreehugger Robot STEP(H, c, d, a, b, GET(15), 0x1fa27cf8, 16)
107*7c3d14c8STreehugger Robot STEP(H, b, c, d, a, GET(2), 0xc4ac5665, 23)
108*7c3d14c8STreehugger Robot
109*7c3d14c8STreehugger Robot STEP(I, a, b, c, d, GET(0), 0xf4292244, 6)
110*7c3d14c8STreehugger Robot STEP(I, d, a, b, c, GET(7), 0x432aff97, 10)
111*7c3d14c8STreehugger Robot STEP(I, c, d, a, b, GET(14), 0xab9423a7, 15)
112*7c3d14c8STreehugger Robot STEP(I, b, c, d, a, GET(5), 0xfc93a039, 21)
113*7c3d14c8STreehugger Robot STEP(I, a, b, c, d, GET(12), 0x655b59c3, 6)
114*7c3d14c8STreehugger Robot STEP(I, d, a, b, c, GET(3), 0x8f0ccc92, 10)
115*7c3d14c8STreehugger Robot STEP(I, c, d, a, b, GET(10), 0xffeff47d, 15)
116*7c3d14c8STreehugger Robot STEP(I, b, c, d, a, GET(1), 0x85845dd1, 21)
117*7c3d14c8STreehugger Robot STEP(I, a, b, c, d, GET(8), 0x6fa87e4f, 6)
118*7c3d14c8STreehugger Robot STEP(I, d, a, b, c, GET(15), 0xfe2ce6e0, 10)
119*7c3d14c8STreehugger Robot STEP(I, c, d, a, b, GET(6), 0xa3014314, 15)
120*7c3d14c8STreehugger Robot STEP(I, b, c, d, a, GET(13), 0x4e0811a1, 21)
121*7c3d14c8STreehugger Robot STEP(I, a, b, c, d, GET(4), 0xf7537e82, 6)
122*7c3d14c8STreehugger Robot STEP(I, d, a, b, c, GET(11), 0xbd3af235, 10)
123*7c3d14c8STreehugger Robot STEP(I, c, d, a, b, GET(2), 0x2ad7d2bb, 15)
124*7c3d14c8STreehugger Robot STEP(I, b, c, d, a, GET(9), 0xeb86d391, 21)
125*7c3d14c8STreehugger Robot
126*7c3d14c8STreehugger Robot a += saved_a;
127*7c3d14c8STreehugger Robot b += saved_b;
128*7c3d14c8STreehugger Robot c += saved_c;
129*7c3d14c8STreehugger Robot d += saved_d;
130*7c3d14c8STreehugger Robot
131*7c3d14c8STreehugger Robot ptr += 64;
132*7c3d14c8STreehugger Robot } while (size -= 64);
133*7c3d14c8STreehugger Robot
134*7c3d14c8STreehugger Robot ctx->a = a;
135*7c3d14c8STreehugger Robot ctx->b = b;
136*7c3d14c8STreehugger Robot ctx->c = c;
137*7c3d14c8STreehugger Robot ctx->d = d;
138*7c3d14c8STreehugger Robot
139*7c3d14c8STreehugger Robot return ptr;
140*7c3d14c8STreehugger Robot }
141*7c3d14c8STreehugger Robot
MD5_Init(MD5_CTX * ctx)142*7c3d14c8STreehugger Robot void MD5_Init(MD5_CTX *ctx) {
143*7c3d14c8STreehugger Robot ctx->a = 0x67452301;
144*7c3d14c8STreehugger Robot ctx->b = 0xefcdab89;
145*7c3d14c8STreehugger Robot ctx->c = 0x98badcfe;
146*7c3d14c8STreehugger Robot ctx->d = 0x10325476;
147*7c3d14c8STreehugger Robot
148*7c3d14c8STreehugger Robot ctx->lo = 0;
149*7c3d14c8STreehugger Robot ctx->hi = 0;
150*7c3d14c8STreehugger Robot }
151*7c3d14c8STreehugger Robot
MD5_Update(MD5_CTX * ctx,const void * data,ulong_t size)152*7c3d14c8STreehugger Robot void MD5_Update(MD5_CTX *ctx, const void *data, ulong_t size) {
153*7c3d14c8STreehugger Robot MD5_u32plus saved_lo;
154*7c3d14c8STreehugger Robot ulong_t used, free;
155*7c3d14c8STreehugger Robot
156*7c3d14c8STreehugger Robot saved_lo = ctx->lo;
157*7c3d14c8STreehugger Robot if ((ctx->lo = (saved_lo + size) & 0x1fffffff) < saved_lo)
158*7c3d14c8STreehugger Robot ctx->hi++;
159*7c3d14c8STreehugger Robot ctx->hi += size >> 29;
160*7c3d14c8STreehugger Robot
161*7c3d14c8STreehugger Robot used = saved_lo & 0x3f;
162*7c3d14c8STreehugger Robot
163*7c3d14c8STreehugger Robot if (used) {
164*7c3d14c8STreehugger Robot free = 64 - used;
165*7c3d14c8STreehugger Robot
166*7c3d14c8STreehugger Robot if (size < free) {
167*7c3d14c8STreehugger Robot internal_memcpy(&ctx->buffer[used], data, size);
168*7c3d14c8STreehugger Robot return;
169*7c3d14c8STreehugger Robot }
170*7c3d14c8STreehugger Robot
171*7c3d14c8STreehugger Robot internal_memcpy(&ctx->buffer[used], data, free);
172*7c3d14c8STreehugger Robot data = (const unsigned char *)data + free;
173*7c3d14c8STreehugger Robot size -= free;
174*7c3d14c8STreehugger Robot body(ctx, ctx->buffer, 64);
175*7c3d14c8STreehugger Robot }
176*7c3d14c8STreehugger Robot
177*7c3d14c8STreehugger Robot if (size >= 64) {
178*7c3d14c8STreehugger Robot data = body(ctx, data, size & ~(ulong_t)0x3f);
179*7c3d14c8STreehugger Robot size &= 0x3f;
180*7c3d14c8STreehugger Robot }
181*7c3d14c8STreehugger Robot
182*7c3d14c8STreehugger Robot internal_memcpy(ctx->buffer, data, size);
183*7c3d14c8STreehugger Robot }
184*7c3d14c8STreehugger Robot
MD5_Final(unsigned char * result,MD5_CTX * ctx)185*7c3d14c8STreehugger Robot void MD5_Final(unsigned char *result, MD5_CTX *ctx) {
186*7c3d14c8STreehugger Robot ulong_t used, free;
187*7c3d14c8STreehugger Robot
188*7c3d14c8STreehugger Robot used = ctx->lo & 0x3f;
189*7c3d14c8STreehugger Robot
190*7c3d14c8STreehugger Robot ctx->buffer[used++] = 0x80;
191*7c3d14c8STreehugger Robot
192*7c3d14c8STreehugger Robot free = 64 - used;
193*7c3d14c8STreehugger Robot
194*7c3d14c8STreehugger Robot if (free < 8) {
195*7c3d14c8STreehugger Robot internal_memset(&ctx->buffer[used], 0, free);
196*7c3d14c8STreehugger Robot body(ctx, ctx->buffer, 64);
197*7c3d14c8STreehugger Robot used = 0;
198*7c3d14c8STreehugger Robot free = 64;
199*7c3d14c8STreehugger Robot }
200*7c3d14c8STreehugger Robot
201*7c3d14c8STreehugger Robot internal_memset(&ctx->buffer[used], 0, free - 8);
202*7c3d14c8STreehugger Robot
203*7c3d14c8STreehugger Robot ctx->lo <<= 3;
204*7c3d14c8STreehugger Robot ctx->buffer[56] = ctx->lo;
205*7c3d14c8STreehugger Robot ctx->buffer[57] = ctx->lo >> 8;
206*7c3d14c8STreehugger Robot ctx->buffer[58] = ctx->lo >> 16;
207*7c3d14c8STreehugger Robot ctx->buffer[59] = ctx->lo >> 24;
208*7c3d14c8STreehugger Robot ctx->buffer[60] = ctx->hi;
209*7c3d14c8STreehugger Robot ctx->buffer[61] = ctx->hi >> 8;
210*7c3d14c8STreehugger Robot ctx->buffer[62] = ctx->hi >> 16;
211*7c3d14c8STreehugger Robot ctx->buffer[63] = ctx->hi >> 24;
212*7c3d14c8STreehugger Robot
213*7c3d14c8STreehugger Robot body(ctx, ctx->buffer, 64);
214*7c3d14c8STreehugger Robot
215*7c3d14c8STreehugger Robot result[0] = ctx->a;
216*7c3d14c8STreehugger Robot result[1] = ctx->a >> 8;
217*7c3d14c8STreehugger Robot result[2] = ctx->a >> 16;
218*7c3d14c8STreehugger Robot result[3] = ctx->a >> 24;
219*7c3d14c8STreehugger Robot result[4] = ctx->b;
220*7c3d14c8STreehugger Robot result[5] = ctx->b >> 8;
221*7c3d14c8STreehugger Robot result[6] = ctx->b >> 16;
222*7c3d14c8STreehugger Robot result[7] = ctx->b >> 24;
223*7c3d14c8STreehugger Robot result[8] = ctx->c;
224*7c3d14c8STreehugger Robot result[9] = ctx->c >> 8;
225*7c3d14c8STreehugger Robot result[10] = ctx->c >> 16;
226*7c3d14c8STreehugger Robot result[11] = ctx->c >> 24;
227*7c3d14c8STreehugger Robot result[12] = ctx->d;
228*7c3d14c8STreehugger Robot result[13] = ctx->d >> 8;
229*7c3d14c8STreehugger Robot result[14] = ctx->d >> 16;
230*7c3d14c8STreehugger Robot result[15] = ctx->d >> 24;
231*7c3d14c8STreehugger Robot
232*7c3d14c8STreehugger Robot internal_memset(ctx, 0, sizeof(*ctx));
233*7c3d14c8STreehugger Robot }
234*7c3d14c8STreehugger Robot
md5_hash(const void * data,uptr size)235*7c3d14c8STreehugger Robot MD5Hash md5_hash(const void *data, uptr size) {
236*7c3d14c8STreehugger Robot MD5Hash res;
237*7c3d14c8STreehugger Robot MD5_CTX ctx;
238*7c3d14c8STreehugger Robot MD5_Init(&ctx);
239*7c3d14c8STreehugger Robot MD5_Update(&ctx, data, size);
240*7c3d14c8STreehugger Robot MD5_Final((unsigned char*)&res.hash[0], &ctx);
241*7c3d14c8STreehugger Robot return res;
242*7c3d14c8STreehugger Robot }
243*7c3d14c8STreehugger Robot } // namespace __tsan
244