-
Notifications
You must be signed in to change notification settings - Fork 674
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
merkledb
-- encode lengths as uvarints
#2039
Merged
Merged
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
7a3f947
encode lengths as uint64
570a6c6
nit
22aa4c9
remove unneeded helper
6d74d81
rename decodeUint64 to decodeUint
3af8159
nit
34e7fd5
change decodeUint to return uint64
aa2939e
comment fix
b288002
remove impossible case
88a7070
appease linter
45af0dd
Merge branch 'dev' into merkledb-codec-unit
2bea352
fix decoding
576e1df
Merge branch 'merkledb-codec-unit' of github.com:ava-labs/avalanchego…
e4c3133
nit
52fbebe
fix decoding
7d36d1f
fix decoding
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,16 +42,13 @@ var ( | |
trueBytes = []byte{trueByte} | ||
falseBytes = []byte{falseByte} | ||
|
||
errNegativeNumChildren = errors.New("number of children is negative") | ||
errTooManyChildren = fmt.Errorf("length of children list is larger than branching factor of %d", NodeBranchFactor) | ||
errChildIndexTooLarge = fmt.Errorf("invalid child index. Must be less than branching factor of %d", NodeBranchFactor) | ||
errNegativeNibbleLength = errors.New("nibble length is negative") | ||
errIntTooLarge = errors.New("integer too large to be decoded") | ||
errLeadingZeroes = errors.New("varint has leading zeroes") | ||
errInvalidBool = errors.New("decoded bool is neither true nor false") | ||
errNonZeroNibblePadding = errors.New("nibbles should be padded with 0s") | ||
errExtraSpace = errors.New("trailing buffer space") | ||
errNegativeSliceLength = errors.New("negative slice length") | ||
errIntOverflow = errors.New("value overflows int") | ||
) | ||
|
||
// encoderDecoder defines the interface needed by merkleDB to marshal | ||
|
@@ -86,6 +83,8 @@ func newCodec() encoderDecoder { | |
// Note that bytes.Buffer.Write always returns nil so we | ||
// can ignore its return values in [codecImpl] methods. | ||
type codecImpl struct { | ||
// Invariant: Every byte slice returned by [varIntPool] has | ||
// length [binary.MaxVarintLen64]. | ||
varIntPool sync.Pool | ||
} | ||
|
||
|
@@ -98,12 +97,12 @@ func (c *codecImpl) encodeDBNode(n *dbNode) []byte { | |
) | ||
|
||
c.encodeMaybeByteSlice(buf, n.value) | ||
c.encodeInt(buf, numChildren) | ||
c.encodeUint(buf, uint64(numChildren)) | ||
// Note we insert children in order of increasing index | ||
// for determinism. | ||
for index := byte(0); index < NodeBranchFactor; index++ { | ||
if entry, ok := n.children[index]; ok { | ||
c.encodeInt(buf, int(index)) | ||
c.encodeUint(buf, uint64(index)) | ||
path := entry.compressedPath.Serialize() | ||
c.encodeSerializedPath(buf, path) | ||
_, _ = buf.Write(entry.id[:]) | ||
|
@@ -121,12 +120,12 @@ func (c *codecImpl) encodeHashValues(hv *hashValues) []byte { | |
buf = bytes.NewBuffer(make([]byte, 0, estimatedLen)) | ||
) | ||
|
||
c.encodeInt(buf, numChildren) | ||
c.encodeUint(buf, uint64(numChildren)) | ||
|
||
// ensure that the order of entries is consistent | ||
for index := byte(0); index < NodeBranchFactor; index++ { | ||
if entry, ok := hv.Children[index]; ok { | ||
c.encodeInt(buf, int(index)) | ||
c.encodeUint(buf, uint64(index)) | ||
_, _ = buf.Write(entry.id[:]) | ||
} | ||
} | ||
|
@@ -149,26 +148,24 @@ func (c *codecImpl) decodeDBNode(b []byte, n *dbNode) error { | |
} | ||
n.value = value | ||
|
||
numChildren, err := c.decodeInt(src) | ||
numChildren, err := c.decodeUint(src) | ||
switch { | ||
case err != nil: | ||
return err | ||
case numChildren < 0: | ||
return errNegativeNumChildren | ||
case numChildren > NodeBranchFactor: | ||
return errTooManyChildren | ||
case numChildren > src.Len()/minChildLen: | ||
case numChildren > uint64(src.Len()/minChildLen): | ||
return io.ErrUnexpectedEOF | ||
} | ||
|
||
n.children = make(map[byte]child, NodeBranchFactor) | ||
previousChild := -1 | ||
for i := 0; i < numChildren; i++ { | ||
index, err := c.decodeInt(src) | ||
var previousChild uint64 | ||
for i := uint64(0); i < numChildren; i++ { | ||
index, err := c.decodeUint(src) | ||
if err != nil { | ||
return err | ||
} | ||
if index <= previousChild || index >= NodeBranchFactor { | ||
if index >= NodeBranchFactor || (i != 0 && index <= previousChild) { | ||
return errChildIndexTooLarge | ||
} | ||
previousChild = index | ||
|
@@ -221,25 +218,19 @@ func (*codecImpl) decodeBool(src *bytes.Reader) (bool, error) { | |
} | ||
} | ||
|
||
func (c *codecImpl) encodeInt(dst *bytes.Buffer, value int) { | ||
c.encodeInt64(dst, int64(value)) | ||
} | ||
|
||
func (*codecImpl) decodeInt(src *bytes.Reader) (int, error) { | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Changed to |
||
func (*codecImpl) decodeUint(src *bytes.Reader) (uint64, error) { | ||
// To ensure encoding/decoding is canonical, we need to check for leading | ||
// zeroes in the varint. | ||
// The last byte of the varint we read is the most significant byte. | ||
// If it's 0, then it's a leading zero, which is considered invalid in the | ||
// canonical encoding. | ||
startLen := src.Len() | ||
val64, err := binary.ReadVarint(src) | ||
switch { | ||
case err == io.EOF: | ||
return 0, io.ErrUnexpectedEOF | ||
case err != nil: | ||
val64, err := binary.ReadUvarint(src) | ||
if err != nil { | ||
if err == io.EOF { | ||
return 0, io.ErrUnexpectedEOF | ||
} | ||
return 0, err | ||
case val64 > math.MaxInt: | ||
return 0, errIntTooLarge | ||
} | ||
endLen := src.Len() | ||
|
||
|
@@ -257,12 +248,12 @@ func (*codecImpl) decodeInt(src *bytes.Reader) (int, error) { | |
} | ||
} | ||
|
||
return int(val64), nil | ||
return val64, nil | ||
} | ||
|
||
func (c *codecImpl) encodeInt64(dst *bytes.Buffer, value int64) { | ||
func (c *codecImpl) encodeUint(dst *bytes.Buffer, value uint64) { | ||
buf := c.varIntPool.Get().([]byte) | ||
size := binary.PutVarint(buf, value) | ||
size := binary.PutUvarint(buf, value) | ||
_, _ = dst.Write(buf[:size]) | ||
c.varIntPool.Put(buf) | ||
} | ||
|
@@ -297,17 +288,15 @@ func (c *codecImpl) decodeByteSlice(src *bytes.Reader) ([]byte, error) { | |
return nil, io.ErrUnexpectedEOF | ||
} | ||
|
||
length, err := c.decodeInt(src) | ||
length, err := c.decodeUint(src) | ||
switch { | ||
case err == io.EOF: | ||
return nil, io.ErrUnexpectedEOF | ||
case err != nil: | ||
return nil, err | ||
case length < 0: | ||
return nil, errNegativeSliceLength | ||
case length == 0: | ||
return nil, nil | ||
case length > src.Len(): | ||
case length > uint64(src.Len()): | ||
return nil, io.ErrUnexpectedEOF | ||
} | ||
|
||
|
@@ -320,7 +309,7 @@ func (c *codecImpl) decodeByteSlice(src *bytes.Reader) ([]byte, error) { | |
} | ||
|
||
func (c *codecImpl) encodeByteSlice(dst *bytes.Buffer, value []byte) { | ||
c.encodeInt(dst, len(value)) | ||
c.encodeUint(dst, uint64(len(value))) | ||
if value != nil { | ||
_, _ = dst.Write(value) | ||
} | ||
|
@@ -340,7 +329,7 @@ func (*codecImpl) decodeID(src *bytes.Reader) (ids.ID, error) { | |
} | ||
|
||
func (c *codecImpl) encodeSerializedPath(dst *bytes.Buffer, s SerializedPath) { | ||
c.encodeInt(dst, s.NibbleLength) | ||
c.encodeUint(dst, uint64(s.NibbleLength)) | ||
_, _ = dst.Write(s.Value) | ||
} | ||
|
||
|
@@ -349,15 +338,16 @@ func (c *codecImpl) decodeSerializedPath(src *bytes.Reader) (SerializedPath, err | |
return SerializedPath{}, io.ErrUnexpectedEOF | ||
} | ||
|
||
var ( | ||
result SerializedPath | ||
err error | ||
) | ||
if result.NibbleLength, err = c.decodeInt(src); err != nil { | ||
nibbleLength, err := c.decodeUint(src) | ||
if err != nil { | ||
return SerializedPath{}, err | ||
} | ||
if result.NibbleLength < 0 { | ||
return SerializedPath{}, errNegativeNibbleLength | ||
if nibbleLength > math.MaxInt { | ||
return SerializedPath{}, errIntOverflow | ||
} | ||
|
||
result := SerializedPath{ | ||
NibbleLength: int(nibbleLength), | ||
} | ||
pathBytesLen := result.NibbleLength >> 1 | ||
hasOddLen := result.hasOddLength() | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We only encode non-negative ints so this was replaced with
encodeUint64