/tmp/bitcoin/src/init/common.cpp
Line | Count | Source |
1 | | // Copyright (c) 2021-present The Bitcoin Core developers |
2 | | // Distributed under the MIT software license, see the accompanying |
3 | | // file COPYING or http://www.opensource.org/licenses/mit-license.php. |
4 | | |
5 | | #include <bitcoin-build-config.h> // IWYU pragma: keep |
6 | | |
7 | | #include <init/common.h> |
8 | | |
9 | | #include <clientversion.h> |
10 | | #include <common/args.h> |
11 | | #include <logging.h> |
12 | | #include <node/interface_ui.h> |
13 | | #include <tinyformat.h> |
14 | | #include <util/fs.h> |
15 | | #include <util/fs_helpers.h> |
16 | | #include <util/result.h> |
17 | | #include <util/string.h> |
18 | | #include <util/time.h> |
19 | | #include <util/translation.h> |
20 | | |
21 | | #include <algorithm> |
22 | | #include <ranges> |
23 | | #include <string> |
24 | | #include <vector> |
25 | | |
26 | | using util::SplitString; |
27 | | |
28 | | namespace init { |
29 | | void AddLoggingArgs(ArgsManager& argsman) |
30 | 2.00k | { |
31 | 2.00k | argsman.AddArg("-debuglogfile=<file>", strprintf("Specify location of debug log file (default: %s). Relative paths will be prefixed by a net-specific datadir location. Pass -nodebuglogfile to disable writing the log to a file.", DEFAULT_DEBUGLOGFILE), ArgsManager::ALLOW_ANY, OptionsCategory::OPTIONS); |
32 | 2.00k | argsman.AddArg("-debug=<category>", "Output debug and trace logging (default: -nodebug, supplying <category> is optional). " |
33 | 2.00k | "If <category> is not supplied or if <category> is 1 or \"all\", output all debug logging. If <category> is 0 or \"none\", any other categories are ignored. Other valid values for <category> are: " + LogInstance().LogCategoriesString() + ". This option can be specified multiple times to output multiple categories.", |
34 | 2.00k | ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
35 | 2.00k | argsman.AddArg("-debugexclude=<category>", "Exclude debug and trace logging for a category. Can be used in conjunction with -debug=1 to output debug and trace logging for all categories except the specified category. This option can be specified multiple times to exclude multiple categories. This takes priority over \"-debug\"", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
36 | 2.00k | argsman.AddArg("-logips", strprintf("Include IP addresses in log output (default: %u)", DEFAULT_LOGIPS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
37 | 2.00k | argsman.AddArg("-loglevel=<level>|<category>:<level>", strprintf("Set the global or per-category severity level for logging categories enabled with the -debug configuration option or the logging RPC. Possible values are %s (default=%s). The following levels are always logged: error, warning, info. If <category>:<level> is supplied, the setting will override the global one and may be specified multiple times to set multiple category-specific levels. <category> can be: %s.", LogInstance().LogLevelsString(), LogInstance().LogLevelToStr(BCLog::DEFAULT_LOG_LEVEL), LogInstance().LogCategoriesString()), ArgsManager::DISALLOW_NEGATION | ArgsManager::DISALLOW_ELISION | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST); |
38 | 2.00k | argsman.AddArg("-logtimestamps", strprintf("Prepend debug output with timestamp (default: %u)", DEFAULT_LOGTIMESTAMPS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
39 | 2.00k | argsman.AddArg("-logthreadnames", strprintf("Prepend debug output with name of the originating thread (default: %u)", DEFAULT_LOGTHREADNAMES), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
40 | 2.00k | argsman.AddArg("-logsourcelocations", strprintf("Prepend debug output with name of the originating source location (source file, line number and function name) (default: %u)", DEFAULT_LOGSOURCELOCATIONS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
41 | 2.00k | argsman.AddArg("-logtimemicros", strprintf("Add microsecond precision to debug timestamps (default: %u)", DEFAULT_LOGTIMEMICROS), ArgsManager::ALLOW_ANY | ArgsManager::DEBUG_ONLY, OptionsCategory::DEBUG_TEST); |
42 | 2.00k | argsman.AddArg("-loglevelalways", strprintf("Always prepend a category and level (default: %u)", DEFAULT_LOGLEVELALWAYS), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
43 | 2.00k | argsman.AddArg("-logratelimit", strprintf("Apply rate limiting to unconditional logging to mitigate disk-filling attacks (default: %u)", BCLog::DEFAULT_LOGRATELIMIT), ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
44 | 2.00k | argsman.AddArg("-printtoconsole", "Send trace/debug info to console (default: 1 when no -daemon. To disable logging to file, set -nodebuglogfile)", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
45 | 2.00k | argsman.AddArg("-shrinkdebugfile", "Shrink debug log file on client startup (default: 1 when no -debug)", ArgsManager::ALLOW_ANY, OptionsCategory::DEBUG_TEST); |
46 | 2.00k | } |
47 | | |
48 | | void SetLoggingOptions(const ArgsManager& args) |
49 | 1.95k | { |
50 | 1.95k | LogInstance().m_print_to_file = !args.IsArgNegated("-debuglogfile"); |
51 | 1.95k | LogInstance().m_file_path = AbsPathForConfigVal(args, args.GetPathArg("-debuglogfile", DEFAULT_DEBUGLOGFILE)); |
52 | 1.95k | LogInstance().m_print_to_console = args.GetBoolArg("-printtoconsole", !args.GetBoolArg("-daemon", false)); |
53 | 1.95k | LogInstance().m_log_timestamps = args.GetBoolArg("-logtimestamps", DEFAULT_LOGTIMESTAMPS); |
54 | 1.95k | LogInstance().m_log_time_micros = args.GetBoolArg("-logtimemicros", DEFAULT_LOGTIMEMICROS); |
55 | 1.95k | LogInstance().m_log_threadnames = args.GetBoolArg("-logthreadnames", DEFAULT_LOGTHREADNAMES); |
56 | 1.95k | LogInstance().m_log_sourcelocations = args.GetBoolArg("-logsourcelocations", DEFAULT_LOGSOURCELOCATIONS); |
57 | 1.95k | LogInstance().m_always_print_category_level = args.GetBoolArg("-loglevelalways", DEFAULT_LOGLEVELALWAYS); |
58 | | |
59 | 1.95k | fLogIPs = args.GetBoolArg("-logips", DEFAULT_LOGIPS); |
60 | 1.95k | } |
61 | | |
62 | | util::Result<void> SetLoggingLevel(const ArgsManager& args) |
63 | 1.95k | { |
64 | 1.95k | for (const std::string& level_str : args.GetArgs("-loglevel")) { |
65 | 1.95k | if (level_str.find_first_of(':', 3) == std::string::npos) { |
66 | | // user passed a global log level, i.e. -loglevel=<level> |
67 | 1.95k | if (!LogInstance().SetLogLevel(level_str)) { |
68 | 1 | return util::Error{strprintf(_("Unsupported global logging level %s=%s. Valid values: %s."), "-loglevel", level_str, LogInstance().LogLevelsString())}; |
69 | 1 | } |
70 | 1.95k | } else { |
71 | | // user passed a category-specific log level, i.e. -loglevel=<category>:<level> |
72 | 5 | const auto& toks = SplitString(level_str, ':'); |
73 | 5 | if (!(toks.size() == 2 && LogInstance().SetCategoryLogLevel(toks[0], toks[1]))) { |
74 | 2 | return util::Error{strprintf(_("Unsupported category-specific logging level %1$s=%2$s. Expected %1$s=<category>:<loglevel>. Valid categories: %3$s. Valid loglevels: %4$s."), "-loglevel", level_str, LogInstance().LogCategoriesString(), LogInstance().LogLevelsString())}; |
75 | 2 | } |
76 | 5 | } |
77 | 1.95k | } |
78 | 1.94k | return {}; |
79 | 1.95k | } |
80 | | |
81 | | util::Result<void> SetLoggingCategories(const ArgsManager& args) |
82 | 1.94k | { |
83 | 1.94k | const std::vector<std::string> categories = args.GetArgs("-debug"); |
84 | | |
85 | | // Special-case: Disregard any debugging categories appearing before -debug=0/none |
86 | 1.94k | const auto last_negated = std::find_if(categories.rbegin(), categories.rend(), |
87 | 1.96k | [](const std::string& cat) { return cat == "0" || cat == "none"; }); |
88 | | |
89 | 1.94k | const auto categories_to_process = (last_negated == categories.rend()) ? categories : std::ranges::subrange(last_negated.base(), categories.end()); |
90 | | |
91 | 1.96k | for (const auto& cat : categories_to_process) { |
92 | 1.96k | if (!LogInstance().EnableCategory(cat)) { |
93 | 1 | return util::Error{strprintf(_("Unsupported logging category %s=%s."), "-debug", cat)}; |
94 | 1 | } |
95 | 1.96k | } |
96 | | |
97 | | // Now remove the logging categories which were explicitly excluded |
98 | 3.16k | for (const std::string& cat : args.GetArgs("-debugexclude")) { |
99 | 3.16k | if (!LogInstance().DisableCategory(cat)) { |
100 | 1 | return util::Error{strprintf(_("Unsupported logging category %s=%s."), "-debugexclude", cat)}; |
101 | 1 | } |
102 | 3.16k | } |
103 | | |
104 | 1.94k | LogInfo("Log output may contain privacy-sensitive information. Be cautious when sharing logs."); |
105 | | |
106 | 1.94k | return {}; |
107 | 1.94k | } |
108 | | |
109 | | bool StartLogging(const ArgsManager& args) |
110 | 1.18k | { |
111 | 1.18k | if (LogInstance().m_print_to_file) { |
112 | 1.18k | if (args.GetBoolArg("-shrinkdebugfile", LogInstance().DefaultShrinkDebugFile())) { |
113 | | // Do this first since it both loads a bunch of debug.log into memory, |
114 | | // and because this needs to happen before any other debug.log printing |
115 | 0 | LogInstance().ShrinkDebugFile(); |
116 | 0 | } |
117 | 1.18k | } |
118 | 1.18k | if (!LogInstance().StartLogging()) { |
119 | 2 | return InitError(Untranslated(strprintf("Could not open debug log file %s", |
120 | 2 | fs::PathToString(LogInstance().m_file_path)))); |
121 | 2 | } |
122 | | |
123 | 1.18k | if (!LogInstance().m_log_timestamps) { |
124 | 0 | LogInfo("Startup time: %s", FormatISO8601DateTime(GetTime())); |
125 | 0 | } |
126 | 1.18k | LogInfo("Default data directory %s", fs::PathToString(GetDefaultDataDir())); |
127 | 1.18k | LogInfo("Using data directory %s", fs::PathToString(gArgs.GetDataDirNet())); |
128 | | |
129 | | // Only log conf file usage message if conf file actually exists. |
130 | 1.18k | fs::path config_file_path = args.GetConfigFilePath(); |
131 | 1.18k | if (args.IsArgNegated("-conf")) { |
132 | 2 | LogInfo("Config file: <disabled>"); |
133 | 1.18k | } else if (fs::is_directory(config_file_path)) { |
134 | 0 | LogWarning("Config file: %s (is directory, not file)", fs::PathToString(config_file_path)); |
135 | 1.18k | } else if (fs::exists(config_file_path)) { |
136 | 1.18k | LogInfo("Config file: %s", fs::PathToString(config_file_path)); |
137 | 1.18k | } else if (args.IsArgSet("-conf")) { |
138 | 0 | InitWarning(strprintf(_("The specified config file %s does not exist"), fs::PathToString(config_file_path))); |
139 | 1 | } else { |
140 | | // Not categorizing as "Warning" because it's the default behavior |
141 | 1 | LogInfo("Config file: %s (not found, skipping)", fs::PathToString(config_file_path)); |
142 | 1 | } |
143 | | |
144 | | // Log the config arguments to debug.log |
145 | 1.18k | args.LogArgs(); |
146 | | |
147 | 1.18k | return true; |
148 | 1.18k | } |
149 | | |
150 | | void LogPackageVersion() |
151 | 1.95k | { |
152 | 1.95k | std::string version_string = FormatFullVersion(); |
153 | 1.95k | #ifdef DEBUG |
154 | 1.95k | version_string += " (debug build)"; |
155 | | #else |
156 | | version_string += " (release build)"; |
157 | | #endif |
158 | 1.95k | LogInfo(CLIENT_NAME " version %s", version_string); |
159 | 1.95k | } |
160 | | } // namespace init |