source: server/common/patches/httpd-suexec-scripts.patch @ 405

Last change on this file since 405 was 405, checked in by andersk, 17 years ago
Revert r403 pending discussion of its security implications.
File size: 6.0 KB
RevLine 
[1]1# scripts.mit.edu httpd suexec patch
[315]2# Copyright (C) 2006, 2007  Jeff Arnold <jbarnold@mit.edu>, Joe Presbrey <presbrey@mit.edu>, Anders Kaseorg <andersk@mit.edu>
[1]3#
4# This program is free software; you can redistribute it and/or
5# modify it under the terms of the GNU General Public License
6# as published by the Free Software Foundation; either version 2
7# of the License, or (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12# GNU General Public License for more details.
13#
14# You should have received a copy of the GNU General Public License
15# along with this program; if not, write to the Free Software
16# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA
17#
18# See /COPYRIGHT in this repository for more information.
19#
[103]20--- httpd-2.2.2/support/Makefile.in.old 2005-07-06 19:15:34.000000000 -0400
21+++ httpd-2.2.2/support/Makefile.in     2007-01-20 17:12:51.000000000 -0500
22@@ -60,7 +60,7 @@
23
24 suexec_OBJECTS = suexec.lo
25 suexec: $(suexec_OBJECTS)
26-       $(LINK) $(suexec_OBJECTS)
27+       $(LINK) -lselinux $(suexec_OBJECTS)
28
29 htcacheclean_OBJECTS = htcacheclean.lo
30 htcacheclean: $(htcacheclean_OBJECTS)
[1]31--- httpd-2.2.2/support/suexec.c.old    2006-04-21 21:53:06.000000000 -0400
[315]32+++ httpd-2.2.2/support/suexec.c        2007-05-22 10:32:04.000000000 -0400
[298]33@@ -30,6 +30,8 @@
34  *
35  */
36 
37+#define STATIC_CAT_PATH "/usr/local/bin/static-cat"
38+
39 #include "apr.h"
40 #include "ap_config.h"
41 #include "suexec.h"
42@@ -46,6 +48,7 @@
[103]43 #include <stdio.h>
44 #include <stdarg.h>
45 #include <stdlib.h>
46+#include <selinux/selinux.h>
47 
48 #ifdef HAVE_PWD_H
49 #include <pwd.h>
[405]50@@ -95,6 +98,7 @@
[1]51 {
52     /* variable name starts with */
53     "HTTP_",
54+    "HTTPS_",
55     "SSL_",
56 
57     /* variable name is */
[405]58@@ -140,6 +144,7 @@
[1]59     "UNIQUE_ID=",
60     "USER_NAME=",
61     "TZ=",
62+    "PHPRC=",
63     NULL
64 };
65 
[405]66@@ -245,6 +250,53 @@
[298]67     environ = cleanenv;
68 }
69 
70+static const char *static_extensions[] = {
71+    "html",
72+    "css",
73+    "gif",
74+    "jpg",
75+    "png",
76+    "htm",
77+    "jpeg",
78+    "js",
79+    "ico",
80+    "xml",
81+    "xsl",
82+    "tiff",
83+    "tif",
84+    "tgz",
85+    "tar",
86+    "jar",
87+    "zip",
88+    "pdf",
89+    "ps",
90+    "doc",
91+    "xls",
92+    "ppt",
93+    "swf",
94+    "mp3",
95+    "mov",
96+    "wmv",
97+    "mpg",
98+    "mpeg",
99+    "avi",
100+    "il",
101+    "JPG",
[315]102+    "xhtml",
[298]103+    NULL
104+};
105+
106+static int is_static_extension(const char *file)
107+{
108+    const char *extension = strrchr(file, '.');
109+    const char **p;
110+    if (extension == NULL) return 0;
111+    for (p = static_extensions; *p; ++p) {
112+        if (strcmp(extension + 1, *p) == 0) return 1;
113+    }
114+    return 0;
115+}
116+
117 int main(int argc, char *argv[])
118 {
119     int userdir = 0;        /* ~userdir flag             */
[405]120@@ -450,7 +501,7 @@
[103]121      * Error out if attempt is made to execute as root or as
122      * a UID less than AP_UID_MIN.  Tsk tsk.
123      */
124-    if ((uid == 0) || (uid < AP_UID_MIN)) {
125+    if ((uid == 0) || (uid < AP_UID_MIN && uid != 102)) {
126         log_err("cannot run as forbidden uid (%d/%s)\n", uid, cmd);
127         exit(107);
128     }
[405]129@@ -482,6 +533,17 @@
[103]130         log_err("failed to setuid (%ld: %s)\n", uid, cmd);
131         exit(110);
132     }
[405]133+    if (uid == 102) {
134+        if (setexeccon("system_u:system_r:signup_t:s0") == -1) {
135+            log_err("failed to setexeccon (%ld: %s) to signup_t\n", uid, cmd);
136+            exit(201);
137+        }
138+    } else {
139+        if (setexeccon("user_u:user_r:user_t:s0") == -1) {
140+            log_err("failed to setexeccon (%ld: %s) to user_t\n", uid, cmd);
141+            exit(202);
142+        }
[103]143+    }
144 
145     /*
146      * Get the current working directory, as well as the proper
[405]147@@ -513,6 +575,13 @@
[1]148             exit(113);
149         }
150     }
[298]151+    size_t expected_len = strlen(target_homedir)+1+strlen(AP_USERDIR_SUFFIX)+1;
152+    char *expected = malloc(expected_len);
153+    snprintf(expected, expected_len, "%s/%s", target_homedir, AP_USERDIR_SUFFIX);
[300]154+    if (strncmp(cwd, expected, expected_len-1) != 0) {
[1]155+        log_err("error: file's directory not a subdirectory of user's home directory (%s, %s)\n", cwd, expected);
156+        exit(114);
157+    }
158 
159     if ((strncmp(cwd, dwd, strlen(dwd))) != 0) {
160         log_err("command not in docroot (%s/%s)\n", cwd, cmd);
[405]161@@ -530,15 +598,17 @@
[1]162     /*
163      * Error out if cwd is writable by others.
164      */
165+#if 0
166     if ((dir_info.st_mode & S_IWOTH) || (dir_info.st_mode & S_IWGRP)) {
167         log_err("directory is writable by others: (%s)\n", cwd);
168         exit(116);
169     }
170+#endif
171 
172     /*
173      * Error out if we cannot stat the program.
174      */
175-    if (((lstat(cmd, &prg_info)) != 0) || (S_ISLNK(prg_info.st_mode))) {
176+    if (((lstat(cmd, &prg_info)) != 0) /*|| (S_ISLNK(prg_info.st_mode))*/) {
177         log_err("cannot stat program: (%s)\n", cmd);
178         exit(117);
179     }
[405]180@@ -546,10 +616,12 @@
[1]181     /*
182      * Error out if the program is writable by others.
183      */
184+#if 0
185     if ((prg_info.st_mode & S_IWOTH) || (prg_info.st_mode & S_IWGRP)) {
186         log_err("file is writable by others: (%s/%s)\n", cwd, cmd);
187         exit(118);
188     }
189+#endif
190 
191     /*
192      * Error out if the file is setuid or setgid.
[405]193@@ -563,6 +635,7 @@
[1]194      * Error out if the target name/group is different from
195      * the name/group of the cwd or the program.
196      */
197+#if 0
198     if ((uid != dir_info.st_uid) ||
199         (gid != dir_info.st_gid) ||
200         (uid != prg_info.st_uid) ||
[405]201@@ -574,6 +647,7 @@
[1]202                 prg_info.st_uid, prg_info.st_gid);
203         exit(120);
204     }
205+#endif
206     /*
207      * Error out if the program is not executable for the user.
208      * Otherwise, she won't find any error in the logs except for
[405]209@@ -609,6 +683,13 @@
[298]210         log = NULL;
211     }
212 
213+    if (is_static_extension(cmd)) {
214+        argv[2] = STATIC_CAT_PATH;
215+        execv(STATIC_CAT_PATH, &argv[2]);
216+       log_err("(%d)%s: static_cat exec failed (%s)\n", errno, strerror(errno), argv[2]);
217+       exit(255);
218+    }
219+
220     /*
221      * Execute the command, replacing our image with its own.
222      */
Note: See TracBrowser for help on using the repository browser.