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