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