-
Notifications
You must be signed in to change notification settings - Fork 8k
Fix Use-After-Free in RecursiveArrayIterator::getChildren() #21520
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
Closed
+22
−1
Closed
Changes from all commits
Commits
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,17 @@ | ||
| --TEST-- | ||
| GH-21499: RecursiveArrayIterator getChildren UAF after parent free | ||
| --FILE-- | ||
| <?php | ||
| $it = new RecursiveArrayIterator([[1]]); | ||
| $child = $it->getChildren(); | ||
| unset($it); | ||
| $child->__construct([2, 3]); | ||
| var_dump($child->getArrayCopy()); | ||
| ?> | ||
| --EXPECT-- | ||
| array(2) { | ||
| [0]=> | ||
| int(2) | ||
| [1]=> | ||
| int(3) | ||
| } | ||
Oops, something went wrong.
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.
I wonder if the solution is not to ban calling the constructor a second time, this is quite a common thing we enforce. Does this fix the issue or is there another way of triggering it?
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.
Y'all are missing the point of the issue.
I described this somewhere in detail before as I found this a while back too, but it was on a PR and github search sucks.
Storing a bucket pointer is never safe, and manipulating the RC counts is also not safe. If the array resizes or reallocates or gets freed by an external factor, then the bucket pointer is stale and will cause crashes etc.
The original patch that introduced this bucket pointer should simply be reverted as it's completely wrong (as is often the case from the swoole people). If the behaviour is the correct one (it was the same behaviour for some versions in the PHP 5.3.x days), then the way to fix this is not by storing a bucket pointer, but by storing the key and making sure the modifications go through the regular zend_hash... APIs with that key.
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.
Yeah I was wondering why we were storing the bucket in the first place, and I mentioned that on the other PR that targeted master as it didn't seem safe.
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.
I propose to revert the original commit that introduced it. The problem it causes (i.e. silent memory corruption) is far worse than the original issue it tried to solve.
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.
Yeah, agreed. Let me see if I can figure out a patch with the revert.
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.
True, lets close this patch instead.