]> granicus.if.org Git - apache/blob - server/mpm/mpmt_pthread/mpmt_pthread.c
Fix a couple of problems associated with recognizing when file
[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                          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                 /* poll() will only return errors in catastrophic
601                  * circumstances. Let's try exiting gracefully, for now. */
602                 ap_log_error(APLOG_MARK, APLOG_ERR, errno, (const server_rec *)
603                              ap_get_server_conf(), "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             ap_accept(&csd, sd, ptrans);
642             if ((rv = SAFE_ACCEPT(ap_unlock(process_accept_mutex)))
643                 != APR_SUCCESS) {
644                 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
645                              "ap_unlock failed. Attempting to shutdown "
646                              "process gracefully.");
647                 workers_may_exit = 1;
648             }
649             pthread_mutex_unlock(&thread_accept_mutex);
650             process_socket(ptrans, csd, process_slot, thread_slot);
651             requests_this_child--;
652         }
653         else {
654             if ((rv = SAFE_ACCEPT(ap_unlock(process_accept_mutex)))
655                 != APR_SUCCESS) {
656                 ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
657                              "ap_unlock failed. Attempting to shutdown "
658                              "process gracefully.");
659                 workers_may_exit = 1;
660             }
661             pthread_mutex_unlock(&thread_accept_mutex);
662             break;
663         }
664         ap_clear_pool(ptrans);
665     }
666
667     ap_destroy_pool(tpool);
668     ap_update_child_status(process_slot, thread_slot, SERVER_DEAD,
669         (request_rec *) NULL);
670     pthread_mutex_lock(&worker_thread_count_mutex);
671     worker_thread_count--;
672     if (worker_thread_count == 0) {
673         /* All the threads have exited, now finish the shutdown process
674          * by signalling the sigwait thread */
675         kill(ap_my_pid, SIGTERM);
676     }
677     pthread_mutex_unlock(&worker_thread_count_mutex);
678
679     return NULL;
680 }
681
682
683 static void child_main(int child_num_arg)
684 {
685     sigset_t sig_mask;
686     int signal_received;
687     pthread_t thread;
688     pthread_attr_t thread_attr;
689     int i;
690     int my_child_num = child_num_arg;
691     proc_info *my_info = NULL;
692     ap_listen_rec *lr;
693     ap_status_t rv;
694
695
696     ap_my_pid = getpid();
697     ap_create_pool(&pchild, pconf);
698
699     /*stuff to do before we switch id's, so we have permissions.*/
700     reopen_scoreboard(pchild);
701
702     rv = SAFE_ACCEPT(ap_child_init_lock(&process_accept_mutex, lock_fname,
703                      pchild));
704     if (rv != APR_SUCCESS) {
705         ap_log_error(APLOG_MARK, APLOG_EMERG, rv, ap_server_conf,
706                      "Couldn't initialize cross-process lock in child");
707         clean_child_exit(APEXIT_CHILDFATAL);
708     }
709
710     if (unixd_setup_child()) {
711         clean_child_exit(APEXIT_CHILDFATAL);
712     }
713
714     ap_child_init_hook(pchild, ap_server_conf);
715
716     /*done with init critical section */
717
718     /* All threads should mask signals out, accoring to sigwait(2) man page */
719     sigfillset(&sig_mask);
720
721 #ifdef SIGPROCMASK_SETS_THREAD_MASK
722     if (sigprocmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
723         ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf, "sigprocmask");
724     }
725 #else
726     if (pthread_sigmask(SIG_SETMASK, &sig_mask, NULL) != 0) {
727         ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf, "pthread_sigmask");
728     }
729 #endif
730
731     requests_this_child = ap_max_requests_per_child;
732     
733     /* Set up the pollfd array */
734     listensocks = ap_pcalloc(pchild,
735                             sizeof(*listensocks) * (num_listensocks + 1));
736 #if APR_FILES_AS_SOCKETS
737     ap_socket_from_file(&listensocks[0], pipe_of_death_in);
738 #endif
739     for (lr = ap_listeners, i = 1; i <= num_listensocks; lr = lr->next, ++i)
740         listensocks[i]=lr->sd;
741
742     /* Setup worker threads */
743
744     worker_thread_count = 0;
745     pthread_mutex_init(&worker_thread_count_mutex, NULL);
746     pthread_mutex_init(&pipe_of_death_mutex, NULL);
747     pthread_attr_init(&thread_attr);
748 #ifdef PTHREAD_ATTR_SETDETACHSTATE_ARG2_ADDR
749     {
750         int on = 1;
751
752         pthread_attr_setdetachstate(&thread_attr, &on);
753     }
754 #else
755     pthread_attr_setdetachstate(&thread_attr, PTHREAD_CREATE_DETACHED);
756 #endif
757     for (i=0; i < ap_threads_per_child; i++) {
758
759         my_info = (proc_info *)malloc(sizeof(proc_info));
760         if (my_info == NULL) {
761             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
762                          "malloc: out of memory");
763             clean_child_exit(APEXIT_CHILDFATAL);
764         }
765         my_info->pid = my_child_num;
766         my_info->tid = i;
767         my_info->sd = 0;
768         ap_create_pool(&my_info->tpool, pchild);
769         
770         /* We are creating threads right now */
771         (void) ap_update_child_status(my_child_num, i, SERVER_STARTING, 
772                                       (request_rec *) NULL);
773 #ifndef NO_THREADS
774         if (pthread_create(&thread, &thread_attr, worker_thread, my_info)) {
775             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
776                          "pthread_create: unable to create worker thread");
777             /* In case system resources are maxxed out, we don't want
778                Apache running away with the CPU trying to fork over and
779                over and over again if we exit. */
780             sleep(10);
781             clean_child_exit(APEXIT_CHILDFATAL);
782         }
783 #else
784         worker_thread(my_info);
785         /* The SIGTERM shouldn't let us reach this point, but just in case... */
786         clean_child_exit(APEXIT_OK);
787 #endif
788
789         /* We let each thread update it's own scoreboard entry.  This is done
790          * because it let's us deal with tid better.
791          */
792     }
793
794     pthread_attr_destroy(&thread_attr);
795
796     /* This thread will be the one responsible for handling signals */
797     sigemptyset(&sig_mask);
798     sigaddset(&sig_mask, SIGTERM);
799     sigaddset(&sig_mask, SIGINT);
800     ap_sigwait(&sig_mask, &signal_received);
801     switch (signal_received) {
802         case SIGTERM:
803         case SIGINT:
804             just_die(signal_received);
805             break;
806         default:
807             ap_log_error(APLOG_MARK, APLOG_ALERT, errno, ap_server_conf,
808             "received impossible signal: %d", signal_received);
809             just_die(SIGTERM);
810     }
811 }
812
813 static int make_child(server_rec *s, int slot, time_t now) 
814 {
815     int pid;
816
817     if (slot + 1 > ap_max_daemons_limit) {
818         ap_max_daemons_limit = slot + 1;
819     }
820
821     if (one_process) {
822         set_signals();
823         ap_scoreboard_image->parent[slot].pid = getpid();
824         child_main(slot);
825     }
826
827     /* Tag this slot as occupied so that perform_idle_server_maintenance
828      * doesn't try to steal it */
829     (void) ap_update_child_status(slot, 0, SERVER_STARTING, (request_rec *) NULL);
830
831     if ((pid = fork()) == -1) {
832         ap_log_error(APLOG_MARK, APLOG_ERR, errno, s, "fork: Unable to fork new process");
833
834         /* fork didn't succeed. Fix the scoreboard or else
835          * it will say SERVER_STARTING forever and ever
836          */
837         (void) ap_update_child_status(slot, 0, SERVER_DEAD, (request_rec *) NULL);
838
839         /* In case system resources are maxxed out, we don't want
840            Apache running away with the CPU trying to fork over and
841            over and over again. */
842         sleep(10);
843
844         return -1;
845     }
846
847     if (!pid) {
848 #ifdef AIX_BIND_PROCESSOR
849       /* By default, AIX binds to a single processor.  This bit unbinds
850          children which will then bind to another CPU.
851       */
852 #include <sys/processor.h>
853         int status = bindprocessor(BINDPROCESS, (int)getpid(),
854                                PROCESSOR_CLASS_ANY);
855         if (status != OK)
856             ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, ap_server_conf,
857                          "processor unbind failed %d", status);
858 #endif
859
860         RAISE_SIGSTOP(MAKE_CHILD);
861
862         ap_signal(SIGTERM, just_die);
863         child_main(slot);
864
865         return 0;
866     }
867     /* else */
868     ap_scoreboard_image->parent[slot].pid = pid;
869     return 0;
870 }
871
872 /* start up a bunch of children */
873 static void startup_children(int number_to_start)
874 {
875     int i;
876
877     for (i = 0; number_to_start && i < ap_daemons_limit; ++i) {
878         if (ap_scoreboard_image->parent[i].pid != 0) {
879             continue;
880         }
881         if (make_child(ap_server_conf, i, 0) < 0) {
882             break;
883         }
884         --number_to_start;
885     }
886 }
887
888
889 /*
890  * idle_spawn_rate is the number of children that will be spawned on the
891  * next maintenance cycle if there aren't enough idle servers.  It is
892  * doubled up to MAX_SPAWN_RATE, and reset only when a cycle goes by
893  * without the need to spawn.
894  */
895 static int idle_spawn_rate = 1;
896 #ifndef MAX_SPAWN_RATE
897 #define MAX_SPAWN_RATE  (32)
898 #endif
899 static int hold_off_on_exponential_spawning;
900
901 static void perform_idle_server_maintenance(void)
902 {
903     int i, j;
904     int idle_thread_count;
905     thread_score *ss;
906     time_t now = 0;
907     int free_length;
908     int free_slots[MAX_SPAWN_RATE];
909     int last_non_dead;
910     int total_non_dead;
911     int one = 1;
912     ap_status_t rv;
913
914     /* initialize the free_list */
915     free_length = 0;
916
917     idle_thread_count = 0;
918     last_non_dead = -1;
919     total_non_dead = 0;
920
921     ap_sync_scoreboard_image();
922     for (i = 0; i < ap_daemons_limit; ++i) {
923         /* Initialization to satisfy the compiler. It doesn't know
924          * that ap_threads_per_child is always > 0 */
925         int status = SERVER_DEAD;
926         int any_dying_threads = 0;
927         int all_dead_threads = 1;
928         int idle_thread_addition = 0;
929
930         if (i >= ap_max_daemons_limit && free_length == idle_spawn_rate)
931             break;
932         for (j = 0; j < ap_threads_per_child; j++) {
933             ss = &ap_scoreboard_image->servers[i][j];
934             status = ss->status;
935
936             any_dying_threads = any_dying_threads || (status == SERVER_DEAD)
937                                     || (status == SERVER_GRACEFUL);
938             all_dead_threads = all_dead_threads && (status == SERVER_DEAD);
939
940             /* We consider a starting server as idle because we started it
941              * at least a cycle ago, and if it still hasn't finished starting
942              * then we're just going to swamp things worse by forking more.
943              * So we hopefully won't need to fork more if we count it.
944              * This depends on the ordering of SERVER_READY and SERVER_STARTING.
945              */
946             if (status <= SERVER_READY) {
947                 ++idle_thread_addition;
948             }
949         }
950         if (all_dead_threads && free_length < idle_spawn_rate) {
951             free_slots[free_length] = i;
952             ++free_length;
953         }
954         if (!all_dead_threads) {
955             last_non_dead = i;
956         }
957         if (!any_dying_threads) {
958             ++total_non_dead;
959             idle_thread_count += idle_thread_addition;
960         }
961     }
962     ap_max_daemons_limit = last_non_dead + 1;
963
964     if (idle_thread_count > max_spare_threads) {
965         /* Kill off one child */
966         char char_of_death = '!';
967         if ((rv = ap_write(pipe_of_death_out, &char_of_death, &one)) != APR_SUCCESS) {
968             ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, "write pipe_of_death");
969         }
970         idle_spawn_rate = 1;
971     }
972     else if (idle_thread_count < min_spare_threads) {
973         /* terminate the free list */
974         if (free_length == 0) {
975             /* only report this condition once */
976             static int reported = 0;
977             
978             if (!reported) {
979                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ERR, 0, ap_server_conf,
980                              "server reached MaxClients setting, consider"
981                              " raising the MaxClients setting");
982                 reported = 1;
983             }
984             idle_spawn_rate = 1;
985         }
986         else {
987             
988             if (idle_spawn_rate >= 8) {
989                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0, ap_server_conf,
990                              "server seems busy, (you may need "
991                              "to increase StartServers, ThreadsPerChild "
992                              "or Min/MaxSparetThreads), "
993                              "spawning %d children, there are around %d idle "
994                              "threads, and %d total children", idle_spawn_rate,
995                              idle_thread_count, total_non_dead);
996             }
997             for (i = 0; i < free_length; ++i) {
998                 make_child(ap_server_conf, free_slots[i], now);
999             }
1000             /* the next time around we want to spawn twice as many if this
1001              * wasn't good enough, but not if we've just done a graceful
1002              */
1003             if (hold_off_on_exponential_spawning) {
1004                 --hold_off_on_exponential_spawning;
1005             }
1006             else if (idle_spawn_rate < MAX_SPAWN_RATE) {
1007                 idle_spawn_rate *= 2;
1008             }
1009         }
1010     }
1011     else {
1012       idle_spawn_rate = 1;
1013     }
1014 }
1015
1016 static void server_main_loop(int remaining_children_to_start)
1017 {
1018     int child_slot;
1019     ap_wait_t status;
1020     ap_proc_t pid;
1021     int i;
1022
1023     while (!restart_pending && !shutdown_pending) {
1024         ap_wait_or_timeout(&status, &pid, pconf);
1025         
1026         if (pid.pid != -1) {
1027             process_child_status(&pid, status);
1028             /* non-fatal death... note that it's gone in the scoreboard. */
1029             child_slot = find_child_by_pid(&pid);
1030             if (child_slot >= 0) {
1031                 ap_mpmt_pthread_force_reset_connection_status(child_slot);
1032                 for (i = 0; i < ap_threads_per_child; i++)
1033                     ap_update_child_status(child_slot, i, SERVER_DEAD, (request_rec *) NULL);
1034                 
1035                 if (remaining_children_to_start
1036                     && child_slot < ap_daemons_limit) {
1037                     /* we're still doing a 1-for-1 replacement of dead
1038                      * children with new children
1039                      */
1040                     make_child(ap_server_conf, child_slot, time(NULL));
1041                     --remaining_children_to_start;
1042                 }
1043 #ifdef APR_HAS_OTHER_CHILD
1044             }
1045             else if (ap_reap_other_child(&pid, status) == 0) {
1046                 /* handled */
1047 #endif
1048             }
1049             else if (is_graceful) {
1050                 /* Great, we've probably just lost a slot in the
1051                  * scoreboard.  Somehow we don't know about this child.
1052                  */
1053                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_WARNING, 0,
1054                              ap_server_conf,
1055                              "long lost child came home! (pid %ld)",
1056                              (long)pid.pid);
1057             }
1058             /* Don't perform idle maintenance when a child dies,
1059              * only do it when there's a timeout.  Remember only a
1060              * finite number of children can die, and it's pretty
1061              * pathological for a lot to die suddenly.
1062              */
1063             continue;
1064         }
1065         else if (remaining_children_to_start) {
1066             /* we hit a 1 second timeout in which none of the previous
1067              * generation of children needed to be reaped... so assume
1068              * they're all done, and pick up the slack if any is left.
1069              */
1070             startup_children(remaining_children_to_start);
1071             remaining_children_to_start = 0;
1072             /* In any event we really shouldn't do the code below because
1073              * few of the servers we just started are in the IDLE state
1074              * yet, so we'd mistakenly create an extra server.
1075              */
1076             continue;
1077         }
1078
1079         perform_idle_server_maintenance();
1080     }
1081 }
1082
1083 int ap_mpm_run(ap_pool_t *_pconf, ap_pool_t *plog, server_rec *s)
1084 {
1085     int remaining_children_to_start;
1086     ap_status_t rv;
1087     int one = 1;
1088
1089     pconf = _pconf;
1090     ap_server_conf = s;
1091     rv = ap_create_pipe(&pipe_of_death_in, &pipe_of_death_out, pconf);
1092     if (rv != APR_SUCCESS) {
1093         ap_log_error(APLOG_MARK, APLOG_ERR, rv,
1094                      (const server_rec*) ap_server_conf,
1095                      "pipe: (pipe_of_death)");
1096         exit(1);
1097     }
1098
1099     if ((rv = ap_set_pipe_timeout(pipe_of_death_in, 0)) != APR_SUCCESS) {
1100         ap_log_error(APLOG_MARK, APLOG_ERR, rv,
1101                      (const server_rec*) ap_server_conf,
1102                      "ap_set_pipe_timeout (pipe_of_death)");
1103         exit(1);
1104     }
1105     ap_server_conf = s;
1106     if ((num_listensocks = setup_listeners(ap_server_conf)) < 1) {
1107         /* XXX: hey, what's the right way for the mpm to indicate a fatal error? */
1108         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_ALERT, 0, s,
1109             "no listening sockets available, shutting down");
1110         return 1;
1111     }
1112     ap_log_pid(pconf, ap_pid_fname);
1113
1114     /* Initialize cross-process accept lock */
1115     lock_fname = ap_psprintf(_pconf, "%s.%lu",
1116                              ap_server_root_relative(_pconf, lock_fname),
1117                              ap_my_pid);
1118     rv = ap_create_lock(&process_accept_mutex, APR_MUTEX, APR_CROSS_PROCESS,
1119                    lock_fname, _pconf);
1120     if (rv != APR_SUCCESS) {
1121         ap_log_error(APLOG_MARK, APLOG_EMERG, rv, s,
1122                      "Couldn't create cross-process lock");
1123         return 1;
1124     }
1125
1126
1127     if (!is_graceful) {
1128         reinit_scoreboard(pconf);
1129     }
1130
1131     set_signals();
1132     /* Don't thrash... */
1133     if (max_spare_threads < min_spare_threads + ap_threads_per_child)
1134         max_spare_threads = min_spare_threads + ap_threads_per_child;
1135
1136     /* If we're doing a graceful_restart then we're going to see a lot
1137      * of children exiting immediately when we get into the main loop
1138      * below (because we just sent them SIGWINCH).  This happens pretty
1139      * rapidly... and for each one that exits we'll start a new one until
1140      * we reach at least daemons_min_free.  But we may be permitted to
1141      * start more than that, so we'll just keep track of how many we're
1142      * supposed to start up without the 1 second penalty between each fork.
1143      */
1144     remaining_children_to_start = ap_daemons_to_start;
1145     if (remaining_children_to_start > ap_daemons_limit) {
1146         remaining_children_to_start = ap_daemons_limit;
1147     }
1148     if (!is_graceful) {
1149         startup_children(remaining_children_to_start);
1150         remaining_children_to_start = 0;
1151     }
1152     else {
1153         /* give the system some time to recover before kicking into
1154             * exponential mode */
1155         hold_off_on_exponential_spawning = 10;
1156     }
1157
1158     ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1159                 "%s configured -- resuming normal operations",
1160                 ap_get_server_version());
1161     ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0, ap_server_conf,
1162                 "Server built: %s", ap_get_server_built());
1163     restart_pending = shutdown_pending = 0;
1164
1165     server_main_loop(remaining_children_to_start);
1166
1167     if (shutdown_pending) {
1168         /* Time to gracefully shut down:
1169          * Kill child processes, tell them to call child_exit, etc...
1170          */
1171         if (unixd_killpg(getpgrp(), SIGTERM) < 0) {
1172             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "killpg SIGTERM");
1173         }
1174         ap_reclaim_child_processes(1);          /* Start with SIGTERM */
1175     
1176         /* cleanup pid file on normal shutdown */
1177         {
1178             const char *pidfile = NULL;
1179             pidfile = ap_server_root_relative (pconf, ap_pid_fname);
1180             if ( pidfile != NULL && unlink(pidfile) == 0)
1181                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, 0,
1182                          ap_server_conf,
1183                          "removed PID file %s (pid=%ld)",
1184                          pidfile, (long)getpid());
1185         }
1186     
1187         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1188             "caught SIGTERM, shutting down");
1189     
1190         return 1;
1191     }
1192
1193     /* we've been told to restart */
1194     ap_signal(SIGHUP, SIG_IGN);
1195
1196     if (one_process) {
1197         /* not worth thinking about */
1198         return 1;
1199     }
1200
1201     /* advance to the next generation */
1202     /* XXX: we really need to make sure this new generation number isn't in
1203      * use by any of the children.
1204      */
1205     ++ap_my_generation;
1206     ap_scoreboard_image->global.running_generation = ap_my_generation;
1207     update_scoreboard_global();
1208
1209     if (is_graceful) {
1210         int i, j;
1211         char char_of_death = '!';
1212
1213         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1214                     "SIGWINCH received.  Doing graceful restart");
1215
1216         /* give the children the signal to die */
1217         for (i = 0; i < ap_daemons_limit;) {
1218             if ((rv = ap_write(pipe_of_death_in, &char_of_death, &one)) != APR_SUCCESS) {
1219                 if (ap_canonical_error(rv) == APR_EINTR) continue;
1220                 ap_log_error(APLOG_MARK, APLOG_WARNING, rv, ap_server_conf, "write pipe_of_death");
1221             }
1222             i++;
1223         }
1224
1225         /* This is mostly for debugging... so that we know what is still
1226          * gracefully dealing with existing request.
1227          */
1228         
1229         for (i = 0; i < ap_daemons_limit; ++i) {
1230             for (j = 0; j < ap_threads_per_child; j++) { 
1231                 if (ap_scoreboard_image->servers[i][j].status != SERVER_DEAD) {
1232                     ap_scoreboard_image->servers[i][j].status = SERVER_GRACEFUL;
1233                 }
1234             } 
1235         }
1236     }
1237     else {
1238       /* Kill 'em all.  Since the child acts the same on the parents SIGTERM 
1239        * and a SIGHUP, we may as well use the same signal, because some user
1240        * pthreads are stealing signals from us left and right.
1241        */
1242         if (unixd_killpg(getpgrp(), SIGTERM) < 0) {
1243             ap_log_error(APLOG_MARK, APLOG_WARNING, errno, ap_server_conf, "killpg SIGTERM");
1244         }
1245         ap_reclaim_child_processes(1);          /* Start with SIGTERM */
1246         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_NOTICE, 0, ap_server_conf,
1247                     "SIGHUP received.  Attempting to restart");
1248     }
1249     if (!is_graceful) {
1250         ap_restart_time = time(NULL); 
1251     }
1252     return 0;
1253 }
1254
1255 static void mpmt_pthread_pre_config(ap_pool_t *pconf, ap_pool_t *plog, ap_pool_t *ptemp)
1256 {
1257     static int restart_num = 0;
1258
1259     one_process = !!getenv("ONE_PROCESS");
1260
1261     /* sigh, want this only the second time around */
1262     if (restart_num++ == 1) {
1263         is_graceful = 0;
1264
1265         if (!one_process) {
1266             ap_detach();
1267         }
1268         ap_my_pid = getpid();
1269     }
1270
1271     unixd_pre_config();
1272     ap_listen_pre_config();
1273     ap_daemons_to_start = DEFAULT_START_DAEMON;
1274     min_spare_threads = DEFAULT_MIN_FREE_DAEMON * DEFAULT_THREADS_PER_CHILD;
1275     max_spare_threads = DEFAULT_MAX_FREE_DAEMON * DEFAULT_THREADS_PER_CHILD;
1276     ap_daemons_limit = HARD_SERVER_LIMIT;
1277     ap_threads_per_child = DEFAULT_THREADS_PER_CHILD;
1278     ap_pid_fname = DEFAULT_PIDLOG;
1279     ap_scoreboard_fname = DEFAULT_SCOREBOARD;
1280     lock_fname = DEFAULT_LOCKFILE;
1281     ap_max_requests_per_child = DEFAULT_MAX_REQUESTS_PER_CHILD;
1282     ap_extended_status = 0;
1283
1284     ap_cpystrn(ap_coredump_dir, ap_server_root, sizeof(ap_coredump_dir));
1285 }
1286
1287 static void mpmt_pthread_hooks(void)
1288 {
1289     INIT_SIGLIST()
1290     one_process = 0;
1291
1292     ap_hook_pre_config(mpmt_pthread_pre_config, NULL, NULL, AP_HOOK_MIDDLE);
1293 }
1294
1295
1296 static const char *set_pidfile(cmd_parms *cmd, void *dummy, const char *arg) 
1297 {
1298     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1299     if (err != NULL) {
1300         return err;
1301     }
1302
1303     if (cmd->server->is_virtual) {
1304         return "PidFile directive not allowed in <VirtualHost>";
1305     }
1306     ap_pid_fname = arg;
1307     return NULL;
1308 }
1309
1310 static const char *set_scoreboard(cmd_parms *cmd, void *dummy,
1311                                   const char *arg) 
1312 {
1313     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1314     if (err != NULL) {
1315         return err;
1316     }
1317
1318     ap_scoreboard_fname = arg;
1319     return NULL;
1320 }
1321
1322 static const char *set_lockfile(cmd_parms *cmd, void *dummy, const char *arg) 
1323 {
1324     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1325     if (err != NULL) {
1326         return err;
1327     }
1328
1329     lock_fname = arg;
1330     return NULL;
1331 }
1332
1333 static const char *set_daemons_to_start(cmd_parms *cmd, void *dummy,
1334                                         const char *arg) 
1335 {
1336     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1337     if (err != NULL) {
1338         return err;
1339     }
1340
1341     ap_daemons_to_start = atoi(arg);
1342     return NULL;
1343 }
1344
1345 static const char *set_min_spare_threads(cmd_parms *cmd, void *dummy,
1346                                          const char *arg)
1347 {
1348     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1349     if (err != NULL) {
1350         return err;
1351     }
1352
1353     min_spare_threads = atoi(arg);
1354     if (min_spare_threads <= 0) {
1355        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1356                     "WARNING: detected MinSpareThreads set to non-positive.");
1357        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1358                     "Resetting to 1 to avoid almost certain Apache failure.");
1359        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1360                     "Please read the documentation.");
1361        min_spare_threads = 1;
1362     }
1363        
1364     return NULL;
1365 }
1366
1367 static const char *set_max_spare_threads(cmd_parms *cmd, void *dummy,
1368                                          const char *arg)
1369 {
1370     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1371     if (err != NULL) {
1372         return err;
1373     }
1374
1375     max_spare_threads = atoi(arg);
1376     return NULL;
1377 }
1378
1379 static const char *set_server_limit (cmd_parms *cmd, void *dummy,
1380                                      const char *arg) 
1381 {
1382     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1383     if (err != NULL) {
1384         return err;
1385     }
1386
1387     ap_daemons_limit = atoi(arg);
1388     if (ap_daemons_limit > HARD_SERVER_LIMIT) {
1389        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1390                     "WARNING: MaxClients of %d exceeds compile time limit "
1391                     "of %d servers,", ap_daemons_limit, HARD_SERVER_LIMIT);
1392        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1393                     " lowering MaxClients to %d.  To increase, please "
1394                     "see the", HARD_SERVER_LIMIT);
1395        ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1396                     " HARD_SERVER_LIMIT define in %s.",
1397                     AP_MPM_HARD_LIMITS_FILE);
1398        ap_daemons_limit = HARD_SERVER_LIMIT;
1399     } 
1400     else if (ap_daemons_limit < 1) {
1401         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, "WARNING: Require MaxClients > 0, setting to 1\n");
1402         ap_daemons_limit = 1;
1403     }
1404     return NULL;
1405 }
1406
1407 static const char *set_threads_per_child (cmd_parms *cmd, void *dummy,
1408                                           const char *arg) 
1409 {
1410     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1411     if (err != NULL) {
1412         return err;
1413     }
1414
1415     ap_threads_per_child = atoi(arg);
1416     if (ap_threads_per_child > HARD_THREAD_LIMIT) {
1417         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1418                      "WARNING: ThreadsPerChild of %d exceeds compile time"
1419                      "limit of %d threads,", ap_threads_per_child,
1420                      HARD_THREAD_LIMIT);
1421         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1422                      " lowering ThreadsPerChild to %d. To increase, please"
1423                      " see the", HARD_THREAD_LIMIT);
1424         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1425                      " HARD_THREAD_LIMIT define in %s.",
1426                      AP_MPM_HARD_LIMITS_FILE);
1427     }
1428     else if (ap_threads_per_child < 1) {
1429         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
1430                      "WARNING: Require ThreadsPerChild > 0, setting to 1");
1431         ap_threads_per_child = 1;
1432     }
1433     return NULL;
1434 }
1435
1436 static const char *set_max_requests(cmd_parms *cmd, void *dummy,
1437                                     const char *arg) 
1438 {
1439     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1440     if (err != NULL) {
1441         return err;
1442     }
1443
1444     ap_max_requests_per_child = atoi(arg);
1445
1446     return NULL;
1447 }
1448
1449 static const char *set_coredumpdir (cmd_parms *cmd, void *dummy,
1450                                     const char *arg) 
1451 {
1452     ap_finfo_t finfo;
1453     const char *fname;
1454     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
1455     if (err != NULL) {
1456         return err;
1457     }
1458
1459     fname = ap_server_root_relative(cmd->pool, arg);
1460     if ((ap_stat(&finfo, fname, cmd->pool) != APR_SUCCESS) || 
1461         (finfo.filetype != APR_DIR)) {
1462         return ap_pstrcat(cmd->pool, "CoreDumpDirectory ", fname, 
1463                           " does not exist or is not a directory", NULL);
1464     }
1465     ap_cpystrn(ap_coredump_dir, fname, sizeof(ap_coredump_dir));
1466     return NULL;
1467 }
1468
1469 static const command_rec mpmt_pthread_cmds[] = {
1470 UNIX_DAEMON_COMMANDS
1471 LISTEN_COMMANDS
1472 AP_INIT_TAKE1("PidFile", set_pidfile, NULL, RSRC_CONF,
1473     "A file for logging the server process ID"),
1474 AP_INIT_TAKE1("ScoreBoardFile", set_scoreboard, NULL, RSRC_CONF,
1475     "A file for Apache to maintain runtime process management information"),
1476 AP_INIT_TAKE1("LockFile", set_lockfile, NULL, RSRC_CONF,
1477     "The lockfile used when Apache needs to lock the accept() call"),
1478 AP_INIT_TAKE1("StartServers", set_daemons_to_start, NULL, RSRC_CONF,
1479   "Number of child processes launched at server startup"),
1480 AP_INIT_TAKE1("MinSpareThreads", set_min_spare_threads, NULL, RSRC_CONF,
1481   "Minimum number of idle children, to handle request spikes"),
1482 AP_INIT_TAKE1("MaxSpareThreads", set_max_spare_threads, NULL, RSRC_CONF,
1483   "Maximum number of idle children"),
1484 AP_INIT_TAKE1("MaxClients", set_server_limit, NULL, RSRC_CONF,
1485   "Maximum number of children alive at the same time"),
1486 AP_INIT_TAKE1("ThreadsPerChild", set_threads_per_child, NULL, RSRC_CONF,
1487   "Number of threads each child creates"),
1488 AP_INIT_TAKE1("MaxRequestsPerChild", set_max_requests, NULL, RSRC_CONF,
1489   "Maximum number of requests a particular child serves before dying."),
1490 AP_INIT_TAKE1("CoreDumpDirectory", set_coredumpdir, NULL, RSRC_CONF,
1491   "The location of the directory Apache changes to before dumping core"),
1492 { NULL }
1493 };
1494
1495 module MODULE_VAR_EXPORT mpm_mpmt_pthread_module = {
1496     MPM20_MODULE_STUFF,
1497     NULL,                       /* hook to run before apache parses args */
1498     NULL,                       /* create per-directory config structure */
1499     NULL,                       /* merge per-directory config structures */
1500     NULL,                       /* create per-server config structure */
1501     NULL,                       /* merge per-server config structures */
1502     mpmt_pthread_cmds,          /* command ap_table_t */
1503     NULL,                       /* handlers */
1504     mpmt_pthread_hooks          /* register_hooks */
1505 };
1506