forked from pool/apache2-mod_security2
Accepting request 287448 from home:elvigia:branches:Apache:Modules
- spec, build: Respect optflags - spec: buildrequire pkgconfig - modsecurity-fixes.patch: mod_security fails at: * building with optflags enabled due to undefined behaviour and implicit declarations. * It abuses it apr_allocator api, creating one allocator per request and then destroying it, flooding the system with mmap() , munmap requests, this is particularly nasty with threaded mpms. it should instead use the allocator from the request pool. OBS-URL: https://build.opensuse.org/request/show/287448 OBS-URL: https://build.opensuse.org/package/show/Apache:Modules/apache2-mod_security2?expand=0&rev=61
This commit is contained in:
parent
fbf8e83717
commit
c648fa3d5c
@ -1,3 +1,18 @@
|
|||||||
|
-------------------------------------------------------------------
|
||||||
|
Tue Feb 24 04:23:11 UTC 2015 - crrodriguez@opensuse.org
|
||||||
|
|
||||||
|
- spec, build: Respect optflags
|
||||||
|
- spec: buildrequire pkgconfig
|
||||||
|
- modsecurity-fixes.patch: mod_security fails at:
|
||||||
|
* building with optflags enabled due to undefined behaviour
|
||||||
|
and implicit declarations.
|
||||||
|
* It abuses it apr_allocator api, creating one allocator
|
||||||
|
per request and then destroying it, flooding the system
|
||||||
|
with mmap() , munmap requests, this is particularly nasty
|
||||||
|
with threaded mpms. it should instead use the allocator
|
||||||
|
from the request pool.
|
||||||
|
|
||||||
|
|
||||||
-------------------------------------------------------------------
|
-------------------------------------------------------------------
|
||||||
Sat Feb 14 17:51:49 UTC 2015 - thomas.worm@sicsec.de
|
Sat Feb 14 17:51:49 UTC 2015 - thomas.worm@sicsec.de
|
||||||
|
|
||||||
|
@ -41,6 +41,7 @@ Source5: modsecurity_diagram_apache_request_cycle.jpg
|
|||||||
Source6: README-SUSE-mod_security2.txt
|
Source6: README-SUSE-mod_security2.txt
|
||||||
Source7: empty.conf
|
Source7: empty.conf
|
||||||
Patch0: apache2-mod_security2-no_rpath.diff
|
Patch0: apache2-mod_security2-no_rpath.diff
|
||||||
|
Patch1: modsecurity-fixes.patch
|
||||||
BuildRequires: apache-rpm-macros
|
BuildRequires: apache-rpm-macros
|
||||||
BuildRequires: apache2-devel
|
BuildRequires: apache2-devel
|
||||||
BuildRequires: apache2-prefork
|
BuildRequires: apache2-prefork
|
||||||
@ -52,6 +53,7 @@ BuildRequires: libtool
|
|||||||
BuildRequires: libxml2-devel
|
BuildRequires: libxml2-devel
|
||||||
BuildRequires: lua-devel
|
BuildRequires: lua-devel
|
||||||
BuildRequires: pcre-devel
|
BuildRequires: pcre-devel
|
||||||
|
BuildRequires: pkgconfig
|
||||||
Requires: %{apache_mmn}
|
Requires: %{apache_mmn}
|
||||||
Requires: apache2
|
Requires: apache2
|
||||||
#
|
#
|
||||||
@ -75,8 +77,7 @@ mv -v SpiderLabs* rules
|
|||||||
bzip2 -dc %{SOURCE3} > %{_sourcedir}/%{refman} && touch -r %{SOURCE3} %{_sourcedir}/%{refman}
|
bzip2 -dc %{SOURCE3} > %{_sourcedir}/%{refman} && touch -r %{SOURCE3} %{_sourcedir}/%{refman}
|
||||||
bzip2 -dc %{SOURCE4} > %{_sourcedir}/%{faq} && touch -r %{SOURCE4} %{_sourcedir}/%{faq}
|
bzip2 -dc %{SOURCE4} > %{_sourcedir}/%{faq} && touch -r %{SOURCE4} %{_sourcedir}/%{faq}
|
||||||
%patch0
|
%patch0
|
||||||
#%patch1
|
%patch1 -p1
|
||||||
#%patch2
|
|
||||||
|
|
||||||
%build
|
%build
|
||||||
# aclocal only works with never distributions,
|
# aclocal only works with never distributions,
|
||||||
@ -87,7 +88,7 @@ aclocal
|
|||||||
autoreconf -fi
|
autoreconf -fi
|
||||||
%endif
|
%endif
|
||||||
automake
|
automake
|
||||||
./configure --with-apxs=%{apache_apxs} --enable-request-early --enable-htaccess-config
|
%configure --with-apxs=%{apache_apxs} --enable-request-early --enable-htaccess-config
|
||||||
CFLAGS="%{optflags}" make %{?_smp_mflags}
|
CFLAGS="%{optflags}" make %{?_smp_mflags}
|
||||||
|
|
||||||
%install
|
%install
|
||||||
|
62
modsecurity-fixes.patch
Normal file
62
modsecurity-fixes.patch
Normal file
@ -0,0 +1,62 @@
|
|||||||
|
--- modsecurity-2.9.0.orig/apache2/mod_security2.c
|
||||||
|
+++ modsecurity-2.9.0/apache2/mod_security2.c
|
||||||
|
@@ -457,17 +457,13 @@ static void store_tx_context(modsec_rec
|
||||||
|
* Creates a new transaction context.
|
||||||
|
*/
|
||||||
|
static modsec_rec *create_tx_context(request_rec *r) {
|
||||||
|
- apr_allocator_t *allocator = NULL;
|
||||||
|
modsec_rec *msr = NULL;
|
||||||
|
|
||||||
|
msr = (modsec_rec *)apr_pcalloc(r->pool, sizeof(modsec_rec));
|
||||||
|
if (msr == NULL) return NULL;
|
||||||
|
|
||||||
|
- apr_allocator_create(&allocator);
|
||||||
|
- apr_allocator_max_free_set(allocator, 1024);
|
||||||
|
- apr_pool_create_ex(&msr->mp, r->pool, NULL, allocator);
|
||||||
|
+ apr_pool_create(&msr->mp, r->pool);
|
||||||
|
if (msr->mp == NULL) return NULL;
|
||||||
|
- apr_allocator_owner_set(allocator, msr->mp);
|
||||||
|
|
||||||
|
msr->modsecurity = modsecurity;
|
||||||
|
msr->r = r;
|
||||||
|
--- modsecurity-2.9.0.orig/apache2/msc_reqbody.c
|
||||||
|
+++ modsecurity-2.9.0/apache2/msc_reqbody.c
|
||||||
|
@@ -88,7 +88,7 @@ apr_status_t modsecurity_request_body_st
|
||||||
|
* to allocate structures from (not data, which is allocated
|
||||||
|
* via malloc).
|
||||||
|
*/
|
||||||
|
- apr_pool_create(&msr->msc_reqbody_mp, NULL);
|
||||||
|
+ apr_pool_create(&msr->msc_reqbody_mp, msr->mp);
|
||||||
|
|
||||||
|
/* Initialise request body processors, if any. */
|
||||||
|
|
||||||
|
--- modsecurity-2.9.0.orig/apache2/msc_status_engine.c
|
||||||
|
+++ modsecurity-2.9.0/apache2/msc_status_engine.c
|
||||||
|
@@ -37,6 +37,7 @@
|
||||||
|
#if (defined(__linux__) || defined(__gnu_linux__))
|
||||||
|
#include <linux/if.h>
|
||||||
|
#include <linux/sockios.h>
|
||||||
|
+#include <sys/ioctl.h>
|
||||||
|
#endif
|
||||||
|
#ifdef HAVE_SYS_UTSNAME_H
|
||||||
|
#include <sys/utsname.h>
|
||||||
|
--- modsecurity-2.9.0.orig/apache2/msc_remote_rules.c
|
||||||
|
+++ modsecurity-2.9.0/apache2/msc_remote_rules.c
|
||||||
|
@@ -792,6 +792,7 @@ next:
|
||||||
|
"compilation.";
|
||||||
|
return -1;
|
||||||
|
#endif
|
||||||
|
+ return -1;
|
||||||
|
}
|
||||||
|
|
||||||
|
|
||||||
|
--- modsecurity-2.9.0.orig/apache2/msc_util.c
|
||||||
|
+++ modsecurity-2.9.0/apache2/msc_util.c
|
||||||
|
@@ -18,6 +18,7 @@
|
||||||
|
#include <stdlib.h>
|
||||||
|
#include <sys/types.h>
|
||||||
|
#include <sys/stat.h>
|
||||||
|
+#include <arpa/inet.h>
|
||||||
|
|
||||||
|
#include "msc_release.h"
|
||||||
|
#include "msc_util.h"
|
Loading…
Reference in New Issue
Block a user