mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-01 04:58:57 +00:00
5de004103a
Substitute long parameter lists in ~2900 kernel function declarations with macros. This cleans up the code, reduces probability of copy-paste errors and highlights the differences between kernel functions. Also reduces the size of the OpenCL folder by ~3 MB.
237 lines
6.3 KiB
Common Lisp
237 lines
6.3 KiB
Common Lisp
/**
|
|
* Author......: See docs/credits.txt
|
|
* License.....: MIT
|
|
*/
|
|
|
|
#include "inc_vendor.cl"
|
|
#include "inc_hash_constants.h"
|
|
#include "inc_hash_functions.cl"
|
|
#include "inc_types.cl"
|
|
#include "inc_common.cl"
|
|
#include "inc_hash_sha512.cl"
|
|
|
|
#define COMPARE_S "inc_comp_single.cl"
|
|
#define COMPARE_M "inc_comp_multi.cl"
|
|
|
|
__kernel void m07900_init (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
sha512_ctx_t ctx;
|
|
|
|
sha512_init (&ctx);
|
|
|
|
sha512_update_global_swap (&ctx, salt_bufs[salt_pos].salt_buf, salt_bufs[salt_pos].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 void m07900_loop (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* base
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= gid_max) return;
|
|
|
|
/**
|
|
* init
|
|
*/
|
|
|
|
const u32 pw_len = pws[gid].pw_len;
|
|
|
|
u32 w[64] = { 0 };
|
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
|
{
|
|
w[idx] = pws[gid].i[idx];
|
|
}
|
|
|
|
for (int i = 0, idx = 0; i < pw_len; i += 4, idx += 1)
|
|
{
|
|
w[idx] = swap32_S (w[idx]);
|
|
}
|
|
|
|
/**
|
|
* 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 (&sha512_ctx, w, 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 (&sha512_ctx, w, 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 void m07900_comp (KERN_ATTR_TMPS (drupal7_tmp_t))
|
|
{
|
|
/**
|
|
* modifier
|
|
*/
|
|
|
|
const u64 gid = get_global_id (0);
|
|
|
|
if (gid >= gid_max) 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
|
|
|
|
#include COMPARE_M
|
|
}
|