- Dropped all vector code since new GPU's are all scalar, makes the code much easier
[hashcat.git] / OpenCL / m05300_a1.cl
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 #define DGST_R0 0
12 #define DGST_R1 3
13 #define DGST_R2 2
14 #define DGST_R3 1
15
16 #include "include/kernel_functions.c"
17 #include "types_ocl.c"
18 #include "common.c"
19
20 #define COMPARE_S "check_single_comp4.c"
21 #define COMPARE_M "check_multi_comp4.c"
22
23 static void md5_transform (const u32 w0[4], const u32 w1[4], const u32 w2[4], const u32 w3[4], u32 digest[4])
24 {
25   u32 a = digest[0];
26   u32 b = digest[1];
27   u32 c = digest[2];
28   u32 d = digest[3];
29
30   u32 w0_t = w0[0];
31   u32 w1_t = w0[1];
32   u32 w2_t = w0[2];
33   u32 w3_t = w0[3];
34   u32 w4_t = w1[0];
35   u32 w5_t = w1[1];
36   u32 w6_t = w1[2];
37   u32 w7_t = w1[3];
38   u32 w8_t = w2[0];
39   u32 w9_t = w2[1];
40   u32 wa_t = w2[2];
41   u32 wb_t = w2[3];
42   u32 wc_t = w3[0];
43   u32 wd_t = w3[1];
44   u32 we_t = w3[2];
45   u32 wf_t = w3[3];
46
47   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
48   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
49   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
50   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
51   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
52   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
53   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
54   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
55   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
56   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
57   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
58   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
59   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
60   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
61   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
62   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
63
64   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
65   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
66   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
67   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
68   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
69   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
70   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
71   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
72   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
73   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
74   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
75   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
76   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
77   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
78   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
79   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
80
81   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
82   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
83   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
84   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
85   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
86   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
87   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
88   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
89   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
90   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
91   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
92   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
93   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
94   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
95   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
96   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
97
98   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
99   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
100   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
101   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
102   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
103   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
104   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
105   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
106   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
107   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
108   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
109   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
110   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
111   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
112   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
113   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
114
115   digest[0] += a;
116   digest[1] += b;
117   digest[2] += c;
118   digest[3] += d;
119 }
120
121 static void hmac_md5_pad (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u32 ipad[4], u32 opad[4])
122 {
123   w0[0] = w0[0] ^ 0x36363636;
124   w0[1] = w0[1] ^ 0x36363636;
125   w0[2] = w0[2] ^ 0x36363636;
126   w0[3] = w0[3] ^ 0x36363636;
127   w1[0] = w1[0] ^ 0x36363636;
128   w1[1] = w1[1] ^ 0x36363636;
129   w1[2] = w1[2] ^ 0x36363636;
130   w1[3] = w1[3] ^ 0x36363636;
131   w2[0] = w2[0] ^ 0x36363636;
132   w2[1] = w2[1] ^ 0x36363636;
133   w2[2] = w2[2] ^ 0x36363636;
134   w2[3] = w2[3] ^ 0x36363636;
135   w3[0] = w3[0] ^ 0x36363636;
136   w3[1] = w3[1] ^ 0x36363636;
137   w3[2] = w3[2] ^ 0x36363636;
138   w3[3] = w3[3] ^ 0x36363636;
139
140   ipad[0] = MD5M_A;
141   ipad[1] = MD5M_B;
142   ipad[2] = MD5M_C;
143   ipad[3] = MD5M_D;
144
145   md5_transform (w0, w1, w2, w3, ipad);
146
147   w0[0] = w0[0] ^ 0x6a6a6a6a;
148   w0[1] = w0[1] ^ 0x6a6a6a6a;
149   w0[2] = w0[2] ^ 0x6a6a6a6a;
150   w0[3] = w0[3] ^ 0x6a6a6a6a;
151   w1[0] = w1[0] ^ 0x6a6a6a6a;
152   w1[1] = w1[1] ^ 0x6a6a6a6a;
153   w1[2] = w1[2] ^ 0x6a6a6a6a;
154   w1[3] = w1[3] ^ 0x6a6a6a6a;
155   w2[0] = w2[0] ^ 0x6a6a6a6a;
156   w2[1] = w2[1] ^ 0x6a6a6a6a;
157   w2[2] = w2[2] ^ 0x6a6a6a6a;
158   w2[3] = w2[3] ^ 0x6a6a6a6a;
159   w3[0] = w3[0] ^ 0x6a6a6a6a;
160   w3[1] = w3[1] ^ 0x6a6a6a6a;
161   w3[2] = w3[2] ^ 0x6a6a6a6a;
162   w3[3] = w3[3] ^ 0x6a6a6a6a;
163
164   opad[0] = MD5M_A;
165   opad[1] = MD5M_B;
166   opad[2] = MD5M_C;
167   opad[3] = MD5M_D;
168
169   md5_transform (w0, w1, w2, w3, opad);
170 }
171
172 static void hmac_md5_run (u32 w0[4], u32 w1[4], u32 w2[4], u32 w3[4], u32 ipad[4], u32 opad[4], u32 digest[4])
173 {
174   digest[0] = ipad[0];
175   digest[1] = ipad[1];
176   digest[2] = ipad[2];
177   digest[3] = ipad[3];
178
179   md5_transform (w0, w1, w2, w3, digest);
180
181   w0[0] = digest[0];
182   w0[1] = digest[1];
183   w0[2] = digest[2];
184   w0[3] = digest[3];
185   w1[0] = 0x80;
186   w1[1] = 0;
187   w1[2] = 0;
188   w1[3] = 0;
189   w2[0] = 0;
190   w2[1] = 0;
191   w2[2] = 0;
192   w2[3] = 0;
193   w3[0] = 0;
194   w3[1] = 0;
195   w3[2] = (64 + 16) * 8;
196   w3[3] = 0;
197
198   digest[0] = opad[0];
199   digest[1] = opad[1];
200   digest[2] = opad[2];
201   digest[3] = opad[3];
202
203   md5_transform (w0, w1, w2, w3, digest);
204 }
205
206 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
207 {
208   /**
209    * modifier
210    */
211
212   const u32 lid = get_local_id (0);
213
214   /**
215    * base
216    */
217
218   const u32 gid = get_global_id (0);
219
220   u32 wordl0[4];
221
222   wordl0[0] = pws[gid].i[ 0];
223   wordl0[1] = pws[gid].i[ 1];
224   wordl0[2] = pws[gid].i[ 2];
225   wordl0[3] = pws[gid].i[ 3];
226
227   u32 wordl1[4];
228
229   wordl1[0] = pws[gid].i[ 4];
230   wordl1[1] = pws[gid].i[ 5];
231   wordl1[2] = pws[gid].i[ 6];
232   wordl1[3] = pws[gid].i[ 7];
233
234   u32 wordl2[4];
235
236   wordl2[0] = 0;
237   wordl2[1] = 0;
238   wordl2[2] = 0;
239   wordl2[3] = 0;
240
241   u32 wordl3[4];
242
243   wordl3[0] = 0;
244   wordl3[1] = 0;
245   wordl3[2] = 0;
246   wordl3[3] = 0;
247
248   const u32 pw_l_len = pws[gid].pw_len;
249
250   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
251   {
252     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
253   }
254
255   /**
256    * salt
257    */
258
259   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
260   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
261
262   u32 salt_buf0[4];
263
264   salt_buf0[0] = ikepsk_bufs[salt_pos].nr_buf[ 0];
265   salt_buf0[1] = ikepsk_bufs[salt_pos].nr_buf[ 1];
266   salt_buf0[2] = ikepsk_bufs[salt_pos].nr_buf[ 2];
267   salt_buf0[3] = ikepsk_bufs[salt_pos].nr_buf[ 3];
268
269   u32 salt_buf1[4];
270
271   salt_buf1[0] = ikepsk_bufs[salt_pos].nr_buf[ 4];
272   salt_buf1[1] = ikepsk_bufs[salt_pos].nr_buf[ 5];
273   salt_buf1[2] = ikepsk_bufs[salt_pos].nr_buf[ 6];
274   salt_buf1[3] = ikepsk_bufs[salt_pos].nr_buf[ 7];
275
276   u32 salt_buf2[4];
277
278   salt_buf2[0] = ikepsk_bufs[salt_pos].nr_buf[ 8];
279   salt_buf2[1] = ikepsk_bufs[salt_pos].nr_buf[ 9];
280   salt_buf2[2] = ikepsk_bufs[salt_pos].nr_buf[10];
281   salt_buf2[3] = ikepsk_bufs[salt_pos].nr_buf[11];
282
283   u32 salt_buf3[4];
284
285   salt_buf3[0] = ikepsk_bufs[salt_pos].nr_buf[12];
286   salt_buf3[1] = ikepsk_bufs[salt_pos].nr_buf[13];
287   salt_buf3[2] = 0;
288   salt_buf3[3] = 0;
289
290   __local u32 s_msg_buf[128];
291
292   const u32 lid2 = lid * 2;
293
294   s_msg_buf[lid2 + 0] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 0];
295   s_msg_buf[lid2 + 1] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 1];
296
297   barrier (CLK_LOCAL_MEM_FENCE);
298
299   if (gid >= gid_max) return;
300
301   /**
302    * loop
303    */
304
305   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
306   {
307     const u32 pw_r_len = combs_buf[il_pos].pw_len;
308
309     const u32 pw_len = pw_l_len + pw_r_len;
310
311     u32 wordr0[4];
312
313     wordr0[0] = combs_buf[il_pos].i[0];
314     wordr0[1] = combs_buf[il_pos].i[1];
315     wordr0[2] = combs_buf[il_pos].i[2];
316     wordr0[3] = combs_buf[il_pos].i[3];
317
318     u32 wordr1[4];
319
320     wordr1[0] = combs_buf[il_pos].i[4];
321     wordr1[1] = combs_buf[il_pos].i[5];
322     wordr1[2] = combs_buf[il_pos].i[6];
323     wordr1[3] = combs_buf[il_pos].i[7];
324
325     u32 wordr2[4];
326
327     wordr2[0] = 0;
328     wordr2[1] = 0;
329     wordr2[2] = 0;
330     wordr2[3] = 0;
331
332     u32 wordr3[4];
333
334     wordr3[0] = 0;
335     wordr3[1] = 0;
336     wordr3[2] = 0;
337     wordr3[3] = 0;
338
339     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
340     {
341       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
342     }
343
344     u32 w0[4];
345
346     w0[0] = wordl0[0] | wordr0[0];
347     w0[1] = wordl0[1] | wordr0[1];
348     w0[2] = wordl0[2] | wordr0[2];
349     w0[3] = wordl0[3] | wordr0[3];
350
351     u32 w1[4];
352
353     w1[0] = wordl1[0] | wordr1[0];
354     w1[1] = wordl1[1] | wordr1[1];
355     w1[2] = wordl1[2] | wordr1[2];
356     w1[3] = wordl1[3] | wordr1[3];
357
358     u32 w2[4];
359
360     w2[0] = wordl2[0] | wordr2[0];
361     w2[1] = wordl2[1] | wordr2[1];
362     w2[2] = wordl2[2] | wordr2[2];
363     w2[3] = wordl2[3] | wordr2[3];
364
365     u32 w3[4];
366
367     w3[0] = wordl3[0] | wordr3[0];
368     w3[1] = wordl3[1] | wordr3[1];
369     w3[2] = wordl3[2] | wordr3[2];
370     w3[3] = wordl3[3] | wordr3[3];
371
372     /**
373      * pads
374      */
375
376     u32 w0_t[4];
377
378     w0_t[0] = w0[0];
379     w0_t[1] = w0[1];
380     w0_t[2] = w0[2];
381     w0_t[3] = w0[3];
382
383     u32 w1_t[4];
384
385     w1_t[0] = w1[0];
386     w1_t[1] = w1[1];
387     w1_t[2] = w1[2];
388     w1_t[3] = w1[3];
389
390     u32 w2_t[4];
391
392     w2_t[0] = w2[0];
393     w2_t[1] = w2[1];
394     w2_t[2] = w2[2];
395     w2_t[3] = w2[3];
396
397     u32 w3_t[4];
398
399     w3_t[0] = w3[0];
400     w3_t[1] = w3[1];
401     w3_t[2] = w3[2];
402     w3_t[3] = w3[3];
403
404     u32 ipad[4];
405     u32 opad[4];
406
407     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
408
409     w0_t[0] = salt_buf0[0];
410     w0_t[1] = salt_buf0[1];
411     w0_t[2] = salt_buf0[2];
412     w0_t[3] = salt_buf0[3];
413     w1_t[0] = salt_buf1[0];
414     w1_t[1] = salt_buf1[1];
415     w1_t[2] = salt_buf1[2];
416     w1_t[3] = salt_buf1[3];
417     w2_t[0] = salt_buf2[0];
418     w2_t[1] = salt_buf2[1];
419     w2_t[2] = salt_buf2[2];
420     w2_t[3] = salt_buf2[3];
421     w3_t[0] = salt_buf3[0];
422     w3_t[1] = salt_buf3[1];
423     w3_t[2] = (64 + nr_len) * 8;
424     w3_t[3] = 0;
425
426     u32 digest[4];
427
428     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
429
430     w0_t[0] = digest[0];
431     w0_t[1] = digest[1];
432     w0_t[2] = digest[2];
433     w0_t[3] = digest[3];
434     w1_t[0] = 0;
435     w1_t[1] = 0;
436     w1_t[2] = 0;
437     w1_t[3] = 0;
438     w2_t[0] = 0;
439     w2_t[1] = 0;
440     w2_t[2] = 0;
441     w2_t[3] = 0;
442     w3_t[0] = 0;
443     w3_t[1] = 0;
444     w3_t[2] = 0;
445     w3_t[3] = 0;
446
447     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
448
449     int left;
450     int off;
451
452     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
453     {
454       w0_t[0] = s_msg_buf[off +  0];
455       w0_t[1] = s_msg_buf[off +  1];
456       w0_t[2] = s_msg_buf[off +  2];
457       w0_t[3] = s_msg_buf[off +  3];
458       w1_t[0] = s_msg_buf[off +  4];
459       w1_t[1] = s_msg_buf[off +  5];
460       w1_t[2] = s_msg_buf[off +  6];
461       w1_t[3] = s_msg_buf[off +  7];
462       w2_t[0] = s_msg_buf[off +  8];
463       w2_t[1] = s_msg_buf[off +  9];
464       w2_t[2] = s_msg_buf[off + 10];
465       w2_t[3] = s_msg_buf[off + 11];
466       w3_t[0] = s_msg_buf[off + 12];
467       w3_t[1] = s_msg_buf[off + 13];
468       w3_t[2] = s_msg_buf[off + 14];
469       w3_t[3] = s_msg_buf[off + 15];
470
471       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
472     }
473
474     w0_t[0] = s_msg_buf[off +  0];
475     w0_t[1] = s_msg_buf[off +  1];
476     w0_t[2] = s_msg_buf[off +  2];
477     w0_t[3] = s_msg_buf[off +  3];
478     w1_t[0] = s_msg_buf[off +  4];
479     w1_t[1] = s_msg_buf[off +  5];
480     w1_t[2] = s_msg_buf[off +  6];
481     w1_t[3] = s_msg_buf[off +  7];
482     w2_t[0] = s_msg_buf[off +  8];
483     w2_t[1] = s_msg_buf[off +  9];
484     w2_t[2] = s_msg_buf[off + 10];
485     w2_t[3] = s_msg_buf[off + 11];
486     w3_t[0] = s_msg_buf[off + 12];
487     w3_t[1] = s_msg_buf[off + 13];
488     w3_t[2] = (64 + msg_len) * 8;
489     w3_t[3] = 0;
490
491     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
492
493     const u32 r0 = digest[0];
494     const u32 r1 = digest[3];
495     const u32 r2 = digest[2];
496     const u32 r3 = digest[1];
497
498     #include COMPARE_M
499   }
500 }
501
502 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
503 {
504 }
505
506 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
507 {
508 }
509
510 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
511 {
512   /**
513    * modifier
514    */
515
516   const u32 lid = get_local_id (0);
517
518   /**
519    * base
520    */
521
522   const u32 gid = get_global_id (0);
523
524   u32 wordl0[4];
525
526   wordl0[0] = pws[gid].i[ 0];
527   wordl0[1] = pws[gid].i[ 1];
528   wordl0[2] = pws[gid].i[ 2];
529   wordl0[3] = pws[gid].i[ 3];
530
531   u32 wordl1[4];
532
533   wordl1[0] = pws[gid].i[ 4];
534   wordl1[1] = pws[gid].i[ 5];
535   wordl1[2] = pws[gid].i[ 6];
536   wordl1[3] = pws[gid].i[ 7];
537
538   u32 wordl2[4];
539
540   wordl2[0] = 0;
541   wordl2[1] = 0;
542   wordl2[2] = 0;
543   wordl2[3] = 0;
544
545   u32 wordl3[4];
546
547   wordl3[0] = 0;
548   wordl3[1] = 0;
549   wordl3[2] = 0;
550   wordl3[3] = 0;
551
552   const u32 pw_l_len = pws[gid].pw_len;
553
554   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
555   {
556     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
557   }
558
559   /**
560    * salt
561    */
562
563   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
564   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
565
566   u32 salt_buf0[4];
567
568   salt_buf0[0] = ikepsk_bufs[salt_pos].nr_buf[ 0];
569   salt_buf0[1] = ikepsk_bufs[salt_pos].nr_buf[ 1];
570   salt_buf0[2] = ikepsk_bufs[salt_pos].nr_buf[ 2];
571   salt_buf0[3] = ikepsk_bufs[salt_pos].nr_buf[ 3];
572
573   u32 salt_buf1[4];
574
575   salt_buf1[0] = ikepsk_bufs[salt_pos].nr_buf[ 4];
576   salt_buf1[1] = ikepsk_bufs[salt_pos].nr_buf[ 5];
577   salt_buf1[2] = ikepsk_bufs[salt_pos].nr_buf[ 6];
578   salt_buf1[3] = ikepsk_bufs[salt_pos].nr_buf[ 7];
579
580   u32 salt_buf2[4];
581
582   salt_buf2[0] = ikepsk_bufs[salt_pos].nr_buf[ 8];
583   salt_buf2[1] = ikepsk_bufs[salt_pos].nr_buf[ 9];
584   salt_buf2[2] = ikepsk_bufs[salt_pos].nr_buf[10];
585   salt_buf2[3] = ikepsk_bufs[salt_pos].nr_buf[11];
586
587   u32 salt_buf3[4];
588
589   salt_buf3[0] = ikepsk_bufs[salt_pos].nr_buf[12];
590   salt_buf3[1] = ikepsk_bufs[salt_pos].nr_buf[13];
591   salt_buf3[2] = 0;
592   salt_buf3[3] = 0;
593
594   __local u32 s_msg_buf[128];
595
596   const u32 lid2 = lid * 2;
597
598   s_msg_buf[lid2 + 0] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 0];
599   s_msg_buf[lid2 + 1] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 1];
600
601   barrier (CLK_LOCAL_MEM_FENCE);
602
603   if (gid >= gid_max) return;
604
605   /**
606    * digest
607    */
608
609   const u32 search[4] =
610   {
611     digests_buf[digests_offset].digest_buf[DGST_R0],
612     digests_buf[digests_offset].digest_buf[DGST_R1],
613     digests_buf[digests_offset].digest_buf[DGST_R2],
614     digests_buf[digests_offset].digest_buf[DGST_R3]
615   };
616
617   /**
618    * loop
619    */
620
621   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
622   {
623     const u32 pw_r_len = combs_buf[il_pos].pw_len;
624
625     const u32 pw_len = pw_l_len + pw_r_len;
626
627     u32 wordr0[4];
628
629     wordr0[0] = combs_buf[il_pos].i[0];
630     wordr0[1] = combs_buf[il_pos].i[1];
631     wordr0[2] = combs_buf[il_pos].i[2];
632     wordr0[3] = combs_buf[il_pos].i[3];
633
634     u32 wordr1[4];
635
636     wordr1[0] = combs_buf[il_pos].i[4];
637     wordr1[1] = combs_buf[il_pos].i[5];
638     wordr1[2] = combs_buf[il_pos].i[6];
639     wordr1[3] = combs_buf[il_pos].i[7];
640
641     u32 wordr2[4];
642
643     wordr2[0] = 0;
644     wordr2[1] = 0;
645     wordr2[2] = 0;
646     wordr2[3] = 0;
647
648     u32 wordr3[4];
649
650     wordr3[0] = 0;
651     wordr3[1] = 0;
652     wordr3[2] = 0;
653     wordr3[3] = 0;
654
655     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
656     {
657       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
658     }
659
660     u32 w0[4];
661
662     w0[0] = wordl0[0] | wordr0[0];
663     w0[1] = wordl0[1] | wordr0[1];
664     w0[2] = wordl0[2] | wordr0[2];
665     w0[3] = wordl0[3] | wordr0[3];
666
667     u32 w1[4];
668
669     w1[0] = wordl1[0] | wordr1[0];
670     w1[1] = wordl1[1] | wordr1[1];
671     w1[2] = wordl1[2] | wordr1[2];
672     w1[3] = wordl1[3] | wordr1[3];
673
674     u32 w2[4];
675
676     w2[0] = wordl2[0] | wordr2[0];
677     w2[1] = wordl2[1] | wordr2[1];
678     w2[2] = wordl2[2] | wordr2[2];
679     w2[3] = wordl2[3] | wordr2[3];
680
681     u32 w3[4];
682
683     w3[0] = wordl3[0] | wordr3[0];
684     w3[1] = wordl3[1] | wordr3[1];
685     w3[2] = wordl3[2] | wordr3[2];
686     w3[3] = wordl3[3] | wordr3[3];
687
688     /**
689      * pads
690      */
691
692     u32 w0_t[4];
693
694     w0_t[0] = w0[0];
695     w0_t[1] = w0[1];
696     w0_t[2] = w0[2];
697     w0_t[3] = w0[3];
698
699     u32 w1_t[4];
700
701     w1_t[0] = w1[0];
702     w1_t[1] = w1[1];
703     w1_t[2] = w1[2];
704     w1_t[3] = w1[3];
705
706     u32 w2_t[4];
707
708     w2_t[0] = 0;
709     w2_t[1] = 0;
710     w2_t[2] = 0;
711     w2_t[3] = 0;
712
713     u32 w3_t[4];
714
715     w3_t[0] = 0;
716     w3_t[1] = 0;
717     w3_t[2] = 0;
718     w3_t[3] = 0;
719
720     u32 ipad[4];
721     u32 opad[4];
722
723     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
724
725     w0_t[0] = salt_buf0[0];
726     w0_t[1] = salt_buf0[1];
727     w0_t[2] = salt_buf0[2];
728     w0_t[3] = salt_buf0[3];
729     w1_t[0] = salt_buf1[0];
730     w1_t[1] = salt_buf1[1];
731     w1_t[2] = salt_buf1[2];
732     w1_t[3] = salt_buf1[3];
733     w2_t[0] = salt_buf2[0];
734     w2_t[1] = salt_buf2[1];
735     w2_t[2] = salt_buf2[2];
736     w2_t[3] = salt_buf2[3];
737     w3_t[0] = salt_buf3[0];
738     w3_t[1] = salt_buf3[1];
739     w3_t[2] = (64 + nr_len) * 8;
740     w3_t[3] = 0;
741
742     u32 digest[4];
743
744     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
745
746     w0_t[0] = digest[0];
747     w0_t[1] = digest[1];
748     w0_t[2] = digest[2];
749     w0_t[3] = digest[3];
750     w1_t[0] = 0;
751     w1_t[1] = 0;
752     w1_t[2] = 0;
753     w1_t[3] = 0;
754     w2_t[0] = 0;
755     w2_t[1] = 0;
756     w2_t[2] = 0;
757     w2_t[3] = 0;
758     w3_t[0] = 0;
759     w3_t[1] = 0;
760     w3_t[2] = 0;
761     w3_t[3] = 0;
762
763     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
764
765     int left;
766     int off;
767
768     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
769     {
770       w0_t[0] = s_msg_buf[off +  0];
771       w0_t[1] = s_msg_buf[off +  1];
772       w0_t[2] = s_msg_buf[off +  2];
773       w0_t[3] = s_msg_buf[off +  3];
774       w1_t[0] = s_msg_buf[off +  4];
775       w1_t[1] = s_msg_buf[off +  5];
776       w1_t[2] = s_msg_buf[off +  6];
777       w1_t[3] = s_msg_buf[off +  7];
778       w2_t[0] = s_msg_buf[off +  8];
779       w2_t[1] = s_msg_buf[off +  9];
780       w2_t[2] = s_msg_buf[off + 10];
781       w2_t[3] = s_msg_buf[off + 11];
782       w3_t[0] = s_msg_buf[off + 12];
783       w3_t[1] = s_msg_buf[off + 13];
784       w3_t[2] = s_msg_buf[off + 14];
785       w3_t[3] = s_msg_buf[off + 15];
786
787       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
788     }
789
790     w0_t[0] = s_msg_buf[off +  0];
791     w0_t[1] = s_msg_buf[off +  1];
792     w0_t[2] = s_msg_buf[off +  2];
793     w0_t[3] = s_msg_buf[off +  3];
794     w1_t[0] = s_msg_buf[off +  4];
795     w1_t[1] = s_msg_buf[off +  5];
796     w1_t[2] = s_msg_buf[off +  6];
797     w1_t[3] = s_msg_buf[off +  7];
798     w2_t[0] = s_msg_buf[off +  8];
799     w2_t[1] = s_msg_buf[off +  9];
800     w2_t[2] = s_msg_buf[off + 10];
801     w2_t[3] = s_msg_buf[off + 11];
802     w3_t[0] = s_msg_buf[off + 12];
803     w3_t[1] = s_msg_buf[off + 13];
804     w3_t[2] = (64 + msg_len) * 8;
805     w3_t[3] = 0;
806
807     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
808
809     const u32 r0 = digest[0];
810     const u32 r1 = digest[3];
811     const u32 r2 = digest[2];
812     const u32 r3 = digest[1];
813
814     #include COMPARE_S
815   }
816 }
817
818 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
819 {
820 }
821
822 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 ikepsk_t *ikepsk_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)
823 {
824 }