]> granicus.if.org Git - apache/blob - docs/manual/suexec.xml
update xforms
[apache] / docs / manual / suexec.xml
1 <?xml version="1.0" encoding="UTF-8" ?>
2 <!DOCTYPE manualpage SYSTEM "./style/manualpage.dtd">
3 <?xml-stylesheet type="text/xsl" href="./style/manual.en.xsl"?>
4 <!-- $LastChangedRevision$ -->
5
6 <!--
7  Licensed to the Apache Software Foundation (ASF) under one or more
8  contributor license agreements.  See the NOTICE file distributed with
9  this work for additional information regarding copyright ownership.
10  The ASF licenses this file to You under the Apache License, Version 2.0
11  (the "License"); you may not use this file except in compliance with
12  the License.  You may obtain a copy of the License at
13
14      http://www.apache.org/licenses/LICENSE-2.0
15
16  Unless required by applicable law or agreed to in writing, software
17  distributed under the License is distributed on an "AS IS" BASIS,
18  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
19  See the License for the specific language governing permissions and
20  limitations under the License.
21 -->
22
23 <manualpage metafile="suexec.xml.meta">
24
25   <title>suEXEC Support</title>
26
27   <summary>
28     <p>The <strong>suEXEC</strong> feature provides users of the Apache
29     HTTP Server the ability
30     to run <strong>CGI</strong> and <strong>SSI</strong> programs
31     under user IDs different from the user ID of the calling
32     web server. Normally, when a CGI or SSI program executes, it
33     runs as the same user who is running the web server.</p>
34
35     <p>Used properly, this feature can reduce
36     considerably the security risks involved with allowing users to
37     develop and run private CGI or SSI programs. However, if suEXEC
38     is improperly configured, it can cause any number of problems
39     and possibly create new holes in your computer's security. If
40     you aren't familiar with managing <em>setuid root</em> programs
41     and the security issues they present, we highly recommend that
42     you not consider using suEXEC.</p>
43   </summary>
44
45 <section id="before"><title>Before we begin</title>
46
47     <p>Before jumping head-first into this document,
48     you should be aware that certain assumptions are made about you and
49     the environment in which you will be using suexec.</p>
50
51     <p>First, it is assumed that you are using a UNIX
52     derivative operating system that is capable of
53     <strong>setuid</strong> and <strong>setgid</strong> operations.
54     All command examples are given in this regard. Other platforms,
55     if they are capable of supporting suEXEC, may differ in their
56     configuration.</p>
57
58     <p>Second, it is assumed you are familiar with
59     some basic concepts of your computer's security and its
60     administration. This involves an understanding of
61     <strong>setuid/setgid</strong> operations and the various
62     effects they may have on your system and its level of
63     security.</p>
64
65     <p>Third, it is assumed that you are using an
66     <strong>unmodified</strong> version of suEXEC code. All code
67     for suEXEC has been carefully scrutinized and tested by the
68     developers as well as numerous beta testers. Every precaution
69     has been taken to ensure a simple yet solidly safe base of
70     code. Altering this code can cause unexpected problems and new
71     security risks. It is <strong>highly</strong> recommended you
72     not alter the suEXEC code unless you are well versed in the
73     particulars of security programming and are willing to share
74     your work with the Apache HTTP Server development team for consideration.</p>
75
76     <p>Fourth, and last, it has been the decision of
77     the Apache HTTP Server development team to <strong>NOT</strong> make suEXEC part of
78     the default installation of Apache httpd. To this end, suEXEC
79     configuration requires of the administrator careful attention
80     to details. After due consideration has been given to the
81     various settings for suEXEC, the administrator may install
82     suEXEC through normal installation methods. The values for
83     these settings need to be carefully determined and specified by
84     the administrator to properly maintain system security during
85     the use of suEXEC functionality. It is through this detailed
86     process that we hope to limit suEXEC
87     installation only to those who are careful and determined
88     enough to use it.</p>
89
90     <p>Still with us? Yes? Good. Let's move on!</p>
91 </section>
92
93 <section id="model"><title>suEXEC Security Model</title>
94
95     <p>Before we begin configuring and installing
96     suEXEC, we will first discuss the security model you are about
97     to implement. By doing so, you may better understand what
98     exactly is going on inside suEXEC and what precautions are
99     taken to ensure your system's security.</p>
100
101     <p><strong>suEXEC</strong> is based on a setuid
102     "wrapper" program that is called by the main Apache HTTP Server.
103     This wrapper is called when an HTTP request is made for a CGI
104     or SSI program that the administrator has designated to run as
105     a userid other than that of the main server. When such a
106     request is made, Apache httpd provides the suEXEC wrapper with the
107     program's name and the user and group IDs under which the
108     program is to execute.</p>
109
110     <p>The wrapper then employs the following process
111     to determine success or failure -- if any one of these
112     conditions fail, the program logs the failure and exits with an
113     error, otherwise it will continue:</p>
114
115     <ol>
116       <li>
117         <strong>Is the user executing this wrapper a valid user of
118         this system?</strong>
119
120         <p class="indent">
121           This is to ensure that the user executing the wrapper is
122           truly a user of the system.
123         </p>
124      </li>
125
126      <li>
127         <strong>Was the wrapper called with the proper number of
128         arguments?</strong>
129
130         <p class="indent">
131           The wrapper will only execute if it is given the proper
132           number of arguments. The proper argument format is known
133           to the Apache HTTP Server. If the wrapper is not receiving
134           the proper number of arguments, it is either being
135           hacked, or there is something wrong with the suEXEC
136           portion of your Apache httpd binary.
137         </p>
138       </li>
139
140       <li>
141         <strong>Is this valid user allowed to run the
142         wrapper?</strong>
143
144         <p class="indent">
145           Is this user the user allowed to run this wrapper? Only
146           one user (the Apache user) is allowed to execute this
147           program.
148         </p>
149       </li>
150
151       <li>
152         <strong>Does the target CGI or SSI program have an unsafe
153         hierarchical reference?</strong>
154
155         <p class="indent">
156           Does the target CGI or SSI program's path contain a leading
157           '/' or have a '..' backreference? These are not allowed; the
158           target CGI/SSI program must reside within suEXEC's document
159           root (see <code>--with-suexec-docroot=<em>DIR</em></code>
160           below).
161         </p>
162       </li>
163
164       <li>
165         <strong>Is the target user name valid?</strong>
166
167         <p class="indent">
168           Does the target user exist?
169         </p>
170       </li>
171
172       <li>
173         <strong>Is the target group name valid?</strong>
174
175         <p class="indent">
176           Does the target group exist?
177         </p>
178       </li>
179
180       <li>
181         <strong>Is the target user <em>NOT</em> superuser?</strong>
182
183
184         <p class="indent">
185           suEXEC does not allow <code><em>root</em></code>
186           to execute CGI/SSI programs.
187         </p>
188       </li>
189
190       <li>
191         <strong>Is the target userid <em>ABOVE</em> the minimum ID
192         number?</strong>
193
194         <p class="indent">
195           The minimum user ID number is specified during
196           configuration. This allows you to set the lowest possible
197           userid that will be allowed to execute CGI/SSI programs.
198           This is useful to block out "system" accounts.
199         </p>
200       </li>
201
202       <li>
203         <strong>Is the target group <em>NOT</em> the superuser
204         group?</strong>
205
206         <p class="indent">
207           Presently, suEXEC does not allow the <code><em>root</em></code>
208           group to execute CGI/SSI programs.
209         </p>
210       </li>
211
212       <li>
213         <strong>Is the target groupid <em>ABOVE</em> the minimum ID
214         number?</strong>
215
216         <p class="indent">
217           The minimum group ID number is specified during
218           configuration. This allows you to set the lowest possible
219           groupid that will be allowed to execute CGI/SSI programs.
220           This is useful to block out "system" groups.
221         </p>
222       </li>
223
224       <li>
225         <strong>Can the wrapper successfully become the target user
226         and group?</strong>
227
228         <p class="indent">
229           Here is where the program becomes the target user and
230           group via setuid and setgid calls. The group access list
231           is also initialized with all of the groups of which the
232           user is a member.
233         </p>
234       </li>
235
236       <li>
237         <strong>Can we change directory to the one in which the target
238         CGI/SSI program resides?</strong>
239
240         <p class="indent">
241           If it doesn't exist, it can't very well contain files. If we
242           can't change directory to it, it might aswell not exist.
243         </p>
244       </li>
245
246       <li>
247         <strong>Is the directory within the httpd webspace?</strong>
248
249         <p class="indent">
250           If the request is for a regular portion of the server, is
251           the requested directory within suEXEC's document root? If
252           the request is for a <directive module="mod_userdir"
253           >UserDir</directive>, is the requested directory
254           within the directory configured as suEXEC's userdir (see
255           <a href="#install">suEXEC's configuration options</a>)?
256         </p>
257       </li>
258
259       <li>
260         <strong>Is the directory <em>NOT</em> writable by anyone
261         else?</strong>
262
263         <p class="indent">
264           We don't want to open up the directory to others; only
265           the owner user may be able to alter this directories
266           contents.
267         </p>
268       </li>
269
270       <li>
271         <strong>Does the target CGI/SSI program exist?</strong>
272
273         <p class="indent">
274           If it doesn't exists, it can't very well be executed.
275         </p>
276       </li>
277
278       <li>
279         <strong>Is the target CGI/SSI program <em>NOT</em> writable
280         by anyone else?</strong>
281
282         <p class="indent">
283           We don't want to give anyone other than the owner the
284           ability to change the CGI/SSI program.
285         </p>
286       </li>
287
288       <li>
289         <strong>Is the target CGI/SSI program <em>NOT</em> setuid or
290         setgid?</strong>
291
292         <p class="indent">
293           We do not want to execute programs that will then change
294           our UID/GID again.
295         </p>
296       </li>
297
298       <li>
299         <strong>Is the target user/group the same as the program's
300         user/group?</strong>
301
302         <p class="indent">
303           Is the user the owner of the file?
304         </p>
305       </li>
306
307       <li>
308         <strong>Can we successfully clean the process environment
309         to ensure safe operations?</strong>
310
311         <p class="indent">
312           suEXEC cleans the process' environment by establishing a
313           safe execution PATH (defined during configuration), as
314           well as only passing through those variables whose names
315           are listed in the safe environment list (also created
316           during configuration).
317         </p>
318       </li>
319
320       <li>
321         <strong>Can we successfully become the target CGI/SSI program
322         and execute?</strong>
323
324         <p class="indent">
325           Here is where suEXEC ends and the target CGI/SSI program begins.
326         </p>
327       </li>
328     </ol>
329
330     <p>This is the standard operation of the
331     suEXEC wrapper's security model. It is somewhat stringent and
332     can impose new limitations and guidelines for CGI/SSI design,
333     but it was developed carefully step-by-step with security in
334     mind.</p>
335
336     <p>For more information as to how this security
337     model can limit your possibilities in regards to server
338     configuration, as well as what security risks can be avoided
339     with a proper suEXEC setup, see the <a
340     href="#jabberwock">"Beware the Jabberwock"</a> section of this
341     document.</p>
342 </section>
343
344 <section id="install"><title>Configuring &amp; Installing
345     suEXEC</title>
346
347     <p>Here's where we begin the fun.</p>
348
349     <p><strong>suEXEC configuration
350     options</strong><br />
351     </p>
352
353     <dl>
354       <dt><code>--enable-suexec</code></dt>
355
356       <dd>This option enables the suEXEC feature which is never
357       installed or activated by default. At least one
358       <code>--with-suexec-xxxxx</code> option has to be provided
359       together with the <code>--enable-suexec</code> option to let
360       APACI accept your request for using the suEXEC feature.</dd>
361
362       <dt><code>--with-suexec-bin=<em>PATH</em></code></dt>
363
364       <dd>The path to the <code>suexec</code> binary must be hard-coded
365       in the server for security reasons. Use this option to override
366       the default path. <em>e.g.</em>
367       <code>--with-suexec-bin=/usr/sbin/suexec</code></dd>
368
369       <dt><code>--with-suexec-caller=<em>UID</em></code></dt>
370
371       <dd>The <a href="mod/mpm_common.html#user">username</a> under which
372       httpd normally runs. This is the only user allowed to
373       execute the suEXEC wrapper.</dd>
374
375       <dt><code>--with-suexec-userdir=<em>DIR</em></code></dt>
376
377       <dd>Define to be the subdirectory under users' home
378       directories where suEXEC access should be allowed. All
379       executables under this directory will be executable by suEXEC
380       as the user so they should be "safe" programs. If you are
381       using a "simple" <directive module="mod_userdir">UserDir</directive>
382       directive (ie. one without a "*" in it) this should be set to the same
383       value. suEXEC will not work properly in cases where the <directive
384       module="mod_userdir">UserDir</directive> directive points to
385       a location that is not the same as the user's home directory
386       as referenced in the <code>passwd</code> file. Default value is
387       "<code>public_html</code>".<br />
388       If you have virtual hosts with a different <directive
389       module="mod_userdir">UserDir</directive> for each,
390       you will need to define them to all reside in one parent
391       directory; then name that parent directory here. <strong>If
392       this is not defined properly, "~userdir" cgi requests will
393       not work!</strong></dd>
394
395       <dt><code>--with-suexec-docroot=<em>DIR</em></code></dt>
396
397       <dd>Define as the DocumentRoot set for httpd. This will be
398       the only hierarchy (aside from <directive module="mod_userdir"
399       >UserDir</directive>s) that can be used for suEXEC behavior. The
400       default directory is the <code>--datadir</code> value with the suffix
401       "<code>/htdocs</code>", <em>e.g.</em> if you configure with
402       "<code>--datadir=/home/apache</code>" the directory
403       "<code>/home/apache/htdocs</code>" is used as document root for the
404       suEXEC wrapper.</dd>
405
406       <dt><code>--with-suexec-uidmin=<em>UID</em></code></dt>
407
408       <dd>Define this as the lowest UID allowed to be a target user
409       for suEXEC. For most systems, 500 or 100 is common. Default
410       value is 100.</dd>
411
412       <dt><code>--with-suexec-gidmin=<em>GID</em></code></dt>
413
414       <dd>Define this as the lowest GID allowed to be a target
415       group for suEXEC. For most systems, 100 is common and
416       therefore used as default value.</dd>
417
418       <dt><code>--with-suexec-logfile=<em>FILE</em></code></dt>
419
420       <dd>This defines the filename to which all suEXEC
421       transactions and errors are logged (useful for auditing and
422       debugging purposes). By default the logfile is named
423       "<code>suexec_log</code>" and located in your standard logfile
424       directory (<code>--logfiledir</code>).</dd>
425
426       <dt><code>--with-suexec-safepath=<em>PATH</em></code></dt>
427
428       <dd>Define a safe PATH environment to pass to CGI
429       executables. Default value is
430       "<code>/usr/local/bin:/usr/bin:/bin</code>".</dd>
431     </dl>
432
433     <section>
434       <title>Compiling and installing the suEXEC wrapper</title>
435
436       <p>If you have enabled the suEXEC feature with the
437       <code>--enable-suexec</code> option the <code>suexec</code> binary
438       (together with httpd itself) is automatically built if you execute
439       the <code>make</code> command.</p>
440
441       <p>After all components have been built you can execute the
442       command <code>make install</code> to install them. The binary image
443       <code>suexec</code> is installed in the directory defined by the
444       <code>--sbindir</code> option. The default location is
445       "/usr/local/apache2/bin/suexec".</p>
446
447       <p>Please note that you need <strong><em>root
448       privileges</em></strong> for the installation step. In order
449       for the wrapper to set the user ID, it must be installed as
450       owner <code><em>root</em></code> and must have the setuserid
451       execution bit set for file modes.</p>
452     </section>
453
454     <section>
455       <title>Setting paranoid permissions</title>
456
457       <p>Although the suEXEC wrapper will check to ensure that its
458       caller is the correct user as specified with the
459       <code>--with-suexec-caller</code> <program>configure</program>
460       option, there is
461       always the possibility that a system or library call suEXEC uses
462       before this check may be exploitable on your system. To counter
463       this, and because it is best-practise in general, you should use
464       filesystem permissions to ensure that only the group httpd
465       runs as may execute suEXEC.</p>
466
467       <p>If for example, your web server is configured to run as:</p>
468
469       <example>
470           User www<br />
471           Group webgroup<br />
472       </example>
473
474       <p>and <program>suexec</program> is installed at
475       "/usr/local/apache2/bin/suexec", you should run:</p>
476
477       <example>
478           chgrp webgroup /usr/local/apache2/bin/suexec<br />
479           chmod 4750 /usr/local/apache2/bin/suexec<br />
480       </example>
481
482       <p>This will ensure that only the group httpd runs as can even
483       execute the suEXEC wrapper.</p>
484     </section>
485 </section>
486
487
488 <section id="enable"><title>Enabling &amp; Disabling
489     suEXEC</title>
490
491     <p>Upon startup of httpd, it looks for the file
492     <program>suexec</program> in the directory defined by the
493     <code>--sbindir</code> option (default is
494     "/usr/local/apache/sbin/suexec"). If httpd finds a properly
495     configured suEXEC wrapper, it will print the following message
496     to the error log:</p>
497
498 <example>
499     [notice] suEXEC mechanism enabled (wrapper: <var>/path/to/suexec</var>)
500 </example>
501
502     <p>If you don't see this message at server startup, the server is
503     most likely not finding the wrapper program where it expects
504     it, or the executable is not installed <em>setuid root</em>.</p>
505
506      <p>If you want to enable the suEXEC mechanism for the first time
507     and an Apache HTTP Server is already running you must kill and
508     restart httpd. Restarting it with a simple HUP or USR1 signal
509     will not be enough. </p>
510      <p>If you want to disable suEXEC you should kill and restart
511     httpd after you have removed the <program>suexec</program> file.</p>
512 </section>
513
514 <section id="usage"><title>Using suEXEC</title>
515
516     <p>Requests for CGI programs will call the suEXEC wrapper only if
517     they are for a virtual host containing a <directive
518     module="mod_suexec">SuexecUserGroup</directive> directive or if
519     they are processed by <module>mod_userdir</module>.</p>
520
521     <p><strong>Virtual Hosts:</strong><br /> One way to use the suEXEC
522     wrapper is through the <directive
523     module="mod_suexec">SuexecUserGroup</directive> directive in
524     <directive module="core">VirtualHost</directive> definitions.  By
525     setting this directive to values different from the main server
526     user ID, all requests for CGI resources will be executed as the
527     <em>User</em> and <em>Group</em> defined for that <directive
528     module="core" type="section">VirtualHost</directive>. If this
529     directive is not specified for a <directive module="core"
530     type="section">VirtualHost</directive> then the main server userid
531     is assumed.</p>
532
533     <p><strong>User directories:</strong><br /> Requests that are
534      processed by <module>mod_userdir</module> will call the suEXEC
535      wrapper to execute CGI programs under the userid of the requested
536      user directory.  The only requirement needed for this feature to
537      work is for CGI execution to be enabled for the user and that the
538      script must meet the scrutiny of the <a href="#model">security
539      checks</a> above.  See also the
540      <code>--with-suexec-userdir</code> <a href="#install">compile
541      time option</a>.</p> </section>
542
543 <section id="debug"><title>Debugging suEXEC</title>
544
545     <p>The suEXEC wrapper will write log information
546     to the file defined with the <code>--with-suexec-logfile</code>
547     option as indicated above. If you feel you have configured and
548     installed the wrapper properly, have a look at this log and the
549     error_log for the server to see where you may have gone astray.</p>
550
551 </section>
552
553 <section id="jabberwock"><title>Beware the Jabberwock:
554     Warnings &amp; Examples</title>
555
556     <p><strong>NOTE!</strong> This section may not be
557     complete. For the latest revision of this section of the
558     documentation, see the <a
559     href="http://httpd.apache.org/docs/&httpd.docs;/suexec.html">Online
560     Documentation</a> version.</p>
561
562     <p>There are a few points of interest regarding
563     the wrapper that can cause limitations on server setup. Please
564     review these before submitting any "bugs" regarding suEXEC.</p>
565
566     <ul>
567       <li><strong>suEXEC Points Of Interest</strong></li>
568
569       <li>
570         Hierarchy limitations
571
572         <p class="indent">
573           For security and efficiency reasons, all suEXEC requests
574           must remain within either a top-level document root for
575           virtual host requests, or one top-level personal document
576           root for userdir requests. For example, if you have four
577           VirtualHosts configured, you would need to structure all
578           of your VHosts' document roots off of one main httpd
579           document hierarchy to take advantage of suEXEC for
580           VirtualHosts. (Example forthcoming.)
581         </p>
582       </li>
583
584       <li>
585         suEXEC's PATH environment variable
586
587         <p class="indent">
588           This can be a dangerous thing to change. Make certain
589           every path you include in this define is a
590           <strong>trusted</strong> directory. You don't want to
591           open people up to having someone from across the world
592           running a trojan horse on them.
593         </p>
594       </li>
595
596       <li>
597         Altering the suEXEC code
598
599         <p class="indent">
600           Again, this can cause <strong>Big Trouble</strong> if you
601           try this without knowing what you are doing. Stay away
602           from it if at all possible.
603         </p>
604       </li>
605     </ul>
606
607 </section>
608
609 </manualpage>