]> granicus.if.org Git - apache/blob - STATUS
Update the STATUS file.
[apache] / STATUS
1 Apache 2.0 STATUS:
2 Last modified at [$Date: 2000/04/10 17:04:08 $]
3
4 Release:
5
6     2.0a2   : vague plans to release in April sometime.
7     2.0a2   : released March 31, 2000
8     2.0a1   : released March 10, 2000
9
10 RELEASE SHOWSTOPPERS:
11     * Re-work configuration for top level Apache.  Work should start with
12       trying to clean the autoconf stuff.  If and only if this proves
13       impossible to do (very unlikely), autoconf should be removed and we
14       will roll our own config implementation.
15           Status: Jim Jagielski is looking into this.
16
17     * Put buffered file I/O back into APR.  This should be done using the
18       buffering logic from the OS/2 directory.  stdio FILE *'s should not be
19       used on Unix because of the limitations these impose on some platforms,
20       for example the 256 File * limit on Solaris.
21
22     * There is a bug in ap_create_process on Linux at least.  Currently CGI
23       processes are not working at all.
24
25     * Fix SAFEREAD.  Can somebody detail what is wrong with SAFEREAD?
26
27     * Fix lingering close
28         Status:
29
30     * MPMs should have responsibility for closing sockets and
31         registering the socket cleanup. Stop registering multiple
32         cleanups for each socket. Move socket close code out of
33         http_connection.c and into the MPMs.
34         Status:
35
36     * Reliable piped logs look broken everywhere. Each MPM includes essentially
37         identical code to ap_register_other_child(), etc. Most of this code can
38         be moved out of the MPMs and into some common file (http_core.c?).
39         Dean says presumably you mean an os-specific file?
40
41     * Pipes to CGI scripts are not being timed out
42         Status: code has been added to APR to support timing out pipes.
43                 This needs to be used in Apache now.
44
45     * Put back resource limit code
46
47     * suEXEC doesn't work
48         Status: Manoj has posted an patch to fix this.
49         <19991103003605.A20612@samosa.mindspring.com>
50
51     * Win32: Enable the Windows MPM to honor max_requests_per_child
52         Status: Bill will fix this.
53
54     * Win32: Get Apache working on Windows 95/98. The following work
55         (at least) needs to be done:
56         - winnt MPM: Fix 95/98 code paths in the winnt MPM. There is some NT
57         specific code that is still not in NT only code paths
58         - APR sendfile uses TransmitFile which is not available on
59         95/98.
60         - ap_stat uses GetFileAttributeEx which is not available on
61         95/98
62
63         Status:
64
65     * Win32: Test access logging with multiple threads. Will the 
66         native file I/O calls serialize automagically like the 
67         CRT calls or do we need to add region locking each time 
68         we access the logs?
69         Status: 
70
71     * Win32:  Smoke test all ported modules to make sure they work 
72         correctly under Windows.
73         Status: 
74
75     * Current 2.0 code is not tested on many Unix platforms. Make 2.0
76       work on most, if not all the systems 1.3 did
77         Status: Autoconf and APR will get us most of the way there.
78
79     * The handler hook needs to use the new registration system
80
81     * Modules.  Which modules do not work yet, can we get a list?
82
83     * We need a thread-safe resolver, at least on Unix.
84         Status: The best known candidate would be something from
85         BIND v9.
86
87 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
88     * Configuration Modules.  Allow a new module type that reads 
89       a config file and sets up an internal tree structure for
90       configuration.
91     
92     * "make distclean" leaves (at least these) turds:
93         lib/.deps
94         lib/apr/.deps
95         lib/apr/shmem/unix/mm/config.log
96         lib/apr/shmem/unix/mm/mm_conf.h
97         lib/apr/shmem/unix/mm/libtool
98         lib/apr/shmem/unix/mm/config.status
99         lib/apr/shmem/unix/mm/Makefile
100         lib/apr/shmem/unix/mm/mm-config
101         main/a
102         modules/.deps
103         modules/mpm/.deps
104         os/.deps
105
106     * the top-level configure.in appears to use $USE_MAINTAINER_MODE = yes
107         to set -Wall/etc. flags, and the APR configure.in appears to use
108         --with-debug.  both seem like more of a hardwired pain compaired
109         to the pre-2.0 method of setting EXTRA_CFLAGS.
110
111     * Win32: Reuse accept socket after transmitfile/close
112         This is not a bug, but would be nice to get this feature in 
113         before ship.
114
115     * Win32: Enable the winnt MPM to use the new scoreboard API
116
117     * Win32: Non-blocking CGI pipes
118
119     * Win32: Graceful restart of a service is broken (code does shutdown then start)
120
121     * Dynamically loadable MPMs
122       Enable users of the binary distributions of Apache to be able to 
123       dynamically load the MPM.
124
125       Dean says this probably isn't a good idea.  For example consider
126       -lpthread, you couldn't have the same core run with pthreads,
127       prefork, and gnu pth without a lot of headaches is my guess.
128
129     * Platforms that do not support fork (primarily Win32 and AS/400)
130       Consider introducing HAVE_FORK feature macro. Architect start-up code
131       that avoids initializing all the modules in the parent process on
132       platforms that do not support fork.
133
134     * Clean the code.  There are a lot of places we used APR but didn't 
135       remove the hacks that were required for the cross-platform code in
136       1.3.  We need to make the code look like APR was supposed to be there. 
137
138     * Go throught the 1.3 Bug DB and research the bugs marked "suspended".
139       People were told these would be considered for inclusion in Apache 2.0,
140       it would be nice to actually do so.
141
142     * Win32: Migrate the MPM over to use APR thread/process calls. This
143       would eliminate some code in the Win32 branch that essentially
144       duplicates what is in APR.
145         Status: Bill <stoddard@raleigh.ibm.com> is working on this.
146
147     * Move I/O layering into APR.
148
149     * There are still a number of places in the code where we are
150       loosing error status (i.e. throwing away the error returned by a
151       system call and replacing it with a generic error code)
152
153     * Win32: Implement reliable piped logs on Windows
154         Status: Bill <stoddard@raleigh.ibm.com> has prototype code (not
155         reliable) in 1.3.  Should be much cleaner with APR in 2.0.
156
157     * Switch to autoconf, et al. for configuration.
158         Status: Manoj has placed an initial version into the 2.0
159         repository. Todos include:
160           
161           - "make install" should work
162           - a tool to simplfy third-party module building should be
163             written. Something like apxs
164           - Add a lot more checks to satisfy the various platforms, e.g.
165             for threading
166
167     * Use APR to get rid of more platform dependancies.
168         Status: Ryan Bloom <rbb@covalenet.net> is working on this.
169
170     * The connection status table is not very efficient. Also, very few stats
171       are exported to the connection status table (easy to fix), and mod_status
172       is ugly.
173
174 Other bugs that need fixing:
175
176     * MaxRequestsPerChild measures connections, not requests.
177         Until someone has a better way, we'll probably just rename it
178         "MaxConnectionsPerChild".
179     
180     * Regex containers don't work in an intutive way
181         Status: No one has come up with an efficient way to fix this
182         behavior. Dean has suggested getting rid of regex containers
183         completely.
184
185     * SIGSEGV on Linux (glibc 2.1.2) isn't caught properly by a
186       sigwaiting thread. We need to work around this, perhaps unless
187       there is hope soon for a fixed glibc.
188
189 Other features that need writing:
190
191     * Finish infrastructure in core for async MPMs
192         Status: post 2.0
193
194     * TODO in source -- just do an egrep on "TODO" and see what's there
195
196 Documentation that needs writing:
197     * Mod_status docs are needed.
198
199     * The concept of MPMs, especially if we ship more than one MPM for a
200       given platform
201
202     * New directives in the various MPMs and appropriate links from
203         obsolete directives in core.html to the MPM documentation.
204
205     * Revise manual/stopping.html and the last part of
206         manual/misc/perf-tuning.html to take account of the MPMs.
207
208     * API documentation
209         Status: Ben Laurie has written some hooks documentation
210         (apache-2.0/htdocs/hooks.html)
211
212     * Changes since 1.3.9 can be more easily seen in the commitlog file
213          dev.apache.org:/home/cvs/CVSROOT/commitlogs/apache-2.0
214       which includes some of Roy's comments when the changes were
215       committed in rough change-sets by purpose.  Note that the commitlog
216       does not show the contents of new files until later.
217
218 Available Patches:
219
220    * Mike Abbott's <mja@trudge.engr.sgi.com> patches to improve
221      performance
222        Status: These were written for 1.3, and are awaiting a port to
223        2.0
224
225 Open issues:
226
227    * What do we do about mod_proxy?
228
229    * Which MPMs will be included with Apache 2.0?
230
231    * Is conf/highperformance.conf-dist obsolete?  It looks obsolete.
232