]> granicus.if.org Git - apache/blob - server/mpm/mpmt_pthread/mpmt_pthread.c
Log errors from ap_accept().
[apache] / server / mpm / mpmt_pthread / mpmt_pthread.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 #define CORE_PRIVATE 
60  
61 #include "apr_portable.h"
62 #include "apr_file_io.h"
63 #include "apr_thread_proc.h"
64 #include "ap_config.h"
65 #include "httpd.h" 
66 #include "http_main.h" 
67 #include "http_log.h" 
68 #include "http_config.h"        /* for read_config */ 
69 #include "http_core.h"          /* for get_remote_host */ 
70 #include "http_connection.h"
71 #include "ap_mpm.h"
72 #include "unixd.h"
73 #include "mpm_common.h"
74 #include "iol_socket.h"
75 #include "ap_listen.h"
76 #include "scoreboard.h" 
77
78 #ifdef HAVE_NETINET_TCP_H
79 #include <netinet/tcp.h>
80 #endif
81 #ifdef HAVE_SYS_SOCKET_H
82 #include <sys/socket.h>
83 #endif
84 #ifdef HAVE_SYS_WAIT_H
85 #include <sys/wait.h> 
86 #endif
87 #include <pthread.h>
88 #include <signal.h>
89
90 /*
91  * Actual definitions of config globals
92  */
93
94 int ap_threads_per_child=0;         /* Worker threads per child */
95 int ap_max_requests_per_child=0;
96 static const char *ap_pid_fname=NULL;
97 API_VAR_EXPORT const char *ap_scoreboard_fname=NULL;
98 static int ap_daemons_to_start=0;
99 static int min_spare_threads=0;
100 static int max_spare_threads=0;
101 static int ap_daemons_limit=0;
102 static time_t ap_restart_time=0;
103 API_VAR_EXPORT int ap_extended_status = 0;
104 static int workers_may_exit = 0;
105 static int requests_this_child;
106 static int num_listensocks = 0;
107 static ap_socket_t **listensocks;
108
109 /* The structure used to pass unique initialization info to each thread */
110 typedef struct {
111     int pid;
112     int tid;
113     int sd;
114     ap_pool_t *tpool; /* "pthread" would be confusing */
115 } proc_info;
116
117 /*
118  * The max child slot ever assigned, preserved across restarts.  Necessary
119  * to deal with MaxClients changes across SIGWINCH restarts.  We use this
120  * value to optimize routines that have to scan the entire scoreboard.
121  */
122 int ap_max_daemons_limit = -1;
123
124 static char ap_coredump_dir[MAX_STRING_LEN];
125
126 static ap_file_t *pipe_of_death_in = NULL;
127 static ap_file_t *pipe_of_death_out = NULL;
128 static pthread_mutex_t pipe_of_death_mutex;
129
130 /* *Non*-shared http_main globals... */
131
132 server_rec *ap_server_conf;
133
134 /* one_process --- debugging mode variable; can be set from the command line
135  * with the -X flag.  If set, this gets you the child_main loop running
136  * in the process which originally started up (no detach, no make_child),
137  * which is a pretty nice debugging environment.  (You'll get a SIGHUP
138  * early in standalone_main; just continue through.  This is the server
139  * trying to kill off any child processes which it might have lying
140  * around --- Apache doesn't keep track of their pids, it just sends
141  * SIGHUP to the process group, ignoring it in the root process.
142  * Continue through and you'll be fine.).
143  */
144
145 static int one_process = 0;
146
147 #ifdef DEBUG_SIGSTOP
148 int raise_sigstop_flags;
149 #endif
150
151 static ap_pool_t *pconf;                /* Pool for config stuff */
152 static ap_pool_t *pchild;               /* Pool for httpd child stuff */
153
154 int ap_my_pid; /* Linux getpid() doesn't work except in main thread. Use
155                       this instead */
156 /* Keep track of the number of worker threads currently active */
157 static int worker_thread_count;
158 static pthread_mutex_t worker_thread_count_mutex;
159
160 /* Locks for accept serialization */
161 static pthread_mutex_t thread_accept_mutex = PTHREAD_MUTEX_INITIALIZER;
162 static ap_lock_t *process_accept_mutex;
163 static const char *lock_fname;
164
165 #ifdef NO_SERIALIZED_ACCEPT
166 #define SAFE_ACCEPT(stmt) APR_SUCCESS
167 #else
168 #define SAFE_ACCEPT(stmt) (stmt)
169 #endif
170
171 API_EXPORT(const server_rec *) ap_get_server_conf(void)
172 {
173     return (ap_server_conf);
174 }
175
176 API_EXPORT(int) ap_get_max_daemons(void)
177 {
178     return ap_max_daemons_limit;
179 }
180
181 /* a clean exit from a child with proper cleanup */ 
182 static void clean_child_exit(int code) __attribute__ ((noreturn));
183 void clean_child_exit(int code)
184 {
185     if (pchild) {
186         ap_destroy_pool(pchild);
187     }
188     exit(code);
189 }
190
191 /* handle all varieties of core dumping signals */
192 static void sig_coredump(int sig)
193 {
194     chdir(ap_coredump_dir);
195     ap_signal(sig, SIG_DFL);
196     kill(ap_my_pid, sig);
197     /* At this point we've got sig blocked, because we're still inside
198      * the signal handler.  When we leave the signal handler it will
199      * be unblocked, and we'll take the signal... and coredump or whatever
200      * is appropriate for this particular Unix.  In addition the parent
201      * will see the real signal we received -- whereas if we called
202      * abort() here, the parent would only see SIGABRT.
203      */
204 }
205
206 static void just_die(int sig)
207 {
208     clean_child_exit(0);
209 }
210
211 /*****************************************************************
212  * Connection structures and accounting...
213  */
214
215 /* volatile just in case */
216 static int volatile shutdown_pending;
217 static int volatile restart_pending;
218 static int volatile is_graceful;
219 ap_generation_t volatile ap_my_generation;
220
221 /*
222  * ap_start_shutdown() and ap_start_restart(), below, are a first stab at
223  * functions to initiate shutdown or restart without relying on signals. 
224  * Previously this was initiated in sig_term() and restart() signal handlers, 
225  * but we want to be able to start a shutdown/restart from other sources --
226  * e.g. on Win32, from the service manager. Now the service manager can
227  * call ap_start_shutdown() or ap_start_restart() as appropiate.  Note that
228  * these functions can also be called by the child processes, since global
229  * variables are no longer used to pass on the required action to the parent.
230  *
231  * These should only be called from the parent process itself, since the
232  * parent process will use the shutdown_pending and restart_pending variables
233  * to determine whether to shutdown or restart. The child process should
234  * call signal_parent() directly to tell the parent to die -- this will
235  * cause neither of those variable to be set, which the parent will
236  * assume means something serious is wrong (which it will be, for the
237  * child to force an exit) and so do an exit anyway.
238  */
239
240 void ap_start_shutdown(void)
241 {
242     if (shutdown_pending == 1) {
243         /* Um, is this _probably_ not an error, if the user has
244          * tried to do a shutdown twice quickly, so we won't
245          * worry about reporting it.
246          */
247         return;
248     }
249     shutdown_pending = 1;
250 }
251
252 /* do a graceful restart if graceful == 1 */
253 void ap_start_restart(int graceful)
254 {
255
256     if (restart_pending == 1) {
257         /* Probably not an error - don't bother reporting it */
258         return;
259     }
260     restart_pending = 1;
261     is_graceful = graceful;
262 }
263
264 static void sig_term(int sig)
265 {
266     ap_start_shutdown();
267 }
268
269 static void restart(int sig)
270 {
271 #ifndef WIN32
272     ap_start_restart(sig == SIGWINCH);
273 #else
274     ap_start_restart(1);
275 #endif
276 }
277
278 static void set_signals(void)
279 {
280 #ifndef NO_USE_SIGACTION
281     struct sigaction sa;
282
283     sigemptyset(&sa.sa_mask);
284     sa.sa_flags = 0;
285
286     if (!one_process) {
287         sa.sa_handler = sig_coredump;
288 #if defined(SA_ONESHOT)
289         sa.sa_flags = SA_ONESHOT;
290 #elif defined(SA_RESETHAND)
291         sa.sa_flags = SA_RESETHAND;
292 #endif
293         if (sigaction(SIGSEGV, &sa, NULL) < 0)
294             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGSEGV)");
295 #ifdef SIGBUS
296         if (sigaction(SIGBUS, &sa, NULL) < 0)
297             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGBUS)");
298 #endif
299 #ifdef SIGABORT
300         if (sigaction(SIGABORT, &sa, NULL) < 0)
301             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGABORT)");
302 #endif
303 #ifdef SIGABRT
304         if (sigaction(SIGABRT, &sa, NULL) < 0)
305             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGABRT)");
306 #endif
307 #ifdef SIGILL
308         if (sigaction(SIGILL, &sa, NULL) < 0)
309             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGILL)");
310 #endif
311         sa.sa_flags = 0;
312     }
313     sa.sa_handler = sig_term;
314     if (sigaction(SIGTERM, &sa, NULL) < 0)
315         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGTERM)");
316 #ifdef SIGINT
317     if (sigaction(SIGINT, &sa, NULL) < 0)
318         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGINT)");
319 #endif
320 #ifdef SIGXCPU
321     sa.sa_handler = SIG_DFL;
322     if (sigaction(SIGXCPU, &sa, NULL) < 0)
323         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXCPU)");
324 #endif
325 #ifdef SIGXFSZ
326     sa.sa_handler = SIG_DFL;
327     if (sigaction(SIGXFSZ, &sa, NULL) < 0)
328         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGXFSZ)");
329 #endif
330 #ifdef SIGPIPE
331     sa.sa_handler = SIG_IGN;
332     if (sigaction(SIGPIPE, &sa, NULL) < 0)
333         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGPIPE)");
334 #endif
335
336     /* we want to ignore HUPs and WINCH while we're busy processing one */
337     sigaddset(&sa.sa_mask, SIGHUP);
338     sigaddset(&sa.sa_mask, SIGWINCH);
339     sa.sa_handler = restart;
340     if (sigaction(SIGHUP, &sa, NULL) < 0)
341         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGHUP)");
342     if (sigaction(SIGWINCH, &sa, NULL) < 0)
343         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "sigaction(SIGWINCH)");
344 #else
345     if (!one_process) {
346         ap_signal(SIGSEGV, sig_coredump);
347 #ifdef SIGBUS
348         ap_signal(SIGBUS, sig_coredump);
349 #endif /* SIGBUS */
350 #ifdef SIGABORT
351         ap_signal(SIGABORT, sig_coredump);
352 #endif /* SIGABORT */
353 #ifdef SIGABRT
354         ap_signal(SIGABRT, sig_coredump);
355 #endif /* SIGABRT */
356 #ifdef SIGILL
357         ap_signal(SIGILL, sig_coredump);
358 #endif /* SIGILL */
359 #ifdef SIGXCPU
360         ap_signal(SIGXCPU, SIG_DFL);
361 #endif /* SIGXCPU */
362 #ifdef SIGXFSZ
363         ap_signal(SIGXFSZ, SIG_DFL);
364 #endif /* SIGXFSZ */
365     }
366
367     ap_signal(SIGTERM, sig_term);
368 #ifdef SIGHUP
369     ap_signal(SIGHUP, restart);
370 #endif /* SIGHUP */
371 #ifdef SIGWINCH
372     ap_signal(SIGWINCH, restart);
373 #endif /* SIGWINCH */
374 #ifdef SIGPIPE
375     ap_signal(SIGPIPE, SIG_IGN);
376 #endif /* SIGPIPE */
377
378 #endif
379 }
380
381 static void process_child_status(ap_proc_t *pid, ap_wait_t status)
382 {
383     /* Child died... if it died due to a fatal error,
384         * we should simply bail out.
385         */
386     if ((WIFEXITED(status)) &&
387         WEXITSTATUS(status) == APEXIT_CHILDFATAL) {
388         ap_log_error(APLOG_MARK, APLOG_ALERT|APLOG_NOERRNO, 0, ap_server_conf,
389                         "Child %ld returned a Fatal error... \n"
390                         "Apache is exiting!",
391                         (long)pid->pid);
392         exit(APEXIT_CHILDFATAL);
393     }
394     if (WIFSIGNALED(status)) {
395         switch (WTERMSIG(status)) {
396         case SIGTERM:
397         case SIGHUP:
398         case SIGUSR1:
399         case SIGKILL:
400             break;
401         default:
402 #ifdef SYS_SIGLIST
403 #ifdef WCOREDUMP
404             if (WCOREDUMP(status)) {
405                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE,
406                              0, ap_server_conf,
407                              "child pid %ld exit signal %s (%d), "
408                              "possible coredump in %s",
409                              (long)pid->pid, (WTERMSIG(status) >= NumSIG) ? "" :
410                              SYS_SIGLIST[WTERMSIG(status)], WTERMSIG(status),
411                              ap_coredump_dir);
412             }
413             else {
414 #endif
415                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE,
416                              0, ap_server_conf,
417                              "child pid %ld exit signal %s (%d)", 
418                              (long)pid->pid,
419                              SYS_SIGLIST[WTERMSIG(status)], WTERMSIG(status));
420 #ifdef WCOREDUMP
421             }
422 #endif
423 #else
424             ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE,
425                          0, ap_server_conf,
426                          "child pid %ld exit signal %d",
427                          (long)pid->pid, WTERMSIG(status));
428 #endif
429         }
430     }
431 }
432
433 static int setup_listeners(server_rec *s)
434 {
435     ap_listen_rec *lr;
436     int num_listeners = 0;
437     if (ap_listen_open(s->process, s->port)) {
438        return 0;
439     }
440     for (lr = ap_listeners; lr; lr = lr->next) {
441         num_listeners++;
442     }
443     return num_listeners;
444 }
445
446 /*****************************************************************
447  * Here follows a long bunch of generic server bookkeeping stuff...
448  */
449
450 #if defined(TCP_NODELAY) && !defined(MPE) && !defined(TPF)
451 static void sock_disable_nagle(int s) 
452 {
453     /* The Nagle algorithm says that we should delay sending partial
454      * packets in hopes of getting more data.  We don't want to do
455      * this; we are not telnet.  There are bad interactions between
456      * persistent connections and Nagle's algorithm that have very severe
457      * performance penalties.  (Failing to disable Nagle is not much of a
458      * problem with simple HTTP.)
459      *
460      * In spite of these problems, failure here is not a shooting offense.
461      */
462     int just_say_no = 1;
463
464     if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (char *) &just_say_no,
465                    sizeof(int)) < 0) {
466         ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf,
467                     "setsockopt: (TCP_NODELAY)");
468     }
469 }
470
471 #else
472 #define sock_disable_nagle(s)   /* NOOP */
473 #endif
474
475 int ap_graceful_stop_signalled(void)
476 {
477     /* XXX - Does this really work? - Manoj */
478     return is_graceful;
479 }
480
481 /*****************************************************************
482  * Child process main loop.
483  */
484
485 static void process_socket(ap_pool_t *p, ap_socket_t *sock, int my_child_num, int my_thread_num)
486 {
487     BUFF *conn_io;
488     conn_rec *current_conn;
489     ap_iol *iol;
490     long conn_id = my_child_num * HARD_THREAD_LIMIT + my_thread_num;
491     int csd;
492
493     (void) ap_get_os_sock(&csd, sock);
494
495     if (csd >= FD_SETSIZE) {
496         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, 0, NULL,
497                      "new file descriptor %d is too large; you probably need "
498                      "to rebuild Apache with a larger FD_SETSIZE "
499                      "(currently %d)", 
500                      csd, FD_SETSIZE);
501         ap_close_socket(sock);
502         return;
503     }
504
505     sock_disable_nagle(csd);
506
507     iol = unix_attach_socket(sock);
508
509     (void) ap_update_child_status(my_child_num, my_thread_num,  
510                                   SERVER_BUSY_READ, (request_rec *) NULL);
511     conn_io = ap_bcreate(p, B_RDWR);
512     ap_bpush_iol(conn_io, iol);
513
514     current_conn = ap_new_apr_connection(p, ap_server_conf, conn_io, sock,
515                                          conn_id);
516
517     ap_process_connection(current_conn);
518     ap_lingering_close(current_conn);
519 }
520 /* Sets workers_may_exit if we received a character on the pipe_of_death */
521 static void check_pipe_of_death(void)
522 {
523     pthread_mutex_lock(&pipe_of_death_mutex);
524     if (!workers_may_exit) {
525         ap_status_t ret;
526         char pipe_read_char;
527         ap_ssize_t n = 1;
528
529         ret = ap_recv(listensocks[0], &pipe_read_char, &n);
530         if (ap_canonical_error(ret) == APR_EAGAIN) {
531             /* It lost the lottery. It must continue to suffer
532              * through a life of servitude. */
533         }
534         else {
535             /* It won the lottery (or something else is very
536              * wrong). Embrace death with open arms. */
537             workers_may_exit = 1;
538         }
539     }
540     pthread_mutex_unlock(&pipe_of_death_mutex);
541 }
542
543 static void * worker_thread(void * dummy)
544 {
545     proc_info * ti = dummy;
546     int process_slot = ti->pid;
547     int thread_slot = ti->tid;
548     ap_pool_t *tpool = ti->tpool;
549     ap_socket_t *csd = NULL;
550     ap_pool_t *ptrans;          /* Pool for per-transaction stuff */
551     ap_socket_t *sd = NULL;
552     int n;
553     int curr_pollfd, last_pollfd = 0;
554     ap_pollfd_t *pollset;
555     ap_status_t rv;
556
557     free(ti);
558
559     ap_create_pool(&ptrans, tpool);
560
561     pthread_mutex_lock(&worker_thread_count_mutex);
562     worker_thread_count++;
563     pthread_mutex_unlock(&worker_thread_count_mutex);
564
565     ap_setup_poll(&pollset, num_listensocks+1, tpool);
566     for(n=0 ; n <= num_listensocks ; ++n)
567         ap_add_poll_socket(pollset, listensocks[n], APR_POLLIN);
568
569     /* TODO: Switch to a system where threads reuse the results from earlier
570        poll calls - manoj */
571     while (!workers_may_exit) {
572         workers_may_exit |= (ap_max_requests_per_child != 0) && (requests_this_child <= 0);
573         if (workers_may_exit) break;
574
575         (void) ap_update_child_status(process_slot, thread_slot, SERVER_READY, 
576                                       (request_rec *) NULL);
577         pthread_mutex_lock(&thread_accept_mutex);
578         if (workers_may_exit) {
579             pthread_mutex_unlock(&thread_accept_mutex);
580             break;
581         }
582         if ((rv = SAFE_ACCEPT(ap_lock(process_accept_mutex)))
583             != APR_SUCCESS) {
584             ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
585                          "ap_lock failed. Attempting to shutdown "
586                          "process gracefully.");
587             workers_may_exit = 1;
588         }
589
590         while (!workers_may_exit) {
591             ap_status_t ret;
592             ap_int16_t event;
593
594             ret = ap_poll(pollset, &n, -1);
595             if (ret != APR_SUCCESS) {
596                 if (ap_canonical_error(ret) == APR_EINTR) {
597                     continue;
598                 }
599
600                 /* ap_poll() will only return errors in catastrophic
601                  * circumstances. Let's try exiting gracefully, for now. */
602                 ap_log_error(APLOG_MARK, APLOG_ERR, ret, (const server_rec *)
603                              ap_get_server_conf(), "ap_poll: (listen)");
604                 workers_may_exit = 1;
605             }
606
607             if (workers_may_exit) break;
608
609             ap_get_revents(&event, listensocks[0], pollset);
610             if (event & APR_POLLIN) {
611                 /* A process got a signal on the shutdown pipe. Check if we're
612                  * the lucky process to die. */
613                 check_pipe_of_death();
614                 continue;
615             }
616
617             if (num_listensocks == 1) {
618                 sd = ap_listeners->sd;
619                 goto got_fd;
620             }
621             else {
622                 /* find a listener */
623                 curr_pollfd = last_pollfd;
624                 do {
625                     curr_pollfd++;
626                     if (curr_pollfd > num_listensocks) {
627                         curr_pollfd = 1;
628                     }
629                     /* XXX: Should we check for POLLERR? */
630                     ap_get_revents(&event, listensocks[curr_pollfd], pollset);
631                     if (event & APR_POLLIN) {
632                         last_pollfd = curr_pollfd;
633                         sd=listensocks[curr_pollfd];
634                         goto got_fd;
635                     }
636                 } while (curr_pollfd != last_pollfd);
637             }
638         }
639     got_fd:
640         if (!workers_may_exit) {
641             if ((rv = ap_accept(&csd, sd, ptrans)) != APR_SUCCESS) {
642                 ap_log_error(APLOG_MARK, APLOG_ERR, rv, ap_server_conf, 
643                              "ap_accept");
644             }
645             if ((rv = SAFE_ACCEPT(ap_unlock(process_accept_mutex)))
646                 != APR_SUCCESS) {
647                 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
648                              "ap_unlock failed. Attempting to shutdown "
649                              "process gracefully.");
650                 workers_may_exit = 1;
651             }
652             pthread_mutex_unlock(&thread_accept_mutex);
653             process_socket(ptrans, csd, process_slot, thread_slot);
654             requests_this_child--;
655         }
656         else {
657             if ((rv = SAFE_ACCEPT(ap_unlock(process_accept_mutex)))
658                 != APR_SUCCESS) {
659                 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
660                              "ap_unlock failed. Attempting to shutdown "
661                              "process gracefully.");
662                 workers_may_exit = 1;
663             }
664             pthread_mutex_unlock(&thread_accept_mutex);
665             break;
666         }
667         ap_clear_pool(ptrans);
668     }
669
670     ap_destroy_pool(tpool);
671     ap_update_child_status(process_slot, thread_slot, SERVER_DEAD,
672         (request_rec *) NULL);
673     pthread_mutex_lock(&worker_thread_count_mutex);
674     worker_thread_count--;
675     if (worker_thread_count == 0) {
676         /* All the threads have exited, now finish the shutdown process
677          * by signalling the sigwait thread */
678         kill(ap_my_pid, SIGTERM);
679     }
680     pthread_mutex_unlock(&worker_thread_count_mutex);
681
682     return NULL;
683 }
684
685
686 static void child_main(int child_num_arg)
687 {
688     sigset_t sig_mask;
689     int signal_received;
690     pthread_t thread;
691     pthread_attr_t thread_attr;
692     int i;
693     int my_child_num = child_num_arg;
694     proc_info *my_info = NULL;
695     ap_listen_rec *lr;
696     ap_status_t rv;
697
698
699     ap_my_pid = getpid();
700     ap_create_pool(&pchild, pconf);
701
702     /*stuff to do before we switch id's, so we have permissions.*/
703     reopen_scoreboard(pchild);
704
705     rv = SAFE_ACCEPT(ap_child_init_lock(&process_accept_mutex, lock_fname,
706                      pchild));
707     if (rv != APR_SUCCESS) {
708         ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
709                      "Couldn't initialize cross-process lock in child");
710         clean_child_exit(APEXIT_CHILDFATAL);
711     }
712
713     if (unixd_setup_child()) {
714         clean_child_exit(APEXIT_CHILDFATAL);
715     }
716
717     ap_child_init_hook(pchild, ap_server_conf);
718
719     /*done with init critical section */
720
721     /* All threads should mask signals out, accoring to sigwait(2) man page */
722     sigfillset(&sig_mask);
723
724 #ifdef SIGPROCMASK_SETS_THREAD_MASK
725     if (sigprocmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
726         ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf, "sigprocmask");
727     }
728 #else
729     if (pthread_sigmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
730         ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf, "pthread_sigmask");
731     }
732 #endif
733
734     requests_this_child = ap_max_requests_per_child;
735     
736     /* Set up the pollfd array */
737     listensocks = ap_pcalloc(pchild,
738                             sizeof(*listensocks) * (num_listensocks + 1));
739 #if APR_FILES_AS_SOCKETS
740     ap_socket_from_file(&listensocks[0], pipe_of_death_in);
741 #endif
742     for (lr = ap_listeners, i = 1; i <= num_listensocks; lr = lr->next, ++i)
743         listensocks[i]=lr->sd;
744
745     /* Setup worker threads */
746
747     worker_thread_count = 0;
748     pthread_mutex_init(&worker_thread_count_mutex, NULL);
749     pthread_mutex_init(&pipe_of_death_mutex, NULL);
750     pthread_attr_init(&thread_attr);
751 #ifdef PTHREAD_ATTR_SETDETACHSTATE_ARG2_ADDR
752     {
753         int on = 1;
754
755         pthread_attr_setdetachstate(&thread_attr, &on);
756     }
757 #else
758     pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
759 #endif
760     for (i=0; i < ap_threads_per_child; i++) {
761
762         my_info = (proc_info *)malloc(sizeof(proc_info));
763         if (my_info == NULL) {
764             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
765                          "malloc: out of memory");
766             clean_child_exit(APEXIT_CHILDFATAL);
767         }
768         my_info->pid = my_child_num;
769         my_info->tid = i;
770         my_info->sd = 0;
771         ap_create_pool(&my_info->tpool, pchild);
772         
773         /* We are creating threads right now */
774         (void) ap_update_child_status(my_child_num, i, SERVER_STARTING, 
775                                       (request_rec *) NULL);
776 #ifndef NO_THREADS
777         if (pthread_create(&thread, &thread_attr, worker_thread, my_info)) {
778             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
779                          "pthread_create: unable to create worker thread");
780             /* In case system resources are maxxed out, we don't want
781                Apache running away with the CPU trying to fork over and
782                over and over again if we exit. */
783             sleep(10);
784             clean_child_exit(APEXIT_CHILDFATAL);
785         }
786 #else
787         worker_thread(my_info);
788         /* The SIGTERM shouldn't let us reach this point, but just in case... */
789         clean_child_exit(APEXIT_OK);
790 #endif
791
792         /* We let each thread update it's own scoreboard entry.  This is done
793          * because it let's us deal with tid better.
794          */
795     }
796
797     pthread_attr_destroy(&thread_attr);
798
799     /* This thread will be the one responsible for handling signals */
800     sigemptyset(&sig_mask);
801     sigaddset(&sig_mask, SIGTERM);
802     sigaddset(&sig_mask, SIGINT);
803     ap_sigwait(&sig_mask, &signal_received);
804     switch (signal_received) {
805         case SIGTERM:
806         case SIGINT:
807             just_die(signal_received);
808             break;
809         default:
810             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
811             "received impossible signal: %d", signal_received);
812             just_die(SIGTERM);
813     }
814 }
815
816 static int make_child(server_rec *s, int slot, time_t now) 
817 {
818     int pid;
819
820     if (slot + 1 > ap_max_daemons_limit) {
821         ap_max_daemons_limit = slot + 1;
822     }
823
824     if (one_process) {
825         set_signals();
826         ap_scoreboard_image->parent[slot].pid = getpid();
827         child_main(slot);
828     }
829
830     /* Tag this slot as occupied so that perform_idle_server_maintenance
831      * doesn't try to steal it */
832     (void) ap_update_child_status(slot, 0, SERVER_STARTING, (request_rec *) NULL);
833
834     if ((pid = fork()) == -1) {
835         ap_log_error(APLOG_MARK, APLOG_ERR, errno, s, "fork: Unable to fork new process");
836
837         /* fork didn't succeed. Fix the scoreboard or else
838          * it will say SERVER_STARTING forever and ever
839          */
840         (void) ap_update_child_status(slot, 0, SERVER_DEAD, (request_rec *) NULL);
841
842         /* In case system resources are maxxed out, we don't want
843            Apache running away with the CPU trying to fork over and
844            over and over again. */
845         sleep(10);
846
847         return -1;
848     }
849
850     if (!pid) {
851 #ifdef AIX_BIND_PROCESSOR
852       /* By default, AIX binds to a single processor.  This bit unbinds
853          children which will then bind to another CPU.
854       */
855 #include <sys/processor.h>
856         int status = bindprocessor(BINDPROCESS, (int)getpid(),
857                                PROCESSOR_CLASS_ANY);
858         if (status != OK)
859             ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, ap_server_conf,
860                          "processor unbind failed %d", status);
861 #endif
862
863         RAISE_SIGSTOP(MAKE_CHILD);
864
865         ap_signal(SIGTERM, just_die);
866         child_main(slot);
867
868         return 0;
869     }
870     /* else */
871     ap_scoreboard_image->parent[slot].pid = pid;
872     return 0;
873 }
874
875 /* start up a bunch of children */
876 static void startup_children(int number_to_start)
877 {
878     int i;
879
880     for (i = 0; number_to_start && i < ap_daemons_limit; ++i) {
881         if (ap_scoreboard_image->parent[i].pid != 0) {
882             continue;
883         }
884         if (make_child(ap_server_conf, i, 0) < 0) {
885             break;
886         }
887         --number_to_start;
888     }
889 }
890
891
892 /*
893  * idle_spawn_rate is the number of children that will be spawned on the
894  * next maintenance cycle if there aren't enough idle servers.  It is
895  * doubled up to MAX_SPAWN_RATE, and reset only when a cycle goes by
896  * without the need to spawn.
897  */
898 static int idle_spawn_rate = 1;
899 #ifndef MAX_SPAWN_RATE
900 #define MAX_SPAWN_RATE  (32)
901 #endif
902 static int hold_off_on_exponential_spawning;
903
904 static void perform_idle_server_maintenance(void)
905 {
906     int i, j;
907     int idle_thread_count;
908     thread_score *ss;
909     time_t now = 0;
910     int free_length;
911     int free_slots[MAX_SPAWN_RATE];
912     int last_non_dead;
913     int total_non_dead;
914     int one = 1;
915     ap_status_t rv;
916
917     /* initialize the free_list */
918     free_length = 0;
919
920     idle_thread_count = 0;
921     last_non_dead = -1;
922     total_non_dead = 0;
923
924     ap_sync_scoreboard_image();
925     for (i = 0; i < ap_daemons_limit; ++i) {
926         /* Initialization to satisfy the compiler. It doesn't know
927          * that ap_threads_per_child is always > 0 */
928         int status = SERVER_DEAD;
929         int any_dying_threads = 0;
930         int all_dead_threads = 1;
931         int idle_thread_addition = 0;
932
933         if (i >= ap_max_daemons_limit && free_length == idle_spawn_rate)
934             break;
935         for (j = 0; j < ap_threads_per_child; j++) {
936             ss = &ap_scoreboard_image->servers[i][j];
937             status = ss->status;
938
939             any_dying_threads = any_dying_threads || (status == SERVER_DEAD)
940                                     || (status == SERVER_GRACEFUL);
941             all_dead_threads = all_dead_threads && (status == SERVER_DEAD);
942
943             /* We consider a starting server as idle because we started it
944              * at least a cycle ago, and if it still hasn't finished starting
945              * then we're just going to swamp things worse by forking more.
946              * So we hopefully won't need to fork more if we count it.
947              * This depends on the ordering of SERVER_READY and SERVER_STARTING.
948              */
949             if (status <= SERVER_READY) {
950                 ++idle_thread_addition;
951             }
952         }
953         if (all_dead_threads && free_length < idle_spawn_rate) {
954             free_slots[free_length] = i;
955             ++free_length;
956         }
957         if (!all_dead_threads) {
958             last_non_dead = i;
959         }
960         if (!any_dying_threads) {
961             ++total_non_dead;
962             idle_thread_count += idle_thread_addition;
963         }
964     }
965     ap_max_daemons_limit = last_non_dead + 1;
966
967     if (idle_thread_count > max_spare_threads) {
968         /* Kill off one child */
969         char char_of_death = '!';
970         if ((rv = ap_write(pipe_of_death_out, &char_of_death, &one)) != APR_SUCCESS) {
971             ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, "write pipe_of_death");
972         }
973         idle_spawn_rate = 1;
974     }
975     else if (idle_thread_count < min_spare_threads) {
976         /* terminate the free list */
977         if (free_length == 0) {
978             /* only report this condition once */
979             static int reported = 0;
980             
981             if (!reported) {
982                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, ap_server_conf,
983                              "server reached MaxClients setting, consider"
984                              " raising the MaxClients setting");
985                 reported = 1;
986             }
987             idle_spawn_rate = 1;
988         }
989         else {
990             
991             if (idle_spawn_rate >= 8) {
992                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0, ap_server_conf,
993                              "server seems busy, (you may need "
994                              "to increase StartServers, ThreadsPerChild "
995                              "or Min/MaxSparetThreads), "
996                              "spawning %d children, there are around %d idle "
997                              "threads, and %d total children", idle_spawn_rate,
998                              idle_thread_count, total_non_dead);
999             }
1000             for (i = 0; i < free_length; ++i) {
1001                 make_child(ap_server_conf, free_slots[i], now);
1002             }
1003             /* the next time around we want to spawn twice as many if this
1004              * wasn't good enough, but not if we've just done a graceful
1005              */
1006             if (hold_off_on_exponential_spawning) {
1007                 --hold_off_on_exponential_spawning;
1008             }
1009             else if (idle_spawn_rate < MAX_SPAWN_RATE) {
1010                 idle_spawn_rate *= 2;
1011             }
1012         }
1013     }
1014     else {
1015       idle_spawn_rate = 1;
1016     }
1017 }
1018
1019 static void server_main_loop(int remaining_children_to_start)
1020 {
1021     int child_slot;
1022     ap_wait_t status;
1023     ap_proc_t pid;
1024     int i;
1025
1026     while (!restart_pending && !shutdown_pending) {
1027         ap_wait_or_timeout(&status, &pid, pconf);
1028         
1029         if (pid.pid != -1) {
1030             process_child_status(&pid, status);
1031             /* non-fatal death... note that it's gone in the scoreboard. */
1032             child_slot = find_child_by_pid(&pid);
1033             if (child_slot >= 0) {
1034                 ap_mpmt_pthread_force_reset_connection_status(child_slot);
1035                 for (i = 0; i < ap_threads_per_child; i++)
1036                     ap_update_child_status(child_slot, i, SERVER_DEAD, (request_rec *) NULL);
1037                 
1038                 if (remaining_children_to_start
1039                     && child_slot < ap_daemons_limit) {
1040                     /* we're still doing a 1-for-1 replacement of dead
1041                      * children with new children
1042                      */
1043                     make_child(ap_server_conf, child_slot, time(NULL));
1044                     --remaining_children_to_start;
1045                 }
1046 #ifdef APR_HAS_OTHER_CHILD
1047             }
1048             else if (ap_reap_other_child(&pid, status) == 0) {
1049                 /* handled */
1050 #endif
1051             }
1052             else if (is_graceful) {
1053                 /* Great, we've probably just lost a slot in the
1054                  * scoreboard.  Somehow we don't know about this child.
1055                  */
1056                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, 0,
1057                              ap_server_conf,
1058                              "long lost child came home! (pid %ld)",
1059                              (long)pid.pid);
1060             }
1061             /* Don't perform idle maintenance when a child dies,
1062              * only do it when there's a timeout.  Remember only a
1063              * finite number of children can die, and it's pretty
1064              * pathological for a lot to die suddenly.
1065              */
1066             continue;
1067         }
1068         else if (remaining_children_to_start) {
1069             /* we hit a 1 second timeout in which none of the previous
1070              * generation of children needed to be reaped... so assume
1071              * they're all done, and pick up the slack if any is left.
1072              */
1073             startup_children(remaining_children_to_start);
1074             remaining_children_to_start = 0;
1075             /* In any event we really shouldn't do the code below because
1076              * few of the servers we just started are in the IDLE state
1077              * yet, so we'd mistakenly create an extra server.
1078              */
1079             continue;
1080         }
1081
1082         perform_idle_server_maintenance();
1083     }
1084 }
1085
1086 int ap_mpm_run(ap_pool_t *_pconf, ap_pool_t *plog, server_rec *s)
1087 {
1088     int remaining_children_to_start;
1089     ap_status_t rv;
1090     int one = 1;
1091
1092     pconf = _pconf;
1093     ap_server_conf = s;
1094     rv = ap_create_pipe(&pipe_of_death_in, &pipe_of_death_out, pconf);
1095     if (rv != APR_SUCCESS) {
1096         ap_log_error(APLOG_MARK, APLOG_ERR, rv,
1097                      (const server_rec*) ap_server_conf,
1098                      "ap_create_pipe (pipe_of_death)");
1099         exit(1);
1100     }
1101
1102     if ((rv = ap_set_pipe_timeout(pipe_of_death_in, 0)) != APR_SUCCESS) {
1103         ap_log_error(APLOG_MARK, APLOG_ERR, rv,
1104                      (const server_rec*) ap_server_conf,
1105                      "ap_set_pipe_timeout (pipe_of_death)");
1106         exit(1);
1107     }
1108     ap_server_conf = s;
1109     if ((num_listensocks = setup_listeners(ap_server_conf)) < 1) {
1110         /* XXX: hey, what's the right way for the mpm to indicate a fatal error? */
1111         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ALERT, 0, s,
1112             "no listening sockets available, shutting down");
1113         return 1;
1114     }
1115     ap_log_pid(pconf, ap_pid_fname);
1116
1117     /* Initialize cross-process accept lock */
1118     lock_fname = ap_psprintf(_pconf, "%s.%lu",
1119                              ap_server_root_relative(_pconf, lock_fname),
1120                              ap_my_pid);
1121     rv = ap_create_lock(&process_accept_mutex, APR_MUTEX, APR_CROSS_PROCESS,
1122                    lock_fname, _pconf);
1123     if (rv != APR_SUCCESS) {
1124         ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s,
1125                      "Couldn't create cross-process lock");
1126         return 1;
1127     }
1128
1129
1130     if (!is_graceful) {
1131         reinit_scoreboard(pconf);
1132     }
1133
1134     set_signals();
1135     /* Don't thrash... */
1136     if (max_spare_threads < min_spare_threads + ap_threads_per_child)
1137         max_spare_threads = min_spare_threads + ap_threads_per_child;
1138
1139     /* If we're doing a graceful_restart then we're going to see a lot
1140      * of children exiting immediately when we get into the main loop
1141      * below (because we just sent them SIGWINCH).  This happens pretty
1142      * rapidly... and for each one that exits we'll start a new one until
1143      * we reach at least daemons_min_free.  But we may be permitted to
1144      * start more than that, so we'll just keep track of how many we're
1145      * supposed to start up without the 1 second penalty between each fork.
1146      */
1147     remaining_children_to_start = ap_daemons_to_start;
1148     if (remaining_children_to_start > ap_daemons_limit) {
1149         remaining_children_to_start = ap_daemons_limit;
1150     }
1151     if (!is_graceful) {
1152         startup_children(remaining_children_to_start);
1153         remaining_children_to_start = 0;
1154     }
1155     else {
1156         /* give the system some time to recover before kicking into
1157             * exponential mode */
1158         hold_off_on_exponential_spawning = 10;
1159     }
1160
1161     ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1162                 "%s configured -- resuming normal operations",
1163                 ap_get_server_version());
1164     ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0, ap_server_conf,
1165                 "Server built: %s", ap_get_server_built());
1166     restart_pending = shutdown_pending = 0;
1167
1168     server_main_loop(remaining_children_to_start);
1169
1170     if (shutdown_pending) {
1171         /* Time to gracefully shut down:
1172          * Kill child processes, tell them to call child_exit, etc...
1173          */
1174         if (unixd_killpg(getpgrp(), SIGTERM) < 0) {
1175             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "killpg SIGTERM");
1176         }
1177         ap_reclaim_child_processes(1);          /* Start with SIGTERM */
1178     
1179         /* cleanup pid file on normal shutdown */
1180         {
1181             const char *pidfile = NULL;
1182             pidfile = ap_server_root_relative (pconf, ap_pid_fname);
1183             if ( pidfile != NULL && unlink(pidfile) == 0)
1184                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0,
1185                          ap_server_conf,
1186                          "removed PID file %s (pid=%ld)",
1187                          pidfile, (long)getpid());
1188         }
1189     
1190         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1191             "caught SIGTERM, shutting down");
1192     
1193         return 1;
1194     }
1195
1196     /* we've been told to restart */
1197     ap_signal(SIGHUP, SIG_IGN);
1198
1199     if (one_process) {
1200         /* not worth thinking about */
1201         return 1;
1202     }
1203
1204     /* advance to the next generation */
1205     /* XXX: we really need to make sure this new generation number isn't in
1206      * use by any of the children.
1207      */
1208     ++ap_my_generation;
1209     ap_scoreboard_image->global.running_generation = ap_my_generation;
1210     update_scoreboard_global();
1211
1212     if (is_graceful) {
1213         int i, j;
1214         char char_of_death = '!';
1215
1216         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1217                     "SIGWINCH received.  Doing graceful restart");
1218
1219         /* give the children the signal to die */
1220         for (i = 0; i < ap_daemons_limit;) {
1221             if ((rv = ap_write(pipe_of_death_in, &char_of_death, &one)) != APR_SUCCESS) {
1222                 if (ap_canonical_error(rv) == APR_EINTR) continue;
1223                 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, "write pipe_of_death");
1224             }
1225             i++;
1226         }
1227
1228         /* This is mostly for debugging... so that we know what is still
1229          * gracefully dealing with existing request.
1230          */
1231         
1232         for (i = 0; i < ap_daemons_limit; ++i) {
1233             for (j = 0; j < ap_threads_per_child; j++) { 
1234                 if (ap_scoreboard_image->servers[i][j].status != SERVER_DEAD) {
1235                     ap_scoreboard_image->servers[i][j].status = SERVER_GRACEFUL;
1236                 }
1237             } 
1238         }
1239     }
1240     else {
1241       /* Kill 'em all.  Since the child acts the same on the parents SIGTERM 
1242        * and a SIGHUP, we may as well use the same signal, because some user
1243        * pthreads are stealing signals from us left and right.
1244        */
1245         if (unixd_killpg(getpgrp(), SIGTERM) < 0) {
1246             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "killpg SIGTERM");
1247         }
1248         ap_reclaim_child_processes(1);          /* Start with SIGTERM */
1249         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1250                     "SIGHUP received.  Attempting to restart");
1251     }
1252     if (!is_graceful) {
1253         ap_restart_time = time(NULL); 
1254     }
1255     return 0;
1256 }
1257
1258 static void mpmt_pthread_pre_config(ap_pool_t *pconf, ap_pool_t *plog, ap_pool_t *ptemp)
1259 {
1260     static int restart_num = 0;
1261
1262     one_process = !!getenv("ONE_PROCESS");
1263
1264     /* sigh, want this only the second time around */
1265     if (restart_num++ == 1) {
1266         is_graceful = 0;
1267
1268         if (!one_process) {
1269             ap_detach();
1270         }
1271         ap_my_pid = getpid();
1272     }
1273
1274     unixd_pre_config();
1275     ap_listen_pre_config();
1276     ap_daemons_to_start = DEFAULT_START_DAEMON;
1277     min_spare_threads = DEFAULT_MIN_FREE_DAEMON * DEFAULT_THREADS_PER_CHILD;
1278     max_spare_threads = DEFAULT_MAX_FREE_DAEMON * DEFAULT_THREADS_PER_CHILD;
1279     ap_daemons_limit = HARD_SERVER_LIMIT;
1280     ap_threads_per_child = DEFAULT_THREADS_PER_CHILD;
1281     ap_pid_fname = DEFAULT_PIDLOG;
1282     ap_scoreboard_fname = DEFAULT_SCOREBOARD;
1283     lock_fname = DEFAULT_LOCKFILE;
1284     ap_max_requests_per_child = DEFAULT_MAX_REQUESTS_PER_CHILD;
1285     ap_extended_status = 0;
1286
1287     ap_cpystrn(ap_coredump_dir, ap_server_root, sizeof(ap_coredump_dir));
1288 }
1289
1290 static void mpmt_pthread_hooks(void)
1291 {
1292     INIT_SIGLIST()
1293     one_process = 0;
1294
1295     ap_hook_pre_config(mpmt_pthread_pre_config, NULL, NULL, AP_HOOK_MIDDLE);
1296 }
1297
1298
1299 static const char *set_pidfile(cmd_parms *cmd, void *dummy, const char *arg) 
1300 {
1301     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1302     if (err != NULL) {
1303         return err;
1304     }
1305
1306     if (cmd->server->is_virtual) {
1307         return "PidFile directive not allowed in <VirtualHost>";
1308     }
1309     ap_pid_fname = arg;
1310     return NULL;
1311 }
1312
1313 static const char *set_scoreboard(cmd_parms *cmd, void *dummy,
1314                                   const char *arg) 
1315 {
1316     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1317     if (err != NULL) {
1318         return err;
1319     }
1320
1321     ap_scoreboard_fname = arg;
1322     return NULL;
1323 }
1324
1325 static const char *set_lockfile(cmd_parms *cmd, void *dummy, const char *arg) 
1326 {
1327     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1328     if (err != NULL) {
1329         return err;
1330     }
1331
1332     lock_fname = arg;
1333     return NULL;
1334 }
1335
1336 static const char *set_daemons_to_start(cmd_parms *cmd, void *dummy,
1337                                         const char *arg) 
1338 {
1339     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1340     if (err != NULL) {
1341         return err;
1342     }
1343
1344     ap_daemons_to_start = atoi(arg);
1345     return NULL;
1346 }
1347
1348 static const char *set_min_spare_threads(cmd_parms *cmd, void *dummy,
1349                                          const char *arg)
1350 {
1351     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1352     if (err != NULL) {
1353         return err;
1354     }
1355
1356     min_spare_threads = atoi(arg);
1357     if (min_spare_threads <= 0) {
1358        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1359                     "WARNING: detected MinSpareThreads set to non-positive.");
1360        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1361                     "Resetting to 1 to avoid almost certain Apache failure.");
1362        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1363                     "Please read the documentation.");
1364        min_spare_threads = 1;
1365     }
1366        
1367     return NULL;
1368 }
1369
1370 static const char *set_max_spare_threads(cmd_parms *cmd, void *dummy,
1371                                          const char *arg)
1372 {
1373     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1374     if (err != NULL) {
1375         return err;
1376     }
1377
1378     max_spare_threads = atoi(arg);
1379     return NULL;
1380 }
1381
1382 static const char *set_server_limit (cmd_parms *cmd, void *dummy,
1383                                      const char *arg) 
1384 {
1385     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1386     if (err != NULL) {
1387         return err;
1388     }
1389
1390     ap_daemons_limit = atoi(arg);
1391     if (ap_daemons_limit > HARD_SERVER_LIMIT) {
1392        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1393                     "WARNING: MaxClients of %d exceeds compile time limit "
1394                     "of %d servers,", ap_daemons_limit, HARD_SERVER_LIMIT);
1395        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1396                     " lowering MaxClients to %d.  To increase, please "
1397                     "see the", HARD_SERVER_LIMIT);
1398        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1399                     " HARD_SERVER_LIMIT define in %s.",
1400                     AP_MPM_HARD_LIMITS_FILE);
1401        ap_daemons_limit = HARD_SERVER_LIMIT;
1402     } 
1403     else if (ap_daemons_limit < 1) {
1404         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "WARNING: Require MaxClients > 0, setting to 1\n");
1405         ap_daemons_limit = 1;
1406     }
1407     return NULL;
1408 }
1409
1410 static const char *set_threads_per_child (cmd_parms *cmd, void *dummy,
1411                                           const char *arg) 
1412 {
1413     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1414     if (err != NULL) {
1415         return err;
1416     }
1417
1418     ap_threads_per_child = atoi(arg);
1419     if (ap_threads_per_child > HARD_THREAD_LIMIT) {
1420         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1421                      "WARNING: ThreadsPerChild of %d exceeds compile time"
1422                      "limit of %d threads,", ap_threads_per_child,
1423                      HARD_THREAD_LIMIT);
1424         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1425                      " lowering ThreadsPerChild to %d. To increase, please"
1426                      " see the", HARD_THREAD_LIMIT);
1427         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1428                      " HARD_THREAD_LIMIT define in %s.",
1429                      AP_MPM_HARD_LIMITS_FILE);
1430     }
1431     else if (ap_threads_per_child < 1) {
1432         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1433                      "WARNING: Require ThreadsPerChild > 0, setting to 1");
1434         ap_threads_per_child = 1;
1435     }
1436     return NULL;
1437 }
1438
1439 static const char *set_max_requests(cmd_parms *cmd, void *dummy,
1440                                     const char *arg) 
1441 {
1442     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1443     if (err != NULL) {
1444         return err;
1445     }
1446
1447     ap_max_requests_per_child = atoi(arg);
1448
1449     return NULL;
1450 }
1451
1452 static const char *set_coredumpdir (cmd_parms *cmd, void *dummy,
1453                                     const char *arg) 
1454 {
1455     ap_finfo_t finfo;
1456     const char *fname;
1457     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1458     if (err != NULL) {
1459         return err;
1460     }
1461
1462     fname = ap_server_root_relative(cmd->pool, arg);
1463     if ((ap_stat(&finfo, fname, cmd->pool) != APR_SUCCESS) || 
1464         (finfo.filetype != APR_DIR)) {
1465         return ap_pstrcat(cmd->pool, "CoreDumpDirectory ", fname, 
1466                           " does not exist or is not a directory", NULL);
1467     }
1468     ap_cpystrn(ap_coredump_dir, fname, sizeof(ap_coredump_dir));
1469     return NULL;
1470 }
1471
1472 static const command_rec mpmt_pthread_cmds[] = {
1473 UNIX_DAEMON_COMMANDS
1474 LISTEN_COMMANDS
1475 AP_INIT_TAKE1("PidFile", set_pidfile, NULL, RSRC_CONF,
1476     "A file for logging the server process ID"),
1477 AP_INIT_TAKE1("ScoreBoardFile", set_scoreboard, NULL, RSRC_CONF,
1478     "A file for Apache to maintain runtime process management information"),
1479 AP_INIT_TAKE1("LockFile", set_lockfile, NULL, RSRC_CONF,
1480     "The lockfile used when Apache needs to lock the accept() call"),
1481 AP_INIT_TAKE1("StartServers", set_daemons_to_start, NULL, RSRC_CONF,
1482   "Number of child processes launched at server startup"),
1483 AP_INIT_TAKE1("MinSpareThreads", set_min_spare_threads, NULL, RSRC_CONF,
1484   "Minimum number of idle children, to handle request spikes"),
1485 AP_INIT_TAKE1("MaxSpareThreads", set_max_spare_threads, NULL, RSRC_CONF,
1486   "Maximum number of idle children"),
1487 AP_INIT_TAKE1("MaxClients", set_server_limit, NULL, RSRC_CONF,
1488   "Maximum number of children alive at the same time"),
1489 AP_INIT_TAKE1("ThreadsPerChild", set_threads_per_child, NULL, RSRC_CONF,
1490   "Number of threads each child creates"),
1491 AP_INIT_TAKE1("MaxRequestsPerChild", set_max_requests, NULL, RSRC_CONF,
1492   "Maximum number of requests a particular child serves before dying."),
1493 AP_INIT_TAKE1("CoreDumpDirectory", set_coredumpdir, NULL, RSRC_CONF,
1494   "The location of the directory Apache changes to before dumping core"),
1495 { NULL }
1496 };
1497
1498 module MODULE_VAR_EXPORT mpm_mpmt_pthread_module = {
1499     MPM20_MODULE_STUFF,
1500     NULL,                       /* hook to run before apache parses args */
1501     NULL,                       /* create per-directory config structure */
1502     NULL,                       /* merge per-directory config structures */
1503     NULL,                       /* create per-server config structure */
1504     NULL,                       /* merge per-server config structures */
1505     mpmt_pthread_cmds,          /* command ap_table_t */
1506     NULL,                       /* handlers */
1507     mpmt_pthread_hooks          /* register_hooks */
1508 };
1509