Skip to content

Commit 0767c2f

Browse files
committed
lib: fix max size check in Buffer constructor
A number -> uint32 type coercion bug made buffer sizes larger than kMaxLength (0x3fffffff) wrap around. Instead of rejecting the requested size with an exception, the constructor created a buffer with the wrong size. PR-URL: #657 Reviewed-By: Trevor Norris <[email protected]>
1 parent 65b1e4f commit 0767c2f

File tree

2 files changed

+10
-3
lines changed

2 files changed

+10
-3
lines changed

lib/buffer.js

+7-3
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ function Buffer(subject, encoding) {
3131
return new Buffer(subject, encoding);
3232

3333
if (util.isNumber(subject)) {
34-
this.length = subject > 0 ? subject >>> 0 : 0;
34+
this.length = +subject;
3535

3636
} else if (util.isString(subject)) {
3737
if (!util.isString(encoding) || encoding.length === 0)
@@ -42,8 +42,7 @@ function Buffer(subject, encoding) {
4242
} else if (util.isObject(subject)) {
4343
if (subject.type === 'Buffer' && util.isArray(subject.data))
4444
subject = subject.data;
45-
// Must use floor() because array length may be > kMaxLength.
46-
this.length = +subject.length > 0 ? Math.floor(+subject.length) : 0;
45+
this.length = +subject.length;
4746

4847
} else {
4948
throw new TypeError('must start with number, buffer, array or string');
@@ -54,6 +53,11 @@ function Buffer(subject, encoding) {
5453
'size: 0x' + kMaxLength.toString(16) + ' bytes');
5554
}
5655

56+
if (this.length < 0)
57+
this.length = 0;
58+
else
59+
this.length >>>= 0; // Coerce to uint32.
60+
5761
this.parent = undefined;
5862
if (this.length <= (Buffer.poolSize >>> 1) && this.length > 0) {
5963
if (this.length > poolSize - poolOffset)

test/parallel/test-buffer.js

+3
Original file line numberDiff line numberDiff line change
@@ -1163,3 +1163,6 @@ assert.throws(function() {
11631163
var b = new Buffer(1);
11641164
b.equals('abc');
11651165
});
1166+
1167+
// Regression test for https://github.com/iojs/io.js/issues/649.
1168+
assert.throws(function() { Buffer(1422561062959).toString('utf8'); });

0 commit comments

Comments
 (0)