2021-11-15 11:48:19 +00:00
#!/usr/bin/env bash
2020-01-20 22:28:48 +00:00
2022-02-07 05:12:36 +00:00
# Copyright (c) 2020-2022 Status Research & Development GmbH. Licensed under
2020-02-18 23:33:26 +00:00
# either of:
# - Apache License, version 2.0
# - MIT license
# at your option. This file may not be copied, modified, or distributed except
# according to those terms.
2020-01-20 22:28:48 +00:00
# Mostly a duplication of "tests/simulation/{start.sh,run_node.sh}", but with a focus on
2020-02-13 12:19:12 +00:00
# replicating testnets as closely as possible, which means following the Docker execution labyrinth.
2020-01-20 22:28:48 +00:00
2022-06-27 08:34:12 +00:00
set -euo pipefail
2020-01-20 22:28:48 +00:00
2022-06-27 08:34:12 +00:00
BASEDIR = " $( dirname " ${ BASH_SOURCE [0] } " ) "
cd " $BASEDIR /.. "
VERBOSE = "0"
log( ) {
if [ [ " ${ VERBOSE } " -ge "1" ] ] ; then
echo " ${ @ } "
fi
}
2020-01-20 22:28:48 +00:00
2022-03-11 12:44:56 +00:00
# OS detection
OS = "linux"
if uname | grep -qi darwin; then
OS = "macos"
elif uname | grep -qiE "mingw|msys" ; then
OS = "windows"
fi
# architecture detection
ARCH = " $( uname -m) "
2020-02-18 23:33:26 +00:00
####################
# argument parsing #
####################
2020-07-29 12:08:27 +00:00
GETOPT_BINARY = "getopt"
2022-03-11 12:44:56 +00:00
if [ [ " ${ OS } " = = "macos" ] ] ; then
2021-11-30 18:56:22 +00:00
GETOPT_BINARY = $( find /opt/homebrew/opt/gnu-getopt/bin/getopt /usr/local/opt/gnu-getopt/bin/getopt 2> /dev/null || true )
2020-07-30 00:46:10 +00:00
[ [ -f " $GETOPT_BINARY " ] ] || { echo "GNU getopt not installed. Please run 'brew install gnu-getopt'. Aborting." ; exit 1; }
2020-07-29 12:08:27 +00:00
fi
! ${ GETOPT_BINARY } --test > /dev/null
2022-03-11 12:44:56 +00:00
if [ [ ${ PIPESTATUS [0] } != 4 ] ] ; then
2022-02-12 11:27:43 +00:00
# shellcheck disable=2016
2020-07-30 00:46:10 +00:00
echo '`getopt --test` failed in this environment.'
exit 1
2020-02-18 23:33:26 +00:00
fi
2022-05-31 10:45:37 +00:00
CURL_BINARY = " $( command -v curl) " || { echo "Curl not installed. Aborting." ; exit 1; }
JQ_BINARY = " $( command -v jq) " || { echo "Jq not installed. Aborting." ; exit 1; }
2021-02-02 18:02:52 +00:00
OPTS = "ht:n:d:g"
2022-07-23 14:28:10 +00:00
LONGOPTS = "help,preset:,nodes:,data-dir:,remote-validators-count:,threshold:,remote-signers:,with-ganache,stop-at-epoch:,disable-htop,disable-vc,enable-logtrace,log-level:,base-port:,base-rest-port:,base-metrics-port:,base-remote-signer-port:,base-el-net-port:,base-el-http-port:,base-el-ws-port:,base-el-auth-rpc-port:,el-port-offset:,reuse-existing-data-dir,reuse-binaries,timeout:,kill-old-processes,eth2-docker-image:,lighthouse-vc-nodes:,run-geth,dl-geth,light-clients:,run-nimbus-el,verbose"
2020-01-20 22:28:48 +00:00
2020-02-18 23:33:26 +00:00
# default values
2022-06-27 08:34:12 +00:00
NIMFLAGS = " ${ NIMFLAGS :- "" } "
2020-02-18 23:33:26 +00:00
NUM_NODES = "10"
2020-01-20 22:28:48 +00:00
DATA_DIR = "local_testnet_data"
2020-02-18 23:33:26 +00:00
USE_HTOP = "1"
2020-09-01 13:38:34 +00:00
USE_VC = "1"
2022-03-11 12:44:56 +00:00
LIGHTHOUSE_VC_NODES = "0"
2020-06-22 18:22:45 +00:00
USE_GANACHE = "0"
2021-08-13 14:12:40 +00:00
LOG_LEVEL = "DEBUG; TRACE:networking"
2020-05-14 17:34:47 +00:00
BASE_PORT = "9000"
2022-05-10 00:32:12 +00:00
BASE_REMOTE_SIGNER_PORT = "6000"
2020-05-14 17:34:47 +00:00
BASE_METRICS_PORT = "8008"
2022-02-12 11:27:43 +00:00
BASE_REST_PORT = "7500"
2022-07-23 14:28:10 +00:00
BASE_EL_NET_PORT = "30303"
BASE_EL_HTTP_PORT = "8545"
BASE_EL_WS_PORT = "8546"
BASE_EL_AUTH_RPC_PORT = "8551"
EL_PORT_OFFSET = "10"
2020-07-30 00:46:10 +00:00
REUSE_EXISTING_DATA_DIR = "0"
2022-03-11 12:44:56 +00:00
REUSE_BINARIES = "0"
2022-06-13 17:01:39 +00:00
NIMFLAGS = ""
2020-08-16 09:12:19 +00:00
ENABLE_LOGTRACE = "0"
2020-09-01 13:38:34 +00:00
STOP_AT_EPOCH_FLAG = ""
2021-02-02 18:02:52 +00:00
TIMEOUT_DURATION = "0"
2021-07-16 10:02:27 +00:00
CONST_PRESET = "mainnet"
2021-07-27 15:57:16 +00:00
KILL_OLD_PROCESSES = "0"
2021-11-30 18:56:22 +00:00
ETH2_DOCKER_IMAGE = ""
2022-05-10 00:32:12 +00:00
REMOTE_SIGNER_NODES = 0
REMOTE_SIGNER_THRESHOLD = 1
REMOTE_VALIDATORS_COUNT = 0
2022-07-12 11:38:50 +00:00
LC_NODES = 1
2022-06-27 08:34:12 +00:00
ACCOUNT_PASSWORD = "nimbus"
RUN_GETH = "0"
DL_GETH = "0"
CLEANUP_DIRS = ( )
#NIMBUS EL VARS
RUN_NIMBUS = "0"
NIMBUS_EL_BINARY = "../nimbus-eth1/build/nimbus"
EL_HTTP_PORTS = ( )
2022-06-28 16:22:06 +00:00
EL_RPC_PORTS = ( )
2022-06-27 08:34:12 +00:00
PROCS_TO_KILL = ( "nimbus_beacon_node" "nimbus_validator_client" "nimbus_signing_node" "nimbus_light_client" )
2020-02-18 23:33:26 +00:00
print_help( ) {
2020-07-30 00:46:10 +00:00
cat <<EOF
2021-07-16 10:02:27 +00:00
Usage: $( basename " $0 " ) [ OPTIONS] -- [ BEACON NODE OPTIONS]
E.g.: $( basename " $0 " ) --nodes ${ NUM_NODES } --stop-at-epoch 5 --data-dir " ${ DATA_DIR } " # defaults
2020-09-01 13:38:34 +00:00
CI run: $( basename " $0 " ) --disable-htop -- --verify-finalization
2020-02-18 23:33:26 +00:00
2022-03-11 12:44:56 +00:00
-h, --help show this help message
2020-07-30 00:46:10 +00:00
-n, --nodes number of nodes to launch ( default: ${ NUM_NODES } )
-g, --with-ganache simulate a genesis event based on a deposit contract
2020-09-01 13:38:34 +00:00
-s, --stop-at-epoch stop simulation at epoch ( default: infinite)
2020-07-30 00:46:10 +00:00
-d, --data-dir directory where all the node data and logs will end up
( default: " ${ DATA_DIR } " )
2021-07-16 10:02:27 +00:00
--preset Const preset to be ( default: mainnet)
2020-07-30 00:46:10 +00:00
--base-port bootstrap node' s Eth2 traffic port ( default: ${ BASE_PORT } )
2022-02-12 11:27:43 +00:00
--base-rest-port bootstrap node' s REST port ( default: ${ BASE_REST_PORT } )
2020-07-30 00:46:10 +00:00
--base-metrics-port bootstrap node' s metrics server port ( default: ${ BASE_METRICS_PORT } )
2022-07-23 14:28:10 +00:00
--base-remote-signer-port first remote signing node' s port ( default: ${ BASE_REMOTE_SIGNER_PORT } )
--base-el-net-port first EL' s network traffic port ( default: ${ BASE_EL_NET_PORT } )
--base-el-http-port first EL' s HTTP web3 port ( default: ${ BASE_EL_HTTP_PORT } )
--base-el-ws-port first EL' s WebSocket web3 port ( default: ${ BASE_EL_WS_PORT } )
--base-el-auth-rpc-port first EL' s authenticated engine API port ( default: ${ BASE_EL_AUTH_RPC_PORT } )
--el-port-offset offset to apply between ports of multiple ELs ( default: ${ EL_PORT_OFFSET } )
2020-11-07 18:00:31 +00:00
--disable-htop don' t use "htop" to see the nimbus_beacon_node processes
2022-03-11 12:44:56 +00:00
--disable-vc don' t use validator client binaries for validators
( by default validators are split 50/50 between beacon nodes
and validator clients, with all beacon nodes being paired up
with a corresponding validator client)
--lighthouse-vc-nodes number of Lighthouse VC nodes ( assigned before Nimbus VC nodes, default: ${ LIGHTHOUSE_VC_NODES } )
2022-05-10 10:03:40 +00:00
--enable-logtrace display logtrace analysis
2022-03-11 12:44:56 +00:00
--log-level set the log level ( default: " ${ LOG_LEVEL } " )
2020-07-30 00:46:10 +00:00
--reuse-existing-data-dir instead of deleting and recreating the data dir, keep it and reuse everything we can from it
2022-03-11 12:44:56 +00:00
--reuse-binaries don't (re)build the binaries we need and don' t delete them at the end ( speeds up testing)
2021-02-02 18:02:52 +00:00
--timeout timeout in seconds ( default: ${ TIMEOUT_DURATION } - no timeout)
2021-07-27 15:57:16 +00:00
--kill-old-processes if any process is found listening on a port we use, kill it ( default: disabled)
2021-11-30 18:56:22 +00:00
--eth2-docker-image use docker image instead of compiling the beacon node
2022-05-10 00:32:12 +00:00
--remote-validators-count number of remote validators which will be generated
--threshold used by a threshold secret sharing mechanism and determine how many shares are need to
restore signature of the original secret key
--remote-signers number of remote signing nodes
2022-05-31 10:45:37 +00:00
--light-clients number of light clients
2022-06-27 08:34:12 +00:00
--run-nimbus-el Run nimbush-eth1 as EL
--run-geth Run geth EL clients
--dl-geth Download geth binary if not found
--verbose Verbose output
2020-02-18 23:33:26 +00:00
EOF
}
2020-07-29 12:08:27 +00:00
! PARSED = $( ${ GETOPT_BINARY } --options= ${ OPTS } --longoptions= ${ LONGOPTS } --name " $0 " -- " $@ " )
2022-03-11 12:44:56 +00:00
if [ [ ${ PIPESTATUS [0] } != 0 ] ] ; then
2020-07-30 00:46:10 +00:00
# getopt has complained about wrong arguments to stdout
exit 1
2020-02-18 23:33:26 +00:00
fi
# read getopt's output this way to handle the quoting right
eval set -- " $PARSED "
while true; do
2020-07-30 00:46:10 +00:00
case " $1 " in
-h| --help)
print_help
exit
; ;
-n| --nodes)
NUM_NODES = " $2 "
shift 2
; ;
2022-05-10 00:32:12 +00:00
--remote-signers)
REMOTE_SIGNER_NODES = $2
shift 2
; ;
--remote-validators-count)
REMOTE_VALIDATORS_COUNT = $2
shift 2
; ;
--threshold)
REMOTE_SIGNER_THRESHOLD = $2
shift 2
; ;
2020-07-30 00:46:10 +00:00
-d| --data-dir)
DATA_DIR = " $2 "
shift 2
; ;
2021-02-02 18:02:52 +00:00
-g| --with-ganache)
USE_GANACHE = "1"
shift
; ;
2021-07-16 10:02:27 +00:00
--preset)
CONST_PRESET = " $2 "
shift 2
; ;
2021-02-02 18:02:52 +00:00
--stop-at-epoch)
STOP_AT_EPOCH_FLAG = " --stop-at-epoch= $2 "
shift 2
; ;
2020-07-30 00:46:10 +00:00
--disable-htop)
USE_HTOP = "0"
shift
; ;
2020-09-01 13:38:34 +00:00
--disable-vc)
USE_VC = "0"
shift
; ;
2021-02-02 18:02:52 +00:00
--enable-logtrace)
ENABLE_LOGTRACE = "1"
2020-07-30 00:46:10 +00:00
shift
; ;
--log-level)
LOG_LEVEL = " $2 "
shift 2
; ;
--base-port)
BASE_PORT = " $2 "
shift 2
; ;
2022-02-12 11:27:43 +00:00
--base-rest-port)
BASE_REST_PORT = " $2 "
2020-09-01 13:38:34 +00:00
shift 2
; ;
2020-07-30 00:46:10 +00:00
--base-metrics-port)
BASE_METRICS_PORT = " $2 "
shift 2
; ;
2022-07-23 14:28:10 +00:00
--base-remote-signer-port)
BASE_REMOTE_SIGNER_PORT = " $2 "
shift 2
; ;
--base-el-net-port)
BASE_EL_NET_PORT = " $2 "
shift 2
; ;
--base-el-http-port)
BASE_EL_HTTP_PORT = " $2 "
shift 2
; ;
--base-el-ws-port)
BASE_EL_WS_PORT = " $2 "
shift 2
; ;
--base-el-auth-rpc-port)
BASE_EL_AUTH_RPC_PORT = " $2 "
shift 2
; ;
--el-port-offset)
EL_PORT_OFFSET = " $2 "
shift 2
; ;
2020-07-30 00:46:10 +00:00
--reuse-existing-data-dir)
REUSE_EXISTING_DATA_DIR = "1"
shift
; ;
2022-03-11 12:44:56 +00:00
--reuse-binaries)
REUSE_BINARIES = "1"
shift
; ;
2021-02-02 18:02:52 +00:00
--timeout)
TIMEOUT_DURATION = " $2 "
shift 2
2020-08-16 09:12:19 +00:00
; ;
2021-07-27 15:57:16 +00:00
--kill-old-processes)
KILL_OLD_PROCESSES = "1"
shift
; ;
2021-11-30 18:56:22 +00:00
--eth2-docker-image)
ETH2_DOCKER_IMAGE = " $2 "
shift 2
2022-07-12 11:38:50 +00:00
# TODO The validator client and light client are not being shipped with
# our docker images, so we must disable them:
echo "warning: --eth-docker-image implies --disable-vc --light-clients=0"
2021-11-30 18:56:22 +00:00
USE_VC = "0"
2022-07-12 11:38:50 +00:00
LC_NODES = "0"
2021-11-30 18:56:22 +00:00
; ;
2022-03-11 12:44:56 +00:00
--lighthouse-vc-nodes)
LIGHTHOUSE_VC_NODES = " $2 "
shift 2
; ;
2022-05-31 10:45:37 +00:00
--light-clients)
LC_NODES = " $2 "
shift 2
; ;
2022-06-27 08:34:12 +00:00
--run-geth)
RUN_GETH = "1"
shift
; ;
--dl-geth)
DL_GETH = "1"
shift
; ;
--run-nimbus-el)
RUN_NIMBUS = "1"
shift
; ;
--verbose)
VERBOSE = "1"
shift
; ;
2020-07-30 00:46:10 +00:00
--)
shift
break
; ;
*)
echo "argument parsing error"
print_help
exit 1
esac
2020-02-18 23:33:26 +00:00
done
2022-07-12 11:38:50 +00:00
if [ [ -n " ${ ETH2_DOCKER_IMAGE } " ] ] ; then
if ( ( USE_VC || LC_NODES ) ) ; then
echo " invalid config: USE_VC= ${ USE_VC } LC_NODES= ${ LC_NODES } "
false
fi
fi
2020-02-18 23:33:26 +00:00
2020-02-26 00:14:20 +00:00
# when sourcing env.sh, it will try to execute $@, so empty it
EXTRA_ARGS = " $@ "
if [ [ $# != 0 ] ] ; then
2020-07-30 00:46:10 +00:00
shift $#
2020-02-26 00:14:20 +00:00
fi
2020-02-18 23:33:26 +00:00
2020-07-30 00:46:10 +00:00
if [ [ " $REUSE_EXISTING_DATA_DIR " = = "0" ] ] ; then
2022-06-27 08:34:12 +00:00
log " Deleting ${ DATA_DIR } "
2020-07-30 00:46:10 +00:00
rm -rf " ${ DATA_DIR } "
fi
2020-06-01 19:48:20 +00:00
2022-03-11 12:44:56 +00:00
if [ [ " ${ LIGHTHOUSE_VC_NODES } " != "0" && " ${ CONST_PRESET } " != "mainnet" ] ] ; then
echo "The prebuilt Lighthouse binary we're using only supports mainnet. Aborting."
exit 1
fi
2021-07-13 11:15:07 +00:00
scripts/makedir.sh " ${ DATA_DIR } "
2020-08-25 13:16:45 +00:00
2020-07-27 19:26:30 +00:00
VALIDATORS_DIR = " ${ DATA_DIR } /validators "
2021-07-13 11:15:07 +00:00
scripts/makedir.sh " ${ VALIDATORS_DIR } "
2020-06-01 19:48:20 +00:00
SECRETS_DIR = " ${ DATA_DIR } /secrets "
2021-07-13 11:15:07 +00:00
scripts/makedir.sh " ${ SECRETS_DIR } "
2020-06-01 19:48:20 +00:00
2021-07-16 10:02:27 +00:00
USER_VALIDATORS = 8
TOTAL_VALIDATORS = 128
2020-01-20 22:28:48 +00:00
2022-03-11 12:44:56 +00:00
# "Make" binary
if [ [ " ${ OS } " = = "windows" ] ] ; then
2020-07-30 00:46:10 +00:00
MAKE = "mingw32-make"
2020-02-18 23:33:26 +00:00
else
2020-07-30 00:46:10 +00:00
MAKE = "make"
2020-02-18 23:33:26 +00:00
fi
2021-02-11 18:28:37 +00:00
# number of CPU cores
if uname | grep -qi darwin; then
NPROC = " $( sysctl -n hw.logicalcpu) "
else
NPROC = " $( nproc) "
fi
2022-06-27 08:34:12 +00:00
if [ [ " ${ RUN_NIMBUS } " = = "1" && " ${ RUN_GETH } " = = "1" ] ] ; then
echo "Use only one EL - geth or nimbus"
exit 1
fi
if [ [ " ${ RUN_GETH } " = = "1" ] ] ; then
. ./scripts/geth_vars.sh
fi
if [ [ " ${ RUN_NIMBUS } " = = "1" ] ] ; then
. ./scripts/nimbus_el_vars.sh
fi
2021-07-27 15:57:16 +00:00
# kill lingering processes from a previous run
2022-03-11 12:44:56 +00:00
if [ [ " ${ OS } " != "windows" ] ] ; then
which lsof & >/dev/null || \
{ echo "'lsof' not installed and we need it to check for ports already in use. Aborting." ; exit 1; }
2022-06-27 08:34:12 +00:00
#Stop geth nodes
if [ [ " ${ RUN_GETH } " = = "1" ] ] ; then
for NUM_NODE in $( seq 0 $(( NUM_NODES - 1 )) ) ; do
2022-07-23 14:28:10 +00:00
for PORT in $(( NUM_NODE * GETH_PORT_OFFSET + GETH_BASE_NET_PORT )) $(( NUM_NODE * GETH_PORT_OFFSET + GETH_BASE_HTTP_PORT )) \
$(( NUM_NODE * GETH_PORT_OFFSET + GETH_BASE_WS_PORT )) $(( NUM_NODE * GETH_PORT_OFFSET + GETH_BASE_AUTH_RPC_PORT )) ; do
2022-06-27 08:34:12 +00:00
for PID in $( lsof -n -i tcp:${ PORT } -sTCP:LISTEN -t) ; do
echo -n " Found old geth processes listening on port ${ PORT } , with PID ${ PID } . "
if [ [ " ${ KILL_OLD_PROCESSES } " = = "1" ] ] ; then
echo "Killing it."
kill -9 " ${ PID } " || true
else
echo "Aborting."
exit 1
fi
done
done
done
fi
if [ [ " ${ RUN_NIMBUS } " = = "1" ] ] ; then
for NUM_NODE in $( seq 0 $(( NUM_NODES - 1 )) ) ; do
2022-07-23 14:28:10 +00:00
for PORT in $(( NUM_NODE * NIMBUSEL_PORT_OFFSET + NIMBUSEL_BASE_NET_PORT )) $(( NUM_NODE * NIMBUSEL_PORT_OFFSET + NIMBUSEL_BASE_HTTP_PORT )) \
$(( NUM_NODE * NIMBUSEL_PORT_OFFSET + NIMBUSEL_BASE_WS_PORT )) $(( NUM_NODE * NIMBUSEL_PORT_OFFSET + NIMBUSEL_BASE_AUTH_RPC_PORT )) ; do
2022-06-27 08:34:12 +00:00
for PID in $( lsof -n -i tcp:${ PORT } -sTCP:LISTEN -t) ; do
echo -n " Found old nimbus EL processes listening on port ${ PORT } , with PID ${ PID } . "
if [ [ " ${ KILL_OLD_PROCESSES } " = = "1" ] ] ; then
echo "Killing it."
kill -9 " ${ PID } " || true
else
echo "Aborting."
exit 1
fi
done
done
done
fi
2021-08-05 08:49:34 +00:00
for NUM_NODE in $( seq 0 $(( NUM_NODES - 1 )) ) ; do
2022-02-12 11:27:43 +00:00
for PORT in $(( BASE_PORT + NUM_NODE )) $(( BASE_METRICS_PORT + NUM_NODE )) $(( BASE_REST_PORT + NUM_NODE )) ; do
2021-08-05 08:49:34 +00:00
for PID in $( lsof -n -i tcp:${ PORT } -sTCP:LISTEN -t) ; do
echo -n " Found old process listening on port ${ PORT } , with PID ${ PID } . "
if [ [ " ${ KILL_OLD_PROCESSES } " = = "1" ] ] ; then
echo "Killing it."
2022-06-27 08:34:12 +00:00
kill -9 " ${ PID } " || true
2021-08-05 08:49:34 +00:00
else
echo "Aborting."
exit 1
fi
done
2021-07-27 15:57:16 +00:00
done
done
2021-08-05 08:49:34 +00:00
fi
2021-07-27 15:57:16 +00:00
2022-06-27 08:34:12 +00:00
download_geth( ) {
GETH_VERSION = "1.10.18-de23cf91"
# "https://gethstore.blob.core.windows.net/builds/geth-linux-amd64-1.10.18-de23cf91.tar.gz"
# "https://gethstore.blob.core.windows.net/builds/geth-darwin-amd64-1.10.18-de23cf91.tar.gz"
# "https://gethstore.blob.core.windows.net/builds/geth-windows-amd64-1.10.18-de23cf91.zip"
GETH_URL = "https://gethstore.blob.core.windows.net/builds/"
case " ${ OS } " in
linux)
GETH_TARBALL = " geth-linux-amd64- ${ GETH_VERSION } .tar.gz "
; ;
macos)
GETH_TARBALL = " geth-darwin-amd64- ${ GETH_VERSION } .tar.gz "
; ;
windows)
GETH_TARBALL = " geth-windows-amd64- ${ GETH_VERSION } .zip "
; ;
esac
if [ [ ! -e " build/ ${ GETH_BINARY } " ] ] ; then
log "Downloading Geth binary"
pushd "build" >/dev/null
" ${ CURL_BINARY } " -sSLO " ${ GETH_URL } / ${ GETH_TARBALL } "
local tmp_extract_dir
tmp_extract_dir = $( mktemp -d geth-extract-XXX)
CLEANUP_DIRS += ( " ${ tmp_extract_dir } " )
tar -xzf " ${ GETH_TARBALL } " --directory " ${ tmp_extract_dir } " --strip-components= 1
mv " ${ tmp_extract_dir } /geth " .
GETH_BINARY = " ${ PWD } /geth "
popd >/dev/null
fi
}
2022-07-14 04:07:40 +00:00
GETH_NUM_NODES = " $(( NUM_NODES + LC_NODES )) "
NIMBUSEL_NUM_NODES = " $(( NUM_NODES + LC_NODES )) "
2022-06-27 08:34:12 +00:00
if [ [ " ${ RUN_GETH } " = = "1" ] ] ; then
2022-06-28 11:33:49 +00:00
if [ [ ! -e " ${ GETH_BINARY } " ] ] ; then
if [ [ " ${ DL_GETH } " = = "1" ] ] ; then
log "Downloading geth ..."
download_geth
else
echo "Missing geth executable"
exit 1
fi
2022-06-27 08:34:12 +00:00
fi
log " Starting ${ GETH_NUM_NODES } Geth Nodes ... "
. "./scripts/start_geth_nodes.sh"
EL_HTTP_PORTS += ( " ${ GETH_HTTP_PORTS [@] } " )
2022-06-28 11:33:49 +00:00
EL_RPC_PORTS += ( " ${ GETH_RPC_PORTS [@] } " )
2022-06-27 08:34:12 +00:00
PROCS_TO_KILL += ( " ${ GETH_BINARY } " )
CLEANUP_DIRS += ( " ${ GETH_DATA_DIRS [@] } " )
fi
if [ [ " ${ RUN_NIMBUS } " = = "1" ] ] ; then
if [ [ ! -e " ${ NIMBUS_EL_BINARY } " ] ] ; then
echo "Missing nimbus EL executable"
exit 1
fi
. "./scripts/start_nimbus_el_nodes.sh"
EL_HTTP_PORTS += ( " ${ NIMBUSEL_HTTP_PORTS [@] } " )
2022-06-28 11:33:49 +00:00
EL_RPC_PORTS += ( " ${ NIMBUSEL_RPC_PORTS [@] } " )
2022-06-27 08:34:12 +00:00
PROCS_TO_KILL += ( " ${ NIMBUS_EL_BINARY } " )
CLEANUP_DIRS += ( " ${ NIMBUSEL_DATA_DIRS [@] } " )
fi
2022-03-11 12:44:56 +00:00
# Download the Lighthouse binary.
LH_VERSION = "2.1.3"
LH_ARCH = " ${ ARCH } "
if [ [ " ${ LH_ARCH } " = = "arm64" ] ] ; then
LH_ARCH = "aarch64"
fi
case " ${ OS } " in
linux)
LH_TARBALL = " lighthouse-v ${ LH_VERSION } - ${ LH_ARCH } -unknown-linux-gnu-portable.tar.gz "
; ;
macos)
LH_TARBALL = " lighthouse-v ${ LH_VERSION } - ${ LH_ARCH } -apple-darwin-portable.tar.gz "
; ;
windows)
LH_TARBALL = " lighthouse-v ${ LH_VERSION } - ${ LH_ARCH } -windows-portable.tar.gz "
; ;
esac
LH_URL = " https://github.com/sigp/lighthouse/releases/download/v ${ LH_VERSION } / ${ LH_TARBALL } "
LH_BINARY = " lighthouse- ${ LH_VERSION } "
if [ [ " ${ USE_VC } " = = "1" && " ${ LIGHTHOUSE_VC_NODES } " != "0" && ! -e " build/ ${ LH_BINARY } " ] ] ; then
2022-06-27 08:34:12 +00:00
echo "Downloading Lighthouse binary"
2022-03-11 12:44:56 +00:00
pushd "build" >/dev/null
2022-05-31 10:45:37 +00:00
" ${ CURL_BINARY } " -sSLO " ${ LH_URL } "
2022-03-11 12:44:56 +00:00
tar -xzf " ${ LH_TARBALL } " # contains just one file named "lighthouse"
rm lighthouse-* # deletes both the tarball and old binary versions
mv lighthouse " ${ LH_BINARY } "
popd >/dev/null
fi
2020-11-27 01:29:06 +00:00
# Build the binaries
2022-03-11 12:44:56 +00:00
BINARIES = "deposit_contract"
2022-05-10 00:32:12 +00:00
if [ " $REMOTE_SIGNER_NODES " -ge "0" ] ; then
BINARIES = " ${ BINARIES } nimbus_signing_node "
fi
2022-03-11 12:44:56 +00:00
if [ [ " ${ USE_VC } " = = "1" ] ] ; then
BINARIES = " ${ BINARIES } nimbus_validator_client "
fi
2021-11-30 18:56:22 +00:00
2022-05-31 10:45:37 +00:00
if [ " $LC_NODES " -ge "1" ] ; then
BINARIES = " ${ BINARIES } nimbus_light_client "
fi
2020-08-16 09:12:19 +00:00
if [ [ " $ENABLE_LOGTRACE " = = "1" ] ] ; then
2020-11-27 01:29:06 +00:00
BINARIES = " ${ BINARIES } logtrace "
2020-08-16 09:12:19 +00:00
fi
2021-07-16 10:02:27 +00:00
2022-03-11 12:44:56 +00:00
if [ [ -n " ${ ETH2_DOCKER_IMAGE } " ] ] ; then
DATA_DIR_FULL_PATH = " $( cd " ${ DATA_DIR } " ; pwd ) "
2021-11-30 18:56:22 +00:00
# CONTAINER_DATA_DIR must be used everywhere where paths are supplied to BEACON_NODE_COMMAND executions.
# We'll use the CONTAINER_ prefix throughout the file to indicate such paths.
2022-03-11 12:44:56 +00:00
CONTAINER_DATA_DIR = "/home/user/nimbus-eth2/testnet"
2021-11-30 18:56:22 +00:00
BEACON_NODE_COMMAND = " docker run -v /etc/passwd:/etc/passwd -u $( id -u) : $( id -g) --net=host -v ${ DATA_DIR_FULL_PATH } : ${ CONTAINER_DATA_DIR } :rw $ETH2_DOCKER_IMAGE "
else
# When docker is not used CONTAINER_DATA_DIR is just an alias for DATA_DIR
2022-03-11 12:44:56 +00:00
CONTAINER_DATA_DIR = " ${ DATA_DIR } "
2021-11-30 18:56:22 +00:00
BEACON_NODE_COMMAND = "./build/nimbus_beacon_node"
BINARIES = " ${ BINARIES } nimbus_beacon_node "
fi
2022-03-11 12:44:56 +00:00
BINARIES_MISSING = "0"
for BINARY in ${ BINARIES } ; do
if [ [ ! -e " build/ ${ BINARY } " ] ] ; then
BINARIES_MISSING = "1"
break
fi
done
2022-06-27 08:34:12 +00:00
2022-03-11 12:44:56 +00:00
if [ [ " ${ REUSE_BINARIES } " = = "0" || " ${ BINARIES_MISSING } " = = "1" ] ] ; then
${ MAKE } -j ${ NPROC } LOG_LEVEL = TRACE NIMFLAGS = " ${ NIMFLAGS } -d:local_testnet -d:const_preset= ${ CONST_PRESET } " ${ BINARIES }
fi
2020-01-20 22:28:48 +00:00
2021-08-03 10:12:21 +00:00
# Kill child processes on Ctrl-C/SIGTERM/exit, passing the PID of this shell
# instance as the parent and the target process name as a pattern to the
# "pkill" command.
cleanup( ) {
2022-06-27 08:34:12 +00:00
log "Cleaning up"
for proc in " ${ PROCS_TO_KILL [@] } "
do
pkill -f -P $$ " ${ proc } " & >/dev/null || true
done
2021-08-03 10:12:21 +00:00
sleep 2
2022-06-27 08:34:12 +00:00
for proc in " ${ PROCS_TO_KILL [@] } "
do
pkill -f -9 -P $$ " ${ proc } " & >/dev/null || true
done
2021-08-03 10:12:21 +00:00
2022-03-11 12:44:56 +00:00
# Delete all binaries we just built, because these are unusable outside this
2021-08-03 10:12:21 +00:00
# local testnet.
2022-03-11 12:44:56 +00:00
if [ [ " ${ REUSE_BINARIES } " = = "0" ] ] ; then
for BINARY in ${ BINARIES } ; do
rm -f build/${ BINARY }
done
fi
2021-11-30 18:56:22 +00:00
2022-02-12 11:27:43 +00:00
if [ [ -n " $ETH2_DOCKER_IMAGE " ] ] ; then
2021-11-30 18:56:22 +00:00
docker rm $( docker stop $( docker ps -a -q --filter ancestor = $ETH2_DOCKER_IMAGE --format= "{{.ID}}" ) )
fi
2022-06-27 08:34:12 +00:00
if [ ${# CLEANUP_DIRS [@] } -ne 0 ] ; then # check if the array is empty
for dir in " ${ CLEANUP_DIRS [@] } "
do
log " Deleting ${ dir } "
rm -rf " ${ dir } "
done
fi
2021-08-03 10:12:21 +00:00
}
2022-06-27 08:34:12 +00:00
2021-08-03 10:12:21 +00:00
trap 'cleanup' SIGINT SIGTERM EXIT
# timeout - implemented with a background job
timeout_reached( ) {
echo -e "\nTimeout reached. Aborting.\n"
cleanup
}
trap 'timeout_reached' SIGALRM
if [ [ " ${ TIMEOUT_DURATION } " != "0" ] ] ; then
export PARENT_PID = $$
( sleep ${ TIMEOUT_DURATION } && kill -ALRM ${ PARENT_PID } ) 2>/dev/null & WATCHER_PID = $!
fi
2022-05-10 00:32:12 +00:00
REMOTE_URLS = ""
for NUM_REMOTE in $( seq 0 $(( REMOTE_SIGNER_NODES - 1 )) ) ; do
2022-05-31 10:45:37 +00:00
REMOTE_PORT = $(( BASE_REMOTE_SIGNER_PORT + NUM_REMOTE ))
2022-05-10 00:32:12 +00:00
REMOTE_URLS = " ${ REMOTE_URLS } --remote-signer=http://127.0.0.1: ${ REMOTE_PORT } "
done
2021-08-03 10:12:21 +00:00
# deposit and testnet creation
2020-06-22 18:22:45 +00:00
PIDS = ""
2020-07-23 20:51:56 +00:00
BOOTSTRAP_TIMEOUT = 30 # in seconds
2020-07-09 22:08:54 +00:00
DEPOSIT_CONTRACT_ADDRESS = "0x0000000000000000000000000000000000000000"
DEPOSIT_CONTRACT_BLOCK = "0x0000000000000000000000000000000000000000000000000000000000000000"
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
RUNTIME_CONFIG_FILE = " ${ DATA_DIR } /config.yaml "
2020-09-01 13:38:34 +00:00
NUM_JOBS = ${ NUM_NODES }
2020-06-22 18:22:45 +00:00
2021-11-30 18:56:22 +00:00
DEPOSITS_FILE = " ${ DATA_DIR } /deposits.json "
CONTAINER_DEPOSITS_FILE = " ${ CONTAINER_DATA_DIR } /deposits.json "
2020-07-30 00:46:10 +00:00
if [ [ " $REUSE_EXISTING_DATA_DIR " = = "0" ] ] ; then
./build/deposit_contract generateSimulationDeposits \
--count= ${ TOTAL_VALIDATORS } \
--out-validators-dir= " ${ VALIDATORS_DIR } " \
--out-secrets-dir= " ${ SECRETS_DIR } " \
2022-05-10 00:32:12 +00:00
--out-deposits-file= " ${ DEPOSITS_FILE } " \
--threshold= ${ REMOTE_SIGNER_THRESHOLD } \
--remote-validators-count= ${ REMOTE_VALIDATORS_COUNT } \
${ REMOTE_URLS }
2020-07-30 00:46:10 +00:00
fi
2020-01-20 22:28:48 +00:00
2020-06-22 18:22:45 +00:00
if [ [ $USE_GANACHE = = "0" ] ] ; then
2020-07-30 00:46:10 +00:00
GENESIS_OFFSET = 30
BOOTSTRAP_IP = "127.0.0.1"
2021-11-30 18:56:22 +00:00
$BEACON_NODE_COMMAND createTestnet \
--data-dir= " ${ CONTAINER_DATA_DIR } " \
--deposits-file= " ${ CONTAINER_DEPOSITS_FILE } " \
2020-07-30 00:46:10 +00:00
--total-validators= ${ TOTAL_VALIDATORS } \
2021-11-30 18:56:22 +00:00
--output-genesis= " ${ CONTAINER_DATA_DIR } /genesis.ssz " \
--output-bootstrap-file= " ${ CONTAINER_DATA_DIR } /bootstrap_nodes.txt " \
2020-07-30 00:46:10 +00:00
--bootstrap-address= ${ BOOTSTRAP_IP } \
--bootstrap-port= ${ BASE_PORT } \
2020-08-25 12:49:05 +00:00
--netkey-file= network_key.json \
--insecure-netkey-password= true \
2020-07-30 00:46:10 +00:00
--genesis-offset= ${ GENESIS_OFFSET } # Delay in seconds
2020-06-22 18:22:45 +00:00
else
2020-07-30 00:46:10 +00:00
echo "Launching ganache"
ganache-cli --blockTime 17 --gasLimit 100000000 -e 100000 --verbose > " ${ DATA_DIR } /log_ganache.txt " 2>& 1 &
PIDS = " ${ PIDS } , $! "
2020-06-22 18:22:45 +00:00
2020-07-30 00:46:10 +00:00
WEB3_ARG = "--web3-url=ws://localhost:8545"
2020-07-09 22:08:54 +00:00
2020-07-30 00:46:10 +00:00
echo "Deploying deposit contract"
DEPLOY_CMD_OUTPUT = $( ./build/deposit_contract deploy $WEB3_ARG )
# https://stackoverflow.com/questions/918886/how-do-i-split-a-string-on-a-delimiter-in-bash
OUTPUT_PIECES = ( ${ DEPLOY_CMD_OUTPUT //;/ } )
DEPOSIT_CONTRACT_ADDRESS = ${ OUTPUT_PIECES [0] }
DEPOSIT_CONTRACT_BLOCK = ${ OUTPUT_PIECES [1] }
2020-07-09 22:08:54 +00:00
2020-08-17 06:36:29 +00:00
echo Contract deployed at " $DEPOSIT_CONTRACT_ADDRESS " :" $DEPOSIT_CONTRACT_BLOCK "
2020-06-11 13:31:35 +00:00
2020-07-30 00:46:10 +00:00
MIN_DELAY = 1
MAX_DELAY = 5
2020-06-22 18:22:45 +00:00
2020-07-30 00:46:10 +00:00
BOOTSTRAP_TIMEOUT = $(( MAX_DELAY * TOTAL_VALIDATORS ))
2020-06-22 18:22:45 +00:00
2020-07-30 00:46:10 +00:00
./build/deposit_contract sendDeposits \
--deposits-file= " ${ DEPOSITS_FILE } " \
--min-delay= $MIN_DELAY --max-delay= $MAX_DELAY \
$WEB3_ARG \
--deposit-contract= ${ DEPOSIT_CONTRACT_ADDRESS } > " ${ DATA_DIR } /log_deposit_maker.txt " 2>& 1 &
2020-06-22 18:22:45 +00:00
2020-07-30 00:46:10 +00:00
PIDS = " ${ PIDS } , $! "
2020-06-22 18:22:45 +00:00
fi
2020-01-20 22:28:48 +00:00
2020-06-10 15:21:32 +00:00
./scripts/make_prometheus_config.sh \
2020-07-30 00:46:10 +00:00
--nodes ${ NUM_NODES } \
--base-metrics-port ${ BASE_METRICS_PORT } \
--config-file " ${ DATA_DIR } /prometheus.yml " || true # TODO: this currently fails on macOS,
# but it can be considered non-critical
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
echo Wrote $RUNTIME_CONFIG_FILE :
2021-08-10 20:46:35 +00:00
# TODO the runtime config file should be used during deposit generation as well!
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
tee " $RUNTIME_CONFIG_FILE " <<EOF
2021-07-16 10:02:27 +00:00
PRESET_BASE: ${ CONST_PRESET }
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
MIN_GENESIS_ACTIVE_VALIDATOR_COUNT: ${ TOTAL_VALIDATORS }
MIN_GENESIS_TIME: 0
GENESIS_DELAY: 10
DEPOSIT_CONTRACT_ADDRESS: ${ DEPOSIT_CONTRACT_ADDRESS }
ETH1_FOLLOW_DISTANCE: 1
2022-01-26 12:21:29 +00:00
ALTAIR_FORK_EPOCH: 1
2022-02-17 13:02:56 +00:00
BELLATRIX_FORK_EPOCH: 2
Implement split preset/config support (#2710)
* Implement split preset/config support
This is the initial bulk refactor to introduce runtime config values in
a number of places, somewhat replacing the existing mechanism of loading
network metadata.
It still needs more work, this is the initial refactor that introduces
runtime configuration in some of the places that need it.
The PR changes the way presets and constants work, to match the spec. In
particular, a "preset" now refers to the compile-time configuration
while a "cfg" or "RuntimeConfig" is the dynamic part.
A single binary can support either mainnet or minimal, but not both.
Support for other presets has been removed completely (can be readded,
in case there's need).
There's a number of outstanding tasks:
* `SECONDS_PER_SLOT` still needs fixing
* loading custom runtime configs needs redoing
* checking constants against YAML file
* yeerongpilly support
`build/nimbus_beacon_node --network=yeerongpilly --discv5:no --log-level=DEBUG`
* load fork epoch from config
* fix fork digest sent in status
* nicer error string for request failures
* fix tools
* one more
* fixup
* fixup
* fixup
* use "standard" network definition folder in local testnet
Files are loaded from their standard locations, including genesis etc,
to conform to the format used in the `eth2-networks` repo.
* fix launch scripts, allow unknown config values
* fix base config of rest test
* cleanups
* bundle mainnet config using common loader
* fix spec links and names
* only include supported preset in binary
* drop yeerongpilly, add altair-devnet-0, support boot_enr.yaml
2021-07-12 13:01:38 +00:00
EOF
2022-03-11 12:44:56 +00:00
if [ [ " ${ LIGHTHOUSE_VC_NODES } " != "0" ] ] ; then
# I don't know what this is, but Lighthouse wants it, so we recreate it from
# Lighthouse's own local testnet.
echo 0 > " ${ DATA_DIR } /deploy_block.txt "
# Lighthouse wants all these variables here. Copying them from "beacon_chain/spec/presets.nim".
# Note: our parser can't handle quotes around numerical values.
cat >> " $RUNTIME_CONFIG_FILE " <<EOF
GENESIS_FORK_VERSION: 0x00000000
ALTAIR_FORK_VERSION: 0x01000000
SECONDS_PER_SLOT: 12
SECONDS_PER_ETH1_BLOCK: 14
MIN_VALIDATOR_WITHDRAWABILITY_DELAY: 256
SHARD_COMMITTEE_PERIOD: 256
INACTIVITY_SCORE_BIAS: 4
INACTIVITY_SCORE_RECOVERY_RATE: 16
EJECTION_BALANCE: 16000000000
MIN_PER_EPOCH_CHURN_LIMIT: 4
CHURN_LIMIT_QUOTIENT: 65536
DEPOSIT_CHAIN_ID: 1
DEPOSIT_NETWORK_ID: 1
EOF
fi
2020-05-01 22:09:04 +00:00
dump_logs( ) {
2020-07-30 00:46:10 +00:00
LOG_LINES = 20
for LOG in " ${ DATA_DIR } " /log*.txt; do
echo " Last ${ LOG_LINES } lines of ${ LOG } : "
tail -n ${ LOG_LINES } " ${ LOG } "
echo "======"
done
2020-05-01 22:09:04 +00:00
}
2020-08-16 09:12:19 +00:00
dump_logtrace( ) {
if [ [ " $ENABLE_LOGTRACE " = = "1" ] ] ; then
2021-08-06 21:25:30 +00:00
find " ${ DATA_DIR } " -maxdepth 1 -type f -regex '.*/log[0-9]+.txt' | sed -e" s/ ${ DATA_DIR } \//--nodes=/ " | sort | xargs ./build/logtrace aggasr --log-dir= " ${ DATA_DIR } " || true
2020-08-16 09:12:19 +00:00
fi
}
2020-02-21 13:19:34 +00:00
NODES_WITH_VALIDATORS = ${ NODES_WITH_VALIDATORS :- 4 }
2020-07-16 17:04:57 +00:00
BOOTSTRAP_NODE = 0
2020-06-03 11:40:14 +00:00
SYSTEM_VALIDATORS = $(( TOTAL_VALIDATORS - USER_VALIDATORS ))
VALIDATORS_PER_NODE = $(( SYSTEM_VALIDATORS / NODES_WITH_VALIDATORS ))
2022-03-11 12:44:56 +00:00
if [ [ " ${ USE_VC } " = = "1" ] ] ; then
2020-09-01 13:38:34 +00:00
# if using validator client binaries in addition to beacon nodes we will
# split the keys for this instance in half between the BN and the VC
# and the validators for the BNs will be from the first half of all validators
2022-06-27 08:34:12 +00:00
VALIDATORS_PER_NODE = $(( VALIDATORS_PER_NODE / 2 ))
NUM_JOBS = $(( NUM_JOBS * 2 ))
2020-09-01 13:38:34 +00:00
fi
2022-05-10 00:32:12 +00:00
if [ " $REMOTE_SIGNER_NODES " -ge "0" ] ; then
2022-06-27 08:34:12 +00:00
NUM_JOBS = $(( NUM_JOBS + REMOTE_SIGNER_NODES ))
2022-05-10 00:32:12 +00:00
fi
2022-05-31 10:45:37 +00:00
if [ " $LC_NODES " -ge "1" ] ; then
2022-06-27 08:34:12 +00:00
NUM_JOBS = $(( NUM_JOBS + LC_NODES ))
fi
if [ " ${ RUN_GETH } " = = "1" ] ; then
NUM_JOBS = $(( NUM_JOBS + GETH_NUM_NODES ))
fi
if [ " ${ RUN_NIMBUS } " = = "1" ] ; then
NUM_JOBS = $(( NUM_JOBS + NIMBUSEL_NUM_NODES ))
2022-05-31 10:45:37 +00:00
fi
2020-09-01 13:38:34 +00:00
VALIDATORS_PER_VALIDATOR = $(( ( SYSTEM_VALIDATORS / NODES_WITH_VALIDATORS) / 2 ))
VALIDATOR_OFFSET = $(( SYSTEM_VALIDATORS / 2 ))
2021-11-30 18:56:22 +00:00
2020-07-30 00:46:10 +00:00
BOOTSTRAP_ENR = " ${ DATA_DIR } /node ${ BOOTSTRAP_NODE } /beacon_node.enr "
2021-11-30 18:56:22 +00:00
CONTAINER_BOOTSTRAP_ENR = " ${ CONTAINER_DATA_DIR } /node ${ BOOTSTRAP_NODE } /beacon_node.enr "
CONTAINER_NETWORK_KEYFILE = "network_key.json"
2020-02-21 13:19:34 +00:00
2020-07-16 17:04:57 +00:00
for NUM_NODE in $( seq 0 $(( NUM_NODES - 1 )) ) ; do
2021-07-13 11:15:07 +00:00
# Copy validators to individual nodes.
# The first $NODES_WITH_VALIDATORS nodes split them equally between them,
# after skipping the first $USER_VALIDATORS.
NODE_DATA_DIR = " ${ DATA_DIR } /node ${ NUM_NODE } "
rm -rf " ${ NODE_DATA_DIR } "
scripts/makedir.sh " ${ NODE_DATA_DIR } " 2>& 1
scripts/makedir.sh " ${ NODE_DATA_DIR } /validators " 2>& 1
scripts/makedir.sh " ${ NODE_DATA_DIR } /secrets " 2>& 1
if [ [ $NUM_NODE -lt $NODES_WITH_VALIDATORS ] ] ; then
2022-03-11 12:44:56 +00:00
if [ [ " ${ USE_VC } " = = "1" ] ] ; then
2021-07-13 11:15:07 +00:00
VALIDATOR_DATA_DIR = " ${ DATA_DIR } /validator ${ NUM_NODE } "
rm -rf " ${ VALIDATOR_DATA_DIR } "
scripts/makedir.sh " ${ VALIDATOR_DATA_DIR } " 2>& 1
scripts/makedir.sh " ${ VALIDATOR_DATA_DIR } /validators " 2>& 1
scripts/makedir.sh " ${ VALIDATOR_DATA_DIR } /secrets " 2>& 1
for VALIDATOR in $( ls " ${ VALIDATORS_DIR } " | tail -n +$(( $USER_VALIDATORS + ( $VALIDATORS_PER_VALIDATOR * $NUM_NODE ) + 1 + $VALIDATOR_OFFSET )) | head -n $VALIDATORS_PER_VALIDATOR ) ; do
2022-05-10 00:32:12 +00:00
if [ [ -f " ${ VALIDATORS_DIR } / ${ VALIDATOR } /keystore.json " ] ] ; then
cp -a " ${ VALIDATORS_DIR } / ${ VALIDATOR } " " ${ VALIDATOR_DATA_DIR } /validators/ " 2>& 1
cp -a " ${ SECRETS_DIR } / ${ VALIDATOR } " " ${ VALIDATOR_DATA_DIR } /secrets/ " 2>& 1
else
# TODO: validators support remote signers
cp -a " ${ VALIDATORS_DIR } / ${ VALIDATOR } " " ${ NODE_DATA_DIR } /validators/ " 2>& 1
fi
2021-07-13 11:15:07 +00:00
done
2022-03-11 12:44:56 +00:00
if [ [ " ${ OS } " = = "Windows_NT" ] ] ; then
2021-07-13 11:15:07 +00:00
find " ${ VALIDATOR_DATA_DIR } " -type f \( -iname "*.json" -o ! -iname "*.*" \) -exec icacls "{}" /inheritance:r /grant:r ${ USERDOMAIN } \\ ${ USERNAME } :\( F\) \;
fi
fi
for VALIDATOR in $( ls " ${ VALIDATORS_DIR } " | tail -n +$(( $USER_VALIDATORS + ( $VALIDATORS_PER_NODE * $NUM_NODE ) + 1 )) | head -n $VALIDATORS_PER_NODE ) ; do
cp -a " ${ VALIDATORS_DIR } / ${ VALIDATOR } " " ${ NODE_DATA_DIR } /validators/ " 2>& 1
2022-05-10 00:32:12 +00:00
if [ [ -f " ${ VALIDATORS_DIR } / ${ VALIDATOR } /keystore.json " ] ] ; then
# Only remote key stores doesn't have a secret
cp -a " ${ SECRETS_DIR } / ${ VALIDATOR } " " ${ NODE_DATA_DIR } /secrets/ " 2>& 1
fi
2021-07-13 11:15:07 +00:00
done
2022-03-11 12:44:56 +00:00
if [ [ " ${ OS } " = = "Windows_NT" ] ] ; then
2021-07-13 11:15:07 +00:00
find " ${ NODE_DATA_DIR } " -type f \( -iname "*.json" -o ! -iname "*.*" \) -exec icacls "{}" /inheritance:r /grant:r ${ USERDOMAIN } \\ ${ USERNAME } :\( F\) \;
fi
fi
done
2022-07-14 04:07:40 +00:00
for NUM_LC in $( seq 0 $(( LC_NODES - 1 )) ) ; do
LC_DATA_DIR = " ${ DATA_DIR } /lc ${ NUM_LC } "
rm -rf " ${ LC_DATA_DIR } "
scripts/makedir.sh " ${ LC_DATA_DIR } " 2>& 1
done
2021-07-13 11:15:07 +00:00
2022-03-05 02:33:15 +00:00
CLI_CONF_FILE = " $CONTAINER_DATA_DIR /config.toml "
cat > " $CLI_CONF_FILE " <<END_CLI_CONFIG
non-interactive = true
nat = "extip:127.0.0.1"
network = " ${ CONTAINER_DATA_DIR } "
log-level = " ${ LOG_LEVEL } "
log-format = "json"
rest = true
rest-address = "127.0.0.1"
metrics = true
metrics-address = "127.0.0.1"
END_CLI_CONFIG
2022-06-13 17:01:39 +00:00
# https://ss64.com/osx/seq.html documents that at macOS seq(1) counts backwards
# as probably do some others
if ( ( REMOTE_SIGNER_NODES > 0) ) ; then
for NUM_REMOTE in $( seq 0 $(( REMOTE_SIGNER_NODES - 1 )) ) ; do
# TODO find some way for this and other background-launched processes to
# still participate in set -e, ideally
./build/nimbus_signing_node \
--validators-dir= " ${ DATA_DIR } /validators_shares/ ${ NUM_REMOTE } " \
--secrets-dir= " ${ DATA_DIR } /secrets_shares/ ${ NUM_REMOTE } " \
--bind-port= $(( BASE_REMOTE_SIGNER_PORT + NUM_REMOTE )) \
> " ${ DATA_DIR } /log_remote_signer_ ${ NUM_REMOTE } .txt " &
done
fi
2022-05-10 00:32:12 +00:00
# give each node time to load keys
sleep 10
2021-07-13 11:15:07 +00:00
for NUM_NODE in $( seq 0 $(( NUM_NODES - 1 )) ) ; do
NODE_DATA_DIR = " ${ DATA_DIR } /node ${ NUM_NODE } "
2021-11-30 18:56:22 +00:00
CONTAINER_NODE_DATA_DIR = " ${ CONTAINER_DATA_DIR } /node ${ NUM_NODE } "
2021-07-13 11:15:07 +00:00
VALIDATOR_DATA_DIR = " ${ DATA_DIR } /validator ${ NUM_NODE } "
2020-07-30 00:46:10 +00:00
if [ [ ${ NUM_NODE } = = ${ BOOTSTRAP_NODE } ] ] ; then
2021-07-26 17:34:13 +00:00
# Due to star topology, the bootstrap node must relay all attestations,
# even if it itself is not interested. --subscribe-all-subnets could be
# removed by switching to a fully-connected topology.
2021-11-30 18:56:22 +00:00
BOOTSTRAP_ARG = " --netkey-file= ${ CONTAINER_NETWORK_KEYFILE } --insecure-netkey-password=true --subscribe-all-subnets "
2020-07-30 00:46:10 +00:00
else
2021-11-30 18:56:22 +00:00
BOOTSTRAP_ARG = " --bootstrap-file= ${ CONTAINER_BOOTSTRAP_ENR } "
2021-08-20 14:41:16 +00:00
if [ [ " ${ CONST_PRESET } " = = "minimal" ] ] ; then
# The fast epoch and slot times in the minimal config might cause the
# mesh to break down due to re-subscriptions happening within the prune
# backoff time
BOOTSTRAP_ARG = " ${ BOOTSTRAP_ARG } --subscribe-all-subnets "
fi
2020-07-30 00:46:10 +00:00
# Wait for the master node to write out its address file
START_TIMESTAMP = $( date +%s)
while [ [ ! -f " ${ BOOTSTRAP_ENR } " ] ] ; do
sleep 0.1
NOW_TIMESTAMP = $( date +%s)
if [ [ " $(( NOW_TIMESTAMP - START_TIMESTAMP - GENESIS_OFFSET )) " -ge " $BOOTSTRAP_TIMEOUT " ] ] ; then
echo " Bootstrap node failed to start in ${ BOOTSTRAP_TIMEOUT } seconds. Aborting. "
dump_logs
exit 1
fi
done
fi
2022-06-28 11:33:49 +00:00
if [ ${# EL_RPC_PORTS [@] } -eq 0 ] ; then # check if the array is empty
2022-06-27 08:34:12 +00:00
WEB3_ARG = ""
else
2022-06-28 11:33:49 +00:00
WEB3_ARG = " --web3-url=http://127.0.0.1: ${ EL_RPC_PORTS [ ${ NUM_NODE } ] } "
2022-06-27 08:34:12 +00:00
fi
2022-06-29 07:36:22 +00:00
# TODO re-add --jwt-secret
2022-03-11 12:44:56 +00:00
${ BEACON_NODE_COMMAND } \
--config-file= " ${ CLI_CONF_FILE } " \
2020-07-30 00:46:10 +00:00
--tcp-port= $(( BASE_PORT + NUM_NODE )) \
--udp-port= $(( BASE_PORT + NUM_NODE )) \
2022-05-31 10:45:37 +00:00
--max-peers= $(( NUM_NODES + LC_NODES - 1 )) \
2021-11-30 18:56:22 +00:00
--data-dir= " ${ CONTAINER_NODE_DATA_DIR } " \
2020-07-30 00:46:10 +00:00
${ BOOTSTRAP_ARG } \
${ WEB3_ARG } \
2020-09-01 13:38:34 +00:00
${ STOP_AT_EPOCH_FLAG } \
2022-02-12 11:27:43 +00:00
--rest-port= " $(( BASE_REST_PORT + NUM_NODE )) " \
2020-07-30 00:46:10 +00:00
--metrics-port= " $(( BASE_METRICS_PORT + NUM_NODE )) " \
2022-06-10 14:16:37 +00:00
--light-client-enable= on \
2022-06-14 09:03:39 +00:00
--light-client-data-serve= on \
--light-client-data-import-mode= only-new \
2020-07-30 00:46:10 +00:00
${ EXTRA_ARGS } \
2022-03-11 12:44:56 +00:00
& > " ${ DATA_DIR } /log ${ NUM_NODE } .txt " &
2020-07-30 00:46:10 +00:00
2022-03-11 12:44:56 +00:00
PIDS = " ${ PIDS } , $! "
2020-09-01 13:38:34 +00:00
2022-03-11 12:44:56 +00:00
if [ [ " ${ USE_VC } " = = "1" ] ] ; then
if [ [ " ${ LIGHTHOUSE_VC_NODES } " -gt " ${ NUM_NODE } " ] ] ; then
# Lighthouse needs a different keystore filename for its auto-discovery process.
for D in " ${ VALIDATOR_DATA_DIR } /validators " /0x*; do
if [ [ -e " ${ D } /keystore.json " ] ] ; then
mv " ${ D } /keystore.json " " ${ D } /voting-keystore.json "
fi
done
./build/${ LH_BINARY } vc \
--debug-level "debug" \
--logfile-max-number 0 \
--log-format "JSON" \
--validators-dir " ${ VALIDATOR_DATA_DIR } " \
--secrets-dir " ${ VALIDATOR_DATA_DIR } /secrets " \
--beacon-nodes " http://127.0.0.1: $(( BASE_REST_PORT + NUM_NODE)) " \
--testnet-dir " ${ DATA_DIR } " \
--init-slashing-protection \
& > " ${ DATA_DIR } /log_val ${ NUM_NODE } .txt " &
# No "--stop-at-epoch" equivalent here, so we let these VC processes be
# killed the ugly way, when the script exits.
else
./build/nimbus_validator_client \
--log-level= " ${ LOG_LEVEL } " \
${ STOP_AT_EPOCH_FLAG } \
--data-dir= " ${ VALIDATOR_DATA_DIR } " \
--beacon-node= " http://127.0.0.1: $(( BASE_REST_PORT + NUM_NODE)) " \
& > " ${ DATA_DIR } /log_val ${ NUM_NODE } .txt " &
PIDS = " ${ PIDS } , $! "
fi
2020-09-01 13:38:34 +00:00
fi
2020-01-20 22:28:48 +00:00
done
2022-05-31 10:45:37 +00:00
# light clients
if [ " $LC_NODES " -ge "1" ] ; then
echo "Waiting for Altair finalization"
2022-06-14 08:38:39 +00:00
while :; do
ALTAIR_FORK_EPOCH = " $(
" ${ CURL_BINARY } " -s " http://localhost: ${ BASE_REST_PORT } /eth/v1/config/spec " | \
" ${ JQ_BINARY } " -r '.data.ALTAIR_FORK_EPOCH' ) "
if [ " ${ ALTAIR_FORK_EPOCH } " -eq " ${ ALTAIR_FORK_EPOCH } " ] ; then # check for number
break
fi
echo " ALTAIR_FORK_EPOCH: ${ ALTAIR_FORK_EPOCH } "
sleep 1
done
2022-05-31 10:45:37 +00:00
while :; do
CURRENT_FORK_EPOCH = " $(
" ${ CURL_BINARY } " -s " http://localhost: ${ BASE_REST_PORT } /eth/v1/beacon/states/finalized/fork " | \
2022-06-28 11:33:49 +00:00
" ${ JQ_BINARY } " -r '.data.epoch' ) "
2022-05-31 10:45:37 +00:00
if [ " ${ CURRENT_FORK_EPOCH } " -ge " ${ ALTAIR_FORK_EPOCH } " ] ; then
break
fi
sleep 1
done
2022-06-27 08:34:12 +00:00
log "After ALTAIR_FORK_EPOCH"
2022-05-31 10:45:37 +00:00
echo " Altair finalized, launching $LC_NODES light client(s) "
LC_BOOTSTRAP_NODE = " $(
" ${ CURL_BINARY } " -s " http://localhost: ${ BASE_REST_PORT } /eth/v1/node/identity " | \
" ${ JQ_BINARY } " -r '.data.enr' ) "
LC_TRUSTED_BLOCK_ROOT = " $(
" ${ CURL_BINARY } " -s " http://localhost: ${ BASE_REST_PORT } /eth/v1/beacon/headers/finalized " | \
" ${ JQ_BINARY } " -r '.data.root' ) "
for NUM_LC in $( seq 0 $(( LC_NODES - 1 )) ) ; do
2022-07-14 04:07:40 +00:00
LC_DATA_DIR = " ${ DATA_DIR } /lc ${ NUM_LC } "
if [ ${# EL_RPC_PORTS [@] } -eq 0 ] ; then # check if the array is empty
WEB3_ARG = ""
else
WEB3_ARG = " --web3-url=http://127.0.0.1: ${ EL_RPC_PORTS [ $(( NUM_NODES + NUM_LC )) ] } "
fi
# TODO re-add --jwt-secret
2022-05-31 10:45:37 +00:00
./build/nimbus_light_client \
--log-level= " ${ LOG_LEVEL } " \
--log-format= "json" \
2022-07-14 04:07:40 +00:00
--data-dir= " ${ LC_DATA_DIR } " \
2022-05-31 10:45:37 +00:00
--network= " ${ CONTAINER_DATA_DIR } " \
--bootstrap-node= " ${ LC_BOOTSTRAP_NODE } " \
--tcp-port= $(( BASE_PORT + NUM_NODES + NUM_LC )) \
--udp-port= $(( BASE_PORT + NUM_NODES + NUM_LC )) \
--max-peers= $(( NUM_NODES + LC_NODES - 1 )) \
--nat= "extip:127.0.0.1" \
--trusted-block-root= " ${ LC_TRUSTED_BLOCK_ROOT } " \
2022-07-14 04:07:40 +00:00
${ WEB3_ARG } \
2022-05-31 10:45:37 +00:00
${ STOP_AT_EPOCH_FLAG } \
& > " ${ DATA_DIR } /log_lc ${ NUM_LC } .txt " &
PIDS = " ${ PIDS } , $! "
done
fi
2020-05-01 18:57:12 +00:00
# give the regular nodes time to crash
sleep 5
2020-07-29 12:08:27 +00:00
BG_JOBS = " $( jobs | wc -l | tr -d ' ' ) "
2021-08-03 10:12:21 +00:00
if [ [ " ${ TIMEOUT_DURATION } " != "0" ] ] ; then
BG_JOBS = $(( BG_JOBS - 1 )) # minus the timeout bg job
fi
2020-09-01 13:38:34 +00:00
if [ [ " $BG_JOBS " != " $NUM_JOBS " ] ] ; then
2022-05-31 10:45:37 +00:00
echo " $(( NUM_JOBS - BG_JOBS )) nimbus_beacon_node/nimbus_validator_client/nimbus_light_client instance(s) exited early. Aborting. "
2020-07-30 00:46:10 +00:00
dump_logs
2020-08-16 09:12:19 +00:00
dump_logtrace
2020-07-30 00:46:10 +00:00
exit 1
2020-05-01 18:57:12 +00:00
fi
2022-03-11 12:44:56 +00:00
# launch "htop" or wait for background jobs
2020-02-18 23:33:26 +00:00
if [ [ " $USE_HTOP " = = "1" ] ] ; then
2020-07-30 00:46:10 +00:00
htop -p " $PIDS "
2022-03-11 12:44:56 +00:00
# Cleanup is done when this script exists, since we listen to the EXIT signal.
2020-02-18 23:33:26 +00:00
else
2020-07-30 00:46:10 +00:00
FAILED = 0
for PID in $( echo " $PIDS " | tr ',' ' ' ) ; do
2020-08-17 06:36:29 +00:00
wait " $PID " || FAILED = " $(( FAILED += 1 )) "
2020-07-30 00:46:10 +00:00
done
if [ [ " $FAILED " != "0" ] ] ; then
echo " ${ FAILED } child processes had non-zero exit codes (or exited early). "
dump_logs
2020-08-16 09:12:19 +00:00
dump_logtrace
2021-02-02 18:02:52 +00:00
if [ [ " ${ TIMEOUT_DURATION } " != "0" ] ] ; then
2021-07-13 11:15:07 +00:00
if uname | grep -qiE "mingw|msys" ; then
taskkill //F //PID ${ WATCHER_PID }
else
pkill -HUP -P ${ WATCHER_PID }
fi
2021-02-02 18:02:52 +00:00
fi
2020-07-30 00:46:10 +00:00
exit 1
fi
2020-02-18 23:33:26 +00:00
fi
2020-08-16 09:12:19 +00:00
dump_logtrace
2021-02-02 18:02:52 +00:00
if [ [ " ${ TIMEOUT_DURATION } " != "0" ] ] ; then
2021-07-13 11:15:07 +00:00
if uname | grep -qiE "mingw|msys" ; then
taskkill //F //PID ${ WATCHER_PID }
else
pkill -HUP -P ${ WATCHER_PID }
fi
2021-02-02 18:02:52 +00:00
fi