From owner-svn-ports-all@freebsd.org Sat Apr 16 19:02:50 2016 Return-Path: Delivered-To: svn-ports-all@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 2D8EEAEE197; Sat, 16 Apr 2016 19:02:50 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id E27AB1D55; Sat, 16 Apr 2016 19:02:49 +0000 (UTC) (envelope-from ohauer@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u3GJ2noQ094236; Sat, 16 Apr 2016 19:02:49 GMT (envelope-from ohauer@FreeBSD.org) Received: (from ohauer@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u3GJ2mKY094234; Sat, 16 Apr 2016 19:02:48 GMT (envelope-from ohauer@FreeBSD.org) Message-Id: <201604161902.u3GJ2mKY094234@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: ohauer set sender to ohauer@FreeBSD.org using -f From: Olli Hauer Date: Sat, 16 Apr 2016 19:02:48 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r413476 - in head/www/apache24: . files X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-all@freebsd.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: SVN commit messages for the ports tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 16 Apr 2016 19:02:50 -0000 Author: ohauer Date: Sat Apr 16 19:02:48 2016 New Revision: 413476 URL: https://svnweb.freebsd.org/changeset/ports/413476 Log: - fix scoreboard, backport fix from [1] - bump PORTREVISION For details see discussion: http://mail-archives.apache.org/mod_mbox/httpd-dev/201604.mbox/browser Thanks to Ken J. for reporting the issue and testing the patch! Reported by: Ken J. (on apache@ list) Obtained from: http://home.apache.org/~ylavic/patches/scoreboard-2.4.18.diff [1] MFH: 2016Q2 Added: head/www/apache24/files/patch-server__scoreboard.c (contents, props changed) Modified: head/www/apache24/Makefile Modified: head/www/apache24/Makefile ============================================================================== --- head/www/apache24/Makefile Sat Apr 16 18:10:46 2016 (r413475) +++ head/www/apache24/Makefile Sat Apr 16 19:02:48 2016 (r413476) @@ -2,6 +2,7 @@ PORTNAME= apache24 PORTVERSION= 2.4.20 +PORTREVISION= 1 CATEGORIES= www ipv6 MASTER_SITES= APACHE_HTTPD DISTNAME= httpd-${PORTVERSION} Added: head/www/apache24/files/patch-server__scoreboard.c ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/www/apache24/files/patch-server__scoreboard.c Sat Apr 16 19:02:48 2016 (r413476) @@ -0,0 +1,119 @@ +Fix apache24-2.4.20 scoreboard, see discussion +http://mail-archives.apache.org/mod_mbox/httpd-dev/201604.mbox/browser + +Patch based on http://home.apache.org/~ylavic/patches/scoreboard-2.4.18.diff + +Index: server/scoreboard.c +=================================================================== +--- server/scoreboard.c.orig 2016-03-02 13:22:07 UTC ++++ server/scoreboard.c +@@ -464,22 +464,18 @@ static int update_child_status_internal( + { + int old_status; + worker_score *ws; +- process_score *ps; + int mpm_generation; + + ws = &ap_scoreboard_image->servers[child_num][thread_num]; + old_status = ws->status; +- if (status >= 0) { +- ws->status = status; +- +- ps = &ap_scoreboard_image->parent[child_num]; +- +- if (status == SERVER_READY +- && old_status == SERVER_STARTING) { +- ws->thread_num = child_num * thread_limit + thread_num; +- ap_mpm_query(AP_MPMQ_GENERATION, &mpm_generation); +- ps->generation = mpm_generation; +- } ++ ws->status = status; ++ ++ if (status == SERVER_READY ++ && old_status == SERVER_STARTING) { ++ process_score *ps = &ap_scoreboard_image->parent[child_num]; ++ ws->thread_num = child_num * thread_limit + thread_num; ++ ap_mpm_query(AP_MPMQ_GENERATION, &mpm_generation); ++ ps->generation = mpm_generation; + } + + if (ap_extended_status) { +@@ -497,46 +493,42 @@ static int update_child_status_internal( + ws->conn_bytes = 0; + ws->last_used = apr_time_now(); + } +- if (status == SERVER_READY) { +- ws->client[0]='\0'; +- ws->vhost[0]='\0'; +- ws->request[0]='\0'; +- ws->protocol[0]='\0'; ++ ++ if (descr) { ++ apr_cpystrn(ws->request, descr, sizeof(ws->request)); + } +- else { +- if (descr) { +- apr_cpystrn(ws->request, descr, sizeof(ws->request)); +- } +- else if (r) { +- copy_request(ws->request, sizeof(ws->request), r); +- } +- if (r) { +- if (!(val = ap_get_useragent_host(r, REMOTE_NOLOOKUP, NULL))) +- apr_cpystrn(ws->client, r->useragent_ip, sizeof(ws->client)); +- else +- apr_cpystrn(ws->client, val, sizeof(ws->client)); +- } +- else if (c) { +- if (!(val = ap_get_remote_host(c, c->base_server->lookup_defaults, +- REMOTE_NOLOOKUP, NULL))) +- apr_cpystrn(ws->client, c->client_ip, sizeof(ws->client)); +- else +- apr_cpystrn(ws->client, val, sizeof(ws->client)); +- } +- if (s) { +- if (c) { +- apr_snprintf(ws->vhost, sizeof(ws->vhost), "%s:%d", +- s->server_hostname, c->local_addr->port); +- } +- else { +- apr_cpystrn(ws->vhost, s->server_hostname, sizeof(ws->vhost)); +- } +- } ++ else if (r) { ++ copy_request(ws->request, sizeof(ws->request), r); ++ } ++ ++ if (r) { ++ if (!(val = ap_get_useragent_host(r, REMOTE_NOLOOKUP, NULL))) ++ apr_cpystrn(ws->client, r->useragent_ip, sizeof(ws->client)); ++ else ++ apr_cpystrn(ws->client, val, sizeof(ws->client)); ++ } ++ else if (c) { ++ if (!(val = ap_get_remote_host(c, c->base_server->lookup_defaults, ++ REMOTE_NOLOOKUP, NULL))) ++ apr_cpystrn(ws->client, c->client_ip, sizeof(ws->client)); ++ else ++ apr_cpystrn(ws->client, val, sizeof(ws->client)); ++ } ++ ++ if (s) { + if (c) { +- val = ap_get_protocol(c); +- apr_cpystrn(ws->protocol, val, sizeof(ws->protocol)); ++ apr_snprintf(ws->vhost, sizeof(ws->vhost), "%s:%d", ++ s->server_hostname, c->local_addr->port); ++ } ++ else { ++ apr_cpystrn(ws->vhost, s->server_hostname, sizeof(ws->vhost)); + } + } ++ ++ if (c) { ++ val = ap_get_protocol(c); ++ apr_cpystrn(ws->protocol, val, sizeof(ws->protocol)); ++ } + } + + return old_status;