forked from algorand/go-algorand
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathblockdb.go
341 lines (292 loc) · 7.95 KB
/
blockdb.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
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
// 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 ledger
import (
"database/sql"
"fmt"
"strings"
"github.com/mattn/go-sqlite3"
"github.com/algorand/go-algorand/agreement"
"github.com/algorand/go-algorand/data/basics"
"github.com/algorand/go-algorand/data/bookkeeping"
"github.com/algorand/go-algorand/ledger/ledgercore"
"github.com/algorand/go-algorand/protocol"
)
// 2019-12-15: removed column 'auxdata blob' from 'CREATE TABLE' statement. It was not explicitly removed from databases and may continue to exist with empty entries in some old databases.
var blockSchema = []string{
`CREATE TABLE IF NOT EXISTS blocks (
rnd integer primary key,
proto text,
hdrdata blob,
blkdata blob,
certdata blob)`,
}
var blockResetExprs = []string{
`DROP TABLE IF EXISTS blocks`,
}
func blockInit(tx *sql.Tx, initBlocks []bookkeeping.Block) error {
for _, tableCreate := range blockSchema {
_, err := tx.Exec(tableCreate)
if err != nil {
return fmt.Errorf("blockdb blockInit could not create table %v", err)
}
}
next, err := blockNext(tx)
if err != nil {
return err
}
if next == 0 {
for _, blk := range initBlocks {
err = blockPut(tx, blk, agreement.Certificate{})
if err != nil {
serr, ok := err.(sqlite3.Error)
if ok && serr.Code == sqlite3.ErrConstraint {
continue
}
return err
}
}
}
return nil
}
func blockResetDB(tx *sql.Tx) error {
for _, stmt := range blockResetExprs {
_, err := tx.Exec(stmt)
if err != nil {
return err
}
}
return nil
}
func blockGet(tx *sql.Tx, rnd basics.Round) (blk bookkeeping.Block, err error) {
var buf []byte
err = tx.QueryRow("SELECT blkdata FROM blocks WHERE rnd=?", rnd).Scan(&buf)
if err != nil {
if err == sql.ErrNoRows {
err = ledgercore.ErrNoEntry{Round: rnd}
}
return
}
err = protocol.Decode(buf, &blk)
return
}
func blockGetHdr(tx *sql.Tx, rnd basics.Round) (hdr bookkeeping.BlockHeader, err error) {
var buf []byte
err = tx.QueryRow("SELECT hdrdata FROM blocks WHERE rnd=?", rnd).Scan(&buf)
if err != nil {
if err == sql.ErrNoRows {
err = ledgercore.ErrNoEntry{Round: rnd}
}
return
}
err = protocol.Decode(buf, &hdr)
return
}
func blockGetEncodedCert(tx *sql.Tx, rnd basics.Round) (blk []byte, cert []byte, err error) {
err = tx.QueryRow("SELECT blkdata, certdata FROM blocks WHERE rnd=?", rnd).Scan(&blk, &cert)
if err != nil {
if err == sql.ErrNoRows {
err = ledgercore.ErrNoEntry{Round: rnd}
}
return
}
return
}
func blockGetCert(tx *sql.Tx, rnd basics.Round) (blk bookkeeping.Block, cert agreement.Certificate, err error) {
blkbuf, certbuf, err := blockGetEncodedCert(tx, rnd)
if err != nil {
return
}
err = protocol.Decode(blkbuf, &blk)
if err != nil {
return
}
if certbuf != nil {
err = protocol.Decode(certbuf, &cert)
if err != nil {
return
}
}
return
}
func blockPut(tx *sql.Tx, blk bookkeeping.Block, cert agreement.Certificate) error {
var max sql.NullInt64
err := tx.QueryRow("SELECT MAX(rnd) FROM blocks").Scan(&max)
if err != nil {
return err
}
if max.Valid {
if blk.Round() != basics.Round(max.Int64+1) {
err = fmt.Errorf("inserting block %d but expected %d", blk.Round(), max.Int64+1)
return err
}
} else {
if blk.Round() != 0 {
err = fmt.Errorf("inserting block %d but expected 0", blk.Round())
return err
}
}
_, err = tx.Exec("INSERT INTO blocks (rnd, proto, hdrdata, blkdata, certdata) VALUES (?, ?, ?, ?, ?)",
blk.Round(),
blk.CurrentProtocol,
protocol.Encode(&blk.BlockHeader),
protocol.Encode(&blk),
protocol.Encode(&cert),
)
return err
}
func blockNext(tx *sql.Tx) (basics.Round, error) {
var max sql.NullInt64
err := tx.QueryRow("SELECT MAX(rnd) FROM blocks").Scan(&max)
if err != nil {
return 0, err
}
if max.Valid {
return basics.Round(max.Int64 + 1), nil
}
return 0, nil
}
func blockLatest(tx *sql.Tx) (basics.Round, error) {
var max sql.NullInt64
err := tx.QueryRow("SELECT MAX(rnd) FROM blocks").Scan(&max)
if err != nil {
return 0, err
}
if max.Valid {
return basics.Round(max.Int64), nil
}
return 0, fmt.Errorf("no blocks present")
}
func blockEarliest(tx *sql.Tx) (basics.Round, error) {
var min sql.NullInt64
err := tx.QueryRow("SELECT MIN(rnd) FROM blocks").Scan(&min)
if err != nil {
return 0, err
}
if min.Valid {
return basics.Round(min.Int64), nil
}
return 0, fmt.Errorf("no blocks present")
}
func blockForgetBefore(tx *sql.Tx, rnd basics.Round) error {
next, err := blockNext(tx)
if err != nil {
return err
}
if rnd >= next {
return fmt.Errorf("forgetting too much: rnd %d >= next %d", rnd, next)
}
_, err = tx.Exec("DELETE FROM blocks WHERE rnd<?", rnd)
return err
}
func blockStartCatchupStaging(tx *sql.Tx, blk bookkeeping.Block) error {
// delete the old catchpointblocks table, if there is such.
for _, stmt := range blockResetExprs {
stmt = strings.Replace(stmt, "blocks", "catchpointblocks", 1)
_, err := tx.Exec(stmt)
if err != nil {
return err
}
}
// create the catchpointblocks table
for _, stmt := range blockSchema {
stmt = strings.Replace(stmt, "blocks", "catchpointblocks", 1)
_, err := tx.Exec(stmt)
if err != nil {
return err
}
}
// insert the top entry to the blocks table.
_, err := tx.Exec("INSERT INTO catchpointblocks (rnd, proto, hdrdata, blkdata) VALUES (?, ?, ?, ?)",
blk.Round(),
blk.CurrentProtocol,
protocol.Encode(&blk.BlockHeader),
protocol.Encode(&blk),
)
if err != nil {
return err
}
return nil
}
func blockCompleteCatchup(tx *sql.Tx) (err error) {
_, err = tx.Exec("ALTER TABLE blocks RENAME TO blocks_old")
if err != nil {
return err
}
_, err = tx.Exec("ALTER TABLE catchpointblocks RENAME TO blocks")
if err != nil {
return err
}
_, err = tx.Exec("DROP TABLE IF EXISTS blocks_old")
if err != nil {
return err
}
return nil
}
// TODO: unused, either actually implement cleanup on catchpoint failure, or delete this
func blockAbortCatchup(tx *sql.Tx) error {
// delete the old catchpointblocks table, if there is such.
for _, stmt := range blockResetExprs {
stmt = strings.Replace(stmt, "blocks", "catchpointblocks", 1)
_, err := tx.Exec(stmt)
if err != nil {
return err
}
}
return nil
}
func blockPutStaging(tx *sql.Tx, blk bookkeeping.Block) (err error) {
// insert the new entry
_, err = tx.Exec("INSERT INTO catchpointblocks (rnd, proto, hdrdata, blkdata) VALUES (?, ?, ?, ?)",
blk.Round(),
blk.CurrentProtocol,
protocol.Encode(&blk.BlockHeader),
protocol.Encode(&blk),
)
if err != nil {
return err
}
return nil
}
func blockEnsureSingleBlock(tx *sql.Tx) (blk bookkeeping.Block, err error) {
// delete all the blocks that aren't the latest one.
var max sql.NullInt64
err = tx.QueryRow("SELECT MAX(rnd) FROM catchpointblocks").Scan(&max)
if err != nil {
if err == sql.ErrNoRows {
err = ledgercore.ErrNoEntry{}
}
return bookkeeping.Block{}, err
}
if !max.Valid {
return bookkeeping.Block{}, ledgercore.ErrNoEntry{}
}
round := basics.Round(max.Int64)
_, err = tx.Exec("DELETE FROM catchpointblocks WHERE rnd<?", round)
if err != nil {
return bookkeeping.Block{}, err
}
var buf []byte
err = tx.QueryRow("SELECT blkdata FROM catchpointblocks WHERE rnd=?", round).Scan(&buf)
if err != nil {
if err == sql.ErrNoRows {
err = ledgercore.ErrNoEntry{Round: round}
}
return
}
err = protocol.Decode(buf, &blk)
return blk, err
}