mirror of
https://github.com/kvazar-network/kevacoin.git
synced 2025-01-11 15:48:05 +00:00
Merge branch 'master' of https://github.com/bitcoin/bitcoin
This commit is contained in:
commit
0a70a3f4d8
@ -17,11 +17,11 @@
|
|||||||
<key>CFBundlePackageType</key>
|
<key>CFBundlePackageType</key>
|
||||||
<string>APPL</string>
|
<string>APPL</string>
|
||||||
<key>CFBundleShortVersionString</key>
|
<key>CFBundleShortVersionString</key>
|
||||||
<string>0.3.25</string>
|
<string>0.4.00</string>
|
||||||
<key>CFBundleSignature</key>
|
<key>CFBundleSignature</key>
|
||||||
<string>????</string>
|
<string>????</string>
|
||||||
<key>CFBundleVersion</key>
|
<key>CFBundleVersion</key>
|
||||||
<string>325</string>
|
<string>400</string>
|
||||||
<key>LSMinimumSystemVersion</key>
|
<key>LSMinimumSystemVersion</key>
|
||||||
<string>10.5</string>
|
<string>10.5</string>
|
||||||
<key>CFBundleIconFile</key>
|
<key>CFBundleIconFile</key>
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Bitcoin 0.3.25 BETA
|
Bitcoin 0.4.0rc1 BETA
|
||||||
|
|
||||||
Copyright (c) 2009-2011 Bitcoin Developers
|
Copyright (c) 2009-2011 Bitcoin Developers
|
||||||
Distributed under the MIT/X11 software license, see the accompanying
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
Bitcoin 0.3.25 BETA
|
Bitcoin 0.4.00rc1 BETA
|
||||||
|
|
||||||
Copyright (c) 2009-2011 Bitcoin Developers
|
Copyright (c) 2009-2011 Bitcoin Developers
|
||||||
Distributed under the MIT/X11 software license, see the accompanying
|
Distributed under the MIT/X11 software license, see the accompanying
|
||||||
|
@ -43,38 +43,52 @@ bn CBigNum
|
|||||||
-------------------------
|
-------------------------
|
||||||
Locking/mutex usage notes
|
Locking/mutex usage notes
|
||||||
|
|
||||||
The code is multi-threaded, and uses mutexes and the CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures.
|
The code is multi-threaded, and uses mutexes and the
|
||||||
|
CRITICAL_BLOCK/TRY_CRITICAL_BLOCK macros to protect data structures.
|
||||||
|
|
||||||
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main and then cs_wallet, while thread 2 locks them in the opposite order: result, deadlock as each waits for the other to release its lock) are a problem. Compile with -DDEBUG_LOCKORDER to get lock order inconsistencies reported in the debug.log file.
|
Deadlocks due to inconsistent lock ordering (thread 1 locks cs_main
|
||||||
|
and then cs_wallet, while thread 2 locks them in the opposite order:
|
||||||
|
result, deadlock as each waits for the other to release its lock) are
|
||||||
|
a problem. Compile with -DDEBUG_LOCKORDER to get lock order
|
||||||
|
inconsistencies reported in the debug.log file.
|
||||||
|
|
||||||
Re-architecting the core code so there are better-defined interfaces between the various components is a goal, with any necessary locking done by the components (e.g. see the self-contained CKeyStore class and its cs_KeyStore lock for example).
|
Re-architecting the core code so there are better-defined interfaces
|
||||||
|
between the various components is a goal, with any necessary locking
|
||||||
|
done by the components (e.g. see the self-contained CKeyStore class
|
||||||
|
and its cs_KeyStore lock for example).
|
||||||
|
|
||||||
-------
|
-------
|
||||||
Threads
|
Threads
|
||||||
|
|
||||||
StartNode : Starts other threads.
|
StartNode : Starts other threads.
|
||||||
|
|
||||||
ThreadGetMyExternalIP : Determines outside-the-firewall IP address, sends addr message to connected peers when it determines it.
|
ThreadGetMyExternalIP : Determines outside-the-firewall IP address,
|
||||||
|
sends addr message to connected peers when it determines it.
|
||||||
|
|
||||||
ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new peers and advertising this node's IP address.
|
ThreadIRCSeed : Joins IRC bootstrapping channel, watching for new
|
||||||
|
peers and advertising this node's IP address.
|
||||||
|
|
||||||
ThreadSocketHandler : Sends/Receives data from peers on port 8333.
|
ThreadSocketHandler : Sends/Receives data from peers on port 8333.
|
||||||
|
|
||||||
ThreadMessageHandler : Higher-level message handling (sending and receiving).
|
ThreadMessageHandler : Higher-level message handling (sending and
|
||||||
|
receiving).
|
||||||
|
|
||||||
ThreadOpenConnections : Initiates new connections to peers.
|
ThreadOpenConnections : Initiates new connections to peers.
|
||||||
|
|
||||||
ThreadTopUpKeyPool : replenishes the keystore's keypool.
|
ThreadTopUpKeyPool : replenishes the keystore's keypool.
|
||||||
|
|
||||||
ThreadCleanWalletPassphrase : re-locks an encrypted wallet after user has unlocked it for a period of time.
|
ThreadCleanWalletPassphrase : re-locks an encrypted wallet after user
|
||||||
|
has unlocked it for a period of time.
|
||||||
|
|
||||||
SendingDialogStartTransfer : used by pay-via-ip-address code (obsolete)
|
SendingDialogStartTransfer : used by pay-via-ip-address code (obsolete)
|
||||||
|
|
||||||
ThreadDelayedRepaint : repaint the gui
|
ThreadDelayedRepaint : repaint the gui
|
||||||
|
|
||||||
ThreadFlushWalletDB : Close the wallet.dat file if it hasn't been used in 500ms.
|
ThreadFlushWalletDB : Close the wallet.dat file if it hasn't been used
|
||||||
|
in 500ms.
|
||||||
|
|
||||||
ThreadRPCServer : Remote procedure call handler, listens on port 8332 for connections and services them.
|
ThreadRPCServer : Remote procedure call handler, listens on port 8332
|
||||||
|
for connections and services them.
|
||||||
|
|
||||||
ThreadBitcoinMiner : Generates bitcoins
|
ThreadBitcoinMiner : Generates bitcoins
|
||||||
|
|
||||||
|
@ -1,6 +1,9 @@
|
|||||||
* update (commit) version in sources
|
* update (commit) version in sources
|
||||||
|
src/serialize.h
|
||||||
|
share/setup.nsi
|
||||||
|
|
||||||
* update (commit) version in OSX app bundle
|
* update (commit) version in OSX app bundle
|
||||||
|
contrib/Bitcoin.app/Contents/Info.plist
|
||||||
|
|
||||||
* CFBundleShortVersionString should have value like 0.3.23
|
* CFBundleShortVersionString should have value like 0.3.23
|
||||||
* CFBundleVersion should have value like 323
|
* CFBundleVersion should have value like 323
|
||||||
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
@ -5,7 +5,7 @@ SetCompressor /SOLID lzma
|
|||||||
|
|
||||||
# General Symbol Definitions
|
# General Symbol Definitions
|
||||||
!define REGKEY "SOFTWARE\$(^Name)"
|
!define REGKEY "SOFTWARE\$(^Name)"
|
||||||
!define VERSION 0.3.25
|
!define VERSION 0.4.00
|
||||||
!define COMPANY "Bitcoin project"
|
!define COMPANY "Bitcoin project"
|
||||||
!define URL http://www.bitcoin.org/
|
!define URL http://www.bitcoin.org/
|
||||||
|
|
||||||
@ -45,13 +45,13 @@ Var StartMenuGroup
|
|||||||
!insertmacro MUI_LANGUAGE English
|
!insertmacro MUI_LANGUAGE English
|
||||||
|
|
||||||
# Installer attributes
|
# Installer attributes
|
||||||
OutFile bitcoin-0.3.25-win32-setup.exe
|
OutFile bitcoin-0.4.00-win32-setup.exe
|
||||||
InstallDir $PROGRAMFILES\Bitcoin
|
InstallDir $PROGRAMFILES\Bitcoin
|
||||||
CRCCheck on
|
CRCCheck on
|
||||||
XPStyle on
|
XPStyle on
|
||||||
BrandingText " "
|
BrandingText " "
|
||||||
ShowInstDetails show
|
ShowInstDetails show
|
||||||
VIProductVersion 0.3.25.0
|
VIProductVersion 0.4.00.0
|
||||||
VIAddVersionKey ProductName Bitcoin
|
VIAddVersionKey ProductName Bitcoin
|
||||||
VIAddVersionKey ProductVersion "${VERSION}"
|
VIAddVersionKey ProductVersion "${VERSION}"
|
||||||
VIAddVersionKey CompanyName "${COMPANY}"
|
VIAddVersionKey CompanyName "${COMPANY}"
|
||||||
|
@ -1830,7 +1830,9 @@ bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
|
|||||||
|
|
||||||
// Ask the first connected node for block updates
|
// Ask the first connected node for block updates
|
||||||
static int nAskedForBlocks;
|
static int nAskedForBlocks;
|
||||||
if (!pfrom->fClient && (nAskedForBlocks < 1 || vNodes.size() <= 1))
|
if (!pfrom->fClient &&
|
||||||
|
(pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
|
||||||
|
(nAskedForBlocks < 1 || vNodes.size() <= 1))
|
||||||
{
|
{
|
||||||
nAskedForBlocks++;
|
nAskedForBlocks++;
|
||||||
pfrom->PushGetBlocks(pindexBest, uint256(0));
|
pfrom->PushGetBlocks(pindexBest, uint256(0));
|
||||||
|
30
src/net.cpp
30
src/net.cpp
@ -1349,7 +1349,6 @@ void ThreadOpenConnections2(void* parg)
|
|||||||
CRITICAL_BLOCK(cs_mapAddresses)
|
CRITICAL_BLOCK(cs_mapAddresses)
|
||||||
{
|
{
|
||||||
// Add seed nodes if IRC isn't working
|
// Add seed nodes if IRC isn't working
|
||||||
static bool fSeedUsed;
|
|
||||||
bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
|
bool fTOR = (fUseProxy && addrProxy.port == htons(9050));
|
||||||
if (mapAddresses.empty() && (GetTime() - nStart > 60 || fTOR) && !fTestNet)
|
if (mapAddresses.empty() && (GetTime() - nStart > 60 || fTOR) && !fTestNet)
|
||||||
{
|
{
|
||||||
@ -1365,35 +1364,6 @@ void ThreadOpenConnections2(void* parg)
|
|||||||
addr.nTime = GetTime()-GetRand(nOneWeek)-nOneWeek;
|
addr.nTime = GetTime()-GetRand(nOneWeek)-nOneWeek;
|
||||||
AddAddress(addr);
|
AddAddress(addr);
|
||||||
}
|
}
|
||||||
fSeedUsed = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
if (fSeedUsed && mapAddresses.size() > ARRAYLEN(pnSeed) + 100)
|
|
||||||
{
|
|
||||||
// Disconnect seed nodes
|
|
||||||
set<unsigned int> setSeed(pnSeed, pnSeed + ARRAYLEN(pnSeed));
|
|
||||||
static int64 nSeedDisconnected;
|
|
||||||
if (nSeedDisconnected == 0)
|
|
||||||
{
|
|
||||||
nSeedDisconnected = GetTime();
|
|
||||||
CRITICAL_BLOCK(cs_vNodes)
|
|
||||||
BOOST_FOREACH(CNode* pnode, vNodes)
|
|
||||||
if (setSeed.count(pnode->addr.ip))
|
|
||||||
pnode->fDisconnect = true;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Keep setting timestamps to 0 so they won't reconnect
|
|
||||||
if (GetTime() - nSeedDisconnected < 60 * 60)
|
|
||||||
{
|
|
||||||
BOOST_FOREACH(PAIRTYPE(const vector<unsigned char>, CAddress)& item, mapAddresses)
|
|
||||||
{
|
|
||||||
if (setSeed.count(item.second.ip) && item.second.nTime != 0)
|
|
||||||
{
|
|
||||||
item.second.nTime = 0;
|
|
||||||
CAddrDB().WriteAddress(item.second);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ class CDataStream;
|
|||||||
class CAutoFile;
|
class CAutoFile;
|
||||||
static const unsigned int MAX_SIZE = 0x02000000;
|
static const unsigned int MAX_SIZE = 0x02000000;
|
||||||
|
|
||||||
static const int VERSION = 32500;
|
static const int VERSION = 40000;
|
||||||
static const char* pszSubVer = "";
|
static const char* pszSubVer = "";
|
||||||
static const bool VERSION_IS_BETA = true;
|
static const bool VERSION_IS_BETA = true;
|
||||||
|
|
||||||
|
26
src/util.cpp
26
src/util.cpp
@ -921,16 +921,22 @@ string FormatFullVersion()
|
|||||||
|
|
||||||
struct CLockLocation
|
struct CLockLocation
|
||||||
{
|
{
|
||||||
std::string mutexName;
|
|
||||||
std::string sourceFile;
|
|
||||||
int sourceLine;
|
|
||||||
|
|
||||||
CLockLocation(const char* pszName, const char* pszFile, int nLine)
|
CLockLocation(const char* pszName, const char* pszFile, int nLine)
|
||||||
{
|
{
|
||||||
mutexName = pszName;
|
mutexName = pszName;
|
||||||
sourceFile = pszFile;
|
sourceFile = pszFile;
|
||||||
sourceLine = nLine;
|
sourceLine = nLine;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string ToString() const
|
||||||
|
{
|
||||||
|
return mutexName+" "+sourceFile+":"+itostr(sourceLine);
|
||||||
|
}
|
||||||
|
|
||||||
|
private:
|
||||||
|
std::string mutexName;
|
||||||
|
std::string sourceFile;
|
||||||
|
int sourceLine;
|
||||||
};
|
};
|
||||||
|
|
||||||
typedef std::vector< std::pair<CCriticalSection*, CLockLocation> > LockStack;
|
typedef std::vector< std::pair<CCriticalSection*, CLockLocation> > LockStack;
|
||||||
@ -948,14 +954,14 @@ static void potential_deadlock_detected(const std::pair<CCriticalSection*, CCrit
|
|||||||
{
|
{
|
||||||
if (i.first == mismatch.first) printf(" (1)");
|
if (i.first == mismatch.first) printf(" (1)");
|
||||||
if (i.first == mismatch.second) printf(" (2)");
|
if (i.first == mismatch.second) printf(" (2)");
|
||||||
printf(" %s %s:%d\n", i.second.mutexName.c_str(), i.second.sourceFile.c_str(), i.second.sourceLine);
|
printf(" %s\n", i.second.ToString().c_str());
|
||||||
}
|
}
|
||||||
printf("Current lock order is:\n");
|
printf("Current lock order is:\n");
|
||||||
BOOST_FOREACH(const PAIRTYPE(CCriticalSection*, CLockLocation)& i, s1)
|
BOOST_FOREACH(const PAIRTYPE(CCriticalSection*, CLockLocation)& i, s1)
|
||||||
{
|
{
|
||||||
if (i.first == mismatch.first) printf(" (1)");
|
if (i.first == mismatch.first) printf(" (1)");
|
||||||
if (i.first == mismatch.second) printf(" (2)");
|
if (i.first == mismatch.second) printf(" (2)");
|
||||||
printf(" %s %s:%d\n", i.second.mutexName.c_str(), i.second.sourceFile.c_str(), i.second.sourceLine);
|
printf(" %s\n", i.second.ToString().c_str());
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -965,6 +971,7 @@ static void push_lock(CCriticalSection* c, const CLockLocation& locklocation)
|
|||||||
if (lockstack.get() == NULL)
|
if (lockstack.get() == NULL)
|
||||||
lockstack.reset(new LockStack);
|
lockstack.reset(new LockStack);
|
||||||
|
|
||||||
|
if (fDebug) printf("Locking: %s\n", locklocation.ToString().c_str());
|
||||||
dd_mutex.lock();
|
dd_mutex.lock();
|
||||||
|
|
||||||
(*lockstack).push_back(std::make_pair(c, locklocation));
|
(*lockstack).push_back(std::make_pair(c, locklocation));
|
||||||
@ -990,7 +997,14 @@ static void push_lock(CCriticalSection* c, const CLockLocation& locklocation)
|
|||||||
|
|
||||||
static void pop_lock()
|
static void pop_lock()
|
||||||
{
|
{
|
||||||
|
if (fDebug)
|
||||||
|
{
|
||||||
|
const CLockLocation& locklocation = (*lockstack).rbegin()->second;
|
||||||
|
printf("Unlocked: %s\n", locklocation.ToString().c_str());
|
||||||
|
}
|
||||||
|
dd_mutex.lock();
|
||||||
(*lockstack).pop_back();
|
(*lockstack).pop_back();
|
||||||
|
dd_mutex.unlock();
|
||||||
}
|
}
|
||||||
|
|
||||||
void CCriticalSection::Enter(const char* pszName, const char* pszFile, int nLine)
|
void CCriticalSection::Enter(const char* pszName, const char* pszFile, int nLine)
|
||||||
|
Loading…
Reference in New Issue
Block a user