Fix m 60 a 0 by making modified variable non-const
[hashcat.git] / OpenCL / m00900_a0.cl
1 /**
2  * Author......: Jens Steube <jens.steube@gmail.com>
3  * License.....: MIT
4  */
5
6 #define _MD4_
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_rp.h"
16 #include "inc_rp.cl"
17 #include "inc_simd.cl"
18
19 __kernel void m00900_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 void *esalt_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)
20 {
21   /**
22    * modifier
23    */
24
25   const u32 lid = get_local_id (0);
26
27   /**
28    * base
29    */
30
31   const u32 gid = get_global_id (0);
32
33   if (gid >= gid_max) return;
34
35   u32 pw_buf0[4];
36   u32 pw_buf1[4];
37
38   pw_buf0[0] = pws[gid].i[0];
39   pw_buf0[1] = pws[gid].i[1];
40   pw_buf0[2] = pws[gid].i[2];
41   pw_buf0[3] = pws[gid].i[3];
42   pw_buf1[0] = pws[gid].i[4];
43   pw_buf1[1] = pws[gid].i[5];
44   pw_buf1[2] = pws[gid].i[6];
45   pw_buf1[3] = pws[gid].i[7];
46
47   const u32 pw_len = pws[gid].pw_len;
48
49   /**
50    * loop
51    */
52
53   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
54   {
55     u32x w0[4] = { 0 };
56     u32x w1[4] = { 0 };
57     u32x w2[4] = { 0 };
58     u32x w3[4] = { 0 };
59
60     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
61
62     append_0x80_2x4_VV (w0, w1, out_len);
63
64     w3[2] = out_len * 8;
65     w3[3] = 0;
66
67     u32x a = MD4M_A;
68     u32x b = MD4M_B;
69     u32x c = MD4M_C;
70     u32x d = MD4M_D;
71
72     MD4_STEP (MD4_Fo, a, b, c, d, w0[0], MD4C00, MD4S00);
73     MD4_STEP (MD4_Fo, d, a, b, c, w0[1], MD4C00, MD4S01);
74     MD4_STEP (MD4_Fo, c, d, a, b, w0[2], MD4C00, MD4S02);
75     MD4_STEP (MD4_Fo, b, c, d, a, w0[3], MD4C00, MD4S03);
76     MD4_STEP (MD4_Fo, a, b, c, d, w1[0], MD4C00, MD4S00);
77     MD4_STEP (MD4_Fo, d, a, b, c, w1[1], MD4C00, MD4S01);
78     MD4_STEP (MD4_Fo, c, d, a, b, w1[2], MD4C00, MD4S02);
79     MD4_STEP (MD4_Fo, b, c, d, a, w1[3], MD4C00, MD4S03);
80     MD4_STEP (MD4_Fo, a, b, c, d, w2[0], MD4C00, MD4S00);
81     MD4_STEP (MD4_Fo, d, a, b, c, w2[1], MD4C00, MD4S01);
82     MD4_STEP (MD4_Fo, c, d, a, b, w2[2], MD4C00, MD4S02);
83     MD4_STEP (MD4_Fo, b, c, d, a, w2[3], MD4C00, MD4S03);
84     MD4_STEP (MD4_Fo, a, b, c, d, w3[0], MD4C00, MD4S00);
85     MD4_STEP (MD4_Fo, d, a, b, c, w3[1], MD4C00, MD4S01);
86     MD4_STEP (MD4_Fo, c, d, a, b, w3[2], MD4C00, MD4S02);
87     MD4_STEP (MD4_Fo, b, c, d, a, w3[3], MD4C00, MD4S03);
88
89     MD4_STEP (MD4_Go, a, b, c, d, w0[0], MD4C01, MD4S10);
90     MD4_STEP (MD4_Go, d, a, b, c, w1[0], MD4C01, MD4S11);
91     MD4_STEP (MD4_Go, c, d, a, b, w2[0], MD4C01, MD4S12);
92     MD4_STEP (MD4_Go, b, c, d, a, w3[0], MD4C01, MD4S13);
93     MD4_STEP (MD4_Go, a, b, c, d, w0[1], MD4C01, MD4S10);
94     MD4_STEP (MD4_Go, d, a, b, c, w1[1], MD4C01, MD4S11);
95     MD4_STEP (MD4_Go, c, d, a, b, w2[1], MD4C01, MD4S12);
96     MD4_STEP (MD4_Go, b, c, d, a, w3[1], MD4C01, MD4S13);
97     MD4_STEP (MD4_Go, a, b, c, d, w0[2], MD4C01, MD4S10);
98     MD4_STEP (MD4_Go, d, a, b, c, w1[2], MD4C01, MD4S11);
99     MD4_STEP (MD4_Go, c, d, a, b, w2[2], MD4C01, MD4S12);
100     MD4_STEP (MD4_Go, b, c, d, a, w3[2], MD4C01, MD4S13);
101     MD4_STEP (MD4_Go, a, b, c, d, w0[3], MD4C01, MD4S10);
102     MD4_STEP (MD4_Go, d, a, b, c, w1[3], MD4C01, MD4S11);
103     MD4_STEP (MD4_Go, c, d, a, b, w2[3], MD4C01, MD4S12);
104     MD4_STEP (MD4_Go, b, c, d, a, w3[3], MD4C01, MD4S13);
105
106     MD4_STEP (MD4_H , a, b, c, d, w0[0], MD4C02, MD4S20);
107     MD4_STEP (MD4_H , d, a, b, c, w2[0], MD4C02, MD4S21);
108     MD4_STEP (MD4_H , c, d, a, b, w1[0], MD4C02, MD4S22);
109     MD4_STEP (MD4_H , b, c, d, a, w3[0], MD4C02, MD4S23);
110     MD4_STEP (MD4_H , a, b, c, d, w0[2], MD4C02, MD4S20);
111     MD4_STEP (MD4_H , d, a, b, c, w2[2], MD4C02, MD4S21);
112     MD4_STEP (MD4_H , c, d, a, b, w1[2], MD4C02, MD4S22);
113     MD4_STEP (MD4_H , b, c, d, a, w3[2], MD4C02, MD4S23);
114     MD4_STEP (MD4_H , a, b, c, d, w0[1], MD4C02, MD4S20);
115     MD4_STEP (MD4_H , d, a, b, c, w2[1], MD4C02, MD4S21);
116     MD4_STEP (MD4_H , c, d, a, b, w1[1], MD4C02, MD4S22);
117     MD4_STEP (MD4_H , b, c, d, a, w3[1], MD4C02, MD4S23);
118     MD4_STEP (MD4_H , a, b, c, d, w0[3], MD4C02, MD4S20);
119     MD4_STEP (MD4_H , d, a, b, c, w2[3], MD4C02, MD4S21);
120     MD4_STEP (MD4_H , c, d, a, b, w1[3], MD4C02, MD4S22);
121     MD4_STEP (MD4_H , b, c, d, a, w3[3], MD4C02, MD4S23);
122
123     COMPARE_M_SIMD (a, d, c, b);
124   }
125 }
126
127 __kernel void m00900_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 void *esalt_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)
128 {
129 }
130
131 __kernel void m00900_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 void *esalt_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)
132 {
133 }
134
135 __kernel void m00900_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 void *esalt_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)
136 {
137   /**
138    * modifier
139    */
140
141   const u32 lid = get_local_id (0);
142
143   /**
144    * base
145    */
146
147   const u32 gid = get_global_id (0);
148
149   if (gid >= gid_max) return;
150
151   u32 pw_buf0[4];
152   u32 pw_buf1[4];
153
154   pw_buf0[0] = pws[gid].i[0];
155   pw_buf0[1] = pws[gid].i[1];
156   pw_buf0[2] = pws[gid].i[2];
157   pw_buf0[3] = pws[gid].i[3];
158   pw_buf1[0] = pws[gid].i[4];
159   pw_buf1[1] = pws[gid].i[5];
160   pw_buf1[2] = pws[gid].i[6];
161   pw_buf1[3] = pws[gid].i[7];
162
163   const u32 pw_len = pws[gid].pw_len;
164
165   /**
166    * digest
167    */
168
169   const u32 search[4] =
170   {
171     digests_buf[digests_offset].digest_buf[DGST_R0],
172     digests_buf[digests_offset].digest_buf[DGST_R1],
173     digests_buf[digests_offset].digest_buf[DGST_R2],
174     digests_buf[digests_offset].digest_buf[DGST_R3]
175   };
176
177   /**
178    * loop
179    */
180
181   for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
182   {
183     u32x w0[4] = { 0 };
184     u32x w1[4] = { 0 };
185     u32x w2[4] = { 0 };
186     u32x w3[4] = { 0 };
187
188     const u32x out_len = apply_rules_vect (pw_buf0, pw_buf1, pw_len, rules_buf, il_pos, w0, w1);
189
190     append_0x80_2x4_VV (w0, w1, out_len);
191
192     w3[2] = out_len * 8;
193     w3[3] = 0;
194
195     u32x a = MD4M_A;
196     u32x b = MD4M_B;
197     u32x c = MD4M_C;
198     u32x d = MD4M_D;
199
200     MD4_STEP (MD4_Fo, a, b, c, d, w0[0], MD4C00, MD4S00);
201     MD4_STEP (MD4_Fo, d, a, b, c, w0[1], MD4C00, MD4S01);
202     MD4_STEP (MD4_Fo, c, d, a, b, w0[2], MD4C00, MD4S02);
203     MD4_STEP (MD4_Fo, b, c, d, a, w0[3], MD4C00, MD4S03);
204     MD4_STEP (MD4_Fo, a, b, c, d, w1[0], MD4C00, MD4S00);
205     MD4_STEP (MD4_Fo, d, a, b, c, w1[1], MD4C00, MD4S01);
206     MD4_STEP (MD4_Fo, c, d, a, b, w1[2], MD4C00, MD4S02);
207     MD4_STEP (MD4_Fo, b, c, d, a, w1[3], MD4C00, MD4S03);
208     MD4_STEP (MD4_Fo, a, b, c, d, w2[0], MD4C00, MD4S00);
209     MD4_STEP (MD4_Fo, d, a, b, c, w2[1], MD4C00, MD4S01);
210     MD4_STEP (MD4_Fo, c, d, a, b, w2[2], MD4C00, MD4S02);
211     MD4_STEP (MD4_Fo, b, c, d, a, w2[3], MD4C00, MD4S03);
212     MD4_STEP (MD4_Fo, a, b, c, d, w3[0], MD4C00, MD4S00);
213     MD4_STEP (MD4_Fo, d, a, b, c, w3[1], MD4C00, MD4S01);
214     MD4_STEP (MD4_Fo, c, d, a, b, w3[2], MD4C00, MD4S02);
215     MD4_STEP (MD4_Fo, b, c, d, a, w3[3], MD4C00, MD4S03);
216
217     MD4_STEP (MD4_Go, a, b, c, d, w0[0], MD4C01, MD4S10);
218     MD4_STEP (MD4_Go, d, a, b, c, w1[0], MD4C01, MD4S11);
219     MD4_STEP (MD4_Go, c, d, a, b, w2[0], MD4C01, MD4S12);
220     MD4_STEP (MD4_Go, b, c, d, a, w3[0], MD4C01, MD4S13);
221     MD4_STEP (MD4_Go, a, b, c, d, w0[1], MD4C01, MD4S10);
222     MD4_STEP (MD4_Go, d, a, b, c, w1[1], MD4C01, MD4S11);
223     MD4_STEP (MD4_Go, c, d, a, b, w2[1], MD4C01, MD4S12);
224     MD4_STEP (MD4_Go, b, c, d, a, w3[1], MD4C01, MD4S13);
225     MD4_STEP (MD4_Go, a, b, c, d, w0[2], MD4C01, MD4S10);
226     MD4_STEP (MD4_Go, d, a, b, c, w1[2], MD4C01, MD4S11);
227     MD4_STEP (MD4_Go, c, d, a, b, w2[2], MD4C01, MD4S12);
228     MD4_STEP (MD4_Go, b, c, d, a, w3[2], MD4C01, MD4S13);
229     MD4_STEP (MD4_Go, a, b, c, d, w0[3], MD4C01, MD4S10);
230     MD4_STEP (MD4_Go, d, a, b, c, w1[3], MD4C01, MD4S11);
231     MD4_STEP (MD4_Go, c, d, a, b, w2[3], MD4C01, MD4S12);
232     MD4_STEP (MD4_Go, b, c, d, a, w3[3], MD4C01, MD4S13);
233
234     MD4_STEP (MD4_H , a, b, c, d, w0[0], MD4C02, MD4S20);
235     MD4_STEP (MD4_H , d, a, b, c, w2[0], MD4C02, MD4S21);
236     MD4_STEP (MD4_H , c, d, a, b, w1[0], MD4C02, MD4S22);
237     MD4_STEP (MD4_H , b, c, d, a, w3[0], MD4C02, MD4S23);
238     MD4_STEP (MD4_H , a, b, c, d, w0[2], MD4C02, MD4S20);
239     MD4_STEP (MD4_H , d, a, b, c, w2[2], MD4C02, MD4S21);
240     MD4_STEP (MD4_H , c, d, a, b, w1[2], MD4C02, MD4S22);
241     MD4_STEP (MD4_H , b, c, d, a, w3[2], MD4C02, MD4S23);
242     MD4_STEP (MD4_H , a, b, c, d, w0[1], MD4C02, MD4S20);
243     MD4_STEP (MD4_H , d, a, b, c, w2[1], MD4C02, MD4S21);
244     MD4_STEP (MD4_H , c, d, a, b, w1[1], MD4C02, MD4S22);
245     MD4_STEP (MD4_H , b, c, d, a, w3[1], MD4C02, MD4S23);
246     MD4_STEP (MD4_H , a, b, c, d, w0[3], MD4C02, MD4S20);
247
248     if (MATCHES_NONE_VS (a, search[0])) continue;
249
250     MD4_STEP (MD4_H , d, a, b, c, w2[3], MD4C02, MD4S21);
251     MD4_STEP (MD4_H , c, d, a, b, w1[3], MD4C02, MD4S22);
252     MD4_STEP (MD4_H , b, c, d, a, w3[3], MD4C02, MD4S23);
253
254     COMPARE_S_SIMD (a, d, c, b);
255   }
256 }
257
258 __kernel void m00900_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 void *esalt_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)
259 {
260 }
261
262 __kernel void m00900_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 void *esalt_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)
263 {
264 }