Initial commit
[hashcat.git] / nv / m00400.cu
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD5_
7
8 #include "include/constants.h"
9 #include "include/kernel_vendor.h"
10
11 #ifdef  VLIW1
12 #define VECT_SIZE1
13 #endif
14
15 #ifdef  VLIW2
16 #define VECT_SIZE2
17 #endif
18
19 #define DGST_R0 0
20 #define DGST_R1 1
21 #define DGST_R2 2
22 #define DGST_R3 3
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_M "check_multi_vect1_comp4.c"
30 #endif
31
32 #ifdef  VECT_SIZE2
33 #define VECT_COMPARE_M "check_multi_vect2_comp4.c"
34 #endif
35
36 #ifdef  VECT_SIZE4
37 #define VECT_COMPARE_M "check_multi_vect4_comp4.c"
38 #endif
39
40 __device__ static void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
41 {
42   u32x a = digest[0];
43   u32x b = digest[1];
44   u32x c = digest[2];
45   u32x d = digest[3];
46
47   u32x w0_t = w0[0];
48   u32x w1_t = w0[1];
49   u32x w2_t = w0[2];
50   u32x w3_t = w0[3];
51   u32x w4_t = w1[0];
52   u32x w5_t = w1[1];
53   u32x w6_t = w1[2];
54   u32x w7_t = w1[3];
55   u32x w8_t = w2[0];
56   u32x w9_t = w2[1];
57   u32x wa_t = w2[2];
58   u32x wb_t = w2[3];
59   u32x wc_t = w3[0];
60   u32x wd_t = w3[1];
61   u32x we_t = w3[2];
62   u32x wf_t = 0;
63
64   u32x tmp2;
65
66   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
67   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
68   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
69   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
70   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
71   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
72   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
73   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
74   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
75   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
76   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
77   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
78   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
79   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
80   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
81   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
82
83   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
84   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
85   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
86   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
87   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
88   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
89   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
90   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
91   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
92   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
93   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
94   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
95   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
96   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
97   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
98   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
99
100   MD5_STEP (MD5_H1, a, b, c, d, w5_t, MD5C20, MD5S20);
101   MD5_STEP (MD5_H2, d, a, b, c, w8_t, MD5C21, MD5S21);
102   MD5_STEP (MD5_H1, c, d, a, b, wb_t, MD5C22, MD5S22);
103   MD5_STEP (MD5_H2, b, c, d, a, we_t, MD5C23, MD5S23);
104   MD5_STEP (MD5_H1, a, b, c, d, w1_t, MD5C24, MD5S20);
105   MD5_STEP (MD5_H2, d, a, b, c, w4_t, MD5C25, MD5S21);
106   MD5_STEP (MD5_H1, c, d, a, b, w7_t, MD5C26, MD5S22);
107   MD5_STEP (MD5_H2, b, c, d, a, wa_t, MD5C27, MD5S23);
108   MD5_STEP (MD5_H1, a, b, c, d, wd_t, MD5C28, MD5S20);
109   MD5_STEP (MD5_H2, d, a, b, c, w0_t, MD5C29, MD5S21);
110   MD5_STEP (MD5_H1, c, d, a, b, w3_t, MD5C2a, MD5S22);
111   MD5_STEP (MD5_H2, b, c, d, a, w6_t, MD5C2b, MD5S23);
112   MD5_STEP (MD5_H1, a, b, c, d, w9_t, MD5C2c, MD5S20);
113   MD5_STEP (MD5_H2, d, a, b, c, wc_t, MD5C2d, MD5S21);
114   MD5_STEP (MD5_H1, c, d, a, b, wf_t, MD5C2e, MD5S22);
115   MD5_STEP (MD5_H2, b, c, d, a, w2_t, MD5C2f, MD5S23);
116
117   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
118   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
119   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
120   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
121   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
122   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
123   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
124   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
125   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
126   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
127   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
128   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
129   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
130   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
131   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
132   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
133
134   digest[0] += a;
135   digest[1] += b;
136   digest[2] += c;
137   digest[3] += d;
138 }
139
140 extern "C" __global__ void __launch_bounds__ (256, 1) m00400_init (const pw_t *pws, const gpu_rule_t *rules_buf, const comb_t *combs_buf, const bf_t *bfs_buf, phpass_tmp_t *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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
141 {
142   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
143
144   if (gid >= gid_max) return;
145
146   u32x w0[4];
147
148   w0[0] = pws[gid].i[ 0];
149   w0[1] = pws[gid].i[ 1];
150   w0[2] = pws[gid].i[ 2];
151   w0[3] = pws[gid].i[ 3];
152
153   u32x w1[4];
154
155   w1[0] = pws[gid].i[ 4];
156   w1[1] = pws[gid].i[ 5];
157   w1[2] = pws[gid].i[ 6];
158   w1[3] = pws[gid].i[ 7];
159
160   u32x w2[4];
161
162   w2[0] = pws[gid].i[ 8];
163   w2[1] = pws[gid].i[ 9];
164   w2[2] = 0;
165   w2[3] = 0;
166
167   const u32 pw_len = pws[gid].pw_len;
168
169   /**
170    * salt
171    */
172
173   u32 salt_buf[2];
174
175   salt_buf[0] = salt_bufs[salt_pos].salt_buf[0];
176   salt_buf[1] = salt_bufs[salt_pos].salt_buf[1];
177
178   /**
179    * init
180    */
181
182   u32 block_len = 8 + pw_len;
183
184   u32x block0[4];
185
186   block0[0] = salt_buf[0];
187   block0[1] = salt_buf[1];
188   block0[2] = w0[0];
189   block0[3] = w0[1];
190
191   u32x block1[4];
192
193   block1[0] = w0[2];
194   block1[1] = w0[3];
195   block1[2] = w1[0];
196   block1[3] = w1[1];
197
198   u32x block2[4];
199
200   block2[0] = w1[2];
201   block2[1] = w1[3];
202   block2[2] = w2[0];
203   block2[3] = w2[1];
204
205   u32x block3[4];
206
207   block3[0] = 0;
208   block3[1] = 0;
209   block3[2] = block_len * 8;
210   block3[3] = 0;
211
212   append_0x80_4 (block0, block1, block2, block3, block_len);
213
214   /**
215    * init
216    */
217
218   u32x digest[4];
219
220   digest[0] = MD5M_A;
221   digest[1] = MD5M_B;
222   digest[2] = MD5M_C;
223   digest[3] = MD5M_D;
224
225   md5_transform (block0, block1, block2, block3, digest);
226
227   tmps[gid].digest_buf[0] = digest[0];
228   tmps[gid].digest_buf[1] = digest[1];
229   tmps[gid].digest_buf[2] = digest[2];
230   tmps[gid].digest_buf[3] = digest[3];
231 }
232
233 extern "C" __global__ void __launch_bounds__ (256, 1) m00400_loop (const pw_t *pws, const gpu_rule_t *rules_buf, const comb_t *combs_buf, const bf_t *bfs_buf, phpass_tmp_t *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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
234 {
235   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
236
237   if (gid >= gid_max) return;
238
239   u32x w0[4];
240
241   w0[0] = pws[gid].i[ 0];
242   w0[1] = pws[gid].i[ 1];
243   w0[2] = pws[gid].i[ 2];
244   w0[3] = pws[gid].i[ 3];
245
246   u32x w1[4];
247
248   w1[0] = pws[gid].i[ 4];
249   w1[1] = pws[gid].i[ 5];
250   w1[2] = pws[gid].i[ 6];
251   w1[3] = pws[gid].i[ 7];
252
253   u32x w2[4];
254
255   w2[0] = pws[gid].i[ 8];
256   w2[1] = pws[gid].i[ 9];
257   w2[2] = 0;
258   w2[3] = 0;
259
260   const u32 pw_len = pws[gid].pw_len;
261
262   /**
263    * digest
264    */
265
266   u32x digest[4];
267
268   digest[0] = tmps[gid].digest_buf[0];
269   digest[1] = tmps[gid].digest_buf[1];
270   digest[2] = tmps[gid].digest_buf[2];
271   digest[3] = tmps[gid].digest_buf[3];
272
273   /**
274    * loop
275    */
276
277   u32 block_len = (16 + pw_len);
278
279   u32x block0[4];
280
281   block0[0] = 0;
282   block0[1] = 0;
283   block0[2] = 0;
284   block0[3] = 0;
285
286   u32x block1[4];
287
288   block1[0] = w0[0];
289   block1[1] = w0[1];
290   block1[2] = w0[2];
291   block1[3] = w0[3];
292
293   u32x block2[4];
294
295   block2[0] = w1[0];
296   block2[1] = w1[1];
297   block2[2] = w1[2];
298   block2[3] = w1[3];
299
300   u32x block3[4];
301
302   block3[0] = w2[0];
303   block3[1] = w2[1];
304   block3[2] = block_len * 8;
305   block3[3] = 0;
306
307   append_0x80_4 (block0, block1, block2, block3, block_len);
308
309   /**
310    * init
311    */
312
313   for (u32 i = 0; i < loop_cnt; i++)
314   {
315     block0[0] = digest[0];
316     block0[1] = digest[1];
317     block0[2] = digest[2];
318     block0[3] = digest[3];
319
320     digest[0] = MD5M_A;
321     digest[1] = MD5M_B;
322     digest[2] = MD5M_C;
323     digest[3] = MD5M_D;
324
325     md5_transform (block0, block1, block2, block3, digest);
326   }
327
328   tmps[gid].digest_buf[0] = digest[0];
329   tmps[gid].digest_buf[1] = digest[1];
330   tmps[gid].digest_buf[2] = digest[2];
331   tmps[gid].digest_buf[3] = digest[3];
332 }
333
334 extern "C" __global__ void __launch_bounds__ (256, 1) m00400_comp (const pw_t *pws, const gpu_rule_t *rules_buf, const comb_t *combs_buf, const bf_t *bfs_buf, phpass_tmp_t *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 rules_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
335 {
336   /**
337    * modifier
338    */
339
340   const u32 gid = (blockIdx.x * blockDim.x) + threadIdx.x;
341
342   if (gid >= gid_max) return;
343
344   const u32 lid = threadIdx.x;
345
346   /**
347    * digest
348    */
349
350   const u32x r0 = tmps[gid].digest_buf[DGST_R0];
351   const u32x r1 = tmps[gid].digest_buf[DGST_R1];
352   const u32x r2 = tmps[gid].digest_buf[DGST_R2];
353   const u32x r3 = tmps[gid].digest_buf[DGST_R3];
354
355   #define il_pos 0
356
357   #include VECT_COMPARE_M
358 }