/* * Copyright (C) 2016-2017 Apple Inc. All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY APPLE INC. ``AS IS'' AND ANY * EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL APPLE INC. OR * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, * EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, * PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR * PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY * OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #pragma once #if ENABLE(WEBASSEMBLY) #include "B3Procedure.h" #include "JITCompilation.h" #include "VirtualRegister.h" #include "WasmFormat.h" #include "WasmLimits.h" #include "WasmModuleInformation.h" #include "WasmOps.h" #include "WasmSections.h" #include #include #include #include #include #include #include namespace JSC { namespace Wasm { namespace FailureHelper { // FIXME We should move this to makeString. It's in its own namespace to enable C++ Argument Dependent Lookup à la std::swap: user code can deblare its own "boxFailure" and the fail() helper will find it. template inline String makeString(const T& failure) { return WTF::toString(failure); } } template class Parser { public: typedef String ErrorType; typedef Unexpected UnexpectedResult; typedef Expected PartialResult; typedef Expected Result; const uint8_t* source() const { return m_source; } size_t length() const { return m_sourceLength; } size_t offset() const { return m_offset; } protected: Parser(const uint8_t*, size_t); bool WARN_UNUSED_RETURN consumeCharacter(char); bool WARN_UNUSED_RETURN consumeString(const char*); bool WARN_UNUSED_RETURN consumeUTF8String(Name&, size_t); bool WARN_UNUSED_RETURN parseVarUInt1(uint8_t&); bool WARN_UNUSED_RETURN parseInt7(int8_t&); bool WARN_UNUSED_RETURN peekInt7(int8_t&); bool WARN_UNUSED_RETURN parseUInt7(uint8_t&); bool WARN_UNUSED_RETURN parseUInt8(uint8_t&); bool WARN_UNUSED_RETURN parseUInt32(uint32_t&); bool WARN_UNUSED_RETURN parseUInt64(uint64_t&); bool WARN_UNUSED_RETURN parseVarUInt32(uint32_t&); bool WARN_UNUSED_RETURN parseVarUInt64(uint64_t&); bool WARN_UNUSED_RETURN parseVarInt32(int32_t&); bool WARN_UNUSED_RETURN parseVarInt64(int64_t&); PartialResult WARN_UNUSED_RETURN parseBlockSignature(const ModuleInformation&, BlockSignature&); bool WARN_UNUSED_RETURN parseValueType(const ModuleInformation&, Type&); bool WARN_UNUSED_RETURN parseRefType(const ModuleInformation&, Type&); bool WARN_UNUSED_RETURN parseExternalKind(ExternalKind&); bool WARN_UNUSED_RETURN parseHeapType(const ModuleInformation&, int32_t&); size_t m_offset = 0; template NEVER_INLINE UnexpectedResult WARN_UNUSED_RETURN fail(Args... args) const { using namespace FailureHelper; // See ADL comment in namespace above. return UnexpectedResult(makeString("WebAssembly.Module doesn't parse at byte "_s, String::number(m_offset), ": "_s, makeString(args)...)); } #define WASM_PARSER_FAIL_IF(condition, ...) do { \ if (UNLIKELY(condition)) \ return fail(__VA_ARGS__); \ } while (0) #define WASM_FAIL_IF_HELPER_FAILS(helper) do { \ auto helperResult = helper; \ if (UNLIKELY(!helperResult)) \ return makeUnexpected(WTFMove(helperResult.error())); \ } while (0) private: const uint8_t* m_source; size_t m_sourceLength; // We keep a local reference to the global table so we don't have to fetch it to find thunk signatures. const SignatureInformation& m_signatureInformation; }; template ALWAYS_INLINE Parser::Parser(const uint8_t* sourceBuffer, size_t sourceLength) : m_source(sourceBuffer) , m_sourceLength(sourceLength) , m_signatureInformation(SignatureInformation::singleton()) { } template ALWAYS_INLINE bool Parser::consumeCharacter(char c) { if (m_offset >= length()) return false; if (c == source()[m_offset]) { m_offset++; return true; } return false; } template ALWAYS_INLINE bool Parser::consumeString(const char* str) { unsigned start = m_offset; if (m_offset >= length()) return false; for (size_t i = 0; str[i]; i++) { if (!consumeCharacter(str[i])) { m_offset = start; return false; } } return true; } template ALWAYS_INLINE bool Parser::consumeUTF8String(Name& result, size_t stringLength) { if (length() < stringLength || m_offset > length() - stringLength) return false; if (stringLength > maxStringSize) return false; if (!result.tryReserveCapacity(stringLength)) return false; const uint8_t* stringStart = source() + m_offset; // We don't cache the UTF-16 characters since it seems likely the string is ASCII. if (UNLIKELY(!charactersAreAllASCII(stringStart, stringLength))) { Vector buffer(stringLength); UChar* bufferStart = buffer.data(); UChar* bufferCurrent = bufferStart; const char* stringCurrent = reinterpret_cast(stringStart); if (!WTF::Unicode::convertUTF8ToUTF16(stringCurrent, reinterpret_cast(stringStart + stringLength), &bufferCurrent, bufferCurrent + buffer.size())) return false; } result.grow(stringLength); memcpy(result.data(), stringStart, stringLength); m_offset += stringLength; return true; } template ALWAYS_INLINE bool Parser::parseVarUInt32(uint32_t& result) { return WTF::LEBDecoder::decodeUInt32(m_source, m_sourceLength, m_offset, result); } template ALWAYS_INLINE bool Parser::parseVarUInt64(uint64_t& result) { return WTF::LEBDecoder::decodeUInt64(m_source, m_sourceLength, m_offset, result); } template ALWAYS_INLINE bool Parser::parseVarInt32(int32_t& result) { return WTF::LEBDecoder::decodeInt32(m_source, m_sourceLength, m_offset, result); } template ALWAYS_INLINE bool Parser::parseVarInt64(int64_t& result) { return WTF::LEBDecoder::decodeInt64(m_source, m_sourceLength, m_offset, result); } template ALWAYS_INLINE bool Parser::parseUInt32(uint32_t& result) { if (length() < 4 || m_offset > length() - 4) return false; result = *reinterpret_cast(source() + m_offset); m_offset += 4; return true; } template ALWAYS_INLINE bool Parser::parseUInt64(uint64_t& result) { if (length() < 8 || m_offset > length() - 8) return false; result = *reinterpret_cast(source() + m_offset); m_offset += 8; return true; } template ALWAYS_INLINE bool Parser::parseUInt8(uint8_t& result) { if (m_offset >= length()) return false; result = source()[m_offset++]; return true; } template ALWAYS_INLINE bool Parser::parseInt7(int8_t& result) { if (m_offset >= length()) return false; uint8_t v = source()[m_offset++]; result = (v & 0x40) ? WTF::bitwise_cast(uint8_t(v | 0x80)) : v; return (v & 0x80) == 0; } template ALWAYS_INLINE bool Parser::peekInt7(int8_t& result) { if (m_offset >= length()) return false; uint8_t v = source()[m_offset]; result = (v & 0x40) ? WTF::bitwise_cast(uint8_t(v | 0x80)) : v; return (v & 0x80) == 0; } template ALWAYS_INLINE bool Parser::parseUInt7(uint8_t& result) { if (m_offset >= length()) return false; result = source()[m_offset++]; return result < 0x80; } template ALWAYS_INLINE bool Parser::parseVarUInt1(uint8_t& result) { uint32_t temp; if (!parseVarUInt32(temp)) return false; if (temp > 1) return false; result = static_cast(temp); return true; } template ALWAYS_INLINE typename Parser::PartialResult Parser::parseBlockSignature(const ModuleInformation& info, BlockSignature& result) { int8_t typeKind; if (peekInt7(typeKind) && isValidTypeKind(typeKind)) { Type type = {static_cast(typeKind), Nullable::Yes, 0}; WASM_PARSER_FAIL_IF(!(isValueType(type) || type.isVoid()), "result type of block: ", makeString(type.kind), " is not a value type or Void"); result = m_signatureInformation.thunkFor(type); m_offset++; return { }; } int64_t index; WASM_PARSER_FAIL_IF(!parseVarInt64(index), "Block-like instruction doesn't return value type but can't decode type section index"); WASM_PARSER_FAIL_IF(index < 0, "Block-like instruction signature index is negative"); WASM_PARSER_FAIL_IF(static_cast(index) >= info.usedSignatures.size(), "Block-like instruction signature index is out of bounds. Index: ", index, " type index space: ", info.usedSignatures.size()); result = &info.usedSignatures[index].get(); return { }; } template ALWAYS_INLINE bool Parser::parseHeapType(const ModuleInformation& info, int32_t& result) { if (!Options::useWebAssemblyTypedFunctionReferences()) return false; int32_t heapType; if (!parseVarInt32(heapType)) return false; if (heapType < 0) { if (isValidHeapTypeKind(static_cast(heapType))) { result = heapType; return true; } return false; } if (static_cast(heapType) >= info.usedSignatures.size()) return false; result = heapType; return true; } template ALWAYS_INLINE bool Parser::parseValueType(const ModuleInformation& info, Type& result) { int8_t kind; if (!parseInt7(kind)) return false; if (!isValidTypeKind(kind)) return false; TypeKind typeKind = static_cast(kind); bool isNullable = true; SignatureIndex sigIndex = 0; if (Options::useWebAssemblyTypedFunctionReferences() && (typeKind == TypeKind::Funcref || typeKind == TypeKind::Externref)) { sigIndex = static_cast(typeKind); typeKind = TypeKind::RefNull; } else if (typeKind == TypeKind::Ref || typeKind == TypeKind::RefNull) { isNullable = typeKind == TypeKind::RefNull; int32_t heapType; if (!parseHeapType(info, heapType)) return false; sigIndex = heapType < 0 ? static_cast(heapType) : SignatureInformation::get(info.usedSignatures[heapType].get()); } Type type = { typeKind, static_cast(isNullable), sigIndex }; if (!isValueType(type)) return false; result = type; return true; } template ALWAYS_INLINE bool Parser::parseRefType(const ModuleInformation& info, Type& result) { const bool parsed = parseValueType(info, result); return parsed && isRefType(result); } template ALWAYS_INLINE bool Parser::parseExternalKind(ExternalKind& result) { uint8_t value; if (!parseUInt7(value)) return false; if (!isValidExternalKind(value)) return false; result = static_cast(value); return true; } ALWAYS_INLINE I32InitExpr makeI32InitExpr(uint8_t opcode, uint32_t bits) { RELEASE_ASSERT(opcode == I32Const || opcode == GetGlobal); if (opcode == I32Const) return I32InitExpr::constValue(bits); return I32InitExpr::globalImport(bits); } } } // namespace JSC::Wasm #endif // ENABLE(WEBASSEMBLY)