main.cpp 109 KB
Newer Older
s_nakamoto's avatar
s_nakamoto committed
1
// Copyright (c) 2009-2010 Satoshi Nakamoto
Matt Corallo's avatar
Matt Corallo committed
2
// Copyright (c) 2011 The Bitcoin developers
s_nakamoto's avatar
s_nakamoto committed
3
4
5
// Distributed under the MIT/X11 software license, see the accompanying
// file license.txt or http://www.opensource.org/licenses/mit-license.php.
#include "headers.h"
6
#include "checkpoints.h"
7
#include "db.h"
8
#include "net.h"
9
#include "init.h"
10
#include <boost/algorithm/string/replace.hpp>
11
#include <boost/filesystem.hpp>
12
#include <boost/filesystem/fstream.hpp>
s_nakamoto's avatar
s_nakamoto committed
13

14
15
using namespace std;
using namespace boost;
s_nakamoto's avatar
s_nakamoto committed
16
17
18
19
20

//
// Global state
//

21
22
23
24
25
// Name of client reported in the 'version' message. Report the same name
// for both bitcoind and bitcoin-qt, to make it harder for attackers to
// target servers or GUI users specifically.
const std::string CLIENT_NAME("bitcoin-qt");

Pieter Wuille's avatar
Pieter Wuille committed
26
27
28
CCriticalSection cs_setpwalletRegistered;
set<CWallet*> setpwalletRegistered;

s_nakamoto's avatar
s_nakamoto committed
29
30
CCriticalSection cs_main;

31
static map<uint256, CTransaction> mapTransactions;
s_nakamoto's avatar
s_nakamoto committed
32
33
34
35
36
CCriticalSection cs_mapTransactions;
unsigned int nTransactionsUpdated = 0;
map<COutPoint, CInPoint> mapNextTx;

map<uint256, CBlockIndex*> mapBlockIndex;
37
uint256 hashGenesisBlock("0x000000000019d6689c085ae165831e934ff763ae46a2a6c172b3f1b60a8ce26f");
38
static CBigNum bnProofOfWorkLimit(~uint256(0) >> 32);
s_nakamoto's avatar
s_nakamoto committed
39
40
41
42
43
44
CBlockIndex* pindexGenesisBlock = NULL;
int nBestHeight = -1;
CBigNum bnBestChainWork = 0;
CBigNum bnBestInvalidWork = 0;
uint256 hashBestChain = 0;
CBlockIndex* pindexBest = NULL;
45
int64 nTimeBestReceived = 0;
s_nakamoto's avatar
s_nakamoto committed
46

47
48
CMedianFilter<int> cPeerBlockCounts(5, 0); // Amount of blocks that other nodes claim to have

s_nakamoto's avatar
s_nakamoto committed
49
50
51
52
53
54
55
56
map<uint256, CBlock*> mapOrphanBlocks;
multimap<uint256, CBlock*> mapOrphanBlocksByPrev;

map<uint256, CDataStream*> mapOrphanTransactions;
multimap<uint256, CDataStream*> mapOrphanTransactionsByPrev;


double dHashesPerSec;
57
int64 nHPSTimerStart;
s_nakamoto's avatar
s_nakamoto committed
58
59
60

// Settings
int fGenerateBitcoins = false;
61
int64 nTransactionFee = 0;
s_nakamoto's avatar
s_nakamoto committed
62
63
64
65
int fLimitProcessors = false;
int nLimitProcessors = 1;
int fMinimizeToTray = true;
int fMinimizeOnClose = true;
66
67
68
69
70
71
#if USE_UPNP
int fUseUPnP = true;
#else
int fUseUPnP = false;
#endif

s_nakamoto's avatar
s_nakamoto committed
72

Pieter Wuille's avatar
Pieter Wuille committed
73
74
75
76
77
//////////////////////////////////////////////////////////////////////////////
//
// dispatching functions
//

Pieter Wuille's avatar
Pieter Wuille committed
78
79
80
// These functions dispatch to one or all registered wallets


Pieter Wuille's avatar
Pieter Wuille committed
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
void RegisterWallet(CWallet* pwalletIn)
{
    CRITICAL_BLOCK(cs_setpwalletRegistered)
    {
        setpwalletRegistered.insert(pwalletIn);
    }
}

void UnregisterWallet(CWallet* pwalletIn)
{
    CRITICAL_BLOCK(cs_setpwalletRegistered)
    {
        setpwalletRegistered.erase(pwalletIn);
    }
}

Pieter Wuille's avatar
Pieter Wuille committed
97
// check whether the passed transaction is from us
Pieter Wuille's avatar
Pieter Wuille committed
98
99
100
101
102
103
104
105
bool static IsFromMe(CTransaction& tx)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        if (pwallet->IsFromMe(tx))
            return true;
    return false;
}

Pieter Wuille's avatar
Pieter Wuille committed
106
// get the wallet transaction with the given hash (if it exists)
Pieter Wuille's avatar
Pieter Wuille committed
107
108
109
110
111
112
113
114
bool static GetTransaction(const uint256& hashTx, CWalletTx& wtx)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        if (pwallet->GetTransaction(hashTx,wtx))
            return true;
    return false;
}

Pieter Wuille's avatar
Pieter Wuille committed
115
// erases transaction with the given hash from all wallets
Pieter Wuille's avatar
Pieter Wuille committed
116
117
118
119
120
121
void static EraseFromWallets(uint256 hash)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->EraseFromWallet(hash);
}

Pieter Wuille's avatar
Pieter Wuille committed
122
// make sure all wallets know about the given transaction, in the given block
Pieter Wuille's avatar
Pieter Wuille committed
123
124
125
126
127
128
void static SyncWithWallets(const CTransaction& tx, const CBlock* pblock = NULL, bool fUpdate = false)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->AddToWalletIfInvolvingMe(tx, pblock, fUpdate);
}

Pieter Wuille's avatar
Pieter Wuille committed
129
// notify wallets about a new best chain
Pieter Wuille's avatar
Pieter Wuille committed
130
131
132
133
134
135
void static SetBestChain(const CBlockLocator& loc)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->SetBestChain(loc);
}

Pieter Wuille's avatar
Pieter Wuille committed
136
// notify wallets about an updated transaction
Pieter Wuille's avatar
Pieter Wuille committed
137
138
139
140
141
142
void static UpdatedTransaction(const uint256& hashTx)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->UpdatedTransaction(hashTx);
}

Pieter Wuille's avatar
Pieter Wuille committed
143
// dump all wallets
Pieter Wuille's avatar
Pieter Wuille committed
144
145
146
147
148
149
void static PrintWallets(const CBlock& block)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->PrintWallet(block);
}

Pieter Wuille's avatar
Pieter Wuille committed
150
// notify wallets about an incoming inventory (for request counts)
Pieter Wuille's avatar
Pieter Wuille committed
151
152
153
154
155
156
void static Inventory(const uint256& hash)
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->Inventory(hash);
}

Pieter Wuille's avatar
Pieter Wuille committed
157
// ask wallets to resend their transactions
Pieter Wuille's avatar
Pieter Wuille committed
158
159
160
161
162
163
164
165
166
167
168
169
void static ResendWalletTransactions()
{
    BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
        pwallet->ResendWalletTransactions();
}







s_nakamoto's avatar
s_nakamoto committed
170
171
172
173
174
//////////////////////////////////////////////////////////////////////////////
//
// mapOrphanTransactions
//

Pieter Wuille's avatar
Pieter Wuille committed
175
void static AddOrphanTx(const CDataStream& vMsg)
s_nakamoto's avatar
s_nakamoto committed
176
177
178
179
180
181
182
{
    CTransaction tx;
    CDataStream(vMsg) >> tx;
    uint256 hash = tx.GetHash();
    if (mapOrphanTransactions.count(hash))
        return;
    CDataStream* pvMsg = mapOrphanTransactions[hash] = new CDataStream(vMsg);
183
    BOOST_FOREACH(const CTxIn& txin, tx.vin)
s_nakamoto's avatar
s_nakamoto committed
184
185
186
        mapOrphanTransactionsByPrev.insert(make_pair(txin.prevout.hash, pvMsg));
}

Pieter Wuille's avatar
Pieter Wuille committed
187
void static EraseOrphanTx(uint256 hash)
s_nakamoto's avatar
s_nakamoto committed
188
189
190
191
192
193
{
    if (!mapOrphanTransactions.count(hash))
        return;
    const CDataStream* pvMsg = mapOrphanTransactions[hash];
    CTransaction tx;
    CDataStream(*pvMsg) >> tx;
194
    BOOST_FOREACH(const CTxIn& txin, tx.vin)
s_nakamoto's avatar
s_nakamoto committed
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
    {
        for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(txin.prevout.hash);
             mi != mapOrphanTransactionsByPrev.upper_bound(txin.prevout.hash);)
        {
            if ((*mi).second == pvMsg)
                mapOrphanTransactionsByPrev.erase(mi++);
            else
                mi++;
        }
    }
    delete pvMsg;
    mapOrphanTransactions.erase(hash);
}








//////////////////////////////////////////////////////////////////////////////
//
218
// CTransaction and CTxIndex
s_nakamoto's avatar
s_nakamoto committed
219
220
//

s_nakamoto's avatar
s_nakamoto committed
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet)
{
    SetNull();
    if (!txdb.ReadTxIndex(prevout.hash, txindexRet))
        return false;
    if (!ReadFromDisk(txindexRet.pos))
        return false;
    if (prevout.n >= vout.size())
    {
        SetNull();
        return false;
    }
    return true;
}

bool CTransaction::ReadFromDisk(CTxDB& txdb, COutPoint prevout)
{
    CTxIndex txindex;
    return ReadFromDisk(txdb, prevout, txindex);
}

bool CTransaction::ReadFromDisk(COutPoint prevout)
{
    CTxDB txdb("r");
    CTxIndex txindex;
    return ReadFromDisk(txdb, prevout, txindex);
}

Gavin Andresen's avatar
Gavin Andresen committed
249
250
251
252
bool CTransaction::IsStandard() const
{
    BOOST_FOREACH(const CTxIn& txin, vin)
    {
253
        // Biggest 'standard' txin is a 3-signature 3-of-3 CHECKMULTISIG
254
        // pay-to-script-hash, which is 3 ~80-byte signatures, 3
Gavin Andresen's avatar
Gavin Andresen committed
255
        // ~65-byte public keys, plus a few script ops.
256
        if (txin.scriptSig.size() > 500)
257
            return false;
Gavin Andresen's avatar
Gavin Andresen committed
258
        if (!txin.scriptSig.IsPushOnly())
259
            return false;
Gavin Andresen's avatar
Gavin Andresen committed
260
261
262
    }
    BOOST_FOREACH(const CTxOut& txout, vout)
        if (!::IsStandard(txout.scriptPubKey))
263
            return false;
Gavin Andresen's avatar
Gavin Andresen committed
264
265
266
267
268
    return true;
}

//
// Check transaction inputs, and make sure any
269
// pay-to-script-hash transactions are evaluating IsStandard scripts
Gavin Andresen's avatar
Gavin Andresen committed
270
271
//
// Why bother? To avoid denial-of-service attacks; an attacker
272
273
274
// can submit a standard HASH... OP_EQUAL transaction,
// which will get accepted into blocks. The redemption
// script can be anything; an attacker could use a very
Gavin Andresen's avatar
Gavin Andresen committed
275
276
277
// expensive-to-check-upon-redemption script like:
//   DUP CHECKSIG DROP ... repeated 100 times... OP_1
//
278
bool CTransaction::AreInputsStandard(const MapPrevTx& mapInputs) const
Gavin Andresen's avatar
Gavin Andresen committed
279
{
280
    if (IsCoinBase())
281
        return true; // Coinbases don't use vin normally
282

Gavin Andresen's avatar
Gavin Andresen committed
283
284
    for (int i = 0; i < vin.size(); i++)
    {
285
        const CTxOut& prev = GetOutputFor(vin[i], mapInputs);
Gavin Andresen's avatar
Gavin Andresen committed
286
287

        vector<vector<unsigned char> > vSolutions;
288
289
        txnouttype whichType;
        // get the scriptPubKey corresponding to this input:
290
        const CScript& prevScript = prev.scriptPubKey;
291
        if (!Solver(prevScript, whichType, vSolutions))
292
            return false;
Gavin Andresen's avatar
Gavin Andresen committed
293
294
295
        if (whichType == TX_SCRIPTHASH)
        {
            vector<vector<unsigned char> > stack;
296
297
298
299

            if (!EvalScript(stack, vin[i].scriptSig, *this, i, 0))
                return false;
            if (stack.empty())
Gavin Andresen's avatar
Gavin Andresen committed
300
                return false;
301
302
            CScript subscript(stack.back().begin(), stack.back().end());
            if (!::IsStandard(subscript))
303
                return false;
Gavin Andresen's avatar
Gavin Andresen committed
304
305
306
307
308
309
        }
    }

    return true;
}

310
311
312
313
314
315
316
317
318
319
320
321
322
323
int
CTransaction::GetLegacySigOpCount() const
{
    int nSigOps = 0;
    BOOST_FOREACH(const CTxIn& txin, vin)
    {
        nSigOps += txin.scriptSig.GetSigOpCount(false);
    }
    BOOST_FOREACH(const CTxOut& txout, vout)
    {
        nSigOps += txout.scriptPubKey.GetSigOpCount(false);
    }
    return nSigOps;
}
s_nakamoto's avatar
s_nakamoto committed
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382


int CMerkleTx::SetMerkleBranch(const CBlock* pblock)
{
    if (fClient)
    {
        if (hashBlock == 0)
            return 0;
    }
    else
    {
        CBlock blockTmp;
        if (pblock == NULL)
        {
            // Load the block this tx is in
            CTxIndex txindex;
            if (!CTxDB("r").ReadTxIndex(GetHash(), txindex))
                return 0;
            if (!blockTmp.ReadFromDisk(txindex.pos.nFile, txindex.pos.nBlockPos))
                return 0;
            pblock = &blockTmp;
        }

        // Update the tx's hashBlock
        hashBlock = pblock->GetHash();

        // Locate the transaction
        for (nIndex = 0; nIndex < pblock->vtx.size(); nIndex++)
            if (pblock->vtx[nIndex] == *(CTransaction*)this)
                break;
        if (nIndex == pblock->vtx.size())
        {
            vMerkleBranch.clear();
            nIndex = -1;
            printf("ERROR: SetMerkleBranch() : couldn't find tx in block\n");
            return 0;
        }

        // Fill in merkle branch
        vMerkleBranch = pblock->GetMerkleBranch(nIndex);
    }

    // Is the tx in a block that's in the main chain
    map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
    if (mi == mapBlockIndex.end())
        return 0;
    CBlockIndex* pindex = (*mi).second;
    if (!pindex || !pindex->IsInMainChain())
        return 0;

    return pindexBest->nHeight - pindex->nHeight + 1;
}







383
384
385
bool CTransaction::CheckTransaction() const
{
    // Basic checks that don't depend on any context
386
    if (vin.empty())
387
        return DoS(10, error("CTransaction::CheckTransaction() : vin empty"));
388
    if (vout.empty())
389
        return DoS(10, error("CTransaction::CheckTransaction() : vout empty"));
390
391
    // Size limits
    if (::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
392
        return DoS(100, error("CTransaction::CheckTransaction() : size limits failed"));
393
394

    // Check for negative or overflow output values
395
    int64 nValueOut = 0;
396
    BOOST_FOREACH(const CTxOut& txout, vout)
397
398
    {
        if (txout.nValue < 0)
399
            return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue negative"));
400
        if (txout.nValue > MAX_MONEY)
401
            return DoS(100, error("CTransaction::CheckTransaction() : txout.nValue too high"));
402
403
        nValueOut += txout.nValue;
        if (!MoneyRange(nValueOut))
404
            return DoS(100, error("CTransaction::CheckTransaction() : txout total out of range"));
405
406
    }

407
408
409
410
411
412
413
414
415
    // Check for duplicate inputs
    set<COutPoint> vInOutPoints;
    BOOST_FOREACH(const CTxIn& txin, vin)
    {
        if (vInOutPoints.count(txin.prevout))
            return false;
        vInOutPoints.insert(txin.prevout);
    }

416
417
418
    if (IsCoinBase())
    {
        if (vin[0].scriptSig.size() < 2 || vin[0].scriptSig.size() > 100)
419
            return DoS(100, error("CTransaction::CheckTransaction() : coinbase script size"));
420
421
422
    }
    else
    {
423
        BOOST_FOREACH(const CTxIn& txin, vin)
424
            if (txin.prevout.IsNull())
425
                return DoS(10, error("CTransaction::CheckTransaction() : prevout is null"));
426
427
428
429
430
    }

    return true;
}

s_nakamoto's avatar
s_nakamoto committed
431
bool CTransaction::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs, bool* pfMissingInputs)
s_nakamoto's avatar
s_nakamoto committed
432
433
434
435
{
    if (pfMissingInputs)
        *pfMissingInputs = false;

436
437
438
    if (!CheckTransaction())
        return error("AcceptToMemoryPool() : CheckTransaction failed");

s_nakamoto's avatar
s_nakamoto committed
439
440
    // Coinbase is only valid in a block, not as a loose transaction
    if (IsCoinBase())
441
        return DoS(100, error("AcceptToMemoryPool() : coinbase as individual tx"));
s_nakamoto's avatar
s_nakamoto committed
442
443

    // To help v0.1.5 clients who would see it as a negative number
444
    if ((int64)nLockTime > std::numeric_limits<int>::max())
s_nakamoto's avatar
s_nakamoto committed
445
446
        return error("AcceptToMemoryPool() : not accepting nLockTime beyond 2038 yet");

447
448
    // Rather not work on nonstandard transactions (unless -testnet)
    if (!fTestNet && !IsStandard())
449
450
        return error("AcceptToMemoryPool() : nonstandard transaction type");

s_nakamoto's avatar
s_nakamoto committed
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
    // Do we already have it?
    uint256 hash = GetHash();
    CRITICAL_BLOCK(cs_mapTransactions)
        if (mapTransactions.count(hash))
            return false;
    if (fCheckInputs)
        if (txdb.ContainsTx(hash))
            return false;

    // Check for conflicts with in-memory transactions
    CTransaction* ptxOld = NULL;
    for (int i = 0; i < vin.size(); i++)
    {
        COutPoint outpoint = vin[i].prevout;
        if (mapNextTx.count(outpoint))
        {
            // Disable replacement feature for now
            return false;

            // Allow replacing with a newer version of the same transaction
            if (i != 0)
                return false;
            ptxOld = mapNextTx[outpoint].ptx;
474
475
            if (ptxOld->IsFinal())
                return false;
s_nakamoto's avatar
s_nakamoto committed
476
477
478
479
480
481
482
483
484
485
486
487
            if (!IsNewerThan(*ptxOld))
                return false;
            for (int i = 0; i < vin.size(); i++)
            {
                COutPoint outpoint = vin[i].prevout;
                if (!mapNextTx.count(outpoint) || mapNextTx[outpoint].ptx != ptxOld)
                    return false;
            }
            break;
        }
    }

488
    if (fCheckInputs)
s_nakamoto's avatar
s_nakamoto committed
489
    {
490
        MapPrevTx mapInputs;
491
        map<uint256, CTxIndex> mapUnused;
492
493
        bool fInvalid = false;
        if (!FetchInputs(txdb, mapUnused, false, false, mapInputs, fInvalid))
Gavin Andresen's avatar
Gavin Andresen committed
494
        {
495
496
            if (fInvalid)
                return error("AcceptToMemoryPool() : FetchInputs found invalid tx %s", hash.ToString().substr(0,10).c_str());
Gavin Andresen's avatar
Gavin Andresen committed
497
498
499
500
501
            if (pfMissingInputs)
                *pfMissingInputs = true;
            return error("AcceptToMemoryPool() : FetchInputs failed %s", hash.ToString().substr(0,10).c_str());
        }

502
        // Check for non-standard pay-to-script-hash in inputs
503
        if (!AreInputsStandard(mapInputs) && !fTestNet)
Gavin Andresen's avatar
Gavin Andresen committed
504
505
            return error("AcceptToMemoryPool() : nonstandard transaction input");

506
507
508
509
        // Note: if you modify this code to accept non-standard transactions, then
        // you should add code here to check that the transaction does a
        // reasonable number of ECDSA signature verifications.

510
511
512
513
514
515
        int64 nFees = GetValueIn(mapInputs)-GetValueOut();
        unsigned int nSize = ::GetSerializeSize(*this, SER_NETWORK);

        // Don't accept it if it can't get into a block
        if (nFees < GetMinFee(1000, true, GMF_RELAY))
            return error("AcceptToMemoryPool() : not enough fees");
516

517
        // Continuously rate-limit free transactions
518
519
        // This mitigates 'penny-flooding' -- sending thousands of free transactions just to
        // be annoying or make other's transactions take longer to confirm.
520
        if (nFees < MIN_RELAY_TX_FEE)
521
        {
522
            static CCriticalSection cs;
523
            static double dFreeCount;
524
525
            static int64 nLastTime;
            int64 nNow = GetTime();
526
527

            CRITICAL_BLOCK(cs)
528
            {
529
530
531
532
533
                // Use an exponentially decaying ~10-minute window:
                dFreeCount *= pow(1.0 - 1.0/600.0, (double)(nNow - nLastTime));
                nLastTime = nNow;
                // -limitfreerelay unit is thousand-bytes-per-minute
                // At default rate it would take over a month to fill 1GB
Pieter Wuille's avatar
Pieter Wuille committed
534
                if (dFreeCount > GetArg("-limitfreerelay", 15)*10*1000 && !IsFromMe(*this))
535
536
537
538
                    return error("AcceptToMemoryPool() : free transaction rejected by rate limiter");
                if (fDebug)
                    printf("Rate limit dFreeCount: %g => %g\n", dFreeCount, dFreeCount+nSize);
                dFreeCount += nSize;
539
540
            }
        }
541
542
543
544
545
546
547

        // Check against previous transactions
        // This is done last to help prevent CPU exhaustion denial-of-service attacks.
        if (!ConnectInputs(mapInputs, mapUnused, CDiskTxPos(1,1,1), pindexBest, false, false))
        {
            return error("AcceptToMemoryPool() : ConnectInputs failed %s", hash.ToString().substr(0,10).c_str());
        }
s_nakamoto's avatar
s_nakamoto committed
548
549
550
551
552
553
554
    }

    // Store transaction in memory
    CRITICAL_BLOCK(cs_mapTransactions)
    {
        if (ptxOld)
        {
s_nakamoto's avatar
s_nakamoto committed
555
            printf("AcceptToMemoryPool() : replacing tx %s with new version\n", ptxOld->GetHash().ToString().c_str());
s_nakamoto's avatar
s_nakamoto committed
556
557
            ptxOld->RemoveFromMemoryPool();
        }
s_nakamoto's avatar
s_nakamoto committed
558
        AddToMemoryPoolUnchecked();
s_nakamoto's avatar
s_nakamoto committed
559
560
561
562
563
    }

    ///// are we sure this is ok when loading transactions or restoring block txes
    // If updated, erase old tx from wallet
    if (ptxOld)
Pieter Wuille's avatar
Pieter Wuille committed
564
        EraseFromWallets(ptxOld->GetHash());
s_nakamoto's avatar
s_nakamoto committed
565

566
    printf("AcceptToMemoryPool(): accepted %s\n", hash.ToString().substr(0,10).c_str());
s_nakamoto's avatar
s_nakamoto committed
567
568
569
    return true;
}

570
571
572
573
574
bool CTransaction::AcceptToMemoryPool(bool fCheckInputs, bool* pfMissingInputs)
{
    CTxDB txdb("r");
    return AcceptToMemoryPool(txdb, fCheckInputs, pfMissingInputs);
}
s_nakamoto's avatar
s_nakamoto committed
575

576
577
uint64 nPooledTx = 0;

s_nakamoto's avatar
s_nakamoto committed
578
bool CTransaction::AddToMemoryPoolUnchecked()
s_nakamoto's avatar
s_nakamoto committed
579
{
580
    printf("AcceptToMemoryPoolUnchecked(): size %lu\n",  mapTransactions.size());
s_nakamoto's avatar
s_nakamoto committed
581
    // Add to memory pool without checking anything.  Don't call this directly,
s_nakamoto's avatar
s_nakamoto committed
582
    // call AcceptToMemoryPool to properly check the transaction first.
s_nakamoto's avatar
s_nakamoto committed
583
584
585
586
587
588
589
    CRITICAL_BLOCK(cs_mapTransactions)
    {
        uint256 hash = GetHash();
        mapTransactions[hash] = *this;
        for (int i = 0; i < vin.size(); i++)
            mapNextTx[vin[i].prevout] = CInPoint(&mapTransactions[hash], i);
        nTransactionsUpdated++;
590
        ++nPooledTx;
s_nakamoto's avatar
s_nakamoto committed
591
592
593
594
595
596
597
598
599
600
    }
    return true;
}


bool CTransaction::RemoveFromMemoryPool()
{
    // Remove transaction from memory pool
    CRITICAL_BLOCK(cs_mapTransactions)
    {
601
        BOOST_FOREACH(const CTxIn& txin, vin)
s_nakamoto's avatar
s_nakamoto committed
602
603
604
            mapNextTx.erase(txin.prevout);
        mapTransactions.erase(GetHash());
        nTransactionsUpdated++;
605
        --nPooledTx;
s_nakamoto's avatar
s_nakamoto committed
606
607
608
609
610
611
612
613
614
    }
    return true;
}






615
int CMerkleTx::GetDepthInMainChain(CBlockIndex* &pindexRet) const
s_nakamoto's avatar
s_nakamoto committed
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
{
    if (hashBlock == 0 || nIndex == -1)
        return 0;

    // Find the block it claims to be in
    map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
    if (mi == mapBlockIndex.end())
        return 0;
    CBlockIndex* pindex = (*mi).second;
    if (!pindex || !pindex->IsInMainChain())
        return 0;

    // Make sure the merkle branch connects to this block
    if (!fMerkleVerified)
    {
        if (CBlock::CheckMerkleBranch(GetHash(), vMerkleBranch, nIndex) != pindex->hashMerkleRoot)
            return 0;
        fMerkleVerified = true;
    }

636
    pindexRet = pindex;
s_nakamoto's avatar
s_nakamoto committed
637
638
639
640
641
642
643
644
645
646
647
648
    return pindexBest->nHeight - pindex->nHeight + 1;
}


int CMerkleTx::GetBlocksToMaturity() const
{
    if (!IsCoinBase())
        return 0;
    return max(0, (COINBASE_MATURITY+20) - GetDepthInMainChain());
}


s_nakamoto's avatar
s_nakamoto committed
649
bool CMerkleTx::AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs)
s_nakamoto's avatar
s_nakamoto committed
650
651
652
653
654
{
    if (fClient)
    {
        if (!IsInMainChain() && !ClientConnectInputs())
            return false;
s_nakamoto's avatar
s_nakamoto committed
655
        return CTransaction::AcceptToMemoryPool(txdb, false);
s_nakamoto's avatar
s_nakamoto committed
656
657
658
    }
    else
    {
s_nakamoto's avatar
s_nakamoto committed
659
        return CTransaction::AcceptToMemoryPool(txdb, fCheckInputs);
s_nakamoto's avatar
s_nakamoto committed
660
661
662
    }
}

663
664
665
666
667
668
bool CMerkleTx::AcceptToMemoryPool()
{
    CTxDB txdb("r");
    return AcceptToMemoryPool(txdb);
}

s_nakamoto's avatar
s_nakamoto committed
669
670
671
672
673
674


bool CWalletTx::AcceptWalletTransaction(CTxDB& txdb, bool fCheckInputs)
{
    CRITICAL_BLOCK(cs_mapTransactions)
    {
s_nakamoto's avatar
s_nakamoto committed
675
        // Add previous supporting transactions first
676
        BOOST_FOREACH(CMerkleTx& tx, vtxPrev)
s_nakamoto's avatar
s_nakamoto committed
677
678
679
680
681
        {
            if (!tx.IsCoinBase())
            {
                uint256 hash = tx.GetHash();
                if (!mapTransactions.count(hash) && !txdb.ContainsTx(hash))
s_nakamoto's avatar
s_nakamoto committed
682
                    tx.AcceptToMemoryPool(txdb, fCheckInputs);
s_nakamoto's avatar
s_nakamoto committed
683
684
            }
        }
s_nakamoto's avatar
s_nakamoto committed
685
        return AcceptToMemoryPool(txdb, fCheckInputs);
s_nakamoto's avatar
s_nakamoto committed
686
    }
s_nakamoto's avatar
s_nakamoto committed
687
    return false;
s_nakamoto's avatar
s_nakamoto committed
688
689
}

690
bool CWalletTx::AcceptWalletTransaction() 
s_nakamoto's avatar
s_nakamoto committed
691
692
{
    CTxDB txdb("r");
693
    return AcceptWalletTransaction(txdb);
s_nakamoto's avatar
s_nakamoto committed
694
695
}

696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
int CTxIndex::GetDepthInMainChain() const
{
    // Read block header
    CBlock block;
    if (!block.ReadFromDisk(pos.nFile, pos.nBlockPos, false))
        return 0;
    // Find the block in the index
    map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(block.GetHash());
    if (mi == mapBlockIndex.end())
        return 0;
    CBlockIndex* pindex = (*mi).second;
    if (!pindex || !pindex->IsInMainChain())
        return 0;
    return 1 + nBestHeight - pindex->nHeight;
}

s_nakamoto's avatar
s_nakamoto committed
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727









//////////////////////////////////////////////////////////////////////////////
//
// CBlock and CBlockIndex
//

bool CBlock::ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions)
{
728
729
730
731
732
    if (!fReadTransactions)
    {
        *this = pindex->GetBlockHeader();
        return true;
    }
s_nakamoto's avatar
s_nakamoto committed
733
734
735
736
737
738
739
    if (!ReadFromDisk(pindex->nFile, pindex->nBlockPos, fReadTransactions))
        return false;
    if (GetHash() != pindex->GetBlockHash())
        return error("CBlock::ReadFromDisk() : GetHash() doesn't match index");
    return true;
}

Pieter Wuille's avatar
Pieter Wuille committed
740
uint256 static GetOrphanRoot(const CBlock* pblock)
s_nakamoto's avatar
s_nakamoto committed
741
742
743
744
745
746
747
{
    // Work back to the first block in the orphan chain
    while (mapOrphanBlocks.count(pblock->hashPrevBlock))
        pblock = mapOrphanBlocks[pblock->hashPrevBlock];
    return pblock->GetHash();
}

748
int64 static GetBlockValue(int nHeight, int64 nFees)
s_nakamoto's avatar
s_nakamoto committed
749
{
750
    int64 nSubsidy = 50 * COIN;
s_nakamoto's avatar
s_nakamoto committed
751
752
753
754
755
756
757

    // Subsidy is cut in half every 4 years
    nSubsidy >>= (nHeight / 210000);

    return nSubsidy + nFees;
}

758
759
760
static const int64 nTargetTimespan = 14 * 24 * 60 * 60; // two weeks
static const int64 nTargetSpacing = 10 * 60;
static const int64 nInterval = nTargetTimespan / nTargetSpacing;
761
762
763
764
765

//
// minimum amount of work that could possibly be required nTime after
// minimum work required was nBase
//
766
unsigned int ComputeMinWork(unsigned int nBase, int64 nTime)
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
{
    CBigNum bnResult;
    bnResult.SetCompact(nBase);
    while (nTime > 0 && bnResult < bnProofOfWorkLimit)
    {
        // Maximum 400% adjustment...
        bnResult *= 4;
        // ... in best-case exactly 4-times-normal target time
        nTime -= nTargetTimespan*4;
    }
    if (bnResult > bnProofOfWorkLimit)
        bnResult = bnProofOfWorkLimit;
    return bnResult.GetCompact();
}

Pieter Wuille's avatar
Pieter Wuille committed
782
unsigned int static GetNextWorkRequired(const CBlockIndex* pindexLast)
s_nakamoto's avatar
s_nakamoto committed
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
{

    // Genesis block
    if (pindexLast == NULL)
        return bnProofOfWorkLimit.GetCompact();

    // Only change once per interval
    if ((pindexLast->nHeight+1) % nInterval != 0)
        return pindexLast->nBits;

    // Go back by what we want to be 14 days worth of blocks
    const CBlockIndex* pindexFirst = pindexLast;
    for (int i = 0; pindexFirst && i < nInterval-1; i++)
        pindexFirst = pindexFirst->pprev;
    assert(pindexFirst);

    // Limit adjustment step
800
    int64 nActualTimespan = pindexLast->GetBlockTime() - pindexFirst->GetBlockTime();
s_nakamoto's avatar
s_nakamoto committed
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
    printf("  nActualTimespan = %"PRI64d"  before bounds\n", nActualTimespan);
    if (nActualTimespan < nTargetTimespan/4)
        nActualTimespan = nTargetTimespan/4;
    if (nActualTimespan > nTargetTimespan*4)
        nActualTimespan = nTargetTimespan*4;

    // Retarget
    CBigNum bnNew;
    bnNew.SetCompact(pindexLast->nBits);
    bnNew *= nActualTimespan;
    bnNew /= nTargetTimespan;

    if (bnNew > bnProofOfWorkLimit)
        bnNew = bnProofOfWorkLimit;

    /// debug print
    printf("GetNextWorkRequired RETARGET\n");
    printf("nTargetTimespan = %"PRI64d"    nActualTimespan = %"PRI64d"\n", nTargetTimespan, nActualTimespan);
    printf("Before: %08x  %s\n", pindexLast->nBits, CBigNum().SetCompact(pindexLast->nBits).getuint256().ToString().c_str());
    printf("After:  %08x  %s\n", bnNew.GetCompact(), bnNew.getuint256().ToString().c_str());

    return bnNew.GetCompact();
}

bool CheckProofOfWork(uint256 hash, unsigned int nBits)
{
    CBigNum bnTarget;
    bnTarget.SetCompact(nBits);

    // Check range
    if (bnTarget <= 0 || bnTarget > bnProofOfWorkLimit)
        return error("CheckProofOfWork() : nBits below minimum work");

    // Check proof of work matches claimed amount
    if (hash > bnTarget.getuint256())
        return error("CheckProofOfWork() : hash doesn't match nBits");

    return true;
}

841
// Return maximum amount of blocks that other nodes claim to have
842
int GetNumBlocksOfPeers()
843
{
844
    return std::max(cPeerBlockCounts.median(), Checkpoints::GetTotalBlocksEstimate());
845
846
}

s_nakamoto's avatar
s_nakamoto committed
847
848
bool IsInitialBlockDownload()
{
849
    if (pindexBest == NULL || nBestHeight < Checkpoints::GetTotalBlocksEstimate())
s_nakamoto's avatar
s_nakamoto committed
850
        return true;
851
    static int64 nLastUpdate;
s_nakamoto's avatar
s_nakamoto committed
852
853
854
855
856
857
858
859
860
861
    static CBlockIndex* pindexLastBest;
    if (pindexBest != pindexLastBest)
    {
        pindexLastBest = pindexBest;
        nLastUpdate = GetTime();
    }
    return (GetTime() - nLastUpdate < 10 &&
            pindexBest->GetBlockTime() < GetTime() - 24 * 60 * 60);
}

Pieter Wuille's avatar
Pieter Wuille committed
862
void static InvalidChainFound(CBlockIndex* pindexNew)
s_nakamoto's avatar
s_nakamoto committed
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
{
    if (pindexNew->bnChainWork > bnBestInvalidWork)
    {
        bnBestInvalidWork = pindexNew->bnChainWork;
        CTxDB().WriteBestInvalidWork(bnBestInvalidWork);
        MainFrameRepaint();
    }
    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());
    printf("InvalidChainFound:  current best=%s  height=%d  work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());
    if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
        printf("InvalidChainFound: WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.\n");
}











bool CTransaction::DisconnectInputs(CTxDB& txdb)
{
    // Relinquish previous transactions' spent pointers
    if (!IsCoinBase())
    {
891
        BOOST_FOREACH(const CTxIn& txin, vin)
s_nakamoto's avatar
s_nakamoto committed
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
        {
            COutPoint prevout = txin.prevout;

            // Get prev txindex from disk
            CTxIndex txindex;
            if (!txdb.ReadTxIndex(prevout.hash, txindex))
                return error("DisconnectInputs() : ReadTxIndex failed");

            if (prevout.n >= txindex.vSpent.size())
                return error("DisconnectInputs() : prevout.n out of range");

            // Mark outpoint as not spent
            txindex.vSpent[prevout.n].SetNull();

            // Write back
907
908
            if (!txdb.UpdateTxIndex(prevout.hash, txindex))
                return error("DisconnectInputs() : UpdateTxIndex failed");
s_nakamoto's avatar
s_nakamoto committed
909
910
911
912
913
914
915
916
917
918
919
        }
    }

    // Remove transaction from index
    if (!txdb.EraseTxIndex(*this))
        return error("DisconnectInputs() : EraseTxPos failed");

    return true;
}


Gavin Andresen's avatar
Gavin Andresen committed
920
bool CTransaction::FetchInputs(CTxDB& txdb, const map<uint256, CTxIndex>& mapTestPool,
921
                               bool fBlock, bool fMiner, MapPrevTx& inputsRet, bool& fInvalid)
Gavin Andresen's avatar
Gavin Andresen committed
922
{
923
924
925
926
927
928
    // FetchInputs can return false either because we just haven't seen some inputs
    // (in which case the transaction should be stored as an orphan)
    // or because the transaction is malformed (in which case the transaction should
    // be dropped).  If tx is definitely invalid, fInvalid will be set to true.
    fInvalid = false;

Gavin Andresen's avatar
Gavin Andresen committed
929
930
    if (IsCoinBase())
        return true; // Coinbase transactions have no inputs to fetch.
931

Gavin Andresen's avatar
Gavin Andresen committed
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
    for (int i = 0; i < vin.size(); i++)
    {
        COutPoint prevout = vin[i].prevout;
        if (inputsRet.count(prevout.hash))
            continue; // Got it already

        // Read txindex
        CTxIndex& txindex = inputsRet[prevout.hash].first;
        bool fFound = true;
        if ((fBlock || fMiner) && mapTestPool.count(prevout.hash))
        {
            // Get txindex from current proposed changes
            txindex = mapTestPool.find(prevout.hash)->second;
        }
        else
        {
            // Read txindex from txdb
            fFound = txdb.ReadTxIndex(prevout.hash, txindex);
        }
        if (!fFound && (fBlock || fMiner))
            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());

        // Read txPrev
        CTransaction& txPrev = inputsRet[prevout.hash].second;
        if (!fFound || txindex.pos == CDiskTxPos(1,1,1))
        {
            // Get prev tx from single transactions in memory
            CRITICAL_BLOCK(cs_mapTransactions)
            {
                if (!mapTransactions.count(prevout.hash))
                    return error("FetchInputs() : %s mapTransactions prev not found %s", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
                txPrev = mapTransactions[prevout.hash];
            }
            if (!fFound)
                txindex.vSpent.resize(txPrev.vout.size());
        }
        else
        {
            // Get prev tx from disk
            if (!txPrev.ReadFromDisk(txindex.pos))
                return error("FetchInputs() : %s ReadFromDisk prev tx %s failed", GetHash().ToString().substr(0,10).c_str(),  prevout.hash.ToString().substr(0,10).c_str());
        }
974
975
976
977
978
979
    }

    // Make sure all prevout.n's are valid:
    for (int i = 0; i < vin.size(); i++)
    {
        const COutPoint prevout = vin[i].prevout;
980
        assert(inputsRet.count(prevout.hash) != 0);
981
982
        const CTxIndex& txindex = inputsRet[prevout.hash].first;
        const CTransaction& txPrev = inputsRet[prevout.hash].second;
983
        if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
984
985
986
987
        {
            // Revisit this if/when transaction replacement is implemented and allows
            // adding inputs:
            fInvalid = true;
988
            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()));
989
        }
Gavin Andresen's avatar
Gavin Andresen committed
990
    }
991

Gavin Andresen's avatar
Gavin Andresen committed
992
993
994
    return true;
}

995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
const CTxOut& CTransaction::GetOutputFor(const CTxIn& input, const MapPrevTx& inputs) const
{
    MapPrevTx::const_iterator mi = inputs.find(input.prevout.hash);
    if (mi == inputs.end())
        throw std::runtime_error("CTransaction::GetOutputFor() : prevout.hash not found");

    const CTransaction& txPrev = (mi->second).second;
    if (input.prevout.n >= txPrev.vout.size())
        throw std::runtime_error("CTransaction::GetOutputFor() : prevout.n out of range");

    return txPrev.vout[input.prevout.n];
}

int64 CTransaction::GetValueIn(const MapPrevTx& inputs) const
{
    if (IsCoinBase())
        return 0;

    int64 nResult = 0;
    for (int i = 0; i < vin.size(); i++)
    {
        nResult += GetOutputFor(vin[i], inputs).nValue;
    }
    return nResult;

}

1022
int CTransaction::GetP2SHSigOpCount(const MapPrevTx& inputs) const
1023
1024
1025
1026
1027
1028
1029
{
    if (IsCoinBase())
        return 0;

    int nSigOps = 0;
    for (int i = 0; i < vin.size(); i++)
    {
1030
1031
1032
        const CTxOut& prevout = GetOutputFor(vin[i], inputs);
        if (prevout.scriptPubKey.IsPayToScriptHash())
            nSigOps += prevout.scriptPubKey.GetSigOpCount(vin[i].scriptSig);
1033
1034
1035
1036
1037
    }
    return nSigOps;
}

bool CTransaction::ConnectInputs(MapPrevTx inputs,
1038
                                 map<uint256, CTxIndex>& mapTestPool, const CDiskTxPos& posThisTx,
1039
                                 const CBlockIndex* pindexBlock, bool fBlock, bool fMiner, bool fStrictPayToScriptHash)
s_nakamoto's avatar
s_nakamoto committed
1040
1041
{
    // Take over previous transactions' spent pointers
1042
1043
1044
    // fBlock is true when this is called from AcceptBlock when a new best-block is added to the blockchain
    // fMiner is true when called from the internal bitcoin miner
    // ... both are false when called from CTransaction::AcceptToMemoryPool
s_nakamoto's avatar
s_nakamoto committed
1045
1046
    if (!IsCoinBase())
    {
1047
        int64 nValueIn = 0;
1048
        int64 nFees = 0;
s_nakamoto's avatar
s_nakamoto committed
1049
1050
1051
        for (int i = 0; i < vin.size(); i++)
        {
            COutPoint prevout = vin[i].prevout;
Gavin Andresen's avatar
Gavin Andresen committed
1052
1053
1054
            assert(inputs.count(prevout.hash) > 0);
            CTxIndex& txindex = inputs[prevout.hash].first;
            CTransaction& txPrev = inputs[prevout.hash].second;
s_nakamoto's avatar
s_nakamoto committed
1055
1056

            if (prevout.n >= txPrev.vout.size() || prevout.n >= txindex.vSpent.size())
1057
                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()));
s_nakamoto's avatar
s_nakamoto committed
1058
1059
1060

            // If prev is coinbase, check that it's matured
            if (txPrev.IsCoinBase())
1061
                for (const CBlockIndex* pindex = pindexBlock; pindex && pindexBlock->nHeight - pindex->nHeight < COINBASE_MATURITY; pindex = pindex->pprev)
s_nakamoto's avatar
s_nakamoto committed
1062
1063
1064
                    if (pindex->nBlockPos == txindex.pos.nBlockPos && pindex->nFile == txindex.pos.nFile)
                        return error("ConnectInputs() : tried to spend coinbase at depth %d", pindexBlock->nHeight - pindex->nHeight);

1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
            // Check for conflicts (double-spend)
            // This doesn't trigger the DoS code on purpose; if it did, it would make it easier
            // for an attacker to attempt to split the network.
            if (!txindex.vSpent[prevout.n].IsNull())
                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());

            // Check for negative or overflow input values
            nValueIn += txPrev.vout[prevout.n].nValue;
            if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
                return DoS(100, error("ConnectInputs() : txin values out of range"));

1076
1077
            // Skip ECDSA signature verification when connecting blocks (fBlock=true)
            // before the last blockchain checkpoint. This is safe because block merkle hashes are
1078
            // still computed and checked, and any change will be caught at the next checkpoint.
1079
            if (!(fBlock && (nBestHeight < Checkpoints::GetTotalBlocksEstimate())))
1080
            {
1081
                // Verify signature
1082
                if (!VerifySignature(txPrev, *this, i, fStrictPayToScriptHash, 0))
1083
                    return DoS(100,error("ConnectInputs() : %s VerifySignature failed", GetHash().ToString().substr(0,10).c_str()));
1084
            }
s_nakamoto's avatar
s_nakamoto committed
1085
1086
1087
1088
1089

            // Mark outpoints as spent
            txindex.vSpent[prevout.n] = posThisTx;

            // Write back
1090
            if (fBlock || fMiner)
1091
            {
s_nakamoto's avatar
s_nakamoto committed
1092
                mapTestPool[prevout.hash] = txindex;
1093
            }
s_nakamoto's avatar
s_nakamoto committed
1094
1095
1096
        }

        if (nValueIn < GetValueOut())
1097
            return DoS(100, error("ConnectInputs() : %s value in < value out", GetHash().ToString().substr(0,10).c_str()));
s_nakamoto's avatar
s_nakamoto committed
1098
1099

        // Tally transaction fees
1100
        int64 nTxFee = nValueIn - GetValueOut();
s_nakamoto's avatar
s_nakamoto committed
1101
        if (nTxFee < 0)
1102
            return DoS(100, error("ConnectInputs() : %s nTxFee < 0", GetHash().ToString().substr(0,10).c_str()));
s_nakamoto's avatar
s_nakamoto committed
1103
        nFees += nTxFee;
s_nakamoto's avatar
s_nakamoto committed
1104
        if (!MoneyRange(nFees))
1105
            return DoS(100, error("ConnectInputs() : nFees out of range"));
s_nakamoto's avatar
s_nakamoto committed
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
    }

    return true;
}


bool CTransaction::ClientConnectInputs()
{
    if (IsCoinBase())
        return false;

    // Take over previous transactions' spent pointers
    CRITICAL_BLOCK(cs_mapTransactions)
    {
1120
        int64 nValueIn = 0;
s_nakamoto's avatar
s_nakamoto committed
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
        for (int i = 0; i < vin.size(); i++)
        {
            // Get prev tx from single transactions in memory
            COutPoint prevout = vin[i].prevout;
            if (!mapTransactions.count(prevout.hash))
                return false;
            CTransaction& txPrev = mapTransactions[prevout.hash];

            if (prevout.n >= txPrev.vout.size())
                return false;

            // Verify signature
1133
            if (!VerifySignature(txPrev, *this, i, true, 0))
s_nakamoto's avatar
s_nakamoto committed
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
                return error("ConnectInputs() : VerifySignature failed");

            ///// this is redundant with the mapNextTx stuff, not sure which I want to get rid of
            ///// this has to go away now that posNext is gone
            // // Check for conflicts
            // if (!txPrev.vout[prevout.n].posNext.IsNull())
            //     return error("ConnectInputs() : prev tx already used");
            //
            // // Flag outpoints as used
            // txPrev.vout[prevout.n].posNext = posThisTx;

            nValueIn += txPrev.vout[prevout.n].nValue;
s_nakamoto's avatar
s_nakamoto committed
1146
1147
1148

            if (!MoneyRange(txPrev.vout[prevout.n].nValue) || !MoneyRange(nValueIn))
                return error("ClientConnectInputs() : txin values out of range");
s_nakamoto's avatar
s_nakamoto committed
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
        }
        if (GetValueOut() > nValueIn)
            return false;
    }

    return true;
}




bool CBlock::DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex)
{
    // Disconnect in reverse order
    for (int i = vtx.size()-1; i >= 0; i--)
        if (!vtx[i].DisconnectInputs(txdb))
            return false;

    // Update block index on disk without changing it in memory.
    // The memory index structure will be changed after the db commits.
    if (pindex->pprev)
    {
        CDiskBlockIndex blockindexPrev(pindex->pprev);
        blockindexPrev.hashNext = 0;
1173
1174
        if (!txdb.WriteBlockIndex(blockindexPrev))
            return error("DisconnectBlock() : WriteBlockIndex failed");
s_nakamoto's avatar
s_nakamoto committed
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
    }

    return true;
}

bool CBlock::ConnectBlock(CTxDB& txdb, CBlockIndex* pindex)
{
    // Check it again in case a previous version let a bad block in
    if (!CheckBlock())
        return false;

1186
1187
1188
1189
1190
1191
    // To avoid being on the short end of a block-chain split,
    // don't do secondary validation of pay-to-script-hash transactions
    // until blocks with timestamps after paytoscripthashtime:
    int64 nEvalSwitchTime = GetArg("-paytoscripthashtime", 1329264000); // Feb 15, 2012
    bool fStrictPayToScriptHash = (pindex->nTime >= nEvalSwitchTime);

s_nakamoto's avatar
s_nakamoto committed
1192
1193
1194
    //// issue here: it doesn't know the version
    unsigned int nTxPos = pindex->nBlockPos + ::GetSerializeSize(CBlock(), SER_DISK) - 1 + GetSizeOfCompactSize(vtx.size());

1195
    map<uint256, CTxIndex> mapQueuedChanges;
1196
    int64 nFees = 0;
Gavin Andresen's avatar
Gavin Andresen committed
1197
    int nSigOps = 0;
1198
    BOOST_FOREACH(CTransaction& tx, vtx)
s_nakamoto's avatar
s_nakamoto committed
1199
    {
1200
1201
1202
1203
        nSigOps += tx.GetLegacySigOpCount();
        if (nSigOps > MAX_BLOCK_SIGOPS)
            return DoS(100, error("ConnectBlock() : too many sigops"));

s_nakamoto's avatar
s_nakamoto committed
1204
1205
1206
        CDiskTxPos posThisTx(pindex->nFile, pindex->nBlockPos, nTxPos);
        nTxPos += ::GetSerializeSize(tx, SER_DISK);

1207
1208
1209
        MapPrevTx mapInputs;
        if (!tx.IsCoinBase())
        {
1210
1211
            bool fInvalid;
            if (!tx.FetchInputs(txdb, mapQueuedChanges, true, false, mapInputs, fInvalid))
1212
                return false;
1213

1214
1215
1216
1217
1218
1219
1220
1221
1222
            if (fStrictPayToScriptHash)
            {
                // Add in sigops done by pay-to-script-hash inputs;
                // this is to prevent a "rogue miner" from creating
                // an incredibly-expensive-to-validate block.
                nSigOps += tx.GetP2SHSigOpCount(mapInputs);
                if (nSigOps > MAX_BLOCK_SIGOPS)
                    return DoS(100, error("ConnectBlock() : too many sigops"));
            }
1223

1224
            nFees += tx.GetValueIn(mapInputs)-tx.GetValueOut();
1225

1226
            if (!tx.ConnectInputs(mapInputs, mapQueuedChanges, posThisTx, pindex, true, false, fStrictPayToScriptHash))
1227
                return false;
1228
1229
        }

1230
        mapQueuedChanges[tx.GetHash()] = CTxIndex(posThisTx, tx.vout.size());
s_nakamoto's avatar
s_nakamoto committed
1231
    }
Gavin Andresen's avatar
Gavin Andresen committed
1232

1233
1234
1235
1236
1237
1238
    // Write queued txindex changes
    for (map<uint256, CTxIndex>::iterator mi = mapQueuedChanges.begin(); mi != mapQueuedChanges.end(); ++mi)
    {
        if (!txdb.UpdateTxIndex((*mi).first, (*mi).second))
            return error("ConnectBlock() : UpdateTxIndex failed");
    }
s_nakamoto's avatar
s_nakamoto committed
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248

    if (vtx[0].GetValueOut() > GetBlockValue(pindex->nHeight, nFees))
        return false;

    // Update block index on disk without changing it in memory.
    // The memory index structure will be changed after the db commits.
    if (pindex->pprev)
    {
        CDiskBlockIndex blockindexPrev(pindex->pprev);
        blockindexPrev.hashNext = pindex->GetBlockHash();
1249
1250
        if (!txdb.WriteBlockIndex(blockindexPrev))
            return error("ConnectBlock() : WriteBlockIndex failed");
s_nakamoto's avatar
s_nakamoto committed
1251
1252
1253
    }

    // Watch for transactions paying to me
1254
    BOOST_FOREACH(CTransaction& tx, vtx)
Pieter Wuille's avatar
Pieter Wuille committed
1255
        SyncWithWallets(tx, this, true);
s_nakamoto's avatar
s_nakamoto committed
1256
1257
1258
1259

    return true;
}

Pieter Wuille's avatar
Pieter Wuille committed
1260
bool static Reorganize(CTxDB& txdb, CBlockIndex* pindexNew)
s_nakamoto's avatar
s_nakamoto committed
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
{
    printf("REORGANIZE\n");

    // Find the fork
    CBlockIndex* pfork = pindexBest;
    CBlockIndex* plonger = pindexNew;
    while (pfork != plonger)
    {
        while (plonger->nHeight > pfork->nHeight)
            if (!(plonger = plonger->pprev))
                return error("Reorganize() : plonger->pprev is null");
        if (pfork == plonger)
            break;
        if (!(pfork = pfork->pprev))
            return error("Reorganize() : pfork->pprev is null");
    }

    // List of what to disconnect
    vector<CBlockIndex*> vDisconnect;
    for (CBlockIndex* pindex = pindexBest; pindex != pfork; pindex = pindex->pprev)
        vDisconnect.push_back(pindex);

    // List of what to connect
    vector<CBlockIndex*> vConnect;
    for (CBlockIndex* pindex = pindexNew; pindex != pfork; pindex = pindex->pprev)
        vConnect.push_back(pindex);
    reverse(vConnect.begin(), vConnect.end());

    // Disconnect shorter branch
    vector<CTransaction> vResurrect;
1291
    BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
s_nakamoto's avatar
s_nakamoto committed
1292
1293
1294
1295
1296
1297
1298
1299
    {
        CBlock block;
        if (!block.ReadFromDisk(pindex))
            return error("Reorganize() : ReadFromDisk for disconnect failed");
        if (!block.DisconnectBlock(txdb, pindex))
            return error("Reorganize() : DisconnectBlock failed");

        // Queue memory transactions to resurrect
1300
        BOOST_FOREACH(const CTransaction& tx, block.vtx)
s_nakamoto's avatar
s_nakamoto committed
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
            if (!tx.IsCoinBase())
                vResurrect.push_back(tx);
    }

    // Connect longer branch
    vector<CTransaction> vDelete;
    for (int i = 0; i < vConnect.size(); i++)
    {
        CBlockIndex* pindex = vConnect[i];
        CBlock block;
        if (!block.ReadFromDisk(pindex))
            return error("Reorganize() : ReadFromDisk for connect failed");
        if (!block.ConnectBlock(txdb, pindex))
        {
            // Invalid block
            txdb.TxnAbort();
            return error("Reorganize() : ConnectBlock failed");
        }

        // Queue memory transactions to delete
1321
        BOOST_FOREACH(const CTransaction& tx, block.vtx)
s_nakamoto's avatar
s_nakamoto committed
1322
1323
1324
1325
1326
            vDelete.push_back(tx);
    }
    if (!txdb.WriteHashBestChain(pindexNew->GetBlockHash()))
        return error("Reorganize() : WriteHashBestChain failed");

1327
1328
1329
    // Make sure it's successfully written to disk before changing memory structure
    if (!txdb.TxnCommit())
        return error("Reorganize() : TxnCommit failed");
s_nakamoto's avatar
s_nakamoto committed
1330
1331

    // Disconnect shorter branch
1332
    BOOST_FOREACH(CBlockIndex* pindex, vDisconnect)
s_nakamoto's avatar
s_nakamoto committed
1333
1334
1335
1336
        if (pindex->pprev)
            pindex->pprev->pnext = NULL;

    // Connect longer branch
1337
    BOOST_FOREACH(CBlockIndex* pindex, vConnect)
s_nakamoto's avatar
s_nakamoto committed
1338
1339
1340
1341
        if (pindex->pprev)
            pindex->pprev->pnext = pindex;

    // Resurrect memory transactions that were in the disconnected branch
1342
    BOOST_FOREACH(CTransaction& tx, vResurrect)
s_nakamoto's avatar
s_nakamoto committed
1343
        tx.AcceptToMemoryPool(txdb, false);
s_nakamoto's avatar
s_nakamoto committed
1344
1345

    // Delete redundant memory transactions that are in the connected branch
1346
    BOOST_FOREACH(CTransaction& tx, vDelete)
s_nakamoto's avatar
s_nakamoto committed
1347
1348
1349
1350
1351
1352
        tx.RemoveFromMemoryPool();

    return true;
}


1353
1354
1355
1356
1357
1358
1359
1360
static void
runCommand(std::string strCommand)
{
    int nErr = ::system(strCommand.c_str());
    if (nErr)
        printf("runCommand error: system(%s) returned %d\n", strCommand.c_str(), nErr);
}

s_nakamoto's avatar
s_nakamoto committed
1361
1362
1363
1364
1365
1366
1367
1368
bool CBlock::SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew)
{
    uint256 hash = GetHash();

    txdb.TxnBegin();
    if (pindexGenesisBlock == NULL && hash == hashGenesisBlock)
    {
        txdb.WriteHashBestChain(hash);
1369
1370
1371
        if (!txdb.TxnCommit())
            return error("SetBestChain() : TxnCommit failed");
        pindexGenesisBlock = pindexNew;
s_nakamoto's avatar
s_nakamoto committed
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
    }
    else if (hashPrevBlock == hashBestChain)
    {
        // Adding to current best branch
        if (!ConnectBlock(txdb, pindexNew) || !txdb.WriteHashBestChain(hash))
        {
            txdb.TxnAbort();
            InvalidChainFound(pindexNew);
            return error("SetBestChain() : ConnectBlock failed");
        }
1382
1383
1384
1385
        if (!txdb.TxnCommit())
            return error("SetBestChain() : TxnCommit failed");

        // Add to current best branch
s_nakamoto's avatar
s_nakamoto committed
1386
1387
1388
        pindexNew->pprev->pnext = pindexNew;

        // Delete redundant memory transactions
1389
        BOOST_FOREACH(CTransaction& tx, vtx)
s_nakamoto's avatar
s_nakamoto committed
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
            tx.RemoveFromMemoryPool();
    }
    else
    {
        // New best branch
        if (!Reorganize(txdb, pindexNew))
        {
            txdb.TxnAbort();
            InvalidChainFound(pindexNew);
            return error("SetBestChain() : Reorganize failed");
        }
    }

1403
    // Update best block in wallet (so we can detect restored wallets)
1404
1405
    bool fIsInitialDownload = IsInitialBlockDownload();
    if (!fIsInitialDownload)
1406
1407
    {
        const CBlockLocator locator(pindexNew);
Pieter Wuille's avatar
Pieter Wuille committed
1408
        ::SetBestChain(locator);
1409
1410
    }

s_nakamoto's avatar
s_nakamoto committed
1411
1412
1413
1414
1415
1416
1417
1418
1419
    // New best block
    hashBestChain = hash;
    pindexBest = pindexNew;
    nBestHeight = pindexBest->nHeight;
    bnBestChainWork = pindexNew->bnChainWork;
    nTimeBestReceived = GetTime();
    nTransactionsUpdated++;
    printf("SetBestChain: new best=%s  height=%d  work=%s\n", hashBestChain.ToString().substr(0,20).c_str(), nBestHeight, bnBestChainWork.ToString().c_str());

1420
1421
1422
1423
1424
1425
1426
1427
    std::string strCmd = GetArg("-blocknotify", "");

    if (!fIsInitialDownload && !strCmd.empty())
    {
        boost::replace_all(strCmd, "%s", hashBestChain.GetHex());
        boost::thread t(runCommand, strCmd); // thread runs free
    }

s_nakamoto's avatar
s_nakamoto committed
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
    return true;
}


bool CBlock::AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos)
{
    // Check for duplicate
    uint256 hash = GetHash();
    if (mapBlockIndex.count(hash))
        return error("AddToBlockIndex() : %s already exists", hash.ToString().substr(0,20).c_str());

    // Construct new block index object
    CBlockIndex* pindexNew = new CBlockIndex(nFile, nBlockPos, *this);
    if (!pindexNew)
        return error("AddToBlockIndex() : new CBlockIndex failed");
    map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.insert(make_pair(hash, pindexNew)).first;
    pindexNew->phashBlock = &((*mi).first);
    map<uint256, CBlockIndex*>::iterator miPrev = mapBlockIndex.find(hashPrevBlock);
    if (miPrev != mapBlockIndex.end())
    {
        pindexNew->pprev = (*miPrev).second;
        pindexNew->nHeight = pindexNew->pprev->nHeight + 1;
    }
    pindexNew->bnChainWork = (pindexNew->pprev ? pindexNew->pprev->bnChainWork : 0) + pindexNew->GetBlockWork();

    CTxDB txdb;
1454
    txdb.TxnBegin();
s_nakamoto's avatar
s_nakamoto committed
1455
    txdb.WriteBlockIndex(CDiskBlockIndex(pindexNew));
1456
1457
    if (!txdb.TxnCommit())
        return false;
s_nakamoto's avatar
s_nakamoto committed
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469

    // New best
    if (pindexNew->bnChainWork > bnBestChainWork)
        if (!SetBestChain(txdb, pindexNew))
            return false;

    txdb.Close();

    if (pindexNew == pindexBest)
    {
        // Notify UI to display prev block's coinbase if it was ours
        static uint256 hashPrevBestCoinBase;
Pieter Wuille's avatar
Pieter Wuille committed
1470
        UpdatedTransaction(hashPrevBestCoinBase);
s_nakamoto's avatar
s_nakamoto committed
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
        hashPrevBestCoinBase = vtx[0].GetHash();
    }

    MainFrameRepaint();
    return true;
}




bool CBlock::CheckBlock() const
{
    // These are checks that are independent of context
    // that can be verified before saving an orphan block.

    // Size limits
1487
    if (vtx.empty() || vtx.size() > MAX_BLOCK_SIZE || ::GetSerializeSize(*this, SER_NETWORK) > MAX_BLOCK_SIZE)
1488
        return DoS(100, error("CheckBlock() : size limits failed"));
s_nakamoto's avatar
s_nakamoto committed
1489

1490
1491
    // Check proof of work matches claimed amount
    if (!CheckProofOfWork(GetHash(), nBits))
1492
        return DoS(50, error("CheckBlock() : proof of work failed"));
1493

s_nakamoto's avatar
s_nakamoto committed
1494
1495
1496
1497
1498
1499
    // Check timestamp
    if (GetBlockTime() > GetAdjustedTime() + 2 * 60 * 60)
        return error("CheckBlock() : block timestamp too far in the future");

    // First transaction must be coinbase, the rest must not be
    if (vtx.empty() || !vtx[0].IsCoinBase())
1500
        return DoS(100, error("CheckBlock() : first tx is not coinbase"));
s_nakamoto's avatar
s_nakamoto committed
1501
1502
    for (int i = 1; i < vtx.size(); i++)
        if (vtx[i].IsCoinBase())
1503
            return DoS(100, error("CheckBlock() : more than one coinbase"));
s_nakamoto's avatar
s_nakamoto committed
1504
1505

    // Check transactions
1506
    BOOST_FOREACH(const CTransaction& tx, vtx)
s_nakamoto's avatar
s_nakamoto committed
1507
        if (!tx.CheckTransaction())
1508
            return DoS(tx.nDoS, error("CheckBlock() : CheckTransaction failed"));
s_nakamoto's avatar
s_nakamoto committed
1509

Gavin Andresen's avatar
Gavin Andresen committed
1510
1511
1512
    int nSigOps = 0;
    BOOST_FOREACH(const CTransaction& tx, vtx)
    {
1513
        nSigOps += tx.GetLegacySigOpCount();
Gavin Andresen's avatar
Gavin Andresen committed
1514
1515
    }
    if (nSigOps > MAX_BLOCK_SIGOPS)
1516
        return DoS(100, error("CheckBlock() : out-of-bounds SigOpCount"));
s_nakamoto's avatar
s_nakamoto committed
1517
1518
1519

    // Check merkleroot
    if (hashMerkleRoot != BuildMerkleTree())
1520
        return DoS(100, error("CheckBlock() : hashMerkleRoot mismatch"));
s_nakamoto's avatar
s_nakamoto committed
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534

    return true;
}

bool CBlock::AcceptBlock()
{
    // Check for duplicate
    uint256 hash = GetHash();
    if (mapBlockIndex.count(hash))
        return error("AcceptBlock() : block already in mapBlockIndex");

    // Get prev block index
    map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashPrevBlock);
    if (mi == mapBlockIndex.end())
1535
        return DoS(10, error("AcceptBlock() : prev block not found"));
s_nakamoto's avatar
s_nakamoto committed
1536
    CBlockIndex* pindexPrev = (*mi).second;
s_nakamoto's avatar
s_nakamoto committed
1537
1538
    int nHeight = pindexPrev->nHeight+1;

1539
1540
    // Check proof of work
    if (nBits != GetNextWorkRequired(pindexPrev))
1541
        return DoS(100, error("AcceptBlock() : incorrect proof of work"));
s_nakamoto's avatar
s_nakamoto committed
1542
1543
1544
1545
1546
1547

    // Check timestamp against prev
    if (GetBlockTime() <= pindexPrev->GetMedianTimePast())
        return error("AcceptBlock() : block's timestamp is too early");

    // Check that all transactions are finalized
1548
    BOOST_FOREACH(const CTransaction& tx, vtx)
s_nakamoto's avatar
s_nakamoto committed
1549
        if (!tx.IsFinal(nHeight, GetBlockTime()))
1550
            return DoS(10, error("AcceptBlock() : contains a non-final transaction"));
s_nakamoto's avatar
s_nakamoto committed
1551
1552

    // Check that the block chain matches the known block chain up to a checkpoint
1553
1554
    if (!Checkpoints::CheckBlock(nHeight, hash))
        return DoS(100, error("AcceptBlock() : rejected by checkpoint lockin at %d", nHeight));
s_nakamoto's avatar
s_nakamoto committed
1555
1556
1557
1558

    // Write block to history file
    if (!CheckDiskSpace(::GetSerializeSize(*this, SER_DISK)))
        return error("AcceptBlock() : out of disk space");
1559
1560
1561
    unsigned int nFile = -1;
    unsigned int nBlockPos = 0;
    if (!WriteToDisk(nFile, nBlockPos))
s_nakamoto's avatar
s_nakamoto committed
1562
1563
1564
1565
1566
1567
1568
        return error("AcceptBlock() : WriteToDisk failed");
    if (!AddToBlockIndex(nFile, nBlockPos))
        return error("AcceptBlock() : AddToBlockIndex failed");

    // Relay inventory, but don't relay old inventory during initial block download
    if (hashBestChain == hash)
        CRITICAL_BLOCK(cs_vNodes)
1569
            BOOST_FOREACH(CNode* pnode, vNodes)
1570
                if (nBestHeight > (pnode->nStartingHeight != -1 ? pnode->nStartingHeight - 2000 : 140700))
s_nakamoto's avatar
s_nakamoto committed
1571
1572
1573
1574
1575
                    pnode->PushInventory(CInv(MSG_BLOCK, hash));

    return true;
}

1576
bool ProcessBlock(CNode* pfrom, CBlock* pblock)
s_nakamoto's avatar
s_nakamoto committed
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
{
    // Check for duplicate
    uint256 hash = pblock->GetHash();
    if (mapBlockIndex.count(hash))
        return error("ProcessBlock() : already have block %d %s", mapBlockIndex[hash]->nHeight, hash.ToString().substr(0,20).c_str());
    if (mapOrphanBlocks.count(hash))
        return error("ProcessBlock() : already have block (orphan) %s", hash.ToString().substr(0,20).c_str());

    // Preliminary checks
    if (!pblock->CheckBlock())
        return error("ProcessBlock() : CheckBlock FAILED");

1589
1590
1591
1592
    CBlockIndex* pcheckpoint = Checkpoints::GetLastCheckpoint(mapBlockIndex);
    if (pcheckpoint && pblock->hashPrevBlock != hashBestChain)
    {
        // Extra checks to prevent "fill up memory by spamming with bogus blocks"
1593
        int64 deltaTime = pblock->GetBlockTime() - pcheckpoint->nTime;
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
        if (deltaTime < 0)
        {
            pfrom->Misbehaving(100);
            return error("ProcessBlock() : block with timestamp before last checkpoint");
        }
        CBigNum bnNewBlock;
        bnNewBlock.SetCompact(pblock->nBits);
        CBigNum bnRequired;
        bnRequired.SetCompact(ComputeMinWork(pcheckpoint->nBits, deltaTime));
        if (bnNewBlock > bnRequired)
        {
            pfrom->Misbehaving(100);
            return error("ProcessBlock() : block with too little proof-of-work");
        }
    }


s_nakamoto's avatar
s_nakamoto committed
1611
1612
1613
1614
    // If don't already have its previous block, shunt it off to holding area until we get it
    if (!mapBlockIndex.count(pblock->hashPrevBlock))
    {
        printf("ProcessBlock: ORPHAN BLOCK, prev=%s\n", pblock->hashPrevBlock.ToString().substr(0,20).c_str());
s_nakamoto's avatar
s_nakamoto committed
1615
1616
1617
        CBlock* pblock2 = new CBlock(*pblock);
        mapOrphanBlocks.insert(make_pair(hash, pblock2));
        mapOrphanBlocksByPrev.insert(make_pair(pblock2->hashPrevBlock, pblock2));
s_nakamoto's avatar
s_nakamoto committed
1618
1619
1620

        // Ask this guy to fill in what we're missing
        if (pfrom)
s_nakamoto's avatar
s_nakamoto committed
1621
            pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(pblock2));
s_nakamoto's avatar
s_nakamoto committed
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
        return true;
    }

    // Store to disk
    if (!pblock->AcceptBlock())
        return error("ProcessBlock() : AcceptBlock FAILED");

    // Recursively process any orphan blocks that depended on this one
    vector<uint256> vWorkQueue;
    vWorkQueue.push_back(hash);
    for (int i = 0; i < vWorkQueue.size(); i++)
    {
        uint256 hashPrev = vWorkQueue[i];
        for (multimap<uint256, CBlock*>::iterator mi = mapOrphanBlocksByPrev.lower_bound(hashPrev);
             mi != mapOrphanBlocksByPrev.upper_bound(hashPrev);
             ++mi)
        {
            CBlock* pblockOrphan = (*mi).second;
            if (pblockOrphan->AcceptBlock())
                vWorkQueue.push_back(pblockOrphan->GetHash());
            mapOrphanBlocks.erase(pblockOrphan->GetHash());
            delete pblockOrphan;
        }
        mapOrphanBlocksByPrev.erase(hashPrev);
    }

    printf("ProcessBlock: ACCEPTED\n");
    return true;
}








1659
bool CheckDiskSpace(uint64 nAdditionalBytes)
s_nakamoto's avatar
s_nakamoto committed
1660
{
1661
    uint64 nFreeBytesAvailable = filesystem::space(GetDataDir()).available;
s_nakamoto's avatar
s_nakamoto committed
1662
1663

    // Check for 15MB because database could create another 10MB log file at any time
1664
    if (nFreeBytesAvailable < (uint64)15000000 + nAdditionalBytes)
s_nakamoto's avatar
s_nakamoto committed
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
    {
        fShutdown = true;
        string strMessage = _("Warning: Disk space is low  ");
        strMiscWarning = strMessage;
        printf("*** %s\n", strMessage.c_str());
        ThreadSafeMessageBox(strMessage, "Bitcoin", wxOK | wxICON_EXCLAMATION);
        CreateThread(Shutdown, NULL);
        return false;
    }
    return true;
}

FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode)
{
    if (nFile == -1)
        return NULL;
    FILE* file = fopen(strprintf("%s/blk%04d.dat", GetDataDir().c_str(), nFile).c_str(), pszMode);
    if (!file)
        return NULL;
    if (nBlockPos != 0 && !strchr(pszMode, 'a') && !strchr(pszMode, 'w'))
    {
        if (fseek(file, nBlockPos, SEEK_SET) != 0)
        {
            fclose(file);
            return NULL;
        }
    }
    return file;
}

static unsigned int nCurrentBlockFile = 1;

FILE* AppendBlockFile(unsigned int& nFileRet)
{
    nFileRet = 0;
    loop
    {
        FILE* file = OpenBlockFile(nCurrentBlockFile, 0, "ab");
        if (!file)
            return NULL;
        if (fseek(file, 0, SEEK_END) != 0)
            return NULL;
        // FAT32 filesize max 4GB, fseek and ftell max 2GB, so we must stay under 2GB
        if (ftell(file) < 0x7F000000 - MAX_SIZE)
        {
            nFileRet = nCurrentBlockFile;
            return file;
        }
        fclose(file);
        nCurrentBlockFile++;
    }
}

bool LoadBlockIndex(bool fAllowNew)
{
1720
1721
    if (fTestNet)
    {
1722
        hashGenesisBlock = uint256("0x00000007199508e34a9ff81e6ec0c477a4cccff2a4767a8eee39c11db367b008");
1723
1724
1725
1726
1727
1728
1729
        bnProofOfWorkLimit = CBigNum(~uint256(0) >> 28);
        pchMessageStart[0] = 0xfa;
        pchMessageStart[1] = 0xbf;
        pchMessageStart[2] = 0xb5;
        pchMessageStart[3] = 0xda;
    }

s_nakamoto's avatar
s_nakamoto committed
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
    //
    // Load block index
    //
    CTxDB txdb("cr");
    if (!txdb.LoadBlockIndex())
        return false;
    txdb.Close();

    //
    // Init with genesis block
    //
    if (mapBlockIndex.empty())
    {
        if (!fAllowNew)
            return false;

        // Genesis Block:
        // CBlock(hash=000000000019d6, ver=1, hashPrevBlock=00000000000000, hashMerkleRoot=4a5e1e, nTime=1231006505, nBits=1d00ffff, nNonce=2083236893, vtx=1)
        //   CTransaction(hash=4a5e1e, ver=1, vin.size=1, vout.size=1, nLockTime=0)
        //     CTxIn(COutPoint(000000, -1), coinbase 04ffff001d0104455468652054696d65732030332f4a616e2f32303039204368616e63656c6c6f72206f6e206272696e6b206f66207365636f6e64206261696c6f757420666f722062616e6b73)
        //     CTxOut(nValue=50.00000000, scriptPubKey=0x5F1DF16B2B704C8A578D0B)
        //   vMerkleTree: 4a5e1e

        // Genesis block
        const char* pszTimestamp = "The Times 03/Jan/2009 Chancellor on brink of second bailout for banks";
        CTransaction txNew;
        txNew.vin.resize(1);
        txNew.vout.resize(1);
        txNew.vin[0].scriptSig = CScript() << 486604799 << CBigNum(4) << vector<unsigned char>((const unsigned char*)pszTimestamp, (const unsigned char*)pszTimestamp + strlen(pszTimestamp));
        txNew.vout[0].nValue = 50 * COIN;
        txNew.vout[0].scriptPubKey = CScript() << ParseHex("04678afdb0fe5548271967f1a67130b7105cd6a828e03909a67962e0ea1f61deb649f6bc3f4cef38c4f35504e51ec112de5c384df7ba0b8d578a4c702b6bf11d5f") << OP_CHECKSIG;
        CBlock block;
        block.vtx.push_back(txNew);
        block.hashPrevBlock = 0;
        block.hashMerkleRoot = block.BuildMerkleTree();
        block.nVersion = 1;
        block.nTime    = 1231006505;
        block.nBits    = 0x1d00ffff;
        block.nNonce   = 2083236893;

1770
1771
        if (fTestNet)
        {
1772
            block.nTime    = 1296688602;
1773
            block.nBits    = 0x1d07fff8;
1774
            block.nNonce   = 384568319;
1775
        }
s_nakamoto's avatar
s_nakamoto committed
1776

1777
1778
1779
1780
1781
1782
        //// debug print
        printf("%s\n", block.GetHash().ToString().c_str());
        printf("%s\n", hashGenesisBlock.ToString().c_str());
        printf("%s\n", block.hashMerkleRoot.ToString().c_str());
        assert(block.hashMerkleRoot == uint256("0x4a5e1e4baab89f3a32518a88c31bc87f618f76673e2cc77ab2127b7afdeda33b"));
        block.print();
s_nakamoto's avatar
s_nakamoto committed
1783
1784
1785
1786
1787
        assert(block.GetHash() == hashGenesisBlock);

        // Start new block file
        unsigned int nFile;
        unsigned int nBlockPos;
1788
        if (!block.WriteToDisk(nFile, nBlockPos))
s_nakamoto's avatar
s_nakamoto committed
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
            return error("LoadBlockIndex() : writing genesis block to disk failed");
        if (!block.AddToBlockIndex(nFile, nBlockPos))
            return error("LoadBlockIndex() : genesis block not accepted");
    }

    return true;
}



void PrintBlockTree()
{
    // precompute tree structure
    map<CBlockIndex*, vector<CBlockIndex*> > mapNext;
    for (map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.begin(); mi != mapBlockIndex.end(); ++mi)
    {
        CBlockIndex* pindex = (*mi).second;
        mapNext[pindex->pprev].push_back(pindex);
        // test
        //while (rand() % 3 == 0)
        //    mapNext[pindex->pprev].push_back(pindex);
    }

    vector<pair<int, CBlockIndex*> > vStack;
    vStack.push_back(make_pair(0, pindexGenesisBlock));

    int nPrevCol = 0;
    while (!vStack.empty())
    {
        int nCol = vStack.back().first;
        CBlockIndex* pindex = vStack.back().second;
        vStack.pop_back();

        // print split or gap
        if (nCol > nPrevCol)
        {
            for (int i = 0; i < nCol-1; i++)
                printf("| ");
            printf("|\\\n");
        }
        else if (nCol < nPrevCol)
        {
            for (int i = 0; i < nCol; i++)
                printf("| ");
            printf("|\n");
Pieter Wuille's avatar
Pieter Wuille committed
1834
       }
s_nakamoto's avatar
s_nakamoto committed
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
        nPrevCol = nCol;

        // print columns
        for (int i = 0; i < nCol; i++)
            printf("| ");

        // print item
        CBlock block;
        block.ReadFromDisk(pindex);
        printf("%d (%u,%u) %s  %s  tx %d",
            pindex->nHeight,
            pindex->nFile,
            pindex->nBlockPos,
            block.GetHash().ToString().substr(0,20).c_str(),
            DateTimeStrFormat("%x %H:%M:%S", block.GetBlockTime()).c_str(),
            block.vtx.size());

Pieter Wuille's avatar
Pieter Wuille committed
1852
        PrintWallets(block);
s_nakamoto's avatar
s_nakamoto committed
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892

        // put the main timechain first
        vector<CBlockIndex*>& vNext = mapNext[pindex];
        for (int i = 0; i < vNext.size(); i++)
        {
            if (vNext[i]->pnext)
            {
                swap(vNext[0], vNext[i]);
                break;
            }
        }

        // iterate children
        for (int i = 0; i < vNext.size(); i++)
            vStack.push_back(make_pair(nCol+i, vNext[i]));
    }
}










//////////////////////////////////////////////////////////////////////////////
//
// CAlert
//

map<uint256, CAlert> mapAlerts;
CCriticalSection cs_mapAlerts;

string GetWarnings(string strFor)
{
    int nPriority = 0;
    string strStatusBar;
    string strRPC;
1893
    if (GetBoolArg("-testsafemode"))
s_nakamoto's avatar
s_nakamoto committed
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
        strRPC = "test";

    // Misc warnings like out of disk space and clock is wrong
    if (strMiscWarning != "")
    {
        nPriority = 1000;
        strStatusBar = strMiscWarning;
    }

    // Longer invalid proof-of-work chain
    if (pindexBest && bnBestInvalidWork > bnBestChainWork + pindexBest->GetBlockWork() * 6)
    {
        nPriority = 2000;
        strStatusBar = strRPC = "WARNING: Displayed transactions may not be correct!  You may need to upgrade, or other nodes may need to upgrade.";
    }

    // Alerts
    CRITICAL_BLOCK(cs_mapAlerts)
    {
1913
        BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
s_nakamoto's avatar
s_nakamoto committed
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
        {
            const CAlert& alert = item.second;
            if (alert.AppliesToMe() && alert.nPriority > nPriority)
            {
                nPriority = alert.nPriority;
                strStatusBar = alert.strStatusBar;
            }
        }
    }

    if (strFor == "statusbar")
        return strStatusBar;
    else if (strFor == "rpc")
        return strRPC;
1928
    assert(!"GetWarnings() : invalid parameter");
s_nakamoto's avatar
s_nakamoto committed
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
    return "error";
}

bool CAlert::ProcessAlert()
{
    if (!CheckSignature())
        return false;
    if (!IsInEffect())
        return false;

    CRITICAL_BLOCK(cs_mapAlerts)
    {
        // Cancel previous alerts
        for (map<uint256, CAlert>::iterator mi = mapAlerts.begin(); mi != mapAlerts.end();)
        {
            const CAlert& alert = (*mi).second;
            if (Cancels(alert))
            {
                printf("cancelling alert %d\n", alert.nID);
                mapAlerts.erase(mi++);
            }
            else if (!alert.IsInEffect())
            {
                printf("expiring alert %d\n", alert.nID);
                mapAlerts.erase(mi++);
            }
            else
                mi++;
        }

        // Check if this alert has been cancelled
1960
        BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
s_nakamoto's avatar
s_nakamoto committed
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
        {
            const CAlert& alert = item.second;
            if (alert.Cancels(*this))
            {
                printf("alert already cancelled by %d\n", alert.nID);
                return false;
            }
        }

        // Add to mapAlerts
        mapAlerts.insert(make_pair(GetHash(), *this));
    }

    printf("accepted alert %d, AppliesToMe()=%d\n", nID, AppliesToMe());
    MainFrameRepaint();
    return true;
}








//////////////////////////////////////////////////////////////////////////////
//
// Messages
//


Pieter Wuille's avatar
Pieter Wuille committed
1992
bool static AlreadyHave(CTxDB& txdb, const CInv& inv)
s_nakamoto's avatar
s_nakamoto committed
1993
1994
1995
{
    switch (inv.type)
    {
s_nakamoto's avatar
s_nakamoto committed
1996
    case MSG_TX:    return mapTransactions.count(inv.hash) || mapOrphanTransactions.count(inv.hash) || txdb.ContainsTx(inv.hash);
s_nakamoto's avatar
s_nakamoto committed
1997
1998
1999
2000
2001
2002
2003
2004
2005
    case MSG_BLOCK: return mapBlockIndex.count(inv.hash) || mapOrphanBlocks.count(inv.hash);
    }
    // Don't know what it is, just say we already got one
    return true;
}




2006
2007
2008
// The message start string is designed to be unlikely to occur in normal data.
// The characters are rarely used upper ascii, not valid as UTF-8, and produce
// a large 4-byte int at any alignment.
2009
unsigned char pchMessageStart[4] = { 0xf9, 0xbe, 0xb4, 0xd9 };
s_nakamoto's avatar
s_nakamoto committed
2010
2011


Pieter Wuille's avatar
Pieter Wuille committed
2012
bool static ProcessMessage(CNode* pfrom, string strCommand, CDataStream& vRecv)
s_nakamoto's avatar
s_nakamoto committed
2013
{
Pieter Wuille's avatar
Pieter Wuille committed
2014
    static map<CService, vector<unsigned char> > mapReuseKey;
s_nakamoto's avatar
s_nakamoto committed
2015
    RandAddSeedPerfmon();
2016
    if (fDebug) {
s_nakamoto's avatar
s_nakamoto committed
2017
        printf("%s ", DateTimeStrFormat("%x %H:%M:%S", GetTime()).c_str());
2018
2019
        printf("received: %s (%d bytes)\n", strCommand.c_str(), vRecv.size());
    }
s_nakamoto's avatar
s_nakamoto committed
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
    if (mapArgs.count("-dropmessagestest") && GetRand(atoi(mapArgs["-dropmessagestest"])) == 0)
    {
        printf("dropmessagestest DROPPING RECV MESSAGE\n");
        return true;
    }





    if (strCommand == "version")
    {
        // Each connection can only send one version message
        if (pfrom->nVersion != 0)
2034
2035
        {
            pfrom->Misbehaving(1);
s_nakamoto's avatar
s_nakamoto committed
2036
            return false;
2037
        }
s_nakamoto's avatar
s_nakamoto committed
2038

2039
        int64 nTime;
s_nakamoto's avatar
s_nakamoto committed
2040
2041
        CAddress addrMe;
        CAddress addrFrom;
2042
        uint64 nNonce = 1;
s_nakamoto's avatar
s_nakamoto committed
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
        vRecv >> pfrom->nVersion >> pfrom->nServices >> nTime >> addrMe;
        if (pfrom->nVersion == 10300)
            pfrom->nVersion = 300;
        if (pfrom->nVersion >= 106 && !vRecv.empty())
            vRecv >> addrFrom >> nNonce;
        if (pfrom->nVersion >= 106 && !vRecv.empty())
            vRecv >> pfrom->strSubVer;
        if (pfrom->nVersion >= 209 && !vRecv.empty())
            vRecv >> pfrom->nStartingHeight;

        if (pfrom->nVersion == 0)
            return false;

        // Disconnect if we connected to ourself
        if (nNonce == nLocalHostNonce && nNonce > 1)
        {
2059
            printf("connected to self at %s, disconnecting\n", pfrom->addr.ToString().c_str());
s_nakamoto's avatar
s_nakamoto committed
2060
2061
2062
2063
            pfrom->fDisconnect = true;
            return true;
        }

Gavin Andresen's avatar
Gavin Andresen committed
2064
2065
2066
2067
        // Be shy and don't send version until we hear
        if (pfrom->fInbound)
            pfrom->PushVersion();

s_nakamoto's avatar
s_nakamoto committed
2068
2069
        pfrom->fClient = !(pfrom->nServices & NODE_NETWORK);

Pieter Wuille's avatar
Pieter Wuille committed
2070
        AddTimeData(pfrom->addr, nTime);
s_nakamoto's avatar
s_nakamoto committed
2071
2072
2073
2074

        // Change version
        if (pfrom->nVersion >= 209)
            pfrom->PushMessage("verack");
2075
        pfrom->vSend.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
s_nakamoto's avatar
s_nakamoto committed
2076
        if (pfrom->nVersion < 209)
2077
            pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
s_nakamoto's avatar
s_nakamoto committed
2078

s_nakamoto's avatar
s_nakamoto committed
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
        if (!pfrom->fInbound)
        {
            // Advertise our address
            if (addrLocalHost.IsRoutable() && !fUseProxy)
            {
                CAddress addr(addrLocalHost);
                addr.nTime = GetAdjustedTime();
                pfrom->PushAddress(addr);
            }

            // Get recent addresses
            if (pfrom->nVersion >= 31402 || mapAddresses.size() < 1000)
            {
                pfrom->PushMessage("getaddr");
                pfrom->fGetAddr = true;
            }
        }

s_nakamoto's avatar
s_nakamoto committed
2097
        // Ask the first connected node for block updates
2098
        static int nAskedForBlocks = 0;
2099
2100
2101
        if (!pfrom->fClient &&
            (pfrom->nVersion < 32000 || pfrom->nVersion >= 32400) &&
             (nAskedForBlocks < 1 || vNodes.size() <= 1))
s_nakamoto's avatar
s_nakamoto committed
2102
2103
2104
2105
2106
2107
2108
        {
            nAskedForBlocks++;
            pfrom->PushGetBlocks(pindexBest, uint256(0));
        }

        // Relay alerts
        CRITICAL_BLOCK(cs_mapAlerts)
2109
            BOOST_FOREACH(PAIRTYPE(const uint256, CAlert)& item, mapAlerts)
s_nakamoto's avatar
s_nakamoto committed
2110
2111
2112
2113
2114
                item.second.RelayTo(pfrom);

        pfrom->fSuccessfullyConnected = true;

        printf("version message: version %d, blocks=%d\n", pfrom->nVersion, pfrom->nStartingHeight);
2115
2116

        cPeerBlockCounts.input(pfrom->nStartingHeight);
s_nakamoto's avatar
s_nakamoto committed
2117
2118
2119
2120
2121
2122
    }


    else if (pfrom->nVersion == 0)
    {
        // Must have a version message before anything else
2123
        pfrom->Misbehaving(1);
s_nakamoto's avatar
s_nakamoto committed
2124
2125
2126
2127
2128
2129
        return false;
    }


    else if (strCommand == "verack")
    {
2130
        pfrom->vRecv.SetVersion(min(pfrom->nVersion, PROTOCOL_VERSION));
s_nakamoto's avatar
s_nakamoto committed
2131
2132
2133
2134
2135
2136
2137
    }


    else if (strCommand == "addr")
    {
        vector<CAddress> vAddr;
        vRecv >> vAddr;
s_nakamoto's avatar
s_nakamoto committed
2138
2139
2140

        // Don't want addr from older versions unless seeding
        if (pfrom->nVersion < 209)
s_nakamoto's avatar
s_nakamoto committed
2141
            return true;
s_nakamoto's avatar
s_nakamoto committed
2142
        if (pfrom->nVersion < 31402 && mapAddresses.size() > 1000)
s_nakamoto's avatar
s_nakamoto committed
2143
2144
            return true;
        if (vAddr.size() > 1000)
2145
2146
        {
            pfrom->Misbehaving(20);
s_nakamoto's avatar
s_nakamoto committed
2147
            return error("message addr size() = %d", vAddr.size());
2148
        }
s_nakamoto's avatar
s_nakamoto committed
2149
2150

        // Store the new addresses
2151
2152
        CAddrDB addrDB;
        addrDB.TxnBegin();
2153
2154
        int64 nNow = GetAdjustedTime();
        int64 nSince = nNow - 10 * 60;
2155
        BOOST_FOREACH(CAddress& addr, vAddr)
s_nakamoto's avatar
s_nakamoto committed
2156
2157
2158
2159
2160
2161
        {
            if (fShutdown)
                return true;
            // ignore IPv6 for now, since it isn't implemented anyway
            if (!addr.IsIPv4())
                continue;
s_nakamoto's avatar
s_nakamoto committed
2162
2163
            if (addr.nTime <= 100000000 || addr.nTime > nNow + 10 * 60)
                addr.nTime = nNow - 5 * 24 * 60 * 60;
2164
            AddAddress(addr, 2 * 60 * 60, &addrDB);
s_nakamoto's avatar
s_nakamoto committed
2165
            pfrom->AddAddressKnown(addr);
s_nakamoto's avatar
s_nakamoto committed
2166
            if (addr.nTime > nSince && !pfrom->fGetAddr && vAddr.size() <= 10 && addr.IsRoutable())
s_nakamoto's avatar
s_nakamoto committed
2167
2168
2169
2170
            {
                // Relay to a limited number of other nodes
                CRITICAL_BLOCK(cs_vNodes)
                {
2171
2172
                    // Use deterministic randomness to send to the same nodes for 24 hours
                    // at a time so the setAddrKnowns of the chosen nodes prevent repeats
s_nakamoto's avatar
s_nakamoto committed
2173
2174
2175
                    static uint256 hashSalt;
                    if (hashSalt == 0)
                        RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
Pieter Wuille's avatar
Pieter Wuille committed
2176
2177
                    int64 hashAddr = addr.GetHash();
                    uint256 hashRand = hashSalt ^ (hashAddr<<32) ^ ((GetTime()+hashAddr)/(24*60*60));
2178
                    hashRand = Hash(BEGIN(hashRand), END(hashRand));
s_nakamoto's avatar
s_nakamoto committed
2179
                    multimap<uint256, CNode*> mapMix;
2180
                    BOOST_FOREACH(CNode* pnode, vNodes)
2181
                    {
s_nakamoto's avatar
s_nakamoto committed
2182
2183
                        if (pnode->nVersion < 31402)
                            continue;
2184
2185
2186
2187
2188
2189
                        unsigned int nPointer;
                        memcpy(&nPointer, &pnode, sizeof(nPointer));
                        uint256 hashKey = hashRand ^ nPointer;
                        hashKey = Hash(BEGIN(hashKey), END(hashKey));
                        mapMix.insert(make_pair(hashKey, pnode));
                    }
s_nakamoto's avatar
s_nakamoto committed
2190
                    int nRelayNodes = 2;
s_nakamoto's avatar
s_nakamoto committed
2191
2192
2193
2194
2195
                    for (multimap<uint256, CNode*>::iterator mi = mapMix.begin(); mi != mapMix.end() && nRelayNodes-- > 0; ++mi)
                        ((*mi).second)->PushAddress(addr);
                }
            }
        }
2196
        addrDB.TxnCommit();  // Save addresses (it's ok if this fails)
s_nakamoto's avatar
s_nakamoto committed
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
        if (vAddr.size() < 1000)
            pfrom->fGetAddr = false;
    }


    else if (strCommand == "inv")
    {
        vector<CInv> vInv;
        vRecv >> vInv;
        if (vInv.size() > 50000)
2207
2208
        {
            pfrom->Misbehaving(20);
s_nakamoto's avatar
s_nakamoto committed
2209
            return error("message inv size() = %d", vInv.size());
2210
        }
s_nakamoto's avatar
s_nakamoto committed
2211
2212

        CTxDB txdb("r");
2213
        BOOST_FOREACH(const CInv& inv, vInv)
s_nakamoto's avatar
s_nakamoto committed
2214
2215
2216
2217
2218
2219
        {
            if (fShutdown)
                return true;
            pfrom->AddInventoryKnown(inv);

            bool fAlreadyHave = AlreadyHave(txdb, inv);
2220
2221
            if (fDebug)
                printf("  got inventory: %s  %s\n", inv.ToString().c_str(), fAlreadyHave ? "have" : "new");
s_nakamoto's avatar
s_nakamoto committed
2222
2223
2224
2225
2226
2227
2228

            if (!fAlreadyHave)
                pfrom->AskFor(inv);
            else if (inv.type == MSG_BLOCK && mapOrphanBlocks.count(inv.hash))
                pfrom->PushGetBlocks(pindexBest, GetOrphanRoot(mapOrphanBlocks[inv.hash]));

            // Track requests for our stuff
Pieter Wuille's avatar
Pieter Wuille committed
2229
            Inventory(inv.hash);
s_nakamoto's avatar
s_nakamoto committed
2230
2231
2232
2233
2234
2235
2236
2237
2238
        }
    }


    else if (strCommand == "getdata")
    {
        vector<CInv> vInv;
        vRecv >> vInv;
        if (vInv.size() > 50000)
2239
2240
        {
            pfrom->Misbehaving(20);
s_nakamoto's avatar
s_nakamoto committed
2241
            return error("message getdata size() = %d", vInv.size());
2242
        }
s_nakamoto's avatar
s_nakamoto committed
2243

2244
        BOOST_FOREACH(const CInv& inv, vInv)
s_nakamoto's avatar
s_nakamoto committed
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
        {
            if (fShutdown)
                return true;
            printf("received getdata for: %s\n", inv.ToString().c_str());

            if (inv.type == MSG_BLOCK)
            {
                // Send block from disk
                map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(inv.hash);
                if (mi != mapBlockIndex.end())
                {
                    CBlock block;
2257
                    block.ReadFromDisk((*mi).second);
s_nakamoto's avatar
s_nakamoto committed
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
                    pfrom->PushMessage("block", block);

                    // Trigger them to send a getblocks request for the next batch of inventory
                    if (inv.hash == pfrom->hashContinue)
                    {
                        // Bypass PushInventory, this must send even if redundant,
                        // and we want it right after the last block so they don't
                        // wait for other stuff first.
                        vector<CInv> vInv;
                        vInv.push_back(CInv(MSG_BLOCK, hashBestChain));
                        pfrom->PushMessage("inv", vInv);
                        pfrom->hashContinue = 0;
                    }
                }
            }
            else if (inv.IsKnownType())
            {
                // Send stream from relay memory
                CRITICAL_BLOCK(cs_mapRelay)
                {
                    map<CInv, CDataStream>::iterator mi = mapRelay.find(inv);
                    if (mi != mapRelay.end())
                        pfrom->PushMessage(inv.GetCommand(), (*mi).second);
                }
            }

            // Track requests for our stuff
Pieter Wuille's avatar
Pieter Wuille committed
2285
            Inventory(inv.hash);
s_nakamoto's avatar
s_nakamoto committed
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
        }
    }


    else if (strCommand == "getblocks")
    {
        CBlockLocator locator;
        uint256 hashStop;
        vRecv >> locator >> hashStop;

2296
        // Find the last block the caller has in the main chain
s_nakamoto's avatar
s_nakamoto committed
2297
2298
2299
2300
2301
2302
        CBlockIndex* pindex = locator.GetBlockIndex();

        // Send the rest of the chain
        if (pindex)
            pindex = pindex->pnext;
        int nLimit = 500 + locator.GetDistanceBack();
2303
        unsigned int nBytes = 0;
s_nakamoto's avatar
s_nakamoto committed
2304
2305
2306
2307
2308
        printf("getblocks %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
        for (; pindex; pindex = pindex->pnext)
        {
            if (pindex->GetBlockHash() == hashStop)
            {
2309
                printf("  getblocks stopping at %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
s_nakamoto's avatar
s_nakamoto committed
2310
2311
2312
                break;
            }
            pfrom->PushInventory(CInv(MSG_BLOCK, pindex->GetBlockHash()));
2313
2314
2315
2316
            CBlock block;
            block.ReadFromDisk(pindex, true);
            nBytes += block.GetSerializeSize(SER_NETWORK);
            if (--nLimit <= 0 || nBytes >= SendBufferSize()/2)
s_nakamoto's avatar
s_nakamoto committed
2317
2318
2319
            {
                // When this block is requested, we'll send an inv that'll make them
                // getblocks the next batch of inventory.
2320
                printf("  getblocks stopping at limit %d %s (%u bytes)\n", pindex->nHeight, pindex->GetBlockHash().ToString().substr(0,20).c_str(), nBytes);
s_nakamoto's avatar
s_nakamoto committed
2321
2322
2323
2324
2325
2326
2327
                pfrom->hashContinue = pindex->GetBlockHash();
                break;
            }
        }
    }


2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
    else if (strCommand == "getheaders")
    {
        CBlockLocator locator;
        uint256 hashStop;
        vRecv >> locator >> hashStop;

        CBlockIndex* pindex = NULL;
        if (locator.IsNull())
        {
            // If locator is null, return the hashStop block
            map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashStop);
            if (mi == mapBlockIndex.end())
                return true;
            pindex = (*mi).second;
        }
        else
        {
            // Find the last block the caller has in the main chain
            pindex = locator.GetBlockIndex();
            if (pindex)
                pindex = pindex->pnext;
        }

        vector<CBlock> vHeaders;
        int nLimit = 2000 + locator.GetDistanceBack();
        printf("getheaders %d to %s limit %d\n", (pindex ? pindex->nHeight : -1), hashStop.ToString().substr(0,20).c_str(), nLimit);
        for (; pindex; pindex = pindex->pnext)
        {
            vHeaders.push_back(pindex->GetBlockHeader());
            if (--nLimit <= 0 || pindex->GetBlockHash() == hashStop)
                break;
        }
        pfrom->PushMessage("headers", vHeaders);
    }


s_nakamoto's avatar
s_nakamoto committed
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
    else if (strCommand == "tx")
    {
        vector<uint256> vWorkQueue;
        CDataStream vMsg(vRecv);
        CTransaction tx;
        vRecv >> tx;

        CInv inv(MSG_TX, tx.GetHash());
        pfrom->AddInventoryKnown(inv);

        bool fMissingInputs = false;
s_nakamoto's avatar
s_nakamoto committed
2375
        if (tx.AcceptToMemoryPool(true, &fMissingInputs))
s_nakamoto's avatar
s_nakamoto committed
2376
        {
Pieter Wuille's avatar
Pieter Wuille committed
2377
            SyncWithWallets(tx, NULL, true);
s_nakamoto's avatar
s_nakamoto committed
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
            RelayMessage(inv, vMsg);
            mapAlreadyAskedFor.erase(inv);
            vWorkQueue.push_back(inv.hash);

            // Recursively process any orphan transactions that depended on this one
            for (int i = 0; i < vWorkQueue.size(); i++)
            {
                uint256 hashPrev = vWorkQueue[i];
                for (multimap<uint256, CDataStream*>::iterator mi = mapOrphanTransactionsByPrev.lower_bound(hashPrev);
                     mi != mapOrphanTransactionsByPrev.upper_bound(hashPrev);
                     ++mi)
                {
                    const CDataStream& vMsg = *((*mi).second);
                    CTransaction tx;
                    CDataStream(vMsg) >> tx;
                    CInv inv(MSG_TX, tx.GetHash());

s_nakamoto's avatar
s_nakamoto committed
2395
                    if (tx.AcceptToMemoryPool(true))
s_nakamoto's avatar
s_nakamoto committed
2396
                    {
2397
                        printf("   accepted orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
Pieter Wuille's avatar
Pieter Wuille committed
2398
                        SyncWithWallets(tx, NULL, true);
s_nakamoto's avatar
s_nakamoto committed
2399
2400
2401
2402
2403
2404
2405
                        RelayMessage(inv, vMsg);
                        mapAlreadyAskedFor.erase(inv);
                        vWorkQueue.push_back(inv.hash);
                    }
                }
            }

2406
            BOOST_FOREACH(uint256 hash, vWorkQueue)
s_nakamoto's avatar
s_nakamoto committed
2407
2408
2409
2410
                EraseOrphanTx(hash);
        }
        else if (fMissingInputs)
        {
2411
            printf("storing orphan tx %s\n", inv.hash.ToString().substr(0,10).c_str());
s_nakamoto's avatar
s_nakamoto committed
2412
2413
            AddOrphanTx(vMsg);
        }
2414
        if (tx.nDoS) pfrom->Misbehaving(tx.nDoS);
s_nakamoto's avatar
s_nakamoto committed
2415
2416
2417
2418
2419
    }


    else if (strCommand == "block")
    {
2420
2421
        CBlock block;
        vRecv >> block;
s_nakamoto's avatar
s_nakamoto committed
2422

2423
2424
        printf("received block %s\n", block.GetHash().ToString().substr(0,20).c_str());
        // block.print();
s_nakamoto's avatar
s_nakamoto committed
2425

2426
        CInv inv(MSG_BLOCK, block.GetHash());
s_nakamoto's avatar
s_nakamoto committed
2427
2428
        pfrom->AddInventoryKnown(inv);

2429
        if (ProcessBlock(pfrom, &block))
s_nakamoto's avatar
s_nakamoto committed
2430
            mapAlreadyAskedFor.erase(inv);
2431
        if (block.nDoS) pfrom->Misbehaving(block.nDoS);
s_nakamoto's avatar
s_nakamoto committed
2432
2433
2434
2435
2436
    }


    else if (strCommand == "getaddr")
    {
2437
        // Nodes rebroadcast an addr every 24 hours
s_nakamoto's avatar
s_nakamoto committed
2438
        pfrom->vAddrToSend.clear();
2439
        int64 nSince = GetAdjustedTime() - 3 * 60 * 60; // in the last 3 hours
s_nakamoto's avatar
s_nakamoto committed
2440
2441
        CRITICAL_BLOCK(cs_mapAddresses)
        {
2442
            unsigned int nCount = 0;
2443
            BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
s_nakamoto's avatar
s_nakamoto committed
2444
2445
2446
            {
                const CAddress& addr = item.second;
                if (addr.nTime > nSince)
2447
2448
                    nCount++;
            }
2449
            BOOST_FOREACH(const PAIRTYPE(vector<unsigned char>, CAddress)& item, mapAddresses)
2450
2451
            {
                const CAddress& addr = item.second;
2452
                if (addr.nTime > nSince && GetRand(nCount) < 2500)
s_nakamoto's avatar
s_nakamoto committed
2453
2454
2455
2456
2457
2458
2459
2460
2461
                    pfrom->PushAddress(addr);
            }
        }
    }


    else if (strCommand == "checkorder")
    {
        uint256 hashReply;
2462
        vRecv >> hashReply;
s_nakamoto's avatar
s_nakamoto committed
2463

2464
        if (!GetBoolArg("-allowreceivebyip"))
2465
2466
2467
2468
2469
        {
            pfrom->PushMessage("reply", hashReply, (int)2, string(""));
            return true;
        }

2470
2471
2472
        CWalletTx order;
        vRecv >> order;

s_nakamoto's avatar
s_nakamoto committed
2473
2474
2475
        /// we have a chance to check the order here

        // Keep giving the same key to the same ip until they use it
Pieter Wuille's avatar
Pieter Wuille committed
2476
2477
        if (!mapReuseKey.count(pfrom->addr))
            pwalletMain->GetKeyFromPool(mapReuseKey[pfrom->addr], true);
s_nakamoto's avatar
s_nakamoto committed
2478
2479
2480

        // Send back approval of order and pubkey to use
        CScript scriptPubKey;
Pieter Wuille's avatar
Pieter Wuille committed
2481
        scriptPubKey << mapReuseKey[pfrom->addr] << OP_CHECKSIG;
s_nakamoto's avatar
s_nakamoto committed
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
        pfrom->PushMessage("reply", hashReply, (int)0, scriptPubKey);
    }


    else if (strCommand == "reply")
    {
        uint256 hashReply;
        vRecv >> hashReply;

        CRequestTracker tracker;
        CRITICAL_BLOCK(pfrom->cs_mapRequests)
        {
            map<uint256, CRequestTracker>::iterator mi = pfrom->mapRequests.find(hashReply);
            if (mi != pfrom->mapRequests.end())
            {
                tracker = (*mi).second;
                pfrom->mapRequests.erase(mi);
            }
        }
        if (!tracker.IsNull())
            tracker.fn(tracker.param1, vRecv);
    }


    else if (strCommand == "ping")
    {
    }


    else if (strCommand == "alert")
    {
        CAlert alert;
        vRecv >> alert;

        if (alert.ProcessAlert())
        {
            // Relay
            pfrom->setKnown.insert(alert.GetHash());
            CRITICAL_BLOCK(cs_vNodes)
2521
                BOOST_FOREACH(CNode* pnode, vNodes)
s_nakamoto's avatar
s_nakamoto committed
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
                    alert.RelayTo(pnode);
        }
    }


    else
    {
        // Ignore unknown commands for extensibility
    }


    // Update the last seen time for this node's address
    if (pfrom->fNetworkNode)
        if (strCommand == "version" || strCommand == "addr" || strCommand == "inv" || strCommand == "getdata" || strCommand == "ping")
            AddressCurrentlyConnected(pfrom->addr);


    return true;
}

2542
2543
2544
2545
2546
2547
2548
bool ProcessMessages(CNode* pfrom)
{
    CDataStream& vRecv = pfrom->vRecv;
    if (vRecv.empty())
        return true;
    //if (fDebug)
    //    printf("ProcessMessages(%u bytes)\n", vRecv.size());
s_nakamoto's avatar
s_nakamoto committed
2549

2550
2551
2552
2553
2554
2555
2556
2557
    //
    // Message format
    //  (4) message start
    //  (12) command
    //  (4) size
    //  (4) checksum
    //  (x) data
    //
s_nakamoto's avatar
s_nakamoto committed
2558

2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
    loop
    {
        // Scan for message start
        CDataStream::iterator pstart = search(vRecv.begin(), vRecv.end(), BEGIN(pchMessageStart), END(pchMessageStart));
        int nHeaderSize = vRecv.GetSerializeSize(CMessageHeader());
        if (vRecv.end() - pstart < nHeaderSize)
        {
            if (vRecv.size() > nHeaderSize)
            {
                printf("\n\nPROCESSMESSAGE MESSAGESTART NOT FOUND\n\n");
                vRecv.erase(vRecv.begin(), vRecv.end() - nHeaderSize);
            }
            break;
        }
        if (pstart - vRecv.begin() > 0)
            printf("\n\nPROCESSMESSAGE SKIPPED %d BYTES\n\n", pstart - vRecv.begin());
        vRecv.erase(vRecv.begin(), pstart);
s_nakamoto's avatar
s_nakamoto committed
2576

2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
        // Read header
        vector<char> vHeaderSave(vRecv.begin(), vRecv.begin() + nHeaderSize);
        CMessageHeader hdr;
        vRecv >> hdr;
        if (!hdr.IsValid())
        {
            printf("\n\nPROCESSMESSAGE: ERRORS IN HEADER %s\n\n\n", hdr.GetCommand().c_str());
            continue;
        }
        string strCommand = hdr.GetCommand();

        // Message size
        unsigned int nMessageSize = hdr.nMessageSize;
        if (nMessageSize > MAX_SIZE)
        {
            printf("ProcessMessage(%s, %u bytes) : nMessageSize > MAX_SIZE\n", strCommand.c_str(), nMessageSize);
            continue;
        }
        if (nMessageSize > vRecv.size())
        {
            // Rewind and wait for rest of message
            vRecv.insert(vRecv.begin(), vHeaderSave.begin(), vHeaderSave.end());
            break;
        }

        // Checksum
        if (vRecv.GetVersion() >= 209)
        {
            uint256 hash = Hash(vRecv.begin(), vRecv.begin() + nMessageSize);
            unsigned int nChecksum = 0;
            memcpy(&nChecksum, &hash, sizeof(nChecksum));
            if (nChecksum != hdr.nChecksum)
            {
                printf("ProcessMessage(%s, %u bytes) : CHECKSUM ERROR nChecksum=%08x hdr.nChecksum=%08x\n",
                       strCommand.c_str(), nMessageSize, nChecksum, hdr.nChecksum);
                continue;
            }
        }

        // Copy message to its own buffer
        CDataStream vMsg(vRecv.begin(), vRecv.begin() + nMessageSize, vRecv.nType, vRecv.nVersion);
        vRecv.ignore(nMessageSize);

        // Process message
        bool fRet = false;
        try
        {
            CRITICAL_BLOCK(cs_main)
                fRet = ProcessMessage(pfrom, strCommand, vMsg);
            if (fShutdown)
                return true;
        }
        catch (std::ios_base::failure& e)
        {
            if (strstr(e.what(), "end of data"))
            {
                // Allow exceptions from underlength message on vRecv
                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());
            }
            else if (strstr(e.what(), "size too large"))
            {
                // Allow exceptions from overlong size
                printf("ProcessMessage(%s, %u bytes) : Exception '%s' caught\n", strCommand.c_str(), nMessageSize, e.what());
            }
            else
            {
                PrintExceptionContinue(&e, "ProcessMessage()");
            }
        }
        catch (std::exception& e) {
            PrintExceptionContinue(&e, "ProcessMessage()");
        } catch (...) {
            PrintExceptionContinue(NULL, "ProcessMessage()");
        }

        if (!fRet)
            printf("ProcessMessage(%s, %u bytes) FAILED\n", strCommand.c_str(), nMessageSize);
    }

    vRecv.Compact();
    return true;
}
s_nakamoto's avatar
s_nakamoto committed
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672


bool SendMessages(CNode* pto, bool fSendTrickle)
{
    CRITICAL_BLOCK(cs_main)
    {
        // Don't send anything until we get their version message
        if (pto->nVersion == 0)
            return true;

        // Keep-alive ping
        if (pto->nLastSend && GetTime() - pto->nLastSend > 30 * 60 && pto->vSend.empty())
            pto->PushMessage("ping");

s_nakamoto's avatar
s_nakamoto committed
2673
2674
2675
        // Resend wallet transactions that haven't gotten in a block yet
        ResendWalletTransactions();

s_nakamoto's avatar
s_nakamoto committed
2676
        // Address refresh broadcast
2677
        static int64 nLastRebroadcast;
s_nakamoto's avatar
s_nakamoto committed
2678
        if (GetTime() - nLastRebroadcast > 24 * 60 * 60)
s_nakamoto's avatar
s_nakamoto committed
2679
2680
2681
2682
        {
            nLastRebroadcast = GetTime();
            CRITICAL_BLOCK(cs_vNodes)
            {
2683
                BOOST_FOREACH(CNode* pnode, vNodes)
s_nakamoto's avatar
s_nakamoto committed
2684
2685
2686
2687
2688
2689
                {
                    // Periodically clear setAddrKnown to allow refresh broadcasts
                    pnode->setAddrKnown.clear();

                    // Rebroadcast our address
                    if (addrLocalHost.IsRoutable() && !fUseProxy)
s_nakamoto's avatar
s_nakamoto committed
2690
2691
2692
2693
2694
                    {
                        CAddress addr(addrLocalHost);
                        addr.nTime = GetAdjustedTime();
                        pnode->PushAddress(addr);
                    }
s_nakamoto's avatar
s_nakamoto committed
2695
2696
2697
2698
                }
            }
        }

s_nakamoto's avatar
s_nakamoto committed
2699
        // Clear out old addresses periodically so it's not too much work at once
2700
        static int64 nLastClear;
s_nakamoto's avatar
s_nakamoto committed
2701
2702
2703
2704
2705
2706
2707
2708
        if (nLastClear == 0)
            nLastClear = GetTime();
        if (GetTime() - nLastClear > 10 * 60 && vNodes.size() >= 3)
        {
            nLastClear = GetTime();
            CRITICAL_BLOCK(cs_mapAddresses)
            {
                CAddrDB addrdb;
2709
                int64 nSince = GetAdjustedTime() - 14 * 24 * 60 * 60;
s_nakamoto's avatar
s_nakamoto committed
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
                for (map<vector<unsigned char>, CAddress>::iterator mi = mapAddresses.begin();
                     mi != mapAddresses.end();)
                {
                    const CAddress& addr = (*mi).second;
                    if (addr.nTime < nSince)
                    {
                        if (mapAddresses.size() < 1000 || GetTime() > nLastClear + 20)
                            break;
                        addrdb.EraseAddress(addr);
                        mapAddresses.erase(mi++);
                    }
                    else
                        mi++;
                }
            }
        }
s_nakamoto's avatar
s_nakamoto committed
2726
2727
2728
2729
2730
2731
2732
2733
2734


        //
        // Message: addr
        //
        if (fSendTrickle)
        {
            vector<CAddress> vAddr;
            vAddr.reserve(pto->vAddrToSend.size());
2735
            BOOST_FOREACH(const CAddress& addr, pto->vAddrToSend)
s_nakamoto's avatar
s_nakamoto committed
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
            {
                // returns true if wasn't already contained in the set
                if (pto->setAddrKnown.insert(addr).second)
                {
                    vAddr.push_back(addr);
                    // receiver rejects addr messages larger than 1000
                    if (vAddr.size() >= 1000)
                    {
                        pto->PushMessage("addr", vAddr);
                        vAddr.clear();
                    }
                }
            }
            pto->vAddrToSend.clear();
            if (!vAddr.empty())
                pto->PushMessage("addr", vAddr);
        }


        //
        // Message: inventory
        //
        vector<CInv> vInv;
        vector<CInv> vInvWait;
        CRITICAL_BLOCK(pto->cs_inventory)
        {
            vInv.reserve(pto->vInventoryToSend.size());
            vInvWait.reserve(pto->vInventoryToSend.size());
2764
            BOOST_FOREACH(const CInv& inv, pto->vInventoryToSend)
s_nakamoto's avatar
s_nakamoto committed
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
            {
                if (pto->setInventoryKnown.count(inv))
                    continue;

                // trickle out tx inv to protect privacy
                if (inv.type == MSG_TX && !fSendTrickle)
                {
                    // 1/4 of tx invs blast to all immediately
                    static uint256 hashSalt;
                    if (hashSalt == 0)
                        RAND_bytes((unsigned char*)&hashSalt, sizeof(hashSalt));
                    uint256 hashRand = inv.hash ^ hashSalt;
                    hashRand = Hash(BEGIN(hashRand), END(hashRand));
                    bool fTrickleWait = ((hashRand & 3) != 0);

                    // always trickle our own transactions
                    if (!fTrickleWait)
                    {
Pieter Wuille's avatar
Pieter Wuille committed
2783
2784
2785
2786
                        CWalletTx wtx;
                        if (GetTransaction(inv.hash, wtx))
                            if (wtx.fFromMe)
                                fTrickleWait = true;
s_nakamoto's avatar
s_nakamoto committed
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
                    }

                    if (fTrickleWait)
                    {
                        vInvWait.push_back(inv);
                        continue;
                    }
                }

                // returns true if wasn't already contained in the set
                if (pto->setInventoryKnown.insert(inv).second)
                {
                    vInv.push_back(inv);
                    if (vInv.size() >= 1000)
                    {
                        pto->PushMessage("inv", vInv);
                        vInv.clear();
                    }
                }
            }
            pto->vInventoryToSend = vInvWait;
        }
        if (!vInv.empty())
            pto->PushMessage("inv", vInv);


        //
        // Message: getdata
        //
        vector<CInv> vGetData;
2817
        int64 nNow = GetTime() * 1000000;
s_nakamoto's avatar
s_nakamoto committed
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
        CTxDB txdb("r");
        while (!pto->mapAskFor.empty() && (*pto->mapAskFor.begin()).first <= nNow)
        {
            const CInv& inv = (*pto->mapAskFor.begin()).second;
            if (!AlreadyHave(txdb, inv))
            {
                printf("sending getdata: %s\n", inv.ToString().c_str());
                vGetData.push_back(inv);
                if (vGetData.size() >= 1000)
                {
                    pto->PushMessage("getdata", vGetData);
                    vGetData.clear();
                }
            }
2832
            mapAlreadyAskedFor[inv] = nNow;
s_nakamoto's avatar
s_nakamoto committed
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
            pto->mapAskFor.erase(pto->mapAskFor.begin());
        }
        if (!vGetData.empty())
            pto->PushMessage("getdata", vGetData);

    }
    return true;
}














//////////////////////////////////////////////////////////////////////////////
//
// BitcoinMiner
//

Pieter Wuille's avatar
Pieter Wuille committed
2860
int static FormatHashBlocks(void* pbuffer, unsigned int len)
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
{
    unsigned char* pdata = (unsigned char*)pbuffer;
    unsigned int blocks = 1 + ((len + 8) / 64);
    unsigned char* pend = pdata + 64 * blocks;
    memset(pdata + len, 0, 64 * blocks - len);
    pdata[len] = 0x80;
    unsigned int bits = len * 8;
    pend[-1] = (bits >> 0) & 0xff;
    pend[-2] = (bits >> 8) & 0xff;
    pend[-3] = (bits >> 16) & 0xff;
    pend[-4] = (bits >> 24) & 0xff;
    return blocks;
}

static const unsigned int pSHA256InitState[8] =
{0x6a09e667, 0xbb67ae85, 0x3c6ef372, 0xa54ff53a, 0x510e527f, 0x9b05688c, 0x1f83d9ab, 0x5be0cd19};

2878
void SHA256Transform(void* pstate, void* pinput, const void* pinit)
2879
{
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
    SHA256_CTX ctx;
    unsigned char data[64];

    SHA256_Init(&ctx);

    for (int i = 0; i < 16; i++)
        ((uint32_t*)data)[i] = ByteReverse(((uint32_t*)pinput)[i]);

    for (int i = 0; i < 8; i++)
        ctx.h[i] = ((uint32_t*)pinit)[i];

    SHA256_Update(&ctx, data, sizeof(data));
    for (int i = 0; i < 8; i++) 
        ((uint32_t*)pstate)[i] = ctx.h[i];
2894
2895
2896
2897
2898
2899
}

//
// ScanHash scans nonces looking for a hash with at least some zero bits.
// It operates on big endian data.  Caller does the byte reversing.
// All input buffers are 16-byte aligned.  nNonce is usually preserved
s_nakamoto's avatar
s_nakamoto committed
2900
// between calls, but periodically or if nNonce is 0xffff0000 or above,
2901
2902
// the block is rebuilt and nNonce starts over at zero.
//
Pieter Wuille's avatar
Pieter Wuille committed
2903
unsigned int static ScanHash_CryptoPP(char* pmidstate, char* pdata, char* phash1, char* phash, unsigned int& nHashesDone)
2904
{
s_nakamoto's avatar
s_nakamoto committed
2905
    unsigned int& nNonce = *(unsigned int*)(pdata + 12);
2906
2907
2908
    for (;;)
    {
        // Crypto++ SHA-256
s_nakamoto's avatar
s_nakamoto committed
2909
        // Hash pdata using pmidstate as the starting state into
2910
2911
        // preformatted buffer phash1, then hash phash1 into phash
        nNonce++;
s_nakamoto's avatar
s_nakamoto committed
2912
        SHA256Transform(phash1, pdata, pmidstate);
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
        SHA256Transform(phash, phash1, pSHA256InitState);

        // Return the nonce if the hash has at least some zero bits,
        // caller will check if it has enough to reach the target
        if (((unsigned short*)phash)[14] == 0)
            return nNonce;

        // If nothing found after trying for a while, return -1
        if ((nNonce & 0xffff) == 0)
        {
            nHashesDone = 0xffff+1;
            return -1;
        }
    }
}

2929
// Some explaining would be appreciated
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
class COrphan
{
public:
    CTransaction* ptx;
    set<uint256> setDependsOn;
    double dPriority;

    COrphan(CTransaction* ptxIn)
    {
        ptx = ptxIn;
        dPriority = 0;
    }

    void print() const
    {
        printf("COrphan(hash=%s, dPriority=%.1f)\n", ptx->GetHash().ToString().substr(0,10).c_str(), dPriority);
2946
        BOOST_FOREACH(uint256 hash, setDependsOn)
2947
2948
2949
2950
2951
            printf("   setDependsOn %s\n", hash.ToString().substr(0,10).c_str());
    }
};


2952
2953
2954
uint64 nLastBlockTx = 0;
uint64 nLastBlockSize = 0;

s_nakamoto's avatar
s_nakamoto committed
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
CBlock* CreateNewBlock(CReserveKey& reservekey)
{
    CBlockIndex* pindexPrev = pindexBest;

    // Create new block
    auto_ptr<CBlock> pblock(new CBlock());
    if (!pblock.get())
        return NULL;

    // Create coinbase tx
    CTransaction txNew;
    txNew.vin.resize(1);
    txNew.vin[0].prevout.SetNull();
    txNew.vout.resize(1);
    txNew.vout[0].scriptPubKey << reservekey.GetReservedKey() << OP_CHECKSIG;

    // Add our coinbase tx as first transaction
    pblock->vtx.push_back(txNew);

    // Collect memory pool transactions into the block
2975
    int64 nFees = 0;
s_nakamoto's avatar
s_nakamoto committed
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
    CRITICAL_BLOCK(cs_main)
    CRITICAL_BLOCK(cs_mapTransactions)
    {
        CTxDB txdb("r");

        // Priority order to process transactions
        list<COrphan> vOrphan; // list memory doesn't move
        map<uint256, vector<COrphan*> > mapDependers;
        multimap<double, CTransaction*> mapPriority;
        for (map<uint256, CTransaction>::iterator mi = mapTransactions.begin(); mi != mapTransactions.end(); ++mi)
        {
            CTransaction& tx = (*mi).second;
            if (tx.IsCoinBase() || !tx.IsFinal())
                continue;

            COrphan* porphan = NULL;
            double dPriority = 0;
2993
            BOOST_FOREACH(const CTxIn& txin, tx.vin)
s_nakamoto's avatar
s_nakamoto committed
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
            {
                // Read prev transaction
                CTransaction txPrev;
                CTxIndex txindex;
                if (!txPrev.ReadFromDisk(txdb, txin.prevout, txindex))
                {
                    // Has to wait for dependencies
                    if (!porphan)
                    {
                        // Use list for automatic deletion
                        vOrphan.push_back(COrphan(&tx));
                        porphan = &vOrphan.back();
                    }
                    mapDependers[txin.prevout.hash].push_back(porphan);
                    porphan->setDependsOn.insert(txin.prevout.hash);
                    continue;
                }
3011
                int64 nValueIn = txPrev.vout[txin.prevout.n].nValue;
s_nakamoto's avatar
s_nakamoto committed
3012
3013

                // Read block header
3014
                int nConf = txindex.GetDepthInMainChain();
s_nakamoto's avatar
s_nakamoto committed
3015
3016
3017

                dPriority += (double)nValueIn * nConf;

3018
                if (fDebug && GetBoolArg("-printpriority"))
s_nakamoto's avatar
s_nakamoto committed
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
                    printf("priority     nValueIn=%-12I64d nConf=%-5d dPriority=%-20.1f\n", nValueIn, nConf, dPriority);
            }

            // Priority is sum(valuein * age) / txsize
            dPriority /= ::GetSerializeSize(tx, SER_NETWORK);

            if (porphan)
                porphan->dPriority = dPriority;
            else
                mapPriority.insert(make_pair(-dPriority, &(*mi).second));

3030
            if (fDebug && GetBoolArg("-printpriority"))
s_nakamoto's avatar
s_nakamoto committed
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
            {
                printf("priority %-20.1f %s\n%s", dPriority, tx.GetHash().ToString().substr(0,10).c_str(), tx.ToString().c_str());
                if (porphan)
                    porphan->print();
                printf("\n");
            }
        }

        // Collect transactions into block
        map<uint256, CTxIndex> mapTestPool;
3041
        uint64 nBlockSize = 1000;
3042
        uint64 nBlockTx = 0;
3043
        int nBlockSigOps = 100;
s_nakamoto's avatar
s_nakamoto committed
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
        while (!mapPriority.empty())
        {
            // Take highest priority transaction off priority queue
            double dPriority = -(*mapPriority.begin()).first;
            CTransaction& tx = *(*mapPriority.begin()).second;
            mapPriority.erase(mapPriority.begin());

            // Size limits
            unsigned int nTxSize = ::GetSerializeSize(tx, SER_NETWORK);
            if (nBlockSize + nTxSize >= MAX_BLOCK_SIZE_GEN)
                continue;

3056
            // Legacy limits on sigOps:
3057
3058
            int nTxSigOps = tx.GetLegacySigOpCount();
            if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
3059
3060
                continue;

s_nakamoto's avatar
s_nakamoto committed
3061
            // Transaction fee required depends on block size
3062
            bool fAllowFree = (nBlockSize + nTxSize < 4000 || CTransaction::AllowFree(dPriority));
3063
            int64 nMinFee = tx.GetMinFee(nBlockSize, fAllowFree, GMF_BLOCK);
s_nakamoto's avatar
s_nakamoto committed
3064
3065
3066
3067

            // Connecting shouldn't fail due to dependency on other memory pool transactions
            // because we're already processing them in order of dependency
            map<uint256, CTxIndex> mapTestPoolTmp(mapTestPool);
3068
            MapPrevTx mapInputs;
3069
3070
            bool fInvalid;
            if (!tx.FetchInputs(txdb, mapTestPoolTmp, false, true, mapInputs, fInvalid))
Gavin Andresen's avatar
Gavin Andresen committed
3071
                continue;
3072

3073
3074
            int64 nFees = tx.GetValueIn(mapInputs)-tx.GetValueOut();
            if (nFees < nMinFee)
Gavin Andresen's avatar
Gavin Andresen committed
3075
                continue;
3076

3077
3078
            nTxSigOps += tx.GetP2SHSigOpCount(mapInputs);
            if (nBlockSigOps + nTxSigOps >= MAX_BLOCK_SIGOPS)
s_nakamoto's avatar
s_nakamoto committed
3079
                continue;
3080
3081
3082

            if (!tx.ConnectInputs(mapInputs, mapTestPoolTmp, CDiskTxPos(1,1,1), pindexPrev, false, true))
                continue;
3083
            mapTestPoolTmp[tx.GetHash()] = CTxIndex(CDiskTxPos(1,1,1), tx.vout.size());
s_nakamoto's avatar
s_nakamoto committed
3084
3085
3086
3087
3088
            swap(mapTestPool, mapTestPoolTmp);

            // Added
            pblock->vtx.push_back(tx);
            nBlockSize += nTxSize;
3089
            ++nBlockTx;
3090
            nBlockSigOps += nTxSigOps;
s_nakamoto's avatar
s_nakamoto committed
3091
3092
3093
3094
3095

            // Add transactions that depend on this one to the priority queue
            uint256 hash = tx.GetHash();
            if (mapDependers.count(hash))
            {
3096
                BOOST_FOREACH(COrphan* porphan, mapDependers[hash])
s_nakamoto's avatar
s_nakamoto committed
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
                {
                    if (!porphan->setDependsOn.empty())
                    {
                        porphan->setDependsOn.erase(hash);
                        if (porphan->setDependsOn.empty())
                            mapPriority.insert(make_pair(-porphan->dPriority, porphan->ptx));
                    }
                }
            }
        }
3107
3108
3109
3110
3111

        nLastBlockTx = nBlockTx;
        nLastBlockSize = nBlockSize;
        printf("CreateNewBlock(): total size %lu\n", nBlockSize);

s_nakamoto's avatar
s_nakamoto committed
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
    }
    pblock->vtx[0].vout[0].nValue = GetBlockValue(pindexPrev->nHeight+1, nFees);

    // Fill in header
    pblock->hashPrevBlock  = pindexPrev->GetBlockHash();
    pblock->hashMerkleRoot = pblock->BuildMerkleTree();
    pblock->nTime          = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
    pblock->nBits          = GetNextWorkRequired(pindexPrev);
    pblock->nNonce         = 0;

    return pblock.release();
}


3126
void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce)
s_nakamoto's avatar
s_nakamoto committed
3127
3128
{
    // Update nExtraNonce
3129
3130
    static uint256 hashPrevBlock;
    if (hashPrevBlock != pblock->hashPrevBlock)
s_nakamoto's avatar
s_nakamoto committed
3131
    {
3132
3133
        nExtraNonce = 0;
        hashPrevBlock = pblock->hashPrevBlock;
s_nakamoto's avatar
s_nakamoto committed
3134
    }
3135
    ++nExtraNonce;
3136
    pblock->vtx[0].vin[0].scriptSig = (CScript() << pblock->nTime << CBigNum(nExtraNonce)) + COINBASE_FLAGS;
3137
3138
    assert(pblock->vtx[0].vin[0].scriptSig.size() <= 100);

s_nakamoto's avatar
s_nakamoto committed
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
    pblock->hashMerkleRoot = pblock->BuildMerkleTree();
}


void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1)
{
    //
    // Prebuild hash buffers
    //
    struct
    {
        struct unnamed2
        {
            int nVersion;
            uint256 hashPrevBlock;
            uint256 hashMerkleRoot;
            unsigned int nTime;
            unsigned int nBits;
            unsigned int nNonce;
        }
        block;
        unsigned char pchPadding0[64];
        uint256 hash1;
        unsigned char pchPadding1[64];
    }
    tmp;
    memset(&tmp, 0, sizeof(tmp));

    tmp.block.nVersion       = pblock->nVersion;
    tmp.block.hashPrevBlock  = pblock->hashPrevBlock;
    tmp.block.hashMerkleRoot = pblock->hashMerkleRoot;
    tmp.block.nTime          = pblock->nTime;
    tmp.block.nBits          = pblock->nBits;
    tmp.block.nNonce         = pblock->nNonce;

    FormatHashBlocks(&tmp.block, sizeof(tmp.block));
    FormatHashBlocks(&tmp.hash1, sizeof(tmp.hash1));

    // Byte swap all the input buffer
    for (int i = 0; i < sizeof(tmp)/4; i++)
        ((unsigned int*)&tmp)[i] = ByteReverse(((unsigned int*)&tmp)[i]);

    // Precalc the first half of the first hash, which stays constant
    SHA256Transform(pmidstate, &tmp.block, pSHA256InitState);

    memcpy(pdata, &tmp.block, 128);
    memcpy(phash1, &tmp.hash1, 64);
}


Pieter Wuille's avatar
Pieter Wuille committed
3189
bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey)
s_nakamoto's avatar
s_nakamoto committed
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
{
    uint256 hash = pblock->GetHash();
    uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();

    if (hash > hashTarget)
        return false;

    //// debug print
    printf("BitcoinMiner:\n");
    printf("proof-of-work found  \n  hash: %s  \ntarget: %s\n", hash.GetHex().c_str(), hashTarget.GetHex().c_str());
    pblock->print();
    printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
    printf("generated %s\n", FormatMoney(pblock->vtx[0].vout[0].nValue).c_str());

    // Found a solution
    CRITICAL_BLOCK(cs_main)
    {
        if (pblock->hashPrevBlock != hashBestChain)
            return error("BitcoinMiner : generated block is stale");

        // Remove key from key pool
        reservekey.KeepKey();

        // Track how many getdata requests this block gets
Gavin Andresen's avatar
Gavin Andresen committed
3214
        CRITICAL_BLOCK(wallet.cs_wallet)
Pieter Wuille's avatar
Pieter Wuille committed
3215
            wallet.mapRequestCount[pblock->GetHash()] = 0;
s_nakamoto's avatar
s_nakamoto committed
3216
3217
3218
3219
3220
3221
3222
3223
3224

        // Process this block the same as if we had received it from another node
        if (!ProcessBlock(NULL, pblock))
            return error("BitcoinMiner : ProcessBlock, block not accepted");
    }

    return true;
}

Pieter Wuille's avatar
Pieter Wuille committed
3225
3226
3227
void static ThreadBitcoinMiner(void* parg);

void static BitcoinMiner(CWallet *pwallet)
s_nakamoto's avatar
s_nakamoto committed
3228
3229
3230
3231
{
    printf("BitcoinMiner started\n");
    SetThreadPriority(THREAD_PRIORITY_LOWEST);

s_nakamoto's avatar
s_nakamoto committed
3232
    // Each thread has its own key and counter
Pieter Wuille's avatar
Pieter Wuille committed
3233
    CReserveKey reservekey(pwallet);
3234
    unsigned int nExtraNonce = 0;
s_nakamoto's avatar
s_nakamoto committed
3235

s_nakamoto's avatar
s_nakamoto committed
3236
3237
    while (fGenerateBitcoins)
    {
3238
3239
        if (AffinityBugWorkaround(ThreadBitcoinMiner))
            return;
s_nakamoto's avatar
s_nakamoto committed
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
        if (fShutdown)
            return;
        while (vNodes.empty() || IsInitialBlockDownload())
        {
            Sleep(1000);
            if (fShutdown)
                return;
            if (!fGenerateBitcoins)
                return;
        }


        //
        // Create new block
        //
s_nakamoto's avatar
s_nakamoto committed
3255
3256
3257
3258
        unsigned int nTransactionsUpdatedLast = nTransactionsUpdated;
        CBlockIndex* pindexPrev = pindexBest;

        auto_ptr<CBlock> pblock(CreateNewBlock(reservekey));
s_nakamoto's avatar
s_nakamoto committed
3259
3260
        if (!pblock.get())
            return;
3261
        IncrementExtraNonce(pblock.get(), pindexPrev, nExtraNonce);
s_nakamoto's avatar
s_nakamoto committed
3262
3263
3264
3265
3266

        printf("Running BitcoinMiner with %d transactions in block\n", pblock->vtx.size());


        //
s_nakamoto's avatar
s_nakamoto committed
3267
        // Prebuild hash buffers
s_nakamoto's avatar
s_nakamoto committed
3268
        //
s_nakamoto's avatar
s_nakamoto committed
3269
3270
3271
3272
3273
3274
3275
3276
        char pmidstatebuf[32+16]; char* pmidstate = alignup<16>(pmidstatebuf);
        char pdatabuf[128+16];    char* pdata     = alignup<16>(pdatabuf);
        char phash1buf[64+16];    char* phash1    = alignup<16>(phash1buf);

        FormatHashBuffers(pblock.get(), pmidstate, pdata, phash1);

        unsigned int& nBlockTime = *(unsigned int*)(pdata + 64 + 4);
        unsigned int& nBlockNonce = *(unsigned int*)(pdata + 64 + 12);
s_nakamoto's avatar
s_nakamoto committed
3277
3278
3279
3280
3281


        //
        // Search
        //
3282
        int64 nStart = GetTime();
s_nakamoto's avatar
s_nakamoto committed
3283
3284
3285
3286
3287
        uint256 hashTarget = CBigNum().SetCompact(pblock->nBits).getuint256();
        uint256 hashbuf[2];
        uint256& hash = *alignup<16>(hashbuf);
        loop
        {
3288
3289
3290
            unsigned int nHashesDone = 0;
            unsigned int nNonceFound;

3291
3292
3293
            // Crypto++ SHA-256
            nNonceFound = ScanHash_CryptoPP(pmidstate, pdata + 64, phash1,
                                            (char*)&hash, nHashesDone);
s_nakamoto's avatar
s_nakamoto committed
3294

3295
3296
            // Check if something found
            if (nNonceFound != -1)
s_nakamoto's avatar
s_nakamoto committed
3297
3298
3299
3300
3301
3302
            {
                for (int i = 0; i < sizeof(hash)/4; i++)
                    ((unsigned int*)&hash)[i] = ByteReverse(((unsigned int*)&hash)[i]);

                if (hash <= hashTarget)
                {
3303
3304
                    // Found a solution
                    pblock->nNonce = ByteReverse(nNonceFound);
s_nakamoto's avatar
s_nakamoto committed
3305
3306
3307
                    assert(hash == pblock->GetHash());

                    SetThreadPriority(THREAD_PRIORITY_NORMAL);
Pieter Wuille's avatar
Pieter Wuille committed
3308
                    CheckWork(pblock.get(), *pwalletMain, reservekey);
s_nakamoto's avatar
s_nakamoto committed
3309
3310
3311
3312
3313
                    SetThreadPriority(THREAD_PRIORITY_LOWEST);
                    break;
                }
            }

3314
            // Meter hashes/sec
3315
            static int64 nHashCounter;
3316
            if (nHPSTimerStart == 0)
s_nakamoto's avatar
s_nakamoto committed
3317
            {
3318
3319
3320
3321
3322
3323
3324
3325
3326
                nHPSTimerStart = GetTimeMillis();
                nHashCounter = 0;
            }
            else
                nHashCounter += nHashesDone;
            if (GetTimeMillis() - nHPSTimerStart > 4000)
            {
                static CCriticalSection cs;
                CRITICAL_BLOCK(cs)
s_nakamoto's avatar
s_nakamoto committed
3327
                {
3328
                    if (GetTimeMillis() - nHPSTimerStart > 4000)
s_nakamoto's avatar
s_nakamoto committed
3329
                    {
3330
3331
3332
3333
                        dHashesPerSec = 1000.0 * nHashCounter / (GetTimeMillis() - nHPSTimerStart);
                        nHPSTimerStart = GetTimeMillis();
                        nHashCounter = 0;
                        string strStatus = strprintf("    %.0f khash/s", dHashesPerSec/1000.0);
3334
                        UIThreadCall(boost::bind(CalledSetStatusBar, strStatus, 0));
3335
                        static int64 nLogTime;
3336
                        if (GetTime() - nLogTime > 30 * 60)
s_nakamoto's avatar
s_nakamoto committed
3337
                        {
3338
3339
3340
                            nLogTime = GetTime();
                            printf("%s ", DateTimeStrFormat("%x %H:%M", GetTime()).c_str());
                            printf("hashmeter %3d CPUs %6.0f khash/s\n", vnThreadsRunning[3], dHashesPerSec/1000.0);
s_nakamoto's avatar
s_nakamoto committed
3341
3342
3343
                        }
                    }
                }
3344
            }
s_nakamoto's avatar
s_nakamoto committed
3345

3346
3347
3348
3349
3350
3351
3352
3353
3354
            // Check for stop or if block needs to be rebuilt
            if (fShutdown)
                return;
            if (!fGenerateBitcoins)
                return;
            if (fLimitProcessors && vnThreadsRunning[3] > nLimitProcessors)
                return;
            if (vNodes.empty())
                break;
s_nakamoto's avatar
s_nakamoto committed
3355
            if (nBlockNonce >= 0xffff0000)
3356
3357
3358
3359
3360
                break;
            if (nTransactionsUpdated != nTransactionsUpdatedLast && GetTime() - nStart > 60)
                break;
            if (pindexPrev != pindexBest)
                break;
s_nakamoto's avatar
s_nakamoto committed
3361

3362
            // Update nTime every few seconds
3363
            pblock->nTime = max(pindexPrev->GetMedianTimePast()+1, GetAdjustedTime());
s_nakamoto's avatar
s_nakamoto committed
3364
            nBlockTime = ByteReverse(pblock->nTime);
s_nakamoto's avatar
s_nakamoto committed
3365
3366
3367
3368
        }
    }
}

Pieter Wuille's avatar
Pieter Wuille committed
3369
void static ThreadBitcoinMiner(void* parg)
s_nakamoto's avatar
s_nakamoto committed
3370
{
Pieter Wuille's avatar
Pieter Wuille committed
3371
    CWallet* pwallet = (CWallet*)parg;
3372
    try
s_nakamoto's avatar
s_nakamoto committed
3373
    {
3374
        vnThreadsRunning[3]++;
Pieter Wuille's avatar
Pieter Wuille committed
3375
        BitcoinMiner(pwallet);
3376
        vnThreadsRunning[3]--;
3377
    }
3378
3379
3380
3381
3382
3383
    catch (std::exception& e) {
        vnThreadsRunning[3]--;
        PrintException(&e, "ThreadBitcoinMiner()");
    } catch (...) {
        vnThreadsRunning[3]--;
        PrintException(NULL, "ThreadBitcoinMiner()");
s_nakamoto's avatar
s_nakamoto committed
3384
    }
3385
3386
3387
3388
3389
    UIThreadCall(boost::bind(CalledSetStatusBar, "", 0));
    nHPSTimerStart = 0;
    if (vnThreadsRunning[3] == 0)
        dHashesPerSec = 0;
    printf("ThreadBitcoinMiner exiting, %d threads remaining\n", vnThreadsRunning[3]);
3390
3391
}

s_nakamoto's avatar
s_nakamoto committed
3392

Pieter Wuille's avatar
Pieter Wuille committed
3393
void GenerateBitcoins(bool fGenerate, CWallet* pwallet)
s_nakamoto's avatar
s_nakamoto committed
3394
{
3395
    if (fGenerateBitcoins != fGenerate)
s_nakamoto's avatar
s_nakamoto committed
3396
    {
3397
        fGenerateBitcoins = fGenerate;
Pieter Wuille's avatar
Pieter Wuille committed
3398
        WriteSetting("fGenerateBitcoins", fGenerateBitcoins);
3399
        MainFrameRepaint();
s_nakamoto's avatar
s_nakamoto committed
3400
    }
3401
    if (fGenerateBitcoins)
s_nakamoto's avatar
s_nakamoto committed
3402
    {
3403
3404
3405
3406
3407
3408
3409
3410
3411
        int nProcessors = boost::thread::hardware_concurrency();
        printf("%d processors\n", nProcessors);
        if (nProcessors < 1)
            nProcessors = 1;
        if (fLimitProcessors && nProcessors > nLimitProcessors)
            nProcessors = nLimitProcessors;
        int nAddThreads = nProcessors - vnThreadsRunning[3];
        printf("Starting %d BitcoinMiner threads\n", nAddThreads);
        for (int i = 0; i < nAddThreads; i++)
s_nakamoto's avatar
s_nakamoto committed
3412
        {
Pieter Wuille's avatar
Pieter Wuille committed
3413
            if (!CreateThread(ThreadBitcoinMiner, pwallet))
3414
3415
                printf("Error: CreateThread(ThreadBitcoinMiner) failed\n");
            Sleep(10);
s_nakamoto's avatar
s_nakamoto committed
3416
        }
3417
    }
s_nakamoto's avatar
s_nakamoto committed
3418
}