2018-07-26 18:36:45 -04:00
|
|
|
// Copyright (c) 2012-2018 The Bitcoin Core developers
|
2014-10-26 03:32:29 -03:00
|
|
|
// Distributed under the MIT software license, see the accompanying
|
2012-05-18 10:02:28 -04:00
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
2012-04-06 21:06:53 -03:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <clientversion.h>
|
2012-04-06 21:06:53 -03:00
|
|
|
|
2017-11-09 21:57:53 -03:00
|
|
|
#include <tinyformat.h>
|
2014-08-21 10:11:05 -04:00
|
|
|
|
2014-09-14 07:43:56 -03:00
|
|
|
|
2014-10-26 03:32:29 -03:00
|
|
|
/**
|
|
|
|
* Name of client reported in the 'version' message. Report the same name
|
2017-09-29 03:50:30 -03:00
|
|
|
* for both bitcoind and bitcoin-qt, to make it harder for attackers to
|
2014-10-26 03:32:29 -03:00
|
|
|
* target servers or GUI users specifically.
|
|
|
|
*/
|
2012-04-06 21:06:53 -03:00
|
|
|
const std::string CLIENT_NAME("Satoshi");
|
|
|
|
|
|
|
|
|
|
|
|
#ifdef HAVE_BUILD_INFO
|
2017-08-15 16:22:54 -03:00
|
|
|
#include <obj/build.h>
|
2020-05-01 17:44:26 -04:00
|
|
|
// The <obj/build.h>, which is generated by the build environment (share/genbuild.sh),
|
|
|
|
// could contain only one line of the following:
|
|
|
|
// - "#define BUILD_GIT_TAG ...", if the top commit is tagged
|
|
|
|
// - "#define BUILD_GIT_COMMIT ...", if the top commit is not tagged
|
|
|
|
// - "// No build information available", if proper git information is not available
|
2012-04-06 21:06:53 -03:00
|
|
|
#endif
|
|
|
|
|
2014-10-26 03:32:29 -03:00
|
|
|
//! git will put "#define GIT_ARCHIVE 1" on the next line inside archives. $Format:%n#define GIT_ARCHIVE 1$
|
2012-04-06 21:06:53 -03:00
|
|
|
#ifdef GIT_ARCHIVE
|
2017-12-20 17:51:20 -03:00
|
|
|
#define GIT_COMMIT_ID "$Format:%H$"
|
2014-09-19 14:21:46 -03:00
|
|
|
#define GIT_COMMIT_DATE "$Format:%cD$"
|
2012-04-06 21:06:53 -03:00
|
|
|
#endif
|
|
|
|
|
2020-05-01 17:44:26 -04:00
|
|
|
#ifdef BUILD_GIT_TAG
|
2020-05-01 17:48:35 -04:00
|
|
|
#define BUILD_DESC BUILD_GIT_TAG
|
|
|
|
#define BUILD_SUFFIX ""
|
2020-05-01 17:44:26 -04:00
|
|
|
#else
|
2020-05-01 17:48:35 -04:00
|
|
|
#define BUILD_DESC "v" STRINGIZE(CLIENT_VERSION_MAJOR) "." STRINGIZE(CLIENT_VERSION_MINOR) \
|
|
|
|
"." STRINGIZE(CLIENT_VERSION_REVISION) "." STRINGIZE(CLIENT_VERSION_BUILD)
|
|
|
|
#ifdef BUILD_GIT_COMMIT
|
|
|
|
#define BUILD_SUFFIX "-" BUILD_GIT_COMMIT
|
|
|
|
#elif defined(GIT_COMMIT_ID)
|
|
|
|
#define BUILD_SUFFIX "-g" GIT_COMMIT_ID
|
|
|
|
#else
|
|
|
|
#define BUILD_SUFFIX "-unk"
|
|
|
|
#endif
|
2012-04-06 21:06:53 -03:00
|
|
|
#endif
|
|
|
|
|
2020-05-01 17:48:35 -04:00
|
|
|
const std::string CLIENT_BUILD(BUILD_DESC BUILD_SUFFIX);
|
2014-08-21 10:11:05 -04:00
|
|
|
|
|
|
|
static std::string FormatVersion(int nVersion)
|
|
|
|
{
|
2014-09-19 14:21:46 -03:00
|
|
|
if (nVersion % 100 == 0)
|
|
|
|
return strprintf("%d.%d.%d", nVersion / 1000000, (nVersion / 10000) % 100, (nVersion / 100) % 100);
|
2014-08-21 10:11:05 -04:00
|
|
|
else
|
2014-09-19 14:21:46 -03:00
|
|
|
return strprintf("%d.%d.%d.%d", nVersion / 1000000, (nVersion / 10000) % 100, (nVersion / 100) % 100, nVersion % 100);
|
2014-08-21 10:11:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
std::string FormatFullVersion()
|
|
|
|
{
|
|
|
|
return CLIENT_BUILD;
|
|
|
|
}
|
|
|
|
|
2018-07-24 11:59:49 -04:00
|
|
|
/**
|
|
|
|
* Format the subversion field according to BIP 14 spec (https://github.com/bitcoin/bips/blob/master/bip-0014.mediawiki)
|
2014-10-26 03:32:29 -03:00
|
|
|
*/
|
2014-08-21 10:11:05 -04:00
|
|
|
std::string FormatSubVersion(const std::string& name, int nClientVersion, const std::vector<std::string>& comments)
|
|
|
|
{
|
|
|
|
std::ostringstream ss;
|
|
|
|
ss << "/";
|
|
|
|
ss << name << ":" << FormatVersion(nClientVersion);
|
|
|
|
if (!comments.empty())
|
2014-10-13 15:15:19 -03:00
|
|
|
{
|
|
|
|
std::vector<std::string>::const_iterator it(comments.begin());
|
|
|
|
ss << "(" << *it;
|
|
|
|
for(++it; it != comments.end(); ++it)
|
|
|
|
ss << "; " << *it;
|
|
|
|
ss << ")";
|
|
|
|
}
|
2014-08-21 10:11:05 -04:00
|
|
|
ss << "/";
|
|
|
|
return ss.str();
|
|
|
|
}
|