]> granicus.if.org Git - apache/blob - STATUS
I just tried to do a graceful restart while pounding my box with worker
[apache] / STATUS
1 APACHE 2.0 STATUS:                                              -*-text-*-
2 Last modified at [$Date: 2002/02/27 04:53:58 $]
3
4 Release:
5
6     2.0.33  : in development
7     2.0.32  : released Feburary 16, 2002.
8     2.0.31  : rolled Feburary 1, 2002.  not released.
9     2.0.30  : tagged January 8, 2002.  not rolled.
10     2.0.29  : tagged November 27, 2001.  not rolled.
11     2.0.28  : released November 13, 2001
12     2.0.27  : rolled November 6, 2001
13     2.0.26  : tagged October 16, 2001.  not rolled.
14     2.0.25  : rolled August 29, 2001
15     2.0.24  : rolled August 18, 2001
16     2.0.23  : rolled August 9, 2001
17     2.0.22  : rolled July 29, 2001
18     2.0.21  : rolled July 20, 2001
19     2.0.20  : rolled July 8, 2001
20     2.0.19  : rolled June 27, 2001
21     2.0.18  : rolled May 18, 2001
22     2.0.17  : rolled April 17, 2001
23     2.0.16  : rolled April 4, 2001
24     2.0.15  : rolled March 21, 2001
25     2.0.14  : rolled March 7, 2001
26     2.0a9   : released December 12, 2000
27     2.0a8   : released November 20, 2000
28     2.0a7   : released October 8, 2000
29     2.0a6   : released August 18, 2000
30     2.0a5   : released August 4, 2000
31     2.0a4   : released June 7, 2000
32     2.0a3   : released April 28, 2000
33     2.0a2   : released March 31, 2000
34     2.0a1   : released March 10, 2000
35
36 Please consult the following STATUS files for information
37 on related projects:
38
39     * srclib/apr/STATUS
40     * srclib/apr-util/STATUS
41     * docs/STATUS
42
43
44 CURRENT RELEASE NOTES:
45
46     * 32 status: Released as beta.  Enjoy.
47
48 FINAL RELEASE SHOWSTOPPERS:
49
50     * All ap_internal_fast_redirect()ed requests are losing their filters
51       and output headers.  mod_negotiation derived Multiviewed documents
52       and mod_dir DirectoryIndex documents both demonstrate this behavior.
53         cf reply:  <007c01c1b3d1$46714650$94c0b0d0@v505>
54         to thread: <200202121332.IAA27467@web.turner.com>
55       Solutions:
56         Ditch fast_redirect, it was bogus in 1.3 and it's bogus now.
57           In Agreement? : Justin, Aaron
58         Fix [and *Maintain*] fast_redirect, it was useful to our redirects
59         in negotiation and dir, and it's useful to 3rd parties.
60           In Agreement? :
61
62     * If any request gets to the core handler, without a flag that this 
63       r->filename was tested by dir/file_walk, we need to 500 at the very 
64       end of the ap_process_request_internal() processing.  This provides
65       authors of older modules better compatibility, while still improving
66       the security and robustness of 2.0. 
67         Status: still need to decide where this goes, OtherBill comments...
68         Message-ID: <065701c14526$495203b0$96c0b0d0@roweclan.net>
69         we need to look at halting this in the 'default handler' case,
70         and that implies pushing the 'handler election' into the request
71         internal processing phase from the run request phase.
72
73     * We need to find out the right place to add the AddOutputFilterByType
74       directive.  mod_mime?  No.  core with fixups?  That's what it is now.
75       ap_pass_brigade() hook?  As a filter that runs at HTTP_HEADER stage?
76       This needs to be resolved before the next public release.
77         Message-ID: <018701c1b99c$f0f24310$0a01230a@KOJ>
78         
79     * API changes planned for 2.0 that should happen before the
80       GA release:
81           * Free lists for bucket allocation
82
83     * Graceful restart is broken in the worker MPM.
84         Message-ID: <m3g03tnrkv.fsf@rdu163-40-092.nc.rr.com>
85       Justin asks: "Is this fixed?  I can't reproduce now."
86
87 CURRENT VOTES:
88
89     * Should we always build binaries statically unless otherwise
90       indicated?
91         Message-ID: <20020129210006.B23512@Lithium.MeepZor.Com>
92
93       +1:  Ken
94       -1:  Justin, Ian
95         
96     * If the parent process dies, should the remaining child processes
97       "gracefully" self-terminate. Or maybe we should make it a runtime
98       option, or have a concept of 2 parent processes (one being a 
99       "hot spare").
100       See: Message-ID: <3C58232C.FE91F19F@Golux.Com>
101
102       Self-destruct: Ken, Martin
103       Not self-destruct: BrianP, Ian, Cliff, BillS
104       Make it runtime configurable: Aaron, Jim, Justin
105       Have 2 parents: +1: Jim
106                       -1: Justin
107                       +0: Martin (while standing by, could it do
108                                   something useful?)
109
110     * Make the worker MPM the default MPM for threaded Unix boxes.
111       +1:   Justin, Ian, Cliff
112       -0:   Aaron (premature decision, needs more discussion), Lars
113
114 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
115
116     * Convert all instances of the old apr_lock_t type to the new
117       types.
118         Status: Aaron has converted all but the perchild MPM to
119                 use the new lock API. Since perchild has been put
120                 on the back burner, this is no longer a showstopper.
121                 Aaron will patch perchild as soon as it becomes
122                 buildable again.
123
124     * With AP_MODE_EXHAUSTIVE in the core, it is finally clear to me
125       how the Perchild MPM should be re-written.  It hasn't worked
126       correctly since filters were added because it wasn't possible to
127       get the content that had already been written and the socket at
128       the same time.  This mode lets us do that, so the MPM can be
129       fixed.
130
131     * htpasswd blindly processes the file you give it, and does no
132       sanity checking before totally corrupting whatever file it was
133       you thought you had. It should check the input file and bail
134       if it finds non-comment lines that do not contain exactly 1
135       ':' character.
136         Message-ID: <20020217150457.A31632@clove.org>
137
138     * Can a static httpd be built reliably?
139         Message-ID: <20020207142751.T31582@clove.org>
140
141     * [Ken] Test suite failures:
142       o worker is also failing some of the 'cgi' subtests
143       (see <URL:http://Source-Zone.Org/Apache/regression/>):
144         Justin says: "Worker should be fine and passes httpd-test here.
145                       If you can provide evidence that it can be reproduced
146                       outside of httpd-test, then it's a showstopper.  I
147                       think it's a perl or a httpd-test problem."
148         Not a showstopper: Justin
149
150     * Usage of APR_BRIGADE_NORMALIZE in core_input_filter should be
151       removed if possible.
152         Message-ID: <Pine.LNX.4.33.0201202232430.318-100000@deepthought.cs.virginia.edu>
153         
154     * There is a bug in how we sort some hooks, at least the pre-config
155       hook.  The first time we call the hooks, they are in the correct 
156       order, but the second time, we don't sort them correctly.  Currently,
157       the modules/http/config.m4 file has been renamed to 
158       modules/http/config2.m4 to work around this problem, it should moved
159       back when this is fixed.    rbb
160         Justin says: "Is this really a showstopper?  This has been here
161                       forever.  What's wrong?  Does this have to do with
162                       autoconf or m4?"
163         Not a showstopper: Justin, BrianP, trawick, gregames
164
165     * The Add...Filter and Set...Filter directives do not allow the
166       administrator to order filters, beyond the order of filename (mime)
167       extensions.  It isn't clear if Set...Filter(s) should be inserted 
168       before or after the Add...Filter(s) which are ordered by sequence of
169       filename extensions.  At minimum, some sort of +-[0-10] syntax seems
170       like the quickest fix for a 2.0 gold release.
171         Justin says: "Could we delay this for a point release or 2.1?"
172         Not a showstopper: justin, wrowe, trawick, stoddard, Jim, Ian, Aaron,
173                            gregames
174
175     * Get perchild to work on platforms other than Linux. This
176       will require a portable mechanism to pass data and file/socket
177       descriptors between vhost child groups. An API was proposed
178       on dev@apr:
179         Message-ID: <20020111115006.K1529@clove.org>
180
181     * Recent changes to ap_rgetline may have broken EBCDIC boxes.
182         Message-ID: <20020122072605.GF28051@ebuilt.com>
183         Justin says: "I don't have an EBCDIC box to test on.  A potential
184                       solution is to split out ap_rgetline into two
185                       functions as described in this message."
186         gregames says: I see the breakage now, and volunteer to fix it
187                        when things calm down a little.  It looks OK when 
188                        there are complete lines and no mime continuations.
189
190     * CGI single-byte reads
191       BrianP suggests that this is caused by the ap_scan_script_header_err()
192       routine, which will do single-byte reads until it finds the end
193       of the header, at which point it constructs a pipe-bucket (buffered)
194       to read from.
195       Proposed solution in:
196         Message-ID: <3C36ADAF.60601@cnet.com>
197
198     * Try to get libtool inter-library dependency code working on AIX.
199         Message-ID: <cm3n10lx555.fsf@rdu163-40-092.nc.rr.com>
200
201       Justin says: If we get it working on AIX, we can enable this
202                    on all platforms and clean up our build system
203                    somewhat.
204       Jeff says:   I thought I tested a patch for you sometime in
205                    January that you were going to commit within a few
206                    days.
207
208     * Handling of %2f in URIs.  Currently both 1.3 and 2.0
209       completely disallow %2f in the request URI path (see
210       ap_unescape_url() in util.c).  It's permitted and passed
211       through in the query string, however.  Roy says the
212       original reason for disallowing it, from five years ago,
213       was to protect CGI scripts that applied PATH_INFO to
214       a filesystem location and which might be tricked by
215       ..%2f..%2f(...).  We *should* allow path-info of the
216       form 'http://foo.com/index.cgi/path/to/path%2finfo'.
217       Since we've revamped a lot of our processing of path
218       segments, it would be nice to allow this, or at least
219       allow it conditionally with a directive.
220
221     * FreeBSD, threads, and worker MPM.  All seems to work fine 
222       if you only have one worker process with many threads.  Add 
223       a second worker process and the accept lock seems to be
224       lost.  This might be an APR issue with how it deals with
225       the child_init hook (i.e. the fcntl lock needs to be resynced).
226       More examination and analysis is required.
227         Status: This has also been reported on Cygwin.  
228         Message-ID: <3C2CC514.8EF3BED1@wapme-systems.de> (cygnus)
229
230       Justin says: So, FreeBSD-CURRENT and Cywin have the same 
231                    problem.  Yum.  If another platform has this
232                    with worker, this becomes a showstopper.
233       Aaron says: I spent some time disecting this and have come to
234               the conclusion that it is not a problem in the worker MPM
235               (or at least, it is not isolated to a problem in worker).
236               I'll list some of the problems I'm seeing in case someone
237               else wants to pick up where I've left off:
238                - Delivery of just about any signal to one of the child
239                  processes will send it into an infinite loop as well.
240                - Even though the parent is spinning out of control,
241                  at first the child or children will appear to work
242                  properly. At times it is possible to get it into a state,
243                  however, where a request will hang until another concurrent
244                  request "kicks" the first, at which point the second will
245                  hang. My theory is that this has to do with the
246                  pthread_cond_*() implementation in FreeBSD, but it's still
247                  possible that it is in APR.
248       
249       Justin adds: Oh, FreeBSD threads are implemented entirely with 
250                    select()/poll()/longjmp().  Welcome to the nightmare.
251                    So, that means a ktrace output also has the thread 
252                    scheduling internals in it (since it is all the same to 
253                    the kernel).  Which makes it hard to distinguish between 
254                    our select() calls and their select() calls.  
255                    *bangs head on wall repeatedly*  But, some of the libc_r 
256                    files have a DBG_MSG #define.  This is moderately helpful
257                    when used with -DNO_DETACH.  The kernel scheduler isn't 
258                    waking up the threads on a select().  Yum.  And, I bet 
259                    those decrementing select calls have to do with the 
260                    scheduler.  Time to brush up on our OS fundamentals.
261
262     * There is increasing demand from module writers for an API
263       that will allow them to control the server Ã  la apachectl.
264       Reasons include sole-function servers that need to die if
265       an external dependency (e.g., a database) fails, et cetera.
266       Perhaps something in the (ever more abused) scoreboard?
267         rbb: I don't believe the scoreboard is the correct mechanism
268              for this.  We already have a pipe that goes between parent
269              and child for graceful shutdown events, along with an API that
270              can be used to send a message down that pipe.  In threaded MPMs,
271              it is easy enough to make that one pipe be used for graceful
272              and graceless events, and it is also easy to open that pipe
273              to both parent and child for writing.  Then we just need to
274              figure out how to do graceless on non-threaded MPMs.
275
276     * Allow the DocumentRoot directive within <Location > scopes?  This
277       allows the beloved (crusty) Alias /foo/ /somepath/foo/ followed
278       by a <Directory /somepath/foo> to become simply 
279       <Location /foo/> DocumentRoot /somefile/foo (IMHO a bit more legible
280       and in-your-face.)  DocumentRoot unset would be accepted [and would
281       not permit content to be served, only virtual resources such as
282       server-info or server-status.
283         This proposed change would _not_ depricate Alias.
284
285     * Win32: Rotatelogs sometimes is not terminated when Apache
286       goes down hard.  FirstBill was looking at possibly tracking the 
287       child's-child processes in the parent process.
288         OtherBill asks, wasn't this fixed? 
289         stoddard: Not fixed. Shared scoreboard might offer a good
290         way for the parent to keep track of 'other child' processes
291         and whack them if the child goes down.
292
293     * Win32: Add a simple hold console open patch (wait for close or
294         the ESC key, with a nice message) if the server died a bad 
295         death (non-zero exit code) in console mode.
296         Resolution: bring forward same ugly hacks from 1.3.13-.20
297
298     * Port of mod_ssl to Apache 2.0:
299
300       The current porting state is summarized in modules/ssl/README. The
301       remaining work includes:
302       (1) stablizing/optimizing the SSL filter logic
303       (2) Enabling the various SSL caching mechanisms (shmcb, shmht)
304       (3) Enabling SSL extentions
305       (4) Trying to seperate the https filter logic from mod_ssl -
306           This is to facilitate other modules that wish to use the https
307           filter or the mod_ssl logic or both as required.
308         Justin: mod_ssl filter logic is redone, so that should be fine.
309                 Madhu has submitted a patch for SSL caching - however, I
310                 am -0 on that patch as I *think* we could implement the
311                 shared memory another way that is much cleaner (i.e.
312                 treat shmem directly as a dbm via APR routines).  Justin 
313                 also thinks that the https filter logic may be sufficiently
314                 decoupled now, but isn't really sure.
315
316     * Performance & Debug: Eliminate most (and perhaps all) of the 
317       malloc/free calls in the bucket brigade code.  Need some 
318       light weight memory management functions that allow freeing 
319       memory (putting it back into a memory pool) when it is no 
320       longer needed. Enabling simple debugging features like guard
321       bands, double free detection, etc. would be cool but certainly
322       not a hard requirement.
323
324           Status: Cliff started to implement this using SMS as has
325                   been discussed at length for months, but since
326                   SMS is not being used anywhere else in the server,
327                   several people expressed the opinion that we should
328                   get rid of it entirely, meaning that the buckets
329                   need their own memory management (free list) functions.
330                   Cliff will implement that this weekend so we at least
331                   have something to look at/compare with.
332
333     * Eliminate unnecessary creation of pipes in mod_cgid
334         Status: Ken asks, didn't Jeff fix this when he fixed the queue
335                 overrun?
336
337     * the autoconf setup should be fixed to default to using the 
338       "Apache" layout from config.layout, and each variable settable
339       in a layout should be overridable on the command line.  Plus,
340       what we do right now just doesn't seem to fully fit into how autoconf
341       works, eg. AC_PREFIX_DEFAULT issues.
342         Message-ID: <Pine.BSF.4.20.0104031557420.20876-100000@alive.znep.com>
343
344     * Combine log_child and piped_log_spawn. Clean up http_log.c.
345       Common logging API.
346
347     * Document mod_file_cache.
348
349     * Platforms that do not support fork (primarily Win32 and AS/400)
350       Architect start-up code that avoids initializing all the modules 
351       in the parent process on platforms that do not support fork.
352
353     * Win32: Migrate the MPM over to use APR thread/process calls. This
354       would eliminate some code in the Win32 branch that essentially
355       duplicates what is in APR.
356
357     * There are still a number of places in the code where we are
358       losing error status (i.e. throwing away the error returned by a
359       system call and replacing it with a generic error code)
360
361     * Mass vhosting version of suEXEC.
362
363     * All DBMs suffer from confusion in support/dbmmanage (perl script) since 
364       the dbmmanage employs the first-matched dbm format.  This is not
365       necessarily the library that Apache was built with.  Aught to
366       rewrite dbmmanage upon installation to bin/ with the proper library 
367       for predictable mod_auth_dbm administration.
368         Questions; htdbm exists, time to kill dbmmanage, or does it remain
369                    useful as a perl dbm management example?  If we keep it,
370                    do we address the issue above?
371
372     * Integrate mod_dav.
373         Some additional items remaining:
374         - case_preserved_filename stuff
375             (use the new canonical name stuff?)
376         - find a new home for ap_text(_header)
377         - is it possible to remove the DAV: namespace stuff from util_xml?
378
379     * ap_core_translate() and its use by mod_mmap_static and mod_file_cache
380       are a bit wonky.  The function should probably be exposed as a utility 
381       function (such as ap_translate_url2fs() or ap_validate_fs_url() or 
382       something).  Another approach would be a new hook phase after
383       "translate" which would allow the module to munge what the
384       translation has decided to do.
385         Status: Greg +1 (volunteers), Ryan +1
386
387     * Explore use of a post-config hook for the code in http_main.c which
388       calls ap_fixup_virutal_hosts(), ap_fini_vhost_config(), and
389       ap_sort_hooks()  [to reduce the logic in main()]
390
391     * read the config tree just once, and process N times (as necessary)
392
393     * (possibly) use UUIDs in mod_unique_id and/or mod_usertrack
394
395     * (possibly) port the bug fix for PR 6942 (segv when LoadModule is put
396       into a VirtualHost container) to 2.0.
397
398     * shift stuff to mod_core.h
399
400     * callers of ap_run_create_request() should check the return value
401       for failure (Doug volunteers)
402
403     * Win32: Get Apache working on Windows 95/98. The following work
404         (at least) needs to be done:
405         - winnt MPM: Fix 95/98 code paths in the winnt MPM. There is some NT
406         specific code that is still not in NT only code paths
407         - IOL binds to APR sendfile, implemented with TransmitFile, which 
408         is not available on 95/98.
409         - Document warning that OSR2 is required (for Crypt functions, in
410         rand.c, at least.)  This could be resolved with an SSL library, or
411         randomization in APR itself.
412         - Bring the Win9xConHook.dll from 1.3 into 2.0 (no sense till it
413         actually works) and add in a splash of Win9x service code.
414
415     * In order to use a DSO version of mod_ssl we have to link with
416       -lssl and -lcrypto. A workaround is in place right now where the
417       entire EXTRA_LIBS macro is being appended to the objects list, but
418       this is a hack. We should either revamp the APACHE_CHECK_SSL_TOOLKIT
419       autoconf function or come up with some other autoconf checks to
420       search for libssl and libcrypto and properly add them to mod_ssl's
421       link flags.
422
423     * Fix the worker MPM to use POD to kill child processes instead
424       of ap_os_killpg, regardless of how they should die. (Ryan Bloom)
425
426 PRs that have been suspended forever waiting for someone to
427 put them into 'the next release':
428
429     * PR#76: general
430       missing call to "setlocale();"
431         Status: 
432
433     * PR#78: mod_include
434       Additional status for XBitHack directive
435         Status: 
436
437     * PR#362: mod_proxy
438       Mod_proxy doesn't allow change of error pages
439         Status: 
440
441     * PR#370: mod_env
442       Modified PATH environemnt variable is not passed, instead
443       system's is used
444         Status: 
445
446     * PR#440: mod_proxy
447       Proxy doesn't deliver documents if not connected
448         Status: 
449
450     * PR#534: mod_proxy
451       proxy converts ~name to %7Ename when name starts with a dot (.)
452         Status: 
453
454     * PR#537: mod_access
455       mod_access syntax allows hosts that should be restricted
456         Status: 
457
458     * PR#557: mod_auth-any
459       ~UserHome directories are not honored in absolute pathname
460       requests (.htaccess)
461         Status: 
462
463     * PR#612: mod_proxy
464       Proxy FTP Authentication Fails
465         Status: 
466
467     * PR#623: mod_include
468       A smarter "Last Modified" value for SSI documents (see PR number 600)
469         Status: 
470
471     * PR#628: config
472       Request of "Options SymLinksIfGroupMatch"
473         Status: 
474
475     * PR#700: mod_proxy
476       Proxy doesn't do links right for OpenVMS files through ftp:
477         Status: 
478
479     * PR#759: mod_imap
480       imap should read <MAP><AREA>*</MAP> too!
481         Status: 
482
483     * PR#793: general
484       RLimitCPU and RLimitMEM don't apply to all children like they should
485         Status: 
486
487     * PR#921: suexec
488       Uses cwd before filling it in, doesn't use syslog
489         Status: 
490
491     * PR#922: config
492       it is useful to allow specifiction that root-owned symlinks
493       should always be followed
494         Status: 
495
496     * PR#980: mod_proxy
497       Controlling Access to Remote Proxies would be nice...
498         Status: 
499
500     * PR#994: mod_proxy
501       Adding authentication "on the fly" through the proxy module
502         Status: 
503
504     * PR#1004: apache-api
505       request_config field in request_rec is moderately bogus
506         Status: 
507
508     * PR#1028: other
509       DoS attacks involving memory consumption
510         Status: 
511
512     * PR#1050: mod_log-any
513       Logging of virtual server to error_log as well
514         Status: 
515
516     * PR#1085: mod_proxy
517       ProxyRemote make a dead cycle.
518         Status: 
519
520     * PR#1117: mod_auth-any
521       Using NIS passwd.byname dbm files with AuthDBMUserFile
522         Status: 
523
524     * PR#1120: suexec
525       suexec does not parse arguments to #exec cmd
526         Status: 
527
528     * PR#1145: mod_include
529       Allow for Last-Modified: without resorting to XBitHack
530         Status: 
531
532     * PR#1158: apache-api
533       improvements to child spawning API
534         Status: 
535
536     * PR#1166: mod_proxy
537       ``nph-'' not honored (no buffering) for ProxyRemote mapping
538         Status: 
539
540     * PR#1176: mod_cgi
541       Apache cannot handle continuation line in headers
542         Status: 
543
544     * PR#1191: general
545       setlogin() is not called, causing problems with e.g. identd
546         Status: 
547
548     * PR#1204: general
549       regerror() exists, use it
550         Status: 
551
552     * PR#1233: apache-api
553       there is no way to keep per-connection per-module state
554         Status: 
555
556     * PR#1263: mod_autoexec
557       Add frame-safe anchor attribute to mod_autoindex links
558         Status: 
559
560     * PR#1268: suexec
561       CGI scripts running as Apache user: security (suexec etc.)
562         Status: 
563
564     * PR#1285: suexec
565       Error messages could be easier to spot in cgi.log file for suexec.c
566         Status: 
567
568     * PR#1287: mod_access
569       add allow,deny/deny,allow warning to mod_access
570         Status: 
571
572     * PR#1290: mod_proxy
573       Need to know "hit-rate" on proxy cache
574         Status: 
575
576     * PR#1358: mod_log-any
577       Selective url-encode of log fields (or maybe a pseudo
578       log_rewrite module?)
579         Status: 
580
581     * PR#1383: mod_headers
582       I make mod_headers to modify request headers as well as
583       response ones.
584         Status: 
585
586     * PR#1532: mod_proxy
587       Proxy transfer logging
588         Status: 
589
590     * PR#1547: mod_proxy
591       No HTTP_X_FORWARDED_FOR set...
592         Status: 
593
594     * PR#1567: mod_proxy
595       ProxyRemote proxy requests fail authentication by firewall
596         Status: 
597
598     * PR#1582: mod_rewrite
599       mod_rewrite forms REQUEST_URI different than mod_cgi does
600         Status: 
601
602     * PR#1677: mod_headers
603       mod_headers should allow mod_log_config-style formats in
604       header values
605         Status: 
606
607     * PR#1702: mod_proxy
608       mod_proxy to support persistent conns?
609         Status: 
610
611     * PR#1803: mod_include
612       patches to mod_include to allow for file tests
613         Status: 
614
615     * PR#1809: mod_auth-any
616       Suggestion for improving authentication modules and core source
617       code, problem with 401 and ErrorDocument
618         Status: 
619
620     * PR#1878: mod_proxy
621       listing of proxy cache content
622         Status: 
623
624     * PR#1905: suexec
625       Allow modules to set user:group for execution.
626         Status: 
627
628     * PR#2024: apache-api
629       adding auth_why to conn_rec
630         Status: 
631
632     * PR#2073: mod_log-any
633       pipelined connections are not logged correctly
634         Status: 
635
636     * PR#2074: mod_rewrite
637       mod_rewrite doesn't pass Proxy Throughput on internal subrequests
638         Status: 
639
640     * PR#2113: config
641       HTTP Server Rebuild Line Needs Changing for the better
642         Status: 
643
644     * PR#2138: mod_status
645       mod_status always displays 256 possible connection slots
646         Status: 
647
648     * PR#2221: documentation
649       Make online documentation search link back to my installation
650         Status: 
651
652     * PR#2284: general
653       Can not POST to ErrorDocument - Apache/1.3b6
654         Status: 
655
656     * PR#2314: mod_proxy
657       patterns in ProxyRemote
658         Status: 
659
660     * PR#2343: mod_status
661       Status module averages are for entire uptime
662         Status: 
663
664     * PR#2360: suexec
665       suexec for general access of user content?
666         Status: 
667
668     * PR#2396: general
669       Proposal for TimeZone directive
670         Status: 
671
672     * PR#2415: mod_info
673       /server-info doesn't check for the virtual host to list the info
674         Status: 
675
676     * PR#2421: config
677       problem specifying ndbm library for build ?with autoconfigure
678         Status: 
679
680     * PR#2431: general
681       A small addition to rotatelogs.c to improve program functionality.
682         Status: 
683
684     * PR#2446: config
685       AllowOverride FileInfo is too coarse
686         Status: 
687
688     * PR#2460: mod_cgi
689       TimeOut applies to output of CGI scripts
690         Status: 
691
692     * PR#2512: mod_access
693       &lt;IfDenied&gt; directive wanted
694         Status: 
695
696     * PR#2573: suexec
697       CGI's for general use still have to be run as another user
698       with suExec
699         Status: 
700
701     * PR#2648: general
702       Cache file names in Proxy module
703         Status: 
704
705     * PR#2760: config
706       [PATCH] User/Group for <Directory> and <Location> i.e. not only
707       in global and <Virtual>.
708         Status: 
709
710     * PR#2763: general
711       mailto tags and bundling bug report script
712         Status: 
713
714     * PR#2785: os-aix
715       Support for System Resource Controller
716         Status: 
717
718     * PR#2793: protocol
719       When will Apache support P3P? Any Plans?
720         Status: 
721
722     * PR#2873: config
723       Feedback/Comment on APACI
724         Status: 
725
726     * PR#2889: general
727       Inclusion of RPM spec file in CVS/distributions
728         Status: 
729
730     * PR#2906: general
731       Propose that Apache recommend $UNIQUE_ID for all "session id"
732       algorithms
733         Status: 
734
735     * PR#2907: config
736       suggestion: power up your Include directive :)
737         Status: 
738
739     * PR#3018: general
740       cannot limit some HTTP methods
741         Status: 
742
743     * PR#3143: apache-api
744       No module specific data hook for per-connection data
745         Status: 
746
747     * PR#3191: mod_negotiation
748       no way to set global quality-of-source (qs) coneg values
749       with multiviews
750         Status: 
751
752     * PR#3568: mod_proxy
753       Accessing URL through proxy server corrupts data.
754         Status: 
755
756     * PR#3605: mod_proxy
757       Some anonymous FTP URLs ask for authentication
758         Status: 
759
760     * PR#3677: general
761       New ErrorDocumentMatch directive
762         Status: 
763
764     * PR#4241: config
765       Need to be able to override shebang line to make CGI scripts
766       more portable.
767         Status: 
768
769     * PR#4244: config
770       "Files" and "FilesMatch" regexp does not recognize bang as
771       negation operator
772         Status: 
773
774     * PR#4448: mod_log-any
775       Please allow CGI env variables (QUERY_STRING, ...) to be logged
776       with %{}e
777         Status: 
778
779     * PR#4459: mod_include
780       Suggestion for better handling of Last-modified headers
781         Status: 
782
783     * PR#4490: mod_cgi
784       mod_cgi prevents handling of OPTIONS requests
785         Status: 
786
787     * PR#5713: os-windows
788       [PATCH] install as win32 service with domain account
789         Status: Cannot accept password-as-arg, we should prompt the
790                 user when -k install/-k config with a user argument.
791
792     * PR#5993: general
793       AllowOverride should have a 'CheckNone' and 'AllowNone' argument
794       instead of only 'None'
795         Status: 
796
797 Other bugs that need fixing:
798
799     * MaxRequestsPerChild measures connections, not requests.
800         Until someone has a better way, we'll probably just rename it
801         "MaxConnectionsPerChild".
802     
803     * Regex containers don't work in an intutive way
804         Status: No one has come up with an efficient way to fix this
805         behavior. Dean has suggested getting rid of regex containers
806         completely.
807         OtherBill suggests: We at least seem to agree on eliminating
808                             the <Container ~ foo> forms, and using only
809                             <ContainerMatch foo> semantics.
810
811     * SIGSEGV on Linux (glibc 2.1.2) isn't caught properly by a
812       sigwaiting thread. We need to work around this, perhaps unless
813       there is hope soon for a fixed glibc.
814
815     * orig_ct in the byterange/multipart handling may not be
816       needed. Apache 1.3 just never stashed "multipart" into
817       r->content_type. We should probably follow suit since the
818       byterange stuff doesn't want the rest of the code to see the
819       multipart content-type; the other code should still think it is
820       dealing with the <orig_ct> stuff.
821         Status: Greg volunteers to investigate (esp. since he was most 
822                 likely the one to break it :-)
823
824 Other features that need writing:
825
826     * Finish infrastructure in core for async MPMs
827         Status: post 2.0
828
829     * TODO in source -- just do an egrep on "TODO" and see what's there
830
831 Available Patches:
832
833    * Jon Travis's <jtravis@covalent.net> patch to deal with thread-safe
834      issues with inet_ntoa.  See message <20001201163220.A12827@covalent.net>
835         Status:  This is being set aside until the IPv6 work is finished
836                  so that we know exactly what is required.
837
838    * Martin Sojka <msojka@gmx.de>'s patch to add error reporting for failed 
839      htpasswd actions due to a full /tmp volume (other programs may have
840      similar problems?)
841         PR: 6475
842         Status:
843
844    * Mike Abbott's <mja@trudge.engr.sgi.com> patches to improve
845      performance
846        Status: These were written for 1.3, and are awaiting a port to
847        2.0
848  
849    * Jim Winstead's <jimw@trainedmonkey.com> patch to add CookieDomain and 
850      other small mod_usertrack features
851
852    * Dan Rench's <drench@xnet.com> patch to add allow the errmsg and timefmt 
853      of SSI's to be modified in the config file.  Patch is available in 
854      PR6193
855
856 Open issues:
857
858    * Which MPMs will be included with Apache 2.0?