-
Notifications
You must be signed in to change notification settings - Fork 1.2k
/
Copy pathendpoints.go
169 lines (159 loc) · 5.8 KB
/
endpoints.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
// Copyright 2018 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 node
import (
"context"
"errors"
"fmt"
"net"
"net/http"
"net/url"
"time"
libcommon "github.com/ledgerwatch/erigon-lib/common"
"github.com/ledgerwatch/erigon/rpc"
"github.com/ledgerwatch/erigon/rpc/rpccfg"
"github.com/ledgerwatch/log/v3"
"golang.org/x/net/http2"
"golang.org/x/net/http2/h2c"
)
type HttpEndpointConfig struct {
Timeouts rpccfg.HTTPTimeouts
HTTPS bool
CertFile string
KeyFile string
}
// StartHTTPEndpoint starts the HTTP RPC endpoint.
func StartHTTPEndpoint(urlEndpoint string, cfg *HttpEndpointConfig, handler http.Handler) (*http.Server, net.Addr, error) {
// start the HTTP listener
var (
listener net.Listener
err error
)
socketUrl, err := url.Parse(urlEndpoint)
if err != nil {
return nil, nil, fmt.Errorf("malformatted http listen url %s: %w", urlEndpoint, err)
}
if listener, err = net.Listen(socketUrl.Scheme, socketUrl.Host+socketUrl.EscapedPath()); err != nil {
return nil, nil, err
}
// make sure timeout values are meaningful
CheckTimeouts(&cfg.Timeouts)
// create the http2 server for handling h2c
h2 := &http2.Server{}
// enable h2c support
handler = h2c.NewHandler(handler, h2)
// Bundle the http server
httpSrv := &http.Server{
Handler: handler,
ReadTimeout: cfg.Timeouts.ReadTimeout,
WriteTimeout: cfg.Timeouts.WriteTimeout,
IdleTimeout: cfg.Timeouts.IdleTimeout,
ReadHeaderTimeout: cfg.Timeouts.ReadTimeout,
}
// start the HTTP server
go func() {
var serveErr error
if cfg.HTTPS {
serveErr = httpSrv.ServeTLS(listener, cfg.CertFile, cfg.KeyFile)
if serveErr != nil && !isIgnoredHttpServerError(serveErr) {
log.Warn("Failed to serve https endpoint", "err", serveErr)
}
} else {
serveErr = httpSrv.Serve(listener)
if serveErr != nil && !isIgnoredHttpServerError(serveErr) {
log.Warn("Failed to serve http endpoint", "err", serveErr)
}
}
}()
return httpSrv, listener.Addr(), err
}
func isIgnoredHttpServerError(serveErr error) bool {
return (errors.Is(serveErr, context.Canceled) || errors.Is(serveErr, libcommon.ErrStopped) || errors.Is(serveErr, http.ErrServerClosed))
}
// StartHTTPEndpoint starts the HTTP RPC endpoint.
func StartHTTPSEndpoint(urlEndpoint string,
keyFile string, certFile string,
timeouts rpccfg.HTTPTimeouts, handler http.Handler,
) (*http.Server, net.Addr, error) {
// start the HTTP listener
var (
listener net.Listener
err error
)
socketUrl, err := url.Parse(urlEndpoint)
if err != nil {
return nil, nil, fmt.Errorf("malformatted http listen url %s: %w", urlEndpoint, err)
}
if listener, err = net.Listen(socketUrl.Scheme, socketUrl.Host+socketUrl.EscapedPath()); err != nil {
return nil, nil, err
}
// make sure timeout values are meaningful
CheckTimeouts(&timeouts)
// create the http2 server for handling h2c
h2 := &http2.Server{}
// enable h2c support
handler = h2c.NewHandler(handler, h2)
// Bundle the http server
httpSrv := &http.Server{
Handler: handler,
ReadTimeout: timeouts.ReadTimeout,
WriteTimeout: timeouts.WriteTimeout,
IdleTimeout: timeouts.IdleTimeout,
ReadHeaderTimeout: timeouts.ReadTimeout,
}
// start the HTTP server
go func() {
serveErr := httpSrv.ServeTLS(listener, certFile, keyFile)
if serveErr != nil &&
!(errors.Is(serveErr, context.Canceled) || errors.Is(serveErr, libcommon.ErrStopped) || errors.Is(serveErr, http.ErrServerClosed)) {
log.Warn("Failed to serve http endpoint", "err", serveErr)
}
}()
return httpSrv, listener.Addr(), err
}
// checkModuleAvailability checks that all names given in modules are actually
// available API services. It assumes that the MetadataApi module ("rpc") is always available;
// the registration of this "rpc" module happens in NewServer() and is thus common to all endpoints.
func checkModuleAvailability(modules []string, apis []rpc.API) (bad, available []string) {
availableSet := make(map[string]struct{})
for _, api := range apis {
if _, ok := availableSet[api.Namespace]; !ok {
availableSet[api.Namespace] = struct{}{}
available = append(available, api.Namespace)
}
}
for _, name := range modules {
if _, ok := availableSet[name]; !ok && name != rpc.MetadataApi {
bad = append(bad, name)
}
}
return bad, available
}
// CheckTimeouts ensures that timeout values are meaningful
func CheckTimeouts(timeouts *rpccfg.HTTPTimeouts) {
if timeouts.ReadTimeout < time.Second {
log.Warn("Sanitizing invalid HTTP read timeout", "provided", timeouts.ReadTimeout, "updated", rpccfg.DefaultHTTPTimeouts.ReadTimeout)
timeouts.ReadTimeout = rpccfg.DefaultHTTPTimeouts.ReadTimeout
}
if timeouts.WriteTimeout < time.Second {
log.Warn("Sanitizing invalid HTTP write timeout", "provided", timeouts.WriteTimeout, "updated", rpccfg.DefaultHTTPTimeouts.WriteTimeout)
timeouts.WriteTimeout = rpccfg.DefaultHTTPTimeouts.WriteTimeout
}
if timeouts.IdleTimeout < time.Second {
log.Warn("Sanitizing invalid HTTP idle timeout", "provided", timeouts.IdleTimeout, "updated", rpccfg.DefaultHTTPTimeouts.IdleTimeout)
timeouts.IdleTimeout = rpccfg.DefaultHTTPTimeouts.IdleTimeout
}
}