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