Bug 1376835
Summary: | httpd with worker/event mpm segfaults after multiple successive graceful reloads | ||||||
---|---|---|---|---|---|---|---|
Product: | Red Hat Enterprise Linux 7 | Reporter: | Ryan Sawhill <rsawhill> | ||||
Component: | httpd | Assignee: | Luboš Uhliarik <luhliari> | ||||
Status: | CLOSED ERRATA | QA Contact: | Jan Houska <jhouska> | ||||
Severity: | medium | Docs Contact: | |||||
Priority: | medium | ||||||
Version: | 7.2 | CC: | fkrska, isenfeld, jhouska, jorton, luhliari, maeno.masaki, mfrodl, msugaya, pbajenez, pragshar, qe-baseos-apps, ruben.van.de.put, unixi, ville, zpytela | ||||
Target Milestone: | rc | Keywords: | Patch | ||||
Target Release: | --- | ||||||
Hardware: | Unspecified | ||||||
OS: | Linux | ||||||
Whiteboard: | |||||||
Fixed In Version: | httpd-2.4.6-53.el7 | Doc Type: | If docs needed, set a value | ||||
Doc Text: | Story Points: | --- | |||||
Clone Of: | Environment: | ||||||
Last Closed: | 2017-08-01 21:36:44 UTC | Type: | Bug | ||||
Regression: | --- | Mount Type: | --- | ||||
Documentation: | --- | CRM: | |||||
Verified Versions: | Category: | --- | |||||
oVirt Team: | --- | RHEL 7.3 requirements from Atomic Host: | |||||
Cloudforms Team: | --- | Target Upstream Version: | |||||
Embargoed: | |||||||
Bug Depends On: | |||||||
Bug Blocks: | 1298243 | ||||||
Attachments: |
|
Description
Ryan Sawhill
2016-09-16 14:24:30 UTC
Created attachment 1201655 [details]
abrt-captured coredump of httpd-2.4.6-40.el7_2.4.x86_64
I used the exact steps from the HOW TO REPRODUCE section to generate this on a fresh RHEL7.2 machine updated to the latest packages.
Since the problem described in this bug report should be resolved in a recent advisory, it has been closed with a resolution of ERRATA. For information on the advisory, and where to find the updated files, follow the link below. If the solution does not work for you, open a new bug report. https://access.redhat.com/errata/RHBA-2017:2175 The problem (httpd with worker/event mpm segfaults after multiple successive graceful reloads) was fixed in 2.4.6-53.el7 (Development Version) * Tue Mar 07 2017 Luboš Uhliarik <luhliari> - 2.4.6-53 - Resolves: #1376835 - httpd with worker/event mpm segfaults after multiple successive graceful reloads httpd-2.4.6-mpm-segfault.patch ============ --- a/server/mpm/event/event.c +++ a/server/mpm/event/event.c @@ -2735,6 +2735,7 @@ static int event_run(apr_pool_t * _pconf, apr_pool_t * plog, server_rec * s) /* we've been told to restart */ apr_signal(SIGHUP, SIG_IGN); + apr_signal(AP_SIG_GRACEFUL, SIG_IGN); if (one_process) { /* not worth thinking about */ ============ httpd in RHEL7 configured with worker/event mpm segfaults after receiving multiple SIGUSR1. (logrotate.conf example: size 1G and daily) 2.4.6-67.el7_4.6.x86_64 also has problems. I think that the aforementioned patch is not sufficient and need to add accurate exclusion control. |