2016-09-08 16:56:33 +00:00
|
|
|
/**
|
2016-09-11 20:20:15 +00:00
|
|
|
* Author......: See docs/credits.txt
|
2016-09-08 16:56:33 +00:00
|
|
|
* License.....: MIT
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include "common.h"
|
2016-09-16 15:01:18 +00:00
|
|
|
#include "types.h"
|
2016-09-09 08:22:21 +00:00
|
|
|
#include "memory.h"
|
|
|
|
#include "logging.h"
|
2016-09-08 16:56:33 +00:00
|
|
|
#include "dictstat.h"
|
|
|
|
|
|
|
|
int sort_by_dictstat (const void *s1, const void *s2)
|
|
|
|
{
|
|
|
|
dictstat_t *d1 = (dictstat_t *) s1;
|
|
|
|
dictstat_t *d2 = (dictstat_t *) s2;
|
|
|
|
|
|
|
|
#if defined (__linux__)
|
|
|
|
d2->stat.st_atim = d1->stat.st_atim;
|
|
|
|
#else
|
|
|
|
d2->stat.st_atime = d1->stat.st_atime;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
return memcmp (&d1->stat, &d2->stat, sizeof (struct stat));
|
|
|
|
}
|
2016-09-09 08:22:21 +00:00
|
|
|
|
2016-09-24 11:01:17 +00:00
|
|
|
void dictstat_init (dictstat_ctx_t *dictstat_ctx, const user_options_t *user_options, const folder_config_t *folder_config)
|
2016-09-09 08:22:21 +00:00
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
dictstat_ctx->enabled = false;
|
|
|
|
|
2016-09-30 09:50:13 +00:00
|
|
|
if (user_options->benchmark == true) return;
|
|
|
|
if (user_options->keyspace == true) return;
|
|
|
|
if (user_options->left == true) return;
|
2016-09-30 11:14:11 +00:00
|
|
|
if (user_options->opencl_info == true) return;
|
2016-09-30 09:50:13 +00:00
|
|
|
if (user_options->show == true) return;
|
|
|
|
if (user_options->usage == true) return;
|
|
|
|
if (user_options->version == true) return;
|
|
|
|
|
|
|
|
if (user_options->attack_mode == ATTACK_MODE_BF) return;
|
|
|
|
|
|
|
|
dictstat_ctx->enabled = true;
|
2016-09-24 11:01:17 +00:00
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
dictstat_ctx->filename = (char *) mymalloc (HCBUFSIZ_TINY);
|
|
|
|
dictstat_ctx->base = (dictstat_t *) mycalloc (MAX_DICTSTAT, sizeof (dictstat_t));
|
|
|
|
dictstat_ctx->cnt = 0;
|
|
|
|
|
2016-09-24 19:44:43 +00:00
|
|
|
snprintf (dictstat_ctx->filename, HCBUFSIZ_TINY - 1, "%s/hashcat.dictstat", folder_config->profile_dir);
|
2016-09-09 08:22:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void dictstat_destroy (dictstat_ctx_t *dictstat_ctx)
|
|
|
|
{
|
2016-10-01 22:00:21 +00:00
|
|
|
if (dictstat_ctx->enabled == false) return;
|
2016-09-24 11:01:17 +00:00
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
myfree (dictstat_ctx->filename);
|
|
|
|
myfree (dictstat_ctx->base);
|
2016-09-30 09:50:13 +00:00
|
|
|
|
2016-10-01 22:00:21 +00:00
|
|
|
memset (dictstat_ctx, 0, sizeof (dictstat_ctx_t));
|
2016-09-09 08:22:21 +00:00
|
|
|
}
|
|
|
|
|
2016-10-02 23:27:55 +00:00
|
|
|
void dictstat_read (dictstat_ctx_t *dictstat_ctx)
|
2016-09-09 08:22:21 +00:00
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
if (dictstat_ctx->enabled == false) return;
|
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
FILE *fp = fopen (dictstat_ctx->filename, "rb");
|
|
|
|
|
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
// first run, file does not exist, do not error out
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
while (!feof (fp))
|
|
|
|
{
|
|
|
|
dictstat_t d;
|
|
|
|
|
|
|
|
const int nread = fread (&d, sizeof (dictstat_t), 1, fp);
|
|
|
|
|
|
|
|
if (nread == 0) continue;
|
|
|
|
|
|
|
|
lsearch (&d, dictstat_ctx->base, &dictstat_ctx->cnt, sizeof (dictstat_t), sort_by_dictstat);
|
|
|
|
|
|
|
|
if (dictstat_ctx->cnt == MAX_DICTSTAT)
|
|
|
|
{
|
|
|
|
log_error ("ERROR: There are too many entries in the %s database. You have to remove/rename it.", dictstat_ctx->filename);
|
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
}
|
|
|
|
|
|
|
|
int dictstat_write (dictstat_ctx_t *dictstat_ctx)
|
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
if (dictstat_ctx->enabled == false) return 0;
|
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
FILE *fp = fopen (dictstat_ctx->filename, "wb");
|
|
|
|
|
|
|
|
if (fp == NULL)
|
|
|
|
{
|
|
|
|
log_error ("ERROR: %s: %s", dictstat_ctx->filename, strerror (errno));
|
|
|
|
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
fwrite (dictstat_ctx->base, sizeof (dictstat_t), dictstat_ctx->cnt, fp);
|
|
|
|
|
|
|
|
fclose (fp);
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
u64 dictstat_find (dictstat_ctx_t *dictstat_ctx, dictstat_t *d)
|
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
if (dictstat_ctx->enabled == false) return 0;
|
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
dictstat_t *d_cache = (dictstat_t *) lfind (d, dictstat_ctx->base, &dictstat_ctx->cnt, sizeof (dictstat_t), sort_by_dictstat);
|
|
|
|
|
|
|
|
if (d_cache == NULL) return 0;
|
|
|
|
|
|
|
|
return d_cache->cnt;
|
|
|
|
}
|
|
|
|
|
|
|
|
void dictstat_append (dictstat_ctx_t *dictstat_ctx, dictstat_t *d)
|
|
|
|
{
|
2016-09-24 11:01:17 +00:00
|
|
|
if (dictstat_ctx->enabled == false) return;
|
|
|
|
|
2016-09-09 08:22:21 +00:00
|
|
|
if (dictstat_ctx->cnt == MAX_DICTSTAT)
|
|
|
|
{
|
|
|
|
log_error ("ERROR: There are too many entries in the %s database. You have to remove/rename it.", dictstat_ctx->filename);
|
|
|
|
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
lsearch (d, dictstat_ctx->base, &dictstat_ctx->cnt, sizeof (dictstat_t), sort_by_dictstat);
|
|
|
|
}
|