-
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
'zend_execute_data' pointer becomes NULL inside internal function handler of 'curl_exec()' #18216
Comments
Can you please share the extension code?
Have you tested this on any other operating systems? |
Unfortunately, I can't share the extension code, but here's is exactly how we overwrite function handler for void ZEND_FASTCALL wrapper_curl_exec(zend_execute_data *execute_data, zval *return_value);
// get original function object of curl_exec()
orig_func = zend_hash_str_find_ptr(CG(function_table), "curl_exec", 9);
// backup the pointer to original function handler
zif_handler orig_curl_exec_handler = orig_func->internal_function.handler;
// store our function's address in the function handler pointer for curl_exec() in CG(function_table)
orig_func->internal_function.handler = wrapper_curl_exec;
void ZEND_FASTCALL wrapper_curl_exec(zend_execute_data *execute_data, zval *return_value)
{
// read access execute_data -- pointer is valid
// call origin curl_exec() function handler
orig_curl_exec_handler(execute_data, return_value);
// read access execute_data -- pointer is NULL, our extension crashes without a NULL check
// return
} And we only read from the
Yes, this code has always worked before with Ubuntu and Alpine - so it is a stable implementation. We also overwrite function handlers for numerous other functions & methods in the same way. On Windows though, we see this issue sporadically in the mentioned test setup and only for |
Your example looks suspicious. Unless you share a pointer to |
@iluuu1994 Yeah, we cross checked some stuff and this is some issue arising from our code. You can close this issue, thanks! |
Description
Description
We have a PHP extension that overwrites the function handler for
curl_exec()
in the function tableCG(function_table)
and during some testing we found that theexecute_data
pointer passed to the function handler becomes NULL midway, before the function handler finishes execution.Our custom function handler
wrapper_curl_exec()
roughly does this:This does not happen always, but it is frequent enough on PHP 8.4.5 with our particular test setup and test case.
Test Setup
Test Case
We are running
curl -v http://localhost/main.php
in a loop with 0.5 secs delay frompowershell
CLI.main.php
sends a downstream HTTP request viacurl_exec()
anddownstream.php
sends another downstream request viacurl_exec()
.final.php
just returns some dummy json data as a response. (See the reference scripts the end).Observation
This curl loop from command line works for some time before seemingly taking too long for each request. At some point, we see our extension crashing because
execute_data
pointer became NULL after the originalcurl_exec()
function returned (inside our extension) for one of thecurl_exec()
calls.A related observation is that even with our extension disabled, this curl loop starts taking too long after a while i.e., the curl_exec() in
main.php
anddownstream.php
take a long time. Sometimesnginx
throws 'Bad Gatewayor
Page not available` errors.This issue also occurs with PHP 8.3 and PHP 8.2 but far less frequently.
Questions
execute_data
pointer become NULL before the function handler returns?execute_data
pointer to be NULL or become null in a function handler? This will allow us to decide if we have to pre-emptively keep a NULL check forexecute_data
in all our custom function handlers.Let me know if you need any further details.
Reference
(relevant snippets)
PHP Version
PHP 8.4.5, PHP 8.3.17, PHP 8.2.27
Operating System
Windows 11
The text was updated successfully, but these errors were encountered: