|   | php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login | 
| 
 PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits              [2021-08-24 14:18 UTC] cmb@php.net
 
-Status:      Open
+Status:      Feedback
-Assigned To:
+Assigned To: cmb
  [2021-08-24 14:18 UTC] cmb@php.net
  [2021-09-05 04:22 UTC] php-bugs at lists dot php dot net
 | |||||||||||||||||||||||||||||||||||||
|  Copyright © 2001-2025 The PHP Group All rights reserved. | Last updated: Fri Oct 31 15:00:01 2025 UTC | 
Description: ------------ Socket functions in xp_socket.c read and write indefinitely in case they received any signal (read/write returned EINTR). Example, from php_sock_stream_wait_for_data(): while(1) { retval = php_pollfd_for(sock->socket, PHP_POLLREADABLE, ptimeout); if (retval == 0) sock->timeout_event = 1; if (retval >= 0) break; if (php_socket_errno() != EINTR) break; } The problem here is that this behavior is not compatible with pcntl signal handling because pcntl signals are implemented using ticks and this code actually does not exit even if we need to call signal handler. Suggested fix for read() is to take into account existence of PCNTL and do the following check: if (php_socket_errno() != EINTR) break; #ifdef PCNTL_G else if(PCNTL_G(head)) break; #endif /* PCNTL_G(head) is pointer to a queue of signals that were caught and will be processed after next tick. This queue is empty if we do not register handlers for received signal. */ This fix (and adding ZEND_EXTERN_MODULE_GLOBALS(pcntl) to pcntl.c) gives the expected result below Test script: --------------- <?php declare(ticks = 1); function sighandler($sig) { echo "Caught signal $sig, exiting correctly\n"; exit(1); } pcntl_signal(SIGINT, 'sighandler', false); pcntl_signal(SIGHUP, 'sighandler', false); mysql_connect(); // assumes 'mysqlnd' as MySQL driver mysql_query('SELECT SLEEP(100)'); // ignores SIGINT and SIGHUP for 100 sec Expected result: ---------------- $ php test.php ^C Warning: mysql_query(): MySQL server has gone away in test.php on line 14 Warning: mysql_query(): Error reading result set's header in /Users/nasretdinov/test.php on line 14 Caught signal 2, exiting correctly Actual result: -------------- $ php ^C # ...after 100 sec... Caught signal 2, exiting correctly