fuzz coverage

Coverage Report

Created: 2026-05-08 05:52

next uncovered line (L), next uncovered region (R), next uncovered branch (B)
/root/bitcoin/src/logging.cpp
Line
Count
Source
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
2
// Copyright (c) 2009-present The Bitcoin Core developers
3
// Distributed under the MIT software license, see the accompanying
4
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6
#include <logging.h>
7
#include <memusage.h>
8
#include <util/check.h>
9
#include <util/fs.h>
10
#include <util/string.h>
11
#include <util/threadnames.h>
12
#include <util/time.h>
13
14
#include <array>
15
#include <cstring>
16
#include <map>
17
#include <optional>
18
#include <utility>
19
20
using util::Join;
21
using util::RemovePrefixView;
22
23
const char * const DEFAULT_DEBUGLOGFILE = "debug.log";
24
constexpr auto MAX_USER_SETABLE_SEVERITY_LEVEL{BCLog::Level::Info};
25
26
BCLog::Logger& LogInstance()
27
6.65M
{
28
/**
29
 * NOTE: the logger instances is leaked on exit. This is ugly, but will be
30
 * cleaned up by the OS/libc. Defining a logger as a global object doesn't work
31
 * since the order of destruction of static/global objects is undefined.
32
 * Consider if the logger gets destroyed, and then some later destructor calls
33
 * LogInfo, maybe indirectly, and you get a core dump at shutdown trying to
34
 * access the logger. When the shutdown sequence is fully audited and tested,
35
 * explicit destruction of these objects can be implemented by changing this
36
 * from a raw pointer to a std::unique_ptr.
37
 * Since the ~Logger() destructor is never called, the Logger class and all
38
 * its subclasses must have implicitly-defined destructors.
39
 *
40
 * This method of initialization was originally introduced in
41
 * ee3374234c60aba2cc4c5cd5cac1c0aefc2d817c.
42
 */
43
6.65M
    static BCLog::Logger* g_logger{new BCLog::Logger()};
44
6.65M
    return *g_logger;
45
6.65M
}
46
47
bool fLogIPs = DEFAULT_LOGIPS;
48
49
static int FileWriteStr(std::string_view str, FILE *fp)
50
0
{
51
0
    return fwrite(str.data(), 1, str.size(), fp);
52
0
}
53
54
bool BCLog::Logger::StartLogging()
55
0
{
56
0
    STDLOCK(m_cs);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
57
58
0
    assert(m_buffering);
59
0
    assert(m_fileout == nullptr);
60
61
0
    if (m_print_to_file) {
62
0
        assert(!m_file_path.empty());
63
0
        m_fileout = fsbridge::fopen(m_file_path, "a");
64
0
        if (!m_fileout) {
65
0
            return false;
66
0
        }
67
68
0
        setbuf(m_fileout, nullptr); // unbuffered
69
70
        // Add newlines to the logfile to distinguish this execution from the
71
        // last one.
72
0
        FileWriteStr("\n\n\n\n\n", m_fileout);
73
0
    }
74
75
    // dump buffered messages from before we opened the log
76
0
    m_buffering = false;
77
0
    if (m_buffer_lines_discarded > 0) {
78
0
        LogPrint_({
79
0
            .category = BCLog::ALL,
80
0
            .level = Level::Info,
81
0
            .should_ratelimit = false,
82
0
            .source_loc = SourceLocation{__func__},
83
0
            .message = strprintf("Early logging buffer overflowed, %d log lines discarded.", m_buffer_lines_discarded),
Line
Count
Source
1172
0
#define strprintf tfm::format
84
0
        });
85
0
    }
86
0
    while (!m_msgs_before_open.empty()) {
87
0
        const auto& buflog = m_msgs_before_open.front();
88
0
        std::string s{Format(buflog)};
89
0
        m_msgs_before_open.pop_front();
90
91
0
        if (m_print_to_file) FileWriteStr(s, m_fileout);
92
0
        if (m_print_to_console) fwrite(s.data(), 1, s.size(), stdout);
93
0
        for (const auto& cb : m_print_callbacks) {
94
0
            cb(s);
95
0
        }
96
0
    }
97
0
    m_cur_buffer_memusage = 0;
98
0
    if (m_print_to_console) fflush(stdout);
99
100
0
    return true;
101
0
}
102
103
void BCLog::Logger::DisconnectTestLogger()
104
1
{
105
1
    STDLOCK(m_cs);
Line
Count
Source
41
1
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
1
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
1
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
1
#define PASTE(x, y) x ## y
106
1
    m_buffering = true;
107
1
    if (m_fileout != nullptr) 
fclose(m_fileout)0
;
108
1
    m_fileout = nullptr;
109
1
    m_print_callbacks.clear();
110
1
    m_max_buffer_memusage = DEFAULT_MAX_LOG_BUFFER;
111
1
    m_cur_buffer_memusage = 0;
112
1
    m_buffer_lines_discarded = 0;
113
1
    m_msgs_before_open.clear();
114
1
}
115
116
void BCLog::Logger::DisableLogging()
117
0
{
118
0
    {
119
0
        STDLOCK(m_cs);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
120
0
        assert(m_buffering);
121
0
        assert(m_print_callbacks.empty());
122
0
    }
123
0
    m_print_to_file = false;
124
0
    m_print_to_console = false;
125
0
    StartLogging();
126
0
}
127
128
void BCLog::Logger::EnableCategory(BCLog::LogFlags flag)
129
0
{
130
0
    m_categories |= flag;
131
0
}
132
133
bool BCLog::Logger::EnableCategory(std::string_view str)
134
0
{
135
0
    if (const auto flag{GetLogCategory(str)}) {
136
0
        EnableCategory(*flag);
137
0
        return true;
138
0
    }
139
0
    return false;
140
0
}
141
142
void BCLog::Logger::DisableCategory(BCLog::LogFlags flag)
143
0
{
144
0
    m_categories &= ~flag;
145
0
}
146
147
bool BCLog::Logger::DisableCategory(std::string_view str)
148
0
{
149
0
    if (const auto flag{GetLogCategory(str)}) {
150
0
        DisableCategory(*flag);
151
0
        return true;
152
0
    }
153
0
    return false;
154
0
}
155
156
bool BCLog::Logger::WillLogCategory(BCLog::LogFlags category) const
157
6.24M
{
158
6.24M
    return (m_categories.load(std::memory_order_relaxed) & category) != 0;
159
6.24M
}
160
161
bool BCLog::Logger::WillLogCategoryLevel(BCLog::LogFlags category, BCLog::Level level) const
162
6.24M
{
163
    // Log messages at Info, Warning and Error level unconditionally, so that
164
    // important troubleshooting information doesn't get lost.
165
6.24M
    if (level >= BCLog::Level::Info) 
return true0
;
166
167
6.24M
    if (!WillLogCategory(category)) return false;
168
169
0
    STDLOCK(m_cs);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
170
0
    const auto it{m_category_log_levels.find(category)};
171
0
    return level >= (it == m_category_log_levels.end() ? LogLevel() : it->second);
172
6.24M
}
173
174
bool BCLog::Logger::DefaultShrinkDebugFile() const
175
0
{
176
0
    return m_categories == BCLog::NONE;
177
0
}
178
179
static const std::map<std::string, BCLog::LogFlags, std::less<>> LOG_CATEGORIES_BY_STR{
180
    {"net", BCLog::NET},
181
    {"tor", BCLog::TOR},
182
    {"mempool", BCLog::MEMPOOL},
183
    {"http", BCLog::HTTP},
184
    {"bench", BCLog::BENCH},
185
    {"zmq", BCLog::ZMQ},
186
    {"walletdb", BCLog::WALLETDB},
187
    {"rpc", BCLog::RPC},
188
    {"estimatefee", BCLog::ESTIMATEFEE},
189
    {"addrman", BCLog::ADDRMAN},
190
    {"selectcoins", BCLog::SELECTCOINS},
191
    {"reindex", BCLog::REINDEX},
192
    {"cmpctblock", BCLog::CMPCTBLOCK},
193
    {"rand", BCLog::RAND},
194
    {"prune", BCLog::PRUNE},
195
    {"proxy", BCLog::PROXY},
196
    {"mempoolrej", BCLog::MEMPOOLREJ},
197
    {"libevent", BCLog::LIBEVENT},
198
    {"coindb", BCLog::COINDB},
199
    {"qt", BCLog::QT},
200
    {"leveldb", BCLog::LEVELDB},
201
    {"validation", BCLog::VALIDATION},
202
    {"i2p", BCLog::I2P},
203
    {"ipc", BCLog::IPC},
204
#ifdef DEBUG_LOCKCONTENTION
205
    {"lock", BCLog::LOCK},
206
#endif
207
    {"blockstorage", BCLog::BLOCKSTORAGE},
208
    {"txreconciliation", BCLog::TXRECONCILIATION},
209
    {"scan", BCLog::SCAN},
210
    {"txpackages", BCLog::TXPACKAGES},
211
    {"kernel", BCLog::KERNEL},
212
    {"privatebroadcast", BCLog::PRIVBROADCAST},
213
};
214
215
static const std::unordered_map<BCLog::LogFlags, std::string> LOG_CATEGORIES_BY_FLAG{
216
    // Swap keys and values from LOG_CATEGORIES_BY_STR.
217
0
    [](const auto& in) {
218
0
        std::unordered_map<BCLog::LogFlags, std::string> out;
219
0
        for (const auto& [k, v] : in) {
220
0
            const bool inserted{out.emplace(v, k).second};
221
0
            assert(inserted);
222
0
        }
223
0
        return out;
224
0
    }(LOG_CATEGORIES_BY_STR)
225
};
226
227
std::optional<BCLog::LogFlags> GetLogCategory(std::string_view str)
228
0
{
229
0
    if (str.empty() || str == "1" || str == "all") {
230
0
        return BCLog::ALL;
231
0
    }
232
0
    auto it = LOG_CATEGORIES_BY_STR.find(str);
233
0
    if (it != LOG_CATEGORIES_BY_STR.end()) {
234
0
        return it->second;
235
0
    }
236
0
    return std::nullopt;
237
0
}
238
239
std::string BCLog::Logger::LogLevelToStr(BCLog::Level level)
240
0
{
241
0
    switch (level) {
242
0
    case BCLog::Level::Trace:
243
0
        return "trace";
244
0
    case BCLog::Level::Debug:
245
0
        return "debug";
246
0
    case BCLog::Level::Info:
247
0
        return "info";
248
0
    case BCLog::Level::Warning:
249
0
        return "warning";
250
0
    case BCLog::Level::Error:
251
0
        return "error";
252
0
    }
253
0
    assert(false);
254
0
}
255
256
static std::string LogCategoryToStr(BCLog::LogFlags category)
257
0
{
258
0
    if (category == BCLog::ALL) {
259
0
        return "all";
260
0
    }
261
0
    auto it = LOG_CATEGORIES_BY_FLAG.find(category);
262
0
    assert(it != LOG_CATEGORIES_BY_FLAG.end());
263
0
    return it->second;
264
0
}
265
266
static std::optional<BCLog::Level> GetLogLevel(std::string_view level_str)
267
0
{
268
0
    if (level_str == "trace") {
269
0
        return BCLog::Level::Trace;
270
0
    } else if (level_str == "debug") {
271
0
        return BCLog::Level::Debug;
272
0
    } else if (level_str == "info") {
273
0
        return BCLog::Level::Info;
274
0
    } else if (level_str == "warning") {
275
0
        return BCLog::Level::Warning;
276
0
    } else if (level_str == "error") {
277
0
        return BCLog::Level::Error;
278
0
    } else {
279
0
        return std::nullopt;
280
0
    }
281
0
}
282
283
std::vector<LogCategory> BCLog::Logger::LogCategoriesList() const
284
0
{
285
0
    std::vector<LogCategory> ret;
286
0
    ret.reserve(LOG_CATEGORIES_BY_STR.size());
287
0
    for (const auto& [category, flag] : LOG_CATEGORIES_BY_STR) {
288
0
        ret.push_back(LogCategory{.category = category, .active = WillLogCategory(flag)});
289
0
    }
290
0
    return ret;
291
0
}
292
293
/** Log severity levels that can be selected by the user. */
294
static constexpr std::array<BCLog::Level, 3> LogLevelsList()
295
0
{
296
0
    return {BCLog::Level::Info, BCLog::Level::Debug, BCLog::Level::Trace};
297
0
}
298
299
std::string BCLog::Logger::LogLevelsString() const
300
0
{
301
0
    const auto& levels = LogLevelsList();
302
0
    return Join(std::vector<BCLog::Level>{levels.begin(), levels.end()}, ", ", [](BCLog::Level level) { return LogLevelToStr(level); });
303
0
}
304
305
std::string BCLog::Logger::LogTimestampStr(SystemClock::time_point now, std::chrono::seconds mocktime) const
306
0
{
307
0
    std::string strStamped;
308
309
0
    if (!m_log_timestamps)
310
0
        return strStamped;
311
312
0
    const auto now_seconds{std::chrono::time_point_cast<std::chrono::seconds>(now)};
313
0
    strStamped = FormatISO8601DateTime(TicksSinceEpoch<std::chrono::seconds>(now_seconds));
314
0
    if (m_log_time_micros && !strStamped.empty()) {
315
0
        strStamped.pop_back();
316
0
        strStamped += strprintf(".%06dZ", Ticks<std::chrono::microseconds>(now - now_seconds));
Line
Count
Source
1172
0
#define strprintf tfm::format
317
0
    }
318
0
    if (mocktime > 0s) {
319
0
        strStamped += " (mocktime: " + FormatISO8601DateTime(count_seconds(mocktime)) + ")";
320
0
    }
321
0
    strStamped += ' ';
322
323
0
    return strStamped;
324
0
}
325
326
namespace BCLog {
327
    /** Belts and suspenders: make sure outgoing log messages don't contain
328
     * potentially suspicious characters, such as terminal control codes.
329
     *
330
     * This escapes control characters except newline ('\n') in C syntax.
331
     * It escapes instead of removes them to still allow for troubleshooting
332
     * issues where they accidentally end up in strings.
333
     */
334
0
    std::string LogEscapeMessage(std::string_view str) {
335
0
        std::string ret;
336
0
        for (char ch_in : str) {
337
0
            uint8_t ch = (uint8_t)ch_in;
338
0
            if ((ch >= 32 || ch == '\n') && ch != '\x7f') {
339
0
                ret += ch_in;
340
0
            } else {
341
0
                ret += strprintf("\\x%02x", ch);
Line
Count
Source
1172
0
#define strprintf tfm::format
342
0
            }
343
0
        }
344
0
        return ret;
345
0
    }
346
} // namespace BCLog
347
348
std::string BCLog::Logger::GetLogPrefix(BCLog::LogFlags category, BCLog::Level level) const
349
0
{
350
0
    if (category == LogFlags::NONE) category = LogFlags::ALL;
351
352
0
    const bool has_category{m_always_print_category_level || category != LogFlags::ALL};
353
354
    // If there is no category, Info is implied
355
0
    if (!has_category && level == Level::Info) return {};
356
357
0
    std::string s{"["};
358
0
    if (has_category) {
359
0
        s += LogCategoryToStr(category);
360
0
    }
361
362
0
    if (m_always_print_category_level || !has_category || level != Level::Debug) {
363
        // If there is a category, Debug is implied, so don't add the level
364
365
        // Only add separator if we have a category
366
0
        if (has_category) s += ":";
367
0
        s += Logger::LogLevelToStr(level);
368
0
    }
369
370
0
    s += "] ";
371
0
    return s;
372
0
}
373
374
static size_t MemUsage(const util::log::Entry& log)
375
0
{
376
0
    return memusage::DynamicUsage(log.message) +
377
0
           memusage::DynamicUsage(log.thread_name) +
378
0
           memusage::MallocUsage(sizeof(memusage::list_node<util::log::Entry>));
379
0
}
380
381
BCLog::LogRateLimiter::LogRateLimiter(uint64_t max_bytes, std::chrono::seconds reset_window)
382
0
    : m_max_bytes{max_bytes}, m_reset_window{reset_window} {}
383
384
std::shared_ptr<BCLog::LogRateLimiter> BCLog::LogRateLimiter::Create(
385
    SchedulerFunction&& scheduler_func, uint64_t max_bytes, std::chrono::seconds reset_window)
386
0
{
387
0
    auto limiter{std::shared_ptr<LogRateLimiter>(new LogRateLimiter(max_bytes, reset_window))};
388
0
    std::weak_ptr<LogRateLimiter> weak_limiter{limiter};
389
0
    auto reset = [weak_limiter] {
390
0
        if (auto shared_limiter{weak_limiter.lock()}) shared_limiter->Reset();
391
0
    };
392
0
    scheduler_func(reset, limiter->m_reset_window);
393
0
    return limiter;
394
0
}
395
396
BCLog::LogRateLimiter::Status BCLog::LogRateLimiter::Consume(
397
    const SourceLocation& source_loc,
398
    const std::string& str)
399
0
{
400
0
    STDLOCK(m_mutex);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
401
0
    auto& stats{m_source_locations.try_emplace(source_loc, m_max_bytes).first->second};
402
0
    Status status{stats.m_dropped_bytes > 0 ? Status::STILL_SUPPRESSED : Status::UNSUPPRESSED};
403
404
0
    if (!stats.Consume(str.size()) && status == Status::UNSUPPRESSED) {
405
0
        status = Status::NEWLY_SUPPRESSED;
406
0
        m_suppression_active = true;
407
0
    }
408
409
0
    return status;
410
0
}
411
412
std::string BCLog::Logger::Format(const util::log::Entry& entry) const
413
0
{
414
0
    std::string result{LogTimestampStr(entry.timestamp, entry.mocktime)};
415
416
0
    if (m_log_threadnames) {
417
0
        result += strprintf("[%s] ", (entry.thread_name.empty() ? "unknown" : entry.thread_name));
Line
Count
Source
1172
0
#define strprintf tfm::format
418
0
    }
419
420
0
    if (m_log_sourcelocations) {
421
0
        result += strprintf("[%s:%d] [%s] ", RemovePrefixView(entry.source_loc.file_name(), "./"), entry.source_loc.line(), entry.source_loc.function_name_short());
Line
Count
Source
1172
0
#define strprintf tfm::format
422
0
    }
423
424
0
    result += GetLogPrefix(static_cast<LogFlags>(entry.category), entry.level);
425
0
    result += LogEscapeMessage(entry.message);
426
427
0
    if (!result.ends_with('\n')) result += '\n';
428
0
    return result;
429
0
}
430
431
void BCLog::Logger::LogPrint(util::log::Entry entry)
432
0
{
433
0
    STDLOCK(m_cs);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
434
0
    return LogPrint_(std::move(entry));
435
0
}
436
437
// NOLINTNEXTLINE(misc-no-recursion)
438
void BCLog::Logger::LogPrint_(util::log::Entry entry)
439
0
{
440
0
    if (m_buffering) {
441
0
        {
442
0
            m_cur_buffer_memusage += MemUsage(entry);
443
0
            m_msgs_before_open.push_back(std::move(entry));
444
0
        }
445
446
0
        while (m_cur_buffer_memusage > m_max_buffer_memusage) {
447
0
            if (m_msgs_before_open.empty()) {
448
0
                m_cur_buffer_memusage = 0;
449
0
                break;
450
0
            }
451
0
            m_cur_buffer_memusage -= MemUsage(m_msgs_before_open.front());
452
0
            m_msgs_before_open.pop_front();
453
0
            ++m_buffer_lines_discarded;
454
0
        }
455
456
0
        return;
457
0
    }
458
459
0
    std::string str_prefixed{Format(entry)};
460
0
    bool ratelimit{false};
461
0
    if (entry.should_ratelimit && m_limiter) {
462
0
        auto status{m_limiter->Consume(entry.source_loc, str_prefixed)};
463
0
        if (status == LogRateLimiter::Status::NEWLY_SUPPRESSED) {
464
            // NOLINTNEXTLINE(misc-no-recursion)
465
0
            LogPrint_({
466
0
                .category = LogFlags::ALL,
467
0
                .level = Level::Warning,
468
0
                .should_ratelimit = false, // with should_ratelimit=false, this cannot lead to infinite recursion
469
0
                .source_loc = SourceLocation{__func__},
470
0
                .message = strprintf(
Line
Count
Source
1172
0
#define strprintf tfm::format
471
0
                    "Excessive logging detected from %s:%d (%s): >%d bytes logged during "
472
0
                    "the last time window of %is. Suppressing logging to disk from this "
473
0
                    "source location until time window resets. Console logging "
474
0
                    "unaffected. Last log entry.",
475
0
                    entry.source_loc.file_name(), entry.source_loc.line(), entry.source_loc.function_name_short(),
476
0
                    m_limiter->m_max_bytes,
477
0
                    Ticks<std::chrono::seconds>(m_limiter->m_reset_window)),
478
0
            });
479
0
        } else if (status == LogRateLimiter::Status::STILL_SUPPRESSED) {
480
0
            ratelimit = true;
481
0
        }
482
0
    }
483
484
    // To avoid confusion caused by dropped log messages when debugging an issue,
485
    // we prefix log lines with "[*]" when there are any suppressed source locations.
486
0
    if (m_limiter && m_limiter->SuppressionsActive()) {
487
0
        str_prefixed.insert(0, "[*] ");
488
0
    }
489
490
0
    if (m_print_to_console) {
491
        // print to console
492
0
        fwrite(str_prefixed.data(), 1, str_prefixed.size(), stdout);
493
0
        fflush(stdout);
494
0
    }
495
0
    for (const auto& cb : m_print_callbacks) {
496
0
        cb(str_prefixed);
497
0
    }
498
0
    if (m_print_to_file && !ratelimit) {
499
0
        assert(m_fileout != nullptr);
500
501
        // reopen the log file, if requested
502
0
        if (m_reopen_file) {
503
0
            m_reopen_file = false;
504
0
            FILE* new_fileout = fsbridge::fopen(m_file_path, "a");
505
0
            if (new_fileout) {
506
0
                setbuf(new_fileout, nullptr); // unbuffered
507
0
                fclose(m_fileout);
508
0
                m_fileout = new_fileout;
509
0
            }
510
0
        }
511
0
        FileWriteStr(str_prefixed, m_fileout);
512
0
    }
513
0
}
514
515
void BCLog::Logger::ShrinkDebugFile()
516
0
{
517
    // Amount of debug.log to save at end when shrinking (must fit in memory)
518
0
    constexpr size_t RECENT_DEBUG_HISTORY_SIZE = 10 * 1000000;
519
520
0
    assert(!m_file_path.empty());
521
522
    // Scroll debug.log if it's getting too big
523
0
    FILE* file = fsbridge::fopen(m_file_path, "r");
524
525
    // Special files (e.g. device nodes) may not have a size.
526
0
    size_t log_size = 0;
527
0
    try {
528
0
        log_size = fs::file_size(m_file_path);
529
0
    } catch (const fs::filesystem_error&) {}
530
531
    // If debug.log file is more than 10% bigger the RECENT_DEBUG_HISTORY_SIZE
532
    // trim it down by saving only the last RECENT_DEBUG_HISTORY_SIZE bytes
533
0
    if (file && log_size > 11 * (RECENT_DEBUG_HISTORY_SIZE / 10))
534
0
    {
535
        // Restart the file with some of the end
536
0
        std::vector<char> vch(RECENT_DEBUG_HISTORY_SIZE, 0);
537
0
        if (fseek(file, -((long)vch.size()), SEEK_END)) {
538
0
            LogWarning("Failed to shrink debug log file: fseek(...) failed");
Line
Count
Source
104
0
#define LogWarning(...) LogPrintLevel_(BCLog::LogFlags::ALL, BCLog::Level::Warning, /*should_ratelimit=*/true, __VA_ARGS__)
Line
Count
Source
97
0
#define LogPrintLevel_(category, level, should_ratelimit, ...) LogPrintFormatInternal(SourceLocation{__func__}, category, level, should_ratelimit, __VA_ARGS__)
539
0
            fclose(file);
540
0
            return;
541
0
        }
542
0
        int nBytes = fread(vch.data(), 1, vch.size(), file);
543
0
        fclose(file);
544
545
0
        file = fsbridge::fopen(m_file_path, "w");
546
0
        if (file)
547
0
        {
548
0
            fwrite(vch.data(), 1, nBytes, file);
549
0
            fclose(file);
550
0
        }
551
0
    }
552
0
    else if (file != nullptr)
553
0
        fclose(file);
554
0
}
555
556
void BCLog::LogRateLimiter::Reset()
557
0
{
558
0
    decltype(m_source_locations) source_locations;
559
0
    {
560
0
        STDLOCK(m_mutex);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
561
0
        source_locations.swap(m_source_locations);
562
0
        m_suppression_active = false;
563
0
    }
564
0
    for (const auto& [source_loc, stats] : source_locations) {
565
0
        if (stats.m_dropped_bytes == 0) continue;
566
0
        LogPrintLevel_(
Line
Count
Source
97
0
#define LogPrintLevel_(category, level, should_ratelimit, ...) LogPrintFormatInternal(SourceLocation{__func__}, category, level, should_ratelimit, __VA_ARGS__)
567
0
            LogFlags::ALL, Level::Warning, /*should_ratelimit=*/false,
568
0
            "Restarting logging from %s:%d (%s): %d bytes were dropped during the last %ss.",
569
0
            source_loc.file_name(), source_loc.line(), source_loc.function_name_short(),
570
0
            stats.m_dropped_bytes, Ticks<std::chrono::seconds>(m_reset_window));
571
0
    }
572
0
}
573
574
bool BCLog::LogRateLimiter::Stats::Consume(uint64_t bytes)
575
0
{
576
0
    if (bytes > m_available_bytes) {
577
0
        m_dropped_bytes += bytes;
578
0
        m_available_bytes = 0;
579
0
        return false;
580
0
    }
581
582
0
    m_available_bytes -= bytes;
583
0
    return true;
584
0
}
585
586
bool BCLog::Logger::SetLogLevel(std::string_view level_str)
587
0
{
588
0
    const auto level = GetLogLevel(level_str);
589
0
    if (!level.has_value() || level.value() > MAX_USER_SETABLE_SEVERITY_LEVEL) return false;
590
0
    m_log_level = level.value();
591
0
    return true;
592
0
}
593
594
bool BCLog::Logger::SetCategoryLogLevel(std::string_view category_str, std::string_view level_str)
595
0
{
596
0
    const auto flag{GetLogCategory(category_str)};
597
0
    if (!flag) return false;
598
599
0
    const auto level = GetLogLevel(level_str);
600
0
    if (!level.has_value() || level.value() > MAX_USER_SETABLE_SEVERITY_LEVEL) return false;
601
602
0
    STDLOCK(m_cs);
Line
Count
Source
41
0
#define STDLOCK(cs) StdMutex::Guard UNIQUE_NAME(criticalblock){StdMutex::CheckNotHeld(cs)}
Line
Count
Source
11
0
#define UNIQUE_NAME(name) PASTE2(name, __COUNTER__)
Line
Count
Source
9
0
#define PASTE2(x, y) PASTE(x, y)
Line
Count
Source
8
0
#define PASTE(x, y) x ## y
603
0
    m_category_log_levels[*flag] = level.value();
604
0
    return true;
605
0
}
606
607
bool util::log::ShouldLog(Category category, Level level)
608
6.24M
{
609
6.24M
    return LogInstance().WillLogCategoryLevel(static_cast<BCLog::LogFlags>(category), level);
610
6.24M
}
611
612
void util::log::Log(util::log::Entry entry)
613
410k
{
614
410k
    BCLog::Logger& logger{LogInstance()};
615
410k
    if (logger.Enabled()) {
616
0
        logger.LogPrint(std::move(entry));
617
0
    }
618
410k
}