]> granicus.if.org Git - apache/blob - STATUS
make distclean does not quite
[apache] / STATUS
1 Apache 2.0 STATUS:
2 Last modified at [$Date: 2000/03/02 08:07:21 $]
3
4 Release:
5
6     Vague plan, assuming more features aren't demanded for the 2.0 release
7     2.0a1   : March 2000
8     2.0     : later in 2000
9
10 RELEASE SHOWSTOPPERS:
11     * Fix lingering close
12         Status:
13
14     * MPMs should have responsibility for closing sockets and
15         registering the socket cleanup. Stop registering multiple
16         cleanups for each socket. Move socket close code out of
17         http_connection.c and into the MPMs.
18         Status:
19
20     * Reliable piped logs look broken everywhere. Each MPM includes essentially
21         identical code to ap_register_other_child(), etc. Most of this code can
22         be moved out of the MPMs and into some common file (http_core.c?).
23
24     * DSO hooks registered during the preflight call to ap_read_config
25         are not 'unregistered' during the preflight clean-up. Thus, when 
26         Apache comes up, the hook tables contain two entries for each DSO hook,
27         one of which is bogus, leftover from the preflight. 
28
29     * Pipes to CGI scripts are not being timed out
30         Status: code has been added to APR to support timing out pipes.
31                 This needs to be used in Apache now.
32
33     * Put back resource limit code
34
35     * Port mod_rewrite
36         Status: Paul Reder <rederpj@raleigh.ibm.com> is working on this.
37
38     * suEXEC doesn't work
39         Status: Manoj has posted an patch to fix this.
40         <19991103003605.A20612@samosa.mindspring.com>
41
42     * Win32: Enable the Windows MPM to honor max_requests_per_child
43         Status: Bill will fix this.
44
45     * Win32: Fix Win9* specific code in the winnt MPM
46         Status:
47
48     * Win32: Test access logging with multiple threads. Will the 
49         native file I/O calls serialize automagically like the 
50         CRT calls or do we need to add region locking each time 
51         we access the logs?
52         Status: 
53
54     * Win32:  Smoke test all ported modules to make sure they work 
55         correctly under Windows.
56         Status: 
57
58     * Current 2.0 code is not tested on many Unix platforms. Make 2.0
59       work on most, if not all the systems 1.3 did
60         Status: Autoconf and APR will get us most of the way there.
61
62     * The module API is a weird combination of the old table and the new
63       hook system. Switch completely to the new hook system
64         Status: Ben Laurie is working on this.
65
66     * Modules.  Which modules do not work yet, can we get a list?
67
68     * We need a thread-safe resolver, at least on Unix.
69         Status: The best known candidate would be something from BIND
70         (v8 or v9?) The only other option would be to mutex all the
71         resolver calls,
72
73 RELEASE NON-SHOWSTOPPERS BUT WOULD BE REAL NICE TO WRAP THESE UP:
74
75     * "make distclean" leaves (at least these) turds:
76         lib/.deps
77         lib/apr/.deps
78         lib/apr/shmem/unix/mm/config.log
79         lib/apr/shmem/unix/mm/mm_conf.h
80         lib/apr/shmem/unix/mm/libtool
81         lib/apr/shmem/unix/mm/config.status
82         lib/apr/shmem/unix/mm/Makefile
83         lib/apr/shmem/unix/mm/mm-config
84         main/a
85         modules/.deps
86         modules/mpm/.deps
87         os/.deps
88
89     * Win32: Reuse accept socket after transmitfile/close
90         This is not a bug, but would be nice to get this feature in 
91         before ship.
92
93     * Win32: Enable the winnt MPM to use the new scoreboard API
94
95     * Win32: Non-blocking CGI pipes
96
97     * Win32: Graceful restart of a service is broken (code does shutdown then start)
98
99     * Dynamically loadable MPMs
100       Enable users of the binary distributions of Apache to be able to 
101       dynamically load the MPM.
102
103     * Platforms that do not support fork (primarily Win32 and AS/400)
104       Consider introducing HAVE_FORK feature macro. Architect start-up code
105       that avoids initializing all the modules in the parent process on
106       platforms that do not support fork.
107
108     * Clean the code.  There are a lot of places we used APR but didn't 
109       remove the hacks that were required for the cross-platform code in
110       1.3.  We need to make the code look like APR was supposed to be there. 
111
112     * Go throught the Bug DB and research the bugs marked "suspended".  People
113       were told these would be considered for inclusion in Apache 2.0, it 
114       would be nice to actually do so.
115
116     * Win32: Migrate the MPM over to use APR thread/process calls. This
117       would eliminate some code in the Win32 branch that essentially
118       duplicates what is in APR.
119         Status: Bill <stoddard@raleigh.ibm.com> is working on this.
120
121     * Move I/O layering into APR.
122
123     * There are still a number of places in the code where we are
124       loosing error status (i.e. throwing away the error returned by a
125       system call and replacing it with a generic error code)
126
127     * Win32: Implement reliable piped logs on Windows
128         Status: Bill <stoddard@raleigh.ibm.com> has prototype code (not
129         reliable) in 1.3.  Should be much cleaner with APR in 2.0.
130
131     * Switch to autoconf, et al. for configuration.
132         Status: Manoj has placed an initial version into the 2.0
133         repository. Todos include:
134           
135           - "make install" should work
136           - a tool to simplfy third-party module building should be
137             written. Something like apxs
138           - Add a lot more checks to satisfy the various platforms, e.g.
139             for threading
140
141     * Use APR to get rid of more platform dependancies.
142         Status: Ryan Bloom <rbb@raleigh.ibm.com> is working on this.
143
144     * The connection status table is not very efficient. Also, very few stats
145       are exported to the connection status table (easy to fix), and mod_status
146       is ugly.
147
148 Other bugs that need fixing:
149
150     * MaxRequestsPerChild measures connections, not requests.
151         Until someone has a better way, we'll probably just rename it
152         "MaxConnectionsPerChild".
153     
154     * Regex containers don't work in an intutive way
155         Status: No one has come up with an efficient way to fix this
156         behavior. Dean has suggested getting rid of regex containers
157         completely.
158
159     * SIGSEGV on Linux (glibc 2.1.2) isn't caught properly by a
160       sigwaiting thread. We need to work around this, perhaps unless
161       there is hope soon for a fixed glibc.
162
163 Other features that need writing:
164
165     * Finish infrastructure in core for async MPMs
166         Status: ?
167
168     * TODO in source -- just do an egrep on "TODO" and see what's there
169
170     * Work on other MPMs. Possible MPMs discussed or in progress include:
171
172       - Dean Gaudet's async MPM
173           Status: dean is unlikely to begin work on this any time soon...
174             has lots of ideas he'll share with folks willing to begin
175             tackling the issues.  this is apache 2.1 material.
176
177       - Zach Brown's <zab@zabbo.net> Linux siginfo MPM
178           Status: ?
179
180 Documentation that needs writing:
181
182     * The concept of MPMs, especially if we ship more than one MPM for a
183       given platform
184
185     * New directives in the various MPMs
186
187     * API documentation
188         Status: Ben Laurie has written some hooks documentation
189         (apache-2.0/htdocs/hooks.html)
190
191     * Changes since 1.3.9 can be more easily seen in the commitlog file
192          dev.apache.org:/home/cvs/CVSROOT/commitlogs/apache-2.0
193       which includes some of Roy's comments when the changes were
194       committed in rough change-sets by purpose.  Note that the commitlog
195       does not show the contents of new files until later.
196
197 Available Patches:
198
199    * Mike Abbott's <mja@trudge.engr.sgi.com> patches to improve
200      performance
201        Status: These were written for 1.3, and are awaiting a port to
202        2.0
203
204 Open issues:
205
206    * What do we do about mod_proxy?
207
208    * Which MPMs will be included with Apache 2.0?
209
210    * Is conf/highperformance.conf-dist obsolete?  It looks obsolete.
211