-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
src: add aliased-buffer-overflow abort test
Added native extension similar to test/addons/stringbytes-external-exceeded-max. Added an abort test to regression test the non overflow behaviour. PR-URL: #31740 Reviewed-By: James M Snell <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: David Carlier <[email protected]> Reviewed-By: Colin Ihrig <[email protected]>
- Loading branch information
Showing
4 changed files
with
68 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
{ | ||
'defines': [ 'V8_DEPRECATION_WARNINGS=1', 'NODE_WANT_INTERNALS=1' ], | ||
'conditions': [ | ||
[ 'OS in "linux freebsd openbsd solaris android aix cloudabi"', { | ||
'cflags': ['-Wno-cast-function-type'], | ||
}], | ||
], | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,23 @@ | ||
#include <stdlib.h> | ||
#include <node.h> | ||
#include <v8.h> | ||
|
||
#include <aliased_buffer.h> | ||
#include <util-inl.h> | ||
|
||
void AllocateAndResizeBuffer( | ||
const v8::FunctionCallbackInfo<v8::Value>& args) { | ||
v8::Isolate* isolate = args.GetIsolate(); | ||
int64_t length = args[0].As<v8::BigInt>()->Int64Value(); | ||
|
||
node::AliasedBigUint64Array array{isolate, 0}; | ||
|
||
array.reserve(length); | ||
assert(false); | ||
} | ||
|
||
void init(v8::Local<v8::Object> exports) { | ||
NODE_SET_METHOD(exports, | ||
"allocateAndResizeBuffer", | ||
AllocateAndResizeBuffer); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
{ | ||
'targets': [ | ||
{ | ||
'target_name': 'binding', | ||
'sources': [ 'binding.cc' ], | ||
'includes': ['../common.gypi'], | ||
} | ||
] | ||
} |
28 changes: 28 additions & 0 deletions
28
test/abort/test_abort-aliased-buffer-overflow/test-abort-aliased-buffer-overflow.js
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
'use strict'; | ||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const cp = require('child_process'); | ||
|
||
// This test ensures that during resizing of an Aliased*Array the computation | ||
// of the new size does not overflow. | ||
|
||
if (process.argv[2] === 'child') { | ||
// test | ||
const binding = require(`./build/${common.buildType}/binding`); | ||
|
||
const bigValue = BigInt('0xE000 0000 E000 0000'); | ||
binding.AllocateAndResizeBuffer(bigValue); | ||
assert.fail('this should be unreachable'); | ||
} else { | ||
// observer | ||
const child = cp.spawn(`${process.execPath}`, [`${__filename}`, 'child']); | ||
child.on('exit', common.mustCall(function(code, signal) { | ||
if (common.isWindows) { | ||
assert.strictEqual(code, 134); | ||
assert.strictEqual(signal, null); | ||
} else { | ||
assert.strictEqual(code, null); | ||
assert.strictEqual(signal, 'SIGABRT'); | ||
} | ||
})); | ||
} |