Zero pws_buf before reuse
[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 #define NEW_SIMD_CODE
9
10 #include "include/constants.h"
11 #include "include/kernel_vendor.h"
12
13 #define DGST_R0 0
14 #define DGST_R1 1
15 #define DGST_R2 2
16 #define DGST_R3 3
17
18 #include "include/kernel_functions.c"
19 #include "OpenCL/types_ocl.c"
20 #include "OpenCL/common.c"
21 #include "OpenCL/simd.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 combs_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 pws0[4] = { 0 };
482   u32 pws1[4] = { 0 };
483
484   pws0[0] = pws[gid].i[0];
485   pws0[1] = pws[gid].i[1];
486   pws0[2] = pws[gid].i[2];
487   pws0[3] = pws[gid].i[3];
488   pws1[0] = pws[gid].i[4];
489   pws1[1] = pws[gid].i[5];
490   pws1[2] = pws[gid].i[6];
491   pws1[3] = pws[gid].i[7];
492
493   const u32 pw_l_len = pws[gid].pw_len;
494
495   /**
496    * salt
497    */
498
499   u32 salt_buf[4];
500
501   salt_buf[0] = salt_bufs[salt_pos].salt_buf[0];
502   salt_buf[1] = salt_bufs[salt_pos].salt_buf[1];
503   salt_buf[2] = salt_bufs[salt_pos].salt_buf[2];
504   salt_buf[3] = salt_bufs[salt_pos].salt_buf[3];
505
506   /**
507    * loop
508    */
509
510   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
511   {
512     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
513
514     const u32x pw_len = pw_l_len + pw_r_len;
515
516     u32x wordr0[4] = { 0 };
517     u32x wordr1[4] = { 0 };
518     u32x wordr2[4] = { 0 };
519     u32x wordr3[4] = { 0 };
520
521     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
522     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
523     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
524     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
525     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
526     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
527     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
528     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
529
530     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
531     {
532       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
533     }
534
535     u32x w0[4];
536
537     w0[0] = wordl0[0] | wordr0[0];
538     w0[1] = wordl0[1] | wordr0[1];
539     w0[2] = wordl0[2] | wordr0[2];
540     w0[3] = wordl0[3] | wordr0[3];
541
542     u32x w1[4];
543
544     w1[0] = wordl1[0] | wordr1[0];
545     w1[1] = wordl1[1] | wordr1[1];
546     w1[2] = wordl1[2] | wordr1[2];
547     w1[3] = wordl1[3] | wordr1[3];
548
549     u32x w2[4];
550
551     w2[0] = wordl2[0] | wordr2[0];
552     w2[1] = wordl2[1] | wordr2[1];
553     w2[2] = wordl2[2] | wordr2[2];
554     w2[3] = wordl2[3] | wordr2[3];
555
556     u32x w3[4];
557
558     w3[0] = wordl3[0] | wordr3[0];
559     w3[1] = wordl3[1] | wordr3[1];
560     w3[2] = 0;
561     w3[3] = 0;
562
563     append_0x80_2x4 (w0, w1, pw_len);
564
565     u32x w0_t[4];
566     u32x w1_t[4];
567     u32x w2_t[4];
568     u32x w3_t[4];
569
570     make_unicode (w0, w0_t, w1_t);
571     make_unicode (w1, w2_t, w3_t);
572
573     w3_t[2] = pw_len * 8 * 2;
574
575     u32 digest_pre[4];
576
577     digest_pre[0] = MD5M_A;
578     digest_pre[1] = MD5M_B;
579     digest_pre[2] = MD5M_C;
580     digest_pre[3] = MD5M_D;
581
582     md5_transform (w0_t, w1_t, w2_t, w3_t, digest_pre);
583
584     digest_pre[0] &= 0xffffffff;
585     digest_pre[1] &= 0x000000ff;
586     digest_pre[2] &= 0x00000000;
587     digest_pre[3] &= 0x00000000;
588
589     u32 digest[4];
590
591     digest[0] = MD5M_A;
592     digest[1] = MD5M_B;
593     digest[2] = MD5M_C;
594     digest[3] = MD5M_D;
595
596     gen336 (digest_pre, salt_buf, digest);
597
598     u32x a = digest[0];
599     u32x b = digest[1] & 0xff;
600
601     const u32 r0 = a;
602     const u32 r1 = b;
603     const u32 r2 = 0;
604     const u32 r3 = 0;
605
606     #include COMPARE_M
607   }
608 }
609
610 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
611 {
612 }
613
614 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
615 {
616 }
617
618 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
619 {
620   /**
621    * modifier
622    */
623
624   const u32 lid = get_local_id (0);
625
626   /**
627    * base
628    */
629
630   const u32 gid = get_global_id (0);
631
632   if (gid >= gid_max) return;
633
634   u32 pws0[4] = { 0 };
635   u32 pws1[4] = { 0 };
636
637   pws0[0] = pws[gid].i[0];
638   pws0[1] = pws[gid].i[1];
639   pws0[2] = pws[gid].i[2];
640   pws0[3] = pws[gid].i[3];
641   pws1[0] = pws[gid].i[4];
642   pws1[1] = pws[gid].i[5];
643   pws1[2] = pws[gid].i[6];
644   pws1[3] = pws[gid].i[7];
645
646   const u32 pw_l_len = pws[gid].pw_len;
647
648   /**
649    * digest
650    */
651
652   const u32 search[4] =
653   {
654     digests_buf[digests_offset].digest_buf[DGST_R0],
655     digests_buf[digests_offset].digest_buf[DGST_R1],
656     digests_buf[digests_offset].digest_buf[DGST_R2],
657     digests_buf[digests_offset].digest_buf[DGST_R3]
658   };
659
660   /**
661    * salt
662    */
663
664   u32 salt_buf[4];
665
666   salt_buf[0] = salt_bufs[salt_pos].salt_buf[0];
667   salt_buf[1] = salt_bufs[salt_pos].salt_buf[1];
668   salt_buf[2] = salt_bufs[salt_pos].salt_buf[2];
669   salt_buf[3] = salt_bufs[salt_pos].salt_buf[3];
670
671   /**
672    * loop
673    */
674
675   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
676   {
677     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
678
679     const u32x pw_len = pw_l_len + pw_r_len;
680
681     u32x wordr0[4] = { 0 };
682     u32x wordr1[4] = { 0 };
683     u32x wordr2[4] = { 0 };
684     u32x wordr3[4] = { 0 };
685
686     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
687     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
688     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
689     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
690     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
691     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
692     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
693     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
694
695     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
696     {
697       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
698     }
699
700     u32x w0[4];
701
702     w0[0] = wordl0[0] | wordr0[0];
703     w0[1] = wordl0[1] | wordr0[1];
704     w0[2] = wordl0[2] | wordr0[2];
705     w0[3] = wordl0[3] | wordr0[3];
706
707     u32x w1[4];
708
709     w1[0] = wordl1[0] | wordr1[0];
710     w1[1] = wordl1[1] | wordr1[1];
711     w1[2] = wordl1[2] | wordr1[2];
712     w1[3] = wordl1[3] | wordr1[3];
713
714     u32x w2[4];
715
716     w2[0] = wordl2[0] | wordr2[0];
717     w2[1] = wordl2[1] | wordr2[1];
718     w2[2] = wordl2[2] | wordr2[2];
719     w2[3] = wordl2[3] | wordr2[3];
720
721     u32x w3[4];
722
723     w3[0] = wordl3[0] | wordr3[0];
724     w3[1] = wordl3[1] | wordr3[1];
725     w3[2] = 0;
726     w3[3] = 0;
727
728     append_0x80_2x4 (w0, w1, pw_len);
729
730     u32x w0_t[4];
731     u32x w1_t[4];
732     u32x w2_t[4];
733     u32x w3_t[4];
734
735     make_unicode (w0, w0_t, w1_t);
736     make_unicode (w1, w2_t, w3_t);
737
738     w3_t[2] = pw_len * 8 * 2;
739
740     u32 digest_pre[4];
741
742     digest_pre[0] = MD5M_A;
743     digest_pre[1] = MD5M_B;
744     digest_pre[2] = MD5M_C;
745     digest_pre[3] = MD5M_D;
746
747     md5_transform (w0_t, w1_t, w2_t, w3_t, digest_pre);
748
749     digest_pre[0] &= 0xffffffff;
750     digest_pre[1] &= 0x000000ff;
751     digest_pre[2] &= 0x00000000;
752     digest_pre[3] &= 0x00000000;
753
754     u32 digest[4];
755
756     digest[0] = MD5M_A;
757     digest[1] = MD5M_B;
758     digest[2] = MD5M_C;
759     digest[3] = MD5M_D;
760
761     gen336 (digest_pre, salt_buf, digest);
762
763     u32x a = digest[0];
764     u32x b = digest[1] & 0xff;
765
766     const u32 r0 = a;
767     const u32 r1 = b;
768     const u32 r2 = 0;
769     const u32 r3 = 0;
770
771     #include COMPARE_S
772   }
773 }
774
775 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
776 {
777 }
778
779 __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 combs_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
780 {
781 }