Branch data Line data Source code
1 : : // Copyright (c) 2023 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 <node/kernel_notifications.h> 6 : : 7 : : #if defined(HAVE_CONFIG_H) 8 : : #include <config/bitcoin-config.h> 9 : : #endif 10 : : 11 : : #include <chain.h> 12 : : #include <common/args.h> 13 : : #include <common/system.h> 14 : : #include <kernel/context.h> 15 : : #include <logging.h> 16 : : #include <node/abort.h> 17 : : #include <node/interface_ui.h> 18 : : #include <util/check.h> 19 : : #include <util/strencodings.h> 20 : : #include <util/string.h> 21 : : #include <util/translation.h> 22 : : #include <warnings.h> 23 : : 24 : : #include <cstdint> 25 : : #include <string> 26 : : #include <thread> 27 : : 28 : 0 : static void AlertNotify(const std::string& strMessage) 29 : : { 30 : 0 : uiInterface.NotifyAlertChanged(); 31 : : #if HAVE_SYSTEM 32 [ # # ][ # # ]: 0 : std::string strCmd = gArgs.GetArg("-alertnotify", ""); [ # # ] 33 [ # # ]: 0 : if (strCmd.empty()) return; 34 : : 35 : : // Alert text should be plain ascii coming from a trusted source, but to 36 : : // be safe we first strip anything not in safeChars, then add single quotes around 37 : : // the whole string before passing it to the shell: 38 [ # # ]: 0 : std::string singleQuote("'"); 39 [ # # ]: 0 : std::string safeStatus = SanitizeString(strMessage); 40 [ # # ][ # # ]: 0 : safeStatus = singleQuote+safeStatus+singleQuote; 41 [ # # ][ # # ]: 0 : ReplaceAll(strCmd, "%s", safeStatus); 42 : : 43 [ # # ]: 0 : std::thread t(runCommand, strCmd); 44 [ # # ]: 0 : t.detach(); // thread runs free 45 : : #endif 46 [ # # ]: 0 : } 47 : : 48 : 0 : static void DoWarning(const bilingual_str& warning) 49 : : { 50 : : static bool fWarned = false; 51 : 0 : SetMiscWarning(warning); 52 [ # # ]: 0 : if (!fWarned) { 53 : 0 : AlertNotify(warning.original); 54 : 0 : fWarned = true; 55 : 0 : } 56 : 0 : } 57 : : 58 : : namespace node { 59 : : 60 : 0 : kernel::InterruptResult KernelNotifications::blockTip(SynchronizationState state, CBlockIndex& index) 61 : : { 62 : 0 : uiInterface.NotifyBlockTip(state, &index); 63 [ # # ][ # # ]: 0 : if (m_stop_at_height && index.nHeight >= m_stop_at_height) { 64 [ # # ]: 0 : if (!m_shutdown()) { 65 [ # # ][ # # ]: 0 : LogPrintf("Error: failed to send shutdown signal after reaching stop height\n"); [ # # ] 66 : 0 : } 67 : 0 : return kernel::Interrupted{}; 68 : : } 69 : 0 : return {}; 70 : 0 : } 71 : : 72 : 0 : void KernelNotifications::headerTip(SynchronizationState state, int64_t height, int64_t timestamp, bool presync) 73 : : { 74 : 0 : uiInterface.NotifyHeaderTip(state, height, timestamp, presync); 75 : 0 : } 76 : : 77 : 0 : void KernelNotifications::progress(const bilingual_str& title, int progress_percent, bool resume_possible) 78 : : { 79 : 0 : uiInterface.ShowProgress(title.translated, progress_percent, resume_possible); 80 : 0 : } 81 : : 82 : 0 : void KernelNotifications::warning(const bilingual_str& warning) 83 : : { 84 : 0 : DoWarning(warning); 85 : 0 : } 86 : : 87 : 0 : void KernelNotifications::flushError(const std::string& debug_message) 88 : : { 89 [ # # ]: 0 : AbortNode(&m_shutdown, m_exit_status, debug_message); 90 : 0 : } 91 : : 92 : 0 : void KernelNotifications::fatalError(const std::string& debug_message, const bilingual_str& user_message) 93 : : { 94 [ # # ]: 0 : node::AbortNode(m_shutdown_on_fatal_error ? &m_shutdown : nullptr, 95 : 0 : m_exit_status, debug_message, user_message); 96 : 0 : } 97 : : 98 : 0 : void ReadNotificationArgs(const ArgsManager& args, KernelNotifications& notifications) 99 : : { 100 [ # # ][ # # ]: 0 : if (auto value{args.GetIntArg("-stopatheight")}) notifications.m_stop_at_height = *value; [ # # ] 101 : 0 : } 102 : : 103 : : } // namespace node