123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409 |
- #!/bin/sh
- export ECHO="${ECHO:-echo}"
- # Output is prefixed with the name of the script
- myname=$(basename "$0")
- # default to one round
- export CHUTNEY_ROUNDS=${CHUTNEY_ROUNDS:-1}
- # default to summarising unexpected warnings
- export CHUTNEY_WARNINGS_IGNORE_EXPECTED=${CHUTNEY_WARNINGS_IGNORE_EXPECTED:-true}
- export CHUTNEY_WARNINGS_SUMMARY=${CHUTNEY_WARNINGS_SUMMARY:-true}
- # default to exiting when this script exits
- export CHUTNEY_CONTROLLING_PID=${CHUTNEY_CONTROLLING_PID:-$$}
- # default to no DNS: this is a safe, working default for most users
- # If a custom test expects DNS, it needs to set CHUTNEY_DNS_CONF
- export CHUTNEY_DNS_CONF=${CHUTNEY_DNS_CONF:-/dev/null}
- # what we say when we fail
- UPDATE_YOUR_CHUTNEY="Please update your chutney using 'git pull'."
- until [ -z "$1" ]
- do
- case "$1" in
- # the path to the chutney directory
- --chutney-path)
- export CHUTNEY_PATH="$2"
- shift
- ;;
- --tor-path)
- # the path of a tor build directory
- # --tor-path overrides --tor and --tor-gencert
- export TOR_DIR="$2"
- shift
- ;;
- --tor)
- # the name or path of a tor binary
- export CHUTNEY_TOR="$2"
- shift
- ;;
- --tor-gencert)
- # the name or path of a tor-gencert binary
- export CHUTNEY_TOR_GENCERT="$2"
- shift
- ;;
- --debug)
- export CHUTNEY_DEBUG="yes"
- ;;
- --flavor|--flavour|--network-flavor|--network-flavour)
- export NETWORK_FLAVOUR="$2"
- shift
- ;;
- # The amount of time chutney will wait before starting to verify
- # If negative, chutney exits straight after launching the network
- --start-time)
- export CHUTNEY_START_TIME="$2"
- shift
- ;;
- # The amount of time chutney will try to verify, before failing
- # If negative, chutney exits without verifying
- --delay|--sleep|--bootstrap-time|--time|--verify-time)
- # This isn't the best name for this variable, but we kept it the
- # same for backwards compatibility
- export CHUTNEY_BOOTSTRAP_TIME="$2"
- shift
- ;;
- # The amount of time chutney will wait after successfully verifying
- # If negative, chutney exits without stopping
- --stop-time)
- export CHUTNEY_STOP_TIME="$2"
- shift
- ;;
- # If all of the CHUTNEY_*_TIME options are positive, chutney will ask
- # tor to exit when this PID exits. Set to 1 or lower to disable.
- --controlling-pid)
- export CHUTNEY_CONTROLLING_PID="$2"
- shift
- ;;
- # Environmental variables used by chutney verify performance tests
- # Send this many bytes per client connection (10 KBytes)
- --data|--data-bytes|--data-byte|--bytes|--byte)
- export CHUTNEY_DATA_BYTES="$2"
- shift
- ;;
- # Make this many simultaneous connections per client (1)
- --connections|--connection|--connection-count|--count)
- export CHUTNEY_CONNECTIONS="$2"
- shift
- ;;
- # Run this many verification rounds (1)
- --rounds)
- export CHUTNEY_ROUNDS="$2"
- shift
- ;;
- # Make each client connect to each HS (0)
- # 0 means a single client connects to each HS
- # 1 means every client connects to every HS
- --hs-multi-client|--hs-multi-clients|--hs-client|--hs-clients)
- export CHUTNEY_HS_MULTI_CLIENT="$2"
- shift
- ;;
- # The IPv4 address to bind to, defaults to 127.0.0.1
- --ipv4|--v4|-4|--ip)
- export CHUTNEY_LISTEN_ADDRESS="$2"
- shift
- ;;
- # The IPv6 address to bind to, default is not to bind to an
- # IPv6 address
- --ipv6|--v6|-6)
- export CHUTNEY_LISTEN_ADDRESS_V6="$2"
- shift
- ;;
- # The DNS server config for Tor Exits. Chutney's default is
- # /etc/resolv.conf, even if tor's compile time default is different.
- --dns-conf)
- export CHUTNEY_DNS_CONF="$2"
- shift
- ;;
- # Do not make any DNS queries. This is incompatible with external
- # controllers that use SETCONF.
- --offline)
- export CHUTNEY_DNS_CONF="/dev/null"
- ;;
- # Use tor's compile-time default for ServerDNSResolvConfFile.
- --dns-conf-default)
- export CHUTNEY_DNS_CONF=""
- ;;
- # Warning Options
- # we summarise unexpected warnings by default
- # this shows all warnings per-node
- --all-warnings)
- export CHUTNEY_WARNINGS_IGNORE_EXPECTED=false
- export CHUTNEY_WARNINGS_SUMMARY=false
- ;;
- # this doesn't run chutney, and only logs warnings
- --only-warnings)
- export CHUTNEY_WARNINGS_ONLY=true
- ;;
- # this skips warnings entirely
- --no-warnings)
- export CHUTNEY_WARNINGS_SKIP=true
- ;;
- # Expert options
- # Code Coverage Binary
- --coverage)
- export USE_COVERAGE_BINARY=true
- ;;
- # Do Nothing (but process arguments and set environmental variables)
- --dry-run)
- # process arguments, but don't call any other scripts
- export NETWORK_DRY_RUN=true
- ;;
- # The net directory, usually chutney/net
- --net-dir)
- export CHUTNEY_DATA_DIR="$2"
- shift
- ;;
- # Try not to say anything (applies only to this script)
- --quiet)
- export ECHO=true
- ;;
- # Oops
- *)
- $ECHO "$myname: Sorry, I don't know what to do with '$1'."
- $ECHO "$UPDATE_YOUR_CHUTNEY"
- # continue processing arguments during a dry run
- if [ "$NETWORK_DRY_RUN" != true ]; then
- exit 1
- fi
- ;;
- esac
- shift
- done
- # If the DNS server doesn't work, tor exits may reject all exit traffic, and
- # chutney may fail
- if [ "$CHUTNEY_WARNINGS_ONLY" != true ]; then
- $ECHO "$myname: using CHUTNEY_DNS_CONF '$CHUTNEY_DNS_CONF'"
- fi
- # optional: $TOR_DIR is the tor build directory
- # it's used to find the location of tor binaries
- # if it's not set:
- # - set it to $BUILDDIR, or
- # - if $PWD looks like a tor build directory, set it to $PWD, or
- # - unset $TOR_DIR, and let chutney fall back to finding tor binaries in
- # $CHUTNEY_TOR and $CHUTNEY_TOR_GENCERT, or $PATH
- #
- # Find the Tor build dir using the src/tools dir
- if [ ! -d "$TOR_DIR" ]; then
- if [ -d "$BUILDDIR/src/tools" ]; then
- # Choose the build directory
- # But only if it looks like one
- $ECHO "$myname: \$TOR_DIR not set, trying \$BUILDDIR"
- export TOR_DIR="$BUILDDIR"
- elif [ -d "$PWD/src/tools" ]; then
- # Guess the tor directory is the current directory
- # But only if it looks like one
- $ECHO "$myname: \$TOR_DIR not set, trying \$PWD"
- export TOR_DIR="$PWD"
- elif [ -d "$PWD/../tor" -a -d "$PWD/../tor/src/tools" ]; then
- # Guess the tor directory is next to the current directory
- # But only if it looks like one
- $ECHO "$myname: \$TOR_DIR not set, trying \$PWD/../tor"
- export TOR_DIR="$PWD/../tor"
- else
- $ECHO "$myname: no \$TOR_DIR, chutney will use \$CHUTNEY_TOR and \$CHUTNEY_TOR_GENCERT as tor binary paths, or search \$PATH for tor binary names"
- unset TOR_DIR
- fi
- fi
- # Now find the name of the Tor app dir, which changed in Tor 0.3.5
- if [ -d "$TOR_DIR" ]; then
- if [ -d "$TOR_DIR/src/app" -a -d "$TOR_DIR/src/or" ]; then
- $ECHO "$myname: \$TOR_DIR has a Tor 0.3.5 or later build directory, and a Tor 0.3.4 or earlier build directory"
- $ECHO "$myname: Please remove $TOR_DIR/src/app or $TOR_DIR/src/or, or set \$CHUTNEY_TOR"
- exit 1
- elif [ -d "$TOR_DIR/src/app" ]; then
- $ECHO "$myname: \$TOR_DIR is a Tor 0.3.5 or later build directory"
- TOR_APP_DIR="$TOR_DIR/src/app"
- elif [ -d "$TOR_DIR/src/or" ]; then
- $ECHO "$myname: \$TOR_DIR is a Tor 0.3.4 or earlier build directory"
- TOR_APP_DIR="$TOR_DIR/src/or"
- else
- $ECHO "$myname: \$TOR_DIR has no src/app or src/or, looking elsewhere"
- unset TOR_DIR
- fi
- fi
- # make TOR_DIR and TOR_APP_DIR absolute
- if [ -d "$PWD/$TOR_DIR" -a -d "$PWD/$TOR_APP_DIR" -a \
- -d "$PWD/$TOR_DIR/src/tools" ]; then
- export TOR_DIR="$PWD/$TOR_DIR"
- export TOR_APP_DIR="$PWD/$TOR_APP_DIR"
- fi
- # mandatory: $CHUTNEY_PATH is the path to the chutney launch script
- # if it's not set:
- # - if $PWD looks like a chutney directory, set it to $PWD, or
- # - set it based on $TOR_DIR, expecting chutney to be next to tor, or
- # - fail and tell the user how to clone the chutney repository
- if [ ! -d "$CHUTNEY_PATH" -o ! -x "$CHUTNEY_PATH/chutney" -o \
- ! -f "$CHUTNEY_PATH/chutney" ]; then
- if [ -x "$PWD/chutney" -a -f "$PWD/chutney" ]; then
- $ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$PWD"
- export CHUTNEY_PATH="$PWD"
- elif [ -d "`dirname \"$0\"`/.." -a \
- -x "`dirname \"$0\"`/../chutney" -a \
- -f "`dirname \"$0\"`/../chutney" ]; then
- $ECHO "$myname: \$CHUTNEY_PATH not valid, using this script's location"
- export CHUTNEY_PATH="`dirname \"$0\"`/.."
- elif [ -d "$TOR_DIR" -a -d "$TOR_DIR/../chutney" -a \
- -x "$TOR_DIR/../chutney/chutney" -a \
- -f "$TOR_DIR/../chutney/chutney" ]; then
- $ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$TOR_DIR/../chutney"
- export CHUTNEY_PATH="$TOR_DIR/../chutney"
- else
- # TODO: work out how to package and install chutney,
- # so users can find it in $PATH
- $ECHO "$myname: missing 'chutney' in \$CHUTNEY_PATH ($CHUTNEY_PATH)"
- $ECHO "$myname: Get chutney: git clone https://git.torproject.org/chutney.git"
- $ECHO "$myname: Set \$CHUTNEY_PATH to a non-standard location: export CHUTNEY_PATH=\`pwd\`/chutney"
- unset CHUTNEY_PATH
- exit 1
- fi
- fi
- # make chutney path absolute
- if [ -d "$PWD/$CHUTNEY_PATH" -a -x "$PWD/$CHUTNEY_PATH/chutney" ]; then
- export CHUTNEY_PATH="$PWD/$CHUTNEY_PATH"
- fi
- # For picking up the right tor binaries
- # Choose coverage binaries, if selected
- tor_name=tor
- tor_gencert_name=tor-gencert
- if [ "$USE_COVERAGE_BINARY" = true ]; then
- tor_name=tor-cov
- fi
- # If $TOR_DIR isn't set, chutney looks for tor binaries by name or path
- # using $CHUTNEY_TOR and $CHUTNEY_TOR_GENCERT, and then falls back to
- # looking for tor and tor-gencert in $PATH
- if [ -d "$TOR_DIR" ]; then
- $ECHO "$myname: Setting \$CHUTNEY_TOR and \$CHUTNEY_TOR_GENCERT based on TOR_DIR: '$TOR_DIR'"
- # TOR_DIR is absolute, so these are absolute paths
- export CHUTNEY_TOR="$TOR_APP_DIR/$tor_name"
- export CHUTNEY_TOR_GENCERT="$TOR_DIR/src/tools/$tor_gencert_name"
- else
- if [ -x "$CHUTNEY_TOR" ]; then
- $ECHO "$myname: Assuming \$CHUTNEY_TOR is a path to a binary"
- elif [ ! -z "$CHUTNEY_TOR" ]; then
- $ECHO "$myname: Assuming \$CHUTNEY_TOR is a binary name in \$PATH"
- else
- $ECHO "$myname: Setting \$CHUTNEY_TOR to the standard binary name in \$PATH"
- export CHUTNEY_TOR="$tor_name"
- fi
- if [ -x "$CHUTNEY_TOR_GENCERT" ]; then
- $ECHO "$myname: Assuming \$CHUTNEY_TOR_GENCERT is a path to a binary"
- elif [ ! -z "$CHUTNEY_TOR_GENCERT" ]; then
- $ECHO "$myname: Assuming \$CHUTNEY_TOR_GENCERT is a binary name in \$PATH"
- else
- $ECHO "$myname: Setting \$CHUTNEY_TOR_GENCERT to the standard binary name in \$PATH"
- export CHUTNEY_TOR_GENCERT="$tor_gencert_name"
- fi
- fi
- $ECHO "$myname: Using \$CHUTNEY_TOR: '$CHUTNEY_TOR' and \$CHUTNEY_TOR_GENCERT: '$CHUTNEY_TOR_GENCERT'"
- # Set the variables for the chutney network flavour
- export NETWORK_FLAVOUR=${NETWORK_FLAVOUR:-"bridges+hs-v2"}
- export CHUTNEY_NETWORK="$CHUTNEY_PATH/networks/$NETWORK_FLAVOUR"
- WARNING_COMMAND="$CHUTNEY_PATH/tools/warnings.sh"
- if [ "$CHUTNEY_WARNINGS_SKIP" = true ]; then
- WARNINGS=true
- else
- WARNINGS="$WARNING_COMMAND"
- fi
- # And finish up if we're doing a dry run
- if [ "$NETWORK_DRY_RUN" = true -o "$CHUTNEY_WARNINGS_ONLY" = true ]; then
- if [ "$CHUTNEY_WARNINGS_ONLY" = true ]; then
- "$WARNINGS"
- fi
- $ECHO "Finished dry run"
- # This breaks sourcing this script: that is intentional, as the previous
- # behaviour only worked with bash as /bin/sh
- exit 0
- fi
- if ! "$CHUTNEY_PATH/tools/bootstrap-network.sh" "$NETWORK_FLAVOUR"; then
- CHUTNEY_WARNINGS_IGNORE_EXPECTED=false CHUTNEY_WARNINGS_SUMMARY=false \
- "$WARNING_COMMAND"
- "$WARNINGS"
- $ECHO "bootstrap-network.sh failed"
- exit 1
- fi
- # chutney starts verifying after 20 seconds, keeps on trying for 60 seconds,
- # and then stops immediately (by default)
- # Even the fastest chutney networks take 5-10 seconds for their first consensus
- # and then 10 seconds after that for relays to bootstrap and upload descriptors
- export CHUTNEY_START_TIME=${CHUTNEY_START_TIME:-40}
- export CHUTNEY_BOOTSTRAP_TIME=${CHUTNEY_BOOTSTRAP_TIME:-60}
- export CHUTNEY_STOP_TIME=${CHUTNEY_STOP_TIME:-0}
- CHUTNEY="$CHUTNEY_PATH/chutney"
- if [ "$CHUTNEY_START_TIME" -ge 0 ]; then
- $ECHO "Waiting $CHUTNEY_START_TIME seconds for a consensus containing relays to be generated..."
- sleep "$CHUTNEY_START_TIME"
- else
- $ECHO "Chutney network launched and running. To stop the network, use:"
- $ECHO "$CHUTNEY stop $CHUTNEY_NETWORK"
- "$WARNINGS"
- exit 0
- fi
- if [ "$CHUTNEY_BOOTSTRAP_TIME" -ge 0 ]; then
- # Chutney will try to verify for $CHUTNEY_BOOTSTRAP_TIME seconds each round
- n_rounds=0
- # Run CHUTNEY_ROUNDS verification rounds
- $ECHO "Running $CHUTNEY_ROUNDS verify rounds..."
- while [ "$n_rounds" -lt "$CHUTNEY_ROUNDS" ]; do
- n_rounds=$((n_rounds+1))
- if ! "$CHUTNEY" verify "$CHUTNEY_NETWORK"; then
- CHUTNEY_WARNINGS_IGNORE_EXPECTED=false \
- CHUTNEY_WARNINGS_SUMMARY=false \
- "$WARNING_COMMAND"
- "$WARNINGS"
- $ECHO "chutney verify $n_rounds/$CHUTNEY_ROUNDS failed"
- exit 1
- fi
- $ECHO "Completed $n_rounds/$CHUTNEY_ROUNDS verify rounds."
- done
- else
- $ECHO "Chutney network ready and running. To stop the network, use:"
- $ECHO "$CHUTNEY stop $CHUTNEY_NETWORK"
- "$WARNINGS"
- exit 0
- fi
- if [ "$CHUTNEY_STOP_TIME" -ge 0 ]; then
- if [ "$CHUTNEY_STOP_TIME" -gt 0 ]; then
- $ECHO "Waiting $CHUTNEY_STOP_TIME seconds before stopping the network..."
- fi
- sleep "$CHUTNEY_STOP_TIME"
- # work around a bug/feature in make -j2 (or more)
- # where make hangs if any child processes are still alive
- if ! "$CHUTNEY" stop "$CHUTNEY_NETWORK"; then
- CHUTNEY_WARNINGS_IGNORE_EXPECTED=false CHUTNEY_WARNINGS_SUMMARY=false \
- "$WARNING_COMMAND"
- "$WARNINGS"
- $ECHO "chutney stop failed"
- exit 1
- fi
- # Give tor time to exit gracefully
- sleep 3
- else
- $ECHO "Chutney network verified and running. To stop the network, use:"
- $ECHO "$CHUTNEY stop $CHUTNEY_NETWORK"
- "$WARNINGS"
- exit 0
- fi
- "$WARNINGS"
- exit 0
|