x/bank/types: fix AddressFromBalancesStore address length overflow (#9112)

addrLen is encoded in a byte, so it's an uint8. The code in
AddressFromBalancesStore cast it to int for bound checking, but wrongly uses "addrLen+1", which can be overflow.

To fix this, just cast addrLen once and use it in all places.

Found by fuzzing added in #9060.

Fixes #9111
This commit is contained in:
Cuong Manh Le 2021-04-15 14:13:55 +07:00 committed by GitHub
parent a4a6e05bab
commit ef69863f46
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 21 additions and 17 deletions

View File

@ -44,12 +44,11 @@ func AddressFromBalancesStore(key []byte) (sdk.AccAddress, error) {
return nil, ErrInvalidKey
}
addrLen := key[0]
if len(key[1:]) < int(addrLen) {
bound := int(addrLen)
if len(key)-1 < bound {
return nil, ErrInvalidKey
}
addr := key[1 : addrLen+1]
return sdk.AccAddress(addr), nil
return key[1 : bound+1], nil
}
// CreateAccountBalancesPrefix creates the prefix for an account's balances.

View File

@ -24,29 +24,34 @@ func TestAddressFromBalancesStore(t *testing.T) {
require.NoError(t, err)
addrLen := len(addr)
require.Equal(t, 20, addrLen)
key := cloneAppend(address.MustLengthPrefix(addr), []byte("stake"))
res, err := types.AddressFromBalancesStore(key)
require.NoError(t, err)
require.Equal(t, res, addr)
}
func TestInvalidAddressFromBalancesStore(t *testing.T) {
tests := []struct {
name string
key []byte
name string
key []byte
wantErr bool
expectedKey sdk.AccAddress
}{
{"empty", []byte("")},
{"invalid", []byte("3AA")},
{"valid", key, false, addr},
{"#9111", []byte("\xff000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000"), false, nil},
{"empty", []byte(""), true, nil},
{"invalid", []byte("3AA"), true, nil},
}
for _, tc := range tests {
tc := tc
t.Run(tc.name, func(t *testing.T) {
t.Parallel()
_, err := types.AddressFromBalancesStore(tc.key)
assert.Error(t, err)
assert.True(t, errors.Is(types.ErrInvalidKey, err))
addr, err := types.AddressFromBalancesStore(tc.key)
if tc.wantErr {
assert.Error(t, err)
assert.True(t, errors.Is(types.ErrInvalidKey, err))
} else {
assert.NoError(t, err)
}
if len(tc.expectedKey) > 0 {
assert.Equal(t, tc.expectedKey, addr)
}
})
}
}