From 3d3a1d30cc8366d95d7fd6d1c2e1f7a6d5d5d099 Mon Sep 17 00:00:00 2001
From: Alex Sharov <AskAlexSharov@gmail.com>
Date: Mon, 8 Nov 2021 21:11:57 +0700
Subject: [PATCH] Remove Docker from deps (#2930)

---
 go.mod                                |   2 -
 go.sum                                |   4 -
 p2p/simulations/adapters/exec.go      | 573 --------------------------
 p2p/simulations/adapters/types.go     |  10 -
 p2p/simulations/examples/ping-pong.go |  10 -
 5 files changed, 599 deletions(-)
 delete mode 100644 p2p/simulations/adapters/exec.go

diff --git a/go.mod b/go.mod
index a7bd8f3d40..85940a1cfd 100644
--- a/go.mod
+++ b/go.mod
@@ -14,7 +14,6 @@ require (
 	github.com/davecgh/go-spew v1.1.1
 	github.com/deckarep/golang-set v0.0.0-20180603214616-504e848d77ea
 	github.com/dlclark/regexp2 v1.4.0 // indirect
-	github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf
 	github.com/dop251/goja v0.0.0-20200721192441-a695b0cdd498
 	github.com/edsrzf/mmap-go v1.0.0
 	github.com/emicklei/dot v0.16.0
@@ -64,6 +63,5 @@ require (
 	google.golang.org/protobuf v1.27.1
 	gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15
 	gopkg.in/olebedev/go-duktape.v3 v3.0.0-20200619000410-60c24ae608a6
-	gotest.tools v2.2.0+incompatible // indirect
 	pgregory.net/rapid v0.4.7
 )
diff --git a/go.sum b/go.sum
index 0ba811b029..afe80cb796 100644
--- a/go.sum
+++ b/go.sum
@@ -294,8 +294,6 @@ github.com/decred/dcrd/lru v1.0.0/go.mod h1:mxKOwFd7lFjN2GZYsiz/ecgqR6kkYAl+0pz0
 github.com/dgrijalva/jwt-go v3.2.0+incompatible/go.mod h1:E3ru+11k8xSBh+hMPgOLZmtrrCbhqsmaPHjLKYnJCaQ=
 github.com/dlclark/regexp2 v1.4.0 h1:F1rxgk7p4uKjwIQxBs9oAXe5CqrXlCduYEJvrF4u93E=
 github.com/dlclark/regexp2 v1.4.0/go.mod h1:2pZnwuY/m+8K6iRw6wQdMtk+rH5tNGR1i55kozfMjCc=
-github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf h1:sh8rkQZavChcmakYiSlqu2425CHyFXLZZnvm7PDpU8M=
-github.com/docker/docker v1.4.2-0.20180625184442-8e610b2b55bf/go.mod h1:eEKB0N0r5NX/I1kEveEz05bcu8tLC/8azJZsviup8Sk=
 github.com/docopt/docopt-go v0.0.0-20180111231733-ee0de3bc6815/go.mod h1:WwZ+bS3ebgob9U8Nd0kOddGdZWjyMGR8Wziv+TBNwSE=
 github.com/dop251/goja v0.0.0-20200721192441-a695b0cdd498 h1:Y9vTBSsV4hSwPSj4bacAU/eSnV3dAxVpepaghAdhGoQ=
 github.com/dop251/goja v0.0.0-20200721192441-a695b0cdd498/go.mod h1:Mw6PkjjMXWbTj+nnj4s3QPXq1jaT0s5pC0iFD4+BOAA=
@@ -1499,8 +1497,6 @@ gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
 gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b h1:h8qDotaEPuJATrMmW04NCwg7v22aHH28wwpauUhK9Oo=
 gopkg.in/yaml.v3 v3.0.0-20210107192922-496545a6307b/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
-gotest.tools v2.2.0+incompatible h1:VsBPFP1AI068pPrMxtb/S8Zkgf9xEmTLJjfM+P5UIEo=
-gotest.tools v2.2.0+incompatible/go.mod h1:DsYFclhRJ6vuDpmuTbkuFWG+y2sxOXAzmJt81HFBacw=
 grpc.go4.org v0.0.0-20170609214715-11d0a25b4919/go.mod h1:77eQGdRu53HpSqPFJFmuJdjuHRquDANNeA4x7B8WQ9o=
 honnef.co/go/tools v0.0.0-20180728063816-88497007e858/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
 honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
diff --git a/p2p/simulations/adapters/exec.go b/p2p/simulations/adapters/exec.go
deleted file mode 100644
index 5b09d2b446..0000000000
--- a/p2p/simulations/adapters/exec.go
+++ /dev/null
@@ -1,573 +0,0 @@
-// Copyright 2017 The go-ethereum Authors
-// This file is part of the go-ethereum library.
-//
-// The go-ethereum library is free software: you can redistribute it and/or modify
-// it under the terms of the GNU Lesser General Public License as published by
-// the Free Software Foundation, either version 3 of the License, or
-// (at your option) any later version.
-//
-// The go-ethereum library is distributed in the hope that it will be useful,
-// but WITHOUT ANY WARRANTY; without even the implied warranty of
-// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-// GNU Lesser General Public License for more details.
-//
-// You should have received a copy of the GNU Lesser General Public License
-// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>.
-
-package adapters
-
-import (
-	"bytes"
-	"context"
-	"encoding/json"
-	"errors"
-	"fmt"
-	"io"
-	"net"
-	"net/http"
-	"os"
-	"os/exec"
-	"os/signal"
-	"path/filepath"
-	"strings"
-	"sync"
-	"syscall"
-	"time"
-
-	"github.com/docker/docker/pkg/reexec"
-
-	"github.com/ledgerwatch/erigon/node"
-	"github.com/ledgerwatch/erigon/p2p"
-	"github.com/ledgerwatch/erigon/p2p/enode"
-	"github.com/ledgerwatch/erigon/rpc"
-	"github.com/ledgerwatch/log/v3"
-
-	"github.com/gorilla/websocket"
-)
-
-func init() {
-	// Register a reexec function to start a simulation node when the current binary is
-	// executed as "p2p-node" (rather than whatever the main() function would normally do).
-	reexec.Register("p2p-node", execP2PNode)
-}
-
-// ExecAdapter is a NodeAdapter which runs simulation nodes by executing the current binary
-// as a child process.
-type ExecAdapter struct {
-	// BaseDir is the directory under which the data directories for each
-	// simulation node are created.
-	BaseDir string
-
-	nodes map[enode.ID]*ExecNode
-}
-
-// NewExecAdapter returns an ExecAdapter which stores node data in
-// subdirectories of the given base directory
-func NewExecAdapter(baseDir string) *ExecAdapter {
-	return &ExecAdapter{
-		BaseDir: baseDir,
-		nodes:   make(map[enode.ID]*ExecNode),
-	}
-}
-
-// Name returns the name of the adapter for logging purposes
-func (e *ExecAdapter) Name() string {
-	return "exec-adapter"
-}
-
-// NewNode returns a new ExecNode using the given config
-func (e *ExecAdapter) NewNode(config *NodeConfig) (Node, error) {
-	if len(config.Lifecycles) == 0 {
-		return nil, errors.New("node must have at least one service lifecycle")
-	}
-	for _, service := range config.Lifecycles {
-		if _, exists := lifecycleConstructorFuncs[service]; !exists {
-			return nil, fmt.Errorf("unknown node service %q", service)
-		}
-	}
-
-	// create the node directory using the first 12 characters of the ID
-	// as Unix socket paths cannot be longer than 256 characters
-	dir := filepath.Join(e.BaseDir, config.ID.String()[:12])
-	if err := os.MkdirAll(dir, 0755); err != nil {
-		return nil, fmt.Errorf("error creating node directory: %s", err)
-	}
-
-	err := config.initDummyEnode()
-	if err != nil {
-		return nil, err
-	}
-
-	// generate the config
-	conf := &execNodeConfig{
-		Stack: node.DefaultConfig,
-		Node:  config,
-	}
-	if config.DataDir != "" {
-		conf.Stack.DataDir = config.DataDir
-	} else {
-		conf.Stack.DataDir = filepath.Join(dir, "data")
-	}
-
-	// these parameters are crucial for execadapter node to run correctly
-	conf.Stack.WSHost = "127.0.0.1"
-	conf.Stack.WSPort = 0
-	conf.Stack.WSOrigins = []string{"*"}
-	conf.Stack.WSExposeAll = true
-	conf.Stack.P2P.EnableMsgEvents = config.EnableMsgEvents
-	conf.Stack.P2P.NoDiscovery = true
-	conf.Stack.P2P.NAT = nil
-
-	// Listen on a localhost port, which we set when we
-	// initialise NodeConfig (usually a random port)
-	conf.Stack.P2P.ListenAddr = fmt.Sprintf(":%d", config.Port)
-
-	node := &ExecNode{
-		ID:      config.ID,
-		Dir:     dir,
-		Config:  conf,
-		adapter: e,
-	}
-	node.newCmd = node.execCommand
-	e.nodes[node.ID] = node
-	return node, nil
-}
-
-// ExecNode starts a simulation node by exec'ing the current binary and
-// running the configured services
-type ExecNode struct {
-	ID     enode.ID
-	Dir    string
-	Config *execNodeConfig
-	Cmd    *exec.Cmd
-	Info   *p2p.NodeInfo
-
-	adapter *ExecAdapter
-	client  *rpc.Client
-	wsAddr  string
-	newCmd  func() *exec.Cmd
-}
-
-// Addr returns the node's enode URL
-func (n *ExecNode) Addr() []byte {
-	if n.Info == nil {
-		return nil
-	}
-	return []byte(n.Info.Enode)
-}
-
-// Client returns an rpc.Client which can be used to communicate with the
-// underlying services (it is set once the node has started)
-func (n *ExecNode) Client() (*rpc.Client, error) {
-	return n.client, nil
-}
-
-// Start exec's the node passing the ID and service as command line arguments
-// and the node config encoded as JSON in an environment variable.
-func (n *ExecNode) Start(snapshots map[string][]byte) error {
-	if n.Cmd != nil {
-		return errors.New("already started")
-	}
-	var started bool
-	defer func() {
-		if !started {
-			_ = n.Stop()
-		}
-	}()
-
-	// encode a copy of the config containing the snapshot
-	confCopy := *n.Config
-	confCopy.Snapshots = snapshots
-	confCopy.PeerAddrs = make(map[string]string)
-	for id, node := range n.adapter.nodes {
-		confCopy.PeerAddrs[id.String()] = node.wsAddr
-	}
-	confData, confDataErr := json.Marshal(confCopy)
-	if confDataErr != nil {
-		return fmt.Errorf("error generating node config: %s", confDataErr)
-	}
-	// expose the admin namespace via websocket if it's not enabled
-	exposed := confCopy.Stack.WSExposeAll
-	if !exposed {
-		for _, api := range confCopy.Stack.WSModules {
-			if api == "admin" {
-				exposed = true
-				break
-			}
-		}
-	}
-	if !exposed {
-		confCopy.Stack.WSModules = append(confCopy.Stack.WSModules, "admin")
-	}
-	// start the one-shot server that waits for startup information
-	ctx, cancel := context.WithTimeout(context.Background(), 5*time.Second)
-	defer cancel()
-	statusURL, statusC := n.waitForStartupJSON(ctx)
-
-	// start the node
-	cmd := n.newCmd()
-	cmd.Stdout = os.Stdout
-	cmd.Stderr = os.Stderr
-	cmd.Env = append(os.Environ(),
-		envStatusURL+"="+statusURL,
-		envNodeConfig+"="+string(confData),
-	)
-	if err := cmd.Start(); err != nil {
-		return fmt.Errorf("error starting node: %s", err)
-	}
-	n.Cmd = cmd
-
-	// Wait for the node to start.
-	status := <-statusC
-	if status.Err != "" {
-		return errors.New(status.Err)
-	}
-	client, err := rpc.DialWebsocket(ctx, status.WSEndpoint, "")
-	if err != nil {
-		return fmt.Errorf("can't connect to RPC server: %w", err)
-	}
-
-	// Node ready :)
-	n.client = client
-	n.wsAddr = status.WSEndpoint
-	n.Info = status.NodeInfo
-
-	started = true
-	return nil
-}
-
-// waitForStartupJSON runs a one-shot HTTP server to receive a startup report.
-func (n *ExecNode) waitForStartupJSON(ctx context.Context) (string, chan nodeStartupJSON) {
-	var (
-		ch       = make(chan nodeStartupJSON, 1)
-		quitOnce sync.Once
-		srv      http.Server
-	)
-	l, err := net.Listen("tcp", "127.0.0.1:0")
-	if err != nil {
-		ch <- nodeStartupJSON{Err: err.Error()}
-		return "", ch
-	}
-	quit := func(status nodeStartupJSON) {
-		quitOnce.Do(func() {
-			l.Close()
-			ch <- status
-		})
-	}
-	srv.Handler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
-		var status nodeStartupJSON
-		if err := json.NewDecoder(r.Body).Decode(&status); err != nil {
-			status.Err = fmt.Sprintf("can't decode startup report: %v", err)
-		}
-		quit(status)
-	})
-	// Run the HTTP server, but don't wait forever and shut it down
-	// if the context is canceled.
-	go func() {
-		_ = srv.Serve(l)
-	}()
-	go func() {
-		<-ctx.Done()
-		quit(nodeStartupJSON{Err: "didn't get startup report"})
-	}()
-
-	url := "http://" + l.Addr().String()
-	return url, ch
-}
-
-// execCommand returns a command which runs the node locally by exec'ing
-// the current binary but setting argv[0] to "p2p-node" so that the child
-// runs execP2PNode
-func (n *ExecNode) execCommand() *exec.Cmd {
-	return &exec.Cmd{
-		Path: reexec.Self(),
-		Args: []string{"p2p-node", strings.Join(n.Config.Node.Lifecycles, ","), n.ID.String()},
-	}
-}
-
-// Stop stops the node by first sending SIGTERM and then SIGKILL if the node
-// doesn't stop within 5s
-func (n *ExecNode) Stop() error {
-	if n.Cmd == nil {
-		return nil
-	}
-	defer func() {
-		n.Cmd = nil
-	}()
-
-	if n.client != nil {
-		n.client.Close()
-		n.client = nil
-		n.wsAddr = ""
-		n.Info = nil
-	}
-
-	if err := n.Cmd.Process.Signal(syscall.SIGTERM); err != nil {
-		return n.Cmd.Process.Kill()
-	}
-	waitErr := make(chan error, 1)
-	go func() {
-		waitErr <- n.Cmd.Wait()
-	}()
-	select {
-	case err := <-waitErr:
-		return err
-	case <-time.After(5 * time.Second):
-		return n.Cmd.Process.Kill()
-	}
-}
-
-// NodeInfo returns information about the node
-func (n *ExecNode) NodeInfo() *p2p.NodeInfo {
-	info := &p2p.NodeInfo{
-		ID: n.ID.String(),
-	}
-	if n.client != nil {
-		_ = n.client.Call(&info, "admin_nodeInfo")
-	}
-	return info
-}
-
-// ServeRPC serves RPC requests over the given connection by dialling the
-// node's WebSocket address and joining the two connections
-func (n *ExecNode) ServeRPC(clientConn *websocket.Conn) error {
-	//nolint
-	conn, _, err := websocket.DefaultDialer.Dial(n.wsAddr, nil)
-	if err != nil {
-		return err
-	}
-	var wg sync.WaitGroup
-	wg.Add(2)
-	go wsCopy(&wg, conn, clientConn)
-	go wsCopy(&wg, clientConn, conn)
-	wg.Wait()
-	conn.Close()
-	return nil
-}
-
-func wsCopy(wg *sync.WaitGroup, src, dst *websocket.Conn) {
-	defer wg.Done()
-	for {
-		msgType, r, err := src.NextReader()
-		if err != nil {
-			return
-		}
-		w, err := dst.NextWriter(msgType)
-		if err != nil {
-			return
-		}
-		if _, err = io.Copy(w, r); err != nil {
-			return
-		}
-	}
-}
-
-// Snapshots creates snapshots of the services by calling the
-// simulation_snapshot RPC method
-func (n *ExecNode) Snapshots() (map[string][]byte, error) {
-	if n.client == nil {
-		return nil, errors.New("RPC not started")
-	}
-	var snapshots map[string][]byte
-	return snapshots, n.client.Call(&snapshots, "simulation_snapshot")
-}
-
-// execNodeConfig is used to serialize the node configuration so it can be
-// passed to the child process as a JSON encoded environment variable
-type execNodeConfig struct {
-	Stack     node.Config       `json:"stack"`
-	Node      *NodeConfig       `json:"node"`
-	Snapshots map[string][]byte `json:"snapshots,omitempty"`
-	PeerAddrs map[string]string `json:"peer_addrs,omitempty"`
-}
-
-func initLogging() {
-	// Initialize the logging by default first.
-	//glogger := log.NewGlogHandler(log.StreamHandler(os.Stderr, log.LogfmtFormat()))
-	//glogger.Verbosity(log.LvlInfo)
-	//log.Root().SetHandler(glogger)
-
-	confEnv := os.Getenv(envNodeConfig)
-	if confEnv == "" {
-		return
-	}
-	var conf execNodeConfig
-	if err := json.Unmarshal([]byte(confEnv), &conf); err != nil {
-		return
-	}
-	//var writer = os.Stderr
-	//if conf.Node.LogFile != "" {
-	//logWriter, err := os.Create(conf.Node.LogFile)
-	//if err != nil {
-	//	return
-	//}
-	//writer = logWriter
-	//}
-	var verbosity = log.LvlInfo
-	if conf.Node.LogVerbosity <= log.LvlTrace && conf.Node.LogVerbosity >= log.LvlCrit {
-		verbosity = conf.Node.LogVerbosity
-	}
-
-	log.Root().SetHandler(log.LvlFilterHandler(verbosity, log.StderrHandler))
-
-	// Reinitialize the logger
-	//glogger = log.NewGlogHandler(log.StreamHandler(writer, log.TerminalFormat()))
-	//glogger.Verbosity(verbosity)
-	//log.Root().SetHandler(glogger)
-}
-
-// execP2PNode starts a simulation node when the current binary is executed with
-// argv[0] being "p2p-node", reading the service / ID from argv[1] / argv[2]
-// and the node config from an environment variable.
-func execP2PNode() {
-	initLogging()
-
-	statusURL := os.Getenv(envStatusURL)
-	if statusURL == "" {
-		log.Crit("missing " + envStatusURL)
-	}
-
-	// Start the node and gather startup report.
-	var status nodeStartupJSON
-	stack, stackErr := startExecNodeStack()
-	if stackErr != nil {
-		status.Err = stackErr.Error()
-	} else {
-		status.WSEndpoint = stack.WSEndpoint()
-		status.NodeInfo = stack.Server().NodeInfo()
-	}
-
-	// Send status to the host.
-	statusJSON, _ := json.Marshal(status)
-	r, err := http.Post(statusURL, "application/json", bytes.NewReader(statusJSON))
-	if err != nil {
-		log.Crit("Can't post startup info", "url", statusURL, "err", err)
-	}
-	r.Body.Close()
-
-	if stackErr != nil {
-		os.Exit(1)
-	}
-
-	// Stop the stack if we get a SIGTERM signal.
-	go func() {
-		sigc := make(chan os.Signal, 1)
-		signal.Notify(sigc, syscall.SIGTERM)
-		defer signal.Stop(sigc)
-		<-sigc
-		log.Info("Received SIGTERM, shutting down...")
-		stack.Close()
-	}()
-	stack.Wait() // Wait for the stack to exit.
-}
-
-func startExecNodeStack() (*node.Node, error) {
-	// read the services from argv
-	serviceNames := strings.Split(os.Args[1], ",")
-
-	// decode the config
-	confEnv := os.Getenv(envNodeConfig)
-	if confEnv == "" {
-		return nil, fmt.Errorf("missing " + envNodeConfig)
-	}
-	var conf execNodeConfig
-	if err := json.Unmarshal([]byte(confEnv), &conf); err != nil {
-		return nil, fmt.Errorf("error decoding %s: %w", envNodeConfig, err)
-	}
-
-	// create enode record
-	nodeTcpConn, _ := net.ResolveTCPAddr("tcp", conf.Stack.P2P.ListenAddr)
-	if nodeTcpConn.IP == nil {
-		nodeTcpConn.IP = net.IPv4(127, 0, 0, 1)
-	}
-	_ = conf.Node.initEnode(nodeTcpConn.IP, nodeTcpConn.Port, nodeTcpConn.Port)
-	conf.Stack.P2P.PrivateKey = conf.Node.PrivateKey
-	conf.Stack.Logger = log.New("node.id", conf.Node.ID.String())
-
-	// initialize the devp2p stack
-	stack, err := node.New(&conf.Stack)
-	if err != nil {
-		return nil, fmt.Errorf("error creating node stack: %w", err)
-	}
-
-	// Register the services, collecting them into a map so they can
-	// be accessed by the snapshot API.
-	services := make(map[string]node.Lifecycle, len(serviceNames))
-	for _, name := range serviceNames {
-		lifecycleFunc, exists := lifecycleConstructorFuncs[name]
-		if !exists {
-			return nil, fmt.Errorf("unknown node service %q", err)
-		}
-		ctx := &ServiceContext{
-			RPCDialer: &wsRPCDialer{addrs: conf.PeerAddrs},
-			Config:    conf.Node,
-		}
-		if conf.Snapshots != nil {
-			ctx.Snapshot = conf.Snapshots[name]
-		}
-		service, err1 := lifecycleFunc(ctx, stack)
-		if err1 != nil {
-			return nil, err1
-		}
-		services[name] = service
-	}
-
-	// Add the snapshot API.
-	stack.RegisterAPIs([]rpc.API{{
-		Namespace: "simulation",
-		Version:   "1.0",
-		Service:   SnapshotAPI{services},
-	}})
-
-	if err = stack.Start(); err != nil {
-		err = fmt.Errorf("error starting stack: %w", err)
-	}
-	return stack, err
-}
-
-const (
-	envStatusURL  = "_P2P_STATUS_URL"
-	envNodeConfig = "_P2P_NODE_CONFIG"
-)
-
-// nodeStartupJSON is sent to the simulation host after startup.
-type nodeStartupJSON struct {
-	Err        string
-	WSEndpoint string
-	NodeInfo   *p2p.NodeInfo
-}
-
-// SnapshotAPI provides an RPC method to create snapshots of services
-type SnapshotAPI struct {
-	services map[string]node.Lifecycle
-}
-
-func (api SnapshotAPI) Snapshot() (map[string][]byte, error) {
-	snapshots := make(map[string][]byte)
-	for name, service := range api.services {
-		if s, ok := service.(interface {
-			Snapshot() ([]byte, error)
-		}); ok {
-			snap, err := s.Snapshot()
-			if err != nil {
-				return nil, err
-			}
-			snapshots[name] = snap
-		}
-	}
-	return snapshots, nil
-}
-
-type wsRPCDialer struct {
-	addrs map[string]string
-}
-
-// DialRPC implements the RPCDialer interface by creating a WebSocket RPC
-// client of the given node
-func (w *wsRPCDialer) DialRPC(id enode.ID) (*rpc.Client, error) {
-	addr, ok := w.addrs[id.String()]
-	if !ok {
-		return nil, fmt.Errorf("unknown node: %s", id)
-	}
-	return rpc.DialWebsocket(context.Background(), addr, "http://localhost")
-}
diff --git a/p2p/simulations/adapters/types.go b/p2p/simulations/adapters/types.go
index 30478ded29..c8d341717d 100644
--- a/p2p/simulations/adapters/types.go
+++ b/p2p/simulations/adapters/types.go
@@ -22,11 +22,8 @@ import (
 	"encoding/json"
 	"fmt"
 	"net"
-	"os"
 	"strconv"
 
-	"github.com/docker/docker/pkg/reexec"
-
 	"github.com/ledgerwatch/erigon/crypto"
 	"github.com/ledgerwatch/erigon/node"
 	"github.com/ledgerwatch/erigon/p2p"
@@ -288,13 +285,6 @@ func RegisterLifecycles(lifecycles LifecycleConstructors) {
 		}
 		lifecycleConstructorFuncs[name] = f
 	}
-
-	// now we have registered the services, run reexec.Init() which will
-	// potentially start one of the services if the current binary has
-	// been exec'd with argv[0] set to "p2p-node"
-	if reexec.Init() {
-		os.Exit(0)
-	}
 }
 
 // adds the host part to the configuration's ENR, signs it
diff --git a/p2p/simulations/examples/ping-pong.go b/p2p/simulations/examples/ping-pong.go
index d21dad2281..99560344f4 100644
--- a/p2p/simulations/examples/ping-pong.go
+++ b/p2p/simulations/examples/ping-pong.go
@@ -21,7 +21,6 @@ import (
 	"fmt"
 	"io/ioutil"
 	"net/http"
-	"os"
 	"sync/atomic"
 	"time"
 
@@ -62,15 +61,6 @@ func main() {
 		log.Info("using sim adapter")
 		adapter = adapters.NewSimAdapter(services)
 
-	case "exec":
-		tmpdir, err := ioutil.TempDir("", "p2p-example")
-		if err != nil {
-			log.Crit("error creating temp dir", "err", err)
-		}
-		defer os.RemoveAll(tmpdir)
-		log.Info("using exec adapter", "tmpdir", tmpdir)
-		adapter = adapters.NewExecAdapter(tmpdir)
-
 	default:
 		log.Crit(fmt.Sprintf("unknown node adapter %q", *adapterType))
 	}
-- 
GitLab