LCOV - code coverage report
Current view: top level - src/script - script_error.cpp (source / functions) Coverage Total Hit
Test: test_bitcoin_coverage.info Lines: 54.5 % 110 60
Test Date: 2024-08-28 04:44:32 Functions: 100.0 % 1 1
Branches: 52.8 % 53 28

             Branch data     Line data    Source code
       1                 :             : // Copyright (c) 2009-2010 Satoshi Nakamoto
       2                 :             : // Copyright (c) 2009-2020 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                 :             : #include <script/script_error.h>
       7                 :             : 
       8                 :             : #include <string>
       9                 :             : 
      10                 :      114069 : std::string ScriptErrorString(const ScriptError serror)
      11                 :             : {
      12   [ +  +  +  +  :      114069 :     switch (serror)
          +  +  -  -  +  
          -  -  -  -  +  
          -  +  -  -  +  
          +  +  +  +  +  
          +  +  +  -  +  
          -  +  -  -  -  
          +  +  +  -  +  
          +  -  -  -  -  
          -  -  -  -  -  
             -  +  +  + ]
      13                 :             :     {
      14                 :       75178 :         case SCRIPT_ERR_OK:
      15                 :       75178 :             return "No error";
      16                 :         311 :         case SCRIPT_ERR_EVAL_FALSE:
      17                 :         311 :             return "Script evaluated without error but finished with a false/empty top stack element";
      18                 :          24 :         case SCRIPT_ERR_VERIFY:
      19                 :          24 :             return "Script failed an OP_VERIFY operation";
      20                 :           1 :         case SCRIPT_ERR_EQUALVERIFY:
      21                 :           1 :             return "Script failed an OP_EQUALVERIFY operation";
      22                 :          50 :         case SCRIPT_ERR_CHECKMULTISIGVERIFY:
      23                 :          50 :             return "Script failed an OP_CHECKMULTISIGVERIFY operation";
      24                 :         175 :         case SCRIPT_ERR_CHECKSIGVERIFY:
      25                 :         175 :             return "Script failed an OP_CHECKSIGVERIFY operation";
      26                 :           0 :         case SCRIPT_ERR_NUMEQUALVERIFY:
      27                 :           0 :             return "Script failed an OP_NUMEQUALVERIFY operation";
      28                 :           0 :         case SCRIPT_ERR_SCRIPT_SIZE:
      29                 :           0 :             return "Script is too big";
      30                 :          43 :         case SCRIPT_ERR_PUSH_SIZE:
      31                 :          43 :             return "Push value size limit exceeded";
      32                 :           0 :         case SCRIPT_ERR_OP_COUNT:
      33                 :           0 :             return "Operation limit exceeded";
      34                 :           0 :         case SCRIPT_ERR_STACK_SIZE:
      35                 :           0 :             return "Stack size limit exceeded";
      36                 :           0 :         case SCRIPT_ERR_SIG_COUNT:
      37                 :           0 :             return "Signature count negative or greater than pubkey count";
      38                 :           0 :         case SCRIPT_ERR_PUBKEY_COUNT:
      39                 :           0 :             return "Pubkey count negative or limit exceeded";
      40                 :           1 :         case SCRIPT_ERR_BAD_OPCODE:
      41                 :           1 :             return "Opcode missing or not understood";
      42                 :           0 :         case SCRIPT_ERR_DISABLED_OPCODE:
      43                 :           0 :             return "Attempted to use a disabled opcode";
      44                 :        9006 :         case SCRIPT_ERR_INVALID_STACK_OPERATION:
      45                 :        9006 :             return "Operation not valid with the current stack size";
      46                 :           0 :         case SCRIPT_ERR_INVALID_ALTSTACK_OPERATION:
      47                 :           0 :             return "Operation not valid with the current altstack size";
      48                 :           0 :         case SCRIPT_ERR_OP_RETURN:
      49                 :           0 :             return "OP_RETURN was encountered";
      50                 :          43 :         case SCRIPT_ERR_UNBALANCED_CONDITIONAL:
      51                 :          43 :             return "Invalid OP_IF construction";
      52                 :         205 :         case SCRIPT_ERR_NEGATIVE_LOCKTIME:
      53                 :         205 :             return "Negative locktime";
      54                 :       11151 :         case SCRIPT_ERR_UNSATISFIED_LOCKTIME:
      55                 :       11151 :             return "Locktime requirement not satisfied";
      56                 :           1 :         case SCRIPT_ERR_SIG_HASHTYPE:
      57                 :           1 :             return "Signature hash type missing or not understood";
      58                 :        8922 :         case SCRIPT_ERR_SIG_DER:
      59                 :        8922 :             return "Non-canonical DER signature";
      60                 :          18 :         case SCRIPT_ERR_MINIMALDATA:
      61                 :          18 :             return "Data push larger than necessary";
      62                 :         127 :         case SCRIPT_ERR_SIG_PUSHONLY:
      63                 :         127 :             return "Only push operators allowed in signatures";
      64                 :         106 :         case SCRIPT_ERR_SIG_HIGH_S:
      65                 :         106 :             return "Non-canonical signature: S value is unnecessarily high";
      66                 :          62 :         case SCRIPT_ERR_SIG_NULLDUMMY:
      67                 :          62 :             return "Dummy CHECKMULTISIG argument must be zero";
      68                 :           0 :         case SCRIPT_ERR_MINIMALIF:
      69                 :           0 :             return "OP_IF/NOTIF argument must be minimal";
      70                 :         109 :         case SCRIPT_ERR_SIG_NULLFAIL:
      71                 :         109 :             return "Signature must be zero for failed CHECK(MULTI)SIG operation";
      72                 :           0 :         case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_NOPS:
      73                 :           0 :             return "NOPx reserved for soft-fork upgrades";
      74                 :          88 :         case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_WITNESS_PROGRAM:
      75                 :          88 :             return "Witness version reserved for soft-fork upgrades";
      76                 :           0 :         case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_TAPROOT_VERSION:
      77                 :           0 :             return "Taproot version reserved for soft-fork upgrades";
      78                 :           0 :         case SCRIPT_ERR_DISCOURAGE_OP_SUCCESS:
      79                 :           0 :             return "OP_SUCCESSx reserved for soft-fork upgrades";
      80                 :           0 :         case SCRIPT_ERR_DISCOURAGE_UPGRADABLE_PUBKEYTYPE:
      81                 :           0 :             return "Public key version reserved for soft-fork upgrades";
      82                 :           2 :         case SCRIPT_ERR_PUBKEYTYPE:
      83                 :           2 :             return "Public key is neither compressed or uncompressed";
      84                 :         151 :         case SCRIPT_ERR_CLEANSTACK:
      85                 :         151 :             return "Stack size must be exactly one after execution";
      86                 :          86 :         case SCRIPT_ERR_WITNESS_PROGRAM_WRONG_LENGTH:
      87                 :          86 :             return "Witness program has incorrect length";
      88                 :           0 :         case SCRIPT_ERR_WITNESS_PROGRAM_WITNESS_EMPTY:
      89                 :           0 :             return "Witness program was passed an empty witness";
      90                 :        7560 :         case SCRIPT_ERR_WITNESS_PROGRAM_MISMATCH:
      91                 :        7560 :             return "Witness program hash mismatch";
      92                 :          43 :         case SCRIPT_ERR_WITNESS_MALLEATED:
      93                 :          43 :             return "Witness requires empty scriptSig";
      94                 :           0 :         case SCRIPT_ERR_WITNESS_MALLEATED_P2SH:
      95                 :           0 :             return "Witness requires only-redeemscript scriptSig";
      96                 :           0 :         case SCRIPT_ERR_WITNESS_UNEXPECTED:
      97                 :           0 :             return "Witness provided for non-witness script";
      98                 :           0 :         case SCRIPT_ERR_WITNESS_PUBKEYTYPE:
      99                 :           0 :             return "Using non-compressed keys in segwit";
     100                 :           0 :         case SCRIPT_ERR_SCHNORR_SIG_SIZE:
     101                 :           0 :             return "Invalid Schnorr signature size";
     102                 :           0 :         case SCRIPT_ERR_SCHNORR_SIG_HASHTYPE:
     103                 :           0 :             return "Invalid Schnorr signature hash type";
     104                 :           0 :         case SCRIPT_ERR_SCHNORR_SIG:
     105                 :           0 :             return "Invalid Schnorr signature";
     106                 :           0 :         case SCRIPT_ERR_TAPROOT_WRONG_CONTROL_SIZE:
     107                 :           0 :             return "Invalid Taproot control block size";
     108                 :           0 :         case SCRIPT_ERR_TAPSCRIPT_VALIDATION_WEIGHT:
     109                 :           0 :             return "Too much signature validation relative to witness weight";
     110                 :           0 :         case SCRIPT_ERR_TAPSCRIPT_CHECKMULTISIG:
     111                 :           0 :             return "OP_CHECKMULTISIG(VERIFY) is not available in tapscript";
     112                 :           0 :         case SCRIPT_ERR_TAPSCRIPT_MINIMALIF:
     113                 :           0 :             return "OP_IF/NOTIF argument must be minimal in tapscript";
     114                 :         312 :         case SCRIPT_ERR_OP_CODESEPARATOR:
     115                 :         312 :             return "Using OP_CODESEPARATOR in non-witness script";
     116                 :         206 :         case SCRIPT_ERR_SIG_FINDANDDELETE:
     117                 :         206 :             return "Signature is found in scriptCode";
     118                 :          88 :         case SCRIPT_ERR_UNKNOWN_ERROR:
     119                 :          88 :         case SCRIPT_ERR_ERROR_COUNT:
     120                 :          88 :         default: break;
     121                 :             :     }
     122                 :          88 :     return "unknown error";
     123                 :             : }
        

Generated by: LCOV version 2.0-1