Skip to content

Commit

Permalink
fix overwrite bug (#251)
Browse files Browse the repository at this point in the history
* fix overwrite bug and stop splitting shares of size MsgShareSize

* remove ineffectual code

* review feedback: better docs

Co-authored-by: Ismail Khoffi <[email protected]>

* remove uneeded copy and only fix the source of the bug

Co-authored-by: Ismail Khoffi <[email protected]>

* fix overwrite bug while also being consistent with using NamespacedShares

* update to the latest rsmt2d for the nmt wrapper

Co-authored-by: Ismail Khoffi <[email protected]>
  • Loading branch information
evan-forbes and liamsi committed Sep 21, 2021
1 parent 2bbf58c commit 6ae2135
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 3 deletions.
8 changes: 5 additions & 3 deletions types/shares.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,12 +62,12 @@ func (m Message) MarshalDelimited() ([]byte, error) {
// appendToShares appends raw data as shares.
// Used for messages.
func appendToShares(shares []NamespacedShare, nid namespace.ID, rawData []byte) []NamespacedShare {
if len(rawData) < consts.MsgShareSize {
if len(rawData) <= consts.MsgShareSize {
rawShare := []byte(append(nid, rawData...))
paddedShare := zeroPadIfNecessary(rawShare, consts.ShareSize)
share := NamespacedShare{paddedShare, nid}
shares = append(shares, share)
} else { // len(rawData) >= MsgShareSize
} else { // len(rawData) > MsgShareSize
shares = append(shares, split(rawData, nid)...)
}
return shares
Expand Down Expand Up @@ -102,7 +102,9 @@ func split(rawData []byte, nid namespace.ID) []NamespacedShare {
rawData = rawData[consts.MsgShareSize:]
for len(rawData) > 0 {
shareSizeOrLen := min(consts.MsgShareSize, len(rawData))
rawShare := []byte(append(nid, rawData[:shareSizeOrLen]...))
rawShare := make([]byte, consts.NamespaceSize)
copy(rawShare, nid)
rawShare = append(rawShare, rawData[:shareSizeOrLen]...)
paddedShare := zeroPadIfNecessary(rawShare, consts.ShareSize)
share := NamespacedShare{paddedShare, nid}
shares = append(shares, share)
Expand Down
53 changes: 53 additions & 0 deletions types/shares_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,13 @@ package types

import (
"bytes"
"crypto/rand"
"reflect"
"sort"
"testing"

"github.com/celestiaorg/nmt/namespace"
"github.com/stretchr/testify/assert"
"github.com/tendermint/tendermint/internal/libs/protoio"
"github.com/tendermint/tendermint/pkg/consts"
)
Expand Down Expand Up @@ -176,3 +179,53 @@ func Test_zeroPadIfNecessary(t *testing.T) {
})
}
}

func Test_appendToSharesOverwrite(t *testing.T) {
var shares NamespacedShares

// generate some arbitrary namespaced shares first share that must be split
newShare := generateRandomNamespacedShares(1, consts.MsgShareSize+1)[0]

// make a copy of the portion of the share to check if it's overwritten later
extraCopy := make([]byte, consts.MsgShareSize)
copy(extraCopy, newShare.Share[:consts.MsgShareSize])

// use appendToShares to add our new share
appendToShares(shares, newShare.ID, newShare.Share)

// check if the original share data has been overwritten.
assert.Equal(t, extraCopy, []byte(newShare.Share[:consts.MsgShareSize]))
}

func generateRandomNamespacedShares(count, leafSize int) []NamespacedShare {
shares := generateRandNamespacedRawData(count, consts.NamespaceSize, leafSize)
nsShares := make(NamespacedShares, count)
for i, s := range shares {
nsShares[i] = NamespacedShare{
Share: s[consts.NamespaceSize:],
ID: s[:consts.NamespaceSize],
}
}
return nsShares
}

func generateRandNamespacedRawData(total, nidSize, leafSize int) [][]byte {
data := make([][]byte, total)
for i := 0; i < total; i++ {
nid := make([]byte, nidSize)
rand.Read(nid)
data[i] = nid
}
sortByteArrays(data)
for i := 0; i < total; i++ {
d := make([]byte, leafSize)
rand.Read(d)
data[i] = append(data[i], d...)
}

return data
}

func sortByteArrays(src [][]byte) {
sort.Slice(src, func(i, j int) bool { return bytes.Compare(src[i], src[j]) < 0 })
}

0 comments on commit 6ae2135

Please sign in to comment.