Fix: multi_curl_progress fires after shutdown on fatal error (ZTS FrankenPHP)#21457
Open
AlliBalliBaba wants to merge 4 commits intophp:masterfrom
Open
Fix: multi_curl_progress fires after shutdown on fatal error (ZTS FrankenPHP)#21457AlliBalliBaba wants to merge 4 commits intophp:masterfrom
AlliBalliBaba wants to merge 4 commits intophp:masterfrom
Conversation
Member
|
Trying to go to issue 2268 yields 404, please share a link. |
Author
|
Ah sry, here is the correct link: php/frankenphp#2268. Yeah this is a bad hack, reproducer is in the description. Copy the docker build -t frankenphp-debug -f debug.Dockerfile .
# run the server
docker run --rm -p 8087:80 -v .:/app frankenphp-debug
# from another shell:
curl localhost:8087 |
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This issue was originally raised in the FrankenPHP repo php/frankenphp#2268. When a fatal timeout error happens during a
curl_multioperation, the progress function apparently fires one last time whenphphas shut down, crashing the process.Checking for shutdown in the
curl_progressfunction fixes this (lines added in this PR). Would be better to fix the underlying issue that causes the function to fire after shutdown, not familiar with how the curl library works though. Happens only in ZTS.To reproduce:
build and start at port 8087
debug.Dockerfile (FrankenPHP with PHP debug symbols)
index.php (force a timeout with an active curl_progress function)
output