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