Fix m 60 a 0 by making modified variable non-const
[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 "inc_vendor.cl"
11 #include "inc_hash_constants.h"
12 #include "inc_hash_functions.cl"
13 #include "inc_types.cl"
14 #include "inc_common.cl"
15 #include "inc_simd.cl"
16
17 void md5_transform (const u32x w0[4], const u32x w1[4], const u32x w2[4], const u32x w3[4], u32x digest[4])
18 {
19   u32x a = digest[0];
20   u32x b = digest[1];
21   u32x c = digest[2];
22   u32x d = digest[3];
23
24   u32x w0_t = w0[0];
25   u32x w1_t = w0[1];
26   u32x w2_t = w0[2];
27   u32x w3_t = w0[3];
28   u32x w4_t = w1[0];
29   u32x w5_t = w1[1];
30   u32x w6_t = w1[2];
31   u32x w7_t = w1[3];
32   u32x w8_t = w2[0];
33   u32x w9_t = w2[1];
34   u32x wa_t = w2[2];
35   u32x wb_t = w2[3];
36   u32x wc_t = w3[0];
37   u32x wd_t = w3[1];
38   u32x we_t = w3[2];
39   u32x wf_t = w3[3];
40
41   MD5_STEP (MD5_Fo, a, b, c, d, w0_t, MD5C00, MD5S00);
42   MD5_STEP (MD5_Fo, d, a, b, c, w1_t, MD5C01, MD5S01);
43   MD5_STEP (MD5_Fo, c, d, a, b, w2_t, MD5C02, MD5S02);
44   MD5_STEP (MD5_Fo, b, c, d, a, w3_t, MD5C03, MD5S03);
45   MD5_STEP (MD5_Fo, a, b, c, d, w4_t, MD5C04, MD5S00);
46   MD5_STEP (MD5_Fo, d, a, b, c, w5_t, MD5C05, MD5S01);
47   MD5_STEP (MD5_Fo, c, d, a, b, w6_t, MD5C06, MD5S02);
48   MD5_STEP (MD5_Fo, b, c, d, a, w7_t, MD5C07, MD5S03);
49   MD5_STEP (MD5_Fo, a, b, c, d, w8_t, MD5C08, MD5S00);
50   MD5_STEP (MD5_Fo, d, a, b, c, w9_t, MD5C09, MD5S01);
51   MD5_STEP (MD5_Fo, c, d, a, b, wa_t, MD5C0a, MD5S02);
52   MD5_STEP (MD5_Fo, b, c, d, a, wb_t, MD5C0b, MD5S03);
53   MD5_STEP (MD5_Fo, a, b, c, d, wc_t, MD5C0c, MD5S00);
54   MD5_STEP (MD5_Fo, d, a, b, c, wd_t, MD5C0d, MD5S01);
55   MD5_STEP (MD5_Fo, c, d, a, b, we_t, MD5C0e, MD5S02);
56   MD5_STEP (MD5_Fo, b, c, d, a, wf_t, MD5C0f, MD5S03);
57
58   MD5_STEP (MD5_Go, a, b, c, d, w1_t, MD5C10, MD5S10);
59   MD5_STEP (MD5_Go, d, a, b, c, w6_t, MD5C11, MD5S11);
60   MD5_STEP (MD5_Go, c, d, a, b, wb_t, MD5C12, MD5S12);
61   MD5_STEP (MD5_Go, b, c, d, a, w0_t, MD5C13, MD5S13);
62   MD5_STEP (MD5_Go, a, b, c, d, w5_t, MD5C14, MD5S10);
63   MD5_STEP (MD5_Go, d, a, b, c, wa_t, MD5C15, MD5S11);
64   MD5_STEP (MD5_Go, c, d, a, b, wf_t, MD5C16, MD5S12);
65   MD5_STEP (MD5_Go, b, c, d, a, w4_t, MD5C17, MD5S13);
66   MD5_STEP (MD5_Go, a, b, c, d, w9_t, MD5C18, MD5S10);
67   MD5_STEP (MD5_Go, d, a, b, c, we_t, MD5C19, MD5S11);
68   MD5_STEP (MD5_Go, c, d, a, b, w3_t, MD5C1a, MD5S12);
69   MD5_STEP (MD5_Go, b, c, d, a, w8_t, MD5C1b, MD5S13);
70   MD5_STEP (MD5_Go, a, b, c, d, wd_t, MD5C1c, MD5S10);
71   MD5_STEP (MD5_Go, d, a, b, c, w2_t, MD5C1d, MD5S11);
72   MD5_STEP (MD5_Go, c, d, a, b, w7_t, MD5C1e, MD5S12);
73   MD5_STEP (MD5_Go, b, c, d, a, wc_t, MD5C1f, MD5S13);
74
75   MD5_STEP (MD5_H , a, b, c, d, w5_t, MD5C20, MD5S20);
76   MD5_STEP (MD5_H , d, a, b, c, w8_t, MD5C21, MD5S21);
77   MD5_STEP (MD5_H , c, d, a, b, wb_t, MD5C22, MD5S22);
78   MD5_STEP (MD5_H , b, c, d, a, we_t, MD5C23, MD5S23);
79   MD5_STEP (MD5_H , a, b, c, d, w1_t, MD5C24, MD5S20);
80   MD5_STEP (MD5_H , d, a, b, c, w4_t, MD5C25, MD5S21);
81   MD5_STEP (MD5_H , c, d, a, b, w7_t, MD5C26, MD5S22);
82   MD5_STEP (MD5_H , b, c, d, a, wa_t, MD5C27, MD5S23);
83   MD5_STEP (MD5_H , a, b, c, d, wd_t, MD5C28, MD5S20);
84   MD5_STEP (MD5_H , d, a, b, c, w0_t, MD5C29, MD5S21);
85   MD5_STEP (MD5_H , c, d, a, b, w3_t, MD5C2a, MD5S22);
86   MD5_STEP (MD5_H , b, c, d, a, w6_t, MD5C2b, MD5S23);
87   MD5_STEP (MD5_H , a, b, c, d, w9_t, MD5C2c, MD5S20);
88   MD5_STEP (MD5_H , d, a, b, c, wc_t, MD5C2d, MD5S21);
89   MD5_STEP (MD5_H , c, d, a, b, wf_t, MD5C2e, MD5S22);
90   MD5_STEP (MD5_H , b, c, d, a, w2_t, MD5C2f, MD5S23);
91
92   MD5_STEP (MD5_I , a, b, c, d, w0_t, MD5C30, MD5S30);
93   MD5_STEP (MD5_I , d, a, b, c, w7_t, MD5C31, MD5S31);
94   MD5_STEP (MD5_I , c, d, a, b, we_t, MD5C32, MD5S32);
95   MD5_STEP (MD5_I , b, c, d, a, w5_t, MD5C33, MD5S33);
96   MD5_STEP (MD5_I , a, b, c, d, wc_t, MD5C34, MD5S30);
97   MD5_STEP (MD5_I , d, a, b, c, w3_t, MD5C35, MD5S31);
98   MD5_STEP (MD5_I , c, d, a, b, wa_t, MD5C36, MD5S32);
99   MD5_STEP (MD5_I , b, c, d, a, w1_t, MD5C37, MD5S33);
100   MD5_STEP (MD5_I , a, b, c, d, w8_t, MD5C38, MD5S30);
101   MD5_STEP (MD5_I , d, a, b, c, wf_t, MD5C39, MD5S31);
102   MD5_STEP (MD5_I , c, d, a, b, w6_t, MD5C3a, MD5S32);
103   MD5_STEP (MD5_I , b, c, d, a, wd_t, MD5C3b, MD5S33);
104   MD5_STEP (MD5_I , a, b, c, d, w4_t, MD5C3c, MD5S30);
105   MD5_STEP (MD5_I , d, a, b, c, wb_t, MD5C3d, MD5S31);
106   MD5_STEP (MD5_I , c, d, a, b, w2_t, MD5C3e, MD5S32);
107   MD5_STEP (MD5_I , b, c, d, a, w9_t, MD5C3f, MD5S33);
108
109   digest[0] += a;
110   digest[1] += b;
111   digest[2] += c;
112   digest[3] += d;
113 }
114
115 void hmac_md5_pad (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u32x ipad[4], u32x opad[4])
116 {
117   w0[0] = w0[0] ^ 0x36363636;
118   w0[1] = w0[1] ^ 0x36363636;
119   w0[2] = w0[2] ^ 0x36363636;
120   w0[3] = w0[3] ^ 0x36363636;
121   w1[0] = w1[0] ^ 0x36363636;
122   w1[1] = w1[1] ^ 0x36363636;
123   w1[2] = w1[2] ^ 0x36363636;
124   w1[3] = w1[3] ^ 0x36363636;
125   w2[0] = w2[0] ^ 0x36363636;
126   w2[1] = w2[1] ^ 0x36363636;
127   w2[2] = w2[2] ^ 0x36363636;
128   w2[3] = w2[3] ^ 0x36363636;
129   w3[0] = w3[0] ^ 0x36363636;
130   w3[1] = w3[1] ^ 0x36363636;
131   w3[2] = w3[2] ^ 0x36363636;
132   w3[3] = w3[3] ^ 0x36363636;
133
134   ipad[0] = MD5M_A;
135   ipad[1] = MD5M_B;
136   ipad[2] = MD5M_C;
137   ipad[3] = MD5M_D;
138
139   md5_transform (w0, w1, w2, w3, ipad);
140
141   w0[0] = w0[0] ^ 0x6a6a6a6a;
142   w0[1] = w0[1] ^ 0x6a6a6a6a;
143   w0[2] = w0[2] ^ 0x6a6a6a6a;
144   w0[3] = w0[3] ^ 0x6a6a6a6a;
145   w1[0] = w1[0] ^ 0x6a6a6a6a;
146   w1[1] = w1[1] ^ 0x6a6a6a6a;
147   w1[2] = w1[2] ^ 0x6a6a6a6a;
148   w1[3] = w1[3] ^ 0x6a6a6a6a;
149   w2[0] = w2[0] ^ 0x6a6a6a6a;
150   w2[1] = w2[1] ^ 0x6a6a6a6a;
151   w2[2] = w2[2] ^ 0x6a6a6a6a;
152   w2[3] = w2[3] ^ 0x6a6a6a6a;
153   w3[0] = w3[0] ^ 0x6a6a6a6a;
154   w3[1] = w3[1] ^ 0x6a6a6a6a;
155   w3[2] = w3[2] ^ 0x6a6a6a6a;
156   w3[3] = w3[3] ^ 0x6a6a6a6a;
157
158   opad[0] = MD5M_A;
159   opad[1] = MD5M_B;
160   opad[2] = MD5M_C;
161   opad[3] = MD5M_D;
162
163   md5_transform (w0, w1, w2, w3, opad);
164 }
165
166 void hmac_md5_run (u32x w0[4], u32x w1[4], u32x w2[4], u32x w3[4], u32x ipad[4], u32x opad[4], u32x digest[4])
167 {
168   digest[0] = ipad[0];
169   digest[1] = ipad[1];
170   digest[2] = ipad[2];
171   digest[3] = ipad[3];
172
173   md5_transform (w0, w1, w2, w3, digest);
174
175   w0[0] = digest[0];
176   w0[1] = digest[1];
177   w0[2] = digest[2];
178   w0[3] = digest[3];
179   w1[0] = 0x80;
180   w1[1] = 0;
181   w1[2] = 0;
182   w1[3] = 0;
183   w2[0] = 0;
184   w2[1] = 0;
185   w2[2] = 0;
186   w2[3] = 0;
187   w3[0] = 0;
188   w3[1] = 0;
189   w3[2] = (64 + 16) * 8;
190   w3[3] = 0;
191
192   digest[0] = opad[0];
193   digest[1] = opad[1];
194   digest[2] = opad[2];
195   digest[3] = opad[3];
196
197   md5_transform (w0, w1, w2, w3, digest);
198 }
199
200 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
201 {
202   /**
203    * modifier
204    */
205
206   const u32 gid = get_global_id (0);
207   const u32 lid = get_local_id (0);
208   const u32 lsz = get_local_size (0);
209
210   /**
211    * s_msg
212    */
213
214   __local u32 w_s[16];
215
216   for (u32 i = lid; i < 16; i += lsz)
217   {
218     w_s[i] = ikepsk_bufs[salt_pos].nr_buf[i];
219   }
220
221   barrier (CLK_LOCAL_MEM_FENCE);
222
223   __local u32 s_msg_buf[128];
224
225   for (u32 i = lid; i < 128; i += lsz)
226   {
227     s_msg_buf[i] = ikepsk_bufs[salt_pos].msg_buf[i];
228   }
229
230   barrier (CLK_LOCAL_MEM_FENCE);
231
232   if (gid >= gid_max) return;
233
234   /**
235    * base
236    */
237
238   u32 pw_buf0[4];
239   u32 pw_buf1[4];
240
241   pw_buf0[0] = pws[gid].i[0];
242   pw_buf0[1] = pws[gid].i[1];
243   pw_buf0[2] = pws[gid].i[2];
244   pw_buf0[3] = pws[gid].i[3];
245   pw_buf1[0] = pws[gid].i[4];
246   pw_buf1[1] = pws[gid].i[5];
247   pw_buf1[2] = pws[gid].i[6];
248   pw_buf1[3] = pws[gid].i[7];
249
250   const u32 pw_l_len = pws[gid].pw_len;
251
252   /**
253    * salt
254    */
255
256   const u32 nr_len  = ikepsk_bufs[salt_pos].nr_len;
257   const u32 msg_len = ikepsk_bufs[salt_pos].msg_len;
258
259   /**
260    * loop
261    */
262
263   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
264   {
265     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
266
267     const u32x pw_len = pw_l_len + pw_r_len;
268
269     /**
270      * concat password candidate
271      */
272
273     u32x wordl0[4] = { 0 };
274     u32x wordl1[4] = { 0 };
275     u32x wordl2[4] = { 0 };
276     u32x wordl3[4] = { 0 };
277
278     wordl0[0] = pw_buf0[0];
279     wordl0[1] = pw_buf0[1];
280     wordl0[2] = pw_buf0[2];
281     wordl0[3] = pw_buf0[3];
282     wordl1[0] = pw_buf1[0];
283     wordl1[1] = pw_buf1[1];
284     wordl1[2] = pw_buf1[2];
285     wordl1[3] = pw_buf1[3];
286
287     u32x wordr0[4] = { 0 };
288     u32x wordr1[4] = { 0 };
289     u32x wordr2[4] = { 0 };
290     u32x wordr3[4] = { 0 };
291
292     wordr0[0] = ix_create_combt (combs_buf, il_pos, 0);
293     wordr0[1] = ix_create_combt (combs_buf, il_pos, 1);
294     wordr0[2] = ix_create_combt (combs_buf, il_pos, 2);
295     wordr0[3] = ix_create_combt (combs_buf, il_pos, 3);
296     wordr1[0] = ix_create_combt (combs_buf, il_pos, 4);
297     wordr1[1] = ix_create_combt (combs_buf, il_pos, 5);
298     wordr1[2] = ix_create_combt (combs_buf, il_pos, 6);
299     wordr1[3] = ix_create_combt (combs_buf, il_pos, 7);
300
301     if (combs_mode == COMBINATOR_MODE_BASE_LEFT)
302     {
303       switch_buffer_by_offset_le_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
304     }
305     else
306     {
307       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
308     }
309
310     u32x w0[4];
311     u32x w1[4];
312     u32x w2[4];
313     u32x w3[4];
314
315     w0[0] = wordl0[0] | wordr0[0];
316     w0[1] = wordl0[1] | wordr0[1];
317     w0[2] = wordl0[2] | wordr0[2];
318     w0[3] = wordl0[3] | wordr0[3];
319     w1[0] = wordl1[0] | wordr1[0];
320     w1[1] = wordl1[1] | wordr1[1];
321     w1[2] = wordl1[2] | wordr1[2];
322     w1[3] = wordl1[3] | wordr1[3];
323     w2[0] = wordl2[0] | wordr2[0];
324     w2[1] = wordl2[1] | wordr2[1];
325     w2[2] = wordl2[2] | wordr2[2];
326     w2[3] = wordl2[3] | wordr2[3];
327     w3[0] = wordl3[0] | wordr3[0];
328     w3[1] = wordl3[1] | wordr3[1];
329     w3[2] = wordl3[2] | wordr3[2];
330     w3[3] = wordl3[3] | wordr3[3];
331
332     /**
333      * pads
334      */
335
336     u32x ipad[4];
337     u32x opad[4];
338
339     hmac_md5_pad (w0, w1, w2, w3, ipad, opad);
340
341     w0[0] = w_s[ 0];
342     w0[1] = w_s[ 1];
343     w0[2] = w_s[ 2];
344     w0[3] = w_s[ 3];
345     w1[0] = w_s[ 4];
346     w1[1] = w_s[ 5];
347     w1[2] = w_s[ 6];
348     w1[3] = w_s[ 7];
349     w2[0] = w_s[ 8];
350     w2[1] = w_s[ 9];
351     w2[2] = w_s[10];
352     w2[3] = w_s[11];
353     w3[0] = w_s[12];
354     w3[1] = w_s[13];
355     w3[2] = (64 + nr_len) * 8;
356     w3[3] = 0;
357
358     u32x digest[4];
359
360     hmac_md5_run (w0, w1, w2, w3, ipad, opad, digest);
361
362     w0[0] = digest[0];
363     w0[1] = digest[1];
364     w0[2] = digest[2];
365     w0[3] = digest[3];
366     w1[0] = 0;
367     w1[1] = 0;
368     w1[2] = 0;
369     w1[3] = 0;
370     w2[0] = 0;
371     w2[1] = 0;
372     w2[2] = 0;
373     w2[3] = 0;
374     w3[0] = 0;
375     w3[1] = 0;
376     w3[2] = 0;
377     w3[3] = 0;
378
379     hmac_md5_pad (w0, w1, w2, w3, ipad, opad);
380
381     int left;
382     int off;
383
384     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
385     {
386       w0[0] = s_msg_buf[off +  0];
387       w0[1] = s_msg_buf[off +  1];
388       w0[2] = s_msg_buf[off +  2];
389       w0[3] = s_msg_buf[off +  3];
390       w1[0] = s_msg_buf[off +  4];
391       w1[1] = s_msg_buf[off +  5];
392       w1[2] = s_msg_buf[off +  6];
393       w1[3] = s_msg_buf[off +  7];
394       w2[0] = s_msg_buf[off +  8];
395       w2[1] = s_msg_buf[off +  9];
396       w2[2] = s_msg_buf[off + 10];
397       w2[3] = s_msg_buf[off + 11];
398       w3[0] = s_msg_buf[off + 12];
399       w3[1] = s_msg_buf[off + 13];
400       w3[2] = s_msg_buf[off + 14];
401       w3[3] = s_msg_buf[off + 15];
402
403       md5_transform (w0, w1, w2, w3, ipad);
404     }
405
406     w0[0] = s_msg_buf[off +  0];
407     w0[1] = s_msg_buf[off +  1];
408     w0[2] = s_msg_buf[off +  2];
409     w0[3] = s_msg_buf[off +  3];
410     w1[0] = s_msg_buf[off +  4];
411     w1[1] = s_msg_buf[off +  5];
412     w1[2] = s_msg_buf[off +  6];
413     w1[3] = s_msg_buf[off +  7];
414     w2[0] = s_msg_buf[off +  8];
415     w2[1] = s_msg_buf[off +  9];
416     w2[2] = s_msg_buf[off + 10];
417     w2[3] = s_msg_buf[off + 11];
418     w3[0] = s_msg_buf[off + 12];
419     w3[1] = s_msg_buf[off + 13];
420     w3[2] = (64 + msg_len) * 8;
421     w3[3] = 0;
422
423     hmac_md5_run (w0, w1, w2, w3, ipad, opad, digest);
424
425     COMPARE_M_SIMD (digest[0], digest[3], digest[2], digest[1]);
426   }
427 }
428
429 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
430 {
431 }
432
433 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
434 {
435 }
436
437 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
438 {
439   /**
440    * modifier
441    */
442
443   const u32 gid = get_global_id (0);
444   const u32 lid = get_local_id (0);
445   const u32 lsz = get_local_size (0);
446
447   /**
448    * s_msg
449    */
450
451   __local u32 w_s[16];
452
453   for (u32 i = lid; i < 16; i += lsz)
454   {
455     w_s[i] = ikepsk_bufs[salt_pos].nr_buf[i];
456   }
457
458   barrier (CLK_LOCAL_MEM_FENCE);
459
460   __local u32 s_msg_buf[128];
461
462   for (u32 i = lid; i < 128; i += lsz)
463   {
464     s_msg_buf[i] = ikepsk_bufs[salt_pos].msg_buf[i];
465   }
466
467   barrier (CLK_LOCAL_MEM_FENCE);
468
469   if (gid >= gid_max) return;
470
471   /**
472    * base
473    */
474
475   u32 pw_buf0[4];
476   u32 pw_buf1[4];
477
478   pw_buf0[0] = pws[gid].i[0];
479   pw_buf0[1] = pws[gid].i[1];
480   pw_buf0[2] = pws[gid].i[2];
481   pw_buf0[3] = pws[gid].i[3];
482   pw_buf1[0] = pws[gid].i[4];
483   pw_buf1[1] = pws[gid].i[5];
484   pw_buf1[2] = pws[gid].i[6];
485   pw_buf1[3] = pws[gid].i[7];
486
487   const u32 pw_l_len = pws[gid].pw_len;
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    * digest
498    */
499
500   const u32 search[4] =
501   {
502     digests_buf[digests_offset].digest_buf[DGST_R0],
503     digests_buf[digests_offset].digest_buf[DGST_R1],
504     digests_buf[digests_offset].digest_buf[DGST_R2],
505     digests_buf[digests_offset].digest_buf[DGST_R3]
506   };
507
508   /**
509    * loop
510    */
511
512   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
513   {
514     const u32x pw_r_len = pwlenx_create_combt (combs_buf, il_pos);
515
516     const u32x pw_len = pw_l_len + pw_r_len;
517
518     /**
519      * concat password candidate
520      */
521
522     u32x wordl0[4] = { 0 };
523     u32x wordl1[4] = { 0 };
524     u32x wordl2[4] = { 0 };
525     u32x wordl3[4] = { 0 };
526
527     wordl0[0] = pw_buf0[0];
528     wordl0[1] = pw_buf0[1];
529     wordl0[2] = pw_buf0[2];
530     wordl0[3] = pw_buf0[3];
531     wordl1[0] = pw_buf1[0];
532     wordl1[1] = pw_buf1[1];
533     wordl1[2] = pw_buf1[2];
534     wordl1[3] = pw_buf1[3];
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_VV (wordr0, wordr1, wordr2, wordr3, pw_l_len);
553     }
554     else
555     {
556       switch_buffer_by_offset_le_VV (wordl0, wordl1, wordl2, wordl3, pw_r_len);
557     }
558
559     u32x w0[4];
560     u32x w1[4];
561     u32x w2[4];
562     u32x w3[4];
563
564     w0[0] = wordl0[0] | wordr0[0];
565     w0[1] = wordl0[1] | wordr0[1];
566     w0[2] = wordl0[2] | wordr0[2];
567     w0[3] = wordl0[3] | wordr0[3];
568     w1[0] = wordl1[0] | wordr1[0];
569     w1[1] = wordl1[1] | wordr1[1];
570     w1[2] = wordl1[2] | wordr1[2];
571     w1[3] = wordl1[3] | wordr1[3];
572     w2[0] = wordl2[0] | wordr2[0];
573     w2[1] = wordl2[1] | wordr2[1];
574     w2[2] = wordl2[2] | wordr2[2];
575     w2[3] = wordl2[3] | wordr2[3];
576     w3[0] = wordl3[0] | wordr3[0];
577     w3[1] = wordl3[1] | wordr3[1];
578     w3[2] = wordl3[2] | wordr3[2];
579     w3[3] = wordl3[3] | wordr3[3];
580
581     /**
582      * pads
583      */
584
585     u32x ipad[4];
586     u32x opad[4];
587
588     hmac_md5_pad (w0, w1, w2, w3, ipad, opad);
589
590     w0[0] = w_s[ 0];
591     w0[1] = w_s[ 1];
592     w0[2] = w_s[ 2];
593     w0[3] = w_s[ 3];
594     w1[0] = w_s[ 4];
595     w1[1] = w_s[ 5];
596     w1[2] = w_s[ 6];
597     w1[3] = w_s[ 7];
598     w2[0] = w_s[ 8];
599     w2[1] = w_s[ 9];
600     w2[2] = w_s[10];
601     w2[3] = w_s[11];
602     w3[0] = w_s[12];
603     w3[1] = w_s[13];
604     w3[2] = (64 + nr_len) * 8;
605     w3[3] = 0;
606
607     u32x digest[4];
608
609     hmac_md5_run (w0, w1, w2, w3, ipad, opad, digest);
610
611     w0[0] = digest[0];
612     w0[1] = digest[1];
613     w0[2] = digest[2];
614     w0[3] = digest[3];
615     w1[0] = 0;
616     w1[1] = 0;
617     w1[2] = 0;
618     w1[3] = 0;
619     w2[0] = 0;
620     w2[1] = 0;
621     w2[2] = 0;
622     w2[3] = 0;
623     w3[0] = 0;
624     w3[1] = 0;
625     w3[2] = 0;
626     w3[3] = 0;
627
628     hmac_md5_pad (w0, w1, w2, w3, ipad, opad);
629
630     int left;
631     int off;
632
633     for (left = ikepsk_bufs[salt_pos].msg_len, off = 0; left >= 56; left -= 64, off += 16)
634     {
635       w0[0] = s_msg_buf[off +  0];
636       w0[1] = s_msg_buf[off +  1];
637       w0[2] = s_msg_buf[off +  2];
638       w0[3] = s_msg_buf[off +  3];
639       w1[0] = s_msg_buf[off +  4];
640       w1[1] = s_msg_buf[off +  5];
641       w1[2] = s_msg_buf[off +  6];
642       w1[3] = s_msg_buf[off +  7];
643       w2[0] = s_msg_buf[off +  8];
644       w2[1] = s_msg_buf[off +  9];
645       w2[2] = s_msg_buf[off + 10];
646       w2[3] = s_msg_buf[off + 11];
647       w3[0] = s_msg_buf[off + 12];
648       w3[1] = s_msg_buf[off + 13];
649       w3[2] = s_msg_buf[off + 14];
650       w3[3] = s_msg_buf[off + 15];
651
652       md5_transform (w0, w1, w2, w3, ipad);
653     }
654
655     w0[0] = s_msg_buf[off +  0];
656     w0[1] = s_msg_buf[off +  1];
657     w0[2] = s_msg_buf[off +  2];
658     w0[3] = s_msg_buf[off +  3];
659     w1[0] = s_msg_buf[off +  4];
660     w1[1] = s_msg_buf[off +  5];
661     w1[2] = s_msg_buf[off +  6];
662     w1[3] = s_msg_buf[off +  7];
663     w2[0] = s_msg_buf[off +  8];
664     w2[1] = s_msg_buf[off +  9];
665     w2[2] = s_msg_buf[off + 10];
666     w2[3] = s_msg_buf[off + 11];
667     w3[0] = s_msg_buf[off + 12];
668     w3[1] = s_msg_buf[off + 13];
669     w3[2] = (64 + msg_len) * 8;
670     w3[3] = 0;
671
672     hmac_md5_run (w0, w1, w2, w3, ipad, opad, digest);
673
674     COMPARE_S_SIMD (digest[0], digest[3], digest[2], digest[1]);
675   }
676 }
677
678 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
679 {
680 }
681
682 __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_scryptV0_buf, __global u32 *d_scryptV1_buf, __global u32 *d_scryptV2_buf, __global u32 *d_scryptV3_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 il_cnt, const u32 digests_cnt, const u32 digests_offset, const u32 combs_mode, const u32 gid_max)
683 {
684 }