-
Notifications
You must be signed in to change notification settings - Fork 209
PHPC-884: Do not skip public property with empty string name during BSON encoding #504
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file contains hidden or 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,27 @@ | ||
--TEST-- | ||
BSON\fromPHP(): PHP document with public property whose name is an empty string | ||
--FILE-- | ||
<?php | ||
|
||
require_once __DIR__ . '/../utils/tools.php'; | ||
|
||
$tests = [ | ||
['' => 1], | ||
(object) ['' => 1], | ||
]; | ||
|
||
foreach ($tests as $document) { | ||
$s = fromPHP($document); | ||
echo "Test ", toJSON($s), "\n"; | ||
hex_dump($s); | ||
} | ||
|
||
?> | ||
===DONE=== | ||
<?php exit(0); ?> | ||
--EXPECT-- | ||
Test { "" : 1 } | ||
0 : 0b 00 00 00 10 00 01 00 00 00 00 [...........] | ||
Test { "" : 1 } | ||
0 : 0b 00 00 00 10 00 01 00 00 00 00 [...........] | ||
===DONE=== |
This file contains hidden or 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,62 @@ | ||
--TEST-- | ||
BSON\fromPHP(): PHP documents with null bytes in field name | ||
--FILE-- | ||
<?php | ||
|
||
require_once __DIR__ . '/../utils/tools.php'; | ||
|
||
echo "\nTesting array with one leading null byte in field name\n"; | ||
echo throws(function() { | ||
fromPHP(["\0" => 1]); | ||
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n"; | ||
|
||
echo "\nTesting array with one trailing null byte in field name\n"; | ||
echo throws(function() { | ||
fromPHP(["a\0" => 1]); | ||
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n"; | ||
|
||
echo "\nTesting array with multiple null bytes in field name\n"; | ||
echo throws(function() { | ||
fromPHP(["\0\0\0" => 1]); | ||
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n"; | ||
|
||
/* Per PHPC-884, field names with a leading null byte are ignored when encoding | ||
* a document from an object's property hash table, since PHP uses leading bytes | ||
* to denote protected and private properties. */ | ||
echo "\nTesting object with one leading null byte in field name\n"; | ||
hex_dump(fromPHP((object) ["\0" => 1])); | ||
|
||
echo "\nTesting object with one trailing null byte in field name\n"; | ||
echo throws(function() { | ||
fromPHP((object) ["a\0" => 1]); | ||
}, 'MongoDB\Driver\Exception\UnexpectedValueException'), "\n"; | ||
|
||
echo "\nTesting object with multiple null bytes in field name\n"; | ||
hex_dump(fromPHP((object) ["\0\0\0" => 1])); | ||
|
||
?> | ||
===DONE=== | ||
<?php exit(0); ?> | ||
--EXPECT-- | ||
Testing array with one leading null byte in field name | ||
OK: Got MongoDB\Driver\Exception\UnexpectedValueException | ||
BSON keys cannot contain null bytes. Unexpected null byte after "". | ||
|
||
Testing array with one trailing null byte in field name | ||
OK: Got MongoDB\Driver\Exception\UnexpectedValueException | ||
BSON keys cannot contain null bytes. Unexpected null byte after "a". | ||
|
||
Testing array with multiple null bytes in field name | ||
OK: Got MongoDB\Driver\Exception\UnexpectedValueException | ||
BSON keys cannot contain null bytes. Unexpected null byte after "". | ||
|
||
Testing object with one leading null byte in field name | ||
0 : 05 00 00 00 00 [.....] | ||
|
||
Testing object with one trailing null byte in field name | ||
OK: Got MongoDB\Driver\Exception\UnexpectedValueException | ||
BSON keys cannot contain null bytes. Unexpected null byte after "a". | ||
|
||
Testing object with multiple null bytes in field name | ||
0 : 05 00 00 00 00 [.....] | ||
===DONE=== |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Added this exception message. This appears after we might skip object properties whose name contains a leading null byte (i.e. PHP's encoding for protected and private members). For arrays, the check happens on all string keys.
We don't check this for integer keys, since we convert those to strings ourself and don't have to worry about null bytes.