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
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
//#define NEW_SIMD_CODE
|
2016-02-05 20:58:59 +00:00
|
|
|
|
2019-03-22 14:16:25 +00:00
|
|
|
#ifdef KERNEL_STATIC
|
2019-03-21 22:00:38 +00:00
|
|
|
#include "inc_vendor.h"
|
|
|
|
#include "inc_types.h"
|
2019-04-26 11:59:43 +00:00
|
|
|
#include "inc_platform.cl"
|
2016-05-25 21:04:26 +00:00
|
|
|
#include "inc_common.cl"
|
2017-08-11 21:51:17 +00:00
|
|
|
#include "inc_rp.h"
|
|
|
|
#include "inc_rp.cl"
|
2017-07-18 11:23:42 +00:00
|
|
|
#include "inc_scalar.cl"
|
|
|
|
#include "inc_hash_md5.cl"
|
2019-03-22 14:16:25 +00:00
|
|
|
#endif
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2016-02-01 20:06:56 +00:00
|
|
|
#if VECT_SIZE == 1
|
2019-05-08 13:21:22 +00:00
|
|
|
#define uint_to_hex_upper8(i) make_u32x (l_bin2asc[(i)])
|
2016-02-01 20:06:56 +00:00
|
|
|
#elif VECT_SIZE == 2
|
2019-05-08 13:21:22 +00:00
|
|
|
#define uint_to_hex_upper8(i) make_u32x (l_bin2asc[(i).s0], l_bin2asc[(i).s1])
|
2016-02-01 20:06:56 +00:00
|
|
|
#elif VECT_SIZE == 4
|
2019-05-08 13:21:22 +00:00
|
|
|
#define uint_to_hex_upper8(i) make_u32x (l_bin2asc[(i).s0], l_bin2asc[(i).s1], l_bin2asc[(i).s2], l_bin2asc[(i).s3])
|
2016-02-01 20:06:56 +00:00
|
|
|
#elif VECT_SIZE == 8
|
2019-05-08 13:21:22 +00:00
|
|
|
#define uint_to_hex_upper8(i) make_u32x (l_bin2asc[(i).s0], l_bin2asc[(i).s1], l_bin2asc[(i).s2], l_bin2asc[(i).s3], l_bin2asc[(i).s4], l_bin2asc[(i).s5], l_bin2asc[(i).s6], l_bin2asc[(i).s7])
|
2016-02-16 15:42:08 +00:00
|
|
|
#elif VECT_SIZE == 16
|
2019-05-08 13:21:22 +00:00
|
|
|
#define uint_to_hex_upper8(i) make_u32x (l_bin2asc[(i).s0], l_bin2asc[(i).s1], l_bin2asc[(i).s2], l_bin2asc[(i).s3], l_bin2asc[(i).s4], l_bin2asc[(i).s5], l_bin2asc[(i).s6], l_bin2asc[(i).s7], l_bin2asc[(i).s8], l_bin2asc[(i).s9], l_bin2asc[(i).sa], l_bin2asc[(i).sb], l_bin2asc[(i).sc], l_bin2asc[(i).sd], l_bin2asc[(i).se], l_bin2asc[(i).sf])
|
2016-02-01 20:06:56 +00:00
|
|
|
#endif
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m04310_mxx (KERN_ATTR_RULES ())
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
2016-04-10 14:06:10 +00:00
|
|
|
* modifier
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
* bin2asc table
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2019-05-07 07:01:32 +00:00
|
|
|
LOCAL_VK u32 l_bin2asc[256];
|
2016-01-19 15:06:03 +00:00
|
|
|
|
2019-03-03 18:18:56 +00:00
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
|
|
|
const u32 i0 = (i >> 0) & 15;
|
|
|
|
const u32 i1 = (i >> 4) & 15;
|
|
|
|
|
|
|
|
l_bin2asc[i] = ((i0 < 10) ? '0' + i0 : 'A' - 10 + i0) << 8
|
|
|
|
| ((i1 < 10) ? '0' + i1 : 'A' - 10 + i1) << 0;
|
|
|
|
}
|
|
|
|
|
2019-04-26 11:34:07 +00:00
|
|
|
SYNC_THREADS ();
|
2016-01-19 15:06:03 +00:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-23 11:40:22 +00:00
|
|
|
COPY_PW (pws[gid]);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2020-09-29 13:56:32 +00:00
|
|
|
const u32 salt_len = salt_bufs[SALT_POS].salt_len;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-01 12:56:09 +00:00
|
|
|
u32 s[64] = { 0 };
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2019-04-10 10:23:39 +00:00
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2017-07-18 11:23:42 +00:00
|
|
|
{
|
2020-09-29 13:56:32 +00:00
|
|
|
s[idx] = salt_bufs[SALT_POS].salt_buf[idx];
|
2017-07-18 11:23:42 +00:00
|
|
|
}
|
|
|
|
|
2015-12-04 14:47:52 +00:00
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2017-08-23 11:40:22 +00:00
|
|
|
pw_t tmp = PASTE_PW;
|
2017-08-11 14:09:12 +00:00
|
|
|
|
2017-08-12 11:04:52 +00:00
|
|
|
tmp.pw_len = apply_rules (rules_buf[il_pos].cmds, tmp.i, tmp.pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_ctx_t ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_init (&ctx0);
|
|
|
|
|
2017-08-12 11:04:52 +00:00
|
|
|
md5_update (&ctx0, tmp.i, tmp.pw_len);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
|
|
|
md5_final (&ctx0);
|
|
|
|
|
|
|
|
const u32 a = ctx0.h[0];
|
|
|
|
const u32 b = ctx0.h[1];
|
|
|
|
const u32 c = ctx0.h[2];
|
|
|
|
const u32 d = ctx0.h[3];
|
|
|
|
|
|
|
|
md5_ctx_t ctx;
|
|
|
|
|
|
|
|
md5_init (&ctx);
|
|
|
|
|
|
|
|
ctx.w0[0] = uint_to_hex_upper8 ((a >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((a >> 8) & 255) << 16;
|
|
|
|
ctx.w0[1] = uint_to_hex_upper8 ((a >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((a >> 24) & 255) << 16;
|
|
|
|
ctx.w0[2] = uint_to_hex_upper8 ((b >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((b >> 8) & 255) << 16;
|
|
|
|
ctx.w0[3] = uint_to_hex_upper8 ((b >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((b >> 24) & 255) << 16;
|
|
|
|
ctx.w1[0] = uint_to_hex_upper8 ((c >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((c >> 8) & 255) << 16;
|
|
|
|
ctx.w1[1] = uint_to_hex_upper8 ((c >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((c >> 24) & 255) << 16;
|
|
|
|
ctx.w1[2] = uint_to_hex_upper8 ((d >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((d >> 8) & 255) << 16;
|
|
|
|
ctx.w1[3] = uint_to_hex_upper8 ((d >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((d >> 24) & 255) << 16;
|
|
|
|
|
|
|
|
ctx.len = 32;
|
|
|
|
|
|
|
|
md5_update (&ctx, s, salt_len);
|
|
|
|
|
|
|
|
md5_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
|
|
|
const u32 r1 = ctx.h[DGST_R1];
|
|
|
|
const u32 r2 = ctx.h[DGST_R2];
|
|
|
|
const u32 r3 = ctx.h[DGST_R3];
|
|
|
|
|
|
|
|
COMPARE_M_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|
|
|
|
|
2019-03-22 21:27:58 +00:00
|
|
|
KERNEL_FQ void m04310_sxx (KERN_ATTR_RULES ())
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
|
|
|
/**
|
2016-04-10 14:06:10 +00:00
|
|
|
* modifier
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
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
|
|
|
* bin2asc table
|
2015-12-04 14:47:52 +00:00
|
|
|
*/
|
|
|
|
|
2019-05-07 07:01:32 +00:00
|
|
|
LOCAL_VK u32 l_bin2asc[256];
|
2016-01-19 15:06:03 +00:00
|
|
|
|
2019-03-03 18:18:56 +00:00
|
|
|
for (u32 i = lid; i < 256; i += lsz)
|
2016-01-19 15:06:03 +00:00
|
|
|
{
|
|
|
|
const u32 i0 = (i >> 0) & 15;
|
|
|
|
const u32 i1 = (i >> 4) & 15;
|
|
|
|
|
|
|
|
l_bin2asc[i] = ((i0 < 10) ? '0' + i0 : 'A' - 10 + i0) << 8
|
|
|
|
| ((i1 < 10) ? '0' + i1 : 'A' - 10 + i1) << 0;
|
|
|
|
}
|
|
|
|
|
2019-04-26 11:34:07 +00:00
|
|
|
SYNC_THREADS ();
|
2016-01-19 15:06:03 +00:00
|
|
|
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
|
|
|
|
/**
|
2017-07-18 11:23:42 +00:00
|
|
|
* digest
|
2016-01-19 15:06:03 +00:00
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
const u32 search[4] =
|
|
|
|
{
|
2020-09-29 13:56:32 +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]
|
2017-07-18 11:23:42 +00:00
|
|
|
};
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
/**
|
|
|
|
* base
|
|
|
|
*/
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-23 11:40:22 +00:00
|
|
|
COPY_PW (pws[gid]);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2020-09-29 13:56:32 +00:00
|
|
|
const u32 salt_len = salt_bufs[SALT_POS].salt_len;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-08-01 12:56:09 +00:00
|
|
|
u32 s[64] = { 0 };
|
2017-07-18 11:23:42 +00:00
|
|
|
|
2019-04-10 10:23:39 +00:00
|
|
|
for (u32 i = 0, idx = 0; i < salt_len; i += 4, idx += 1)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2020-09-29 13:56:32 +00:00
|
|
|
s[idx] = salt_bufs[SALT_POS].salt_buf[idx];
|
2017-07-18 11:23:42 +00:00
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* loop
|
|
|
|
*/
|
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
for (u32 il_pos = 0; il_pos < il_cnt; il_pos++)
|
2015-12-04 14:47:52 +00:00
|
|
|
{
|
2017-08-23 11:40:22 +00:00
|
|
|
pw_t tmp = PASTE_PW;
|
2017-08-11 14:09:12 +00:00
|
|
|
|
2017-08-12 11:04:52 +00:00
|
|
|
tmp.pw_len = apply_rules (rules_buf[il_pos].cmds, tmp.i, tmp.pw_len);
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_ctx_t ctx0;
|
2015-12-04 14:47:52 +00:00
|
|
|
|
2017-07-18 11:23:42 +00:00
|
|
|
md5_init (&ctx0);
|
|
|
|
|
2017-08-12 11:04:52 +00:00
|
|
|
md5_update (&ctx0, tmp.i, tmp.pw_len);
|
2017-07-18 11:23:42 +00:00
|
|
|
|
|
|
|
md5_final (&ctx0);
|
|
|
|
|
|
|
|
const u32 a = ctx0.h[0];
|
|
|
|
const u32 b = ctx0.h[1];
|
|
|
|
const u32 c = ctx0.h[2];
|
|
|
|
const u32 d = ctx0.h[3];
|
|
|
|
|
|
|
|
md5_ctx_t ctx;
|
|
|
|
|
|
|
|
md5_init (&ctx);
|
|
|
|
|
|
|
|
ctx.w0[0] = uint_to_hex_upper8 ((a >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((a >> 8) & 255) << 16;
|
|
|
|
ctx.w0[1] = uint_to_hex_upper8 ((a >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((a >> 24) & 255) << 16;
|
|
|
|
ctx.w0[2] = uint_to_hex_upper8 ((b >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((b >> 8) & 255) << 16;
|
|
|
|
ctx.w0[3] = uint_to_hex_upper8 ((b >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((b >> 24) & 255) << 16;
|
|
|
|
ctx.w1[0] = uint_to_hex_upper8 ((c >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((c >> 8) & 255) << 16;
|
|
|
|
ctx.w1[1] = uint_to_hex_upper8 ((c >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((c >> 24) & 255) << 16;
|
|
|
|
ctx.w1[2] = uint_to_hex_upper8 ((d >> 0) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((d >> 8) & 255) << 16;
|
|
|
|
ctx.w1[3] = uint_to_hex_upper8 ((d >> 16) & 255) << 0
|
|
|
|
| uint_to_hex_upper8 ((d >> 24) & 255) << 16;
|
|
|
|
|
|
|
|
ctx.len = 32;
|
|
|
|
|
|
|
|
md5_update (&ctx, s, salt_len);
|
|
|
|
|
|
|
|
md5_final (&ctx);
|
|
|
|
|
|
|
|
const u32 r0 = ctx.h[DGST_R0];
|
|
|
|
const u32 r1 = ctx.h[DGST_R1];
|
|
|
|
const u32 r2 = ctx.h[DGST_R2];
|
|
|
|
const u32 r3 = ctx.h[DGST_R3];
|
|
|
|
|
|
|
|
COMPARE_S_SCALAR (r0, r1, r2, r3);
|
|
|
|
}
|
2015-12-04 14:47:52 +00:00
|
|
|
}
|