openldap/libraries/liblber/debug.c

305 lines
6.5 KiB
C
Raw Normal View History

/* $OpenLDAP$ */
2003-11-26 07:17:08 +08:00
/* This work is part of OpenLDAP Software <http://www.openldap.org/>.
*
* Copyright 1998-2003 The OpenLDAP Foundation.
* All rights reserved.
*
* Redistribution and use in source and binary forms, with or without
* modification, are permitted only as authorized by the OpenLDAP
* Public License.
*
* A copy of this license is available in the file LICENSE in the
* top-level directory of the distribution or, alternatively, at
* <http://www.OpenLDAP.org/license.html>.
*/
#include "portable.h"
#include <stdio.h>
#include <ac/stdarg.h>
#include <ac/stdlib.h>
#include <ac/string.h>
2000-10-13 04:01:12 +08:00
#include <ac/time.h>
#include <ac/ctype.h>
2002-05-11 01:48:54 +08:00
#ifdef LDAP_SYSLOG
#include <ac/syslog.h>
#endif
#include "ldap_log.h"
#include "ldap_defaults.h"
#include "lber.h"
#include "ldap_pvt.h"
int ldap_loglevels[LDAP_SUBSYS_NUM];
2000-10-13 04:01:12 +08:00
2000-10-18 08:29:21 +08:00
static FILE *log_file = NULL;
static int global_level = 0;
#ifdef LDAP_SYSLOG
static int use_syslog = 0;
static int debug2syslog(int l) {
switch (l) {
2003-07-08 11:46:20 +08:00
case LDAP_LEVEL_EMERG: return LOG_EMERG;
case LDAP_LEVEL_ALERT: return LOG_ALERT;
case LDAP_LEVEL_CRIT: return LOG_CRIT;
case LDAP_LEVEL_ERR: return LOG_ERR;
case LDAP_LEVEL_WARNING: return LOG_WARNING;
case LDAP_LEVEL_NOTICE: return LOG_NOTICE;
case LDAP_LEVEL_INFO: return LOG_INFO;
2000-10-18 08:29:21 +08:00
}
2002-05-11 01:48:54 +08:00
return LOG_DEBUG;
2000-10-18 08:29:21 +08:00
}
#endif
2000-10-13 04:01:12 +08:00
2003-12-07 13:12:36 +08:00
static char *debug_levels[] = {
2003-07-08 11:46:20 +08:00
"emergency", "alert", "critical",
"error", "warning", "notice",
"information", "entry", "args",
"results", "detail1", "detail2",
NULL };
2003-12-07 13:12:36 +08:00
static char *debug_subsys[LDAP_SUBSYS_NUM] = {
"GLOBAL", "OPERATION", "TRANSPORT",
2003-12-07 12:48:50 +08:00
"CONNECTION", "FILTER", "BER",
"CONFIG", "ACL", "CACHE", "INDEX",
"LDIF", "TOOLS", "SLAPD", "SLURPD",
"BACKEND", "BACK_BDB", "BACK_LDBM",
"BACK_LDAP", "BACK_META", "BACK_MON" };
int lutil_mnem2subsys( const char *subsys )
{
2003-07-08 11:46:20 +08:00
int i;
for( i = 0; i < LDAP_SUBSYS_NUM; i++ ) {
2003-12-07 13:12:36 +08:00
if ( !strcasecmp( subsys, debug_subsys[i] ) ) {
2003-07-08 11:46:20 +08:00
return i;
}
2003-07-08 11:46:20 +08:00
}
return -1;
}
void lutil_set_all_backends( int level )
{
2003-07-08 11:46:20 +08:00
int i;
for( i = 0; i < LDAP_SUBSYS_NUM; i++ ) {
2003-12-07 13:12:36 +08:00
if ( !strncasecmp( "BACK_", debug_subsys[i], sizeof("BACK_")-1 ) ) {
ldap_loglevels[i] = level;
}
2003-07-08 11:46:20 +08:00
}
}
int lutil_mnem2level( const char *level )
2000-10-18 02:56:24 +08:00
{
2003-07-08 11:46:20 +08:00
int i;
2003-12-07 13:12:36 +08:00
for( i = 0; debug_levels[i] != NULL; i++ ) {
if ( !strcasecmp( level, debug_levels[i] ) ) {
2003-07-08 11:46:20 +08:00
return i;
}
2001-01-18 01:05:43 +08:00
}
2003-07-08 11:46:20 +08:00
return -1;
2000-10-18 02:56:24 +08:00
}
static int addSubsys( const char *subsys, int level )
2000-10-13 04:01:12 +08:00
{
2002-07-24 02:26:33 +08:00
int subsys_num;
2001-01-18 01:05:43 +08:00
2003-12-07 12:48:50 +08:00
if ( !strcasecmp( subsys, "BACKEND" ) ) {
lutil_set_all_backends( level );
return level;
2003-07-08 11:46:20 +08:00
} else {
subsys_num = lutil_mnem2subsys(subsys);
2003-07-08 11:46:20 +08:00
if(subsys_num < 0) {
2003-04-06 14:19:13 +08:00
fprintf(stderr, _("Unknown Subsystem name [ %s ] - Discarded\n"),
subsys);
fflush(stderr);
return -1;
}
ldap_loglevels[subsys_num] = level;
return level;
2000-10-13 04:01:12 +08:00
}
return -1;
2000-10-13 04:01:12 +08:00
}
int lutil_set_debug_level( const char* subsys, int level )
2000-10-13 04:01:12 +08:00
{
2003-07-08 11:46:20 +08:00
return( addSubsys( subsys, level ) );
2000-10-13 04:01:12 +08:00
}
int lutil_debug_file( FILE *file )
{
1999-09-02 15:40:25 +08:00
log_file = file;
ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, file );
return 0;
}
2000-10-18 10:27:45 +08:00
void lutil_log_int(
FILE* file,
const char *subsys, int level,
2000-10-18 10:27:45 +08:00
const char *fmt, va_list vl )
2000-10-13 04:01:12 +08:00
{
2002-01-11 14:56:24 +08:00
#ifdef HAVE_WINSOCK
2000-10-13 04:01:12 +08:00
time_t now;
struct tm *today;
2002-01-11 14:56:24 +08:00
#endif
2002-07-24 02:26:33 +08:00
size_t i;
char * tmp;
2000-10-13 04:01:12 +08:00
2000-10-18 08:29:21 +08:00
#ifdef LDAP_SYSLOG
/* we're configured to use syslog */
if( use_syslog ) {
2002-07-26 10:56:01 +08:00
#ifdef HAVE_VSYSLOG
2000-10-18 10:27:45 +08:00
vsyslog( debug2syslog(level), fmt, vl );
2002-07-26 10:56:01 +08:00
#else
char data[4096];
2002-07-26 10:56:01 +08:00
vsnprintf( data, sizeof(data), fmt, vl );
syslog( debug2syslog(level), data );
#endif
2000-10-18 08:29:21 +08:00
return;
2000-10-13 04:01:12 +08:00
}
2000-10-18 08:29:21 +08:00
#endif
2000-10-13 04:01:12 +08:00
#if 0
2000-10-18 08:29:21 +08:00
#ifdef HAVE_WINSOCK
if( log_file == NULL ) {
log_file = fopen( LDAP_RUNDIR LDAP_DIRSEP "openldap.log", "w" );
2003-07-08 11:46:20 +08:00
if ( log_file == NULL ) {
2000-10-18 08:29:21 +08:00
log_file = fopen( "openldap.log", "w" );
2003-07-08 11:46:20 +08:00
if ( log_file == NULL ) return;
}
2000-10-18 08:29:21 +08:00
ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, log_file );
2000-10-13 04:01:12 +08:00
}
#endif
#endif
2000-10-18 08:29:21 +08:00
2000-10-18 22:58:34 +08:00
if( file == NULL ) {
2000-10-18 08:29:21 +08:00
/*
* Use stderr unless file was specified via:
* ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, file)
*/
file = stderr;
}
2000-10-18 10:27:45 +08:00
#ifdef HAVE_WINSOCK
/*
* Stick the time in the buffer to output when using Winsock
* as NT can't pipe to a timestamp program like Unix can.
* This, of course, makes some logs hard to read.
2003-07-08 11:46:20 +08:00
*/
2000-10-18 10:27:45 +08:00
time( &now );
today = localtime( &now );
fprintf( file, "%4d%02d%02d:%02d:%02d:%02d ",
today->tm_year + 1900, today->tm_mon + 1,
today->tm_mday, today->tm_hour,
today->tm_min, today->tm_sec );
#endif
/*
* format the output data.
*/
2003-12-07 12:48:50 +08:00
fprintf(file, "\n%s:: ", subsys );
2000-10-18 10:27:45 +08:00
vfprintf( file, fmt, vl );
fflush( file );
2000-10-13 04:01:12 +08:00
}
/*
2001-01-18 01:05:43 +08:00
* The primary logging routine. Takes the subsystem being logged from, the
2000-10-13 04:01:12 +08:00
* level of the log output and the format and data. Send this on to the
* internal routine with the print file, if any.
*/
void lutil_log( const int subsys, int level, const char *fmt, ... )
2000-10-13 04:01:12 +08:00
{
FILE* outfile = NULL;
va_list vl;
va_start( vl, fmt );
ber_get_option( NULL, LBER_OPT_LOG_PRINT_FILE, &outfile );
2003-12-07 13:12:36 +08:00
lutil_log_int( outfile, debug_subsys[subsys], level, fmt, vl );
2000-10-13 04:01:12 +08:00
va_end( vl );
}
void lutil_log_initialize(int argc, char **argv)
{
2003-07-08 11:46:20 +08:00
int i;
/*
* Start by setting the hook for the libraries to use this logging
* routine.
*/
ber_set_option( NULL, LBER_OPT_LOG_PROC, (void*)lutil_log_int );
if ( argc == 0 ) return;
/*
* Now go through the command line options to set the debugging
* levels
*/
for( i = 0; i < argc; i++ ) {
char *next = argv[i];
2003-07-08 11:46:20 +08:00
if ( i < argc-1 && next[0] == '-' && next[1] == 'd' ) {
char subsys[64];
int level;
char *optarg = argv[i+1];
char *index = strchr( optarg, '=' );
if ( index != NULL ) {
*index = 0;
strcpy ( subsys, optarg );
level = atoi( index+1 );
if ( level <= 0 ) level = lutil_mnem2level( index + 1 );
lutil_set_debug_level( subsys, level );
*index = '=';
2003-07-08 11:46:20 +08:00
} else {
global_level = atoi( optarg );
ldap_loglevels[0] = global_level;
/*
2003-12-07 13:12:36 +08:00
* if a negative number was used, make the global level the
* maximum sane level.
*/
2003-07-08 11:46:20 +08:00
if ( global_level < 0 ) {
global_level = 65535;
ldap_loglevels[0] = 65535;
2003-07-08 11:46:20 +08:00
}
}
}
2003-07-08 11:46:20 +08:00
}
2000-10-13 04:01:12 +08:00
}
2000-09-15 11:48:27 +08:00
void (lutil_debug)( int debug, int level, const char *fmt, ... )
{
char buffer[4096];
va_list vl;
2003-07-08 11:46:20 +08:00
if ( !(level & debug ) ) return;
#ifdef HAVE_WINSOCK
2000-09-15 11:08:05 +08:00
if( log_file == NULL ) {
1999-06-22 06:59:23 +08:00
log_file = fopen( LDAP_RUNDIR LDAP_DIRSEP "openldap.log", "w" );
2003-07-08 11:46:20 +08:00
if ( log_file == NULL ) {
1999-06-22 06:59:23 +08:00
log_file = fopen( "openldap.log", "w" );
2003-07-08 11:46:20 +08:00
if ( log_file == NULL ) return;
}
2000-09-15 11:08:05 +08:00
ber_set_option( NULL, LBER_OPT_LOG_PRINT_FILE, log_file );
}
#endif
2003-12-07 13:12:36 +08:00
va_start( vl, fmt );
vsnprintf( buffer, sizeof(buffer), fmt, vl );
buffer[sizeof(buffer)-1] = '\0';
if( log_file != NULL ) {
fputs( buffer, log_file );
fflush( log_file );
}
2002-07-26 10:56:01 +08:00
fputs( buffer, stderr );
va_end( vl );
}