set version 2.2.10
[mod_fastcgi.git] / CHANGES
blob0b92453bb40eabffee14fbb97f9eca7f048610f8
1 2.2.10
3  *) Allow absolute pathnames in the -socket argument.  Suggested by 
4     Christian Jaeger [christian.jaeger@sl.ethz.ch].
6  *) Don't invoke suexec when the user/group for the fastcgi application
7     is the same as the apache main server.  This is consistent with 
8     apache's suexec handling.  Suggested by Nikolaus Rath [Nikolaus@rath.org].
10  *) Reset the apache drop dead timer upon successful read or writes
11     to/from the client.  This eliminates timeouts that were occuring
12     during the large file transfers to/from slow clients.
14  *) Support generic wrappers such as cgiwrap by eliminating dependencies
15     on Apache's SUEXEC, renaming the FastCgiSuexec directive 
16     FastCgiWrapper and eliminating any checks regarding the target 
17     application (this is the repsonibility of the wrapper).
19  *) Fix a nasty bug that occurred when a client aborted a POST request 
20     before the connection to a dynamic FastCGI application was opened.
21     The application's lock file descriptor wasn't setup but was being 
22     closed which resulted in FD0 being closed.  Normally this is open to 
23     /dev/null and should pose no problems except that because the FD
24     was available it was being returned by Apache's accept().  This 
25     caused it to be registered for pool cleanup.  mod_cgi though moves
26     the CGI stdin pipe to FD0 and thus it was getting waxed during pool
27     cleanup.  Problem identified by checksum@163.net.
29 Changes with mod_fastcgi 2.2.8
31  *) Eliminate the concept of disabled applications.  If a failure 
32     occurs trying to setup an application (e.g. bind() error) its 
33     tried repeatedly every init-start-delay seconds.
35  *) Tweak to Makefile.tmpl to support DSOs.  Dave Hill [ddhill@zk3.dec.com]
37 Changes with mod_fastcgi 2.2.6
39  *) Shutdown the PM when Apache appears to have disappeared.
41  *) seteuid() tweak for HP-UX 11.  Milton L. Hankins [mlh@swl.msd.ray.com]
43  *) (Win32) More dynamic fixes.
45  *) (Win32) Eliminate the per application named pipe mutex.  Its now 
46     per process to keep the lib happy (the use _FCGI_MUTEX_ should
47     removed from the lib).  This allows pipe-based applications to
48     now handle multiple simoultanous requests (one per process).
50  *) Increase the number of open FDs we look to close when spawning apps.
52  *) Prevent an assert from popping unnecessarily.
54  *) (Win32) Add support for interpretter scripts.
56  *) (Win32) Fix named pipe handling (problems with large responses).
58  *) (Win32) Remove the "can exec" check.
60 Changes with mod_fastcgi 2.2.4
62  *) Beta WinNT support.  David Allen [djallen@raleigh.ibm.com] and 
63     Rob Saccoccio [robs@chelsea.net]
65  *) Remove request type restriction (GET and POST only) in order to support
66     Web DAV requests.  Scott Robertson [sroberts@codeit.com] 
68  *) Allow requests for URLs such as /server/some/other/qualifier to match a
69     FastCGI server defined as /server.  This was done primarily for Java
70         Servlets, but is generically useful.
72  *) Change the comm between the PM and the request handlers from a regular
73     file to a pipe and an assortment of other dynamic fixes.
75  *) Log dynamic process termination scheduling and the resulting 
76     process exit notification.
78  *) Change the default singleThreshhold from 10 to 0 to prevent the last dynamic
79     application process from being killed off due to low demand.
81  *) Clean up FastCGI application pathnames (e.g. remove duplicate slashes). 
83  *) Fix bugs that prevented dynamic processes from being shutdown when
84     the load subsided.  Lars Heete [heete@do.isst.fhg.de]
86  *) Prevent dynamic processes from being scheduled to be started before
87     the init-start-delay or restart-delay period expires.  This prevents
88         the queuing of process start requests while an application which has
89         a long initialization period starts up.
91  *) When suexec is enabled, allow the process manager to become root again in
92     order to signal applications it spawned.
94  *) Change the "server started" log message level from INFO to WARN.
96  *) Fix dynamic server "Connection Refused" handling.
98  *) Fix demand-based dynamic process spawing (uses a more portable approach).
100  *) Add -idle-timeout arg to FastCgiServer, FastCgiExternalServer, and
101     FastCgiConfig.  mod_fastcgi will now abort a connection if inactive for
102         longer than this period.  It applies to the initiation of connections as
103         well (and thus is similar to appConnTimeout).  Default is 30 seconds.
105  *) appConnTimeout is 0 by default now resulting in blocking connect()s.  This
106     is more platform portable/predicable.
108  *) Leave STDOUT and STDERR open to the main server error_log.  This should
109     eliminate a pile of protocol errors and having to track down 3rd party
110     libs writing to stderr inadvertantly.  This doesn't mean these shouldn't
111     be fixed in the application to use the FastCGI I/O, it just allows these
112     applications to run when previously they'd crash and burn.
114  *) Add the pass-header arg to server directives.
116  *) Allow supplementary groups to be passed to spawned FastCGI applications (as
117     is done for CGI) - at least until PR2580 is resolved.
119  *) Initialize the default (empty) environment in a more socially acceptable
120     way.
122  *) Miscellaneous doc improvements based on notes I've collected up over the
123     last few months.
125  *) Fix a bug in the stderr handling introduced in 2.2.2.  There were conditions
126     that resulted in not or improperly terminated strings.
128  *) Fix the call to setsockopt() to disable Nagle.  [based on a bug report by
129     Johannes Plassmann <johannes.plassmann@pdb.siemens.de>]
131 Changes with mod_fastcgi 2.2.2
133  *) Added support for blocking connect()s by setting appConnTimeout to 0.
134     Non-blocking connect()s (the default) can be troublesome on some platforms.
135     Its expected that blocking connect()s will become the default (and
136     non-blocking connect()s will become optional) in the next release.
138  *) Dump a compile time error if the version of Apache is too old.
140  *) Wrap the SIGPIPE handler manipulation code such that it is only applicable
141     to Apache releases prior to 1.3.6.
143  *) Minor tweaks for RUSSIAN_APACHE.  [Sergey Gershtein <sg@mplik.ru>]
145  *) Dynamic updates:
147     Always restart a failed dynamic application if it is the last instance.
148     This means there once started there will always be at least one process
149     instance of a dynamic application.
151     Send PLEASE_START to the PM when a connect() results in an ECONNREFUSED.
152     ECONNREFUSED means the listen queue is full (or there isn't one).  Asking
153     the PM to start (another) application instance may help empty it faster.
155     Change two sleep() calls to select() based snoozes because alarm() is in
156     effect and sleep() and alarm() don't always play nice together.
158     Fixed a couple of error messages.
160  *) Fix -listen-queue-depth arg on FastCgiConfig (dynamic).  Previously it
161     was ignored and the default was always used.
163  *) Allow the -initial-env argument to be used to pass variables from the
164     Apache process environment to the FastCGI server (by specifying a
165     variable name without the "=" or a value).  [suggested by
166     Martin Lichtin <lichtin@oanda.com>]
168  *) Cleanup some debug macros.
170  *) Improved script stderr handling.  [based on suggestions by
171     David Birnbaum <davidb@chelsea.net>]
173  *) Added IRIX and FreeBSD to the list of supported platforms and other minor
174     updates to the INSTALL doc.
176  *) Changed the default listen-queue-depth (FCGI_DEFAULT_LISTEN_Q) from
177     5 to 100.  Its still configurable with the -listen-queue-depth option.
178     This should help eliminate the FAQ - Why do I see "Connection Refused"
179     messages in the log?
181  *) Fix a bug in FastCgiExternalServer that broke support for external servers
182     on other hosts.  [Dave Neuer <dneuer@futuristics.net>]
184 Changes with mod_fastcgi 2.2.1
186  *) Updates to the INSTALL doc to describe building as a DSO.
188  *) If the FastCgiIpcDir directive was in use and "httpd -t" was issued while
189     Apache was running ("apachectl restart" does this), the contents of the
190     dynamic directory (dynamic sockets and the mbox) would be blown away
191     (a 2.1b1 bug).
193  *) Add an extern declaration for ap_sys_siglist (its exposed but not in any
194     Apache header file) to prevent a compile error on systems without
195     SYS_SIGLIST defined.
197  *) During auth requests, the subprocess_env table was left holding variables
198     sent to the auth FastCGI server (including REMOTE_PASSWD!) which means they
199     were passed to other processing phases (such as CGI/FastCGI).  The
200     subprocess_env is now restored to its pre-auth condition.
202  *) Added a FastCGI Authorizer Role compatibility mode which implements the
203     specification to the tee.  Use -compat arg with any of the Auth server
204     directives.  This is intended for new and existing FastCGI authorizer
205     applications that require compatibility with other server implementations.
207  *) Fix logging from the process manager.  Previously, all calls to the
208     logging routines used NULL for the server_rec.  This works fine in a dev
209     environment, but results in most of these messages being tossed by
210     log_error_core() because DEFAULT_LOGLEVEL is too low.  Odd logic.
212  *) Always setup fr->header so that in the event the FastCGI server
213     doesn't get a valid FastCGI protocol header over the wire, we
214     can still print our error message to the log from do_work().
216  *) Fix a compile error in open_connection_to_fs() on systems with TCP_NODELAY
217     defined (Don Locrasto [locrasto@iceminer.com]).
219 Changes with mod_fastcgi 2.2.0
221  *) Serious rewrite of mod_fastcgi.html.  An example conf will have
222     to wait until another time - I'm burned out on docs updates.
224  *) Add to the mod_fastcgi to the server version string.
226  *) SCO doesn't like the const in the arg to inet_addr() and
227     gethostbyname().
229  *) Use Apache's NET_SIZE_T to get the correct arg type for getsockopt().
231  *) Deleted redundant header files from fcgi.h.
233  *) Full path names are no longer required for directives which take
234     file names as arguments.  Like other Apache directives you can
235     specify paths from server_root (don't start with a "/").
237  *) The fcgiKillMgr is gone.  This intermediate process sat between
238     the Apache parent and the FastCGI Process Manager under Apache
239     1.2.         The process manager tries to name itself fcgi_pm (it used
240     to be fcgiProcMgr).
242  *) Authentication, Authorization, and Access phases are now
243     supported. I've bent the FastCgi spec a bit: as many of the standard
244     environment variables (that were easy) are sent (the spec says don't
245     send some by name), all headers (except Status) sent by the auth
246     FastCgi server are passed to subprocesses (CGI/FastCGI invocations)
247     as environment variables rather than just those prefixed by
248     "Variable-".  Custom responses for auth failures aren't supported
249     (yet.. we'll see what the demand for this is like).  In addition to
250     the FastCGI protocol defined environment variable "FCGI_ROLE" being
251     set to "AUTHORIZER" an environment variable "FCGI_APACHE_ROLE" is
252     set indicating which of the three phases is being processed.  See
253     the docs for info on the new per-directory directives:
255         FastCgiAuthenticator, FastCgiAuthenticatorAuthoritative,
256         FastCgiAuthorizer, FastCgiAuthorizerAuthoritative,
257         FastCgiAccessChecker, FastCgiAccessCheckerAuthoritative
259  *) The code has been broken into logical chunks making figuring it
260     out much easier.  All of the #defines a user may want to change are
261     now in mod_fastcgi.h.
263  *) All the logging has been converted to the "supported" Apache
264     logging routines, ap_log_error() and ap_log_rerror().  Log entries
265     for request specific errors should now be directed to the correct
266     server errorlog (if your running more than one).  Some attempt has
267     been made at setting appropriate log levels (comments of course are
268     welcome) and printing errno info when its of value.  All of log
269     messages now have "FastCGI" in them (nice for grep).
271  *) All of the calls to Apache routines have been updated to the ap_
272     convention, eliminating the need for the compat header.
274  *) By default we no longer flush every piece of data we get from the
275     FastCGI server to the client.  This allows the FastCGI server to
276     release without having to wait for the client flush to complete.
277     The old behaviour can revived with the -flush argument to AppClass.
279  *) I renamed some of the directives for consistency (the old names
280     still work).
282         AppClass -> FastCgiServer,
283         FCGIConfig -> FastCgiConfig,
284         ExternalAppClass -> FastCgiExternalServer
286  *) Directive arguments are no longer case sensitive.
288  *) The module now uses hard_timeout() rather than soft_timeout.  This
289     means that the module will longjump out of the request if the
290     drop-dead timeout expires (set with Apache's Timeout directive, the
291     default is 5min) or if the client closes the connection (SIGPIPE).
292     This is more typical for a Apache modules and I'm not convinced we
293     properly handle all of the error cases well enough to use
294     soft_timeout (I can think of one place we don't anyway). This means
295     your FastCGI application can see SIGPIPE.
297  *) SIGPIPE is now ignored by default in FastCGI servers spawned by
298     Apache.  Without this the default behaviour is exit().
300  *) It should (I think) run now under DSO now.
302  *) The bug which prevented sending of binary data in 2.1b1 is fixed.
304  *) The broken -initial-env bug ins 2.1b1 is fixed.
306  *) Maybe some other stuff.
310 *** Well there's a big gap here.  Maybe I'll go back and extract the CVS
311 commit notes and stick 'em in here.. when I get some free time. ;)
313     --robs  (8 Feb 99)
316 *** Originally from docs/README..
318 Apache[X1.03.01]/mod_fastcgi[02.00.05] 19970909 unsupported
319 From: Stanley Gambarin <stanleyg@cs.bu.edu>
321  *) Yet more changes to the source distribution.  Separated out
322     the Tcl dynamic string and buffer libraries into separate files.
323     Did the same for the OS library, however, it is not really an
324     abstraction... more like a bunch of wrappers.  Added to DEVNOTES
325     a note about the problem of Apache not allowing including header
326     file more than once.
328 Apache[X1.03.01]/mod_fastcgi[02.00.04] 19970908 unsupported
329 From: Stanley Gambarin <stanleyg@cs.bu.edu>
331  *) More changes to the installation scripts.  Theoretically we
332     should be able to to use the same Makefile/installation script
333     for both Apache 1.2.x and 1.3.x.  Need some sort of the abstraction
334     layer to use the same source code for both 1.2.x and 1.3.x sources.
336 Apache[X1.03.01]/mod_fastcgi[02.00.03] 19970905 unsupported
337 From: Stanley Gambarin <stanleyg@cs.bu.edu>
339  *) Created Makefile to compile the module into the archive library,
340     just like the proxy module.  Also initial draft of the installation
341     script, which should work for both 1.2 and 1.3 sources of Apache.
343 Apache[01.02.04]/mod_fastcgi[02.00.02] 19970903 unsupported
344 From: Stanley Gambarin <stanleyg@cs.bu.edu>
346  *) More source reorg.  Separated out some header files.  Need much
347     more work on this.  Updated the TODO file.  Added fcgivers.h and
348     CHANGES     file to track the history.
350 Apache[01.02.04]/mod_fastcgi[02.00.01] 19970902 unsupported
351 From: Stanley Gambarin <stanleyg@cs.bu.edu>
353  *) Source reorganization.  This is done to provide a basis for later
354     functionality implementation.  See TODO file for more information
355     of what possible future enhancements are possible/desired.
357 Apache[01.02.04]/mod_fastcgi[02.00.00] 19970902 unsupported
358 From:  David MacKenzie <djm@va.pubnix.com>
360  *) Create the "dynamic" dir and "mbox" as the user specified in the
361     User and Group directives instead of as root.  They are created with
362     restrictive permissions, and then the module checks to see whether the
363     user specified in the User and Group directives has read, write, and
364     execute permissions on them.  Those permissions had been explicitly
365     denied by creating them as "root".
367  *) Some documentation was garbled or incomplete.
369  *) When a FastCGI application can't be execl'd, the code used a
370     value of errno that may have been stomped on by intervening system
371     calls.  That happened on BSD/OS 2.1, where the error_log was
372     reporting errno=25 (NOTTY) instead of the correct errno=13 (EACCES).
373     An intervening stdio call was setting errno as a side-effect, which
374     it has the right to do.
376  *) Erroneous fprintf arguments, a missing return value, an unused
377     function, missing declarations, and other problems detected by gcc
378     -Wall.
380  *) Duplicated code to create the lock file name merged into a single
381     function, closing several memory leaks.
383  *) FCGIConfig -minProcesses didn't allow a value of 0, so the last
384     FCGI app in a given dynamic class would live forever, even if it
385     hadn't been requested for weeks.
387  *) The test for whether to keep looking for dynamic app victims to
388     kill was backwards, so no dynamic apps were ever selected as
389     victims.
391  *) The killInterval and updateInterval were being ignored; the
392     sigsuspend() forced recalculations only when a child died,
393     instead of at the intervals specified.
395  *) When a dynamic app couldn't be started, the program SEGV'd when
396     trying to free the ipcAddrPtr twice.
398  *) Remove the dead lock file and socket when cleaning up after a
399         server whose last child has been killed, so the FastCGIHandler
400     isn't fooled into thinking there is still a process serving
401     that app.
403  *) Make file locking robust in the presence of signals.
405  *) Rename some badly named variables.
407  *) Fix typos in many comments.
409  *) Fix some memory and file descriptor leaks.
411  *) Make the blocking kill of a server closer to working.
413  *) More fixes to calculations in dynamic application management.
416 *** Originally from docs/README.OMI..
418 What's New: Version 2.0b1, 16 Apr 1997
420  *) Implemented a mechanism by which FastCGI applications are started by
421     the web server on the first request and continue running.  Also,  a
422     heuristics have been implemented to allow for dynamic killing of the
423     running FastCGI apps.  The configuration options are supplied via
424         the new FCGIConfig directive, that is described in the
425         mod_fastcgi.html
427  *) When performing internal redirect, since the original request's body
428     has already been read, do not allow the redirected request to think
429     that is has one [body].
431  *) More conditional compilation for OS/2.
433  *) Fixed occassional  "Assertion failed: len > 0, file mod_fastcgi.c"
435  *) Fixed "failed assertion `count >= 0 && count <= bufPtr->length'"
437  *) Added bflush() call after bwrite() in DrainReqOutBuf function to
438     force some output to be written in the period of inactivity. This
439     circumvents the Apache's buffering during the server-push.
441  *) Added a header-parser function placeholder for compatibility with an
442     Apache source code.
444  *) Additional checks have been placed with regard to permissions of the
445     FastCGI processes.  These include the existence of the  file,
446     ExecCGI and IncludesNOEXEC checks, disallowing of nph- scripts, etc.
448  *) Implemented a restart cleanup, so that no parentlesses FastCGI
449         applications are left after Apache is restarted and/or terminated.
450         This was accomplished via two independent mechanisms, where the
451         first one prevents a start of the process manager on the first
452         reading of the configuration files.  The second mechanism deals away
453         from Apache's  implementation of fork() (via spawn_child()) and
454         implements its own forking, thus removing any dependencies on the
455         Apache to cleanup  processes during termination phase.
457  *) Removed the definition of the Sigfunc, as Apache 2.0b10 defines it
458     itself in the file conf.h
460 What's New: Version 1.4.3, 15 Jan 1997
462  *) Fixed compilation warnings for various platforms, as well as
463         conditional compilation for OS/2.
465 What's New: Version 1.4.2, 12 Dec 1996
467  *) mod_fastcgi.c is ported to Apache 1.2b.  Any further development
468         will proceed under this version of Apache web server.
470  *) As the result of porting, the "include virtual" construct of SSI
471         will now work correctly using either <Location> or <Directory>
472         directive.
474 What's New: Version 1.4.1, 4 Dec 1996
476  *) Checks have been removed from the ScanCGIHeaders that provided
477     for the presence of both Status and Location headers as being
478     an error.  Contradictory to CGI/1.1 Internet Draft, both of
479     these headers are used by the current CGI applications.
481 What's New: Version 1.4, 22 Nov 1996
483  *) Added the -port option to AppClass, allowing TCP/IP communication.
484     Added the -socket option to AppClass, allowing Unix domain
485     communication via a configurable pathname.
487  *) Added the ExternalAppClass directive, allowing TCP/IP
488     communication with remote FastCGI applications.
490  *) The handler had its own code for generating HTTP response headers;
491     now it uses Apache's.  This reduces the size of the module.
492     More importantly, it fixes the bug in which "include virtual"
493     sees the HTTP response headers.
495  *) The response header parser performed very little checking.
496     Now the parser enforces the guidelines in the CGI/1.1
497     Internet-Draft: Status and Location are mutually exclusive,
498     Location can only be a response to GET or HEAD,
499     CGI response headers can't be repeated, etc.  (The CGI response
500     headers are the ones the handler interprets: Status, Location,
501     and Content-type.)
503  *) The response header parser used to miss CGI headers
504     with no whitespace after the colon, e.g. "Status:200 OK".
506  *) The response header parser sometimes interpreted the first line
507     of content as an RFC822 continuation line.
509  *) The handler implemented a nonstandard version of Location
510     which never used internal redirects.  The handler
511     now attempts to implement Location as specified in the
512     CGI/1.1 Internet-Draft.  The module documentation explains
513     the new behavior.
515  *) Error log entries from the response header parser were
516     pretty uninformative; they are better now.  If a header is
517     malformed, the log entry includes it.  If the headers are
518     unterminated rather than malformed, the log entry says that,
519     and says how many bytes were received from the app.
521  *) When the application manager forked a new process, and that
522     process ran into trouble before executing the first instruction
523     of application code, the process used to exit with status =
524     errno.  This made certain configuration problems (e.g. incorrect
525     file permissions when server parent is root) quite difficult
526     to pin down.  Now the failing child process opens up the error log
527     and writes an informative entry before exiting.
529  *) The module now correctly handles a slash at the end of the
530     DocumentRoot directive.  This was a one-line fix.
532 What's New: Version 1.3.3, 17 Oct 1996
534  *) The module now registers its request handler under the name
535     fastcgi-script in addition to the name application/x-httpd-fcgi.
536     This was a one-line addition to the module, but had quite
537     a large impact on the documentation and sample configuration.
539 What's New: Version 1.3.2, 27 Sept 1996
541  *) On some systems (SunOS, Linux?), fopen for append has a bug
542     that strikes when two processes append to the same file.
543     This bug causes the process manager to corrupt the error log.
544     Work around the bug by calling open, then fdopen.  A patch
545     to Apache 1.1.1 is also required, as described in mod_fastcgi.html.
546     (Reported by Bob Ramstad.)
548 What's New: Version 1.3.1, 17 Sept 1996
550  *) On Linux and SunOS, the Apache default user_id (-1) is not a
551     legal value of uid_t, so cast it.  (Reported by Bob Ramstad,
552     Scott Langley, others.)
554  *) On some systems (Linux, some Solaris?, Irix?), connect requires
555     write access to a Unix Domain socket, so provide it.  (Reported
556     by Scott Langley, freeform@wired.com, others.)
558  *) If you hit a .fcg file, but there's no AppClass defined, the
559     error should be NOT_FOUND instead of SERVER_ERROR.  (Reported
560     by Michael Smith.)
562 What's New: Version 1.3, 4 Sept 1996
564  *) Module sometimes busy-waited in FastCgiDoWork.  Fixed.
566  *) Module violated the Apache buff abstraction.
567     Fixed.  Might now work with SSL (not tested).
568     As part of the fix, eliminated support for
569     Apache 1.0x versions.
571  *) Module failed to chmod the Unix domain listening sockets
572     it created, so protections were set according to the current
573     umask.  Fixed.
575  *) Module forked too many process manager processes: One
576     per AppClass.  When the Apache parent ran as root, these
577     process manager processes ran as root.  New process
578     manager is a single process (only started if AppClass is
579     used) and runs with same privileges as other children.
580     The new process manager doesn't do any polling, so
581     there's less system overhead than before.
583  *) AppClass insisted on getting at least two arguments.  Fixed.
585  *) Module used setjmp/longjmp, causing compiler warnings
586     on some platforms (e.g. Linux.)  The module no longer
587     uses setjmp/longjmp.
589  *) Module created listening sockets in /tmp, where they were
590     sometimes wiped out by cleanup scripts.  Added FastCgiIpcDir
591     directive to give control over the location of listening
592     sockets.
594  *) Module wrote error log entries without a timestamp.  Fixed.
596  *) AppClass directive wrote error messages to stderr in addition
597     to returning a char * message to the Apache core.  Fixed.
599 What's New: Version 1.2, 3 June 1996
601  *) Ported from Apache-1.0-based code to Apache-1.1b2 internals by
602     Ralf S. Engelschall
603     <rse@en.muc.de>
604     Add version string: APACHEVERSION macro to mod_fastcgi.c
606  *) chown FastCGI socket to user_id and setuid to user_id for app
607     class processes
609  *) Modify GetFromStream() by having it call an OS dependent
610     function GetStreamSize(FILE *) which uses FILE internal data member.
611     Linux users might need to modify GetStreamSize().
613 What's New: Version 1.1, 10 May 1996
615  *) If you specify a non-existent executable in the AppClass directive,
616         or if the file exists and it does not have execute permission you
617         get a constant stream of error messages telling you that "program
618         terminated due to a signal".
620  *) The mod_fastcgi module should use the standard Apache error logging
621         facility instead of writing to stderr.
623 Version 1.0, 30 April 1996