Initial commit
[hashcat.git] / amd / m01730_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _SHA512_
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 14
24 #define DGST_R1 15
25 #define DGST_R2 6
26 #define DGST_R3 7
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 u64 k_sha512[80] =
48 {
49   SHA512C00, SHA512C01, SHA512C02, SHA512C03,
50   SHA512C04, SHA512C05, SHA512C06, SHA512C07,
51   SHA512C08, SHA512C09, SHA512C0a, SHA512C0b,
52   SHA512C0c, SHA512C0d, SHA512C0e, SHA512C0f,
53   SHA512C10, SHA512C11, SHA512C12, SHA512C13,
54   SHA512C14, SHA512C15, SHA512C16, SHA512C17,
55   SHA512C18, SHA512C19, SHA512C1a, SHA512C1b,
56   SHA512C1c, SHA512C1d, SHA512C1e, SHA512C1f,
57   SHA512C20, SHA512C21, SHA512C22, SHA512C23,
58   SHA512C24, SHA512C25, SHA512C26, SHA512C27,
59   SHA512C28, SHA512C29, SHA512C2a, SHA512C2b,
60   SHA512C2c, SHA512C2d, SHA512C2e, SHA512C2f,
61   SHA512C30, SHA512C31, SHA512C32, SHA512C33,
62   SHA512C34, SHA512C35, SHA512C36, SHA512C37,
63   SHA512C38, SHA512C39, SHA512C3a, SHA512C3b,
64   SHA512C3c, SHA512C3d, SHA512C3e, SHA512C3f,
65   SHA512C40, SHA512C41, SHA512C42, SHA512C43,
66   SHA512C44, SHA512C45, SHA512C46, SHA512C47,
67   SHA512C48, SHA512C49, SHA512C4a, SHA512C4b,
68   SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f,
69 };
70
71 static void sha512_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u64x digest[8])
72 {
73   u64x w0_t = hl32_to_64 (w0[0], w0[1]);
74   u64x w1_t = hl32_to_64 (w0[2], w0[3]);
75   u64x w2_t = hl32_to_64 (w1[0], w1[1]);
76   u64x w3_t = hl32_to_64 (w1[2], w1[3]);
77   u64x w4_t = hl32_to_64 (w2[0], w2[1]);
78   u64x w5_t = hl32_to_64 (w2[2], w2[3]);
79   u64x w6_t = hl32_to_64 (w3[0], w3[1]);
80   u64x w7_t = 0;
81   u64x w8_t = 0;
82   u64x w9_t = 0;
83   u64x wa_t = 0;
84   u64x wb_t = 0;
85   u64x wc_t = 0;
86   u64x wd_t = 0;
87   u64x we_t = 0;
88   u64x wf_t = hl32_to_64 (w3[2], w3[3]);
89
90   u64x a = digest[0];
91   u64x b = digest[1];
92   u64x c = digest[2];
93   u64x d = digest[3];
94   u64x e = digest[4];
95   u64x f = digest[5];
96   u64x g = digest[6];
97   u64x h = digest[7];
98
99   #define ROUND_EXPAND()                            \
100   {                                                 \
101     w0_t = SHA512_EXPAND (we_t, w9_t, w1_t, w0_t);  \
102     w1_t = SHA512_EXPAND (wf_t, wa_t, w2_t, w1_t);  \
103     w2_t = SHA512_EXPAND (w0_t, wb_t, w3_t, w2_t);  \
104     w3_t = SHA512_EXPAND (w1_t, wc_t, w4_t, w3_t);  \
105     w4_t = SHA512_EXPAND (w2_t, wd_t, w5_t, w4_t);  \
106     w5_t = SHA512_EXPAND (w3_t, we_t, w6_t, w5_t);  \
107     w6_t = SHA512_EXPAND (w4_t, wf_t, w7_t, w6_t);  \
108     w7_t = SHA512_EXPAND (w5_t, w0_t, w8_t, w7_t);  \
109     w8_t = SHA512_EXPAND (w6_t, w1_t, w9_t, w8_t);  \
110     w9_t = SHA512_EXPAND (w7_t, w2_t, wa_t, w9_t);  \
111     wa_t = SHA512_EXPAND (w8_t, w3_t, wb_t, wa_t);  \
112     wb_t = SHA512_EXPAND (w9_t, w4_t, wc_t, wb_t);  \
113     wc_t = SHA512_EXPAND (wa_t, w5_t, wd_t, wc_t);  \
114     wd_t = SHA512_EXPAND (wb_t, w6_t, we_t, wd_t);  \
115     we_t = SHA512_EXPAND (wc_t, w7_t, wf_t, we_t);  \
116     wf_t = SHA512_EXPAND (wd_t, w8_t, w0_t, wf_t);  \
117   }
118
119   #define ROUND_STEP(i)                                                                   \
120   {                                                                                       \
121     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w0_t, k_sha512[i +  0]); \
122     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w1_t, k_sha512[i +  1]); \
123     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, w2_t, k_sha512[i +  2]); \
124     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, w3_t, k_sha512[i +  3]); \
125     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, w4_t, k_sha512[i +  4]); \
126     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, w5_t, k_sha512[i +  5]); \
127     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, w6_t, k_sha512[i +  6]); \
128     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, w7_t, k_sha512[i +  7]); \
129     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w8_t, k_sha512[i +  8]); \
130     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w9_t, k_sha512[i +  9]); \
131     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, wa_t, k_sha512[i + 10]); \
132     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, wb_t, k_sha512[i + 11]); \
133     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, wc_t, k_sha512[i + 12]); \
134     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, wd_t, k_sha512[i + 13]); \
135     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, we_t, k_sha512[i + 14]); \
136     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, wf_t, k_sha512[i + 15]); \
137   }
138
139   ROUND_STEP (0);
140
141   #pragma unroll
142   for (int i = 16; i < 80; i += 16)
143   {
144     ROUND_EXPAND (); ROUND_STEP (i);
145   }
146
147   /* rev
148   digest[0] += a;
149   digest[1] += b;
150   digest[2] += c;
151   digest[3] += d;
152   digest[4] += e;
153   digest[5] += f;
154   digest[6] += g;
155   digest[7] += h;
156   */
157
158   digest[0] = a;
159   digest[1] = b;
160   digest[2] = c;
161   digest[3] = d;
162   digest[4] = e;
163   digest[5] = f;
164   digest[6] = g;
165   digest[7] = h;
166 }
167
168 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
169 {
170   /**
171    * modifier
172    */
173
174   const u32 lid = get_local_id (0);
175
176   /**
177    * base
178    */
179
180   const u32 gid = get_global_id (0);
181
182   if (gid >= gid_max) return;
183
184   u32x wordl0[4];
185
186   wordl0[0] = pws[gid].i[ 0];
187   wordl0[1] = pws[gid].i[ 1];
188   wordl0[2] = pws[gid].i[ 2];
189   wordl0[3] = pws[gid].i[ 3];
190
191   u32x wordl1[4];
192
193   wordl1[0] = pws[gid].i[ 4];
194   wordl1[1] = pws[gid].i[ 5];
195   wordl1[2] = pws[gid].i[ 6];
196   wordl1[3] = pws[gid].i[ 7];
197
198   u32x wordl2[4];
199
200   wordl2[0] = 0;
201   wordl2[1] = 0;
202   wordl2[2] = 0;
203   wordl2[3] = 0;
204
205   u32x wordl3[4];
206
207   wordl3[0] = 0;
208   wordl3[1] = 0;
209   wordl3[2] = 0;
210   wordl3[3] = 0;
211
212   const u32 pw_l_len = pws[gid].pw_len;
213
214   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
215   {
216     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
217   }
218
219   /**
220    * salt
221    */
222
223   u32 salt_buf0[4];
224
225   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
226   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
227   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
228   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
229
230   u32 salt_buf1[4];
231
232   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
233   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
234   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
235   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
236
237   const u32 salt_len = salt_bufs[salt_pos].salt_len;
238
239   /**
240    * loop
241    */
242
243   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
244   {
245     const u32 pw_r_len = combs_buf[il_pos].pw_len;
246
247     const u32 pw_len = pw_l_len + pw_r_len;
248
249     u32 wordr0[4];
250     u32 wordr1[4];
251     u32 wordr2[4];
252     u32 wordr3[4];
253
254     wordr0[0] = combs_buf[il_pos].i[0];
255     wordr0[1] = combs_buf[il_pos].i[1];
256     wordr0[2] = combs_buf[il_pos].i[2];
257     wordr0[3] = combs_buf[il_pos].i[3];
258     wordr1[0] = combs_buf[il_pos].i[4];
259     wordr1[1] = combs_buf[il_pos].i[5];
260     wordr1[2] = combs_buf[il_pos].i[6];
261     wordr1[3] = combs_buf[il_pos].i[7];
262     wordr2[0] = 0;
263     wordr2[1] = 0;
264     wordr2[2] = 0;
265     wordr2[3] = 0;
266     wordr3[0] = 0;
267     wordr3[1] = 0;
268     wordr3[2] = 0;
269     wordr3[3] = 0;
270
271     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
272     {
273       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
274     }
275
276     u32x w0[4];
277     u32x w1[4];
278     u32x w2[4];
279     u32x w3[4];
280
281     w0[0] = wordl0[0] | wordr0[0];
282     w0[1] = wordl0[1] | wordr0[1];
283     w0[2] = wordl0[2] | wordr0[2];
284     w0[3] = wordl0[3] | wordr0[3];
285     w1[0] = wordl1[0] | wordr1[0];
286     w1[1] = wordl1[1] | wordr1[1];
287     w1[2] = wordl1[2] | wordr1[2];
288     w1[3] = wordl1[3] | wordr1[3];
289     w2[0] = wordl2[0] | wordr2[0];
290     w2[1] = wordl2[1] | wordr2[1];
291     w2[2] = wordl2[2] | wordr2[2];
292     w2[3] = wordl2[3] | wordr2[3];
293     w3[0] = wordl3[0] | wordr3[0];
294     w3[1] = wordl3[1] | wordr3[1];
295     w3[2] = wordl3[2] | wordr3[2];
296     w3[3] = wordl3[3] | wordr3[3];
297
298     /**
299      * append salt
300      */
301
302     u32 s0[4];
303
304     s0[0] = salt_buf0[0];
305     s0[1] = salt_buf0[1];
306     s0[2] = salt_buf0[2];
307     s0[3] = salt_buf0[3];
308
309     u32 s1[4];
310
311     s1[0] = salt_buf1[0];
312     s1[1] = salt_buf1[1];
313     s1[2] = salt_buf1[2];
314     s1[3] = salt_buf1[3];
315
316     u32 s2[4];
317
318     s2[0] = 0;
319     s2[1] = 0;
320     s2[2] = 0;
321     s2[3] = 0;
322
323     u32 s3[4];
324
325     s3[0] = 0;
326     s3[1] = 0;
327     s3[2] = 0;
328     s3[3] = 0;
329
330     switch_buffer_by_offset (s0, s1, s2, s3, (pw_len * 2));
331
332     const u32 pw_salt_len = (pw_len * 2) + salt_len;
333
334     u32x w0_t[4];
335     u32x w1_t[4];
336     u32x w2_t[4];
337     u32x w3_t[4];
338
339     make_unicode (w0, w0_t, w1_t);
340     make_unicode (w1, w2_t, w3_t);
341
342     w0_t[0] |= s0[0];
343     w0_t[1] |= s0[1];
344     w0_t[2] |= s0[2];
345     w0_t[3] |= s0[3];
346     w1_t[0] |= s1[0];
347     w1_t[1] |= s1[1];
348     w1_t[2] |= s1[2];
349     w1_t[3] |= s1[3];
350     w2_t[0] |= s2[0];
351     w2_t[1] |= s2[1];
352     w2_t[2] |= s2[2];
353     w2_t[3] |= s2[3];
354     w3_t[0] |= s3[0];
355     w3_t[1] |= s3[1];
356     w3_t[2] |= s3[2];
357     w3_t[3] |= s3[3];
358
359     append_0x80_4 (w0_t, w1_t, w2_t, w3_t, pw_salt_len);
360
361     /**
362      * sha512
363      */
364
365     w0_t[0] = swap_workaround (w0_t[0]);
366     w0_t[1] = swap_workaround (w0_t[1]);
367     w0_t[2] = swap_workaround (w0_t[2]);
368     w0_t[3] = swap_workaround (w0_t[3]);
369     w1_t[0] = swap_workaround (w1_t[0]);
370     w1_t[1] = swap_workaround (w1_t[1]);
371     w1_t[2] = swap_workaround (w1_t[2]);
372     w1_t[3] = swap_workaround (w1_t[3]);
373     w2_t[0] = swap_workaround (w2_t[0]);
374     w2_t[1] = swap_workaround (w2_t[1]);
375     w2_t[2] = swap_workaround (w2_t[2]);
376     w2_t[3] = swap_workaround (w2_t[3]);
377     w3_t[0] = swap_workaround (w3_t[0]);
378     w3_t[1] = swap_workaround (w3_t[1]);
379     w3_t[2] = 0;
380     w3_t[3] = pw_salt_len * 8;
381
382     u64x digest[8];
383
384     digest[0] = SHA512M_A;
385     digest[1] = SHA512M_B;
386     digest[2] = SHA512M_C;
387     digest[3] = SHA512M_D;
388     digest[4] = SHA512M_E;
389     digest[5] = SHA512M_F;
390     digest[6] = SHA512M_G;
391     digest[7] = SHA512M_H;
392
393     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
394
395
396     const u32x r0 = l32_from_64 (digest[7]);
397     const u32x r1 = h32_from_64 (digest[7]);
398     const u32x r2 = l32_from_64 (digest[3]);
399     const u32x r3 = h32_from_64 (digest[3]);
400
401     #include VECT_COMPARE_M
402   }
403 }
404
405 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
406 {
407 }
408
409 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
410 {
411 }
412
413 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
414 {
415   /**
416    * modifier
417    */
418
419   const u32 lid = get_local_id (0);
420
421   /**
422    * base
423    */
424
425   const u32 gid = get_global_id (0);
426
427   if (gid >= gid_max) return;
428
429   u32x wordl0[4];
430
431   wordl0[0] = pws[gid].i[ 0];
432   wordl0[1] = pws[gid].i[ 1];
433   wordl0[2] = pws[gid].i[ 2];
434   wordl0[3] = pws[gid].i[ 3];
435
436   u32x wordl1[4];
437
438   wordl1[0] = pws[gid].i[ 4];
439   wordl1[1] = pws[gid].i[ 5];
440   wordl1[2] = pws[gid].i[ 6];
441   wordl1[3] = pws[gid].i[ 7];
442
443   u32x wordl2[4];
444
445   wordl2[0] = 0;
446   wordl2[1] = 0;
447   wordl2[2] = 0;
448   wordl2[3] = 0;
449
450   u32x wordl3[4];
451
452   wordl3[0] = 0;
453   wordl3[1] = 0;
454   wordl3[2] = 0;
455   wordl3[3] = 0;
456
457   const u32 pw_l_len = pws[gid].pw_len;
458
459   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
460   {
461     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
462   }
463
464   /**
465    * salt
466    */
467
468   u32 salt_buf0[4];
469
470   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[0];
471   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[1];
472   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[2];
473   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[3];
474
475   u32 salt_buf1[4];
476
477   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[4];
478   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[5];
479   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[6];
480   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[7];
481
482   const u32 salt_len = salt_bufs[salt_pos].salt_len;
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    * loop
498    */
499
500   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
501   {
502     const u32 pw_r_len = combs_buf[il_pos].pw_len;
503
504     const u32 pw_len = pw_l_len + pw_r_len;
505
506     u32 wordr0[4];
507     u32 wordr1[4];
508     u32 wordr2[4];
509     u32 wordr3[4];
510
511     wordr0[0] = combs_buf[il_pos].i[0];
512     wordr0[1] = combs_buf[il_pos].i[1];
513     wordr0[2] = combs_buf[il_pos].i[2];
514     wordr0[3] = combs_buf[il_pos].i[3];
515     wordr1[0] = combs_buf[il_pos].i[4];
516     wordr1[1] = combs_buf[il_pos].i[5];
517     wordr1[2] = combs_buf[il_pos].i[6];
518     wordr1[3] = combs_buf[il_pos].i[7];
519     wordr2[0] = 0;
520     wordr2[1] = 0;
521     wordr2[2] = 0;
522     wordr2[3] = 0;
523     wordr3[0] = 0;
524     wordr3[1] = 0;
525     wordr3[2] = 0;
526     wordr3[3] = 0;
527
528     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
529     {
530       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
531     }
532
533     u32x w0[4];
534     u32x w1[4];
535     u32x w2[4];
536     u32x w3[4];
537
538     w0[0] = wordl0[0] | wordr0[0];
539     w0[1] = wordl0[1] | wordr0[1];
540     w0[2] = wordl0[2] | wordr0[2];
541     w0[3] = wordl0[3] | wordr0[3];
542     w1[0] = wordl1[0] | wordr1[0];
543     w1[1] = wordl1[1] | wordr1[1];
544     w1[2] = wordl1[2] | wordr1[2];
545     w1[3] = wordl1[3] | wordr1[3];
546     w2[0] = wordl2[0] | wordr2[0];
547     w2[1] = wordl2[1] | wordr2[1];
548     w2[2] = wordl2[2] | wordr2[2];
549     w2[3] = wordl2[3] | wordr2[3];
550     w3[0] = wordl3[0] | wordr3[0];
551     w3[1] = wordl3[1] | wordr3[1];
552     w3[2] = wordl3[2] | wordr3[2];
553     w3[3] = wordl3[3] | wordr3[3];
554
555     /**
556      * append salt
557      */
558
559     u32 s0[4];
560
561     s0[0] = salt_buf0[0];
562     s0[1] = salt_buf0[1];
563     s0[2] = salt_buf0[2];
564     s0[3] = salt_buf0[3];
565
566     u32 s1[4];
567
568     s1[0] = salt_buf1[0];
569     s1[1] = salt_buf1[1];
570     s1[2] = salt_buf1[2];
571     s1[3] = salt_buf1[3];
572
573     u32 s2[4];
574
575     s2[0] = 0;
576     s2[1] = 0;
577     s2[2] = 0;
578     s2[3] = 0;
579
580     u32 s3[4];
581
582     s3[0] = 0;
583     s3[1] = 0;
584     s3[2] = 0;
585     s3[3] = 0;
586
587     switch_buffer_by_offset (s0, s1, s2, s3, (pw_len * 2));
588
589     const u32 pw_salt_len = (pw_len * 2) + salt_len;
590
591     u32x w0_t[4];
592     u32x w1_t[4];
593     u32x w2_t[4];
594     u32x w3_t[4];
595
596     make_unicode (w0, w0_t, w1_t);
597     make_unicode (w1, w2_t, w3_t);
598
599     w0_t[0] |= s0[0];
600     w0_t[1] |= s0[1];
601     w0_t[2] |= s0[2];
602     w0_t[3] |= s0[3];
603     w1_t[0] |= s1[0];
604     w1_t[1] |= s1[1];
605     w1_t[2] |= s1[2];
606     w1_t[3] |= s1[3];
607     w2_t[0] |= s2[0];
608     w2_t[1] |= s2[1];
609     w2_t[2] |= s2[2];
610     w2_t[3] |= s2[3];
611     w3_t[0] |= s3[0];
612     w3_t[1] |= s3[1];
613     w3_t[2] |= s3[2];
614     w3_t[3] |= s3[3];
615
616     append_0x80_4 (w0_t, w1_t, w2_t, w3_t, pw_salt_len);
617
618     /**
619      * sha512
620      */
621
622     w0_t[0] = swap_workaround (w0_t[0]);
623     w0_t[1] = swap_workaround (w0_t[1]);
624     w0_t[2] = swap_workaround (w0_t[2]);
625     w0_t[3] = swap_workaround (w0_t[3]);
626     w1_t[0] = swap_workaround (w1_t[0]);
627     w1_t[1] = swap_workaround (w1_t[1]);
628     w1_t[2] = swap_workaround (w1_t[2]);
629     w1_t[3] = swap_workaround (w1_t[3]);
630     w2_t[0] = swap_workaround (w2_t[0]);
631     w2_t[1] = swap_workaround (w2_t[1]);
632     w2_t[2] = swap_workaround (w2_t[2]);
633     w2_t[3] = swap_workaround (w2_t[3]);
634     w3_t[0] = swap_workaround (w3_t[0]);
635     w3_t[1] = swap_workaround (w3_t[1]);
636     w3_t[2] = 0;
637     w3_t[3] = pw_salt_len * 8;
638
639     u64x digest[8];
640
641     digest[0] = SHA512M_A;
642     digest[1] = SHA512M_B;
643     digest[2] = SHA512M_C;
644     digest[3] = SHA512M_D;
645     digest[4] = SHA512M_E;
646     digest[5] = SHA512M_F;
647     digest[6] = SHA512M_G;
648     digest[7] = SHA512M_H;
649
650     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
651
652
653     const u32x r0 = l32_from_64 (digest[7]);
654     const u32x r1 = h32_from_64 (digest[7]);
655     const u32x r2 = l32_from_64 (digest[3]);
656     const u32x r3 = h32_from_64 (digest[3]);
657
658     #include VECT_COMPARE_S
659   }
660 }
661
662 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
663 {
664 }
665
666 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m01730_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 void *esalt_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)
667 {
668 }