Replace the substring GPU to a more appropriate "device" or "kernel" substring depend...
[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 "OpenCL/types_ocl.c"
18 #include "OpenCL/common.c"
19
20 #define COMPARE_S "OpenCL/check_single_comp4.c"
21 #define COMPARE_M "OpenCL/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 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 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   __local u32 w_s[16];
263
264   if (lid < 16)
265   {
266     w_s[lid] = ikepsk_bufs[salt_pos].nr_buf[lid];
267   }
268
269   barrier (CLK_LOCAL_MEM_FENCE);
270
271   __local u32 s_msg_buf[128];
272
273   const u32 lid2 = lid * 2;
274
275   s_msg_buf[lid2 + 0] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 0];
276   s_msg_buf[lid2 + 1] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 1];
277
278   barrier (CLK_LOCAL_MEM_FENCE);
279
280   if (gid >= gid_max) return;
281
282   /**
283    * loop
284    */
285
286   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
287   {
288     const u32 pw_r_len = combs_buf[il_pos].pw_len;
289
290     const u32 pw_len = pw_l_len + pw_r_len;
291
292     u32 wordr0[4];
293
294     wordr0[0] = combs_buf[il_pos].i[0];
295     wordr0[1] = combs_buf[il_pos].i[1];
296     wordr0[2] = combs_buf[il_pos].i[2];
297     wordr0[3] = combs_buf[il_pos].i[3];
298
299     u32 wordr1[4];
300
301     wordr1[0] = combs_buf[il_pos].i[4];
302     wordr1[1] = combs_buf[il_pos].i[5];
303     wordr1[2] = combs_buf[il_pos].i[6];
304     wordr1[3] = combs_buf[il_pos].i[7];
305
306     u32 wordr2[4];
307
308     wordr2[0] = 0;
309     wordr2[1] = 0;
310     wordr2[2] = 0;
311     wordr2[3] = 0;
312
313     u32 wordr3[4];
314
315     wordr3[0] = 0;
316     wordr3[1] = 0;
317     wordr3[2] = 0;
318     wordr3[3] = 0;
319
320     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
321     {
322       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
323     }
324
325     u32 w0[4];
326
327     w0[0] = wordl0[0] | wordr0[0];
328     w0[1] = wordl0[1] | wordr0[1];
329     w0[2] = wordl0[2] | wordr0[2];
330     w0[3] = wordl0[3] | wordr0[3];
331
332     u32 w1[4];
333
334     w1[0] = wordl1[0] | wordr1[0];
335     w1[1] = wordl1[1] | wordr1[1];
336     w1[2] = wordl1[2] | wordr1[2];
337     w1[3] = wordl1[3] | wordr1[3];
338
339     u32 w2[4];
340
341     w2[0] = wordl2[0] | wordr2[0];
342     w2[1] = wordl2[1] | wordr2[1];
343     w2[2] = wordl2[2] | wordr2[2];
344     w2[3] = wordl2[3] | wordr2[3];
345
346     u32 w3[4];
347
348     w3[0] = wordl3[0] | wordr3[0];
349     w3[1] = wordl3[1] | wordr3[1];
350     w3[2] = wordl3[2] | wordr3[2];
351     w3[3] = wordl3[3] | wordr3[3];
352
353     /**
354      * pads
355      */
356
357     u32 w0_t[4];
358
359     w0_t[0] = w0[0];
360     w0_t[1] = w0[1];
361     w0_t[2] = w0[2];
362     w0_t[3] = w0[3];
363
364     u32 w1_t[4];
365
366     w1_t[0] = w1[0];
367     w1_t[1] = w1[1];
368     w1_t[2] = w1[2];
369     w1_t[3] = w1[3];
370
371     u32 w2_t[4];
372
373     w2_t[0] = w2[0];
374     w2_t[1] = w2[1];
375     w2_t[2] = w2[2];
376     w2_t[3] = w2[3];
377
378     u32 w3_t[4];
379
380     w3_t[0] = w3[0];
381     w3_t[1] = w3[1];
382     w3_t[2] = w3[2];
383     w3_t[3] = w3[3];
384
385     u32 ipad[4];
386     u32 opad[4];
387
388     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
389
390     w0_t[0] = w_s[ 0];
391     w0_t[1] = w_s[ 1];
392     w0_t[2] = w_s[ 2];
393     w0_t[3] = w_s[ 3];
394     w1_t[0] = w_s[ 4];
395     w1_t[1] = w_s[ 5];
396     w1_t[2] = w_s[ 6];
397     w1_t[3] = w_s[ 7];
398     w2_t[0] = w_s[ 8];
399     w2_t[1] = w_s[ 9];
400     w2_t[2] = w_s[10];
401     w2_t[3] = w_s[11];
402     w3_t[0] = w_s[12];
403     w3_t[1] = w_s[13];
404     w3_t[2] = (64 + nr_len) * 8;
405     w3_t[3] = 0;
406
407     u32 digest[4];
408
409     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
410
411     w0_t[0] = digest[0];
412     w0_t[1] = digest[1];
413     w0_t[2] = digest[2];
414     w0_t[3] = digest[3];
415     w1_t[0] = 0;
416     w1_t[1] = 0;
417     w1_t[2] = 0;
418     w1_t[3] = 0;
419     w2_t[0] = 0;
420     w2_t[1] = 0;
421     w2_t[2] = 0;
422     w2_t[3] = 0;
423     w3_t[0] = 0;
424     w3_t[1] = 0;
425     w3_t[2] = 0;
426     w3_t[3] = 0;
427
428     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
429
430     int left;
431     int off;
432
433     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
434     {
435       w0_t[0] = s_msg_buf[off +  0];
436       w0_t[1] = s_msg_buf[off +  1];
437       w0_t[2] = s_msg_buf[off +  2];
438       w0_t[3] = s_msg_buf[off +  3];
439       w1_t[0] = s_msg_buf[off +  4];
440       w1_t[1] = s_msg_buf[off +  5];
441       w1_t[2] = s_msg_buf[off +  6];
442       w1_t[3] = s_msg_buf[off +  7];
443       w2_t[0] = s_msg_buf[off +  8];
444       w2_t[1] = s_msg_buf[off +  9];
445       w2_t[2] = s_msg_buf[off + 10];
446       w2_t[3] = s_msg_buf[off + 11];
447       w3_t[0] = s_msg_buf[off + 12];
448       w3_t[1] = s_msg_buf[off + 13];
449       w3_t[2] = s_msg_buf[off + 14];
450       w3_t[3] = s_msg_buf[off + 15];
451
452       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
453     }
454
455     w0_t[0] = s_msg_buf[off +  0];
456     w0_t[1] = s_msg_buf[off +  1];
457     w0_t[2] = s_msg_buf[off +  2];
458     w0_t[3] = s_msg_buf[off +  3];
459     w1_t[0] = s_msg_buf[off +  4];
460     w1_t[1] = s_msg_buf[off +  5];
461     w1_t[2] = s_msg_buf[off +  6];
462     w1_t[3] = s_msg_buf[off +  7];
463     w2_t[0] = s_msg_buf[off +  8];
464     w2_t[1] = s_msg_buf[off +  9];
465     w2_t[2] = s_msg_buf[off + 10];
466     w2_t[3] = s_msg_buf[off + 11];
467     w3_t[0] = s_msg_buf[off + 12];
468     w3_t[1] = s_msg_buf[off + 13];
469     w3_t[2] = (64 + msg_len) * 8;
470     w3_t[3] = 0;
471
472     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
473
474     const u32 r0 = digest[0];
475     const u32 r1 = digest[3];
476     const u32 r2 = digest[2];
477     const u32 r3 = digest[1];
478
479     #include COMPARE_M
480   }
481 }
482
483 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 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)
484 {
485 }
486
487 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 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)
488 {
489 }
490
491 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 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)
492 {
493   /**
494    * modifier
495    */
496
497   const u32 lid = get_local_id (0);
498
499   /**
500    * base
501    */
502
503   const u32 gid = get_global_id (0);
504
505   u32 wordl0[4];
506
507   wordl0[0] = pws[gid].i[ 0];
508   wordl0[1] = pws[gid].i[ 1];
509   wordl0[2] = pws[gid].i[ 2];
510   wordl0[3] = pws[gid].i[ 3];
511
512   u32 wordl1[4];
513
514   wordl1[0] = pws[gid].i[ 4];
515   wordl1[1] = pws[gid].i[ 5];
516   wordl1[2] = pws[gid].i[ 6];
517   wordl1[3] = pws[gid].i[ 7];
518
519   u32 wordl2[4];
520
521   wordl2[0] = 0;
522   wordl2[1] = 0;
523   wordl2[2] = 0;
524   wordl2[3] = 0;
525
526   u32 wordl3[4];
527
528   wordl3[0] = 0;
529   wordl3[1] = 0;
530   wordl3[2] = 0;
531   wordl3[3] = 0;
532
533   const u32 pw_l_len = pws[gid].pw_len;
534
535   if (combs_mode == COMBINATOR_MODE_BASE_RIGHT)
536   {
537     switch_buffer_by_offset (wordl0, wordl1, wordl2, wordl3, combs_buf[0].pw_len);
538   }
539
540   /**
541    * salt
542    */
543
544   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
545   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
546
547   __local u32 w_s[16];
548
549   if (lid < 16)
550   {
551     w_s[lid] = ikepsk_bufs[salt_pos].nr_buf[lid];
552   }
553
554   barrier (CLK_LOCAL_MEM_FENCE);
555
556   __local u32 s_msg_buf[128];
557
558   const u32 lid2 = lid * 2;
559
560   s_msg_buf[lid2 + 0] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 0];
561   s_msg_buf[lid2 + 1] = ikepsk_bufs[salt_pos].msg_buf[lid2 + 1];
562
563   barrier (CLK_LOCAL_MEM_FENCE);
564
565   if (gid >= gid_max) return;
566
567   /**
568    * digest
569    */
570
571   const u32 search[4] =
572   {
573     digests_buf[digests_offset].digest_buf[DGST_R0],
574     digests_buf[digests_offset].digest_buf[DGST_R1],
575     digests_buf[digests_offset].digest_buf[DGST_R2],
576     digests_buf[digests_offset].digest_buf[DGST_R3]
577   };
578
579   /**
580    * loop
581    */
582
583   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos++)
584   {
585     const u32 pw_r_len = combs_buf[il_pos].pw_len;
586
587     const u32 pw_len = pw_l_len + pw_r_len;
588
589     u32 wordr0[4];
590
591     wordr0[0] = combs_buf[il_pos].i[0];
592     wordr0[1] = combs_buf[il_pos].i[1];
593     wordr0[2] = combs_buf[il_pos].i[2];
594     wordr0[3] = combs_buf[il_pos].i[3];
595
596     u32 wordr1[4];
597
598     wordr1[0] = combs_buf[il_pos].i[4];
599     wordr1[1] = combs_buf[il_pos].i[5];
600     wordr1[2] = combs_buf[il_pos].i[6];
601     wordr1[3] = combs_buf[il_pos].i[7];
602
603     u32 wordr2[4];
604
605     wordr2[0] = 0;
606     wordr2[1] = 0;
607     wordr2[2] = 0;
608     wordr2[3] = 0;
609
610     u32 wordr3[4];
611
612     wordr3[0] = 0;
613     wordr3[1] = 0;
614     wordr3[2] = 0;
615     wordr3[3] = 0;
616
617     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
618     {
619       switch_buffer_by_offset (wordr0, wordr1, wordr2, wordr3, pw_l_len);
620     }
621
622     u32 w0[4];
623
624     w0[0] = wordl0[0] | wordr0[0];
625     w0[1] = wordl0[1] | wordr0[1];
626     w0[2] = wordl0[2] | wordr0[2];
627     w0[3] = wordl0[3] | wordr0[3];
628
629     u32 w1[4];
630
631     w1[0] = wordl1[0] | wordr1[0];
632     w1[1] = wordl1[1] | wordr1[1];
633     w1[2] = wordl1[2] | wordr1[2];
634     w1[3] = wordl1[3] | wordr1[3];
635
636     u32 w2[4];
637
638     w2[0] = wordl2[0] | wordr2[0];
639     w2[1] = wordl2[1] | wordr2[1];
640     w2[2] = wordl2[2] | wordr2[2];
641     w2[3] = wordl2[3] | wordr2[3];
642
643     u32 w3[4];
644
645     w3[0] = wordl3[0] | wordr3[0];
646     w3[1] = wordl3[1] | wordr3[1];
647     w3[2] = wordl3[2] | wordr3[2];
648     w3[3] = wordl3[3] | wordr3[3];
649
650     /**
651      * pads
652      */
653
654     u32 w0_t[4];
655
656     w0_t[0] = w0[0];
657     w0_t[1] = w0[1];
658     w0_t[2] = w0[2];
659     w0_t[3] = w0[3];
660
661     u32 w1_t[4];
662
663     w1_t[0] = w1[0];
664     w1_t[1] = w1[1];
665     w1_t[2] = w1[2];
666     w1_t[3] = w1[3];
667
668     u32 w2_t[4];
669
670     w2_t[0] = 0;
671     w2_t[1] = 0;
672     w2_t[2] = 0;
673     w2_t[3] = 0;
674
675     u32 w3_t[4];
676
677     w3_t[0] = 0;
678     w3_t[1] = 0;
679     w3_t[2] = 0;
680     w3_t[3] = 0;
681
682     u32 ipad[4];
683     u32 opad[4];
684
685     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
686
687     w0_t[0] = w_s[ 0];
688     w0_t[1] = w_s[ 1];
689     w0_t[2] = w_s[ 2];
690     w0_t[3] = w_s[ 3];
691     w1_t[0] = w_s[ 4];
692     w1_t[1] = w_s[ 5];
693     w1_t[2] = w_s[ 6];
694     w1_t[3] = w_s[ 7];
695     w2_t[0] = w_s[ 8];
696     w2_t[1] = w_s[ 9];
697     w2_t[2] = w_s[10];
698     w2_t[3] = w_s[11];
699     w3_t[0] = w_s[12];
700     w3_t[1] = w_s[13];
701     w3_t[2] = (64 + nr_len) * 8;
702     w3_t[3] = 0;
703
704     u32 digest[4];
705
706     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
707
708     w0_t[0] = digest[0];
709     w0_t[1] = digest[1];
710     w0_t[2] = digest[2];
711     w0_t[3] = digest[3];
712     w1_t[0] = 0;
713     w1_t[1] = 0;
714     w1_t[2] = 0;
715     w1_t[3] = 0;
716     w2_t[0] = 0;
717     w2_t[1] = 0;
718     w2_t[2] = 0;
719     w2_t[3] = 0;
720     w3_t[0] = 0;
721     w3_t[1] = 0;
722     w3_t[2] = 0;
723     w3_t[3] = 0;
724
725     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
726
727     int left;
728     int off;
729
730     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
731     {
732       w0_t[0] = s_msg_buf[off +  0];
733       w0_t[1] = s_msg_buf[off +  1];
734       w0_t[2] = s_msg_buf[off +  2];
735       w0_t[3] = s_msg_buf[off +  3];
736       w1_t[0] = s_msg_buf[off +  4];
737       w1_t[1] = s_msg_buf[off +  5];
738       w1_t[2] = s_msg_buf[off +  6];
739       w1_t[3] = s_msg_buf[off +  7];
740       w2_t[0] = s_msg_buf[off +  8];
741       w2_t[1] = s_msg_buf[off +  9];
742       w2_t[2] = s_msg_buf[off + 10];
743       w2_t[3] = s_msg_buf[off + 11];
744       w3_t[0] = s_msg_buf[off + 12];
745       w3_t[1] = s_msg_buf[off + 13];
746       w3_t[2] = s_msg_buf[off + 14];
747       w3_t[3] = s_msg_buf[off + 15];
748
749       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
750     }
751
752     w0_t[0] = s_msg_buf[off +  0];
753     w0_t[1] = s_msg_buf[off +  1];
754     w0_t[2] = s_msg_buf[off +  2];
755     w0_t[3] = s_msg_buf[off +  3];
756     w1_t[0] = s_msg_buf[off +  4];
757     w1_t[1] = s_msg_buf[off +  5];
758     w1_t[2] = s_msg_buf[off +  6];
759     w1_t[3] = s_msg_buf[off +  7];
760     w2_t[0] = s_msg_buf[off +  8];
761     w2_t[1] = s_msg_buf[off +  9];
762     w2_t[2] = s_msg_buf[off + 10];
763     w2_t[3] = s_msg_buf[off + 11];
764     w3_t[0] = s_msg_buf[off + 12];
765     w3_t[1] = s_msg_buf[off + 13];
766     w3_t[2] = (64 + msg_len) * 8;
767     w3_t[3] = 0;
768
769     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
770
771     const u32 r0 = digest[0];
772     const u32 r1 = digest[3];
773     const u32 r2 = digest[2];
774     const u32 r3 = digest[1];
775
776     #include COMPARE_S
777   }
778 }
779
780 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 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)
781 {
782 }
783
784 __kernel void __attribute__((reqd_work_group_size (64, 1, 1))) m05300_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 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)
785 {
786 }