-
Notifications
You must be signed in to change notification settings - Fork 7.8k
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
ext/standard: Refactor unserialization callback function call #17484
Open
Girgias
wants to merge
2
commits into
php:master
Choose a base branch
from
Girgias:unserialize-callback-refactor
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.
Open
Changes from all commits
Commits
Show all changes
2 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
20 changes: 20 additions & 0 deletions
20
ext/standard/tests/serialize/serialization_objects_callback_lc_conversion.phpt
This file contains 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,20 @@ | ||
--TEST-- | ||
Bad unserialize_callback_func | ||
--FILE-- | ||
<?php | ||
ini_set('unserialize_callback_func','PascalCase'); | ||
|
||
function PascalCase(string $class) { | ||
var_dump($class); | ||
} | ||
|
||
try { | ||
unserialize('O:3:"FOO":0:{}'); | ||
} catch (Error $e) { | ||
echo $e->getMessage(), "\n"; | ||
} | ||
?> | ||
--EXPECTF-- | ||
string(3) "FOO" | ||
|
||
Warning: unserialize(): Function PascalCase() hasn't defined the class it was called for in %s on line %d |
This file contains 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
18 changes: 18 additions & 0 deletions
18
ext/standard/tests/serialize/serialization_objects_callback_null_byte.phpt
This file contains 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,18 @@ | ||
--TEST-- | ||
unserialize_callback_func which contains null bytes | ||
--FILE-- | ||
<?php | ||
ini_set('unserialize_callback_func', "foo\0butno"); | ||
|
||
function foo(string $name) { | ||
echo "Haha"; | ||
} | ||
|
||
try { | ||
unserialize('O:3:"FOO":0:{}'); | ||
} catch (Error $e) { | ||
echo $e->getMessage(), "\n"; | ||
} | ||
?> | ||
--EXPECT-- | ||
Unserialization function foo is not defined |
This file contains 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 |
---|---|---|
|
@@ -1138,8 +1138,6 @@ object ":" uiv ":" ["] { | |
bool custom_object = 0; | ||
bool has_unserialize = 0; | ||
|
||
zval user_func; | ||
zval retval; | ||
zval args[1]; | ||
|
||
if (!var_hash) return 0; | ||
|
@@ -1243,37 +1241,39 @@ object ":" uiv ":" ["] { | |
} | ||
|
||
/* Check for unserialize callback */ | ||
if ((PG(unserialize_callback_func) == NULL) || (PG(unserialize_callback_func)[0] == '\0')) { | ||
if ((PG(unserialize_callback_func) == NULL) || (ZSTR_LEN(PG(unserialize_callback_func)) == 0)) { | ||
incomplete_class = 1; | ||
ce = PHP_IC_ENTRY; | ||
break; | ||
} | ||
|
||
/* Call unserialize callback */ | ||
ZVAL_STRING(&user_func, PG(unserialize_callback_func)); | ||
/* Find unserialize callback */ | ||
zend_function *callback_fn = zend_hash_find_ptr_lc(EG(function_table), PG(unserialize_callback_func)); | ||
if (callback_fn == NULL) { | ||
zend_string_release_ex(class_name, 0); | ||
zend_throw_error(NULL, "Unserialization function %s is not defined", ZSTR_VAL(PG(unserialize_callback_func))); | ||
return 0; | ||
} | ||
Comment on lines
+1252
to
+1256
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Nit: This uses space indentation |
||
|
||
/* Call unserialize callback */ | ||
ZVAL_STR(&args[0], class_name); | ||
BG(serialize_lock)++; | ||
call_user_function(NULL, NULL, &user_func, &retval, 1, args); | ||
zend_call_known_function(callback_fn, NULL, NULL, NULL, 1, args, NULL); | ||
BG(serialize_lock)--; | ||
zval_ptr_dtor(&retval); | ||
|
||
if (EG(exception)) { | ||
zend_string_release_ex(class_name, 0); | ||
zval_ptr_dtor(&user_func); | ||
return 0; | ||
} | ||
|
||
/* The callback function may have defined the class */ | ||
BG(serialize_lock)++; | ||
if ((ce = zend_lookup_class(class_name)) == NULL) { | ||
php_error_docref(NULL, E_WARNING, "Function %s() hasn't defined the class it was called for", Z_STRVAL(user_func)); | ||
php_error_docref(NULL, E_WARNING, "Function %s() hasn't defined the class it was called for", ZSTR_VAL(PG(unserialize_callback_func))); | ||
incomplete_class = 1; | ||
ce = PHP_IC_ENTRY; | ||
} | ||
BG(serialize_lock)--; | ||
|
||
zval_ptr_dtor(&user_func); | ||
} while (0); | ||
|
||
*p = YYCURSOR; | ||
|
This file contains 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 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.
This breaks some valid callback names, such as:
\foo
(leading\
)Foo::bar
(static method)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.
Ah I didn't think of static methods, I'll add some tests to ensure this doesn't get missed. And I'll think about a solution if there is a good one.
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 didn't understand why you replaced call_user_function() with a manual function lookup + zend_call_known_function. Is there a particular reason?
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 am trying to see if it is possible to get rid of the
function_name
field of the FCI struct, and there are not many uses ofcall_user_function()
(currently 29) on top of it having the now uselesssymbol_table
argument (yes I know it's a macro so it doesn't matter).