mirror of
https://github.com/hashcat/hashcat.git
synced 2024-11-15 12:29:35 +00:00
Use dedicated variables to control shutdown of parallel threads like keypress and monitoring
This commit is contained in:
parent
cf9c184cd5
commit
115c95eb02
@ -1123,6 +1123,9 @@ typedef struct
|
||||
|
||||
hc_device_param_t *devices_param;
|
||||
|
||||
uint shutdown_inner;
|
||||
uint shutdown_outer;
|
||||
|
||||
/**
|
||||
* workload specific
|
||||
*/
|
||||
|
@ -1,4 +1,4 @@
|
||||
/**
|
||||
/**
|
||||
* Authors.....: Jens Steube <jens.steube@gmail.com>
|
||||
* Gabriele Gristina <matrix@hashcat.net>
|
||||
* magnum <john.magnum@hushmail.com>
|
||||
@ -3045,6 +3045,7 @@ static void choose_kernel (hc_device_param_t *device_param, const uint attack_ex
|
||||
if (data.devices_status == STATUS_CRACKED) break;
|
||||
if (data.devices_status == STATUS_ABORTED) break;
|
||||
if (data.devices_status == STATUS_QUIT) break;
|
||||
if (data.devices_status == STATUS_BYPASS) break;
|
||||
|
||||
/**
|
||||
* speed
|
||||
@ -3701,6 +3702,7 @@ static void run_cracker (hc_device_param_t *device_param, const uint pws_cnt)
|
||||
if (data.devices_status == STATUS_CRACKED) break;
|
||||
if (data.devices_status == STATUS_ABORTED) break;
|
||||
if (data.devices_status == STATUS_QUIT) break;
|
||||
if (data.devices_status == STATUS_BYPASS) break;
|
||||
|
||||
/**
|
||||
* result
|
||||
@ -4163,7 +4165,7 @@ static void *thread_monitor (void *p)
|
||||
return (p);
|
||||
}
|
||||
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while (data.shutdown_inner == 0)
|
||||
{
|
||||
hc_sleep (sleep_time);
|
||||
|
||||
@ -4452,7 +4454,7 @@ static void *thread_outfile_remove (void *p)
|
||||
|
||||
uint check_left = outfile_check_timer; // or 1 if we want to check it at startup
|
||||
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while (data.shutdown_inner == 0)
|
||||
{
|
||||
hc_sleep (1);
|
||||
|
||||
@ -4830,7 +4832,7 @@ static void *thread_calc_stdin (void *p)
|
||||
|
||||
const uint attack_kern = data.attack_kern;
|
||||
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
hc_thread_mutex_lock (mux_dispatcher);
|
||||
|
||||
@ -4958,7 +4960,7 @@ static void *thread_calc (void *p)
|
||||
|
||||
if (attack_mode == ATTACK_MODE_BF)
|
||||
{
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
const uint work = get_work (device_param, -1);
|
||||
|
||||
@ -5070,7 +5072,7 @@ static void *thread_calc (void *p)
|
||||
|
||||
u64 words_cur = 0;
|
||||
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
u64 words_off = 0;
|
||||
u64 words_fin = 0;
|
||||
@ -7362,6 +7364,8 @@ int main (int argc, char **argv)
|
||||
|
||||
hc_thread_t *outer_threads = (hc_thread_t *) mycalloc (10, sizeof (hc_thread_t));
|
||||
|
||||
data.shutdown_outer = 0;
|
||||
|
||||
if (keyspace == 0 && benchmark == 0 && stdout_flag == 0)
|
||||
{
|
||||
if ((data.wordlist_mode == WL_MODE_FILE) || (data.wordlist_mode == WL_MODE_MASK))
|
||||
@ -7370,10 +7374,6 @@ int main (int argc, char **argv)
|
||||
|
||||
outer_threads_cnt++;
|
||||
}
|
||||
|
||||
hc_thread_create (outer_threads[outer_threads_cnt], thread_monitor, NULL);
|
||||
|
||||
outer_threads_cnt++;
|
||||
}
|
||||
|
||||
/**
|
||||
@ -17203,7 +17203,7 @@ int main (int argc, char **argv)
|
||||
* status and monitor threads
|
||||
*/
|
||||
|
||||
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
if ((data.devices_status != STATUS_BYPASS) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
data.devices_status = STATUS_STARTING;
|
||||
}
|
||||
@ -17212,12 +17212,18 @@ int main (int argc, char **argv)
|
||||
|
||||
hc_thread_t *inner_threads = (hc_thread_t *) mycalloc (10, sizeof (hc_thread_t));
|
||||
|
||||
data.shutdown_inner = 0;
|
||||
|
||||
/**
|
||||
* Outfile remove
|
||||
*/
|
||||
|
||||
if (keyspace == 0 && benchmark == 0 && stdout_flag == 0)
|
||||
{
|
||||
hc_thread_create (inner_threads[inner_threads_cnt], thread_monitor, NULL);
|
||||
|
||||
inner_threads_cnt++;
|
||||
|
||||
if (outfile_check_timer != 0)
|
||||
{
|
||||
if (data.outfile_check_directory != NULL)
|
||||
@ -17530,7 +17536,7 @@ int main (int argc, char **argv)
|
||||
|
||||
logfile_sub_msg ("START");
|
||||
|
||||
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
if ((data.devices_status != STATUS_BYPASS) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
data.devices_status = STATUS_INIT;
|
||||
}
|
||||
@ -18061,7 +18067,7 @@ int main (int argc, char **argv)
|
||||
|
||||
hc_thread_t *c_threads = (hc_thread_t *) mycalloc (data.devices_cnt, sizeof (hc_thread_t));
|
||||
|
||||
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
if ((data.devices_status != STATUS_BYPASS) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
data.devices_status = STATUS_AUTOTUNE;
|
||||
}
|
||||
@ -18118,7 +18124,7 @@ int main (int argc, char **argv)
|
||||
* create cracker threads
|
||||
*/
|
||||
|
||||
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
if ((data.devices_status != STATUS_BYPASS) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
data.devices_status = STATUS_RUNNING;
|
||||
}
|
||||
@ -18170,7 +18176,7 @@ int main (int argc, char **argv)
|
||||
|
||||
local_free (c_threads);
|
||||
|
||||
if ((data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
if ((data.devices_status != STATUS_BYPASS) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
{
|
||||
data.devices_status = STATUS_EXHAUSTED;
|
||||
}
|
||||
@ -18314,7 +18320,9 @@ int main (int argc, char **argv)
|
||||
}
|
||||
}
|
||||
|
||||
// wait for non-interactive threads
|
||||
// wait for inner threads
|
||||
|
||||
data.shutdown_inner = 1;
|
||||
|
||||
for (uint thread_idx = 0; thread_idx < inner_threads_cnt; thread_idx++)
|
||||
{
|
||||
@ -18636,7 +18644,9 @@ int main (int argc, char **argv)
|
||||
if (data.devices_status == STATUS_QUIT) break;
|
||||
}
|
||||
|
||||
// wait for interactive threads
|
||||
// wait for outer threads
|
||||
|
||||
data.shutdown_outer = 1;
|
||||
|
||||
for (uint thread_idx = 0; thread_idx < outer_threads_cnt; thread_idx++)
|
||||
{
|
||||
|
36
src/shared.c
36
src/shared.c
@ -9162,36 +9162,32 @@ void to_hccap_t (hccap_t *hccap, uint salt_pos, uint digest_pos)
|
||||
|
||||
void SuspendThreads ()
|
||||
{
|
||||
if (data.devices_status == STATUS_RUNNING)
|
||||
{
|
||||
hc_timer_set (&data.timer_paused);
|
||||
if (data.devices_status != STATUS_RUNNING) return;
|
||||
|
||||
data.devices_status = STATUS_PAUSED;
|
||||
hc_timer_set (&data.timer_paused);
|
||||
|
||||
log_info ("Paused");
|
||||
}
|
||||
data.devices_status = STATUS_PAUSED;
|
||||
|
||||
log_info ("Paused");
|
||||
}
|
||||
|
||||
void ResumeThreads ()
|
||||
{
|
||||
if (data.devices_status == STATUS_PAUSED)
|
||||
{
|
||||
double ms_paused;
|
||||
if (data.devices_status != STATUS_PAUSED) return;
|
||||
|
||||
hc_timer_get (data.timer_paused, ms_paused);
|
||||
double ms_paused;
|
||||
|
||||
data.ms_paused += ms_paused;
|
||||
hc_timer_get (data.timer_paused, ms_paused);
|
||||
|
||||
data.devices_status = STATUS_RUNNING;
|
||||
data.ms_paused += ms_paused;
|
||||
|
||||
log_info ("Resumed");
|
||||
}
|
||||
data.devices_status = STATUS_RUNNING;
|
||||
|
||||
log_info ("Resumed");
|
||||
}
|
||||
|
||||
void bypass ()
|
||||
{
|
||||
if (data.devices_status != STATUS_RUNNING) return;
|
||||
|
||||
data.devices_status = STATUS_BYPASS;
|
||||
|
||||
log_info ("Next dictionary / mask in queue selected, bypassing current one");
|
||||
@ -9239,17 +9235,11 @@ void stop_at_checkpoint ()
|
||||
|
||||
void myabort ()
|
||||
{
|
||||
//if (data.devices_status == STATUS_INIT) return;
|
||||
//if (data.devices_status == STATUS_STARTING) return;
|
||||
|
||||
data.devices_status = STATUS_ABORTED;
|
||||
}
|
||||
|
||||
void myquit ()
|
||||
{
|
||||
//if (data.devices_status == STATUS_INIT) return;
|
||||
//if (data.devices_status == STATUS_STARTING) return;
|
||||
|
||||
data.devices_status = STATUS_QUIT;
|
||||
}
|
||||
|
||||
@ -20806,7 +20796,7 @@ void *thread_keypress (void *p)
|
||||
|
||||
tty_break();
|
||||
|
||||
while ((data.devices_status != STATUS_EXHAUSTED) && (data.devices_status != STATUS_CRACKED) && (data.devices_status != STATUS_ABORTED) && (data.devices_status != STATUS_QUIT))
|
||||
while (data.shutdown_outer == 0)
|
||||
{
|
||||
int ch = tty_getchar();
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user