]> granicus.if.org Git - apache/blob - server/mpm_common.c
Only compile ap_reclaim_child_processes() if a CHILD_INFO_TABLE is known.
[apache] / server / mpm_common.c
1 /* ====================================================================
2  * The Apache Software License, Version 1.1
3  *
4  * Copyright (c) 2000 The Apache Software Foundation.  All rights
5  * reserved.
6  *
7  * Redistribution and use in source and binary forms, with or without
8  * modification, are permitted provided that the following conditions
9  * are met:
10  *
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  *
14  * 2. Redistributions in binary form must reproduce the above copyright
15  *    notice, this list of conditions and the following disclaimer in
16  *    the documentation and/or other materials provided with the
17  *    distribution.
18  *
19  * 3. The end-user documentation included with the redistribution,
20  *    if any, must include the following acknowledgment:
21  *       "This product includes software developed by the
22  *        Apache Software Foundation (http://www.apache.org/)."
23  *    Alternately, this acknowledgment may appear in the software itself,
24  *    if and wherever such third-party acknowledgments normally appear.
25  *
26  * 4. The names "Apache" and "Apache Software Foundation" must
27  *    not be used to endorse or promote products derived from this
28  *    software without prior written permission. For written
29  *    permission, please contact apache@apache.org.
30  *
31  * 5. Products derived from this software may not be called "Apache",
32  *    nor may "Apache" appear in their name, without prior written
33  *    permission of the Apache Software Foundation.
34  *
35  * THIS SOFTWARE IS PROVIDED ``AS IS'' AND ANY EXPRESSED OR IMPLIED
36  * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
37  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
38  * DISCLAIMED.  IN NO EVENT SHALL THE APACHE SOFTWARE FOUNDATION OR
39  * ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
40  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
41  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
42  * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
43  * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
44  * OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
45  * OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
46  * SUCH DAMAGE.
47  * ====================================================================
48  *
49  * This software consists of voluntary contributions made by many
50  * individuals on behalf of the Apache Software Foundation.  For more
51  * information on the Apache Software Foundation, please see
52  * <http://www.apache.org/>.
53  *
54  * Portions of this software are based upon public domain software
55  * originally written at the National Center for Supercomputing Applications,
56  * University of Illinois, Urbana-Champaign.
57  */
58
59 /* The purpose of this file is to store the code that MOST mpm's will need
60  * this does not mean a function only goes into this file if every MPM needs
61  * it.  It means that if a function is needed by more than one MPM, and
62  * future maintenance would be served by making the code common, then the
63  * function belongs here.
64  *
65  * This is going in src/main because it is not platform specific, it is
66  * specific to multi-process servers, but NOT to Unix.  Which is why it
67  * does not belong in src/os/unix
68  */
69
70 #include "apr_thread_proc.h"
71 #include "httpd.h"
72 #include "http_config.h"
73 #include "http_log.h"
74 #include "mpm.h"
75 #include "mpm_common.h"
76
77 #ifdef DEXTER_MPM
78 #define CHILD_INFO_TABLE     ap_child_table
79 #elif defined(MPMT_PTHREAD_MPM) || defined (PREFORK_MPM)
80 #define CHILD_INFO_TABLE     ap_scoreboard_image->parent
81 #endif 
82
83
84 #ifdef CHILD_INFO_TABLE
85 void ap_reclaim_child_processes(int terminate)
86 {
87     int i, status;
88     long int waittime = 1024 * 16;      /* in usecs */
89     struct timeval tv;
90     int waitret, tries;
91     int not_dead_yet;
92
93 #ifndef DEXTER_MPM
94     ap_sync_scoreboard_image();
95 #endif
96
97     for (tries = terminate ? 4 : 1; tries <= 9; ++tries) {
98         /* don't want to hold up progress any more than
99          * necessary, but we need to allow children a few moments to exit.
100          * Set delay with an exponential backoff.
101          */
102         tv.tv_sec = waittime / 1000000;
103         tv.tv_usec = waittime % 1000000;
104         waittime = waittime * 4;
105         ap_select(0, NULL, NULL, NULL, &tv);
106
107         /* now see who is done */
108         not_dead_yet = 0;
109         for (i = 0; i < ap_max_daemons_limit; ++i) {
110             pid_t pid = CHILD_INFO_TABLE[i].pid;
111
112 #ifdef DEXTER_MPM
113             if (ap_child_table[i].status == SERVER_DEAD)
114 #elif defined(MPMT_PTHREAD_MPM) || defined (PREFORK_MPM)
115             if (pid == ap_my_pid || pid == 0)
116 #endif
117                 continue;
118
119             waitret = waitpid(pid, &status, WNOHANG);
120             if (waitret == pid || waitret == -1) {
121 #ifdef DEXTER_MPM
122                 ap_child_table[i].status = SERVER_DEAD;
123 #elif defined(MPMT_PTHREAD_MPM) || defined(PREFORK_MPM)
124                 ap_scoreboard_image->parent[i].pid = 0;
125 #endif
126                 continue;
127             }
128             ++not_dead_yet;
129             switch (tries) {
130             case 1:     /*  16ms */
131             case 2:     /*  82ms */
132                 break;
133             case 3:     /* 344ms */
134             case 4:     /*  16ms */
135             case 5:     /*  82ms */
136             case 6:     /* 344ms */
137             case 7:     /* 1.4sec */
138                 /* ok, now it's being annoying */
139                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING,
140                              0, ap_server_conf,
141                    "child process %ld still did not exit, sending a SIGTERM",
142                              (long)pid);
143                 kill(pid, SIGTERM);
144                 break;
145             case 8:     /*  6 sec */
146                 /* die child scum */
147                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR,
148                              0, ap_server_conf,
149                    "child process %ld still did not exit, sending a SIGKILL",
150                              (long)pid);
151                 kill(pid, SIGKILL);
152                 break;
153             case 9:     /* 14 sec */
154                 /* gave it our best shot, but alas...  If this really
155                  * is a child we are trying to kill and it really hasn't
156                  * exited, we will likely fail to bind to the port
157                  * after the restart.
158                  */
159                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR,
160                              0, ap_server_conf,
161                              "could not make child process %ld exit, "
162                              "attempting to continue anyway", (long)pid);
163                 break;
164             }
165         }
166         ap_check_other_child();
167         if (!not_dead_yet) {
168             /* nothing left to wait for */
169             break;
170         }
171     }
172 }
173 #endif
174
175 /* number of calls to wait_or_timeout between writable probes */
176 #ifndef INTERVAL_OF_WRITABLE_PROBES
177 #define INTERVAL_OF_WRITABLE_PROBES 10
178 #endif
179 static int wait_or_timeout_counter;
180
181 void ap_wait_or_timeout(ap_wait_t *status, ap_proc_t *ret, ap_pool_t *p)
182 {
183     struct timeval tv;
184     ap_status_t rv;
185
186     ++wait_or_timeout_counter;
187     if (wait_or_timeout_counter == INTERVAL_OF_WRITABLE_PROBES) {
188         wait_or_timeout_counter = 0;
189 #ifdef APR_HAS_OTHER_CHILD
190         ap_probe_writable_fds();
191 #endif
192     }
193     rv = ap_wait_all_procs(ret, status, APR_NOWAIT, p);
194     if (ap_canonical_error(rv) == APR_EINTR) {
195         ret->pid = -1;
196         return;
197     }
198     if (rv == APR_CHILD_DONE) {
199         return;
200     }
201 #ifdef NEED_WAITPID
202     if ((ret = reap_children(status)) > 0) {
203         return;
204     }
205 #endif
206     tv.tv_sec = SCOREBOARD_MAINTENANCE_INTERVAL / 1000000;
207     tv.tv_usec = SCOREBOARD_MAINTENANCE_INTERVAL % 1000000;
208     ap_select(0, NULL, NULL, NULL, &tv);
209     ret->pid = -1;
210     return;
211 }
212
213