1 APACHE 2.3 STATUS: -*-text-*-
2 Last modified at [$Date$]
4 The current version of this file can be found at:
6 * http://svn.apache.org/repos/asf/httpd/httpd/trunk/STATUS
8 Documentation status is maintained seperately and can be found at:
10 * docs/STATUS in this source tree, or
11 * http://svn.apache.org/repos/asf/httpd/httpd/trunk/docs/STATUS
13 Consult the following STATUS files for information on related projects:
15 * http://svn.apache.org/repos/asf/apr/apr/trunk/STATUS
16 * http://svn.apache.org/repos/asf/apr/apr-util/trunk/STATUS
18 Patches considered for backport are noted in their branches' STATUS:
20 * http://svn.apache.org/repos/asf/httpd/httpd/branches/1.3.x/STATUS
21 * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.0.x/STATUS
22 * http://svn.apache.org/repos/asf/httpd/httpd/branches/2.2.x/STATUS
26 [NOTE that x.{odd}.z versions are strictly Alpha/Beta releases,
27 while x.{even}.z versions are Stable/GA releases.]
29 2.3.2 : in development
30 2.3.1 : Tagged on January 2, 2009.
31 2.3.0 : Tagged on December 6, 2008, not released.
33 Contributors looking for a mission:
35 * Just do an egrep on "TODO" or "XXX" in the source.
37 * Review the bug database at: http://issues.apache.org/bugzilla/
39 * Review the "PatchAvailable" bugs in the bug database:
41 https://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=Apache+httpd-2&keywords=PatchAvailable
43 After testing, you can append a comment saying "Reviewed and tested".
45 * Open bugs in the bug database.
48 CURRENT RELEASE NOTES:
53 * Not all MPMs are updated to set conn_rec::current_thread correctly.
54 (Prefork, Worker, Event, Simple are updated).
56 * Handling of non-trailing / config by non-default handler is broken
57 http://marc.theaimsgroup.com/?l=apache-httpd-dev&m=105451701628081&w=2
58 jerenkrantz asks: Why should this block a release?
59 wsanchez agrees: this may be a change in behavior, but isn't
60 clearly wrong, and even if so, it doesn't seem like a
63 * the edge connection filter cannot be removed
64 http://marc.theaimsgroup.com/?l=apache-httpd-dev&m=105366252619530&w=2
66 jerenkrantz asks: Why should this block a release?
68 stas replies: because it requires a rewrite of the filters stack
69 implementation (you have suggested that) and once 2.2 is
70 released you can't do that anymore.
72 pgollucci: this affects mod_perl I'm pretty sure.
76 * If the parent process dies, should the remaining child processes
77 "gracefully" self-terminate. Or maybe we should make it a runtime
78 option, or have a concept of 2 parent processes (one being a
80 See: Message-ID: <3C58232C.FE91F19F@Golux.Com>
82 Self-destruct: Ken, Martin, Lars
83 Not self-destruct: BrianP, Ian, Cliff, BillS
84 Make it runtime configurable: Aaron, jim, Justin, wrowe, rederpj, nd
86 /* The below was a concept on *how* to handle the problem */
87 Have 2 parents: +1: jim
88 -1: Justin, wrowe, rederpj, nd, pgollucci
89 +0: Lars, Martin (while standing by, could it do
92 * Make the worker MPM the default MPM for threaded Unix boxes.
93 +1: Justin, Ian, Cliff, BillS, striker, wrowe, nd, pgollucci
94 +0: BrianP, Aaron (mutex contention is looking better with the
95 latest code, let's continue tuning and testing), rederpj, jim
98 pquerna: Do we want to change this for *2.4*?
101 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
103 * Patches submitted to the bug database:
104 http://issues.apache.org/bugzilla/buglist.cgi?bug_status=NEW&bug_status=ASSIGNED&bug_status=REOPENED&product=Apache+httpd-2&keywords=PatchAvailable
106 * Filter stacks and subrequests, redirects and fast redirects.
107 There's at least one PR that suffers from the current unclean behaviour
108 (which lets the server send garbage): PR 17629
109 nd says: Every subrequest should get its own filter stack with the
110 subreq_core filter as bottom-most. That filter does two things:
111 - swallow EOS buckets
112 - redirect the data stream to the upper request's (rr->main)
113 filter chain directly after the subrequest's starting
115 Once we have a clean solution, we can try to optimize
116 it, so that the server won't be slow down too much.
118 * RFC 2616 violations.
120 Open PRs: 15852, 15859, 15861, 15864, 15865, 15866, 15868, 15869,
121 15870, 16120, 16125, 16126, 16133, 16135, 16136, 16137,
122 16138, 16139, 16140, 16142, 16518, 16520, 16521,
123 jerenkrantz says: need to decide how many we need to backport and/or
124 if these rise to showstopper status.
125 wrowe suggests: it would be nice to see "MUST" v.s. "SHOULD" v.s. "MAY"
126 out of this list, without reviewing them individually.
128 * There is a bug in how we sort some hooks, at least the pre-config
129 hook. The first time we call the hooks, they are in the correct
130 order, but the second time, we don't sort them correctly. Currently,
131 the modules/http/config.m4 file has been renamed to
132 modules/http/config2.m4 to work around this problem, it should moved
133 back when this is fixed.
135 OtherBill offers that this is a SERIOUS problem. We do not sort
136 correctly by the ordering arguments passed to the register hook
137 functions. This was proven when I reordered the open_logs hook
138 to attempt to open the error logs prior to the access logs. Possibly
139 the entire sorting code needs to be refactored.
141 * pipes deadlock on all platforms with limited pipe buffers (e.g. both
142 Linux and Win32, as opposed to only Win32 on 1.3). The right solution
143 is either GStein's proposal for a "CGI Brigade", or OtherBill's proposal
144 for "Poll Buckets" for "Polling Filter Chains". Or maybe both :-)
146 * All handlers should always send content down even if r->header_only
147 is set. If not, it means that the HEAD requests don't generate the
148 same headers as a GET which is wrong.
150 * exec cmd and suexec arg-passing enhancements
151 Status: Patches proposed
152 Message-ID: <20020526041748.A29148@prodigy.Redbrick.DCU.IE>
153 (see the "proc.patch" and "suexec-shell.patch" links in this message)
155 * The 2.0.36 worker MPM graceless shutdown changes work but are
156 a bit clunky on some platforms; eg, on Linux, the loop to
157 join each worker thread seems to hang, and the parent ends up
158 killing off the child with SIGKILL. But at least it shuts down.
160 chrisd: Has this been fixed by the changes for PR 38737?
162 * --enable-mods-shared="foo1 foo2" is busted on Darwin. Pier
163 posted a patch (Message-ID: <B8DBBE8D.575A%pier@betaversion.org>).
165 * We do not properly substitute the prefix-variables in the configuration
166 scripts or generated-configs. (i.e. if sysconfdir is etc,
167 httpd-std.conf points to conf.)
169 * If any request gets through ap_process_request_internal() and is
170 scheduled to be served by the core handler, without a flag that this
171 r->filename was tested by dir/file_walk, we need to 500 at the very
172 end of the ap_process_request_internal() processing so sub_req-esters
173 know this request cannot be run. This provides authors of older
174 modules better compatibility, while still improving the security and
177 Status: still need to decide where this goes, OtherBill comments...
178 Message-ID: <065701c14526$495203b0$96c0b0d0@roweclan.net>
179 [Deleted comments regarding the ap_run_handler phase, as irrelevant
180 as BillS points out that "common case will be caught in
181 default_handler already (with the r->finfo.filetype == 0 check)"
182 and the issue is detecting this -before- we try to run the req.]
184 gregames says: can this happen somehow without a broken module
185 being involved? If not, why waste cycles trying to defend against
186 potential broken modules? It seems futile.
187 wrowe counters: no, it shouldn't happen unless the module is broken.
188 But the right answer is to fail the request up-front in dir/file
189 walk if the path was entirely invalid; and we can't do that either
190 UNTIL 2.1 or we break modules that haven't hooked map_to_storage.
192 * With AP_MODE_EXHAUSTIVE in the core, it is finally clear to me
193 how the Perchild MPM should be re-written. It hasn't worked
194 correctly since filters were added because it wasn't possible to
195 get the content that had already been written and the socket at
196 the same time. This mode lets us do that, so the MPM can be
199 * Can a static httpd be built reliably?
200 Message-ID: <20020207142751.T31582@clove.org>
202 * Usage of APR_BRIGADE_NORMALIZE in core_input_filter should be
205 <Pine.LNX.4.33.0201202232430.318-100000@deepthought.cs.virginia.edu>
206 Jeff wonders if we still care about this. It is no longer an
207 API issue but simply an extra trip through the brigade.
209 * Get perchild to work on platforms other than Linux. This
210 will require a portable mechanism to pass data and file/socket
211 descriptors between vhost child groups. An API was proposed
213 Message-ID: <20020111115006.K1529@clove.org>
215 * Try to get libtool inter-library dependency code working on AIX.
216 Message-ID: <cm3n10lx555.fsf@rdu163-40-092.nc.rr.com>
218 Justin says: If we get it working on AIX, we can enable this
219 on all platforms and clean up our build system somewhat.
220 Jeff says: I thought I tested a patch for you sometime in
221 January that you were going to commit within a few days.
223 * Handling of %2f in URIs. Currently both 1.3 and 2.0
224 completely disallow %2f in the request URI path (see
225 ap_unescape_url() in util.c). It's permitted and passed
226 through in the query string, however. Roy says the
227 original reason for disallowing it, from five years ago,
228 was to protect CGI scripts that applied PATH_INFO to
229 a filesystem location and which might be tricked by
230 ..%2f..%2f(...). We *should* allow path-info of the
231 form 'http://foo.com/index.cgi/path/to/path%2finfo'.
232 Since we've revamped a lot of our processing of path
233 segments, it would be nice to allow this, or at least
234 allow it conditionally with a directive.
236 OtherBill adds that %2f as the SECOND character of a multibyte
237 sequence causes the request to fail! This happens notably in
240 * There is increasing demand from module writers for an API
241 that will allow them to control the server à la apachectl.
242 Reasons include sole-function servers that need to die if
243 an external dependency (e.g., a database) fails, et cetera.
244 Perhaps something in the (ever more abused) scoreboard?
246 On the other hand, we already have a pipe that goes between parent
247 and child for graceful shutdown events, along with an API that
248 can be used to send a message down that pipe. In threaded MPMs,
249 it is easy enough to make that one pipe be used for graceful
250 and graceless events, and it is also easy to open that pipe
251 to both parent and child for writing. Then we just need to
252 figure out how to do graceless on non-threaded MPMs.
254 * Allow the DocumentRoot directive within <Location > scopes? This
255 allows the beloved (crusty) Alias /foo/ /somepath/foo/ followed
256 by a <Directory /somepath/foo> to become simply
257 <Location /foo/> DocumentRoot /somefile/foo (IMHO a bit more legible
258 and in-your-face.) DocumentRoot unset would be accepted [and would
259 not permit content to be served, only virtual resources such as
260 server-info or server-status.
261 This proposed change would _not_ depricate Alias.
262 striker: See the thread starting with Message-ID:
263 JLEGKKNELMHCJPNMOKHOGEEJFBAA.striker@apache.org.
265 * Win32: Rotatelogs sometimes is not terminated when Apache
266 goes down hard. FirstBill was looking at possibly tracking the
267 child's-child processes in the parent process.
268 stoddard: Shared scoreboard might offer a good way for the parent
269 to keep track of 'other child' processes and whack them if the child
271 Other thoughts on walking the process chain using the NT kernel
272 have also been proposed on APR.
274 * Eliminate unnecessary creation of pipes in mod_cgid
276 * Combine log_child and piped_log_spawn. Clean up http_log.c.
279 * Platforms that do not support fork (primarily Win32 and AS/400)
280 Architect start-up code that avoids initializing all the modules
281 in the parent process on platforms that do not support fork.
283 * There are still a number of places in the code where we are
284 losing error status (i.e. throwing away the error returned by a
285 system call and replacing it with a generic error code)
287 * Mass vhosting version of suEXEC.
289 * All DBMs suffer from confusion in support/dbmmanage (perl script) since
290 the dbmmanage employs the first-matched dbm format. This is not
291 necessarily the library that Apache was built with. Aught to
292 rewrite dbmmanage upon installation to bin/ with the proper library
293 for predictable mod_auth_dbm administration.
294 Questions; htdbm exists, time to kill dbmmanage, or does it remain
295 useful as a perl dbm management example? If we keep it,
296 do we address the issue above?
299 Some additional items remaining:
300 - case_preserved_filename stuff
301 (use the new canonical name stuff?)
302 - find a new home for ap_text(_header)
303 - is it possible to remove the DAV: namespace stuff from util_xml?
305 * ap_core_translate() and its use by mod_mmap_static and mod_file_cache
306 are a bit wonky. The function should probably be exposed as a utility
307 function (such as ap_translate_url2fs() or ap_validate_fs_url() or
308 something). Another approach would be a new hook phase after
309 "translate" which would allow the module to munge what the
310 translation has decided to do.
311 Status: Greg +1 (volunteers)
313 * Explore use of a post-config hook for the code in http_main.c which
314 calls ap_fixup_virutal_hosts(), ap_fini_vhost_config(), and
315 ap_sort_hooks() [to reduce the logic in main()]
317 * read the config tree just once, and process N times (as necessary)
319 * (possibly) use UUIDs in mod_unique_id and/or mod_usertrack
321 * (possibly) port the bug fix for PR 6942 (segv when LoadModule is put
322 into a VirtualHost container) to 2.0.
324 * shift stuff to mod_core.h
326 * callers of ap_run_create_request() should check the return value
327 for failure (Doug volunteers)
329 * Fix the worker MPM to use POD to kill child processes instead
330 of ap_os_killpg, regardless of how they should die.
332 chrisd: Is this done, by any chance? See r92598 and r93358.
334 * Scoreboard structures could be changed in the future such that
335 proper alignment is not maintained, leading to segfaults on
336 some systems. Cliff posted a patch to deal with this issue but
337 later recanted. See this message to dev@apr.apache.org:
339 <Pine.LNX.4.44.0203011354090.16457-200000@deepthought.cs.virginia.edu>
341 * APXS either needs to be fixed completely for use when apr is out of tree,
342 or it should drop query mode altogether, and we just grow an
343 httpd-config or similar arrangement.
344 To quote a discussion in STATUS earlier:
346 thommay: this doesn't fix all the problems with apxs and out of
347 tree apr/apr-util, but it's a good start. There's still the
348 query cases; but I'm beginning to think that in these cases
349 the app should be querying ap{r,u}-config directly
350 deprecate -q: add htpd-config: gstein, pquerna, minfrin, pgollucci
353 TODO ISSUES REMAINING IN MOD_SSL:
355 * Do we need SSL_set_read_ahead()?
357 * the ssl_expr api is NOT THREAD SAFE. race conditions exist:
358 -in ssl_expr_comp() if SSLRequire is used in .htaccess
359 (ssl_expr_info is global)
360 -is ssl_expr_eval() if there is an error
361 (ssl_expr_error is global)
363 * SSLRequire directive (parsing of) leaks memory
365 * Diffie-Hellman-Parameters for temporary keys are hardcoded in
366 ssl_engine_dh.c, while the comment in ssl_engine_kernel.c says:
367 "it is suggested that keys be changed daily or every 500
368 transactions, and more often if possible."
370 * ssl_var_lookup could be rewritten to be MUCH faster
372 * CRL callback should be pluggable
374 * session cache store should be pluggable
376 * init functions should return status code rather than ssl_die()
378 * ssl_engine_pphrase.c needs to be reworked so it is generic enough
379 to also decrypt proxy keys
381 * output warning when allowing SSL v2.0 ? its so old
384 * mod_proxy: Ability to run SSL over proxy gateway connections,
385 encrypting (or reencrypting) at the proxy.
387 * mod_cache: Handle ESI tags.
389 * mod_cache: Resolve issue of how to cache page fragements (or perhaps
390 -if- we want to cache page fragements). Today, mod_cache/mod_mem_cache
391 will cache #include 'virtual' requests (but not #include 'file'
392 requests). This was accomplished by making CACHE_IN a
393 CONTENT_SET-1 filter to force it to run before the SUBREQ_CORE
394 filter. But now responses cannot be cached that include the
395 effects of having been run through CONTENT_SET filters
396 (mod_deflate, mod_expires, etc). We could rerun all the
397 CONTENT_SET filters on the cached response, but this will not
398 work in all cases. For example, mod_expires relies on installing
399 the EXPIRATION filter during fixups. Contents served out of
400 mod_cache (out of the quick_handler) bypass -all- the request
401 line server hooks (Ryan really hated this. It is great for
402 performance, but bad because of the complications listed above).
404 mod_cache/mod_mem_cache/mod_disk_cache:
406 * mod_mem_cache: Consider adding a RevalidateTimeout directive to
407 specify time at which local cached content is to be revalidated
408 (ie, underlying file stat'ed to see if it has changed).
410 * mod_cache: CacheEnable/CacheDisable should accept regular expressions.
411 jerenkrantz says: Too slow. Get regexs away from speedy caches by
412 default. Introduce a new CacheEnableRegex if you want.
414 * mod_mem_cache/mod_disk_cache: Need to be able to query cache
415 status (num of entries, cache object properties, etc.).
416 mod_status could be extended to query optional hooks defined
417 by modules for the purpose of reporting module status.
418 mod_cache (et. al.) could define optional hooks that are called
419 to collect status. Status should be queryable by
421 jerenkrantz says: Yawn. Who cares.
423 * MaxRequestsPerChild measures connections, not requests.
424 Until someone has a better way, we'll probably just rename it
425 "MaxConnectionsPerChild".
427 * Regex containers don't work in an intutive way
428 Status: No one has come up with an efficient way to fix this
429 behavior. Dean has suggested getting rid of regex containers
431 OtherBill suggests: We at least seem to agree on eliminating
432 the <Container ~ foo> forms, and using only
433 <ContainerMatch foo> semantics.
435 * orig_ct in the byterange/multipart handling may not be
436 needed. Apache 1.3 just never stashed "multipart" into
437 r->content_type. We should probably follow suit since the
438 byterange stuff doesn't want the rest of the code to see the
439 multipart content-type; the other code should still think it is
440 dealing with the <orig_ct> stuff.
441 Status: Greg volunteers to investigate (esp. since he was most
442 likely the one to break it :-)
444 EXPERIMENTAL MODULES:
446 Experimental modules should eventually be be promoted to fully supported
447 status or removed from the repository entirely (ie, the
448 'experiment' failed). This section tracks what needs to happen to
449 get the modules promoted to fully supported status.