PPCoin: Immediate sync-checkpoint to defend against 51% mining attack
[novacoin.git] / src / checkpoints.cpp
1 // Copyright (c) 2009-2012 The Bitcoin developers
2 // Copyright (c) 2011-2012 The PPCoin developers
3 // Distributed under the MIT/X11 software license, see the accompanying
4 // file COPYING or http://www.opensource.org/licenses/mit-license.php.
5
6 #include <boost/assign/list_of.hpp> // for 'map_list_of()'
7 #include <boost/foreach.hpp>
8
9 #include "checkpoints.h"
10
11 #include "db.h"
12 #include "main.h"
13 #include "uint256.h"
14
15 namespace Checkpoints
16 {
17     typedef std::map<int, uint256> MapCheckpoints;   // hardened checkpoints
18
19     //
20     // What makes a good checkpoint block?
21     // + Is surrounded by blocks with reasonable timestamps
22     //   (no blocks before with a timestamp after, none after with
23     //    timestamp before)
24     // + Contains no strange transactions
25     //
26     static MapCheckpoints mapCheckpoints =
27         boost::assign::map_list_of
28         ( 0, hashGenesisBlockOfficial )
29         ; // ppcoin: no checkpoint yet; to be created in future releases
30
31     bool CheckHardened(int nHeight, const uint256& hash)
32     {
33         if (fTestNet) return true; // Testnet has no checkpoints
34
35         MapCheckpoints::const_iterator i = mapCheckpoints.find(nHeight);
36         if (i == mapCheckpoints.end()) return true;
37         return hash == i->second;
38     }
39
40     int GetTotalBlocksEstimate()
41     {
42         if (fTestNet) return 0;
43
44         return mapCheckpoints.rbegin()->first;
45     }
46
47     CBlockIndex* GetLastCheckpoint(const std::map<uint256, CBlockIndex*>& mapBlockIndex)
48     {
49         if (fTestNet) {
50             std::map<uint256, CBlockIndex*>::const_iterator t = mapBlockIndex.find(hashGenesisBlock);
51             if (t != mapBlockIndex.end())
52                 return t->second;
53             return NULL;
54         }
55
56         BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints)
57         {
58             const uint256& hash = i.second;
59             std::map<uint256, CBlockIndex*>::const_iterator t = mapBlockIndex.find(hash);
60             if (t != mapBlockIndex.end())
61                 return t->second;
62         }
63         return NULL;
64     }
65
66     // ppcoin: synchronized checkpoint (centrally broadcasted)
67     uint256 hashSyncCheckpoint = 0;
68     uint256 hashPendingCheckpoint = 0;
69     CSyncCheckpoint checkpointMessage;
70     CSyncCheckpoint checkpointMessagePending;
71     uint256 hashInvalidCheckpoint = 0;
72     CCriticalSection cs_hashSyncCheckpoint;
73
74     // ppcoin: get last synchronized checkpoint
75     CBlockIndex* GetLastSyncCheckpoint()
76     {
77         LOCK(cs_hashSyncCheckpoint);
78         if (!mapBlockIndex.count(hashSyncCheckpoint))
79             error("GetSyncCheckpoint: block index missing for current sync-checkpoint %s", hashSyncCheckpoint.ToString().c_str());
80         else
81             return mapBlockIndex[hashSyncCheckpoint];
82         return NULL;
83     }
84
85     // ppcoin: only descendant of current sync-checkpoint is allowed
86     bool ValidateSyncCheckpoint(uint256 hashCheckpoint)
87     {
88         if (!mapBlockIndex.count(hashSyncCheckpoint))
89             return error("ValidateSyncCheckpoint: block index missing for current sync-checkpoint %s", hashSyncCheckpoint.ToString().c_str());
90         if (!mapBlockIndex.count(hashCheckpoint))
91             return error("ValidateSyncCheckpoint: block index missing for received sync-checkpoint %s", hashCheckpoint.ToString().c_str());
92
93         CBlockIndex* pindexSyncCheckpoint = mapBlockIndex[hashSyncCheckpoint];
94         CBlockIndex* pindexCheckpointRecv = mapBlockIndex[hashCheckpoint];
95
96         if (pindexCheckpointRecv->nHeight <= pindexSyncCheckpoint->nHeight)
97         {
98             // Received an older checkpoint, trace back from current checkpoint
99             // to the same height of the received checkpoint to verify
100             // that current checkpoint should be a descendant block
101             CBlockIndex* pindex = pindexSyncCheckpoint;
102             while (pindex->nHeight > pindexCheckpointRecv->nHeight)
103                 if (!(pindex = pindex->pprev))
104                     return error("ValidateSyncCheckpoint: pprev1 null - block index structure failure");
105             if (pindex->GetBlockHash() != hashCheckpoint)
106             {
107                 hashInvalidCheckpoint = hashCheckpoint;
108                 return error("ValidateSyncCheckpoint: new sync-checkpoint %s is conflicting with current sync-checkpoint %s", hashCheckpoint.ToString().c_str(), hashSyncCheckpoint.ToString().c_str());
109             }
110             return false; // ignore older checkpoint
111         }
112
113         // Received checkpoint should be a descendant block of the current
114         // checkpoint. Trace back to the same height of current checkpoint
115         // to verify.
116         CBlockIndex* pindex = pindexCheckpointRecv;
117         while (pindex->nHeight > pindexSyncCheckpoint->nHeight)
118             if (!(pindex = pindex->pprev))
119                 return error("ValidateSyncCheckpoint: pprev2 null - block index structure failure");
120         if (pindex->GetBlockHash() != hashSyncCheckpoint)
121         {
122             hashInvalidCheckpoint = hashCheckpoint;
123             return error("ValidateSyncCheckpoint: new sync-checkpoint %s is not a descendant of current sync-checkpoint %s", hashCheckpoint.ToString().c_str(), hashSyncCheckpoint.ToString().c_str());
124         }
125         return true;
126     }
127
128     bool WriteSyncCheckpoint(const uint256& hashCheckpoint)
129     {
130         CTxDB txdb;
131         txdb.TxnBegin();
132         if (!txdb.WriteSyncCheckpoint(hashCheckpoint))
133         {
134             txdb.TxnAbort();
135             return error("WriteSyncCheckpoint(): failed to write to db sync checkpoint %s", hashCheckpoint.ToString().c_str());
136         }
137         if (!txdb.TxnCommit())
138             return error("WriteSyncCheckpoint(): failed to commit to db sync checkpoint %s", hashCheckpoint.ToString().c_str());
139         txdb.Close();
140
141         Checkpoints::hashSyncCheckpoint = hashCheckpoint;
142         return true;
143     }
144
145     bool AcceptPendingSyncCheckpoint()
146     {
147         LOCK(cs_hashSyncCheckpoint);
148         if (hashPendingCheckpoint != 0 && mapBlockIndex.count(hashPendingCheckpoint))
149         {
150             if (!ValidateSyncCheckpoint(hashPendingCheckpoint))
151             {
152                 hashPendingCheckpoint = 0;
153                 checkpointMessagePending.SetNull();
154                 return false;
155             }
156
157             CTxDB txdb;
158             CBlockIndex* pindexCheckpoint = mapBlockIndex[hashPendingCheckpoint];
159             if (!pindexCheckpoint->IsInMainChain())
160             {
161                 txdb.TxnBegin();
162                 if (!Reorganize(txdb, pindexCheckpoint))
163                 {
164                     txdb.TxnAbort();
165                     hashInvalidCheckpoint = hashPendingCheckpoint;
166                     return error("ProcessSyncCheckpoint: Reorganize failed for sync checkpoint %s", hashPendingCheckpoint.ToString().c_str());
167                 }
168             }
169             txdb.Close();
170
171             if (!WriteSyncCheckpoint(hashPendingCheckpoint))
172                 return error("AcceptPendingSyncCheckpoint(): failed to write sync checkpoint %s", hashPendingCheckpoint.ToString().c_str());
173             hashPendingCheckpoint = 0;
174             checkpointMessage = checkpointMessagePending;
175             checkpointMessagePending.SetNull();
176             printf("AcceptPendingSyncCheckpoint : sync-checkpoint at %s\n", hashSyncCheckpoint.ToString().c_str());
177             // relay the checkpoint
178             if (!checkpointMessage.IsNull())
179             {
180                 BOOST_FOREACH(CNode* pnode, vNodes)
181                     checkpointMessage.RelayTo(pnode);
182             }
183             return true;
184         }
185         return false;
186     }
187
188     bool CheckSync(const uint256& hashBlock, const CBlockIndex* pindexPrev)
189     {
190         if (fTestNet) return true; // Testnet has no checkpoints
191         int nHeight = pindexPrev->nHeight + 1;
192
193         LOCK(cs_hashSyncCheckpoint);
194         // sync-checkpoint should always be accepted block
195         assert(mapBlockIndex.count(hashSyncCheckpoint));
196         const CBlockIndex* pindexSync = mapBlockIndex[hashSyncCheckpoint];
197
198         if (nHeight > pindexSync->nHeight)
199         {
200             // trace back to same height as sync-checkpoint
201             const CBlockIndex* pindex = pindexPrev;
202             while (pindex->nHeight > pindexSync->nHeight)
203                 if (!(pindex = pindex->pprev))
204                     return error("CheckSync: pprev null - block index structure failure");
205             if (pindex->nHeight < pindexSync->nHeight || pindex->GetBlockHash() != hashSyncCheckpoint)
206                 return false; // only descendant of sync-checkpoint can pass check
207         }
208         if (nHeight == pindexSync->nHeight && hashBlock != hashSyncCheckpoint)
209             return false; // same height with sync-checkpoint
210         if (nHeight < pindexSync->nHeight && !mapBlockIndex.count(hashBlock))
211             return false; // lower height than sync-checkpoint
212         return true;
213     }
214
215     bool WantedByPendingSyncCheckpoint(uint256 hashBlock)
216     {
217         LOCK(cs_hashSyncCheckpoint);
218         if (hashPendingCheckpoint == 0)
219             return false;
220         if (hashBlock == hashPendingCheckpoint)
221             return true;
222         if (mapOrphanBlocks.count(hashPendingCheckpoint) 
223             && hashBlock == WantedByOrphan(mapOrphanBlocks[hashPendingCheckpoint]))
224             return true;
225         return false;
226     }
227
228     // ppcoin: reset synchronized checkpoint to last hardened checkpoint
229     bool ResetSyncCheckpoint()
230     {
231         LOCK(cs_hashSyncCheckpoint);
232         const uint256& hash = mapCheckpoints.rbegin()->second;
233         if (mapBlockIndex.count(hash) && !mapBlockIndex[hash]->IsInMainChain())
234         {
235             // checkpoint block accepted but not yet in main chain
236             printf("ResetSyncCheckpoint: Reorganize to hardened checkpoint %s\n", hash.ToString().c_str());
237             CTxDB txdb;
238             txdb.TxnBegin();
239             if (!Reorganize(txdb, mapBlockIndex[hash]))
240             {
241                 txdb.TxnAbort();
242                 return error("ResetSyncCheckpoint: Reorganize failed for hardened checkpoint %s", hash.ToString().c_str());
243             }
244             txdb.Close();
245         }
246         else if(!mapBlockIndex.count(hash))
247         {
248             // checkpoint block not yet accepted
249             hashPendingCheckpoint = hash;
250             checkpointMessagePending.SetNull();
251             printf("ResetSyncCheckpoint: pending for sync-checkpoint %s\n", hashPendingCheckpoint.ToString().c_str());
252         }
253
254         BOOST_REVERSE_FOREACH(const MapCheckpoints::value_type& i, mapCheckpoints)
255         {
256             const uint256& hash = i.second;
257             if (mapBlockIndex.count(hash) && mapBlockIndex[hash]->IsInMainChain())
258             {
259                 if (!WriteSyncCheckpoint(hash))
260                     return error("ResetSyncCheckpoint: failed to write sync checkpoint %s", hash.ToString().c_str());
261                 printf("ResetSyncCheckpoint: sync-checkpoint reset to %s\n", hashSyncCheckpoint.ToString().c_str());
262                 return true;
263             }
264         }
265
266         return false;
267     }
268
269     void AskForPendingSyncCheckpoint(CNode* pfrom)
270     {
271         LOCK(cs_hashSyncCheckpoint);
272         if (pfrom && hashPendingCheckpoint != 0 && (!mapBlockIndex.count(hashPendingCheckpoint)) && (!mapOrphanBlocks.count(hashPendingCheckpoint)))
273             pfrom->AskFor(CInv(MSG_BLOCK, hashPendingCheckpoint));
274     }
275
276     bool SendSyncCheckpoint(uint256 hashCheckpoint)
277     {
278         CSyncCheckpoint checkpoint;
279         checkpoint.hashCheckpoint = hashCheckpoint;
280         CDataStream sMsg(SER_NETWORK, PROTOCOL_VERSION);
281         sMsg << (CUnsignedSyncCheckpoint)checkpoint;
282         checkpoint.vchMsg = std::vector<unsigned char>(sMsg.begin(), sMsg.end());
283
284         if (CSyncCheckpoint::strMasterPrivKey.empty())
285             return error("SendSyncCheckpoint: Checkpoint master key unavailable.");
286         std::vector<unsigned char> vchPrivKey = ParseHex(CSyncCheckpoint::strMasterPrivKey);
287         CKey key;
288         key.SetPrivKey(CPrivKey(vchPrivKey.begin(), vchPrivKey.end())); // if key is not correct openssl may crash
289         if (!key.Sign(Hash(checkpoint.vchMsg.begin(), checkpoint.vchMsg.end()), checkpoint.vchSig))
290             return error("SendSyncCheckpoint: Unable to sign checkpoint, check private key?");
291
292         if(!checkpoint.ProcessSyncCheckpoint(NULL))
293             return error("SendSyncCheckpoint: Failed to process checkpoint.");
294         // Relay checkpoint
295         {
296             LOCK(cs_vNodes);
297             BOOST_FOREACH(CNode* pnode, vNodes)
298                 checkpoint.RelayTo(pnode);
299         }
300         return true;
301     }
302 }
303
304 // ppcoin: sync-checkpoint master key
305 const std::string CSyncCheckpoint::strMasterPubKey = "0424f20205e5da98ba632bbd278a11a6499585f62bfb2c782377ef59f0251daab8085fc31471bcb8180bc75ed0fa41bb50c7c084511d54015a3a5241d645c7268a";
306
307 std::string CSyncCheckpoint::strMasterPrivKey = "";
308
309 // ppcoin: verify signature of sync-checkpoint message
310 bool CSyncCheckpoint::CheckSignature()
311 {
312     CKey key;
313     if (!key.SetPubKey(ParseHex(CSyncCheckpoint::strMasterPubKey)))
314         return error("CSyncCheckpoint::CheckSignature() : SetPubKey failed");
315     if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig))
316         return error("CSyncCheckpoint::CheckSignature() : verify signature failed");
317
318     // Now unserialize the data
319     CDataStream sMsg(vchMsg, SER_NETWORK, PROTOCOL_VERSION);
320     sMsg >> *(CUnsignedSyncCheckpoint*)this;
321     return true;
322 }
323
324 // ppcoin: process synchronized checkpoint
325 bool CSyncCheckpoint::ProcessSyncCheckpoint(CNode* pfrom)
326 {
327     if (!CheckSignature())
328         return false;
329
330     LOCK(Checkpoints::cs_hashSyncCheckpoint);
331     if (!mapBlockIndex.count(hashCheckpoint))
332     {
333         // We haven't received the checkpoint chain, keep the checkpoint as pending
334         Checkpoints::hashPendingCheckpoint = hashCheckpoint;
335         Checkpoints::checkpointMessagePending = *this;
336         printf("ProcessSyncCheckpoint: pending for sync-checkpoint %s\n", hashCheckpoint.ToString().c_str());
337         // Ask this guy to fill in what we're missing
338         if (pfrom)
339         {
340             pfrom->PushGetBlocks(pindexBest, hashCheckpoint);
341             // ask directly as well in case rejected earlier by duplicate
342             // proof-of-stake because getblocks may not get it this time
343             pfrom->AskFor(CInv(MSG_BLOCK, mapOrphanBlocks.count(hashCheckpoint)? WantedByOrphan(mapOrphanBlocks[hashCheckpoint]) : hashCheckpoint));
344         }
345         return false;
346     }
347
348     if (!Checkpoints::ValidateSyncCheckpoint(hashCheckpoint))
349         return false;
350
351     CTxDB txdb;
352     CBlockIndex* pindexCheckpoint = mapBlockIndex[hashCheckpoint];
353     if (!pindexCheckpoint->IsInMainChain())
354     {
355         // checkpoint chain received but not yet main chain
356         txdb.TxnBegin();
357         if (!Reorganize(txdb, pindexCheckpoint))
358         {
359             txdb.TxnAbort();
360             Checkpoints::hashInvalidCheckpoint = hashCheckpoint;
361             return error("ProcessSyncCheckpoint: Reorganize failed for sync checkpoint %s", hashCheckpoint.ToString().c_str());
362         }
363     }
364     txdb.Close();
365
366     if (!Checkpoints::WriteSyncCheckpoint(hashCheckpoint))
367         return error("ProcessSyncCheckpoint(): failed to write sync checkpoint %s", hashCheckpoint.ToString().c_str());
368     Checkpoints::checkpointMessage = *this;
369     Checkpoints::hashPendingCheckpoint = 0;
370     Checkpoints::checkpointMessagePending.SetNull();
371     printf("ProcessSyncCheckpoint: sync-checkpoint at %s\n", hashCheckpoint.ToString().c_str());
372     return true;
373 }