Hide window from taskbar when "minimize to tray" active by making window into Tool...
[novacoin.git] / src / main.h
1 // Copyright (c) 2009-2010 Satoshi Nakamoto
2 // Copyright (c) 2009-2012 The Bitcoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file license.txt or http://www.opensource.org/licenses/mit-license.php.
5 #ifndef BITCOIN_MAIN_H
6 #define BITCOIN_MAIN_H
7
8 #include "bignum.h"
9 #include "net.h"
10 #include "key.h"
11 #include "script.h"
12 #include "db.h"
13
14 #include <list>
15
16 class CBlock;
17 class CBlockIndex;
18 class CWalletTx;
19 class CWallet;
20 class CKeyItem;
21 class CReserveKey;
22 class CWalletDB;
23
24 class CAddress;
25 class CInv;
26 class CRequestTracker;
27 class CNode;
28 class CBlockIndex;
29
30 static const unsigned int MAX_BLOCK_SIZE = 1000000;
31 static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/2;
32 static const int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
33 static const int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
34 static const int64 COIN = 100000000;
35 static const int64 CENT = 1000000;
36 static const int64 MIN_TX_FEE = 50000;
37 static const int64 MIN_RELAY_TX_FEE = 10000;
38 static const int64 MAX_MONEY = 21000000 * COIN;
39 inline bool MoneyRange(int64 nValue) { return (nValue >= 0 && nValue <= MAX_MONEY); }
40 static const int COINBASE_MATURITY = 100;
41 // Threshold for nLockTime: below this value it is interpreted as block number, otherwise as UNIX timestamp.
42 static const int LOCKTIME_THRESHOLD = 500000000; // Tue Nov  5 00:53:20 1985 UTC
43 #ifdef USE_UPNP
44 static const int fHaveUPnP = true;
45 #else
46 static const int fHaveUPnP = false;
47 #endif
48
49
50
51
52
53
54 extern CCriticalSection cs_main;
55 extern std::map<uint256, CBlockIndex*> mapBlockIndex;
56 extern uint256 hashGenesisBlock;
57 extern CBlockIndex* pindexGenesisBlock;
58 extern int nBestHeight;
59 extern CBigNum bnBestChainWork;
60 extern CBigNum bnBestInvalidWork;
61 extern uint256 hashBestChain;
62 extern CBlockIndex* pindexBest;
63 extern unsigned int nTransactionsUpdated;
64 extern double dHashesPerSec;
65 extern int64 nHPSTimerStart;
66 extern int64 nTimeBestReceived;
67 extern CCriticalSection cs_setpwalletRegistered;
68 extern std::set<CWallet*> setpwalletRegistered;
69
70 // Settings
71 extern int fGenerateBitcoins;
72 extern int64 nTransactionFee;
73 extern int fLimitProcessors;
74 extern int nLimitProcessors;
75 extern int fMinimizeToTray;
76 extern int fMinimizeOnClose;
77 extern int fUseUPnP;
78
79
80
81
82
83 class CReserveKey;
84 class CTxDB;
85 class CTxIndex;
86
87 void RegisterWallet(CWallet* pwalletIn);
88 void UnregisterWallet(CWallet* pwalletIn);
89 bool ProcessBlock(CNode* pfrom, CBlock* pblock);
90 bool CheckDiskSpace(uint64 nAdditionalBytes=0);
91 FILE* OpenBlockFile(unsigned int nFile, unsigned int nBlockPos, const char* pszMode="rb");
92 FILE* AppendBlockFile(unsigned int& nFileRet);
93 bool LoadBlockIndex(bool fAllowNew=true);
94 void PrintBlockTree();
95 bool ProcessMessages(CNode* pfrom);
96 bool SendMessages(CNode* pto, bool fSendTrickle);
97 void GenerateBitcoins(bool fGenerate, CWallet* pwallet);
98 CBlock* CreateNewBlock(CReserveKey& reservekey);
99 void IncrementExtraNonce(CBlock* pblock, CBlockIndex* pindexPrev, unsigned int& nExtraNonce);
100 void FormatHashBuffers(CBlock* pblock, char* pmidstate, char* pdata, char* phash1);
101 bool CheckWork(CBlock* pblock, CWallet& wallet, CReserveKey& reservekey);
102 bool CheckProofOfWork(uint256 hash, unsigned int nBits);
103 unsigned int ComputeMinWork(unsigned int nBase, int64 nTime);
104 int GetNumBlocksOfPeers();
105 bool IsInitialBlockDownload();
106 std::string GetWarnings(std::string strFor);
107
108
109
110
111
112
113
114
115
116
117
118
119 bool GetWalletFile(CWallet* pwallet, std::string &strWalletFileOut);
120
121 template<typename T>
122 bool WriteSetting(const std::string& strKey, const T& value)
123 {
124     bool fOk = false;
125     BOOST_FOREACH(CWallet* pwallet, setpwalletRegistered)
126     {
127         std::string strWalletFile;
128         if (!GetWalletFile(pwallet, strWalletFile))
129             continue;
130         fOk |= CWalletDB(strWalletFile).WriteSetting(strKey, value);
131     }
132     return fOk;
133 }
134
135
136 class CDiskTxPos
137 {
138 public:
139     unsigned int nFile;
140     unsigned int nBlockPos;
141     unsigned int nTxPos;
142
143     CDiskTxPos()
144     {
145         SetNull();
146     }
147
148     CDiskTxPos(unsigned int nFileIn, unsigned int nBlockPosIn, unsigned int nTxPosIn)
149     {
150         nFile = nFileIn;
151         nBlockPos = nBlockPosIn;
152         nTxPos = nTxPosIn;
153     }
154
155     IMPLEMENT_SERIALIZE( READWRITE(FLATDATA(*this)); )
156     void SetNull() { nFile = -1; nBlockPos = 0; nTxPos = 0; }
157     bool IsNull() const { return (nFile == -1); }
158
159     friend bool operator==(const CDiskTxPos& a, const CDiskTxPos& b)
160     {
161         return (a.nFile     == b.nFile &&
162                 a.nBlockPos == b.nBlockPos &&
163                 a.nTxPos    == b.nTxPos);
164     }
165
166     friend bool operator!=(const CDiskTxPos& a, const CDiskTxPos& b)
167     {
168         return !(a == b);
169     }
170
171     std::string ToString() const
172     {
173         if (IsNull())
174             return strprintf("null");
175         else
176             return strprintf("(nFile=%d, nBlockPos=%d, nTxPos=%d)", nFile, nBlockPos, nTxPos);
177     }
178
179     void print() const
180     {
181         printf("%s", ToString().c_str());
182     }
183 };
184
185
186
187
188 class CInPoint
189 {
190 public:
191     CTransaction* ptx;
192     unsigned int n;
193
194     CInPoint() { SetNull(); }
195     CInPoint(CTransaction* ptxIn, unsigned int nIn) { ptx = ptxIn; n = nIn; }
196     void SetNull() { ptx = NULL; n = -1; }
197     bool IsNull() const { return (ptx == NULL && n == -1); }
198 };
199
200
201
202
203 class COutPoint
204 {
205 public:
206     uint256 hash;
207     unsigned int n;
208
209     COutPoint() { SetNull(); }
210     COutPoint(uint256 hashIn, unsigned int nIn) { hash = hashIn; n = nIn; }
211     IMPLEMENT_SERIALIZE( READWRITE(FLATDATA(*this)); )
212     void SetNull() { hash = 0; n = -1; }
213     bool IsNull() const { return (hash == 0 && n == -1); }
214
215     friend bool operator<(const COutPoint& a, const COutPoint& b)
216     {
217         return (a.hash < b.hash || (a.hash == b.hash && a.n < b.n));
218     }
219
220     friend bool operator==(const COutPoint& a, const COutPoint& b)
221     {
222         return (a.hash == b.hash && a.n == b.n);
223     }
224
225     friend bool operator!=(const COutPoint& a, const COutPoint& b)
226     {
227         return !(a == b);
228     }
229
230     std::string ToString() const
231     {
232         return strprintf("COutPoint(%s, %d)", hash.ToString().substr(0,10).c_str(), n);
233     }
234
235     void print() const
236     {
237         printf("%s\n", ToString().c_str());
238     }
239 };
240
241
242
243
244 //
245 // An input of a transaction.  It contains the location of the previous
246 // transaction's output that it claims and a signature that matches the
247 // output's public key.
248 //
249 class CTxIn
250 {
251 public:
252     COutPoint prevout;
253     CScript scriptSig;
254     unsigned int nSequence;
255
256     CTxIn()
257     {
258         nSequence = UINT_MAX;
259     }
260
261     explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX)
262     {
263         prevout = prevoutIn;
264         scriptSig = scriptSigIn;
265         nSequence = nSequenceIn;
266     }
267
268     CTxIn(uint256 hashPrevTx, unsigned int nOut, CScript scriptSigIn=CScript(), unsigned int nSequenceIn=UINT_MAX)
269     {
270         prevout = COutPoint(hashPrevTx, nOut);
271         scriptSig = scriptSigIn;
272         nSequence = nSequenceIn;
273     }
274
275     IMPLEMENT_SERIALIZE
276     (
277         READWRITE(prevout);
278         READWRITE(scriptSig);
279         READWRITE(nSequence);
280     )
281
282     bool IsFinal() const
283     {
284         return (nSequence == UINT_MAX);
285     }
286
287     friend bool operator==(const CTxIn& a, const CTxIn& b)
288     {
289         return (a.prevout   == b.prevout &&
290                 a.scriptSig == b.scriptSig &&
291                 a.nSequence == b.nSequence);
292     }
293
294     friend bool operator!=(const CTxIn& a, const CTxIn& b)
295     {
296         return !(a == b);
297     }
298
299     std::string ToString() const
300     {
301         std::string str;
302         str += strprintf("CTxIn(");
303         str += prevout.ToString();
304         if (prevout.IsNull())
305             str += strprintf(", coinbase %s", HexStr(scriptSig).c_str());
306         else
307             str += strprintf(", scriptSig=%s", scriptSig.ToString().substr(0,24).c_str());
308         if (nSequence != UINT_MAX)
309             str += strprintf(", nSequence=%u", nSequence);
310         str += ")";
311         return str;
312     }
313
314     void print() const
315     {
316         printf("%s\n", ToString().c_str());
317     }
318 };
319
320
321
322
323 //
324 // An output of a transaction.  It contains the public key that the next input
325 // must be able to sign with to claim it.
326 //
327 class CTxOut
328 {
329 public:
330     int64 nValue;
331     CScript scriptPubKey;
332
333     CTxOut()
334     {
335         SetNull();
336     }
337
338     CTxOut(int64 nValueIn, CScript scriptPubKeyIn)
339     {
340         nValue = nValueIn;
341         scriptPubKey = scriptPubKeyIn;
342     }
343
344     IMPLEMENT_SERIALIZE
345     (
346         READWRITE(nValue);
347         READWRITE(scriptPubKey);
348     )
349
350     void SetNull()
351     {
352         nValue = -1;
353         scriptPubKey.clear();
354     }
355
356     bool IsNull()
357     {
358         return (nValue == -1);
359     }
360
361     uint256 GetHash() const
362     {
363         return SerializeHash(*this);
364     }
365
366     friend bool operator==(const CTxOut& a, const CTxOut& b)
367     {
368         return (a.nValue       == b.nValue &&
369                 a.scriptPubKey == b.scriptPubKey);
370     }
371
372     friend bool operator!=(const CTxOut& a, const CTxOut& b)
373     {
374         return !(a == b);
375     }
376
377     std::string ToString() const
378     {
379         if (scriptPubKey.size() < 6)
380             return "CTxOut(error)";
381         return strprintf("CTxOut(nValue=%"PRI64d".%08"PRI64d", scriptPubKey=%s)", nValue / COIN, nValue % COIN, scriptPubKey.ToString().substr(0,30).c_str());
382     }
383
384     void print() const
385     {
386         printf("%s\n", ToString().c_str());
387     }
388 };
389
390
391
392
393 //
394 // The basic transaction that is broadcasted on the network and contained in
395 // blocks.  A transaction can contain multiple inputs and outputs.
396 //
397 class CTransaction
398 {
399 public:
400     int nVersion;
401     std::vector<CTxIn> vin;
402     std::vector<CTxOut> vout;
403     unsigned int nLockTime;
404
405     // Denial-of-service detection:
406     mutable int nDoS;
407     bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
408
409     CTransaction()
410     {
411         SetNull();
412     }
413
414     IMPLEMENT_SERIALIZE
415     (
416         READWRITE(this->nVersion);
417         nVersion = this->nVersion;
418         READWRITE(vin);
419         READWRITE(vout);
420         READWRITE(nLockTime);
421     )
422
423     void SetNull()
424     {
425         nVersion = 1;
426         vin.clear();
427         vout.clear();
428         nLockTime = 0;
429         nDoS = 0;  // Denial-of-service prevention
430     }
431
432     bool IsNull() const
433     {
434         return (vin.empty() && vout.empty());
435     }
436
437     uint256 GetHash() const
438     {
439         return SerializeHash(*this);
440     }
441
442     bool IsFinal(int nBlockHeight=0, int64 nBlockTime=0) const
443     {
444         // Time based nLockTime implemented in 0.1.6
445         if (nLockTime == 0)
446             return true;
447         if (nBlockHeight == 0)
448             nBlockHeight = nBestHeight;
449         if (nBlockTime == 0)
450             nBlockTime = GetAdjustedTime();
451         if ((int64)nLockTime < (nLockTime < LOCKTIME_THRESHOLD ? (int64)nBlockHeight : nBlockTime))
452             return true;
453         BOOST_FOREACH(const CTxIn& txin, vin)
454             if (!txin.IsFinal())
455                 return false;
456         return true;
457     }
458
459     bool IsNewerThan(const CTransaction& old) const
460     {
461         if (vin.size() != old.vin.size())
462             return false;
463         for (int i = 0; i < vin.size(); i++)
464             if (vin[i].prevout != old.vin[i].prevout)
465                 return false;
466
467         bool fNewer = false;
468         unsigned int nLowest = UINT_MAX;
469         for (int i = 0; i < vin.size(); i++)
470         {
471             if (vin[i].nSequence != old.vin[i].nSequence)
472             {
473                 if (vin[i].nSequence <= nLowest)
474                 {
475                     fNewer = false;
476                     nLowest = vin[i].nSequence;
477                 }
478                 if (old.vin[i].nSequence < nLowest)
479                 {
480                     fNewer = true;
481                     nLowest = old.vin[i].nSequence;
482                 }
483             }
484         }
485         return fNewer;
486     }
487
488     bool IsCoinBase() const
489     {
490         return (vin.size() == 1 && vin[0].prevout.IsNull());
491     }
492
493     int GetSigOpCount() const
494     {
495         int n = 0;
496         BOOST_FOREACH(const CTxIn& txin, vin)
497             n += txin.scriptSig.GetSigOpCount();
498         BOOST_FOREACH(const CTxOut& txout, vout)
499             n += txout.scriptPubKey.GetSigOpCount();
500         return n;
501     }
502
503     bool IsStandard() const
504     {
505         BOOST_FOREACH(const CTxIn& txin, vin)
506             if (!txin.scriptSig.IsPushOnly())
507                 return error("nonstandard txin: %s", txin.scriptSig.ToString().c_str());
508         BOOST_FOREACH(const CTxOut& txout, vout)
509             if (!::IsStandard(txout.scriptPubKey))
510                 return error("nonstandard txout: %s", txout.scriptPubKey.ToString().c_str());
511         return true;
512     }
513
514     int64 GetValueOut() const
515     {
516         int64 nValueOut = 0;
517         BOOST_FOREACH(const CTxOut& txout, vout)
518         {
519             nValueOut += txout.nValue;
520             if (!MoneyRange(txout.nValue) || !MoneyRange(nValueOut))
521                 throw std::runtime_error("CTransaction::GetValueOut() : value out of range");
522         }
523         return nValueOut;
524     }
525
526     static bool AllowFree(double dPriority)
527     {
528         // Large (in bytes) low-priority (new, small-coin) transactions
529         // need a fee.
530         return dPriority > COIN * 144 / 250;
531     }
532
533     int64 GetMinFee(unsigned int nBlockSize=1, bool fAllowFree=true, bool fForRelay=false) const
534     {
535         // Base fee is either MIN_TX_FEE or MIN_RELAY_TX_FEE
536         int64 nBaseFee = fForRelay ? MIN_RELAY_TX_FEE : MIN_TX_FEE;
537
538         unsigned int nBytes = ::GetSerializeSize(*this, SER_NETWORK);
539         unsigned int nNewBlockSize = nBlockSize + nBytes;
540         int64 nMinFee = (1 + (int64)nBytes / 1000) * nBaseFee;
541
542         if (fAllowFree)
543         {
544             if (nBlockSize == 1)
545             {
546                 // Transactions under 10K are free
547                 // (about 4500bc if made of 50bc inputs)
548                 if (nBytes < 10000)
549                     nMinFee = 0;
550             }
551             else
552             {
553                 // Free transaction area
554                 if (nNewBlockSize < 27000)
555                     nMinFee = 0;
556             }
557         }
558
559         // To limit dust spam, require MIN_TX_FEE/MIN_RELAY_TX_FEE if any output is less than 0.01
560         if (nMinFee < nBaseFee)
561             BOOST_FOREACH(const CTxOut& txout, vout)
562                 if (txout.nValue < CENT)
563                     nMinFee = nBaseFee;
564
565         // Raise the price as the block approaches full
566         if (nBlockSize != 1 && nNewBlockSize >= MAX_BLOCK_SIZE_GEN/2)
567         {
568             if (nNewBlockSize >= MAX_BLOCK_SIZE_GEN)
569                 return MAX_MONEY;
570             nMinFee *= MAX_BLOCK_SIZE_GEN / (MAX_BLOCK_SIZE_GEN - nNewBlockSize);
571         }
572
573         if (!MoneyRange(nMinFee))
574             nMinFee = MAX_MONEY;
575         return nMinFee;
576     }
577
578
579     bool ReadFromDisk(CDiskTxPos pos, FILE** pfileRet=NULL)
580     {
581         CAutoFile filein = OpenBlockFile(pos.nFile, 0, pfileRet ? "rb+" : "rb");
582         if (!filein)
583             return error("CTransaction::ReadFromDisk() : OpenBlockFile failed");
584
585         // Read transaction
586         if (fseek(filein, pos.nTxPos, SEEK_SET) != 0)
587             return error("CTransaction::ReadFromDisk() : fseek failed");
588         filein >> *this;
589
590         // Return file pointer
591         if (pfileRet)
592         {
593             if (fseek(filein, pos.nTxPos, SEEK_SET) != 0)
594                 return error("CTransaction::ReadFromDisk() : second fseek failed");
595             *pfileRet = filein.release();
596         }
597         return true;
598     }
599
600     friend bool operator==(const CTransaction& a, const CTransaction& b)
601     {
602         return (a.nVersion  == b.nVersion &&
603                 a.vin       == b.vin &&
604                 a.vout      == b.vout &&
605                 a.nLockTime == b.nLockTime);
606     }
607
608     friend bool operator!=(const CTransaction& a, const CTransaction& b)
609     {
610         return !(a == b);
611     }
612
613
614     std::string ToString() const
615     {
616         std::string str;
617         str += strprintf("CTransaction(hash=%s, ver=%d, vin.size=%d, vout.size=%d, nLockTime=%d)\n",
618             GetHash().ToString().substr(0,10).c_str(),
619             nVersion,
620             vin.size(),
621             vout.size(),
622             nLockTime);
623         for (int i = 0; i < vin.size(); i++)
624             str += "    " + vin[i].ToString() + "\n";
625         for (int i = 0; i < vout.size(); i++)
626             str += "    " + vout[i].ToString() + "\n";
627         return str;
628     }
629
630     void print() const
631     {
632         printf("%s", ToString().c_str());
633     }
634
635
636     bool ReadFromDisk(CTxDB& txdb, COutPoint prevout, CTxIndex& txindexRet);
637     bool ReadFromDisk(CTxDB& txdb, COutPoint prevout);
638     bool ReadFromDisk(COutPoint prevout);
639     bool DisconnectInputs(CTxDB& txdb);
640     bool ConnectInputs(CTxDB& txdb, std::map<uint256, CTxIndex>& mapTestPool, CDiskTxPos posThisTx,
641                        CBlockIndex* pindexBlock, int64& nFees, bool fBlock, bool fMiner, int64 nMinFee,
642                        bool& fInvalid);
643     bool ClientConnectInputs();
644     bool CheckTransaction() const;
645     bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true, bool* pfMissingInputs=NULL);
646     bool AcceptToMemoryPool(bool fCheckInputs=true, bool* pfMissingInputs=NULL);
647 protected:
648     bool AddToMemoryPoolUnchecked();
649 public:
650     bool RemoveFromMemoryPool();
651 };
652
653
654
655
656
657 //
658 // A transaction with a merkle branch linking it to the block chain
659 //
660 class CMerkleTx : public CTransaction
661 {
662 public:
663     uint256 hashBlock;
664     std::vector<uint256> vMerkleBranch;
665     int nIndex;
666
667     // memory only
668     mutable char fMerkleVerified;
669
670
671     CMerkleTx()
672     {
673         Init();
674     }
675
676     CMerkleTx(const CTransaction& txIn) : CTransaction(txIn)
677     {
678         Init();
679     }
680
681     void Init()
682     {
683         hashBlock = 0;
684         nIndex = -1;
685         fMerkleVerified = false;
686     }
687
688
689     IMPLEMENT_SERIALIZE
690     (
691         nSerSize += SerReadWrite(s, *(CTransaction*)this, nType, nVersion, ser_action);
692         nVersion = this->nVersion;
693         READWRITE(hashBlock);
694         READWRITE(vMerkleBranch);
695         READWRITE(nIndex);
696     )
697
698
699     int SetMerkleBranch(const CBlock* pblock=NULL);
700     int GetDepthInMainChain(int& nHeightRet) const;
701     int GetDepthInMainChain() const { int nHeight; return GetDepthInMainChain(nHeight); }
702     bool IsInMainChain() const { return GetDepthInMainChain() > 0; }
703     int GetBlocksToMaturity() const;
704     bool AcceptToMemoryPool(CTxDB& txdb, bool fCheckInputs=true);
705     bool AcceptToMemoryPool();
706 };
707
708
709
710
711 //
712 // A txdb record that contains the disk location of a transaction and the
713 // locations of transactions that spend its outputs.  vSpent is really only
714 // used as a flag, but having the location is very helpful for debugging.
715 //
716 class CTxIndex
717 {
718 public:
719     CDiskTxPos pos;
720     std::vector<CDiskTxPos> vSpent;
721
722     CTxIndex()
723     {
724         SetNull();
725     }
726
727     CTxIndex(const CDiskTxPos& posIn, unsigned int nOutputs)
728     {
729         pos = posIn;
730         vSpent.resize(nOutputs);
731     }
732
733     IMPLEMENT_SERIALIZE
734     (
735         if (!(nType & SER_GETHASH))
736             READWRITE(nVersion);
737         READWRITE(pos);
738         READWRITE(vSpent);
739     )
740
741     void SetNull()
742     {
743         pos.SetNull();
744         vSpent.clear();
745     }
746
747     bool IsNull()
748     {
749         return pos.IsNull();
750     }
751
752     friend bool operator==(const CTxIndex& a, const CTxIndex& b)
753     {
754         return (a.pos    == b.pos &&
755                 a.vSpent == b.vSpent);
756     }
757
758     friend bool operator!=(const CTxIndex& a, const CTxIndex& b)
759     {
760         return !(a == b);
761     }
762     int GetDepthInMainChain() const;
763 };
764
765
766
767
768
769 //
770 // Nodes collect new transactions into a block, hash them into a hash tree,
771 // and scan through nonce values to make the block's hash satisfy proof-of-work
772 // requirements.  When they solve the proof-of-work, they broadcast the block
773 // to everyone and the block is added to the block chain.  The first transaction
774 // in the block is a special one that creates a new coin owned by the creator
775 // of the block.
776 //
777 // Blocks are appended to blk0001.dat files on disk.  Their location on disk
778 // is indexed by CBlockIndex objects in memory.
779 //
780 class CBlock
781 {
782 public:
783     // header
784     int nVersion;
785     uint256 hashPrevBlock;
786     uint256 hashMerkleRoot;
787     unsigned int nTime;
788     unsigned int nBits;
789     unsigned int nNonce;
790
791     // network and disk
792     std::vector<CTransaction> vtx;
793
794     // memory only
795     mutable std::vector<uint256> vMerkleTree;
796
797     // Denial-of-service detection:
798     mutable int nDoS;
799     bool DoS(int nDoSIn, bool fIn) const { nDoS += nDoSIn; return fIn; }
800
801     CBlock()
802     {
803         SetNull();
804     }
805
806     IMPLEMENT_SERIALIZE
807     (
808         READWRITE(this->nVersion);
809         nVersion = this->nVersion;
810         READWRITE(hashPrevBlock);
811         READWRITE(hashMerkleRoot);
812         READWRITE(nTime);
813         READWRITE(nBits);
814         READWRITE(nNonce);
815
816         // ConnectBlock depends on vtx being last so it can calculate offset
817         if (!(nType & (SER_GETHASH|SER_BLOCKHEADERONLY)))
818             READWRITE(vtx);
819         else if (fRead)
820             const_cast<CBlock*>(this)->vtx.clear();
821     )
822
823     void SetNull()
824     {
825         nVersion = 1;
826         hashPrevBlock = 0;
827         hashMerkleRoot = 0;
828         nTime = 0;
829         nBits = 0;
830         nNonce = 0;
831         vtx.clear();
832         vMerkleTree.clear();
833         nDoS = 0;
834     }
835
836     bool IsNull() const
837     {
838         return (nBits == 0);
839     }
840
841     uint256 GetHash() const
842     {
843         return Hash(BEGIN(nVersion), END(nNonce));
844     }
845
846     int64 GetBlockTime() const
847     {
848         return (int64)nTime;
849     }
850
851     int GetSigOpCount() const
852     {
853         int n = 0;
854         BOOST_FOREACH(const CTransaction& tx, vtx)
855             n += tx.GetSigOpCount();
856         return n;
857     }
858
859     void UpdateTime(const CBlockIndex* pindexPrev);
860
861
862     uint256 BuildMerkleTree() const
863     {
864         vMerkleTree.clear();
865         BOOST_FOREACH(const CTransaction& tx, vtx)
866             vMerkleTree.push_back(tx.GetHash());
867         int j = 0;
868         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
869         {
870             for (int i = 0; i < nSize; i += 2)
871             {
872                 int i2 = std::min(i+1, nSize-1);
873                 vMerkleTree.push_back(Hash(BEGIN(vMerkleTree[j+i]),  END(vMerkleTree[j+i]),
874                                            BEGIN(vMerkleTree[j+i2]), END(vMerkleTree[j+i2])));
875             }
876             j += nSize;
877         }
878         return (vMerkleTree.empty() ? 0 : vMerkleTree.back());
879     }
880
881     std::vector<uint256> GetMerkleBranch(int nIndex) const
882     {
883         if (vMerkleTree.empty())
884             BuildMerkleTree();
885         std::vector<uint256> vMerkleBranch;
886         int j = 0;
887         for (int nSize = vtx.size(); nSize > 1; nSize = (nSize + 1) / 2)
888         {
889             int i = std::min(nIndex^1, nSize-1);
890             vMerkleBranch.push_back(vMerkleTree[j+i]);
891             nIndex >>= 1;
892             j += nSize;
893         }
894         return vMerkleBranch;
895     }
896
897     static uint256 CheckMerkleBranch(uint256 hash, const std::vector<uint256>& vMerkleBranch, int nIndex)
898     {
899         if (nIndex == -1)
900             return 0;
901         BOOST_FOREACH(const uint256& otherside, vMerkleBranch)
902         {
903             if (nIndex & 1)
904                 hash = Hash(BEGIN(otherside), END(otherside), BEGIN(hash), END(hash));
905             else
906                 hash = Hash(BEGIN(hash), END(hash), BEGIN(otherside), END(otherside));
907             nIndex >>= 1;
908         }
909         return hash;
910     }
911
912
913     bool WriteToDisk(unsigned int& nFileRet, unsigned int& nBlockPosRet)
914     {
915         // Open history file to append
916         CAutoFile fileout = AppendBlockFile(nFileRet);
917         if (!fileout)
918             return error("CBlock::WriteToDisk() : AppendBlockFile failed");
919
920         // Write index header
921         unsigned int nSize = fileout.GetSerializeSize(*this);
922         fileout << FLATDATA(pchMessageStart) << nSize;
923
924         // Write block
925         nBlockPosRet = ftell(fileout);
926         if (nBlockPosRet == -1)
927             return error("CBlock::WriteToDisk() : ftell failed");
928         fileout << *this;
929
930         // Flush stdio buffers and commit to disk before returning
931         fflush(fileout);
932         if (!IsInitialBlockDownload() || (nBestHeight+1) % 500 == 0)
933         {
934 #ifdef WIN32
935             _commit(_fileno(fileout));
936 #else
937             fsync(fileno(fileout));
938 #endif
939         }
940
941         return true;
942     }
943
944     bool ReadFromDisk(unsigned int nFile, unsigned int nBlockPos, bool fReadTransactions=true)
945     {
946         SetNull();
947
948         // Open history file to read
949         CAutoFile filein = OpenBlockFile(nFile, nBlockPos, "rb");
950         if (!filein)
951             return error("CBlock::ReadFromDisk() : OpenBlockFile failed");
952         if (!fReadTransactions)
953             filein.nType |= SER_BLOCKHEADERONLY;
954
955         // Read block
956         filein >> *this;
957
958         // Check the header
959         if (!CheckProofOfWork(GetHash(), nBits))
960             return error("CBlock::ReadFromDisk() : errors in block header");
961
962         return true;
963     }
964
965
966
967     void print() const
968     {
969         printf("CBlock(hash=%s, ver=%d, hashPrevBlock=%s, hashMerkleRoot=%s, nTime=%u, nBits=%08x, nNonce=%u, vtx=%d)\n",
970             GetHash().ToString().substr(0,20).c_str(),
971             nVersion,
972             hashPrevBlock.ToString().substr(0,20).c_str(),
973             hashMerkleRoot.ToString().substr(0,10).c_str(),
974             nTime, nBits, nNonce,
975             vtx.size());
976         for (int i = 0; i < vtx.size(); i++)
977         {
978             printf("  ");
979             vtx[i].print();
980         }
981         printf("  vMerkleTree: ");
982         for (int i = 0; i < vMerkleTree.size(); i++)
983             printf("%s ", vMerkleTree[i].ToString().substr(0,10).c_str());
984         printf("\n");
985     }
986
987
988     bool DisconnectBlock(CTxDB& txdb, CBlockIndex* pindex);
989     bool ConnectBlock(CTxDB& txdb, CBlockIndex* pindex);
990     bool ReadFromDisk(const CBlockIndex* pindex, bool fReadTransactions=true);
991     bool SetBestChain(CTxDB& txdb, CBlockIndex* pindexNew);
992     bool AddToBlockIndex(unsigned int nFile, unsigned int nBlockPos);
993     bool CheckBlock() const;
994     bool AcceptBlock();
995 };
996
997
998
999
1000
1001
1002 //
1003 // The block chain is a tree shaped structure starting with the
1004 // genesis block at the root, with each block potentially having multiple
1005 // candidates to be the next block.  pprev and pnext link a path through the
1006 // main/longest chain.  A blockindex may have multiple pprev pointing back
1007 // to it, but pnext will only point forward to the longest branch, or will
1008 // be null if the block is not part of the longest chain.
1009 //
1010 class CBlockIndex
1011 {
1012 public:
1013     const uint256* phashBlock;
1014     CBlockIndex* pprev;
1015     CBlockIndex* pnext;
1016     unsigned int nFile;
1017     unsigned int nBlockPos;
1018     int nHeight;
1019     CBigNum bnChainWork;
1020
1021     // block header
1022     int nVersion;
1023     uint256 hashMerkleRoot;
1024     unsigned int nTime;
1025     unsigned int nBits;
1026     unsigned int nNonce;
1027
1028
1029     CBlockIndex()
1030     {
1031         phashBlock = NULL;
1032         pprev = NULL;
1033         pnext = NULL;
1034         nFile = 0;
1035         nBlockPos = 0;
1036         nHeight = 0;
1037         bnChainWork = 0;
1038
1039         nVersion       = 0;
1040         hashMerkleRoot = 0;
1041         nTime          = 0;
1042         nBits          = 0;
1043         nNonce         = 0;
1044     }
1045
1046     CBlockIndex(unsigned int nFileIn, unsigned int nBlockPosIn, CBlock& block)
1047     {
1048         phashBlock = NULL;
1049         pprev = NULL;
1050         pnext = NULL;
1051         nFile = nFileIn;
1052         nBlockPos = nBlockPosIn;
1053         nHeight = 0;
1054         bnChainWork = 0;
1055
1056         nVersion       = block.nVersion;
1057         hashMerkleRoot = block.hashMerkleRoot;
1058         nTime          = block.nTime;
1059         nBits          = block.nBits;
1060         nNonce         = block.nNonce;
1061     }
1062
1063     CBlock GetBlockHeader() const
1064     {
1065         CBlock block;
1066         block.nVersion       = nVersion;
1067         if (pprev)
1068             block.hashPrevBlock = pprev->GetBlockHash();
1069         block.hashMerkleRoot = hashMerkleRoot;
1070         block.nTime          = nTime;
1071         block.nBits          = nBits;
1072         block.nNonce         = nNonce;
1073         return block;
1074     }
1075
1076     uint256 GetBlockHash() const
1077     {
1078         return *phashBlock;
1079     }
1080
1081     int64 GetBlockTime() const
1082     {
1083         return (int64)nTime;
1084     }
1085
1086     CBigNum GetBlockWork() const
1087     {
1088         CBigNum bnTarget;
1089         bnTarget.SetCompact(nBits);
1090         if (bnTarget <= 0)
1091             return 0;
1092         return (CBigNum(1)<<256) / (bnTarget+1);
1093     }
1094
1095     bool IsInMainChain() const
1096     {
1097         return (pnext || this == pindexBest);
1098     }
1099
1100     bool CheckIndex() const
1101     {
1102         return CheckProofOfWork(GetBlockHash(), nBits);
1103     }
1104
1105     bool EraseBlockFromDisk()
1106     {
1107         // Open history file
1108         CAutoFile fileout = OpenBlockFile(nFile, nBlockPos, "rb+");
1109         if (!fileout)
1110             return false;
1111
1112         // Overwrite with empty null block
1113         CBlock block;
1114         block.SetNull();
1115         fileout << block;
1116
1117         return true;
1118     }
1119
1120     enum { nMedianTimeSpan=11 };
1121
1122     int64 GetMedianTimePast() const
1123     {
1124         int64 pmedian[nMedianTimeSpan];
1125         int64* pbegin = &pmedian[nMedianTimeSpan];
1126         int64* pend = &pmedian[nMedianTimeSpan];
1127
1128         const CBlockIndex* pindex = this;
1129         for (int i = 0; i < nMedianTimeSpan && pindex; i++, pindex = pindex->pprev)
1130             *(--pbegin) = pindex->GetBlockTime();
1131
1132         std::sort(pbegin, pend);
1133         return pbegin[(pend - pbegin)/2];
1134     }
1135
1136     int64 GetMedianTime() const
1137     {
1138         const CBlockIndex* pindex = this;
1139         for (int i = 0; i < nMedianTimeSpan/2; i++)
1140         {
1141             if (!pindex->pnext)
1142                 return GetBlockTime();
1143             pindex = pindex->pnext;
1144         }
1145         return pindex->GetMedianTimePast();
1146     }
1147
1148
1149
1150     std::string ToString() const
1151     {
1152         return strprintf("CBlockIndex(nprev=%08x, pnext=%08x, nFile=%d, nBlockPos=%-6d nHeight=%d, merkle=%s, hashBlock=%s)",
1153             pprev, pnext, nFile, nBlockPos, nHeight,
1154             hashMerkleRoot.ToString().substr(0,10).c_str(),
1155             GetBlockHash().ToString().substr(0,20).c_str());
1156     }
1157
1158     void print() const
1159     {
1160         printf("%s\n", ToString().c_str());
1161     }
1162 };
1163
1164
1165
1166 //
1167 // Used to marshal pointers into hashes for db storage.
1168 //
1169 class CDiskBlockIndex : public CBlockIndex
1170 {
1171 public:
1172     uint256 hashPrev;
1173     uint256 hashNext;
1174
1175     CDiskBlockIndex()
1176     {
1177         hashPrev = 0;
1178         hashNext = 0;
1179     }
1180
1181     explicit CDiskBlockIndex(CBlockIndex* pindex) : CBlockIndex(*pindex)
1182     {
1183         hashPrev = (pprev ? pprev->GetBlockHash() : 0);
1184         hashNext = (pnext ? pnext->GetBlockHash() : 0);
1185     }
1186
1187     IMPLEMENT_SERIALIZE
1188     (
1189         if (!(nType & SER_GETHASH))
1190             READWRITE(nVersion);
1191
1192         READWRITE(hashNext);
1193         READWRITE(nFile);
1194         READWRITE(nBlockPos);
1195         READWRITE(nHeight);
1196
1197         // block header
1198         READWRITE(this->nVersion);
1199         READWRITE(hashPrev);
1200         READWRITE(hashMerkleRoot);
1201         READWRITE(nTime);
1202         READWRITE(nBits);
1203         READWRITE(nNonce);
1204     )
1205
1206     uint256 GetBlockHash() const
1207     {
1208         CBlock block;
1209         block.nVersion        = nVersion;
1210         block.hashPrevBlock   = hashPrev;
1211         block.hashMerkleRoot  = hashMerkleRoot;
1212         block.nTime           = nTime;
1213         block.nBits           = nBits;
1214         block.nNonce          = nNonce;
1215         return block.GetHash();
1216     }
1217
1218
1219     std::string ToString() const
1220     {
1221         std::string str = "CDiskBlockIndex(";
1222         str += CBlockIndex::ToString();
1223         str += strprintf("\n                hashBlock=%s, hashPrev=%s, hashNext=%s)",
1224             GetBlockHash().ToString().c_str(),
1225             hashPrev.ToString().substr(0,20).c_str(),
1226             hashNext.ToString().substr(0,20).c_str());
1227         return str;
1228     }
1229
1230     void print() const
1231     {
1232         printf("%s\n", ToString().c_str());
1233     }
1234 };
1235
1236
1237
1238
1239
1240
1241
1242
1243 //
1244 // Describes a place in the block chain to another node such that if the
1245 // other node doesn't have the same branch, it can find a recent common trunk.
1246 // The further back it is, the further before the fork it may be.
1247 //
1248 class CBlockLocator
1249 {
1250 protected:
1251     std::vector<uint256> vHave;
1252 public:
1253
1254     CBlockLocator()
1255     {
1256     }
1257
1258     explicit CBlockLocator(const CBlockIndex* pindex)
1259     {
1260         Set(pindex);
1261     }
1262
1263     explicit CBlockLocator(uint256 hashBlock)
1264     {
1265         std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hashBlock);
1266         if (mi != mapBlockIndex.end())
1267             Set((*mi).second);
1268     }
1269
1270     IMPLEMENT_SERIALIZE
1271     (
1272         if (!(nType & SER_GETHASH))
1273             READWRITE(nVersion);
1274         READWRITE(vHave);
1275     )
1276
1277     void SetNull()
1278     {
1279         vHave.clear();
1280     }
1281
1282     bool IsNull()
1283     {
1284         return vHave.empty();
1285     }
1286
1287     void Set(const CBlockIndex* pindex)
1288     {
1289         vHave.clear();
1290         int nStep = 1;
1291         while (pindex)
1292         {
1293             vHave.push_back(pindex->GetBlockHash());
1294
1295             // Exponentially larger steps back
1296             for (int i = 0; pindex && i < nStep; i++)
1297                 pindex = pindex->pprev;
1298             if (vHave.size() > 10)
1299                 nStep *= 2;
1300         }
1301         vHave.push_back(hashGenesisBlock);
1302     }
1303
1304     int GetDistanceBack()
1305     {
1306         // Retrace how far back it was in the sender's branch
1307         int nDistance = 0;
1308         int nStep = 1;
1309         BOOST_FOREACH(const uint256& hash, vHave)
1310         {
1311             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1312             if (mi != mapBlockIndex.end())
1313             {
1314                 CBlockIndex* pindex = (*mi).second;
1315                 if (pindex->IsInMainChain())
1316                     return nDistance;
1317             }
1318             nDistance += nStep;
1319             if (nDistance > 10)
1320                 nStep *= 2;
1321         }
1322         return nDistance;
1323     }
1324
1325     CBlockIndex* GetBlockIndex()
1326     {
1327         // Find the first block the caller has in the main chain
1328         BOOST_FOREACH(const uint256& hash, vHave)
1329         {
1330             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1331             if (mi != mapBlockIndex.end())
1332             {
1333                 CBlockIndex* pindex = (*mi).second;
1334                 if (pindex->IsInMainChain())
1335                     return pindex;
1336             }
1337         }
1338         return pindexGenesisBlock;
1339     }
1340
1341     uint256 GetBlockHash()
1342     {
1343         // Find the first block the caller has in the main chain
1344         BOOST_FOREACH(const uint256& hash, vHave)
1345         {
1346             std::map<uint256, CBlockIndex*>::iterator mi = mapBlockIndex.find(hash);
1347             if (mi != mapBlockIndex.end())
1348             {
1349                 CBlockIndex* pindex = (*mi).second;
1350                 if (pindex->IsInMainChain())
1351                     return hash;
1352             }
1353         }
1354         return hashGenesisBlock;
1355     }
1356
1357     int GetHeight()
1358     {
1359         CBlockIndex* pindex = GetBlockIndex();
1360         if (!pindex)
1361             return 0;
1362         return pindex->nHeight;
1363     }
1364 };
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374 //
1375 // Alerts are for notifying old versions if they become too obsolete and
1376 // need to upgrade.  The message is displayed in the status bar.
1377 // Alert messages are broadcast as a vector of signed data.  Unserializing may
1378 // not read the entire buffer if the alert is for a newer version, but older
1379 // versions can still relay the original data.
1380 //
1381 class CUnsignedAlert
1382 {
1383 public:
1384     int nVersion;
1385     int64 nRelayUntil;      // when newer nodes stop relaying to newer nodes
1386     int64 nExpiration;
1387     int nID;
1388     int nCancel;
1389     std::set<int> setCancel;
1390     int nMinVer;            // lowest version inclusive
1391     int nMaxVer;            // highest version inclusive
1392     std::set<std::string> setSubVer;  // empty matches all
1393     int nPriority;
1394
1395     // Actions
1396     std::string strComment;
1397     std::string strStatusBar;
1398     std::string strReserved;
1399
1400     IMPLEMENT_SERIALIZE
1401     (
1402         READWRITE(this->nVersion);
1403         nVersion = this->nVersion;
1404         READWRITE(nRelayUntil);
1405         READWRITE(nExpiration);
1406         READWRITE(nID);
1407         READWRITE(nCancel);
1408         READWRITE(setCancel);
1409         READWRITE(nMinVer);
1410         READWRITE(nMaxVer);
1411         READWRITE(setSubVer);
1412         READWRITE(nPriority);
1413
1414         READWRITE(strComment);
1415         READWRITE(strStatusBar);
1416         READWRITE(strReserved);
1417     )
1418
1419     void SetNull()
1420     {
1421         nVersion = 1;
1422         nRelayUntil = 0;
1423         nExpiration = 0;
1424         nID = 0;
1425         nCancel = 0;
1426         setCancel.clear();
1427         nMinVer = 0;
1428         nMaxVer = 0;
1429         setSubVer.clear();
1430         nPriority = 0;
1431
1432         strComment.clear();
1433         strStatusBar.clear();
1434         strReserved.clear();
1435     }
1436
1437     std::string ToString() const
1438     {
1439         std::string strSetCancel;
1440         BOOST_FOREACH(int n, setCancel)
1441             strSetCancel += strprintf("%d ", n);
1442         std::string strSetSubVer;
1443         BOOST_FOREACH(std::string str, setSubVer)
1444             strSetSubVer += "\"" + str + "\" ";
1445         return strprintf(
1446                 "CAlert(\n"
1447                 "    nVersion     = %d\n"
1448                 "    nRelayUntil  = %"PRI64d"\n"
1449                 "    nExpiration  = %"PRI64d"\n"
1450                 "    nID          = %d\n"
1451                 "    nCancel      = %d\n"
1452                 "    setCancel    = %s\n"
1453                 "    nMinVer      = %d\n"
1454                 "    nMaxVer      = %d\n"
1455                 "    setSubVer    = %s\n"
1456                 "    nPriority    = %d\n"
1457                 "    strComment   = \"%s\"\n"
1458                 "    strStatusBar = \"%s\"\n"
1459                 ")\n",
1460             nVersion,
1461             nRelayUntil,
1462             nExpiration,
1463             nID,
1464             nCancel,
1465             strSetCancel.c_str(),
1466             nMinVer,
1467             nMaxVer,
1468             strSetSubVer.c_str(),
1469             nPriority,
1470             strComment.c_str(),
1471             strStatusBar.c_str());
1472     }
1473
1474     void print() const
1475     {
1476         printf("%s", ToString().c_str());
1477     }
1478 };
1479
1480 class CAlert : public CUnsignedAlert
1481 {
1482 public:
1483     std::vector<unsigned char> vchMsg;
1484     std::vector<unsigned char> vchSig;
1485
1486     CAlert()
1487     {
1488         SetNull();
1489     }
1490
1491     IMPLEMENT_SERIALIZE
1492     (
1493         READWRITE(vchMsg);
1494         READWRITE(vchSig);
1495     )
1496
1497     void SetNull()
1498     {
1499         CUnsignedAlert::SetNull();
1500         vchMsg.clear();
1501         vchSig.clear();
1502     }
1503
1504     bool IsNull() const
1505     {
1506         return (nExpiration == 0);
1507     }
1508
1509     uint256 GetHash() const
1510     {
1511         return SerializeHash(*this);
1512     }
1513
1514     bool IsInEffect() const
1515     {
1516         return (GetAdjustedTime() < nExpiration);
1517     }
1518
1519     bool Cancels(const CAlert& alert) const
1520     {
1521         if (!IsInEffect())
1522             return false; // this was a no-op before 31403
1523         return (alert.nID <= nCancel || setCancel.count(alert.nID));
1524     }
1525
1526     bool AppliesTo(int nVersion, std::string strSubVerIn) const
1527     {
1528         return (IsInEffect() &&
1529                 nMinVer <= nVersion && nVersion <= nMaxVer &&
1530                 (setSubVer.empty() || setSubVer.count(strSubVerIn)));
1531     }
1532
1533     bool AppliesToMe() const
1534     {
1535         return AppliesTo(VERSION, ::pszSubVer);
1536     }
1537
1538     bool RelayTo(CNode* pnode) const
1539     {
1540         if (!IsInEffect())
1541             return false;
1542         // returns true if wasn't already contained in the set
1543         if (pnode->setKnown.insert(GetHash()).second)
1544         {
1545             if (AppliesTo(pnode->nVersion, pnode->strSubVer) ||
1546                 AppliesToMe() ||
1547                 GetAdjustedTime() < nRelayUntil)
1548             {
1549                 pnode->PushMessage("alert", *this);
1550                 return true;
1551             }
1552         }
1553         return false;
1554     }
1555
1556     bool CheckSignature()
1557     {
1558         CKey key;
1559         if (!key.SetPubKey(ParseHex("04fc9702847840aaf195de8442ebecedf5b095cdbb9bc716bda9110971b28a49e0ead8564ff0db22209e0374782c093bb899692d524e9d6a6956e7c5ecbcd68284")))
1560             return error("CAlert::CheckSignature() : SetPubKey failed");
1561         if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig))
1562             return error("CAlert::CheckSignature() : verify signature failed");
1563
1564         // Now unserialize the data
1565         CDataStream sMsg(vchMsg);
1566         sMsg >> *(CUnsignedAlert*)this;
1567         return true;
1568     }
1569
1570     bool ProcessAlert();
1571 };
1572
1573 #endif