1
1
libssh/src/log.c

257 строки
5.7 KiB
C
Исходник Обычный вид История

/*
* log.c - logging and debugging functions
*
* This file is part of the SSH Library
*
2014-01-07 15:18:15 +01:00
* Copyright (c) 2008-2013 by Aris Adamantiadis
*
* The SSH Library is free software; you can redistribute it and/or modify
* it under the terms of the GNU Lesser General Public License as published by
* the Free Software Foundation; either version 2.1 of the License, or (at your
* option) any later version.
*
* The SSH Library 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 Lesser General Public
* License for more details.
*
* You should have received a copy of the GNU Lesser General Public License
* along with the SSH Library; see the file COPYING. 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 <stdarg.h>
#include <string.h>
#ifdef HAVE_SYS_TIME_H
2011-09-10 11:49:53 +02:00
#include <sys/time.h>
#endif /* HAVE_SYS_TIME_H */
#ifdef HAVE_SYS_UTIME_H
#include <sys/utime.h>
#endif /* HAVE_SYS_UTIME_H */
2011-09-11 14:38:44 +02:00
#include <time.h>
#include "libssh/priv.h"
2011-09-10 11:49:53 +02:00
#include "libssh/misc.h"
#include "libssh/session.h"
#ifndef LOG_SIZE
#define LOG_SIZE 1024
#endif
static LIBSSH_THREAD int ssh_log_level;
static LIBSSH_THREAD ssh_logging_callback ssh_log_cb;
static LIBSSH_THREAD void *ssh_log_userdata;
2013-07-14 12:36:59 +02:00
/**
2010-04-04 15:13:15 +02:00
* @defgroup libssh_log The SSH logging functions.
* @ingroup libssh
*
2010-04-04 15:13:15 +02:00
* Logging functions for debugging and problem resolving.
*
* @{
*/
2011-09-10 11:49:53 +02:00
static int current_timestring(int hires, char *buf, size_t len)
{
char tbuf[64];
struct timeval tv;
struct tm *tm;
time_t t;
gettimeofday(&tv, NULL);
t = (time_t) tv.tv_sec;
tm = localtime(&t);
if (tm == NULL) {
return -1;
}
if (hires) {
strftime(tbuf, sizeof(tbuf) - 1, "%Y/%m/%d %H:%M:%S", tm);
2013-11-04 10:49:32 +01:00
snprintf(buf, len, "%s.%06ld", tbuf, (long)tv.tv_usec);
2011-09-10 11:49:53 +02:00
} else {
strftime(tbuf, sizeof(tbuf) - 1, "%Y/%m/%d %H:%M:%S", tm);
snprintf(buf, len, "%s", tbuf);
}
return 0;
}
2013-07-14 12:36:59 +02:00
static void ssh_log_stderr(int verbosity,
const char *function,
const char *buffer)
2011-09-17 11:05:17 +02:00
{
char date[128] = {0};
2011-09-17 11:05:17 +02:00
int rc;
rc = current_timestring(1, date, sizeof(date));
if (rc == 0) {
2013-07-14 12:36:59 +02:00
fprintf(stderr, "[%s, %d] %s:", date, verbosity, function);
2011-09-17 11:05:17 +02:00
} else {
fprintf(stderr, "[%d] %s", verbosity, function);
}
2013-07-14 12:36:59 +02:00
2011-09-17 11:05:17 +02:00
fprintf(stderr, " %s\n", buffer);
}
static void ssh_log_custom(ssh_logging_callback log_fn,
int verbosity,
const char *function,
const char *buffer)
{
char buf[LOG_SIZE + 64];
snprintf(buf, sizeof(buf), "%s: %s", function, buffer);
log_fn(verbosity, function, buf, ssh_get_log_userdata());
}
2013-07-14 12:12:29 +02:00
void ssh_log_function(int verbosity,
const char *function,
const char *buffer)
2013-07-14 12:36:59 +02:00
{
ssh_logging_callback log_fn = ssh_get_log_callback();
2011-09-10 11:49:53 +02:00
if (log_fn) {
ssh_log_custom(log_fn, verbosity, function, buffer);
2011-09-10 11:49:53 +02:00
return;
}
2013-07-14 12:36:59 +02:00
ssh_log_stderr(verbosity, function, buffer);
2011-09-10 11:49:53 +02:00
}
void ssh_vlog(int verbosity,
const char *function,
const char *format,
va_list *va)
{
char buffer[LOG_SIZE];
vsnprintf(buffer, sizeof(buffer), format, *va);
ssh_log_function(verbosity, function, buffer);
}
2013-07-14 12:36:59 +02:00
void _ssh_log(int verbosity,
const char *function,
const char *format, ...)
{
va_list va;
if (verbosity <= ssh_get_log_level()) {
va_start(va, format);
ssh_vlog(verbosity, function, format, &va);
2013-07-14 12:36:59 +02:00
va_end(va);
}
}
/* LEGACY */
2011-09-10 11:49:53 +02:00
void ssh_log(ssh_session session,
int verbosity,
const char *format, ...)
{
va_list va;
2011-09-10 11:49:53 +02:00
if (verbosity <= session->common.log_verbosity) {
va_start(va, format);
ssh_vlog(verbosity, "", format, &va);
2011-09-10 11:49:53 +02:00
va_end(va);
}
}
/** @internal
* @brief log a SSH event with a common pointer
* @param common The SSH/bind session.
* @param verbosity The verbosity of the event.
* @param format The format string of the log entry.
*/
2011-09-17 10:28:39 +02:00
void ssh_log_common(struct ssh_common_struct *common,
int verbosity,
const char *function,
const char *format, ...)
{
va_list va;
if (verbosity <= common->log_verbosity) {
va_start(va, format);
ssh_vlog(verbosity, function, format, &va);
2011-09-17 10:28:39 +02:00
va_end(va);
}
}
2013-07-14 12:36:59 +02:00
/* PUBLIC */
2013-07-14 12:03:54 +02:00
/**
* @brief Set the log level of the library.
*
* @param[in] level The level to set.
*
* @return SSH_OK on success, SSH_ERROR on error.
*/
2013-07-14 12:36:59 +02:00
int ssh_set_log_level(int level) {
if (level < 0) {
2013-07-14 12:03:54 +02:00
return SSH_ERROR;
2013-07-14 12:36:59 +02:00
}
ssh_log_level = level;
2013-07-14 12:03:54 +02:00
return SSH_OK;
2013-07-14 12:36:59 +02:00
}
2013-07-14 12:03:54 +02:00
/**
* @brief Get the log level of the library.
*
* @return The value of the log level.
*/
2013-07-14 12:36:59 +02:00
int ssh_get_log_level(void) {
return ssh_log_level;
}
int ssh_set_log_callback(ssh_logging_callback cb) {
if (cb == NULL) {
2013-07-14 12:03:54 +02:00
return SSH_ERROR;
2013-07-14 12:36:59 +02:00
}
ssh_log_cb = cb;
2013-07-14 12:03:54 +02:00
return SSH_OK;
2013-07-14 12:36:59 +02:00
}
ssh_logging_callback ssh_get_log_callback(void) {
return ssh_log_cb;
}
2013-07-14 12:03:54 +02:00
/**
* @brief Get the userdata of the logging function.
*
* @return The userdata if set or NULL.
*/
2013-07-14 12:36:59 +02:00
void *ssh_get_log_userdata(void)
{
if (ssh_log_userdata == NULL) {
return NULL;
}
2013-07-14 12:36:59 +02:00
return ssh_log_userdata;
}
2013-07-14 12:03:54 +02:00
/**
* @brief Set the userdata for the logging function.
*
* @param[in] data The userdata to set.
*
* @return SSH_OK on success.
*/
2013-07-14 12:36:59 +02:00
int ssh_set_log_userdata(void *data)
{
ssh_log_userdata = data;
return 0;
}
2010-08-28 21:32:08 +02:00
/** @} */