mirror of
https://codeberg.org/redict/redict.git
synced 2025-01-23 00:28:26 -05:00
Produce the watchlog warning log in a way that is safer from a signal handler. Fix a memory leak in the backtrace generation function.
This commit is contained in:
parent
aa96122d96
commit
23c0cdd2ad
41
src/debug.c
41
src/debug.c
@ -559,10 +559,11 @@ void logRegisters(ucontext_t *uc) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
/* Logs the stack trace using the backtrace() call. */
|
/* Logs the stack trace using the backtrace() call. */
|
||||||
void logStackTrace(ucontext_t *uc) {
|
sds getStackTrace(ucontext_t *uc) {
|
||||||
void *trace[100];
|
void *trace[100];
|
||||||
int i, trace_size = 0;
|
int i, trace_size = 0;
|
||||||
char **messages = NULL;
|
char **messages = NULL;
|
||||||
|
sds st = sdsempty();
|
||||||
|
|
||||||
/* Generate the stack trace */
|
/* Generate the stack trace */
|
||||||
trace_size = backtrace(trace, 100);
|
trace_size = backtrace(trace, 100);
|
||||||
@ -572,9 +573,12 @@ void logStackTrace(ucontext_t *uc) {
|
|||||||
trace[1] = getMcontextEip(uc);
|
trace[1] = getMcontextEip(uc);
|
||||||
}
|
}
|
||||||
messages = backtrace_symbols(trace, trace_size);
|
messages = backtrace_symbols(trace, trace_size);
|
||||||
redisLog(REDIS_WARNING, "--- STACK TRACE");
|
for (i=1; i<trace_size; ++i) {
|
||||||
for (i=1; i<trace_size; ++i)
|
st = sdscat(st,messages[i]);
|
||||||
redisLog(REDIS_WARNING,"%s", messages[i]);
|
st = sdscatlen(st,"\n",1);
|
||||||
|
}
|
||||||
|
zlibc_free(messages);
|
||||||
|
return st;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Log information about the "current" client, that is, the client that is
|
/* Log information about the "current" client, that is, the client that is
|
||||||
@ -617,7 +621,7 @@ void logCurrentClient(void) {
|
|||||||
|
|
||||||
void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
|
void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
|
||||||
ucontext_t *uc = (ucontext_t*) secret;
|
ucontext_t *uc = (ucontext_t*) secret;
|
||||||
sds infostring, clients;
|
sds infostring, clients, st;
|
||||||
struct sigaction act;
|
struct sigaction act;
|
||||||
REDIS_NOTUSED(info);
|
REDIS_NOTUSED(info);
|
||||||
|
|
||||||
@ -629,7 +633,9 @@ void sigsegvHandler(int sig, siginfo_t *info, void *secret) {
|
|||||||
server.assert_file, server.assert_line);
|
server.assert_file, server.assert_line);
|
||||||
|
|
||||||
/* Log the stack trace */
|
/* Log the stack trace */
|
||||||
logStackTrace(uc);
|
st = getStackTrace(uc);
|
||||||
|
redisLog(REDIS_WARNING, "--- STACK TRACE\n%s", st);
|
||||||
|
sdsfree(st);
|
||||||
|
|
||||||
/* Log INFO and CLIENT LIST */
|
/* Log INFO and CLIENT LIST */
|
||||||
redisLog(REDIS_WARNING, "--- INFO OUTPUT");
|
redisLog(REDIS_WARNING, "--- INFO OUTPUT");
|
||||||
@ -675,13 +681,28 @@ void watchdogSignalHandler(int sig, siginfo_t *info, void *secret) {
|
|||||||
ucontext_t *uc = (ucontext_t*) secret;
|
ucontext_t *uc = (ucontext_t*) secret;
|
||||||
REDIS_NOTUSED(info);
|
REDIS_NOTUSED(info);
|
||||||
REDIS_NOTUSED(sig);
|
REDIS_NOTUSED(sig);
|
||||||
|
sds st, log;
|
||||||
|
time_t now = time(NULL);
|
||||||
|
char date[128];
|
||||||
|
FILE *fp;
|
||||||
|
|
||||||
/* Log INFO and CLIENT LIST */
|
fp = (server.logfile == NULL) ? stdout : fopen(server.logfile,"a");
|
||||||
redisLog(REDIS_WARNING, "--- WATCHDOG TIMER EXPIRED ---");
|
if (fp == NULL) return;
|
||||||
|
|
||||||
|
strftime(date,sizeof(date),"%d %b %H:%M:%S",localtime(&now));
|
||||||
|
log = sdscatprintf(sdsempty(),
|
||||||
|
"\n--- WATCHDOG TIMER EXPIRED (%s) ---\n",date);
|
||||||
#ifdef HAVE_BACKTRACE
|
#ifdef HAVE_BACKTRACE
|
||||||
logStackTrace(uc);
|
st = getStackTrace(uc);
|
||||||
redisLog(REDIS_WARNING, "------");
|
#else
|
||||||
|
st = sdsnew("Sorry: no support for backtrace().\n");
|
||||||
#endif
|
#endif
|
||||||
|
log = sdscatsds(log,st);
|
||||||
|
log = sdscat(log,"------\n\n");
|
||||||
|
fprintf(fp,"%s",log);
|
||||||
|
if (server.logfile) fclose(fp);
|
||||||
|
sdsfree(st);
|
||||||
|
sdsfree(log);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Schedule a SIGALRM delivery after the specified period in milliseconds.
|
/* Schedule a SIGALRM delivery after the specified period in milliseconds.
|
||||||
|
@ -227,6 +227,10 @@ void zmalloc_enable_thread_safeness(void) {
|
|||||||
zmalloc_thread_safe = 1;
|
zmalloc_thread_safe = 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
void zlibc_free(void *ptr) {
|
||||||
|
free(ptr);
|
||||||
|
}
|
||||||
|
|
||||||
/* Get the RSS information in an OS-specific way.
|
/* Get the RSS information in an OS-specific way.
|
||||||
*
|
*
|
||||||
* WARNING: the function zmalloc_get_rss() is not designed to be fast
|
* WARNING: the function zmalloc_get_rss() is not designed to be fast
|
||||||
|
@ -75,6 +75,7 @@ size_t zmalloc_used_memory(void);
|
|||||||
void zmalloc_enable_thread_safeness(void);
|
void zmalloc_enable_thread_safeness(void);
|
||||||
float zmalloc_get_fragmentation_ratio(void);
|
float zmalloc_get_fragmentation_ratio(void);
|
||||||
size_t zmalloc_get_rss(void);
|
size_t zmalloc_get_rss(void);
|
||||||
|
void zlibc_free(void *ptr);
|
||||||
|
|
||||||
#ifndef HAVE_MALLOC_SIZE
|
#ifndef HAVE_MALLOC_SIZE
|
||||||
size_t zmalloc_size(void *ptr);
|
size_t zmalloc_size(void *ptr);
|
||||||
|
Loading…
Reference in New Issue
Block a user