1e00d57694
Stops short of actually using DM's various logging macros (e.g. DMERR, DMINFO, etc) because VDO's logger isn't quite compatible with them. Also switch emit_log_message_to_kernel() from open-coding printk with log-level to using corresponding pr_ macro. Signed-off-by: Mike Snitzer <snitzer@kernel.org> Signed-off-by: Bruce Johnston <bjohnsto@redhat.com> Signed-off-by: Matthew Sakai <msakai@redhat.com>
99 lines
3.0 KiB
C
99 lines
3.0 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright 2023 Red Hat
|
|
*/
|
|
|
|
#ifndef UDS_LOGGER_H
|
|
#define UDS_LOGGER_H
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/ratelimit.h>
|
|
#include <linux/device-mapper.h>
|
|
|
|
/* Custom logging utilities for UDS */
|
|
|
|
#define UDS_LOG_EMERG 0
|
|
#define UDS_LOG_ALERT 1
|
|
#define UDS_LOG_CRIT 2
|
|
#define UDS_LOG_ERR 3
|
|
#define UDS_LOG_WARNING 4
|
|
#define UDS_LOG_NOTICE 5
|
|
#define UDS_LOG_INFO 6
|
|
#define UDS_LOG_DEBUG 7
|
|
|
|
#define DM_MSG_PREFIX "vdo"
|
|
#define UDS_LOGGING_MODULE_NAME DM_NAME ": " DM_MSG_PREFIX
|
|
|
|
/* Apply a rate limiter to a log method call. */
|
|
#define uds_log_ratelimit(log_fn, ...) \
|
|
do { \
|
|
static DEFINE_RATELIMIT_STATE(_rs, \
|
|
DEFAULT_RATELIMIT_INTERVAL, \
|
|
DEFAULT_RATELIMIT_BURST); \
|
|
if (__ratelimit(&_rs)) { \
|
|
log_fn(__VA_ARGS__); \
|
|
} \
|
|
} while (0)
|
|
|
|
int uds_get_log_level(void);
|
|
|
|
void uds_set_log_level(int new_log_level);
|
|
|
|
int uds_log_string_to_priority(const char *string);
|
|
|
|
const char *uds_log_priority_to_string(int priority);
|
|
|
|
void uds_log_embedded_message(int priority, const char *module, const char *prefix,
|
|
const char *fmt1, va_list args1, const char *fmt2, ...)
|
|
__printf(4, 0) __printf(6, 7);
|
|
|
|
void uds_log_backtrace(int priority);
|
|
|
|
/* All log functions will preserve the caller's value of errno. */
|
|
|
|
#define uds_log_strerror(priority, errnum, ...) \
|
|
__uds_log_strerror(priority, errnum, UDS_LOGGING_MODULE_NAME, __VA_ARGS__)
|
|
|
|
int __uds_log_strerror(int priority, int errnum, const char *module,
|
|
const char *format, ...)
|
|
__printf(4, 5);
|
|
|
|
int uds_vlog_strerror(int priority, int errnum, const char *module, const char *format,
|
|
va_list args)
|
|
__printf(4, 0);
|
|
|
|
/* Log an error prefixed with the string associated with the errnum. */
|
|
#define uds_log_error_strerror(errnum, ...) \
|
|
uds_log_strerror(UDS_LOG_ERR, errnum, __VA_ARGS__)
|
|
|
|
#define uds_log_debug_strerror(errnum, ...) \
|
|
uds_log_strerror(UDS_LOG_DEBUG, errnum, __VA_ARGS__)
|
|
|
|
#define uds_log_info_strerror(errnum, ...) \
|
|
uds_log_strerror(UDS_LOG_INFO, errnum, __VA_ARGS__)
|
|
|
|
#define uds_log_warning_strerror(errnum, ...) \
|
|
uds_log_strerror(UDS_LOG_WARNING, errnum, __VA_ARGS__)
|
|
|
|
#define uds_log_fatal_strerror(errnum, ...) \
|
|
uds_log_strerror(UDS_LOG_CRIT, errnum, __VA_ARGS__)
|
|
|
|
#define uds_log_message(priority, ...) \
|
|
__uds_log_message(priority, UDS_LOGGING_MODULE_NAME, __VA_ARGS__)
|
|
|
|
void __uds_log_message(int priority, const char *module, const char *format, ...)
|
|
__printf(3, 4);
|
|
|
|
#define uds_log_debug(...) uds_log_message(UDS_LOG_DEBUG, __VA_ARGS__)
|
|
|
|
#define uds_log_info(...) uds_log_message(UDS_LOG_INFO, __VA_ARGS__)
|
|
|
|
#define uds_log_warning(...) uds_log_message(UDS_LOG_WARNING, __VA_ARGS__)
|
|
|
|
#define uds_log_error(...) uds_log_message(UDS_LOG_ERR, __VA_ARGS__)
|
|
|
|
#define uds_log_fatal(...) uds_log_message(UDS_LOG_CRIT, __VA_ARGS__)
|
|
|
|
void uds_pause_for_logger(void);
|
|
#endif /* UDS_LOGGER_H */
|