Skip to content

Commit 018c769

Browse files
committed
fix(dbPointer): fix utf8 bug for dbPointer
1 parent 6f30b4e commit 018c769

File tree

2 files changed

+61
-5
lines changed

2 files changed

+61
-5
lines changed

lib/parser/deserializer.js

+3-5
Original file line numberDiff line numberDiff line change
@@ -547,6 +547,9 @@ function deserializeObject(buffer, index, options, isArray) {
547547
)
548548
throw new Error('bad string length in bson');
549549
// Namespace
550+
if (!validateUtf8(buffer, index, index + stringSize - 1)) {
551+
throw new Error('Invalid UTF-8 string in BSON document');
552+
}
550553
const namespace = buffer.toString('utf8', index, index + stringSize - 1);
551554
// Update parse index position
552555
index = index + stringSize;
@@ -558,11 +561,6 @@ function deserializeObject(buffer, index, options, isArray) {
558561

559562
// Update the index
560563
index = index + 12;
561-
for (i = 0; i < namespace.length; i++) {
562-
if (namespace.charCodeAt(i) === 0xfffd) {
563-
throw new Error('Invalid UTF-8 string in BSON document');
564-
}
565-
}
566564

567565
// Upgrade to DBRef type
568566
object[name] = new DBRef(namespace, oid);

test/node/db_pointer_tests.js

+58
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
'use strict';
2+
3+
const BSON = require('../../lib/bson');
4+
const expect = require('chai').expect;
5+
6+
// 0x0C foo\0 \0\0\07 String.fromCharCode(0x41, 0x42, 0xfffd, 0x43, 0x44) 12
7+
const bsonSnippet = Buffer.from([
8+
// Size
9+
34,
10+
0,
11+
0,
12+
0,
13+
// BSON type for DBPointer
14+
0x0c,
15+
16+
// CString Label Foo
17+
0x66,
18+
0x6f,
19+
0x6f,
20+
0,
21+
22+
// Length of UTF8 string "AB�CD"
23+
8,
24+
0,
25+
0,
26+
0,
27+
0x41,
28+
0x42,
29+
0xef,
30+
0xbf,
31+
0xbd,
32+
0x43,
33+
0x44,
34+
0,
35+
36+
// 12-bit pointer
37+
1,
38+
2,
39+
3,
40+
4,
41+
5,
42+
6,
43+
7,
44+
8,
45+
9,
46+
10,
47+
11,
48+
12,
49+
50+
// null terminator
51+
0
52+
]);
53+
54+
describe('dbpointer tests', function() {
55+
it('can serialize and deserialize 0xFFFD in dbpointer name', function() {
56+
expect(() => BSON.deserialize(bsonSnippet)).to.not.throw();
57+
});
58+
});

0 commit comments

Comments
 (0)