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