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