]> granicus.if.org Git - apache/blob - server/mpm/winnt/mpm_winnt.c
Win32: Reset the acceptex context on a GetQueuedCompletionStatus() failure. We were
[apache] / server / mpm / winnt / mpm_winnt.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 #include "httpd.h" 
61 #include "http_main.h" 
62 #include "http_log.h" 
63 #include "http_config.h"        /* for read_config */ 
64 #include "http_core.h"          /* for get_remote_host */ 
65 #include "http_connection.h"
66 #include "apr_portable.h"
67 #include "apr_getopt.h"
68 #include "apr_strings.h"
69 #include "ap_mpm.h"
70 #include "ap_config.h"
71 #include "ap_listen.h"
72 #include "mpm_default.h"
73 #include "ap_iol.h"
74 #include "mpm_winnt.h"
75 #include "mpm_common.h"
76
77 /*
78  * Definitions of WINNT MPM specific config globals
79  */
80 static int workers_may_exit = 0;
81 static int shutdown_in_progress = 0;
82 static unsigned int g_blocked_threads = 0;
83
84 static char *ap_pid_fname = NULL;
85 static int ap_threads_per_child = 0;
86
87 static int max_requests_per_child = 0;
88 static HANDLE shutdown_event;   /* used to signal shutdown to parent */
89 static HANDLE restart_event;    /* used to signal a restart to parent */
90
91 #define MAX_SIGNAL_NAME 30  /* Long enough for apPID_shutdown, where PID is an int */
92 char signal_name_prefix[MAX_SIGNAL_NAME];
93 char signal_restart_name[MAX_SIGNAL_NAME]; 
94 char signal_shutdown_name[MAX_SIGNAL_NAME];
95
96 static struct fd_set listenfds;
97 static int num_listenfds = 0;
98 static SOCKET listenmaxfd = INVALID_SOCKET;
99
100 static apr_pool_t *pconf;               /* Pool for config stuff */
101
102 static char ap_coredump_dir[MAX_STRING_LEN];
103
104 static server_rec *server_conf;
105 static HANDLE AcceptExCompPort = NULL;
106
107 static int one_process = 0;
108 static char const* signal_arg;
109
110 OSVERSIONINFO osver; /* VER_PLATFORM_WIN32_NT */
111
112 int ap_max_requests_per_child=0;
113 int ap_daemons_to_start=0;
114
115 static event *exit_event;
116 HANDLE maintenance_event;
117 apr_lock_t *start_mutex;
118 DWORD my_pid;
119 DWORD parent_pid;
120
121 /* This is the helper code to resolve late bound entry points 
122  * missing from one or more releases of the Win32 API...
123  * but it sure would be nice if we didn't duplicate this code
124  * from the APR ;-)
125  */
126
127 static const char* const lateDllName[DLL_defined] = {
128     "kernel32", "advapi32", "mswsock",  "ws2_32"  };
129 static HMODULE lateDllHandle[DLL_defined] = {
130     NULL,       NULL,       NULL,       NULL      };
131
132 FARPROC ap_load_dll_func(ap_dlltoken_e fnLib, char* fnName, int ordinal)
133 {
134     if (!lateDllHandle[fnLib]) { 
135         lateDllHandle[fnLib] = LoadLibrary(lateDllName[fnLib]);
136         if (!lateDllHandle[fnLib])
137             return NULL;
138     }
139     if (ordinal)
140         return GetProcAddress(lateDllHandle[fnLib], (char *) ordinal);
141     else
142         return GetProcAddress(lateDllHandle[fnLib], fnName);
143 }
144
145 static apr_status_t socket_cleanup(void *sock)
146 {
147     apr_socket_t *thesocket = sock;
148     SOCKET sd;
149     if (apr_get_os_sock(&sd, thesocket) == APR_SUCCESS) {
150         closesocket(sd);
151     }
152     return APR_SUCCESS;
153 }
154
155 /* A bunch or routines from os/win32/multithread.c that need to be merged into APR
156  * or thrown out entirely...
157  */
158
159 typedef void semaphore;
160 typedef void event;
161
162 static semaphore *
163 create_semaphore(int initial)
164 {
165     return(CreateSemaphore(NULL, initial, 1000000, NULL));
166 }
167
168 static void acquire_semaphore(semaphore *semaphore_id)
169 {
170     int rv;
171     
172     rv = WaitForSingleObject(semaphore_id, INFINITE);
173     
174     return;
175 }
176
177 static int release_semaphore(semaphore *semaphore_id)
178 {
179     return(ReleaseSemaphore(semaphore_id, 1, NULL));
180 }
181
182 static void destroy_semaphore(semaphore *semaphore_id)
183 {
184     CloseHandle(semaphore_id);
185 }
186
187
188 /* To share the semaphores with other processes, we need a NULL ACL
189  * Code from MS KB Q106387
190  */
191 static PSECURITY_ATTRIBUTES GetNullACL()
192 {
193     PSECURITY_DESCRIPTOR pSD;
194     PSECURITY_ATTRIBUTES sa;
195
196     sa  = (PSECURITY_ATTRIBUTES) LocalAlloc(LPTR, sizeof(SECURITY_ATTRIBUTES));
197     pSD = (PSECURITY_DESCRIPTOR) LocalAlloc(LPTR,
198                                             SECURITY_DESCRIPTOR_MIN_LENGTH);
199     if (pSD == NULL || sa == NULL) {
200         return NULL;
201     }
202     if (!InitializeSecurityDescriptor(pSD, SECURITY_DESCRIPTOR_REVISION)
203         || GetLastError()) {
204         LocalFree( pSD );
205         LocalFree( sa );
206         return NULL;
207     }
208     if (!SetSecurityDescriptorDacl(pSD, TRUE, (PACL) NULL, FALSE)
209         || GetLastError()) {
210         LocalFree( pSD );
211         LocalFree( sa );
212         return NULL;
213     }
214     sa->nLength = sizeof(sa);
215     sa->lpSecurityDescriptor = pSD;
216     sa->bInheritHandle = TRUE;
217     return sa;
218 }
219
220 static void CleanNullACL( void *sa ) {
221     if( sa ) {
222         LocalFree( ((PSECURITY_ATTRIBUTES)sa)->lpSecurityDescriptor);
223         LocalFree( sa );
224     }
225 }
226
227 /*
228  * The Win32 call WaitForMultipleObjects will only allow you to wait for 
229  * a maximum of MAXIMUM_WAIT_OBJECTS (current 64).  Since the threading 
230  * model in the multithreaded version of apache wants to use this call, 
231  * we are restricted to a maximum of 64 threads.  This is a simplistic 
232  * routine that will increase this size.
233  */
234 static DWORD wait_for_many_objects(DWORD nCount, CONST HANDLE *lpHandles, 
235                                    DWORD dwSeconds)
236 {
237     time_t tStopTime;
238     DWORD dwRet = WAIT_TIMEOUT;
239     DWORD dwIndex=0;
240     BOOL bFirst = TRUE;
241   
242     tStopTime = time(NULL) + dwSeconds;
243   
244     do {
245         if (!bFirst)
246             Sleep(1000);
247         else
248             bFirst = FALSE;
249           
250         for (dwIndex = 0; dwIndex * MAXIMUM_WAIT_OBJECTS < nCount; dwIndex++) {
251             dwRet = WaitForMultipleObjects( 
252                 min(MAXIMUM_WAIT_OBJECTS, nCount - (dwIndex * MAXIMUM_WAIT_OBJECTS)),
253                 lpHandles + (dwIndex * MAXIMUM_WAIT_OBJECTS), 
254                 0, 0);
255                                            
256             if (dwRet != WAIT_TIMEOUT) {                                          
257               break;
258             }
259         }
260     } while((time(NULL) < tStopTime) && (dwRet == WAIT_TIMEOUT));
261     
262     return dwRet;
263 }
264
265 /*
266  * Signalling Apache on NT.
267  *
268  * Under Unix, Apache can be told to shutdown or restart by sending various
269  * signals (HUP, USR, TERM). On NT we don't have easy access to signals, so
270  * we use "events" instead. The parent apache process goes into a loop
271  * where it waits forever for a set of events. Two of those events are
272  * called
273  *
274  *    apPID_shutdown
275  *    apPID_restart
276  *
277  * (where PID is the PID of the apache parent process). When one of these
278  * is signalled, the Apache parent performs the appropriate action. The events
279  * can become signalled through internal Apache methods (e.g. if the child
280  * finds a fatal error and needs to kill its parent), via the service
281  * control manager (the control thread will signal the shutdown event when
282  * requested to stop the Apache service), from the -k Apache command line,
283  * or from any external program which finds the Apache PID from the
284  * httpd.pid file.
285  *
286  * The signal_parent() function, below, is used to signal one of these events.
287  * It can be called by any child or parent process, since it does not
288  * rely on global variables.
289  *
290  * On entry, type gives the event to signal. 0 means shutdown, 1 means 
291  * graceful restart.
292  */
293 void signal_parent(int type)
294 {
295     HANDLE e;
296     char *signal_name;
297     
298     /* after updating the shutdown_pending or restart flags, we need
299      * to wake up the parent process so it can see the changes. The
300      * parent will normally be waiting for either a child process
301      * to die, or for a signal on the "spache-signal" event. So set the
302      * "apache-signal" event here.
303      */
304     if (one_process) {
305         return;
306     }
307
308     switch(type) {
309     case 0: signal_name = signal_shutdown_name; break;
310     case 1: signal_name = signal_restart_name; break;
311     default: return;
312     }
313     e = OpenEvent(EVENT_ALL_ACCESS, FALSE, signal_name);
314     if (!e) {
315         /* Um, problem, can't signal the parent, which means we can't
316          * signal ourselves to die. Ignore for now...
317          */
318         ap_log_error(APLOG_MARK, APLOG_EMERG, GetLastError(), server_conf,
319                      "OpenEvent on %s event", signal_name);
320         return;
321     }
322     if (SetEvent(e) == 0) {
323         /* Same problem as above */
324         ap_log_error(APLOG_MARK, APLOG_EMERG, GetLastError(), server_conf,
325                      "SetEvent on %s event", signal_name);
326         CloseHandle(e);
327         return;
328     }
329     CloseHandle(e);
330 }
331
332 static int volatile is_graceful = 0;
333
334 API_EXPORT(int) ap_graceful_stop_signalled(void)
335 {
336     return is_graceful;
337 }
338
339 API_EXPORT(void) ap_start_shutdown(void)
340 {
341     signal_parent(0);
342 }
343
344 API_EXPORT(void) ap_start_restart(int gracefully)
345 {
346     is_graceful = gracefully;
347     signal_parent(1);
348 }
349
350 /*
351  * Initialise the signal names, in the global variables signal_name_prefix, 
352  * signal_restart_name and signal_shutdown_name.
353  */
354
355 void setup_signal_names(char *prefix)
356 {
357     apr_snprintf(signal_name_prefix, sizeof(signal_name_prefix), prefix);    
358     apr_snprintf(signal_shutdown_name, sizeof(signal_shutdown_name), 
359         "%s_shutdown", signal_name_prefix);    
360     apr_snprintf(signal_restart_name, sizeof(signal_restart_name), 
361         "%s_restart", signal_name_prefix);    
362 }
363
364 /*
365  * Routines that deal with sockets, some are WIN32 specific...
366  */
367
368 static void sock_disable_nagle(int s) 
369 {
370     /* The Nagle algorithm says that we should delay sending partial
371      * packets in hopes of getting more data.  We don't want to do
372      * this; we are not telnet.  There are bad interactions between
373      * persistent connections and Nagle's algorithm that have very severe
374      * performance penalties.  (Failing to disable Nagle is not much of a
375      * problem with simple HTTP.)
376      *
377      * In spite of these problems, failure here is not a shooting offense.
378      */
379     int just_say_no = 1;
380
381     if (setsockopt(s, IPPROTO_TCP, TCP_NODELAY, (char *) &just_say_no,
382                    sizeof(int)) < 0) {
383         ap_log_error(APLOG_MARK, APLOG_WARNING, APR_SUCCESS, server_conf,
384                     "setsockopt: (TCP_NODELAY)");
385     }
386 }
387
388 /*
389  * Routines to deal with managing the list of listening sockets.
390  */
391 static ap_listen_rec *head_listener;
392
393 static apr_inline ap_listen_rec *find_ready_listener(fd_set * main_fds)
394 {
395     ap_listen_rec *lr;
396     SOCKET nsd;
397
398     for (lr = head_listener; lr ; lr = lr->next) {
399         apr_get_os_sock(&nsd, lr->sd);
400         if (FD_ISSET(nsd, main_fds)) {
401             head_listener = lr->next;
402             if (head_listener == NULL)
403                 head_listener = ap_listeners;
404
405             return (lr);
406         }
407     }
408     return NULL;
409 }
410
411 static int setup_listeners(server_rec *s)
412 {
413     ap_listen_rec *lr;
414     int num_listeners = 0;
415     SOCKET nsd;
416
417     /* Setup the listeners */
418     FD_ZERO(&listenfds);
419
420     if (ap_listen_open(s->process, s->port)) {
421        return 0;
422     }
423     for (lr = ap_listeners; lr; lr = lr->next) {
424         num_listeners++;
425         if (lr->sd != NULL) {
426             apr_get_os_sock(&nsd, lr->sd);
427             FD_SET(nsd, &listenfds);
428             if (listenmaxfd == INVALID_SOCKET || nsd > listenmaxfd) {
429                 listenmaxfd = nsd;
430             }
431         }
432         lr->count = 0;
433     }
434
435     head_listener = ap_listeners;
436
437     return num_listeners;
438 }
439
440 static int setup_inherited_listeners(server_rec *s)
441 {
442     WSAPROTOCOL_INFO WSAProtocolInfo;
443     HANDLE pipe;
444     ap_listen_rec *lr;
445     DWORD BytesRead;
446     int num_listeners = 0;
447     SOCKET nsd;
448
449     /* Setup the listeners */
450     FD_ZERO(&listenfds);
451
452     /* Set up a default listener if necessary */
453
454     if (ap_listeners == NULL) {
455         ap_listen_rec *lr;
456         lr = apr_palloc(s->process->pool, sizeof(ap_listen_rec));
457         if (!lr)
458             return 0;
459         lr->sd = NULL;
460         lr->next = ap_listeners;
461         ap_listeners = lr;
462     }
463
464     /* Open the pipe to the parent process to receive the inherited socket
465      * data. The sockets have been set to listening in the parent process.
466      */
467     pipe = GetStdHandle(STD_INPUT_HANDLE);
468     for (lr = ap_listeners; lr; lr = lr->next) {
469         if (!ReadFile(pipe, &WSAProtocolInfo, sizeof(WSAPROTOCOL_INFO), 
470                       &BytesRead, (LPOVERLAPPED) NULL)) {
471             ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
472                          "setup_inherited_listeners: Unable to read socket data from parent");
473             signal_parent(0);   /* tell parent to die */
474             exit(1);
475         }
476         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, APR_SUCCESS, server_conf,
477                      "Child %d: setup_inherited_listener() read = %d bytes of WSAProtocolInfo.", my_pid);
478         nsd = WSASocket(FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO, FROM_PROTOCOL_INFO,
479                         &WSAProtocolInfo, 0, 0);
480         if (nsd == INVALID_SOCKET) {
481             ap_log_error(APLOG_MARK, APLOG_CRIT, WSAGetLastError(), server_conf,
482                          "Child %d: setup_inherited_listeners(), WSASocket failed to open the inherited socket.", my_pid);
483             signal_parent(0);   /* tell parent to die */
484             exit(1);
485         }
486         if (nsd >= 0) {
487             FD_SET(nsd, &listenfds);
488             if (listenmaxfd == INVALID_SOCKET || nsd > listenmaxfd) {
489                 listenmaxfd = nsd;
490             }
491         }
492         apr_put_os_sock(&lr->sd, &nsd, pconf);
493         lr->count = 0;
494     }
495     /* Now, read the AcceptExCompPort from the parent */
496     ReadFile(pipe, &AcceptExCompPort, sizeof(AcceptExCompPort), &BytesRead, (LPOVERLAPPED) NULL);
497     CloseHandle(pipe);
498
499     for (lr = ap_listeners; lr; lr = lr->next) {
500         num_listeners++;
501     }
502
503     head_listener = ap_listeners;
504     return num_listeners;
505 }
506
507 static void bind_listeners_to_completion_port()
508 {
509     /* Associate the open listeners with the completion port.
510      * Bypass the operation for Windows 95/98
511      */
512     ap_listen_rec *lr;
513
514     if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) {
515         for (lr = ap_listeners; lr; lr = lr->next) {
516             int nsd;
517             apr_get_os_sock(&nsd,lr->sd);
518             CreateIoCompletionPort((HANDLE) nsd, AcceptExCompPort, 0, 0);
519         }
520     }
521 }
522
523 /**********************************************************************
524  * Multithreaded implementation
525  *
526  * This code is fairly specific to Win32.
527  *
528  * The model used to handle requests is a set of threads. One "main"
529  * thread listens for new requests. When something becomes
530  * available, it does a select and places the newly available socket
531  * onto a list of "jobs" (add_job()). Then any one of a fixed number
532  * of "worker" threads takes the top job off the job list with
533  * remove_job() and handles that connection to completion. After
534  * the connection has finished the thread is free to take another
535  * job from the job list.
536  *
537  * In the code, the "main" thread is running within the child_main()
538  * function. The first thing this function does is create the
539  * worker threads, which operate in the child_sub_main() function. The
540  * main thread then goes into a loop within child_main() where they
541  * do a select() on the listening sockets. The select times out once
542  * per second so that the thread can check for an "exit" signal
543  * from the parent process (see below). If this signal is set, the 
544  * thread can exit, but only after it has accepted all incoming
545  * connections already in the listen queue (since Win32 appears
546  * to through away listened but unaccepted connections when a 
547  * process dies).
548  *
549  * Because the main and worker threads exist within a single process
550  * they are vulnerable to crashes or memory leaks (crashes can also
551  * be caused within modules, of course). There also needs to be a 
552  * mechanism to perform restarts and shutdowns. This is done by
553  * creating the main & worker threads within a subprocess. A
554  * main process (the "parent process") creates one (or more) 
555  * processes to do the work, then the parent sits around waiting
556  * for the working process to die, in which case it starts a new
557  * one. The parent process also handles restarts (by creating
558  * a new working process then signalling the previous working process 
559  * exit ) and shutdowns (by signalling the working process to exit).
560  * The parent process operates within the master_main() function. This
561  * process also handles requests from the service manager (NT only).
562  *
563  * Signalling between the parent and working process uses a Win32
564  * event. Each child has a unique name for the event, which is
565  * passed to it with the -Z argument when the child is spawned. The
566  * parent sets (signals) this event to tell the child to die.
567  * At present all children do a graceful die - they finish all
568  * current jobs _and_ empty the listen queue before they exit.
569  * A non-graceful die would need a second event. The -Z argument in
570  * the child is also used to create the shutdown and restart events,
571  * since the prefix (apPID) contains the parent process PID.
572  *
573  * The code below starts with functions at the lowest level -
574  * worker threads, and works up to the top level - the main()
575  * function of the parent process.
576  *
577  * The scoreboard (in process memory) contains details of the worker
578  * threads (within the active working process). There is no shared
579  * "scoreboard" between processes, since only one is ever active
580  * at once (or at most, two, when one has been told to shutdown but
581  * is processes outstanding requests, and a new one has been started).
582  * This is controlled by a "start_mutex" which ensures only one working
583  * process is active at once.
584  **********************************************************************/
585
586
587 /*
588  * Definition of jobs, shared by main and worker threads.
589  */
590
591 typedef struct joblist_s {
592     struct joblist_s *next;
593     int sock;
594 } joblist;
595
596 /*
597  * Globals common to main and worker threads. This structure is not
598  * used by the parent process.
599  */
600
601 typedef struct globals_s {
602     semaphore *jobsemaphore;
603     joblist *jobhead;
604     joblist *jobtail;
605     apr_lock_t *jobmutex;
606     int jobcount;
607
608 } globals;
609
610 globals allowed_globals =
611 {NULL, NULL, NULL, NULL, 0};
612 #define MAX_SELECT_ERRORS 100
613 #define PADDED_ADDR_SIZE sizeof(SOCKADDR_IN)+16
614
615 /* Windows 9x specific code...
616  * Accept processing for on Windows 95/98 uses a producer/consumer queue 
617  * model. A single thread accepts connections and queues the accepted socket 
618  * to the accept queue for consumption by a pool of worker threads.
619  *
620  * win9x_get_connection()
621  *    Calls remove_job() to pull a job from the accept queue. All the worker 
622  *    threads block on remove_job.
623  * accept_and_queue_connections()
624  *    The accept threads runs this function, which accepts connections off 
625  *    the network and calls add_job() to queue jobs to the accept_queue.
626  * add_job()/remove_job()
627  *    Add or remove an accepted socket from the list of sockets 
628  *    connected to clients. allowed_globals.jobmutex protects
629  *    against multiple concurrent access to the linked list of jobs.
630  */
631 static void add_job(int sock)
632 {
633     joblist *new_job;
634
635     new_job = (joblist *) malloc(sizeof(joblist));
636     if (new_job == NULL) {
637         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
638                      "Ouch!  Out of memory in add_job()!");
639         return;
640     }
641     new_job->next = NULL;
642     new_job->sock = sock;
643
644     apr_lock(allowed_globals.jobmutex);
645
646     if (allowed_globals.jobtail != NULL)
647         allowed_globals.jobtail->next = new_job;
648     allowed_globals.jobtail = new_job;
649     if (!allowed_globals.jobhead)
650         allowed_globals.jobhead = new_job;
651     allowed_globals.jobcount++;
652     release_semaphore(allowed_globals.jobsemaphore);
653
654     apr_unlock(allowed_globals.jobmutex);
655 }
656
657 static int remove_job(void)
658 {
659     joblist *job;
660     int sock;
661
662     acquire_semaphore(allowed_globals.jobsemaphore);
663     apr_lock(allowed_globals.jobmutex);
664
665     if (shutdown_in_progress && !allowed_globals.jobhead) {
666         apr_unlock(allowed_globals.jobmutex);
667         return (-1);
668     }
669     job = allowed_globals.jobhead;
670     ap_assert(job);
671     allowed_globals.jobhead = job->next;
672     if (allowed_globals.jobhead == NULL)
673         allowed_globals.jobtail = NULL;
674     apr_unlock(allowed_globals.jobmutex);
675     sock = job->sock;
676     free(job);
677
678     return (sock);
679 }
680
681 static void accept_and_queue_connections(void * dummy)
682 {
683     int requests_this_child = 0;
684     struct timeval tv;
685     fd_set main_fds;
686     int wait_time = 1;
687     int csd;
688     int nsd = INVALID_SOCKET;
689     struct sockaddr_in sa_client;
690     int count_select_errors = 0;
691     int rc;
692     int clen;
693
694     while (!shutdown_in_progress) {
695         if (ap_max_requests_per_child && (requests_this_child > ap_max_requests_per_child)) {
696             break;
697         }
698
699         tv.tv_sec = wait_time;
700         tv.tv_usec = 0;
701         memcpy(&main_fds, &listenfds, sizeof(fd_set));
702
703         rc = select(listenmaxfd + 1, &main_fds, NULL, NULL, &tv);
704
705         if (rc == 0 || (rc == SOCKET_ERROR && h_errno == WSAEINTR)) {
706             count_select_errors = 0;    /* reset count of errors */            
707             continue;
708         }
709         else if (rc == SOCKET_ERROR) {
710             /* A "real" error occurred, log it and increment the count of
711              * select errors. This count is used to ensure we don't go into
712              * a busy loop of continuous errors.
713              */
714             ap_log_error(APLOG_MARK, APLOG_INFO, h_errno, server_conf, 
715                          "select failed with errno %d", h_errno);
716             count_select_errors++;
717             if (count_select_errors > MAX_SELECT_ERRORS) {
718                 shutdown_in_progress = 1;
719                 ap_log_error(APLOG_MARK, APLOG_ERR, h_errno, server_conf,
720                              "Too many errors in select loop. Child process exiting.");
721                 break;
722             }
723         } else {
724             ap_listen_rec *lr;
725
726             lr = find_ready_listener(&main_fds);
727             if (lr != NULL) {
728                 /* fetch the native socket descriptor */
729                 apr_get_os_sock(&nsd, lr->sd);
730             }
731         }
732
733         do {
734             clen = sizeof(sa_client);
735             csd = accept(nsd, (struct sockaddr *) &sa_client, &clen);
736             if (csd == INVALID_SOCKET) {
737                 csd = -1;
738             }
739         } while (csd < 0 && h_errno == WSAEINTR);
740
741         if (csd < 0) {
742             if (h_errno != WSAECONNABORTED) {
743                 ap_log_error(APLOG_MARK, APLOG_ERR, h_errno, server_conf,
744                             "accept: (client socket)");
745             }
746         }
747         else {
748             add_job(csd);
749             requests_this_child++;
750         }
751     }
752     SetEvent(exit_event);
753 }
754 static PCOMP_CONTEXT win9x_get_connection(PCOMP_CONTEXT context)
755 {
756     int len;
757
758     if (context == NULL) {
759         /* allocate the completion context and the transaction pool */
760         context = apr_pcalloc(pconf, sizeof(COMP_CONTEXT));
761         if (!context) {
762             ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
763                          "win9x_get_connection: apr_pcalloc() failed. Process will exit.");
764             return NULL;
765         }
766         apr_create_pool(&context->ptrans, pconf);
767     }
768     
769
770     while (1) {
771         apr_clear_pool(context->ptrans);        
772         context->accept_socket = remove_job();
773         if (context->accept_socket == -1) {
774             return NULL;
775         }
776         len = sizeof(struct sockaddr);
777         context->sa_server = apr_palloc(context->ptrans, len);
778         if (getsockname(context->accept_socket, 
779                         context->sa_server, &len)== SOCKET_ERROR) {
780             ap_log_error(APLOG_MARK, APLOG_WARNING, WSAGetLastError(), server_conf, 
781                          "getsockname failed");
782             continue;
783         }
784         len = sizeof(struct sockaddr);
785         context->sa_client = apr_palloc(context->ptrans, len);
786         if ((getpeername(context->accept_socket,
787                          context->sa_client, &len)) == SOCKET_ERROR) {
788             ap_log_error(APLOG_MARK, APLOG_WARNING, WSAGetLastError(), server_conf, 
789                          "getpeername failed");
790             memset(&context->sa_client, '\0', sizeof(context->sa_client));
791         }
792
793         context->conn_io = ap_bcreate(context->ptrans, B_RDWR);
794
795         /* do we NEED_DUPPED_CSD ?? */
796         
797         return context;
798     }
799 }
800
801 /* 
802  * Windows 2000/NT specific code...
803  * create_acceptex_context()
804  * reset_acceptex_context()
805  * drain_acceptex_complport()
806  * winnt_get_connection()
807  *
808  * TODO: Insert a discussion of 'completion contexts' and what these function do here...
809  */
810 static void drain_acceptex_complport(HANDLE hComplPort, BOOLEAN bCleanUp) 
811 {
812     LPOVERLAPPED pol;
813     PCOMP_CONTEXT context;
814     int rc;
815     DWORD BytesRead;
816     DWORD CompKey;
817
818     while (1) {
819         context = NULL;
820         rc = GetQueuedCompletionStatus(hComplPort, &BytesRead, &CompKey,
821                                        &pol, 1000);
822         if (!rc) {
823             rc = GetLastError();
824             if (rc == ERROR_OPERATION_ABORTED) {
825                 ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
826                              "Child %d: - Draining an ABORTED packet off "
827                              "the AcceptEx completion port.", my_pid);
828                 continue;
829             }
830             break;
831         }
832         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
833                      "Child %d: - Draining and discarding an active connection "
834                      "off the AcceptEx completion port.", my_pid);
835         context = (PCOMP_CONTEXT) pol;
836         if (context && bCleanUp) {
837             /* It is only valid to clean-up in the process that initiated the I/O */
838             closesocket(context->accept_socket);
839             CloseHandle(context->Overlapped.hEvent);
840         }
841     }
842 }
843 static int create_acceptex_context(apr_pool_t *_pconf, ap_listen_rec *lr) 
844 {
845     PCOMP_CONTEXT context;
846     DWORD BytesRead;
847     SOCKET nsd;
848     int lasterror;
849
850     /* allocate the completion context */
851     context = apr_pcalloc(_pconf, sizeof(COMP_CONTEXT));
852     if (!context) {
853         ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
854                      "create_acceptex_context: apr_pcalloc() failed. Process will exit.");
855         return -1;
856     }
857
858     /* initialize the completion context */
859     context->lr = lr;
860     context->Overlapped.hEvent = CreateEvent(NULL, TRUE, FALSE, NULL); 
861     if (context->Overlapped.hEvent == NULL) {
862         ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
863                      "create_acceptex_context: CreateEvent() failed. Process will exit.");
864         return -1;
865     }
866
867     /* create and initialize the accept socket */
868     apr_get_os_sock(&nsd, context->lr->sd);
869     context->accept_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
870     if (context->accept_socket == INVALID_SOCKET) {
871         ap_log_error(APLOG_MARK,APLOG_ERR, WSAGetLastError(), server_conf,
872                      "create_acceptex_context: socket() failed. Process will exit.");
873         return -1;
874     }
875
876     /* SO_UPDATE_ACCEPT_CONTEXT is required for shutdown() to work */
877     if (setsockopt(context->accept_socket, SOL_SOCKET,
878                    SO_UPDATE_ACCEPT_CONTEXT, (char *)&nsd,
879                    sizeof(nsd))) {
880         ap_log_error(APLOG_MARK, APLOG_ERR, WSAGetLastError(), server_conf,
881                      "setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed.");
882         /* Not a failure condition. Keep running. */
883     }
884
885     apr_create_pool(&context->ptrans, _pconf);
886     context->conn_io = ap_bcreate(context->ptrans, B_RDWR);
887     context->recv_buf = context->conn_io->inbase;
888     context->recv_buf_size = context->conn_io->bufsiz - 2*PADDED_ADDR_SIZE;
889
890
891     /* AcceptEx on the completion context. The completion context will be signaled
892      * when a connection is accepted. */
893     if (!AcceptEx(nsd, context->accept_socket,
894                   context->recv_buf, 
895                   0, //context->recv_buf_size,
896                   PADDED_ADDR_SIZE, PADDED_ADDR_SIZE,
897                   &BytesRead,
898                   (LPOVERLAPPED) context)) {
899         lasterror = WSAGetLastError();
900         if (lasterror != ERROR_IO_PENDING) {
901             ap_log_error(APLOG_MARK,APLOG_ERR, WSAGetLastError(), server_conf,
902                          "create_acceptex_context: AcceptEx failed. Process will exit.");
903             return -1;
904         }
905
906     }
907     lr->count++;
908
909     return 0;
910 }
911 static apr_inline apr_status_t reset_acceptex_context(PCOMP_CONTEXT context) 
912 {
913     DWORD BytesRead;
914     SOCKET nsd;
915     int rc, i;
916
917     /* reset the buffer pools */
918     apr_clear_pool(context->ptrans);
919     context->sock = NULL;
920     context->conn_io = ap_bcreate(context->ptrans, B_RDWR);
921     context->recv_buf = context->conn_io->inbase;
922     context->recv_buf_size = context->conn_io->bufsiz - 2*PADDED_ADDR_SIZE;
923
924     /* recreate and initialize the accept socket if it is not being reused */
925     apr_get_os_sock(&nsd, context->lr->sd);
926
927     /* AcceptEx on the completion context. The completion context will be signaled
928      * when a connection is accepted. Hack Alert: TransmitFile, under certain 
929      * circumstances, can 'recycle' accept sockets, saving the overhead of calling 
930      * socket(). Occasionally this fails (usually when the client closes his end 
931      * of the connection early). When this occurs, AcceptEx will fail with 10022, 
932      * Invalid Parameter. When this occurs, just open a fresh accept socket and 
933      * retry the call.
934      */
935     for (i=0; i<2; i++) {
936         if (context->accept_socket == INVALID_SOCKET) {
937             context->accept_socket = socket(AF_INET, SOCK_STREAM, IPPROTO_TCP);
938             if (context->accept_socket == INVALID_SOCKET) {
939                 rc = WSAGetLastError();
940                 ap_log_error(APLOG_MARK,APLOG_ERR, rc, server_conf,
941                              "reset_acceptex_context: socket() failed. Process will exit.");
942                 return rc;
943             }
944
945             /* SO_UPDATE_ACCEPT_CONTEXT is required for shutdown() to work */
946             if (setsockopt(context->accept_socket, SOL_SOCKET,
947                            SO_UPDATE_ACCEPT_CONTEXT, (char *)&nsd, sizeof(nsd))) {
948                 ap_log_error(APLOG_MARK, APLOG_WARNING, WSAGetLastError(),
949                              server_conf,
950                              "setsockopt(SO_UPDATE_ACCEPT_CONTEXT) failed.");
951             }
952         }
953
954         if (!AcceptEx(nsd, context->accept_socket, context->recv_buf, 0,
955                       PADDED_ADDR_SIZE, PADDED_ADDR_SIZE, &BytesRead, 
956                       (LPOVERLAPPED) context)) {
957             rc = WSAGetLastError();
958             if (rc != ERROR_IO_PENDING) {
959                 ap_log_error(APLOG_MARK, APLOG_INFO, rc, server_conf,
960                              "reset_acceptex_context: AcceptEx failed for "
961                              "listening socket: %d and accept socket: %d", 
962                              nsd, context->accept_socket);
963                 closesocket(context->accept_socket);
964                 context->accept_socket = INVALID_SOCKET;
965                 continue;
966             }
967         }
968         break;
969     }
970
971     context->lr->count++;
972
973     return APR_SUCCESS;
974 }
975 static PCOMP_CONTEXT winnt_get_connection(PCOMP_CONTEXT context)
976 {
977     int requests_this_child = 0;
978     int rc;
979     LPOVERLAPPED pol;
980     DWORD CompKey;
981     DWORD BytesRead;
982
983
984     if (context != NULL) {
985         if (shutdown_in_progress) {
986             /* Clean-up the AcceptEx completion context */
987             CloseHandle(context->Overlapped.hEvent);
988             if (context->accept_socket != INVALID_SOCKET)
989                 closesocket(context->accept_socket);
990         }
991         else {
992             /* Prepare the completion context for reuse */
993             if ((rc = reset_acceptex_context(context)) != APR_SUCCESS) {
994                 ap_log_error(APLOG_MARK, APLOG_CRIT, rc, server_conf,
995                              "Child %d: winnt_get_connection: reset_acceptex_context failed.",
996                              my_pid); 
997                 if (context->accept_socket != INVALID_SOCKET)
998                     closesocket(context->accept_socket);
999                 CloseHandle(context->Overlapped.hEvent);
1000                 /* Probably should just die now... */
1001             }
1002         }
1003     }
1004
1005     /* May need to atomize the workers_may_exit check with the 
1006      * g_blocked_threads++ */
1007     if (workers_may_exit) {
1008         return NULL;
1009     }
1010     g_blocked_threads++;
1011         
1012     while (1) {
1013         rc = GetQueuedCompletionStatus(AcceptExCompPort, &BytesRead, &CompKey,
1014                                        &pol, INFINITE);
1015         if (!rc) {
1016             rc = GetLastError();
1017             if (rc != ERROR_OPERATION_ABORTED) {
1018                 /* Is this a deadly condition? 
1019                  * We sometimes get ERROR_NETNAME_DELETED when a client
1020                  * disconnects when attempting to reuse sockets. Not sure why 
1021                  * we see this now and not during AcceptEx(). Reset the
1022                  * AcceptEx context and continue...
1023                  */
1024                 ap_log_error(APLOG_MARK,APLOG_INFO, rc, server_conf,
1025                              "Child %d: - GetQueuedCompletionStatus() failed", 
1026                              my_pid);
1027                 /* Reset the completion context */
1028                 if (pol) {
1029                     context = (PCOMP_CONTEXT) pol;
1030                     if (context->accept_socket != INVALID_SOCKET)
1031                         closesocket(context->accept_socket);
1032                     if ((rc = reset_acceptex_context(context)) != APR_SUCCESS) {
1033                         ap_log_error(APLOG_MARK, APLOG_CRIT, rc, server_conf,
1034                                      "Child %d: winnt_get_connection: reset_acceptex_context failed.",
1035                                      my_pid); 
1036                         if (context->accept_socket != INVALID_SOCKET)
1037                             closesocket(context->accept_socket);
1038                         CloseHandle(context->Overlapped.hEvent);
1039                         /* Probably should just die now... */
1040                     }
1041                 }
1042             }
1043             else {
1044                 /* Sometimes we catch ERROR_OPERATION_ABORTED completion packets
1045                  * from the old child process (during a restart). Ignore them.
1046                  */
1047                 ap_log_error(APLOG_MARK,APLOG_INFO, rc, server_conf,
1048                              "Child %d: - Draining ERROR_OPERATION_ABORTED packet off "
1049                              "the completion port.", my_pid);
1050             }
1051             continue;
1052         }
1053
1054         if (CompKey != 0) {
1055             /* CompKey == my_pid means this thread was unblocked by
1056              * the shutdown code (not by io completion).
1057              */
1058             if (CompKey == my_pid) {
1059                 g_blocked_threads--;
1060                 return NULL;
1061             }
1062             /* Sometimes we catch shutdown io completion packets
1063              * posted by the old child process (during a restart). Ignore them.
1064              */
1065             continue;
1066         }
1067
1068         context = (PCOMP_CONTEXT) pol;
1069         break;
1070     }
1071
1072     g_blocked_threads--;
1073
1074     /* Check to see if we need to create more completion contexts,
1075      * but only if we are not in the process of shutting down
1076      */
1077     if (!shutdown_in_progress) {
1078         apr_lock(allowed_globals.jobmutex);
1079         context->lr->count--;
1080         if (context->lr->count < 2) {
1081             SetEvent(maintenance_event);
1082         }
1083         apr_unlock(allowed_globals.jobmutex);
1084     }
1085
1086     /* Received a connection */
1087     context->conn_io->incnt = BytesRead;
1088     GetAcceptExSockaddrs(context->recv_buf, 
1089                          0, //context->recv_buf_size,
1090                          PADDED_ADDR_SIZE,
1091                          PADDED_ADDR_SIZE,
1092                          &context->sa_server,
1093                          &context->sa_server_len,
1094                          &context->sa_client,
1095                          &context->sa_client_len);
1096
1097     return context;
1098
1099 }
1100 /*
1101  * worker_main() - this is the main loop for the worker threads
1102  *
1103  * Windows 95/98
1104  * Each thread runs within this function. They wait within remove_job()
1105  * for a job to become available, then handle all the requests on that
1106  * connection until it is closed, then return to remove_job().
1107  *
1108  * The worker thread will exit when it removes a job which contains
1109  * socket number -1. This provides a graceful thread exit, since
1110  * it will never exit during a connection.
1111  *
1112  * This code in this function is basically equivalent to the child_main()
1113  * from the multi-process (Unix) environment, except that we
1114  *
1115  *  - do not call child_init_modules (child init API phase)
1116  *  - block in remove_job, and when unblocked we have an already
1117  *    accepted socket, instead of blocking on a mutex or select().
1118  */
1119
1120 static void worker_main(int child_num)
1121 {
1122     PCOMP_CONTEXT context = NULL;
1123
1124     while (1) {
1125         conn_rec *c;
1126         ap_iol *iol;
1127         apr_int32_t disconnected;
1128
1129         /* Grab a connection off the network */
1130         if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) {
1131             context = win9x_get_connection(context);
1132         }
1133         else {
1134             context = winnt_get_connection(context);
1135         }
1136
1137         if (!context)
1138             break;
1139         sock_disable_nagle(context->accept_socket);
1140         apr_put_os_sock(&context->sock, &context->accept_socket, context->ptrans);
1141
1142         iol = ap_iol_attach_socket(context->ptrans, context->sock);
1143         if (iol == NULL) {
1144             ap_log_error(APLOG_MARK, APLOG_ERR, APR_ENOMEM, server_conf,
1145                          "worker_main: attach_socket() failed. Continuing...");
1146             closesocket(context->accept_socket);
1147             continue;
1148         }
1149         ap_bpush_iol(context->conn_io, iol);
1150         c = ap_new_connection(context->ptrans, server_conf, context->conn_io,
1151                               (struct sockaddr_in *) context->sa_client,
1152                               (struct sockaddr_in *) context->sa_server,
1153                               child_num);
1154
1155         ap_process_connection(c);
1156
1157
1158         apr_getsocketopt(context->sock, APR_SO_DISCONNECTED, &disconnected);
1159         if (disconnected) {
1160             /* Kill the clean-up registered by the iol. We want to leave 
1161              * the accept socket open because we are about to try to 
1162              * reuse it
1163              */
1164             ap_bpop_iol(&iol, context->conn_io);
1165         }
1166         else {
1167             context->accept_socket = INVALID_SOCKET;
1168             ap_lingering_close(c);
1169         }
1170     }
1171
1172     ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1173                  "Child %d: Thread exiting.", my_pid);
1174 #if 0
1175
1176     SetEvent(exit_event);
1177 #endif
1178     /* TODO: Add code to clean-up completion contexts here */
1179 }
1180
1181 static void cleanup_thread(thread **handles, int *thread_cnt, int thread_to_clean)
1182 {
1183     int i;
1184
1185     CloseHandle(handles[thread_to_clean]);
1186     for (i = thread_to_clean; i < ((*thread_cnt) - 1); i++)
1187         handles[i] = handles[i + 1];
1188     (*thread_cnt)--;
1189 }
1190
1191 static void create_listeners() 
1192 {
1193 #define NUM_LISTENERS 5
1194     ap_listen_rec *lr;
1195     for (lr = ap_listeners; lr != NULL; lr = lr->next) {
1196         while (lr->count < NUM_LISTENERS) {
1197             if (create_acceptex_context(pconf, lr) == -1) {
1198                 ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
1199                              "Unable to create an AcceptEx completion context -- process will exit");
1200                 signal_parent(0);       /* tell parent to die */
1201             }
1202         }
1203     }
1204 }
1205 /*
1206  * child_main() runs the main control thread for the child process. 
1207  *
1208  * The control thread:
1209  * - sets up the worker thread pool
1210  * - starts the accept thread (Win 9x)
1211  * - creates AcceptEx contexts (Win NT)
1212  * - waits for exit_event, maintenance_event or maintenance timeout
1213  *   and does the right thing depending on which event is received.
1214  */
1215 static void child_main()
1216 {
1217     apr_status_t status;
1218     HANDLE child_events[2];
1219     char* exit_event_name;
1220     int nthreads = ap_threads_per_child;
1221     int tid;
1222     thread **child_handles;
1223     int rv;
1224     time_t end_time;
1225     int i;
1226     int cld;
1227     apr_pool_t *pchild;
1228
1229
1230     /* This is the child process or we are running in single process
1231      * mode.
1232      */
1233     exit_event_name = apr_psprintf(pconf, "apC%d", my_pid);
1234     setup_signal_names(apr_psprintf(pconf,"ap%d", parent_pid));
1235
1236     if (one_process) {
1237         /* Single process mode */
1238         apr_create_lock(&start_mutex,APR_MUTEX, APR_CROSS_PROCESS,signal_name_prefix,pconf);
1239         exit_event = CreateEvent(NULL, TRUE, FALSE, exit_event_name);
1240
1241         setup_listeners(server_conf);
1242         bind_listeners_to_completion_port();
1243     }
1244     else {
1245         /* Child process mode */
1246         apr_child_init_lock(&start_mutex, signal_name_prefix, pconf);
1247         exit_event = OpenEvent(EVENT_ALL_ACCESS, FALSE, exit_event_name);
1248         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1249                      "Child %d: exit_event_name = %s", my_pid, exit_event_name);
1250
1251         setup_inherited_listeners(server_conf);
1252     }
1253
1254     /* Initialize the child_events */
1255     maintenance_event = CreateEvent(NULL, TRUE, FALSE, NULL);
1256     child_events[0] = exit_event;
1257     child_events[1] = maintenance_event;
1258
1259     ap_assert(start_mutex);
1260     ap_assert(exit_event);
1261     ap_assert(maintenance_event);
1262
1263     apr_create_pool(&pchild, pconf);
1264     allowed_globals.jobsemaphore = create_semaphore(0);
1265     apr_create_lock(&allowed_globals.jobmutex, APR_MUTEX, APR_INTRAPROCESS, NULL, pchild);
1266
1267     /*
1268      * Wait until we have permission to start accepting connections.
1269      * start_mutex is used to ensure that only one child ever
1270      * goes into the listen/accept loop at once.
1271      */
1272     status = apr_lock(start_mutex);
1273     if (status != APR_SUCCESS) {
1274         ap_log_error(APLOG_MARK,APLOG_ERR, status, server_conf,
1275                      "Child %d: Failed to acquire the start_mutex. Process will exit.", my_pid);
1276         signal_parent(0);       /* tell parent to die */
1277         exit(0);
1278     }
1279     ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1280                  "Child %d: Acquired the start mutex.", my_pid);
1281
1282     /* Create the worker thread pool */
1283     ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1284                  "Child %d: Starting %d worker threads.", my_pid, nthreads);
1285     child_handles = (thread *) alloca(nthreads * sizeof(int));
1286     for (i = 0; i < nthreads; i++) {
1287         child_handles[i] = (thread *) _beginthreadex(NULL, 0, (LPTHREAD_START_ROUTINE) worker_main,
1288                                                      NULL, 0, &tid);
1289     }
1290
1291     /* Begin accepting connections */
1292     if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) {
1293         /* Win95/98: Start the accept thread */
1294         _beginthreadex(NULL, 0, (LPTHREAD_START_ROUTINE) accept_and_queue_connections,
1295                        (void *) i, 0, &tid);
1296     } else {
1297         /* Windows NT/2000: Create AcceptEx completion contexts */
1298         create_listeners();
1299     }
1300
1301     /* Wait for one of three events:
1302      * exit_event: 
1303      *    The exit_event is signaled by the parent process to notify 
1304      *    the child that it is time to exit.
1305      *
1306      * maintenance_event: 
1307      *    This event is signaled by the worker thread pool to direct 
1308      *    this thread to create more completion contexts.
1309      *
1310      * TIMEOUT:
1311      *    To do periodic maintenance on the server (check for thread exits,
1312      *    number of completion contexts, etc.)
1313      */
1314     while (1) {
1315         rv = WaitForMultipleObjects(2, (HANDLE *) child_events, FALSE, INFINITE);
1316         cld = rv - WAIT_OBJECT_0;
1317         if (rv == WAIT_FAILED) {
1318             /* Something serious is wrong */
1319             ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1320                          "Child %d: WAIT_FAILED -- shutting down server");
1321             break;
1322         }
1323         else if (rv == WAIT_TIMEOUT) {
1324             /* Hey, this cannot happen */
1325             ap_log_error(APLOG_MARK, APLOG_CRIT, APR_SUCCESS, server_conf,
1326                          "Child %d: WAIT_TIMEOUT -- shutting down server", my_pid);
1327             break;
1328         }
1329         else if (cld == 0) {
1330             /* Exit event was signaled */
1331             ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1332                          "Child %d: Exit event signaled. Child process is ending.", my_pid);
1333             break;
1334         }
1335         else {
1336             /* Child maintenance event signaled */
1337             if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) {
1338                 create_listeners();
1339             }
1340             ResetEvent(maintenance_event);
1341             ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1342                          "Child %d: Child maintenance event signaled.", my_pid);
1343         }
1344     }
1345
1346     /* Setting is_graceful will close keep-alive connections */
1347     is_graceful = 1;
1348
1349     /* Shutdown the worker threads */
1350     if (osver.dwPlatformId == VER_PLATFORM_WIN32_WINDOWS) {
1351         /* workers_may_exit = 1; Not used on Win9x */
1352         shutdown_in_progress = 1;
1353         for (i = 0; i < nthreads; i++) {
1354             add_job(-1);
1355         }
1356     }
1357     else { /* Windows NT/2000 */
1358         SOCKET nsd;
1359         ap_listen_rec *lr;
1360         /*
1361          * Setting shutdown_in_progress prevents new AcceptEx completion 
1362          * contexts from being queued to the port but allows threads to 
1363          * continue consuming from the port. This gives the server a 
1364          * chance to handle any accepted connections.
1365          */
1366         shutdown_in_progress = 1;
1367         Sleep(1000);
1368         
1369         /* Setting workers_may_exit prevents threads from consumimg from the 
1370          * completion port (especially threads that unblock off of keep-alive
1371          * connections later on).
1372          */
1373         workers_may_exit = 1;
1374
1375         /* Unblock threads blocked on the completion port */
1376         apr_lock(allowed_globals.jobmutex);
1377         while (g_blocked_threads > 0) {
1378             ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1379                          "Child %d: %d threads blocked on the completion port", my_pid, g_blocked_threads);
1380             for (i=g_blocked_threads; i > 0; i--) {
1381                 PostQueuedCompletionStatus(AcceptExCompPort, 0, my_pid, NULL);
1382             }
1383             Sleep(1000);
1384         }
1385         apr_unlock(allowed_globals.jobmutex);
1386
1387         /* Cancel any remaining pending AcceptEx completion contexts */
1388         for (lr = ap_listeners; lr != NULL; lr = lr->next) {
1389             apr_get_os_sock(&nsd,lr->sd);
1390             CancelIo((HANDLE) nsd);
1391         }
1392
1393         /* Drain the canceled contexts off the port */
1394         drain_acceptex_complport(AcceptExCompPort, TRUE);
1395     }
1396
1397     /* Release the start_mutex to let the new process (in the restart
1398      * scenario) a chance to begin servicing requests 
1399      */
1400     ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1401                  "Child %d: Releasing the start mutex", my_pid);
1402     apr_unlock(start_mutex);
1403
1404     /* Give busy worker threads a chance to service their connections.
1405      * Kill them off if they take too long
1406      */
1407     ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1408                  "Child %d: Waiting for %d threads to die.", my_pid, nthreads);
1409     end_time = time(NULL) + 180;
1410     while (nthreads) {
1411         rv = wait_for_many_objects(nthreads, child_handles, end_time - time(NULL));
1412         if (rv != WAIT_TIMEOUT) {
1413             rv = rv - WAIT_OBJECT_0;
1414             ap_assert((rv >= 0) && (rv < nthreads));
1415             cleanup_thread(child_handles, &nthreads, rv);
1416             continue;
1417         }
1418         break;
1419     }
1420     for (i = 0; i < nthreads; i++) {
1421         TerminateThread(child_handles[i], 1);
1422         CloseHandle(child_handles[i]);
1423     }
1424     ap_log_error(APLOG_MARK,APLOG_INFO, APR_SUCCESS, server_conf, 
1425                  "Child %d: All worker threads have ended.", my_pid);
1426
1427     CloseHandle(AcceptExCompPort);
1428     destroy_semaphore(allowed_globals.jobsemaphore);
1429     apr_destroy_lock(allowed_globals.jobmutex);
1430
1431     apr_destroy_pool(pchild);
1432     CloseHandle(exit_event);
1433 }
1434
1435 /*
1436  * Spawn a child Apache process. The child process has the command line arguments from
1437  * argc and argv[], plus a -Z argument giving the name of an event. The child should
1438  * open and poll or wait on this event. When it is signalled, the child should die.
1439  * prefix is a prefix string for the event name.
1440  * 
1441  * The child_num argument on entry contains a serial number for this child (used to create
1442  * a unique event name). On exit, this number will have been incremented by one, ready
1443  * for the next call. 
1444  *
1445  * On exit, the value pointed to be *ev will contain the event created
1446  * to signal the new child process.
1447  *
1448  * The return value is the handle to the child process if successful, else -1. If -1 is
1449  * returned the error will already have been logged by ap_log_error().
1450  */
1451
1452 /**********************************************************************
1453  * master_main - this is the parent (main) process. We create a
1454  * child process to do the work, then sit around waiting for either
1455  * the child to exit, or a restart or exit signal. If the child dies,
1456  * we just respawn a new one. If we have a shutdown or graceful restart,
1457  * tell the child to die when it is ready. If it is a non-graceful
1458  * restart, force the child to die immediately.
1459  **********************************************************************/
1460
1461 #define MAX_PROCESSES 50 /* must be < MAX_WAIT_OBJECTS-1 */
1462
1463 static void cleanup_process(HANDLE *handles, HANDLE *events, int position, int *processes)
1464 {
1465     int i;
1466     int handle = 0;
1467
1468     CloseHandle(handles[position]);
1469     CloseHandle(events[position]);
1470
1471     handle = (int)handles[position];
1472
1473     for (i = position; i < (*processes)-1; i++) {
1474         handles[i] = handles[i + 1];
1475         events[i] = events[i + 1];
1476     }
1477     (*processes)--;
1478 }
1479
1480 static int create_process(apr_pool_t *p, HANDLE *handles, HANDLE *events, int *processes)
1481 {
1482     int rv;
1483     char buf[1024];
1484     char *pCommand;
1485     char *pEnvVar;
1486     char *pEnvBlock;
1487     int i;
1488     int iEnvBlockLen;
1489     STARTUPINFO si;           /* Filled in prior to call to CreateProcess */
1490     PROCESS_INFORMATION pi;   /* filled in on call to CreateProcess */
1491
1492     ap_listen_rec *lr;
1493     DWORD BytesWritten;
1494     HANDLE hPipeRead = NULL;
1495     HANDLE hPipeWrite = NULL;
1496     SECURITY_ATTRIBUTES sa = {0};  
1497
1498     HANDLE kill_event;
1499     LPWSAPROTOCOL_INFO  lpWSAProtocolInfo;
1500     HANDLE hDupedCompPort;
1501
1502     sa.nLength = sizeof(sa);
1503     sa.bInheritHandle = TRUE;
1504     sa.lpSecurityDescriptor = NULL;
1505
1506     /* Build the command line. Should look something like this:
1507      * C:/apache/bin/apache.exe -f ap_server_confname 
1508      * First, get the path to the executable...
1509      */
1510     rv = GetModuleFileName(NULL, buf, sizeof(buf));
1511     if (rv == sizeof(buf)) {
1512         ap_log_error(APLOG_MARK, APLOG_CRIT, ERROR_BAD_PATHNAME, server_conf,
1513                      "Parent: Path to Apache process too long");
1514         return -1;
1515     } else if (rv == 0) {
1516         ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1517                      "Parent: GetModuleFileName() returned NULL for current process.");
1518         return -1;
1519     }
1520
1521     /* Build the command line */
1522     pCommand = apr_psprintf(p, "\"%s\"", buf);  
1523     for (i = 1; i < server_conf->process->argc; i++) {
1524         pCommand = apr_pstrcat(p, pCommand, " \"", server_conf->process->argv[i], "\"", NULL);
1525     }
1526
1527     /* Build the environment, since Win9x disrespects the active env */
1528     pEnvVar = apr_psprintf(p, "AP_PARENT_PID=%i", parent_pid);
1529     /*
1530      * Win32's CreateProcess call requires that the environment
1531      * be passed in an environment block, a null terminated block of
1532      * null terminated strings.
1533      */  
1534     i = 0;
1535     iEnvBlockLen = 1;
1536     while (_environ[i]) {
1537         iEnvBlockLen += strlen(_environ[i]) + 1;
1538         i++;
1539     }
1540
1541     pEnvBlock = (char *)apr_pcalloc(p, iEnvBlockLen + strlen(pEnvVar) + 1);
1542     strcpy(pEnvBlock, pEnvVar);
1543     pEnvVar = strchr(pEnvBlock, '\0') + 1;
1544
1545     i = 0;
1546     while (_environ[i]) {
1547         strcpy(pEnvVar, _environ[i]);
1548         pEnvVar = strchr(pEnvVar, '\0') + 1;
1549         i++;
1550     }
1551     pEnvVar = '\0';
1552     /* Create a pipe to send socket info to the child */
1553     if (!CreatePipe(&hPipeRead, &hPipeWrite, &sa, 0)) {
1554         ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1555                      "Parent: Unable to create pipe to child process.");
1556         return -1;
1557     }
1558
1559     /* Give the read end of the pipe (hPipeRead) to the child as stdin. The 
1560      * parent will write the socket data to the child on this pipe.
1561      */
1562     memset(&si, 0, sizeof(si));
1563     memset(&pi, 0, sizeof(pi));
1564     si.cb = sizeof(si);
1565     si.dwFlags     = STARTF_USESHOWWINDOW | STARTF_USESTDHANDLES;
1566     si.wShowWindow = SW_HIDE;
1567     si.hStdInput   = hPipeRead;
1568
1569     if (!CreateProcess(NULL, pCommand, NULL, NULL, 
1570                        TRUE,               /* Inherit handles */
1571                        CREATE_SUSPENDED,   /* Creation flags */
1572                        pEnvBlock,          /* Environment block */
1573                        NULL,
1574                        &si, &pi)) {
1575         ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1576                      "Parent: Not able to create the child process.");
1577         /*
1578          * We must close the handles to the new process and its main thread
1579          * to prevent handle and memory leaks.
1580          */ 
1581         CloseHandle(pi.hProcess);
1582         CloseHandle(pi.hThread);
1583         return -1;
1584     }
1585     
1586     ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1587                  "Parent: Created child process %d", pi.dwProcessId);
1588
1589     SetEnvironmentVariable("AP_PARENT_PID",NULL);
1590
1591     /* Create the exit_event, apCchild_pid */
1592     sa.nLength = sizeof(sa);
1593     sa.bInheritHandle = TRUE;
1594     sa.lpSecurityDescriptor = NULL;        
1595     kill_event = CreateEvent(&sa, TRUE, FALSE, apr_psprintf(pconf,"apC%d", pi.dwProcessId));
1596     if (!kill_event) {
1597         ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1598                      "Parent: Could not create exit event for child process");
1599         CloseHandle(pi.hProcess);
1600         CloseHandle(pi.hThread);
1601         return -1;
1602     }
1603     
1604     /* Assume the child process lives. Update the process and event tables */
1605     handles[*processes] = pi.hProcess;
1606     events[*processes] = kill_event;
1607     (*processes)++;
1608
1609     /* We never store the thread's handle, so close it now. */
1610     ResumeThread(pi.hThread);
1611     CloseHandle(pi.hThread);
1612  
1613     /* Run the chain of open sockets. For each socket, duplicate it 
1614      * for the target process then send the WSAPROTOCOL_INFO 
1615      * (returned by dup socket) to the child */
1616     for (lr = ap_listeners; lr; lr = lr->next) {
1617         int nsd;
1618         lpWSAProtocolInfo = apr_pcalloc(p, sizeof(WSAPROTOCOL_INFO));
1619         apr_get_os_sock(&nsd,lr->sd);
1620         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
1621                      "Parent: Duplicating socket %d and sending it to child process %d", nsd, pi.dwProcessId);
1622         if (WSADuplicateSocket(nsd, pi.dwProcessId,
1623                                lpWSAProtocolInfo) == SOCKET_ERROR) {
1624             ap_log_error(APLOG_MARK, APLOG_CRIT, h_errno, server_conf,
1625                          "Parent: WSADuplicateSocket failed for socket %d.", lr->sd );
1626             return -1;
1627         }
1628
1629         if (!WriteFile(hPipeWrite, lpWSAProtocolInfo, (DWORD) sizeof(WSAPROTOCOL_INFO),
1630                        &BytesWritten,
1631                        (LPOVERLAPPED) NULL)) {
1632             ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1633                          "Parent: Unable to write duplicated socket %d to the child.", lr->sd );
1634             return -1;
1635         }
1636         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, APR_SUCCESS, server_conf,
1637                      "Parent: BytesWritten = %d WSAProtocolInfo = %x20", BytesWritten, *lpWSAProtocolInfo);
1638     }
1639     if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) {
1640         /* Now, send the AcceptEx completion port to the child */
1641         if (!DuplicateHandle(GetCurrentProcess(), AcceptExCompPort, 
1642                              pi.hProcess, &hDupedCompPort,  0,
1643                              TRUE, DUPLICATE_SAME_ACCESS)) {
1644             ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1645                          "Parent: Unable to duplicate AcceptEx completion port. Shutting down.");
1646             return -1;
1647         }
1648
1649         WriteFile(hPipeWrite, &hDupedCompPort, (DWORD) sizeof(hDupedCompPort), &BytesWritten, (LPOVERLAPPED) NULL);
1650     }
1651     
1652     CloseHandle(hPipeRead);
1653     CloseHandle(hPipeWrite);        
1654
1655     return 0;
1656 }
1657
1658 static int master_main(server_rec *s, HANDLE shutdown_event, HANDLE restart_event)
1659 {
1660     int remaining_children_to_start = ap_daemons_to_start;
1661     int i;
1662     int rv, cld;
1663     int child_num = 0;
1664     int restart_pending = 0;
1665     int shutdown_pending = 0;
1666     int current_live_processes = 0; /* number of child process we know about */
1667
1668     HANDLE process_handles[MAX_PROCESSES];
1669     HANDLE process_kill_events[MAX_PROCESSES];
1670
1671     setup_listeners(s);
1672     bind_listeners_to_completion_port();
1673
1674     /* Create child process 
1675      * Should only be one in this version of Apache for WIN32 
1676      */
1677     while (remaining_children_to_start--) {
1678         if (create_process(pconf, process_handles, process_kill_events, 
1679                            &current_live_processes) < 0) {
1680             ap_log_error(APLOG_MARK, APLOG_CRIT, GetLastError(), server_conf,
1681                          "master_main: create child process failed. Exiting.");
1682             shutdown_pending = 1;
1683             goto die_now;
1684         }
1685     }
1686     
1687     restart_pending = shutdown_pending = 0;
1688
1689     if (!strcasecmp(signal_arg, "runservice"))
1690         mpm_service_started();
1691
1692     /* Wait for shutdown or restart events or for child death */
1693     process_handles[current_live_processes] = shutdown_event;
1694     process_handles[current_live_processes+1] = restart_event;
1695
1696     rv = WaitForMultipleObjects(current_live_processes+2, (HANDLE *)process_handles, 
1697                                 FALSE, INFINITE);
1698     cld = rv - WAIT_OBJECT_0;
1699     if (rv == WAIT_FAILED) {
1700         /* Something serious is wrong */
1701         ap_log_error(APLOG_MARK,APLOG_CRIT, GetLastError(), server_conf,
1702                      "master_main: WaitForMultipeObjects WAIT_FAILED -- doing server shutdown");
1703         shutdown_pending = 1;
1704     }
1705     else if (rv == WAIT_TIMEOUT) {
1706         /* Hey, this cannot happen */
1707         ap_log_error(APLOG_MARK, APLOG_ERR, GetLastError(), s,
1708                      "master_main: WaitForMultipeObjects with INFINITE wait exited with WAIT_TIMEOUT");
1709         shutdown_pending = 1;
1710     }
1711     else if (cld == current_live_processes) {
1712         /* shutdown_event signalled */
1713         shutdown_pending = 1;
1714         printf("shutdown event signaled\n");
1715         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, APR_SUCCESS, s, 
1716                      "master_main: Shutdown event signaled -- doing server shutdown.");
1717         if (ResetEvent(shutdown_event) == 0) {
1718             ap_log_error(APLOG_MARK, APLOG_ERR, GetLastError(), s,
1719                          "ResetEvent(shutdown_event)");
1720         }
1721
1722     }
1723     else if (cld == current_live_processes+1) {
1724         /* restart_event signalled */
1725         int children_to_kill = current_live_processes;
1726         restart_pending = 1;
1727         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, s, 
1728                      "master_main: Restart event signaled. Doing a graceful restart.");
1729         if (ResetEvent(restart_event) == 0) {
1730             ap_log_error(APLOG_MARK, APLOG_ERR, GetLastError(), s,
1731                          "master_main: ResetEvent(restart_event) failed.");
1732         }
1733         /* Signal each child process to die 
1734          * We are making a big assumption here that the child process, once signaled,
1735          * will REALLY go away. Since this is a restart, we do not want to hold the 
1736          * new child process up waiting for the old child to die. Remove the old 
1737          * child out of the process_handles apr_table_t and hope for the best...
1738          */
1739         for (i = 0; i < children_to_kill; i++) {
1740             if (SetEvent(process_kill_events[i]) == 0)
1741                 ap_log_error(APLOG_MARK, APLOG_ERR, GetLastError(), s,
1742                              "master_main: SetEvent for child process in slot #%d failed", i);
1743             cleanup_process(process_handles, process_kill_events, i, &current_live_processes);
1744         }
1745     } 
1746     else {
1747         /* A child process must have exited because of a fatal error condition (seg fault, etc.). 
1748          * Remove the dead process 
1749          * from the process_handles and process_kill_events apr_table_t and create a new
1750          * child process.
1751          * TODO: Consider restarting the child immediately without looping through http_main
1752          * and without rereading the configuration. Will need this if we ever support multiple 
1753          * children. One option, create a parent thread which waits on child death and restarts it.
1754          * Consider, however, that if the user makes httpd.conf invalid, we want to die before
1755          * our child tries it... otherwise we have a nasty loop.
1756          */
1757         restart_pending = 1;
1758         ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, APR_SUCCESS, server_conf, 
1759                      "master_main: Child process failed. Restarting the child process.");
1760         ap_assert(cld < current_live_processes);
1761         cleanup_process(process_handles, process_kill_events, cld, &current_live_processes);
1762         /* APD2("main_process: child in slot %d died", rv); */
1763         /* restart_child(process_hancles, process_kill_events, cld, &current_live_processes); */
1764
1765         /* Drain the AcceptEx completion port of any outstanding I/O pending for the dead 
1766          * process. */
1767         drain_acceptex_complport(AcceptExCompPort, FALSE);
1768     }
1769
1770 die_now:
1771     if (shutdown_pending) 
1772     {
1773         int tmstart = time(NULL);
1774         
1775         if (strcasecmp(signal_arg, "runservice")) {
1776             mpm_service_stopping();
1777         }
1778         /* Signal each child processes to die */
1779         for (i = 0; i < current_live_processes; i++) {
1780             printf("SetEvent handle = %d\n", process_kill_events[i]);
1781             if (SetEvent(process_kill_events[i]) == 0)
1782                 ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
1783                              "master_main: SetEvent for child process in slot #%d failed", i);
1784         }
1785
1786         while (current_live_processes && ((tmstart+60) > time(NULL))) {
1787             rv = WaitForMultipleObjects(current_live_processes, (HANDLE *)process_handles, FALSE, 2000);
1788             if (rv == WAIT_TIMEOUT)
1789                 continue;
1790             ap_assert(rv != WAIT_FAILED);
1791             cld = rv - WAIT_OBJECT_0;
1792             ap_assert(rv < current_live_processes);
1793             cleanup_process(process_handles, process_kill_events, cld, &current_live_processes);
1794         }
1795         for (i = 0; i < current_live_processes; i++) {
1796             ap_log_error(APLOG_MARK,APLOG_ERR|APLOG_NOERRNO, APR_SUCCESS, server_conf,
1797                          "forcing termination of child #%d (handle %d)", i, process_handles[i]);
1798             TerminateProcess((HANDLE) process_handles[i], 1);
1799         }
1800         return 0;  /* Tell the caller we do not want to restart */
1801     }
1802
1803     return 1;      /* Tell the caller we want a restart */
1804 }
1805
1806
1807 #define SERVICE_UNNAMED -1
1808
1809 /* service_nt_main_fn needs to append the StartService() args 
1810  * outside of our call stack and thread as the service starts...
1811  */
1812 apr_array_header_t *mpm_new_argv;
1813
1814 /* Remember service_to_start failures to log and fail in pre_config.
1815  * Remember inst_argc and inst_argv for installing or starting the
1816  * service after we preflight the config.
1817  */
1818
1819 static apr_status_t service_to_start_success;
1820 static int inst_argc;
1821 static char **inst_argv;
1822     
1823 void winnt_rewrite_args(process_rec *process) 
1824 {
1825     /* Handle the following SCM aspects in this phase:
1826      *
1827      *   -k runservice [transition for WinNT, nothing for Win9x]
1828      *   -k (!)install [error out if name is not installed]
1829      *
1830      * We can't leave this phase until we know our identity
1831      * and modify the command arguments appropriately.
1832      */
1833     apr_status_t service_named = SERVICE_UNNAMED;
1834     apr_status_t rv;
1835     char *def_server_root;
1836     char fnbuf[MAX_PATH];
1837     char optbuf[3];
1838     const char *optarg;
1839     const char **new_arg;
1840     int fixed_args;
1841     char *pid;
1842     apr_getopt_t *opt;
1843
1844     one_process = !!getenv("ONE_PROCESS");
1845
1846     osver.dwOSVersionInfoSize = sizeof(OSVERSIONINFO);
1847     GetVersionEx(&osver);
1848
1849     /* AP_PARENT_PID is only valid in the child */
1850     pid = getenv("AP_PARENT_PID");
1851     if (pid) 
1852     {
1853         /* This is the child */
1854         parent_pid = (DWORD) atol(pid);
1855         my_pid = GetCurrentProcessId();
1856
1857         /* The parent is responsible for providing the
1858          * COMPLETE ARGUMENTS REQUIRED to the child.
1859          *
1860          * No further argument parsing is needed, but
1861          * for good measure we will provide a simple
1862          * signal string for later testing.
1863          */
1864         signal_arg = "runchild";
1865         return;
1866     }
1867     
1868     /* This is the parent, we have a long way to go :-) */
1869     parent_pid = my_pid = GetCurrentProcessId();
1870     
1871     /* Rewrite process->argv[]; 
1872      *
1873      * strip out -k signal into signal_arg
1874      * strip out -n servicename into service_name & display_name
1875      * add default -d serverroot from the path of this executable
1876      * 
1877      * The end result will look like:
1878      *
1879      * The invocation command (%0)
1880      *     The -d serverroot default from the running executable
1881      *         The requested service's (-n) registry ConfigArgs
1882      *             The WinNT SCM's StartService() args
1883      */
1884
1885     if (!GetModuleFileName(NULL, fnbuf, sizeof(fnbuf))) {
1886         /* WARNING: There is an implict assumption here that the
1887          * executable resides in the ServerRoot!
1888          */
1889         rv = GetLastError();
1890         ap_log_error(APLOG_MARK,APLOG_ERR, rv, NULL, 
1891                      "Failed to get the running module's file name");
1892         exit(1);
1893     }
1894     def_server_root = (char *) apr_filename_of_pathname(fnbuf);
1895     if (def_server_root > fnbuf) {
1896         *(def_server_root - 1) = '\0';
1897         def_server_root = ap_os_canonical_filename(process->pool, fnbuf);
1898     }
1899
1900     /* Use process->pool so that the rewritten argv
1901      * lasts for the lifetime of the server process,
1902      * because pconf will be destroyed after the 
1903      * initial pre-flight of the config parser.
1904      */
1905
1906     mpm_new_argv = apr_make_array(process->pool, process->argc + 2, sizeof(char *));
1907     new_arg = (char**) apr_push_array(mpm_new_argv);
1908     *new_arg = (char *) process->argv[0];
1909     
1910     new_arg = (char**) apr_push_array(mpm_new_argv);
1911     *new_arg = "-d";
1912     new_arg = (char**) apr_push_array(mpm_new_argv);
1913     *new_arg = def_server_root;
1914
1915     fixed_args = mpm_new_argv->nelts;
1916
1917     optbuf[0] = '-'; optbuf[2] = '\0';
1918     apr_initopt(&opt, process->pool, process->argc, (char**) process->argv);
1919     while (apr_getopt(opt, "n:k:iu" AP_SERVER_BASEARGS, 
1920                       optbuf + 1, &optarg) == APR_SUCCESS) {
1921         switch (optbuf[1]) {
1922         case 'n':
1923             service_named = mpm_service_set_name(process->pool, optarg);
1924             break;
1925         case 'k':
1926             signal_arg = optarg;
1927             break;
1928         case 'i':
1929             /* TODO: warn of depreciated syntax, "use -k install instead" */
1930             signal_arg = "install";
1931             break;
1932         case 'u':
1933             /* TODO: warn of depreciated syntax, "use -k uninstall instead" */
1934             signal_arg = "uninstall";
1935             break;
1936         default:
1937             optbuf[1] = (char) opt;
1938             new_arg = (char**) apr_push_array(mpm_new_argv);
1939             *new_arg = apr_pstrdup(process->pool, optbuf);
1940             if (optarg) {
1941                 new_arg = (char**) apr_push_array(mpm_new_argv);
1942                 *new_arg = optarg;
1943             }
1944             break;
1945         }
1946     }
1947     
1948     /* Track the number of args actually entered by the user */
1949     inst_argc = mpm_new_argv->nelts - fixed_args;
1950
1951     /* Provide a default 'run' -k arg to simplify signal_arg tests */
1952     if (!signal_arg)
1953         signal_arg = "run";
1954
1955     if (!strcasecmp(signal_arg, "runservice")) 
1956     {
1957         /* Start the NT Service _NOW_ because the WinNT SCM is 
1958          * expecting us to rapidly assume control of our own 
1959          * process, the SCM will tell us our service name, and
1960          * may have extra StartService() command arguments to
1961          * add for us.
1962          *
1963          * Any other process has a console, so we don't to begin
1964          * a Win9x service until the configuration is parsed and
1965          * any command line errors are reported.
1966          *
1967          * We hold the return value so that we can die in pre_config
1968          * after logging begins, and the failure can land in the log.
1969          */
1970         if (osver.dwPlatformId == VER_PLATFORM_WIN32_NT) {
1971             service_to_start_success = mpm_service_to_start();
1972             if (service_to_start_success == APR_SUCCESS)
1973                 service_named = APR_SUCCESS;
1974         }
1975     }
1976
1977     if (service_named == SERVICE_UNNAMED) {
1978         service_named = mpm_service_set_name(process->pool, 
1979                                              DEFAULT_SERVICE_NAME);
1980     }
1981
1982     if (!strcasecmp(signal_arg, "install")) /* -k install */
1983     {
1984         if (service_named == APR_SUCCESS) 
1985         {
1986             ap_log_error(APLOG_MARK,APLOG_ERR, 0, NULL,
1987                  "%s: Service is already installed.", display_name);
1988             exit(1);
1989         }
1990     }
1991     else
1992     {
1993         if (service_named == APR_SUCCESS) 
1994         {
1995             rv = mpm_merge_service_args(process->pool, mpm_new_argv, 
1996                                         fixed_args);
1997             if (rv != APR_SUCCESS) {
1998                 ap_log_error(APLOG_MARK,APLOG_ERR, rv, NULL,
1999                              "%s: ConfigArgs are missing from the registry.",
2000                              display_name);
2001             }
2002         }
2003         else
2004         {
2005             ap_log_error(APLOG_MARK,APLOG_ERR, 0, NULL,
2006                  "%s: No installed service by that name.", display_name);
2007             exit(1);
2008         }
2009     }
2010     
2011     /* Track the args actually entered by the user.
2012      * These will be used for the -k install parameters, as well as
2013      * for the -k start service override arguments.
2014      */
2015     inst_argv = (char**) mpm_new_argv->elts + mpm_new_argv->nelts - inst_argc;
2016
2017     process->argc = mpm_new_argv->nelts; 
2018     process->argv = (char**) mpm_new_argv->elts;
2019 }
2020
2021
2022 static void winnt_pre_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp) 
2023 {
2024     /* Handle the following SCM aspects in this phase:
2025      *
2026      *   -k runservice [WinNT errors logged from rewrite_args]
2027      *   -k uninstall
2028      *   -k stop
2029      *
2030      * in these cases we -don't- care if httpd.conf has config errors!
2031      */
2032     apr_status_t rv;
2033
2034     if (!strcasecmp(signal_arg, "runservice")
2035             && (osver.dwPlatformId == VER_PLATFORM_WIN32_NT)
2036             && (service_to_start_success != APR_SUCCESS)) {
2037         ap_log_error(APLOG_MARK,APLOG_ERR, service_to_start_success, NULL, 
2038                      "%s: Unable to start the service manager.",
2039                      display_name);
2040         exit(1);
2041     }
2042
2043     if (!strcasecmp(signal_arg, "uninstall")) {
2044         rv = mpm_service_uninstall();
2045         exit(rv);
2046     }
2047
2048     if (!strcasecmp(signal_arg, "stop")) {
2049         mpm_signal_service(ptemp, 0);
2050         exit(0);
2051     }
2052
2053     ap_listen_pre_config();
2054     ap_daemons_to_start = DEFAULT_NUM_DAEMON;
2055     ap_threads_per_child = DEFAULT_START_THREAD;
2056     ap_pid_fname = DEFAULT_PIDLOG;
2057     max_requests_per_child = DEFAULT_MAX_REQUESTS_PER_CHILD;
2058
2059     apr_cpystrn(ap_coredump_dir, ap_server_root, sizeof(ap_coredump_dir));
2060 }
2061
2062 static void winnt_post_config(apr_pool_t *pconf, apr_pool_t *plog, apr_pool_t *ptemp, server_rec* server)
2063 {
2064     static int restart_num = 0;
2065     apr_status_t rv = 0;
2066
2067     server_conf = server;
2068     
2069     /* Handle the following SCM aspects in this phase:
2070      *
2071      *   -k install
2072      *   -k start
2073      *   -k restart
2074      *   -k runservice [Win95, only once - after we parsed the config]
2075      *
2076      * because all of these signals are useful _only_ if there
2077      * is a valid conf\httpd.conf environment to start.
2078      *
2079      * We reached this phase by avoiding errors that would cause
2080      * these options to fail unexpectedly in another process.
2081      */
2082
2083     if (!strcasecmp(signal_arg, "install")) {
2084         rv = mpm_service_install(ptemp, inst_argc, inst_argv);
2085         exit (rv);
2086     }
2087
2088     if (!strcasecmp(signal_arg, "start")) {
2089         rv = mpm_service_start(ptemp, inst_argc, inst_argv);
2090         exit (rv);
2091     }
2092
2093     if (!strcasecmp(signal_arg, "restart")) {
2094         mpm_signal_service(ptemp, 1);
2095         exit (rv);
2096     }
2097
2098     if (parent_pid == my_pid) 
2099     {
2100         if (restart_num++ == 1) 
2101         {
2102             /* This code should be run once in the parent and not run
2103              * across a restart
2104              */
2105             PSECURITY_ATTRIBUTES sa = GetNullACL();  /* returns NULL if invalid (Win95?) */
2106             setup_signal_names(apr_psprintf(pconf,"ap%d", parent_pid));
2107             if (osver.dwPlatformId != VER_PLATFORM_WIN32_WINDOWS) {
2108                 /* Create the AcceptEx IoCompletionPort once in the parent.
2109                  * The completion port persists across restarts. 
2110                  */
2111                 AcceptExCompPort = CreateIoCompletionPort(INVALID_HANDLE_VALUE,
2112                                                           NULL,
2113                                                           0,
2114                                                           0); /* CONCURRENT ACTIVE THREADS */
2115                 if (AcceptExCompPort == NULL) {
2116                     ap_log_error(APLOG_MARK,APLOG_ERR, GetLastError(), server_conf,
2117                                  "Parent: Unable to create the AcceptExCompletionPort -- process will exit");
2118                     exit(1);
2119                 }
2120             }
2121
2122             ap_log_pid(pconf, ap_pid_fname);
2123             
2124             /* Create shutdown event, apPID_shutdown, where PID is the parent 
2125              * Apache process ID. Shutdown is signaled by 'apache -k shutdown'.
2126              */
2127             shutdown_event = CreateEvent(sa, FALSE, FALSE, signal_shutdown_name);
2128             if (!shutdown_event) {
2129                 ap_log_error(APLOG_MARK, APLOG_EMERG, GetLastError(), server_conf,
2130                              "Parent: Cannot create shutdown event %s", signal_shutdown_name);
2131                 CleanNullACL((void *)sa);
2132                 exit(1);
2133             }
2134
2135             /* Create restart event, apPID_restart, where PID is the parent 
2136              * Apache process ID. Restart is signaled by 'apache -k restart'.
2137              */
2138             restart_event = CreateEvent(sa, FALSE, FALSE, signal_restart_name);
2139             if (!restart_event) {
2140                 CloseHandle(shutdown_event);
2141                 ap_log_error(APLOG_MARK, APLOG_EMERG, GetLastError(), server_conf,
2142                              "Parent: Cannot create restart event %s", signal_restart_name);
2143                 CleanNullACL((void *)sa);
2144                 exit(1);
2145             }
2146             CleanNullACL((void *)sa);
2147
2148             /* Now that we are flying at 15000 feet... 
2149              * wipe out the Win95 service console,
2150              * signal the SCM the WinNT service started, or
2151              * if not a service, setup console handlers instead.
2152              */
2153             if (!strcasecmp(signal_arg, "runservice"))
2154             {
2155                 if (osver.dwPlatformId != VER_PLATFORM_WIN32_NT) 
2156                 {
2157                     rv = mpm_service_to_start();
2158                     if (rv != APR_SUCCESS) {
2159                         ap_log_error(APLOG_MARK,APLOG_ERR, rv, server_conf,
2160                                      "%s: Unable to start the service manager.",
2161                                      display_name);
2162                         exit(1);
2163                     }            
2164                 }
2165             }
2166             else /* ! -k runservice */
2167             {
2168                 mpm_start_console_handler();
2169             }
2170
2171             /* Create the start mutex, apPID, where PID is the parent Apache process ID.
2172              * Ths start mutex is used during a restart to prevent more than one 
2173              * child process from entering the accept loop at once.
2174              */
2175             apr_create_lock(&start_mutex,APR_MUTEX, APR_CROSS_PROCESS, signal_name_prefix,
2176                                server_conf->process->pool);
2177         }
2178     }
2179     else /* parent_pid != my_pid */
2180     {
2181         mpm_start_child_console_handler();
2182     }
2183 }
2184
2185 API_EXPORT(int) ap_mpm_run(apr_pool_t *_pconf, apr_pool_t *plog, server_rec *s )
2186 {
2187     static int restart = 0;            /* Default is "not a restart" */
2188
2189     pconf = _pconf;
2190     server_conf = s;
2191
2192     if ((parent_pid != my_pid) || one_process) {
2193         /* Running as Child process or in one_process (debug) mode */
2194         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
2195                      "Child %d: Child process is running", my_pid);
2196         child_main();
2197         ap_log_error(APLOG_MARK, APLOG_INFO, APR_SUCCESS, server_conf,
2198                      "Child %d: Child process is exiting", my_pid);        
2199
2200         return 1;
2201     }  /* Child or single process */
2202     else { /* Parent process */
2203         restart = master_main(server_conf, shutdown_event, restart_event);
2204
2205         if (!restart) {
2206             /* Shutting down. Clean up... */
2207             const char *pidfile = ap_server_root_relative (pconf, ap_pid_fname);
2208
2209             if (pidfile != NULL && unlink(pidfile) == 0) {
2210                 ap_log_error(APLOG_MARK, APLOG_NOERRNO|APLOG_INFO, APR_SUCCESS,
2211                              server_conf, "removed PID file %s (pid=%ld)",
2212                              pidfile, GetCurrentProcessId());
2213             }
2214             apr_destroy_lock(start_mutex);
2215
2216             CloseHandle(restart_event);
2217             CloseHandle(shutdown_event);
2218
2219             return 1;
2220         }
2221     }  /* Parent process */
2222
2223     return 0; /* Restart */
2224 }
2225
2226 static void winnt_hooks(void)
2227 {
2228     one_process = 0;
2229     ap_hook_pre_config(winnt_pre_config, NULL, NULL, AP_HOOK_MIDDLE);
2230     ap_hook_post_config(winnt_post_config, NULL, NULL, 0);
2231 }
2232
2233 /* 
2234  * Command processors 
2235  */
2236 static const char *set_pidfile(cmd_parms *cmd, void *dummy, char *arg) 
2237 {
2238     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
2239     if (err != NULL) {
2240         return err;
2241     }
2242
2243     if (cmd->server->is_virtual) {
2244         return "PidFile directive not allowed in <VirtualHost>";
2245     }
2246     ap_pid_fname = arg;
2247     return NULL;
2248 }
2249
2250 static const char *set_threads_per_child (cmd_parms *cmd, void *dummy, char *arg) 
2251 {
2252     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
2253     if (err != NULL) {
2254         return err;
2255     }
2256
2257     ap_threads_per_child = atoi(arg);
2258     if (ap_threads_per_child > HARD_THREAD_LIMIT) {
2259         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
2260                      "WARNING: ThreadsPerChild of %d exceeds compile time"
2261                      " limit of %d threads,", ap_threads_per_child, 
2262                      HARD_THREAD_LIMIT);
2263         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL,
2264                      " lowering ThreadsPerChild to %d. To increase, please"
2265                      " see the  HARD_THREAD_LIMIT define in %s.", 
2266                      HARD_THREAD_LIMIT, AP_MPM_HARD_LIMITS_FILE);
2267         ap_threads_per_child = HARD_THREAD_LIMIT;
2268     }
2269     else if (ap_threads_per_child < 1) {
2270         ap_log_error(APLOG_MARK, APLOG_STARTUP | APLOG_NOERRNO, 0, NULL, 
2271                      "WARNING: Require ThreadsPerChild > 0, setting to 1");
2272         ap_threads_per_child = 1;
2273     }
2274     return NULL;
2275 }
2276
2277
2278 static const char *set_max_requests(cmd_parms *cmd, void *dummy, char *arg) 
2279 {
2280     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
2281     if (err != NULL) {
2282         return err;
2283     }
2284
2285     max_requests_per_child = atoi(arg);
2286
2287     return NULL;
2288 }
2289
2290 static const char *set_coredumpdir (cmd_parms *cmd, void *dummy, char *arg) 
2291 {
2292     apr_finfo_t finfo;
2293     const char *fname;
2294     const char *err = ap_check_cmd_context(cmd, GLOBAL_ONLY);
2295     if (err != NULL) {
2296         return err;
2297     }
2298
2299     fname = ap_server_root_relative(cmd->pool, arg);
2300     if ((apr_stat(&finfo, fname, cmd->pool) != APR_SUCCESS) || 
2301         (finfo.filetype != APR_DIR)) {
2302         return apr_pstrcat(cmd->pool, "CoreDumpDirectory ", fname, 
2303                           " does not exist or is not a directory", NULL);
2304     }
2305     apr_cpystrn(ap_coredump_dir, fname, sizeof(ap_coredump_dir));
2306     return NULL;
2307 }
2308
2309 /* Stub functions until this MPM supports the connection status API */
2310
2311 API_EXPORT(void) ap_update_connection_status(long conn_id, const char *key, \
2312                                              const char *value)
2313 {
2314     /* NOP */
2315 }
2316
2317 API_EXPORT(void) ap_reset_connection_status(long conn_id)
2318 {
2319     /* NOP */
2320 }
2321
2322 API_EXPORT(apr_array_header_t *) ap_get_status_table(apr_pool_t *p)
2323 {
2324     /* NOP */
2325     return NULL;
2326 }
2327
2328 static const command_rec winnt_cmds[] = {
2329 LISTEN_COMMANDS
2330 { "PidFile", set_pidfile, NULL, RSRC_CONF, TAKE1,
2331     "A file for logging the server process ID"},
2332 { "ThreadsPerChild", set_threads_per_child, NULL, RSRC_CONF, TAKE1,
2333   "Number of threads each child creates" },
2334 { "MaxRequestsPerChild", set_max_requests, NULL, RSRC_CONF, TAKE1,
2335   "Maximum number of requests a particular child serves before dying." },
2336 { "CoreDumpDirectory", set_coredumpdir, NULL, RSRC_CONF, TAKE1,
2337   "The location of the directory Apache changes to before dumping core" },
2338 { NULL }
2339 };
2340
2341 MODULE_VAR_EXPORT module mpm_winnt_module = {
2342     MPM20_MODULE_STUFF,
2343     winnt_rewrite_args,         /* hook to run before apache parses args */
2344     NULL,                       /* create per-directory config structure */
2345     NULL,                       /* merge per-directory config structures */
2346     NULL,                       /* create per-server config structure */
2347     NULL,                       /* merge per-server config structures */
2348     winnt_cmds,                 /* command apr_table_t */
2349     NULL,                       /* handlers */
2350     winnt_hooks                 /* register_hooks */
2351 };