forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathledgerService.go
228 lines (212 loc) · 8.47 KB
/
ledgerService.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
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
// Copyright (C) 2019-2022 Algorand, Inc.
// This file is part of go-algorand
//
// go-algorand is free software: you can redistribute it and/or modify
// it under the terms of the GNU Affero General Public License as
// published by the Free Software Foundation, either version 3 of the
// License, or (at your option) any later version.
//
// go-algorand 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 Affero General Public License for more details.
//
// You should have received a copy of the GNU Affero General Public License
// along with go-algorand. If not, see <https://www.gnu.org/licenses/>.
package rpcs
import (
"compress/gzip"
"fmt"
"io"
"net/http"
"strconv"
"strings"
"sync"
"sync/atomic"
"time"
"github.com/gorilla/mux"
"github.com/algorand/go-algorand/config"
"github.com/algorand/go-algorand/data"
"github.com/algorand/go-algorand/data/basics"
"github.com/algorand/go-algorand/ledger/ledgercore"
"github.com/algorand/go-algorand/logging"
"github.com/algorand/go-algorand/network"
)
const (
// LedgerResponseContentType is the HTTP Content-Type header for a raw ledger block
LedgerResponseContentType = "application/x-algorand-ledger-v2.1"
ledgerServerMaxBodyLength = 512 // we don't really pass meaningful content here, so 512 bytes should be a safe limit
// LedgerServiceLedgerPath is the path to register LedgerService as a handler for when using gorilla/mux
// e.g. .Handle(LedgerServiceLedgerPath, &ls)
LedgerServiceLedgerPath = "/v{version:[0-9.]+}/{genesisID}/ledger/{round:[0-9a-z]+}"
// maxCatchpointFileSize is the default catchpoint file size, if we can't get a concreate number from the ledger.
maxCatchpointFileSize = 512 * 1024 * 1024 // 512MB
// expectedWorstUploadSpeedBytesPerSecond defines the worst-case scenario upload speed we expect to get while uploading a catchpoint file
expectedWorstUploadSpeedBytesPerSecond = 20 * 1024
)
// LedgerService represents the Ledger RPC API
type LedgerService struct {
// running is non-zero once the service is running, and zero when it's not running. it needs to be at a 32-bit aligned address for RasPI support.
running int32
ledger *data.Ledger
genesisID string
net network.GossipNode
enableService bool
stopping sync.WaitGroup
}
// MakeLedgerService creates a LedgerService around the provider Ledger and registers it with the HTTP router
func MakeLedgerService(config config.Local, ledger *data.Ledger, net network.GossipNode, genesisID string) *LedgerService {
service := &LedgerService{
ledger: ledger,
genesisID: genesisID,
net: net,
enableService: config.EnableLedgerService,
}
// the underlying gorilla/mux doesn't support "unregister", so we're forced to implement it ourselves.
if service.enableService {
net.RegisterHTTPHandler(LedgerServiceLedgerPath, service)
}
return service
}
// Start listening to catchup requests
func (ls *LedgerService) Start() {
if ls.enableService {
atomic.StoreInt32(&ls.running, 1)
}
}
// Stop servicing catchup requests
func (ls *LedgerService) Stop() {
if ls.enableService {
atomic.StoreInt32(&ls.running, 0)
ls.stopping.Wait()
}
}
// ServerHTTP returns ledgers for a particular round
// Either /v{version}/{genesisID}/ledger/{round} or ?r={round}&v={version}
// Uses gorilla/mux for path argument parsing.
func (ls *LedgerService) ServeHTTP(response http.ResponseWriter, request *http.Request) {
ls.stopping.Add(1)
defer ls.stopping.Done()
if atomic.AddInt32(&ls.running, 0) == 0 {
response.WriteHeader(http.StatusNotFound)
return
}
pathVars := mux.Vars(request)
versionStr, hasVersionStr := pathVars["version"]
roundStr, hasRoundStr := pathVars["round"]
genesisID, hasGenesisID := pathVars["genesisID"]
if hasVersionStr {
if versionStr != "1" {
logging.Base().Debugf("http ledger bad version '%s'", versionStr)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("unsupported version '%s'", versionStr)))
return
}
}
if hasGenesisID {
if ls.genesisID != genesisID {
logging.Base().Debugf("http ledger bad genesisID mine=%#v theirs=%#v", ls.genesisID, genesisID)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("mismatching genesisID '%s'", genesisID)))
return
}
} else {
logging.Base().Debug("http ledger no genesisID")
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte("missing genesisID"))
return
}
if (!hasVersionStr) || (!hasRoundStr) {
// try query arg ?r={round}
request.Body = http.MaxBytesReader(response, request.Body, ledgerServerMaxBodyLength)
err := request.ParseForm()
if err != nil {
logging.Base().Debugf("http ledger parse form err : %v", err)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("unable to parse form body : %v", err)))
return
}
roundStrs, ok := request.Form["r"]
if !ok || len(roundStrs) != 1 {
logging.Base().Debugf("http ledger bad round number form arg '%s'", roundStrs)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte("invalid round number specified in 'r' form argument"))
return
}
roundStr = roundStrs[0]
versionStrs, ok := request.Form["v"]
if ok {
if len(versionStrs) == 1 {
if versionStrs[0] != "1" {
logging.Base().Debugf("http ledger bad version '%s'", versionStr)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("unsupported version specified '%s'", versionStrs[0])))
return
}
} else {
logging.Base().Debugf("http ledger wrong number of v=%d args", len(versionStrs))
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("invalid number of version specified %d", len(versionStrs))))
return
}
}
}
round, err := strconv.ParseUint(roundStr, 36, 64)
if err != nil {
logging.Base().Debugf("http ledger round parse fail ('%s'): %v", roundStr, err)
response.WriteHeader(http.StatusBadRequest)
response.Write([]byte(fmt.Sprintf("specified round number could not be parsed using base 36 : %v", err)))
return
}
cs, err := ls.ledger.GetCatchpointStream(basics.Round(round))
if err != nil {
switch err.(type) {
case ledgercore.ErrNoEntry:
// entry cound not be found.
response.WriteHeader(http.StatusNotFound)
response.Write([]byte(fmt.Sprintf("catchpoint file for round %d is not available", round)))
return
default:
// unexpected error.
logging.Base().Warnf("ServeHTTP : failed to retrieve catchpoint %d %v", round, err)
response.WriteHeader(http.StatusInternalServerError)
response.Write([]byte(fmt.Sprintf("catchpoint file for round %d could not be retrieved due to internal error : %v", round, err)))
return
}
}
defer cs.Close()
if conn := ls.net.GetHTTPRequestConnection(request); conn != nil {
maxCatchpointFileWritingDuration := 2 * time.Minute
catchpointFileSize, err := cs.Size()
if err != nil || catchpointFileSize <= 0 {
maxCatchpointFileWritingDuration += maxCatchpointFileSize * time.Second / expectedWorstUploadSpeedBytesPerSecond
} else {
maxCatchpointFileWritingDuration += time.Duration(catchpointFileSize) * time.Second / expectedWorstUploadSpeedBytesPerSecond
}
conn.SetWriteDeadline(time.Now().Add(maxCatchpointFileWritingDuration))
} else {
logging.Base().Warnf("LedgerService.ServeHTTP unable to set connection timeout")
}
response.Header().Set("Content-Type", LedgerResponseContentType)
requestedCompressedResponse := strings.Contains(request.Header.Get("Accept-Encoding"), "gzip")
if requestedCompressedResponse {
response.Header().Set("Content-Encoding", "gzip")
written, err := io.Copy(response, cs)
if err != nil {
logging.Base().Infof("LedgerService.ServeHTTP : unable to write compressed catchpoint file for round %d, written bytes %d : %v", round, written, err)
}
return
}
decompressedGzip, err := gzip.NewReader(cs)
if err != nil {
logging.Base().Warnf("LedgerService.ServeHTTP : failed to decompress catchpoint %d %v", round, err)
response.WriteHeader(http.StatusInternalServerError)
response.Write([]byte(fmt.Sprintf("catchpoint file for round %d could not be decompressed due to internal error : %v", round, err)))
return
}
defer decompressedGzip.Close()
written, err := io.Copy(response, decompressedGzip)
if err != nil {
logging.Base().Infof("LedgerService.ServeHTTP : unable to write decompressed catchpoint file for round %d, written bytes %d : %v", round, written, err)
}
}