Skip to content

Commit 34b96c1

Browse files
bnoordhuisevanlucas
authored andcommitted
deps: backport 3a9bfec from v8 upstream
Original commit message: Fix overflow issue in Zone::New When requesting a large allocation near the end of the address space, the computation could overflow and erroneously *not* grow the Zone as required. BUG=chromium:606115 LOG=y Review-Url: https://codereview.chromium.org/1930873002 Cr-Commit-Position: refs/heads/master@{#35903} PR-URL: https://github.com/nodejs/node-private/pull/40 Reviewed-By: Fedor Indutny <fedor.indutny@gmail.com> Reviewed-By: Myles Borins <myles.borins@gmail.com> Reviewed-By: Rod Vagg <rod@vagg.org>
1 parent 03d36ae commit 34b96c1

File tree

2 files changed

+9
-3
lines changed

2 files changed

+9
-3
lines changed

deps/v8/include/v8-version.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define V8_MAJOR_VERSION 4
1212
#define V8_MINOR_VERSION 6
1313
#define V8_BUILD_NUMBER 85
14-
#define V8_PATCH_LEVEL 31
14+
#define V8_PATCH_LEVEL 32
1515

1616
// Use 1 for candidates and 0 otherwise.
1717
// (Boolean macro values are not supported by all preprocessors.)

deps/v8/src/zone.cc

+8-2
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,10 @@ void* Zone::New(size_t size) {
105105
Address result = position_;
106106

107107
const size_t size_with_redzone = size + kASanRedzoneBytes;
108-
if (limit_ < position_ + size_with_redzone) {
108+
const uintptr_t limit = reinterpret_cast<uintptr_t>(limit_);
109+
const uintptr_t position = reinterpret_cast<uintptr_t>(position_);
110+
// position_ > limit_ can be true after the alignment correction above.
111+
if (limit < position || size_with_redzone > limit - position) {
109112
result = NewExpand(size_with_redzone);
110113
} else {
111114
position_ += size_with_redzone;
@@ -222,7 +225,10 @@ Address Zone::NewExpand(size_t size) {
222225
// Make sure the requested size is already properly aligned and that
223226
// there isn't enough room in the Zone to satisfy the request.
224227
DCHECK_EQ(size, RoundDown(size, kAlignment));
225-
DCHECK_LT(limit_, position_ + size);
228+
DCHECK(limit_ < position_ ||
229+
reinterpret_cast<uintptr_t>(limit_) -
230+
reinterpret_cast<uintptr_t>(position_) <
231+
size);
226232

227233
// Compute the new segment size. We use a 'high water mark'
228234
// strategy, where we increase the segment size every time we expand

0 commit comments

Comments
 (0)