mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-09 10:43:19 -05:00
util: Replace non-threadsafe strerror
Some uses of non-threadsafe `strerror` have snuck into the code since they were removed in #4152. Add a wrapper `SysErrorString` for thread-safe strerror alternatives and replace all uses of `strerror` with this.
This commit is contained in:
parent
4381681e55
commit
46971c6dbf
8 changed files with 59 additions and 17 deletions
|
@ -271,6 +271,7 @@ BITCOIN_CORE_H = \
|
||||||
util/spanparsing.h \
|
util/spanparsing.h \
|
||||||
util/string.h \
|
util/string.h \
|
||||||
util/syscall_sandbox.h \
|
util/syscall_sandbox.h \
|
||||||
|
util/syserror.h \
|
||||||
util/system.h \
|
util/system.h \
|
||||||
util/thread.h \
|
util/thread.h \
|
||||||
util/threadnames.h \
|
util/threadnames.h \
|
||||||
|
@ -631,6 +632,7 @@ libbitcoin_util_a_SOURCES = \
|
||||||
util/getuniquepath.cpp \
|
util/getuniquepath.cpp \
|
||||||
util/hasher.cpp \
|
util/hasher.cpp \
|
||||||
util/sock.cpp \
|
util/sock.cpp \
|
||||||
|
util/syserror.cpp \
|
||||||
util/system.cpp \
|
util/system.cpp \
|
||||||
util/message.cpp \
|
util/message.cpp \
|
||||||
util/moneystr.cpp \
|
util/moneystr.cpp \
|
||||||
|
@ -853,6 +855,7 @@ bitcoin_chainstate_SOURCES = \
|
||||||
util/settings.cpp \
|
util/settings.cpp \
|
||||||
util/strencodings.cpp \
|
util/strencodings.cpp \
|
||||||
util/syscall_sandbox.cpp \
|
util/syscall_sandbox.cpp \
|
||||||
|
util/syserror.cpp \
|
||||||
util/system.cpp \
|
util/system.cpp \
|
||||||
util/thread.cpp \
|
util/thread.cpp \
|
||||||
util/threadnames.cpp \
|
util/threadnames.cpp \
|
||||||
|
|
|
@ -20,6 +20,7 @@
|
||||||
#include <util/check.h>
|
#include <util/check.h>
|
||||||
#include <util/strencodings.h>
|
#include <util/strencodings.h>
|
||||||
#include <util/syscall_sandbox.h>
|
#include <util/syscall_sandbox.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
#include <util/system.h>
|
#include <util/system.h>
|
||||||
#include <util/threadnames.h>
|
#include <util/threadnames.h>
|
||||||
#include <util/tokenpipe.h>
|
#include <util/tokenpipe.h>
|
||||||
|
@ -206,7 +207,7 @@ static bool AppInit(NodeContext& node, int argc, char* argv[])
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
case -1: // Error happened.
|
case -1: // Error happened.
|
||||||
return InitError(Untranslated(strprintf("fork_daemon() failed: %s\n", strerror(errno))));
|
return InitError(Untranslated(strprintf("fork_daemon() failed: %s\n", SysErrorString(errno))));
|
||||||
default: { // Parent: wait and exit.
|
default: { // Parent: wait and exit.
|
||||||
int token = daemon_ep.TokenRead();
|
int token = daemon_ep.TokenRead();
|
||||||
if (token) { // Success
|
if (token) { // Success
|
||||||
|
|
|
@ -3,6 +3,7 @@
|
||||||
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
#include <fs.h>
|
#include <fs.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
|
|
||||||
#ifndef WIN32
|
#ifndef WIN32
|
||||||
#include <cstring>
|
#include <cstring>
|
||||||
|
@ -44,7 +45,7 @@ fs::path AbsPathJoin(const fs::path& base, const fs::path& path)
|
||||||
|
|
||||||
static std::string GetErrorReason()
|
static std::string GetErrorReason()
|
||||||
{
|
{
|
||||||
return std::strerror(errno);
|
return SysErrorString(errno);
|
||||||
}
|
}
|
||||||
|
|
||||||
FileLock::FileLock(const fs::path& file)
|
FileLock::FileLock(const fs::path& file)
|
||||||
|
|
|
@ -65,6 +65,7 @@
|
||||||
#include <util/strencodings.h>
|
#include <util/strencodings.h>
|
||||||
#include <util/string.h>
|
#include <util/string.h>
|
||||||
#include <util/syscall_sandbox.h>
|
#include <util/syscall_sandbox.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
#include <util/system.h>
|
#include <util/system.h>
|
||||||
#include <util/thread.h>
|
#include <util/thread.h>
|
||||||
#include <util/threadnames.h>
|
#include <util/threadnames.h>
|
||||||
|
@ -149,7 +150,7 @@ static fs::path GetPidFile(const ArgsManager& args)
|
||||||
#endif
|
#endif
|
||||||
return true;
|
return true;
|
||||||
} else {
|
} else {
|
||||||
return InitError(strprintf(_("Unable to create the PID file '%s': %s"), fs::PathToString(GetPidFile(args)), std::strerror(errno)));
|
return InitError(strprintf(_("Unable to create the PID file '%s': %s"), fs::PathToString(GetPidFile(args)), SysErrorString(errno)));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -7,6 +7,7 @@
|
||||||
#include <threadinterrupt.h>
|
#include <threadinterrupt.h>
|
||||||
#include <tinyformat.h>
|
#include <tinyformat.h>
|
||||||
#include <util/sock.h>
|
#include <util/sock.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
#include <util/system.h>
|
#include <util/system.h>
|
||||||
#include <util/time.h>
|
#include <util/time.h>
|
||||||
|
|
||||||
|
@ -344,19 +345,8 @@ std::string NetworkErrorString(int err)
|
||||||
#else
|
#else
|
||||||
std::string NetworkErrorString(int err)
|
std::string NetworkErrorString(int err)
|
||||||
{
|
{
|
||||||
char buf[256];
|
// On BSD sockets implementations, NetworkErrorString is the same as SysErrorString.
|
||||||
buf[0] = 0;
|
return SysErrorString(err);
|
||||||
/* Too bad there are two incompatible implementations of the
|
|
||||||
* thread-safe strerror. */
|
|
||||||
const char *s;
|
|
||||||
#ifdef STRERROR_R_CHAR_P /* GNU variant can return a pointer outside the passed buffer */
|
|
||||||
s = strerror_r(err, buf, sizeof(buf));
|
|
||||||
#else /* POSIX variant always returns message in buffer */
|
|
||||||
s = buf;
|
|
||||||
if (strerror_r(err, buf, sizeof(buf)))
|
|
||||||
buf[0] = 0;
|
|
||||||
#endif
|
|
||||||
return strprintf("%s (%d)", s, err);
|
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
29
src/util/syserror.cpp
Normal file
29
src/util/syserror.cpp
Normal file
|
@ -0,0 +1,29 @@
|
||||||
|
// Copyright (c) 2020-2022 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#if defined(HAVE_CONFIG_H)
|
||||||
|
#include <config/bitcoin-config.h>
|
||||||
|
#endif
|
||||||
|
|
||||||
|
#include <tinyformat.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
|
|
||||||
|
#include <cstring>
|
||||||
|
|
||||||
|
std::string SysErrorString(int err)
|
||||||
|
{
|
||||||
|
char buf[256];
|
||||||
|
buf[0] = 0;
|
||||||
|
/* Too bad there are two incompatible implementations of the
|
||||||
|
* thread-safe strerror. */
|
||||||
|
const char *s;
|
||||||
|
#ifdef STRERROR_R_CHAR_P /* GNU variant can return a pointer outside the passed buffer */
|
||||||
|
s = strerror_r(err, buf, sizeof(buf));
|
||||||
|
#else /* POSIX variant always returns message in buffer */
|
||||||
|
s = buf;
|
||||||
|
if (strerror_r(err, buf, sizeof(buf)))
|
||||||
|
buf[0] = 0;
|
||||||
|
#endif
|
||||||
|
return strprintf("%s (%d)", s, err);
|
||||||
|
}
|
16
src/util/syserror.h
Normal file
16
src/util/syserror.h
Normal file
|
@ -0,0 +1,16 @@
|
||||||
|
// Copyright (c) 2010-2022 The Bitcoin Core developers
|
||||||
|
// Distributed under the MIT software license, see the accompanying
|
||||||
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
||||||
|
|
||||||
|
#ifndef BITCOIN_UTIL_SYSERROR_H
|
||||||
|
#define BITCOIN_UTIL_SYSERROR_H
|
||||||
|
|
||||||
|
#include <string>
|
||||||
|
|
||||||
|
/** Return system error string from errno value. Use this instead of
|
||||||
|
* std::strerror, which is not thread-safe. For network errors use
|
||||||
|
* NetworkErrorString from sock.h instead.
|
||||||
|
*/
|
||||||
|
std::string SysErrorString(int err);
|
||||||
|
|
||||||
|
#endif // BITCOIN_UTIL_SYSERROR_H
|
|
@ -25,6 +25,7 @@
|
||||||
#include <util/getuniquepath.h>
|
#include <util/getuniquepath.h>
|
||||||
#include <util/strencodings.h>
|
#include <util/strencodings.h>
|
||||||
#include <util/string.h>
|
#include <util/string.h>
|
||||||
|
#include <util/syserror.h>
|
||||||
#include <util/translation.h>
|
#include <util/translation.h>
|
||||||
|
|
||||||
|
|
||||||
|
@ -1374,7 +1375,7 @@ void ScheduleBatchPriority()
|
||||||
const static sched_param param{};
|
const static sched_param param{};
|
||||||
const int rc = pthread_setschedparam(pthread_self(), SCHED_BATCH, ¶m);
|
const int rc = pthread_setschedparam(pthread_self(), SCHED_BATCH, ¶m);
|
||||||
if (rc != 0) {
|
if (rc != 0) {
|
||||||
LogPrintf("Failed to pthread_setschedparam: %s\n", strerror(rc));
|
LogPrintf("Failed to pthread_setschedparam: %s\n", SysErrorString(rc));
|
||||||
}
|
}
|
||||||
#endif
|
#endif
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue