talelbaz 8a309a7d2a
Upgradability mechanisms script version (#1313)
* ''

* ''

* ''

* Changes genesis block version to 0.

* a

* a

* All tests are done.

* All tests passed for changed block version from int32 to uint16

* Adds validation of rejecting blocks with unknown versions.

* Changes txn version from int32 to uint16.

* .

* Adds comments to exported functions.

* Change functions name from ConvertFromRpcScriptPubKeyToRPCScriptPubKey to ConvertFromAppMsgRPCScriptPubKeyToRPCScriptPubKey and from ConvertFromRPCScriptPubKeyToRpcScriptPubKey to ConvertFromRPCScriptPubKeyToAppMsgRPCScriptPubKey

* change comment to "ScriptPublicKey represents a Kaspad ScriptPublicKey"

* delete part (tx.Version < 0) that cannot be exist on the if statement.

* Revert protobuf version.

* Fix a comment.

* Fix a comment.

* Rename a variable.

* Rename a variable.

* Remove a const.

* Rename a type.

* Rename a field.

* Rename a field.

* Remove commented-out code.

* Remove dangerous nil case in DomainTransactionOutput.Clone().

* Remove a constant.

* Fix a string.

* Fix wrong totalScriptPubKeySize in transactionMassStandalonePart.

* Remove a constant.

* Remove an unused error.

* Fix a serialization error.

* Specify version types to be uint16 explicitly.

* Use constants.ScriptPublicKeyVersion.

* Fix a bad test.

* Remove some whitespace.

* Add a case to utxoEntry.Equal().

* Rename scriptPubKey to scriptPublicKey.

* Remove a TODO.

* Rename constants.

* Rename a variable.

* Add version to parseShortForm.

Co-authored-by: tal <tal@daglabs.com>
Co-authored-by: stasatdaglabs <stas@daglabs.com>
2021-01-05 17:50:09 +02:00

213 lines
6.1 KiB
Go

package consensushashing
import (
"io"
"github.com/kaspanet/kaspad/domain/consensus/utils/serialization"
"github.com/kaspanet/kaspad/domain/consensus/model/externalapi"
"github.com/kaspanet/kaspad/domain/consensus/utils/hashes"
"github.com/kaspanet/kaspad/domain/consensus/utils/transactionhelper"
"github.com/kaspanet/kaspad/util/binaryserializer"
"github.com/pkg/errors"
)
// txEncoding is a bitmask defining which transaction fields we
// want to encode and which to ignore.
type txEncoding uint8
const (
txEncodingFull txEncoding = 0
// TODO: Consider if we need to ever exclude the payload, or use a different approach to partial nodes
// where we'll get rid of PayloadHash field, never exclude the payload when hashing, and provide
// partial nodes with their relevant block region with a merkle proof.
txEncodingExcludePayload txEncoding = 1 << iota
txEncodingExcludeSignatureScript
)
// TransactionHashForSigning hashes the transaction and the given hash type in a way that is intended for
// signatures.
func TransactionHashForSigning(tx *externalapi.DomainTransaction, hashType uint32) *externalapi.DomainHash {
// Encode the header and hash everything prior to the number of
// transactions.
writer := hashes.NewTransactionSigningHashWriter()
err := serializeTransaction(writer, tx, txEncodingExcludePayload)
if err != nil {
// It seems like this could only happen if the writer returned an error.
// and this writer should never return an error (no allocations or possible failures)
// the only non-writer error path here is unknown types in `WriteElement`
panic(errors.Wrap(err, "TransactionHashForSigning() failed. this should never fail for structurally-valid transactions"))
}
err = serialization.WriteElement(writer, hashType)
if err != nil {
panic(errors.Wrap(err, "this should never happen. Hash digest should never return an error"))
}
return writer.Finalize()
}
// TransactionHash returns the transaction hash.
func TransactionHash(tx *externalapi.DomainTransaction) *externalapi.DomainHash {
// Encode the header and hash everything prior to the number of
// transactions.
writer := hashes.NewTransactionHashWriter()
err := serializeTransaction(writer, tx, txEncodingExcludePayload)
if err != nil {
// It seems like this could only happen if the writer returned an error.
// and this writer should never return an error (no allocations or possible failures)
// the only non-writer error path here is unknown types in `WriteElement`
panic(errors.Wrap(err, "TransactionHash() failed. this should never fail for structurally-valid transactions"))
}
return writer.Finalize()
}
// TransactionID generates the Hash for the transaction without the signature script and payload field.
func TransactionID(tx *externalapi.DomainTransaction) *externalapi.DomainTransactionID {
// If transaction ID is already cached, return it
if tx.ID != nil {
return tx.ID
}
// Encode the transaction, replace signature script with zeroes, cut off
// payload and hash the result.
var encodingFlags txEncoding
if !transactionhelper.IsCoinBase(tx) {
encodingFlags = txEncodingExcludeSignatureScript | txEncodingExcludePayload
}
writer := hashes.NewTransactionIDWriter()
err := serializeTransaction(writer, tx, encodingFlags)
if err != nil {
// this writer never return errors (no allocations or possible failures) so errors can only come from validity checks,
// and we assume we never construct malformed transactions.
panic(errors.Wrap(err, "TransactionID() failed. this should never fail for structurally-valid transactions"))
}
transactionID := externalapi.DomainTransactionID(*writer.Finalize())
tx.ID = &transactionID
return tx.ID
}
func serializeTransaction(w io.Writer, tx *externalapi.DomainTransaction, encodingFlags txEncoding) error {
err := binaryserializer.PutUint16(w, tx.Version)
if err != nil {
return err
}
count := uint64(len(tx.Inputs))
err = serialization.WriteElement(w, count)
if err != nil {
return err
}
for _, ti := range tx.Inputs {
err = writeTransactionInput(w, ti, encodingFlags)
if err != nil {
return err
}
}
count = uint64(len(tx.Outputs))
err = serialization.WriteElement(w, count)
if err != nil {
return err
}
for _, output := range tx.Outputs {
err = writeTxOut(w, output)
if err != nil {
return err
}
}
err = binaryserializer.PutUint64(w, tx.LockTime)
if err != nil {
return err
}
_, err = w.Write(tx.SubnetworkID[:])
if err != nil {
return err
}
err = binaryserializer.PutUint64(w, tx.Gas)
if err != nil {
return err
}
err = serialization.WriteElement(w, &tx.PayloadHash)
if err != nil {
return err
}
if encodingFlags&txEncodingExcludePayload != txEncodingExcludePayload {
err = writeVarBytes(w, tx.Payload)
if err != nil {
return err
}
} else {
err = writeVarBytes(w, []byte{})
if err != nil {
return err
}
}
return nil
}
// writeTransactionInput encodes ti to the kaspa protocol encoding for a transaction
// input to w.
func writeTransactionInput(w io.Writer, ti *externalapi.DomainTransactionInput, encodingFlags txEncoding) error {
err := writeOutpoint(w, &ti.PreviousOutpoint)
if err != nil {
return err
}
if encodingFlags&txEncodingExcludeSignatureScript != txEncodingExcludeSignatureScript {
err = writeVarBytes(w, ti.SignatureScript)
} else {
err = writeVarBytes(w, []byte{})
}
if err != nil {
return err
}
return binaryserializer.PutUint64(w, ti.Sequence)
}
func writeOutpoint(w io.Writer, outpoint *externalapi.DomainOutpoint) error {
_, err := w.Write(outpoint.TransactionID.ByteSlice())
if err != nil {
return err
}
return binaryserializer.PutUint32(w, outpoint.Index)
}
func writeVarBytes(w io.Writer, data []byte) error {
dataLength := uint64(len(data))
err := serialization.WriteElement(w, dataLength)
if err != nil {
return err
}
_, err = w.Write(data)
return err
}
func writeTxOut(w io.Writer, to *externalapi.DomainTransactionOutput) error {
err := binaryserializer.PutUint64(w, to.Value)
if err != nil {
return err
}
err = binaryserializer.PutUint16(w, to.ScriptPublicKey.Version)
if err != nil {
return err
}
return writeVarBytes(w, to.ScriptPublicKey.Script)
}