2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-13 10:28:20 +01:00
|
|
|
// Copyright (c) 2014-2015 The Dash developers
|
2014-12-09 02:17:57 +01:00
|
|
|
// Distributed under the MIT/X11 software license, see the accompanying
|
|
|
|
// file COPYING or http://www.opensource.org/licenses/mit-license.php.
|
|
|
|
#ifndef MASTERNODE_H
|
|
|
|
#define MASTERNODE_H
|
|
|
|
|
|
|
|
#include "sync.h"
|
|
|
|
#include "net.h"
|
|
|
|
#include "key.h"
|
|
|
|
#include "util.h"
|
|
|
|
#include "base58.h"
|
|
|
|
#include "main.h"
|
2015-04-16 21:58:09 +02:00
|
|
|
#include "masternode.h"
|
2015-03-13 10:28:20 +01:00
|
|
|
#include "masternode-pos.h"
|
2015-04-03 00:51:08 +02:00
|
|
|
#include "timedata.h"
|
2014-12-09 02:17:57 +01:00
|
|
|
|
|
|
|
#define MASTERNODE_NOT_PROCESSED 0 // initial state
|
|
|
|
#define MASTERNODE_IS_CAPABLE 1
|
|
|
|
#define MASTERNODE_NOT_CAPABLE 2
|
|
|
|
#define MASTERNODE_STOPPED 3
|
|
|
|
#define MASTERNODE_INPUT_TOO_NEW 4
|
2014-12-31 03:54:00 +01:00
|
|
|
#define MASTERNODE_PORT_NOT_OPEN 6
|
2014-12-09 02:17:57 +01:00
|
|
|
#define MASTERNODE_PORT_OPEN 7
|
|
|
|
#define MASTERNODE_SYNC_IN_PROCESS 8
|
|
|
|
#define MASTERNODE_REMOTELY_ENABLED 9
|
|
|
|
|
|
|
|
#define MASTERNODE_MIN_CONFIRMATIONS 15
|
2015-04-17 17:10:38 +02:00
|
|
|
#define MASTERNODE_MIN_MNP_SECONDS (30*60)
|
2014-12-09 02:17:57 +01:00
|
|
|
#define MASTERNODE_MIN_DSEE_SECONDS (5*60)
|
|
|
|
#define MASTERNODE_PING_SECONDS (1*60)
|
|
|
|
#define MASTERNODE_EXPIRATION_SECONDS (65*60)
|
|
|
|
#define MASTERNODE_REMOVAL_SECONDS (70*60)
|
|
|
|
|
|
|
|
using namespace std;
|
|
|
|
|
2015-02-23 21:01:21 +01:00
|
|
|
class CMasternode;
|
2015-04-17 17:10:38 +02:00
|
|
|
class CMasternodeBroadcast;
|
|
|
|
class CMasternodePing;
|
2015-02-05 23:56:59 +01:00
|
|
|
extern map<int64_t, uint256> mapCacheBlockHashes;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-03-23 13:59:22 +01:00
|
|
|
bool GetBlockHash(uint256& hash, int nBlockHeight);
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2014-12-31 03:54:00 +01:00
|
|
|
//
|
2015-03-05 09:10:15 +01:00
|
|
|
// The Masternode Class. For managing the Darksend process. It contains the input of the 1000DRK, signature to prove
|
2014-12-09 02:17:57 +01:00
|
|
|
// it's the one who own that ip address and code for calculating the payment election.
|
2014-12-31 03:54:00 +01:00
|
|
|
//
|
2015-02-23 21:01:21 +01:00
|
|
|
class CMasternode
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
2015-02-23 21:01:21 +01:00
|
|
|
private:
|
|
|
|
// critical section to protect the inner data structures
|
|
|
|
mutable CCriticalSection cs;
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
public:
|
2015-03-24 02:59:12 +01:00
|
|
|
enum state {
|
|
|
|
MASTERNODE_ENABLED = 1,
|
|
|
|
MASTERNODE_EXPIRED = 2,
|
|
|
|
MASTERNODE_VIN_SPENT = 3,
|
|
|
|
MASTERNODE_REMOVE = 4,
|
|
|
|
MASTERNODE_POS_ERROR = 5
|
|
|
|
};
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
CTxIn vin;
|
2015-02-23 21:01:21 +01:00
|
|
|
CService addr;
|
2014-12-09 02:17:57 +01:00
|
|
|
CPubKey pubkey;
|
|
|
|
CPubKey pubkey2;
|
|
|
|
std::vector<unsigned char> sig;
|
2015-02-23 21:01:21 +01:00
|
|
|
int activeState;
|
2015-03-01 16:38:53 +01:00
|
|
|
int64_t sigTime; //dsee message times
|
2015-04-17 17:10:38 +02:00
|
|
|
int64_t lastMnping;
|
2015-02-23 21:01:21 +01:00
|
|
|
int64_t lastTimeSeen;
|
2014-12-09 02:17:57 +01:00
|
|
|
int cacheInputAge;
|
|
|
|
int cacheInputAgeBlock;
|
|
|
|
bool unitTest;
|
|
|
|
bool allowFreeTx;
|
|
|
|
int protocolVersion;
|
2015-03-24 02:52:27 +01:00
|
|
|
int64_t nLastDsq; //the dsq count from the last dsq broadcast of this node
|
2015-03-16 20:01:11 +01:00
|
|
|
CScript donationAddress;
|
|
|
|
int donationPercentage;
|
2015-03-20 19:24:11 +01:00
|
|
|
int nVote;
|
|
|
|
int64_t lastVote;
|
2015-03-24 02:52:27 +01:00
|
|
|
int nScanningErrorCount;
|
|
|
|
int nLastScanningErrorBlockHeight;
|
2015-04-16 16:08:06 +02:00
|
|
|
int64_t nLastPaid;
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-02-23 21:01:21 +01:00
|
|
|
CMasternode();
|
|
|
|
CMasternode(const CMasternode& other);
|
2015-04-17 17:10:38 +02:00
|
|
|
CMasternode(const CMasternodeBroadcast& other);
|
|
|
|
CMasternode(CService newAddr, CTxIn newVin, CPubKey newPubkey, std::vector<unsigned char> newSig, int64_t newSigTime, CPubKey newPubkey2, int protocolVersionIn, CScript newDonationAddress, int newDonationPercentage);
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
|
2015-02-23 21:01:21 +01:00
|
|
|
void swap(CMasternode& first, CMasternode& second) // nothrow
|
2014-12-09 02:17:57 +01:00
|
|
|
{
|
2015-02-23 21:01:21 +01:00
|
|
|
// enable ADL (not necessary in our case, but good practice)
|
|
|
|
using std::swap;
|
|
|
|
|
|
|
|
// by swapping the members of two classes,
|
|
|
|
// the two classes are effectively swapped
|
|
|
|
swap(first.vin, second.vin);
|
|
|
|
swap(first.addr, second.addr);
|
|
|
|
swap(first.pubkey, second.pubkey);
|
|
|
|
swap(first.pubkey2, second.pubkey2);
|
|
|
|
swap(first.sig, second.sig);
|
|
|
|
swap(first.activeState, second.activeState);
|
2015-03-01 16:38:53 +01:00
|
|
|
swap(first.sigTime, second.sigTime);
|
2015-04-17 17:10:38 +02:00
|
|
|
swap(first.lastMnping, second.lastMnping);
|
2015-02-23 21:01:21 +01:00
|
|
|
swap(first.lastTimeSeen, second.lastTimeSeen);
|
|
|
|
swap(first.cacheInputAge, second.cacheInputAge);
|
|
|
|
swap(first.cacheInputAgeBlock, second.cacheInputAgeBlock);
|
2015-03-24 02:52:27 +01:00
|
|
|
swap(first.unitTest, second.unitTest);
|
2015-02-23 21:01:21 +01:00
|
|
|
swap(first.allowFreeTx, second.allowFreeTx);
|
|
|
|
swap(first.protocolVersion, second.protocolVersion);
|
|
|
|
swap(first.nLastDsq, second.nLastDsq);
|
2015-03-16 20:01:11 +01:00
|
|
|
swap(first.donationAddress, second.donationAddress);
|
|
|
|
swap(first.donationPercentage, second.donationPercentage);
|
2015-03-21 04:34:36 +01:00
|
|
|
swap(first.nVote, second.nVote);
|
|
|
|
swap(first.lastVote, second.lastVote);
|
2015-03-24 02:52:27 +01:00
|
|
|
swap(first.nScanningErrorCount, second.nScanningErrorCount);
|
|
|
|
swap(first.nLastScanningErrorBlockHeight, second.nLastScanningErrorBlockHeight);
|
2015-04-16 16:08:06 +02:00
|
|
|
swap(first.nLastPaid, second.nLastPaid);
|
2015-02-23 21:01:21 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
CMasternode& operator=(CMasternode from)
|
|
|
|
{
|
|
|
|
swap(*this, from);
|
|
|
|
return *this;
|
|
|
|
}
|
|
|
|
friend bool operator==(const CMasternode& a, const CMasternode& b)
|
|
|
|
{
|
|
|
|
return a.vin == b.vin;
|
|
|
|
}
|
|
|
|
friend bool operator!=(const CMasternode& a, const CMasternode& b)
|
|
|
|
{
|
|
|
|
return !(a.vin == b.vin);
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
uint256 CalculateScore(int mod=1, int64_t nBlockHeight=0);
|
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
|
|
|
LOCK(cs);
|
2015-04-17 17:10:38 +02:00
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
READWRITE(vin);
|
|
|
|
READWRITE(addr);
|
|
|
|
READWRITE(pubkey);
|
|
|
|
READWRITE(pubkey2);
|
|
|
|
READWRITE(sig);
|
|
|
|
READWRITE(sigTime);
|
|
|
|
READWRITE(lastTimeSeen);
|
2015-04-17 17:10:38 +02:00
|
|
|
READWRITE(protocolVersion);
|
|
|
|
READWRITE(donationAddress);
|
|
|
|
READWRITE(donationPercentage);
|
|
|
|
READWRITE(nLastPaid);
|
|
|
|
READWRITE(activeState);
|
|
|
|
READWRITE(lastMnping);
|
2015-04-03 00:51:08 +02:00
|
|
|
READWRITE(cacheInputAge);
|
|
|
|
READWRITE(cacheInputAgeBlock);
|
|
|
|
READWRITE(unitTest);
|
|
|
|
READWRITE(allowFreeTx);
|
|
|
|
READWRITE(nLastDsq);
|
|
|
|
READWRITE(nVote);
|
|
|
|
READWRITE(lastVote);
|
|
|
|
READWRITE(nScanningErrorCount);
|
|
|
|
READWRITE(nLastScanningErrorBlockHeight);
|
2015-04-16 16:08:06 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
int64_t SecondsSincePayment()
|
|
|
|
{
|
|
|
|
return (GetAdjustedTime() - nLastPaid);
|
2015-04-17 17:10:38 +02:00
|
|
|
|
2015-04-03 00:51:08 +02:00
|
|
|
}
|
2015-02-23 21:01:21 +01:00
|
|
|
|
2015-04-17 17:10:38 +02:00
|
|
|
void UpdateFromNewBroadcast(CMasternodeBroadcast& mnb);
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
void UpdateLastSeen(int64_t override=0)
|
|
|
|
{
|
|
|
|
if(override == 0){
|
|
|
|
lastTimeSeen = GetAdjustedTime();
|
|
|
|
} else {
|
|
|
|
lastTimeSeen = override;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
inline uint64_t SliceHash(uint256& hash, int slice)
|
|
|
|
{
|
|
|
|
uint64_t n = 0;
|
|
|
|
memcpy(&n, &hash+slice*64, 64);
|
|
|
|
return n;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Check();
|
|
|
|
|
|
|
|
bool UpdatedWithin(int seconds)
|
|
|
|
{
|
|
|
|
// LogPrintf("UpdatedWithin %d, %d -- %d \n", GetAdjustedTime() , lastTimeSeen, (GetAdjustedTime() - lastTimeSeen) < seconds);
|
2014-12-31 03:54:00 +01:00
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
return (GetAdjustedTime() - lastTimeSeen) < seconds;
|
|
|
|
}
|
|
|
|
|
|
|
|
void Disable()
|
|
|
|
{
|
|
|
|
lastTimeSeen = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
bool IsEnabled()
|
|
|
|
{
|
2015-02-23 21:01:21 +01:00
|
|
|
return activeState == MASTERNODE_ENABLED;
|
2014-12-09 02:17:57 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
int GetMasternodeInputAge()
|
|
|
|
{
|
|
|
|
if(chainActive.Tip() == NULL) return 0;
|
|
|
|
|
|
|
|
if(cacheInputAge == 0){
|
|
|
|
cacheInputAge = GetInputAge(vin);
|
|
|
|
cacheInputAgeBlock = chainActive.Tip()->nHeight;
|
|
|
|
}
|
|
|
|
|
|
|
|
return cacheInputAge+(chainActive.Tip()->nHeight-cacheInputAgeBlock);
|
|
|
|
}
|
2015-03-13 10:28:20 +01:00
|
|
|
|
|
|
|
void ApplyScanningError(CMasternodeScanningError& mnse)
|
|
|
|
{
|
|
|
|
if(!mnse.IsValid()) return;
|
|
|
|
|
|
|
|
if(mnse.nBlockHeight == nLastScanningErrorBlockHeight) return;
|
|
|
|
nLastScanningErrorBlockHeight = mnse.nBlockHeight;
|
|
|
|
|
|
|
|
if(mnse.nErrorType == SCANNING_SUCCESS){
|
|
|
|
nScanningErrorCount--;
|
|
|
|
if(nScanningErrorCount < 0) nScanningErrorCount = 0;
|
|
|
|
} else { //all other codes are equally as bad
|
|
|
|
nScanningErrorCount++;
|
|
|
|
if(nScanningErrorCount > MASTERNODE_SCANNING_ERROR_THESHOLD*2) nScanningErrorCount = MASTERNODE_SCANNING_ERROR_THESHOLD*2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-31 03:14:44 +02:00
|
|
|
std::string Status() {
|
|
|
|
std::string strStatus = "ACTIVE";
|
|
|
|
|
|
|
|
if(activeState == CMasternode::MASTERNODE_ENABLED) strStatus = "ENABLED";
|
|
|
|
if(activeState == CMasternode::MASTERNODE_EXPIRED) strStatus = "EXPIRED";
|
|
|
|
if(activeState == CMasternode::MASTERNODE_VIN_SPENT) strStatus = "VIN_SPENT";
|
|
|
|
if(activeState == CMasternode::MASTERNODE_REMOVE) strStatus = "REMOVE";
|
|
|
|
if(activeState == CMasternode::MASTERNODE_POS_ERROR) strStatus = "POS_ERROR";
|
|
|
|
|
|
|
|
return strStatus;
|
|
|
|
}
|
|
|
|
|
2014-12-09 02:17:57 +01:00
|
|
|
};
|
|
|
|
|
2015-04-17 17:10:38 +02:00
|
|
|
|
|
|
|
//
|
|
|
|
// The Masternode Broadcast Class : Contains a different serialize method for sending masternodes through the network
|
|
|
|
//
|
|
|
|
|
|
|
|
class CMasternodeBroadcast : public CMasternode
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
CMasternodeBroadcast();
|
|
|
|
CMasternodeBroadcast(CService newAddr, CTxIn newVin, CPubKey newPubkey, CPubKey newPubkey2, int protocolVersionIn, CScript newDonationAddress, int newDonationPercentage);
|
|
|
|
CMasternodeBroadcast(const CMasternode& other);
|
|
|
|
|
|
|
|
bool CheckAndUpdate(int& nDoS, bool fRequested);
|
|
|
|
bool CheckInputsAndAdd(int& nDos, bool fRequested);
|
|
|
|
bool Sign(CKey& keyCollateralAddress);
|
|
|
|
void Relay(bool fRequested);
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
|
|
|
READWRITE(vin);
|
|
|
|
READWRITE(addr);
|
|
|
|
READWRITE(pubkey);
|
|
|
|
READWRITE(pubkey2);
|
|
|
|
READWRITE(sig);
|
|
|
|
READWRITE(sigTime);
|
|
|
|
READWRITE(lastTimeSeen);
|
|
|
|
READWRITE(protocolVersion);
|
|
|
|
READWRITE(donationAddress);
|
|
|
|
READWRITE(donationPercentage);
|
|
|
|
READWRITE(nLastPaid);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
//
|
|
|
|
// The Masternode Ping Class : Contains a different serialize method for sending pings from masternodes throughout the network
|
|
|
|
//
|
|
|
|
|
|
|
|
class CMasternodePing
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
|
|
|
|
CTxIn vin;
|
|
|
|
std::vector<unsigned char> vchSig;
|
|
|
|
int64_t sigTime; //dsee message times
|
|
|
|
//removed stop
|
|
|
|
|
|
|
|
CMasternodePing();
|
|
|
|
CMasternodePing(CTxIn& newVin);
|
|
|
|
|
|
|
|
ADD_SERIALIZE_METHODS;
|
|
|
|
|
|
|
|
template <typename Stream, typename Operation>
|
|
|
|
inline void SerializationOp(Stream& s, Operation ser_action, int nType, int nVersion) {
|
|
|
|
READWRITE(vin);
|
|
|
|
READWRITE(sigTime);
|
|
|
|
READWRITE(vchSig);
|
|
|
|
}
|
|
|
|
|
|
|
|
bool CheckAndUpdate(int& nDos);
|
|
|
|
bool Sign(CKey& keyMasternode, CPubKey& pubKeyMasternode);
|
|
|
|
void Relay();
|
|
|
|
|
|
|
|
};
|
|
|
|
#endif
|