2016-09-11 09:42:19 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-11 09:42:19 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
2016-09-22 15:06:53 +00:00
|
|
|
#include "types.h"
|
|
|
|
#include "memory.h"
|
|
|
|
#include "logging.h"
|
|
|
|
#include "folder.h"
|
2016-09-11 09:42:19 +00:00
|
|
|
#include "induct.h"
|
2016-09-14 13:08:22 +00:00
|
|
|
|
2016-09-22 15:06:53 +00:00
|
|
|
static int sort_by_mtime (const void *p1, const void *p2)
|
2016-09-14 13:08:22 +00:00
|
|
|
{
|
|
|
|
const char **f1 = (const char **) p1;
|
|
|
|
const char **f2 = (const char **) p2;
|
|
|
|
|
|
|
|
struct stat s1; stat (*f1, &s1);
|
|
|
|
struct stat s2; stat (*f2, &s2);
|
|
|
|
|
|
|
|
return s2.st_mtime - s1.st_mtime;
|
|
|
|
}
|
2016-09-22 15:06:53 +00:00
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
int induct_ctx_init (induct_ctx_t *induct_ctx, const user_options_t *user_options, const folder_config_t *folder_config, const status_ctx_t *status_ctx)
|
2016-09-22 15:06:53 +00:00
|
|
|
{
|
|
|
|
induct_ctx->enabled = false;
|
|
|
|
|
|
|
|
if (user_options->benchmark == true) return 0;
|
2016-09-30 09:59:24 +00:00
|
|
|
if (user_options->keyspace == true) return 0;
|
|
|
|
if (user_options->left == true) return 0;
|
2016-09-30 11:14:11 +00:00
|
|
|
if (user_options->opencl_info == true) return 0;
|
2016-09-30 09:59:24 +00:00
|
|
|
if (user_options->show == true) return 0;
|
|
|
|
if (user_options->stdout_flag == true) return 0;
|
|
|
|
if (user_options->usage == true) return 0;
|
|
|
|
if (user_options->version == true) return 0;
|
|
|
|
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_BF) return 0;
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_COMBI) return 0;
|
|
|
|
|
|
|
|
induct_ctx->enabled = true;
|
2016-09-22 15:06:53 +00:00
|
|
|
|
|
|
|
if (user_options->induction_dir == NULL)
|
|
|
|
{
|
|
|
|
char *root_directory = (char *) mymalloc (HCBUFSIZ_TINY);
|
|
|
|
|
|
|
|
snprintf (root_directory, HCBUFSIZ_TINY - 1, "%s/%s.%s", folder_config->session_dir, user_options->session, INDUCT_DIR);
|
|
|
|
|
|
|
|
if (rmdir (root_directory) == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
// good, we can ignore
|
|
|
|
}
|
|
|
|
else if (errno == ENOTEMPTY)
|
|
|
|
{
|
|
|
|
char *root_directory_mv = (char *) mymalloc (HCBUFSIZ_TINY);
|
|
|
|
|
2016-09-29 21:49:33 +00:00
|
|
|
snprintf (root_directory_mv, HCBUFSIZ_TINY - 1, "%s/%s.induct.%d", folder_config->session_dir, user_options->session, (int) status_ctx->proc_start);
|
2016-09-22 15:06:53 +00:00
|
|
|
|
|
|
|
if (rename (root_directory, root_directory_mv) != 0)
|
|
|
|
{
|
|
|
|
log_error ("ERROR: Rename directory %s to %s: %s", root_directory, root_directory_mv, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log_error ("ERROR: %s: %s", root_directory, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-10-01 11:51:06 +00:00
|
|
|
if (hc_mkdir (root_directory, 0700) == -1)
|
2016-09-22 15:06:53 +00:00
|
|
|
{
|
|
|
|
log_error ("ERROR: %s: %s", root_directory, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
induct_ctx->root_directory = root_directory;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
induct_ctx->root_directory = mystrdup (user_options->induction_dir);
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void induct_ctx_scan (induct_ctx_t *induct_ctx)
|
|
|
|
{
|
|
|
|
if (induct_ctx->enabled == false) return;
|
|
|
|
|
|
|
|
induct_ctx->induction_dictionaries = scan_directory (induct_ctx->root_directory);
|
|
|
|
|
|
|
|
induct_ctx->induction_dictionaries_cnt = count_dictionaries (induct_ctx->induction_dictionaries);
|
|
|
|
|
2016-09-30 16:39:31 +00:00
|
|
|
qsort (induct_ctx->induction_dictionaries, (size_t) induct_ctx->induction_dictionaries_cnt, sizeof (char *), sort_by_mtime);
|
2016-09-22 15:06:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void induct_ctx_cleanup (induct_ctx_t *induct_ctx)
|
|
|
|
{
|
|
|
|
if (induct_ctx->enabled == false) return;
|
|
|
|
|
|
|
|
for (int file_pos = 0; file_pos < induct_ctx->induction_dictionaries_cnt; file_pos++)
|
|
|
|
{
|
|
|
|
struct stat induct_stat;
|
|
|
|
|
|
|
|
if (stat (induct_ctx->induction_dictionaries[file_pos], &induct_stat) == 0)
|
|
|
|
{
|
|
|
|
unlink (induct_ctx->induction_dictionaries[file_pos]);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void induct_ctx_destroy (induct_ctx_t *induct_ctx)
|
|
|
|
{
|
2016-10-01 22:00:21 +00:00
|
|
|
if (induct_ctx->enabled == false) return;
|
2016-09-22 15:06:53 +00:00
|
|
|
|
|
|
|
if (rmdir (induct_ctx->root_directory) == -1)
|
|
|
|
{
|
|
|
|
if (errno == ENOENT)
|
|
|
|
{
|
|
|
|
// good, we can ignore
|
|
|
|
}
|
|
|
|
else if (errno == ENOTEMPTY)
|
|
|
|
{
|
|
|
|
// good, we can ignore
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
log_error ("ERROR: %s: %s", induct_ctx->root_directory, strerror (errno));
|
|
|
|
|
|
|
|
//return -1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
myfree (induct_ctx->root_directory);
|
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
memset (induct_ctx, 0, sizeof (induct_ctx_t));
|
2016-09-22 15:06:53 +00:00
|
|
|
}
|