1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-01 22:28:02 +02:00
gnupg/util/logger.c

290 lines
5.6 KiB
C
Raw Permalink Normal View History

1997-11-18 15:06:00 +01:00
/* logger.c - log functions
2002-06-29 15:46:34 +02:00
* Copyright (C) 1998, 1999 Free Software Foundation, Inc.
1997-11-18 15:06:00 +01:00
*
* This file is part of GnuPG.
1997-11-18 15:06:00 +01:00
*
* GnuPG is free software; you can redistribute it and/or modify
1997-11-18 15:06:00 +01:00
* it under the terms of the GNU General Public License as published by
2007-10-23 12:48:09 +02:00
* the Free Software Foundation; either version 3 of the License, or
1997-11-18 15:06:00 +01:00
* (at your option) any later version.
*
* GnuPG is distributed in the hope that it will be useful,
1997-11-18 15:06:00 +01:00
* 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
2007-10-23 12:48:09 +02:00
* along with this program; if not, see <http://www.gnu.org/licenses/>.
1997-11-18 15:06:00 +01:00
*/
#include <config.h>
#include <stdio.h>
#include <stdlib.h>
#include <stdarg.h>
#include <string.h>
#include <errno.h>
1997-11-18 15:06:00 +01:00
#include "util.h"
1998-10-06 14:10:02 +02:00
#include "i18n.h"
1997-11-18 15:06:00 +01:00
2010-09-28 12:07:30 +02:00
#ifdef __VMS
# include <unistd.h>
# include "ttyio.h"
#endif /* def __VMS */
1997-11-21 15:53:57 +01:00
static char pidstring[15];
1998-02-13 21:58:50 +01:00
static char *pgm_name;
1998-01-02 21:40:10 +01:00
static int errorcount;
static int strict;
static FILE *logfp;
/****************
* Set the logfile to use (not yet implemneted) or, if logfile is NULL,
* the Fd where logoutputs should go.
*/
void
log_set_logfile( const char *name, int fd )
{
2002-06-29 15:46:34 +02:00
if( name )
BUG();
if( logfp && logfp != stderr && logfp != stdout )
2002-06-29 15:46:34 +02:00
fclose( logfp );
if( fd == 1 )
logfp = stdout;
else if( fd == 2 )
logfp = stderr;
else
logfp = fdopen( fd, "a" );
if( !logfp ) {
logfp = stderr;
log_fatal("can't open fd %d for logging: %s\n", fd, strerror(errno));
}
}
FILE *
log_stream()
{
if( !logfp )
logfp = stderr;
return logfp;
}
1997-11-21 15:53:57 +01:00
1998-02-13 21:58:50 +01:00
void
log_set_name( const char *name )
{
2005-07-27 20:10:56 +02:00
xfree(pgm_name);
1998-02-13 21:58:50 +01:00
if( name )
2005-07-27 20:10:56 +02:00
pgm_name = xstrdup(name);
1998-02-13 21:58:50 +01:00
else
pgm_name = NULL;
}
const char *
log_get_name(void)
{
return pgm_name? pgm_name : "";
}
1997-11-21 15:53:57 +01:00
void
1998-01-02 21:40:10 +01:00
log_set_pid( int pid )
1997-11-21 15:53:57 +01:00
{
if( pid )
sprintf(pidstring,"[%u]", (unsigned)pid );
else
*pidstring = 0;
}
1998-01-02 21:40:10 +01:00
int
log_get_errorcount( int clear)
{
int n = errorcount;
if( clear )
errorcount = 0;
return n;
}
void
log_inc_errorcount()
{
/* Protect agains overflow. */
if (errorcount < 30000)
errorcount++;
}
int
log_set_strict(int val)
{
int old=strict;
strict=val;
return old;
}
1998-11-10 13:59:59 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_print_prefix(const char *text)
1997-11-18 15:06:00 +01:00
{
2010-09-28 17:55:24 +02:00
#ifdef __VMS
/* 2006-08-10 SMS.
VMS terminal carriage control differs from that on UNIX, and one
result is overwritten messages when terminal output is done
through multiple file pointers (like logfp and ttyfp), even when
they both are connected to the same terminal. The accomodation
attempted here is to initialize ttyfp before logfp, and if stderr
and ttyfp are both terminals (presumably the same one), to set an
unset logfp to ttyfp instead of to stderr. */
if (!logfp )
{
FILE *ttyfp_local;
2010-09-28 17:55:24 +02:00
init_ttyfp();
ttyfp_local = ttyfp_is ();
if (isatty (fileno (stderr)) && isatty (fileno (ttyfp_local)))
{
logfp = ttyfp_local;
}
}
#endif /* def __VMS */
if( !logfp )
logfp = stderr;
1998-02-13 21:58:50 +01:00
if( pgm_name )
fprintf(logfp, "%s%s: %s", pgm_name, pidstring, text );
1998-02-13 21:58:50 +01:00
else
fprintf(logfp, "?%s: %s", pidstring, text );
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
}
1998-07-08 11:29:43 +02:00
1997-11-18 15:06:00 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_info( const char *fmt, ... )
1997-11-18 15:06:00 +01:00
{
va_list arg_ptr ;
2002-06-29 15:46:34 +02:00
g10_log_print_prefix("");
1997-11-18 15:06:00 +01:00
va_start( arg_ptr, fmt ) ;
vfprintf(logfp,fmt,arg_ptr) ;
1997-11-18 15:06:00 +01:00
va_end(arg_ptr);
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
}
1998-07-08 11:29:43 +02:00
void
g10_log_warning( const char *fmt, ... )
{
va_list arg_ptr ;
if(strict)
{
log_inc_errorcount ();
g10_log_print_prefix(_("ERROR: "));
}
else
g10_log_print_prefix(_("WARNING: "));
va_start( arg_ptr, fmt ) ;
vfprintf(logfp,fmt,arg_ptr) ;
va_end(arg_ptr);
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
}
1997-11-18 15:06:00 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_error( const char *fmt, ... )
1997-11-18 15:06:00 +01:00
{
va_list arg_ptr ;
2002-06-29 15:46:34 +02:00
g10_log_print_prefix("");
1997-11-18 15:06:00 +01:00
va_start( arg_ptr, fmt ) ;
vfprintf(logfp,fmt,arg_ptr) ;
1997-11-18 15:06:00 +01:00
va_end(arg_ptr);
log_inc_errorcount ();
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
}
1998-07-08 11:29:43 +02:00
1997-11-18 15:06:00 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_fatal( const char *fmt, ... )
1997-11-18 15:06:00 +01:00
{
va_list arg_ptr ;
2002-06-29 15:46:34 +02:00
g10_log_print_prefix("fatal: ");
1997-11-18 15:06:00 +01:00
va_start( arg_ptr, fmt ) ;
vfprintf(logfp,fmt,arg_ptr) ;
1997-11-18 15:06:00 +01:00
va_end(arg_ptr);
1998-01-28 17:09:43 +01:00
secmem_dump_stats();
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
exit(2);
}
void
2002-06-29 15:46:34 +02:00
g10_log_bug( const char *fmt, ... )
1997-11-18 15:06:00 +01:00
{
va_list arg_ptr ;
1998-02-13 21:58:50 +01:00
putc('\n', stderr );
2002-06-29 15:46:34 +02:00
g10_log_print_prefix("Ohhhh jeeee: ");
1998-01-16 22:15:24 +01:00
va_start( arg_ptr, fmt ) ;
vfprintf(stderr,fmt,arg_ptr) ;
va_end(arg_ptr);
1997-11-18 15:06:00 +01:00
fflush(stderr);
1998-01-28 17:09:43 +01:00
secmem_dump_stats();
1997-11-18 15:06:00 +01:00
abort();
}
2002-06-29 15:46:34 +02:00
#if defined (__riscos__) \
|| ( __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 ))
1998-01-16 22:15:24 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_bug0( const char *file, int line, const char *func )
1998-01-16 22:15:24 +01:00
{
1998-10-21 19:34:36 +02:00
log_bug(_("... this is a bug (%s:%d:%s)\n"), file, line, func );
1998-01-16 22:15:24 +01:00
}
1998-02-12 00:22:09 +01:00
#else
void
2002-06-29 15:46:34 +02:00
g10_log_bug0( const char *file, int line )
1998-02-12 00:22:09 +01:00
{
1998-10-06 14:10:02 +02:00
log_bug(_("you found a bug ... (%s:%d)\n"), file, line);
1998-02-12 00:22:09 +01:00
}
#endif
1998-01-16 22:15:24 +01:00
1997-11-18 15:06:00 +01:00
void
2002-06-29 15:46:34 +02:00
g10_log_debug( const char *fmt, ... )
1997-11-18 15:06:00 +01:00
{
va_list arg_ptr ;
2002-06-29 15:46:34 +02:00
g10_log_print_prefix("DBG: ");
1997-11-18 15:06:00 +01:00
va_start( arg_ptr, fmt ) ;
vfprintf(logfp,fmt,arg_ptr) ;
1997-11-18 15:06:00 +01:00
va_end(arg_ptr);
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
}
void
2002-06-29 15:46:34 +02:00
g10_log_hexdump( const char *text, const char *buf, size_t len )
1997-11-18 15:06:00 +01:00
{
int i;
2002-06-29 15:46:34 +02:00
g10_log_print_prefix(text);
1997-11-18 15:06:00 +01:00
for(i=0; i < len; i++ )
fprintf(logfp, " %02X", ((const byte*)buf)[i] );
fputc('\n', logfp);
2002-06-29 15:46:34 +02:00
#ifdef __riscos__
fflush( logfp );
#endif /* __riscos__ */
1997-11-18 15:06:00 +01:00
}