peerplays_migrated/libraries/plugins/witness/witness.cpp
2015-06-18 12:45:43 -04:00

199 lines
8.2 KiB
C++

/*
* Copyright (c) 2015, Cryptonomex, Inc.
* All rights reserved.
*
* This source code is provided for evaluation in private test networks only, until September 8, 2015. After this date, this license expires and
* the code may not be used, modified or distributed for any purpose. Redistribution and use in source and binary forms, with or without modification,
* are permitted until September 8, 2015, provided that the following conditions are met:
*
* 1. The code and/or derivative works are used only for private test networks consisting of no more than 10 P2P nodes.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
* THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR
* CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
* PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY,
* WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
* ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*/
#include <graphene/witness/witness.hpp>
#include <graphene/chain/database.hpp>
#include <graphene/chain/witness_object.hpp>
#include <graphene/time/time.hpp>
#include <fc/thread/thread.hpp>
using namespace graphene::witness_plugin;
using std::string;
using std::vector;
void witness_plugin::plugin_set_program_options(
boost::program_options::options_description& command_line_options,
boost::program_options::options_description& config_file_options)
{
command_line_options.add_options()
("enable-stale-production", bpo::bool_switch()->notifier([this](bool e){_production_enabled = e;}), "Enable block production, even if the chain is stale")
("witness-id,w", bpo::value<vector<string>>()->composing()->multitoken(),
"ID of witness controlled by this node (e.g. \"1.7.0\", quotes are required, may specify multiple times)")
("private-key", bpo::value<vector<string>>()->composing()->multitoken()->
DEFAULT_VALUE_VECTOR(std::make_pair(chain::key_id_type(), fc::ecc::private_key::regenerate(fc::sha256::hash(std::string("genesis"))))),
"Tuple of [key ID, private key] (may specify multiple times)")
;
config_file_options.add(command_line_options);
}
std::string witness_plugin::plugin_name()const
{
return "witness";
}
void witness_plugin::plugin_initialize(const boost::program_options::variables_map& options)
{
_options = &options;
LOAD_VALUE_SET(options, "witness-id", _witnesses, chain::witness_id_type)
//Define a type T which doesn't have a comma, as I can't put a comma in a macro argument
using T = std::pair<chain::key_id_type,fc::ecc::private_key>;
LOAD_VALUE_SET(options, "private-key", _private_keys, T)
}
void witness_plugin::plugin_startup()
{ try {
std::set<chain::witness_id_type> bad_wits;
//Start NTP time client
graphene::time::now();
for( auto wit : _witnesses )
{
auto key = wit(database()).signing_key;
if( !_private_keys.count(key) )
{
elog("Unable to find key for witness ${w}. Removing it from my witnesses.", ("w", wit));
bad_wits.insert(wit);
}
}
for( auto wit : bad_wits )
_witnesses.erase(wit);
if( !_witnesses.empty() )
{
ilog("Launching block production for ${n} witnesses.", ("n", _witnesses.size()));
app().set_block_production(true);
schedule_next_production(database().get_global_properties().parameters);
} else
elog("No witnesses configured! Please add witness IDs and private keys to configuration.");
} FC_CAPTURE_AND_RETHROW() }
void witness_plugin::plugin_shutdown()
{
graphene::time::shutdown_ntp_time();
return;
}
void witness_plugin::schedule_next_production(const graphene::chain::chain_parameters& global_parameters)
{
//Get next production time for *any* delegate
auto block_interval = global_parameters.block_interval;
fc::time_point next_block_time = fc::time_point_sec() +
(graphene::time::now().sec_since_epoch() / block_interval + 1) * block_interval;
if( graphene::time::ntp_time().valid() )
next_block_time -= graphene::time::ntp_error();
//Sleep until the next production time for *any* delegate
_block_production_task = fc::schedule([this]{block_production_loop();},
next_block_time, "Witness Block Production");
}
void witness_plugin::block_production_loop()
{
chain::database& db = database();
const auto& global_parameters = db.get_global_properties().parameters;
// Is there a head block within a block interval of now? If so, we're synced and can begin production.
if( !_production_enabled &&
llabs((db.head_block_time() - graphene::time::now()).to_seconds()) <= global_parameters.block_interval )
_production_enabled = true;
// is anyone scheduled to produce now or one second in the future?
uint32_t slot = db.get_slot_at_time( graphene::time::now() + fc::seconds(1) );
graphene::chain::witness_id_type scheduled_witness = db.get_scheduled_witness( slot ).first;
fc::time_point_sec scheduled_time = db.get_slot_time( slot );
fc::time_point_sec now = graphene::time::now();
graphene::chain::key_id_type scheduled_key = scheduled_witness( db ).signing_key;
auto is_scheduled = [&]()
{
// conditions needed to produce a block:
// block production must be enabled (i.e. witness must be synced)
if( !_production_enabled )
{
elog("Not producing block because production is disabled.");
return false;
}
// the next block must be scheduled after the head block.
// if this check fails, the local clock has not advanced far
// enough from the head block.
if( slot == 0 ) {
elog("Not producing block because head block time is in the future (is the system clock set correctly?).");
return false;
}
// we must control the witness scheduled to produce the next block.
if( _witnesses.find( scheduled_witness ) == _witnesses.end() ) {
return false;
}
// the local clock must be at least 1 second ahead of
// head_block_time.
if( (now - db.head_block_time()).to_seconds() <= 1 ) {
elog("Not producing block because head block is less than a second old.");
return false;
}
// the local clock must be within 500 milliseconds of
// the scheduled production time.
if( llabs((scheduled_time - now).count()) > fc::milliseconds(500).count() ) {
elog("Not producing block because network time is not within 500ms of scheduled block time.");
return false;
}
// we must know the private key corresponding to the witness's
// published block production key.
if( _private_keys.find( scheduled_key ) == _private_keys.end() ) {
elog("Not producing block because I don't have the private key for ${id}.", ("id", scheduled_key));
return false;
}
return true;
};
wdump((slot)(scheduled_witness)(scheduled_time)(now));
if( is_scheduled() )
{
ilog("Witness ${id} production slot has arrived; generating a block now...", ("id", scheduled_witness));
try
{
auto block = db.generate_block(
scheduled_time,
scheduled_witness,
_private_keys[ scheduled_key ],
graphene::chain::database::skip_nothing
);
ilog("Generated block #${n} with timestamp ${t} at time ${c}",
("n", block.block_num())("t", block.timestamp)("c", now));
p2p_node().broadcast(net::block_message(block));
}
catch( const fc::canceled_exception& )
{
//We're trying to exit. Go ahead and let this one out.
throw;
}
catch( const fc::exception& e )
{
elog("Got exception while generating block:\n${e}", ("e", e.to_detail_string()));
}
}
schedule_next_production(global_parameters);
}