1997-11-18 15:06:00 +01:00
|
|
|
/* logger.c - log functions
|
1998-02-24 19:50:46 +01:00
|
|
|
* Copyright (C) 1998 Free Software Foundation, Inc.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* This file is part of GnuPG.
|
1997-11-18 15:06:00 +01:00
|
|
|
*
|
1998-12-23 13:41:40 +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
|
|
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
1998-12-23 13:41:40 +01:00
|
|
|
* 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
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <config.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "util.h"
|
1998-10-06 14:10:02 +02:00
|
|
|
#include "i18n.h"
|
1997-11-18 15:06:00 +01:00
|
|
|
|
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;
|
1997-11-21 15:53:57 +01:00
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
void
|
|
|
|
log_set_name( const char *name )
|
|
|
|
{
|
|
|
|
m_free(pgm_name);
|
|
|
|
if( name )
|
|
|
|
pgm_name = m_strdup(name);
|
|
|
|
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;
|
|
|
|
}
|
|
|
|
|
1998-11-10 13:59:59 +01:00
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
static void
|
|
|
|
print_prefix(const char *text)
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
1998-02-13 21:58:50 +01:00
|
|
|
if( pgm_name )
|
|
|
|
fprintf(stderr, "%s%s: %s", pgm_name, pidstring, text );
|
|
|
|
else
|
|
|
|
fprintf(stderr, "?%s: %s", pidstring, text );
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
|
1998-07-08 11:29:43 +02:00
|
|
|
static void
|
|
|
|
print_prefix_f(const char *text, const char *fname)
|
|
|
|
{
|
|
|
|
if( pgm_name )
|
|
|
|
fprintf(stderr, "%s%s:%s: %s", pgm_name, pidstring, fname, text );
|
|
|
|
else
|
|
|
|
fprintf(stderr, "?%s:%s: %s", pidstring, fname, text );
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
void
|
1998-06-16 17:13:28 +02:00
|
|
|
g10_log_info( const char *fmt, ... )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix("");
|
1997-11-18 15:06:00 +01:00
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
}
|
|
|
|
|
1998-07-08 11:29:43 +02:00
|
|
|
void
|
|
|
|
g10_log_info_f( const char *fname, const char *fmt, ... )
|
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
|
|
|
print_prefix_f("", fname);
|
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
void
|
1998-06-16 17:13:28 +02:00
|
|
|
g10_log_error( const char *fmt, ... )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix("");
|
1997-11-18 15:06:00 +01:00
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
1998-01-02 21:40:10 +01:00
|
|
|
errorcount++;
|
1997-11-18 15:06:00 +01:00
|
|
|
}
|
|
|
|
|
1998-07-08 11:29:43 +02:00
|
|
|
void
|
|
|
|
g10_log_error_f( const char *fname, const char *fmt, ... )
|
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
|
|
|
print_prefix_f("", fname);
|
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
errorcount++;
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
void
|
1998-06-16 17:13:28 +02:00
|
|
|
g10_log_fatal( const char *fmt, ... )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix("fatal: ");
|
1997-11-18 15:06:00 +01:00
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
1998-01-28 17:09:43 +01:00
|
|
|
secmem_dump_stats();
|
1997-11-18 15:06:00 +01:00
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
1998-07-08 11:29:43 +02:00
|
|
|
void
|
|
|
|
g10_log_fatal_f( const char *fname, const char *fmt, ... )
|
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
|
|
|
print_prefix_f("fatal: ", fname);
|
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
secmem_dump_stats();
|
|
|
|
exit(2);
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
void
|
1998-06-16 17:13:28 +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 );
|
1998-10-21 19:34:36 +02:00
|
|
|
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();
|
|
|
|
}
|
|
|
|
|
1998-02-12 00:22:09 +01:00
|
|
|
#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 5 )
|
1998-01-16 22:15:24 +01:00
|
|
|
void
|
1998-06-16 17:13:28 +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
|
1998-06-16 17:13:28 +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
|
1998-06-16 17:13:28 +02:00
|
|
|
g10_log_debug( const char *fmt, ... )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix("DBG: ");
|
1997-11-18 15:06:00 +01:00
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
}
|
|
|
|
|
1998-07-08 11:29:43 +02:00
|
|
|
void
|
|
|
|
g10_log_debug_f( const char *fname, const char *fmt, ... )
|
|
|
|
{
|
|
|
|
va_list arg_ptr ;
|
|
|
|
|
|
|
|
print_prefix_f("DBG: ", fname);
|
|
|
|
va_start( arg_ptr, fmt ) ;
|
|
|
|
vfprintf(stderr,fmt,arg_ptr) ;
|
|
|
|
va_end(arg_ptr);
|
|
|
|
}
|
|
|
|
|
1997-11-18 15:06:00 +01:00
|
|
|
|
|
|
|
|
|
|
|
void
|
1999-05-17 22:03:24 +02:00
|
|
|
g10_log_hexdump( const char *text, const char *buf, size_t len )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
|
|
|
int i;
|
|
|
|
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix(text);
|
1997-11-18 15:06:00 +01:00
|
|
|
for(i=0; i < len; i++ )
|
1999-05-17 22:03:24 +02:00
|
|
|
fprintf(stderr, " %02X", ((const byte*)buf)[i] );
|
1997-11-18 15:06:00 +01:00
|
|
|
fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
void
|
1998-06-16 17:13:28 +02:00
|
|
|
g10_log_mpidump( const char *text, MPI a )
|
1997-11-18 15:06:00 +01:00
|
|
|
{
|
1998-02-13 21:58:50 +01:00
|
|
|
print_prefix(text);
|
1997-11-18 15:06:00 +01:00
|
|
|
mpi_print(stderr, a, 1 );
|
|
|
|
fputc('\n', stderr);
|
|
|
|
}
|
|
|
|
|