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