2015-12-04 14:47:52 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2015-12-04 14:47:52 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
2016-01-23 14:32:31 +00:00
|
|
|
#define NEW_SIMD_CODE
|
|
|
|
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_vendor.cl"
|
2016-06-26 21:39:42 +00:00
|
|
|
#include "inc_hash_constants.h"
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_hash_functions.cl"
|
|
|
|
#include "inc_types.cl"
|
|
|
|
#include "inc_common.cl"
|
|
|
|
#include "inc_simd.cl"
|
2017-07-18 11:23:42 +00:00
|
|
|
#include "inc_hash_whirlpool.cl"
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-25 15:52:55 +00:00
|
|
|
__kernel void m06100_mxx (__global pw_t *pws, __global const kernel_rule_t *rules_buf, __global const pw_t *combs_buf, __constant const u32x *words_buf_r, __global void *tmps, __global void *hooks, __global const u32 *bitmaps_buf_s1_a, __global const u32 *bitmaps_buf_s1_b, __global const u32 *bitmaps_buf_s1_c, __global const u32 *bitmaps_buf_s1_d, __global const u32 *bitmaps_buf_s2_a, __global const u32 *bitmaps_buf_s2_b, __global const u32 *bitmaps_buf_s2_c, __global const u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global const digest_t *digests_buf, __global u32 *hashes_shown, __global const salt_t *salt_bufs, __global const 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 u64 gid_max)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
const u64 lsz = get_local_size (0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-19 15:06:03 +00:00
|
|
|
* shared
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-05 14:45:20 +00:00
|
|
|
#ifdef REAL_SHM
|
|
|
|
|
2016-01-19 15:06:03 +00:00
|
|
|
__local u32 s_Ch[8][256];
|
|
|
|
__local u32 s_Cl[8][256];
|
|
|
|
|
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
|
|
|
{
|
|
|
|
s_Ch[0][i] = Ch[0][i];
|
|
|
|
s_Ch[1][i] = Ch[1][i];
|
|
|
|
s_Ch[2][i] = Ch[2][i];
|
|
|
|
s_Ch[3][i] = Ch[3][i];
|
|
|
|
s_Ch[4][i] = Ch[4][i];
|
|
|
|
s_Ch[5][i] = Ch[5][i];
|
|
|
|
s_Ch[6][i] = Ch[6][i];
|
|
|
|
s_Ch[7][i] = Ch[7][i];
|
|
|
|
|
|
|
|
s_Cl[0][i] = Cl[0][i];
|
|
|
|
s_Cl[1][i] = Cl[1][i];
|
|
|
|
s_Cl[2][i] = Cl[2][i];
|
|
|
|
s_Cl[3][i] = Cl[3][i];
|
|
|
|
s_Cl[4][i] = Cl[4][i];
|
|
|
|
s_Cl[5][i] = Cl[5][i];
|
|
|
|
s_Cl[6][i] = Cl[6][i];
|
|
|
|
s_Cl[7][i] = Cl[7][i];
|
|
|
|
}
|
|
|
|
|
|
|
|
barrier (CLK_LOCAL_MEM_FENCE);
|
|
|
|
|
2017-09-05 14:45:20 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
__constant u32 (*s_Ch)[256] = Ch;
|
|
|
|
__constant u32 (*s_Cl)[256] = Cl;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-01-19 15:06:03 +00:00
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
const u32 pw_len = pws[gid].pw_len;
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u32x w[64] = { 0 };
|
2016-01-19 15:06:03 +00:00
|
|
|
|
2017-08-17 11:43:35 +00:00
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
w[idx] = pws[gid].i[idx];
|
2016-01-19 15:06:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* loop
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u32x w0l = w[0];
|
2016-01-19 15:06:03 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32x w0 = w0l | w0r;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
w[0] = w0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_ctx_vector_t ctx;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_init_vector (&ctx, s_Ch, s_Cl);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_update_vector (&ctx, w, pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_final_vector (&ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32x r0 = ctx.h[DGST_R0];
|
|
|
|
const u32x r1 = ctx.h[DGST_R1];
|
|
|
|
const u32x r2 = ctx.h[DGST_R2];
|
|
|
|
const u32x r3 = ctx.h[DGST_R3];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
COMPARE_M_SIMD (r0, r1, r2, r3);
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
|
|
|
|
2017-08-25 15:52:55 +00:00
|
|
|
__kernel void m06100_sxx (__global pw_t *pws, __global const kernel_rule_t *rules_buf, __global const pw_t *combs_buf, __constant const u32x *words_buf_r, __global void *tmps, __global void *hooks, __global const u32 *bitmaps_buf_s1_a, __global const u32 *bitmaps_buf_s1_b, __global const u32 *bitmaps_buf_s1_c, __global const u32 *bitmaps_buf_s1_d, __global const u32 *bitmaps_buf_s2_a, __global const u32 *bitmaps_buf_s2_b, __global const u32 *bitmaps_buf_s2_c, __global const u32 *bitmaps_buf_s2_d, __global plain_t *plains_buf, __global const digest_t *digests_buf, __global u32 *hashes_shown, __global const salt_t *salt_bufs, __global const 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 u64 gid_max)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
|
|
|
* modifier
|
|
|
|
*/
|
|
|
|
|
2017-08-19 14:39:22 +00:00
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
const u64 lsz = get_local_size (0);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
2016-01-19 15:06:03 +00:00
|
|
|
* shared
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-09-05 14:45:20 +00:00
|
|
|
#ifdef REAL_SHM
|
|
|
|
|
2016-01-19 15:06:03 +00:00
|
|
|
__local u32 s_Ch[8][256];
|
|
|
|
__local u32 s_Cl[8][256];
|
|
|
|
|
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
|
|
|
{
|
|
|
|
s_Ch[0][i] = Ch[0][i];
|
|
|
|
s_Ch[1][i] = Ch[1][i];
|
|
|
|
s_Ch[2][i] = Ch[2][i];
|
|
|
|
s_Ch[3][i] = Ch[3][i];
|
|
|
|
s_Ch[4][i] = Ch[4][i];
|
|
|
|
s_Ch[5][i] = Ch[5][i];
|
|
|
|
s_Ch[6][i] = Ch[6][i];
|
|
|
|
s_Ch[7][i] = Ch[7][i];
|
|
|
|
|
|
|
|
s_Cl[0][i] = Cl[0][i];
|
|
|
|
s_Cl[1][i] = Cl[1][i];
|
|
|
|
s_Cl[2][i] = Cl[2][i];
|
|
|
|
s_Cl[3][i] = Cl[3][i];
|
|
|
|
s_Cl[4][i] = Cl[4][i];
|
|
|
|
s_Cl[5][i] = Cl[5][i];
|
|
|
|
s_Cl[6][i] = Cl[6][i];
|
|
|
|
s_Cl[7][i] = Cl[7][i];
|
|
|
|
}
|
|
|
|
|
|
|
|
barrier (CLK_LOCAL_MEM_FENCE);
|
|
|
|
|
2017-09-05 14:45:20 +00:00
|
|
|
#else
|
|
|
|
|
|
|
|
__constant u32 (*s_Ch)[256] = Ch;
|
|
|
|
__constant u32 (*s_Cl)[256] = Cl;
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
2016-01-19 15:06:03 +00:00
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* digest
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32 search[4] =
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R0],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R1],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R2],
|
|
|
|
digests_buf[digests_offset].digest_buf[DGST_R3]
|
|
|
|
};
|
2016-01-19 15:06:03 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
const u32 pw_len = pws[gid].pw_len;
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u32x w[64] = { 0 };
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-17 11:43:35 +00:00
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
2017-07-18 11:23:42 +00:00
|
|
|
w[idx] = pws[gid].i[idx];
|
2016-01-19 15:06:03 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* loop
|
2016-01-19 15:06:03 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
u32x w0l = w[0];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos += VECT_SIZE)
|
|
|
|
{
|
|
|
|
const u32x w0r = words_buf_r[il_pos / VECT_SIZE];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32x w0 = w0l | w0r;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
w[0] = w0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_ctx_vector_t ctx;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_init_vector (&ctx, s_Ch, s_Cl);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_update_vector (&ctx, w, pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
whirlpool_final_vector (&ctx);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32x r0 = ctx.h[DGST_R0];
|
|
|
|
const u32x r1 = ctx.h[DGST_R1];
|
|
|
|
const u32x r2 = ctx.h[DGST_R2];
|
|
|
|
const u32x r3 = ctx.h[DGST_R3];
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
COMPARE_S_SIMD (r0, r1, r2, r3);
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|