2003-01-09 13:36:05 +01:00
|
|
|
/* logging.h
|
2010-03-10 18:22:23 +01:00
|
|
|
* Copyright (C) 1999, 2000, 2001, 2004, 2006,
|
|
|
|
* 2010 Free Software Foundation, Inc.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* This file is part of GnuPG.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2017-02-24 13:48:28 +01:00
|
|
|
* GnuPG is free software; you can redistribute and/or modify this
|
|
|
|
* part of GnuPG under the terms of either
|
2011-09-30 12:52:11 +02:00
|
|
|
*
|
|
|
|
* - the GNU Lesser General Public License as published by the Free
|
|
|
|
* Software Foundation; either version 3 of the License, or (at
|
|
|
|
* your option) any later version.
|
|
|
|
*
|
|
|
|
* or
|
|
|
|
*
|
|
|
|
* - 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.
|
|
|
|
*
|
|
|
|
* or both in parallel, as here.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2015-04-24 16:42:28 +02:00
|
|
|
* GnuPG is distributed in the hope that it will be useful, but
|
2006-10-02 13:54:35 +02:00
|
|
|
* WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
2011-09-30 12:52:11 +02:00
|
|
|
* General Public License for more details.
|
2003-01-09 13:36:05 +01:00
|
|
|
*
|
2011-09-30 12:52:11 +02:00
|
|
|
* You should have received a copies of the GNU General Public License
|
|
|
|
* and the GNU Lesser General Public License along with this program;
|
2016-11-05 12:02:19 +01:00
|
|
|
* if not, see <https://www.gnu.org/licenses/>.
|
2003-01-09 13:36:05 +01:00
|
|
|
*/
|
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#ifndef GNUPG_COMMON_LOGGING_H
|
|
|
|
#define GNUPG_COMMON_LOGGING_H
|
2003-01-09 13:36:05 +01:00
|
|
|
|
|
|
|
#include <stdio.h>
|
2015-04-24 15:19:10 +02:00
|
|
|
#include <stdarg.h>
|
2015-09-29 13:20:26 +02:00
|
|
|
#include <gpg-error.h>
|
2003-01-09 13:36:05 +01:00
|
|
|
#include "mischelp.h"
|
2010-08-18 21:25:15 +02:00
|
|
|
#include "w32help.h"
|
2003-01-09 13:36:05 +01:00
|
|
|
|
|
|
|
int log_get_errorcount (int clear);
|
2003-06-18 21:56:13 +02:00
|
|
|
void log_inc_errorcount (void);
|
2003-01-09 13:36:05 +01:00
|
|
|
void log_set_file( const char *name );
|
|
|
|
void log_set_fd (int fd);
|
2016-08-29 11:45:47 +02:00
|
|
|
void log_set_socket_dir_cb (const char *(*fnc)(void));
|
2010-06-09 18:53:51 +02:00
|
|
|
void log_set_pid_suffix_cb (int (*cb)(unsigned long *r_value));
|
2003-01-09 13:36:05 +01:00
|
|
|
void log_set_prefix (const char *text, unsigned int flags);
|
|
|
|
const char *log_get_prefix (unsigned int *flags);
|
2004-04-16 11:46:54 +02:00
|
|
|
int log_test_fd (int fd);
|
2003-01-09 13:36:05 +01:00
|
|
|
int log_get_fd(void);
|
2010-03-10 18:22:23 +01:00
|
|
|
estream_t log_get_stream (void);
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2015-07-26 12:50:16 +02:00
|
|
|
#ifdef GPGRT_HAVE_MACRO_FUNCTION
|
|
|
|
void bug_at (const char *file, int line, const char *func)
|
|
|
|
GPGRT_ATTR_NORETURN;
|
2016-04-29 11:04:04 +02:00
|
|
|
void _log_assert (const char *expr, const char *file, int line,
|
|
|
|
const char *func) GPGRT_ATTR_NORETURN;
|
|
|
|
# define BUG() bug_at( __FILE__ , __LINE__, __FUNCTION__)
|
2017-01-02 16:30:45 +01:00
|
|
|
# define log_assert(expr) \
|
|
|
|
((expr) \
|
|
|
|
? (void) 0 \
|
|
|
|
: _log_assert (#expr, __FILE__, __LINE__, __FUNCTION__))
|
2016-04-29 11:04:04 +02:00
|
|
|
#else /*!GPGRT_HAVE_MACRO_FUNCTION*/
|
|
|
|
void bug_at (const char *file, int line);
|
2017-01-10 12:31:46 +01:00
|
|
|
void _log_assert (const char *expr, const char *file, int line);
|
2003-01-09 13:36:05 +01:00
|
|
|
# define BUG() bug_at( __FILE__ , __LINE__ )
|
2017-01-02 16:30:45 +01:00
|
|
|
# define log_assert(expr) \
|
|
|
|
((expr) \
|
|
|
|
? (void) 0 \
|
|
|
|
: _log_assert (#expr, __FILE__, __LINE__))
|
2016-04-29 11:04:04 +02:00
|
|
|
#endif /*!GPGRT_HAVE_MACRO_FUNCTION*/
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2015-04-24 15:19:10 +02:00
|
|
|
/* Flag values for log_set_prefix. */
|
2015-04-24 15:49:18 +02:00
|
|
|
#define GPGRT_LOG_WITH_PREFIX 1
|
|
|
|
#define GPGRT_LOG_WITH_TIME 2
|
|
|
|
#define GPGRT_LOG_WITH_PID 4
|
|
|
|
#define GPGRT_LOG_RUN_DETACHED 256
|
|
|
|
#define GPGRT_LOG_NO_REGISTRY 512
|
2015-04-24 15:19:10 +02:00
|
|
|
|
|
|
|
/* Log levels as used by log_log. */
|
2003-01-09 13:36:05 +01:00
|
|
|
enum jnlib_log_levels {
|
2015-04-24 15:49:18 +02:00
|
|
|
GPGRT_LOG_BEGIN,
|
|
|
|
GPGRT_LOG_CONT,
|
|
|
|
GPGRT_LOG_INFO,
|
|
|
|
GPGRT_LOG_WARN,
|
|
|
|
GPGRT_LOG_ERROR,
|
|
|
|
GPGRT_LOG_FATAL,
|
|
|
|
GPGRT_LOG_BUG,
|
|
|
|
GPGRT_LOG_DEBUG
|
2003-01-09 13:36:05 +01:00
|
|
|
};
|
2015-07-26 12:50:16 +02:00
|
|
|
void log_log (int level, const char *fmt, ...) GPGRT_ATTR_PRINTF(2,3);
|
2003-01-09 13:36:05 +01:00
|
|
|
void log_logv (int level, const char *fmt, va_list arg_ptr);
|
2017-02-20 17:22:59 +01:00
|
|
|
void log_logv_with_prefix (int level, const char *prefix,
|
|
|
|
const char *fmt, va_list arg_ptr);
|
2010-03-11 13:34:11 +01:00
|
|
|
void log_string (int level, const char *string);
|
2015-07-26 12:50:16 +02:00
|
|
|
void log_bug (const char *fmt, ...) GPGRT_ATTR_NR_PRINTF(1,2);
|
|
|
|
void log_fatal (const char *fmt, ...) GPGRT_ATTR_NR_PRINTF(1,2);
|
|
|
|
void log_error (const char *fmt, ...) GPGRT_ATTR_PRINTF(1,2);
|
|
|
|
void log_info (const char *fmt, ...) GPGRT_ATTR_PRINTF(1,2);
|
|
|
|
void log_debug (const char *fmt, ...) GPGRT_ATTR_PRINTF(1,2);
|
2017-01-11 10:21:32 +01:00
|
|
|
void log_debug_with_string (const char *string, const char *fmt,
|
|
|
|
...) GPGRT_ATTR_PRINTF(2,3);
|
2015-07-26 12:50:16 +02:00
|
|
|
void log_printf (const char *fmt, ...) GPGRT_ATTR_PRINTF(1,2);
|
2010-03-15 12:15:45 +01:00
|
|
|
void log_flush (void);
|
2007-08-22 22:36:33 +02:00
|
|
|
|
|
|
|
/* Print a hexdump of BUFFER. With TEXT passes as NULL print just the
|
|
|
|
raw dump, with TEXT being an empty string, print a trailing
|
|
|
|
linefeed, otherwise print an entire debug line with TEXT followed
|
|
|
|
by the hexdump and a final LF. */
|
2003-01-09 13:36:05 +01:00
|
|
|
void log_printhex (const char *text, const void *buffer, size_t length);
|
|
|
|
|
2013-01-07 16:51:24 +01:00
|
|
|
void log_clock (const char *string);
|
|
|
|
|
2003-01-09 13:36:05 +01:00
|
|
|
|
2015-04-24 16:42:28 +02:00
|
|
|
#endif /*GNUPG_COMMON_LOGGING_H*/
|