1
0
mirror of https://github.com/hashcat/hashcat.git synced 2024-11-13 19:28:56 +00:00
hashcat/src/logfile.c

114 lines
2.4 KiB
C
Raw Normal View History

/**
* Author......: See docs/credits.txt
* License.....: MIT
*/
#include "common.h"
#include "types.h"
#include "memory.h"
#include "event.h"
#include "logfile.h"
2016-11-05 10:33:29 +00:00
#include "locking.h"
static int logfile_generate_id (void)
2016-09-23 19:41:05 +00:00
{
const int n = rand ();
time_t t;
time (&t);
2016-09-23 19:41:05 +00:00
return t + n;
}
2016-10-06 14:25:24 +00:00
void logfile_generate_topid (hashcat_ctx_t *hashcat_ctx)
{
2016-10-06 14:25:24 +00:00
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
2016-09-23 19:41:05 +00:00
if (logfile_ctx->enabled == false) return;
2016-09-23 19:41:05 +00:00
const int id = logfile_generate_id ();
2016-09-23 19:41:05 +00:00
snprintf (logfile_ctx->topid, 1 + 16, "TOP%08x", id);
}
2016-10-06 14:25:24 +00:00
void logfile_generate_subid (hashcat_ctx_t *hashcat_ctx)
{
2016-10-06 14:25:24 +00:00
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
2016-09-23 19:41:05 +00:00
if (logfile_ctx->enabled == false) return;
2016-09-23 19:41:05 +00:00
const int id = logfile_generate_id ();
snprintf (logfile_ctx->subid, 1 + 16, "SUB%08x", id);
}
2016-10-06 14:25:24 +00:00
void logfile_append (hashcat_ctx_t *hashcat_ctx, const char *fmt, ...)
{
2016-10-06 14:25:24 +00:00
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
2016-09-23 19:41:05 +00:00
if (logfile_ctx->enabled == false) return;
2016-09-23 19:41:05 +00:00
FILE *fp = fopen (logfile_ctx->logfile, "ab");
2016-11-05 10:33:29 +00:00
lock_file (fp);
va_list ap;
va_start (ap, fmt);
vfprintf (fp, fmt, ap);
va_end (ap);
2016-10-25 10:40:47 +00:00
fwrite (EOL, strlen (EOL), 1, fp);
fflush (fp);
2016-09-23 19:41:05 +00:00
fclose (fp);
}
2016-10-06 15:26:15 +00:00
int logfile_init (hashcat_ctx_t *hashcat_ctx)
{
2016-10-06 14:25:24 +00:00
folder_config_t *folder_config = hashcat_ctx->folder_config;
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
user_options_t *user_options = hashcat_ctx->user_options;
2016-10-06 15:26:15 +00:00
if (user_options->logfile_disable == true) return 0;
logfile_ctx->logfile = (char *) hcmalloc (hashcat_ctx, HCBUFSIZ_TINY); VERIFY_PTR (logfile_ctx->logfile);
2016-09-23 19:41:05 +00:00
snprintf (logfile_ctx->logfile, HCBUFSIZ_TINY - 1, "%s/%s.log", folder_config->session_dir, user_options->session);
logfile_ctx->subid = (char *) hcmalloc (hashcat_ctx, HCBUFSIZ_TINY); VERIFY_PTR (logfile_ctx->subid);
logfile_ctx->topid = (char *) hcmalloc (hashcat_ctx, HCBUFSIZ_TINY); VERIFY_PTR (logfile_ctx->topid);
2016-09-23 19:41:05 +00:00
logfile_ctx->enabled = true;
2016-10-06 15:26:15 +00:00
2016-10-14 18:29:21 +00:00
FILE *fp = fopen (logfile_ctx->logfile, "ab");
2016-10-06 15:26:15 +00:00
if (fp == NULL)
{
2016-10-11 08:55:02 +00:00
event_log_error (hashcat_ctx, "%s: %s", logfile_ctx->logfile, strerror (errno));
2016-10-06 15:26:15 +00:00
return -1;
}
fclose (fp);
return 0;
}
2016-10-06 14:25:24 +00:00
void logfile_destroy (hashcat_ctx_t *hashcat_ctx)
{
2016-10-06 14:25:24 +00:00
logfile_ctx_t *logfile_ctx = hashcat_ctx->logfile_ctx;
if (logfile_ctx->enabled == false) return;
hcfree (logfile_ctx->logfile);
hcfree (logfile_ctx->topid);
hcfree (logfile_ctx->subid);
memset (logfile_ctx, 0, sizeof (logfile_ctx_t));
}