public inbox for passt-dev@passt.top
 help / color / mirror / code / Atom feed
1058ca5c726d3ca850a1033ae17e98693c5f9b88 blob 4572 bytes (raw)

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
 
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright (c) 2022 Red Hat GmbH
 * Author: Stefano Brivio <sbrivio@redhat.com>
 */

#ifndef LOG_H
#define LOG_H

#include <stdbool.h>
#include <stdio.h>
#include <stdlib.h>

#ifdef PESTO

#include <errno.h>

#include "common.h"

extern bool debug_flag;

#define msg(...)							\
	do {								\
		FPRINTF(stderr, __VA_ARGS__);				\
		FPRINTF(stderr, "\n");					\
	} while (0)

#define msg_perror(...)							\
	do {								\
		int errno_ = errno;					\
		FPRINTF(stderr, __VA_ARGS__);				\
		FPRINTF(stderr, ": %s\n", strerror_(errno_));		\
	} while (0)

#define die(...)							\
	do {								\
		msg(__VA_ARGS__);					\
		exit(EXIT_FAILURE);					\
	} while (0)

#define die_perror(...)							\
	do {								\
		msg_perror(__VA_ARGS__);				\
		exit(EXIT_FAILURE);					\
	} while (0)

#define warn(...)		msg(__VA_ARGS__)
#define warn_perror(...)	msg_perror(__VA_ARGS__)
#define info(...)		msg(__VA_ARGS__)
#define info_perror(...)	msg_perror(__VA_ARGS__)

#define debug(...)							\
	do {								\
		if (debug_flag)						\
			msg(__VA_ARGS__);				\
	} while (0)

#define debug_perror_(...)						\
	do {								\
		if (debug_flag)						\
			msg_perror(__VA_ARGS__);			\
	} while (0)

#else /* !PESTO */

#include <stdarg.h>
#include <stddef.h>
#include <syslog.h>

/* This would make more sense in util.h, but because we use it in die(), that
 * would cause awkward circular reference problems.
 */
void passt_exit(int status) __attribute__((noreturn));

#define LOGFILE_SIZE_DEFAULT		(1024 * 1024UL)
#define LOGFILE_CUT_RATIO		30	/* When full, cut ~30% size */
#define LOGFILE_SIZE_MIN		(5UL * MAX(BUFSIZ, PAGE_SIZE))

void vlogmsg(bool newline, bool cont, int pri, const char *format, va_list ap);
void logmsg(bool newline, bool cont, int pri, const char *format, ...)
	__attribute__((format(printf, 4, 5)));
void logmsg_perror(int pri, const char *format, ...)
	__attribute__((format(printf, 2, 3)));

#define err(...)		logmsg(true, false, LOG_ERR,     __VA_ARGS__)
#define warn(...)		logmsg(true, false, LOG_WARNING, __VA_ARGS__)
#define info(...)		logmsg(true, false, LOG_INFO,    __VA_ARGS__)
#define debug(...)		logmsg(true, false, LOG_DEBUG,   __VA_ARGS__)

#define err_perror(...)		logmsg_perror(      LOG_ERR,     __VA_ARGS__)
#define warn_perror(...)	logmsg_perror(      LOG_WARNING, __VA_ARGS__)
#define info_perror(...)	logmsg_perror(      LOG_INFO,    __VA_ARGS__)
#define debug_perror(...)	logmsg_perror(      LOG_DEBUG,   __VA_ARGS__)

#define die(...)							\
	do {								\
		err(__VA_ARGS__);					\
		passt_exit(EXIT_FAILURE);				\
	} while (0)

#define die_perror(...)							\
	do {								\
		err_perror(__VA_ARGS__);				\
		passt_exit(EXIT_FAILURE);				\
	} while (0)

#define LOG_RATELIMIT_INTERVAL	1	/* Default rate limit window in seconds */
#define LOG_RATELIMIT_BURST	5	/* Max messages per window per call site */

/**
 * logmsg_ratelimit() - Log a message with rate limiting
 * @fn:		Logging function name (e.g. warn, info, debug)
 * @now:	Current timestamp
 */
#define logmsg_ratelimit(fn, now, ...)					\
	do {								\
		static unsigned int rl_suppressed_;			\
		static unsigned int rl_printed_;			\
		static time_t rl_last_;					\
									\
		if ((now)->tv_sec - rl_last_ > LOG_RATELIMIT_INTERVAL) {\
			rl_last_ = (now)->tv_sec;			\
			rl_printed_ = 0;				\
		}							\
									\
		if (rl_printed_ < LOG_RATELIMIT_BURST) {		\
			fn(__VA_ARGS__);				\
			if (rl_suppressed_) {				\
				fn("(suppressed %u similar messages)",	\
				   rl_suppressed_);			\
				rl_suppressed_ = 0;			\
			}						\
			rl_printed_++;					\
			if (rl_printed_ == LOG_RATELIMIT_BURST)		\
				fn("(suppressing further similar"	\
				   " messages)");			\
		} else {						\
			rl_suppressed_++;				\
		}							\
	} while (0)

#define err_ratelimit(now, ...)						\
	logmsg_ratelimit(err, now, __VA_ARGS__)
#define warn_ratelimit(now, ...)					\
	logmsg_ratelimit(warn, now, __VA_ARGS__)
#define info_ratelimit(now, ...)					\
	logmsg_ratelimit(info, now, __VA_ARGS__)
#define debug_ratelimit(now, ...)					\
	logmsg_ratelimit(debug, now, __VA_ARGS__)

extern int log_file;
extern int log_trace;
extern bool log_conf_parsed;
extern bool log_stderr;
extern struct timespec log_start;

void trace_init(int enable);
#define trace(...)							\
	do {								\
		if (log_trace)						\
			debug(__VA_ARGS__);				\
	} while (0)

void __openlog(const char *ident, int option, int facility);
void logfile_init(const char *name, const char *path, size_t size);
void __setlogmask(int mask);

#endif /* !PESTO */

#endif /* LOG_H */
debug log:

solving 1058ca5c ...
found 1058ca5c in https://archives.passt.top/passt-dev/20260421062516.2601204-11-david@gibson.dropbear.id.au/ ||
	https://archives.passt.top/passt-dev/20260421044217.2500314-10-david@gibson.dropbear.id.au/
found dbab0067 in https://passt.top/passt
preparing index
index prepared:
100644 dbab006765d9988ba50365635094863449f88422	log.h

applying [1/2] https://archives.passt.top/passt-dev/20260421062516.2601204-11-david@gibson.dropbear.id.au/
diff --git a/log.h b/log.h
index dbab0067..1058ca5c 100644

Checking patch log.h...
Applied patch log.h cleanly.

skipping https://archives.passt.top/passt-dev/20260421044217.2500314-10-david@gibson.dropbear.id.au/ for 1058ca5c
index at:
100644 1058ca5c726d3ca850a1033ae17e98693c5f9b88	log.h

Code repositories for project(s) associated with this public inbox

	https://passt.top/passt

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for IMAP folder(s).