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