Fix m 60 a 0 by making modified variable non-const
[hashcat.git] / OpenCL / m01740_a1.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _SHA512_
7
8 #define NEW_SIMD_CODE
9
10 #include "inc_vendor.cl"
11 #include "inc_hash_constants.h"
12 #include "inc_hash_functions.cl"
13 #include "inc_types.cl"
14 #include "inc_common.cl"
15 #include "inc_simd.cl"
16
17 __constant u64 k_sha512[80] =
18 {
19   SHA512C00, SHA512C01, SHA512C02, SHA512C03,
20   SHA512C04, SHA512C05, SHA512C06, SHA512C07,
21   SHA512C08, SHA512C09, SHA512C0a, SHA512C0b,
22   SHA512C0c, SHA512C0d, SHA512C0e, SHA512C0f,
23   SHA512C10, SHA512C11, SHA512C12, SHA512C13,
24   SHA512C14, SHA512C15, SHA512C16, SHA512C17,
25   SHA512C18, SHA512C19, SHA512C1a, SHA512C1b,
26   SHA512C1c, SHA512C1d, SHA512C1e, SHA512C1f,
27   SHA512C20, SHA512C21, SHA512C22, SHA512C23,
28   SHA512C24, SHA512C25, SHA512C26, SHA512C27,
29   SHA512C28, SHA512C29, SHA512C2a, SHA512C2b,
30   SHA512C2c, SHA512C2d, SHA512C2e, SHA512C2f,
31   SHA512C30, SHA512C31, SHA512C32, SHA512C33,
32   SHA512C34, SHA512C35, SHA512C36, SHA512C37,
33   SHA512C38, SHA512C39, SHA512C3a, SHA512C3b,
34   SHA512C3c, SHA512C3d, SHA512C3e, SHA512C3f,
35   SHA512C40, SHA512C41, SHA512C42, SHA512C43,
36   SHA512C44, SHA512C45, SHA512C46, SHA512C47,
37   SHA512C48, SHA512C49, SHA512C4a, SHA512C4b,
38   SHA512C4c, SHA512C4d, SHA512C4e, SHA512C4f,
39 };
40
41 void sha512_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u64x digest[8])
42 {
43   u64x w0_t = hl32_to_64 (w0[0], w0[1]);
44   u64x w1_t = hl32_to_64 (w0[2], w0[3]);
45   u64x w2_t = hl32_to_64 (w1[0], w1[1]);
46   u64x w3_t = hl32_to_64 (w1[2], w1[3]);
47   u64x w4_t = hl32_to_64 (w2[0], w2[1]);
48   u64x w5_t = hl32_to_64 (w2[2], w2[3]);
49   u64x w6_t = hl32_to_64 (w3[0], w3[1]);
50   u64x w7_t = 0;
51   u64x w8_t = 0;
52   u64x w9_t = 0;
53   u64x wa_t = 0;
54   u64x wb_t = 0;
55   u64x wc_t = 0;
56   u64x wd_t = 0;
57   u64x we_t = 0;
58   u64x wf_t = hl32_to_64 (w3[2], w3[3]);
59
60   u64x a = digest[0];
61   u64x b = digest[1];
62   u64x c = digest[2];
63   u64x d = digest[3];
64   u64x e = digest[4];
65   u64x f = digest[5];
66   u64x g = digest[6];
67   u64x h = digest[7];
68
69   #define ROUND_EXPAND()                            \
70   {                                                 \
71     w0_t = SHA512_EXPAND (we_t, w9_t, w1_t, w0_t);  \
72     w1_t = SHA512_EXPAND (wf_t, wa_t, w2_t, w1_t);  \
73     w2_t = SHA512_EXPAND (w0_t, wb_t, w3_t, w2_t);  \
74     w3_t = SHA512_EXPAND (w1_t, wc_t, w4_t, w3_t);  \
75     w4_t = SHA512_EXPAND (w2_t, wd_t, w5_t, w4_t);  \
76     w5_t = SHA512_EXPAND (w3_t, we_t, w6_t, w5_t);  \
77     w6_t = SHA512_EXPAND (w4_t, wf_t, w7_t, w6_t);  \
78     w7_t = SHA512_EXPAND (w5_t, w0_t, w8_t, w7_t);  \
79     w8_t = SHA512_EXPAND (w6_t, w1_t, w9_t, w8_t);  \
80     w9_t = SHA512_EXPAND (w7_t, w2_t, wa_t, w9_t);  \
81     wa_t = SHA512_EXPAND (w8_t, w3_t, wb_t, wa_t);  \
82     wb_t = SHA512_EXPAND (w9_t, w4_t, wc_t, wb_t);  \
83     wc_t = SHA512_EXPAND (wa_t, w5_t, wd_t, wc_t);  \
84     wd_t = SHA512_EXPAND (wb_t, w6_t, we_t, wd_t);  \
85     we_t = SHA512_EXPAND (wc_t, w7_t, wf_t, we_t);  \
86     wf_t = SHA512_EXPAND (wd_t, w8_t, w0_t, wf_t);  \
87   }
88
89   #define ROUND_STEP(i)                                                                   \
90   {                                                                                       \
91     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w0_t, k_sha512[i +  0]); \
92     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w1_t, k_sha512[i +  1]); \
93     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, w2_t, k_sha512[i +  2]); \
94     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, w3_t, k_sha512[i +  3]); \
95     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, w4_t, k_sha512[i +  4]); \
96     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, w5_t, k_sha512[i +  5]); \
97     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, w6_t, k_sha512[i +  6]); \
98     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, w7_t, k_sha512[i +  7]); \
99     SHA512_STEP (SHA512_F0o, SHA512_F1o, a, b, c, d, e, f, g, h, w8_t, k_sha512[i +  8]); \
100     SHA512_STEP (SHA512_F0o, SHA512_F1o, h, a, b, c, d, e, f, g, w9_t, k_sha512[i +  9]); \
101     SHA512_STEP (SHA512_F0o, SHA512_F1o, g, h, a, b, c, d, e, f, wa_t, k_sha512[i + 10]); \
102     SHA512_STEP (SHA512_F0o, SHA512_F1o, f, g, h, a, b, c, d, e, wb_t, k_sha512[i + 11]); \
103     SHA512_STEP (SHA512_F0o, SHA512_F1o, e, f, g, h, a, b, c, d, wc_t, k_sha512[i + 12]); \
104     SHA512_STEP (SHA512_F0o, SHA512_F1o, d, e, f, g, h, a, b, c, wd_t, k_sha512[i + 13]); \
105     SHA512_STEP (SHA512_F0o, SHA512_F1o, c, d, e, f, g, h, a, b, we_t, k_sha512[i + 14]); \
106     SHA512_STEP (SHA512_F0o, SHA512_F1o, b, c, d, e, f, g, h, a, wf_t, k_sha512[i + 15]); \
107   }
108
109   ROUND_STEP (0);
110
111   #ifdef _unroll
112   #pragma unroll
113   #endif
114   for (int i = 16; i < 80; i += 16)
115   {
116     ROUND_EXPAND (); ROUND_STEP (i);
117   }
118
119   /* rev
120   digest[0] += a;
121   digest[1] += b;
122   digest[2] += c;
123   digest[3] += d;
124   digest[4] += e;
125   digest[5] += f;
126   digest[6] += g;
127   digest[7] += h;
128   */
129
130   digest[0] = a;
131   digest[1] = b;
132   digest[2] = c;
133   digest[3] = d;
134   digest[4] = e;
135   digest[5] = f;
136   digest[6] = g;
137   digest[7] = h;
138 }
139
140 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
141 {
142   /**
143    * modifier
144    */
145
146   const u32 lid = get_local_id (0);
147
148   /**
149    * base
150    */
151
152   const u32 gid = get_global_id (0);
153
154   if (gid >= gid_max) return;
155
156   u32 pw_buf0[4];
157   u32 pw_buf1[4];
158
159   pw_buf0[0] = pws[gid].i[0];
160   pw_buf0[1] = pws[gid].i[1];
161   pw_buf0[2] = pws[gid].i[2];
162   pw_buf0[3] = pws[gid].i[3];
163   pw_buf1[0] = pws[gid].i[4];
164   pw_buf1[1] = pws[gid].i[5];
165   pw_buf1[2] = pws[gid].i[6];
166   pw_buf1[3] = pws[gid].i[7];
167
168   const u32 pw_l_len = pws[gid].pw_len;
169
170   /**
171    * salt
172    */
173
174   u32 salt_buf0[4];
175   u32 salt_buf1[4];
176   u32 salt_buf2[4];
177   u32 salt_buf3[4];
178
179   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
180   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
181   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
182   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
183   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
184   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
185   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
186   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
187   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
188   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
189   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
190   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
191   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
192   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
193   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
194   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
195
196   const u32 salt_len = salt_bufs[salt_pos].salt_len;
197
198   /**
199    * loop
200    */
201
202   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
203   {
204     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
205
206     const u32x pw_len = pw_l_len + pw_r_len;
207
208     /**
209      * concat password candidate
210      */
211
212     u32x wordl0[4] = { 0 };
213     u32x wordl1[4] = { 0 };
214     u32x wordl2[4] = { 0 };
215     u32x wordl3[4] = { 0 };
216
217     wordl0[0] = pw_buf0[0];
218     wordl0[1] = pw_buf0[1];
219     wordl0[2] = pw_buf0[2];
220     wordl0[3] = pw_buf0[3];
221     wordl1[0] = pw_buf1[0];
222     wordl1[1] = pw_buf1[1];
223     wordl1[2] = pw_buf1[2];
224     wordl1[3] = pw_buf1[3];
225
226     u32x wordr0[4] = { 0 };
227     u32x wordr1[4] = { 0 };
228     u32x wordr2[4] = { 0 };
229     u32x wordr3[4] = { 0 };
230
231     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
232     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
233     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
234     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
235     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
236     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
237     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
238     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
239
240     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
241     {
242       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
243     }
244     else
245     {
246       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
247     }
248
249     u32x w0[4];
250     u32x w1[4];
251     u32x w2[4];
252     u32x w3[4];
253
254     w0[0] = wordl0[0] | wordr0[0];
255     w0[1] = wordl0[1] | wordr0[1];
256     w0[2] = wordl0[2] | wordr0[2];
257     w0[3] = wordl0[3] | wordr0[3];
258     w1[0] = wordl1[0] | wordr1[0];
259     w1[1] = wordl1[1] | wordr1[1];
260     w1[2] = wordl1[2] | wordr1[2];
261     w1[3] = wordl1[3] | wordr1[3];
262     w2[0] = wordl2[0] | wordr2[0];
263     w2[1] = wordl2[1] | wordr2[1];
264     w2[2] = wordl2[2] | wordr2[2];
265     w2[3] = wordl2[3] | wordr2[3];
266     w3[0] = wordl3[0] | wordr3[0];
267     w3[1] = wordl3[1] | wordr3[1];
268     w3[2] = wordl3[2] | wordr3[2];
269     w3[3] = wordl3[3] | wordr3[3];
270
271     make_unicode (w1, w2, w3);
272     make_unicode (w0, w0, w1);
273
274     const u32x pw_len2 = pw_len * 2;
275
276     /**
277      * prepend salt
278      */
279
280     switch_buffer_by_offset_le (w0, w1, w2, w3, salt_len);
281
282     const u32x pw_salt_len = pw_len2 + salt_len;
283
284     w0[0] |= salt_buf0[0];
285     w0[1] |= salt_buf0[1];
286     w0[2] |= salt_buf0[2];
287     w0[3] |= salt_buf0[3];
288     w1[0] |= salt_buf1[0];
289     w1[1] |= salt_buf1[1];
290     w1[2] |= salt_buf1[2];
291     w1[3] |= salt_buf1[3];
292     w2[0] |= salt_buf2[0];
293     w2[1] |= salt_buf2[1];
294     w2[2] |= salt_buf2[2];
295     w2[3] |= salt_buf2[3];
296     w3[0] |= salt_buf3[0];
297     w3[1] |= salt_buf3[1];
298     w3[2] |= salt_buf3[2];
299     w3[3] |= salt_buf3[3];
300
301     /**
302      * sha512
303      */
304
305     u32x w0_t[4];
306     u32x w1_t[4];
307     u32x w2_t[4];
308     u32x w3_t[4];
309
310     w0_t[0] = swap32 (w0[0]);
311     w0_t[1] = swap32 (w0[1]);
312     w0_t[2] = swap32 (w0[2]);
313     w0_t[3] = swap32 (w0[3]);
314     w1_t[0] = swap32 (w1[0]);
315     w1_t[1] = swap32 (w1[1]);
316     w1_t[2] = swap32 (w1[2]);
317     w1_t[3] = swap32 (w1[3]);
318     w2_t[0] = swap32 (w2[0]);
319     w2_t[1] = swap32 (w2[1]);
320     w2_t[2] = swap32 (w2[2]);
321     w2_t[3] = swap32 (w2[3]);
322     w3_t[0] = swap32 (w3[0]);
323     w3_t[1] = swap32 (w3[1]);
324     w3_t[2] = 0;
325     w3_t[3] = pw_salt_len * 8;
326
327     u64x digest[8];
328
329     digest[0] = SHA512M_A;
330     digest[1] = SHA512M_B;
331     digest[2] = SHA512M_C;
332     digest[3] = SHA512M_D;
333     digest[4] = SHA512M_E;
334     digest[5] = SHA512M_F;
335     digest[6] = SHA512M_G;
336     digest[7] = SHA512M_H;
337
338     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
339
340     const u32x r0 = l32_from_64 (digest[7]);
341     const u32x r1 = h32_from_64 (digest[7]);
342     const u32x r2 = l32_from_64 (digest[3]);
343     const u32x r3 = h32_from_64 (digest[3]);
344
345     COMPARE_M_SIMD (r0, r1, r2, r3);
346   }
347 }
348
349 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
350 {
351 }
352
353 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
354 {
355 }
356
357 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
358 {
359   /**
360    * modifier
361    */
362
363   const u32 lid = get_local_id (0);
364
365   /**
366    * base
367    */
368
369   const u32 gid = get_global_id (0);
370
371   if (gid >= gid_max) return;
372
373   u32 pw_buf0[4];
374   u32 pw_buf1[4];
375
376   pw_buf0[0] = pws[gid].i[0];
377   pw_buf0[1] = pws[gid].i[1];
378   pw_buf0[2] = pws[gid].i[2];
379   pw_buf0[3] = pws[gid].i[3];
380   pw_buf1[0] = pws[gid].i[4];
381   pw_buf1[1] = pws[gid].i[5];
382   pw_buf1[2] = pws[gid].i[6];
383   pw_buf1[3] = pws[gid].i[7];
384
385   const u32 pw_l_len = pws[gid].pw_len;
386
387   /**
388    * salt
389    */
390
391   u32 salt_buf0[4];
392   u32 salt_buf1[4];
393   u32 salt_buf2[4];
394   u32 salt_buf3[4];
395
396   salt_buf0[0] = salt_bufs[salt_pos].salt_buf[ 0];
397   salt_buf0[1] = salt_bufs[salt_pos].salt_buf[ 1];
398   salt_buf0[2] = salt_bufs[salt_pos].salt_buf[ 2];
399   salt_buf0[3] = salt_bufs[salt_pos].salt_buf[ 3];
400   salt_buf1[0] = salt_bufs[salt_pos].salt_buf[ 4];
401   salt_buf1[1] = salt_bufs[salt_pos].salt_buf[ 5];
402   salt_buf1[2] = salt_bufs[salt_pos].salt_buf[ 6];
403   salt_buf1[3] = salt_bufs[salt_pos].salt_buf[ 7];
404   salt_buf2[0] = salt_bufs[salt_pos].salt_buf[ 8];
405   salt_buf2[1] = salt_bufs[salt_pos].salt_buf[ 9];
406   salt_buf2[2] = salt_bufs[salt_pos].salt_buf[10];
407   salt_buf2[3] = salt_bufs[salt_pos].salt_buf[11];
408   salt_buf3[0] = salt_bufs[salt_pos].salt_buf[12];
409   salt_buf3[1] = salt_bufs[salt_pos].salt_buf[13];
410   salt_buf3[2] = salt_bufs[salt_pos].salt_buf[14];
411   salt_buf3[3] = salt_bufs[salt_pos].salt_buf[15];
412
413   const u32 salt_len = salt_bufs[salt_pos].salt_len;
414
415   /**
416    * digest
417    */
418
419   const u32 search[4] =
420   {
421     digests_buf[digests_offset].digest_buf[DGST_R0],
422     digests_buf[digests_offset].digest_buf[DGST_R1],
423     digests_buf[digests_offset].digest_buf[DGST_R2],
424     digests_buf[digests_offset].digest_buf[DGST_R3]
425   };
426
427   /**
428    * loop
429    */
430
431   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
432   {
433     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
434
435     const u32x pw_len = pw_l_len + pw_r_len;
436
437     /**
438      * concat password candidate
439      */
440
441     u32x wordl0[4] = { 0 };
442     u32x wordl1[4] = { 0 };
443     u32x wordl2[4] = { 0 };
444     u32x wordl3[4] = { 0 };
445
446     wordl0[0] = pw_buf0[0];
447     wordl0[1] = pw_buf0[1];
448     wordl0[2] = pw_buf0[2];
449     wordl0[3] = pw_buf0[3];
450     wordl1[0] = pw_buf1[0];
451     wordl1[1] = pw_buf1[1];
452     wordl1[2] = pw_buf1[2];
453     wordl1[3] = pw_buf1[3];
454
455     u32x wordr0[4] = { 0 };
456     u32x wordr1[4] = { 0 };
457     u32x wordr2[4] = { 0 };
458     u32x wordr3[4] = { 0 };
459
460     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
461     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
462     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
463     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
464     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
465     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
466     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
467     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
468
469     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
470     {
471       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
472     }
473     else
474     {
475       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
476     }
477
478     u32x w0[4];
479     u32x w1[4];
480     u32x w2[4];
481     u32x w3[4];
482
483     w0[0] = wordl0[0] | wordr0[0];
484     w0[1] = wordl0[1] | wordr0[1];
485     w0[2] = wordl0[2] | wordr0[2];
486     w0[3] = wordl0[3] | wordr0[3];
487     w1[0] = wordl1[0] | wordr1[0];
488     w1[1] = wordl1[1] | wordr1[1];
489     w1[2] = wordl1[2] | wordr1[2];
490     w1[3] = wordl1[3] | wordr1[3];
491     w2[0] = wordl2[0] | wordr2[0];
492     w2[1] = wordl2[1] | wordr2[1];
493     w2[2] = wordl2[2] | wordr2[2];
494     w2[3] = wordl2[3] | wordr2[3];
495     w3[0] = wordl3[0] | wordr3[0];
496     w3[1] = wordl3[1] | wordr3[1];
497     w3[2] = wordl3[2] | wordr3[2];
498     w3[3] = wordl3[3] | wordr3[3];
499
500     make_unicode (w1, w2, w3);
501     make_unicode (w0, w0, w1);
502
503     const u32x pw_len2 = pw_len * 2;
504
505     /**
506      * prepend salt
507      */
508
509     switch_buffer_by_offset_le (w0, w1, w2, w3, salt_len);
510
511     const u32x pw_salt_len = pw_len2 + salt_len;
512
513     w0[0] |= salt_buf0[0];
514     w0[1] |= salt_buf0[1];
515     w0[2] |= salt_buf0[2];
516     w0[3] |= salt_buf0[3];
517     w1[0] |= salt_buf1[0];
518     w1[1] |= salt_buf1[1];
519     w1[2] |= salt_buf1[2];
520     w1[3] |= salt_buf1[3];
521     w2[0] |= salt_buf2[0];
522     w2[1] |= salt_buf2[1];
523     w2[2] |= salt_buf2[2];
524     w2[3] |= salt_buf2[3];
525     w3[0] |= salt_buf3[0];
526     w3[1] |= salt_buf3[1];
527     w3[2] |= salt_buf3[2];
528     w3[3] |= salt_buf3[3];
529
530     /**
531      * sha512
532      */
533
534     u32x w0_t[4];
535     u32x w1_t[4];
536     u32x w2_t[4];
537     u32x w3_t[4];
538
539     w0_t[0] = swap32 (w0[0]);
540     w0_t[1] = swap32 (w0[1]);
541     w0_t[2] = swap32 (w0[2]);
542     w0_t[3] = swap32 (w0[3]);
543     w1_t[0] = swap32 (w1[0]);
544     w1_t[1] = swap32 (w1[1]);
545     w1_t[2] = swap32 (w1[2]);
546     w1_t[3] = swap32 (w1[3]);
547     w2_t[0] = swap32 (w2[0]);
548     w2_t[1] = swap32 (w2[1]);
549     w2_t[2] = swap32 (w2[2]);
550     w2_t[3] = swap32 (w2[3]);
551     w3_t[0] = swap32 (w3[0]);
552     w3_t[1] = swap32 (w3[1]);
553     w3_t[2] = 0;
554     w3_t[3] = pw_salt_len * 8;
555
556     u64x digest[8];
557
558     digest[0] = SHA512M_A;
559     digest[1] = SHA512M_B;
560     digest[2] = SHA512M_C;
561     digest[3] = SHA512M_D;
562     digest[4] = SHA512M_E;
563     digest[5] = SHA512M_F;
564     digest[6] = SHA512M_G;
565     digest[7] = SHA512M_H;
566
567     sha512_transform (w0_t, w1_t, w2_t, w3_t, digest);
568
569     const u32x r0 = l32_from_64 (digest[7]);
570     const u32x r1 = h32_from_64 (digest[7]);
571     const u32x r2 = l32_from_64 (digest[3]);
572     const u32x r3 = h32_from_64 (digest[3]);
573
574     COMPARE_S_SIMD (r0, r1, r2, r3);
575   }
576 }
577
578 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
579 {
580 }
581
582 __kernel void m01740_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 void *esalt_bufs, __global u32 *d_return_buf, __global u32 *d_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
583 {
584 }