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-09-06 16:44:05 +00:00
# ifndef _TYPES_H
# define _TYPES_H
2016-09-05 19:47:26 +00:00
2016-10-25 10:25:53 +00:00
# include "common.h"
2016-09-05 19:47:26 +00:00
# include <stdio.h>
2016-09-16 15:01:18 +00:00
# include <stdint.h>
# include <stdbool.h>
# include <string.h>
2016-09-05 19:47:26 +00:00
# include <sys/types.h>
# include <sys/stat.h>
2016-09-16 15:01:18 +00:00
# include <sys/time.h>
2016-10-31 10:28:06 +00:00
# include <unistd.h>
2019-03-25 13:08:59 +00:00
# include <math.h>
2019-07-29 16:42:50 +00:00
// workaround to get the rid of "redefinition of typedef 'Byte'" build warning
# if !defined (__APPLE__)
2019-06-21 19:56:38 +00:00
# include "zlib.h"
2019-07-29 16:42:50 +00:00
# endif
# if !defined(__MACTYPES__)
# define __MACTYPES__
# include "ext_lzma.h"
# undef __MACTYPES__
# endif
// end of workaround
2017-04-19 10:58:25 +00:00
# if defined (_WIN)
# define WINICONV_CONST
# endif
2017-04-14 14:36:28 +00:00
# include <iconv.h>
2016-09-16 15:01:18 +00:00
# if defined (_WIN)
# include <windows.h>
# if defined (_BASETSD_H)
# else
typedef UINT8 uint8_t ;
typedef UINT16 uint16_t ;
typedef UINT32 uint32_t ;
typedef UINT64 uint64_t ;
typedef INT8 int8_t ;
typedef INT16 int16_t ;
typedef INT32 int32_t ;
typedef INT64 int64_t ;
# endif
# endif // _WIN
2018-08-17 23:41:07 +00:00
typedef int8_t i8 ;
typedef int16_t i16 ;
typedef int32_t i32 ;
typedef int64_t i64 ;
2019-03-25 13:08:59 +00:00
# include "inc_types.h"
// there's no such thing in plain C, therefore all vector operation cannot work in this emu
// which is why VECT_SIZE is set to 1
2019-03-25 20:54:51 +00:00
typedef uint32_t uint4 ;
2019-03-25 13:08:59 +00:00
2016-09-16 15:01:18 +00:00
// timer
# if defined (_WIN)
2016-09-20 11:18:47 +00:00
typedef LARGE_INTEGER hc_timer_t ;
2018-01-11 01:41:16 +00:00
# elif defined(__APPLE__) && defined(MISSING_CLOCK_GETTIME)
typedef struct timeval hc_timer_t ;
2017-02-23 23:55:06 +00:00
# else
2017-12-10 13:02:43 +00:00
typedef struct timespec hc_timer_t ;
2016-09-16 15:01:18 +00:00
# endif
2016-09-20 11:18:47 +00:00
// thread
2015-12-04 14:47:52 +00:00
2016-09-30 20:52:44 +00:00
# if defined (_POSIX)
# include <pthread.h>
2018-08-16 12:57:10 +00:00
# include <semaphore.h>
2016-09-30 20:52:44 +00:00
# endif
2016-09-20 11:18:47 +00:00
# if defined (_WIN)
2021-07-10 13:29:40 +00:00
typedef HANDLE hc_thread_t ;
typedef CRITICAL_SECTION hc_thread_mutex_t ;
typedef HANDLE hc_thread_semaphore_t ;
2017-02-23 23:55:06 +00:00
# else
2021-07-10 13:29:40 +00:00
typedef pthread_t hc_thread_t ;
typedef pthread_mutex_t hc_thread_mutex_t ;
typedef sem_t hc_thread_semaphore_t ;
2016-09-20 11:18:47 +00:00
# endif
// enums
2016-09-08 07:21:25 +00:00
2016-10-15 14:12:20 +00:00
typedef enum loglevel
{
LOGLEVEL_INFO = 0 ,
LOGLEVEL_WARNING = 1 ,
LOGLEVEL_ERROR = 2 ,
2017-03-25 19:50:37 +00:00
LOGLEVEL_ADVICE = 3 ,
2016-10-15 14:12:20 +00:00
} loglevel_t ;
2016-10-07 14:56:44 +00:00
typedef enum event_identifier
{
2021-06-22 09:37:59 +00:00
EVENT_AUTODETECT_FINISHED = 0x00000100 ,
EVENT_AUTODETECT_STARTING = 0x00000101 ,
2016-10-25 10:03:20 +00:00
EVENT_AUTOTUNE_FINISHED = 0x00000000 ,
EVENT_AUTOTUNE_STARTING = 0x00000001 ,
EVENT_BITMAP_INIT_POST = 0x00000010 ,
EVENT_BITMAP_INIT_PRE = 0x00000011 ,
2018-11-04 09:07:45 +00:00
EVENT_BITMAP_FINAL_OVERFLOW = 0x00000012 ,
2016-10-25 10:03:20 +00:00
EVENT_CALCULATED_WORDS_BASE = 0x00000020 ,
EVENT_CRACKER_FINISHED = 0x00000030 ,
EVENT_CRACKER_HASH_CRACKED = 0x00000031 ,
EVENT_CRACKER_STARTING = 0x00000032 ,
2019-11-21 08:03:06 +00:00
EVENT_HASHCONFIG_PRE = 0x00000040 ,
EVENT_HASHCONFIG_POST = 0x00000041 ,
EVENT_HASHLIST_COUNT_LINES_POST = 0x00000050 ,
EVENT_HASHLIST_COUNT_LINES_PRE = 0x00000051 ,
EVENT_HASHLIST_PARSE_HASH = 0x00000052 ,
EVENT_HASHLIST_SORT_HASH_POST = 0x00000053 ,
EVENT_HASHLIST_SORT_HASH_PRE = 0x00000054 ,
EVENT_HASHLIST_SORT_SALT_POST = 0x00000055 ,
EVENT_HASHLIST_SORT_SALT_PRE = 0x00000056 ,
EVENT_HASHLIST_UNIQUE_HASH_POST = 0x00000057 ,
EVENT_HASHLIST_UNIQUE_HASH_PRE = 0x00000058 ,
EVENT_INNERLOOP1_FINISHED = 0x00000060 ,
EVENT_INNERLOOP1_STARTING = 0x00000061 ,
EVENT_INNERLOOP2_FINISHED = 0x00000070 ,
EVENT_INNERLOOP2_STARTING = 0x00000071 ,
EVENT_LOG_ERROR = 0x00000080 ,
EVENT_LOG_INFO = 0x00000081 ,
EVENT_LOG_WARNING = 0x00000082 ,
EVENT_LOG_ADVICE = 0x00000083 ,
EVENT_MONITOR_RUNTIME_LIMIT = 0x00000090 ,
EVENT_MONITOR_STATUS_REFRESH = 0x00000091 ,
EVENT_MONITOR_TEMP_ABORT = 0x00000092 ,
EVENT_MONITOR_THROTTLE1 = 0x00000093 ,
EVENT_MONITOR_THROTTLE2 = 0x00000094 ,
EVENT_MONITOR_THROTTLE3 = 0x00000095 ,
EVENT_MONITOR_PERFORMANCE_HINT = 0x00000096 ,
EVENT_MONITOR_NOINPUT_HINT = 0x00000097 ,
EVENT_MONITOR_NOINPUT_ABORT = 0x00000098 ,
EVENT_BACKEND_SESSION_POST = 0x000000a0 ,
EVENT_BACKEND_SESSION_PRE = 0x000000a1 ,
EVENT_BACKEND_SESSION_HOSTMEM = 0x000000a2 ,
EVENT_BACKEND_DEVICE_INIT_POST = 0x000000a3 ,
EVENT_BACKEND_DEVICE_INIT_PRE = 0x000000a4 ,
EVENT_OUTERLOOP_FINISHED = 0x000000b0 ,
EVENT_OUTERLOOP_MAINSCREEN = 0x000000b1 ,
EVENT_OUTERLOOP_STARTING = 0x000000b2 ,
EVENT_POTFILE_ALL_CRACKED = 0x000000c0 ,
EVENT_POTFILE_HASH_LEFT = 0x000000c1 ,
EVENT_POTFILE_HASH_SHOW = 0x000000c2 ,
EVENT_POTFILE_NUM_CRACKED = 0x000000c3 ,
EVENT_POTFILE_REMOVE_PARSE_POST = 0x000000c4 ,
EVENT_POTFILE_REMOVE_PARSE_PRE = 0x000000c5 ,
EVENT_SELFTEST_FINISHED = 0x000000d0 ,
EVENT_SELFTEST_STARTING = 0x000000d1 ,
EVENT_SET_KERNEL_POWER_FINAL = 0x000000e0 ,
EVENT_WORDLIST_CACHE_GENERATE = 0x000000f0 ,
EVENT_WORDLIST_CACHE_HIT = 0x000000f1 ,
2016-10-07 14:56:44 +00:00
// there will be much more event types soon
} event_identifier_t ;
2016-09-24 10:05:56 +00:00
typedef enum amplifier_count
{
2017-10-19 12:54:03 +00:00
KERNEL_BFS = 1024 ,
KERNEL_COMBS = 1024 ,
KERNEL_RULES = 256 ,
2016-09-24 10:05:56 +00:00
} amplifier_count_t ;
typedef enum vendor_id
{
2019-06-29 15:52:56 +00:00
VENDOR_ID_AMD = ( 1U < < 0 ) ,
VENDOR_ID_APPLE = ( 1U < < 1 ) ,
VENDOR_ID_INTEL_BEIGNET = ( 1U < < 2 ) ,
VENDOR_ID_INTEL_SDK = ( 1U < < 3 ) ,
VENDOR_ID_MESA = ( 1U < < 4 ) ,
VENDOR_ID_NV = ( 1U < < 5 ) ,
VENDOR_ID_POCL = ( 1U < < 6 ) ,
VENDOR_ID_AMD_USE_INTEL = ( 1U < < 7 ) ,
2021-07-11 10:38:59 +00:00
VENDOR_ID_AMD_USE_HIP = ( 1U < < 8 ) ,
2019-06-29 15:52:56 +00:00
VENDOR_ID_GENERIC = ( 1U < < 31 )
2016-09-24 10:05:56 +00:00
} vendor_id_t ;
2018-06-13 10:22:54 +00:00
typedef enum st_status_rc
{
ST_STATUS_PASSED = 0 ,
ST_STATUS_FAILED = 1 ,
ST_STATUS_IGNORED = 2 ,
} st_status_t ;
2016-09-24 10:05:56 +00:00
typedef enum status_rc
{
2017-01-06 07:45:40 +00:00
STATUS_INIT = 0 ,
STATUS_AUTOTUNE = 1 ,
2017-06-13 17:07:08 +00:00
STATUS_SELFTEST = 2 ,
STATUS_RUNNING = 3 ,
STATUS_PAUSED = 4 ,
STATUS_EXHAUSTED = 5 ,
STATUS_CRACKED = 6 ,
STATUS_ABORTED = 7 ,
STATUS_QUIT = 8 ,
STATUS_BYPASS = 9 ,
STATUS_ABORTED_CHECKPOINT = 10 ,
STATUS_ABORTED_RUNTIME = 11 ,
2018-07-10 11:17:07 +00:00
STATUS_ERROR = 13 ,
2021-05-05 20:53:04 +00:00
STATUS_ABORTED_FINISH = 14 ,
2021-06-05 20:11:18 +00:00
STATUS_AUTODETECT = 16 ,
2016-09-24 10:05:56 +00:00
} status_rc_t ;
2016-09-08 07:21:25 +00:00
typedef enum wl_mode
{
2016-10-02 21:30:31 +00:00
WL_MODE_NONE = 0 ,
2016-09-08 07:21:25 +00:00
WL_MODE_STDIN = 1 ,
WL_MODE_FILE = 2 ,
WL_MODE_MASK = 3
} wl_mode_t ;
typedef enum hl_mode
{
2019-02-25 10:20:22 +00:00
HL_MODE_ARG = 2 ,
HL_MODE_FILE_PLAIN = 5 ,
HL_MODE_FILE_BINARY = 6 ,
2016-09-08 07:21:25 +00:00
} hl_mode_t ;
typedef enum attack_mode
{
ATTACK_MODE_STRAIGHT = 0 ,
ATTACK_MODE_COMBI = 1 ,
ATTACK_MODE_TOGGLE = 2 ,
ATTACK_MODE_BF = 3 ,
ATTACK_MODE_PERM = 4 ,
ATTACK_MODE_TABLE = 5 ,
ATTACK_MODE_HYBRID1 = 6 ,
ATTACK_MODE_HYBRID2 = 7 ,
2020-09-29 13:56:32 +00:00
ATTACK_MODE_ASSOCIATION = 9 ,
2016-09-08 07:21:25 +00:00
ATTACK_MODE_NONE = 100
} attack_mode_t ;
typedef enum attack_kern
{
ATTACK_KERN_STRAIGHT = 0 ,
ATTACK_KERN_COMBI = 1 ,
ATTACK_KERN_BF = 3 ,
ATTACK_KERN_NONE = 100
} attack_kern_t ;
typedef enum kern_run
{
2018-02-13 08:13:35 +00:00
KERN_RUN_1 = 1000 ,
KERN_RUN_12 = 1500 ,
2021-04-21 13:59:14 +00:00
KERN_RUN_2P = 1999 ,
2018-02-13 08:13:35 +00:00
KERN_RUN_2 = 2000 ,
2020-02-20 15:00:21 +00:00
KERN_RUN_2E = 2001 ,
2018-02-13 08:13:35 +00:00
KERN_RUN_23 = 2500 ,
KERN_RUN_3 = 3000 ,
KERN_RUN_4 = 4000 ,
KERN_RUN_INIT2 = 5000 ,
2021-04-21 13:59:14 +00:00
KERN_RUN_LOOP2P = 5999 ,
2018-02-13 08:13:35 +00:00
KERN_RUN_LOOP2 = 6000 ,
KERN_RUN_AUX1 = 7001 ,
KERN_RUN_AUX2 = 7002 ,
KERN_RUN_AUX3 = 7003 ,
KERN_RUN_AUX4 = 7004 ,
2016-09-08 07:21:25 +00:00
} kern_run_t ;
typedef enum kern_run_mp
{
KERN_RUN_MP = 101 ,
KERN_RUN_MP_L = 102 ,
KERN_RUN_MP_R = 103
} kern_run_mp_t ;
2016-09-24 09:08:35 +00:00
typedef enum rule_functions
{
RULE_OP_MANGLE_NOOP = ' : ' ,
RULE_OP_MANGLE_LREST = ' l ' ,
RULE_OP_MANGLE_UREST = ' u ' ,
RULE_OP_MANGLE_LREST_UFIRST = ' c ' ,
RULE_OP_MANGLE_UREST_LFIRST = ' C ' ,
RULE_OP_MANGLE_TREST = ' t ' ,
RULE_OP_MANGLE_TOGGLE_AT = ' T ' ,
2021-07-31 22:04:10 +00:00
RULE_OP_MANGLE_TOGGLE_AT_SEP = ' 3 ' ,
2016-09-24 09:08:35 +00:00
RULE_OP_MANGLE_REVERSE = ' r ' ,
RULE_OP_MANGLE_DUPEWORD = ' d ' ,
RULE_OP_MANGLE_DUPEWORD_TIMES = ' p ' ,
RULE_OP_MANGLE_REFLECT = ' f ' ,
RULE_OP_MANGLE_ROTATE_LEFT = ' { ' ,
RULE_OP_MANGLE_ROTATE_RIGHT = ' } ' ,
RULE_OP_MANGLE_APPEND = ' $ ' ,
RULE_OP_MANGLE_PREPEND = ' ^ ' ,
RULE_OP_MANGLE_DELETE_FIRST = ' [ ' ,
RULE_OP_MANGLE_DELETE_LAST = ' ] ' ,
RULE_OP_MANGLE_DELETE_AT = ' D ' ,
RULE_OP_MANGLE_EXTRACT = ' x ' ,
RULE_OP_MANGLE_OMIT = ' O ' ,
RULE_OP_MANGLE_INSERT = ' i ' ,
RULE_OP_MANGLE_OVERSTRIKE = ' o ' ,
RULE_OP_MANGLE_TRUNCATE_AT = ' \' ' ,
RULE_OP_MANGLE_REPLACE = ' s ' ,
RULE_OP_MANGLE_PURGECHAR = ' @ ' ,
RULE_OP_MANGLE_TOGGLECASE_REC = ' a ' ,
RULE_OP_MANGLE_DUPECHAR_FIRST = ' z ' ,
RULE_OP_MANGLE_DUPECHAR_LAST = ' Z ' ,
RULE_OP_MANGLE_DUPECHAR_ALL = ' q ' ,
RULE_OP_MANGLE_EXTRACT_MEMORY = ' X ' ,
RULE_OP_MANGLE_APPEND_MEMORY = ' 4 ' ,
RULE_OP_MANGLE_PREPEND_MEMORY = ' 6 ' ,
2017-04-30 13:23:39 +00:00
RULE_OP_MANGLE_TITLE_SEP = ' e ' ,
2016-09-24 09:08:35 +00:00
RULE_OP_MEMORIZE_WORD = ' M ' ,
RULE_OP_REJECT_LESS = ' < ' ,
RULE_OP_REJECT_GREATER = ' > ' ,
2017-05-19 12:13:07 +00:00
RULE_OP_REJECT_EQUAL = ' _ ' ,
2016-09-24 09:08:35 +00:00
RULE_OP_REJECT_CONTAIN = ' ! ' ,
RULE_OP_REJECT_NOT_CONTAIN = ' / ' ,
RULE_OP_REJECT_EQUAL_FIRST = ' ( ' ,
RULE_OP_REJECT_EQUAL_LAST = ' ) ' ,
RULE_OP_REJECT_EQUAL_AT = ' = ' ,
RULE_OP_REJECT_CONTAINS = ' % ' ,
RULE_OP_REJECT_MEMORY = ' Q ' ,
2017-05-14 15:50:45 +00:00
RULE_LAST_REJECTED_SAVED_POS = ' p ' ,
2016-09-24 09:08:35 +00:00
RULE_OP_MANGLE_SWITCH_FIRST = ' k ' ,
RULE_OP_MANGLE_SWITCH_LAST = ' K ' ,
RULE_OP_MANGLE_SWITCH_AT = ' * ' ,
RULE_OP_MANGLE_CHR_SHIFTL = ' L ' ,
RULE_OP_MANGLE_CHR_SHIFTR = ' R ' ,
RULE_OP_MANGLE_CHR_INCR = ' + ' ,
RULE_OP_MANGLE_CHR_DECR = ' - ' ,
RULE_OP_MANGLE_REPLACE_NP1 = ' . ' ,
RULE_OP_MANGLE_REPLACE_NM1 = ' , ' ,
RULE_OP_MANGLE_DUPEBLOCK_FIRST = ' y ' ,
RULE_OP_MANGLE_DUPEBLOCK_LAST = ' Y ' ,
RULE_OP_MANGLE_TITLE = ' E ' ,
} rule_functions_t ;
2015-12-04 14:47:52 +00:00
2016-09-24 10:05:56 +00:00
typedef enum salt_type
{
SALT_TYPE_NONE = 1 ,
SALT_TYPE_EMBEDDED = 2 ,
2017-07-14 12:57:31 +00:00
SALT_TYPE_GENERIC = 3 ,
2016-09-24 10:05:56 +00:00
SALT_TYPE_VIRTUAL = 5
} salt_type_t ;
typedef enum opti_type
{
2020-08-14 13:52:36 +00:00
OPTI_TYPE_OPTIMIZED_KERNEL = ( 1 < < 0 ) ,
OPTI_TYPE_ZERO_BYTE = ( 1 < < 1 ) ,
OPTI_TYPE_PRECOMPUTE_INIT = ( 1 < < 2 ) ,
OPTI_TYPE_MEET_IN_MIDDLE = ( 1 < < 3 ) ,
OPTI_TYPE_EARLY_SKIP = ( 1 < < 4 ) ,
OPTI_TYPE_NOT_SALTED = ( 1 < < 5 ) ,
OPTI_TYPE_NOT_ITERATED = ( 1 < < 6 ) ,
OPTI_TYPE_PREPENDED_SALT = ( 1 < < 7 ) ,
OPTI_TYPE_APPENDED_SALT = ( 1 < < 8 ) ,
OPTI_TYPE_SINGLE_HASH = ( 1 < < 9 ) ,
OPTI_TYPE_SINGLE_SALT = ( 1 < < 10 ) ,
OPTI_TYPE_BRUTE_FORCE = ( 1 < < 11 ) ,
OPTI_TYPE_RAW_HASH = ( 1 < < 12 ) ,
OPTI_TYPE_SLOW_HASH_SIMD_INIT = ( 1 < < 13 ) ,
OPTI_TYPE_SLOW_HASH_SIMD_LOOP = ( 1 < < 14 ) ,
OPTI_TYPE_SLOW_HASH_SIMD_COMP = ( 1 < < 15 ) ,
OPTI_TYPE_USES_BITS_8 = ( 1 < < 16 ) ,
OPTI_TYPE_USES_BITS_16 = ( 1 < < 17 ) ,
OPTI_TYPE_USES_BITS_32 = ( 1 < < 18 ) ,
OPTI_TYPE_USES_BITS_64 = ( 1 < < 19 ) ,
OPTI_TYPE_REGISTER_LIMIT = ( 1 < < 20 ) , // We'll limit the register count to 128
OPTI_TYPE_SLOW_HASH_SIMD_INIT2 = ( 1 < < 21 ) ,
OPTI_TYPE_SLOW_HASH_SIMD_LOOP2 = ( 1 < < 22 ) ,
2016-09-24 10:05:56 +00:00
} opti_type_t ;
typedef enum opts_type
{
2017-06-05 10:15:28 +00:00
OPTS_TYPE_PT_UTF16LE = ( 1ULL < < 0 ) ,
OPTS_TYPE_PT_UTF16BE = ( 1ULL < < 1 ) ,
2017-06-04 20:46:05 +00:00
OPTS_TYPE_PT_UPPER = ( 1ULL < < 2 ) ,
OPTS_TYPE_PT_LOWER = ( 1ULL < < 3 ) ,
OPTS_TYPE_PT_ADD01 = ( 1ULL < < 4 ) ,
OPTS_TYPE_PT_ADD02 = ( 1ULL < < 5 ) ,
OPTS_TYPE_PT_ADD80 = ( 1ULL < < 6 ) ,
OPTS_TYPE_PT_ADDBITS14 = ( 1ULL < < 7 ) ,
OPTS_TYPE_PT_ADDBITS15 = ( 1ULL < < 8 ) ,
OPTS_TYPE_PT_GENERATE_LE = ( 1ULL < < 9 ) ,
OPTS_TYPE_PT_GENERATE_BE = ( 1ULL < < 10 ) ,
OPTS_TYPE_PT_NEVERCRACK = ( 1ULL < < 11 ) , // if we want all possible results
2020-02-22 06:59:58 +00:00
OPTS_TYPE_PT_ALWAYS_ASCII = ( 1ULL < < 12 ) ,
OPTS_TYPE_PT_ALWAYS_HEXIFY = ( 1ULL < < 13 ) ,
OPTS_TYPE_PT_LM = ( 1ULL < < 14 ) , // special handling: all lower, 7 max, ...
OPTS_TYPE_PT_HEX = ( 1ULL < < 15 ) , // input wordlist (and masks!) are always in hex
OPTS_TYPE_ST_UTF16LE = ( 1ULL < < 16 ) ,
OPTS_TYPE_ST_UTF16BE = ( 1ULL < < 17 ) ,
OPTS_TYPE_ST_UPPER = ( 1ULL < < 18 ) ,
OPTS_TYPE_ST_LOWER = ( 1ULL < < 19 ) ,
OPTS_TYPE_ST_ADD01 = ( 1ULL < < 20 ) ,
OPTS_TYPE_ST_ADD02 = ( 1ULL < < 21 ) ,
OPTS_TYPE_ST_ADD80 = ( 1ULL < < 22 ) ,
OPTS_TYPE_ST_ADDBITS14 = ( 1ULL < < 23 ) ,
OPTS_TYPE_ST_ADDBITS15 = ( 1ULL < < 24 ) ,
OPTS_TYPE_ST_HEX = ( 1ULL < < 25 ) ,
OPTS_TYPE_ST_BASE64 = ( 1ULL < < 26 ) ,
OPTS_TYPE_HASH_COPY = ( 1ULL < < 28 ) ,
OPTS_TYPE_HASH_SPLIT = ( 1ULL < < 29 ) ,
2021-04-21 13:59:14 +00:00
OPTS_TYPE_LOOP_PREPARE = ( 1ULL < < 30 ) , // a kernel which is called each time before _loop kernel started.
// like a hook12 kernel but without extra buffers.
OPTS_TYPE_LOOP_EXTENDED = ( 1ULL < < 31 ) , // a kernel which is called each time normal _loop kernel finished.
2020-02-20 15:00:21 +00:00
// but unlike a hook kernel this kernel is called for every _loop iteration offset
2021-04-21 13:59:14 +00:00
OPTS_TYPE_HOOK12 = ( 1ULL < < 32 ) ,
OPTS_TYPE_HOOK23 = ( 1ULL < < 33 ) ,
OPTS_TYPE_INIT2 = ( 1ULL < < 34 ) ,
OPTS_TYPE_LOOP2_PREPARE = ( 1ULL < < 35 ) , // same as OPTS_TYPE_LOOP_PREPARE but for loop2 kernel
OPTS_TYPE_LOOP2 = ( 1ULL < < 36 ) ,
OPTS_TYPE_AUX1 = ( 1ULL < < 37 ) ,
OPTS_TYPE_AUX2 = ( 1ULL < < 38 ) ,
OPTS_TYPE_AUX3 = ( 1ULL < < 39 ) ,
OPTS_TYPE_AUX4 = ( 1ULL < < 40 ) ,
OPTS_TYPE_BINARY_HASHFILE = ( 1ULL < < 41 ) ,
2021-04-04 09:38:02 +00:00
OPTS_TYPE_BINARY_HASHFILE_OPTIONAL
2021-04-21 13:59:14 +00:00
= ( 1ULL < < 42 ) , // this allows us to not enforce the use of a binary file. requires OPTS_TYPE_BINARY_HASHFILE set to be effective.
OPTS_TYPE_PT_ADD06 = ( 1ULL < < 43 ) ,
OPTS_TYPE_KEYBOARD_MAPPING = ( 1ULL < < 44 ) ,
OPTS_TYPE_DEEP_COMP_KERNEL = ( 1ULL < < 45 ) , // if we have to iterate through each hash inside the comp kernel, for example if each hash has to be decrypted separately
OPTS_TYPE_TM_KERNEL = ( 1ULL < < 46 ) ,
OPTS_TYPE_SUGGEST_KG = ( 1ULL < < 47 ) , // suggest keep guessing for modules the user maybe wants to use --keep-guessing
OPTS_TYPE_COPY_TMPS = ( 1ULL < < 48 ) , // if we want to use data from tmps buffer (for example get the PMK in WPA)
OPTS_TYPE_POTFILE_NOPASS = ( 1ULL < < 49 ) , // sometimes the password should not be printed to potfile
OPTS_TYPE_DYNAMIC_SHARED = ( 1ULL < < 50 ) , // use dynamic shared memory (note: needs special kernel changes)
OPTS_TYPE_SELF_TEST_DISABLE = ( 1ULL < < 51 ) , // some algos use JiT in combinations with a salt or create too much startup time
OPTS_TYPE_MP_MULTI_DISABLE = ( 1ULL < < 52 ) , // do not multiply the kernel-accel with the multiprocessor count per device to allow more fine-tuned workload settings
OPTS_TYPE_NATIVE_THREADS = ( 1ULL < < 53 ) , // forces "native" thread count: CPU=1, GPU-Intel=8, GPU-AMD=64 (wavefront), GPU-NV=32 (warps)
2021-05-20 12:34:24 +00:00
OPTS_TYPE_POST_AMP_UTF16LE = ( 1ULL < < 54 ) , // run the utf8 to utf16le conversion kernel after they have been processed from amplifiers
2021-06-05 20:11:18 +00:00
OPTS_TYPE_AUTODETECT_DISABLE = ( 1ULL < < 55 ) , // skip autodetect engine
2016-09-24 10:05:56 +00:00
} opts_type_t ;
typedef enum dgst_size
{
2016-09-29 12:56:02 +00:00
DGST_SIZE_4_2 = ( 2 * sizeof ( u32 ) ) , // 8
2019-11-26 16:16:18 +00:00
DGST_SIZE_4_4 = ( 4 * sizeof ( u32 ) ) , // 16 !!!
2016-09-29 12:56:02 +00:00
DGST_SIZE_4_5 = ( 5 * sizeof ( u32 ) ) , // 20
DGST_SIZE_4_6 = ( 6 * sizeof ( u32 ) ) , // 24
2016-12-16 01:05:12 +00:00
DGST_SIZE_4_7 = ( 7 * sizeof ( u32 ) ) , // 28
2016-09-29 12:56:02 +00:00
DGST_SIZE_4_8 = ( 8 * sizeof ( u32 ) ) , // 32
DGST_SIZE_4_16 = ( 16 * sizeof ( u32 ) ) , // 64 !!!
DGST_SIZE_4_32 = ( 32 * sizeof ( u32 ) ) , // 128 !!!
DGST_SIZE_4_64 = ( 64 * sizeof ( u32 ) ) , // 256
2019-11-26 16:16:18 +00:00
DGST_SIZE_8_2 = ( 2 * sizeof ( u64 ) ) , // 16 !!!
2021-07-27 03:17:26 +00:00
DGST_SIZE_8_4 = ( 4 * sizeof ( u64 ) ) , // 32 !!!
2021-07-27 03:14:09 +00:00
DGST_SIZE_8_6 = ( 6 * sizeof ( u64 ) ) , // 48 !!!
2016-09-29 12:56:02 +00:00
DGST_SIZE_8_8 = ( 8 * sizeof ( u64 ) ) , // 64 !!!
DGST_SIZE_8_16 = ( 16 * sizeof ( u64 ) ) , // 128 !!!
DGST_SIZE_8_25 = ( 25 * sizeof ( u64 ) ) // 200
2016-09-24 10:05:56 +00:00
} dgst_size_t ;
typedef enum attack_exec
{
ATTACK_EXEC_OUTSIDE_KERNEL = 10 ,
ATTACK_EXEC_INSIDE_KERNEL = 11
} attack_exec_t ;
2016-09-30 07:34:06 +00:00
typedef enum hlfmt_name
{
HLFMT_HASHCAT = 0 ,
HLFMT_PWDUMP = 1 ,
HLFMT_PASSWD = 2 ,
HLFMT_SHADOW = 3 ,
HLFMT_DCC = 4 ,
HLFMT_DCC2 = 5 ,
HLFMT_NETNTLM1 = 7 ,
HLFMT_NETNTLM2 = 8 ,
HLFMT_NSLDAP = 9 ,
HLFMT_NSLDAPS = 10
} hlfmt_name_t ;
2018-12-19 10:15:18 +00:00
typedef enum pwdump_column
2018-12-18 15:59:00 +00:00
{
2018-12-19 10:15:18 +00:00
PWDUMP_COLUMN_INVALID = - 1 ,
PWDUMP_COLUMN_USERNAME = 0 ,
PWDUMP_COLUMN_UID = 1 ,
PWDUMP_COLUMN_LM_HASH = 2 ,
PWDUMP_COLUMN_NTLM_HASH = 3 ,
PWDUMP_COLUMN_COMMENT = 4 ,
PWDUMP_COLUMN_HOMEDIR = 5 ,
2018-12-18 15:59:00 +00:00
2018-12-19 10:15:18 +00:00
} pwdump_column_t ;
2018-12-18 15:59:00 +00:00
2016-09-30 07:34:06 +00:00
typedef enum outfile_fmt
{
2016-10-26 22:32:38 +00:00
OUTFILE_FMT_HASH = ( 1 < < 0 ) ,
OUTFILE_FMT_PLAIN = ( 1 < < 1 ) ,
OUTFILE_FMT_HEXPLAIN = ( 1 < < 2 ) ,
2020-01-23 08:03:22 +00:00
OUTFILE_FMT_CRACKPOS = ( 1 < < 3 ) ,
OUTFILE_FMT_TIME_ABS = ( 1 < < 4 ) ,
OUTFILE_FMT_TIME_REL = ( 1 < < 5 )
2016-09-30 07:34:06 +00:00
} outfile_fmt_t ;
typedef enum parser_rc
{
2018-07-31 14:18:45 +00:00
PARSER_OK = 0 ,
PARSER_COMMENT = - 1 ,
PARSER_GLOBAL_ZERO = - 2 ,
PARSER_GLOBAL_LENGTH = - 3 ,
PARSER_HASH_LENGTH = - 4 ,
PARSER_HASH_VALUE = - 5 ,
PARSER_SALT_LENGTH = - 6 ,
PARSER_SALT_VALUE = - 7 ,
PARSER_SALT_ITERATION = - 8 ,
PARSER_SEPARATOR_UNMATCHED = - 9 ,
PARSER_SIGNATURE_UNMATCHED = - 10 ,
PARSER_HCCAPX_FILE_SIZE = - 11 ,
PARSER_HCCAPX_EAPOL_LEN = - 12 ,
PARSER_PSAFE2_FILE_SIZE = - 13 ,
PARSER_PSAFE3_FILE_SIZE = - 14 ,
PARSER_TC_FILE_SIZE = - 15 ,
PARSER_VC_FILE_SIZE = - 16 ,
PARSER_SIP_AUTH_DIRECTIVE = - 17 ,
PARSER_HASH_FILE = - 18 ,
PARSER_HASH_ENCODING = - 19 ,
PARSER_SALT_ENCODING = - 20 ,
PARSER_LUKS_FILE_SIZE = - 21 ,
PARSER_LUKS_MAGIC = - 22 ,
PARSER_LUKS_VERSION = - 23 ,
PARSER_LUKS_CIPHER_TYPE = - 24 ,
PARSER_LUKS_CIPHER_MODE = - 25 ,
PARSER_LUKS_HASH_TYPE = - 26 ,
PARSER_LUKS_KEY_SIZE = - 27 ,
PARSER_LUKS_KEY_DISABLED = - 28 ,
PARSER_LUKS_KEY_STRIPES = - 29 ,
PARSER_LUKS_HASH_CIPHER = - 30 ,
PARSER_HCCAPX_SIGNATURE = - 31 ,
PARSER_HCCAPX_VERSION = - 32 ,
PARSER_HCCAPX_MESSAGE_PAIR = - 33 ,
PARSER_TOKEN_ENCODING = - 34 ,
PARSER_TOKEN_LENGTH = - 35 ,
PARSER_INSUFFICIENT_ENTROPY = - 36 ,
2019-05-17 13:42:13 +00:00
PARSER_PKZIP_CT_UNMATCHED = - 37 ,
2020-04-23 02:36:15 +00:00
PARSER_KEY_SIZE = - 38 ,
PARSER_BLOCK_SIZE = - 39 ,
PARSER_CIPHER = - 40 ,
PARSER_FILE_SIZE = - 41 ,
2020-12-25 03:50:18 +00:00
PARSER_IV_LENGTH = - 42 ,
PARSER_CT_LENGTH = - 43 ,
2021-05-06 21:24:46 +00:00
PARSER_CRYPTOAPI_KERNELTYPE = - 44 ,
PARSER_CRYPTOAPI_KEYSIZE = - 45 ,
2020-05-27 13:23:02 +00:00
PARSER_HAVE_ERRNO = - 100 ,
2018-07-31 14:18:45 +00:00
PARSER_UNKNOWN_ERROR = - 255
2016-09-30 07:34:06 +00:00
} parser_rc_t ;
2017-03-24 22:39:09 +00:00
typedef enum guess_mode
{
GUESS_MODE_NONE = 0 ,
GUESS_MODE_STRAIGHT_FILE = 1 ,
GUESS_MODE_STRAIGHT_FILE_RULES_FILE = 2 ,
GUESS_MODE_STRAIGHT_FILE_RULES_GEN = 3 ,
GUESS_MODE_STRAIGHT_STDIN = 4 ,
GUESS_MODE_STRAIGHT_STDIN_RULES_FILE = 5 ,
GUESS_MODE_STRAIGHT_STDIN_RULES_GEN = 6 ,
GUESS_MODE_COMBINATOR_BASE_LEFT = 7 ,
GUESS_MODE_COMBINATOR_BASE_RIGHT = 8 ,
GUESS_MODE_MASK = 9 ,
GUESS_MODE_MASK_CS = 10 ,
GUESS_MODE_HYBRID1 = 11 ,
GUESS_MODE_HYBRID1_CS = 12 ,
GUESS_MODE_HYBRID2 = 13 ,
GUESS_MODE_HYBRID2_CS = 14 ,
} guess_mode_t ;
2016-10-23 11:38:41 +00:00
typedef enum progress_mode
{
PROGRESS_MODE_NONE = 0 ,
PROGRESS_MODE_KEYSPACE_KNOWN = 1 ,
PROGRESS_MODE_KEYSPACE_UNKNOWN = 2 ,
} progress_mode_t ;
2016-10-31 09:09:04 +00:00
typedef enum user_options_defaults
{
2017-08-16 10:07:14 +00:00
ADVICE_DISABLE = false ,
ATTACK_MODE = ATTACK_MODE_STRAIGHT ,
2021-06-05 20:11:18 +00:00
AUTODETECT = false ,
2017-12-05 10:08:59 +00:00
BENCHMARK_ALL = false ,
2018-09-01 10:31:17 +00:00
BENCHMARK = false ,
2018-11-04 09:07:45 +00:00
BITMAP_MAX = 18 ,
2017-08-16 10:07:14 +00:00
BITMAP_MIN = 16 ,
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
BRAIN_CLIENT = false ,
2018-11-11 09:13:38 +00:00
BRAIN_CLIENT_FEATURES = 2 ,
2018-10-28 15:47:13 +00:00
BRAIN_PORT = 6863 ,
BRAIN_SERVER = false ,
BRAIN_SESSION = 0 ,
# endif
2017-08-16 10:07:14 +00:00
DEBUG_MODE = 0 ,
2021-08-10 15:59:52 +00:00
DEPRECATED_CHECK_DISABLE = false ,
2017-08-16 10:07:14 +00:00
FORCE = false ,
2018-11-09 11:48:27 +00:00
HWMON_DISABLE = false ,
2021-06-12 18:13:31 +00:00
# if defined (__APPLE__)
HWMON_TEMP_ABORT = 100 ,
# else
2018-11-09 11:48:27 +00:00
HWMON_TEMP_ABORT = 90 ,
2021-06-12 18:13:31 +00:00
# endif
2020-12-29 03:58:58 +00:00
HASH_INFO = false ,
2017-08-16 10:07:14 +00:00
HASH_MODE = 0 ,
HCCAPX_MESSAGE_PAIR = 0 ,
HEX_CHARSET = false ,
HEX_SALT = false ,
HEX_WORDLIST = false ,
2019-11-02 09:29:34 +00:00
HOOK_THREADS = 0 ,
2021-06-11 17:25:39 +00:00
IDENTIFY = false ,
2017-08-16 10:07:14 +00:00
INCREMENT = false ,
INCREMENT_MAX = PW_MAX ,
INCREMENT_MIN = 1 ,
KEEP_GUESSING = false ,
KERNEL_ACCEL = 0 ,
KERNEL_LOOPS = 0 ,
2018-11-06 15:06:06 +00:00
KERNEL_THREADS = 0 ,
2017-08-16 10:07:14 +00:00
KEYSPACE = false ,
LEFT = false ,
LIMIT = 0 ,
LOGFILE_DISABLE = false ,
LOOPBACK = false ,
MACHINE_READABLE = false ,
MARKOV_CLASSIC = false ,
MARKOV_DISABLE = false ,
2021-07-07 08:32:08 +00:00
MARKOV_INVERSE = false ,
2017-08-16 10:07:14 +00:00
MARKOV_THRESHOLD = 0 ,
NONCE_ERROR_CORRECTIONS = 8 ,
2020-01-03 10:51:24 +00:00
BACKEND_IGNORE_CUDA = false ,
2021-07-09 03:50:40 +00:00
BACKEND_IGNORE_HIP = false ,
2020-01-03 10:51:24 +00:00
BACKEND_IGNORE_OPENCL = false ,
2019-05-01 13:52:56 +00:00
BACKEND_INFO = false ,
BACKEND_VECTOR_WIDTH = 0 ,
2017-08-16 10:07:14 +00:00
OPTIMIZED_KERNEL_ENABLE = false ,
2021-07-21 13:47:05 +00:00
MULTIPLY_ACCEL_DISABLE = false ,
2017-08-16 10:07:14 +00:00
OUTFILE_AUTOHEX = true ,
OUTFILE_CHECK_TIMER = 5 ,
OUTFILE_FORMAT = 3 ,
POTFILE_DISABLE = false ,
2018-09-01 10:31:17 +00:00
PROGRESS_ONLY = false ,
2017-08-16 10:07:14 +00:00
QUIET = false ,
REMOVE = false ,
REMOVE_TIMER = 60 ,
RESTORE_DISABLE = false ,
2018-09-01 10:31:17 +00:00
RESTORE = false ,
2017-08-16 10:07:14 +00:00
RESTORE_TIMER = 60 ,
RP_GEN = 0 ,
RP_GEN_FUNC_MAX = 4 ,
RP_GEN_FUNC_MIN = 1 ,
RP_GEN_SEED = 0 ,
RUNTIME = 0 ,
SCRYPT_TMTO = 0 ,
SEGMENT_SIZE = 33554432 ,
2018-09-01 10:31:17 +00:00
SELF_TEST_DISABLE = false ,
2017-08-16 10:07:14 +00:00
SHOW = false ,
SKIP = 0 ,
2018-09-01 10:31:17 +00:00
SLOW_CANDIDATES = false ,
SPEED_ONLY = false ,
2020-03-12 09:51:10 +00:00
SPIN_DAMP = 0 ,
2017-08-16 10:07:14 +00:00
STATUS = false ,
2019-03-27 10:09:24 +00:00
STATUS_JSON = false ,
2017-08-16 10:07:14 +00:00
STATUS_TIMER = 10 ,
2018-10-31 10:37:06 +00:00
STDIN_TIMEOUT_ABORT = 120 ,
2017-08-16 10:07:14 +00:00
STDOUT_FLAG = false ,
USAGE = false ,
USERNAME = false ,
VERSION = false ,
2020-02-08 11:24:47 +00:00
VERACRYPT_PIM_START = 485 ,
VERACRYPT_PIM_STOP = 485 ,
2018-09-01 10:31:17 +00:00
WORDLIST_AUTOHEX_DISABLE = false ,
2017-08-16 10:07:14 +00:00
WORKLOAD_PROFILE = 2 ,
2016-10-31 09:09:04 +00:00
} user_options_defaults_t ;
typedef enum user_options_map
{
2018-06-25 09:36:09 +00:00
IDX_ADVICE_DISABLE = 0xff00 ,
IDX_ATTACK_MODE = ' a ' ,
2019-05-01 13:52:56 +00:00
IDX_BACKEND_DEVICES = ' d ' ,
2020-01-03 10:51:24 +00:00
IDX_BACKEND_IGNORE_CUDA = 0xff01 ,
2021-07-11 10:38:59 +00:00
IDX_BACKEND_IGNORE_HIP = 0xff02 ,
IDX_BACKEND_IGNORE_OPENCL = 0xff03 ,
2019-05-01 13:52:56 +00:00
IDX_BACKEND_INFO = ' I ' ,
2021-07-11 10:38:59 +00:00
IDX_BACKEND_VECTOR_WIDTH = 0xff04 ,
IDX_BENCHMARK_ALL = 0xff05 ,
2018-09-01 10:31:17 +00:00
IDX_BENCHMARK = ' b ' ,
2021-07-11 10:38:59 +00:00
IDX_BITMAP_MAX = 0xff06 ,
IDX_BITMAP_MIN = 0xff07 ,
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
IDX_BRAIN_CLIENT = ' z ' ,
2021-07-11 10:38:59 +00:00
IDX_BRAIN_CLIENT_FEATURES = 0xff08 ,
IDX_BRAIN_HOST = 0xff09 ,
IDX_BRAIN_PASSWORD = 0xff0a ,
IDX_BRAIN_PORT = 0xff0b ,
IDX_BRAIN_SERVER = 0xff0c ,
IDX_BRAIN_SERVER_TIMER = 0xff0d ,
IDX_BRAIN_SESSION = 0xff0e ,
IDX_BRAIN_SESSION_WHITELIST = 0xff0f ,
2018-10-28 15:47:13 +00:00
# endif
2021-07-11 10:38:59 +00:00
IDX_CPU_AFFINITY = 0xff10 ,
2018-06-25 09:36:09 +00:00
IDX_CUSTOM_CHARSET_1 = ' 1 ' ,
IDX_CUSTOM_CHARSET_2 = ' 2 ' ,
IDX_CUSTOM_CHARSET_3 = ' 3 ' ,
IDX_CUSTOM_CHARSET_4 = ' 4 ' ,
2021-07-11 10:38:59 +00:00
IDX_DEBUG_FILE = 0xff11 ,
IDX_DEBUG_MODE = 0xff12 ,
2021-08-10 15:59:52 +00:00
IDX_DEPRECATED_CHECK_DISABLE = 0xff13 ,
IDX_ENCODING_FROM = 0xff14 ,
IDX_ENCODING_TO = 0xff15 ,
IDX_HASH_INFO = 0xff16 ,
IDX_FORCE = 0xff17 ,
IDX_HWMON_DISABLE = 0xff18 ,
IDX_HWMON_TEMP_ABORT = 0xff19 ,
2018-06-25 09:36:09 +00:00
IDX_HASH_MODE = ' m ' ,
2021-08-10 15:59:52 +00:00
IDX_HCCAPX_MESSAGE_PAIR = 0xff1a ,
2018-06-25 09:36:09 +00:00
IDX_HELP = ' h ' ,
2021-08-10 15:59:52 +00:00
IDX_HEX_CHARSET = 0xff1b ,
IDX_HEX_SALT = 0xff1c ,
IDX_HEX_WORDLIST = 0xff1d ,
IDX_HOOK_THREADS = 0xff1e ,
IDX_IDENTIFY = 0xff1f ,
2018-06-25 09:36:09 +00:00
IDX_INCREMENT = ' i ' ,
2021-08-10 15:59:52 +00:00
IDX_INCREMENT_MAX = 0xff20 ,
IDX_INCREMENT_MIN = 0xff21 ,
IDX_INDUCTION_DIR = 0xff22 ,
IDX_KEEP_GUESSING = 0xff23 ,
2018-06-25 09:36:09 +00:00
IDX_KERNEL_ACCEL = ' n ' ,
IDX_KERNEL_LOOPS = ' u ' ,
2018-11-06 15:06:06 +00:00
IDX_KERNEL_THREADS = ' T ' ,
2021-08-10 15:59:52 +00:00
IDX_KEYBOARD_LAYOUT_MAPPING = 0xff24 ,
IDX_KEYSPACE = 0xff25 ,
IDX_LEFT = 0xff26 ,
2018-06-25 09:36:09 +00:00
IDX_LIMIT = ' l ' ,
2021-08-10 15:59:52 +00:00
IDX_LOGFILE_DISABLE = 0xff27 ,
IDX_LOOPBACK = 0xff28 ,
IDX_MACHINE_READABLE = 0xff29 ,
IDX_MARKOV_CLASSIC = 0xff2a ,
IDX_MARKOV_DISABLE = 0xff2b ,
IDX_MARKOV_HCSTAT2 = 0xff2c ,
IDX_MARKOV_INVERSE = 0xff2d ,
2018-06-25 09:36:09 +00:00
IDX_MARKOV_THRESHOLD = ' t ' ,
2021-08-10 15:59:52 +00:00
IDX_NONCE_ERROR_CORRECTIONS = 0xff2e ,
2018-06-25 09:36:09 +00:00
IDX_OPENCL_DEVICE_TYPES = ' D ' ,
IDX_OPTIMIZED_KERNEL_ENABLE = ' O ' ,
2021-07-21 13:47:05 +00:00
IDX_MULTIPLY_ACCEL_DISABLE = ' M ' ,
2021-08-10 15:59:52 +00:00
IDX_OUTFILE_AUTOHEX_DISABLE = 0xff2f ,
IDX_OUTFILE_CHECK_DIR = 0xff30 ,
IDX_OUTFILE_CHECK_TIMER = 0xff31 ,
IDX_OUTFILE_FORMAT = 0xff32 ,
2018-06-25 09:36:09 +00:00
IDX_OUTFILE = ' o ' ,
2021-08-10 15:59:52 +00:00
IDX_POTFILE_DISABLE = 0xff33 ,
IDX_POTFILE_PATH = 0xff34 ,
IDX_PROGRESS_ONLY = 0xff35 ,
IDX_QUIET = 0xff36 ,
IDX_REMOVE = 0xff37 ,
IDX_REMOVE_TIMER = 0xff38 ,
IDX_RESTORE = 0xff39 ,
IDX_RESTORE_DISABLE = 0xff3a ,
IDX_RESTORE_FILE_PATH = 0xff3b ,
2018-06-25 09:36:09 +00:00
IDX_RP_FILE = ' r ' ,
2021-08-10 15:59:52 +00:00
IDX_RP_GEN_FUNC_MAX = 0xff3c ,
IDX_RP_GEN_FUNC_MIN = 0xff3d ,
2021-08-14 09:43:32 +00:00
IDX_RP_GEN_FUNC_SEL = 0xff3e ,
2018-06-25 09:36:09 +00:00
IDX_RP_GEN = ' g ' ,
2021-08-14 09:43:32 +00:00
IDX_RP_GEN_SEED = 0xff3f ,
2018-06-25 09:36:09 +00:00
IDX_RULE_BUF_L = ' j ' ,
IDX_RULE_BUF_R = ' k ' ,
2021-08-14 09:43:32 +00:00
IDX_RUNTIME = 0xff40 ,
IDX_SCRYPT_TMTO = 0xff41 ,
2018-06-25 09:36:09 +00:00
IDX_SEGMENT_SIZE = ' c ' ,
2021-08-14 09:43:32 +00:00
IDX_SELF_TEST_DISABLE = 0xff42 ,
2018-06-25 09:36:09 +00:00
IDX_SEPARATOR = ' p ' ,
2021-08-14 09:43:32 +00:00
IDX_SESSION = 0xff43 ,
IDX_SHOW = 0xff44 ,
2018-06-25 09:36:09 +00:00
IDX_SKIP = ' s ' ,
2018-09-01 10:31:17 +00:00
IDX_SLOW_CANDIDATES = ' S ' ,
2021-08-14 09:43:32 +00:00
IDX_SPEED_ONLY = 0xff45 ,
IDX_SPIN_DAMP = 0xff46 ,
IDX_STATUS = 0xff47 ,
IDX_STATUS_JSON = 0xff48 ,
IDX_STATUS_TIMER = 0xff49 ,
IDX_STDOUT_FLAG = 0xff4a ,
IDX_STDIN_TIMEOUT_ABORT = 0xff4b ,
IDX_TRUECRYPT_KEYFILES = 0xff4c ,
IDX_USERNAME = 0xff4d ,
IDX_VERACRYPT_KEYFILES = 0xff4e ,
IDX_VERACRYPT_PIM_START = 0xff4f ,
IDX_VERACRYPT_PIM_STOP = 0xff50 ,
2018-06-25 09:36:09 +00:00
IDX_VERSION_LOWER = ' v ' ,
IDX_VERSION = ' V ' ,
2021-08-14 09:43:32 +00:00
IDX_WORDLIST_AUTOHEX_DISABLE = 0xff51 ,
2018-08-18 00:17:42 +00:00
IDX_WORKLOAD_PROFILE = ' w ' ,
2016-10-31 09:09:04 +00:00
} user_options_map_t ;
2018-06-23 14:00:49 +00:00
typedef enum token_attr
{
2020-02-19 09:35:44 +00:00
TOKEN_ATTR_FIXED_LENGTH = 1 < < 0 ,
TOKEN_ATTR_SEPARATOR_FARTHEST = 1 < < 1 ,
TOKEN_ATTR_OPTIONAL_ROUNDS = 1 < < 2 ,
TOKEN_ATTR_VERIFY_SIGNATURE = 1 < < 3 ,
TOKEN_ATTR_VERIFY_LENGTH = 1 < < 4 ,
TOKEN_ATTR_VERIFY_DIGIT = 1 < < 5 ,
TOKEN_ATTR_VERIFY_FLOAT = 1 < < 6 ,
TOKEN_ATTR_VERIFY_HEX = 1 < < 7 ,
TOKEN_ATTR_VERIFY_BASE64A = 1 < < 8 ,
TOKEN_ATTR_VERIFY_BASE64B = 1 < < 9 ,
TOKEN_ATTR_VERIFY_BASE64C = 1 < < 10 ,
2018-06-23 14:00:49 +00:00
} token_attr_t ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
typedef enum brain_link_status
{
BRAIN_LINK_STATUS_CONNECTED = 1 < < 0 ,
BRAIN_LINK_STATUS_RECEIVING = 1 < < 1 ,
BRAIN_LINK_STATUS_SENDING = 1 < < 2 ,
} brain_link_status_t ;
# endif
2019-01-14 09:11:23 +00:00
# ifdef _WIN
typedef HMODULE hc_dynlib_t ;
typedef FARPROC hc_dynfunc_t ;
# else
typedef void * hc_dynlib_t ;
typedef void * hc_dynfunc_t ;
# endif
2016-09-06 09:49:26 +00:00
/**
2016-09-16 15:01:18 +00:00
* structs
2016-09-06 09:49:26 +00:00
*/
2015-12-04 14:47:52 +00:00
2016-10-01 09:54:00 +00:00
typedef struct user
2015-12-04 14:47:52 +00:00
{
char * user_name ;
2016-09-16 15:01:18 +00:00
u32 user_len ;
2015-12-04 14:47:52 +00:00
} user_t ;
2017-02-13 15:46:37 +00:00
typedef enum split_origin
{
SPLIT_ORIGIN_NONE = 0 ,
SPLIT_ORIGIN_LEFT = 1 ,
SPLIT_ORIGIN_RIGHT = 2 ,
} split_origin_t ;
typedef struct split
{
// some hashes, like lm, are split. this id point to the other hash of the group
int split_group ;
int split_neighbor ;
int split_origin ;
} split_t ;
2016-10-01 09:54:00 +00:00
typedef struct hashinfo
2015-12-04 14:47:52 +00:00
{
2017-02-13 15:46:37 +00:00
user_t * user ;
char * orighash ;
split_t * split ;
2015-12-04 14:47:52 +00:00
} hashinfo_t ;
2016-10-01 09:54:00 +00:00
typedef struct hash
2015-12-04 14:47:52 +00:00
{
void * digest ;
salt_t * salt ;
void * esalt ;
2017-01-24 14:23:48 +00:00
void * hook_salt ; // additional salt info only used by the hook (host)
2015-12-04 14:47:52 +00:00
int cracked ;
hashinfo_t * hash_info ;
2016-10-19 09:55:43 +00:00
char * pw_buf ;
int pw_len ;
2019-11-05 12:49:22 +00:00
u64 orig_line_pos ;
2015-12-04 14:47:52 +00:00
} hash_t ;
2016-10-01 09:54:00 +00:00
typedef struct outfile_data
2016-09-24 09:08:35 +00:00
{
2017-08-16 17:43:41 +00:00
char * file_name ;
off_t seek ;
2017-12-10 00:40:45 +00:00
time_t ctime ;
2016-09-24 09:08:35 +00:00
} outfile_data_t ;
2016-10-01 09:54:00 +00:00
typedef struct logfile_ctx
2016-09-23 19:41:05 +00:00
{
bool enabled ;
char * logfile ;
char * topid ;
char * subid ;
} logfile_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct hashes
2016-09-16 15:01:18 +00:00
{
2017-04-10 20:35:01 +00:00
const char * hashfile ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
u32 hashlist_mode ;
u32 hashlist_format ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
u32 digests_cnt ;
u32 digests_done ;
u32 digests_saved ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
void * digests_buf ;
u32 * digests_shown ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
u32 salts_cnt ;
u32 salts_done ;
2015-12-04 14:47:52 +00:00
2017-04-10 20:35:01 +00:00
salt_t * salts_buf ;
u32 * salts_shown ;
2015-12-04 14:47:52 +00:00
2017-04-10 20:35:01 +00:00
void * esalts_buf ;
2015-12-04 14:47:52 +00:00
2017-04-10 20:35:01 +00:00
void * hook_salts_buf ;
2017-01-24 14:23:48 +00:00
2017-04-10 20:35:01 +00:00
u32 hashes_cnt_orig ;
u32 hashes_cnt ;
hash_t * hashes_buf ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
hashinfo_t * * hash_info ;
2016-09-16 15:01:18 +00:00
2017-04-10 20:35:01 +00:00
u8 * out_buf ; // allocates [HCBUFSIZ_LARGE];
u8 * tmp_buf ; // allocates [HCBUFSIZ_LARGE];
2016-10-30 21:22:26 +00:00
2017-06-13 17:07:08 +00:00
// selftest buffers
void * st_digests_buf ;
salt_t * st_salts_buf ;
void * st_esalts_buf ;
2017-06-14 10:07:33 +00:00
void * st_hook_salts_buf ;
2017-06-13 17:07:08 +00:00
2016-09-16 15:01:18 +00:00
} hashes_t ;
2021-04-27 17:09:44 +00:00
typedef struct hashconfig
2016-09-16 15:01:18 +00:00
{
char separator ;
2019-01-06 12:48:41 +00:00
int hash_mode ;
2016-09-16 15:01:18 +00:00
u32 salt_type ;
u32 attack_exec ;
u32 kern_type ;
u32 dgst_size ;
u32 opti_type ;
2018-12-16 18:01:05 +00:00
u64 opts_type ;
2016-09-16 15:01:18 +00:00
u32 dgst_pos0 ;
u32 dgst_pos1 ;
u32 dgst_pos2 ;
u32 dgst_pos3 ;
2017-09-16 20:33:04 +00:00
bool is_salted ;
bool has_pure_kernel ;
bool has_optimized_kernel ;
2017-08-16 11:03:52 +00:00
// sizes have to be size_t
2018-12-15 18:46:55 +00:00
u64 esalt_size ;
2020-08-29 14:12:15 +00:00
u64 hook_extra_param_size ;
2018-12-15 18:46:55 +00:00
u64 hook_salt_size ;
u64 tmp_size ;
u64 hook_size ;
2016-09-28 09:11:14 +00:00
2017-07-13 09:03:57 +00:00
// password length limit
2016-09-28 11:51:00 +00:00
u32 pw_min ;
u32 pw_max ;
2017-07-13 09:03:57 +00:00
// salt length limit (generic hashes)
u32 salt_min ;
u32 salt_max ;
2019-05-19 12:46:05 +00:00
// hash count limit
u32 hashes_count_min ;
u32 hashes_count_max ;
2019-01-05 17:44:43 +00:00
// int (*parse_func) (u8 *, u32, hash_t *, struct hashconfig *);
2017-06-13 17:07:08 +00:00
2017-11-13 20:05:40 +00:00
const char * st_hash ;
const char * st_pass ;
2018-12-14 16:18:17 +00:00
2019-01-05 20:02:19 +00:00
u32 hash_category ;
2018-12-14 16:18:17 +00:00
const char * hash_name ;
2018-12-15 15:24:37 +00:00
const char * benchmark_mask ;
2018-12-17 11:42:07 +00:00
2019-01-05 17:24:37 +00:00
u32 kernel_accel_min ;
u32 kernel_accel_max ;
u32 kernel_loops_min ;
u32 kernel_loops_max ;
u32 kernel_threads_min ;
u32 kernel_threads_max ;
2018-12-19 09:13:51 +00:00
u32 forced_outfile_format ;
2018-12-17 17:49:07 +00:00
2018-12-18 14:00:00 +00:00
bool dictstat_disable ;
2018-12-18 15:59:00 +00:00
bool hlfmt_disable ;
2018-12-17 17:49:07 +00:00
bool warmup_disable ;
2018-12-20 09:33:29 +00:00
bool outfile_check_disable ;
2018-12-20 09:43:57 +00:00
bool outfile_check_nocomp ;
2018-12-20 10:04:37 +00:00
bool potfile_disable ;
2018-12-20 11:59:56 +00:00
bool potfile_keep_all_hashes ;
2019-01-04 10:23:48 +00:00
bool forced_jit_compile ;
2018-12-18 15:59:00 +00:00
2018-12-19 10:15:18 +00:00
u32 pwdump_column ;
2021-04-27 17:09:44 +00:00
} hashconfig_t ;
2015-12-04 14:47:52 +00:00
2018-09-01 10:31:17 +00:00
typedef struct pw_pre
{
u32 pw_buf [ 64 ] ;
u32 pw_len ;
u32 base_buf [ 64 ] ;
u32 base_len ;
u32 rule_idx ;
} pw_pre_t ;
2016-10-01 09:54:00 +00:00
typedef struct cpt
2015-12-04 14:47:52 +00:00
{
2017-08-16 17:43:41 +00:00
u32 cracked ;
2017-12-10 00:40:45 +00:00
time_t timestamp ;
2015-12-04 14:47:52 +00:00
} cpt_t ;
2018-10-28 15:47:13 +00:00
# define LINK_SPEED_COUNT 10000
typedef struct link_speed
{
hc_timer_t timer [ LINK_SPEED_COUNT ] ;
ssize_t bytes [ LINK_SPEED_COUNT ] ;
int pos ;
} link_speed_t ;
2019-07-29 16:42:50 +00:00
// file handling
2019-06-21 19:56:38 +00:00
2019-06-26 17:06:46 +00:00
typedef struct hc_fp
2019-06-21 19:56:38 +00:00
{
2019-06-30 23:30:24 +00:00
int fd ;
2019-07-29 16:42:50 +00:00
FILE * pfp ; // plain fp
gzFile gfp ; // gzip fp
unzFile ufp ; // zip fp
2019-06-21 19:56:38 +00:00
2021-06-29 18:42:22 +00:00
int bom_size ;
2019-07-29 16:42:50 +00:00
2021-07-18 19:27:21 +00:00
const char * mode ;
2019-06-21 19:56:38 +00:00
const char * path ;
2021-06-29 18:42:22 +00:00
2019-06-26 17:06:46 +00:00
} HCFILE ;
2019-06-21 19:56:38 +00:00
2019-04-26 08:03:16 +00:00
# include "ext_nvrtc.h"
2021-07-09 03:50:40 +00:00
# include "ext_hiprtc.h"
2019-04-25 12:45:17 +00:00
# include "ext_cuda.h"
2021-07-09 03:50:40 +00:00
# include "ext_hip.h"
2016-10-09 20:41:55 +00:00
# include "ext_OpenCL.h"
2016-10-01 10:33:59 +00:00
typedef struct hc_device_param
2016-09-16 15:01:18 +00:00
{
2019-04-30 11:38:44 +00:00
int device_id ;
2019-04-26 13:10:02 +00:00
2019-05-01 05:27:10 +00:00
// this occurs if the same device (pci address) is used by multiple backend API
int device_id_alias_cnt ;
int device_id_alias_buf [ DEVICES_MAX ] ;
2020-07-27 13:21:56 +00:00
u8 pcie_domain ;
2019-04-29 08:21:59 +00:00
u8 pcie_bus ;
u8 pcie_device ;
u8 pcie_function ;
2016-09-16 15:01:18 +00:00
2019-03-04 09:29:57 +00:00
bool skipped ; // permanent
bool skipped_warning ; // iteration
2016-09-16 15:01:18 +00:00
u32 device_processors ;
u64 device_maxmem_alloc ;
u64 device_global_mem ;
2018-08-05 21:29:54 +00:00
u64 device_available_mem ;
2021-08-18 14:10:51 +00:00
int device_host_unified_memory ;
2016-09-16 15:01:18 +00:00
u32 device_maxclock_frequency ;
size_t device_maxworkgroup_size ;
2018-02-11 09:56:08 +00:00
u64 device_local_mem_size ;
2019-04-29 08:21:59 +00:00
int device_local_mem_type ;
2019-04-30 11:38:44 +00:00
char * device_name ;
2019-04-29 08:21:59 +00:00
int sm_major ;
int sm_minor ;
u32 kernel_exec_timeout ;
2021-07-22 09:46:47 +00:00
u32 kernel_preferred_wgs_multiple ;
2019-04-29 08:21:59 +00:00
st_status_t st_status ;
2016-09-16 15:01:18 +00:00
2019-05-01 16:20:19 +00:00
int vector_width ;
2016-09-16 15:01:18 +00:00
2018-02-11 20:29:57 +00:00
u32 kernel_wgs1 ;
u32 kernel_wgs12 ;
2021-04-21 13:59:14 +00:00
u32 kernel_wgs2p ;
2018-02-11 20:29:57 +00:00
u32 kernel_wgs2 ;
2020-02-20 15:00:21 +00:00
u32 kernel_wgs2e ;
2018-02-11 20:29:57 +00:00
u32 kernel_wgs23 ;
u32 kernel_wgs3 ;
u32 kernel_wgs4 ;
u32 kernel_wgs_init2 ;
2021-04-21 13:59:14 +00:00
u32 kernel_wgs_loop2p ;
2018-02-11 20:29:57 +00:00
u32 kernel_wgs_loop2 ;
u32 kernel_wgs_mp ;
u32 kernel_wgs_mp_l ;
u32 kernel_wgs_mp_r ;
u32 kernel_wgs_amp ;
u32 kernel_wgs_tm ;
u32 kernel_wgs_memset ;
2021-07-17 16:00:10 +00:00
u32 kernel_wgs_bzero ;
2018-02-11 20:29:57 +00:00
u32 kernel_wgs_atinit ;
2021-05-20 12:34:24 +00:00
u32 kernel_wgs_utf8toutf16le ;
2018-02-11 20:29:57 +00:00
u32 kernel_wgs_decompress ;
2018-02-13 08:13:35 +00:00
u32 kernel_wgs_aux1 ;
u32 kernel_wgs_aux2 ;
u32 kernel_wgs_aux3 ;
u32 kernel_wgs_aux4 ;
2016-10-29 12:02:29 +00:00
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple1 ;
u32 kernel_preferred_wgs_multiple12 ;
2021-04-21 13:59:14 +00:00
u32 kernel_preferred_wgs_multiple2p ;
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple2 ;
2020-02-20 15:00:21 +00:00
u32 kernel_preferred_wgs_multiple2e ;
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple23 ;
u32 kernel_preferred_wgs_multiple3 ;
u32 kernel_preferred_wgs_multiple4 ;
u32 kernel_preferred_wgs_multiple_init2 ;
2021-04-21 13:59:14 +00:00
u32 kernel_preferred_wgs_multiple_loop2p ;
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple_loop2 ;
u32 kernel_preferred_wgs_multiple_mp ;
u32 kernel_preferred_wgs_multiple_mp_l ;
u32 kernel_preferred_wgs_multiple_mp_r ;
u32 kernel_preferred_wgs_multiple_amp ;
u32 kernel_preferred_wgs_multiple_tm ;
u32 kernel_preferred_wgs_multiple_memset ;
2021-07-20 08:59:44 +00:00
u32 kernel_preferred_wgs_multiple_bzero ;
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple_atinit ;
2021-05-20 12:34:24 +00:00
u32 kernel_preferred_wgs_multiple_utf8toutf16le ;
2018-02-11 15:22:24 +00:00
u32 kernel_preferred_wgs_multiple_decompress ;
2018-02-13 08:13:35 +00:00
u32 kernel_preferred_wgs_multiple_aux1 ;
u32 kernel_preferred_wgs_multiple_aux2 ;
u32 kernel_preferred_wgs_multiple_aux3 ;
u32 kernel_preferred_wgs_multiple_aux4 ;
2018-02-11 15:22:24 +00:00
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size1 ;
u64 kernel_local_mem_size12 ;
2021-04-21 13:59:14 +00:00
u64 kernel_local_mem_size2p ;
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size2 ;
2020-02-20 15:00:21 +00:00
u64 kernel_local_mem_size2e ;
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size23 ;
u64 kernel_local_mem_size3 ;
u64 kernel_local_mem_size4 ;
u64 kernel_local_mem_size_init2 ;
2021-04-21 13:59:14 +00:00
u64 kernel_local_mem_size_loop2p ;
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size_loop2 ;
u64 kernel_local_mem_size_mp ;
u64 kernel_local_mem_size_mp_l ;
u64 kernel_local_mem_size_mp_r ;
u64 kernel_local_mem_size_amp ;
u64 kernel_local_mem_size_tm ;
u64 kernel_local_mem_size_memset ;
2021-07-20 08:59:44 +00:00
u64 kernel_local_mem_size_bzero ;
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size_atinit ;
2021-05-20 12:34:24 +00:00
u64 kernel_local_mem_size_utf8toutf16le ;
2018-02-11 15:09:50 +00:00
u64 kernel_local_mem_size_decompress ;
2018-02-13 08:13:35 +00:00
u64 kernel_local_mem_size_aux1 ;
u64 kernel_local_mem_size_aux2 ;
u64 kernel_local_mem_size_aux3 ;
u64 kernel_local_mem_size_aux4 ;
2018-02-11 15:09:50 +00:00
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size1 ;
u64 kernel_dynamic_local_mem_size12 ;
2021-04-21 13:59:14 +00:00
u64 kernel_dynamic_local_mem_size2p ;
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size2 ;
2020-02-20 15:00:21 +00:00
u64 kernel_dynamic_local_mem_size2e ;
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size23 ;
u64 kernel_dynamic_local_mem_size3 ;
u64 kernel_dynamic_local_mem_size4 ;
u64 kernel_dynamic_local_mem_size_init2 ;
2021-04-21 13:59:14 +00:00
u64 kernel_dynamic_local_mem_size_loop2p ;
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size_loop2 ;
u64 kernel_dynamic_local_mem_size_mp ;
u64 kernel_dynamic_local_mem_size_mp_l ;
u64 kernel_dynamic_local_mem_size_mp_r ;
u64 kernel_dynamic_local_mem_size_amp ;
u64 kernel_dynamic_local_mem_size_tm ;
u64 kernel_dynamic_local_mem_size_memset ;
2021-07-20 08:59:44 +00:00
u64 kernel_dynamic_local_mem_size_bzero ;
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size_atinit ;
2021-05-20 12:34:24 +00:00
u64 kernel_dynamic_local_mem_size_utf8toutf16le ;
2020-02-01 13:27:42 +00:00
u64 kernel_dynamic_local_mem_size_decompress ;
u64 kernel_dynamic_local_mem_size_aux1 ;
u64 kernel_dynamic_local_mem_size_aux2 ;
u64 kernel_dynamic_local_mem_size_aux3 ;
u64 kernel_dynamic_local_mem_size_aux4 ;
2016-09-16 15:01:18 +00:00
u32 kernel_accel ;
2018-02-02 22:22:21 +00:00
u32 kernel_accel_prev ;
2018-02-08 18:13:29 +00:00
u32 kernel_accel_min ;
u32 kernel_accel_max ;
u32 kernel_loops ;
u32 kernel_loops_prev ;
2016-09-16 15:01:18 +00:00
u32 kernel_loops_min ;
u32 kernel_loops_max ;
2016-12-15 12:19:10 +00:00
u32 kernel_loops_min_sav ; // the _sav are required because each -i iteration
u32 kernel_loops_max_sav ; // needs to recalculate the kernel_loops_min/max based on the current amplifier count
2018-11-06 15:06:06 +00:00
u32 kernel_threads ;
2021-08-17 15:38:45 +00:00
u32 kernel_threads_prev ;
2019-01-05 17:24:37 +00:00
u32 kernel_threads_min ;
u32 kernel_threads_max ;
2018-02-08 18:13:29 +00:00
u64 kernel_power ;
u64 hardware_power ;
2016-09-16 15:01:18 +00:00
2018-11-03 17:16:49 +00:00
u64 size_pws ;
u64 size_pws_amp ;
u64 size_pws_comp ;
u64 size_pws_idx ;
u64 size_pws_pre ;
u64 size_pws_base ;
u64 size_tmps ;
u64 size_hooks ;
u64 size_bfs ;
u64 size_combs ;
u64 size_rules ;
u64 size_rules_c ;
u64 size_root_css ;
u64 size_markov_css ;
u64 size_digests ;
u64 size_salts ;
2019-01-28 13:05:58 +00:00
u64 size_esalts ;
2018-11-03 17:16:49 +00:00
u64 size_shown ;
u64 size_results ;
u64 size_plains ;
u64 size_st_digests ;
u64 size_st_salts ;
u64 size_st_esalts ;
2019-01-28 13:05:58 +00:00
u64 size_tm ;
u64 extra_buffer_size ;
2016-09-16 15:01:18 +00:00
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
2018-11-03 17:16:49 +00:00
u64 size_brain_link_in ;
u64 size_brain_link_out ;
2018-10-28 15:47:13 +00:00
int brain_link_client_fd ;
link_speed_t brain_link_recv_speed ;
link_speed_t brain_link_send_speed ;
bool brain_link_recv_active ;
bool brain_link_send_active ;
u64 brain_link_recv_bytes ;
u64 brain_link_send_bytes ;
u8 * brain_link_in_buf ;
u32 * brain_link_out_buf ;
# endif
2019-07-02 19:30:35 +00:00
char * scratch_buf ;
2018-02-09 08:50:13 +00:00
2019-07-02 19:30:35 +00:00
HCFILE combs_fp ;
pw_t * combs_buf ;
2016-09-16 15:01:18 +00:00
2019-07-02 19:30:35 +00:00
void * hooks_buf ;
2016-09-16 15:01:18 +00:00
2018-02-05 16:18:58 +00:00
pw_idx_t * pws_idx ;
u32 * pws_comp ;
2018-02-08 18:13:29 +00:00
u64 pws_cnt ;
2016-09-16 15:01:18 +00:00
2018-10-20 16:00:42 +00:00
pw_pre_t * pws_pre_buf ; // for slow candidates
2018-09-01 10:31:17 +00:00
u64 pws_pre_cnt ;
pw_pre_t * pws_base_buf ; // for debug mode
u64 pws_base_cnt ;
2016-09-16 15:01:18 +00:00
u64 words_off ;
u64 words_done ;
2018-02-08 18:13:29 +00:00
u64 outerloop_pos ;
u64 outerloop_left ;
2016-12-09 22:44:43 +00:00
double outerloop_msec ;
2018-07-31 12:41:25 +00:00
double outerloop_multi ;
2016-09-16 15:01:18 +00:00
2018-02-08 18:13:29 +00:00
u32 innerloop_pos ;
u32 innerloop_left ;
2016-09-16 15:01:18 +00:00
u32 exec_pos ;
2016-10-17 11:44:07 +00:00
double exec_msec [ EXEC_CACHE ] ;
2016-09-16 15:01:18 +00:00
// workaround cpu spinning
double exec_us_prev1 [ EXPECTED_ITERATIONS ] ;
2021-04-21 13:59:14 +00:00
double exec_us_prev2p [ EXPECTED_ITERATIONS ] ;
2016-09-16 15:01:18 +00:00
double exec_us_prev2 [ EXPECTED_ITERATIONS ] ;
2020-02-20 15:00:21 +00:00
double exec_us_prev2e [ EXPECTED_ITERATIONS ] ;
2016-09-16 15:01:18 +00:00
double exec_us_prev3 [ EXPECTED_ITERATIONS ] ;
2017-06-29 10:19:05 +00:00
double exec_us_prev4 [ EXPECTED_ITERATIONS ] ;
2017-01-26 20:16:29 +00:00
double exec_us_prev_init2 [ EXPECTED_ITERATIONS ] ;
2021-04-21 13:59:14 +00:00
double exec_us_prev_loop2p [ EXPECTED_ITERATIONS ] ;
2017-01-26 20:16:29 +00:00
double exec_us_prev_loop2 [ EXPECTED_ITERATIONS ] ;
2018-02-13 08:13:35 +00:00
double exec_us_prev_aux1 [ EXPECTED_ITERATIONS ] ;
double exec_us_prev_aux2 [ EXPECTED_ITERATIONS ] ;
double exec_us_prev_aux3 [ EXPECTED_ITERATIONS ] ;
double exec_us_prev_aux4 [ EXPECTED_ITERATIONS ] ;
2016-09-16 15:01:18 +00:00
// this is "current" speed
u32 speed_pos ;
u64 speed_cnt [ SPEED_CACHE ] ;
2016-10-17 11:44:07 +00:00
double speed_msec [ SPEED_CACHE ] ;
2018-02-12 08:41:46 +00:00
bool speed_only_finish ;
2016-09-16 15:01:18 +00:00
hc_timer_t timer_speed ;
2020-01-24 09:52:12 +00:00
// Some more attributes
bool use_opencl12 ;
bool use_opencl20 ;
2020-03-13 08:43:41 +00:00
bool use_opencl21 ;
2020-01-24 09:52:12 +00:00
2019-04-08 11:17:13 +00:00
// AMD
2019-12-05 14:43:01 +00:00
bool has_vadd ;
bool has_vaddc ;
2020-01-06 11:49:57 +00:00
bool has_vadd_co ;
bool has_vaddc_co ;
2019-12-05 14:43:01 +00:00
bool has_vsub ;
bool has_vsubb ;
2020-01-06 11:49:57 +00:00
bool has_vsub_co ;
bool has_vsubb_co ;
2019-02-24 09:12:48 +00:00
bool has_vadd3 ;
2019-03-18 11:42:47 +00:00
bool has_vbfe ;
2019-04-08 11:17:13 +00:00
bool has_vperm ;
// NV
2019-12-05 14:43:01 +00:00
bool has_add ;
bool has_addc ;
bool has_sub ;
bool has_subc ;
2019-04-08 11:17:13 +00:00
bool has_bfe ;
bool has_lop3 ;
bool has_mov64 ;
bool has_prmt ;
2017-08-22 16:47:53 +00:00
2018-11-20 11:32:24 +00:00
double spin_damp ;
2016-09-16 15:01:18 +00:00
2019-04-29 08:21:59 +00:00
void * kernel_params [ PARAMCNT ] ;
void * kernel_params_mp [ PARAMCNT ] ;
void * kernel_params_mp_r [ PARAMCNT ] ;
void * kernel_params_mp_l [ PARAMCNT ] ;
void * kernel_params_amp [ PARAMCNT ] ;
void * kernel_params_tm [ PARAMCNT ] ;
void * kernel_params_memset [ PARAMCNT ] ;
2021-07-17 16:00:10 +00:00
void * kernel_params_bzero [ PARAMCNT ] ;
2019-04-29 08:21:59 +00:00
void * kernel_params_atinit [ PARAMCNT ] ;
2021-05-20 12:34:24 +00:00
void * kernel_params_utf8toutf16le [ PARAMCNT ] ;
2019-04-29 08:21:59 +00:00
void * kernel_params_decompress [ PARAMCNT ] ;
u32 kernel_params_buf32 [ PARAMCNT ] ;
u64 kernel_params_buf64 [ PARAMCNT ] ;
u32 kernel_params_mp_buf32 [ PARAMCNT ] ;
u64 kernel_params_mp_buf64 [ PARAMCNT ] ;
u32 kernel_params_mp_r_buf32 [ PARAMCNT ] ;
u64 kernel_params_mp_r_buf64 [ PARAMCNT ] ;
u32 kernel_params_mp_l_buf32 [ PARAMCNT ] ;
u64 kernel_params_mp_l_buf64 [ PARAMCNT ] ;
u32 kernel_params_amp_buf32 [ PARAMCNT ] ;
u64 kernel_params_amp_buf64 [ PARAMCNT ] ;
u32 kernel_params_memset_buf32 [ PARAMCNT ] ;
u64 kernel_params_memset_buf64 [ PARAMCNT ] ;
2021-07-20 08:59:44 +00:00
u32 kernel_params_bzero_buf32 [ PARAMCNT ] ;
2021-07-17 16:00:10 +00:00
u64 kernel_params_bzero_buf64 [ PARAMCNT ] ;
2019-04-29 08:21:59 +00:00
u32 kernel_params_atinit_buf32 [ PARAMCNT ] ;
u64 kernel_params_atinit_buf64 [ PARAMCNT ] ;
2021-05-20 12:34:24 +00:00
u32 kernel_params_utf8toutf16le_buf32 [ PARAMCNT ] ;
u64 kernel_params_utf8toutf16le_buf64 [ PARAMCNT ] ;
2019-04-29 08:21:59 +00:00
u32 kernel_params_decompress_buf32 [ PARAMCNT ] ;
u64 kernel_params_decompress_buf64 [ PARAMCNT ] ;
// API: cuda
2019-05-02 15:30:46 +00:00
bool is_cuda ;
2019-04-30 11:38:44 +00:00
2019-05-03 10:07:06 +00:00
int cuda_warp_size ;
2019-05-02 15:30:46 +00:00
CUdevice cuda_device ;
CUcontext cuda_context ;
2019-05-04 19:52:00 +00:00
CUstream cuda_stream ;
CUevent cuda_event1 ;
CUevent cuda_event2 ;
2021-07-27 09:57:26 +00:00
CUevent cuda_event3 ;
2019-04-29 08:21:59 +00:00
2019-05-03 10:07:06 +00:00
CUmodule cuda_module ;
2020-02-01 08:00:48 +00:00
CUmodule cuda_module_shared ;
2019-05-03 10:07:06 +00:00
CUmodule cuda_module_mp ;
CUmodule cuda_module_amp ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function1 ;
CUfunction cuda_function12 ;
2021-04-21 13:59:14 +00:00
CUfunction cuda_function2p ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function2 ;
2020-02-20 15:00:21 +00:00
CUfunction cuda_function2e ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function23 ;
CUfunction cuda_function3 ;
CUfunction cuda_function4 ;
CUfunction cuda_function_init2 ;
2021-04-21 13:59:14 +00:00
CUfunction cuda_function_loop2p ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function_loop2 ;
CUfunction cuda_function_mp ;
CUfunction cuda_function_mp_l ;
CUfunction cuda_function_mp_r ;
CUfunction cuda_function_amp ;
CUfunction cuda_function_tm ;
CUfunction cuda_function_memset ;
2021-07-17 16:00:10 +00:00
CUfunction cuda_function_bzero ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function_atinit ;
2021-05-20 12:34:24 +00:00
CUfunction cuda_function_utf8toutf16le ;
2019-05-03 13:50:07 +00:00
CUfunction cuda_function_decompress ;
CUfunction cuda_function_aux1 ;
CUfunction cuda_function_aux2 ;
CUfunction cuda_function_aux3 ;
CUfunction cuda_function_aux4 ;
2019-05-03 10:07:06 +00:00
CUdeviceptr cuda_d_pws_buf ;
CUdeviceptr cuda_d_pws_amp_buf ;
CUdeviceptr cuda_d_pws_comp_buf ;
CUdeviceptr cuda_d_pws_idx ;
CUdeviceptr cuda_d_rules ;
CUdeviceptr cuda_d_rules_c ;
CUdeviceptr cuda_d_combs ;
CUdeviceptr cuda_d_combs_c ;
CUdeviceptr cuda_d_bfs ;
CUdeviceptr cuda_d_bfs_c ;
CUdeviceptr cuda_d_tm_c ;
CUdeviceptr cuda_d_bitmap_s1_a ;
CUdeviceptr cuda_d_bitmap_s1_b ;
CUdeviceptr cuda_d_bitmap_s1_c ;
CUdeviceptr cuda_d_bitmap_s1_d ;
CUdeviceptr cuda_d_bitmap_s2_a ;
CUdeviceptr cuda_d_bitmap_s2_b ;
CUdeviceptr cuda_d_bitmap_s2_c ;
CUdeviceptr cuda_d_bitmap_s2_d ;
CUdeviceptr cuda_d_plain_bufs ;
CUdeviceptr cuda_d_digests_buf ;
CUdeviceptr cuda_d_digests_shown ;
CUdeviceptr cuda_d_salt_bufs ;
CUdeviceptr cuda_d_esalt_bufs ;
CUdeviceptr cuda_d_tmps ;
CUdeviceptr cuda_d_hooks ;
CUdeviceptr cuda_d_result ;
CUdeviceptr cuda_d_extra0_buf ;
CUdeviceptr cuda_d_extra1_buf ;
CUdeviceptr cuda_d_extra2_buf ;
CUdeviceptr cuda_d_extra3_buf ;
CUdeviceptr cuda_d_root_css_buf ;
CUdeviceptr cuda_d_markov_css_buf ;
CUdeviceptr cuda_d_st_digests_buf ;
CUdeviceptr cuda_d_st_salts_buf ;
CUdeviceptr cuda_d_st_esalts_buf ;
2021-07-09 03:50:40 +00:00
// API: hip
2021-07-11 10:38:59 +00:00
bool is_hip ;
int hip_warp_size ;
2021-07-23 14:04:34 +00:00
hipDevice_t hip_device ;
hipCtx_t hip_context ;
hipStream_t hip_stream ;
hipEvent_t hip_event1 ;
hipEvent_t hip_event2 ;
2021-07-30 08:34:25 +00:00
hipEvent_t hip_event3 ;
2021-07-23 14:04:34 +00:00
hipModule_t hip_module ;
hipModule_t hip_module_shared ;
hipModule_t hip_module_mp ;
hipModule_t hip_module_amp ;
hipFunction_t hip_function1 ;
hipFunction_t hip_function12 ;
hipFunction_t hip_function2p ;
hipFunction_t hip_function2 ;
hipFunction_t hip_function2e ;
hipFunction_t hip_function23 ;
hipFunction_t hip_function3 ;
hipFunction_t hip_function4 ;
hipFunction_t hip_function_init2 ;
hipFunction_t hip_function_loop2p ;
hipFunction_t hip_function_loop2 ;
hipFunction_t hip_function_mp ;
hipFunction_t hip_function_mp_l ;
hipFunction_t hip_function_mp_r ;
hipFunction_t hip_function_amp ;
hipFunction_t hip_function_tm ;
hipFunction_t hip_function_memset ;
hipFunction_t hip_function_bzero ;
hipFunction_t hip_function_atinit ;
hipFunction_t hip_function_utf8toutf16le ;
hipFunction_t hip_function_decompress ;
hipFunction_t hip_function_aux1 ;
hipFunction_t hip_function_aux2 ;
hipFunction_t hip_function_aux3 ;
hipFunction_t hip_function_aux4 ;
hipDeviceptr_t hip_d_pws_buf ;
hipDeviceptr_t hip_d_pws_amp_buf ;
hipDeviceptr_t hip_d_pws_comp_buf ;
hipDeviceptr_t hip_d_pws_idx ;
hipDeviceptr_t hip_d_rules ;
hipDeviceptr_t hip_d_rules_c ;
hipDeviceptr_t hip_d_combs ;
hipDeviceptr_t hip_d_combs_c ;
hipDeviceptr_t hip_d_bfs ;
hipDeviceptr_t hip_d_bfs_c ;
hipDeviceptr_t hip_d_tm_c ;
hipDeviceptr_t hip_d_bitmap_s1_a ;
hipDeviceptr_t hip_d_bitmap_s1_b ;
hipDeviceptr_t hip_d_bitmap_s1_c ;
hipDeviceptr_t hip_d_bitmap_s1_d ;
hipDeviceptr_t hip_d_bitmap_s2_a ;
hipDeviceptr_t hip_d_bitmap_s2_b ;
hipDeviceptr_t hip_d_bitmap_s2_c ;
hipDeviceptr_t hip_d_bitmap_s2_d ;
hipDeviceptr_t hip_d_plain_bufs ;
hipDeviceptr_t hip_d_digests_buf ;
hipDeviceptr_t hip_d_digests_shown ;
hipDeviceptr_t hip_d_salt_bufs ;
hipDeviceptr_t hip_d_esalt_bufs ;
hipDeviceptr_t hip_d_tmps ;
hipDeviceptr_t hip_d_hooks ;
hipDeviceptr_t hip_d_result ;
hipDeviceptr_t hip_d_extra0_buf ;
hipDeviceptr_t hip_d_extra1_buf ;
hipDeviceptr_t hip_d_extra2_buf ;
hipDeviceptr_t hip_d_extra3_buf ;
hipDeviceptr_t hip_d_root_css_buf ;
hipDeviceptr_t hip_d_markov_css_buf ;
hipDeviceptr_t hip_d_st_digests_buf ;
hipDeviceptr_t hip_d_st_salts_buf ;
hipDeviceptr_t hip_d_st_esalts_buf ;
2021-07-09 03:50:40 +00:00
2019-04-29 08:21:59 +00:00
// API: opencl
2019-05-02 15:30:46 +00:00
bool is_opencl ;
2019-04-30 11:38:44 +00:00
2019-05-02 15:30:46 +00:00
char * opencl_driver_version ;
char * opencl_device_vendor ;
char * opencl_device_version ;
char * opencl_device_c_version ;
2019-04-29 08:21:59 +00:00
2019-05-02 15:30:46 +00:00
cl_device_type opencl_device_type ;
cl_uint opencl_device_vendor_id ;
2020-07-27 13:21:56 +00:00
u32 opencl_platform_id ;
2019-05-02 15:30:46 +00:00
cl_uint opencl_platform_vendor_id ;
2016-09-16 15:01:18 +00:00
2019-05-02 15:30:46 +00:00
cl_device_id opencl_device ;
2019-05-02 15:12:59 +00:00
cl_context opencl_context ;
cl_command_queue opencl_command_queue ;
2019-05-02 12:58:52 +00:00
2019-05-02 15:30:46 +00:00
cl_program opencl_program ;
2020-02-01 08:00:48 +00:00
cl_program opencl_program_shared ;
2019-05-02 15:30:46 +00:00
cl_program opencl_program_mp ;
cl_program opencl_program_amp ;
cl_kernel opencl_kernel1 ;
cl_kernel opencl_kernel12 ;
2021-04-21 13:59:14 +00:00
cl_kernel opencl_kernel2p ;
2019-05-02 15:30:46 +00:00
cl_kernel opencl_kernel2 ;
2020-02-20 15:00:21 +00:00
cl_kernel opencl_kernel2e ;
2019-05-02 15:30:46 +00:00
cl_kernel opencl_kernel23 ;
cl_kernel opencl_kernel3 ;
cl_kernel opencl_kernel4 ;
cl_kernel opencl_kernel_init2 ;
2021-04-21 13:59:14 +00:00
cl_kernel opencl_kernel_loop2p ;
2019-05-02 15:30:46 +00:00
cl_kernel opencl_kernel_loop2 ;
cl_kernel opencl_kernel_mp ;
cl_kernel opencl_kernel_mp_l ;
cl_kernel opencl_kernel_mp_r ;
cl_kernel opencl_kernel_amp ;
cl_kernel opencl_kernel_tm ;
cl_kernel opencl_kernel_memset ;
2021-07-17 16:00:10 +00:00
cl_kernel opencl_kernel_bzero ;
2019-05-02 15:30:46 +00:00
cl_kernel opencl_kernel_atinit ;
2021-05-20 12:34:24 +00:00
cl_kernel opencl_kernel_utf8toutf16le ;
2019-05-02 15:30:46 +00:00
cl_kernel opencl_kernel_decompress ;
cl_kernel opencl_kernel_aux1 ;
cl_kernel opencl_kernel_aux2 ;
cl_kernel opencl_kernel_aux3 ;
cl_kernel opencl_kernel_aux4 ;
cl_mem opencl_d_pws_buf ;
cl_mem opencl_d_pws_amp_buf ;
cl_mem opencl_d_pws_comp_buf ;
cl_mem opencl_d_pws_idx ;
cl_mem opencl_d_rules ;
cl_mem opencl_d_rules_c ;
cl_mem opencl_d_combs ;
cl_mem opencl_d_combs_c ;
cl_mem opencl_d_bfs ;
cl_mem opencl_d_bfs_c ;
cl_mem opencl_d_tm_c ;
cl_mem opencl_d_bitmap_s1_a ;
cl_mem opencl_d_bitmap_s1_b ;
cl_mem opencl_d_bitmap_s1_c ;
cl_mem opencl_d_bitmap_s1_d ;
cl_mem opencl_d_bitmap_s2_a ;
cl_mem opencl_d_bitmap_s2_b ;
cl_mem opencl_d_bitmap_s2_c ;
cl_mem opencl_d_bitmap_s2_d ;
cl_mem opencl_d_plain_bufs ;
cl_mem opencl_d_digests_buf ;
cl_mem opencl_d_digests_shown ;
cl_mem opencl_d_salt_bufs ;
cl_mem opencl_d_esalt_bufs ;
cl_mem opencl_d_tmps ;
cl_mem opencl_d_hooks ;
cl_mem opencl_d_result ;
cl_mem opencl_d_extra0_buf ;
cl_mem opencl_d_extra1_buf ;
cl_mem opencl_d_extra2_buf ;
cl_mem opencl_d_extra3_buf ;
cl_mem opencl_d_root_css_buf ;
cl_mem opencl_d_markov_css_buf ;
cl_mem opencl_d_st_digests_buf ;
cl_mem opencl_d_st_salts_buf ;
cl_mem opencl_d_st_esalts_buf ;
2016-09-16 15:01:18 +00:00
2016-10-01 10:33:59 +00:00
} hc_device_param_t ;
2016-09-16 15:01:18 +00:00
2019-04-25 12:45:17 +00:00
typedef struct backend_ctx
2016-09-16 15:01:18 +00:00
{
2016-09-30 10:21:09 +00:00
bool enabled ;
2016-09-16 15:01:18 +00:00
2019-04-25 12:45:17 +00:00
void * cuda ;
2021-07-09 03:50:40 +00:00
void * hip ;
2021-07-11 10:38:59 +00:00
void * ocl ;
2019-04-26 08:03:16 +00:00
void * nvrtc ;
2021-07-09 03:50:40 +00:00
void * hiprtc ;
2016-09-16 15:01:18 +00:00
2019-04-30 11:38:44 +00:00
int backend_device_from_cuda [ DEVICES_MAX ] ; // from cuda device index to backend device index
2021-07-09 03:50:40 +00:00
int backend_device_from_hip [ DEVICES_MAX ] ; // from hip device index to backend device index
2019-04-30 11:38:44 +00:00
int backend_device_from_opencl [ DEVICES_MAX ] ; // from opencl device index to backend device index
int backend_device_from_opencl_platform [ CL_PLATFORMS_MAX ] [ DEVICES_MAX ] ; // from opencl device index to backend device index (by platform)
2019-04-28 12:45:50 +00:00
int backend_devices_cnt ;
int backend_devices_active ;
2021-07-11 10:38:59 +00:00
2019-04-28 12:45:50 +00:00
int cuda_devices_cnt ;
int cuda_devices_active ;
2021-07-09 03:50:40 +00:00
int hip_devices_cnt ;
int hip_devices_active ;
2019-04-28 12:45:50 +00:00
int opencl_devices_cnt ;
int opencl_devices_active ;
2019-05-01 13:52:56 +00:00
u64 backend_devices_filter ;
2016-09-16 15:01:18 +00:00
hc_device_param_t * devices_param ;
2016-09-28 09:49:08 +00:00
u32 hardware_power_all ;
2018-02-08 18:13:29 +00:00
u64 kernel_power_all ;
2016-09-28 09:49:08 +00:00
u64 kernel_power_final ; // we save that so that all divisions are done from the same base
2016-10-17 11:44:07 +00:00
double target_msec ;
2016-09-16 15:01:18 +00:00
2016-10-09 20:41:55 +00:00
bool need_adl ;
bool need_nvml ;
bool need_nvapi ;
2021-07-09 18:48:10 +00:00
bool need_sysfs_amdgpu ;
2021-07-10 06:43:15 +00:00
bool need_sysfs_cpu ;
2021-06-12 18:13:31 +00:00
bool need_iokit ;
2016-09-16 15:01:18 +00:00
2017-07-22 16:46:12 +00:00
int comptime ;
2016-09-17 15:05:01 +00:00
int force_jit_compilation ;
2019-04-29 08:21:59 +00:00
// cuda
2020-09-06 11:29:32 +00:00
int rc_cuda_init ;
int rc_nvrtc_init ;
2019-06-05 08:53:48 +00:00
int nvrtc_driver_version ;
2019-04-29 08:21:59 +00:00
int cuda_driver_version ;
2021-07-11 10:38:59 +00:00
// hip
int rc_hip_init ;
int rc_hiprtc_init ;
2021-07-09 03:50:40 +00:00
2021-08-04 18:49:22 +00:00
int hip_runtimeVersion ;
2021-07-23 14:04:34 +00:00
int hip_driverVersion ;
2021-07-09 03:50:40 +00:00
2019-04-29 08:21:59 +00:00
// opencl
2019-04-30 11:38:44 +00:00
cl_platform_id * opencl_platforms ;
cl_uint opencl_platforms_cnt ;
cl_device_id * * opencl_platforms_devices ;
cl_uint * opencl_platforms_devices_cnt ;
char * * opencl_platforms_name ;
char * * opencl_platforms_vendor ;
2019-05-01 13:52:56 +00:00
cl_uint * opencl_platforms_vendor_id ;
2019-04-30 11:38:44 +00:00
char * * opencl_platforms_version ;
2019-04-29 08:21:59 +00:00
cl_device_type opencl_device_types_filter ;
2019-04-25 12:45:17 +00:00
} backend_ctx_t ;
2016-09-16 15:01:18 +00:00
2019-01-15 10:53:59 +00:00
typedef enum kernel_workload
{
KERNEL_ACCEL_MIN = 1 ,
KERNEL_ACCEL_MAX = 1024 ,
KERNEL_LOOPS_MIN = 1 ,
KERNEL_LOOPS_MAX = 1024 ,
KERNEL_THREADS_MIN = 1 ,
KERNEL_THREADS_MAX = 1024 ,
} kernel_workload_t ;
2016-10-09 20:41:55 +00:00
# include "ext_ADL.h"
# include "ext_nvapi.h"
# include "ext_nvml.h"
2021-07-09 18:48:10 +00:00
# include "ext_sysfs_amdgpu.h"
2021-07-10 06:43:15 +00:00
# include "ext_sysfs_cpu.h"
2021-06-12 18:13:31 +00:00
# include "ext_iokit.h"
2016-10-09 20:41:55 +00:00
typedef struct hm_attrs
{
2021-07-09 18:48:10 +00:00
HM_ADAPTER_ADL adl ;
HM_ADAPTER_NVML nvml ;
HM_ADAPTER_NVAPI nvapi ;
HM_ADAPTER_SYSFS_AMDGPU sysfs_amdgpu ;
2021-07-10 06:43:15 +00:00
HM_ADAPTER_SYSFS_CPU sysfs_cpu ;
2021-07-09 18:48:10 +00:00
HM_ADAPTER_IOKIT iokit ;
2016-10-09 20:41:55 +00:00
int od_version ;
2016-11-21 14:58:44 +00:00
bool buslanes_get_supported ;
bool corespeed_get_supported ;
bool fanspeed_get_supported ;
bool fanpolicy_get_supported ;
bool memoryspeed_get_supported ;
bool temperature_get_supported ;
bool threshold_shutdown_get_supported ;
bool threshold_slowdown_get_supported ;
bool throttle_get_supported ;
bool utilization_get_supported ;
2016-10-09 20:41:55 +00:00
} hm_attrs_t ;
typedef struct hwmon_ctx
{
bool enabled ;
void * hm_adl ;
void * hm_nvml ;
void * hm_nvapi ;
2021-07-09 18:48:10 +00:00
void * hm_sysfs_amdgpu ;
2021-07-10 06:43:15 +00:00
void * hm_sysfs_cpu ;
2021-06-12 18:13:31 +00:00
void * hm_iokit ;
2016-10-09 20:41:55 +00:00
hm_attrs_t * hm_device ;
} hwmon_ctx_t ;
2016-09-16 15:01:18 +00:00
# if defined (__APPLE__)
typedef struct cpu_set
{
u32 count ;
} cpu_set_t ;
# endif
2020-05-12 06:54:26 +00:00
typedef struct
{
char * buf ;
int len ;
} string_sized_t ;
2016-09-16 15:01:18 +00:00
/* AES context. */
typedef struct aes_context
{
2016-09-30 15:41:40 +00:00
int bits ;
2016-09-16 15:01:18 +00:00
u32 rek [ 60 ] ;
u32 rdk [ 60 ] ;
} aes_context_t ;
typedef aes_context_t aes_ctx ;
2016-10-01 09:54:00 +00:00
typedef struct debugfile_ctx
2016-09-16 15:01:18 +00:00
{
2019-07-02 19:30:35 +00:00
HCFILE fp ;
2016-09-30 09:48:14 +00:00
2019-07-02 19:30:35 +00:00
bool enabled ;
char * filename ;
u32 mode ;
2016-09-16 15:01:18 +00:00
} debugfile_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct dictstat
2016-09-16 15:01:18 +00:00
{
u64 cnt ;
2017-12-10 00:40:45 +00:00
struct stat stat ;
2016-09-16 15:01:18 +00:00
2017-04-14 14:36:28 +00:00
char encoding_from [ 64 ] ;
char encoding_to [ 64 ] ;
2020-03-10 14:42:55 +00:00
u8 hash_filename [ 16 ] ;
2016-09-16 15:01:18 +00:00
} dictstat_t ;
2017-12-09 20:39:10 +00:00
typedef struct hashdump
{
int version ;
hashes_t hashes ;
} hashdump_t ;
2016-10-01 09:54:00 +00:00
typedef struct dictstat_ctx
2016-09-16 15:01:18 +00:00
{
2016-09-24 11:01:17 +00:00
bool enabled ;
2016-09-16 15:01:18 +00:00
char * filename ;
dictstat_t * base ;
2017-02-23 23:55:06 +00:00
# if defined (_WIN)
2016-09-16 15:01:18 +00:00
u32 cnt ;
2017-02-23 23:55:06 +00:00
# else
size_t cnt ;
2016-09-16 15:01:18 +00:00
# endif
} dictstat_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct loopback_ctx
2016-09-16 15:01:18 +00:00
{
2019-07-02 19:30:35 +00:00
HCFILE fp ;
2016-09-30 10:07:49 +00:00
2019-07-02 19:30:35 +00:00
bool enabled ;
bool unused ;
char * filename ;
2016-09-16 15:01:18 +00:00
} loopback_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct mf
2016-09-27 18:02:12 +00:00
{
2019-10-09 17:43:05 +00:00
char mf_buf [ 0x400 ] ;
2016-09-27 18:02:12 +00:00
int mf_len ;
} mf_t ;
2016-10-01 09:54:00 +00:00
typedef struct outfile_ctx
2016-09-16 15:01:18 +00:00
{
2019-07-02 19:30:35 +00:00
HCFILE fp ;
2016-09-16 15:01:18 +00:00
2019-07-02 19:30:35 +00:00
u32 outfile_format ;
bool outfile_autohex ;
2016-09-16 15:01:18 +00:00
2019-07-02 19:30:35 +00:00
char * filename ;
2016-09-16 15:01:18 +00:00
} outfile_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct pot
2016-09-16 15:01:18 +00:00
{
2019-04-08 15:36:26 +00:00
char plain_buf [ HCBUFSIZ_SMALL ] ;
2016-09-16 15:01:18 +00:00
int plain_len ;
hash_t hash ;
} pot_t ;
2016-10-01 09:54:00 +00:00
typedef struct potfile_ctx
2016-09-16 15:01:18 +00:00
{
2019-07-02 19:30:35 +00:00
HCFILE fp ;
2016-09-30 10:37:29 +00:00
bool enabled ;
2016-09-16 15:01:18 +00:00
char * filename ;
2016-10-30 21:47:48 +00:00
u8 * out_buf ; // allocates [HCBUFSIZ_LARGE];
u8 * tmp_buf ; // allocates [HCBUFSIZ_LARGE];
2016-09-16 15:01:18 +00:00
} potfile_ctx_t ;
2017-10-17 10:08:17 +00:00
// this is a linked list structure of all the hashes with the same "key" (hash or hash + salt)
typedef struct pot_hash_node
{
hash_t * hash_buf ;
struct pot_hash_node * next ;
} pot_hash_node_t ;
// Attention: this is only used when --show and --username are used together
// there could be multiple entries for each identical hash+salt combination
// (e.g. same hashes, but different user names... we want to print all of them!)
// that is why we use a linked list here
typedef struct pot_tree_entry
{
2017-10-18 10:09:32 +00:00
pot_hash_node_t * nodes ; // head of the linked list (under the field "hash_buf" it contains the sorting keys)
2017-10-18 06:54:21 +00:00
2017-10-17 10:08:17 +00:00
// the hashconfig is required to distinguish between salted and non-salted hashes and to make sure
// we compare the correct dgst_pos0...dgst_pos3
2017-10-18 06:54:21 +00:00
hashconfig_t * hashconfig ;
2017-10-17 10:08:17 +00:00
} pot_tree_entry_t ;
2019-11-05 12:49:22 +00:00
typedef struct pot_orig_line_entry
{
u8 * hash_buf ;
int hash_len ;
int line_pos ;
} pot_orig_line_entry_t ;
2016-10-01 09:54:00 +00:00
typedef struct restore_data
2016-09-16 15:01:18 +00:00
{
int version ;
char cwd [ 256 ] ;
2016-10-02 22:01:37 +00:00
u32 dicts_pos ;
2016-09-25 23:18:00 +00:00
u32 masks_pos ;
2016-09-16 15:01:18 +00:00
u64 words_cur ;
u32 argc ;
char * * argv ;
} restore_data_t ;
2017-01-27 15:29:18 +00:00
typedef struct pidfile_data
{
u32 pid ;
} pidfile_data_t ;
2016-10-01 09:54:00 +00:00
typedef struct restore_ctx
2016-09-24 23:02:44 +00:00
{
bool enabled ;
2019-08-06 12:07:43 +00:00
bool restore_execute ;
2016-09-24 23:02:44 +00:00
int argc ;
char * * argv ;
char * eff_restore_file ;
char * new_restore_file ;
restore_data_t * rd ;
} restore_ctx_t ;
2017-01-27 15:29:18 +00:00
typedef struct pidfile_ctx
{
u32 pid ;
char * filename ;
pidfile_data_t * pd ;
2017-02-17 07:59:22 +00:00
bool pidfile_written ;
2017-01-27 15:29:18 +00:00
} pidfile_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct out
2016-09-16 15:01:18 +00:00
{
2019-07-02 19:30:35 +00:00
HCFILE fp ;
2016-09-16 15:01:18 +00:00
2019-07-02 19:30:35 +00:00
char buf [ HCBUFSIZ_SMALL ] ;
int len ;
2016-09-16 15:01:18 +00:00
} out_t ;
2016-10-01 09:54:00 +00:00
typedef struct tuning_db_alias
2016-09-16 15:01:18 +00:00
{
char * device_name ;
char * alias_name ;
} tuning_db_alias_t ;
2016-10-01 09:54:00 +00:00
typedef struct tuning_db_entry
2016-09-16 15:01:18 +00:00
{
2017-04-10 20:35:01 +00:00
const char * device_name ;
int attack_mode ;
2019-02-12 14:30:42 +00:00
int hash_mode ;
2017-04-10 20:35:01 +00:00
int workload_profile ;
int vector_width ;
int kernel_accel ;
int kernel_loops ;
2016-09-16 15:01:18 +00:00
} tuning_db_entry_t ;
2016-10-01 09:54:00 +00:00
typedef struct tuning_db
2016-09-16 15:01:18 +00:00
{
2016-09-30 10:58:06 +00:00
bool enabled ;
2016-09-16 15:01:18 +00:00
tuning_db_alias_t * alias_buf ;
int alias_cnt ;
2021-08-01 14:25:37 +00:00
int alias_alloc ;
2016-09-16 15:01:18 +00:00
tuning_db_entry_t * entry_buf ;
int entry_cnt ;
2021-08-01 14:25:37 +00:00
int entry_alloc ;
2016-09-16 15:01:18 +00:00
} tuning_db_t ;
2016-10-01 09:54:00 +00:00
typedef struct wl_data
2016-09-16 15:01:18 +00:00
{
2016-09-30 11:02:15 +00:00
bool enabled ;
2016-09-16 15:01:18 +00:00
char * buf ;
2016-09-30 14:43:59 +00:00
u64 incr ;
u64 avail ;
u64 cnt ;
u64 pos ;
2016-09-16 15:01:18 +00:00
2017-04-14 14:36:28 +00:00
bool iconv_enabled ;
iconv_t iconv_ctx ;
char * iconv_tmp ;
2016-09-30 14:43:59 +00:00
void ( * func ) ( char * , u64 , u64 * , u64 * ) ;
2016-09-22 09:35:08 +00:00
2016-09-16 15:01:18 +00:00
} wl_data_t ;
2016-10-01 09:54:00 +00:00
typedef struct user_options
2016-09-20 14:04:22 +00:00
{
2017-04-10 20:35:01 +00:00
const char * hc_bin ;
int hc_argc ;
char * * hc_argv ;
bool attack_mode_chgd ;
2021-06-05 20:11:18 +00:00
bool autodetect ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
bool brain_host_chgd ;
bool brain_port_chgd ;
bool brain_password_chgd ;
2020-01-11 09:46:11 +00:00
bool brain_server_timer_chgd ;
2018-10-28 15:47:13 +00:00
# endif
2017-04-10 20:35:01 +00:00
bool hash_mode_chgd ;
2018-09-01 10:31:17 +00:00
bool hccapx_message_pair_chgd ;
2021-06-11 17:25:39 +00:00
bool identify ;
2017-04-10 20:35:01 +00:00
bool increment_max_chgd ;
bool increment_min_chgd ;
bool kernel_accel_chgd ;
bool kernel_loops_chgd ;
2018-11-06 15:06:06 +00:00
bool kernel_threads_chgd ;
2018-09-01 10:31:17 +00:00
bool nonce_error_corrections_chgd ;
2018-11-20 11:32:24 +00:00
bool spin_damp_chgd ;
2019-05-01 13:52:56 +00:00
bool backend_vector_width_chgd ;
2017-04-10 20:35:01 +00:00
bool outfile_format_chgd ;
bool remove_timer_chgd ;
bool rp_gen_seed_chgd ;
bool runtime_chgd ;
bool segment_size_chgd ;
2018-09-01 10:31:17 +00:00
bool workload_profile_chgd ;
2018-10-20 16:00:42 +00:00
bool skip_chgd ;
bool limit_chgd ;
2021-04-16 18:17:53 +00:00
bool scrypt_tmto_chgd ;
2021-07-22 16:54:02 +00:00
bool separator_chgd ;
2017-04-10 20:35:01 +00:00
bool advice_disable ;
bool benchmark ;
2017-12-05 10:08:59 +00:00
bool benchmark_all ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
bool brain_client ;
bool brain_server ;
# endif
2017-04-10 20:35:01 +00:00
bool force ;
2021-08-10 15:59:52 +00:00
bool deprecated_check_disable ;
2018-11-09 11:48:27 +00:00
bool hwmon_disable ;
2020-12-29 03:58:58 +00:00
bool hash_info ;
2017-04-10 20:35:01 +00:00
bool hex_charset ;
bool hex_salt ;
bool hex_wordlist ;
bool increment ;
bool keep_guessing ;
bool keyspace ;
bool left ;
bool logfile_disable ;
bool loopback ;
bool machine_readable ;
bool markov_classic ;
bool markov_disable ;
2021-07-07 08:32:08 +00:00
bool markov_inverse ;
2020-01-03 10:51:24 +00:00
bool backend_ignore_cuda ;
2021-07-09 03:50:40 +00:00
bool backend_ignore_hip ;
2020-01-03 10:51:24 +00:00
bool backend_ignore_opencl ;
2019-05-01 13:52:56 +00:00
bool backend_info ;
2017-07-18 11:23:42 +00:00
bool optimized_kernel_enable ;
2021-07-21 13:47:05 +00:00
bool multiply_accel_disable ;
2017-04-10 20:35:01 +00:00
bool outfile_autohex ;
bool potfile_disable ;
2018-09-01 10:31:17 +00:00
bool progress_only ;
2017-04-10 20:35:01 +00:00
bool quiet ;
bool remove ;
bool restore ;
bool restore_disable ;
2017-06-29 10:19:05 +00:00
bool self_test_disable ;
2017-04-10 20:35:01 +00:00
bool show ;
2018-09-01 10:31:17 +00:00
bool slow_candidates ;
bool speed_only ;
2017-04-10 20:35:01 +00:00
bool status ;
2019-03-27 11:15:58 +00:00
bool status_json ;
2017-04-10 20:35:01 +00:00
bool stdout_flag ;
2018-10-31 10:37:06 +00:00
bool stdin_timeout_abort_chgd ;
2017-04-10 20:35:01 +00:00
bool usage ;
bool username ;
2020-02-08 11:24:47 +00:00
bool veracrypt_pim_start_chgd ;
bool veracrypt_pim_stop_chgd ;
2017-04-10 20:35:01 +00:00
bool version ;
2018-09-01 10:31:17 +00:00
bool wordlist_autohex_disable ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
char * brain_host ;
char * brain_password ;
char * brain_session_whitelist ;
# endif
2017-04-10 20:35:01 +00:00
char * cpu_affinity ;
char * custom_charset_4 ;
char * debug_file ;
char * induction_dir ;
2018-11-25 17:21:07 +00:00
char * keyboard_layout_mapping ;
2018-08-23 07:10:54 +00:00
char * markov_hcstat2 ;
2019-05-01 13:52:56 +00:00
char * backend_devices ;
2017-04-10 20:35:01 +00:00
char * opencl_device_types ;
char * outfile ;
char * outfile_check_dir ;
char * potfile_path ;
char * restore_file_path ;
char * * rp_files ;
2021-08-14 09:43:32 +00:00
char * rp_gen_func_sel ;
2021-07-22 16:54:02 +00:00
char * separator ;
2017-04-10 20:35:01 +00:00
char * truecrypt_keyfiles ;
char * veracrypt_keyfiles ;
2018-09-01 10:31:17 +00:00
const char * custom_charset_1 ;
const char * custom_charset_2 ;
const char * custom_charset_3 ;
const char * encoding_from ;
const char * encoding_to ;
const char * rule_buf_l ;
const char * rule_buf_r ;
const char * session ;
2017-04-10 20:35:01 +00:00
u32 attack_mode ;
u32 bitmap_max ;
u32 bitmap_min ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
2020-01-11 09:46:11 +00:00
u32 brain_server_timer ;
2018-10-28 15:47:13 +00:00
u32 brain_client_features ;
u32 brain_port ;
u32 brain_session ;
u32 brain_attack ;
# endif
2017-04-10 20:35:01 +00:00
u32 debug_mode ;
2018-11-09 11:48:27 +00:00
u32 hwmon_temp_abort ;
2019-01-06 12:48:41 +00:00
int hash_mode ;
2017-04-10 20:35:01 +00:00
u32 hccapx_message_pair ;
2019-11-02 09:29:34 +00:00
u32 hook_threads ;
2017-04-10 20:35:01 +00:00
u32 increment_max ;
u32 increment_min ;
u32 kernel_accel ;
u32 kernel_loops ;
2018-11-06 15:06:06 +00:00
u32 kernel_threads ;
2017-04-10 20:35:01 +00:00
u32 markov_threshold ;
u32 nonce_error_corrections ;
2018-11-20 11:32:24 +00:00
u32 spin_damp ;
2019-05-01 13:52:56 +00:00
u32 backend_vector_width ;
2017-04-10 20:35:01 +00:00
u32 outfile_check_timer ;
u32 outfile_format ;
u32 remove_timer ;
u32 restore_timer ;
u32 rp_files_cnt ;
u32 rp_gen ;
u32 rp_gen_func_max ;
u32 rp_gen_func_min ;
u32 rp_gen_seed ;
u32 runtime ;
u32 scrypt_tmto ;
u32 segment_size ;
u32 status_timer ;
2018-10-31 10:37:06 +00:00
u32 stdin_timeout_abort ;
2019-03-15 20:48:49 +00:00
u32 veracrypt_pim_start ;
u32 veracrypt_pim_stop ;
2017-04-10 20:35:01 +00:00
u32 workload_profile ;
u64 limit ;
u64 skip ;
2016-10-02 21:30:31 +00:00
2016-09-20 14:04:22 +00:00
} user_options_t ;
2016-10-01 09:54:00 +00:00
typedef struct user_options_extra
2016-09-21 09:09:12 +00:00
{
u32 attack_kern ;
2016-09-21 14:07:49 +00:00
u32 rule_len_r ;
u32 rule_len_l ;
2016-09-21 14:25:36 +00:00
u32 wordlist_mode ;
2021-07-22 16:54:02 +00:00
char separator ;
2016-10-02 21:30:31 +00:00
char * hc_hash ; // can be filename or string
int hc_workc ; // can be 0 in bf-mode = default mask
char * * hc_workv ;
2016-09-21 09:09:12 +00:00
} user_options_extra_t ;
2021-06-26 18:24:45 +00:00
typedef struct brain_ctx
{
bool support ; // general brain support compiled in (server or client)
bool enabled ; // brain support required by user request on command line
} brain_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct bitmap_ctx
2016-09-22 14:23:36 +00:00
{
2016-09-30 09:48:14 +00:00
bool enabled ;
2016-09-22 14:23:36 +00:00
u32 bitmap_bits ;
u32 bitmap_nums ;
u32 bitmap_size ;
u32 bitmap_mask ;
u32 bitmap_shift1 ;
u32 bitmap_shift2 ;
u32 * bitmap_s1_a ;
u32 * bitmap_s1_b ;
u32 * bitmap_s1_c ;
u32 * bitmap_s1_d ;
u32 * bitmap_s2_a ;
u32 * bitmap_s2_b ;
u32 * bitmap_s2_c ;
u32 * bitmap_s2_d ;
} bitmap_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct folder_config
2016-09-21 21:06:11 +00:00
{
char * cwd ;
char * install_dir ;
char * profile_dir ;
2021-06-04 22:17:13 +00:00
char * cache_dir ;
2016-09-21 21:06:11 +00:00
char * session_dir ;
char * shared_dir ;
char * cpath_real ;
} folder_config_t ;
2016-10-01 09:54:00 +00:00
typedef struct induct_ctx
2016-09-22 15:06:53 +00:00
{
bool enabled ;
char * root_directory ;
char * * induction_dictionaries ;
int induction_dictionaries_cnt ;
2016-09-29 12:46:51 +00:00
int induction_dictionaries_pos ;
2016-09-22 15:06:53 +00:00
} induct_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct outcheck_ctx
2016-09-27 11:13:07 +00:00
{
bool enabled ;
char * root_directory ;
} outcheck_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct straight_ctx
2016-09-27 11:13:07 +00:00
{
bool enabled ;
u32 kernel_rules_cnt ;
kernel_rule_t * kernel_rules_buf ;
2016-09-29 12:46:51 +00:00
char * * dicts ;
u32 dicts_pos ;
u32 dicts_cnt ;
u32 dicts_avail ;
char * dict ;
2016-09-27 11:13:07 +00:00
} straight_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct combinator_ctx
2016-09-27 16:32:09 +00:00
{
bool enabled ;
2016-09-29 12:46:51 +00:00
char * dict1 ;
char * dict2 ;
2016-09-27 16:32:09 +00:00
u32 combs_mode ;
2017-02-22 11:28:23 +00:00
u64 combs_cnt ;
2016-09-27 16:32:09 +00:00
} combinator_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct mask_ctx
2016-09-25 23:18:00 +00:00
{
2016-09-26 13:11:46 +00:00
bool enabled ;
2019-08-21 12:57:41 +00:00
cs_t * mp_sys ;
cs_t * mp_usr ;
2016-09-25 23:18:00 +00:00
2016-09-26 15:50:47 +00:00
u64 bfs_cnt ;
2016-09-25 23:18:00 +00:00
2019-08-21 12:57:41 +00:00
cs_t * css_buf ;
2016-09-25 23:18:00 +00:00
u32 css_cnt ;
hcstat_table_t * root_table_buf ;
hcstat_table_t * markov_table_buf ;
cs_t * root_css_buf ;
cs_t * markov_css_buf ;
bool mask_from_file ;
char * * masks ;
u32 masks_pos ;
u32 masks_cnt ;
u32 masks_avail ;
2019-08-21 12:57:41 +00:00
char * mask ;
2016-09-25 23:18:00 +00:00
2016-09-27 18:02:12 +00:00
mf_t * mfs ;
2016-09-25 23:18:00 +00:00
} mask_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct cpt_ctx
2016-09-29 13:19:12 +00:00
{
2016-09-30 09:48:14 +00:00
bool enabled ;
2017-08-16 17:43:41 +00:00
cpt_t * cpt_buf ;
int cpt_pos ;
2017-12-10 00:40:45 +00:00
time_t cpt_start ;
2017-08-16 17:43:41 +00:00
u64 cpt_total ;
2016-09-29 13:19:12 +00:00
} cpt_ctx_t ;
2017-06-04 19:23:55 +00:00
typedef struct device_info
2016-11-02 21:45:39 +00:00
{
bool skipped_dev ;
2019-03-04 09:29:57 +00:00
bool skipped_warning_dev ;
2016-11-02 21:45:39 +00:00
double hashes_msec_dev ;
double hashes_msec_dev_benchmark ;
double exec_msec_dev ;
char * speed_sec_dev ;
2017-03-24 22:39:09 +00:00
char * guess_candidates_dev ;
2021-06-19 18:32:07 +00:00
# if defined(__APPLE__)
char * hwmon_fan_dev ;
# endif
2016-11-02 21:45:39 +00:00
char * hwmon_dev ;
2016-11-10 16:50:29 +00:00
int corespeed_dev ;
int memoryspeed_dev ;
2016-12-09 22:44:43 +00:00
double runtime_msec_dev ;
2018-02-08 18:13:29 +00:00
u64 progress_dev ;
2018-02-02 22:22:21 +00:00
int kernel_accel_dev ;
int kernel_loops_dev ;
int kernel_threads_dev ;
int vector_width_dev ;
2018-08-17 23:41:07 +00:00
int salt_pos_dev ;
int innerloop_pos_dev ;
2018-08-18 00:17:42 +00:00
int innerloop_left_dev ;
2018-08-17 23:41:07 +00:00
int iteration_pos_dev ;
2018-08-18 00:17:42 +00:00
int iteration_left_dev ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
int brain_link_client_id_dev ;
int brain_link_status_dev ;
char * brain_link_recv_bytes_dev ;
char * brain_link_send_bytes_dev ;
char * brain_link_recv_bytes_sec_dev ;
char * brain_link_send_bytes_sec_dev ;
double brain_link_time_recv_dev ;
double brain_link_time_send_dev ;
# endif
2016-11-02 21:45:39 +00:00
} device_info_t ;
2017-06-04 19:23:55 +00:00
typedef struct hashcat_status
2016-11-02 21:45:39 +00:00
{
2019-01-21 09:00:44 +00:00
char * hash_target ;
char * hash_name ;
2017-04-10 20:35:01 +00:00
int guess_mode ;
char * guess_base ;
int guess_base_offset ;
int guess_base_count ;
double guess_base_percent ;
char * guess_mod ;
int guess_mod_offset ;
int guess_mod_count ;
double guess_mod_percent ;
char * guess_charset ;
int guess_mask_length ;
char * session ;
2018-10-28 15:47:13 +00:00
# ifdef WITH_BRAIN
int brain_session ;
int brain_attack ;
2019-06-15 22:46:40 +00:00
char * brain_rx_all ;
char * brain_tx_all ;
2018-10-28 15:47:13 +00:00
# endif
2017-11-14 04:46:26 +00:00
const char * status_string ;
2017-04-10 20:35:01 +00:00
int status_number ;
char * time_estimated_absolute ;
char * time_estimated_relative ;
char * time_started_absolute ;
char * time_started_relative ;
double msec_paused ;
double msec_running ;
double msec_real ;
int digests_cnt ;
int digests_done ;
double digests_percent ;
int salts_cnt ;
int salts_done ;
double salts_percent ;
int progress_mode ;
double progress_finished_percent ;
u64 progress_cur ;
u64 progress_cur_relative_skip ;
u64 progress_done ;
u64 progress_end ;
u64 progress_end_relative_skip ;
u64 progress_ignore ;
u64 progress_rejected ;
double progress_rejected_percent ;
u64 progress_restored ;
u64 progress_skip ;
u64 restore_point ;
u64 restore_total ;
double restore_percent ;
int cpt_cur_min ;
int cpt_cur_hour ;
int cpt_cur_day ;
double cpt_avg_min ;
double cpt_avg_hour ;
double cpt_avg_day ;
char * cpt ;
2016-11-02 21:45:39 +00:00
device_info_t device_info_buf [ DEVICES_MAX ] ;
int device_info_cnt ;
int device_info_active ;
double hashes_msec_all ;
double exec_msec_all ;
char * speed_sec_all ;
} hashcat_status_t ;
2016-10-01 09:54:00 +00:00
typedef struct status_ctx
2016-09-29 20:27:04 +00:00
{
2016-09-29 21:49:33 +00:00
/**
* main status
*/
2016-10-29 13:12:45 +00:00
bool accessible ;
2016-09-29 21:25:29 +00:00
u32 devices_status ;
2016-11-02 21:45:39 +00:00
/**
* full ( final ) status snapshot
*/
hashcat_status_t * hashcat_status_final ;
2016-09-29 21:49:33 +00:00
/**
* thread control
*/
2016-10-14 17:25:13 +00:00
bool run_main_level1 ;
2016-09-29 21:25:29 +00:00
bool run_main_level2 ;
bool run_main_level3 ;
bool run_thread_level1 ;
bool run_thread_level2 ;
2016-09-29 21:49:33 +00:00
bool shutdown_inner ;
bool shutdown_outer ;
2016-10-23 11:38:41 +00:00
bool checkpoint_shutdown ;
2021-05-05 20:53:04 +00:00
bool finish_shutdown ;
2016-10-23 11:38:41 +00:00
2016-09-29 21:49:33 +00:00
hc_thread_mutex_t mux_dispatcher ;
hc_thread_mutex_t mux_counter ;
hc_thread_mutex_t mux_hwmon ;
hc_thread_mutex_t mux_display ;
/**
* workload
*/
2016-10-20 19:27:42 +00:00
u64 words_off ; // used by dispatcher; get_work () as offset; attention: needs to be redone on in restore case!
u64 words_cur ; // used by dispatcher; the different to words_cur_next is that this counter guarantees that the work from zero to this counter has been actually computed
// has been finished actually, can be used for restore point therefore
u64 words_base ; // the unamplified max keyspace
u64 words_cnt ; // the amplified max keyspace
2016-09-29 21:49:33 +00:00
/**
* progress
*/
2016-10-23 11:38:41 +00:00
u64 * words_progress_done ; // progress number of words done per salt
u64 * words_progress_rejected ; // progress number of words rejected per salt
u64 * words_progress_restored ; // progress number of words restored per salt
2016-09-29 20:27:04 +00:00
2016-09-29 21:49:33 +00:00
/**
* timer
*/
2017-12-10 00:40:45 +00:00
time_t runtime_start ;
time_t runtime_stop ;
2016-09-29 21:49:33 +00:00
2016-10-23 11:38:41 +00:00
hc_timer_t timer_running ; // timer on current dict
hc_timer_t timer_paused ; // timer on current dict
2016-09-29 21:49:33 +00:00
2016-10-23 11:38:41 +00:00
double msec_paused ; // timer on current dict
2016-09-29 21:49:33 +00:00
2018-10-17 08:55:47 +00:00
/**
* read timeouts
*/
u32 stdin_read_timeout_cnt ;
2016-09-29 20:27:04 +00:00
} status_ctx_t ;
2016-10-07 14:56:44 +00:00
typedef struct hashcat_user
{
// use this for context specific data
2016-10-23 11:38:41 +00:00
// see main.c as how this example is used
2016-10-07 14:56:44 +00:00
int outer_threads_cnt ;
hc_thread_t * outer_threads ;
} hashcat_user_t ;
2016-10-23 12:06:52 +00:00
typedef struct cache_hit
{
2017-11-14 04:46:26 +00:00
const char * dictfile ;
2016-10-23 12:06:52 +00:00
2017-12-10 00:40:45 +00:00
struct stat stat ;
2016-10-23 12:06:52 +00:00
u64 cached_cnt ;
u64 keyspace ;
} cache_hit_t ;
typedef struct cache_generate
{
2017-11-14 04:46:26 +00:00
const char * dictfile ;
2016-10-23 12:06:52 +00:00
double percent ;
u64 comp ;
u64 cnt ;
u64 cnt2 ;
2017-12-10 00:40:45 +00:00
time_t runtime ;
2017-05-23 08:07:04 +00:00
2016-10-23 12:06:52 +00:00
} cache_generate_t ;
2016-10-23 12:49:40 +00:00
typedef struct hashlist_parse
{
2018-02-08 18:13:29 +00:00
u64 hashes_cnt ;
u64 hashes_avail ;
2016-10-23 12:49:40 +00:00
} hashlist_parse_t ;
2016-10-23 15:31:22 +00:00
# define MAX_OLD_EVENTS 10
2016-10-08 21:16:40 +00:00
typedef struct event_ctx
{
2019-04-08 15:36:26 +00:00
char old_buf [ MAX_OLD_EVENTS ] [ HCBUFSIZ_SMALL ] ;
2018-02-08 18:13:29 +00:00
size_t old_len [ MAX_OLD_EVENTS ] ;
int old_cnt ;
2016-10-23 15:31:22 +00:00
2019-04-08 15:36:26 +00:00
char msg_buf [ HCBUFSIZ_SMALL ] ;
2018-02-08 18:13:29 +00:00
size_t msg_len ;
bool msg_newline ;
2016-10-13 17:16:24 +00:00
2018-02-08 18:13:29 +00:00
size_t prev_len ;
2016-10-08 21:16:40 +00:00
hc_thread_mutex_t mux_event ;
} event_ctx_t ;
2019-01-12 14:05:33 +00:00
# define MODULE_DEFAULT (void *) -1
2019-01-05 19:17:12 +00:00
2019-01-14 09:11:23 +00:00
typedef void ( * MODULE_INIT ) ( void * ) ;
2018-12-14 11:22:13 +00:00
typedef struct module_ctx
{
2019-01-12 14:05:33 +00:00
size_t module_context_size ;
2019-01-11 23:39:13 +00:00
int module_interface_version ;
2018-12-19 12:43:45 +00:00
2019-01-14 09:11:23 +00:00
hc_dynlib_t module_handle ;
MODULE_INIT module_init ;
2018-12-20 11:59:56 +00:00
2020-08-29 14:12:15 +00:00
void * * hook_extra_params ; // free for module to use (for instance: library handles)
2018-12-20 11:59:56 +00:00
u32 ( * module_attack_exec ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
void * ( * module_benchmark_esalt ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
void * ( * module_benchmark_hook_salt ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
const char * ( * module_benchmark_mask ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
salt_t * ( * module_benchmark_salt ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2021-08-10 15:59:52 +00:00
const char * ( * module_deprecated_notice ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
u32 ( * module_dgst_pos0 ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_dgst_pos1 ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_dgst_pos2 ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_dgst_pos3 ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_dgst_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2021-08-10 15:59:52 +00:00
bool ( * module_dictstat_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
u64 ( * module_esalt_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2021-08-01 14:25:37 +00:00
const char * ( * module_extra_tuningdb_block ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
u32 ( * module_forced_outfile_format ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2019-01-05 20:02:19 +00:00
u32 ( * module_hash_category ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
const char * ( * module_hash_name ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2019-01-06 12:48:41 +00:00
int ( * module_hash_mode ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2019-05-19 12:46:05 +00:00
u32 ( * module_hashes_count_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_hashes_count_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
bool ( * module_hlfmt_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u64 ( * module_hook_salt_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u64 ( * module_hook_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2019-01-05 17:24:37 +00:00
u32 ( * module_kernel_accel_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_kernel_accel_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_kernel_loops_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_kernel_loops_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_kernel_threads_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_kernel_threads_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2018-12-20 11:59:56 +00:00
u64 ( * module_kern_type ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_opti_type ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u64 ( * module_opts_type ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_outfile_check_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_outfile_check_nocomp ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_potfile_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_potfile_keep_all_hashes ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_pwdump_column ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_pw_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_pw_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_salt_min ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_salt_max ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u32 ( * module_salt_type ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
char ( * module_separator ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
const char * ( * module_st_hash ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
const char * ( * module_st_pass ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
u64 ( * module_tmp_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_warmup_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
2019-01-08 14:55:11 +00:00
int ( * module_hash_binary_count ) ( const hashes_t * ) ;
int ( * module_hash_binary_parse ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , hashes_t * ) ;
int ( * module_hash_binary_save ) ( const hashes_t * , const u32 , const u32 , char * * ) ;
2019-01-25 10:14:04 +00:00
2019-04-02 09:24:22 +00:00
int ( * module_hash_decode_potfile ) ( const hashconfig_t * , void * , salt_t * , void * , void * , hashinfo_t * , const char * , const int , void * ) ;
2019-01-25 10:14:04 +00:00
int ( * module_hash_decode_zero_hash ) ( const hashconfig_t * , void * , salt_t * , void * , void * , hashinfo_t * ) ;
int ( * module_hash_decode ) ( const hashconfig_t * , void * , salt_t * , void * , void * , hashinfo_t * , const char * , const int ) ;
2019-04-01 10:32:11 +00:00
int ( * module_hash_encode_potfile ) ( const hashconfig_t * , const void * , const salt_t * , const void * , const void * , const hashinfo_t * , char * , int , const void * ) ;
2019-01-25 10:14:04 +00:00
int ( * module_hash_encode_status ) ( const hashconfig_t * , const void * , const salt_t * , const void * , const void * , const hashinfo_t * , char * , int ) ;
int ( * module_hash_encode ) ( const hashconfig_t * , const void * , const salt_t * , const void * , const void * , const hashinfo_t * , char * , int ) ;
2018-12-20 11:59:56 +00:00
2019-02-02 10:11:27 +00:00
u64 ( * module_kern_type_dynamic ) ( const hashconfig_t * , const void * , const salt_t * , const void * , const void * , const hashinfo_t * ) ;
2019-01-04 10:23:48 +00:00
u64 ( * module_extra_buffer_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const hashes_t * , const hc_device_param_t * ) ;
2019-01-28 13:05:58 +00:00
u64 ( * module_extra_tmp_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const hashes_t * ) ;
2019-01-04 10:23:48 +00:00
char * ( * module_jit_build_options ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const hashes_t * , const hc_device_param_t * ) ;
2019-03-02 10:12:13 +00:00
bool ( * module_jit_cache_disable ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const hashes_t * , const hc_device_param_t * ) ;
2019-01-05 17:44:43 +00:00
u32 ( * module_deep_comp_kernel ) ( const hashes_t * , const u32 , const u32 ) ;
2019-01-07 09:05:50 +00:00
int ( * module_hash_init_selftest ) ( const hashconfig_t * , hash_t * ) ;
2019-01-05 17:44:43 +00:00
2020-08-29 14:12:15 +00:00
u64 ( * module_hook_extra_param_size ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * ) ;
bool ( * module_hook_extra_param_init ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const folder_config_t * , const backend_ctx_t * , void * ) ;
bool ( * module_hook_extra_param_term ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const folder_config_t * , const backend_ctx_t * , void * ) ;
void ( * module_hook12 ) ( hc_device_param_t * , const void * , const void * , const u32 , const u64 ) ;
void ( * module_hook23 ) ( hc_device_param_t * , const void * , const void * , const u32 , const u64 ) ;
2018-12-19 09:58:06 +00:00
2019-03-30 15:32:11 +00:00
int ( * module_build_plain_postprocess ) ( const hashconfig_t * , const hashes_t * , const void * , const u32 * , const size_t , const int , u32 * , const size_t ) ;
2019-01-03 14:43:19 +00:00
2019-03-02 10:12:13 +00:00
bool ( * module_unstable_warning ) ( const hashconfig_t * , const user_options_t * , const user_options_extra_t * , const hc_device_param_t * ) ;
2019-04-02 09:24:22 +00:00
bool ( * module_potfile_custom_check ) ( const hashconfig_t * , const hash_t * , const hash_t * , const void * ) ;
2018-12-14 11:22:13 +00:00
} module_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct hashcat_ctx
2016-09-16 15:01:18 +00:00
{
2021-06-26 18:24:45 +00:00
brain_ctx_t * brain_ctx ;
2016-09-28 09:55:02 +00:00
bitmap_ctx_t * bitmap_ctx ;
combinator_ctx_t * combinator_ctx ;
2016-09-29 13:19:12 +00:00
cpt_ctx_t * cpt_ctx ;
2016-09-28 09:55:02 +00:00
debugfile_ctx_t * debugfile_ctx ;
2016-09-30 20:52:44 +00:00
dictstat_ctx_t * dictstat_ctx ;
2016-10-08 21:16:40 +00:00
event_ctx_t * event_ctx ;
2016-09-30 20:52:44 +00:00
folder_config_t * folder_config ;
2016-10-07 14:56:44 +00:00
hashcat_user_t * hashcat_user ;
2016-09-28 09:55:02 +00:00
hashconfig_t * hashconfig ;
hashes_t * hashes ;
2016-09-28 13:26:56 +00:00
hwmon_ctx_t * hwmon_ctx ;
2016-09-28 09:55:02 +00:00
induct_ctx_t * induct_ctx ;
logfile_ctx_t * logfile_ctx ;
loopback_ctx_t * loopback_ctx ;
mask_ctx_t * mask_ctx ;
2018-12-14 11:22:13 +00:00
module_ctx_t * module_ctx ;
2019-04-25 12:45:17 +00:00
backend_ctx_t * backend_ctx ;
2016-09-28 09:55:02 +00:00
outcheck_ctx_t * outcheck_ctx ;
outfile_ctx_t * outfile_ctx ;
2017-01-27 15:29:18 +00:00
pidfile_ctx_t * pidfile_ctx ;
2016-09-28 09:55:02 +00:00
potfile_ctx_t * potfile_ctx ;
restore_ctx_t * restore_ctx ;
2016-09-29 20:27:04 +00:00
status_ctx_t * status_ctx ;
2016-09-28 09:55:02 +00:00
straight_ctx_t * straight_ctx ;
2016-09-30 10:58:06 +00:00
tuning_db_t * tuning_db ;
2016-09-28 09:55:02 +00:00
user_options_extra_t * user_options_extra ;
user_options_t * user_options ;
2016-09-30 20:52:44 +00:00
wl_data_t * wl_data ;
2016-10-12 09:27:10 +00:00
void ( * event ) ( const u32 , struct hashcat_ctx * , const void * , const size_t ) ;
2016-10-07 14:56:44 +00:00
2016-09-30 20:52:44 +00:00
} hashcat_ctx_t ;
2016-10-01 09:54:00 +00:00
typedef struct thread_param
2016-09-30 20:52:44 +00:00
{
u32 tid ;
hashcat_ctx_t * hashcat_ctx ;
2016-09-28 09:55:02 +00:00
2016-09-30 20:52:44 +00:00
} thread_param_t ;
2016-09-16 15:01:18 +00:00
2019-11-03 11:05:52 +00:00
typedef struct hook_thread_param
{
int tid ;
int tsz ;
module_ctx_t * module_ctx ;
2019-11-15 13:42:34 +00:00
status_ctx_t * status_ctx ;
2019-11-03 11:05:52 +00:00
hc_device_param_t * device_param ;
2020-08-29 14:12:15 +00:00
void * hook_extra_param ;
2019-11-03 11:05:52 +00:00
void * hook_salts_buf ;
u32 salt_pos ;
u64 pws_cnt ;
} hook_thread_param_t ;
2018-06-30 08:39:28 +00:00
# define MAX_TOKENS 128
# define MAX_SIGNATURES 16
2018-06-23 14:00:49 +00:00
typedef struct token
{
int token_cnt ;
2018-06-30 08:39:28 +00:00
int signatures_cnt ;
const char * signatures_buf [ MAX_SIGNATURES ] ;
2018-06-23 20:32:49 +00:00
2018-06-23 14:00:49 +00:00
int sep [ MAX_TOKENS ] ;
2018-12-06 13:02:10 +00:00
const u8 * buf [ MAX_TOKENS ] ;
2018-06-23 14:00:49 +00:00
int len [ MAX_TOKENS ] ;
2018-06-23 20:32:49 +00:00
int len_min [ MAX_TOKENS ] ;
int len_max [ MAX_TOKENS ] ;
2018-06-23 14:00:49 +00:00
int attr [ MAX_TOKENS ] ;
2018-12-06 13:02:10 +00:00
const u8 * opt_buf ;
2018-06-27 09:12:35 +00:00
int opt_len ;
2018-06-23 14:00:49 +00:00
} token_t ;
2019-01-12 14:33:46 +00:00
/**
* hash category is relevant in usage . c ( - - help screen )
*/
2019-01-05 20:02:19 +00:00
typedef enum hash_category
{
2019-01-06 12:23:45 +00:00
HASH_CATEGORY_UNDEFINED = 0 ,
HASH_CATEGORY_RAW_HASH = 1 ,
HASH_CATEGORY_RAW_HASH_SALTED = 2 ,
HASH_CATEGORY_RAW_HASH_AUTHENTICATED = 3 ,
2019-01-31 14:19:21 +00:00
HASH_CATEGORY_RAW_CHECKSUM = 4 ,
HASH_CATEGORY_RAW_CIPHER_KPA = 5 ,
HASH_CATEGORY_GENERIC_KDF = 6 ,
HASH_CATEGORY_NETWORK_PROTOCOL = 7 ,
HASH_CATEGORY_OS = 8 ,
HASH_CATEGORY_DATABASE_SERVER = 9 ,
HASH_CATEGORY_NETWORK_SERVER = 10 ,
HASH_CATEGORY_EAS = 11 ,
HASH_CATEGORY_FDE = 12 ,
HASH_CATEGORY_DOCUMENTS = 13 ,
HASH_CATEGORY_PASSWORD_MANAGER = 14 ,
HASH_CATEGORY_ARCHIVE = 15 ,
HASH_CATEGORY_FORUM_SOFTWARE = 16 ,
HASH_CATEGORY_OTP = 17 ,
HASH_CATEGORY_PLAIN = 18 ,
2019-08-12 09:25:21 +00:00
HASH_CATEGORY_FRAMEWORK = 19 ,
2020-07-30 10:25:46 +00:00
HASH_CATEGORY_PRIVATE_KEY = 20 ,
2021-05-28 18:06:01 +00:00
HASH_CATEGORY_IMS = 21 ,
2021-06-05 13:32:28 +00:00
HASH_CATEGORY_CRYPTOCURRENCY_WALLET = 22 ,
2021-06-10 08:31:27 +00:00
HASH_CATEGORY_FBE = 23
2019-01-05 20:02:19 +00:00
} hash_category_t ;
2019-01-08 14:55:11 +00:00
2019-03-21 22:00:38 +00:00
// hash specific
typedef aes_ctx AES_KEY ;
2020-10-20 14:27:29 +00:00
# endif // _TYPES_H