2020-09-22 08:17:39 +00:00
|
|
|
// Copyright 2020 The go-ethereum Authors
|
|
|
|
// This file is part of go-ethereum.
|
|
|
|
//
|
|
|
|
// go-ethereum is free software: you can redistribute it and/or modify
|
|
|
|
// it under the terms of the GNU General Public License as published by
|
|
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
|
|
// (at your option) any later version.
|
|
|
|
//
|
|
|
|
// go-ethereum 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 General Public License for more details.
|
|
|
|
//
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
|
|
// along with go-ethereum. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
|
|
|
"fmt"
|
|
|
|
"net"
|
|
|
|
|
2020-09-23 13:18:17 +00:00
|
|
|
"github.com/ethereum/go-ethereum/cmd/devp2p/internal/ethtest"
|
2020-09-22 08:17:39 +00:00
|
|
|
"github.com/ethereum/go-ethereum/crypto"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p"
|
|
|
|
"github.com/ethereum/go-ethereum/p2p/rlpx"
|
|
|
|
"github.com/ethereum/go-ethereum/rlp"
|
|
|
|
"gopkg.in/urfave/cli.v1"
|
|
|
|
)
|
|
|
|
|
|
|
|
var (
|
|
|
|
rlpxCommand = cli.Command{
|
|
|
|
Name: "rlpx",
|
|
|
|
Usage: "RLPx Commands",
|
|
|
|
Subcommands: []cli.Command{
|
|
|
|
rlpxPingCommand,
|
2020-09-23 13:18:17 +00:00
|
|
|
rlpxEthTestCommand,
|
2020-09-22 08:17:39 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
rlpxPingCommand = cli.Command{
|
2020-09-23 13:18:17 +00:00
|
|
|
Name: "ping",
|
|
|
|
Usage: "ping <node>",
|
|
|
|
Action: rlpxPing,
|
|
|
|
}
|
|
|
|
rlpxEthTestCommand = cli.Command{
|
|
|
|
Name: "eth-test",
|
|
|
|
Usage: "Runs tests against a node",
|
2020-11-04 14:02:58 +00:00
|
|
|
ArgsUsage: "<node> <chain.rlp> <genesis.json>",
|
2020-09-23 13:18:17 +00:00
|
|
|
Action: rlpxEthTest,
|
2020-11-04 14:02:58 +00:00
|
|
|
Flags: []cli.Flag{
|
|
|
|
testPatternFlag,
|
|
|
|
testTAPFlag,
|
|
|
|
},
|
2020-09-22 08:17:39 +00:00
|
|
|
}
|
|
|
|
)
|
|
|
|
|
|
|
|
func rlpxPing(ctx *cli.Context) error {
|
|
|
|
n := getNodeArg(ctx)
|
|
|
|
fd, err := net.Dial("tcp", fmt.Sprintf("%v:%d", n.IP(), n.TCP()))
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
conn := rlpx.NewConn(fd, n.Pubkey())
|
|
|
|
ourKey, _ := crypto.GenerateKey()
|
|
|
|
_, err = conn.Handshake(ourKey)
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
code, data, _, err := conn.Read()
|
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
switch code {
|
|
|
|
case 0:
|
2020-09-23 13:18:17 +00:00
|
|
|
var h ethtest.Hello
|
2020-09-22 08:17:39 +00:00
|
|
|
if err := rlp.DecodeBytes(data, &h); err != nil {
|
|
|
|
return fmt.Errorf("invalid handshake: %v", err)
|
|
|
|
}
|
|
|
|
fmt.Printf("%+v\n", h)
|
|
|
|
case 1:
|
|
|
|
var msg []p2p.DiscReason
|
|
|
|
if rlp.DecodeBytes(data, &msg); len(msg) == 0 {
|
|
|
|
return fmt.Errorf("invalid disconnect message")
|
|
|
|
}
|
|
|
|
return fmt.Errorf("received disconnect message: %v", msg[0])
|
|
|
|
default:
|
|
|
|
return fmt.Errorf("invalid message code %d, expected handshake (code zero)", code)
|
|
|
|
}
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
2020-11-04 14:02:58 +00:00
|
|
|
// rlpxEthTest runs the eth protocol test suite.
|
2020-09-23 13:18:17 +00:00
|
|
|
func rlpxEthTest(ctx *cli.Context) error {
|
|
|
|
if ctx.NArg() < 3 {
|
|
|
|
exit("missing path to chain.rlp as command-line argument")
|
|
|
|
}
|
|
|
|
suite := ethtest.NewSuite(getNodeArg(ctx), ctx.Args()[1], ctx.Args()[2])
|
2020-11-04 14:02:58 +00:00
|
|
|
return runTests(ctx, suite.AllTests())
|
2020-09-22 08:17:39 +00:00
|
|
|
}
|