From 35be91f9ec4348d4ea7a249fff3bf7e116c6405e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Fri, 1 Oct 2010 19:13:28 +0200 Subject: httpd 2.3.8 first work --- httpd-2.3.8-selinux.patch | 54 +++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 httpd-2.3.8-selinux.patch (limited to 'httpd-2.3.8-selinux.patch') diff --git a/httpd-2.3.8-selinux.patch b/httpd-2.3.8-selinux.patch new file mode 100644 index 0000000..87c28fb --- /dev/null +++ b/httpd-2.3.8-selinux.patch @@ -0,0 +1,54 @@ +diff -up httpd-2.3.8/configure.in.selinux httpd-2.3.8/configure.in +--- httpd-2.3.8/configure.in.selinux 2010-10-01 18:51:36.960826530 +0200 ++++ httpd-2.3.8/configure.in 2010-10-01 18:51:36.984827554 +0200 +@@ -430,6 +430,10 @@ fopen64 + dnl confirm that a void pointer is large enough to store a long integer + APACHE_CHECK_VOID_PTR_LEN + ++AC_CHECK_LIB(selinux, is_selinux_enabled, [ ++ APR_ADDTO(AP_LIBS, [-lselinux]) ++]) ++ + dnl ## Check for the tm_gmtoff field in struct tm to get the timezone diffs + AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff, + [AC_TRY_COMPILE([#include +diff -up httpd-2.3.8/server/core.c.selinux httpd-2.3.8/server/core.c +--- httpd-2.3.8/server/core.c.selinux 2010-08-22 12:26:18.000000000 +0200 ++++ httpd-2.3.8/server/core.c 2010-10-01 18:55:18.178025465 +0200 +@@ -50,6 +50,8 @@ + + #include "mod_so.h" /* for ap_find_loaded_module_symbol */ + ++#include ++ + #if defined(RLIMIT_CPU) || defined (RLIMIT_DATA) || defined (RLIMIT_VMEM) || defined(RLIMIT_AS) || defined (RLIMIT_NPROC) + #include "unixd.h" + #endif +@@ -3655,6 +3657,27 @@ static int core_post_config(apr_pool_t * + "or other system security module is loaded."); + return !OK; + } ++ { ++ static int already_warned = 0; ++ int is_enabled = is_selinux_enabled() > 0; ++ ++ if (is_enabled && !already_warned) { ++ security_context_t con; ++ ++ if (getcon(&con) == 0) { ++ ++ ap_log_error(APLOG_MARK, APLOG_NOTICE, 0, NULL, ++ "SELinux policy enabled; " ++ "httpd running as context %s", con); ++ ++ already_warned = 1; ++ ++ freecon(con); ++ } ++ } ++ } ++ ++ + return OK; + } + -- cgit