]> granicus.if.org Git - apache/blob - STATUS
Ryan asked that these be updated. As a no-longer-voting member, and no
[apache] / STATUS
1 APACHE 2.0 STATUS:                                              -*-text-*-
2 Last modified at [$Date: 2002/10/16 20:29:29 $]
3
4 Release:
5
6     2.0.44  : in development
7     2.0.43  : rolled October 2, 2002
8     2.0.42  : released September 24, 2002 as GA.
9     2.0.41  : rolled September 16, 2002.  not released.
10     2.0.40  : released August 9, 2002 as GA.
11     2.0.39  : released June 17, 2002 as GA.
12     2.0.38  : rolled June 16, 2002.  not released.
13     2.0.37  : rolled June 11, 2002.  not released.
14     2.0.36  : released May 6, 2002 as GA.
15     2.0.35  : released April 5, 2002 as GA.
16     2.0.34  : tagged March 26, 2002.
17     2.0.33  : tagged March 6, 2002.  not released.
18     2.0.32  : released Feburary 16, 2002 as beta.
19     2.0.31  : rolled Feburary 1, 2002.  not released.
20     2.0.30  : tagged January 8, 2002.  not rolled.
21     2.0.29  : tagged November 27, 2001.  not rolled.
22     2.0.28  : released November 13, 2001 as beta.
23     2.0.27  : rolled November 6, 2001
24     2.0.26  : tagged October 16, 2001.  not rolled.
25     2.0.25  : rolled August 29, 2001
26     2.0.24  : rolled August 18, 2001
27     2.0.23  : rolled August 9, 2001
28     2.0.22  : rolled July 29, 2001
29     2.0.21  : rolled July 20, 2001
30     2.0.20  : rolled July 8, 2001
31     2.0.19  : rolled June 27, 2001
32     2.0.18  : rolled May 18, 2001
33     2.0.17  : rolled April 17, 2001
34     2.0.16  : rolled April 4, 2001
35     2.0.15  : rolled March 21, 2001
36     2.0.14  : rolled March 7, 2001
37     2.0a9   : released December 12, 2000
38     2.0a8   : released November 20, 2000
39     2.0a7   : released October 8, 2000
40     2.0a6   : released August 18, 2000
41     2.0a5   : released August 4, 2000
42     2.0a4   : released June 7, 2000
43     2.0a3   : released April 28, 2000
44     2.0a2   : released March 31, 2000
45     2.0a1   : released March 10, 2000
46
47 Please consult the following STATUS files for information
48 on related projects:
49
50     * srclib/apr/STATUS
51     * srclib/apr-util/STATUS
52     * docs/STATUS
53
54 Contributors looking for a mission:
55
56     * just do an egrep on "TODO" and see what's there
57
58
59 CURRENT RELEASE NOTES:
60
61
62 RELEASE SHOWSTOPPERS:
63
64
65 CURRENT VOTES:
66
67     * httpd-std.conf and friends
68
69       a) httpd-std.conf should be tailored by install (from src or
70          binbuild) even if user has existing httpd.conf
71          +1:   trawick, slive, gregames, ianh, Ken
72
73       b) tailored httpd-std.conf should be copied by install to
74          sysconfdir/examples
75          -0:   striker
76
77       c) tailored httpd-std.conf should be installed to
78          sysconfdir/examples or manualdir/exampleconf/
79          +1:   slive, trawick, Ken
80
81       d) Installing a set of default config files when upgrading a server
82          doesn't make ANY sense at all.
83          +1:   striker
84            ianh - medium/big sites don't use 'standard config' anyway, as it
85                   usually needs major customizations
86          -1:   Ken
87
88     * If the parent process dies, should the remaining child processes
89       "gracefully" self-terminate. Or maybe we should make it a runtime
90       option, or have a concept of 2 parent processes (one being a 
91       "hot spare").
92       See: Message-ID: <3C58232C.FE91F19F@Golux.Com>
93
94       Self-destruct: Ken, Martin
95       Not self-destruct: BrianP, Ian, Cliff, BillS
96       Make it runtime configurable: Aaron, Jim, Justin
97       Have 2 parents: +1: Jim
98                       -1: Justin, wrowe [for 2.0]
99                       +0: Martin (while standing by, could it do
100                                   something useful?)
101
102     * Make the worker MPM the default MPM for threaded Unix boxes.
103       +1:   Justin, Ian, Cliff, BillS, striker
104       +0:   BrianP, Aaron (mutex contention is looking better with the
105             latest code, let's continue tuning and testing)
106       -0:   Lars
107
108 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
109
110     * There is a bug in how we sort some hooks, at least the pre-config
111       hook.  The first time we call the hooks, they are in the correct 
112       order, but the second time, we don't sort them correctly.  Currently,
113       the modules/http/config.m4 file has been renamed to 
114       modules/http/config2.m4 to work around this problem, it should moved
115       back when this is fixed.
116
117         OtherBill offers that this is a SERIOUS problem.  We do not sort
118         correctly by the ordering arguments passed to the register hook
119         functions.  This was proven when I reordered the open_logs hook
120         to attempt to open the error logs prior to the access logs.  Possibly
121         the entire sorting code needs to be refactored.
122
123     * pipes deadlock on all platforms with limited pipe buffers (e.g. both
124       Linux and Win32, as opposed to only Win32 on 1.3).  The right solution
125       is either GStein's proposal for a "CGI Brigade", or OtherBill's proposal
126       for "Poll Buckets" for "Polling Filter Chains".
127
128     * server pushed CGI's not working.
129       This might be an interaction with the above pipes deadlock issue.
130       PR: 8482
131       Message-ID: <3CE15B85.2FF45121@apache.org>
132
133     * All handlers should always send content down even if r->header_only
134       is set.  If not, it means that the HEAD requests don't generate the
135       same headers as a GET which is wrong.
136
137     * HP/UX 10.20: compile breakage in APR.  Looks like it should be easy
138       to fix, probably just some extraneous #include's that are fouling
139       things up.
140       PR: 9457
141       Jeff: See my reply and patch in the PR (and previous commit to
142       stop using "pipe" as a field name).  If patch is committed, we
143       should be okay.  I'll wait to see if the user tests the patch.
144       Update by Jeff 20020722: I got an account on HP 10.20.  It looks
145       like some of the APR thread detection is screwed up.  If we find
146       pthread.h but we can't compile the pthread test program we still
147       think we can use threads.  For that reason, the patch I posted
148       to the PR won't work as-is since a failed compile of the test
149       program means nothing.
150
151     * exec cmd and suexec arg-passing enhancements
152       Status: Patches proposed
153       Message-ID: <20020526041748.A29148@prodigy.Redbrick.DCU.IE>
154       (see the "proc.patch" and "suexec-shell.patch" links in this message)
155
156     * The 2.0.36 worker MPM graceless shutdown changes work but are
157       a bit clunky on some platforms; eg, on Linux, the loop to
158       join each worker thread seems to hang, and the parent ends up
159       killing off the child with SIGKILL.  But at least it shuts down.
160
161     * --enable-mods-shared="foo1 foo2" is busted on Darwin.  Pier
162         posted a patch (Message-ID: <B8DBBE8D.575A%pier@betaversion.org>).
163
164     * We do not properly substitute the prefix-variables in the configuration
165       scripts or generated-configs.  (i.e. if sysconfdir is etc,
166       httpd-std.conf points to conf.)
167
168     * If any request gets through ap_process_request_internal() and is
169       scheduled to be served by the core handler, without a flag that this 
170       r->filename was tested by dir/file_walk, we need to 500 at the very 
171       end of the ap_process_request_internal() processing so sub_req-esters
172       know this request cannot be run.  This provides authors of older 
173       modules better compatibility, while still improving the security and 
174       robustness of 2.0. 
175
176         Status: still need to decide where this goes, OtherBill comments...
177         Message-ID: <065701c14526$495203b0$96c0b0d0@roweclan.net>
178         [Deleted comments regarding the ap_run_handler phase, as irrelevant
179             as BillS points out that "common case will be caught in
180             default_handler already (with the r->finfo.filetype == 0 check)"
181             and the issue is detecting this -before- we try to run the req.]
182
183         gregames says: can this happen somehow without a broken module
184             being involved?  If not, why waste cycles trying to defend against
185             potential broken modules?  It seems futile.
186         wrowe counters: no, it shouldn't happen unless the module is broken.
187             But the right answer is to fail the request up-front in dir/file
188             walk if the path was entirely invalid; and we can't do that either
189             UNTIL 2.1 or we break modules that haven't hooked map_to_storage.
190
191     * Rewrite core_output_filter. It is nearly impossible to support
192       it with predictable results as it is implemented now.
193
194     * With AP_MODE_EXHAUSTIVE in the core, it is finally clear to me
195       how the Perchild MPM should be re-written.  It hasn't worked
196       correctly since filters were added because it wasn't possible to
197       get the content that had already been written and the socket at
198       the same time.  This mode lets us do that, so the MPM can be
199       fixed.
200
201     * htpasswd blindly processes the file you give it, and does no
202       sanity checking before totally corrupting whatever file it was
203       you thought you had. It should check the input file and bail
204       if it finds non-comment lines that do not contain exactly 1
205       ':' character.
206         Message-ID: <20020217150457.A31632@clove.org>
207
208     * Can a static httpd be built reliably?
209         Message-ID: <20020207142751.T31582@clove.org>
210
211     * [Ken] Test suite failures:
212       o worker is also failing some of the 'cgi' subtests
213       (see <URL:http://Source-Zone.Org/Apache/regression/>):
214         Justin says: "Worker should be fine and passes httpd-test here.
215                       I think it's a perl or a httpd-test problem."
216
217     * Usage of APR_BRIGADE_NORMALIZE in core_input_filter should be
218       removed if possible.
219         Message-ID: <Pine.LNX.4.33.0201202232430.318-100000@deepthought.cs.virginia.edu>
220         Jeff wonders if we still care about this.  It is no longer an
221         API issue but simply an extra trip through the brigade.
222
223     * The Add...Filter and Set...Filter directives do not allow the
224       administrator to order filters, beyond the order of filename (mime)
225       extensions.  It isn't clear if Set...Filter(s) should be inserted 
226       before or after the Add...Filter(s) which are ordered by sequence of
227       filename extensions.  At minimum, some sort of +-[0-10] syntax seems
228       like a nice solution.  See ROADMAP.
229
230     * Get perchild to work on platforms other than Linux. This
231       will require a portable mechanism to pass data and file/socket
232       descriptors between vhost child groups. An API was proposed
233       on dev@apr:
234         Message-ID: <20020111115006.K1529@clove.org>
235
236     * Try to get libtool inter-library dependency code working on AIX.
237         Message-ID: <cm3n10lx555.fsf@rdu163-40-092.nc.rr.com>
238
239       Justin says: If we get it working on AIX, we can enable this
240                    on all platforms and clean up our build system
241                    somewhat.
242       Jeff says:   I thought I tested a patch for you sometime in
243                    January that you were going to commit within a few
244                    days.
245
246     * Handling of %2f in URIs.  Currently both 1.3 and 2.0
247       completely disallow %2f in the request URI path (see
248       ap_unescape_url() in util.c).  It's permitted and passed
249       through in the query string, however.  Roy says the
250       original reason for disallowing it, from five years ago,
251       was to protect CGI scripts that applied PATH_INFO to
252       a filesystem location and which might be tricked by
253       ..%2f..%2f(...).  We *should* allow path-info of the
254       form 'http://foo.com/index.cgi/path/to/path%2finfo'.
255       Since we've revamped a lot of our processing of path
256       segments, it would be nice to allow this, or at least
257       allow it conditionally with a directive.
258
259         OtherBill adds that %2f as the SECOND character of a multibyte
260         sequence causes the request to fail!  This happens notably in
261         the ja-jis encoding.
262
263     * FreeBSD, threads, and worker MPM.  All seems to work fine 
264       if you only have one worker process with many threads.  Add 
265       a second worker process and the accept lock seems to be
266       lost.  This might be an APR issue with how it deals with
267       the child_init hook (i.e. the fcntl lock needs to be resynced).
268       More examination and analysis is required.
269         Status: This has also been reported on Cygwin.  
270         Message-ID: <3C2CC514.8EF3BED1@wapme-systems.de> (cygnus)
271
272       Aaron says: I spent some time disecting this and have come to
273               the conclusion that it is not a problem in the worker MPM
274               (or at least, it is not isolated to a problem in worker).
275               I'll list some of the problems I'm seeing in case someone
276               else wants to pick up where I've left off:
277                - Delivery of just about any signal to one of the child
278                  processes will send it into an infinite loop as well.
279                - Even though the parent is spinning out of control,
280                  at first the child or children will appear to work
281                  properly. At times it is possible to get it into a state,
282                  however, where a request will hang until another concurrent
283                  request "kicks" the first, at which point the second will
284                  hang. My theory is that this has to do with the
285                  pthread_cond_*() implementation in FreeBSD, but it's still
286                  possible that it is in APR.
287       
288       Justin adds: Oh, FreeBSD threads are implemented entirely with 
289                    select()/poll()/longjmp().  Welcome to the nightmare.
290                    So, that means a ktrace output also has the thread 
291                    scheduling internals in it (since it is all the same to 
292                    the kernel).  Which makes it hard to distinguish between 
293                    our select() calls and their select() calls.  
294                    *bangs head on wall repeatedly*  But, some of the libc_r 
295                    files have a DBG_MSG #define.  This is moderately helpful
296                    when used with -DNO_DETACH.  The kernel scheduler isn't 
297                    waking up the threads on a select().  Yum.  And, I bet 
298                    those decrementing select calls have to do with the 
299                    scheduler.  Time to brush up on our OS fundamentals.
300
301     * There is increasing demand from module writers for an API
302       that will allow them to control the server Ã  la apachectl.
303       Reasons include sole-function servers that need to die if
304       an external dependency (e.g., a database) fails, et cetera.
305       Perhaps something in the (ever more abused) scoreboard?
306         
307              On the other hand, we already have a pipe that goes between parent
308              and child for graceful shutdown events, along with an API that
309              can be used to send a message down that pipe.  In threaded MPMs,
310              it is easy enough to make that one pipe be used for graceful
311              and graceless events, and it is also easy to open that pipe
312              to both parent and child for writing.  Then we just need to
313              figure out how to do graceless on non-threaded MPMs.
314
315     * Allow the DocumentRoot directive within <Location > scopes?  This
316       allows the beloved (crusty) Alias /foo/ /somepath/foo/ followed
317       by a <Directory /somepath/foo> to become simply 
318       <Location /foo/> DocumentRoot /somefile/foo (IMHO a bit more legible
319       and in-your-face.)  DocumentRoot unset would be accepted [and would
320       not permit content to be served, only virtual resources such as
321       server-info or server-status.
322       This proposed change would _not_ depricate Alias.
323         striker: See the thread starting with Message-ID:
324           JLEGKKNELMHCJPNMOKHOGEEJFBAA.striker@apache.org.
325
326     * Win32: Rotatelogs sometimes is not terminated when Apache
327       goes down hard.  FirstBill was looking at possibly tracking the 
328       child's-child processes in the parent process.
329         stoddard: Shared scoreboard might offer a good way for the parent 
330         to keep track of 'other child' processes and whack them if the child 
331         goes down.
332         Other thoughts on walking the process chain using the NT kernel
333         have also been proposed on APR.
334
335     * Eliminate unnecessary creation of pipes in mod_cgid
336
337     * Combine log_child and piped_log_spawn. Clean up http_log.c.
338       Common logging API.
339
340     * Document mod_file_cache.
341
342     * Platforms that do not support fork (primarily Win32 and AS/400)
343       Architect start-up code that avoids initializing all the modules 
344       in the parent process on platforms that do not support fork.
345
346     * Win32: Migrate the MPM over to use APR thread/process calls. This
347       would eliminate some code in the Win32 branch that essentially
348       duplicates what is in APR.
349
350     * There are still a number of places in the code where we are
351       losing error status (i.e. throwing away the error returned by a
352       system call and replacing it with a generic error code)
353
354     * Mass vhosting version of suEXEC.
355
356     * All DBMs suffer from confusion in support/dbmmanage (perl script) since 
357       the dbmmanage employs the first-matched dbm format.  This is not
358       necessarily the library that Apache was built with.  Aught to
359       rewrite dbmmanage upon installation to bin/ with the proper library 
360       for predictable mod_auth_dbm administration.
361         Questions; htdbm exists, time to kill dbmmanage, or does it remain
362                    useful as a perl dbm management example?  If we keep it,
363                    do we address the issue above?
364
365     * Integrate mod_dav.
366         Some additional items remaining:
367         - case_preserved_filename stuff
368             (use the new canonical name stuff?)
369         - find a new home for ap_text(_header)
370         - is it possible to remove the DAV: namespace stuff from util_xml?
371
372     * ap_core_translate() and its use by mod_mmap_static and mod_file_cache
373       are a bit wonky.  The function should probably be exposed as a utility 
374       function (such as ap_translate_url2fs() or ap_validate_fs_url() or 
375       something).  Another approach would be a new hook phase after
376       "translate" which would allow the module to munge what the
377       translation has decided to do.
378         Status: Greg +1 (volunteers)
379
380     * Explore use of a post-config hook for the code in http_main.c which
381       calls ap_fixup_virutal_hosts(), ap_fini_vhost_config(), and
382       ap_sort_hooks()  [to reduce the logic in main()]
383
384     * read the config tree just once, and process N times (as necessary)
385
386     * (possibly) use UUIDs in mod_unique_id and/or mod_usertrack
387
388     * (possibly) port the bug fix for PR 6942 (segv when LoadModule is put
389       into a VirtualHost container) to 2.0.
390
391     * shift stuff to mod_core.h
392
393     * callers of ap_run_create_request() should check the return value
394       for failure (Doug volunteers)
395
396     * Win32: Get Apache working on Windows 95/98. The following work
397         (at least) needs to be done:
398         - Document warning that OSR2 is required (for Crypt functions, in
399         rand.c, at least.)  This could be resolved with an SSL library, or
400         randomization in APR itself.
401         - Bring the Win9xConHook.dll from 1.3 into 2.0 (no sense till it
402         actually works) and add in a splash of Win9x service code.
403
404     * Fix the worker MPM to use POD to kill child processes instead
405       of ap_os_killpg, regardless of how they should die.
406
407     * Scoreboard structures could be changed in the future such that
408       proper alignment is not maintained, leading to segfaults on 
409       some systems.  Cliff posted a patch to deal with this issue but
410       later recanted. See this message to dev@apr.apache.org:
411       Message-ID: <Pine.LNX.4.44.0203011354090.16457-200000@deepthought
412                   .cs.virginia.edu>
413
414 TODO ISSUES REMAINING IN MOD_SSL:
415
416     * In order to use a DSO version of mod_ssl we have to link with
417       -lssl and -lcrypto. A workaround is in place right now where the
418       entire EXTRA_LIBS macro is being appended to the objects list, but
419       this is a hack. We should either revamp the APACHE_CHECK_SSL_TOOLKIT
420       autoconf function or come up with some other autoconf checks to
421       search for libssl and libcrypto and properly add them to mod_ssl's
422       link flags.
423
424     * SSL renegotiations in combination with POST request
425
426     * Port or dispose all code inside #if 0...#endif blocks that remain
427       from the porting effort.
428
429     * Do we need SSL_set_read_ahead()?
430
431     * the ssl_expr api is NOT THREAD SAFE.  race conditions exist:
432        -in ssl_expr_comp() if SSLRequire is used in .htaccess
433         (ssl_expr_info is global)
434        -is ssl_expr_eval() if there is an error
435         (ssl_expr_error is global)
436
437     * SSLRequire directive (parsing of) leaks memory
438
439     * Diffie-Hellman-Parameters for temporary keys are hardcoded in
440       ssl_engine_dh.c, while the comment in ssl_engine_kernel.c says:
441       "it is suggested that keys be changed daily or every 500
442       transactions, and more often if possible."
443
444     * ssl_var_lookup could be rewritten to be MUCH faster
445
446     * CRL callback should be pluggable
447
448     * session cache store should be pluggable
449
450     * init functions should return status code rather than ssl_die()
451
452     * ssl_engine_pphrase.c needs to be reworked so it is generic enough
453       to also decrypt proxy keys
454
455     * the shmcb code should just align its memory segment rather than
456       jumping through all the "safe" memcpy and memset hoops
457
458
459 EXPERIMENTAL MODULES:
460
461     Experimental modules should eventually be be promoted to fully supported
462     status or removed from the repository entirely (ie, the
463     'experiment' failed). This section tracks what needs to happen to 
464     get the modules promoted to fully supported status.
465
466     mod_cache/mod_mem_cache/mod_disk_cache:
467
468     * mod_cache: handle cache_control: no_cache "field_name" to enable 
469       cacheing the response w/o header "field_name"
470       See RFC2616 section 14.9.1
471
472     * mod_cache: CacheEnable/CacheDisable should accept regular expressions.
473
474     * mod_cache: Fix dependency on ATOMIC operators. Need
475       APR_HAS_ATOMIC_* feature macros.
476
477     * mod_disk_cache: Implement garbage collection
478
479     * mod_mem_cache/mod_disk_cache: Need to be able to query cache
480       status (num of entries, cache object properties, etc.).
481       mod_status could be extended to query optional hooks defined
482       by modules for the purpose of reporting module status.
483       mod_cache (et. al.) could define optional hooks that are called
484       to collect status.  Status should be queryable by
485       HTTP or SNMP?
486
487     * mod_mem_cache: garbage collection. One strategy is to simply
488       remove stale entries as we attempt to serve them. Another
489       strategy is to kick off a GC thread that traverses the cache
490       and preemptively remove stale entries.  How to manage a 
491       cache that is full? Do LRU GC? Other? Bueller?
492
493     * mod_mem_cache/mod_disk_cache: Complete implementing config
494       directives. 
495
496     * Sample config for mod_cache/mod_mem_cache/mod_disk_cache for
497       inclusion into httpd.conf.
498
499     * mod_cache/mod_mem_cache/mod_disk_cache: Documentation.
500     
501     mod_auth_ldap/util_ldap:
502     
503     * implement cross-platform/cross-library TLS support
504     
505     * General stabilization and testing
506     
507
508 PRs that have been suspended forever waiting for someone to
509 put them into 'the next release':
510
511     * documentation and Q&A
512
513       PR#2221: Make online documentation search link back to my installation
514         Status: 
515
516       PR#2906: Propose that Apache recommend $UNIQUE_ID for all "session id"
517       algorithms
518         Status: 
519
520       PR#2793: When will Apache support P3P? Any Plans?
521         Status: 
522
523     * build
524
525       PR#2113: HTTP Server Rebuild Line Needs Changing for the better
526         Status: 
527
528       PR#2421: problem specifying ndbm library for build ?with autoconfigure
529         Status: 
530
531     * config
532
533       PR#76: missing call to "setlocale();"
534         Status: 
535
536       PR#628: Request of "Options SymLinksIfGroupMatch"
537         Status: 
538
539       PR#793: RLimitCPU and RLimitMEM don't apply to all children like they should
540         Status: 
541
542       PR#922:  it is useful to allow specifiction that root-owned symlinks
543       should always be followed
544         Status: 
545
546       PR#1028: DoS attacks involving memory consumption
547         Status: 
548
549       PR#1191: setlogin() is not called, causing problems with e.g. identd
550         Status: 
551
552       PR#1204: regerror() exists, use it
553         Status: 
554
555       PR#2284: Can not POST to ErrorDocument - Apache/1.3b6
556         Status: 
557
558       PR#2396: Proposal for TimeZone directive
559         Status: 
560
561       PR#2446: AllowOverride FileInfo is too coarse
562         Status: 
563
564       PR#2760: [PATCH] User/Group for <Directory> and <Location> i.e. not only
565       in global and <Virtual>.
566         Status: 
567
568       PR#2907: suggestion: power up your Include directive :)
569         Status: 
570
571       PR#3018: cannot limit some HTTP methods
572         Status: 
573
574       PR#3677: New ErrorDocumentMatch directive
575         Status: 
576
577       PR#4244: "Files" and "FilesMatch" regexp does not recognize bang as
578       negation operator
579         Status: 
580
581       PR#5993: AllowOverride should have a 'CheckNone' and 'AllowNone' argument
582       instead of only 'None'
583         Status: 
584
585     * mod_access
586
587       PR#537: mod_access syntax allows hosts that should be restricted
588         Status: 
589
590       PR#1287: add allow,deny/deny,allow warning to mod_access
591         Status: 
592
593       PR#2512: <IfDenied> directive wanted
594         Status: 
595
596     * mod_auth-any
597
598       PR#557: ~UserHome directories are not honored in absolute pathname
599       requests (.htaccess)
600         Status: 
601
602       PR#1117: Using NIS passwd.byname dbm files with AuthDBMUserFile
603         Status: 
604
605       PR#1809: Suggestion for improving authentication modules and core source
606       code, problem with 401 and ErrorDocument
607         Status: 
608
609     * mod_autoindex
610
611       PR#1263: Add frame-safe anchor attribute to mod_autoindex links
612         Status: 
613
614     * mod_cgi (and suexec)
615
616       PR#921: suexec Uses cwd before filling it in, doesn't use syslog
617         Status: 
618
619       PR#1176: Apache cannot handle continuation line in headers
620         Status: 
621
622       PR#1120: suexec does not parse arguments to #exec cmd
623         Status: 
624
625       PR#1268: CGI scripts running as Apache user: security (suexec etc.)
626         Status: 
627
628       PR#1285: Error messages could be easier to spot in cgi.log file for suexec.c
629         Status: 
630
631       PR#1905: suexec - Allow modules to set user:group for execution.
632         Status: 
633
634       PR#2360: suexec for general access of user content?
635         Status: 
636
637       PR#2460: TimeOut applies to output of CGI scripts
638         Status: 
639
640       PR#2573: CGI's for general use still have to be run as another user
641       with suExec
642         Status: 
643
644       PR#4241: Need to be able to override shebang line to make CGI scripts
645       more portable.
646         Status: 
647
648       PR#4490: mod_cgi prevents handling of OPTIONS requests
649         Status: 
650
651     * mod_env
652
653       PR#370: Modified PATH environemnt variable is not passed, instead
654       system's is used
655         Status: 
656
657     * mod_headers
658
659       PR#1383: I make mod_headers to modify request headers as well as
660       response ones.
661         Status: 
662
663       PR#1677: mod_headers should allow mod_log_config-style formats in
664       header values
665         Status: 
666
667     * mod_imap
668
669       PR#759: imap should read <MAP><AREA>*</MAP> too!
670         Status: 
671
672     * mod_include
673
674       PR#78: Additional status for XBitHack directive
675         Status: 
676
677       PR#623: A smarter "Last Modified" value for SSI documents (see PR number 600)
678         Status: 
679
680       PR#1145: mod_include
681       Allow for Last-Modified: without resorting to XBitHack
682         Status: 
683
684       PR#1803: patches to mod_include to allow for file tests
685         Status: 
686
687       PR#4459: Suggestion for better handling of Last-modified headers
688         Status: 
689
690     * mod_info
691
692       PR#2415: /server-info doesn't check for the virtual host to list the info
693         Status: 
694
695     * mod_log-any
696
697       PR#1050: Logging of virtual server to error_log as well
698         Status: 
699
700       PR#1358: Selective url-encode of log fields (or maybe a pseudo
701       log_rewrite module?)
702         Status: 
703
704       PR#2073: pipelined connections are not logged correctly
705         Status: 
706
707       PR#4448: Please allow CGI env variables (QUERY_STRING, ...) to be logged
708       with %{}e
709         Status: 
710
711     * mod_negotiation
712
713       PR#3191: no way to set global quality-of-source (qs) coneg values
714       with multiviews
715         Status: 
716
717     * mod_proxy
718
719       PR#362: Mod_proxy doesn't allow change of error pages
720         Status: 
721
722       PR#440: Proxy doesn't deliver documents if not connected
723         Status: 
724
725       PR#534: proxy converts ~name to %7Ename when name starts with a dot (.)
726         Status: 
727
728       PR#612: Proxy FTP Authentication Fails
729         Status: 
730
731       PR#700: Proxy doesn't do links right for OpenVMS files through ftp:
732         Status: 
733
734       PR#980: Controlling Access to Remote Proxies would be nice...
735         Status: 
736
737       PR#994: Adding authentication "on the fly" through the proxy module
738         Status: 
739
740       PR#1085: ProxyRemote make a dead cycle.
741         Status: 
742
743       PR#1166: ``nph-'' not honored (no buffering) for ProxyRemote mapping
744         Status: 
745
746       PR#1290: Need to know "hit-rate" on proxy cache
747         Status: 
748
749       PR#1532: Proxy transfer logging
750         Status: 
751
752       PR#1547: No HTTP_X_FORWARDED_FOR set...
753         Status: 
754
755       PR#1567: ProxyRemote proxy requests fail authentication by firewall
756         Status: 
757
758       PR#1702: mod_proxy to support persistent conns?
759         Status: 
760
761       PR#1878: listing of proxy cache content
762         Status: 
763
764       PR#2314: patterns in ProxyRemote
765         Status: 
766
767       PR#2648: Cache file names in Proxy module
768         Status: 
769
770       PR#3568: Accessing URL through proxy server corrupts data.
771         Status: 
772
773       PR#3605: Some anonymous FTP URLs ask for authentication
774         Status: 
775
776     * mod_rewrite
777
778       PR#1582: mod_rewrite forms REQUEST_URI different than mod_cgi does
779         Status: 
780
781       PR#2074: mod_rewrite doesn't pass Proxy Throughput on internal subrequests
782         Status: 
783
784     * mod_status
785
786       PR#2138: mod_status always displays 256 possible connection slots
787         Status: 
788
789       PR#2343: Status module averages are for entire uptime
790         Status: 
791
792     * apache-api
793
794       PR#1004: request_config field in request_rec is moderately bogus
795         Status: 
796
797       PR#1158: improvements to child spawning API
798         Status: 
799
800       PR#1233: there is no way to keep per-connection per-module state
801         Status: 
802
803       PR#2024: adding auth_why to conn_rec
804         Status: 
805
806       PR#2873: Feedback/Comment on APACI
807         Status: 
808
809       PR#3143: No module specific data hook for per-connection data
810         Status: 
811
812     * generally odds and ends
813
814       PR#2431: A small addition to rotatelogs.c to improve program functionality.
815         Status: 
816
817       PR#2763: mailto tags and bundling bug report script
818         Status: 
819
820       PR#2785: os-aix Support for System Resource Controller
821         Status: 
822
823       PR#2889: Inclusion of RPM spec file in CVS/distributions
824         Status: 
825
826       PR#5713: os-windows [PATCH] install as win32 service with domain account
827         Status: Cannot accept password-as-arg, we should prompt the
828                 user when -k install/-k config with a user argument.
829
830
831
832 Other bugs that need fixing:
833
834     * ap_discard_request should be converted to use the bucket API
835       directly rather than waste cycles copying buffers with the old API.
836
837     * MaxRequestsPerChild measures connections, not requests.
838         Until someone has a better way, we'll probably just rename it
839         "MaxConnectionsPerChild".
840     
841     * Regex containers don't work in an intutive way
842         Status: No one has come up with an efficient way to fix this
843         behavior. Dean has suggested getting rid of regex containers
844         completely.
845         OtherBill suggests: We at least seem to agree on eliminating
846                             the <Container ~ foo> forms, and using only
847                             <ContainerMatch foo> semantics.
848
849     * SIGSEGV on Linux (glibc 2.1.2) isn't caught properly by a
850       sigwaiting thread. We need to work around this, perhaps unless
851       there is hope soon for a fixed glibc.
852
853     * orig_ct in the byterange/multipart handling may not be
854       needed. Apache 1.3 just never stashed "multipart" into
855       r->content_type. We should probably follow suit since the
856       byterange stuff doesn't want the rest of the code to see the
857       multipart content-type; the other code should still think it is
858       dealing with the <orig_ct> stuff.
859         Status: Greg volunteers to investigate (esp. since he was most 
860                 likely the one to break it :-)
861
862 Binaries (2.0.43):
863
864  Platform                      Avail.  Volunteer
865  ------------------------------------------------------------------
866  AIX 4.3.3                     no      Bill Stoddard
867  Mandrake 8.1                  no      open
868  FreeBSD 4.1                   no      open
869  hppa2.0w-hp-hpux11.00         no      Cliff Woolley
870  i386-pc-solaris2.8            no      Aaron Bannert
871  i386-unknown-freebsd4.5       no
872  i386-unknown-freebsd4.6       no      Cliff Woolley
873  i686-pc-linux-gnu-slackware81 no      Cliff Woolley
874  i686-pc-linux-gnu-rh70        no      Aaron Bannert
875  i686-pc-linux-gnu-rh73        no      Cliff Woolley
876  ia64-hp-hpux11.20             no
877  powerpc-apple-darwin5.5       no      Aaron Bannert
878  powerpc-unknown-linux-gnu     no      Graham Leggett
879  s390-ibm-linux                no      Greg Ames
880  sparc-sun-solaris2.8          no      Jim Jagielski
881  NetWare                       no      Brad Nicholes
882  OS/2                          no      Brian Havard
883  OS/390                        no      Greg Ames
884  Win32-x86                     yes     William Rowe