Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id 131A2200C21 for ; Mon, 20 Feb 2017 14:38:07 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id 11A6D160B73; Mon, 20 Feb 2017 13:38:07 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 5A8D4160B62 for ; Mon, 20 Feb 2017 14:38:06 +0100 (CET) Received: (qmail 71920 invoked by uid 500); 20 Feb 2017 13:38:05 -0000 Mailing-List: contact cvs-help@httpd.apache.org; run by ezmlm Precedence: bulk Reply-To: dev@httpd.apache.org list-help: list-unsubscribe: List-Post: List-Id: Delivered-To: mailing list cvs@httpd.apache.org Received: (qmail 71911 invoked by uid 99); 20 Feb 2017 13:38:05 -0000 Received: from Unknown (HELO svn01-us-west.apache.org) (209.188.14.144) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Feb 2017 13:38:05 +0000 Received: from svn01-us-west.apache.org (localhost [127.0.0.1]) by svn01-us-west.apache.org (ASF Mail Server at svn01-us-west.apache.org) with ESMTP id A904B3A00A3 for ; Mon, 20 Feb 2017 13:38:04 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1783755 - /httpd/httpd/trunk/server/mpm/event/event.c Date: Mon, 20 Feb 2017 13:38:04 -0000 To: cvs@httpd.apache.org From: ylavic@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20170220133804.A904B3A00A3@svn01-us-west.apache.org> archived-at: Mon, 20 Feb 2017 13:38:07 -0000 Author: ylavic Date: Mon Feb 20 13:38:03 2017 New Revision: 1783755 URL: http://svn.apache.org/viewvc?rev=1783755&view=rev Log: mpm_event: use a mutex for ptrans' allocator to be safe with concurrent creation and destruction of its subpools, like with mod_http2. Modified: httpd/httpd/trunk/server/mpm/event/event.c Modified: httpd/httpd/trunk/server/mpm/event/event.c URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/server/mpm/event/event.c?rev=1783755&r1=1783754&r2=1783755&view=diff ============================================================================== --- httpd/httpd/trunk/server/mpm/event/event.c (original) +++ httpd/httpd/trunk/server/mpm/event/event.c Mon Feb 20 13:38:03 2017 @@ -2096,6 +2096,7 @@ static void * APR_THREAD_FUNC listener_t } if (!listeners_disabled) { void *csd = NULL; + apr_thread_mutex_t *mutex; ap_listen_rec *lr = (ap_listen_rec *) pt->baton; apr_pool_t *ptrans; /* Pool for per-transaction stuff */ ap_pop_pool(&ptrans, worker_queue_info); @@ -2105,20 +2106,44 @@ static void * APR_THREAD_FUNC listener_t apr_allocator_t *allocator; apr_allocator_create(&allocator); - apr_allocator_max_free_set(allocator, - ap_max_mem_free); + apr_allocator_max_free_set(allocator, ap_max_mem_free); apr_pool_create_ex(&ptrans, pconf, NULL, allocator); - apr_allocator_owner_set(allocator, ptrans); if (ptrans == NULL) { ap_log_error(APLOG_MARK, APLOG_CRIT, rc, ap_server_conf, APLOGNO(03097) "Failed to create transaction pool"); + apr_allocator_destroy(allocator); signal_threads(ST_GRACEFUL); return NULL; } + apr_allocator_owner_set(allocator, ptrans); } apr_pool_tag(ptrans, "transaction"); + /* We need a mutex in the allocator to synchronize ptrans' + * children creations/destructions, but this mutex ought to + * live in ptrans itself to avoid leaks, hence it's cleared + * in ap_push_pool(). We could recycle some pconf's mutexes + * like we do for ptrans subpools, but that'd need another + * synchronization mechanism, whereas creating a pthread + * mutex (unix here!) is really as simple/fast as a static + * PTHREAD_MUTEX_INIT assignment, so let's not bother and + * create the mutex for each ptrans (recycled or not). + */ + rc = apr_thread_mutex_create(&mutex, + APR_THREAD_MUTEX_DEFAULT, + ptrans); + if (rc != APR_SUCCESS) { + ap_log_error(APLOG_MARK, APLOG_CRIT, rc, + ap_server_conf, APLOGNO() + "Failed to create transaction pool mutex"); + ap_push_pool(worker_queue_info, ptrans); + signal_threads(ST_GRACEFUL); + return NULL; + } + apr_allocator_mutex_set(apr_pool_allocator_get(ptrans), + mutex); + get_worker(&have_idle_worker, 1, &workers_were_busy); rc = lr->accept_func(&csd, lr, ptrans);