- Dropped all vector code since new GPU's are all scalar, makes the code much easier
[hashcat.git] / OpenCL / m10400_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
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 "types_ocl.c"
18 #include "common.c"
19 #include "include/rp_gpu.h"
20 #include "rp.c"
21
22 #define COMPARE_S "check_single_comp4.c"
23 #define COMPARE_M "check_multi_comp4.c"
24
25 __constant u32 padding[8] =
26 {
27   0x5e4ebf28,
28   0x418a754e,
29   0x564e0064,
30   0x0801faff,
31   0xb6002e2e,
32   0x803e68d0,
33   0xfea90c2f,
34   0x7a695364
35 };
36
37 typedef struct
38 {
39   u8 S[256];
40
41   u32 wtf_its_faster;
42
43 } RC4_KEY;
44
45 static void swap (__local RC4_KEY *rc4_key, const u8 i, const u8 j)
46 {
47   u8 tmp;
48
49   tmp           = rc4_key->S[i];
50   rc4_key->S[i] = rc4_key->S[j];
51   rc4_key->S[j] = tmp;
52 }
53
54 static void rc4_init_16 (__local RC4_KEY *rc4_key, const u32 data[4])
55 {
56   u32 v = 0x03020100;
57   u32 a = 0x04040404;
58
59   __local u32 *ptr = (__local u32 *) rc4_key->S;
60
61   #pragma unroll
62   for (u32 i = 0; i < 64; i++)
63   {
64     ptr[i] = v; v += a;
65   }
66
67   const u32 d0 = data[0] >>  0;
68   const u32 d1 = data[0] >>  8;
69   const u32 d2 = data[0] >> 16;
70   const u32 d3 = data[0] >> 24;
71   const u32 d4 = data[1] >>  0;
72
73   u32 j = 0;
74
75   #pragma unroll
76   for (u32 i = 0; i < 255; i += 5)
77   {
78     j += rc4_key->S[i + 0] + d0; swap (rc4_key, i + 0, j);
79     j += rc4_key->S[i + 1] + d1; swap (rc4_key, i + 1, j);
80     j += rc4_key->S[i + 2] + d2; swap (rc4_key, i + 2, j);
81     j += rc4_key->S[i + 3] + d3; swap (rc4_key, i + 3, j);
82     j += rc4_key->S[i + 4] + d4; swap (rc4_key, i + 4, j);
83   }
84
85   j += rc4_key->S[255] + d0; swap (rc4_key, 255, j);
86 }
87
88 static u8 rc4_next_16 (__local RC4_KEY *rc4_key, u8 i, u8 j, __constant u32 in[4], u32 out[4])
89 {
90   #pragma unroll 4
91   for (u32 k = 0; k < 4; k++)
92   {
93     u32 xor4 = 0;
94
95     u8 idx;
96
97     i += 1;
98     j += rc4_key->S[i];
99
100     swap (rc4_key, i, j);
101
102     idx = rc4_key->S[i] + rc4_key->S[j];
103
104     xor4 |= rc4_key->S[idx] <<  0;
105
106     i += 1;
107     j += rc4_key->S[i];
108
109     swap (rc4_key, i, j);
110
111     idx = rc4_key->S[i] + rc4_key->S[j];
112
113     xor4 |= rc4_key->S[idx] <<  8;
114
115     i += 1;
116     j += rc4_key->S[i];
117
118     swap (rc4_key, i, j);
119
120     idx = rc4_key->S[i] + rc4_key->S[j];
121
122     xor4 |= rc4_key->S[idx] << 16;
123
124     i += 1;
125     j += rc4_key->S[i];
126
127     swap (rc4_key, i, j);
128
129     idx = rc4_key->S[i] + rc4_key->S[j];
130
131     xor4 |= rc4_key->S[idx] << 24;
132
133     out[k] = in[k] ^ xor4;
134   }
135
136   return j;
137 }
138
139 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
140 {
141   u32 a = digest[0];
142   u32 b = digest[1];
143   u32 c = digest[2];
144   u32 d = digest[3];
145
146   u32 w0_t = w0[0];
147   u32 w1_t = w0[1];
148   u32 w2_t = w0[2];
149   u32 w3_t = w0[3];
150   u32 w4_t = w1[0];
151   u32 w5_t = w1[1];
152   u32 w6_t = w1[2];
153   u32 w7_t = w1[3];
154   u32 w8_t = w2[0];
155   u32 w9_t = w2[1];
156   u32 wa_t = w2[2];
157   u32 wb_t = w2[3];
158   u32 wc_t = w3[0];
159   u32 wd_t = w3[1];
160   u32 we_t = w3[2];
161   u32 wf_t = w3[3];
162
163   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
164   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
165   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
166   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
167   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
168   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
169   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
170   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
171   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
172   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
173   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
174   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
175   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
176   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
177   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
178   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
179
180   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
181   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
182   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
183   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
184   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
185   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
186   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
187   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
188   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
189   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
190   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
191   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
192   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
193   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
194   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
195   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
196
197   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
198   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
199   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
200   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
201   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
202   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
203   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
204   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
205   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
206   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
207   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
208   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
209   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
210   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
211   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
212   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
213
214   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
215   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
216   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
217   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
218   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
219   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
220   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
221   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
222   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
223   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
224   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
225   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
226   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
227   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
228   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
229   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
230
231   digest[0] += a;
232   digest[1] += b;
233   digest[2] += c;
234   digest[3] += d;
235 }
236
237 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_m04 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
238 {
239   /**
240    * modifier
241    */
242
243   const u32 lid = get_local_id (0);
244
245   /**
246    * base
247    */
248
249   const u32 gid = get_global_id (0);
250
251   if (gid >= gid_max) return;
252
253   u32 pw_buf0[4];
254
255   pw_buf0[0] = pws[gid].i[ 0];
256   pw_buf0[1] = pws[gid].i[ 1];
257   pw_buf0[2] = pws[gid].i[ 2];
258   pw_buf0[3] = pws[gid].i[ 3];
259
260   u32 pw_buf1[4];
261
262   pw_buf1[0] = pws[gid].i[ 4];
263   pw_buf1[1] = pws[gid].i[ 5];
264   pw_buf1[2] = pws[gid].i[ 6];
265   pw_buf1[3] = pws[gid].i[ 7];
266
267   const u32 pw_len = pws[gid].pw_len;
268
269   /**
270    * key
271    */
272
273   __local RC4_KEY rc4_keys[64];
274
275   __local RC4_KEY *rc4_key = &rc4_keys[lid];
276
277   /**
278    * U_buf
279    */
280
281   u32 o_buf[8];
282
283   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
284   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
285   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
286   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
287   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
288   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
289   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
290   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
291
292   u32 P = pdf_bufs[salt_pos].P;
293
294   u32 id_buf[4];
295
296   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
297   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
298   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
299   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
300
301   /**
302    * loop
303    */
304
305   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
306   {
307     u32 w0[4];
308
309     w0[0] = pw_buf0[0];
310     w0[1] = pw_buf0[1];
311     w0[2] = pw_buf0[2];
312     w0[3] = pw_buf0[3];
313
314     u32 w1[4];
315
316     w1[0] = pw_buf1[0];
317     w1[1] = pw_buf1[1];
318     w1[2] = pw_buf1[2];
319     w1[3] = pw_buf1[3];
320
321     u32 w2[4];
322
323     w2[0] = 0;
324     w2[1] = 0;
325     w2[2] = 0;
326     w2[3] = 0;
327
328     u32 w3[4];
329
330     w3[0] = 0;
331     w3[1] = 0;
332     w3[2] = 0;
333     w3[3] = 0;
334
335     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
336
337     u32 w0_t[4];
338     u32 w1_t[4];
339     u32 w2_t[4];
340     u32 w3_t[4];
341
342     // max length supported by pdf11 is 32
343
344     w0_t[0] = padding[0];
345     w0_t[1] = padding[1];
346     w0_t[2] = padding[2];
347     w0_t[3] = padding[3];
348     w1_t[0] = padding[4];
349     w1_t[1] = padding[5];
350     w1_t[2] = padding[6];
351     w1_t[3] = padding[7];
352     w2_t[0] = 0;
353     w2_t[1] = 0;
354     w2_t[2] = 0;
355     w2_t[3] = 0;
356     w3_t[0] = 0;
357     w3_t[1] = 0;
358     w3_t[2] = 0;
359     w3_t[3] = 0;
360
361     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
362
363     // add password
364     // truncate at 32 is wanted, not a bug!
365     // add o_buf
366
367     w0_t[0] |= w0[0];
368     w0_t[1] |= w0[1];
369     w0_t[2] |= w0[2];
370     w0_t[3] |= w0[3];
371     w1_t[0] |= w1[0];
372     w1_t[1] |= w1[1];
373     w1_t[2] |= w1[2];
374     w1_t[3] |= w1[3];
375     w2_t[0]  = o_buf[0];
376     w2_t[1]  = o_buf[1];
377     w2_t[2]  = o_buf[2];
378     w2_t[3]  = o_buf[3];
379     w3_t[0]  = o_buf[4];
380     w3_t[1]  = o_buf[5];
381     w3_t[2]  = o_buf[6];
382     w3_t[3]  = o_buf[7];
383
384     u32 digest[4];
385
386     digest[0] = MD5M_A;
387     digest[1] = MD5M_B;
388     digest[2] = MD5M_C;
389     digest[3] = MD5M_D;
390
391     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
392
393     w0_t[0] = P;
394     w0_t[1] = id_buf[0];
395     w0_t[2] = id_buf[1];
396     w0_t[3] = id_buf[2];
397     w1_t[0] = id_buf[3];
398     w1_t[1] = 0x80;
399     w1_t[2] = 0;
400     w1_t[3] = 0;
401     w2_t[0] = 0;
402     w2_t[1] = 0;
403     w2_t[2] = 0;
404     w2_t[3] = 0;
405     w3_t[0] = 0;
406     w3_t[1] = 0;
407     w3_t[2] = 84 * 8;
408     w3_t[3] = 0;
409
410     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
411
412     // now the RC4 part
413
414     u32 key[4];
415
416     key[0] = digest[0];
417     key[1] = digest[1] & 0xff;
418     key[2] = 0;
419     key[3] = 0;
420
421     rc4_init_16 (rc4_key, key);
422
423     u32 out[4];
424
425     rc4_next_16 (rc4_key, 0, 0, padding, out);
426
427     const u32 r0 = out[0];
428     const u32 r1 = out[1];
429     const u32 r2 = out[2];
430     const u32 r3 = out[3];
431
432     #include COMPARE_M
433   }
434 }
435
436 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_m08 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
437 {
438 }
439
440 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_m16 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
441 {
442 }
443
444 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_s04 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
445 {
446   /**
447    * modifier
448    */
449
450   const u32 lid = get_local_id (0);
451
452   /**
453    * base
454    */
455
456   const u32 gid = get_global_id (0);
457
458   if (gid >= gid_max) return;
459
460   u32 pw_buf0[4];
461
462   pw_buf0[0] = pws[gid].i[ 0];
463   pw_buf0[1] = pws[gid].i[ 1];
464   pw_buf0[2] = pws[gid].i[ 2];
465   pw_buf0[3] = pws[gid].i[ 3];
466
467   u32 pw_buf1[4];
468
469   pw_buf1[0] = pws[gid].i[ 4];
470   pw_buf1[1] = pws[gid].i[ 5];
471   pw_buf1[2] = pws[gid].i[ 6];
472   pw_buf1[3] = pws[gid].i[ 7];
473
474   const u32 pw_len = pws[gid].pw_len;
475
476   /**
477    * key
478    */
479
480   __local RC4_KEY rc4_keys[64];
481
482   __local RC4_KEY *rc4_key = &rc4_keys[lid];
483
484   /**
485    * digest
486    */
487
488   const u32 search[4] =
489   {
490     digests_buf[digests_offset].digest_buf[DGST_R0],
491     digests_buf[digests_offset].digest_buf[DGST_R1],
492     digests_buf[digests_offset].digest_buf[DGST_R2],
493     digests_buf[digests_offset].digest_buf[DGST_R3]
494   };
495
496   /**
497    * U_buf
498    */
499
500   u32 o_buf[8];
501
502   o_buf[0] = pdf_bufs[salt_pos].o_buf[0];
503   o_buf[1] = pdf_bufs[salt_pos].o_buf[1];
504   o_buf[2] = pdf_bufs[salt_pos].o_buf[2];
505   o_buf[3] = pdf_bufs[salt_pos].o_buf[3];
506   o_buf[4] = pdf_bufs[salt_pos].o_buf[4];
507   o_buf[5] = pdf_bufs[salt_pos].o_buf[5];
508   o_buf[6] = pdf_bufs[salt_pos].o_buf[6];
509   o_buf[7] = pdf_bufs[salt_pos].o_buf[7];
510
511   u32 P = pdf_bufs[salt_pos].P;
512
513   u32 id_buf[4];
514
515   id_buf[0] = pdf_bufs[salt_pos].id_buf[0];
516   id_buf[1] = pdf_bufs[salt_pos].id_buf[1];
517   id_buf[2] = pdf_bufs[salt_pos].id_buf[2];
518   id_buf[3] = pdf_bufs[salt_pos].id_buf[3];
519
520   /**
521    * loop
522    */
523
524   for (u32 il_pos = 0; il_pos < rules_cnt; il_pos++)
525   {
526     u32 w0[4];
527
528     w0[0] = pw_buf0[0];
529     w0[1] = pw_buf0[1];
530     w0[2] = pw_buf0[2];
531     w0[3] = pw_buf0[3];
532
533     u32 w1[4];
534
535     w1[0] = pw_buf1[0];
536     w1[1] = pw_buf1[1];
537     w1[2] = pw_buf1[2];
538     w1[3] = pw_buf1[3];
539
540     u32 w2[4];
541
542     w2[0] = 0;
543     w2[1] = 0;
544     w2[2] = 0;
545     w2[3] = 0;
546
547     u32 w3[4];
548
549     w3[0] = 0;
550     w3[1] = 0;
551     w3[2] = 0;
552     w3[3] = 0;
553
554     const u32 out_len = apply_rules (rules_buf[il_pos].cmds, w0, w1, pw_len);
555
556     u32 w0_t[4];
557     u32 w1_t[4];
558     u32 w2_t[4];
559     u32 w3_t[4];
560
561     // max length supported by pdf11 is 32
562
563     w0_t[0] = padding[0];
564     w0_t[1] = padding[1];
565     w0_t[2] = padding[2];
566     w0_t[3] = padding[3];
567     w1_t[0] = padding[4];
568     w1_t[1] = padding[5];
569     w1_t[2] = padding[6];
570     w1_t[3] = padding[7];
571     w2_t[0] = 0;
572     w2_t[1] = 0;
573     w2_t[2] = 0;
574     w2_t[3] = 0;
575     w3_t[0] = 0;
576     w3_t[1] = 0;
577     w3_t[2] = 0;
578     w3_t[3] = 0;
579
580     switch_buffer_by_offset (w0_t, w1_t, w2_t, w3_t, pw_len);
581
582     // add password
583     // truncate at 32 is wanted, not a bug!
584     // add o_buf
585
586     w0_t[0] |= w0[0];
587     w0_t[1] |= w0[1];
588     w0_t[2] |= w0[2];
589     w0_t[3] |= w0[3];
590     w1_t[0] |= w1[0];
591     w1_t[1] |= w1[1];
592     w1_t[2] |= w1[2];
593     w1_t[3] |= w1[3];
594     w2_t[0]  = o_buf[0];
595     w2_t[1]  = o_buf[1];
596     w2_t[2]  = o_buf[2];
597     w2_t[3]  = o_buf[3];
598     w3_t[0]  = o_buf[4];
599     w3_t[1]  = o_buf[5];
600     w3_t[2]  = o_buf[6];
601     w3_t[3]  = o_buf[7];
602
603     u32 digest[4];
604
605     digest[0] = MD5M_A;
606     digest[1] = MD5M_B;
607     digest[2] = MD5M_C;
608     digest[3] = MD5M_D;
609
610     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
611
612     w0_t[0] = P;
613     w0_t[1] = id_buf[0];
614     w0_t[2] = id_buf[1];
615     w0_t[3] = id_buf[2];
616     w1_t[0] = id_buf[3];
617     w1_t[1] = 0x80;
618     w1_t[2] = 0;
619     w1_t[3] = 0;
620     w2_t[0] = 0;
621     w2_t[1] = 0;
622     w2_t[2] = 0;
623     w2_t[3] = 0;
624     w3_t[0] = 0;
625     w3_t[1] = 0;
626     w3_t[2] = 84 * 8;
627     w3_t[3] = 0;
628
629     md5_transform (w0_t, w1_t, w2_t, w3_t, digest);
630
631     // now the RC4 part
632
633     u32 key[4];
634
635     key[0] = digest[0];
636     key[1] = digest[1] & 0xff;
637     key[2] = 0;
638     key[3] = 0;
639
640     rc4_init_16 (rc4_key, key);
641
642     u32 out[4];
643
644     rc4_next_16 (rc4_key, 0, 0, padding, out);
645
646     const u32 r0 = out[0];
647     const u32 r1 = out[1];
648     const u32 r2 = out[2];
649     const u32 r3 = out[3];
650
651     #include COMPARE_S
652   }
653 }
654
655 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_s08 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
656 {
657 }
658
659 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m10400_s16 (__global pw_t *pws, __global gpu_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 pdf_t *pdf_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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
660 {
661 }