mirror of
https://github.com/owntone/owntone-server.git
synced 2024-12-28 08:05:56 -05:00
346 lines
8.0 KiB
C
346 lines
8.0 KiB
C
/*
|
|
* $Id$
|
|
* Generic error handling
|
|
*
|
|
* Copyright (C) 2003 Ron Pedde (ron@pedde.com)
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* This program is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU General Public License
|
|
* along with this program; if not, write to the Free Software
|
|
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
*/
|
|
|
|
/**
|
|
* \file err.c
|
|
* Error handling, logging, and memory leak checking.
|
|
*
|
|
* Most of these functions should not be used directly. For the most
|
|
* part, they are hidden in macros like #DPRINTF and #MEMNOTIFY. The
|
|
* only function here that is really directly useable is log_setdest()
|
|
*/
|
|
|
|
#ifdef HAVE_CONFIG_H
|
|
# include "config.h"
|
|
#endif
|
|
|
|
#include <stdio.h>
|
|
#include <stdarg.h>
|
|
#include <time.h>
|
|
#include <errno.h>
|
|
#include <pthread.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <syslog.h>
|
|
|
|
|
|
/* don't want to redefine malloc -- if doing memory debugging,
|
|
* this is the only file that *shouldn't* be redefining malloc and
|
|
* friends. Hence the define.
|
|
*/
|
|
#define __IN_ERR__
|
|
#include "err.h"
|
|
|
|
|
|
int err_debuglevel=0; /**< current debuglevel, set from command line with -d */
|
|
static int err_logdestination=LOGDEST_STDERR; /**< current log destination */
|
|
static FILE *err_file=NULL; /**< if logging to file, the handle of that file */
|
|
static pthread_mutex_t err_mutex=PTHREAD_MUTEX_INITIALIZER; /**< for serializing log messages */
|
|
|
|
#ifdef DEBUG_MEMORY
|
|
|
|
/**
|
|
* Nodes for a linked list of in-use memory. Any malloc/strdup/etc
|
|
* calls get a new node of this type added to the ::err_leak list.
|
|
*/
|
|
typedef struct tag_err_leak {
|
|
void *ptr;
|
|
char *file;
|
|
int line;
|
|
int size;
|
|
struct tag_err_leak *next;
|
|
} ERR_LEAK;
|
|
|
|
/** head of linked list of in-use memory */
|
|
ERR_LEAK err_leak = { NULL, NULL, 0, 0, NULL };
|
|
#endif
|
|
|
|
/*
|
|
* Forwards
|
|
*/
|
|
|
|
static int err_lock_mutex(void);
|
|
static int err_unlock_mutex(void);
|
|
|
|
/**
|
|
* Write a printf-style formatted message to the log destination.
|
|
* This can be stderr, syslog, or a logfile, as determined by
|
|
* log_setdest(). Note that this function should not be directly
|
|
* used, rather it should be used via the #DPRINTF macro.
|
|
*
|
|
* \param level Level at which to log \ref log_levels
|
|
* \param fmt printf-style
|
|
*/
|
|
void log_err(int level, char *fmt, ...)
|
|
{
|
|
va_list ap;
|
|
char timebuf[256];
|
|
char errbuf[1024];
|
|
struct tm tm_now;
|
|
time_t tt_now;
|
|
|
|
if(level > err_debuglevel)
|
|
return;
|
|
|
|
va_start(ap, fmt);
|
|
vsnprintf(errbuf, sizeof(errbuf), fmt, ap);
|
|
va_end(ap);
|
|
|
|
err_lock_mutex(); /* atomic file writes */
|
|
|
|
switch(err_logdestination) {
|
|
case LOGDEST_LOGFILE:
|
|
tt_now=time(NULL);
|
|
gmtime_r(&tt_now,&tm_now);
|
|
strftime(timebuf,sizeof(timebuf),"%F %T",&tm_now);
|
|
fprintf(err_file,"%s: %s",timebuf,errbuf);
|
|
if(!level) fprintf(err_file,"%s: Aborting\n",timebuf);
|
|
fflush(err_file);
|
|
break;
|
|
case LOGDEST_STDERR:
|
|
fprintf(stderr, "%s", errbuf);
|
|
if(!level) fprintf(stderr,"Aborting\n");
|
|
break;
|
|
case LOGDEST_SYSLOG:
|
|
syslog(LOG_INFO, "%s", errbuf);
|
|
if(!level) syslog(LOG_INFO, "Aborting\n");
|
|
break;
|
|
}
|
|
|
|
err_unlock_mutex();
|
|
|
|
if(!level) {
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Sets the log destination. (stderr, syslog, or logfile)
|
|
*
|
|
* \param app appname (used only for syslog destination)
|
|
* \param destination where to log to \ref log_dests "as defined in err.h"
|
|
*/
|
|
void log_setdest(char *app, int destination) {
|
|
if(err_logdestination == destination)
|
|
return;
|
|
|
|
switch(err_logdestination) {
|
|
case LOGDEST_SYSLOG:
|
|
closelog();
|
|
break;
|
|
case LOGDEST_LOGFILE:
|
|
fclose(err_file);
|
|
break;
|
|
}
|
|
|
|
switch(destination) {
|
|
case LOGDEST_LOGFILE:
|
|
err_file=fopen(app,"a");
|
|
if(err_file==NULL) {
|
|
fprintf(stderr,"Error opening %s: %s\n",app,strerror(errno));
|
|
exit(EXIT_FAILURE);
|
|
}
|
|
break;
|
|
case LOGDEST_SYSLOG:
|
|
openlog(app,LOG_PID,LOG_DAEMON);
|
|
break;
|
|
}
|
|
|
|
err_logdestination=destination;
|
|
}
|
|
|
|
|
|
/**
|
|
* Lock the error mutex. This is used to serialize
|
|
* log messages, as well as protect access to the memory
|
|
* list, when memory debugging is enabled.
|
|
*
|
|
* \returns 0 on success, otherwise -1 with errno set
|
|
*/
|
|
int err_lock_mutex(void) {
|
|
int err;
|
|
|
|
if((err=pthread_mutex_lock(&err_mutex))) {
|
|
errno=err;
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* Unlock the error mutex
|
|
*
|
|
* \returns 0 on success, otherwise -1 with errno set
|
|
*/
|
|
int err_unlock_mutex(void) {
|
|
int err;
|
|
|
|
if((err=pthread_mutex_unlock(&err_mutex))) {
|
|
errno=err;
|
|
return -1;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef DEBUG_MEMORY
|
|
|
|
/**
|
|
* Let the leak detector know about a chunk of memory
|
|
* that needs to be freed, but came from an external library.
|
|
* Example: gdbm functions. Note that this should only
|
|
* be called via the #MEMNOTIFY macro.
|
|
*
|
|
* \param file filled in from the #MEMNOTIFY macro with __FILE__
|
|
* \param line filled in from the #MEMNOTIFY macro with __LINE__
|
|
* \param ptr ptr to block of memory which must be freed
|
|
*/
|
|
void err_notify(char *file, int line, void *ptr) {
|
|
ERR_LEAK *pnew;
|
|
|
|
if(!ptr)
|
|
return;
|
|
|
|
pnew=(ERR_LEAK*)malloc(sizeof(ERR_LEAK));
|
|
if(!pnew)
|
|
log_err(1,"Error: cannot allocate leak struct\n");
|
|
|
|
if(err_lock_mutex())
|
|
log_err(1,"Error: cannot lock error mutex\n");
|
|
|
|
pnew->file=file;
|
|
pnew->line=line;
|
|
pnew->size=0;
|
|
pnew->ptr=ptr;
|
|
|
|
pnew->next=err_leak.next;
|
|
err_leak.next=pnew;
|
|
|
|
err_unlock_mutex();
|
|
}
|
|
|
|
/**
|
|
* malloc wrapper for leak checking. This never gets
|
|
* called directly, only via malloc.
|
|
*
|
|
* \param file filled in via macro with __FILE__
|
|
* \param line filled in via macro with __LINE__
|
|
* \param size size of block to allocate
|
|
*/
|
|
void *err_malloc(char *file, int line, size_t size) {
|
|
ERR_LEAK *pnew;
|
|
|
|
pnew=(ERR_LEAK*)malloc(sizeof(ERR_LEAK));
|
|
if(!pnew)
|
|
log_err(1,"Error: cannot allocate leak struct\n");
|
|
|
|
if(err_lock_mutex())
|
|
log_err(1,"Error: cannot lock error mutex\n");
|
|
|
|
pnew->file=file;
|
|
pnew->line=line;
|
|
pnew->size=size;
|
|
pnew->ptr=malloc(size);
|
|
|
|
pnew->next=err_leak.next;
|
|
err_leak.next=pnew;
|
|
|
|
err_unlock_mutex();
|
|
|
|
return pnew->ptr;
|
|
}
|
|
|
|
|
|
/**
|
|
* Memory check wrapper for strdup. This should not
|
|
* be called directly
|
|
*
|
|
* \param file filled in via macro with __FILE__
|
|
* \param line filled in via macro with __LINE__
|
|
* \param str str to strdup
|
|
*/
|
|
char *err_strdup(char *file, int line, const char *str) {
|
|
void *pnew;
|
|
|
|
pnew=err_malloc(file,line,strlen(str) + 1);
|
|
if(!pnew)
|
|
log_err(1,"Cannot malloc enough space for strdup\n");
|
|
|
|
memcpy(pnew,str,strlen(str)+1);
|
|
return pnew;
|
|
}
|
|
|
|
/**
|
|
* Memory checking wrapper for free. This should not be
|
|
* called direclty.
|
|
*
|
|
* \param file filled in by macro with __FILE__
|
|
* \param line filled in by macro with __LINE__
|
|
* \param ptr block of memory to free
|
|
*/
|
|
void err_free(char *file, int line, void *ptr) {
|
|
ERR_LEAK *current,*last;
|
|
|
|
if(err_lock_mutex())
|
|
log_err(1,"Error: cannot lock error mutex\n");
|
|
|
|
last=&err_leak;
|
|
current=last->next;
|
|
|
|
while((current) && (current->ptr != ptr)) {
|
|
last=current;
|
|
current=current->next;
|
|
}
|
|
|
|
if(!current) {
|
|
log_err(1,"Attempt to free unallocated memory: %s, %d\n",file,line);
|
|
} else {
|
|
free(current->ptr);
|
|
last->next=current->next;
|
|
free(current);
|
|
}
|
|
|
|
err_unlock_mutex();
|
|
}
|
|
|
|
/**
|
|
* Dumps the list of in-use memory. This walks the linked
|
|
* list created by the malloc and strdup wrappers, and dumps
|
|
* them to stdout.
|
|
*/
|
|
void err_leakcheck(void) {
|
|
ERR_LEAK *current;
|
|
|
|
if(err_lock_mutex())
|
|
log_err(1,"Error: cannot lock error mutex\n");
|
|
|
|
current=err_leak.next;
|
|
while(current) {
|
|
printf("%s: %d - %d bytes at %p\n",current->file, current->line, current->size,
|
|
current->ptr);
|
|
current=current->next;
|
|
}
|
|
|
|
err_unlock_mutex();
|
|
}
|
|
#endif
|