-
Notifications
You must be signed in to change notification settings - Fork 0
/
extendeddatacrossword_test.go
660 lines (579 loc) · 18.2 KB
/
extendeddatacrossword_test.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
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
package rsmt2d
import (
"bytes"
crand "crypto/rand"
"errors"
"fmt"
"math/rand"
"testing"
"github.com/celestiaorg/nmt"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
// shareSize is the size of each share (in bytes) used for testing.
const shareSize = 512
// PseudoFraudProof is an example fraud proof.
// TODO a real fraud proof would have a Merkle proof for each share.
type PseudoFraudProof struct {
Mode int // Row (0) or column (1)
Index uint // Row or column index
Shares [][]byte // Bad shares (nil are missing)
}
func TestRepairExtendedDataSquare(t *testing.T) {
codec := NewLeoRSCodec()
original := createTestEds(codec, shareSize)
rowRoots, err := original.RowRoots()
require.NoError(t, err)
colRoots, err := original.ColRoots()
require.NoError(t, err)
// Verify that an EDS can be repaired after the maximum amount of erasures
t.Run("MaximumErasures", func(t *testing.T) {
flattened := original.Flattened()
flattened[0], flattened[2], flattened[3] = nil, nil, nil
flattened[4], flattened[5], flattened[6], flattened[7] = nil, nil, nil, nil
flattened[8], flattened[9], flattened[10] = nil, nil, nil
flattened[12], flattened[13] = nil, nil
// Re-import the data square.
eds, err := ImportExtendedDataSquare(flattened, codec, NewDefaultTree)
if err != nil {
t.Errorf("ImportExtendedDataSquare failed: %v", err)
}
err = eds.Repair(rowRoots, colRoots)
if err != nil {
t.Errorf("unexpected err while repairing data square: %v, codec: :%s", err, codec.Name())
} else {
assert.Equal(t, original.GetCell(0, 0), bytes.Repeat([]byte{1}, shareSize))
assert.Equal(t, original.GetCell(0, 1), bytes.Repeat([]byte{2}, shareSize))
assert.Equal(t, original.GetCell(1, 0), bytes.Repeat([]byte{3}, shareSize))
assert.Equal(t, original.GetCell(1, 1), bytes.Repeat([]byte{4}, shareSize))
}
})
// Verify that an EDS returns an error when there are too many erasures
t.Run("Unrepairable", func(t *testing.T) {
flattened := original.Flattened()
flattened[0], flattened[2], flattened[3] = nil, nil, nil
flattened[4], flattened[5], flattened[6], flattened[7] = nil, nil, nil, nil
flattened[8], flattened[9], flattened[10] = nil, nil, nil
flattened[12], flattened[13], flattened[14] = nil, nil, nil
// Re-import the data square.
eds, err := ImportExtendedDataSquare(flattened, codec, NewDefaultTree)
if err != nil {
t.Errorf("ImportExtendedDataSquare failed: %v", err)
}
err = eds.Repair(rowRoots, colRoots)
if err != ErrUnrepairableDataSquare {
t.Errorf("did not return an error on trying to repair an unrepairable square")
}
})
t.Run("repair in random order", func(t *testing.T) {
for i := 0; i < 100; i++ {
newEds, err := NewExtendedDataSquare(codec, NewDefaultTree, original.Width(), shareSize)
require.NoError(t, err)
// Randomly set shares in the newEds from the original and repair.
for {
x := rand.Intn(int(original.Width()))
y := rand.Intn(int(original.Width()))
if newEds.GetCell(uint(x), uint(y)) != nil {
continue
}
err = newEds.SetCell(uint(x), uint(y), original.GetCell(uint(x), uint(y)))
require.NoError(t, err)
// Repair square.
err = newEds.Repair(rowRoots, colRoots)
if errors.Is(err, ErrUnrepairableDataSquare) {
continue
}
require.NoError(t, err)
break
}
require.True(t, newEds.Equals(original))
newRowRoots, err := newEds.RowRoots()
require.NoError(t, err)
require.Equal(t, rowRoots, newRowRoots)
newColRoots, err := newEds.ColRoots()
require.NoError(t, err)
require.Equal(t, colRoots, newColRoots)
}
})
}
func TestValidFraudProof(t *testing.T) {
codec := NewLeoRSCodec()
corruptShare := bytes.Repeat([]byte{66}, shareSize)
original := createTestEds(codec, shareSize)
var byzData *ErrByzantineData
corrupted, err := original.deepCopy(codec)
if err != nil {
t.Fatalf("unexpected err while copying original data: %v, codec: :%s", err, codec.Name())
}
corrupted.setCell(0, 0, corruptShare)
assert.NoError(t, err)
rowRoots, err := corrupted.getRowRoots()
assert.NoError(t, err)
colRoots, err := corrupted.getColRoots()
assert.NoError(t, err)
err = corrupted.Repair(rowRoots, colRoots)
errors.As(err, &byzData)
// Construct the fraud proof
fraudProof := PseudoFraudProof{0, byzData.Index, byzData.Shares}
// Verify the fraud proof
// TODO in a real fraud proof, also verify Merkle proof for each non-nil share.
rebuiltShares, err := codec.Decode(fraudProof.Shares)
if err != nil {
t.Errorf("could not decode fraud proof shares; got: %v", err)
}
root, err := corrupted.computeSharesRoot(rebuiltShares, byzData.Axis, fraudProof.Index)
assert.NoError(t, err)
rowRoot, err := corrupted.getRowRoot(fraudProof.Index)
assert.NoError(t, err)
if bytes.Equal(root, rowRoot) {
// If the roots match, then the fraud proof should be for invalid erasure coding.
parityShares, err := codec.Encode(rebuiltShares[0:corrupted.originalDataWidth])
if err != nil {
t.Errorf("could not encode fraud proof shares; %v", fraudProof)
}
startIndex := len(rebuiltShares) - int(corrupted.originalDataWidth)
if bytes.Equal(flattenShares(parityShares), flattenShares(rebuiltShares[startIndex:])) {
t.Errorf("invalid fraud proof %v", fraudProof)
}
}
}
func TestCannotRepairSquareWithBadRoots(t *testing.T) {
codec := NewLeoRSCodec()
corruptShare := bytes.Repeat([]byte{66}, shareSize)
original := createTestEds(codec, shareSize)
rowRoots, err := original.RowRoots()
require.NoError(t, err)
colRoots, err := original.ColRoots()
require.NoError(t, err)
original.setCell(0, 0, corruptShare)
require.NoError(t, err)
err = original.Repair(rowRoots, colRoots)
if err == nil {
t.Errorf("did not return an error on trying to repair a square with bad roots")
}
}
func TestCorruptedEdsReturnsErrByzantineData(t *testing.T) {
corruptShare := bytes.Repeat([]byte{66}, shareSize)
tests := []struct {
name string
coords [][]uint
values [][]byte
}{
{
name: "corrupt a share in the original data square",
coords: [][]uint{{0, 0}},
values: [][]byte{corruptShare},
},
{
name: "corrupt a share in the extended data square",
coords: [][]uint{{0, 3}},
values: [][]byte{corruptShare},
},
{
name: "corrupt a share at (0, 0) and delete shares from the rest of the row",
coords: [][]uint{{0, 0}, {0, 1}, {0, 2}, {0, 3}},
values: [][]byte{corruptShare, nil, nil, nil},
},
{
name: "corrupt a share at (3, 0) and delete part of the first row ",
coords: [][]uint{{3, 0}, {0, 1}, {0, 2}, {0, 3}},
values: [][]byte{corruptShare, nil, nil, nil},
},
{
// This test case sets all shares along the diagonal to nil so that
// the prerepairSanityCheck does not return an error and it can
// verify that solveCrossword returns an ErrByzantineData with
// shares populated.
name: "set all shares along the diagonal to nil and then corrupt the cell at (0, 1)",
// In the ASCII diagram below, _ represents a nil share and C
// represents a corrupted share.
//
// _ C O O
// O _ O O
// O O _ O
// O O O _
coords: [][]uint{{0, 0}, {1, 1}, {2, 2}, {3, 3}, {0, 1}},
values: [][]byte{nil, nil, nil, nil, corruptShare},
},
}
codec := NewLeoRSCodec()
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
eds := createTestEds(codec, shareSize)
// compute the rowRoots prior to corruption
rowRoots, err := eds.getRowRoots()
assert.NoError(t, err)
// compute the colRoots prior to corruption
colRoots, err := eds.getColRoots()
assert.NoError(t, err)
for i, coords := range test.coords {
rowIdx := coords[0]
colIdx := coords[1]
eds.setCell(rowIdx, colIdx, test.values[i])
}
err = eds.Repair(rowRoots, colRoots)
assert.Error(t, err)
// due to parallelisation, the ErrByzantineData axis may be either row or col
var byzData *ErrByzantineData
assert.ErrorAs(t, err, &byzData, "did not return a ErrByzantineData for a bad col or row")
assert.NotEmpty(t, byzData.Shares)
assert.Contains(t, byzData.Shares, corruptShare)
})
}
}
func BenchmarkRepair(b *testing.B) {
// For different ODS sizes
for originalDataWidth := 4; originalDataWidth <= 512; originalDataWidth *= 2 {
codec := NewLeoRSCodec()
if codec.MaxChunks() < originalDataWidth*originalDataWidth {
// Only test codecs that support this many shares
continue
}
// Generate a new range original data square then extend it
square := genRandDS(originalDataWidth, shareSize)
eds, err := ComputeExtendedDataSquare(square, codec, NewDefaultTree)
if err != nil {
b.Error(err)
}
extendedDataWidth := originalDataWidth * 2
rowRoots, err := eds.RowRoots()
assert.NoError(b, err)
colRoots, err := eds.ColRoots()
assert.NoError(b, err)
b.Run(
fmt.Sprintf(
"%s %dx%dx%d ODS",
codec.Name(),
originalDataWidth,
originalDataWidth,
len(square[0]),
),
func(b *testing.B) {
for n := 0; n < b.N; n++ {
b.StopTimer()
flattened := eds.Flattened()
// Randomly remove 1/2 of the shares of each row
for r := 0; r < extendedDataWidth; r++ {
for c := 0; c < originalDataWidth; {
ind := rand.Intn(extendedDataWidth)
if flattened[r*extendedDataWidth+ind] == nil {
continue
}
flattened[r*extendedDataWidth+ind] = nil
c++
}
}
// Re-import the data square.
eds, _ = ImportExtendedDataSquare(flattened, codec, NewDefaultTree)
b.StartTimer()
err := eds.Repair(
rowRoots,
colRoots,
)
if err != nil {
b.Error(err)
}
}
},
)
}
}
func createTestEds(codec Codec, shareSize int) *ExtendedDataSquare {
ones := bytes.Repeat([]byte{1}, shareSize)
twos := bytes.Repeat([]byte{2}, shareSize)
threes := bytes.Repeat([]byte{3}, shareSize)
fours := bytes.Repeat([]byte{4}, shareSize)
eds, err := ComputeExtendedDataSquare([][]byte{
ones, twos,
threes, fours,
}, codec, NewDefaultTree)
if err != nil {
panic(err)
}
return eds
}
func TestCorruptedEdsReturnsErrByzantineData_UnorderedShares(t *testing.T) {
shareSize := 512
namespaceSize := 1
one := bytes.Repeat([]byte{1}, shareSize)
two := bytes.Repeat([]byte{2}, shareSize)
three := bytes.Repeat([]byte{3}, shareSize)
sharesValue := []int{1, 2, 3, 4}
tests := []struct {
name string
coords [][]uint
values [][]byte
wantErr bool
corruptedAxis Axis
corruptedIndex uint
}{
{
name: "no corruption",
wantErr: false,
},
{
// disturbs the order of shares in the first row, erases the rest of the eds
name: "rows with unordered shares",
wantErr: true, // repair should error out during root construction
corruptedAxis: Row,
coords: [][]uint{
{0, 0},
{0, 1},
{1, 0},
{1, 1},
{1, 2},
{1, 3},
{2, 0},
{2, 1},
{2, 2},
{2, 3},
{3, 0},
{3, 1},
{3, 2},
{3, 3},
},
values: [][]byte{
two, one,
nil, nil, nil, nil,
nil, nil, nil, nil,
nil, nil, nil, nil,
},
corruptedIndex: 0,
},
{
// disturbs the order of shares in the first column, erases the rest of the eds
name: "columns with unordered shares",
wantErr: true, // repair should error out during root construction
corruptedAxis: Col,
coords: [][]uint{
{0, 0},
{0, 1},
{0, 2},
{0, 3},
{1, 0},
{1, 1},
{1, 2},
{1, 3},
{2, 1},
{2, 2},
{2, 3},
{3, 1},
{3, 2},
{3, 3},
},
values: [][]byte{
three, nil, nil, nil,
one, nil, nil, nil,
nil, nil, nil,
nil, nil, nil,
},
corruptedIndex: 0,
},
}
codec := NewLeoRSCodec()
// create a DA header
eds := createTestEdsWithNMT(t, codec, shareSize, namespaceSize, 1, 2, 3, 4)
assert.NotNil(t, eds)
dAHeaderRoots, err := eds.getRowRoots()
assert.NoError(t, err)
dAHeaderCols, err := eds.getColRoots()
assert.NoError(t, err)
for _, test := range tests {
t.Run(test.name, func(t *testing.T) {
// create an eds with the given shares
corruptEds := createTestEdsWithNMT(t, codec, shareSize, namespaceSize, sharesValue...)
assert.NotNil(t, corruptEds)
// corrupt it by setting the values at the given coordinates
for i, coords := range test.coords {
rowIdx := coords[0]
colIdx := coords[1]
corruptEds.setCell(rowIdx, colIdx, test.values[i])
}
err = corruptEds.Repair(dAHeaderRoots, dAHeaderCols)
assert.Equal(t, err != nil, test.wantErr)
if test.wantErr {
var byzErr *ErrByzantineData
assert.ErrorAs(t, err, &byzErr)
errors.As(err, &byzErr)
assert.Equal(t, byzErr.Axis, test.corruptedAxis)
assert.Equal(t, byzErr.Index, test.corruptedIndex)
}
})
}
}
func TestFuzzRandByzantine(t *testing.T) {
// This test is slow and should be skipped during normal testing
t.Skip()
for i := 0; i < 10000; i++ {
TestErrRandByzantine(t)
}
}
func TestErrRandByzantine(t *testing.T) {
codec := NewLeoRSCodec()
original, corrupted, idx := randCorruptedEDS(t, codec, 8)
require.False(t, original.Equals(corrupted), "corrupted eds is equal to original eds")
newEds, err := repairNewFromCorrupted(codec, corrupted, idx)
if err != nil && newEds != nil {
// visual check of the new eds
prettyPrintEds(newEds)
fmt.Println("new eds is original", original.Equals(newEds))
fmt.Println("new eds is corrupted", corrupted.Equals(newEds))
}
require.NoError(t, err, "failure to reconstruct the extended data square")
}
func randCorruptedEDS(t require.TestingT, codec Codec, size int) (original, corrupted *ExtendedDataSquare, idx int) {
ds := genRandDS(size, shareSize)
original, err := ComputeExtendedDataSquare(ds, codec, NewDefaultTree)
require.NoError(t, err)
// create random share
randShare := make([]byte, shareSize)
_, _ = crand.Read(randShare)
// choose a random share to corrupt
shares := original.Flattened()
idx = rand.Intn(len(shares))
// copy namespace to avoid namespace ordering issues
copy(randShare, shares[idx][:nmt.DefaultNamespaceIDLen])
// corrupt the share
shares[idx] = randShare
corrupted, err = ImportExtendedDataSquare(
shares,
codec,
NewDefaultTree)
require.NoError(t, err)
return original, corrupted, idx
}
func repairNewFromCorrupted(codec Codec, corrupted *ExtendedDataSquare, corruptedIdx int) (*ExtendedDataSquare, error) {
samples := make([][]bool, corrupted.Width())
for i := range samples {
samples[i] = make([]bool, corrupted.Width())
}
square, err := NewExtendedDataSquare(
codec,
NewDefaultTree,
corrupted.Width(),
shareSize,
)
if err != nil {
return nil, fmt.Errorf("failure to create extended data square: %w", err)
}
// set corrupted share first
corruptedX, corruptedY := corruptedIdx/int(corrupted.Width()), corruptedIdx%int(corrupted.Width())
share := corrupted.GetCell(uint(corruptedX), uint(corruptedY))
err = square.SetCell(uint(corruptedX), uint(corruptedY), share)
if err != nil {
return nil, fmt.Errorf("failure to set corrupted share: %w", err)
}
rowRoots, err := corrupted.RowRoots()
if err != nil {
return nil, fmt.Errorf("failure to get row roots: %w", err)
}
colRoots, err := corrupted.ColRoots()
if err != nil {
return nil, fmt.Errorf("failure to get column roots: %w", err)
}
// loop until repaired or byzantine error
for {
repaired, err := fillRandomCellAndRepair(corrupted, square, rowRoots, colRoots, samples)
if repaired {
prettyPrintSamples(samples, corruptedIdx)
return square, errors.New("no byzantine error")
}
var errByz *ErrByzantineData
if errors.As(err, &errByz) {
err = checkErrByzantine(errByz, corruptedX, corruptedY)
if err != nil {
prettyPrintSamples(samples, corruptedIdx)
}
return square, err
}
}
}
func fillRandomCellAndRepair(
eds, square *ExtendedDataSquare,
rowRoots, colRoots [][]byte,
samples [][]bool,
) (repaired bool, err error) {
// select random share
x, y := rand.Intn(int(eds.Width())), rand.Intn(int(eds.Width()))
// skip if share is already set
if square.GetCell(uint(x), uint(y)) != nil {
return false, nil
}
share := eds.GetCell(uint(x), uint(y))
err = square.SetCell(uint(x), uint(y), share)
if err != nil {
return false, fmt.Errorf("failure to set cell: %w", err)
}
samples[x][y] = true
err = square.Repair(rowRoots, colRoots)
if err != nil {
return false, err
}
return true, nil
}
func checkErrByzantine(errByz *ErrByzantineData, x, y int) error {
var axisIdx int
if errByz.Axis == Row {
axisIdx = x
} else {
axisIdx = y
}
if errByz.Index != uint(axisIdx) {
return fmt.Errorf("byzantine error index mismatch: got %s, want %d", errByz, axisIdx)
}
return nil
}
// prettyPrintSamples prints coordinates of shares in the 2D array
func prettyPrintSamples(samples [][]bool, corruptedIdx int) {
fmt.Println("SAMPLES", corruptedIdx)
for i, row := range samples {
for j, sampled := range row {
if corruptedIdx == i*len(samples)+j {
if !sampled {
fmt.Print("x ")
continue
}
fmt.Print("X ")
continue
}
if !sampled {
fmt.Print(". ")
continue
}
fmt.Print("O ")
}
fmt.Println()
}
}
func prettyPrintEds(eds *ExtendedDataSquare) {
fmt.Println("EDS")
for r := 0; r < int(eds.Width()); r++ {
for _, sh := range eds.Row(uint(r)) {
if sh == nil {
fmt.Print(". ")
continue
}
fmt.Print("O ")
}
fmt.Println()
}
fmt.Println()
}
// createTestEdsWithNMT creates an extended data square with the given shares and namespace size.
// Shares are placed in row-major order.
// The first namespaceSize bytes of each share are treated as its namespace.
// Roots of the extended data square are computed using namespace merkle trees.
func createTestEdsWithNMT(t *testing.T, codec Codec, shareSize, namespaceSize int, sharesValue ...int) *ExtendedDataSquare {
// the first namespaceSize bytes of each share are the namespace
assert.True(t, shareSize > namespaceSize)
// create shares of shareSize bytes
shares := make([][]byte, len(sharesValue))
for i, shareValue := range sharesValue {
shares[i] = bytes.Repeat([]byte{byte(shareValue)}, shareSize)
}
edsWidth := 4 // number of shares per row/column in the extended data square
odsWidth := edsWidth / 2 // number of shares per row/column in the original data square
eds, err := ComputeExtendedDataSquare(shares, codec, newErasuredNamespacedMerkleTreeConstructor(uint64(odsWidth), nmt.NamespaceIDSize(namespaceSize)))
require.NoError(t, err)
return eds
}