Fixed two major problems
[hashcat.git] / OpenCL / m09720_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _OLDOFFICE01_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #define DGST_R0 0
12 #define DGST_R1 1
13 #define DGST_R2 2
14 #define DGST_R3 3
15
16 #include "include/kernel_functions.c"
17 #include "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/check_multi_comp4.c"
22
23 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
24 {
25   u32 a = digest[0];
26   u32 b = digest[1];
27   u32 c = digest[2];
28   u32 d = digest[3];
29
30   u32 w0_t = w0[0];
31   u32 w1_t = w0[1];
32   u32 w2_t = w0[2];
33   u32 w3_t = w0[3];
34   u32 w4_t = w1[0];
35   u32 w5_t = w1[1];
36   u32 w6_t = w1[2];
37   u32 w7_t = w1[3];
38   u32 w8_t = w2[0];
39   u32 w9_t = w2[1];
40   u32 wa_t = w2[2];
41   u32 wb_t = w2[3];
42   u32 wc_t = w3[0];
43   u32 wd_t = w3[1];
44   u32 we_t = w3[2];
45   u32 wf_t = w3[3];
46
47   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
48   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
49   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
50   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
51   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
52   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
53   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
54   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
55   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
56   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
57   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
58   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
59   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
60   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
61   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
62   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
63
64   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
65   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
66   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
67   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
68   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
69   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
70   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
71   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
72   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
73   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
74   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
75   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
76   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
77   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
78   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
79   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
80
81   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
82   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
83   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
84   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
85   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
86   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
87   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
88   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
89   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
90   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
91   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
92   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
93   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
94   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
95   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
96   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
97
98   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
99   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
100   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
101   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
102   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
103   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
104   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
105   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
106   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
107   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
108   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
109   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
110   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
111   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
112   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
113   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
114
115   digest[0] += a;
116   digest[1] += b;
117   digest[2] += c;
118   digest[3] += d;
119 }
120
121 static void gen336 (u32 digest_pre[4], u32 salt_buf[4], u32 digest[4])
122 {
123   u32 digest_t0[2];
124   u32 digest_t1[2];
125   u32 digest_t2[2];
126   u32 digest_t3[2];
127
128   digest_t0[0] = digest_pre[0];
129   digest_t0[1] = digest_pre[1] & 0xff;
130
131   digest_t1[0] =                       digest_pre[0] <<  8;
132   digest_t1[1] = digest_pre[0] >> 24 | digest_pre[1] <<  8;
133
134   digest_t2[0] =                       digest_pre[0] << 16;
135   digest_t2[1] = digest_pre[0] >> 16 | digest_pre[1] << 16;
136
137   digest_t3[0] =                       digest_pre[0] << 24;
138   digest_t3[1] = digest_pre[0] >>  8 | digest_pre[1] << 24;
139
140   u32 salt_buf_t0[4];
141   u32 salt_buf_t1[5];
142   u32 salt_buf_t2[5];
143   u32 salt_buf_t3[5];
144
145   salt_buf_t0[0] = salt_buf[0];
146   salt_buf_t0[1] = salt_buf[1];
147   salt_buf_t0[2] = salt_buf[2];
148   salt_buf_t0[3] = salt_buf[3];
149
150   salt_buf_t1[0] =                     salt_buf[0] <<  8;
151   salt_buf_t1[1] = salt_buf[0] >> 24 | salt_buf[1] <<  8;
152   salt_buf_t1[2] = salt_buf[1] >> 24 | salt_buf[2] <<  8;
153   salt_buf_t1[3] = salt_buf[2] >> 24 | salt_buf[3] <<  8;
154   salt_buf_t1[4] = salt_buf[3] >> 24;
155
156   salt_buf_t2[0] =                     salt_buf[0] << 16;
157   salt_buf_t2[1] = salt_buf[0] >> 16 | salt_buf[1] << 16;
158   salt_buf_t2[2] = salt_buf[1] >> 16 | salt_buf[2] << 16;
159   salt_buf_t2[3] = salt_buf[2] >> 16 | salt_buf[3] << 16;
160   salt_buf_t2[4] = salt_buf[3] >> 16;
161
162   salt_buf_t3[0] =                     salt_buf[0] << 24;
163   salt_buf_t3[1] = salt_buf[0] >>  8 | salt_buf[1] << 24;
164   salt_buf_t3[2] = salt_buf[1] >>  8 | salt_buf[2] << 24;
165   salt_buf_t3[3] = salt_buf[2] >>  8 | salt_buf[3] << 24;
166   salt_buf_t3[4] = salt_buf[3] >>  8;
167
168   u32 w0_t[4];
169   u32 w1_t[4];
170   u32 w2_t[4];
171   u32 w3_t[4];
172
173   // generate the 16 * 21 buffer
174
175   w0_t[0] = 0;
176   w0_t[1] = 0;
177   w0_t[2] = 0;
178   w0_t[3] = 0;
179   w1_t[0] = 0;
180   w1_t[1] = 0;
181   w1_t[2] = 0;
182   w1_t[3] = 0;
183   w2_t[0] = 0;
184   w2_t[1] = 0;
185   w2_t[2] = 0;
186   w2_t[3] = 0;
187   w3_t[0] = 0;
188   w3_t[1] = 0;
189   w3_t[2] = 0;
190   w3_t[3] = 0;
191
192   // 0..5
193   w0_t[0]  = digest_t0[0];
194   w0_t[1]  = digest_t0[1];
195
196   // 5..21
197   w0_t[1] |= salt_buf_t1[0];
198   w0_t[2]  = salt_buf_t1[1];
199   w0_t[3]  = salt_buf_t1[2];
200   w1_t[0]  = salt_buf_t1[3];
201   w1_t[1]  = salt_buf_t1[4];
202
203   // 21..26
204   w1_t[1] |= digest_t1[0];
205   w1_t[2]  = digest_t1[1];
206
207   // 26..42
208   w1_t[2] |= salt_buf_t2[0];
209   w1_t[3]  = salt_buf_t2[1];
210   w2_t[0]  = salt_buf_t2[2];
211   w2_t[1]  = salt_buf_t2[3];
212   w2_t[2]  = salt_buf_t2[4];
213
214   // 42..47
215   w2_t[2] |= digest_t2[0];
216   w2_t[3]  = digest_t2[1];
217
218   // 47..63
219   w2_t[3] |= salt_buf_t3[0];
220   w3_t[0]  = salt_buf_t3[1];
221   w3_t[1]  = salt_buf_t3[2];
222   w3_t[2]  = salt_buf_t3[3];
223   w3_t[3]  = salt_buf_t3[4];
224
225   // 63..
226
227   w3_t[3] |= digest_t3[0];
228
229   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
230
231   w0_t[0] = 0;
232   w0_t[1] = 0;
233   w0_t[2] = 0;
234   w0_t[3] = 0;
235   w1_t[0] = 0;
236   w1_t[1] = 0;
237   w1_t[2] = 0;
238   w1_t[3] = 0;
239   w2_t[0] = 0;
240   w2_t[1] = 0;
241   w2_t[2] = 0;
242   w2_t[3] = 0;
243   w3_t[0] = 0;
244   w3_t[1] = 0;
245   w3_t[2] = 0;
246   w3_t[3] = 0;
247
248   // 0..4
249   w0_t[0]  = digest_t3[1];
250
251   // 4..20
252   w0_t[1]  = salt_buf_t0[0];
253   w0_t[2]  = salt_buf_t0[1];
254   w0_t[3]  = salt_buf_t0[2];
255   w1_t[0]  = salt_buf_t0[3];
256
257   // 20..25
258   w1_t[1]  = digest_t0[0];
259   w1_t[2]  = digest_t0[1];
260
261   // 25..41
262   w1_t[2] |= salt_buf_t1[0];
263   w1_t[3]  = salt_buf_t1[1];
264   w2_t[0]  = salt_buf_t1[2];
265   w2_t[1]  = salt_buf_t1[3];
266   w2_t[2]  = salt_buf_t1[4];
267
268   // 41..46
269   w2_t[2] |= digest_t1[0];
270   w2_t[3]  = digest_t1[1];
271
272   // 46..62
273   w2_t[3] |= salt_buf_t2[0];
274   w3_t[0]  = salt_buf_t2[1];
275   w3_t[1]  = salt_buf_t2[2];
276   w3_t[2]  = salt_buf_t2[3];
277   w3_t[3]  = salt_buf_t2[4];
278
279   // 62..
280   w3_t[3] |= digest_t2[0];
281
282   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
283
284   w0_t[0] = 0;
285   w0_t[1] = 0;
286   w0_t[2] = 0;
287   w0_t[3] = 0;
288   w1_t[0] = 0;
289   w1_t[1] = 0;
290   w1_t[2] = 0;
291   w1_t[3] = 0;
292   w2_t[0] = 0;
293   w2_t[1] = 0;
294   w2_t[2] = 0;
295   w2_t[3] = 0;
296   w3_t[0] = 0;
297   w3_t[1] = 0;
298   w3_t[2] = 0;
299   w3_t[3] = 0;
300
301   // 0..3
302   w0_t[0]  = digest_t2[1];
303
304   // 3..19
305   w0_t[0] |= salt_buf_t3[0];
306   w0_t[1]  = salt_buf_t3[1];
307   w0_t[2]  = salt_buf_t3[2];
308   w0_t[3]  = salt_buf_t3[3];
309   w1_t[0]  = salt_buf_t3[4];
310
311   // 19..24
312   w1_t[0] |= digest_t3[0];
313   w1_t[1]  = digest_t3[1];
314
315   // 24..40
316   w1_t[2]  = salt_buf_t0[0];
317   w1_t[3]  = salt_buf_t0[1];
318   w2_t[0]  = salt_buf_t0[2];
319   w2_t[1]  = salt_buf_t0[3];
320
321   // 40..45
322   w2_t[2]  = digest_t0[0];
323   w2_t[3]  = digest_t0[1];
324
325   // 45..61
326   w2_t[3] |= salt_buf_t1[0];
327   w3_t[0]  = salt_buf_t1[1];
328   w3_t[1]  = salt_buf_t1[2];
329   w3_t[2]  = salt_buf_t1[3];
330   w3_t[3]  = salt_buf_t1[4];
331
332   // 61..
333   w3_t[3] |= digest_t1[0];
334
335   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
336
337   w0_t[0] = 0;
338   w0_t[1] = 0;
339   w0_t[2] = 0;
340   w0_t[3] = 0;
341   w1_t[0] = 0;
342   w1_t[1] = 0;
343   w1_t[2] = 0;
344   w1_t[3] = 0;
345   w2_t[0] = 0;
346   w2_t[1] = 0;
347   w2_t[2] = 0;
348   w2_t[3] = 0;
349   w3_t[0] = 0;
350   w3_t[1] = 0;
351   w3_t[2] = 0;
352   w3_t[3] = 0;
353
354   // 0..2
355   w0_t[0]  = digest_t1[1];
356
357   // 2..18
358   w0_t[0] |= salt_buf_t2[0];
359   w0_t[1]  = salt_buf_t2[1];
360   w0_t[2]  = salt_buf_t2[2];
361   w0_t[3]  = salt_buf_t2[3];
362   w1_t[0]  = salt_buf_t2[4];
363
364   // 18..23
365   w1_t[0] |= digest_t2[0];
366   w1_t[1]  = digest_t2[1];
367
368   // 23..39
369   w1_t[1] |= salt_buf_t3[0];
370   w1_t[2]  = salt_buf_t3[1];
371   w1_t[3]  = salt_buf_t3[2];
372   w2_t[0]  = salt_buf_t3[3];
373   w2_t[1]  = salt_buf_t3[4];
374
375   // 39..44
376   w2_t[1] |= digest_t3[0];
377   w2_t[2]  = digest_t3[1];
378
379   // 44..60
380   w2_t[3]  = salt_buf_t0[0];
381   w3_t[0]  = salt_buf_t0[1];
382   w3_t[1]  = salt_buf_t0[2];
383   w3_t[2]  = salt_buf_t0[3];
384
385   // 60..
386   w3_t[3]  = digest_t0[0];
387
388   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
389
390   w0_t[0] = 0;
391   w0_t[1] = 0;
392   w0_t[2] = 0;
393   w0_t[3] = 0;
394   w1_t[0] = 0;
395   w1_t[1] = 0;
396   w1_t[2] = 0;
397   w1_t[3] = 0;
398   w2_t[0] = 0;
399   w2_t[1] = 0;
400   w2_t[2] = 0;
401   w2_t[3] = 0;
402   w3_t[0] = 0;
403   w3_t[1] = 0;
404   w3_t[2] = 0;
405   w3_t[3] = 0;
406
407   // 0..1
408   w0_t[0]  = digest_t0[1];
409
410   // 1..17
411   w0_t[0] |= salt_buf_t1[0];
412   w0_t[1]  = salt_buf_t1[1];
413   w0_t[2]  = salt_buf_t1[2];
414   w0_t[3]  = salt_buf_t1[3];
415   w1_t[0]  = salt_buf_t1[4];
416
417   // 17..22
418   w1_t[0] |= digest_t1[0];
419   w1_t[1]  = digest_t1[1];
420
421   // 22..38
422   w1_t[1] |= salt_buf_t2[0];
423   w1_t[2]  = salt_buf_t2[1];
424   w1_t[3]  = salt_buf_t2[2];
425   w2_t[0]  = salt_buf_t2[3];
426   w2_t[1]  = salt_buf_t2[4];
427
428   // 38..43
429   w2_t[1] |= digest_t2[0];
430   w2_t[2]  = digest_t2[1];
431
432   // 43..59
433   w2_t[2] |= salt_buf_t3[0];
434   w2_t[3]  = salt_buf_t3[1];
435   w3_t[0]  = salt_buf_t3[2];
436   w3_t[1]  = salt_buf_t3[3];
437   w3_t[2]  = salt_buf_t3[4];
438
439   // 59..
440   w3_t[2] |= digest_t3[0];
441   w3_t[3]  = digest_t3[1];
442
443   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
444
445   w0_t[0]  = salt_buf_t0[0];
446   w0_t[1]  = salt_buf_t0[1];
447   w0_t[2]  = salt_buf_t0[2];
448   w0_t[3]  = salt_buf_t0[3];
449   w1_t[0]  = 0x80;
450   w1_t[1]  = 0;
451   w1_t[2]  = 0;
452   w1_t[3]  = 0;
453   w2_t[0]  = 0;
454   w2_t[1]  = 0;
455   w2_t[2]  = 0;
456   w2_t[3]  = 0;
457   w3_t[0]  = 0;
458   w3_t[1]  = 0;
459   w3_t[2]  = 21 * 16 * 8;
460   w3_t[3]  = 0;
461
462   md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
463 }
464
465 __kernel void m09720_m04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
466 {
467   /**
468    * modifier
469    */
470
471   const u32 lid = get_local_id (0);
472
473   /**
474    * base
475    */
476
477   const u32 gid = get_global_id (0);
478
479   if (gid >= gid_max) return;
480
481   u32 wordl0[4];
482
483   wordl0[0] = pws[gid].i[ 0];
484   wordl0[1] = pws[gid].i[ 1];
485   wordl0[2] = pws[gid].i[ 2];
486   wordl0[3] = pws[gid].i[ 3];
487
488   u32 wordl1[4];
489
490   wordl1[0] = pws[gid].i[ 4];
491   wordl1[1] = pws[gid].i[ 5];
492   wordl1[2] = pws[gid].i[ 6];
493   wordl1[3] = pws[gid].i[ 7];
494
495   u32 wordl2[4];
496
497   wordl2[0] = 0;
498   wordl2[1] = 0;
499   wordl2[2] = 0;
500   wordl2[3] = 0;
501
502   u32 wordl3[4];
503
504   wordl3[0] = 0;
505   wordl3[1] = 0;
506   wordl3[2] = 0;
507   wordl3[3] = 0;
508
509   const u32 pw_l_len = pws[gid].pw_len;
510
511   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
512   {
513     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
514   }
515
516   /**
517    * salt
518    */
519
520   u32 salt_buf[4];
521
522   salt_buf[0] = salt_bufs[salt_pos].salt_buf[0];
523   salt_buf[1] = salt_bufs[salt_pos].salt_buf[1];
524   salt_buf[2] = salt_bufs[salt_pos].salt_buf[2];
525   salt_buf[3] = salt_bufs[salt_pos].salt_buf[3];
526
527   /**
528    * loop
529    */
530
531   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
532   {
533     const u32 pw_r_len = combs_buf[il_pos].pw_len;
534
535     const u32 pw_len = pw_l_len + pw_r_len;
536
537     u32 wordr0[4];
538
539     wordr0[0] = combs_buf[il_pos].i[0];
540     wordr0[1] = combs_buf[il_pos].i[1];
541     wordr0[2] = combs_buf[il_pos].i[2];
542     wordr0[3] = combs_buf[il_pos].i[3];
543
544     u32 wordr1[4];
545
546     wordr1[0] = combs_buf[il_pos].i[4];
547     wordr1[1] = combs_buf[il_pos].i[5];
548     wordr1[2] = combs_buf[il_pos].i[6];
549     wordr1[3] = combs_buf[il_pos].i[7];
550
551     u32 wordr2[4];
552
553     wordr2[0] = 0;
554     wordr2[1] = 0;
555     wordr2[2] = 0;
556     wordr2[3] = 0;
557
558     u32 wordr3[4];
559
560     wordr3[0] = 0;
561     wordr3[1] = 0;
562     wordr3[2] = 0;
563     wordr3[3] = 0;
564
565     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
566     {
567       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
568     }
569
570     u32 w0[4];
571
572     w0[0] = wordl0[0] | wordr0[0];
573     w0[1] = wordl0[1] | wordr0[1];
574     w0[2] = wordl0[2] | wordr0[2];
575     w0[3] = wordl0[3] | wordr0[3];
576
577     u32 w1[4];
578
579     w1[0] = wordl1[0] | wordr1[0];
580     w1[1] = wordl1[1] | wordr1[1];
581     w1[2] = wordl1[2] | wordr1[2];
582     w1[3] = wordl1[3] | wordr1[3];
583
584     u32 w2[4];
585
586     w2[0] = wordl2[0] | wordr2[0];
587     w2[1] = wordl2[1] | wordr2[1];
588     w2[2] = wordl2[2] | wordr2[2];
589     w2[3] = wordl2[3] | wordr2[3];
590
591     u32 w3[4];
592
593     w3[0] = wordl3[0] | wordr3[0];
594     w3[1] = wordl3[1] | wordr3[1];
595     w3[2] = 0;
596     w3[3] = 0;
597
598     append_0x80_2x4 (w0, w1, pw_len);
599
600     u32 w0_t[4];
601     u32 w1_t[4];
602     u32 w2_t[4];
603     u32 w3_t[4];
604
605     make_unicode (w0, w0_t, w1_t);
606     make_unicode (w1, w2_t, w3_t);
607
608     w3_t[2] = pw_len * 8 * 2;
609
610     u32 digest_pre[4];
611
612     digest_pre[0] = MD5M_A;
613     digest_pre[1] = MD5M_B;
614     digest_pre[2] = MD5M_C;
615     digest_pre[3] = MD5M_D;
616
617     md5_transform (w0_t, w1_t, w2_t, w3_t, digest_pre);
618
619     digest_pre[0] &= 0xffffffff;
620     digest_pre[1] &= 0x000000ff;
621     digest_pre[2] &= 0x00000000;
622     digest_pre[3] &= 0x00000000;
623
624     u32 digest[4];
625
626     digest[0] = MD5M_A;
627     digest[1] = MD5M_B;
628     digest[2] = MD5M_C;
629     digest[3] = MD5M_D;
630
631     gen336 (digest_pre, salt_buf, digest);
632
633     u32 a = digest[0];
634     u32 b = digest[1] & 0xff;
635
636     const u32 r0 = a;
637     const u32 r1 = b;
638     const u32 r2 = 0;
639     const u32 r3 = 0;
640
641     #include COMPARE_M
642   }
643 }
644
645 __kernel void m09720_m08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
646 {
647 }
648
649 __kernel void m09720_m16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
650 {
651 }
652
653 __kernel void m09720_s04 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
654 {
655   /**
656    * modifier
657    */
658
659   const u32 lid = get_local_id (0);
660
661   /**
662    * base
663    */
664
665   const u32 gid = get_global_id (0);
666
667   if (gid >= gid_max) return;
668
669   u32 wordl0[4];
670
671   wordl0[0] = pws[gid].i[ 0];
672   wordl0[1] = pws[gid].i[ 1];
673   wordl0[2] = pws[gid].i[ 2];
674   wordl0[3] = pws[gid].i[ 3];
675
676   u32 wordl1[4];
677
678   wordl1[0] = pws[gid].i[ 4];
679   wordl1[1] = pws[gid].i[ 5];
680   wordl1[2] = pws[gid].i[ 6];
681   wordl1[3] = pws[gid].i[ 7];
682
683   u32 wordl2[4];
684
685   wordl2[0] = 0;
686   wordl2[1] = 0;
687   wordl2[2] = 0;
688   wordl2[3] = 0;
689
690   u32 wordl3[4];
691
692   wordl3[0] = 0;
693   wordl3[1] = 0;
694   wordl3[2] = 0;
695   wordl3[3] = 0;
696
697   const u32 pw_l_len = pws[gid].pw_len;
698
699   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
700   {
701     switch_buffer_by_offset_le (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
702   }
703
704   /**
705    * digest
706    */
707
708   const u32 search[4] =
709   {
710     digests_buf[digests_offset].digest_buf[DGST_R0],
711     digests_buf[digests_offset].digest_buf[DGST_R1],
712     digests_buf[digests_offset].digest_buf[DGST_R2],
713     digests_buf[digests_offset].digest_buf[DGST_R3]
714   };
715
716   /**
717    * salt
718    */
719
720   u32 salt_buf[4];
721
722   salt_buf[0] = salt_bufs[salt_pos].salt_buf[0];
723   salt_buf[1] = salt_bufs[salt_pos].salt_buf[1];
724   salt_buf[2] = salt_bufs[salt_pos].salt_buf[2];
725   salt_buf[3] = salt_bufs[salt_pos].salt_buf[3];
726
727   /**
728    * loop
729    */
730
731   for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
732   {
733     const u32 pw_r_len = combs_buf[il_pos].pw_len;
734
735     const u32 pw_len = pw_l_len + pw_r_len;
736
737     u32 wordr0[4];
738
739     wordr0[0] = combs_buf[il_pos].i[0];
740     wordr0[1] = combs_buf[il_pos].i[1];
741     wordr0[2] = combs_buf[il_pos].i[2];
742     wordr0[3] = combs_buf[il_pos].i[3];
743
744     u32 wordr1[4];
745
746     wordr1[0] = combs_buf[il_pos].i[4];
747     wordr1[1] = combs_buf[il_pos].i[5];
748     wordr1[2] = combs_buf[il_pos].i[6];
749     wordr1[3] = combs_buf[il_pos].i[7];
750
751     u32 wordr2[4];
752
753     wordr2[0] = 0;
754     wordr2[1] = 0;
755     wordr2[2] = 0;
756     wordr2[3] = 0;
757
758     u32 wordr3[4];
759
760     wordr3[0] = 0;
761     wordr3[1] = 0;
762     wordr3[2] = 0;
763     wordr3[3] = 0;
764
765     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
766     {
767       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
768     }
769
770     u32 w0[4];
771
772     w0[0] = wordl0[0] | wordr0[0];
773     w0[1] = wordl0[1] | wordr0[1];
774     w0[2] = wordl0[2] | wordr0[2];
775     w0[3] = wordl0[3] | wordr0[3];
776
777     u32 w1[4];
778
779     w1[0] = wordl1[0] | wordr1[0];
780     w1[1] = wordl1[1] | wordr1[1];
781     w1[2] = wordl1[2] | wordr1[2];
782     w1[3] = wordl1[3] | wordr1[3];
783
784     u32 w2[4];
785
786     w2[0] = wordl2[0] | wordr2[0];
787     w2[1] = wordl2[1] | wordr2[1];
788     w2[2] = wordl2[2] | wordr2[2];
789     w2[3] = wordl2[3] | wordr2[3];
790
791     u32 w3[4];
792
793     w3[0] = wordl3[0] | wordr3[0];
794     w3[1] = wordl3[1] | wordr3[1];
795     w3[2] = 0;
796     w3[3] = 0;
797
798     append_0x80_2x4 (w0, w1, pw_len);
799
800     u32 w0_t[4];
801     u32 w1_t[4];
802     u32 w2_t[4];
803     u32 w3_t[4];
804
805     make_unicode (w0, w0_t, w1_t);
806     make_unicode (w1, w2_t, w3_t);
807
808     w3_t[2] = pw_len * 8 * 2;
809
810     u32 digest_pre[4];
811
812     digest_pre[0] = MD5M_A;
813     digest_pre[1] = MD5M_B;
814     digest_pre[2] = MD5M_C;
815     digest_pre[3] = MD5M_D;
816
817     md5_transform (w0_t, w1_t, w2_t, w3_t, digest_pre);
818
819     digest_pre[0] &= 0xffffffff;
820     digest_pre[1] &= 0x000000ff;
821     digest_pre[2] &= 0x00000000;
822     digest_pre[3] &= 0x00000000;
823
824     u32 digest[4];
825
826     digest[0] = MD5M_A;
827     digest[1] = MD5M_B;
828     digest[2] = MD5M_C;
829     digest[3] = MD5M_D;
830
831     gen336 (digest_pre, salt_buf, digest);
832
833     u32 a = digest[0];
834     u32 b = digest[1] & 0xff;
835
836     const u32 r0 = a;
837     const u32 r1 = b;
838     const u32 r2 = 0;
839     const u32 r3 = 0;
840
841     #include COMPARE_S
842   }
843 }
844
845 __kernel void m09720_s08 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
846 {
847 }
848
849 __kernel void m09720_s16 (__global pw_t *pws, __global kernel_rule_t *rules_buf, __global comb_t *combs_buf, __global bf_t *bfs_buf, __global void *tmps, __global void *hooks, __global u32 *bitmaps_buf_s1_a, __global u32 *bitmaps_buf_s1_b, __global u32 *bitmaps_buf_s1_c, __global u32 *bitmaps_buf_s1_d, __global u32 *bitmaps_buf_s2_a, __global u32 *bitmaps_buf_s2_b, __global u32 *bitmaps_buf_s2_c, __global u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global digest_t *digests_buf, __global u32 *hashes_shown, __global salt_t *salt_bufs, __global oldoffice01_t *oldoffice01_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV_buf, const u32 bitmap_mask, const u32 bitmap_shift1, const u32 bitmap_shift2, const u32 salt_pos, const u32 loop_pos, const u32 loop_cnt, const u32 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
850 {
851 }