2011-03-21 22:39:33 +00:00
|
|
|
|
|
|
|
Log the SELinux context at startup.
|
|
|
|
|
2011-04-06 12:50:49 +00:00
|
|
|
Upstream-Status: unlikely to be any interest in this upstream
|
2011-03-21 22:39:33 +00:00
|
|
|
|
2012-03-13 09:55:18 +00:00
|
|
|
--- httpd-2.4.1/configure.in.selinux
|
|
|
|
+++ httpd-2.4.1/configure.in
|
|
|
|
@@ -458,6 +458,11 @@ fopen64
|
2008-12-18 16:30:24 +00:00
|
|
|
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, [
|
2012-03-13 09:55:18 +00:00
|
|
|
+ AC_DEFINE(HAVE_SELINUX, 1, [Defined if SELinux is supported])
|
2008-12-18 16:30:24 +00:00
|
|
|
+ APR_ADDTO(AP_LIBS, [-lselinux])
|
|
|
|
+])
|
|
|
|
+
|
2012-03-13 09:55:18 +00:00
|
|
|
AC_CACHE_CHECK([for gettid()], ac_cv_gettid,
|
|
|
|
[AC_TRY_RUN(#define _GNU_SOURCE
|
|
|
|
#include <unistd.h>
|
|
|
|
--- httpd-2.4.1/server/core.c.selinux
|
|
|
|
+++ httpd-2.4.1/server/core.c
|
|
|
|
@@ -58,6 +58,10 @@
|
|
|
|
#include <unistd.h>
|
|
|
|
#endif
|
2005-11-03 16:27:11 +00:00
|
|
|
|
2012-03-13 09:55:18 +00:00
|
|
|
+#ifdef HAVE_SELINUX
|
2005-11-03 16:27:11 +00:00
|
|
|
+#include <selinux/selinux.h>
|
2012-03-13 09:55:18 +00:00
|
|
|
+#endif
|
2005-11-03 16:27:11 +00:00
|
|
|
+
|
|
|
|
/* LimitRequestBody handling */
|
|
|
|
#define AP_LIMIT_REQ_BODY_UNSET ((apr_off_t) -1)
|
|
|
|
#define AP_DEFAULT_LIMIT_REQ_BODY ((apr_off_t) 0)
|
2012-03-13 09:55:18 +00:00
|
|
|
@@ -4452,6 +4456,28 @@ static int core_post_config(apr_pool_t *
|
2005-11-03 16:27:11 +00:00
|
|
|
}
|
|
|
|
#endif
|
|
|
|
|
2012-03-13 09:55:18 +00:00
|
|
|
+#ifdef HAVE_SELINUX
|
2005-11-03 16:27:11 +00:00
|
|
|
+ {
|
|
|
|
+ static int already_warned = 0;
|
|
|
|
+ int is_enabled = is_selinux_enabled() > 0;
|
|
|
|
+
|
2005-12-02 10:43:00 +00:00
|
|
|
+ if (is_enabled && !already_warned) {
|
2005-11-03 16:27:11 +00:00
|
|
|
+ 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);
|
|
|
|
+ }
|
|
|
|
+ }
|
|
|
|
+ }
|
2012-03-13 09:55:18 +00:00
|
|
|
+#endif
|
2005-11-03 16:27:11 +00:00
|
|
|
+
|
|
|
|
return OK;
|
|
|
|
}
|
|
|
|
|