2021-06-07 00:17:03 +02:00
|
|
|
/*
|
2022-11-13 16:37:58 -05:00
|
|
|
* 86Box A hypervisor and IBM PC system emulator that specializes in
|
|
|
|
|
* running old operating systems and software designed for IBM
|
|
|
|
|
* PC systems and compatibles from 1981 through fairly recent
|
|
|
|
|
* system designs based on the PCI bus.
|
2021-06-07 00:17:03 +02:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* This file is part of the 86Box distribution.
|
2021-06-07 00:17:03 +02:00
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* The handler of the new logging system.
|
2021-06-07 00:17:03 +02:00
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Authors: Miran Grca, <mgrca8@gmail.com>
|
|
|
|
|
* Fred N. van Kempen, <decwiz@yahoo.com>
|
2025-01-14 00:31:13 +00:00
|
|
|
* Connor Hyde <mario64crashed@gmail.com, nomorestarfrost@gmail.com>
|
|
|
|
|
*
|
2022-11-13 16:37:58 -05:00
|
|
|
* Copyright 2021 Miran Grca.
|
|
|
|
|
* Copyright 2021 Fred N. van Kempen.
|
2025-01-14 00:31:13 +00:00
|
|
|
* Copyright 2025 Connor Hyde.
|
2021-06-07 00:17:03 +02:00
|
|
|
*/
|
|
|
|
|
#include <inttypes.h>
|
|
|
|
|
#include <stdarg.h>
|
2025-01-14 00:31:13 +00:00
|
|
|
#include <stdbool.h>
|
2021-06-07 00:17:03 +02:00
|
|
|
#include <stdio.h>
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <time.h>
|
|
|
|
|
#include <wchar.h>
|
|
|
|
|
|
|
|
|
|
#define HAVE_STDARG_H
|
|
|
|
|
#include <86box/86box.h>
|
|
|
|
|
#include <86box/config.h>
|
|
|
|
|
#include <86box/mem.h>
|
|
|
|
|
#include "cpu.h"
|
|
|
|
|
#include <86box/plat.h>
|
|
|
|
|
#include <86box/version.h>
|
|
|
|
|
#include <86box/log.h>
|
|
|
|
|
|
|
|
|
|
#ifndef RELEASE_BUILD
|
2023-06-28 13:46:28 -04:00
|
|
|
typedef struct log_t {
|
2025-01-14 00:31:13 +00:00
|
|
|
char buff[1024];
|
|
|
|
|
char *dev_name;
|
|
|
|
|
int seen;
|
|
|
|
|
int suppr_seen;
|
|
|
|
|
char cyclic_buff[LOG_SIZE_BUFFER_CYCLIC_LINES][LOG_SIZE_BUFFER]; // Cyclical log buffer. This is 32kb, might calloc?
|
|
|
|
|
int32_t cyclic_last_line;
|
|
|
|
|
int32_t log_cycles;
|
2021-06-07 00:17:03 +02:00
|
|
|
} log_t;
|
|
|
|
|
|
2022-09-18 17:11:43 -04:00
|
|
|
extern FILE *stdlog; /* file to log output to */
|
2025-01-14 00:31:13 +00:00
|
|
|
// Functions only used in this translation unit
|
|
|
|
|
void log_ensure_stdlog_open(void);
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
log_ensure_stdlog_open(void)
|
|
|
|
|
{
|
|
|
|
|
if (stdlog == NULL) {
|
|
|
|
|
if (log_path[0] != '\0') {
|
|
|
|
|
stdlog = plat_fopen(log_path, "w");
|
|
|
|
|
if (stdlog == NULL)
|
|
|
|
|
stdlog = stdout;
|
|
|
|
|
} else
|
|
|
|
|
stdlog = stdout;
|
|
|
|
|
}
|
|
|
|
|
}
|
2021-07-04 17:40:39 +02:00
|
|
|
|
2021-06-07 00:17:03 +02:00
|
|
|
void
|
|
|
|
|
log_set_suppr_seen(void *priv, int suppr_seen)
|
|
|
|
|
{
|
|
|
|
|
log_t *log = (log_t *) priv;
|
|
|
|
|
|
|
|
|
|
log->suppr_seen = suppr_seen;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
log_set_dev_name(void *priv, char *dev_name)
|
|
|
|
|
{
|
|
|
|
|
log_t *log = (log_t *) priv;
|
|
|
|
|
|
|
|
|
|
log->dev_name = dev_name;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void
|
|
|
|
|
log_copy(log_t *log, char *dest, const char *src, size_t dest_size)
|
|
|
|
|
{
|
|
|
|
|
memset(dest, 0x00, dest_size * sizeof(char));
|
|
|
|
|
if (log && log->dev_name && strcmp(log->dev_name, "")) {
|
2022-09-18 17:11:43 -04:00
|
|
|
strcat(dest, log->dev_name);
|
|
|
|
|
strcat(dest, ": ");
|
2021-06-07 00:17:03 +02:00
|
|
|
}
|
|
|
|
|
strcat(dest, src);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
* Log something to the logfile or stdout.
|
|
|
|
|
*
|
|
|
|
|
* To avoid excessively-large logfiles because some
|
|
|
|
|
* module repeatedly logs, we keep track of what is
|
|
|
|
|
* being logged, and catch repeating entries.
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
log_out(void *priv, const char *fmt, va_list ap)
|
|
|
|
|
{
|
|
|
|
|
log_t *log = (log_t *) priv;
|
2023-05-11 03:02:36 -04:00
|
|
|
char temp[1024];
|
|
|
|
|
char fmt2[1024];
|
2021-06-07 00:17:03 +02:00
|
|
|
|
|
|
|
|
if (log == NULL)
|
2022-09-18 17:11:43 -04:00
|
|
|
return;
|
2021-06-07 00:17:03 +02:00
|
|
|
|
|
|
|
|
if (strcmp(fmt, "") == 0)
|
2022-09-18 17:11:43 -04:00
|
|
|
return;
|
2021-06-07 00:17:03 +02:00
|
|
|
|
2025-01-14 00:31:13 +00:00
|
|
|
log_ensure_stdlog_open();
|
2021-06-07 00:17:03 +02:00
|
|
|
|
|
|
|
|
vsprintf(temp, fmt, ap);
|
2022-09-18 17:11:43 -04:00
|
|
|
if (log->suppr_seen && !strcmp(log->buff, temp))
|
|
|
|
|
log->seen++;
|
2021-06-07 00:17:03 +02:00
|
|
|
else {
|
2022-09-18 17:11:43 -04:00
|
|
|
if (log->suppr_seen && log->seen) {
|
|
|
|
|
log_copy(log, fmt2, "*** %d repeats ***\n", 1024);
|
|
|
|
|
fprintf(stdlog, fmt2, log->seen);
|
|
|
|
|
}
|
|
|
|
|
log->seen = 0;
|
|
|
|
|
strcpy(log->buff, temp);
|
|
|
|
|
log_copy(log, fmt2, temp, 1024);
|
|
|
|
|
fprintf(stdlog, fmt2, ap);
|
2021-06-07 00:17:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fflush(stdlog);
|
|
|
|
|
}
|
|
|
|
|
|
2025-01-14 00:31:13 +00:00
|
|
|
|
|
|
|
|
/*
|
|
|
|
|
Starfrost, 7-8 January 2025:
|
|
|
|
|
|
|
|
|
|
For RIVA 128 emulation I needed a way to suppress logging if a repeated pattern of the same set of lines were found.
|
|
|
|
|
|
|
|
|
|
Implements a version of the Rabin-Karp algorithm https://en.wikipedia.org/wiki/Rabin%E2%80%93Karp_algorithm
|
|
|
|
|
*/
|
|
|
|
|
void
|
|
|
|
|
log_out_cyclic(void* priv, const char* fmt, va_list ap)
|
|
|
|
|
{
|
|
|
|
|
#ifndef RELEASE_BUILD
|
|
|
|
|
// get our new logging system instance.
|
|
|
|
|
log_t* log = (log_t*)priv;
|
|
|
|
|
|
|
|
|
|
// does the log actually exist?
|
|
|
|
|
if (!log)
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// is the string empty?
|
|
|
|
|
if (fmt[0] == '\0')
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
// ensure stdlog is open
|
|
|
|
|
log_ensure_stdlog_open();
|
|
|
|
|
|
|
|
|
|
char temp[LOG_SIZE_BUFFER] = {0};
|
|
|
|
|
|
|
|
|
|
log->cyclic_last_line %= LOG_SIZE_BUFFER_CYCLIC_LINES;
|
|
|
|
|
|
|
|
|
|
vsprintf(temp, fmt, ap);
|
|
|
|
|
|
|
|
|
|
log_copy(log, log->cyclic_buff[log->cyclic_last_line], temp, LOG_SIZE_BUFFER);
|
|
|
|
|
|
|
|
|
|
uint32_t hashes[LOG_SIZE_BUFFER_CYCLIC_LINES] = {0};
|
|
|
|
|
|
|
|
|
|
// Random numbers
|
|
|
|
|
uint32_t base = 257;
|
|
|
|
|
uint32_t mod = 1000000007;
|
|
|
|
|
|
|
|
|
|
uint32_t repeat_order = 0;
|
|
|
|
|
bool is_cycle = false;
|
|
|
|
|
|
|
|
|
|
// compute the set of hashes for the current log buffer
|
|
|
|
|
for (int32_t log_line = 0; log_line < LOG_SIZE_BUFFER_CYCLIC_LINES; log_line++)
|
|
|
|
|
{
|
|
|
|
|
if (log->cyclic_buff[log_line][0] == '\0')
|
|
|
|
|
continue; // skip
|
|
|
|
|
|
|
|
|
|
for (int32_t log_line_char = 0; log_line_char < LOG_SIZE_BUFFER; log_line_char++)
|
|
|
|
|
{
|
|
|
|
|
hashes[log_line] = hashes[log_line] * base + log->cyclic_buff[log_line][log_line_char] % mod;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Now see if there are real cycles...
|
|
|
|
|
// We implement a minimum repeat size.
|
|
|
|
|
for (int32_t check_size = LOG_MINIMUM_REPEAT_ORDER; check_size < LOG_SIZE_BUFFER_CYCLIC_LINES / 2; check_size++)
|
|
|
|
|
{
|
|
|
|
|
//TODO: Log what we need for cycle 1.
|
|
|
|
|
//TODO: Command line option that lets us turn off this behaviour.
|
|
|
|
|
for (int32_t log_line_to_check = 0; log_line_to_check < check_size; log_line_to_check++)
|
|
|
|
|
{
|
|
|
|
|
if (hashes[log_line_to_check] == hashes[(log_line_to_check + check_size) % LOG_SIZE_BUFFER_CYCLIC_LINES])
|
|
|
|
|
{
|
|
|
|
|
repeat_order = check_size;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
is_cycle = (repeat_order != 0);
|
|
|
|
|
|
|
|
|
|
// if there still is a cycle..
|
|
|
|
|
if (is_cycle)
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (is_cycle)
|
|
|
|
|
{
|
|
|
|
|
if (log->cyclic_last_line % repeat_order == 0)
|
|
|
|
|
{
|
|
|
|
|
log->log_cycles++;
|
|
|
|
|
|
|
|
|
|
if (log->log_cycles == 1)
|
|
|
|
|
{
|
|
|
|
|
// 'Replay' the last few log entries so they actually show up
|
|
|
|
|
// Todo: is this right?
|
|
|
|
|
|
|
|
|
|
for (uint32_t index = log->cyclic_last_line - 1; index > (log->cyclic_last_line - repeat_order); index--)
|
|
|
|
|
{
|
|
|
|
|
// *very important* to prevent out of bounds index
|
|
|
|
|
uint32_t real_index = index % LOG_SIZE_BUFFER_CYCLIC_LINES;
|
|
|
|
|
log_copy(log, temp, log->cyclic_buff[real_index], LOG_SIZE_BUFFER);
|
|
|
|
|
|
|
|
|
|
fprintf(stdlog, "%s", log->cyclic_buff[real_index]);
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// restore the original line
|
|
|
|
|
log_copy(log, temp, log->cyclic_buff[log->cyclic_last_line], LOG_SIZE_BUFFER);
|
|
|
|
|
|
|
|
|
|
fprintf(stdlog, "%s", temp); // allow normal logging
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (log->log_cycles > 1 && log->log_cycles < 100)
|
|
|
|
|
fprintf(stdlog, "***** Cyclical Log Repeat of Order %d #%d *****\n", repeat_order, log->log_cycles);
|
|
|
|
|
else if (log->log_cycles == 100)
|
|
|
|
|
fprintf(stdlog, "Logged the same cycle 100 times...shutting up until something interesting happens\n");
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
log->log_cycles = 0;
|
|
|
|
|
fprintf(stdlog, "%s", temp);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
log->cyclic_last_line++;
|
|
|
|
|
|
|
|
|
|
#endif
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
2021-06-07 00:17:03 +02:00
|
|
|
void
|
|
|
|
|
log_fatal(void *priv, const char *fmt, ...)
|
|
|
|
|
{
|
2022-09-18 17:11:43 -04:00
|
|
|
log_t *log = (log_t *) priv;
|
2023-05-11 03:02:36 -04:00
|
|
|
char temp[1024];
|
|
|
|
|
char fmt2[1024];
|
2021-06-07 00:17:03 +02:00
|
|
|
va_list ap;
|
|
|
|
|
|
|
|
|
|
if (log == NULL)
|
2022-09-18 17:11:43 -04:00
|
|
|
return;
|
2021-06-07 00:17:03 +02:00
|
|
|
|
|
|
|
|
va_start(ap, fmt);
|
|
|
|
|
log_copy(log, fmt2, fmt, 1024);
|
|
|
|
|
vsprintf(temp, fmt2, ap);
|
|
|
|
|
fatal_ex(fmt2, ap);
|
|
|
|
|
va_end(ap);
|
|
|
|
|
exit(-1);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void *
|
|
|
|
|
log_open(char *dev_name)
|
|
|
|
|
{
|
|
|
|
|
log_t *log = malloc(sizeof(log_t));
|
|
|
|
|
|
|
|
|
|
memset(log, 0, sizeof(log_t));
|
|
|
|
|
|
2022-09-18 17:11:43 -04:00
|
|
|
log->dev_name = dev_name;
|
2021-06-07 00:17:03 +02:00
|
|
|
log->suppr_seen = 1;
|
2025-01-14 00:31:13 +00:00
|
|
|
log->cyclic_last_line = 0;
|
|
|
|
|
log->log_cycles = 0;
|
2021-06-07 00:17:03 +02:00
|
|
|
|
|
|
|
|
return (void *) log;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
|
log_close(void *priv)
|
|
|
|
|
{
|
|
|
|
|
log_t *log = (log_t *) priv;
|
|
|
|
|
|
|
|
|
|
free(log);
|
|
|
|
|
}
|
|
|
|
|
#endif
|