-
Notifications
You must be signed in to change notification settings - Fork 3.7k
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
feat: TxRaw must follow ADR 027 (backport #9743) #9754
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
@@ -1,6 +1,10 @@ | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
package tx | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import ( | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"fmt" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"google.golang.org/protobuf/encoding/protowire" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"github.com/cosmos/cosmos-sdk/codec/unknownproto" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
sdk "github.com/cosmos/cosmos-sdk/types" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -11,10 +15,16 @@ import ( | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// DefaultTxDecoder returns a default protobuf TxDecoder using the provided Marshaler. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func DefaultTxDecoder(cdc codec.ProtoCodecMarshaler) sdk.TxDecoder { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return func(txBytes []byte) (sdk.Tx, error) { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Make sure txBytes follow ADR-027. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
err := rejectNonADR027(txBytes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, sdkerrors.Wrap(sdkerrors.ErrTxDecode, err.Error()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
var raw tx.TxRaw | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// reject all unknown proto fields in the root TxRaw | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
err := unknownproto.RejectUnknownFieldsStrict(txBytes, &raw, cdc.InterfaceRegistry()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
err = unknownproto.RejectUnknownFieldsStrict(txBytes, &raw, cdc.InterfaceRegistry()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if err != nil { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil, sdkerrors.Wrap(sdkerrors.ErrTxDecode, err.Error()) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -79,3 +89,77 @@ func DefaultJSONTxDecoder(cdc codec.ProtoCodecMarshaler) sdk.TxDecoder { | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
}, nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// rejectNonADR027 rejects txBytes that do not follow ADR-027. This function | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// only checks that: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// - field numbers are in ascending order (1, 2, and potentially multiple 3s), | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// - and varints as as short as possible. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// All other ADR-027 edge cases (e.g. TxRaw fields having default values) will | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// not happen with TxRaw. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+97
to
+98
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.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func rejectNonADR027(txBytes []byte) 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. how about moving the new functions to a separate package? It seams it's not necessary tide to 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. It is actually and maybe should just be renamed 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. Yeah this is not a generic ADR-027 checker, but a simpler version of it that checks it for txBytes |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Make sure all fields are ordered in ascending order with this variable. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
prevTagNum := protowire.Number(0) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. should we better document the process?
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for len(txBytes) > 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
tagNum, wireType, m := protowire.ConsumeTag(txBytes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if m < 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("invalid length; %w", protowire.ParseError(m)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if wireType != protowire.BytesType { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("expected %d wire type, got %d", protowire.VarintType, wireType) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if tagNum < prevTagNum { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("txRaw must follow ADR-027, got tagNum %d after tagNum %d", tagNum, prevTagNum) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
prevTagNum = tagNum | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// All 3 fields of TxRaw have wireType == 2, so their next component | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// is a varint. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// We make sure that the varint is as short as possible. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
lengthPrefix, m := protowire.ConsumeVarint(txBytes[m:]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if m < 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("invalid length; %w", protowire.ParseError(m)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
n := varintMinLength(lengthPrefix) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if n != m { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("length prefix varint for tagNum %d is not as short as possible, read %d, only need %d", tagNum, m, n) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Skip over the bytes that store fieldNumber and wireType bytes. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_, _, m = protowire.ConsumeField(txBytes) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
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. should we also verify the "inner" type serialization? 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. 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. OK, I made a suggestion in the new PR to add a short note about it. |
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if m < 0 { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return fmt.Errorf("invalid length; %w", protowire.ParseError(m)) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
txBytes = txBytes[m:] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return nil | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// varintMinLength returns the minimum number of bytes necessary to encode an | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// uint using varint encoding. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
func varintMinLength(n uint64) int { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
switch { | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
// Note: 1<<N == 2**N. | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<7: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 1 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<14: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 2 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<21: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 3 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<28: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 4 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<35: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 5 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<42: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 6 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<49: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 7 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<56: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 8 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
case n < 1<<63: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+146
to
+160
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.
Suggested change
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.
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.
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 9 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
default: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return 10 | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
} |
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.