Skip to content

Commit 7dbcfc6

Browse files
ChALkeRevanlucas
authored andcommittedJun 11, 2018
src: avoid hanging on Buffer#fill 0-length input
Previously, zero-length Buffers and TypedArrays passed as fillers hanged Buffer#fill and Buffer.from. This changes those cases when it hanged to a zero-fill instead, which should be backwards compatible. This fixes CVE-2018-7167. PR-URL: https://github.com/nodejs-private/node-private/pull/121 Fixes: https://github.com/nodejs-private/security/issues/193 Refs: https://github.com/nodejs-private/node-private/pull/118 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Evan Lucas <evanlucas@me.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
1 parent c4948ea commit 7dbcfc6

File tree

3 files changed

+42
-0
lines changed

3 files changed

+42
-0
lines changed
 

‎src/node_buffer.cc

+6
Original file line numberDiff line numberDiff line change
@@ -654,6 +654,12 @@ void Fill(const FunctionCallbackInfo<Value>& args) {
654654
size_t in_there = str_length;
655655
char* ptr = ts_obj_data + start + str_length;
656656

657+
if (in_there == 0) {
658+
// Just use zero-fill if the input was empty
659+
memset(ts_obj_data + start, 0, fill_length);
660+
return;
661+
}
662+
657663
while (in_there < fill_length - in_there) {
658664
memcpy(ptr, ts_obj_data + start, in_there);
659665
ptr += in_there;
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
'use strict';
2+
3+
require('../common');
4+
const assert = require('assert');
5+
6+
for (const fill of [
7+
'',
8+
[],
9+
Buffer.from(''),
10+
new Uint8Array(0),
11+
{ toString: () => '' },
12+
{ toString: () => '', length: 10 }
13+
]) {
14+
for (let i = 0; i < 50; i++) {
15+
const buf = Buffer.alloc(100, fill);
16+
assert.strictEqual(buf.length, 100);
17+
for (let n = 0; n < buf.length; n++)
18+
assert.strictEqual(buf[n], 0);
19+
}
20+
}

‎test/parallel/test-buffer-fill.js

+16
Original file line numberDiff line numberDiff line change
@@ -319,6 +319,22 @@ Buffer.alloc(8, '');
319319
assert.strictEqual(buf.toString(), 'էէէէէ');
320320
}
321321

322+
{
323+
for (const fill of [
324+
'',
325+
[],
326+
Buffer.from(''),
327+
new Uint8Array(0),
328+
{ toString: () => '' },
329+
{ toString: () => '', length: 10 }
330+
]) {
331+
assert.deepStrictEqual(
332+
Buffer.alloc(10, 'abc').fill(fill),
333+
Buffer.alloc(10)
334+
);
335+
}
336+
}
337+
322338
// Testing public API. Make sure "start" is properly checked, even if it's
323339
// magically mangled using Symbol.toPrimitive.
324340
{

0 commit comments

Comments
 (0)
Please sign in to comment.