mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
Merge branch 'PHP-8.3'
* PHP-8.3: Fix GH-12504: Corrupted session written when there's a fatal error in autoloader
This commit is contained in:
commit
2c4534a5b9
2 changed files with 78 additions and 6 deletions
|
@ -258,18 +258,28 @@ static zend_string *php_session_encode(void) /* {{{ */
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
||||||
|
static ZEND_COLD void php_session_cancel_decode(void)
|
||||||
|
{
|
||||||
|
php_session_destroy();
|
||||||
|
php_session_track_init();
|
||||||
|
php_error_docref(NULL, E_WARNING, "Failed to decode session object. Session has been destroyed");
|
||||||
|
}
|
||||||
|
|
||||||
static zend_result php_session_decode(zend_string *data) /* {{{ */
|
static zend_result php_session_decode(zend_string *data) /* {{{ */
|
||||||
{
|
{
|
||||||
if (!PS(serializer)) {
|
if (!PS(serializer)) {
|
||||||
php_error_docref(NULL, E_WARNING, "Unknown session.serialize_handler. Failed to decode session object");
|
php_error_docref(NULL, E_WARNING, "Unknown session.serialize_handler. Failed to decode session object");
|
||||||
return FAILURE;
|
return FAILURE;
|
||||||
}
|
}
|
||||||
if (PS(serializer)->decode(ZSTR_VAL(data), ZSTR_LEN(data)) == FAILURE) {
|
zend_try {
|
||||||
php_session_destroy();
|
if (PS(serializer)->decode(ZSTR_VAL(data), ZSTR_LEN(data)) == FAILURE) {
|
||||||
php_session_track_init();
|
php_session_cancel_decode();
|
||||||
php_error_docref(NULL, E_WARNING, "Failed to decode session object. Session has been destroyed");
|
return FAILURE;
|
||||||
return FAILURE;
|
}
|
||||||
}
|
} zend_catch {
|
||||||
|
php_session_cancel_decode();
|
||||||
|
zend_bailout();
|
||||||
|
} zend_end_try();
|
||||||
return SUCCESS;
|
return SUCCESS;
|
||||||
}
|
}
|
||||||
/* }}} */
|
/* }}} */
|
||||||
|
|
62
ext/session/tests/gh12504.phpt
Normal file
62
ext/session/tests/gh12504.phpt
Normal file
|
@ -0,0 +1,62 @@
|
||||||
|
--TEST--
|
||||||
|
GH-12504 (Corrupted session written when there's a fatal error in autoloader)
|
||||||
|
--EXTENSIONS--
|
||||||
|
session
|
||||||
|
--FILE--
|
||||||
|
<?php
|
||||||
|
|
||||||
|
class TestSessionHandler implements SessionHandlerInterface
|
||||||
|
{
|
||||||
|
public function close(): bool
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public function destroy(string $id): bool
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public function gc(int $max_lifetime): int|false
|
||||||
|
{
|
||||||
|
return 0;
|
||||||
|
}
|
||||||
|
public function open(string $path, string $name): bool
|
||||||
|
{
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
public function read(string $id): string|false
|
||||||
|
{
|
||||||
|
// Return a session object that has 3 variables
|
||||||
|
return 'before|i:1234;test|O:4:"Test":0:{}after|i:5678;';
|
||||||
|
}
|
||||||
|
public function write($id, $data): bool
|
||||||
|
{
|
||||||
|
echo 'Write session:' . PHP_EOL;
|
||||||
|
echo $data . PHP_EOL;
|
||||||
|
return true;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
register_shutdown_function(function() {
|
||||||
|
echo "In shutdown function\n";
|
||||||
|
var_dump($_SESSION);
|
||||||
|
});
|
||||||
|
|
||||||
|
session_set_save_handler(new TestSessionHandler());
|
||||||
|
|
||||||
|
// Autoload class that's in session
|
||||||
|
spl_autoload_register(function() {
|
||||||
|
// Easiest way to reproduce the issue is to dynamically define a class with a bogus definition
|
||||||
|
eval('class Test {public int $var = null;}');
|
||||||
|
return true;
|
||||||
|
});
|
||||||
|
|
||||||
|
session_start();
|
||||||
|
|
||||||
|
?>
|
||||||
|
--EXPECTF--
|
||||||
|
Fatal error: Default value for property of type int may not be null. Use the nullable type ?int to allow null default value in %s on line %d
|
||||||
|
|
||||||
|
Warning: Unknown: Failed to decode session object. Session has been destroyed in Unknown on line 0
|
||||||
|
In shutdown function
|
||||||
|
array(0) {
|
||||||
|
}
|
Loading…
Add table
Add a link
Reference in a new issue