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