-
Notifications
You must be signed in to change notification settings - Fork 8.1k
Zend: Fix GH-22257 type confusion in Exception::getTraceAsString(). #22263
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
Open
devnexen
wants to merge
4
commits into
php:master
Choose a base branch
from
devnexen:gh22257
base: master
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+40
−4
Open
Changes from all commits
Commits
Show all changes
4 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,29 @@ | ||
| --TEST-- | ||
| GH-22257 (Type confusion / OOB read unserializing an Exception with a non-array trace) | ||
| --CREDITS-- | ||
| Igor Sak-Sakovskiy (Positive Technologies) | ||
| --FILE-- | ||
| <?php | ||
| /* A crafted, deliberately truncated payload makes the nested value of the typed | ||
| * "array $trace" property fail to unserialize. On that failure path the slot used | ||
| * to keep the half-built (non-array) value, and the partially-built Exception was | ||
| * then exposed to getTraceAsString() through SplHeap's delayed __unserialize(), | ||
| * type-confusing the object as a HashTable. The slot is now reset to the property | ||
| * default, so the run completes without an out-of-bounds read. */ | ||
| $n = "\x00"; | ||
| try { | ||
| unserialize( | ||
| 'O:9:"Exception":1:{s:16:"' . $n . 'Exception' . $n . 'trace";' . | ||
| 'O:8:"stdClass":2:{s:1:"0";O:10:"SplMaxHeap":2:{i:0;a:0:{}i:1;a:2:{' . | ||
| 's:5:"flags";i:0;s:13:"heap_elements";a:2:{i:0;s:0:"";i:1;R:1;}}}z}}' | ||
| ); | ||
| } catch (\Throwable $e) { | ||
| for (; $e; $e = $e->getPrevious()) { | ||
| printf("%s: %s\n", $e::class, $e->getMessage()); | ||
| } | ||
| } | ||
| echo "OK\n"; | ||
| ?> | ||
| --EXPECTF-- | ||
| Warning: unserialize(): Error at offset %d of %d bytes in %s on line %d | ||
| OK |
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
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 assume evil destructors can cause issues here, so a temporary copy may be necessary (i.e. the
zval garbage;trick)I wonder though if "restoring after violation" is the right approach, but that may be a much bigger change
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.
Went with
var_push_dtor_valuerather than the inlinezval garbage, it moves the old value into the deferred-dtor list. So nothing is destroyed during the unwind or the delayed calls wdyt ?