mirror of
https://github.com/ethereum/solidity
synced 2023-10-03 13:03:40 +00:00
Generate bytes and string literals that are longer than 32 bytes
This commit is contained in:
parent
3963d0ca02
commit
46a133e848
@ -63,6 +63,8 @@ void ProtoConverter::visitType(
|
|||||||
std::string varName, paramName;
|
std::string varName, paramName;
|
||||||
createDeclAndParamList(_type, _dataType, varName, paramName);
|
createDeclAndParamList(_type, _dataType, varName, paramName);
|
||||||
addCheckedVarDef(_dataType, varName, paramName, _value);
|
addCheckedVarDef(_dataType, varName, paramName, _value);
|
||||||
|
// Update right padding of type
|
||||||
|
m_isLastParamRightPadded = isDataTypeBytesOrString(_dataType);
|
||||||
}
|
}
|
||||||
|
|
||||||
void ProtoConverter::appendVarDeclToOutput(
|
void ProtoConverter::appendVarDeclToOutput(
|
||||||
@ -204,22 +206,23 @@ std::string ProtoConverter::addressValueAsString(unsigned _counter)
|
|||||||
.render();
|
.render();
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Returns a hex literal if _isHexLiteral is true, a string literal otherwise.
|
std::string ProtoConverter::croppedString(
|
||||||
std::string ProtoConverter::hexValueAsString(
|
unsigned _numBytes,
|
||||||
unsigned _width,
|
|
||||||
unsigned _counter,
|
unsigned _counter,
|
||||||
bool _isHexLiteral
|
bool _isHexLiteral
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
// If _width is zero (possible via a call from ...), then simply return an
|
// _numBytes can not be zero or exceed 32 bytes
|
||||||
// empty (hex) string
|
solAssert(
|
||||||
if (_width == 0)
|
_numBytes > 0 && _numBytes <= 32,
|
||||||
return Whiskers(R"(<?addHexPrefix>hex</addHexPrefix>"")")
|
"Proto ABIv2 fuzzer: Too short or too long a cropped string"
|
||||||
("addHexPrefix", _isHexLiteral)
|
);
|
||||||
.render();
|
|
||||||
|
// Number of masked nibbles is twice the number of bytes for a
|
||||||
|
// hex literal of _numBytes bytes. For a string literal, each nibble
|
||||||
|
// is treated as a character.
|
||||||
|
unsigned numMaskNibbles = _isHexLiteral ? _numBytes * 2 : _numBytes;
|
||||||
|
|
||||||
// Masked value must contain twice the number of nibble "f"'s as _width
|
|
||||||
unsigned numMaskNibbles = _width * 2;
|
|
||||||
// Start position of substring equals totalHexStringLength - numMaskNibbles
|
// Start position of substring equals totalHexStringLength - numMaskNibbles
|
||||||
// totalHexStringLength = 64 + 2 = 66
|
// totalHexStringLength = 64 + 2 = 66
|
||||||
// e.g., 0x12345678901234567890123456789012 is a total of 66 characters
|
// e.g., 0x12345678901234567890123456789012 is a total of 66 characters
|
||||||
@ -228,14 +231,121 @@ std::string ProtoConverter::hexValueAsString(
|
|||||||
// <-----------total length --------->
|
// <-----------total length --------->
|
||||||
// Note: This assumes that maskUnsignedIntToHex() invokes toHex(..., HexPrefix::Add)
|
// Note: This assumes that maskUnsignedIntToHex() invokes toHex(..., HexPrefix::Add)
|
||||||
unsigned startPos = 66 - numMaskNibbles;
|
unsigned startPos = 66 - numMaskNibbles;
|
||||||
|
// Extracts the least significant numMaskNibbles from the result
|
||||||
|
// of maskUnsignedIntToHex().
|
||||||
|
return maskUnsignedIntToHex(
|
||||||
|
_counter,
|
||||||
|
numMaskNibbles
|
||||||
|
).substr(startPos, numMaskNibbles);
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string ProtoConverter::hexValueAsString(
|
||||||
|
unsigned _numBytes,
|
||||||
|
unsigned _counter,
|
||||||
|
bool _isHexLiteral,
|
||||||
|
bool _decorate
|
||||||
|
)
|
||||||
|
{
|
||||||
|
solAssert(_numBytes > 0 && _numBytes <= 32,
|
||||||
|
"Proto ABIv2 fuzzer: Invalid hex length"
|
||||||
|
);
|
||||||
|
|
||||||
|
// If _decorate is set, then we return a hex"" or a "" string.
|
||||||
|
if (_numBytes == 0)
|
||||||
|
return Whiskers(R"(<?decorate><?isHex>hex</isHex>""</decorate>)")
|
||||||
|
("decorate", _decorate)
|
||||||
|
("isHex", _isHexLiteral)
|
||||||
|
.render();
|
||||||
|
|
||||||
// Extracts the least significant numMaskNibbles from the result of "maskUnsignedIntToHex",
|
|
||||||
// and replaces "0x" with "hex\"...\"" string.
|
|
||||||
// This is needed because solidity interprets a 20-byte 0x prefixed hex literal as an address
|
// This is needed because solidity interprets a 20-byte 0x prefixed hex literal as an address
|
||||||
// payable type.
|
// payable type.
|
||||||
return Whiskers(R"(<?addHexPrefix>hex</addHexPrefix>"<value>")")
|
return Whiskers(R"(<?decorate><?isHex>hex</isHex>"</decorate><value><?decorate>"</decorate>)")
|
||||||
("addHexPrefix", _isHexLiteral)
|
("decorate", _decorate)
|
||||||
("value", maskUnsignedIntToHex(_counter, numMaskNibbles).substr(startPos, numMaskNibbles))
|
("isHex", _isHexLiteral)
|
||||||
|
("value", croppedString(_numBytes, _counter, _isHexLiteral))
|
||||||
|
.render();
|
||||||
|
}
|
||||||
|
|
||||||
|
std::string ProtoConverter::variableLengthValueAsString(
|
||||||
|
unsigned _numBytes,
|
||||||
|
unsigned _counter,
|
||||||
|
bool _isHexLiteral
|
||||||
|
)
|
||||||
|
{
|
||||||
|
solAssert(_numBytes >= 0 && _numBytes <= s_maxDynArrayLength,
|
||||||
|
"Proto ABIv2 fuzzer: Invalid hex length"
|
||||||
|
);
|
||||||
|
if (_numBytes == 0)
|
||||||
|
return Whiskers(R"(<?isHex>hex</isHex>"")")
|
||||||
|
("isHex", _isHexLiteral)
|
||||||
|
.render();
|
||||||
|
|
||||||
|
unsigned numBytesRemaining = _numBytes;
|
||||||
|
// Stores the literal
|
||||||
|
string output{};
|
||||||
|
// If requested value is shorter than or exactly 32 bytes,
|
||||||
|
// the literal is the return value of hexValueAsString.
|
||||||
|
if (numBytesRemaining <= 32)
|
||||||
|
output = hexValueAsString(
|
||||||
|
numBytesRemaining,
|
||||||
|
_counter,
|
||||||
|
_isHexLiteral,
|
||||||
|
/*decorate=*/false
|
||||||
|
);
|
||||||
|
// If requested value is longer than 32 bytes, the literal
|
||||||
|
// is obtained by duplicating the return value of hexValueAsString
|
||||||
|
// until we reach a value of the requested size.
|
||||||
|
else
|
||||||
|
{
|
||||||
|
// Create a 32-byte value to be duplicated and
|
||||||
|
// update number of bytes to be appended.
|
||||||
|
// Stores the cached literal that saves us
|
||||||
|
// (expensive) calls to keccak256.
|
||||||
|
string cachedString = hexValueAsString(
|
||||||
|
/*numBytes=*/32,
|
||||||
|
_counter,
|
||||||
|
_isHexLiteral,
|
||||||
|
/*decorate=*/false
|
||||||
|
);
|
||||||
|
output = cachedString;
|
||||||
|
numBytesRemaining -= 32;
|
||||||
|
|
||||||
|
// Append bytes from cachedString until
|
||||||
|
// we create a value of desired length.
|
||||||
|
unsigned numAppendedBytes;
|
||||||
|
while (numBytesRemaining > 0)
|
||||||
|
{
|
||||||
|
// We append at most 32 bytes at a time
|
||||||
|
numAppendedBytes = numBytesRemaining >= 32 ? 32 : numBytesRemaining;
|
||||||
|
output += cachedString.substr(
|
||||||
|
0,
|
||||||
|
// Double the substring length for hex literals since each
|
||||||
|
// character is actually half a byte (or a nibble).
|
||||||
|
_isHexLiteral ? numAppendedBytes * 2 : numAppendedBytes
|
||||||
|
);
|
||||||
|
numBytesRemaining -= numAppendedBytes;
|
||||||
|
}
|
||||||
|
solAssert(
|
||||||
|
numBytesRemaining == 0,
|
||||||
|
"Proto ABIv2 fuzzer: Logic flaw in variable literal creation"
|
||||||
|
);
|
||||||
|
}
|
||||||
|
|
||||||
|
if (_isHexLiteral)
|
||||||
|
solAssert(
|
||||||
|
output.size() == 2 * _numBytes,
|
||||||
|
"Proto ABIv2 fuzzer: Generated hex literal is of incorrect length"
|
||||||
|
);
|
||||||
|
else
|
||||||
|
solAssert(
|
||||||
|
output.size() == _numBytes,
|
||||||
|
"Proto ABIv2 fuzzer: Generated string literal is of incorrect length"
|
||||||
|
);
|
||||||
|
|
||||||
|
// Decorate output
|
||||||
|
return Whiskers(R"(<?isHexLiteral>hex</isHexLiteral>"<value>")")
|
||||||
|
("isHexLiteral", _isHexLiteral)
|
||||||
|
("value", output)
|
||||||
.render();
|
.render();
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -548,18 +658,23 @@ void ProtoConverter::visit(ArrayType const& _x)
|
|||||||
{
|
{
|
||||||
case ArrayType::kInty:
|
case ArrayType::kInty:
|
||||||
baseType = getIntTypeAsString(_x.inty());
|
baseType = getIntTypeAsString(_x.inty());
|
||||||
|
m_isLastParamRightPadded = false;
|
||||||
break;
|
break;
|
||||||
case ArrayType::kByty:
|
case ArrayType::kByty:
|
||||||
baseType = getFixedByteTypeAsString(_x.byty());
|
baseType = getFixedByteTypeAsString(_x.byty());
|
||||||
|
m_isLastParamRightPadded = false;
|
||||||
break;
|
break;
|
||||||
case ArrayType::kAdty:
|
case ArrayType::kAdty:
|
||||||
baseType = getAddressTypeAsString(_x.adty());
|
baseType = getAddressTypeAsString(_x.adty());
|
||||||
|
m_isLastParamRightPadded = false;
|
||||||
break;
|
break;
|
||||||
case ArrayType::kBoolty:
|
case ArrayType::kBoolty:
|
||||||
baseType = getBoolTypeAsString();
|
baseType = getBoolTypeAsString();
|
||||||
|
m_isLastParamRightPadded = false;
|
||||||
break;
|
break;
|
||||||
case ArrayType::kDynbytesty:
|
case ArrayType::kDynbytesty:
|
||||||
baseType = bytesArrayTypeAsString(_x.dynbytesty());
|
baseType = bytesArrayTypeAsString(_x.dynbytesty());
|
||||||
|
m_isLastParamRightPadded = true;
|
||||||
break;
|
break;
|
||||||
case ArrayType::kStty:
|
case ArrayType::kStty:
|
||||||
case ArrayType::BASE_TYPE_ONEOF_NOT_SET:
|
case ArrayType::BASE_TYPE_ONEOF_NOT_SET:
|
||||||
@ -712,30 +827,41 @@ void ProtoConverter::visit(TestFunction const& _x)
|
|||||||
visit(_x.local_vars());
|
visit(_x.local_vars());
|
||||||
|
|
||||||
m_output << Whiskers(R"(
|
m_output << Whiskers(R"(
|
||||||
uint returnVal = this.coder_public(<parameter_names>);
|
uint returnVal = this.coder_public(<parameterNames>);
|
||||||
if (returnVal != 0)
|
if (returnVal != 0)
|
||||||
return returnVal;
|
return returnVal;
|
||||||
|
|
||||||
returnVal = this.coder_external(<parameter_names>);
|
returnVal = this.coder_external(<parameterNames>);
|
||||||
if (returnVal != 0)
|
if (returnVal != 0)
|
||||||
return uint(200000) + returnVal;
|
return uint(200000) + returnVal;
|
||||||
|
|
||||||
<?atLeastOneVar>
|
<?atLeastOneVar>
|
||||||
bytes memory argumentEncoding = abi.encode(<parameter_names>);
|
bytes memory argumentEncoding = abi.encode(<parameterNames>);
|
||||||
|
|
||||||
returnVal = checkEncodedCall(this.coder_public.selector, argumentEncoding, <invalidLengthFuzz>);
|
returnVal = checkEncodedCall(
|
||||||
|
this.coder_public.selector,
|
||||||
|
argumentEncoding,
|
||||||
|
<invalidLengthFuzz>,
|
||||||
|
<isRightPadded>
|
||||||
|
);
|
||||||
if (returnVal != 0)
|
if (returnVal != 0)
|
||||||
return returnVal;
|
return returnVal;
|
||||||
|
|
||||||
returnVal = checkEncodedCall(this.coder_external.selector, argumentEncoding, <invalidLengthFuzz>);
|
returnVal = checkEncodedCall(
|
||||||
|
this.coder_external.selector,
|
||||||
|
argumentEncoding,
|
||||||
|
<invalidLengthFuzz>,
|
||||||
|
<isRightPadded>
|
||||||
|
);
|
||||||
if (returnVal != 0)
|
if (returnVal != 0)
|
||||||
return uint(200000) + returnVal;
|
return uint(200000) + returnVal;
|
||||||
</atLeastOneVar>
|
</atLeastOneVar>
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
)")
|
)")
|
||||||
("parameter_names", dev::suffixedVariableNameList(s_varNamePrefix, 0, m_varCounter))
|
("parameterNames", dev::suffixedVariableNameList(s_varNamePrefix, 0, m_varCounter))
|
||||||
("invalidLengthFuzz", std::to_string(_x.invalid_encoding_length()))
|
("invalidLengthFuzz", std::to_string(_x.invalid_encoding_length()))
|
||||||
|
("isRightPadded", isLastParamRightPadded() ? "true" : "false")
|
||||||
("atLeastOneVar", m_varCounter > 0)
|
("atLeastOneVar", m_varCounter > 0)
|
||||||
.render();
|
.render();
|
||||||
}
|
}
|
||||||
@ -752,18 +878,31 @@ void ProtoConverter::writeHelperFunctions()
|
|||||||
return true;
|
return true;
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Accepts function selector, correct argument encoding, and length of invalid encoding and returns
|
/// Accepts function selector, correct argument encoding, and length of
|
||||||
/// the correct and incorrect abi encoding for calling the function specified by the function selector.
|
/// invalid encoding and returns the correct and incorrect abi encoding
|
||||||
function createEncoding(bytes4 funcSelector, bytes memory argumentEncoding, uint invalidLengthFuzz)
|
/// for calling the function specified by the function selector.
|
||||||
internal pure returns (bytes memory, bytes memory)
|
function createEncoding(
|
||||||
|
bytes4 funcSelector,
|
||||||
|
bytes memory argumentEncoding,
|
||||||
|
uint invalidLengthFuzz,
|
||||||
|
bool isRightPadded
|
||||||
|
) internal pure returns (bytes memory, bytes memory)
|
||||||
{
|
{
|
||||||
bytes memory validEncoding = new bytes(4 + argumentEncoding.length);
|
bytes memory validEncoding = new bytes(4 + argumentEncoding.length);
|
||||||
// Ensure that invalidEncoding crops at least 32 bytes (padding length
|
// Ensure that invalidEncoding crops at least 32 bytes (padding length
|
||||||
// is at most 31 bytes) since shorter bytes/string values can lead to
|
// is at most 31 bytes) if `isRightPadded` is true.
|
||||||
// successful decoding when fewer than 32 bytes have been cropped in
|
// This is because shorter bytes/string values (whose encoding is right
|
||||||
// the worst case. In other words,
|
// padded) can lead to successful decoding when fewer than 32 bytes have
|
||||||
|
// been cropped in the worst case. In other words, if `isRightPadded` is
|
||||||
|
// true, then
|
||||||
// 0 <= invalidLength <= argumentEncoding.length - 32
|
// 0 <= invalidLength <= argumentEncoding.length - 32
|
||||||
uint invalidLength = invalidLengthFuzz % (argumentEncoding.length - 31);
|
// otherwise
|
||||||
|
// 0 <= invalidLength <= argumentEncoding.length - 1
|
||||||
|
uint invalidLength;
|
||||||
|
if (isRightPadded)
|
||||||
|
invalidLength = invalidLengthFuzz % (argumentEncoding.length - 31);
|
||||||
|
else
|
||||||
|
invalidLength = invalidLengthFuzz % argumentEncoding.length;
|
||||||
bytes memory invalidEncoding = new bytes(4 + invalidLength);
|
bytes memory invalidEncoding = new bytes(4 + invalidLength);
|
||||||
for (uint i = 0; i < 4; i++)
|
for (uint i = 0; i < 4; i++)
|
||||||
validEncoding[i] = invalidEncoding[i] = funcSelector[i];
|
validEncoding[i] = invalidEncoding[i] = funcSelector[i];
|
||||||
@ -774,12 +913,23 @@ void ProtoConverter::writeHelperFunctions()
|
|||||||
return (validEncoding, invalidEncoding);
|
return (validEncoding, invalidEncoding);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Accepts function selector, correct argument encoding, and an invalid encoding length as input.
|
/// Accepts function selector, correct argument encoding, and an invalid
|
||||||
/// Returns a non-zero value if either call with correct encoding fails or call with incorrect encoding
|
/// encoding length as input. Returns a non-zero value if either call with
|
||||||
/// succeeds. Returns zero if both calls meet expectation.
|
/// correct encoding fails or call with incorrect encoding succeeds.
|
||||||
function checkEncodedCall(bytes4 funcSelector, bytes memory argumentEncoding, uint invalidLengthFuzz) public returns (uint)
|
/// Returns zero if both calls meet expectation.
|
||||||
|
function checkEncodedCall(
|
||||||
|
bytes4 funcSelector,
|
||||||
|
bytes memory argumentEncoding,
|
||||||
|
uint invalidLengthFuzz,
|
||||||
|
bool isRightPadded
|
||||||
|
) public returns (uint)
|
||||||
{
|
{
|
||||||
(bytes memory validEncoding, bytes memory invalidEncoding) = createEncoding(funcSelector, argumentEncoding, invalidLengthFuzz);
|
(bytes memory validEncoding, bytes memory invalidEncoding) = createEncoding(
|
||||||
|
funcSelector,
|
||||||
|
argumentEncoding,
|
||||||
|
invalidLengthFuzz,
|
||||||
|
isRightPadded
|
||||||
|
);
|
||||||
(bool success, bytes memory returnVal) = address(this).call(validEncoding);
|
(bool success, bytes memory returnVal) = address(this).call(validEncoding);
|
||||||
uint returnCode = abi.decode(returnVal, (uint));
|
uint returnCode = abi.decode(returnVal, (uint));
|
||||||
// Return non-zero value if call fails for correct encoding
|
// Return non-zero value if call fails for correct encoding
|
||||||
|
@ -102,7 +102,8 @@ public:
|
|||||||
m_isStateVar(true),
|
m_isStateVar(true),
|
||||||
m_counter(0),
|
m_counter(0),
|
||||||
m_varCounter(0),
|
m_varCounter(0),
|
||||||
m_returnValue(1)
|
m_returnValue(1),
|
||||||
|
m_isLastParamRightPadded(false)
|
||||||
{}
|
{}
|
||||||
|
|
||||||
ProtoConverter(ProtoConverter const&) = delete;
|
ProtoConverter(ProtoConverter const&) = delete;
|
||||||
@ -273,6 +274,11 @@ private:
|
|||||||
return ((isValueType(_dataType) || m_isStateVar) ? "" : "memory");
|
return ((isValueType(_dataType) || m_isStateVar) ? "" : "memory");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool isLastParamRightPadded()
|
||||||
|
{
|
||||||
|
return m_isLastParamRightPadded;
|
||||||
|
}
|
||||||
|
|
||||||
// Static declarations
|
// Static declarations
|
||||||
static std::string structTypeAsString(StructType const& _x);
|
static std::string structTypeAsString(StructType const& _x);
|
||||||
static std::string boolValueAsString(unsigned _counter);
|
static std::string boolValueAsString(unsigned _counter);
|
||||||
@ -281,7 +287,30 @@ private:
|
|||||||
static std::string integerValueAsString(bool _sign, unsigned _width, unsigned _counter);
|
static std::string integerValueAsString(bool _sign, unsigned _width, unsigned _counter);
|
||||||
static std::string addressValueAsString(unsigned _counter);
|
static std::string addressValueAsString(unsigned _counter);
|
||||||
static std::string fixedByteValueAsString(unsigned _width, unsigned _counter);
|
static std::string fixedByteValueAsString(unsigned _width, unsigned _counter);
|
||||||
|
|
||||||
|
/// Returns a hex literal if _isHexLiteral is true, a string literal otherwise.
|
||||||
|
/// The size of the returned literal is _numBytes bytes.
|
||||||
|
/// @param _decorate If true, the returned string is enclosed within double quotes
|
||||||
|
/// if _isHexLiteral is false.
|
||||||
|
/// @param _isHexLiteral If true, the returned string is enclosed within
|
||||||
|
/// double quotes prefixed by the string "hex" if _decorate is true. If
|
||||||
|
/// _decorate is false, the returned string is returned as-is.
|
||||||
|
/// @return hex value as string
|
||||||
static std::string hexValueAsString(
|
static std::string hexValueAsString(
|
||||||
|
unsigned _numBytes,
|
||||||
|
unsigned _counter,
|
||||||
|
bool _isHexLiteral,
|
||||||
|
bool _decorate = true
|
||||||
|
);
|
||||||
|
|
||||||
|
/// Concatenates the hash value obtained from monotonically increasing counter
|
||||||
|
/// until the desired number of bytes determined by _numBytes.
|
||||||
|
/// @param _width Desired number of bytes for hex value
|
||||||
|
/// @param _counter A counter value used for creating a keccak256 hash
|
||||||
|
/// @param _isHexLiteral Since this routine may be used to construct
|
||||||
|
/// string or hex literals, this flag is used to construct a valid output.
|
||||||
|
/// @return Valid hex or string literal of size _width bytes
|
||||||
|
static std::string variableLengthValueAsString(
|
||||||
unsigned _width,
|
unsigned _width,
|
||||||
unsigned _counter,
|
unsigned _counter,
|
||||||
bool _isHexLiteral
|
bool _isHexLiteral
|
||||||
@ -295,6 +324,7 @@ private:
|
|||||||
static std::string bytesArrayTypeAsString(DynamicByteArrayType const& _x);
|
static std::string bytesArrayTypeAsString(DynamicByteArrayType const& _x);
|
||||||
static std::string arrayTypeAsString(std::string const&, ArrayType const&);
|
static std::string arrayTypeAsString(std::string const&, ArrayType const&);
|
||||||
static std::string delimiterToString(Delimiter _delimiter);
|
static std::string delimiterToString(Delimiter _delimiter);
|
||||||
|
static std::string croppedString(unsigned _numBytes, unsigned _counter, bool _isHexLiteral);
|
||||||
|
|
||||||
// Static function definitions
|
// Static function definitions
|
||||||
static bool isValueType(DataType _dataType)
|
static bool isValueType(DataType _dataType)
|
||||||
@ -345,6 +375,12 @@ private:
|
|||||||
return DataType::BYTES;
|
return DataType::BYTES;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// Returns true if input is either a string or bytes, false otherwise.
|
||||||
|
static bool isDataTypeBytesOrString(DataType _type)
|
||||||
|
{
|
||||||
|
return _type == DataType::STRING || _type == DataType::BYTES;
|
||||||
|
}
|
||||||
|
|
||||||
// Convert _counter to string and return its keccak256 hash
|
// Convert _counter to string and return its keccak256 hash
|
||||||
static u256 hashUnsignedInt(unsigned _counter)
|
static u256 hashUnsignedInt(unsigned _counter)
|
||||||
{
|
{
|
||||||
@ -387,17 +423,31 @@ private:
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
// String and bytes literals are derived by hashing a monotonically increasing
|
/// Returns a pseudo-random value for the size of a string/hex
|
||||||
// counter and enclosing the (potentially cropped) hash inside double quotes.
|
/// literal. Used for creating variable length hex/string literals.
|
||||||
// Cropping is achieved by masking out higher order bits.
|
/// @param _counter Monotonically increasing counter value
|
||||||
// TODO: Test invalid encoding of bytes/string arguments that hold values of over 32 bytes.
|
static unsigned getVarLength(unsigned _counter)
|
||||||
// See https://github.com/ethereum/solidity/issues/7180
|
{
|
||||||
|
// Since _counter values are usually small, we use
|
||||||
|
// this linear equation to make the number derived from
|
||||||
|
// _counter approach a uniform distribution over
|
||||||
|
// [0, s_maxDynArrayLength]
|
||||||
|
return (_counter + 879) * 32 % (s_maxDynArrayLength + 1);
|
||||||
|
}
|
||||||
|
|
||||||
|
/// Returns a hex/string literal of variable length whose value and
|
||||||
|
/// size are pseudo-randomly determined from the counter value.
|
||||||
|
/// @param _counter A monotonically increasing counter value
|
||||||
|
/// @param _isHexLiteral Flag that indicates whether hex (if true) or
|
||||||
|
/// string literal (false) is desired
|
||||||
|
/// @return A variable length hex/string value
|
||||||
static std::string bytesArrayValueAsString(unsigned _counter, bool _isHexLiteral)
|
static std::string bytesArrayValueAsString(unsigned _counter, bool _isHexLiteral)
|
||||||
{
|
{
|
||||||
// We use _counter to not only create a value but to crop it
|
return variableLengthValueAsString(
|
||||||
// to a length (l) such that 0 <= l <= 32 (hence the use of 33 as
|
getVarLength(_counter),
|
||||||
// the modulo constant)
|
_counter,
|
||||||
return hexValueAsString(_counter % 33, _counter, _isHexLiteral);
|
_isHexLiteral
|
||||||
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
/// Contains the test program
|
/// Contains the test program
|
||||||
@ -416,8 +466,13 @@ private:
|
|||||||
unsigned m_varCounter;
|
unsigned m_varCounter;
|
||||||
/// Monotonically increasing return value for error reporting
|
/// Monotonically increasing return value for error reporting
|
||||||
unsigned m_returnValue;
|
unsigned m_returnValue;
|
||||||
|
/// Flag that indicates if last parameter passed to a function call
|
||||||
|
/// is of a type that is going to be right padded by the ABI
|
||||||
|
/// encoder.
|
||||||
|
bool m_isLastParamRightPadded;
|
||||||
static unsigned constexpr s_maxArrayLength = 4;
|
static unsigned constexpr s_maxArrayLength = 4;
|
||||||
static unsigned constexpr s_maxArrayDimensions = 4;
|
static unsigned constexpr s_maxArrayDimensions = 4;
|
||||||
|
static unsigned constexpr s_maxDynArrayLength = 256;
|
||||||
/// Prefixes for declared and parameterized variable names
|
/// Prefixes for declared and parameterized variable names
|
||||||
static auto constexpr s_varNamePrefix = "x_";
|
static auto constexpr s_varNamePrefix = "x_";
|
||||||
static auto constexpr s_paramNamePrefix = "c_";
|
static auto constexpr s_paramNamePrefix = "c_";
|
||||||
|
Loading…
Reference in New Issue
Block a user