Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

jsonrpc with https #154

Merged
merged 3 commits into from
Mar 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions command/server/config/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,8 @@ type Config struct {
JSONRPCBlockRangeLimit uint64 `json:"json_rpc_block_range_limit" yaml:"json_rpc_block_range_limit"`
JSONLogFormat bool `json:"json_log_format" yaml:"json_log_format"`
CorsAllowedOrigins []string `json:"cors_allowed_origins" yaml:"cors_allowed_origins"`
TLSCertFile string `json:"tls_cert_file" yaml:"tls_cert_file"`
TLSKeyFile string `json:"tls_key_file" yaml:"tls_key_file"`

Relayer bool `json:"relayer" yaml:"relayer"`

Expand Down Expand Up @@ -144,6 +146,8 @@ func DefaultConfig() *Config {
AccessControlAllowOrigins: []string{"*"},
},
LogFilePath: "",
TLSCertFile: "",
TLSKeyFile: "",
JSONRPCBatchRequestLimit: DefaultJSONRPCBatchRequestLimit,
JSONRPCBlockRangeLimit: DefaultJSONRPCBlockRangeLimit,
Relayer: false,
Expand Down
4 changes: 4 additions & 0 deletions command/server/params.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ const (
devFlag = "dev"
corsOriginFlag = "access-control-allow-origins"
logFileLocationFlag = "log-to"
tlsCertFileLocationFlag = "tls-cert-file"
tlsKeyFileLocationFlag = "tls-key-file"

relayerFlag = "relayer"

Expand Down Expand Up @@ -183,6 +185,8 @@ func (p *serverParams) generateConfig() *server.Config {
LogLevel: hclog.LevelFromString(p.rawConfig.LogLevel),
JSONLogFormat: p.rawConfig.JSONLogFormat,
LogFilePath: p.logFileLocation,
TLSCertFile: p.rawConfig.TLSCertFile,
TLSKeyFile: p.rawConfig.TLSKeyFile,

Relayer: p.relayer,
MetricsInterval: p.rawConfig.MetricsInterval,
Expand Down
14 changes: 14 additions & 0 deletions command/server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,20 @@ func setFlags(cmd *cobra.Command) {
"write all logs to the file at specified location instead of writing them to console",
)

cmd.Flags().StringVar(
&params.rawConfig.TLSCertFile,
tlsCertFileLocationFlag,
defaultConfig.TLSCertFile,
"path to TLS cert file, if no file is provided then TLS is not used",
)

cmd.Flags().StringVar(
&params.rawConfig.TLSKeyFile,
tlsKeyFileLocationFlag,
defaultConfig.TLSKeyFile,
"path to TLS key file, if no file is provided then TLS is not used",
)

cmd.Flags().BoolVar(
&params.rawConfig.Relayer,
relayerFlag,
Expand Down
1 change: 1 addition & 0 deletions e2e-polybft/e2e/jsonrpc_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ func TestE2E_JsonRPC(t *testing.T) {

cluster := framework.NewTestCluster(t, 4,
framework.WithPremine(types.Address(acct.Address())),
// framework.WithHTTPS("/etc/ssl/certs/ssl-cert-snakeoil.pem", "/etc/ssl/private/ssl-cert-snakeoil.key"),
Stefan-Ethernal marked this conversation as resolved.
Show resolved Hide resolved
)
defer cluster.Stop()

Expand Down
12 changes: 12 additions & 0 deletions e2e-polybft/framework/test-cluster.go
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,9 @@ type TestClusterConfig struct {
VotingDelay uint64

logsDirOnce sync.Once

TLSCertFile string
TLSKeyFile string
}

func (c *TestClusterConfig) Dir(name string) string {
Expand Down Expand Up @@ -463,6 +466,13 @@ func WithPredeploy(predeployString string) ClusterOption {
}
}

func WithHTTPS(certFile string, keyFile string) ClusterOption {
return func(h *TestClusterConfig) {
h.TLSCertFile = certFile
h.TLSKeyFile = keyFile
}
}

func isTrueEnv(e string) bool {
return strings.ToLower(os.Getenv(e)) == "true"
}
Expand Down Expand Up @@ -805,6 +815,8 @@ func (c *TestCluster) InitTestServer(t *testing.T,
config.Relayer = nodeType.IsSet(Relayer)
config.NumBlockConfirmations = c.Config.NumBlockConfirmations
config.BridgeJSONRPC = bridgeJSONRPC
config.TLSCertFile = c.Config.TLSCertFile
config.TLSKeyFile = c.Config.TLSKeyFile
})

// watch the server for stop signals. It is important to fix the specific
Expand Down
14 changes: 13 additions & 1 deletion e2e-polybft/framework/test-server.go
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ type TestServerConfig struct {
Relayer bool
NumBlockConfirmations uint64
BridgeJSONRPC string
TLSCertFile string
TLSKeyFile string
}

type TestServerConfigCallback func(*TestServerConfig)
Expand All @@ -65,7 +67,13 @@ func (t *TestServer) GrpcAddr() string {
}

func (t *TestServer) JSONRPCAddr() string {
return fmt.Sprintf("http://%s:%d", hostIP, t.config.JSONRPCPort)
if t.config.TLSCertFile != "" && t.config.TLSKeyFile != "" {
host, _ := os.Hostname()

return fmt.Sprintf("https://%s:%d", host, t.config.JSONRPCPort)
} else {
return fmt.Sprintf("http://%s:%d", hostIP, t.config.JSONRPCPort)
}
}

func (t *TestServer) BridgeJSONRPCAddr() string {
Expand Down Expand Up @@ -165,6 +173,10 @@ func (t *TestServer) Start() {
"--jsonrpc", fmt.Sprintf(":%d", config.JSONRPCPort),
// minimal number of child blocks required for the parent block to be considered final
"--num-block-confirmations", strconv.FormatUint(config.NumBlockConfirmations, 10),
// TLS certificate file
"--tls-cert-file", config.TLSCertFile,
// TLS key file
"--tls-key-file", config.TLSKeyFile,
}

if len(config.LogLevel) > 0 {
Expand Down
26 changes: 20 additions & 6 deletions jsonrpc/jsonrpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ type Config struct {

ConcurrentRequestsDebug uint64
WebSocketReadLimit uint64
TLSCertFile string
TLSKeyFile string
}

// NewJSONRPC returns the JSONRPC http server
Expand Down Expand Up @@ -107,7 +109,7 @@ func NewJSONRPC(logger hclog.Logger, config *Config) (*JSONRPC, error) {
}

func (j *JSONRPC) setupHTTP() error {
j.logger.Info("http server started", "addr", j.config.Addr.String())
j.logger.Info("http server starting...", "addr", j.config.Addr.String())

lis, err := net.Listen("tcp", j.config.Addr.String())
if err != nil {
Expand All @@ -130,12 +132,24 @@ func (j *JSONRPC) setupHTTP() error {
ReadHeaderTimeout: 60 * time.Second,
}

go func() {
if err := srv.Serve(lis); err != nil {
j.logger.Error("closed http connection", "err", err)
}
}()
if j.config.TLSCertFile != "" && j.config.TLSKeyFile != "" {
j.logger.Info("https cert file", j.config.TLSCertFile)
j.logger.Info("https key file", j.config.TLSKeyFile)

go func() {
if err := srv.ServeTLS(lis, j.config.TLSCertFile, j.config.TLSKeyFile); err != nil {
j.logger.Error("closed https connection", "err", err)
}
}()
} else {
go func() {
if err := srv.Serve(lis); err != nil {
j.logger.Error("closed http connection", "err", err)
}
}()
}

j.logger.Info("http server started", "addr", j.config.Addr.String())
return nil
}

Expand Down
4 changes: 4 additions & 0 deletions server/config.go
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,10 @@ type Config struct {

LogFilePath string

TLSCertFile string

TLSKeyFile string

Relayer bool

MetricsInterval time.Duration
Expand Down
2 changes: 2 additions & 0 deletions server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -869,6 +869,8 @@ func (s *Server) setupJSONRPC() error {
BlockRangeLimit: s.config.JSONRPC.BlockRangeLimit,
ConcurrentRequestsDebug: s.config.JSONRPC.ConcurrentRequestsDebug,
WebSocketReadLimit: s.config.JSONRPC.WebSocketReadLimit,
TLSCertFile: s.config.TLSCertFile,
TLSKeyFile: s.config.TLSKeyFile,
}

srv, err := jsonrpc.NewJSONRPC(s.logger, conf)
Expand Down
Loading