]>
Commit | Line | Data |
---|---|---|
0a61b0df | 1 | // Copyright (c) 2009-2010 Satoshi Nakamoto |
88216419 | 2 | // Copyright (c) 2009-2012 The Bitcoin developers |
0a61b0df | 3 | // Distributed under the MIT/X11 software license, see the accompanying |
4 | // file license.txt or http://www.opensource.org/licenses/mit-license.php. | |
eb5fff9e | 5 | #include "checkpoints.h" |
1512d5ce | 6 | #include "db.h" |
40c2614e | 7 | #include "net.h" |
edd309e5 | 8 | #include "init.h" |
ed6d0b5f | 9 | #include "ui_interface.h" |
d237f62c | 10 | #include <boost/algorithm/string/replace.hpp> |
926e14b3 | 11 | #include <boost/filesystem.hpp> |
31f29312 | 12 | #include <boost/filesystem/fstream.hpp> |
0a61b0df | 13 | |
223b6f1b WL |
14 | using namespace std; |
15 | using namespace boost; | |
0a61b0df | 16 | |
17 | // | |
18 | // Global state | |
19 | // | |
20 | ||
64c7ee7e PW |
21 | CCriticalSection cs_setpwalletRegistered; |
22 | set<CWallet*> setpwalletRegistered; | |
23 | ||
0a61b0df | 24 | CCriticalSection cs_main; |
25 | ||
99860de3 | 26 | static map<uint256, CTransaction> mapTransactions; |
0a61b0df | 27 | CCriticalSection cs_mapTransactions; |
28 | unsigned int nTransactionsUpdated = 0; | |
29 | map<COutPoint, CInPoint> mapNextTx; | |
30 | ||
31 | map<uint256, CBlockIndex*> mapBlockIndex; | |
5cbf7532 | 32 | uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f"); |
99860de3 | 33 | static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32); |
0a61b0df | 34 | CBlockIndex* pindexGenesisBlock = NULL; |
35 | int nBestHeight = -1; | |
36 | CBigNum bnBestChainWork = 0; | |
37 | CBigNum bnBestInvalidWork = 0; | |
38 | uint256 hashBestChain = 0; | |
39 | CBlockIndex* pindexBest = NULL; | |
bde280b9 | 40 | int64 nTimeBestReceived = 0; |
0a61b0df | 41 | |
a8b95ce6 WL |
42 | CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have |
43 | ||
0a61b0df | 44 | map<uint256, CBlock*> mapOrphanBlocks; |
45 | multimap<uint256, CBlock*> mapOrphanBlocksByPrev; | |
46 | ||
47 | map<uint256, CDataStream*> mapOrphanTransactions; | |
48 | multimap<uint256, CDataStream*> mapOrphanTransactionsByPrev; | |
49 | ||
7bf8b7c2 GA |
50 | // Constant stuff for coinbase transactions we create: |
51 | CScript COINBASE_FLAGS; | |
0a61b0df | 52 | |
2bc4fd60 LD |
53 | const string strMessageMagic = "Bitcoin Signed Message:\n"; |
54 | ||
0a61b0df | 55 | double dHashesPerSec; |
bde280b9 | 56 | int64 nHPSTimerStart; |
0a61b0df | 57 | |
58 | // Settings | |
bde280b9 | 59 | int64 nTransactionFee = 0; |
972060ce | 60 | |
8bb5edc1 | 61 | |
0a61b0df | 62 | |
64c7ee7e PW |
63 | ////////////////////////////////////////////////////////////////////////////// |
64 | // | |
65 | // dispatching functions | |
66 | // | |
67 | ||
d825e6a3 PW |
68 | // These functions dispatch to one or all registered wallets |
69 | ||
70 | ||
64c7ee7e PW |
71 | void RegisterWallet(CWallet* pwalletIn) |
72 | { | |
64c7ee7e | 73 | { |
f8dcd5ca | 74 | LOCK(cs_setpwalletRegistered); |
64c7ee7e PW |
75 | setpwalletRegistered.insert(pwalletIn); |
76 | } | |
77 | } | |
78 | ||
79 | void UnregisterWallet(CWallet* pwalletIn) | |
80 | { | |
64c7ee7e | 81 | { |
f8dcd5ca | 82 | LOCK(cs_setpwalletRegistered); |
64c7ee7e PW |
83 | setpwalletRegistered.erase(pwalletIn); |
84 | } | |
85 | } | |
86 | ||
d825e6a3 | 87 | // check whether the passed transaction is from us |
64c7ee7e PW |
88 | bool static IsFromMe(CTransaction& tx) |
89 | { | |
90 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
91 | if (pwallet->IsFromMe(tx)) | |
92 | return true; | |
93 | return false; | |
94 | } | |
95 | ||
d825e6a3 | 96 | // get the wallet transaction with the given hash (if it exists) |
64c7ee7e PW |
97 | bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx) |
98 | { | |
99 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
100 | if (pwallet->GetTransaction(hashTx,wtx)) | |
101 | return true; | |
102 | return false; | |
103 | } | |
104 | ||
d825e6a3 | 105 | // erases transaction with the given hash from all wallets |
64c7ee7e PW |
106 | void static EraseFromWallets(uint256 hash) |
107 | { | |
108 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
109 | pwallet->EraseFromWallet(hash); | |
110 | } | |
111 | ||
d825e6a3 | 112 | // make sure all wallets know about the given transaction, in the given block |
64c7ee7e PW |
113 | void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false) |
114 | { | |
115 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
116 | pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate); | |
117 | } | |
118 | ||
d825e6a3 | 119 | // notify wallets about a new best chain |
64c7ee7e PW |
120 | void static SetBestChain(const CBlockLocator& loc) |
121 | { | |
122 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
123 | pwallet->SetBestChain(loc); | |
124 | } | |
125 | ||
d825e6a3 | 126 | // notify wallets about an updated transaction |
64c7ee7e PW |
127 | void static UpdatedTransaction(const uint256& hashTx) |
128 | { | |
129 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
130 | pwallet->UpdatedTransaction(hashTx); | |
131 | } | |
132 | ||
d825e6a3 | 133 | // dump all wallets |
64c7ee7e PW |
134 | void static PrintWallets(const CBlock& block) |
135 | { | |
136 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
137 | pwallet->PrintWallet(block); | |
138 | } | |
139 | ||
d825e6a3 | 140 | // notify wallets about an incoming inventory (for request counts) |
64c7ee7e PW |
141 | void static Inventory(const uint256& hash) |
142 | { | |
143 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
144 | pwallet->Inventory(hash); | |
145 | } | |
146 | ||
d825e6a3 | 147 | // ask wallets to resend their transactions |
64c7ee7e PW |
148 | void static ResendWalletTransactions() |
149 | { | |
150 | BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered) | |
151 | pwallet->ResendWalletTransactions(); | |
152 | } | |
153 | ||
154 | ||
155 | ||
156 | ||
157 | ||
158 | ||
159 | ||
0a61b0df | 160 | ////////////////////////////////////////////////////////////////////////////// |
161 | // | |
162 | // mapOrphanTransactions | |
163 | // | |
164 | ||
142e6041 | 165 | void AddOrphanTx(const CDataStream& vMsg) |
0a61b0df | 166 | { |
167 | CTransaction tx; | |
168 | CDataStream(vMsg) >> tx; | |
169 | uint256 hash = tx.GetHash(); | |
170 | if (mapOrphanTransactions.count(hash)) | |
171 | return; | |
142e6041 | 172 | |
0a61b0df | 173 | CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg); |
223b6f1b | 174 | BOOST_FOREACH(const CTxIn& txin, tx.vin) |
0a61b0df | 175 | mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg)); |
176 | } | |
177 | ||
64c7ee7e | 178 | void static EraseOrphanTx(uint256 hash) |
0a61b0df | 179 | { |
180 | if (!mapOrphanTransactions.count(hash)) | |
181 | return; | |
182 | const CDataStream* pvMsg = mapOrphanTransactions[hash]; | |
183 | CTransaction tx; | |
184 | CDataStream(*pvMsg) >> tx; | |
223b6f1b | 185 | BOOST_FOREACH(const CTxIn& txin, tx.vin) |
0a61b0df | 186 | { |
187 | for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash); | |
188 | mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);) | |
189 | { | |
190 | if ((*mi).second == pvMsg) | |
191 | mapOrphanTransactionsByPrev.erase(mi++); | |
192 | else | |
193 | mi++; | |
194 | } | |
195 | } | |
196 | delete pvMsg; | |
197 | mapOrphanTransactions.erase(hash); | |
198 | } | |
199 | ||
142e6041 GA |
200 | int LimitOrphanTxSize(int nMaxOrphans) |
201 | { | |
202 | int nEvicted = 0; | |
203 | while (mapOrphanTransactions.size() > nMaxOrphans) | |
204 | { | |
205 | // Evict a random orphan: | |
206 | std::vector<unsigned char> randbytes(32); | |
207 | RAND_bytes(&randbytes[0], 32); | |
208 | uint256 randomhash(randbytes); | |
209 | map<uint256, CDataStream*>::iterator it = mapOrphanTransactions.lower_bound(randomhash); | |
210 | if (it == mapOrphanTransactions.end()) | |
211 | it = mapOrphanTransactions.begin(); | |
212 | EraseOrphanTx(it->first); | |
213 | ++nEvicted; | |
214 | } | |
215 | return nEvicted; | |
216 | } | |
0a61b0df | 217 | |
218 | ||
219 | ||
220 | ||
221 | ||
222 | ||
223 | ||
224 | ////////////////////////////////////////////////////////////////////////////// | |
225 | // | |
395c1f44 | 226 | // CTransaction and CTxIndex |
0a61b0df | 227 | // |
228 | ||
461764cb | 229 | bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet) |
230 | { | |
231 | SetNull(); | |
232 | if (!txdb.ReadTxIndex(prevout.hash, txindexRet)) | |
233 | return false; | |
234 | if (!ReadFromDisk(txindexRet.pos)) | |
235 | return false; | |
236 | if (prevout.n >= vout.size()) | |
237 | { | |
238 | SetNull(); | |
239 | return false; | |
240 | } | |
241 | return true; | |
242 | } | |
243 | ||
244 | bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout) | |
245 | { | |
246 | CTxIndex txindex; | |
247 | return ReadFromDisk(txdb, prevout, txindex); | |
248 | } | |
249 | ||
250 | bool CTransaction::ReadFromDisk(COutPoint prevout) | |
251 | { | |
252 | CTxDB txdb("r"); | |
253 | CTxIndex txindex; | |
254 | return ReadFromDisk(txdb, prevout, txindex); | |
255 | } | |
256 | ||
e679ec96 GA |
257 | bool CTransaction::IsStandard() const |
258 | { | |
259 | BOOST_FOREACH(const CTxIn& txin, vin) | |
260 | { | |
2a45a494 | 261 | // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG |
922e8e29 | 262 | // pay-to-script-hash, which is 3 ~80-byte signatures, 3 |
e679ec96 | 263 | // ~65-byte public keys, plus a few script ops. |
2a45a494 | 264 | if (txin.scriptSig.size() > 500) |
922e8e29 | 265 | return false; |
e679ec96 | 266 | if (!txin.scriptSig.IsPushOnly()) |
922e8e29 | 267 | return false; |
e679ec96 GA |
268 | } |
269 | BOOST_FOREACH(const CTxOut& txout, vout) | |
270 | if (!::IsStandard(txout.scriptPubKey)) | |
922e8e29 | 271 | return false; |
e679ec96 GA |
272 | return true; |
273 | } | |
274 | ||
275 | // | |
276 | // Check transaction inputs, and make sure any | |
922e8e29 | 277 | // pay-to-script-hash transactions are evaluating IsStandard scripts |
e679ec96 GA |
278 | // |
279 | // Why bother? To avoid denial-of-service attacks; an attacker | |
922e8e29 GA |
280 | // can submit a standard HASH... OP_EQUAL transaction, |
281 | // which will get accepted into blocks. The redemption | |
282 | // script can be anything; an attacker could use a very | |
e679ec96 GA |
283 | // expensive-to-check-upon-redemption script like: |
284 | // DUP CHECKSIG DROP ... repeated 100 times... OP_1 | |
285 | // | |
8d7849b6 | 286 | bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const |
e679ec96 | 287 | { |
8d7849b6 | 288 | if (IsCoinBase()) |
575bdcde | 289 | return true; // Coinbases don't use vin normally |
8d7849b6 | 290 | |
c376ac35 | 291 | for (unsigned int i = 0; i < vin.size(); i++) |
e679ec96 | 292 | { |
8d7849b6 | 293 | const CTxOut& prev = GetOutputFor(vin[i], mapInputs); |
e679ec96 GA |
294 | |
295 | vector<vector<unsigned char> > vSolutions; | |
2a45a494 GA |
296 | txnouttype whichType; |
297 | // get the scriptPubKey corresponding to this input: | |
8d7849b6 | 298 | const CScript& prevScript = prev.scriptPubKey; |
2a45a494 | 299 | if (!Solver(prevScript, whichType, vSolutions)) |
922e8e29 | 300 | return false; |
39f0d968 GA |
301 | int nArgsExpected = ScriptSigArgsExpected(whichType, vSolutions); |
302 | ||
303 | // Transactions with extra stuff in their scriptSigs are | |
304 | // non-standard. Note that this EvalScript() call will | |
305 | // be quick, because if there are any operations | |
306 | // beside "push data" in the scriptSig the | |
307 | // IsStandard() call returns false | |
308 | vector<vector<unsigned char> > stack; | |
309 | if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0)) | |
310 | return false; | |
311 | ||
e679ec96 GA |
312 | if (whichType == TX_SCRIPTHASH) |
313 | { | |
922e8e29 | 314 | if (stack.empty()) |
e679ec96 | 315 | return false; |
2a45a494 | 316 | CScript subscript(stack.back().begin(), stack.back().end()); |
39f0d968 GA |
317 | vector<vector<unsigned char> > vSolutions2; |
318 | txnouttype whichType2; | |
319 | if (!Solver(subscript, whichType2, vSolutions2)) | |
922e8e29 | 320 | return false; |
39f0d968 GA |
321 | if (whichType2 == TX_SCRIPTHASH) |
322 | return false; | |
323 | nArgsExpected += ScriptSigArgsExpected(whichType2, vSolutions2); | |
e679ec96 | 324 | } |
39f0d968 GA |
325 | |
326 | if (stack.size() != nArgsExpected) | |
327 | return false; | |
e679ec96 GA |
328 | } |
329 | ||
330 | return true; | |
331 | } | |
332 | ||
922e8e29 GA |
333 | int |
334 | CTransaction::GetLegacySigOpCount() const | |
335 | { | |
336 | int nSigOps = 0; | |
337 | BOOST_FOREACH(const CTxIn& txin, vin) | |
338 | { | |
339 | nSigOps += txin.scriptSig.GetSigOpCount(false); | |
340 | } | |
341 | BOOST_FOREACH(const CTxOut& txout, vout) | |
342 | { | |
343 | nSigOps += txout.scriptPubKey.GetSigOpCount(false); | |
344 | } | |
345 | return nSigOps; | |
346 | } | |
0a61b0df | 347 | |
348 | ||
349 | int CMerkleTx::SetMerkleBranch(const CBlock* pblock) | |
350 | { | |
351 | if (fClient) | |
352 | { | |
353 | if (hashBlock == 0) | |
354 | return 0; | |
355 | } | |
356 | else | |
357 | { | |
358 | CBlock blockTmp; | |
359 | if (pblock == NULL) | |
360 | { | |
361 | // Load the block this tx is in | |
362 | CTxIndex txindex; | |
363 | if (!CTxDB("r").ReadTxIndex(GetHash(), txindex)) | |
364 | return 0; | |
365 | if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos)) | |
366 | return 0; | |
367 | pblock = &blockTmp; | |
368 | } | |
369 | ||
370 | // Update the tx's hashBlock | |
371 | hashBlock = pblock->GetHash(); | |
372 | ||
373 | // Locate the transaction | |
374 | for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++) | |
375 | if (pblock->vtx[nIndex] == *(CTransaction*)this) | |
376 | break; | |
377 | if (nIndex == pblock->vtx.size()) | |
378 | { | |
379 | vMerkleBranch.clear(); | |
380 | nIndex = -1; | |
381 | printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n"); | |
382 | return 0; | |
383 | } | |
384 | ||
385 | // Fill in merkle branch | |
386 | vMerkleBranch = pblock->GetMerkleBranch(nIndex); | |
387 | } | |
388 | ||
389 | // Is the tx in a block that's in the main chain | |
390 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock); | |
391 | if (mi == mapBlockIndex.end()) | |
392 | return 0; | |
393 | CBlockIndex* pindex = (*mi).second; | |
394 | if (!pindex || !pindex->IsInMainChain()) | |
395 | return 0; | |
396 | ||
397 | return pindexBest->nHeight - pindex->nHeight + 1; | |
398 | } | |
399 | ||
400 | ||
401 | ||
0a61b0df | 402 | |
403 | ||
404 | ||
405 | ||
a790fa46 | 406 | bool CTransaction::CheckTransaction() const |
407 | { | |
408 | // Basic checks that don't depend on any context | |
d0d9486f | 409 | if (vin.empty()) |
3e52aaf2 | 410 | return DoS(10, error("CTransaction::CheckTransaction() : vin empty")); |
d0d9486f | 411 | if (vout.empty()) |
3e52aaf2 | 412 | return DoS(10, error("CTransaction::CheckTransaction() : vout empty")); |
a790fa46 | 413 | // Size limits |
414 | if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE) | |
3e52aaf2 | 415 | return DoS(100, error("CTransaction::CheckTransaction() : size limits failed")); |
a790fa46 | 416 | |
417 | // Check for negative or overflow output values | |
bde280b9 | 418 | int64 nValueOut = 0; |
223b6f1b | 419 | BOOST_FOREACH(const CTxOut& txout, vout) |
a790fa46 | 420 | { |
421 | if (txout.nValue < 0) | |
3e52aaf2 | 422 | return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative")); |
a790fa46 | 423 | if (txout.nValue > MAX_MONEY) |
3e52aaf2 | 424 | return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high")); |
a790fa46 | 425 | nValueOut += txout.nValue; |
426 | if (!MoneyRange(nValueOut)) | |
3e52aaf2 | 427 | return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range")); |
a790fa46 | 428 | } |
429 | ||
33208fb5 MC |
430 | // Check for duplicate inputs |
431 | set<COutPoint> vInOutPoints; | |
432 | BOOST_FOREACH(const CTxIn& txin, vin) | |
433 | { | |
434 | if (vInOutPoints.count(txin.prevout)) | |
435 | return false; | |
436 | vInOutPoints.insert(txin.prevout); | |
437 | } | |
438 | ||
a790fa46 | 439 | if (IsCoinBase()) |
440 | { | |
441 | if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100) | |
3e52aaf2 | 442 | return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size")); |
a790fa46 | 443 | } |
444 | else | |
445 | { | |
223b6f1b | 446 | BOOST_FOREACH(const CTxIn& txin, vin) |
a790fa46 | 447 | if (txin.prevout.IsNull()) |
3e52aaf2 | 448 | return DoS(10, error("CTransaction::CheckTransaction() : prevout is null")); |
a790fa46 | 449 | } |
450 | ||
451 | return true; | |
452 | } | |
453 | ||
f1e1fb4b | 454 | bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs) |
0a61b0df | 455 | { |
456 | if (pfMissingInputs) | |
457 | *pfMissingInputs = false; | |
458 | ||
a790fa46 | 459 | if (!CheckTransaction()) |
460 | return error("AcceptToMemoryPool() : CheckTransaction failed"); | |
461 | ||
0a61b0df | 462 | // Coinbase is only valid in a block, not as a loose transaction |
463 | if (IsCoinBase()) | |
3e52aaf2 | 464 | return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx")); |
0a61b0df | 465 | |
0a61b0df | 466 | // To help v0.1.5 clients who would see it as a negative number |
bde280b9 | 467 | if ((int64)nLockTime > std::numeric_limits<int>::max()) |
f1e1fb4b | 468 | return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet"); |
469 | ||
5ec05f0a GA |
470 | // Rather not work on nonstandard transactions (unless -testnet) |
471 | if (!fTestNet && !IsStandard()) | |
97ee01ad | 472 | return error("AcceptToMemoryPool() : nonstandard transaction type"); |
473 | ||
0a61b0df | 474 | // Do we already have it? |
475 | uint256 hash = GetHash(); | |
f8dcd5ca PW |
476 | { |
477 | LOCK(cs_mapTransactions); | |
0a61b0df | 478 | if (mapTransactions.count(hash)) |
479 | return false; | |
f8dcd5ca | 480 | } |
0a61b0df | 481 | if (fCheckInputs) |
482 | if (txdb.ContainsTx(hash)) | |
483 | return false; | |
484 | ||
485 | // Check for conflicts with in-memory transactions | |
486 | CTransaction* ptxOld = NULL; | |
c376ac35 | 487 | for (unsigned int i = 0; i < vin.size(); i++) |
0a61b0df | 488 | { |
489 | COutPoint outpoint = vin[i].prevout; | |
490 | if (mapNextTx.count(outpoint)) | |
491 | { | |
492 | // Disable replacement feature for now | |
493 | return false; | |
494 | ||
495 | // Allow replacing with a newer version of the same transaction | |
496 | if (i != 0) | |
497 | return false; | |
498 | ptxOld = mapNextTx[outpoint].ptx; | |
683bcb91 | 499 | if (ptxOld->IsFinal()) |
500 | return false; | |
0a61b0df | 501 | if (!IsNewerThan(*ptxOld)) |
502 | return false; | |
c376ac35 | 503 | for (unsigned int i = 0; i < vin.size(); i++) |
0a61b0df | 504 | { |
505 | COutPoint outpoint = vin[i].prevout; | |
506 | if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld) | |
507 | return false; | |
508 | } | |
509 | break; | |
510 | } | |
511 | } | |
512 | ||
97ee01ad | 513 | if (fCheckInputs) |
0a61b0df | 514 | { |
8d7849b6 | 515 | MapPrevTx mapInputs; |
97ee01ad | 516 | map<uint256, CTxIndex> mapUnused; |
149f580c GA |
517 | bool fInvalid = false; |
518 | if (!FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid)) | |
e679ec96 | 519 | { |
149f580c GA |
520 | if (fInvalid) |
521 | return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str()); | |
e679ec96 GA |
522 | if (pfMissingInputs) |
523 | *pfMissingInputs = true; | |
524 | return error("AcceptToMemoryPool() : FetchInputs failed %s", hash.ToString().substr(0,10).c_str()); | |
525 | } | |
526 | ||
922e8e29 | 527 | // Check for non-standard pay-to-script-hash in inputs |
575bdcde | 528 | if (!AreInputsStandard(mapInputs) && !fTestNet) |
e679ec96 GA |
529 | return error("AcceptToMemoryPool() : nonstandard transaction input"); |
530 | ||
137d0685 GA |
531 | // Note: if you modify this code to accept non-standard transactions, then |
532 | // you should add code here to check that the transaction does a | |
533 | // reasonable number of ECDSA signature verifications. | |
534 | ||
8d7849b6 | 535 | int64 nFees = GetValueIn(mapInputs)-GetValueOut(); |
8d7849b6 GA |
536 | unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK); |
537 | ||
538 | // Don't accept it if it can't get into a block | |
539 | if (nFees < GetMinFee(1000, true, GMF_RELAY)) | |
540 | return error("AcceptToMemoryPool() : not enough fees"); | |
922e8e29 | 541 | |
5de8b54c | 542 | // Continuously rate-limit free transactions |
88abf703 GA |
543 | // This mitigates 'penny-flooding' -- sending thousands of free transactions just to |
544 | // be annoying or make other's transactions take longer to confirm. | |
2bfda1be | 545 | if (nFees < MIN_RELAY_TX_FEE) |
97ee01ad | 546 | { |
88abf703 | 547 | static CCriticalSection cs; |
5de8b54c | 548 | static double dFreeCount; |
bde280b9 WL |
549 | static int64 nLastTime; |
550 | int64 nNow = GetTime(); | |
88abf703 | 551 | |
97ee01ad | 552 | { |
f8dcd5ca | 553 | LOCK(cs); |
88abf703 GA |
554 | // Use an exponentially decaying ~10-minute window: |
555 | dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime)); | |
556 | nLastTime = nNow; | |
557 | // -limitfreerelay unit is thousand-bytes-per-minute | |
558 | // At default rate it would take over a month to fill 1GB | |
64c7ee7e | 559 | if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(*this)) |
88abf703 GA |
560 | return error("AcceptToMemoryPool() : free transaction rejected by rate limiter"); |
561 | if (fDebug) | |
562 | printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize); | |
563 | dFreeCount += nSize; | |
97ee01ad | 564 | } |
97ee01ad | 565 | } |
8d7849b6 GA |
566 | |
567 | // Check against previous transactions | |
568 | // This is done last to help prevent CPU exhaustion denial-of-service attacks. | |
569 | if (!ConnectInputs(mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false)) | |
570 | { | |
8d7849b6 GA |
571 | return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str()); |
572 | } | |
0a61b0df | 573 | } |
574 | ||
575 | // Store transaction in memory | |
0a61b0df | 576 | { |
f8dcd5ca | 577 | LOCK(cs_mapTransactions); |
0a61b0df | 578 | if (ptxOld) |
579 | { | |
f1e1fb4b | 580 | printf("AcceptToMemoryPool() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str()); |
0a61b0df | 581 | ptxOld->RemoveFromMemoryPool(); |
582 | } | |
f1e1fb4b | 583 | AddToMemoryPoolUnchecked(); |
0a61b0df | 584 | } |
585 | ||
586 | ///// are we sure this is ok when loading transactions or restoring block txes | |
587 | // If updated, erase old tx from wallet | |
588 | if (ptxOld) | |
64c7ee7e | 589 | EraseFromWallets(ptxOld->GetHash()); |
0a61b0df | 590 | |
b22c8842 | 591 | printf("AcceptToMemoryPool(): accepted %s\n", hash.ToString().substr(0,10).c_str()); |
0a61b0df | 592 | return true; |
593 | } | |
594 | ||
340f0876 LD |
595 | uint64 nPooledTx = 0; |
596 | ||
f1e1fb4b | 597 | bool CTransaction::AddToMemoryPoolUnchecked() |
0a61b0df | 598 | { |
340f0876 | 599 | printf("AcceptToMemoryPoolUnchecked(): size %lu\n", mapTransactions.size()); |
0a61b0df | 600 | // Add to memory pool without checking anything. Don't call this directly, |
f1e1fb4b | 601 | // call AcceptToMemoryPool to properly check the transaction first. |
0a61b0df | 602 | { |
f8dcd5ca | 603 | LOCK(cs_mapTransactions); |
0a61b0df | 604 | uint256 hash = GetHash(); |
605 | mapTransactions[hash] = *this; | |
c376ac35 | 606 | for (unsigned int i = 0; i < vin.size(); i++) |
0a61b0df | 607 | mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i); |
608 | nTransactionsUpdated++; | |
340f0876 | 609 | ++nPooledTx; |
0a61b0df | 610 | } |
611 | return true; | |
612 | } | |
613 | ||
614 | ||
615 | bool CTransaction::RemoveFromMemoryPool() | |
616 | { | |
617 | // Remove transaction from memory pool | |
0a61b0df | 618 | { |
f8dcd5ca | 619 | LOCK(cs_mapTransactions); |
74f28bf1 CM |
620 | uint256 hash = GetHash(); |
621 | if (mapTransactions.count(hash)) | |
622 | { | |
623 | BOOST_FOREACH(const CTxIn& txin, vin) | |
624 | mapNextTx.erase(txin.prevout); | |
625 | mapTransactions.erase(hash); | |
626 | nTransactionsUpdated++; | |
627 | --nPooledTx; | |
628 | } | |
0a61b0df | 629 | } |
630 | return true; | |
631 | } | |
632 | ||
633 | ||
634 | ||
635 | ||
636 | ||
637 | ||
30ab2c9c | 638 | int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const |
0a61b0df | 639 | { |
640 | if (hashBlock == 0 || nIndex == -1) | |
641 | return 0; | |
642 | ||
643 | // Find the block it claims to be in | |
644 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock); | |
645 | if (mi == mapBlockIndex.end()) | |
646 | return 0; | |
647 | CBlockIndex* pindex = (*mi).second; | |
648 | if (!pindex || !pindex->IsInMainChain()) | |
649 | return 0; | |
650 | ||
651 | // Make sure the merkle branch connects to this block | |
652 | if (!fMerkleVerified) | |
653 | { | |
654 | if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot) | |
655 | return 0; | |
656 | fMerkleVerified = true; | |
657 | } | |
658 | ||
30ab2c9c | 659 | pindexRet = pindex; |
0a61b0df | 660 | return pindexBest->nHeight - pindex->nHeight + 1; |
661 | } | |
662 | ||
663 | ||
664 | int CMerkleTx::GetBlocksToMaturity() const | |
665 | { | |
666 | if (!IsCoinBase()) | |
667 | return 0; | |
668 | return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain()); | |
669 | } | |
670 | ||
671 | ||
f1e1fb4b | 672 | bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs) |
0a61b0df | 673 | { |
674 | if (fClient) | |
675 | { | |
676 | if (!IsInMainChain() && !ClientConnectInputs()) | |
677 | return false; | |
f1e1fb4b | 678 | return CTransaction::AcceptToMemoryPool(txdb, false); |
0a61b0df | 679 | } |
680 | else | |
681 | { | |
f1e1fb4b | 682 | return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs); |
0a61b0df | 683 | } |
684 | } | |
685 | ||
e89b9f6a PW |
686 | bool CMerkleTx::AcceptToMemoryPool() |
687 | { | |
688 | CTxDB txdb("r"); | |
689 | return AcceptToMemoryPool(txdb); | |
690 | } | |
691 | ||
0a61b0df | 692 | |
693 | ||
694 | bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs) | |
695 | { | |
f8dcd5ca | 696 | |
0a61b0df | 697 | { |
f8dcd5ca | 698 | LOCK(cs_mapTransactions); |
f1e1fb4b | 699 | // Add previous supporting transactions first |
223b6f1b | 700 | BOOST_FOREACH(CMerkleTx& tx, vtxPrev) |
0a61b0df | 701 | { |
702 | if (!tx.IsCoinBase()) | |
703 | { | |
704 | uint256 hash = tx.GetHash(); | |
705 | if (!mapTransactions.count(hash) && !txdb.ContainsTx(hash)) | |
f1e1fb4b | 706 | tx.AcceptToMemoryPool(txdb, fCheckInputs); |
0a61b0df | 707 | } |
708 | } | |
f1e1fb4b | 709 | return AcceptToMemoryPool(txdb, fCheckInputs); |
0a61b0df | 710 | } |
f1e1fb4b | 711 | return false; |
0a61b0df | 712 | } |
713 | ||
e89b9f6a | 714 | bool CWalletTx::AcceptWalletTransaction() |
0a61b0df | 715 | { |
0a61b0df | 716 | CTxDB txdb("r"); |
e89b9f6a | 717 | return AcceptWalletTransaction(txdb); |
0a61b0df | 718 | } |
719 | ||
395c1f44 GA |
720 | int CTxIndex::GetDepthInMainChain() const |
721 | { | |
722 | // Read block header | |
723 | CBlock block; | |
724 | if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false)) | |
725 | return 0; | |
726 | // Find the block in the index | |
727 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash()); | |
728 | if (mi == mapBlockIndex.end()) | |
729 | return 0; | |
730 | CBlockIndex* pindex = (*mi).second; | |
731 | if (!pindex || !pindex->IsInMainChain()) | |
732 | return 0; | |
733 | return 1 + nBestHeight - pindex->nHeight; | |
734 | } | |
735 | ||
0a61b0df | 736 | |
737 | ||
738 | ||
739 | ||
740 | ||
741 | ||
742 | ||
743 | ||
744 | ||
745 | ////////////////////////////////////////////////////////////////////////////// | |
746 | // | |
747 | // CBlock and CBlockIndex | |
748 | // | |
749 | ||
750 | bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions) | |
751 | { | |
f03304a9 | 752 | if (!fReadTransactions) |
753 | { | |
754 | *this = pindex->GetBlockHeader(); | |
755 | return true; | |
756 | } | |
0a61b0df | 757 | if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions)) |
758 | return false; | |
759 | if (GetHash() != pindex->GetBlockHash()) | |
760 | return error("CBlock::ReadFromDisk() : GetHash() doesn't match index"); | |
761 | return true; | |
762 | } | |
763 | ||
64c7ee7e | 764 | uint256 static GetOrphanRoot(const CBlock* pblock) |
0a61b0df | 765 | { |
766 | // Work back to the first block in the orphan chain | |
767 | while (mapOrphanBlocks.count(pblock->hashPrevBlock)) | |
768 | pblock = mapOrphanBlocks[pblock->hashPrevBlock]; | |
769 | return pblock->GetHash(); | |
770 | } | |
771 | ||
bde280b9 | 772 | int64 static GetBlockValue(int nHeight, int64 nFees) |
0a61b0df | 773 | { |
bde280b9 | 774 | int64 nSubsidy = 50 * COIN; |
0a61b0df | 775 | |
776 | // Subsidy is cut in half every 4 years | |
777 | nSubsidy >>= (nHeight / 210000); | |
778 | ||
779 | return nSubsidy + nFees; | |
780 | } | |
781 | ||
bde280b9 WL |
782 | static const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks |
783 | static const int64 nTargetSpacing = 10 * 60; | |
784 | static const int64 nInterval = nTargetTimespan / nTargetSpacing; | |
10fd7f66 GA |
785 | |
786 | // | |
787 | // minimum amount of work that could possibly be required nTime after | |
788 | // minimum work required was nBase | |
789 | // | |
bde280b9 | 790 | unsigned int ComputeMinWork(unsigned int nBase, int64 nTime) |
10fd7f66 | 791 | { |
c52296a7 GA |
792 | // Testnet has min-difficulty blocks |
793 | // after nTargetSpacing*2 time between blocks: | |
794 | if (fTestNet && nTime > nTargetSpacing*2) | |
795 | return bnProofOfWorkLimit.GetCompact(); | |
796 | ||
10fd7f66 GA |
797 | CBigNum bnResult; |
798 | bnResult.SetCompact(nBase); | |
799 | while (nTime > 0 && bnResult < bnProofOfWorkLimit) | |
800 | { | |
801 | // Maximum 400% adjustment... | |
802 | bnResult *= 4; | |
803 | // ... in best-case exactly 4-times-normal target time | |
804 | nTime -= nTargetTimespan*4; | |
805 | } | |
806 | if (bnResult > bnProofOfWorkLimit) | |
807 | bnResult = bnProofOfWorkLimit; | |
808 | return bnResult.GetCompact(); | |
809 | } | |
810 | ||
c52296a7 | 811 | unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast, const CBlock *pblock) |
0a61b0df | 812 | { |
c52296a7 | 813 | unsigned int nProofOfWorkLimit = bnProofOfWorkLimit.GetCompact(); |
0a61b0df | 814 | |
815 | // Genesis block | |
816 | if (pindexLast == NULL) | |
c52296a7 | 817 | return nProofOfWorkLimit; |
0a61b0df | 818 | |
819 | // Only change once per interval | |
820 | if ((pindexLast->nHeight+1) % nInterval != 0) | |
c52296a7 GA |
821 | { |
822 | // Special rules for testnet after 15 Feb 2012: | |
823 | if (fTestNet && pblock->nTime > 1329264000) | |
824 | { | |
825 | // If the new block's timestamp is more than 2* 10 minutes | |
826 | // then allow mining of a min-difficulty block. | |
827 | if (pblock->nTime - pindexLast->nTime > nTargetSpacing*2) | |
828 | return nProofOfWorkLimit; | |
829 | else | |
830 | { | |
831 | // Return the last non-special-min-difficulty-rules-block | |
832 | const CBlockIndex* pindex = pindexLast; | |
833 | while (pindex->pprev && pindex->nHeight % nInterval != 0 && pindex->nBits == nProofOfWorkLimit) | |
834 | pindex = pindex->pprev; | |
835 | return pindex->nBits; | |
836 | } | |
837 | } | |
838 | ||
0a61b0df | 839 | return pindexLast->nBits; |
c52296a7 | 840 | } |
0a61b0df | 841 | |
842 | // Go back by what we want to be 14 days worth of blocks | |
843 | const CBlockIndex* pindexFirst = pindexLast; | |
844 | for (int i = 0; pindexFirst && i < nInterval-1; i++) | |
845 | pindexFirst = pindexFirst->pprev; | |
846 | assert(pindexFirst); | |
847 | ||
848 | // Limit adjustment step | |
bde280b9 | 849 | int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime(); |
0a61b0df | 850 | printf(" nActualTimespan = %"PRI64d" before bounds\n", nActualTimespan); |
851 | if (nActualTimespan < nTargetTimespan/4) | |
852 | nActualTimespan = nTargetTimespan/4; | |
853 | if (nActualTimespan > nTargetTimespan*4) | |
854 | nActualTimespan = nTargetTimespan*4; | |
855 | ||
856 | // Retarget | |
857 | CBigNum bnNew; | |
858 | bnNew.SetCompact(pindexLast->nBits); | |
859 | bnNew *= nActualTimespan; | |
860 | bnNew /= nTargetTimespan; | |
861 | ||
862 | if (bnNew > bnProofOfWorkLimit) | |
863 | bnNew = bnProofOfWorkLimit; | |
864 | ||
865 | /// debug print | |
866 | printf("GetNextWorkRequired RETARGET\n"); | |
867 | printf("nTargetTimespan = %"PRI64d" nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan); | |
868 | printf("Before: %08x %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str()); | |
869 | printf("After: %08x %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str()); | |
870 | ||
871 | return bnNew.GetCompact(); | |
872 | } | |
873 | ||
874 | bool CheckProofOfWork(uint256 hash, unsigned int nBits) | |
875 | { | |
876 | CBigNum bnTarget; | |
877 | bnTarget.SetCompact(nBits); | |
878 | ||
879 | // Check range | |
880 | if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit) | |
881 | return error("CheckProofOfWork() : nBits below minimum work"); | |
882 | ||
883 | // Check proof of work matches claimed amount | |
884 | if (hash > bnTarget.getuint256()) | |
885 | return error("CheckProofOfWork() : hash doesn't match nBits"); | |
886 | ||
887 | return true; | |
888 | } | |
889 | ||
c5aa1b13 | 890 | // Return maximum amount of blocks that other nodes claim to have |
d33cc2b5 | 891 | int GetNumBlocksOfPeers() |
c5aa1b13 | 892 | { |
eb5fff9e | 893 | return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate()); |
c5aa1b13 WL |
894 | } |
895 | ||
0a61b0df | 896 | bool IsInitialBlockDownload() |
897 | { | |
fe358165 | 898 | if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate()) |
0a61b0df | 899 | return true; |
bde280b9 | 900 | static int64 nLastUpdate; |
0a61b0df | 901 | static CBlockIndex* pindexLastBest; |
902 | if (pindexBest != pindexLastBest) | |
903 | { | |
904 | pindexLastBest = pindexBest; | |
905 | nLastUpdate = GetTime(); | |
906 | } | |
907 | return (GetTime() - nLastUpdate < 10 && | |
908 | pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60); | |
909 | } | |
910 | ||
64c7ee7e | 911 | void static InvalidChainFound(CBlockIndex* pindexNew) |
0a61b0df | 912 | { |
913 | if (pindexNew->bnChainWork > bnBestInvalidWork) | |
914 | { | |
915 | bnBestInvalidWork = pindexNew->bnChainWork; | |
916 | CTxDB().WriteBestInvalidWork(bnBestInvalidWork); | |
917 | MainFrameRepaint(); | |
918 | } | |
919 | printf("InvalidChainFound: invalid block=%s height=%d work=%s\n", pindexNew->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->nHeight, pindexNew->bnChainWork.ToString().c_str()); | |
920 | printf("InvalidChainFound: current best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str()); | |
921 | if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6) | |
922 | printf("InvalidChainFound: WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade.\n"); | |
923 | } | |
924 | ||
0f8cb5db GA |
925 | void CBlock::UpdateTime(const CBlockIndex* pindexPrev) |
926 | { | |
927 | nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime()); | |
928 | ||
929 | // Updating time can change work required on testnet: | |
930 | if (fTestNet) | |
931 | nBits = GetNextWorkRequired(pindexPrev, this); | |
932 | } | |
933 | ||
0a61b0df | 934 | |
935 | ||
936 | ||
937 | ||
938 | ||
939 | ||
940 | ||
941 | ||
942 | ||
943 | ||
944 | bool CTransaction::DisconnectInputs(CTxDB& txdb) | |
945 | { | |
946 | // Relinquish previous transactions' spent pointers | |
947 | if (!IsCoinBase()) | |
948 | { | |
223b6f1b | 949 | BOOST_FOREACH(const CTxIn& txin, vin) |
0a61b0df | 950 | { |
951 | COutPoint prevout = txin.prevout; | |
952 | ||
953 | // Get prev txindex from disk | |
954 | CTxIndex txindex; | |
955 | if (!txdb.ReadTxIndex(prevout.hash, txindex)) | |
956 | return error("DisconnectInputs() : ReadTxIndex failed"); | |
957 | ||
958 | if (prevout.n >= txindex.vSpent.size()) | |
959 | return error("DisconnectInputs() : prevout.n out of range"); | |
960 | ||
961 | // Mark outpoint as not spent | |
962 | txindex.vSpent[prevout.n].SetNull(); | |
963 | ||
964 | // Write back | |
b22c8842 | 965 | if (!txdb.UpdateTxIndex(prevout.hash, txindex)) |
966 | return error("DisconnectInputs() : UpdateTxIndex failed"); | |
0a61b0df | 967 | } |
968 | } | |
969 | ||
970 | // Remove transaction from index | |
a206b0ea PW |
971 | // This can fail if a duplicate of this transaction was in a chain that got |
972 | // reorganized away. This is only possible if this transaction was completely | |
973 | // spent, so erasing it would be a no-op anway. | |
974 | txdb.EraseTxIndex(*this); | |
0a61b0df | 975 | |
976 | return true; | |
977 | } | |
978 | ||
979 | ||
e679ec96 | 980 | bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool, |
149f580c | 981 | bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid) |
e679ec96 | 982 | { |
149f580c GA |
983 | // FetchInputs can return false either because we just haven't seen some inputs |
984 | // (in which case the transaction should be stored as an orphan) | |
985 | // or because the transaction is malformed (in which case the transaction should | |
986 | // be dropped). If tx is definitely invalid, fInvalid will be set to true. | |
987 | fInvalid = false; | |
988 | ||
e679ec96 GA |
989 | if (IsCoinBase()) |
990 | return true; // Coinbase transactions have no inputs to fetch. | |
9e470585 | 991 | |
c376ac35 | 992 | for (unsigned int i = 0; i < vin.size(); i++) |
e679ec96 GA |
993 | { |
994 | COutPoint prevout = vin[i].prevout; | |
995 | if (inputsRet.count(prevout.hash)) | |
996 | continue; // Got it already | |
997 | ||
998 | // Read txindex | |
999 | CTxIndex& txindex = inputsRet[prevout.hash].first; | |
1000 | bool fFound = true; | |
1001 | if ((fBlock || fMiner) && mapTestPool.count(prevout.hash)) | |
1002 | { | |
1003 | // Get txindex from current proposed changes | |
1004 | txindex = mapTestPool.find(prevout.hash)->second; | |
1005 | } | |
1006 | else | |
1007 | { | |
1008 | // Read txindex from txdb | |
1009 | fFound = txdb.ReadTxIndex(prevout.hash, txindex); | |
1010 | } | |
1011 | if (!fFound && (fBlock || fMiner)) | |
1012 | return fMiner ? false : error("FetchInputs() : %s prev tx %s index entry not found", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); | |
1013 | ||
1014 | // Read txPrev | |
1015 | CTransaction& txPrev = inputsRet[prevout.hash].second; | |
1016 | if (!fFound || txindex.pos == CDiskTxPos(1,1,1)) | |
1017 | { | |
1018 | // Get prev tx from single transactions in memory | |
e679ec96 | 1019 | { |
f8dcd5ca | 1020 | LOCK(cs_mapTransactions); |
e679ec96 GA |
1021 | if (!mapTransactions.count(prevout.hash)) |
1022 | return error("FetchInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); | |
1023 | txPrev = mapTransactions[prevout.hash]; | |
1024 | } | |
1025 | if (!fFound) | |
1026 | txindex.vSpent.resize(txPrev.vout.size()); | |
1027 | } | |
1028 | else | |
1029 | { | |
1030 | // Get prev tx from disk | |
1031 | if (!txPrev.ReadFromDisk(txindex.pos)) | |
1032 | return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(), prevout.hash.ToString().substr(0,10).c_str()); | |
1033 | } | |
61977f95 GA |
1034 | } |
1035 | ||
1036 | // Make sure all prevout.n's are valid: | |
c376ac35 | 1037 | for (unsigned int i = 0; i < vin.size(); i++) |
61977f95 GA |
1038 | { |
1039 | const COutPoint prevout = vin[i].prevout; | |
8d7849b6 | 1040 | assert(inputsRet.count(prevout.hash) != 0); |
61977f95 GA |
1041 | const CTxIndex& txindex = inputsRet[prevout.hash].first; |
1042 | const CTransaction& txPrev = inputsRet[prevout.hash].second; | |
6996a9d7 | 1043 | if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) |
149f580c GA |
1044 | { |
1045 | // Revisit this if/when transaction replacement is implemented and allows | |
1046 | // adding inputs: | |
1047 | fInvalid = true; | |
6996a9d7 | 1048 | return DoS(100, error("FetchInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str())); |
149f580c | 1049 | } |
e679ec96 | 1050 | } |
61977f95 | 1051 | |
e679ec96 GA |
1052 | return true; |
1053 | } | |
1054 | ||
8d7849b6 GA |
1055 | const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const |
1056 | { | |
1057 | MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash); | |
1058 | if (mi == inputs.end()) | |
1059 | throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found"); | |
1060 | ||
1061 | const CTransaction& txPrev = (mi->second).second; | |
1062 | if (input.prevout.n >= txPrev.vout.size()) | |
1063 | throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range"); | |
1064 | ||
1065 | return txPrev.vout[input.prevout.n]; | |
1066 | } | |
1067 | ||
1068 | int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const | |
1069 | { | |
1070 | if (IsCoinBase()) | |
1071 | return 0; | |
1072 | ||
1073 | int64 nResult = 0; | |
c376ac35 | 1074 | for (unsigned int i = 0; i < vin.size(); i++) |
8d7849b6 GA |
1075 | { |
1076 | nResult += GetOutputFor(vin[i], inputs).nValue; | |
1077 | } | |
1078 | return nResult; | |
1079 | ||
1080 | } | |
1081 | ||
137d0685 | 1082 | int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const |
8d7849b6 GA |
1083 | { |
1084 | if (IsCoinBase()) | |
1085 | return 0; | |
1086 | ||
1087 | int nSigOps = 0; | |
c376ac35 | 1088 | for (unsigned int i = 0; i < vin.size(); i++) |
8d7849b6 | 1089 | { |
137d0685 GA |
1090 | const CTxOut& prevout = GetOutputFor(vin[i], inputs); |
1091 | if (prevout.scriptPubKey.IsPayToScriptHash()) | |
1092 | nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig); | |
8d7849b6 GA |
1093 | } |
1094 | return nSigOps; | |
1095 | } | |
1096 | ||
1097 | bool CTransaction::ConnectInputs(MapPrevTx inputs, | |
922e8e29 | 1098 | map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx, |
137d0685 | 1099 | const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash) |
0a61b0df | 1100 | { |
1101 | // Take over previous transactions' spent pointers | |
b14bd4df GA |
1102 | // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain |
1103 | // fMiner is true when called from the internal bitcoin miner | |
1104 | // ... both are false when called from CTransaction::AcceptToMemoryPool | |
0a61b0df | 1105 | if (!IsCoinBase()) |
1106 | { | |
bde280b9 | 1107 | int64 nValueIn = 0; |
8d7849b6 | 1108 | int64 nFees = 0; |
c376ac35 | 1109 | for (unsigned int i = 0; i < vin.size(); i++) |
0a61b0df | 1110 | { |
1111 | COutPoint prevout = vin[i].prevout; | |
e679ec96 GA |
1112 | assert(inputs.count(prevout.hash) > 0); |
1113 | CTxIndex& txindex = inputs[prevout.hash].first; | |
1114 | CTransaction& txPrev = inputs[prevout.hash].second; | |
0a61b0df | 1115 | |
1116 | if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size()) | |
3e52aaf2 | 1117 | return DoS(100, error("ConnectInputs() : %s prevout.n out of range %d %d %d prev tx %s\n%s", GetHash().ToString().substr(0,10).c_str(), prevout.n, txPrev.vout.size(), txindex.vSpent.size(), prevout.hash.ToString().substr(0,10).c_str(), txPrev.ToString().c_str())); |
0a61b0df | 1118 | |
1119 | // If prev is coinbase, check that it's matured | |
1120 | if (txPrev.IsCoinBase()) | |
922e8e29 | 1121 | for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev) |
0a61b0df | 1122 | if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile) |
1123 | return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight); | |
1124 | ||
8d7849b6 GA |
1125 | // Check for conflicts (double-spend) |
1126 | // This doesn't trigger the DoS code on purpose; if it did, it would make it easier | |
1127 | // for an attacker to attempt to split the network. | |
1128 | if (!txindex.vSpent[prevout.n].IsNull()) | |
1129 | return fMiner ? false : error("ConnectInputs() : %s prev tx already used at %s", GetHash().ToString().substr(0,10).c_str(), txindex.vSpent[prevout.n].ToString().c_str()); | |
1130 | ||
1131 | // Check for negative or overflow input values | |
1132 | nValueIn += txPrev.vout[prevout.n].nValue; | |
1133 | if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) | |
1134 | return DoS(100, error("ConnectInputs() : txin values out of range")); | |
1135 | ||
fe358165 GA |
1136 | // Skip ECDSA signature verification when connecting blocks (fBlock=true) |
1137 | // before the last blockchain checkpoint. This is safe because block merkle hashes are | |
b14bd4df | 1138 | // still computed and checked, and any change will be caught at the next checkpoint. |
fe358165 | 1139 | if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate()))) |
2a45a494 | 1140 | { |
b14bd4df | 1141 | // Verify signature |
922e8e29 | 1142 | if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0)) |
db9f2e01 PW |
1143 | { |
1144 | // only during transition phase for P2SH: do not invoke anti-DoS code for | |
1145 | // potentially old clients relaying bad P2SH transactions | |
1146 | if (fStrictPayToScriptHash && VerifySignature(txPrev, *this, i, false, 0)) | |
1147 | return error("ConnectInputs() : %s P2SH VerifySignature failed", GetHash().ToString().substr(0,10).c_str()); | |
1148 | ||
b14bd4df | 1149 | return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str())); |
db9f2e01 | 1150 | } |
2a45a494 | 1151 | } |
0a61b0df | 1152 | |
0a61b0df | 1153 | // Mark outpoints as spent |
1154 | txindex.vSpent[prevout.n] = posThisTx; | |
1155 | ||
1156 | // Write back | |
e077cce6 | 1157 | if (fBlock || fMiner) |
b22c8842 | 1158 | { |
0a61b0df | 1159 | mapTestPool[prevout.hash] = txindex; |
b22c8842 | 1160 | } |
0a61b0df | 1161 | } |
1162 | ||
1163 | if (nValueIn < GetValueOut()) | |
3e52aaf2 | 1164 | return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str())); |
0a61b0df | 1165 | |
1166 | // Tally transaction fees | |
bde280b9 | 1167 | int64 nTxFee = nValueIn - GetValueOut(); |
0a61b0df | 1168 | if (nTxFee < 0) |
3e52aaf2 | 1169 | return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str())); |
0a61b0df | 1170 | nFees += nTxFee; |
f1e1fb4b | 1171 | if (!MoneyRange(nFees)) |
3e52aaf2 | 1172 | return DoS(100, error("ConnectInputs() : nFees out of range")); |
0a61b0df | 1173 | } |
1174 | ||
0a61b0df | 1175 | return true; |
1176 | } | |
1177 | ||
1178 | ||
1179 | bool CTransaction::ClientConnectInputs() | |
1180 | { | |
1181 | if (IsCoinBase()) | |
1182 | return false; | |
1183 | ||
1184 | // Take over previous transactions' spent pointers | |
0a61b0df | 1185 | { |
f8dcd5ca | 1186 | LOCK(cs_mapTransactions); |
bde280b9 | 1187 | int64 nValueIn = 0; |
c376ac35 | 1188 | for (unsigned int i = 0; i < vin.size(); i++) |
0a61b0df | 1189 | { |
1190 | // Get prev tx from single transactions in memory | |
1191 | COutPoint prevout = vin[i].prevout; | |
1192 | if (!mapTransactions.count(prevout.hash)) | |
1193 | return false; | |
1194 | CTransaction& txPrev = mapTransactions[prevout.hash]; | |
1195 | ||
1196 | if (prevout.n >= txPrev.vout.size()) | |
1197 | return false; | |
1198 | ||
1199 | // Verify signature | |
922e8e29 | 1200 | if (!VerifySignature(txPrev, *this, i, true, 0)) |
0a61b0df | 1201 | return error("ConnectInputs() : VerifySignature failed"); |
1202 | ||
1203 | ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of | |
1204 | ///// this has to go away now that posNext is gone | |
1205 | // // Check for conflicts | |
1206 | // if (!txPrev.vout[prevout.n].posNext.IsNull()) | |
1207 | // return error("ConnectInputs() : prev tx already used"); | |
1208 | // | |
1209 | // // Flag outpoints as used | |
1210 | // txPrev.vout[prevout.n].posNext = posThisTx; | |
1211 | ||
1212 | nValueIn += txPrev.vout[prevout.n].nValue; | |
f1e1fb4b | 1213 | |
1214 | if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn)) | |
1215 | return error("ClientConnectInputs() : txin values out of range"); | |
0a61b0df | 1216 | } |
1217 | if (GetValueOut() > nValueIn) | |
1218 | return false; | |
1219 | } | |
1220 | ||
1221 | return true; | |
1222 | } | |
1223 | ||
1224 | ||
1225 | ||
1226 | ||
1227 | bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex) | |
1228 | { | |
1229 | // Disconnect in reverse order | |
1230 | for (int i = vtx.size()-1; i >= 0; i--) | |
1231 | if (!vtx[i].DisconnectInputs(txdb)) | |
1232 | return false; | |
1233 | ||
1234 | // Update block index on disk without changing it in memory. | |
1235 | // The memory index structure will be changed after the db commits. | |
1236 | if (pindex->pprev) | |
1237 | { | |
1238 | CDiskBlockIndex blockindexPrev(pindex->pprev); | |
1239 | blockindexPrev.hashNext = 0; | |
b22c8842 | 1240 | if (!txdb.WriteBlockIndex(blockindexPrev)) |
1241 | return error("DisconnectBlock() : WriteBlockIndex failed"); | |
0a61b0df | 1242 | } |
1243 | ||
1244 | return true; | |
1245 | } | |
1246 | ||
1247 | bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex) | |
1248 | { | |
1249 | // Check it again in case a previous version let a bad block in | |
1250 | if (!CheckBlock()) | |
1251 | return false; | |
1252 | ||
a206b0ea PW |
1253 | // Do not allow blocks that contain transactions which 'overwrite' older transactions, |
1254 | // unless those are already completely spent. | |
1255 | // If such overwrites are allowed, coinbases and transactions depending upon those | |
1256 | // can be duplicated to remove the ability to spend the first instance -- even after | |
1257 | // being sent to another address. | |
1258 | // See BIP30 and http://r6.ca/blog/20120206T005236Z.html for more information. | |
1259 | // This logic is not necessary for memory pool transactions, as AcceptToMemoryPool | |
1260 | // already refuses previously-known transaction id's entirely. | |
1261 | // This rule applies to all blocks whose timestamp is after March 15, 2012, 0:00 UTC. | |
1262 | // On testnet it is enabled as of februari 20, 2012, 0:00 UTC. | |
1263 | if (pindex->nTime > 1331769600 || (fTestNet && pindex->nTime > 1329696000)) | |
da7bbd9d | 1264 | { |
a206b0ea PW |
1265 | BOOST_FOREACH(CTransaction& tx, vtx) |
1266 | { | |
1267 | CTxIndex txindexOld; | |
1268 | if (txdb.ReadTxIndex(tx.GetHash(), txindexOld)) | |
da7bbd9d | 1269 | { |
a206b0ea PW |
1270 | BOOST_FOREACH(CDiskTxPos &pos, txindexOld.vSpent) |
1271 | if (pos.IsNull()) | |
1272 | return false; | |
da7bbd9d | 1273 | } |
a206b0ea | 1274 | } |
da7bbd9d | 1275 | } |
a206b0ea | 1276 | |
8f188ece GA |
1277 | // BIP16 didn't become active until Apr 1 2012 (Feb 15 on testnet) |
1278 | int64 nBIP16SwitchTime = fTestNet ? 1329264000 : 1333238400; | |
1279 | bool fStrictPayToScriptHash = (pindex->nTime >= nBIP16SwitchTime); | |
137d0685 | 1280 | |
0a61b0df | 1281 | //// issue here: it doesn't know the version |
1282 | unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size()); | |
1283 | ||
e077cce6 | 1284 | map<uint256, CTxIndex> mapQueuedChanges; |
bde280b9 | 1285 | int64 nFees = 0; |
e679ec96 | 1286 | int nSigOps = 0; |
223b6f1b | 1287 | BOOST_FOREACH(CTransaction& tx, vtx) |
0a61b0df | 1288 | { |
137d0685 GA |
1289 | nSigOps += tx.GetLegacySigOpCount(); |
1290 | if (nSigOps > MAX_BLOCK_SIGOPS) | |
1291 | return DoS(100, error("ConnectBlock() : too many sigops")); | |
1292 | ||
0a61b0df | 1293 | CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos); |
1294 | nTxPos += ::GetSerializeSize(tx, SER_DISK); | |
1295 | ||
8d7849b6 GA |
1296 | MapPrevTx mapInputs; |
1297 | if (!tx.IsCoinBase()) | |
1298 | { | |
149f580c GA |
1299 | bool fInvalid; |
1300 | if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid)) | |
8d7849b6 | 1301 | return false; |
922e8e29 | 1302 | |
137d0685 GA |
1303 | if (fStrictPayToScriptHash) |
1304 | { | |
1305 | // Add in sigops done by pay-to-script-hash inputs; | |
1306 | // this is to prevent a "rogue miner" from creating | |
1307 | // an incredibly-expensive-to-validate block. | |
1308 | nSigOps += tx.GetP2SHSigOpCount(mapInputs); | |
1309 | if (nSigOps > MAX_BLOCK_SIGOPS) | |
1310 | return DoS(100, error("ConnectBlock() : too many sigops")); | |
1311 | } | |
922e8e29 | 1312 | |
8d7849b6 | 1313 | nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut(); |
40634605 | 1314 | |
137d0685 | 1315 | if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash)) |
40634605 | 1316 | return false; |
8d7849b6 GA |
1317 | } |
1318 | ||
40634605 | 1319 | mapQueuedChanges[tx.GetHash()] = CTxIndex(posThisTx, tx.vout.size()); |
0a61b0df | 1320 | } |
e679ec96 | 1321 | |
e077cce6 GA |
1322 | // Write queued txindex changes |
1323 | for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi) | |
1324 | { | |
1325 | if (!txdb.UpdateTxIndex((*mi).first, (*mi).second)) | |
1326 | return error("ConnectBlock() : UpdateTxIndex failed"); | |
1327 | } | |
0a61b0df | 1328 | |
1329 | if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees)) | |
1330 | return false; | |
1331 | ||
1332 | // Update block index on disk without changing it in memory. | |
1333 | // The memory index structure will be changed after the db commits. | |
1334 | if (pindex->pprev) | |
1335 | { | |
1336 | CDiskBlockIndex blockindexPrev(pindex->pprev); | |
1337 | blockindexPrev.hashNext = pindex->GetBlockHash(); | |
b22c8842 | 1338 | if (!txdb.WriteBlockIndex(blockindexPrev)) |
1339 | return error("ConnectBlock() : WriteBlockIndex failed"); | |
0a61b0df | 1340 | } |
1341 | ||
1342 | // Watch for transactions paying to me | |
223b6f1b | 1343 | BOOST_FOREACH(CTransaction& tx, vtx) |
64c7ee7e | 1344 | SyncWithWallets(tx, this, true); |
0a61b0df | 1345 | |
1346 | return true; | |
1347 | } | |
1348 | ||
64c7ee7e | 1349 | bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew) |
0a61b0df | 1350 | { |
1351 | printf("REORGANIZE\n"); | |
1352 | ||
1353 | // Find the fork | |
1354 | CBlockIndex* pfork = pindexBest; | |
1355 | CBlockIndex* plonger = pindexNew; | |
1356 | while (pfork != plonger) | |
1357 | { | |
1358 | while (plonger->nHeight > pfork->nHeight) | |
1359 | if (!(plonger = plonger->pprev)) | |
1360 | return error("Reorganize() : plonger->pprev is null"); | |
1361 | if (pfork == plonger) | |
1362 | break; | |
1363 | if (!(pfork = pfork->pprev)) | |
1364 | return error("Reorganize() : pfork->pprev is null"); | |
1365 | } | |
1366 | ||
1367 | // List of what to disconnect | |
1368 | vector<CBlockIndex*> vDisconnect; | |
1369 | for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev) | |
1370 | vDisconnect.push_back(pindex); | |
1371 | ||
1372 | // List of what to connect | |
1373 | vector<CBlockIndex*> vConnect; | |
1374 | for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev) | |
1375 | vConnect.push_back(pindex); | |
1376 | reverse(vConnect.begin(), vConnect.end()); | |
1377 | ||
a1a0469f PW |
1378 | printf("REORGANIZE: Disconnect %i blocks; %s..%s\n", vDisconnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexBest->GetBlockHash().ToString().substr(0,20).c_str()); |
1379 | printf("REORGANIZE: Connect %i blocks; %s..%s\n", vConnect.size(), pfork->GetBlockHash().ToString().substr(0,20).c_str(), pindexNew->GetBlockHash().ToString().substr(0,20).c_str()); | |
1380 | ||
0a61b0df | 1381 | // Disconnect shorter branch |
1382 | vector<CTransaction> vResurrect; | |
223b6f1b | 1383 | BOOST_FOREACH(CBlockIndex* pindex, vDisconnect) |
0a61b0df | 1384 | { |
1385 | CBlock block; | |
1386 | if (!block.ReadFromDisk(pindex)) | |
1387 | return error("Reorganize() : ReadFromDisk for disconnect failed"); | |
1388 | if (!block.DisconnectBlock(txdb, pindex)) | |
a1a0469f | 1389 | return error("Reorganize() : DisconnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str()); |
0a61b0df | 1390 | |
1391 | // Queue memory transactions to resurrect | |
223b6f1b | 1392 | BOOST_FOREACH(const CTransaction& tx, block.vtx) |
0a61b0df | 1393 | if (!tx.IsCoinBase()) |
1394 | vResurrect.push_back(tx); | |
1395 | } | |
1396 | ||
1397 | // Connect longer branch | |
1398 | vector<CTransaction> vDelete; | |
c376ac35 | 1399 | for (unsigned int i = 0; i < vConnect.size(); i++) |
0a61b0df | 1400 | { |
1401 | CBlockIndex* pindex = vConnect[i]; | |
1402 | CBlock block; | |
1403 | if (!block.ReadFromDisk(pindex)) | |
1404 | return error("Reorganize() : ReadFromDisk for connect failed"); | |
1405 | if (!block.ConnectBlock(txdb, pindex)) | |
1406 | { | |
1407 | // Invalid block | |
1408 | txdb.TxnAbort(); | |
a1a0469f | 1409 | return error("Reorganize() : ConnectBlock %s failed", pindex->GetBlockHash().ToString().substr(0,20).c_str()); |
0a61b0df | 1410 | } |
1411 | ||
1412 | // Queue memory transactions to delete | |
223b6f1b | 1413 | BOOST_FOREACH(const CTransaction& tx, block.vtx) |
0a61b0df | 1414 | vDelete.push_back(tx); |
1415 | } | |
1416 | if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash())) | |
1417 | return error("Reorganize() : WriteHashBestChain failed"); | |
1418 | ||
b22c8842 | 1419 | // Make sure it's successfully written to disk before changing memory structure |
1420 | if (!txdb.TxnCommit()) | |
1421 | return error("Reorganize() : TxnCommit failed"); | |
0a61b0df | 1422 | |
1423 | // Disconnect shorter branch | |
223b6f1b | 1424 | BOOST_FOREACH(CBlockIndex* pindex, vDisconnect) |
0a61b0df | 1425 | if (pindex->pprev) |
1426 | pindex->pprev->pnext = NULL; | |
1427 | ||
1428 | // Connect longer branch | |
223b6f1b | 1429 | BOOST_FOREACH(CBlockIndex* pindex, vConnect) |
0a61b0df | 1430 | if (pindex->pprev) |
1431 | pindex->pprev->pnext = pindex; | |
1432 | ||
1433 | // Resurrect memory transactions that were in the disconnected branch | |
223b6f1b | 1434 | BOOST_FOREACH(CTransaction& tx, vResurrect) |
f1e1fb4b | 1435 | tx.AcceptToMemoryPool(txdb, false); |
0a61b0df | 1436 | |
1437 | // Delete redundant memory transactions that are in the connected branch | |
223b6f1b | 1438 | BOOST_FOREACH(CTransaction& tx, vDelete) |
0a61b0df | 1439 | tx.RemoveFromMemoryPool(); |
1440 | ||
a1a0469f | 1441 | printf("REORGANIZE: done\n"); |
ceaa13ef | 1442 | |
0a61b0df | 1443 | return true; |
1444 | } | |
1445 | ||
1446 | ||
d237f62c GA |
1447 | static void |
1448 | runCommand(std::string strCommand) | |
1449 | { | |
1450 | int nErr = ::system(strCommand.c_str()); | |
1451 | if (nErr) | |
1452 | printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr); | |
1453 | } | |
1454 | ||
9aa459b2 | 1455 | // Called from inside SetBestChain: attaches a block to the new best chain being built |
d68dcf74 PW |
1456 | bool CBlock::SetBestChainInner(CTxDB& txdb, CBlockIndex *pindexNew) |
1457 | { | |
d68dcf74 PW |
1458 | uint256 hash = GetHash(); |
1459 | ||
1460 | // Adding to current best branch | |
1461 | if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash)) | |
1462 | { | |
1463 | txdb.TxnAbort(); | |
1464 | InvalidChainFound(pindexNew); | |
1465 | return false; | |
1466 | } | |
1467 | if (!txdb.TxnCommit()) | |
1468 | return error("SetBestChain() : TxnCommit failed"); | |
1469 | ||
1470 | // Add to current best branch | |
1471 | pindexNew->pprev->pnext = pindexNew; | |
1472 | ||
1473 | // Delete redundant memory transactions | |
1474 | BOOST_FOREACH(CTransaction& tx, vtx) | |
1475 | tx.RemoveFromMemoryPool(); | |
1476 | ||
1477 | return true; | |
1478 | } | |
1479 | ||
0a61b0df | 1480 | bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew) |
1481 | { | |
1482 | uint256 hash = GetHash(); | |
1483 | ||
1484 | txdb.TxnBegin(); | |
1485 | if (pindexGenesisBlock == NULL && hash == hashGenesisBlock) | |
1486 | { | |
0a61b0df | 1487 | txdb.WriteHashBestChain(hash); |
b22c8842 | 1488 | if (!txdb.TxnCommit()) |
1489 | return error("SetBestChain() : TxnCommit failed"); | |
1490 | pindexGenesisBlock = pindexNew; | |
0a61b0df | 1491 | } |
1492 | else if (hashPrevBlock == hashBestChain) | |
1493 | { | |
d68dcf74 PW |
1494 | if (!SetBestChainInner(txdb, pindexNew)) |
1495 | return error("SetBestChain() : SetBestChainInner failed"); | |
1496 | } | |
1497 | else | |
1498 | { | |
1499 | // the first block in the new chain that will cause it to become the new best chain | |
1500 | CBlockIndex *pindexIntermediate = pindexNew; | |
1501 | ||
1502 | // list of blocks that need to be connected afterwards | |
1503 | std::vector<CBlockIndex*> vpindexSecondary; | |
1504 | ||
1505 | // Reorganize is costly in terms of db load, as it works in a single db transaction. | |
1506 | // Try to limit how much needs to be done inside | |
1507 | while (pindexIntermediate->pprev && pindexIntermediate->pprev->bnChainWork > pindexBest->bnChainWork) | |
0a61b0df | 1508 | { |
d68dcf74 PW |
1509 | vpindexSecondary.push_back(pindexIntermediate); |
1510 | pindexIntermediate = pindexIntermediate->pprev; | |
0a61b0df | 1511 | } |
b22c8842 | 1512 | |
d68dcf74 PW |
1513 | if (!vpindexSecondary.empty()) |
1514 | printf("Postponing %i reconnects\n", vpindexSecondary.size()); | |
0a61b0df | 1515 | |
d68dcf74 PW |
1516 | // Switch to new best branch |
1517 | if (!Reorganize(txdb, pindexIntermediate)) | |
0a61b0df | 1518 | { |
1519 | txdb.TxnAbort(); | |
1520 | InvalidChainFound(pindexNew); | |
1521 | return error("SetBestChain() : Reorganize failed"); | |
1522 | } | |
d68dcf74 PW |
1523 | |
1524 | // Connect futher blocks | |
1525 | BOOST_REVERSE_FOREACH(CBlockIndex *pindex, vpindexSecondary) | |
1526 | { | |
1527 | CBlock block; | |
1528 | if (!block.ReadFromDisk(pindex)) | |
1529 | { | |
1530 | printf("SetBestChain() : ReadFromDisk failed\n"); | |
1531 | break; | |
1532 | } | |
1533 | txdb.TxnBegin(); | |
1534 | // errors now are not fatal, we still did a reorganisation to a new chain in a valid way | |
1535 | if (!block.SetBestChainInner(txdb, pindex)) | |
1536 | break; | |
1537 | } | |
0a61b0df | 1538 | } |
0a61b0df | 1539 | |
6a76c60e | 1540 | // Update best block in wallet (so we can detect restored wallets) |
d237f62c GA |
1541 | bool fIsInitialDownload = IsInitialBlockDownload(); |
1542 | if (!fIsInitialDownload) | |
6a76c60e | 1543 | { |
6a76c60e | 1544 | const CBlockLocator locator(pindexNew); |
64c7ee7e | 1545 | ::SetBestChain(locator); |
6a76c60e PW |
1546 | } |
1547 | ||
0a61b0df | 1548 | // New best block |
1549 | hashBestChain = hash; | |
1550 | pindexBest = pindexNew; | |
1551 | nBestHeight = pindexBest->nHeight; | |
1552 | bnBestChainWork = pindexNew->bnChainWork; | |
1553 | nTimeBestReceived = GetTime(); | |
1554 | nTransactionsUpdated++; | |
1555 | printf("SetBestChain: new best=%s height=%d work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str()); | |
1556 | ||
d237f62c GA |
1557 | std::string strCmd = GetArg("-blocknotify", ""); |
1558 | ||
1559 | if (!fIsInitialDownload && !strCmd.empty()) | |
1560 | { | |
1561 | boost::replace_all(strCmd, "%s", hashBestChain.GetHex()); | |
1562 | boost::thread t(runCommand, strCmd); // thread runs free | |
1563 | } | |
1564 | ||
0a61b0df | 1565 | return true; |
1566 | } | |
1567 | ||
1568 | ||
1569 | bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos) | |
1570 | { | |
1571 | // Check for duplicate | |
1572 | uint256 hash = GetHash(); | |
1573 | if (mapBlockIndex.count(hash)) | |
1574 | return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str()); | |
1575 | ||
1576 | // Construct new block index object | |
1577 | CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this); | |
1578 | if (!pindexNew) | |
1579 | return error("AddToBlockIndex() : new CBlockIndex failed"); | |
1580 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first; | |
1581 | pindexNew->phashBlock = &((*mi).first); | |
1582 | map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock); | |
1583 | if (miPrev != mapBlockIndex.end()) | |
1584 | { | |
1585 | pindexNew->pprev = (*miPrev).second; | |
1586 | pindexNew->nHeight = pindexNew->pprev->nHeight + 1; | |
1587 | } | |
1588 | pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork(); | |
1589 | ||
1590 | CTxDB txdb; | |
f03304a9 | 1591 | txdb.TxnBegin(); |
0a61b0df | 1592 | txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew)); |
f03304a9 | 1593 | if (!txdb.TxnCommit()) |
1594 | return false; | |
0a61b0df | 1595 | |
1596 | // New best | |
1597 | if (pindexNew->bnChainWork > bnBestChainWork) | |
1598 | if (!SetBestChain(txdb, pindexNew)) | |
1599 | return false; | |
1600 | ||
1601 | txdb.Close(); | |
1602 | ||
1603 | if (pindexNew == pindexBest) | |
1604 | { | |
1605 | // Notify UI to display prev block's coinbase if it was ours | |
1606 | static uint256 hashPrevBestCoinBase; | |
64c7ee7e | 1607 | UpdatedTransaction(hashPrevBestCoinBase); |
0a61b0df | 1608 | hashPrevBestCoinBase = vtx[0].GetHash(); |
1609 | } | |
1610 | ||
1611 | MainFrameRepaint(); | |
1612 | return true; | |
1613 | } | |
1614 | ||
1615 | ||
1616 | ||
1617 | ||
1618 | bool CBlock::CheckBlock() const | |
1619 | { | |
1620 | // These are checks that are independent of context | |
1621 | // that can be verified before saving an orphan block. | |
1622 | ||
1623 | // Size limits | |
172f0060 | 1624 | if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE) |
3e52aaf2 | 1625 | return DoS(100, error("CheckBlock() : size limits failed")); |
0a61b0df | 1626 | |
172f0060 | 1627 | // Check proof of work matches claimed amount |
1628 | if (!CheckProofOfWork(GetHash(), nBits)) | |
3e52aaf2 | 1629 | return DoS(50, error("CheckBlock() : proof of work failed")); |
172f0060 | 1630 | |
0a61b0df | 1631 | // Check timestamp |
1632 | if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60) | |
1633 | return error("CheckBlock() : block timestamp too far in the future"); | |
1634 | ||
1635 | // First transaction must be coinbase, the rest must not be | |
1636 | if (vtx.empty() || !vtx[0].IsCoinBase()) | |
3e52aaf2 | 1637 | return DoS(100, error("CheckBlock() : first tx is not coinbase")); |
c376ac35 | 1638 | for (unsigned int i = 1; i < vtx.size(); i++) |
0a61b0df | 1639 | if (vtx[i].IsCoinBase()) |
3e52aaf2 | 1640 | return DoS(100, error("CheckBlock() : more than one coinbase")); |
0a61b0df | 1641 | |
1642 | // Check transactions | |
223b6f1b | 1643 | BOOST_FOREACH(const CTransaction& tx, vtx) |
0a61b0df | 1644 | if (!tx.CheckTransaction()) |
3e52aaf2 | 1645 | return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed")); |
0a61b0df | 1646 | |
e679ec96 GA |
1647 | int nSigOps = 0; |
1648 | BOOST_FOREACH(const CTransaction& tx, vtx) | |
1649 | { | |
922e8e29 | 1650 | nSigOps += tx.GetLegacySigOpCount(); |
e679ec96 GA |
1651 | } |
1652 | if (nSigOps > MAX_BLOCK_SIGOPS) | |
3e52aaf2 | 1653 | return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount")); |
0a61b0df | 1654 | |
1655 | // Check merkleroot | |
1656 | if (hashMerkleRoot != BuildMerkleTree()) | |
3e52aaf2 | 1657 | return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch")); |
0a61b0df | 1658 | |
1659 | return true; | |
1660 | } | |
1661 | ||
1662 | bool CBlock::AcceptBlock() | |
1663 | { | |
1664 | // Check for duplicate | |
1665 | uint256 hash = GetHash(); | |
1666 | if (mapBlockIndex.count(hash)) | |
1667 | return error("AcceptBlock() : block already in mapBlockIndex"); | |
1668 | ||
1669 | // Get prev block index | |
1670 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock); | |
1671 | if (mi == mapBlockIndex.end()) | |
3e52aaf2 | 1672 | return DoS(10, error("AcceptBlock() : prev block not found")); |
0a61b0df | 1673 | CBlockIndex* pindexPrev = (*mi).second; |
f1e1fb4b | 1674 | int nHeight = pindexPrev->nHeight+1; |
1675 | ||
172f0060 | 1676 | // Check proof of work |
c52296a7 | 1677 | if (nBits != GetNextWorkRequired(pindexPrev, this)) |
3e52aaf2 | 1678 | return DoS(100, error("AcceptBlock() : incorrect proof of work")); |
0a61b0df | 1679 | |
1680 | // Check timestamp against prev | |
1681 | if (GetBlockTime() <= pindexPrev->GetMedianTimePast()) | |
1682 | return error("AcceptBlock() : block's timestamp is too early"); | |
1683 | ||
1684 | // Check that all transactions are finalized | |
223b6f1b | 1685 | BOOST_FOREACH(const CTransaction& tx, vtx) |
f1e1fb4b | 1686 | if (!tx.IsFinal(nHeight, GetBlockTime())) |
3e52aaf2 | 1687 | return DoS(10, error("AcceptBlock() : contains a non-final transaction")); |
0a61b0df | 1688 | |
0a61b0df | 1689 | // Check that the block chain matches the known block chain up to a checkpoint |
eb5fff9e GA |
1690 | if (!Checkpoints::CheckBlock(nHeight, hash)) |
1691 | return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight)); | |
0a61b0df | 1692 | |
0a61b0df | 1693 | // Write block to history file |
1694 | if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK))) | |
1695 | return error("AcceptBlock() : out of disk space"); | |
f03304a9 | 1696 | unsigned int nFile = -1; |
1697 | unsigned int nBlockPos = 0; | |
1698 | if (!WriteToDisk(nFile, nBlockPos)) | |
0a61b0df | 1699 | return error("AcceptBlock() : WriteToDisk failed"); |
1700 | if (!AddToBlockIndex(nFile, nBlockPos)) | |
1701 | return error("AcceptBlock() : AddToBlockIndex failed"); | |
1702 | ||
1703 | // Relay inventory, but don't relay old inventory during initial block download | |
eae82d8e | 1704 | int nBlockEstimate = Checkpoints::GetTotalBlocksEstimate(); |
0a61b0df | 1705 | if (hashBestChain == hash) |
f8dcd5ca PW |
1706 | { |
1707 | LOCK(cs_vNodes); | |
1708 | BOOST_FOREACH(CNode* pnode, vNodes) | |
1709 | if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : nBlockEstimate)) | |
1710 | pnode->PushInventory(CInv(MSG_BLOCK, hash)); | |
1711 | } | |
0a61b0df | 1712 | |
1713 | return true; | |
1714 | } | |
1715 | ||
074d584a | 1716 | bool ProcessBlock(CNode* pfrom, CBlock* pblock) |
0a61b0df | 1717 | { |
1718 | // Check for duplicate | |
1719 | uint256 hash = pblock->GetHash(); | |
1720 | if (mapBlockIndex.count(hash)) | |
1721 | return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str()); | |
1722 | if (mapOrphanBlocks.count(hash)) | |
1723 | return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str()); | |
1724 | ||
1725 | // Preliminary checks | |
1726 | if (!pblock->CheckBlock()) | |
0a61b0df | 1727 | return error("ProcessBlock() : CheckBlock FAILED"); |
0a61b0df | 1728 | |
10fd7f66 GA |
1729 | CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex); |
1730 | if (pcheckpoint && pblock->hashPrevBlock != hashBestChain) | |
1731 | { | |
1732 | // Extra checks to prevent "fill up memory by spamming with bogus blocks" | |
bde280b9 | 1733 | int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime; |
10fd7f66 GA |
1734 | if (deltaTime < 0) |
1735 | { | |
73aa0421 PW |
1736 | if (pfrom) |
1737 | pfrom->Misbehaving(100); | |
10fd7f66 GA |
1738 | return error("ProcessBlock() : block with timestamp before last checkpoint"); |
1739 | } | |
1740 | CBigNum bnNewBlock; | |
1741 | bnNewBlock.SetCompact(pblock->nBits); | |
1742 | CBigNum bnRequired; | |
1743 | bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime)); | |
1744 | if (bnNewBlock > bnRequired) | |
1745 | { | |
73aa0421 PW |
1746 | if (pfrom) |
1747 | pfrom->Misbehaving(100); | |
10fd7f66 GA |
1748 | return error("ProcessBlock() : block with too little proof-of-work"); |
1749 | } | |
1750 | } | |
1751 | ||
1752 | ||
0a61b0df | 1753 | // If don't already have its previous block, shunt it off to holding area until we get it |
1754 | if (!mapBlockIndex.count(pblock->hashPrevBlock)) | |
1755 | { | |
1756 | printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str()); | |
776d0f34 | 1757 | CBlock* pblock2 = new CBlock(*pblock); |
1758 | mapOrphanBlocks.insert(make_pair(hash, pblock2)); | |
1759 | mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2)); | |
0a61b0df | 1760 | |
1761 | // Ask this guy to fill in what we're missing | |
1762 | if (pfrom) | |
776d0f34 | 1763 | pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2)); |
0a61b0df | 1764 | return true; |
1765 | } | |
1766 | ||
1767 | // Store to disk | |
1768 | if (!pblock->AcceptBlock()) | |
0a61b0df | 1769 | return error("ProcessBlock() : AcceptBlock FAILED"); |
0a61b0df | 1770 | |
1771 | // Recursively process any orphan blocks that depended on this one | |
1772 | vector<uint256> vWorkQueue; | |
1773 | vWorkQueue.push_back(hash); | |
c376ac35 | 1774 | for (unsigned int i = 0; i < vWorkQueue.size(); i++) |
0a61b0df | 1775 | { |
1776 | uint256 hashPrev = vWorkQueue[i]; | |
1777 | for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev); | |
1778 | mi != mapOrphanBlocksByPrev.upper_bound(hashPrev); | |
1779 | ++mi) | |
1780 | { | |
1781 | CBlock* pblockOrphan = (*mi).second; | |
1782 | if (pblockOrphan->AcceptBlock()) | |
1783 | vWorkQueue.push_back(pblockOrphan->GetHash()); | |
1784 | mapOrphanBlocks.erase(pblockOrphan->GetHash()); | |
1785 | delete pblockOrphan; | |
1786 | } | |
1787 | mapOrphanBlocksByPrev.erase(hashPrev); | |
1788 | } | |
1789 | ||
1790 | printf("ProcessBlock: ACCEPTED\n"); | |
1791 | return true; | |
1792 | } | |
1793 | ||
1794 | ||
1795 | ||
1796 | ||
1797 | ||
1798 | ||
1799 | ||
1800 | ||
bde280b9 | 1801 | bool CheckDiskSpace(uint64 nAdditionalBytes) |
0a61b0df | 1802 | { |
bde280b9 | 1803 | uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available; |
0a61b0df | 1804 | |
1805 | // Check for 15MB because database could create another 10MB log file at any time | |
bde280b9 | 1806 | if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes) |
0a61b0df | 1807 | { |
1808 | fShutdown = true; | |
1809 | string strMessage = _("Warning: Disk space is low "); | |
1810 | strMiscWarning = strMessage; | |
1811 | printf("*** %s\n", strMessage.c_str()); | |
7cfbe1fe | 1812 | ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION | wxMODAL); |
1a3f0da9 | 1813 | QueueShutdown(); |
0a61b0df | 1814 | return false; |
1815 | } | |
1816 | return true; | |
1817 | } | |
1818 | ||
1819 | FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode) | |
1820 | { | |
1821 | if (nFile == -1) | |
1822 | return NULL; | |
ee12c3d6 | 1823 | FILE* file = fopen((GetDataDir() / strprintf("blk%04d.dat", nFile)).string().c_str(), pszMode); |
0a61b0df | 1824 | if (!file) |
1825 | return NULL; | |
1826 | if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w')) | |
1827 | { | |
1828 | if (fseek(file, nBlockPos, SEEK_SET) != 0) | |
1829 | { | |
1830 | fclose(file); | |
1831 | return NULL; | |
1832 | } | |
1833 | } | |
1834 | return file; | |
1835 | } | |
1836 | ||
1837 | static unsigned int nCurrentBlockFile = 1; | |
1838 | ||
1839 | FILE* AppendBlockFile(unsigned int& nFileRet) | |
1840 | { | |
1841 | nFileRet = 0; | |
1842 | loop | |
1843 | { | |
1844 | FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab"); | |
1845 | if (!file) | |
1846 | return NULL; | |
1847 | if (fseek(file, 0, SEEK_END) != 0) | |
1848 | return NULL; | |
1849 | // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB | |
1850 | if (ftell(file) < 0x7F000000 - MAX_SIZE) | |
1851 | { | |
1852 | nFileRet = nCurrentBlockFile; | |
1853 | return file; | |
1854 | } | |
1855 | fclose(file); | |
1856 | nCurrentBlockFile++; | |
1857 | } | |
1858 | } | |
1859 | ||
1860 | bool LoadBlockIndex(bool fAllowNew) | |
1861 | { | |
5cbf7532 | 1862 | if (fTestNet) |
1863 | { | |
98ba262a | 1864 | hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008"); |
5cbf7532 | 1865 | bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28); |
1866 | pchMessageStart[0] = 0xfa; | |
1867 | pchMessageStart[1] = 0xbf; | |
1868 | pchMessageStart[2] = 0xb5; | |
1869 | pchMessageStart[3] = 0xda; | |
1870 | } | |
1871 | ||
0a61b0df | 1872 | // |
1873 | // Load block index | |
1874 | // | |
1875 | CTxDB txdb("cr"); | |
1876 | if (!txdb.LoadBlockIndex()) | |
1877 | return false; | |
1878 | txdb.Close(); | |
1879 | ||
1880 | // | |
1881 | // Init with genesis block | |
1882 | // | |
1883 | if (mapBlockIndex.empty()) | |
1884 | { | |
1885 | if (!fAllowNew) | |
1886 | return false; | |
1887 | ||
1888 | // Genesis Block: | |
1889 | // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1) | |
1890 | // CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0) | |
1891 | // CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73) | |
1892 | // CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B) | |
1893 | // vMerkleTree: 4a5e1e | |
1894 | ||
1895 | // Genesis block | |
1896 | const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks"; | |
1897 | CTransaction txNew; | |
1898 | txNew.vin.resize(1); | |
1899 | txNew.vout.resize(1); | |
1900 | txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp)); | |
1901 | txNew.vout[0].nValue = 50 * COIN; | |
1902 | txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG; | |
1903 | CBlock block; | |
1904 | block.vtx.push_back(txNew); | |
1905 | block.hashPrevBlock = 0; | |
1906 | block.hashMerkleRoot = block.BuildMerkleTree(); | |
1907 | block.nVersion = 1; | |
1908 | block.nTime = 1231006505; | |
1909 | block.nBits = 0x1d00ffff; | |
1910 | block.nNonce = 2083236893; | |
1911 | ||
5cbf7532 | 1912 | if (fTestNet) |
1913 | { | |
98ba262a | 1914 | block.nTime = 1296688602; |
5cbf7532 | 1915 | block.nBits = 0x1d07fff8; |
98ba262a | 1916 | block.nNonce = 384568319; |
5cbf7532 | 1917 | } |
0a61b0df | 1918 | |
5cbf7532 | 1919 | //// debug print |
1920 | printf("%s\n", block.GetHash().ToString().c_str()); | |
1921 | printf("%s\n", hashGenesisBlock.ToString().c_str()); | |
1922 | printf("%s\n", block.hashMerkleRoot.ToString().c_str()); | |
1923 | assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b")); | |
1924 | block.print(); | |
0a61b0df | 1925 | assert(block.GetHash() == hashGenesisBlock); |
1926 | ||
1927 | // Start new block file | |
1928 | unsigned int nFile; | |
1929 | unsigned int nBlockPos; | |
f03304a9 | 1930 | if (!block.WriteToDisk(nFile, nBlockPos)) |
0a61b0df | 1931 | return error("LoadBlockIndex() : writing genesis block to disk failed"); |
1932 | if (!block.AddToBlockIndex(nFile, nBlockPos)) | |
1933 | return error("LoadBlockIndex() : genesis block not accepted"); | |
1934 | } | |
1935 | ||
1936 | return true; | |
1937 | } | |
1938 | ||
1939 | ||
1940 | ||
1941 | void PrintBlockTree() | |
1942 | { | |
1943 | // precompute tree structure | |
1944 | map<CBlockIndex*, vector<CBlockIndex*> > mapNext; | |
1945 | for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi) | |
1946 | { | |
1947 | CBlockIndex* pindex = (*mi).second; | |
1948 | mapNext[pindex->pprev].push_back(pindex); | |
1949 | // test | |
1950 | //while (rand() % 3 == 0) | |
1951 | // mapNext[pindex->pprev].push_back(pindex); | |
1952 | } | |
1953 | ||
1954 | vector<pair<int, CBlockIndex*> > vStack; | |
1955 | vStack.push_back(make_pair(0, pindexGenesisBlock)); | |
1956 | ||
1957 | int nPrevCol = 0; | |
1958 | while (!vStack.empty()) | |
1959 | { | |
1960 | int nCol = vStack.back().first; | |
1961 | CBlockIndex* pindex = vStack.back().second; | |
1962 | vStack.pop_back(); | |
1963 | ||
1964 | // print split or gap | |
1965 | if (nCol > nPrevCol) | |
1966 | { | |
1967 | for (int i = 0; i < nCol-1; i++) | |
1968 | printf("| "); | |
1969 | printf("|\\\n"); | |
1970 | } | |
1971 | else if (nCol < nPrevCol) | |
1972 | { | |
1973 | for (int i = 0; i < nCol; i++) | |
1974 | printf("| "); | |
1975 | printf("|\n"); | |
64c7ee7e | 1976 | } |
0a61b0df | 1977 | nPrevCol = nCol; |
1978 | ||
1979 | // print columns | |
1980 | for (int i = 0; i < nCol; i++) | |
1981 | printf("| "); | |
1982 | ||
1983 | // print item | |
1984 | CBlock block; | |
1985 | block.ReadFromDisk(pindex); | |
1986 | printf("%d (%u,%u) %s %s tx %d", | |
1987 | pindex->nHeight, | |
1988 | pindex->nFile, | |
1989 | pindex->nBlockPos, | |
1990 | block.GetHash().ToString().substr(0,20).c_str(), | |
1991 | DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(), | |
1992 | block.vtx.size()); | |
1993 | ||
64c7ee7e | 1994 | PrintWallets(block); |
0a61b0df | 1995 | |
1996 | // put the main timechain first | |
1997 | vector<CBlockIndex*>& vNext = mapNext[pindex]; | |
c376ac35 | 1998 | for (unsigned int i = 0; i < vNext.size(); i++) |
0a61b0df | 1999 | { |
2000 | if (vNext[i]->pnext) | |
2001 | { | |
2002 | swap(vNext[0], vNext[i]); | |
2003 | break; | |
2004 | } | |
2005 | } | |
2006 | ||
2007 | // iterate children | |
c376ac35 | 2008 | for (unsigned int i = 0; i < vNext.size(); i++) |
0a61b0df | 2009 | vStack.push_back(make_pair(nCol+i, vNext[i])); |
2010 | } | |
2011 | } | |
2012 | ||
2013 | ||
2014 | ||
2015 | ||
2016 | ||
2017 | ||
2018 | ||
2019 | ||
2020 | ||
2021 | ||
2022 | ////////////////////////////////////////////////////////////////////////////// | |
2023 | // | |
2024 | // CAlert | |
2025 | // | |
2026 | ||
2027 | map<uint256, CAlert> mapAlerts; | |
2028 | CCriticalSection cs_mapAlerts; | |
2029 | ||
2030 | string GetWarnings(string strFor) | |
2031 | { | |
2032 | int nPriority = 0; | |
2033 | string strStatusBar; | |
2034 | string strRPC; | |
bdde31d7 | 2035 | if (GetBoolArg("-testsafemode")) |
0a61b0df | 2036 | strRPC = "test"; |
2037 | ||
2038 | // Misc warnings like out of disk space and clock is wrong | |
2039 | if (strMiscWarning != "") | |
2040 | { | |
2041 | nPriority = 1000; | |
2042 | strStatusBar = strMiscWarning; | |
2043 | } | |
2044 | ||
2045 | // Longer invalid proof-of-work chain | |
2046 | if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6) | |
2047 | { | |
2048 | nPriority = 2000; | |
2049 | strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct! You may need to upgrade, or other nodes may need to upgrade."; | |
2050 | } | |
2051 | ||
2052 | // Alerts | |
0a61b0df | 2053 | { |
f8dcd5ca | 2054 | LOCK(cs_mapAlerts); |
223b6f1b | 2055 | BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) |
0a61b0df | 2056 | { |
2057 | const CAlert& alert = item.second; | |
2058 | if (alert.AppliesToMe() && alert.nPriority > nPriority) | |
2059 | { | |
2060 | nPriority = alert.nPriority; | |
2061 | strStatusBar = alert.strStatusBar; | |
0a61b0df | 2062 | } |
2063 | } | |
2064 | } | |
2065 | ||
2066 | if (strFor == "statusbar") | |
2067 | return strStatusBar; | |
2068 | else if (strFor == "rpc") | |
2069 | return strRPC; | |
ecf1c79a | 2070 | assert(!"GetWarnings() : invalid parameter"); |
0a61b0df | 2071 | return "error"; |
2072 | } | |
2073 | ||
2074 | bool CAlert::ProcessAlert() | |
2075 | { | |
2076 | if (!CheckSignature()) | |
2077 | return false; | |
2078 | if (!IsInEffect()) | |
2079 | return false; | |
2080 | ||
0a61b0df | 2081 | { |
f8dcd5ca | 2082 | LOCK(cs_mapAlerts); |
0a61b0df | 2083 | // Cancel previous alerts |
2084 | for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();) | |
2085 | { | |
2086 | const CAlert& alert = (*mi).second; | |
2087 | if (Cancels(alert)) | |
2088 | { | |
2089 | printf("cancelling alert %d\n", alert.nID); | |
2090 | mapAlerts.erase(mi++); | |
2091 | } | |
2092 | else if (!alert.IsInEffect()) | |
2093 | { | |
2094 | printf("expiring alert %d\n", alert.nID); | |
2095 | mapAlerts.erase(mi++); | |
2096 | } | |
2097 | else | |
2098 | mi++; | |
2099 | } | |
2100 | ||
2101 | // Check if this alert has been cancelled | |
223b6f1b | 2102 | BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) |
0a61b0df | 2103 | { |
2104 | const CAlert& alert = item.second; | |
2105 | if (alert.Cancels(*this)) | |
2106 | { | |
2107 | printf("alert already cancelled by %d\n", alert.nID); | |
2108 | return false; | |
2109 | } | |
2110 | } | |
2111 | ||
2112 | // Add to mapAlerts | |
2113 | mapAlerts.insert(make_pair(GetHash(), *this)); | |
2114 | } | |
2115 | ||
2116 | printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe()); | |
2117 | MainFrameRepaint(); | |
2118 | return true; | |
2119 | } | |
2120 | ||
2121 | ||
2122 | ||
2123 | ||
2124 | ||
2125 | ||
2126 | ||
2127 | ||
2128 | ////////////////////////////////////////////////////////////////////////////// | |
2129 | // | |
2130 | // Messages | |
2131 | // | |
2132 | ||
2133 | ||
64c7ee7e | 2134 | bool static AlreadyHave(CTxDB& txdb, const CInv& inv) |
0a61b0df | 2135 | { |
2136 | switch (inv.type) | |
2137 | { | |
8deb9822 JG |
2138 | case MSG_TX: |
2139 | { | |
ce8c9349 JG |
2140 | bool txInMap = false; |
2141 | { | |
8bff8ac0 | 2142 | LOCK(cs_mapTransactions); |
ce8c9349 JG |
2143 | txInMap = (mapTransactions.count(inv.hash) != 0); |
2144 | } | |
8bff8ac0 | 2145 | return txInMap || |
8deb9822 JG |
2146 | mapOrphanTransactions.count(inv.hash) || |
2147 | txdb.ContainsTx(inv.hash); | |
2148 | } | |
2149 | ||
2150 | case MSG_BLOCK: | |
2151 | return mapBlockIndex.count(inv.hash) || | |
2152 | mapOrphanBlocks.count(inv.hash); | |
0a61b0df | 2153 | } |
2154 | // Don't know what it is, just say we already got one | |
2155 | return true; | |
2156 | } | |
2157 | ||
2158 | ||
2159 | ||
2160 | ||
5cbf7532 | 2161 | // The message start string is designed to be unlikely to occur in normal data. |
2162 | // The characters are rarely used upper ascii, not valid as UTF-8, and produce | |
2163 | // a large 4-byte int at any alignment. | |
25133bd7 | 2164 | unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 }; |
0a61b0df | 2165 | |
2166 | ||
64c7ee7e | 2167 | bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv) |
0a61b0df | 2168 | { |
67a42f92 | 2169 | static map<CService, vector<unsigned char> > mapReuseKey; |
0a61b0df | 2170 | RandAddSeedPerfmon(); |
59090133 | 2171 | if (fDebug) { |
0a61b0df | 2172 | printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str()); |
59090133 NS |
2173 | printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size()); |
2174 | } | |
0a61b0df | 2175 | if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0) |
2176 | { | |
2177 | printf("dropmessagestest DROPPING RECV MESSAGE\n"); | |
2178 | return true; | |
2179 | } | |
2180 | ||
2181 | ||
2182 | ||
2183 | ||
2184 | ||
2185 | if (strCommand == "version") | |
2186 | { | |
2187 | // Each connection can only send one version message | |
2188 | if (pfrom->nVersion != 0) | |
806704c2 GA |
2189 | { |
2190 | pfrom->Misbehaving(1); | |
0a61b0df | 2191 | return false; |
806704c2 | 2192 | } |
0a61b0df | 2193 | |
bde280b9 | 2194 | int64 nTime; |
0a61b0df | 2195 | CAddress addrMe; |
2196 | CAddress addrFrom; | |
bde280b9 | 2197 | uint64 nNonce = 1; |
0a61b0df | 2198 | vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe; |
8b09cd3a | 2199 | if (pfrom->nVersion < MIN_PROTO_VERSION) |
18c0fa97 | 2200 | { |
27adfb2e | 2201 | // Since February 20, 2012, the protocol is initiated at version 209, |
18c0fa97 PW |
2202 | // and earlier versions are no longer supported |
2203 | printf("partner %s using obsolete version %i; disconnecting\n", pfrom->addr.ToString().c_str(), pfrom->nVersion); | |
2204 | pfrom->fDisconnect = true; | |
2205 | return false; | |
2206 | } | |
2207 | ||
0a61b0df | 2208 | if (pfrom->nVersion == 10300) |
2209 | pfrom->nVersion = 300; | |
18c0fa97 | 2210 | if (!vRecv.empty()) |
0a61b0df | 2211 | vRecv >> addrFrom >> nNonce; |
18c0fa97 | 2212 | if (!vRecv.empty()) |
0a61b0df | 2213 | vRecv >> pfrom->strSubVer; |
18c0fa97 | 2214 | if (!vRecv.empty()) |
0a61b0df | 2215 | vRecv >> pfrom->nStartingHeight; |
2216 | ||
0a61b0df | 2217 | // Disconnect if we connected to ourself |
2218 | if (nNonce == nLocalHostNonce && nNonce > 1) | |
2219 | { | |
b22c8842 | 2220 | printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str()); |
0a61b0df | 2221 | pfrom->fDisconnect = true; |
2222 | return true; | |
2223 | } | |
2224 | ||
cbc920d4 GA |
2225 | // Be shy and don't send version until we hear |
2226 | if (pfrom->fInbound) | |
2227 | pfrom->PushVersion(); | |
2228 | ||
0a61b0df | 2229 | pfrom->fClient = !(pfrom->nServices & NODE_NETWORK); |
0a61b0df | 2230 | |
67a42f92 | 2231 | AddTimeData(pfrom->addr, nTime); |
0a61b0df | 2232 | |
2233 | // Change version | |
18c0fa97 | 2234 | pfrom->PushMessage("verack"); |
f8ded588 | 2235 | pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION)); |
0a61b0df | 2236 | |
c891967b | 2237 | if (!pfrom->fInbound) |
2238 | { | |
2239 | // Advertise our address | |
5d1b8f17 GM |
2240 | if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable() && |
2241 | !IsInitialBlockDownload()) | |
c891967b | 2242 | { |
2243 | CAddress addr(addrLocalHost); | |
2244 | addr.nTime = GetAdjustedTime(); | |
2245 | pfrom->PushAddress(addr); | |
2246 | } | |
2247 | ||
2248 | // Get recent addresses | |
8b09cd3a | 2249 | if (pfrom->nVersion >= CADDR_TIME_VERSION || addrman.size() < 1000) |
c891967b | 2250 | { |
2251 | pfrom->PushMessage("getaddr"); | |
2252 | pfrom->fGetAddr = true; | |
2253 | } | |
5fee401f PW |
2254 | addrman.Good(pfrom->addr); |
2255 | } else { | |
2256 | if (((CNetAddr)pfrom->addr) == (CNetAddr)addrFrom) | |
2257 | { | |
2258 | addrman.Add(addrFrom, addrFrom); | |
2259 | addrman.Good(addrFrom); | |
2260 | } | |
c891967b | 2261 | } |
2262 | ||
0a61b0df | 2263 | // Ask the first connected node for block updates |
9ef7fa34 | 2264 | static int nAskedForBlocks = 0; |
ec74e8a4 | 2265 | if (!pfrom->fClient && |
8b09cd3a | 2266 | (pfrom->nVersion < NOBLKS_VERSION_START || |
ce8c9349 | 2267 | pfrom->nVersion >= NOBLKS_VERSION_END) && |
ec74e8a4 | 2268 | (nAskedForBlocks < 1 || vNodes.size() <= 1)) |
0a61b0df | 2269 | { |
2270 | nAskedForBlocks++; | |
2271 | pfrom->PushGetBlocks(pindexBest, uint256(0)); | |
2272 | } | |
2273 | ||
2274 | // Relay alerts | |
f8dcd5ca PW |
2275 | { |
2276 | LOCK(cs_mapAlerts); | |
223b6f1b | 2277 | BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts) |
0a61b0df | 2278 | item.second.RelayTo(pfrom); |
f8dcd5ca | 2279 | } |
0a61b0df | 2280 | |
2281 | pfrom->fSuccessfullyConnected = true; | |
2282 | ||
2283 | printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight); | |
a8b95ce6 WL |
2284 | |
2285 | cPeerBlockCounts.input(pfrom->nStartingHeight); | |
0a61b0df | 2286 | } |
2287 | ||
2288 | ||
2289 | else if (pfrom->nVersion == 0) | |
2290 | { | |
2291 | // Must have a version message before anything else | |
806704c2 | 2292 | pfrom->Misbehaving(1); |
0a61b0df | 2293 | return false; |
2294 | } | |
2295 | ||
2296 | ||
2297 | else if (strCommand == "verack") | |
2298 | { | |
f8ded588 | 2299 | pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION)); |
0a61b0df | 2300 | } |
2301 | ||
2302 | ||
2303 | else if (strCommand == "addr") | |
2304 | { | |
2305 | vector<CAddress> vAddr; | |
2306 | vRecv >> vAddr; | |
c891967b | 2307 | |
2308 | // Don't want addr from older versions unless seeding | |
8b09cd3a | 2309 | if (pfrom->nVersion < CADDR_TIME_VERSION && addrman.size() > 1000) |
0a61b0df | 2310 | return true; |
2311 | if (vAddr.size() > 1000) | |
806704c2 GA |
2312 | { |
2313 | pfrom->Misbehaving(20); | |
0a61b0df | 2314 | return error("message addr size() = %d", vAddr.size()); |
806704c2 | 2315 | } |
0a61b0df | 2316 | |
2317 | // Store the new addresses | |
bde280b9 WL |
2318 | int64 nNow = GetAdjustedTime(); |
2319 | int64 nSince = nNow - 10 * 60; | |
223b6f1b | 2320 | BOOST_FOREACH(CAddress& addr, vAddr) |
0a61b0df | 2321 | { |
2322 | if (fShutdown) | |
2323 | return true; | |
2324 | // ignore IPv6 for now, since it isn't implemented anyway | |
2325 | if (!addr.IsIPv4()) | |
2326 | continue; | |
c891967b | 2327 | if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60) |
2328 | addr.nTime = nNow - 5 * 24 * 60 * 60; | |
0a61b0df | 2329 | pfrom->AddAddressKnown(addr); |
c891967b | 2330 | if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable()) |
0a61b0df | 2331 | { |
2332 | // Relay to a limited number of other nodes | |
0a61b0df | 2333 | { |
f8dcd5ca | 2334 | LOCK(cs_vNodes); |
5cbf7532 | 2335 | // Use deterministic randomness to send to the same nodes for 24 hours |
2336 | // at a time so the setAddrKnowns of the chosen nodes prevent repeats | |
0a61b0df | 2337 | static uint256 hashSalt; |
2338 | if (hashSalt == 0) | |
2339 | RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt)); | |
67a42f92 PW |
2340 | int64 hashAddr = addr.GetHash(); |
2341 | uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60)); | |
5cbf7532 | 2342 | hashRand = Hash(BEGIN(hashRand), END(hashRand)); |
0a61b0df | 2343 | multimap<uint256, CNode*> mapMix; |
223b6f1b | 2344 | BOOST_FOREACH(CNode* pnode, vNodes) |
5cbf7532 | 2345 | { |
8b09cd3a | 2346 | if (pnode->nVersion < CADDR_TIME_VERSION) |
c891967b | 2347 | continue; |
5cbf7532 | 2348 | unsigned int nPointer; |
2349 | memcpy(&nPointer, &pnode, sizeof(nPointer)); | |
2350 | uint256 hashKey = hashRand ^ nPointer; | |
2351 | hashKey = Hash(BEGIN(hashKey), END(hashKey)); | |
2352 | mapMix.insert(make_pair(hashKey, pnode)); | |
2353 | } | |
f1e1fb4b | 2354 | int nRelayNodes = 2; |
0a61b0df | 2355 | for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi) |
2356 | ((*mi).second)->PushAddress(addr); | |
2357 | } | |
2358 | } | |
2359 | } | |
5fee401f | 2360 | addrman.Add(vAddr, pfrom->addr, 2 * 60 * 60); |
0a61b0df | 2361 | if (vAddr.size() < 1000) |
2362 | pfrom->fGetAddr = false; | |
2363 | } | |
2364 | ||
2365 | ||
2366 | else if (strCommand == "inv") | |
2367 | { | |
2368 | vector<CInv> vInv; | |
2369 | vRecv >> vInv; | |
2370 | if (vInv.size() > 50000) | |
806704c2 GA |
2371 | { |
2372 | pfrom->Misbehaving(20); | |
0a61b0df | 2373 | return error("message inv size() = %d", vInv.size()); |
806704c2 | 2374 | } |
0a61b0df | 2375 | |
2376 | CTxDB txdb("r"); | |
c376ac35 | 2377 | for (unsigned int nInv = 0; nInv < vInv.size(); nInv++) |
0a61b0df | 2378 | { |
0aa89c08 PW |
2379 | const CInv &inv = vInv[nInv]; |
2380 | ||
0a61b0df | 2381 | if (fShutdown) |
2382 | return true; | |
2383 | pfrom->AddInventoryKnown(inv); | |
2384 | ||
2385 | bool fAlreadyHave = AlreadyHave(txdb, inv); | |
59090133 NS |
2386 | if (fDebug) |
2387 | printf(" got inventory: %s %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new"); | |
0a61b0df | 2388 | |
0aa89c08 PW |
2389 | // Always request the last block in an inv bundle (even if we already have it), as it is the |
2390 | // trigger for the other side to send further invs. If we are stuck on a (very long) side chain, | |
2391 | // this is necessary to connect earlier received orphan blocks to the chain again. | |
2392 | if (!fAlreadyHave || (inv.type == MSG_BLOCK && nInv==vInv.size()-1)) | |
0a61b0df | 2393 | pfrom->AskFor(inv); |
0aa89c08 | 2394 | if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash)) |
0a61b0df | 2395 | pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash])); |
2396 | ||
2397 | // Track requests for our stuff | |
64c7ee7e | 2398 | Inventory(inv.hash); |
0a61b0df | 2399 | } |
2400 | } | |
2401 | ||
2402 | ||
2403 | else if (strCommand == "getdata") | |
2404 | { | |
2405 | vector<CInv> vInv; | |
2406 | vRecv >> vInv; | |
2407 | if (vInv.size() > 50000) | |
806704c2 GA |
2408 | { |
2409 | pfrom->Misbehaving(20); | |
0a61b0df | 2410 | return error("message getdata size() = %d", vInv.size()); |
806704c2 | 2411 | } |
0a61b0df | 2412 | |
223b6f1b | 2413 | BOOST_FOREACH(const CInv& inv, vInv) |
0a61b0df | 2414 | { |
2415 | if (fShutdown) | |
2416 | return true; | |
2417 | printf("received getdata for: %s\n", inv.ToString().c_str()); | |
2418 | ||
2419 | if (inv.type == MSG_BLOCK) | |
2420 | { | |
2421 | // Send block from disk | |
2422 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash); | |
2423 | if (mi != mapBlockIndex.end()) | |
2424 | { | |
0a61b0df | 2425 | CBlock block; |
f03304a9 | 2426 | block.ReadFromDisk((*mi).second); |
0a61b0df | 2427 | pfrom->PushMessage("block", block); |
2428 | ||
2429 | // Trigger them to send a getblocks request for the next batch of inventory | |
2430 | if (inv.hash == pfrom->hashContinue) | |
2431 | { | |
2432 | // Bypass PushInventory, this must send even if redundant, | |
2433 | // and we want it right after the last block so they don't | |
2434 | // wait for other stuff first. | |
2435 | vector<CInv> vInv; | |
2436 | vInv.push_back(CInv(MSG_BLOCK, hashBestChain)); | |
2437 | pfrom->PushMessage("inv", vInv); | |
2438 | pfrom->hashContinue = 0; | |
2439 | } | |
2440 | } | |
2441 | } | |
2442 | else if (inv.IsKnownType()) | |
2443 | { | |
2444 | // Send stream from relay memory | |
0a61b0df | 2445 | { |
f8dcd5ca | 2446 | LOCK(cs_mapRelay); |
0a61b0df | 2447 | map<CInv, CDataStream>::iterator mi = mapRelay.find(inv); |
2448 | if (mi != mapRelay.end()) | |
2449 | pfrom->PushMessage(inv.GetCommand(), (*mi).second); | |
2450 | } | |
2451 | } | |
2452 | ||
2453 | // Track requests for our stuff | |
64c7ee7e | 2454 | Inventory(inv.hash); |
0a61b0df | 2455 | } |
2456 | } | |
2457 | ||
2458 | ||
2459 | else if (strCommand == "getblocks") | |
2460 | { | |
2461 | CBlockLocator locator; | |
2462 | uint256 hashStop; | |
2463 | vRecv >> locator >> hashStop; | |
2464 | ||
f03304a9 | 2465 | // Find the last block the caller has in the main chain |
0a61b0df | 2466 | CBlockIndex* pindex = locator.GetBlockIndex(); |
2467 | ||
2468 | // Send the rest of the chain | |
2469 | if (pindex) | |
2470 | pindex = pindex->pnext; | |
2471 | int nLimit = 500 + locator.GetDistanceBack(); | |
49731745 | 2472 | unsigned int nBytes = 0; |
0a61b0df | 2473 | printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit); |
2474 | for (; pindex; pindex = pindex->pnext) | |
2475 | { | |
2476 | if (pindex->GetBlockHash() == hashStop) | |
2477 | { | |
49731745 | 2478 | printf(" getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes); |
0a61b0df | 2479 | break; |
2480 | } | |
2481 | pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash())); | |
49731745 PW |
2482 | CBlock block; |
2483 | block.ReadFromDisk(pindex, true); | |
2484 | nBytes += block.GetSerializeSize(SER_NETWORK); | |
2485 | if (--nLimit <= 0 || nBytes >= SendBufferSize()/2) | |
0a61b0df | 2486 | { |
2487 | // When this block is requested, we'll send an inv that'll make them | |
2488 | // getblocks the next batch of inventory. | |
49731745 | 2489 | printf(" getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes); |
0a61b0df | 2490 | pfrom->hashContinue = pindex->GetBlockHash(); |
2491 | break; | |
2492 | } | |
2493 | } | |
2494 | } | |
2495 | ||
2496 | ||
f03304a9 | 2497 | else if (strCommand == "getheaders") |
2498 | { | |
2499 | CBlockLocator locator; | |
2500 | uint256 hashStop; | |
2501 | vRecv >> locator >> hashStop; | |
2502 | ||
2503 | CBlockIndex* pindex = NULL; | |
2504 | if (locator.IsNull()) | |
2505 | { | |
2506 | // If locator is null, return the hashStop block | |
2507 | map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop); | |
2508 | if (mi == mapBlockIndex.end()) | |
2509 | return true; | |
2510 | pindex = (*mi).second; | |
2511 | } | |
2512 | else | |
2513 | { | |
2514 | // Find the last block the caller has in the main chain | |
2515 | pindex = locator.GetBlockIndex(); | |
2516 | if (pindex) | |
2517 | pindex = pindex->pnext; | |
2518 | } | |
2519 | ||
2520 | vector<CBlock> vHeaders; | |
ecf07f27 MC |
2521 | int nLimit = 2000; |
2522 | printf("getheaders %d to %s\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str()); | |
f03304a9 | 2523 | for (; pindex; pindex = pindex->pnext) |
2524 | { | |
2525 | vHeaders.push_back(pindex->GetBlockHeader()); | |
2526 | if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop) | |
2527 | break; | |
2528 | } | |
2529 | pfrom->PushMessage("headers", vHeaders); | |
2530 | } | |
2531 | ||
2532 | ||
0a61b0df | 2533 | else if (strCommand == "tx") |
2534 | { | |
2535 | vector<uint256> vWorkQueue; | |
2536 | CDataStream vMsg(vRecv); | |
9925d34a | 2537 | CTxDB txdb("r"); |
0a61b0df | 2538 | CTransaction tx; |
2539 | vRecv >> tx; | |
2540 | ||
2541 | CInv inv(MSG_TX, tx.GetHash()); | |
2542 | pfrom->AddInventoryKnown(inv); | |
2543 | ||
2544 | bool fMissingInputs = false; | |
9925d34a | 2545 | if (tx.AcceptToMemoryPool(txdb, true, &fMissingInputs)) |
0a61b0df | 2546 | { |
64c7ee7e | 2547 | SyncWithWallets(tx, NULL, true); |
0a61b0df | 2548 | RelayMessage(inv, vMsg); |
2549 | mapAlreadyAskedFor.erase(inv); | |
2550 | vWorkQueue.push_back(inv.hash); | |
2551 | ||
2552 | // Recursively process any orphan transactions that depended on this one | |
c376ac35 | 2553 | for (unsigned int i = 0; i < vWorkQueue.size(); i++) |
0a61b0df | 2554 | { |
2555 | uint256 hashPrev = vWorkQueue[i]; | |
2556 | for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev); | |
2557 | mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev); | |
2558 | ++mi) | |
2559 | { | |
2560 | const CDataStream& vMsg = *((*mi).second); | |
2561 | CTransaction tx; | |
2562 | CDataStream(vMsg) >> tx; | |
2563 | CInv inv(MSG_TX, tx.GetHash()); | |
2564 | ||
9925d34a | 2565 | if (tx.AcceptToMemoryPool(txdb, true)) |
0a61b0df | 2566 | { |
b22c8842 | 2567 | printf(" accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); |
64c7ee7e | 2568 | SyncWithWallets(tx, NULL, true); |
0a61b0df | 2569 | RelayMessage(inv, vMsg); |
2570 | mapAlreadyAskedFor.erase(inv); | |
2571 | vWorkQueue.push_back(inv.hash); | |
2572 | } | |
2573 | } | |
2574 | } | |
2575 | ||
223b6f1b | 2576 | BOOST_FOREACH(uint256 hash, vWorkQueue) |
0a61b0df | 2577 | EraseOrphanTx(hash); |
2578 | } | |
2579 | else if (fMissingInputs) | |
2580 | { | |
b22c8842 | 2581 | printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str()); |
0a61b0df | 2582 | AddOrphanTx(vMsg); |
142e6041 GA |
2583 | |
2584 | // DoS prevention: do not allow mapOrphanTransactions to grow unbounded | |
2585 | int nEvicted = LimitOrphanTxSize(MAX_ORPHAN_TRANSACTIONS); | |
2586 | if (nEvicted > 0) | |
2587 | printf("mapOrphan overflow, removed %d tx\n", nEvicted); | |
0a61b0df | 2588 | } |
3e52aaf2 | 2589 | if (tx.nDoS) pfrom->Misbehaving(tx.nDoS); |
0a61b0df | 2590 | } |
2591 | ||
2592 | ||
2593 | else if (strCommand == "block") | |
2594 | { | |
f03304a9 | 2595 | CBlock block; |
2596 | vRecv >> block; | |
0a61b0df | 2597 | |
f03304a9 | 2598 | printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str()); |
2599 | // block.print(); | |
0a61b0df | 2600 | |
f03304a9 | 2601 | CInv inv(MSG_BLOCK, block.GetHash()); |
0a61b0df | 2602 | pfrom->AddInventoryKnown(inv); |
2603 | ||
f03304a9 | 2604 | if (ProcessBlock(pfrom, &block)) |
0a61b0df | 2605 | mapAlreadyAskedFor.erase(inv); |
3e52aaf2 | 2606 | if (block.nDoS) pfrom->Misbehaving(block.nDoS); |
0a61b0df | 2607 | } |
2608 | ||
2609 | ||
2610 | else if (strCommand == "getaddr") | |
2611 | { | |
0a61b0df | 2612 | pfrom->vAddrToSend.clear(); |
5fee401f PW |
2613 | vector<CAddress> vAddr = addrman.GetAddr(); |
2614 | BOOST_FOREACH(const CAddress &addr, vAddr) | |
2615 | pfrom->PushAddress(addr); | |
0a61b0df | 2616 | } |
2617 | ||
2618 | ||
2619 | else if (strCommand == "checkorder") | |
2620 | { | |
2621 | uint256 hashReply; | |
a206a239 | 2622 | vRecv >> hashReply; |
0a61b0df | 2623 | |
a206a239 | 2624 | if (!GetBoolArg("-allowreceivebyip")) |
172f0060 | 2625 | { |
2626 | pfrom->PushMessage("reply", hashReply, (int)2, string("")); | |
2627 | return true; | |
2628 | } | |
2629 | ||
a206a239 | 2630 | CWalletTx order; |
2631 | vRecv >> order; | |
2632 | ||
0a61b0df | 2633 | /// we have a chance to check the order here |
2634 | ||
2635 | // Keep giving the same key to the same ip until they use it | |
67a42f92 PW |
2636 | if (!mapReuseKey.count(pfrom->addr)) |
2637 | pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true); | |
0a61b0df | 2638 | |
2639 | // Send back approval of order and pubkey to use | |
2640 | CScript scriptPubKey; | |
67a42f92 | 2641 | scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG; |
0a61b0df | 2642 | pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey); |
2643 | } | |
2644 | ||
2645 | ||
0a61b0df | 2646 | else if (strCommand == "reply") |
2647 | { | |
2648 | uint256 hashReply; | |
2649 | vRecv >> hashReply; | |
2650 | ||
2651 | CRequestTracker tracker; | |
0a61b0df | 2652 | { |
f8dcd5ca | 2653 | LOCK(pfrom->cs_mapRequests); |
0a61b0df | 2654 | map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply); |
2655 | if (mi != pfrom->mapRequests.end()) | |
2656 | { | |
2657 | tracker = (*mi).second; | |
2658 | pfrom->mapRequests.erase(mi); | |
2659 | } | |
2660 | } | |
2661 | if (!tracker.IsNull()) | |
2662 | tracker.fn(tracker.param1, vRecv); | |
2663 | } | |
2664 | ||
2665 | ||
2666 | else if (strCommand == "ping") | |
2667 | { | |
93e447b6 JG |
2668 | if (pfrom->nVersion > BIP0031_VERSION) |
2669 | { | |
2670 | uint64 nonce = 0; | |
2671 | vRecv >> nonce; | |
2672 | // Echo the message back with the nonce. This allows for two useful features: | |
2673 | // | |
2674 | // 1) A remote node can quickly check if the connection is operational | |
2675 | // 2) Remote nodes can measure the latency of the network thread. If this node | |
2676 | // is overloaded it won't respond to pings quickly and the remote node can | |
2677 | // avoid sending us more work, like chain download requests. | |
2678 | // | |
2679 | // The nonce stops the remote getting confused between different pings: without | |
2680 | // it, if the remote node sends a ping once per second and this node takes 5 | |
2681 | // seconds to respond to each, the 5th ping the remote sends would appear to | |
2682 | // return very quickly. | |
2683 | pfrom->PushMessage("pong", nonce); | |
2684 | } | |
0a61b0df | 2685 | } |
2686 | ||
2687 | ||
2688 | else if (strCommand == "alert") | |
2689 | { | |
2690 | CAlert alert; | |
2691 | vRecv >> alert; | |
2692 | ||
2693 | if (alert.ProcessAlert()) | |
2694 | { | |
2695 | // Relay | |
2696 | pfrom->setKnown.insert(alert.GetHash()); | |
f8dcd5ca PW |
2697 | { |
2698 | LOCK(cs_vNodes); | |
223b6f1b | 2699 | BOOST_FOREACH(CNode* pnode, vNodes) |
0a61b0df | 2700 | alert.RelayTo(pnode); |
f8dcd5ca | 2701 | } |
0a61b0df | 2702 | } |
2703 | } | |
2704 | ||
2705 | ||
2706 | else | |
2707 | { | |
2708 | // Ignore unknown commands for extensibility | |
2709 | } | |
2710 | ||
2711 | ||
2712 | // Update the last seen time for this node's address | |
2713 | if (pfrom->fNetworkNode) | |
2714 | if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping") | |
2715 | AddressCurrentlyConnected(pfrom->addr); | |
2716 | ||
2717 | ||
2718 | return true; | |
2719 | } | |
2720 | ||
e89b9f6a PW |
2721 | bool ProcessMessages(CNode* pfrom) |
2722 | { | |
2723 | CDataStream& vRecv = pfrom->vRecv; | |
2724 | if (vRecv.empty()) | |
2725 | return true; | |
2726 | //if (fDebug) | |
2727 | // printf("ProcessMessages(%u bytes)\n", vRecv.size()); | |
0a61b0df | 2728 | |
e89b9f6a PW |
2729 | // |
2730 | // Message format | |
2731 | // (4) message start | |
2732 | // (12) command | |
2733 | // (4) size | |
2734 | // (4) checksum | |
2735 | // (x) data | |
2736 | // | |
0a61b0df | 2737 | |
e89b9f6a PW |
2738 | loop |
2739 | { | |
2740 | // Scan for message start | |
2741 | CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart)); | |
2742 | int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader()); | |
2743 | if (vRecv.end() - pstart < nHeaderSize) | |
2744 | { | |
2745 | if (vRecv.size() > nHeaderSize) | |
2746 | { | |
2747 | printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n"); | |
2748 | vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize); | |
2749 | } | |
2750 | break; | |
2751 | } | |
2752 | if (pstart - vRecv.begin() > 0) | |
2753 | printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin()); | |
2754 | vRecv.erase(vRecv.begin(), pstart); | |
0a61b0df | 2755 | |
e89b9f6a PW |
2756 | // Read header |
2757 | vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize); | |
2758 | CMessageHeader hdr; | |
2759 | vRecv >> hdr; | |
2760 | if (!hdr.IsValid()) | |
2761 | { | |
2762 | printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str()); | |
2763 | continue; | |
2764 | } | |
2765 | string strCommand = hdr.GetCommand(); | |
2766 | ||
2767 | // Message size | |
2768 | unsigned int nMessageSize = hdr.nMessageSize; | |
2769 | if (nMessageSize > MAX_SIZE) | |
2770 | { | |
2771 | printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize); | |
2772 | continue; | |
2773 | } | |
2774 | if (nMessageSize > vRecv.size()) | |
2775 | { | |
2776 | // Rewind and wait for rest of message | |
2777 | vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end()); | |
2778 | break; | |
2779 | } | |
2780 | ||
2781 | // Checksum | |
18c0fa97 PW |
2782 | uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize); |
2783 | unsigned int nChecksum = 0; | |
2784 | memcpy(&nChecksum, &hash, sizeof(nChecksum)); | |
2785 | if (nChecksum != hdr.nChecksum) | |
e89b9f6a | 2786 | { |
18c0fa97 PW |
2787 | printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n", |
2788 | strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum); | |
2789 | continue; | |
e89b9f6a PW |
2790 | } |
2791 | ||
2792 | // Copy message to its own buffer | |
2793 | CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion); | |
2794 | vRecv.ignore(nMessageSize); | |
2795 | ||
2796 | // Process message | |
2797 | bool fRet = false; | |
2798 | try | |
2799 | { | |
f8dcd5ca PW |
2800 | { |
2801 | LOCK(cs_main); | |
e89b9f6a | 2802 | fRet = ProcessMessage(pfrom, strCommand, vMsg); |
f8dcd5ca | 2803 | } |
e89b9f6a PW |
2804 | if (fShutdown) |
2805 | return true; | |
2806 | } | |
2807 | catch (std::ios_base::failure& e) | |
2808 | { | |
2809 | if (strstr(e.what(), "end of data")) | |
2810 | { | |
2811 | // Allow exceptions from underlength message on vRecv | |
2812 | printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught, normally caused by a message being shorter than its stated length\n", strCommand.c_str(), nMessageSize, e.what()); | |
2813 | } | |
2814 | else if (strstr(e.what(), "size too large")) | |
2815 | { | |
2816 | // Allow exceptions from overlong size | |
2817 | printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what()); | |
2818 | } | |
2819 | else | |
2820 | { | |
2821 | PrintExceptionContinue(&e, "ProcessMessage()"); | |
2822 | } | |
2823 | } | |
2824 | catch (std::exception& e) { | |
2825 | PrintExceptionContinue(&e, "ProcessMessage()"); | |
2826 | } catch (...) { | |
2827 | PrintExceptionContinue(NULL, "ProcessMessage()"); | |
2828 | } | |
2829 | ||
2830 | if (!fRet) | |
2831 | printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize); | |
2832 | } | |
2833 | ||
2834 | vRecv.Compact(); | |
2835 | return true; | |
2836 | } | |
0a61b0df | 2837 | |
2838 | ||
0a61b0df | 2839 | bool SendMessages(CNode* pto, bool fSendTrickle) |
2840 | { | |
0a61b0df | 2841 | { |
f8dcd5ca | 2842 | LOCK(cs_main); |
0a61b0df | 2843 | // Don't send anything until we get their version message |
2844 | if (pto->nVersion == 0) | |
2845 | return true; | |
2846 | ||
93e447b6 JG |
2847 | // Keep-alive ping. We send a nonce of zero because we don't use it anywhere |
2848 | // right now. | |
2849 | if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty()) { | |
2850 | if (pto->nVersion > BIP0031_VERSION) | |
2851 | pto->PushMessage("ping", 0); | |
2852 | else | |
2853 | pto->PushMessage("ping"); | |
2854 | } | |
0a61b0df | 2855 | |
c891967b | 2856 | // Resend wallet transactions that haven't gotten in a block yet |
2857 | ResendWalletTransactions(); | |
2858 | ||
0a61b0df | 2859 | // Address refresh broadcast |
bde280b9 | 2860 | static int64 nLastRebroadcast; |
5d1b8f17 | 2861 | if (!IsInitialBlockDownload() && (GetTime() - nLastRebroadcast > 24 * 60 * 60)) |
0a61b0df | 2862 | { |
0a61b0df | 2863 | { |
f8dcd5ca | 2864 | LOCK(cs_vNodes); |
223b6f1b | 2865 | BOOST_FOREACH(CNode* pnode, vNodes) |
0a61b0df | 2866 | { |
2867 | // Periodically clear setAddrKnown to allow refresh broadcasts | |
5d1b8f17 GM |
2868 | if (nLastRebroadcast) |
2869 | pnode->setAddrKnown.clear(); | |
0a61b0df | 2870 | |
2871 | // Rebroadcast our address | |
5d1b8f17 | 2872 | if (!fNoListen && !fUseProxy && addrLocalHost.IsRoutable()) |
c891967b | 2873 | { |
2874 | CAddress addr(addrLocalHost); | |
2875 | addr.nTime = GetAdjustedTime(); | |
2876 | pnode->PushAddress(addr); | |
2877 | } | |
0a61b0df | 2878 | } |
2879 | } | |
5d1b8f17 | 2880 | nLastRebroadcast = GetTime(); |
0a61b0df | 2881 | } |
2882 | ||
0a61b0df | 2883 | // |
2884 | // Message: addr | |
2885 | // | |
2886 | if (fSendTrickle) | |
2887 | { | |
2888 | vector<CAddress> vAddr; | |
2889 | vAddr.reserve(pto->vAddrToSend.size()); | |
223b6f1b | 2890 | BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend) |
0a61b0df | 2891 | { |
2892 | // returns true if wasn't already contained in the set | |
2893 | if (pto->setAddrKnown.insert(addr).second) | |
2894 | { | |
2895 | vAddr.push_back(addr); | |
2896 | // receiver rejects addr messages larger than 1000 | |
2897 | if (vAddr.size() >= 1000) | |
2898 | { | |
2899 | pto->PushMessage("addr", vAddr); | |
2900 | vAddr.clear(); | |
2901 | } | |
2902 | } | |
2903 | } | |
2904 | pto->vAddrToSend.clear(); | |
2905 | if (!vAddr.empty()) | |
2906 | pto->PushMessage("addr", vAddr); | |
2907 | } | |
2908 | ||
2909 | ||
2910 | // | |
2911 | // Message: inventory | |
2912 | // | |
2913 | vector<CInv> vInv; | |
2914 | vector<CInv> vInvWait; | |
0a61b0df | 2915 | { |
f8dcd5ca | 2916 | LOCK(pto->cs_inventory); |
0a61b0df | 2917 | vInv.reserve(pto->vInventoryToSend.size()); |
2918 | vInvWait.reserve(pto->vInventoryToSend.size()); | |
223b6f1b | 2919 | BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend) |
0a61b0df | 2920 | { |
2921 | if (pto->setInventoryKnown.count(inv)) | |
2922 | continue; | |
2923 | ||
2924 | // trickle out tx inv to protect privacy | |
2925 | if (inv.type == MSG_TX && !fSendTrickle) | |
2926 | { | |
2927 | // 1/4 of tx invs blast to all immediately | |
2928 | static uint256 hashSalt; | |
2929 | if (hashSalt == 0) | |
2930 | RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt)); | |
2931 | uint256 hashRand = inv.hash ^ hashSalt; | |
2932 | hashRand = Hash(BEGIN(hashRand), END(hashRand)); | |
2933 | bool fTrickleWait = ((hashRand & 3) != 0); | |
2934 | ||
2935 | // always trickle our own transactions | |
2936 | if (!fTrickleWait) | |
2937 | { | |
64c7ee7e PW |
2938 | CWalletTx wtx; |
2939 | if (GetTransaction(inv.hash, wtx)) | |
2940 | if (wtx.fFromMe) | |
2941 | fTrickleWait = true; | |
0a61b0df | 2942 | } |
2943 | ||
2944 | if (fTrickleWait) | |
2945 | { | |
2946 | vInvWait.push_back(inv); | |
2947 | continue; | |
2948 | } | |
2949 | } | |
2950 | ||
2951 | // returns true if wasn't already contained in the set | |
2952 | if (pto->setInventoryKnown.insert(inv).second) | |
2953 | { | |
2954 | vInv.push_back(inv); | |
2955 | if (vInv.size() >= 1000) | |
2956 | { | |
2957 | pto->PushMessage("inv", vInv); | |
2958 | vInv.clear(); | |
2959 | } | |
2960 | } | |
2961 | } | |
2962 | pto->vInventoryToSend = vInvWait; | |
2963 | } | |
2964 | if (!vInv.empty()) | |
2965 | pto->PushMessage("inv", vInv); | |
2966 | ||
2967 | ||
2968 | // | |
2969 | // Message: getdata | |
2970 | // | |
2971 | vector<CInv> vGetData; | |
bde280b9 | 2972 | int64 nNow = GetTime() * 1000000; |
0a61b0df | 2973 | CTxDB txdb("r"); |
2974 | while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow) | |
2975 | { | |
2976 | const CInv& inv = (*pto->mapAskFor.begin()).second; | |
2977 | if (!AlreadyHave(txdb, inv)) | |
2978 | { | |
2979 | printf("sending getdata: %s\n", inv.ToString().c_str()); | |
2980 | vGetData.push_back(inv); | |
2981 | if (vGetData.size() >= 1000) | |
2982 | { | |
2983 | pto->PushMessage("getdata", vGetData); | |
2984 | vGetData.clear(); | |
2985 | } | |
2986 | } | |
643160f6 | 2987 | mapAlreadyAskedFor[inv] = nNow; |
0a61b0df | 2988 | pto->mapAskFor.erase(pto->mapAskFor.begin()); |
2989 | } | |
2990 | if (!vGetData.empty()) | |
2991 | pto->PushMessage("getdata", vGetData); | |
2992 | ||
2993 | } | |
2994 | return true; | |
2995 | } | |
2996 | ||
2997 | ||
2998 | ||
2999 | ||
3000 | ||
3001 | ||
3002 | ||
3003 | ||
3004 | ||
3005 | ||
3006 | ||
3007 | ||
3008 | ||
3009 | ||
3010 | ////////////////////////////////////////////////////////////////////////////// | |
3011 | // | |
3012 | // BitcoinMiner | |
3013 | // | |
3014 | ||
64c7ee7e | 3015 | int static FormatHashBlocks(void* pbuffer, unsigned int len) |
3df62878 | 3016 | { |
3017 | unsigned char* pdata = (unsigned char*)pbuffer; | |
3018 | unsigned int blocks = 1 + ((len + 8) / 64); | |
3019 | unsigned char* pend = pdata + 64 * blocks; | |
3020 | memset(pdata + len, 0, 64 * blocks - len); | |
3021 | pdata[len] = 0x80; | |
3022 | unsigned int bits = len * 8; | |
3023 | pend[-1] = (bits >> 0) & 0xff; | |
3024 | pend[-2] = (bits >> 8) & 0xff; | |
3025 | pend[-3] = (bits >> 16) & 0xff; | |
3026 | pend[-4] = (bits >> 24) & 0xff; | |
3027 | return blocks; | |
3028 | } | |
3029 | ||
3df62878 | 3030 | static const unsigned int pSHA256InitState[8] = |
3031 | {0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19}; | |
3032 | ||
6ccff2cb | 3033 | void SHA256Transform(void* pstate, void* pinput, const void* pinit) |
3df62878 | 3034 | { |
6ccff2cb NS |
3035 | SHA256_CTX ctx; |
3036 | unsigned char data[64]; | |
3037 | ||
3038 | SHA256_Init(&ctx); | |
3039 | ||
3040 | for (int i = 0; i < 16; i++) | |
3041 | ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]); | |
3042 | ||
3043 | for (int i = 0; i < 8; i++) | |
3044 | ctx.h[i] = ((uint32_t*)pinit)[i]; | |
3045 | ||
3046 | SHA256_Update(&ctx, data, sizeof(data)); | |
3047 | for (int i = 0; i < 8; i++) | |
3048 | ((uint32_t*)pstate)[i] = ctx.h[i]; | |
3df62878 | 3049 | } |
3050 | ||
3051 | // | |
3052 | // ScanHash scans nonces looking for a hash with at least some zero bits. | |
3053 | // It operates on big endian data. Caller does the byte reversing. | |
3054 | // All input buffers are 16-byte aligned. nNonce is usually preserved | |
776d0f34 | 3055 | // between calls, but periodically or if nNonce is 0xffff0000 or above, |
3df62878 | 3056 | // the block is rebuilt and nNonce starts over at zero. |
3057 | // | |
64c7ee7e | 3058 | unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone) |
3df62878 | 3059 | { |
776d0f34 | 3060 | unsigned int& nNonce = *(unsigned int*)(pdata + 12); |
3df62878 | 3061 | for (;;) |
3062 | { | |
3063 | // Crypto++ SHA-256 | |
776d0f34 | 3064 | // Hash pdata using pmidstate as the starting state into |
3df62878 | 3065 | // preformatted buffer phash1, then hash phash1 into phash |
3066 | nNonce++; | |
776d0f34 | 3067 | SHA256Transform(phash1, pdata, pmidstate); |
3df62878 | 3068 | SHA256Transform(phash, phash1, pSHA256InitState); |
3069 | ||
3070 | // Return the nonce if the hash has at least some zero bits, | |
3071 | // caller will check if it has enough to reach the target | |
3072 | if (((unsigned short*)phash)[14] == 0) | |
3073 | return nNonce; | |
3074 | ||
3075 | // If nothing found after trying for a while, return -1 | |
3076 | if ((nNonce & 0xffff) == 0) | |
3077 | { | |
3078 | nHashesDone = 0xffff+1; | |
3079 | return -1; | |
3080 | } | |
3081 | } | |
3082 | } | |
3083 | ||
d0d9486f | 3084 | // Some explaining would be appreciated |
683bcb91 | 3085 | class COrphan |
3086 | { | |
3087 | public: | |
3088 | CTransaction* ptx; | |
3089 | set<uint256> setDependsOn; | |
3090 | double dPriority; | |
3091 | ||
3092 | COrphan(CTransaction* ptxIn) | |
3093 | { | |
3094 | ptx = ptxIn; | |
3095 | dPriority = 0; | |
3096 | } | |
3097 | ||
3098 | void print() const | |
3099 | { | |
3100 | printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority); | |
223b6f1b | 3101 | BOOST_FOREACH(uint256 hash, setDependsOn) |
683bcb91 | 3102 | printf(" setDependsOn %s\n", hash.ToString().substr(0,10).c_str()); |
3103 | } | |
3104 | }; | |
3105 | ||
3106 | ||
340f0876 LD |
3107 | uint64 nLastBlockTx = 0; |
3108 | uint64 nLastBlockSize = 0; | |
3109 | ||
776d0f34 | 3110 | CBlock* CreateNewBlock(CReserveKey& reservekey) |
3111 | { | |
3112 | CBlockIndex* pindexPrev = pindexBest; | |
3113 | ||
3114 | // Create new block | |
3115 | auto_ptr<CBlock> pblock(new CBlock()); | |
3116 | if (!pblock.get()) | |
3117 | return NULL; | |
3118 | ||
3119 | // Create coinbase tx | |
3120 | CTransaction txNew; | |
3121 | txNew.vin.resize(1); | |
3122 | txNew.vin[0].prevout.SetNull(); | |
3123 | txNew.vout.resize(1); | |
3124 | txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG; | |
3125 | ||
3126 | // Add our coinbase tx as first transaction | |
3127 | pblock->vtx.push_back(txNew); | |
3128 | ||
3129 | // Collect memory pool transactions into the block | |
bde280b9 | 3130 | int64 nFees = 0; |
776d0f34 | 3131 | { |
f8dcd5ca | 3132 | LOCK2(cs_main, cs_mapTransactions); |
776d0f34 | 3133 | CTxDB txdb("r"); |
3134 | ||
3135 | // Priority order to process transactions | |
3136 | list<COrphan> vOrphan; // list memory doesn't move | |
3137 | map<uint256, vector<COrphan*> > mapDependers; | |
3138 | multimap<double, CTransaction*> mapPriority; | |
3139 | for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi) | |
3140 | { | |
3141 | CTransaction& tx = (*mi).second; | |
3142 | if (tx.IsCoinBase() || !tx.IsFinal()) | |
3143 | continue; | |
3144 | ||
3145 | COrphan* porphan = NULL; | |
3146 | double dPriority = 0; | |
223b6f1b | 3147 | BOOST_FOREACH(const CTxIn& txin, tx.vin) |
776d0f34 | 3148 | { |
3149 | // Read prev transaction | |
3150 | CTransaction txPrev; | |
3151 | CTxIndex txindex; | |
3152 | if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex)) | |
3153 | { | |
3154 | // Has to wait for dependencies | |
3155 | if (!porphan) | |
3156 | { | |
3157 | // Use list for automatic deletion | |
3158 | vOrphan.push_back(COrphan(&tx)); | |
3159 | porphan = &vOrphan.back(); | |
3160 | } | |
3161 | mapDependers[txin.prevout.hash].push_back(porphan); | |
3162 | porphan->setDependsOn.insert(txin.prevout.hash); | |
3163 | continue; | |
3164 | } | |
bde280b9 | 3165 | int64 nValueIn = txPrev.vout[txin.prevout.n].nValue; |
776d0f34 | 3166 | |
3167 | // Read block header | |
395c1f44 | 3168 | int nConf = txindex.GetDepthInMainChain(); |
776d0f34 | 3169 | |
3170 | dPriority += (double)nValueIn * nConf; | |
3171 | ||
bdde31d7 | 3172 | if (fDebug && GetBoolArg("-printpriority")) |
776d0f34 | 3173 | printf("priority nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority); |
3174 | } | |
3175 | ||
3176 | // Priority is sum(valuein * age) / txsize | |
3177 | dPriority /= ::GetSerializeSize(tx, SER_NETWORK); | |
3178 | ||
3179 | if (porphan) | |
3180 | porphan->dPriority = dPriority; | |
3181 | else | |
3182 | mapPriority.insert(make_pair(-dPriority, &(*mi).second)); | |
3183 | ||
bdde31d7 | 3184 | if (fDebug && GetBoolArg("-printpriority")) |
776d0f34 | 3185 | { |
3186 | printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str()); | |
3187 | if (porphan) | |
3188 | porphan->print(); | |
3189 | printf("\n"); | |
3190 | } | |
3191 | } | |
3192 | ||
3193 | // Collect transactions into block | |
3194 | map<uint256, CTxIndex> mapTestPool; | |
bde280b9 | 3195 | uint64 nBlockSize = 1000; |
340f0876 | 3196 | uint64 nBlockTx = 0; |
137d0685 | 3197 | int nBlockSigOps = 100; |
776d0f34 | 3198 | while (!mapPriority.empty()) |
3199 | { | |
3200 | // Take highest priority transaction off priority queue | |
3201 | double dPriority = -(*mapPriority.begin()).first; | |
3202 | CTransaction& tx = *(*mapPriority.begin()).second; | |
3203 | mapPriority.erase(mapPriority.begin()); | |
3204 | ||
3205 | // Size limits | |
3206 | unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK); | |
3207 | if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN) | |
3208 | continue; | |
776d0f34 | 3209 | |
922e8e29 | 3210 | // Legacy limits on sigOps: |
137d0685 GA |
3211 | int nTxSigOps = tx.GetLegacySigOpCount(); |
3212 | if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) | |
922e8e29 GA |
3213 | continue; |
3214 | ||
776d0f34 | 3215 | // Transaction fee required depends on block size |
395c1f44 | 3216 | bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority)); |
bde280b9 | 3217 | int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK); |
776d0f34 | 3218 | |
3219 | // Connecting shouldn't fail due to dependency on other memory pool transactions | |
3220 | // because we're already processing them in order of dependency | |
3221 | map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool); | |
8d7849b6 | 3222 | MapPrevTx mapInputs; |
149f580c GA |
3223 | bool fInvalid; |
3224 | if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid)) | |
e679ec96 | 3225 | continue; |
922e8e29 | 3226 | |
68649bef GA |
3227 | int64 nTxFees = tx.GetValueIn(mapInputs)-tx.GetValueOut(); |
3228 | if (nTxFees < nMinFee) | |
e679ec96 | 3229 | continue; |
8d7849b6 | 3230 | |
137d0685 GA |
3231 | nTxSigOps += tx.GetP2SHSigOpCount(mapInputs); |
3232 | if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS) | |
776d0f34 | 3233 | continue; |
8d7849b6 GA |
3234 | |
3235 | if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true)) | |
3236 | continue; | |
40634605 | 3237 | mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size()); |
776d0f34 | 3238 | swap(mapTestPool, mapTestPoolTmp); |
3239 | ||
3240 | // Added | |
3241 | pblock->vtx.push_back(tx); | |
3242 | nBlockSize += nTxSize; | |
340f0876 | 3243 | ++nBlockTx; |
137d0685 | 3244 | nBlockSigOps += nTxSigOps; |
68649bef | 3245 | nFees += nTxFees; |
776d0f34 | 3246 | |
3247 | // Add transactions that depend on this one to the priority queue | |
3248 | uint256 hash = tx.GetHash(); | |
3249 | if (mapDependers.count(hash)) | |
3250 | { | |
223b6f1b | 3251 | BOOST_FOREACH(COrphan* porphan, mapDependers[hash]) |
776d0f34 | 3252 | { |
3253 | if (!porphan->setDependsOn.empty()) | |
3254 | { | |
3255 | porphan->setDependsOn.erase(hash); | |
3256 | if (porphan->setDependsOn.empty()) | |
3257 | mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx)); | |
3258 | } | |
3259 | } | |
3260 | } | |
3261 | } | |
340f0876 LD |
3262 | |
3263 | nLastBlockTx = nBlockTx; | |
3264 | nLastBlockSize = nBlockSize; | |
3265 | printf("CreateNewBlock(): total size %lu\n", nBlockSize); | |
3266 | ||
776d0f34 | 3267 | } |
3268 | pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees); | |
3269 | ||
3270 | // Fill in header | |
3271 | pblock->hashPrevBlock = pindexPrev->GetBlockHash(); | |
3272 | pblock->hashMerkleRoot = pblock->BuildMerkleTree(); | |
0f8cb5db | 3273 | pblock->UpdateTime(pindexPrev); |
c52296a7 | 3274 | pblock->nBits = GetNextWorkRequired(pindexPrev, pblock.get()); |
776d0f34 | 3275 | pblock->nNonce = 0; |
3276 | ||
3277 | return pblock.release(); | |
3278 | } | |
3279 | ||
3280 | ||
83f4cd15 | 3281 | void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce) |
776d0f34 | 3282 | { |
3283 | // Update nExtraNonce | |
02d87b3a LD |
3284 | static uint256 hashPrevBlock; |
3285 | if (hashPrevBlock != pblock->hashPrevBlock) | |
776d0f34 | 3286 | { |
02d87b3a LD |
3287 | nExtraNonce = 0; |
3288 | hashPrevBlock = pblock->hashPrevBlock; | |
776d0f34 | 3289 | } |
02d87b3a | 3290 | ++nExtraNonce; |
52a3d263 | 3291 | pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS; |
d7062ef1 GA |
3292 | assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100); |
3293 | ||
776d0f34 | 3294 | pblock->hashMerkleRoot = pblock->BuildMerkleTree(); |
3295 | } | |
3296 | ||
3297 | ||
3298 | void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1) | |
3299 | { | |
3300 | // | |
3301 | // Prebuild hash buffers | |
3302 | // | |
3303 | struct | |
3304 | { | |
3305 | struct unnamed2 | |
3306 | { | |
3307 | int nVersion; | |
3308 | uint256 hashPrevBlock; | |
3309 | uint256 hashMerkleRoot; | |
3310 | unsigned int nTime; | |
3311 | unsigned int nBits; | |
3312 | unsigned int nNonce; | |
3313 | } | |
3314 | block; | |
3315 | unsigned char pchPadding0[64]; | |
3316 | uint256 hash1; | |
3317 | unsigned char pchPadding1[64]; | |
3318 | } | |
3319 | tmp; | |
3320 | memset(&tmp, 0, sizeof(tmp)); | |
3321 | ||
3322 | tmp.block.nVersion = pblock->nVersion; | |
3323 | tmp.block.hashPrevBlock = pblock->hashPrevBlock; | |
3324 | tmp.block.hashMerkleRoot = pblock->hashMerkleRoot; | |
3325 | tmp.block.nTime = pblock->nTime; | |
3326 | tmp.block.nBits = pblock->nBits; | |
3327 | tmp.block.nNonce = pblock->nNonce; | |
3328 | ||
3329 | FormatHashBlocks(&tmp.block, sizeof(tmp.block)); | |
3330 | FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1)); | |
3331 | ||
3332 | // Byte swap all the input buffer | |
c376ac35 | 3333 | for (unsigned int i = 0; i < sizeof(tmp)/4; i++) |
776d0f34 | 3334 | ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]); |
3335 | ||
3336 | // Precalc the first half of the first hash, which stays constant | |
3337 | SHA256Transform(pmidstate, &tmp.block, pSHA256InitState); | |
3338 | ||
3339 | memcpy(pdata, &tmp.block, 128); | |
3340 | memcpy(phash1, &tmp.hash1, 64); | |
3341 | } | |
3342 | ||
3343 | ||
64c7ee7e | 3344 | bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey) |
776d0f34 | 3345 | { |
3346 | uint256 hash = pblock->GetHash(); | |
3347 | uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); | |
3348 | ||
3349 | if (hash > hashTarget) | |
3350 | return false; | |
3351 | ||
3352 | //// debug print | |
3353 | printf("BitcoinMiner:\n"); | |
3354 | printf("proof-of-work found \n hash: %s \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str()); | |
3355 | pblock->print(); | |
3356 | printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str()); | |
3357 | printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str()); | |
3358 | ||
3359 | // Found a solution | |
776d0f34 | 3360 | { |
f8dcd5ca | 3361 | LOCK(cs_main); |
776d0f34 | 3362 | if (pblock->hashPrevBlock != hashBestChain) |
3363 | return error("BitcoinMiner : generated block is stale"); | |
3364 | ||
3365 | // Remove key from key pool | |
3366 | reservekey.KeepKey(); | |
3367 | ||
3368 | // Track how many getdata requests this block gets | |
f8dcd5ca PW |
3369 | { |
3370 | LOCK(wallet.cs_wallet); | |
64c7ee7e | 3371 | wallet.mapRequestCount[pblock->GetHash()] = 0; |
f8dcd5ca | 3372 | } |
776d0f34 | 3373 | |
3374 | // Process this block the same as if we had received it from another node | |
3375 | if (!ProcessBlock(NULL, pblock)) | |
3376 | return error("BitcoinMiner : ProcessBlock, block not accepted"); | |
3377 | } | |
3378 | ||
776d0f34 | 3379 | return true; |
3380 | } | |
3381 | ||
64c7ee7e PW |
3382 | void static ThreadBitcoinMiner(void* parg); |
3383 | ||
972060ce GA |
3384 | static bool fGenerateBitcoins = false; |
3385 | static bool fLimitProcessors = false; | |
3386 | static int nLimitProcessors = -1; | |
3387 | ||
64c7ee7e | 3388 | void static BitcoinMiner(CWallet *pwallet) |
0a61b0df | 3389 | { |
3390 | printf("BitcoinMiner started\n"); | |
3391 | SetThreadPriority(THREAD_PRIORITY_LOWEST); | |
3392 | ||
776d0f34 | 3393 | // Each thread has its own key and counter |
64c7ee7e | 3394 | CReserveKey reservekey(pwallet); |
5cbf7532 | 3395 | unsigned int nExtraNonce = 0; |
776d0f34 | 3396 | |
0a61b0df | 3397 | while (fGenerateBitcoins) |
3398 | { | |
0a61b0df | 3399 | if (fShutdown) |
3400 | return; | |
3401 | while (vNodes.empty() || IsInitialBlockDownload()) | |
3402 | { | |
3403 | Sleep(1000); | |
3404 | if (fShutdown) | |
3405 | return; | |
3406 | if (!fGenerateBitcoins) | |
3407 | return; | |
3408 | } | |
3409 | ||
0a61b0df | 3410 | |
3411 | // | |
3412 | // Create new block | |
3413 | // | |
776d0f34 | 3414 | unsigned int nTransactionsUpdatedLast = nTransactionsUpdated; |
3415 | CBlockIndex* pindexPrev = pindexBest; | |
3416 | ||
3417 | auto_ptr<CBlock> pblock(CreateNewBlock(reservekey)); | |
0a61b0df | 3418 | if (!pblock.get()) |
3419 | return; | |
83f4cd15 | 3420 | IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce); |
0a61b0df | 3421 | |
0a61b0df | 3422 | printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size()); |
3423 | ||
3424 | ||
3425 | // | |
776d0f34 | 3426 | // Prebuild hash buffers |
0a61b0df | 3427 | // |
776d0f34 | 3428 | char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf); |
3429 | char pdatabuf[128+16]; char* pdata = alignup<16>(pdatabuf); | |
3430 | char phash1buf[64+16]; char* phash1 = alignup<16>(phash1buf); | |
3431 | ||
3432 | FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1); | |
3433 | ||
3434 | unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4); | |
0f8cb5db | 3435 | unsigned int& nBlockBits = *(unsigned int*)(pdata + 64 + 8); |
776d0f34 | 3436 | unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12); |
0a61b0df | 3437 | |
3438 | ||
3439 | // | |
3440 | // Search | |
3441 | // | |
bde280b9 | 3442 | int64 nStart = GetTime(); |
0a61b0df | 3443 | uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); |
3444 | uint256 hashbuf[2]; | |
3445 | uint256& hash = *alignup<16>(hashbuf); | |
3446 | loop | |
3447 | { | |
3df62878 | 3448 | unsigned int nHashesDone = 0; |
3449 | unsigned int nNonceFound; | |
3450 | ||
b26141e2 JG |
3451 | // Crypto++ SHA-256 |
3452 | nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1, | |
3453 | (char*)&hash, nHashesDone); | |
0a61b0df | 3454 | |
3df62878 | 3455 | // Check if something found |
3456 | if (nNonceFound != -1) | |
0a61b0df | 3457 | { |
c376ac35 | 3458 | for (unsigned int i = 0; i < sizeof(hash)/4; i++) |
0a61b0df | 3459 | ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]); |
3460 | ||
3461 | if (hash <= hashTarget) | |
3462 | { | |
3df62878 | 3463 | // Found a solution |
3464 | pblock->nNonce = ByteReverse(nNonceFound); | |
0a61b0df | 3465 | assert(hash == pblock->GetHash()); |
3466 | ||
0a61b0df | 3467 | SetThreadPriority(THREAD_PRIORITY_NORMAL); |
64c7ee7e | 3468 | CheckWork(pblock.get(), *pwalletMain, reservekey); |
0a61b0df | 3469 | SetThreadPriority(THREAD_PRIORITY_LOWEST); |
0a61b0df | 3470 | break; |
3471 | } | |
3472 | } | |
3473 | ||
3df62878 | 3474 | // Meter hashes/sec |
bde280b9 | 3475 | static int64 nHashCounter; |
3df62878 | 3476 | if (nHPSTimerStart == 0) |
0a61b0df | 3477 | { |
3df62878 | 3478 | nHPSTimerStart = GetTimeMillis(); |
3479 | nHashCounter = 0; | |
3480 | } | |
3481 | else | |
3482 | nHashCounter += nHashesDone; | |
3483 | if (GetTimeMillis() - nHPSTimerStart > 4000) | |
3484 | { | |
3485 | static CCriticalSection cs; | |
0a61b0df | 3486 | { |
f8dcd5ca | 3487 | LOCK(cs); |
3df62878 | 3488 | if (GetTimeMillis() - nHPSTimerStart > 4000) |
0a61b0df | 3489 | { |
3df62878 | 3490 | dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart); |
3491 | nHPSTimerStart = GetTimeMillis(); | |
3492 | nHashCounter = 0; | |
bde280b9 | 3493 | static int64 nLogTime; |
3df62878 | 3494 | if (GetTime() - nLogTime > 30 * 60) |
0a61b0df | 3495 | { |
3df62878 | 3496 | nLogTime = GetTime(); |
3497 | printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str()); | |
c59881ea | 3498 | printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[THREAD_MINER], dHashesPerSec/1000.0); |
0a61b0df | 3499 | } |
3500 | } | |
3501 | } | |
3df62878 | 3502 | } |
0a61b0df | 3503 | |
3df62878 | 3504 | // Check for stop or if block needs to be rebuilt |
3505 | if (fShutdown) | |
3506 | return; | |
3507 | if (!fGenerateBitcoins) | |
3508 | return; | |
c59881ea | 3509 | if (fLimitProcessors && vnThreadsRunning[THREAD_MINER] > nLimitProcessors) |
3df62878 | 3510 | return; |
3511 | if (vNodes.empty()) | |
3512 | break; | |
776d0f34 | 3513 | if (nBlockNonce >= 0xffff0000) |
3df62878 | 3514 | break; |
3515 | if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60) | |
3516 | break; | |
3517 | if (pindexPrev != pindexBest) | |
3518 | break; | |
0a61b0df | 3519 | |
3df62878 | 3520 | // Update nTime every few seconds |
0f8cb5db | 3521 | pblock->UpdateTime(pindexPrev); |
776d0f34 | 3522 | nBlockTime = ByteReverse(pblock->nTime); |
0f8cb5db GA |
3523 | if (fTestNet) |
3524 | { | |
3525 | // Changing pblock->nTime can change work required on testnet: | |
3526 | nBlockBits = ByteReverse(pblock->nBits); | |
3527 | hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256(); | |
3528 | } | |
0a61b0df | 3529 | } |
3530 | } | |
3531 | } | |
3532 | ||
64c7ee7e | 3533 | void static ThreadBitcoinMiner(void* parg) |
0a61b0df | 3534 | { |
64c7ee7e | 3535 | CWallet* pwallet = (CWallet*)parg; |
e89b9f6a | 3536 | try |
0a61b0df | 3537 | { |
c59881ea | 3538 | vnThreadsRunning[THREAD_MINER]++; |
64c7ee7e | 3539 | BitcoinMiner(pwallet); |
c59881ea | 3540 | vnThreadsRunning[THREAD_MINER]--; |
aca3f961 | 3541 | } |
e89b9f6a | 3542 | catch (std::exception& e) { |
c59881ea | 3543 | vnThreadsRunning[THREAD_MINER]--; |
e89b9f6a PW |
3544 | PrintException(&e, "ThreadBitcoinMiner()"); |
3545 | } catch (...) { | |
c59881ea | 3546 | vnThreadsRunning[THREAD_MINER]--; |
e89b9f6a | 3547 | PrintException(NULL, "ThreadBitcoinMiner()"); |
0a61b0df | 3548 | } |
e89b9f6a | 3549 | nHPSTimerStart = 0; |
c59881ea | 3550 | if (vnThreadsRunning[THREAD_MINER] == 0) |
e89b9f6a | 3551 | dHashesPerSec = 0; |
c59881ea | 3552 | printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[THREAD_MINER]); |
e2a186af | 3553 | } |
3554 | ||
0a61b0df | 3555 | |
64c7ee7e | 3556 | void GenerateBitcoins(bool fGenerate, CWallet* pwallet) |
0a61b0df | 3557 | { |
972060ce GA |
3558 | fGenerateBitcoins = fGenerate; |
3559 | nLimitProcessors = GetArg("-genproclimit", -1); | |
3560 | if (nLimitProcessors == 0) | |
3561 | fGenerateBitcoins = false; | |
3562 | fLimitProcessors = (nLimitProcessors != -1); | |
3563 | ||
3564 | if (fGenerate) | |
0a61b0df | 3565 | { |
e89b9f6a PW |
3566 | int nProcessors = boost::thread::hardware_concurrency(); |
3567 | printf("%d processors\n", nProcessors); | |
3568 | if (nProcessors < 1) | |
3569 | nProcessors = 1; | |
3570 | if (fLimitProcessors && nProcessors > nLimitProcessors) | |
3571 | nProcessors = nLimitProcessors; | |
c59881ea | 3572 | int nAddThreads = nProcessors - vnThreadsRunning[THREAD_MINER]; |
e89b9f6a PW |
3573 | printf("Starting %d BitcoinMiner threads\n", nAddThreads); |
3574 | for (int i = 0; i < nAddThreads; i++) | |
0a61b0df | 3575 | { |
64c7ee7e | 3576 | if (!CreateThread(ThreadBitcoinMiner, pwallet)) |
e89b9f6a PW |
3577 | printf("Error: CreateThread(ThreadBitcoinMiner) failed\n"); |
3578 | Sleep(10); | |
0a61b0df | 3579 | } |
f5f1878b | 3580 | } |
0a61b0df | 3581 | } |