Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix overflows with memory of max size #809

Merged
merged 3 commits into from
Jan 13, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 7 additions & 5 deletions lib/fizzy/execute.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -145,17 +145,19 @@ inline uint32_t grow_memory(
assert(memory_pages_limit <= MaxMemoryPagesLimit);
assert(cur_pages <= memory_pages_limit);

const auto new_pages = uint64_t{cur_pages} + delta_pages;
if (new_pages > memory_pages_limit)
const auto new_pages_u64 = uint64_t{cur_pages} + delta_pages;
if (new_pages_u64 > memory_pages_limit)
return static_cast<uint32_t>(-1);

const auto new_pages = static_cast<uint32_t>(new_pages_u64);

try
{
// new_pages <= memory_pages_limit <= MaxMemoryPagesLimit guarantees multiplication
// new_pages <= memory_pages_limit <= MaxMemoryPagesLimit guarantees memory_pages_to_bytes
// will not overflow uint32_t.
assert(new_pages * PageSize <= std::numeric_limits<uint32_t>::max());
assert(memory_pages_to_bytes(new_pages) <= std::numeric_limits<uint32_t>::max());
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This assertion is fixed in follow-up PRs.

static_assert(sizeof(size_t) >= sizeof(uint32_t));
memory.resize(static_cast<size_t>(new_pages) * PageSize);
memory.resize(static_cast<size_t>(memory_pages_to_bytes(new_pages)));
return static_cast<uint32_t>(cur_pages);
}
catch (...)
Expand Down
14 changes: 9 additions & 5 deletions lib/fizzy/instantiate.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,8 @@ void match_imported_memories(const std::vector<Memory>& module_imported_memories

const auto min = imported_memories[0].limits.min;
const auto& max = imported_memories[0].limits.max;
if (size < min * PageSize || (max.has_value() && size > *max * PageSize))
if (size < memory_pages_to_bytes(min) ||
(max.has_value() && size > memory_pages_to_bytes(*max)))
throw instantiate_error{"provided imported memory doesn't fit provided limits"};
}
}
Expand Down Expand Up @@ -183,7 +184,7 @@ std::tuple<bytes_ptr, Limits> allocate_memory(const std::vector<Memory>& module_
if (memory_pages_limit > MaxMemoryPagesLimit)
{
throw instantiate_error{"hard memory limit cannot exceed " +
std::to_string(uint64_t{MaxMemoryPagesLimit} * PageSize) +
std::to_string(memory_pages_to_bytes(MaxMemoryPagesLimit)) +
" bytes"};
}

Expand All @@ -199,11 +200,13 @@ std::tuple<bytes_ptr, Limits> allocate_memory(const std::vector<Memory>& module_
(memory_max.has_value() && *memory_max > memory_pages_limit))
{
throw instantiate_error{"cannot exceed hard memory limit of " +
std::to_string(memory_pages_limit * PageSize) + " bytes"};
std::to_string(memory_pages_to_bytes(memory_pages_limit)) +
" bytes"};
}

// NOTE: fill it with zeroes
bytes_ptr memory{new bytes(memory_min * PageSize, 0), bytes_delete};
bytes_ptr memory{
new bytes(static_cast<size_t>(memory_pages_to_bytes(memory_min)), 0), bytes_delete};
return {std::move(memory), module_memories[0].limits};
}
else if (imported_memories.size() == 1)
Expand All @@ -216,7 +219,8 @@ std::tuple<bytes_ptr, Limits> allocate_memory(const std::vector<Memory>& module_
(memory_max.has_value() && *memory_max > memory_pages_limit))
{
throw instantiate_error{"imported memory limits cannot exceed hard memory limit of " +
std::to_string(memory_pages_limit * PageSize) + " bytes"};
std::to_string(memory_pages_to_bytes(memory_pages_limit)) +
" bytes"};
}

bytes_ptr memory{imported_memories[0].data, null_delete};
Expand Down
6 changes: 6 additions & 0 deletions lib/fizzy/limits.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ namespace fizzy
/// The page size as defined by the WebAssembly 1.0 specification.
constexpr uint32_t PageSize = 65536;

/// Convert memory size in pages to size in bytes.
inline constexpr uint64_t memory_pages_to_bytes(uint32_t pages) noexcept
{
return uint64_t{pages} * PageSize;
}

/// The maximum memory page limit as defined by the specification.
/// It is only possible to address 4 GB (32-bit) of memory.
constexpr uint32_t MaxMemoryPagesLimit = (4 * 1024 * 1024 * 1024ULL) / PageSize;
Expand Down
9 changes: 9 additions & 0 deletions test/unittests/instantiate_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -579,6 +579,15 @@ TEST(instantiate, imported_memory_custom_hard_limit)
EXPECT_NO_THROW(instantiate(*module_max_limit, {}, {}, {{&memory, {3, 6}}}, {}, 8));
}

TEST(instantiate, memory_pages_to_bytes)
{
EXPECT_EQ(memory_pages_to_bytes(0), 0);
EXPECT_EQ(memory_pages_to_bytes(1), 65536);
EXPECT_EQ(memory_pages_to_bytes(2), 2 * 65536);
EXPECT_EQ(memory_pages_to_bytes(65536), uint64_t{65536} * 65536);
EXPECT_EQ(memory_pages_to_bytes(MaxMemoryPagesLimit), 4 * 1024 * 1024 * 1024ULL);
}

TEST(instantiate, element_section)
{
/* wat2wasm
Expand Down