Zero pws_buf before reuse
[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 #define NEW_SIMD_CODE
9
10 #include "include/constants.h"
11 #include "include/kernel_vendor.h"
12
13 #define DGST_R0 0
14 #define DGST_R1 3
15 #define DGST_R2 2
16 #define DGST_R3 1
17
18 #include "include/kernel_functions.c"
19 #include "OpenCL/types_ocl.c"
20 #include "OpenCL/common.c"
21 #include "OpenCL/simd.c"
22
23 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 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 gid = get_global_id (0);
213   const u32 lid = get_local_id (0);
214   const u32 lsz = get_local_size (0);
215
216   /**
217    * s_msg
218    */
219
220   __local u32 w_s[16];
221
222   for (u32 i = lid; i < 16; i += lsz)
223   {
224     w_s[i] = ikepsk_bufs[salt_pos].nr_buf[i];
225   }
226
227   barrier (CLK_LOCAL_MEM_FENCE);
228
229   __local u32 s_msg_buf[128];
230
231   for (u32 i = lid; i < 128; i += lsz)
232   {
233     s_msg_buf[i] = ikepsk_bufs[salt_pos].msg_buf[i];
234   }
235
236   barrier (CLK_LOCAL_MEM_FENCE);
237
238   if (gid >= gid_max) return;
239
240   /**
241    * salt
242    */
243
244   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
245   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
246
247   /**
248    * base
249    */
250
251   u32 pws0[4] = { 0 };
252   u32 pws1[4] = { 0 };
253
254   pws0[0] = pws[gid].i[0];
255   pws0[1] = pws[gid].i[1];
256   pws0[2] = pws[gid].i[2];
257   pws0[3] = pws[gid].i[3];
258   pws1[0] = pws[gid].i[4];
259   pws1[1] = pws[gid].i[5];
260   pws1[2] = pws[gid].i[6];
261   pws1[3] = pws[gid].i[7];
262
263   const u32 pw_l_len = pws[gid].pw_len;
264
265   /**
266    * loop
267    */
268
269   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
270   {
271     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
272
273     const u32x pw_len = pw_l_len + pw_r_len;
274
275     u32x wordr0[4] = { 0 };
276     u32x wordr1[4] = { 0 };
277     u32x wordr2[4] = { 0 };
278     u32x wordr3[4] = { 0 };
279
280     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
281     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
282     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
283     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
284     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
285     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
286     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
287     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
288
289     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
290     {
291       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
292     }
293
294     u32x w0[4];
295
296     w0[0] = wordl0[0] | wordr0[0];
297     w0[1] = wordl0[1] | wordr0[1];
298     w0[2] = wordl0[2] | wordr0[2];
299     w0[3] = wordl0[3] | wordr0[3];
300
301     u32x w1[4];
302
303     w1[0] = wordl1[0] | wordr1[0];
304     w1[1] = wordl1[1] | wordr1[1];
305     w1[2] = wordl1[2] | wordr1[2];
306     w1[3] = wordl1[3] | wordr1[3];
307
308     u32x w2[4];
309
310     w2[0] = wordl2[0] | wordr2[0];
311     w2[1] = wordl2[1] | wordr2[1];
312     w2[2] = wordl2[2] | wordr2[2];
313     w2[3] = wordl2[3] | wordr2[3];
314
315     u32x w3[4];
316
317     w3[0] = wordl3[0] | wordr3[0];
318     w3[1] = wordl3[1] | wordr3[1];
319     w3[2] = wordl3[2] | wordr3[2];
320     w3[3] = wordl3[3] | wordr3[3];
321
322     /**
323      * pads
324      */
325
326     u32x w0_t[4];
327
328     w0_t[0] = w0[0];
329     w0_t[1] = w0[1];
330     w0_t[2] = w0[2];
331     w0_t[3] = w0[3];
332
333     u32x w1_t[4];
334
335     w1_t[0] = w1[0];
336     w1_t[1] = w1[1];
337     w1_t[2] = w1[2];
338     w1_t[3] = w1[3];
339
340     u32x w2_t[4];
341
342     w2_t[0] = w2[0];
343     w2_t[1] = w2[1];
344     w2_t[2] = w2[2];
345     w2_t[3] = w2[3];
346
347     u32x w3_t[4];
348
349     w3_t[0] = w3[0];
350     w3_t[1] = w3[1];
351     w3_t[2] = w3[2];
352     w3_t[3] = w3[3];
353
354     u32 ipad[4];
355     u32 opad[4];
356
357     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
358
359     w0_t[0] = w_s[ 0];
360     w0_t[1] = w_s[ 1];
361     w0_t[2] = w_s[ 2];
362     w0_t[3] = w_s[ 3];
363     w1_t[0] = w_s[ 4];
364     w1_t[1] = w_s[ 5];
365     w1_t[2] = w_s[ 6];
366     w1_t[3] = w_s[ 7];
367     w2_t[0] = w_s[ 8];
368     w2_t[1] = w_s[ 9];
369     w2_t[2] = w_s[10];
370     w2_t[3] = w_s[11];
371     w3_t[0] = w_s[12];
372     w3_t[1] = w_s[13];
373     w3_t[2] = (64 + nr_len) * 8;
374     w3_t[3] = 0;
375
376     u32 digest[4];
377
378     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
379
380     w0_t[0] = digest[0];
381     w0_t[1] = digest[1];
382     w0_t[2] = digest[2];
383     w0_t[3] = digest[3];
384     w1_t[0] = 0;
385     w1_t[1] = 0;
386     w1_t[2] = 0;
387     w1_t[3] = 0;
388     w2_t[0] = 0;
389     w2_t[1] = 0;
390     w2_t[2] = 0;
391     w2_t[3] = 0;
392     w3_t[0] = 0;
393     w3_t[1] = 0;
394     w3_t[2] = 0;
395     w3_t[3] = 0;
396
397     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
398
399     int left;
400     int off;
401
402     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
403     {
404       w0_t[0] = s_msg_buf[off +  0];
405       w0_t[1] = s_msg_buf[off +  1];
406       w0_t[2] = s_msg_buf[off +  2];
407       w0_t[3] = s_msg_buf[off +  3];
408       w1_t[0] = s_msg_buf[off +  4];
409       w1_t[1] = s_msg_buf[off +  5];
410       w1_t[2] = s_msg_buf[off +  6];
411       w1_t[3] = s_msg_buf[off +  7];
412       w2_t[0] = s_msg_buf[off +  8];
413       w2_t[1] = s_msg_buf[off +  9];
414       w2_t[2] = s_msg_buf[off + 10];
415       w2_t[3] = s_msg_buf[off + 11];
416       w3_t[0] = s_msg_buf[off + 12];
417       w3_t[1] = s_msg_buf[off + 13];
418       w3_t[2] = s_msg_buf[off + 14];
419       w3_t[3] = s_msg_buf[off + 15];
420
421       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
422     }
423
424     w0_t[0] = s_msg_buf[off +  0];
425     w0_t[1] = s_msg_buf[off +  1];
426     w0_t[2] = s_msg_buf[off +  2];
427     w0_t[3] = s_msg_buf[off +  3];
428     w1_t[0] = s_msg_buf[off +  4];
429     w1_t[1] = s_msg_buf[off +  5];
430     w1_t[2] = s_msg_buf[off +  6];
431     w1_t[3] = s_msg_buf[off +  7];
432     w2_t[0] = s_msg_buf[off +  8];
433     w2_t[1] = s_msg_buf[off +  9];
434     w2_t[2] = s_msg_buf[off + 10];
435     w2_t[3] = s_msg_buf[off + 11];
436     w3_t[0] = s_msg_buf[off + 12];
437     w3_t[1] = s_msg_buf[off + 13];
438     w3_t[2] = (64 + msg_len) * 8;
439     w3_t[3] = 0;
440
441     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
442
443     COMPARE_M_SIMD (digest[0], digest[3], digest[2], digest[1]);
444   }
445 }
446
447 __kernel void 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)
448 {
449 }
450
451 __kernel void 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)
452 {
453 }
454
455 __kernel void 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)
456 {
457   /**
458    * modifier
459    */
460
461   const u32 gid = get_global_id (0);
462   const u32 lid = get_local_id (0);
463   const u32 lsz = get_local_size (0);
464
465   /**
466    * s_msg
467    */
468
469   __local u32 w_s[16];
470
471   for (u32 i = lid; i < 16; i += lsz)
472   {
473     w_s[i] = ikepsk_bufs[salt_pos].nr_buf[i];
474   }
475
476   barrier (CLK_LOCAL_MEM_FENCE);
477
478   __local u32 s_msg_buf[128];
479
480   for (u32 i = lid; i < 128; i += lsz)
481   {
482     s_msg_buf[i] = ikepsk_bufs[salt_pos].msg_buf[i];
483   }
484
485   barrier (CLK_LOCAL_MEM_FENCE);
486
487   if (gid >= gid_max) return;
488
489   /**
490    * salt
491    */
492
493   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
494   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
495
496   /**
497    * base
498    */
499
500   u32 pws0[4] = { 0 };
501   u32 pws1[4] = { 0 };
502
503   pws0[0] = pws[gid].i[0];
504   pws0[1] = pws[gid].i[1];
505   pws0[2] = pws[gid].i[2];
506   pws0[3] = pws[gid].i[3];
507   pws1[0] = pws[gid].i[4];
508   pws1[1] = pws[gid].i[5];
509   pws1[2] = pws[gid].i[6];
510   pws1[3] = pws[gid].i[7];
511
512   const u32 pw_l_len = pws[gid].pw_len;
513
514   /**
515    * digest
516    */
517
518   const u32 search[4] =
519   {
520     digests_buf[digests_offset].digest_buf[DGST_R0],
521     digests_buf[digests_offset].digest_buf[DGST_R1],
522     digests_buf[digests_offset].digest_buf[DGST_R2],
523     digests_buf[digests_offset].digest_buf[DGST_R3]
524   };
525
526   /**
527    * loop
528    */
529
530   for (u32 il_pos = 0; il_pos < combs_cnt; il_pos += VECT_SIZE)
531   {
532     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
533
534     const u32x pw_len = pw_l_len + pw_r_len;
535
536     u32x wordr0[4] = { 0 };
537     u32x wordr1[4] = { 0 };
538     u32x wordr2[4] = { 0 };
539     u32x wordr3[4] = { 0 };
540
541     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
542     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
543     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
544     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
545     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
546     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
547     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
548     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
549
550     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
551     {
552       switch_buffer_by_offset_le (wordr0, wordr1, wordr2, wordr3, pw_l_len);
553     }
554
555     u32x w0[4];
556
557     w0[0] = wordl0[0] | wordr0[0];
558     w0[1] = wordl0[1] | wordr0[1];
559     w0[2] = wordl0[2] | wordr0[2];
560     w0[3] = wordl0[3] | wordr0[3];
561
562     u32x w1[4];
563
564     w1[0] = wordl1[0] | wordr1[0];
565     w1[1] = wordl1[1] | wordr1[1];
566     w1[2] = wordl1[2] | wordr1[2];
567     w1[3] = wordl1[3] | wordr1[3];
568
569     u32x w2[4];
570
571     w2[0] = wordl2[0] | wordr2[0];
572     w2[1] = wordl2[1] | wordr2[1];
573     w2[2] = wordl2[2] | wordr2[2];
574     w2[3] = wordl2[3] | wordr2[3];
575
576     u32x w3[4];
577
578     w3[0] = wordl3[0] | wordr3[0];
579     w3[1] = wordl3[1] | wordr3[1];
580     w3[2] = wordl3[2] | wordr3[2];
581     w3[3] = wordl3[3] | wordr3[3];
582
583     /**
584      * pads
585      */
586
587     u32x w0_t[4];
588
589     w0_t[0] = w0[0];
590     w0_t[1] = w0[1];
591     w0_t[2] = w0[2];
592     w0_t[3] = w0[3];
593
594     u32x w1_t[4];
595
596     w1_t[0] = w1[0];
597     w1_t[1] = w1[1];
598     w1_t[2] = w1[2];
599     w1_t[3] = w1[3];
600
601     u32x w2_t[4];
602
603     w2_t[0] = 0;
604     w2_t[1] = 0;
605     w2_t[2] = 0;
606     w2_t[3] = 0;
607
608     u32x w3_t[4];
609
610     w3_t[0] = 0;
611     w3_t[1] = 0;
612     w3_t[2] = 0;
613     w3_t[3] = 0;
614
615     u32 ipad[4];
616     u32 opad[4];
617
618     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
619
620     w0_t[0] = w_s[ 0];
621     w0_t[1] = w_s[ 1];
622     w0_t[2] = w_s[ 2];
623     w0_t[3] = w_s[ 3];
624     w1_t[0] = w_s[ 4];
625     w1_t[1] = w_s[ 5];
626     w1_t[2] = w_s[ 6];
627     w1_t[3] = w_s[ 7];
628     w2_t[0] = w_s[ 8];
629     w2_t[1] = w_s[ 9];
630     w2_t[2] = w_s[10];
631     w2_t[3] = w_s[11];
632     w3_t[0] = w_s[12];
633     w3_t[1] = w_s[13];
634     w3_t[2] = (64 + nr_len) * 8;
635     w3_t[3] = 0;
636
637     u32 digest[4];
638
639     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
640
641     w0_t[0] = digest[0];
642     w0_t[1] = digest[1];
643     w0_t[2] = digest[2];
644     w0_t[3] = digest[3];
645     w1_t[0] = 0;
646     w1_t[1] = 0;
647     w1_t[2] = 0;
648     w1_t[3] = 0;
649     w2_t[0] = 0;
650     w2_t[1] = 0;
651     w2_t[2] = 0;
652     w2_t[3] = 0;
653     w3_t[0] = 0;
654     w3_t[1] = 0;
655     w3_t[2] = 0;
656     w3_t[3] = 0;
657
658     hmac_md5_pad (w0_t, w1_t, w2_t, w3_t, ipad, opad);
659
660     int left;
661     int off;
662
663     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
664     {
665       w0_t[0] = s_msg_buf[off +  0];
666       w0_t[1] = s_msg_buf[off +  1];
667       w0_t[2] = s_msg_buf[off +  2];
668       w0_t[3] = s_msg_buf[off +  3];
669       w1_t[0] = s_msg_buf[off +  4];
670       w1_t[1] = s_msg_buf[off +  5];
671       w1_t[2] = s_msg_buf[off +  6];
672       w1_t[3] = s_msg_buf[off +  7];
673       w2_t[0] = s_msg_buf[off +  8];
674       w2_t[1] = s_msg_buf[off +  9];
675       w2_t[2] = s_msg_buf[off + 10];
676       w2_t[3] = s_msg_buf[off + 11];
677       w3_t[0] = s_msg_buf[off + 12];
678       w3_t[1] = s_msg_buf[off + 13];
679       w3_t[2] = s_msg_buf[off + 14];
680       w3_t[3] = s_msg_buf[off + 15];
681
682       md5_transform (w0_t, w1_t, w2_t, w3_t, ipad);
683     }
684
685     w0_t[0] = s_msg_buf[off +  0];
686     w0_t[1] = s_msg_buf[off +  1];
687     w0_t[2] = s_msg_buf[off +  2];
688     w0_t[3] = s_msg_buf[off +  3];
689     w1_t[0] = s_msg_buf[off +  4];
690     w1_t[1] = s_msg_buf[off +  5];
691     w1_t[2] = s_msg_buf[off +  6];
692     w1_t[3] = s_msg_buf[off +  7];
693     w2_t[0] = s_msg_buf[off +  8];
694     w2_t[1] = s_msg_buf[off +  9];
695     w2_t[2] = s_msg_buf[off + 10];
696     w2_t[3] = s_msg_buf[off + 11];
697     w3_t[0] = s_msg_buf[off + 12];
698     w3_t[1] = s_msg_buf[off + 13];
699     w3_t[2] = (64 + msg_len) * 8;
700     w3_t[3] = 0;
701
702     hmac_md5_run (w0_t, w1_t, w2_t, w3_t, ipad, opad, digest);
703
704     COMPARE_S_SIMD (digest[0], digest[3], digest[2], digest[1]);
705   }
706 }
707
708 __kernel void 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)
709 {
710 }
711
712 __kernel void 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)
713 {
714 }