Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
34 changes: 33 additions & 1 deletion ext/opcache/ZendAccelerator.c
Original file line number Diff line number Diff line change
Expand Up @@ -5094,13 +5094,45 @@ static zend_result accel_finish_startup(void)

exit(ret == SUCCESS ? 0 : 1);
} else { /* parent */
int status;
# ifdef HAVE_SIGPROCMASK
/* Interrupting the waitpid() call below with a signal would cause the
* process to exit. This is fine when the signal disposition is set to
* terminate the process, but not otherwise.
* When running the apache2handler, preloading is performed in the
* control process. SIGUSR1 and SIGHUP are used to tell the control
* process to restart children. Exiting when these signals are received
* would unexpectedly shutdown the server instead of restarting it.
* Block the USR1 and HUP signals from being delivered during the
* syscall when running the apache2handler SAPI, as these are not
* supposed to terminate the process. See GH-20051. */
bool is_apache2handler = strcmp(sapi_module.name, "apache2handler") == 0;
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

A possible alternative to this check would be to mask signals in php_apache_server_startup, similarly to FPM.

sigset_t set, oldset;
if (is_apache2handler) {
if (sigemptyset(&set)
|| sigaddset(&set, SIGUSR1)
|| sigaddset(&set, SIGHUP)) {
ZEND_UNREACHABLE();
}
if (sigprocmask(SIG_BLOCK, &set, &oldset)) {
ZEND_UNREACHABLE();
}
}
# endif

int status;
if (waitpid(pid, &status, 0) < 0) {
zend_shared_alloc_unlock();
zend_accel_error_noreturn(ACCEL_LOG_FATAL, "Preloading failed to waitpid(%d)", pid);
}

# ifdef HAVE_SIGPROCMASK
if (is_apache2handler) {
if (sigprocmask(SIG_SETMASK, &oldset, NULL)) {
ZEND_UNREACHABLE();
}
}
# endif

if (ZCSG(preload_script)) {
preload_load(zend_map_ptr_static_last);
}
Expand Down