8335b1
# ./pullrev.sh 1337344 1341905 1342065 1341930
8335b1
8335b1
suexec enhancements:
8335b1
8335b1
1) use syslog for logging
8335b1
2) use capabilities not setuid/setgid root binary
8335b1
8335b1
http://svn.apache.org/viewvc?view=revision&revision=1337344
8335b1
http://svn.apache.org/viewvc?view=revision&revision=1341905
8335b1
http://svn.apache.org/viewvc?view=revision&revision=1342065
8335b1
http://svn.apache.org/viewvc?view=revision&revision=1341930
8335b1
8335b1
--- httpd-2.4.4/configure.in.r1337344+
8335b1
+++ httpd-2.4.4/configure.in
8335b1
@@ -734,7 +734,24 @@ APACHE_HELP_STRING(--with-suexec-gidmin,
8335b1
 
8335b1
 AC_ARG_WITH(suexec-logfile,
8335b1
 APACHE_HELP_STRING(--with-suexec-logfile,Set the logfile),[
8335b1
-  AC_DEFINE_UNQUOTED(AP_LOG_EXEC, "$withval", [SuExec log file] ) ] )
8335b1
+  if test "x$withval" = "xyes"; then
8335b1
+    AC_DEFINE_UNQUOTED(AP_LOG_EXEC, "$withval", [SuExec log file])
8335b1
+  fi
8335b1
+])
8335b1
+
8335b1
+AC_ARG_WITH(suexec-syslog,
8335b1
+APACHE_HELP_STRING(--with-suexec-syslog,Set the logfile),[
8335b1
+  if test $withval = "yes"; then
8335b1
+    if test "x${with_suexec_logfile}" != "xno"; then
8335b1
+      AC_MSG_NOTICE([hint: use "--without-suexec-logfile --with-suexec-syslog"])
8335b1
+      AC_MSG_ERROR([suexec does not support both logging to file and syslog])
8335b1
+    fi
8335b1
+    AC_CHECK_FUNCS([vsyslog], [], [
8335b1
+       AC_MSG_ERROR([cannot support syslog from suexec without vsyslog()])])
8335b1
+    AC_DEFINE(AP_LOG_SYSLOG, 1, [SuExec log to syslog])
8335b1
+  fi    
8335b1
+])
8335b1
+
8335b1
 
8335b1
 AC_ARG_WITH(suexec-safepath,
8335b1
 APACHE_HELP_STRING(--with-suexec-safepath,Set the safepath),[
8335b1
@@ -744,6 +761,15 @@ AC_ARG_WITH(suexec-umask,
8335b1
 APACHE_HELP_STRING(--with-suexec-umask,umask for suexec'd process),[
8335b1
   AC_DEFINE_UNQUOTED(AP_SUEXEC_UMASK, 0$withval, [umask for suexec'd process] ) ] )
8335b1
 
8335b1
+INSTALL_SUEXEC=setuid
8335b1
+AC_ARG_ENABLE([suexec-capabilities], 
8335b1
+APACHE_HELP_STRING(--enable-suexec-capabilities,Use Linux capability bits not setuid root suexec), [
8335b1
+INSTALL_SUEXEC=caps
8335b1
+AC_DEFINE(AP_SUEXEC_CAPABILITIES, 1, 
8335b1
+          [Enable if suexec is installed with Linux capabilities, not setuid])
8335b1
+])
8335b1
+APACHE_SUBST(INSTALL_SUEXEC)
8335b1
+
8335b1
 dnl APR should go after the other libs, so the right symbols can be picked up
8335b1
 if test x${apu_found} != xobsolete; then
8335b1
   AP_LIBS="$AP_LIBS `$apu_config --avoid-ldap --link-libtool`"
8335b1
--- httpd-2.4.4/docs/manual/suexec.html.en.r1337344+
8335b1
+++ httpd-2.4.4/docs/manual/suexec.html.en
8335b1
@@ -372,6 +372,21 @@
8335b1
       together with the --enable-suexec option to let
8335b1
       APACI accept your request for using the suEXEC feature.
8335b1
 
8335b1
+      
--enable-suexec-capabilities
8335b1
+
8335b1
+      
Linux specific: Normally,
8335b1
+      the suexec binary is installed "setuid/setgid
8335b1
+      root", which allows it to run with the full privileges of the
8335b1
+      root user.  If this option is used, the suexec
8335b1
+      binary will instead be installed with only the setuid/setgid
8335b1
+      "capability" bits set, which is the subset of full root
8335b1
+      priviliges required for suexec operation.  Note that
8335b1
+      the suexec binary may not be able to write to a log
8335b1
+      file in this mode; it is recommended that the
8335b1
+      --with-suexec-syslog --without-suexec-logfile
8335b1
+      options are used in conjunction with this mode, so that syslog
8335b1
+      logging is used instead.
8335b1
+
8335b1
       
--with-suexec-bin=PATH
8335b1
 
8335b1
       
The path to the suexec binary must be hard-coded
8335b1
@@ -433,6 +448,12 @@
8335b1
       "suexec_log" and located in your standard logfile
8335b1
       directory (--logfiledir).
8335b1
 
8335b1
+      
--with-suexec-syslog
8335b1
+
8335b1
+      
If defined, suexec will log notices and errors to syslog
8335b1
+      instead of a logfile.  This option must be combined
8335b1
+      with --without-suexec-logfile.
8335b1
+
8335b1
       
--with-suexec-safepath=PATH
8335b1
 
8335b1
       
Define a safe PATH environment to pass to CGI
8335b1
@@ -550,9 +571,12 @@ Group webgroup
8335b1
 
8335b1
     

The suEXEC wrapper will write log information

8335b1
     to the file defined with the --with-suexec-logfile
8335b1
-    option as indicated above. If you feel you have configured and
8335b1
-    installed the wrapper properly, have a look at this log and the
8335b1
-    error_log for the server to see where you may have gone astray.

8335b1
+    option as indicated above, or to syslog if --with-suexec-syslog
8335b1
+    is used. If you feel you have configured and
8335b1
+    installed the wrapper properly, have a look at the log and the
8335b1
+    error_log for the server to see where you may have gone astray. 
8335b1
+    The output of "suexec -V" will show the options
8335b1
+    used to compile suexec, if using a binary distribution.

8335b1
 
8335b1
 
top
8335b1
 
8335b1
@@ -640,4 +664,4 @@ if (typeof(prettyPrint) !== 'undefined')
8335b1
     prettyPrint();
8335b1
 }
8335b1
 //--></script>
8335b1
-</body></html>
8335b1
\ No newline at end of file
8335b1
+</body></html>
8335b1
--- httpd-2.4.4/Makefile.in.r1337344+
8335b1
+++ httpd-2.4.4/Makefile.in
8335b1
@@ -238,11 +238,22 @@ install-man:
8335b1
 	  cd $(DESTDIR)$(manualdir) && find . -name ".svn" -type d -print | xargs rm -rf 2>/dev/null || true; \
8335b1
 	fi
8335b1
 
8335b1
-install-suexec:
8335b1
+install-suexec: install-suexec-binary install-suexec-$(INSTALL_SUEXEC)
8335b1
+
8335b1
+install-suexec-binary:
8335b1
 	@if test -f $(builddir)/support/suexec; then \
8335b1
             test -d $(DESTDIR)$(sbindir) || $(MKINSTALLDIRS) $(DESTDIR)$(sbindir); \
8335b1
             $(INSTALL_PROGRAM) $(top_builddir)/support/suexec $(DESTDIR)$(sbindir); \
8335b1
-            chmod 4755 $(DESTDIR)$(sbindir)/suexec; \
8335b1
+	fi
8335b1
+
8335b1
+install-suexec-setuid:
8335b1
+	@if test -f $(builddir)/support/suexec; then \
8335b1
+	    chmod 4755 $(DESTDIR)$(sbindir)/suexec; \
8335b1
+	fi
8335b1
+
8335b1
+install-suexec-caps:
8335b1
+	@if test -f $(builddir)/support/suexec; then \
8335b1
+            setcap 'cap_setuid,cap_setgid+pe' $(DESTDIR)$(sbindir)/suexec; \
8335b1
 	fi
8335b1
 
8335b1
 suexec:
8335b1
--- httpd-2.4.4/modules/arch/unix/mod_unixd.c.r1337344+
8335b1
+++ httpd-2.4.4/modules/arch/unix/mod_unixd.c
8335b1
@@ -284,6 +284,13 @@ unixd_set_suexec(cmd_parms *cmd, void *d
8335b1
     return NULL;
8335b1
 }
8335b1
 
8335b1
+#ifdef AP_SUEXEC_CAPABILITIES
8335b1
+/* If suexec is using capabilities, don't test for the setuid bit. */
8335b1
+#define SETUID_TEST(finfo) (1)
8335b1
+#else
8335b1
+#define SETUID_TEST(finfo) (finfo.protection & APR_USETID)
8335b1
+#endif
8335b1
+
8335b1
 static int
8335b1
 unixd_pre_config(apr_pool_t *pconf, apr_pool_t *plog,
8335b1
                  apr_pool_t *ptemp)
8335b1
@@ -300,7 +307,7 @@ unixd_pre_config(apr_pool_t *pconf, apr_
8335b1
     ap_unixd_config.suexec_enabled = 0;
8335b1
     if ((apr_stat(&wrapper, SUEXEC_BIN, APR_FINFO_NORM, ptemp))
8335b1
          == APR_SUCCESS) {
8335b1
-        if ((wrapper.protection & APR_USETID) && wrapper.user == 0
8335b1
+        if (SETUID_TEST(wrapper) && wrapper.user == 0
8335b1
             && (access(SUEXEC_BIN, R_OK|X_OK) == 0)) {
8335b1
             ap_unixd_config.suexec_enabled = 1;
8335b1
             ap_unixd_config.suexec_disabled_reason = "";
8335b1
--- httpd-2.4.4/support/suexec.c.r1337344+
8335b1
+++ httpd-2.4.4/support/suexec.c
8335b1
@@ -58,6 +58,10 @@
8335b1
 #include <grp.h>
8335b1
 #endif
8335b1
 
8335b1
+#ifdef AP_LOG_SYSLOG
8335b1
+#include <syslog.h>
8335b1
+#endif
8335b1
+
8335b1
 #if defined(PATH_MAX)
8335b1
 #define AP_MAXPATH PATH_MAX
8335b1
 #elif defined(MAXPATHLEN)
8335b1
@@ -69,7 +73,20 @@
8335b1
 #define AP_ENVBUF 256
8335b1
 
8335b1
 extern char **environ;
8335b1
+
8335b1
+#ifdef AP_LOG_SYSLOG
8335b1
+/* Syslog support. */
8335b1
+#if !defined(AP_LOG_FACILITY) && defined(LOG_AUTHPRIV)
8335b1
+#define AP_LOG_FACILITY LOG_AUTHPRIV
8335b1
+#elif !defined(AP_LOG_FACILITY)
8335b1
+#define AP_LOG_FACILITY LOG_AUTH
8335b1
+#endif
8335b1
+
8335b1
+static int log_open;
8335b1
+#else
8335b1
+/* Non-syslog support. */
8335b1
 static FILE *log = NULL;
8335b1
+#endif
8335b1
 
8335b1
 static const char *const safe_env_lst[] =
8335b1
 {
8335b1
@@ -137,7 +154,14 @@ static void err_output(int is_error, con
8335b1
 
8335b1
 static void err_output(int is_error, const char *fmt, va_list ap)
8335b1
 {
8335b1
-#ifdef AP_LOG_EXEC
8335b1
+#if defined(AP_LOG_SYSLOG)
8335b1
+    if (!log_open) {
8335b1
+        openlog("suexec", LOG_PID, AP_LOG_FACILITY);
8335b1
+        log_open = 1;
8335b1
+    }
8335b1
+
8335b1
+    vsyslog(is_error ? LOG_ERR : LOG_INFO, fmt, ap);
8335b1
+#elif defined(AP_LOG_EXEC)
8335b1
     time_t timevar;
8335b1
     struct tm *lt;
8335b1
 
8335b1
@@ -295,7 +319,9 @@ int main(int argc, char *argv[])
8335b1
 #ifdef AP_HTTPD_USER
8335b1
         fprintf(stderr, " -D AP_HTTPD_USER=\"%s\"\n", AP_HTTPD_USER);
8335b1
 #endif
8335b1
-#ifdef AP_LOG_EXEC
8335b1
+#if defined(AP_LOG_SYSLOG)
8335b1
+        fprintf(stderr, " -D AP_LOG_SYSLOG\n");
8335b1
+#elif defined(AP_LOG_EXEC)
8335b1
         fprintf(stderr, " -D AP_LOG_EXEC=\"%s\"\n", AP_LOG_EXEC);
8335b1
 #endif
8335b1
 #ifdef AP_SAFE_PATH
8335b1
@@ -591,6 +617,12 @@ int main(int argc, char *argv[])
8335b1
 #endif /* AP_SUEXEC_UMASK */
8335b1
 
8335b1
     /* Be sure to close the log file so the CGI can't mess with it. */
8335b1
+#ifdef AP_LOG_SYSLOG
8335b1
+    if (log_open) {
8335b1
+        closelog();
8335b1
+        log_open = 0;
8335b1
+    }
8335b1
+#else
8335b1
     if (log != NULL) {
8335b1
 #if APR_HAVE_FCNTL_H
8335b1
         /*
8335b1
@@ -612,6 +644,7 @@ int main(int argc, char *argv[])
8335b1
         log = NULL;
8335b1
 #endif
8335b1
     }
8335b1
+#endif
8335b1
 
8335b1
     /*
8335b1
      * Execute the command, replacing our image with its own.