LCOV - code coverage report
Current view: top level - src/primitives - transaction.h (source / functions) Hit Total Coverage
Test: fuzz_coverage.info Lines: 79 134 59.0 %
Date: 2023-11-06 23:13:05 Functions: 65 227 28.6 %
Branches: 38 164 23.2 %

           Branch data     Line data    Source code
       1                 :            : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :            : // Copyright (c) 2009-2022 The Bitcoin Core developers
       3                 :            : // Distributed under the MIT software license, see the accompanying
       4                 :            : // file COPYING or http://www.opensource.org/licenses/mit-license.php.
       5                 :            : 
       6                 :            : #ifndef BITCOIN_PRIMITIVES_TRANSACTION_H
       7                 :            : #define BITCOIN_PRIMITIVES_TRANSACTION_H
       8                 :            : 
       9                 :            : #include <consensus/amount.h>
      10                 :            : #include <prevector.h>
      11                 :            : #include <script/script.h>
      12                 :            : #include <serialize.h>
      13                 :            : #include <uint256.h>
      14                 :            : 
      15                 :            : #include <cstddef>
      16                 :            : #include <cstdint>
      17                 :            : #include <ios>
      18                 :            : #include <limits>
      19                 :            : #include <memory>
      20                 :            : #include <numeric>
      21                 :            : #include <string>
      22                 :            : #include <tuple>
      23                 :            : #include <utility>
      24                 :            : #include <vector>
      25                 :            : 
      26                 :            : /**
      27                 :            :  * A flag that is ORed into the protocol version to designate that a transaction
      28                 :            :  * should be (un)serialized without witness data.
      29                 :            :  * Make sure that this does not collide with any of the values in `version.h`
      30                 :            :  * or with `ADDRV2_FORMAT`.
      31                 :            :  */
      32                 :            : static const int SERIALIZE_TRANSACTION_NO_WITNESS = 0x40000000;
      33                 :            : 
      34                 :            : /** An outpoint - a combination of a transaction hash and an index n into its vout */
      35                 :            : class COutPoint
      36                 :            : {
      37                 :            : public:
      38                 :            :     uint256 hash;
      39                 :            :     uint32_t n;
      40                 :            : 
      41                 :            :     static constexpr uint32_t NULL_INDEX = std::numeric_limits<uint32_t>::max();
      42                 :            : 
      43                 :        206 :     COutPoint(): n(NULL_INDEX) { }
      44                 :       1800 :     COutPoint(const uint256& hashIn, uint32_t nIn): hash(hashIn), n(nIn) { }
      45                 :            : 
      46                 :      11436 :     SERIALIZE_METHODS(COutPoint, obj) { READWRITE(obj.hash, obj.n); }
      47                 :            : 
      48                 :        200 :     void SetNull() { hash.SetNull(); n = NULL_INDEX; }
      49         [ +  + ]:       3402 :     bool IsNull() const { return (hash.IsNull() && n == NULL_INDEX); }
      50                 :            : 
      51                 :          0 :     friend bool operator<(const COutPoint& a, const COutPoint& b)
      52                 :            :     {
      53                 :          0 :         int cmp = a.hash.Compare(b.hash);
      54 [ #  # ][ #  # ]:          0 :         return cmp < 0 || (cmp == 0 && a.n < b.n);
      55                 :            :     }
      56                 :            : 
      57                 :        756 :     friend bool operator==(const COutPoint& a, const COutPoint& b)
      58                 :            :     {
      59         [ +  - ]:        756 :         return (a.hash == b.hash && a.n == b.n);
      60                 :            :     }
      61                 :            : 
      62                 :            :     friend bool operator!=(const COutPoint& a, const COutPoint& b)
      63                 :            :     {
      64                 :            :         return !(a == b);
      65                 :            :     }
      66                 :            : 
      67                 :            :     std::string ToString() const;
      68                 :            : };
      69                 :            : 
      70                 :            : /** An input of a transaction.  It contains the location of the previous
      71                 :            :  * transaction's output that it claims and a signature that matches the
      72                 :            :  * output's public key.
      73                 :            :  */
      74                 :        400 : class CTxIn
      75                 :            : {
      76                 :            : public:
      77                 :            :     COutPoint prevout;
      78                 :            :     CScript scriptSig;
      79                 :            :     uint32_t nSequence;
      80                 :            :     CScriptWitness scriptWitness; //!< Only serialized through CTransaction
      81                 :            : 
      82                 :            :     /**
      83                 :            :      * Setting nSequence to this value for every input in a transaction
      84                 :            :      * disables nLockTime/IsFinalTx().
      85                 :            :      * It fails OP_CHECKLOCKTIMEVERIFY/CheckLockTime() for any input that has
      86                 :            :      * it set (BIP 65).
      87                 :            :      * It has SEQUENCE_LOCKTIME_DISABLE_FLAG set (BIP 68/112).
      88                 :            :      */
      89                 :            :     static const uint32_t SEQUENCE_FINAL = 0xffffffff;
      90                 :            :     /**
      91                 :            :      * This is the maximum sequence number that enables both nLockTime and
      92                 :            :      * OP_CHECKLOCKTIMEVERIFY (BIP 65).
      93                 :            :      * It has SEQUENCE_LOCKTIME_DISABLE_FLAG set (BIP 68/112).
      94                 :            :      */
      95                 :            :     static const uint32_t MAX_SEQUENCE_NONFINAL{SEQUENCE_FINAL - 1};
      96                 :            : 
      97                 :            :     // Below flags apply in the context of BIP 68. BIP 68 requires the tx
      98                 :            :     // version to be set to 2, or higher.
      99                 :            :     /**
     100                 :            :      * If this flag is set, CTxIn::nSequence is NOT interpreted as a
     101                 :            :      * relative lock-time.
     102                 :            :      * It skips SequenceLocks() for any input that has it set (BIP 68).
     103                 :            :      * It fails OP_CHECKSEQUENCEVERIFY/CheckSequence() for any input that has
     104                 :            :      * it set (BIP 112).
     105                 :            :      */
     106                 :            :     static const uint32_t SEQUENCE_LOCKTIME_DISABLE_FLAG = (1U << 31);
     107                 :            : 
     108                 :            :     /**
     109                 :            :      * If CTxIn::nSequence encodes a relative lock-time and this flag
     110                 :            :      * is set, the relative lock-time has units of 512 seconds,
     111                 :            :      * otherwise it specifies blocks with a granularity of 1. */
     112                 :            :     static const uint32_t SEQUENCE_LOCKTIME_TYPE_FLAG = (1 << 22);
     113                 :            : 
     114                 :            :     /**
     115                 :            :      * If CTxIn::nSequence encodes a relative lock-time, this mask is
     116                 :            :      * applied to extract that lock-time from the sequence field. */
     117                 :            :     static const uint32_t SEQUENCE_LOCKTIME_MASK = 0x0000ffff;
     118                 :            : 
     119                 :            :     /**
     120                 :            :      * In order to use the same number of bits to encode roughly the
     121                 :            :      * same wall-clock duration, and because blocks are naturally
     122                 :            :      * limited to occur every 600s on average, the minimum granularity
     123                 :            :      * for time-based relative lock-time is fixed at 512 seconds.
     124                 :            :      * Converting from CTxIn::nSequence to seconds is performed by
     125                 :            :      * multiplying by 512 = 2^9, or equivalently shifting up by
     126                 :            :      * 9 bits. */
     127                 :            :     static const int SEQUENCE_LOCKTIME_GRANULARITY = 9;
     128                 :            : 
     129         [ +  - ]:        206 :     CTxIn()
     130                 :            :     {
     131                 :        206 :         nSequence = SEQUENCE_FINAL;
     132                 :        206 :     }
     133                 :            : 
     134                 :            :     explicit CTxIn(COutPoint prevoutIn, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=SEQUENCE_FINAL);
     135                 :            :     CTxIn(uint256 hashPrevTx, uint32_t nOut, CScript scriptSigIn=CScript(), uint32_t nSequenceIn=SEQUENCE_FINAL);
     136                 :            : 
     137                 :      11436 :     SERIALIZE_METHODS(CTxIn, obj) { READWRITE(obj.prevout, obj.scriptSig, obj.nSequence); }
     138                 :            : 
     139                 :          0 :     friend bool operator==(const CTxIn& a, const CTxIn& b)
     140                 :            :     {
     141         [ #  # ]:          0 :         return (a.prevout   == b.prevout &&
     142         [ #  # ]:          0 :                 a.scriptSig == b.scriptSig &&
     143                 :          0 :                 a.nSequence == b.nSequence);
     144                 :            :     }
     145                 :            : 
     146                 :            :     friend bool operator!=(const CTxIn& a, const CTxIn& b)
     147                 :            :     {
     148                 :            :         return !(a == b);
     149                 :            :     }
     150                 :            : 
     151                 :            :     std::string ToString() const;
     152                 :            : };
     153                 :            : 
     154                 :            : /** An output of a transaction.  It contains the public key that the next input
     155                 :            :  * must be able to sign with to claim it.
     156                 :            :  */
     157                 :          0 : class CTxOut
     158                 :            : {
     159                 :            : public:
     160                 :            :     CAmount nValue;
     161                 :            :     CScript scriptPubKey;
     162                 :            : 
     163                 :       2612 :     CTxOut()
     164                 :            :     {
     165         [ +  - ]:       2612 :         SetNull();
     166                 :       2612 :     }
     167                 :            : 
     168                 :            :     CTxOut(const CAmount& nValueIn, CScript scriptPubKeyIn);
     169                 :            : 
     170                 :      22242 :     SERIALIZE_METHODS(CTxOut, obj) { READWRITE(obj.nValue, obj.scriptPubKey); }
     171                 :            : 
     172                 :       2612 :     void SetNull()
     173                 :            :     {
     174                 :       2612 :         nValue = -1;
     175                 :       2612 :         scriptPubKey.clear();
     176                 :       2612 :     }
     177                 :            : 
     178                 :        800 :     bool IsNull() const
     179                 :            :     {
     180                 :        800 :         return (nValue == -1);
     181                 :            :     }
     182                 :            : 
     183                 :          0 :     friend bool operator==(const CTxOut& a, const CTxOut& b)
     184                 :            :     {
     185         [ #  # ]:          0 :         return (a.nValue       == b.nValue &&
     186                 :          0 :                 a.scriptPubKey == b.scriptPubKey);
     187                 :            :     }
     188                 :            : 
     189                 :          0 :     friend bool operator!=(const CTxOut& a, const CTxOut& b)
     190                 :            :     {
     191                 :          0 :         return !(a == b);
     192                 :            :     }
     193                 :            : 
     194                 :            :     std::string ToString() const;
     195                 :            : };
     196                 :            : 
     197                 :            : struct CMutableTransaction;
     198                 :            : 
     199                 :            : /**
     200                 :            :  * Basic transaction serialization format:
     201                 :            :  * - int32_t nVersion
     202                 :            :  * - std::vector<CTxIn> vin
     203                 :            :  * - std::vector<CTxOut> vout
     204                 :            :  * - uint32_t nLockTime
     205                 :            :  *
     206                 :            :  * Extended transaction serialization format:
     207                 :            :  * - int32_t nVersion
     208                 :            :  * - unsigned char dummy = 0x00
     209                 :            :  * - unsigned char flags (!= 0)
     210                 :            :  * - std::vector<CTxIn> vin
     211                 :            :  * - std::vector<CTxOut> vout
     212                 :            :  * - if (flags & 1):
     213                 :            :  *   - CScriptWitness scriptWitness; (deserialized into CTxIn)
     214                 :            :  * - uint32_t nLockTime
     215                 :            :  */
     216                 :            : template<typename Stream, typename TxType>
     217                 :          1 : inline void UnserializeTransaction(TxType& tx, Stream& s) {
     218                 :          1 :     const bool fAllowWitness = !(s.GetVersion() & SERIALIZE_TRANSACTION_NO_WITNESS);
     219                 :            : 
     220                 :          1 :     s >> tx.nVersion;
     221                 :          1 :     unsigned char flags = 0;
     222                 :          1 :     tx.vin.clear();
     223                 :          1 :     tx.vout.clear();
     224                 :            :     /* Try to read the vin. In case the dummy is there, this will be read as an empty vector. */
     225                 :          1 :     s >> tx.vin;
     226 [ -  + ][ #  # ]:          1 :     if (tx.vin.size() == 0 && fAllowWitness) {
         [ #  # ][ #  # ]
     227                 :            :         /* We read a dummy or an empty vin. */
     228                 :          0 :         s >> flags;
     229 [ #  # ][ #  # ]:          0 :         if (flags != 0) {
     230                 :          0 :             s >> tx.vin;
     231                 :          0 :             s >> tx.vout;
     232                 :          0 :         }
     233                 :          0 :     } else {
     234                 :            :         /* We read a non-empty vin. Assume a normal vout follows. */
     235                 :          1 :         s >> tx.vout;
     236                 :            :     }
     237 [ -  + ][ #  # ]:          1 :     if ((flags & 1) && fAllowWitness) {
         [ #  # ][ #  # ]
     238                 :            :         /* The witness flag is present, and we support witnesses. */
     239                 :          0 :         flags ^= 1;
     240 [ #  # ][ #  # ]:          0 :         for (size_t i = 0; i < tx.vin.size(); i++) {
     241                 :          0 :             s >> tx.vin[i].scriptWitness.stack;
     242                 :          0 :         }
     243 [ #  # ][ #  # ]:          0 :         if (!tx.HasWitness()) {
     244                 :            :             /* It's illegal to encode witnesses when all witness stacks are empty. */
     245 [ #  # ][ #  # ]:          0 :             throw std::ios_base::failure("Superfluous witness record");
     246                 :            :         }
     247                 :          0 :     }
     248 [ +  - ][ #  # ]:          1 :     if (flags) {
     249                 :            :         /* Unknown flag in the serialization */
     250 [ #  # ][ #  # ]:          0 :         throw std::ios_base::failure("Unknown transaction optional data");
     251                 :            :     }
     252                 :          1 :     s >> tx.nLockTime;
     253                 :          1 : }
     254                 :            : 
     255                 :            : template<typename Stream, typename TxType>
     256                 :       3811 : inline void SerializeTransaction(const TxType& tx, Stream& s) {
     257                 :       3811 :     const bool fAllowWitness = !(s.GetVersion() & SERIALIZE_TRANSACTION_NO_WITNESS);
     258                 :            : 
     259                 :       3811 :     s << tx.nVersion;
     260                 :       3811 :     unsigned char flags = 0;
     261                 :            :     // Consistency check
     262 [ +  + ][ +  + ]:       3811 :     if (fAllowWitness) {
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     263                 :            :         /* Check whether witnesses need to be serialized. */
     264 [ +  + ][ -  + ]:       1403 :         if (tx.HasWitness()) {
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     265                 :       1400 :             flags |= 1;
     266                 :       1400 :         }
     267                 :       1403 :     }
     268 [ +  + ][ +  + ]:       3811 :     if (flags) {
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     269                 :            :         /* Use extended format in case witnesses are to be serialized. */
     270                 :       1400 :         std::vector<CTxIn> vinDummy;
     271 [ +  - ][ +  - ]:       1400 :         s << vinDummy;
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     272 [ +  - ][ +  - ]:       1400 :         s << flags;
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     273                 :       1400 :     }
     274                 :       3811 :     s << tx.vin;
     275                 :       3811 :     s << tx.vout;
     276 [ +  + ][ +  + ]:       3811 :     if (flags & 1) {
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     277 [ +  + ][ +  + ]:       2800 :         for (size_t i = 0; i < tx.vin.size(); i++) {
         [ #  # ][ #  # ]
         [ #  # ][ #  # ]
     278                 :       1400 :             s << tx.vin[i].scriptWitness.stack;
     279                 :       1400 :         }
     280                 :       1400 :     }
     281                 :       3811 :     s << tx.nLockTime;
     282                 :       3811 : }
     283                 :            : 
     284                 :            : template<typename TxType>
     285                 :          0 : inline CAmount CalculateOutputValue(const TxType& tx)
     286                 :            : {
     287                 :          0 :     return std::accumulate(tx.vout.cbegin(), tx.vout.cend(), CAmount{0}, [](CAmount sum, const auto& txout) { return sum + txout.nValue; });
     288                 :            : }
     289                 :            : 
     290                 :            : 
     291                 :            : /** The basic transaction that is broadcasted on the network and contained in
     292                 :            :  * blocks.  A transaction can contain multiple inputs and outputs.
     293                 :            :  */
     294                 :          0 : class CTransaction
     295                 :            : {
     296                 :            : public:
     297                 :            :     // Default transaction version.
     298                 :            :     static const int32_t CURRENT_VERSION=2;
     299                 :            : 
     300                 :            :     // The local variables are made const to prevent unintended modification
     301                 :            :     // without updating the cached hash value. However, CTransaction is not
     302                 :            :     // actually immutable; deserialization and assignment are implemented,
     303                 :            :     // and bypass the constness. This is safe, as they update the entire
     304                 :            :     // structure, including the hash.
     305                 :            :     const std::vector<CTxIn> vin;
     306                 :            :     const std::vector<CTxOut> vout;
     307                 :            :     const int32_t nVersion;
     308                 :            :     const uint32_t nLockTime;
     309                 :            : 
     310                 :            : private:
     311                 :            :     /** Memory only. */
     312                 :            :     const uint256 hash;
     313                 :            :     const uint256 m_witness_hash;
     314                 :            : 
     315                 :            :     uint256 ComputeHash() const;
     316                 :            :     uint256 ComputeWitnessHash() const;
     317                 :            : 
     318                 :            : public:
     319                 :            :     /** Convert a CMutableTransaction into a CTransaction. */
     320                 :            :     explicit CTransaction(const CMutableTransaction& tx);
     321                 :            :     explicit CTransaction(CMutableTransaction&& tx);
     322                 :            : 
     323                 :            :     template <typename Stream>
     324                 :       3811 :     inline void Serialize(Stream& s) const {
     325                 :       3811 :         SerializeTransaction(*this, s);
     326                 :       3811 :     }
     327                 :            : 
     328                 :            :     /** This deserializing constructor is provided instead of an Unserialize method.
     329                 :            :      *  Unserialize is not possible, since it would require overwriting const fields. */
     330                 :            :     template <typename Stream>
     331 [ +  - ][ #  # ]:          1 :     CTransaction(deserialize_type, Stream& s) : CTransaction(CMutableTransaction(deserialize, s)) {}
     332                 :            : 
     333                 :          0 :     bool IsNull() const {
     334         [ #  # ]:          0 :         return vin.empty() && vout.empty();
     335                 :            :     }
     336                 :            : 
     337                 :       2409 :     const uint256& GetHash() const { return hash; }
     338                 :          0 :     const uint256& GetWitnessHash() const { return m_witness_hash; };
     339                 :            : 
     340                 :            :     // Return sum of txouts.
     341                 :            :     CAmount GetValueOut() const;
     342                 :            : 
     343                 :            :     /**
     344                 :            :      * Get the total transaction size in bytes, including witness data.
     345                 :            :      * "Total Size" defined in BIP141 and BIP144.
     346                 :            :      * @return Total transaction size in bytes
     347                 :            :      */
     348                 :            :     unsigned int GetTotalSize() const;
     349                 :            : 
     350                 :       3202 :     bool IsCoinBase() const
     351                 :            :     {
     352         [ -  + ]:       3202 :         return (vin.size() == 1 && vin[0].prevout.IsNull());
     353                 :            :     }
     354                 :            : 
     355                 :          0 :     friend bool operator==(const CTransaction& a, const CTransaction& b)
     356                 :            :     {
     357                 :          0 :         return a.hash == b.hash;
     358                 :            :     }
     359                 :            : 
     360                 :          0 :     friend bool operator!=(const CTransaction& a, const CTransaction& b)
     361                 :            :     {
     362                 :          0 :         return a.hash != b.hash;
     363                 :            :     }
     364                 :            : 
     365                 :            :     std::string ToString() const;
     366                 :            : 
     367                 :       2209 :     bool HasWitness() const
     368                 :            :     {
     369         [ +  + ]:       2818 :         for (size_t i = 0; i < vin.size(); i++) {
     370         [ +  + ]:       2209 :             if (!vin[i].scriptWitness.IsNull()) {
     371                 :       1600 :                 return true;
     372                 :            :             }
     373                 :        609 :         }
     374                 :        609 :         return false;
     375                 :       2209 :     }
     376                 :            : };
     377                 :            : 
     378                 :            : /** A mutable version of CTransaction. */
     379                 :          0 : struct CMutableTransaction
     380                 :            : {
     381                 :            :     std::vector<CTxIn> vin;
     382                 :            :     std::vector<CTxOut> vout;
     383                 :            :     int32_t nVersion;
     384                 :            :     uint32_t nLockTime;
     385                 :            : 
     386                 :            :     explicit CMutableTransaction();
     387                 :            :     explicit CMutableTransaction(const CTransaction& tx);
     388                 :            : 
     389                 :            :     template <typename Stream>
     390                 :          0 :     inline void Serialize(Stream& s) const {
     391                 :          0 :         SerializeTransaction(*this, s);
     392                 :          0 :     }
     393                 :            : 
     394                 :            : 
     395                 :            :     template <typename Stream>
     396                 :          1 :     inline void Unserialize(Stream& s) {
     397                 :          1 :         UnserializeTransaction(*this, s);
     398                 :          1 :     }
     399                 :            : 
     400                 :            :     template <typename Stream>
     401                 :          1 :     CMutableTransaction(deserialize_type, Stream& s) {
     402 [ +  - ][ #  # ]:          1 :         Unserialize(s);
     403                 :          1 :     }
     404                 :            : 
     405                 :            :     /** Compute the hash of this CMutableTransaction. This is computed on the
     406                 :            :      * fly, as opposed to GetHash() in CTransaction, which uses a cached result.
     407                 :            :      */
     408                 :            :     uint256 GetHash() const;
     409                 :            : 
     410                 :          0 :     bool HasWitness() const
     411                 :            :     {
     412         [ #  # ]:          0 :         for (size_t i = 0; i < vin.size(); i++) {
     413         [ #  # ]:          0 :             if (!vin[i].scriptWitness.IsNull()) {
     414                 :          0 :                 return true;
     415                 :            :             }
     416                 :          0 :         }
     417                 :          0 :         return false;
     418                 :          0 :     }
     419                 :            : };
     420                 :            : 
     421                 :            : typedef std::shared_ptr<const CTransaction> CTransactionRef;
     422                 :        605 : template <typename Tx> static inline CTransactionRef MakeTransactionRef(Tx&& txIn) { return std::make_shared<const CTransaction>(std::forward<Tx>(txIn)); }
     423                 :            : 
     424                 :            : /** A generic txid reference (txid or wtxid). */
     425                 :            : class GenTxid
     426                 :            : {
     427                 :            :     bool m_is_wtxid;
     428                 :            :     uint256 m_hash;
     429                 :          0 :     GenTxid(bool is_wtxid, const uint256& hash) : m_is_wtxid(is_wtxid), m_hash(hash) {}
     430                 :            : 
     431                 :            : public:
     432                 :          0 :     static GenTxid Txid(const uint256& hash) { return GenTxid{false, hash}; }
     433                 :          0 :     static GenTxid Wtxid(const uint256& hash) { return GenTxid{true, hash}; }
     434                 :          0 :     bool IsWtxid() const { return m_is_wtxid; }
     435                 :          0 :     const uint256& GetHash() const { return m_hash; }
     436         [ #  # ]:          0 :     friend bool operator==(const GenTxid& a, const GenTxid& b) { return a.m_is_wtxid == b.m_is_wtxid && a.m_hash == b.m_hash; }
     437                 :          0 :     friend bool operator<(const GenTxid& a, const GenTxid& b) { return std::tie(a.m_is_wtxid, a.m_hash) < std::tie(b.m_is_wtxid, b.m_hash); }
     438                 :            : };
     439                 :            : 
     440                 :            : #endif // BITCOIN_PRIMITIVES_TRANSACTION_H

Generated by: LCOV version 1.14