mirror of
https://github.com/hashcat/hashcat.git
synced 2025-07-31 19:08:43 +00:00

Updated kernel declarations from "KERNEL_FQ void HC_ATTR_SEQ" to "KERNEL_FQ KERNEL_FA void". Please update your custom plugin kernels accordingly. Added spilling size as a factor in calculating usable memory per device. This is based on undocumented variables and may not be 100% accurate, but it works well in practice. Added a compiler hint to scrypt-based kernels indicating the guaranteed maximum thread count per kernel invocation. Removed redundant kernel code 29800, as it is identical to 27700, and updated the plugin.
234 lines
6.4 KiB
Common Lisp
234 lines
6.4 KiB
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#ifdef KERNEL_STATIC
|
|
#include M2S(INCLUDE_PATH/inc_vendor.h)
|
|
#include M2S(INCLUDE_PATH/inc_types.h)
|
|
#include M2S(INCLUDE_PATH/inc_platform.cl)
|
|
#include M2S(INCLUDE_PATH/inc_common.cl)
|
|
#include M2S(INCLUDE_PATH/inc_hash_sha512.cl)
|
|
#endif
|
|
|
|
#define COMPARE_S M2S(INCLUDE_PATH/inc_comp_single.cl)
|
|
#define COMPARE_M M2S(INCLUDE_PATH/inc_comp_multi.cl)
|
|
|
|
typedef struct drupal7_tmp
|
|
{
|
|
u64 digest_buf[8];
|
|
|
|
} drupal7_tmp_t;
|
|
|
|
KERNEL_FQ KERNEL_FA void m07900_init (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= GID_CNT) return;
|
|
|
|
sha512_ctx_t ctx;
|
|
|
|
sha512_init (&ctx);
|
|
|
|
sha512_update_global_swap (&ctx, salt_bufs[SALT_POS_HOST].salt_buf, salt_bufs[SALT_POS_HOST].salt_len);
|
|
|
|
sha512_update_global_swap (&ctx, pws[gid].i, pws[gid].pw_len);
|
|
|
|
sha512_final (&ctx);
|
|
|
|
tmps[gid].digest_buf[0] = ctx.h[0];
|
|
tmps[gid].digest_buf[1] = ctx.h[1];
|
|
tmps[gid].digest_buf[2] = ctx.h[2];
|
|
tmps[gid].digest_buf[3] = ctx.h[3];
|
|
tmps[gid].digest_buf[4] = ctx.h[4];
|
|
tmps[gid].digest_buf[5] = ctx.h[5];
|
|
tmps[gid].digest_buf[6] = ctx.h[6];
|
|
tmps[gid].digest_buf[7] = ctx.h[7];
|
|
}
|
|
|
|
KERNEL_FQ KERNEL_FA void m07900_loop (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= GID_CNT) return;
|
|
|
|
/**
|
|
* init
|
|
*/
|
|
|
|
const u32 pw_len = pws[gid].pw_len;
|
|
|
|
/**
|
|
* load
|
|
*/
|
|
|
|
u64 digest[8];
|
|
|
|
digest[0] = tmps[gid].digest_buf[0];
|
|
digest[1] = tmps[gid].digest_buf[1];
|
|
digest[2] = tmps[gid].digest_buf[2];
|
|
digest[3] = tmps[gid].digest_buf[3];
|
|
digest[4] = tmps[gid].digest_buf[4];
|
|
digest[5] = tmps[gid].digest_buf[5];
|
|
digest[6] = tmps[gid].digest_buf[6];
|
|
digest[7] = tmps[gid].digest_buf[7];
|
|
|
|
/**
|
|
* loop
|
|
*/
|
|
|
|
sha512_ctx_t sha512_ctx;
|
|
|
|
sha512_init (&sha512_ctx);
|
|
|
|
sha512_ctx.w0[0] = h32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[1] = l32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[2] = h32_from_64_S (digest[1]);
|
|
sha512_ctx.w0[3] = l32_from_64_S (digest[1]);
|
|
sha512_ctx.w1[0] = h32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[1] = l32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[2] = h32_from_64_S (digest[3]);
|
|
sha512_ctx.w1[3] = l32_from_64_S (digest[3]);
|
|
sha512_ctx.w2[0] = h32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[1] = l32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[2] = h32_from_64_S (digest[5]);
|
|
sha512_ctx.w2[3] = l32_from_64_S (digest[5]);
|
|
sha512_ctx.w3[0] = h32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[1] = l32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[2] = h32_from_64_S (digest[7]);
|
|
sha512_ctx.w3[3] = l32_from_64_S (digest[7]);
|
|
|
|
sha512_ctx.len = 64;
|
|
|
|
sha512_update_global_swap (&sha512_ctx, pws[gid].i, pw_len);
|
|
|
|
sha512_final (&sha512_ctx);
|
|
|
|
digest[0] = sha512_ctx.h[0];
|
|
digest[1] = sha512_ctx.h[1];
|
|
digest[2] = sha512_ctx.h[2];
|
|
digest[3] = sha512_ctx.h[3];
|
|
digest[4] = sha512_ctx.h[4];
|
|
digest[5] = sha512_ctx.h[5];
|
|
digest[6] = sha512_ctx.h[6];
|
|
digest[7] = sha512_ctx.h[7];
|
|
|
|
if ((64 + pw_len + 1) >= 112)
|
|
{
|
|
for (u32 i = 1; i < LOOP_CNT; i++)
|
|
{
|
|
sha512_init (&sha512_ctx);
|
|
|
|
sha512_ctx.w0[0] = h32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[1] = l32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[2] = h32_from_64_S (digest[1]);
|
|
sha512_ctx.w0[3] = l32_from_64_S (digest[1]);
|
|
sha512_ctx.w1[0] = h32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[1] = l32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[2] = h32_from_64_S (digest[3]);
|
|
sha512_ctx.w1[3] = l32_from_64_S (digest[3]);
|
|
sha512_ctx.w2[0] = h32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[1] = l32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[2] = h32_from_64_S (digest[5]);
|
|
sha512_ctx.w2[3] = l32_from_64_S (digest[5]);
|
|
sha512_ctx.w3[0] = h32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[1] = l32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[2] = h32_from_64_S (digest[7]);
|
|
sha512_ctx.w3[3] = l32_from_64_S (digest[7]);
|
|
|
|
sha512_ctx.len = 64;
|
|
|
|
sha512_update_global_swap (&sha512_ctx, pws[gid].i, pw_len);
|
|
|
|
sha512_final (&sha512_ctx);
|
|
|
|
digest[0] = sha512_ctx.h[0];
|
|
digest[1] = sha512_ctx.h[1];
|
|
digest[2] = sha512_ctx.h[2];
|
|
digest[3] = sha512_ctx.h[3];
|
|
digest[4] = sha512_ctx.h[4];
|
|
digest[5] = sha512_ctx.h[5];
|
|
digest[6] = sha512_ctx.h[6];
|
|
digest[7] = sha512_ctx.h[7];
|
|
}
|
|
}
|
|
else
|
|
{
|
|
for (u32 i = 1; i < LOOP_CNT; i++)
|
|
{
|
|
sha512_ctx.w0[0] = h32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[1] = l32_from_64_S (digest[0]);
|
|
sha512_ctx.w0[2] = h32_from_64_S (digest[1]);
|
|
sha512_ctx.w0[3] = l32_from_64_S (digest[1]);
|
|
sha512_ctx.w1[0] = h32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[1] = l32_from_64_S (digest[2]);
|
|
sha512_ctx.w1[2] = h32_from_64_S (digest[3]);
|
|
sha512_ctx.w1[3] = l32_from_64_S (digest[3]);
|
|
sha512_ctx.w2[0] = h32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[1] = l32_from_64_S (digest[4]);
|
|
sha512_ctx.w2[2] = h32_from_64_S (digest[5]);
|
|
sha512_ctx.w2[3] = l32_from_64_S (digest[5]);
|
|
sha512_ctx.w3[0] = h32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[1] = l32_from_64_S (digest[6]);
|
|
sha512_ctx.w3[2] = h32_from_64_S (digest[7]);
|
|
sha512_ctx.w3[3] = l32_from_64_S (digest[7]);
|
|
|
|
digest[0] = SHA512M_A;
|
|
digest[1] = SHA512M_B;
|
|
digest[2] = SHA512M_C;
|
|
digest[3] = SHA512M_D;
|
|
digest[4] = SHA512M_E;
|
|
digest[5] = SHA512M_F;
|
|
digest[6] = SHA512M_G;
|
|
digest[7] = SHA512M_H;
|
|
|
|
sha512_transform (sha512_ctx.w0, sha512_ctx.w1, sha512_ctx.w2, sha512_ctx.w3, sha512_ctx.w4, sha512_ctx.w5, sha512_ctx.w6, sha512_ctx.w7, digest);
|
|
}
|
|
}
|
|
|
|
tmps[gid].digest_buf[0] = digest[0];
|
|
tmps[gid].digest_buf[1] = digest[1];
|
|
tmps[gid].digest_buf[2] = digest[2];
|
|
tmps[gid].digest_buf[3] = digest[3];
|
|
tmps[gid].digest_buf[4] = digest[4];
|
|
tmps[gid].digest_buf[5] = digest[5];
|
|
tmps[gid].digest_buf[6] = digest[6];
|
|
tmps[gid].digest_buf[7] = digest[7];
|
|
}
|
|
|
|
KERNEL_FQ KERNEL_FA void m07900_comp (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= GID_CNT) return;
|
|
|
|
const u64 lid = get_local_id (0);
|
|
|
|
/**
|
|
* digest
|
|
*/
|
|
|
|
const u32 r0 = l32_from_64_S (tmps[gid].digest_buf[0]);
|
|
const u32 r1 = h32_from_64_S (tmps[gid].digest_buf[0]);
|
|
const u32 r2 = l32_from_64_S (tmps[gid].digest_buf[1]);
|
|
const u32 r3 = h32_from_64_S (tmps[gid].digest_buf[1]);
|
|
|
|
#define il_pos 0
|
|
|
|
#ifdef KERNEL_STATIC
|
|
#include COMPARE_M
|
|
#endif
|
|
}
|