CHANGES revision f1fa5e69040a3a72054d185f6087a7d1592b83e8
8ac908b38a2fd9b780ae3a27ff26932a17823ae0Mark AndrewsChanges with Apache 2.0.14-dev
8ac908b38a2fd9b780ae3a27ff26932a17823ae0Mark Andrews
8ac908b38a2fd9b780ae3a27ff26932a17823ae0Mark Andrews *) Fix content-length computation. We ONLY compute a content-length if
0b24b2d3c423560a0a4cd9a4476b9a2dcafb7ea3Evan Hunt We are not in a 1.1 request and we cannot chunk, and this is a keepalive
0b24b2d3c423560a0a4cd9a4476b9a2dcafb7ea3Evan Hunt or we already have all the data. [Ryan Bloom]
0b24b2d3c423560a0a4cd9a4476b9a2dcafb7ea3Evan Hunt
dcfca6f18d5069155ae50025aaeead0cc8c04730Evan Hunt *) Report unbounded containers in the config file. Previously, a typo
dcfca6f18d5069155ae50025aaeead0cc8c04730Evan Hunt in the </container> directive could result in the rest of the config
ebaf977ecfe6b26ba4482e00d1fd78914a1e17ebMark Andrews file being silently ignored, with undesired defaults used.
ebaf977ecfe6b26ba4482e00d1fd78914a1e17ebMark Andrews [Jeff Trawick]
ebaf977ecfe6b26ba4482e00d1fd78914a1e17ebMark Andrews
140cf92b3bbff9da00a782c8afe27f5fa63bd7f7Evan Hunt *) Make the old_write filter use the ap_f* functions for the buffering.
19a62c240d4bac66eabc96139bc4a773250495ccFrancis Dupont [Ryan Bloom]
fd3a3783538312dc8f61a85ce4d3720f43b912c0Mark Andrews
fd3a3783538312dc8f61a85ce4d3720f43b912c0Mark Andrews *) Move more code from the http module into the core server. This
fd3a3783538312dc8f61a85ce4d3720f43b912c0Mark Andrews is core code, basically the default handler, the default input
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont and output filters, and all of the core configuration directives.
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt All of this code is required in order for the server to work, with or
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt without HTTP. The server is closer to working without the HTTP
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt module, although there is still more to do. [Ryan Bloom]
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt *) Fix a number of SGI compile warnings throughout the server. Fix some
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt bad parameters to apr_bucket_read(). Fix a bad statement in
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt ap_method_in_list(). For the mod_rewrite cache use apr_time_t
8a198fa776a09beb4dabf40b73a54d9c7bd70ac9Evan Hunt consistently; we were mixing apr_time_t and time_t in invalid ways
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont before. In load_file(), call apr_dso_error() instead of
e11a0c114cdaf8f7e7832e9f1a011138248093a6Evan Hunt apr_strerror() so that we get a more specific string on some platforms.
e11a0c114cdaf8f7e7832e9f1a011138248093a6Evan Hunt PR #6980 [Jeff Trawick]
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont
b47d410f8409294863f214542a05c92cbe86cf04Evan Hunt *) Allow modules to query the MPM about it's execution profile. This
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont query API can and should be extended in the future, but for now,
6ff7cd9fa57e8f8092c08df8f9ceccbffb6b19c9Francis Dupont max_daemons, and threading or forking is a very good start.
6ff7cd9fa57e8f8092c08df8f9ceccbffb6b19c9Francis Dupont [Jon Travis <jtravis@covalent.net>]
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont
f77148e02902a96bddd5948e594bd4be2efe67ffFrancis Dupont *) Modify mod_include to send blocks of data no larger than 9k.
f77148e02902a96bddd5948e594bd4be2efe67ffFrancis Dupont Without this, mod_include will wait until the whole file is parsed,
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont or the first tag is found to send any data to the client.
0185a9358cb8324f44e114c6fd3cbbc4b9c507e4Francis Dupont [Paul J. Reder <rederpj@raleigh.ibm.com>]
a91029a00e83e3933046cc9354357bccaa66c272Francis Dupont
a91029a00e83e3933046cc9354357bccaa66c272Francis Dupont *) Fix mod_info, so that <Directory> and <Location> directives are
a91029a00e83e3933046cc9354357bccaa66c272Francis Dupont not displayed twice when displaying the current configuration.
05b1ab91a62c09b052cdd9641355671997430d15Evan Hunt [Ryan Morgan <rmorgan@covalent.net>]
05b1ab91a62c09b052cdd9641355671997430d15Evan Hunt
05b1ab91a62c09b052cdd9641355671997430d15Evan Hunt *) Add config directives to override DEFAULT_ERROR_MSG and
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt DEFAULT_TIME_FORMAT. This was sent in as PR 6193.
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt [Dan Rench <drench@xnet.com>]
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt *) Get mod_info building and loading on Win32. [William Rowe]
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt *) Begin to move protocol independant functions out of mod_http. The goal
03e5afa4c09d57f85a007149999619e87f501138Evan Hunt is to have only functions that are HTTP specific in the http directory.
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt [Ryan Bloom]
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt
0f66aced2640d964aeb6db41210711ba0640d7f2Evan HuntChanges with Apache 2.0.13
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt *) Don't assume that there will always be multiple calls to the byterange
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt filter. It is possible that we will need to do byteranges with only
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt one call to the filter. [Ryan Morgan <rmorgan@covalent.net>]
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt *) Move the error_bucket definition from the http module to the
0f66aced2640d964aeb6db41210711ba0640d7f2Evan Hunt core server. Every protocol will need this ability, not just
8ebf67b7f0aeea7ef8c6e034c57a1dc57a7b216aEvan Hunt HTTP. [Ryan Bloom]
8ebf67b7f0aeea7ef8c6e034c57a1dc57a7b216aEvan Hunt
8ebf67b7f0aeea7ef8c6e034c57a1dc57a7b216aEvan HuntChanges with Apache 2.0.12
7c25b5f311a5a97ba3e9323956507f551c9b3b53Shawn Routhier
7c25b5f311a5a97ba3e9323956507f551c9b3b53Shawn Routhier *) Modify mod_file_cache to save pre-formatted strings for
7c25b5f311a5a97ba3e9323956507f551c9b3b53Shawn Routhier content-length and last-modified headers for performance.
597642c0baaf66172ca44104ed5a18957a969748Evan Hunt [Mike Abbot <mja@trudge.engr.sgi.com>]
597642c0baaf66172ca44104ed5a18957a969748Evan Hunt
597642c0baaf66172ca44104ed5a18957a969748Evan Hunt *) Namespace protect IOBUFSIZ since it is exposed in the API.
597642c0baaf66172ca44104ed5a18957a969748Evan Hunt [Jon Travis <jtravis@covalent.net>]
597642c0baaf66172ca44104ed5a18957a969748Evan Hunt
d3a6cd7c7e13707d0c26e1af0e026dd6c22c5e99Evan Hunt *) Use "Basic" authentication instead of "basic" in ab, as the spec
d3a6cd7c7e13707d0c26e1af0e026dd6c22c5e99Evan Hunt says we should. [Andre Breiler <andre.breiler@rd.bbc.co.uk>]
d3a6cd7c7e13707d0c26e1af0e026dd6c22c5e99Evan Hunt
845bb3195a4f50d438ec0fcd5d79593010314319Evan Hunt *) Fix a seg fault in mod_userdir.c. We used to use the pw structure
845bb3195a4f50d438ec0fcd5d79593010314319Evan Hunt without ever filling it out. This fixes PR 7271.
845bb3195a4f50d438ec0fcd5d79593010314319Evan Hunt [Taketo Kabe <kabe@sra-tohoku.co.jp> and
d8680445d6212d5552ea8a22fd2f9951b11c4b10Tatuya JINMEI 神明達哉 Cliff Woolley <cliffwoolley@yahoo.com>]
d8680445d6212d5552ea8a22fd2f9951b11c4b10Tatuya JINMEI 神明達哉
d8680445d6212d5552ea8a22fd2f9951b11c4b10Tatuya JINMEI 神明達哉 *) Add a couple of GCC attribute tags to printf style functions.
9ead684875ab0ab5fdb8b5dd837a88f7dbd0e01dEvan Hunt [Jon Travis <jtravis@covalent.net>]
9ead684875ab0ab5fdb8b5dd837a88f7dbd0e01dEvan Hunt
687b6322fb189c41c3672226a59461cc5c24c087Evan Hunt *) Add the correct language tag for interoperation with the Taiwanese
687b6322fb189c41c3672226a59461cc5c24c087Evan Hunt versions of MSIE and Netscape. [Clive Lin <clive@CirX.ORG>] PR#7142
687b6322fb189c41c3672226a59461cc5c24c087Evan Hunt
57fb4f7bbec88bc6431a39d4a10f82c265798b1fMark Andrews *) Migrate the perchild MPM to use the new apr signal child, and
57fb4f7bbec88bc6431a39d4a10f82c265798b1fMark Andrews APR thread functions. [Ryan Bloom]
57fb4f7bbec88bc6431a39d4a10f82c265798b1fMark Andrews
57fb4f7bbec88bc6431a39d4a10f82c265798b1fMark Andrews *) Close one copy of the CGI's stdout before creating the new process.
5b77627c09dea9a65a70d2a0b95a22ff75b3ac04Mark Andrews The CGI will still have stdout, because we have already dup'ed it.
5b77627c09dea9a65a70d2a0b95a22ff75b3ac04Mark Andrews This keeps Apache from waiting forever to send the results of a CGI
5b77627c09dea9a65a70d2a0b95a22ff75b3ac04Mark Andrews process that has forked a long-lived child process.
288486df9df0c5a39b3c3d625c7f133d9a8e69fbMark Andrews [Taketo Kabe <kabe@sra-tohoku.co.jp>]
288486df9df0c5a39b3c3d625c7f133d9a8e69fbMark Andrews
5773d3c007c0c065f83480aa17e61bea728221f9Mark Andrews *) Remove the rest of the pthreads functions from the threaded MPM.
5773d3c007c0c065f83480aa17e61bea728221f9Mark Andrews This requires the APR support for a signal thread that was just
5773d3c007c0c065f83480aa17e61bea728221f9Mark Andrews added. [Ryan Bloom]
85c5ed3577655f4f710f0af5ee93edd71c336055Evan Hunt
85c5ed3577655f4f710f0af5ee93edd71c336055Evan Hunt *) Make mod_dir use a fixup for sending a redirect to the browser.
85c5ed3577655f4f710f0af5ee93edd71c336055Evan Hunt Before this, we were using a handler, which doesn't make much
0faf1492c711ddb063efda9f3f03b7afa938cff8Francis Dupont sense, because the handler wasn't generating any data, it would
0faf1492c711ddb063efda9f3f03b7afa938cff8Francis Dupont either return a redirect error code, or DECLINED. This fits the
0faf1492c711ddb063efda9f3f03b7afa938cff8Francis Dupont current hooks better. [Ryan Morgan <rmorgan@covalent.net>]
0faf1492c711ddb063efda9f3f03b7afa938cff8Francis Dupont
0faf1492c711ddb063efda9f3f03b7afa938cff8Francis Dupont *) Make the threaded MPM use APR threads instead of pthreads.
bd31f734eec1884bd14024a232eb3ad3b0b86489Evan Hunt [Ryan Bloom]
bd31f734eec1884bd14024a232eb3ad3b0b86489Evan Hunt
1361014b02f11cf8de8725d1770a3dccbc1c8975Evan Hunt *) Get mod_tls to the point where it actually appears to work in all cases.
1361014b02f11cf8de8725d1770a3dccbc1c8975Evan Hunt [Ben Laurie]
1361014b02f11cf8de8725d1770a3dccbc1c8975Evan Hunt
40ad4ed01be1cace49a62214d11ef1309b3029a0Evan Hunt *) implement --enable-modules and --enable-mods-shared for "all" and
40ad4ed01be1cace49a62214d11ef1309b3029a0Evan Hunt "most". [Greg Stein]
40ad4ed01be1cace49a62214d11ef1309b3029a0Evan Hunt
b09559fd36c5081ffaf58ab64bdef170c1a720f1Evan Hunt *) Move the threaded MPM to use APR locks instead of pthread locks.
b09559fd36c5081ffaf58ab64bdef170c1a720f1Evan Hunt [Ryan Bloom]
b09559fd36c5081ffaf58ab64bdef170c1a720f1Evan Hunt
aa3415ba49c7f322845ee3dd59c2d0159f37bb34Evan Hunt *) Rename mpmt_pthread to threaded. This is more in line with the
aa3415ba49c7f322845ee3dd59c2d0159f37bb34Evan Hunt fact that mpmt_pthread shouldn't be using pthreads directly, and
aa3415ba49c7f322845ee3dd59c2d0159f37bb34Evan Hunt it is a smaller name that doesn't tie into anything.
c9630524c7560b27784fca6e456e652ff41ae7f1Mark Andrews [Ryan Bloom]
c9630524c7560b27784fca6e456e652ff41ae7f1Mark Andrews
c9630524c7560b27784fca6e456e652ff41ae7f1Mark Andrews *) Rename the module structures so that the exported symbol matches
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt the file name, and it is easier to automate the installation
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt process (generating LoadModule directives from the module filenames).
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt [Martin Kraemer]
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt *) Remove the coalesce filter. With the ap_f* functions, this filter
4e55893d307162770fbd7e0967043f0aef9d7583Evan Hunt is no longer needed. [Ryan Bloom]
0da859c5a7f17298577616577197cc6c857e4579Evan Hunt
0da859c5a7f17298577616577197cc6c857e4579Evan HuntChanges with Apache 2.0.11
0da859c5a7f17298577616577197cc6c857e4579Evan Hunt
19a6c40c37cd22a07b29542a5cc5c8986c1fbf57Evan Hunt *) Remove the dexter MPM. Perchild is the same basic idea, but it has the
19a6c40c37cd22a07b29542a5cc5c8986c1fbf57Evan Hunt added feature of allowing a uid/gid per child process. If no
19a6c40c37cd22a07b29542a5cc5c8986c1fbf57Evan Hunt uid/gid is specified, then Perchild behaves exactly like dexter.
9de98fbbbee124bbb8d609669cfaff17ec7a36e0Evan Hunt [Ryan Bloom]
9de98fbbbee124bbb8d609669cfaff17ec7a36e0Evan Hunt
9de98fbbbee124bbb8d609669cfaff17ec7a36e0Evan Hunt *) Get perchild building again. [Ryan Bloom]
28f4cd0a4503b91d7a48ed4d157347b251ae5686Mark Andrews
c221360e9f511be38c1385b9a647ebd7dceb8b42Mark Andrews *) Don't disable threads just because we are using the prefork MPM.
28f4cd0a4503b91d7a48ed4d157347b251ae5686Mark Andrews If somebody wants to compile without threads, they must now add
485a435efecda961aa117b63d8e02494a5e11e37Mark Andrews --disable-threads to the configure command line. [Ryan Bloom]
bc04d6ec155564b7f0c0171ac88e9e5918366c9dEvan Hunt
bc04d6ec155564b7f0c0171ac88e9e5918366c9dEvan Hunt *) Begin to move the calls to update_child_status into common code, so
bc04d6ec155564b7f0c0171ac88e9e5918366c9dEvan Hunt that each individual MPM does not need to update the scoreboard itself.
16de5dbc7178b7fe8a9d4beb9ff50778cc8d3847Evan Hunt [Ryan Bloom]
16de5dbc7178b7fe8a9d4beb9ff50778cc8d3847Evan Hunt
b8b602f89be848d44472df92320e9d88213a1411Evan Hunt *) Allow mod_tls to compile under Unix boxes where openssl has been
b8b602f89be848d44472df92320e9d88213a1411Evan Hunt installed to the system include files.
b8b602f89be848d44472df92320e9d88213a1411Evan Hunt [Gomez Henri <new-httpd@slib.fr>]
12178c86525332bb0ab66155feb61fbf32eca6acEvan Hunt
12178c86525332bb0ab66155feb61fbf32eca6acEvan Hunt *) Cleanup the mod_tls configure process. This should remove any need
12178c86525332bb0ab66155feb61fbf32eca6acEvan Hunt to hand-edit any files. We require OpenSSL 0.9.6 or later, but
12178c86525332bb0ab66155feb61fbf32eca6acEvan Hunt configure doesn't check that yet. [Ryan Bloom]
d601ef9e8914bc914220865328de64cb4b6cec67Evan Hunt
d601ef9e8914bc914220865328de64cb4b6cec67Evan Hunt *) Add a very early prototype of SSL support (in mod_tls.c). It is
d601ef9e8914bc914220865328de64cb4b6cec67Evan Hunt vital that you read modules/tls/README before attempting to build
71ba75c604df3604673232828a68bb28c420e698Mark Andrews it. [Ben Laurie]
71ba75c604df3604673232828a68bb28c420e698Mark Andrews
71ba75c604df3604673232828a68bb28c420e698Mark Andrews *) Fix a potential seg fault on all platforms. David Reid fixed this
71ba75c604df3604673232828a68bb28c420e698Mark Andrews on BEOS, but the problem could happen anywhere, so we don't want
71ba75c604df3604673232828a68bb28c420e698Mark Andrews to #ifdef it. [Cliff Woolley <cliffwoolley@yahoo.com>]
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews *) Add new LogFormat directive, %D, to log time it takes to serve a
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews request in microseconds. [Bill Stoddard]
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews *) Change AddInputFilter and AddOutputFilter to SetInputFilter and
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews SetOutputFilter. This corresponds nicely with the other Set
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews directives, which operate on containers while the Add* directives
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews tend to work directly on extensions. [Ryan Bloom]
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews *) Cleanup the header handling a bit. This uses the apr_brigade_*
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews functions for the buffering so that we don't need to compute
3d17a3ba61a303d5c4d9867068d0fbe9f24d2988Mark Andrews the length of the headers before we actually create the header
5d850024cb41fdcb0b85efd3f7997bc52e6b33e8Mark Andrews buffer. [Ryan Bloom]
5d850024cb41fdcb0b85efd3f7997bc52e6b33e8Mark Andrews
5d850024cb41fdcb0b85efd3f7997bc52e6b33e8Mark Andrews *) Allow filters to buffer data using the ap_f* functions. These have
5d850024cb41fdcb0b85efd3f7997bc52e6b33e8Mark Andrews become macros that resolve directly to apr_brigade_*.
5d850024cb41fdcb0b85efd3f7997bc52e6b33e8Mark Andrews [Ryan Bloom]
8e4f3f1cbceef520ba889270c993de0ac376a2a7Evan Hunt
8e4f3f1cbceef520ba889270c993de0ac376a2a7Evan Hunt *) Get the Unix MPM's to do a graceful restart again. If we are going
8e4f3f1cbceef520ba889270c993de0ac376a2a7Evan Hunt to register a cleanup with ap_cleanup_scoreboard, then we have to
8e4f3f1cbceef520ba889270c993de0ac376a2a7Evan Hunt kill the cleanup with the same function, and that function can't be
e6dda86e8b18ca24db86bd6cd986fdcbfda3f06aEvan Hunt static. [Ryan Bloom]
e6dda86e8b18ca24db86bd6cd986fdcbfda3f06aEvan Hunt
e6dda86e8b18ca24db86bd6cd986fdcbfda3f06aEvan Hunt *) Install all required header files. Without these, it was not
2a0d4c4d6ba5addb33cd1bccecc55ca4a095f191Mark Andrews possible to compile some modules outside of the server.
2a0d4c4d6ba5addb33cd1bccecc55ca4a095f191Mark Andrews [Ryan Bloom]
2a0d4c4d6ba5addb33cd1bccecc55ca4a095f191Mark Andrews
d524a81532c87c7fa8d0ce0261645fb18276b1eeMark Andrews *) Fix the AliasMatch directive in Apache 2.0. When we brought a patch
d524a81532c87c7fa8d0ce0261645fb18276b1eeMark Andrews forward from 1.3 to 2.0, we missed a single line, which broke regex
d524a81532c87c7fa8d0ce0261645fb18276b1eeMark Andrews aliases. [Ryan Bloom]
feeca57f18fe7ae1825bef81a210068d4ddaf4eeEvan Hunt
feeca57f18fe7ae1825bef81a210068d4ddaf4eeEvan Hunt *) We have a poor abstraction in the protocol. This is a temporary
feeca57f18fe7ae1825bef81a210068d4ddaf4eeEvan Hunt hack to fix the bug, but it will need to be fixed for real. If
8b37c0dd6e1cf3f8849f4f28b77b43ab3fb20ea4Mark Andrews we find an error while sending out a custom error response, we back
8b37c0dd6e1cf3f8849f4f28b77b43ab3fb20ea4Mark Andrews up to the first non-OK request and send the data. Then, when we send
c073c65719eb5a7a525176d9a62e1b58a11ecab7Evan Hunt the EOS from finalize_request_protocol, we go to the last request,
c073c65719eb5a7a525176d9a62e1b58a11ecab7Evan Hunt to ensure that we aren't sending an EOS to a request that has already
c073c65719eb5a7a525176d9a62e1b58a11ecab7Evan Hunt received one. Because the data is sent on a different request than
c073c65719eb5a7a525176d9a62e1b58a11ecab7Evan Hunt the EOS, the error text never gets sent down the filter stack. This
c073c65719eb5a7a525176d9a62e1b58a11ecab7Evan Hunt fixes the problem by finding the last request, and sending the data
5d9922e86f3d7f58f4c6b1234962ee4567108830Vernon Schryver with that request. [Ryan Bloom]
c4e3976707829c3225983b80afb09215e49ea10dMark Andrews
c4e3976707829c3225983b80afb09215e49ea10dMark Andrews *) Make the server status page show the correct restart time, and
49f788cbd39eb9218c19e077c7b2519c617e044dMark Andrews thus the proper uptime. [Ryan Bloom]
88a7702a9dc82581c554cc0b04902879cdda41a6Mark Andrews
66ecb6789b7effa68f75dc70f0843a26825b44f6Mark Andrews *) Move the CGI creation logic from mod_include to mod_cgi(d). This
cfc22e53a89ccac4eb04b4f41a93f73e629e80edEvan Hunt should reduce the amount of duplicate code that is required to
cfc22e53a89ccac4eb04b4f41a93f73e629e80edEvan Hunt create CGI processes.
ce3b2c5189e874f1c45d699cfb4f30fc7a8cd604Evan Hunt [Paul J. Reder <rederpj@raleigh.ibm.com>]
ce3b2c5189e874f1c45d699cfb4f30fc7a8cd604Evan Hunt
ce3b2c5189e874f1c45d699cfb4f30fc7a8cd604Evan Hunt *) ap_new_connection() closes the socket and returns NULL if a socket
fc1fb1a469dc44fb12bbe51ead6caf568239d5abEvan Hunt call fails. Usually this is due to a connection which has been
fc1fb1a469dc44fb12bbe51ead6caf568239d5abEvan Hunt reset. [Jeff Trawick]
fc1fb1a469dc44fb12bbe51ead6caf568239d5abEvan Hunt
d0ca4e90e2dd584db70e403ef92ab08d78d9cd6dMark Andrews *) Move the Apache version information out of httpd.h and into release.h.
d0ca4e90e2dd584db70e403ef92ab08d78d9cd6dMark Andrews This is in preparation for the first tag with the new tag and release
d312bc5d81cff8fc156b62c970334b52227ee854Evan Hunt system. [Ryan Bloom]
d312bc5d81cff8fc156b62c970334b52227ee854Evan Hunt
d312bc5d81cff8fc156b62c970334b52227ee854Evan Hunt *) Begin restructuring scoreboard code to enable adding back in
d312bc5d81cff8fc156b62c970334b52227ee854Evan Hunt the ability to use IPC other than shared memory.
9dd2ee95f11de29e358cc01059861e724dbb5807Mark Andrews Get mod_status working on Windows again. [Bill Stoddard]
db6cd7ee05471eddeaac642b2f45dde87e770da5Mark Andrews
9dd2ee95f11de29e358cc01059861e724dbb5807Mark Andrews *) Make mod_status work with 2.0. This will work for prefork,
dc9270706619976c47236892c655ba76671c37f1Mark Andrews mpmt_pthread, and dexter. [Ryan Bloom]
dc9270706619976c47236892c655ba76671c37f1Mark Andrews
dc9270706619976c47236892c655ba76671c37f1Mark Andrews *) Correct a typo in httpd.conf.
503e5aa8d2400e47c9617db10b57f2d4f3495fd2Mark Andrews [Kunihiro Tanaka <tanaka@apache.or.jp>] PR#7154
503e5aa8d2400e47c9617db10b57f2d4f3495fd2Mark Andrews
503e5aa8d2400e47c9617db10b57f2d4f3495fd2Mark Andrews *) Really fix mod_rewrite map lookups this time. [Tony Finch]
5985af3f5ca3bd3aecd177c7eab497e7414c3945Evan Hunt
5985af3f5ca3bd3aecd177c7eab497e7414c3945Evan Hunt *) Get the correct IP address if ServerName isn't set and we can't
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt find a fully-qualified domain name at startup.
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt PR#7170 [Danek Duvall <dduvall@eng.sun.com>]
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt *) Make mod_cgid work with SuExec. [Ryan Bloom]
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt *) Adopt apr user/group name features for mod_rewrite. Eliminates some
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt 'extra' stat's for user/group since they should never occur, and now
cef109efa70b55ec1cd3ed706a9607ba1c3382d5Evan Hunt resolves the SCRIPT_USER and SCRIPT_GROUP, including on WinNT NTFS
289dbe005c271d344296cad043157fee6604bdb0Mark Andrews volumes. [William Rowe]
289dbe005c271d344296cad043157fee6604bdb0Mark Andrews
c16d37d06e103b259073a61e610e688e2849289aMark Andrews *) Adopt apr features to simplify mod_includes. This changes the
c16d37d06e103b259073a61e610e688e2849289aMark Andrews behavior of the USER_NAME variable, unknown uid's are now reported
1cd538c05181b7236e4a2d159a99997dcfa1cb5cFrancis Dupont as USER_NAME="<unknown>" rather than the old user#000 result.
1cd538c05181b7236e4a2d159a99997dcfa1cb5cFrancis Dupont WinNT now resolves USER_NAME on NTFS volumes. [William Rowe]
1cd538c05181b7236e4a2d159a99997dcfa1cb5cFrancis Dupont
0088b45de515b891622e7e81dee9602291231c10Evan Hunt *) Adopt apr features for simplifing mod_userdir, and accept the new
0088b45de515b891622e7e81dee9602291231c10Evan Hunt Win32/OS2 exceptions without hiccuping. [William Rowe]
0088b45de515b891622e7e81dee9602291231c10Evan Hunt
b08325a7f3092cca1131e1a04a43a4ecef713e29Evan Hunt *) Replace configure --with-optim option by using and saving the
b08325a7f3092cca1131e1a04a43a4ecef713e29Evan Hunt environment variable OPTIM instead. This is needed because configure
b08325a7f3092cca1131e1a04a43a4ecef713e29Evan Hunt options do not support multiple flags separated by spaces.
a39a5f4d816ca7d3f43106712ca668dd1ab31d69Mark Andrews [Roy Fielding]
a39a5f4d816ca7d3f43106712ca668dd1ab31d69Mark Andrews
a39a5f4d816ca7d3f43106712ca668dd1ab31d69Mark Andrews *) Fix some byterange handling. If we get a byte range that looks like
a39a5f4d816ca7d3f43106712ca668dd1ab31d69Mark Andrews "-999999" where that is past the end of the file, we should return
7ee4b13ded769df52e8c66b3dfa1de968df7bd28Evan Hunt a PARTIAL CONTENT status code, and return the whole file as one big
7ee4b13ded769df52e8c66b3dfa1de968df7bd28Evan Hunt byterange. This matches the 1.3 handling now. [Ryan Bloom]
7ee4b13ded769df52e8c66b3dfa1de968df7bd28Evan Hunt
44a3999cf4f71bd81a7942ff5e60c6b1828e5f9dEvan Hunt *) Make the error bucket a real meta-data bucket. This means that the
44a3999cf4f71bd81a7942ff5e60c6b1828e5f9dEvan Hunt bucket length is 0, and a read returns NULL data. If one of these
44a3999cf4f71bd81a7942ff5e60c6b1828e5f9dEvan Hunt buckets is passed down after the headers are sent, this data will
7048af0a551f13d2916a06cce21357714939a89bEvan Hunt just be ignored. [Greg Stein]
7048af0a551f13d2916a06cce21357714939a89bEvan Hunt
00295e065080e0b9856d00b15976d1ed5d280cbfEvan Hunt *) The prefork MPM wasn't killing child processes correctly if a restart
00295e065080e0b9856d00b15976d1ed5d280cbfEvan Hunt signal was received while the process was serving a request. The child
e856482b1fe1c554a8e47a519b59902b21792564Evan Hunt process would become the equivalent of a second parent process. If
e856482b1fe1c554a8e47a519b59902b21792564Evan Hunt we break out of the accept loop, then we need to do die after cleaning
e856482b1fe1c554a8e47a519b59902b21792564Evan Hunt up after ourselves. [Ryan Bloom]
e856482b1fe1c554a8e47a519b59902b21792564Evan Hunt
37a34ab54fbd17651961316fadcb48edef7039c9Evan Hunt *) Change the Prefork MPM to use SIGWINCH instead of SIGUSR1 for graceful
37a34ab54fbd17651961316fadcb48edef7039c9Evan Hunt restarts. [Ryan Bloom]
37a34ab54fbd17651961316fadcb48edef7039c9Evan Hunt
37a34ab54fbd17651961316fadcb48edef7039c9Evan Hunt *) Modify the apr_stat/lstat/getfileinfo calls within apache to use
1d0ebb4cf21324b28215c5df84cce0f84dd6948bMark Andrews the most optimal APR_FINFO_wanted bits. This spares Win32 from
1d0ebb4cf21324b28215c5df84cce0f84dd6948bMark Andrews performing very expensive owner, group and permission lookups
1d0ebb4cf21324b28215c5df84cce0f84dd6948bMark Andrews and allows the server to function until these apr_finfo_t fields
adb42115869b8258cd38bc7fd044766f662bdd78Mark Andrews are implemented under Win32. [William Rowe]
adb42115869b8258cd38bc7fd044766f662bdd78Mark Andrews
e9dff04d3bd9b7b247cad0f914ed80914a49bcccEvan Hunt *) Support for typedsafe optional functions - that is functions exported by
e9dff04d3bd9b7b247cad0f914ed80914a49bcccEvan Hunt optional modules, which, therefore, may or may not be present, depending
0c3948e6066e8910edb3f6a7820bd42ffaefedf6Evan Hunt on configuration. See the experimental modules mod_optional_fn_{ex,im}port
0c3948e6066e8910edb3f6a7820bd42ffaefedf6Evan Hunt for sample code. [Ben Laurie]
0c3948e6066e8910edb3f6a7820bd42ffaefedf6Evan Hunt
2c016c64f533171e1342c1914754b017026c8ad5Tatuya JINMEI 神明達哉 *) filters can now report an HTTP error to the server. This is done
2c016c64f533171e1342c1914754b017026c8ad5Tatuya JINMEI 神明達哉 by sending a brigade where the first bucket is an error_bucket.
2c016c64f533171e1342c1914754b017026c8ad5Tatuya JINMEI 神明達哉 This bucket is a simple bucket that stores an HTTP error and
2c016c64f533171e1342c1914754b017026c8ad5Tatuya JINMEI 神明達哉 a string. Currently the string is not used, but it may be needed
38397492000c996d50f9bf96a4da318a742bd07cEvan Hunt to output an error log. The http_header_filter will find this
38397492000c996d50f9bf96a4da318a742bd07cEvan Hunt bucket, and output the error text, and then return
9d5e42bb875bc287387241dd7563f5698afd31f6Mark Andrews AP_FILTER_ERROR, which informs the server that the error web page
f82d52e82defd947805f0882f1559e88d830922aEvan Hunt has already been sent. [Ryan Bloom]
f82d52e82defd947805f0882f1559e88d830922aEvan Hunt
5857247dbbfe384a1bcf376d0451f1b2bc3c2c7aEvan Hunt *) If we get an error, then we should remove all filters except for
5857247dbbfe384a1bcf376d0451f1b2bc3c2c7aEvan Hunt those critical to serving a web page. This fixes a bug, where
5857247dbbfe384a1bcf376d0451f1b2bc3c2c7aEvan Hunt error pages were going through the byterange filter, even though
5857247dbbfe384a1bcf376d0451f1b2bc3c2c7aEvan Hunt that made no sense. [Ryan Bloom]
7fe4b0447fb3ef0c8ff9851624a7bca072732973Evan Hunt
7fe4b0447fb3ef0c8ff9851624a7bca072732973Evan Hunt *) Relax the syntax checking of Host: headers in order to support
7fe4b0447fb3ef0c8ff9851624a7bca072732973Evan Hunt iDNS. PR#6635 [Tony Finch]
e2facd7af296d90d0d1fef7994b6b8e795490a92Evan Hunt
e2facd7af296d90d0d1fef7994b6b8e795490a92Evan Hunt *) Cleanup the byterange filter to use the apr_brigade_partition
3594635af7c6fedb2893ad1a9df4935bd0234a47Evan Hunt and apr_bucket_copy functions. This removes a lot of very messy
3594635af7c6fedb2893ad1a9df4935bd0234a47Evan Hunt code, and hopefully makes this filter more stable.
cc3ed192b030ccf9a903a4a7c8667cda8ad23eebEvan Hunt [Ryan Bloom]
cc3ed192b030ccf9a903a4a7c8667cda8ad23eebEvan Hunt
cc3ed192b030ccf9a903a4a7c8667cda8ad23eebEvan Hunt *) Remove AddModule and ClearModuleList directives. Both of these
c1bfa5b0ad6a031b0a3038207938897128a241b4Evan Hunt directives were used to ensure that modules could be enabled
b99efc39de7711d483f62f42bf6c365843637238Mark Andrews in the correct order. That requirement is now gone, because
c1bfa5b0ad6a031b0a3038207938897128a241b4Evan Hunt we use hooks to ensure that modules are in the correct order.
302ed789bd97f34500ee4ba3a8329590d6453fc6Mark Andrews [Ryan Bloom]
302ed789bd97f34500ee4ba3a8329590d6453fc6Mark Andrews
6f6f08b7a4ea50806099b23ca97010195c1365cdEvan Hunt *) When SuExec is specified, we need to add it to the list of
6f6f08b7a4ea50806099b23ca97010195c1365cdEvan Hunt targets to be built. If we don't, then any changes to the
9a050780dce1bf3cbe81bd18404df3e79c146583Evan Hunt configuration won't affect SuExec, unless 'make suexec' is
9a050780dce1bf3cbe81bd18404df3e79c146583Evan Hunt specifically run. [Ryan Bloom]
9a050780dce1bf3cbe81bd18404df3e79c146583Evan Hunt
e94fe42a2007a4ffdd27ba99d3756622f8da1008Mark Andrews *) Cleaned out open_file from mod_file_cache, as apr now accepts
e94fe42a2007a4ffdd27ba99d3756622f8da1008Mark Andrews the APR_XTHREAD argument to open a file for consumption by
e94fe42a2007a4ffdd27ba99d3756622f8da1008Mark Andrews parallel threads on win32. [William Rowe]
0a30185f80f3962aba0e1f30ad7743fb8c8aa65dMark Andrews
0a30185f80f3962aba0e1f30ad7743fb8c8aa65dMark Andrews *) Correct a bug in determining when we follow symlinks. The code
0a30185f80f3962aba0e1f30ad7743fb8c8aa65dMark Andrews expected a stat -1 result, not an apr_status_t positive error.
0181a0a92f0d3a9ec7f04754253bb6bd47307e6fMark Andrews Also check if the APR_FINFO_USER fields are valid before we
0181a0a92f0d3a9ec7f04754253bb6bd47307e6fMark Andrews follow the link. [William Rowe]
0181a0a92f0d3a9ec7f04754253bb6bd47307e6fMark Andrews
a3285e811de7204f1d4d296c7f16082fc58e1b7aMark Andrews *) Move initgroupgs, ap_uname2id and ap_gname2id from util.c to
a3285e811de7204f1d4d296c7f16082fc58e1b7aMark Andrews mpm_common.c. These functions are only valid on some platforms,
a3285e811de7204f1d4d296c7f16082fc58e1b7aMark Andrews so they should not be in the main-line code. [Ryan Bloom]
4ffd660d41080dc4c5641c9ce4f80b04af611849Tatuya JINMEI 神明達哉
4ffd660d41080dc4c5641c9ce4f80b04af611849Tatuya JINMEI 神明達哉 *) Remove ap_chdir_file(). This function is not thread-safe,
4ffd660d41080dc4c5641c9ce4f80b04af611849Tatuya JINMEI 神明達哉 and nobody is currently using it. [Ryan Bloom]
9d856845d63784690e347c8e8dc013f1c830c86dMark Andrews
9d856845d63784690e347c8e8dc013f1c830c86dMark Andrews *) Do not try to run make depend if there are no .c files in the
90065a6881d58420120ae33aac55e5ff10f65fd5Mark Andrews current directory, doing so makes `make depend` fail.
554d22d2deb8889bb16434176b5716ab79d15c50Mark Andrews [Ryan Bloom]
554d22d2deb8889bb16434176b5716ab79d15c50Mark Andrews
da1f044e5d5e15846a9464647ebdd0e9cee3f63aEvan Hunt *) Update highperformance.conf to work with either prefork or
da1f044e5d5e15846a9464647ebdd0e9cee3f63aEvan Hunt pthreads mpms. [Greg Ames]
be69d484434e10d920c4d8a8bb735356eb0c2cc8Evan Hunt
be69d484434e10d920c4d8a8bb735356eb0c2cc8Evan Hunt *) Stop checking to see if this is a pipelined request if we know
be69d484434e10d920c4d8a8bb735356eb0c2cc8Evan Hunt for a fact that it isn't. Basically, if r->connection->keepalive == 0.
c6d2578fd67bc1a427d13fd0699b25a187feec8aMark Andrews This keeps us from making an extra read call when serving a 1.0
9d5e42bb875bc287387241dd7563f5698afd31f6Mark Andrews request. [Ryan Bloom and Greg Stein]
c6d2578fd67bc1a427d13fd0699b25a187feec8aMark Andrews
c6d2578fd67bc1a427d13fd0699b25a187feec8aMark Andrews *) Fix the handling of variable expansion look-ahead in mod_rewrite,
c6d2578fd67bc1a427d13fd0699b25a187feec8aMark Andrews i.e. syntax like %{LA-U:REMOTE_USER}, and also fix the parsing of
5cb44a38d9b6fbd1144cf396a199db54e9e56f5bEvan Hunt more complicated nested RewriteMap lookups. PR#7087 [Tony Finch]
e9d45c0a0456d6267d9ea220751b6e495c55a8cfMark Andrews
95f2377b4f180a564d35343c8d150e8f03c98a52Evan Hunt *) Fix the RFC number mentioned when complaining about a missing
95f2377b4f180a564d35343c8d150e8f03c98a52Evan Hunt Host: header. PR#7079 [Alexey Toptygin <alexeyt@wam.umd.edu>]
95f2377b4f180a564d35343c8d150e8f03c98a52Evan Hunt
e09cdbac087b88524ac40e943d040e2a032c48f2Mark Andrews *) Fix an endless loop in ab which occurred when ab was posting
e09cdbac087b88524ac40e943d040e2a032c48f2Mark Andrews and the server dropped the connection unexpectedly.
e09cdbac087b88524ac40e943d040e2a032c48f2Mark Andrews [Jeff Trawick]
9e9e7112f9d712fe9e1740162f88a82ef1aa4711Mark Andrews
9e9e7112f9d712fe9e1740162f88a82ef1aa4711Mark Andrews *) Fix a segfault while handling request bodies in ap_http_filter().
9e9e7112f9d712fe9e1740162f88a82ef1aa4711Mark Andrews This problem has been seen with mod_dav usage as well as with
63d5a6f680864b58b8eddc58dfa9957e19abf084Mark Andrews requests where the body was just being discarded. [Jeff Trawick]
63d5a6f680864b58b8eddc58dfa9957e19abf084Mark Andrews
63d5a6f680864b58b8eddc58dfa9957e19abf084Mark Andrews *) Some adjustment on the handling and automatic setting (via
63d5a6f680864b58b8eddc58dfa9957e19abf084Mark Andrews hints.m4) of various compilation flags (eg: CFLAGS). Also,
e8831e51c162f5961fcf1d89f68acd9336cf8a83Evan Hunt add the capability to specify flags (NOTEST_CFLAGS and
e8831e51c162f5961fcf1d89f68acd9336cf8a83Evan Hunt NOTEST_LDFLAGS) which are used to compile Apache, but
e8831e51c162f5961fcf1d89f68acd9336cf8a83Evan Hunt not used during the configuration process. Useful for
e8831e51c162f5961fcf1d89f68acd9336cf8a83Evan Hunt flags like "-Werror". [Jim Jagielski]
e8831e51c162f5961fcf1d89f68acd9336cf8a83Evan Hunt
af30180834ac4b3b206338be5c42e89bab07ca27Mark Andrews *) Stop using environment variables to force debug mode or
af30180834ac4b3b206338be5c42e89bab07ca27Mark Andrews no detach. We now use the -D command line argument to
6f9c93a8858a28b131dbd36b75b81e9250c6d11aEvan Hunt specify the correct mode. -DONE_PROCESS and -DNO_DETACH.
6f9c93a8858a28b131dbd36b75b81e9250c6d11aEvan Hunt [Greg Stein, Ryan Bloom]
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt *) Change handlers to use hooks. [Ben Laurie]
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt *) Stop returning copies of filenames from both apr_file_t and
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt apr_dir_t. We pstrdup the filenames that we store in the
c8aa7ce70d75d5d8f28f941e3a522c71e948b166Evan Hunt actual structures, so we don't need to pstrdup the strings again.
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt [Ryan Bloom]
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt *) mod_cgi: Fix some problems where the wrong error value was being
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt traced. [Jeff Trawick]
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt
c02149960459e4406d9e50fb1867433e7f0e8f0dEvan Hunt *) EBCDIC: Fix some missing ASCII conversion on some protocol data.
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont [Jeff Trawick]
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont *) Add generic hooks. [Ben Laurie]
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont *) Use a real pool to dup the error log descriptor. [Ryan Bloom]
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont
775a8d86d93269a621a7ad15c49b31b533da0671Francis Dupont *) Fix a segfault caused by mod_ext_filter when the external filter
c07236a635d2bbe10ffd03804a2478835c7f7018Mark Andrews program does not exist. [Jeff Trawick]
c07236a635d2bbe10ffd03804a2478835c7f7018Mark Andrews
c07236a635d2bbe10ffd03804a2478835c7f7018Mark Andrews *) Fix an output truncation error when on an HTTP >= 1.0 request an
8f0502e922120f27207fbf6b6dda18f1112e486cEvan Hunt object of size between DEFAULT_BUCKET_SIZE and AP_MIN_BYTES_TO_WRITE
8f0502e922120f27207fbf6b6dda18f1112e486cEvan Hunt was served through mod_charset_lite (or anything else that would
8f0502e922120f27207fbf6b6dda18f1112e486cEvan Hunt create a transient bucket in this size range). ap_bucket_make_heap()
8f0502e922120f27207fbf6b6dda18f1112e486cEvan Hunt silently failed (fixed), transient_setaside() discovered it, but
f10a8fa0343038946384c44f6bb8dc2615f0cc20Evan Hunt ap_save_brigade() ignored it (fixed). [Jeff Trawick]
f10a8fa0343038946384c44f6bb8dc2615f0cc20Evan Hunt
f10a8fa0343038946384c44f6bb8dc2615f0cc20Evan Hunt *) Ignore \r\n or \n when using PEEK mode for input filters. The problem
cc6cddfd94e8f0c58c290317b0853dac30b1b895Evan Hunt is that some browsers send extra lines at the end of POST requests, and
cc6cddfd94e8f0c58c290317b0853dac30b1b895Evan Hunt we don't want to delay sending data back to the user just because the
cc6cddfd94e8f0c58c290317b0853dac30b1b895Evan Hunt browser isn't well behaved. [Ryan Bloom]
8d307467b70800564491f37097f4b877c155ab3eEvan Hunt
8d307467b70800564491f37097f4b877c155ab3eEvan Hunt *) Get SuEXEC working again. We can't send absolute paths to suExec
8d307467b70800564491f37097f4b877c155ab3eEvan Hunt because it refuses to execute those programs. SuEXEC also wasn't
d2a8d00228973e59eb3efcc377126d856bf7df18Mark Andrews always recognizing configuration changes made using the autoconf
d2a8d00228973e59eb3efcc377126d856bf7df18Mark Andrews setup. [Ryan Bloom]
d2a8d00228973e59eb3efcc377126d856bf7df18Mark Andrews
8ec993c774d7c996cb266d0ff5f1282fa3940f09Evan Hunt *) Allow the buildconf process to find the config.m4 files in the correct
8ec993c774d7c996cb266d0ff5f1282fa3940f09Evan Hunt order. Basically, we can now name config.m4 files as config\d\d.m4,
8ec993c774d7c996cb266d0ff5f1282fa3940f09Evan Hunt and we will sort them correctly when inserting them into the build
8ec993c774d7c996cb266d0ff5f1282fa3940f09Evan Hunt process. [Ryan Bloom]
7704a47aec081144bdb7a0218d5e2dd5296b6b08Mark Andrews
7704a47aec081144bdb7a0218d5e2dd5296b6b08Mark Andrews *) Get mod_cgid to use apr calls for creating the actual CGI process.
7704a47aec081144bdb7a0218d5e2dd5296b6b08Mark Andrews This also allows mod_cgid to use ap_os_create_priviledged_process,
7704a47aec081144bdb7a0218d5e2dd5296b6b08Mark Andrews thus allowing for SuExec execution from mod_cgid. Currently, we do
a01095a487a2c858c4f86e0f32c93b482d179a78Mark Andrews not support everything that standard SuExec supports, but at least
a01095a487a2c858c4f86e0f32c93b482d179a78Mark Andrews it works minimally now. [Ryan Bloom]
a01095a487a2c858c4f86e0f32c93b482d179a78Mark Andrews
bfbd69c43f2b63ac122e4a47a510d46ffffb613cEvan Hunt *) Allow SuExec to be configured from the ./configure command line.
bfbd69c43f2b63ac122e4a47a510d46ffffb613cEvan Hunt [Ryan Bloom]
bfbd69c43f2b63ac122e4a47a510d46ffffb613cEvan Hunt
06e7340198bbd89b6765998a04abde217e7b0e7bMark Andrews *) Update some of the docs in README and INSTALL to reflect some of
06e7340198bbd89b6765998a04abde217e7b0e7bMark Andrews the changes in Apache 2.0 [Cliff Woolley <cliffwoolley@yahoo.com>]
06e7340198bbd89b6765998a04abde217e7b0e7bMark Andrews
3c5e54941fe8ed891d1588e84e210d8829b9903aMark Andrews *) If we get EAGAIN returned from the call to apr_sendfile, then we
3c5e54941fe8ed891d1588e84e210d8829b9903aMark Andrews need to call sendfile again. This gets us serving large files
3c5e54941fe8ed891d1588e84e210d8829b9903aMark Andrews such as apache_2.0a9.tar.gz on FreeBSD again. [Ryan Bloom]
29dd4bdd14d359dbf45bf9c8a9151b73a1a389b8Mark Andrews
29dd4bdd14d359dbf45bf9c8a9151b73a1a389b8Mark Andrews *) Get the support programs building cleanly again.
29dd4bdd14d359dbf45bf9c8a9151b73a1a389b8Mark Andrews [Cliff Woolley <cliffwoolley@yahoo.com>]
29dd4bdd14d359dbf45bf9c8a9151b73a1a389b8Mark Andrews
29dd4bdd14d359dbf45bf9c8a9151b73a1a389b8Mark Andrews *) The Apache/Win32 Apache.exe and dll's now live in bin. The
4b30598fb908755c4fd04f51cf3ce1f550434bf3Mark Andrews current directory logic now backs up over bin/ to determine the
4b30598fb908755c4fd04f51cf3ce1f550434bf3Mark Andrews server root from the Apache.exe path.
abe20c2cca12abe0523fc314af31183626c87325Evan Hunt
abe20c2cca12abe0523fc314af31183626c87325Evan Hunt *) Apache/Win32 now follows the standard conventions of mod_foo.so
45eea1bda65a66106bb7d85eae5997deb013bf0cMark Andrews loadable modules, dynamic libs are all named libfoo.dll, and the
45eea1bda65a66106bb7d85eae5997deb013bf0cMark Andrews makefile.win populates the include, lib and libexec directories.
45eea1bda65a66106bb7d85eae5997deb013bf0cMark Andrews
45eea1bda65a66106bb7d85eae5997deb013bf0cMark Andrews *) Apache is now IPv6-capable. On systems where APR supports IPv6,
616560e3db487f548b383c7eecc6e855e8afe7d6Mark Andrews Apache gets IPv6 listening sockets by default. Additionally, the
616560e3db487f548b383c7eecc6e855e8afe7d6Mark Andrews Listen, NameVirtualHost, and <VirtualHost> directives support IPv6
cbee6197d1fb31453ff51f9f1c705feed67c9c73Mark Andrews numeric address strings (e.g., "Listen [fe80::1]:8080").
cbee6197d1fb31453ff51f9f1c705feed67c9c73Mark Andrews [Jeff Trawick]
cbee6197d1fb31453ff51f9f1c705feed67c9c73Mark Andrews
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt *) Modify the install directory layout. Modules are now installed in
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt modules/. Shared libraries should be installed in libraries/, but
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt we don't have any of those on Unix yet. All install directories
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt are modifyable at configure time. [Ryan Bloom]
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt *) Install all header files in the same directory on Unix. [Ryan Bloom]
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt
77b8f88f144928eddcca144c348d6ef53e7d5c43Evan Hunt *) Get the functions in server/linked into the server, regardless of
9d5e42bb875bc287387241dd7563f5698afd31f6Mark Andrews which modules linked into the server. This uses the same hack
6a90baa0d5ac5ad6bf5a5e29b6e8b26a931e844eEvan Hunt for Apache that we use for APR and apr-util to ensure all of the
6a90baa0d5ac5ad6bf5a5e29b6e8b26a931e844eEvan Hunt necessary functions are linked. As a part of thise, the CHARSET_EBCDIC
6a90baa0d5ac5ad6bf5a5e29b6e8b26a931e844eEvan Hunt was renamed to AP_CHARSET_EBCDIC for namespace protection, and to make
3727725bb7d63605b68a644060857013d563b67fEvan Hunt the scripts a bit easier.
3727725bb7d63605b68a644060857013d563b67fEvan Hunt [Ryan Bloom]
3727725bb7d63605b68a644060857013d563b67fEvan Hunt
3727725bb7d63605b68a644060857013d563b67fEvan Hunt *) Rework the RFC1413 handling to make it thread-safe, use a timeout
3727725bb7d63605b68a644060857013d563b67fEvan Hunt on the query, and remove IPv4 dependencies. [Jeff Trawick]
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt *) Get all of the auth modules to the point that they will install and
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt be loadable into the server. Our new build/install mechanism expects
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt that all modules will have a common name format. The auth modules
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt didn't use that format, so we didn't install them properly.
315a1514a58dbb1ca563445313d67c1cf664d248Evan Hunt [Ryan Bloom]
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews *) API routines ap_pgethostbyname() and ap_pduphostent() are no longer
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews available. Use apr_getaddrinfo() instead. [Jeff Trawick]
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews *) Get "NameVirtualHost *" working in 2.0. [Ryan Bloom]
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews *) Return HTTP_RANGE_NOT_SATISFIABLE if the every range requested starts
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews after the end of the response. [Ryan Bloom]
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews *) Get byterange requests working with responses that do not have a
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews content-length. Because of the way byterange requests work, we have to
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews have all of the data before we can actually do the byterange, so we
28479307225582ad0b2e11441d85fcf5169551d0Mark Andrews can compute the content-length in the byterange filter.
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt [Ryan Bloom]
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt *) Get exe CGI's working again on Windows.
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt [Allan Edwards]
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt *) Get mod_cgid and mod_rewrite to work as DSOs by changing the way
d1f39121a69b6afa6c0c9e44eceb60910d1d7f81Evan Hunt they keep track of whether or not their post config hook has been
246c504f90f42e5633dfd5e85bd57b01064961feEvan Hunt called before. Instead of a static variable (which is replaced when
246c504f90f42e5633dfd5e85bd57b01064961feEvan Hunt the DSO is loaded a second time), use userdata in the process pool.
246c504f90f42e5633dfd5e85bd57b01064961feEvan Hunt [Jeff Trawick]
ff71474ede45c496b303af7be7cd0e2f3403bda6Evan Hunt
ff71474ede45c496b303af7be7cd0e2f3403bda6Evan HuntChanges with Apache 2.0a9
3ff75c89eb7b8c4f8c7dd375beec2981d147c791Evan Hunt
3ff75c89eb7b8c4f8c7dd375beec2981d147c791Evan Hunt *) Win32 now requires perl to complete the final install step for users
3ff75c89eb7b8c4f8c7dd375beec2981d147c791Evan Hunt to build + install on Win32. Makefile.win now rewrites @@ServerRoot@
8b78c993cb475cc94e88560941b28c37684789d9Francis Dupont and installs the conf, htdocs and htdocs/manual directories.
8b78c993cb475cc94e88560941b28c37684789d9Francis Dupont [William Rowe]
8b78c993cb475cc94e88560941b28c37684789d9Francis Dupont
8b78c993cb475cc94e88560941b28c37684789d9Francis Dupont *) Make mod_include use a hash table to associate directive tags with
b56f3f5c6663a40852866cbca469f680f7118e79Francis Dupont functions. This allows modules to implement their own SSI tags easily.
b56f3f5c6663a40852866cbca469f680f7118e79Francis Dupont The idea is simple enough, a module can insert it's own tag and function
48b6d2f585d753ac89a11cb5bafb14f239e08430Evan Hunt combination into a hash table provided by mod_include. While mod_include
48b6d2f585d753ac89a11cb5bafb14f239e08430Evan Hunt parses an SSI file, when it encounters a tag in the file, it does a
48b6d2f585d753ac89a11cb5bafb14f239e08430Evan Hunt hash lookup to find the function that implements that tag, and passes
1a0eecfe694275dfadccc6074aaa4340845cc85dEvan Hunt all of the relevant data to the function. That function is then
1a0eecfe694275dfadccc6074aaa4340845cc85dEvan Hunt responsible for processing the tag and handing the remaining data back
1a0eecfe694275dfadccc6074aaa4340845cc85dEvan Hunt to mod_include for further processing.
c36ba263d6318740da965f5351fe09e74f1d8aa2Evan Hunt [Paul J. Reder <rederpj@raleigh.ibm.com>]
c36ba263d6318740da965f5351fe09e74f1d8aa2Evan Hunt
4256ffffb9da267edf7925597714afaacabebf5aEvan Hunt *) Get rid of ap_new_apr_connection(). ap_new_connection() now has
4256ffffb9da267edf7925597714afaacabebf5aEvan Hunt fewer parameters: the local and remote socket addresses were removed
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews from the parameter list because all required information is available
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews via the APR socket. [Jeff Trawick]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Distribution directory structure reorganized to reflect a
eb95d2e917b3f71c33a8be53eac75eb191ee5a9dMark Andrews normal source distribution with external install targets.
eb95d2e917b3f71c33a8be53eac75eb191ee5a9dMark Andrews [Roy Fielding]
eb95d2e917b3f71c33a8be53eac75eb191ee5a9dMark Andrews
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier *) The MPMs that need multiple segments of shared memory now create
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier two apr_shmem_t variables, one for each shared memory allocation.
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier the problem is that we can't determine how much memory will be required
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier for shared memory allocations once we try to allocate more than one
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier variable. The MM code automatically aligns the shared memory allocations,
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier so we end up needing to pad the amount of shared memory we want based
bafa76b324e2336d707a158cccdb309df30bca65Shawn Routhier on how many variables will be allocated out of the shared memory segment.
4977518a4c906da7c7cf2c5bba2cef2ccd1a409aMark Andrews It is just easier to create a second apr_shmem_t variable, and two
a93a66f61872a92ef4a272ca998aaff954ab4fedEvan Hunt shmem memory blocks.
a93a66f61872a92ef4a272ca998aaff954ab4fedEvan Hunt [Ryan Bloom]
4977518a4c906da7c7cf2c5bba2cef2ccd1a409aMark Andrews
debd489a44363870f96f75818e89ec27d3cab736Francis Dupont *) Cleanup the export list a bit. This creates a single unified list of
4977518a4c906da7c7cf2c5bba2cef2ccd1a409aMark Andrews functions exported by APR. The export list is generated at configure
1e733ffc1103667dd6cf0eae01f5dfd0c84c5108Mark Andrews time, and that list is then used to generate the exports.c file.
fb596cc9af28ab5bf71c6796ebd1809654307a08Evan Hunt Because of the way the export list is generated, we only export those
fb596cc9af28ab5bf71c6796ebd1809654307a08Evan Hunt functions that are valid on the platform we are building on.
fb596cc9af28ab5bf71c6796ebd1809654307a08Evan Hunt [Ryan Bloom]
fb596cc9af28ab5bf71c6796ebd1809654307a08Evan Hunt
fb596cc9af28ab5bf71c6796ebd1809654307a08Evan Hunt *) Enable logging the cookie with mod_log_config
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Sander van Zoest <sander@covalent.net>]
ff850b81c814787c72e96b162f47a208665814c4Mark Andrews
ff850b81c814787c72e96b162f47a208665814c4Mark Andrews *) Fix a segfault in mod_info when it reaches the end of the configuration.
0f869e8d52fec87684c7551dcc0f315a7ed19da1Mark Andrews [Jeff Trawick]
0f869e8d52fec87684c7551dcc0f315a7ed19da1Mark Andrews
69338455d91b46bef10a2d73beafa05df49ed2d9Mark Andrews *) Added lib/aputil/ as a placeholder for utility functions which are not
69338455d91b46bef10a2d73beafa05df49ed2d9Mark Andrews specific to the Apache HTTP Server (but do not make sense with APR).
69338455d91b46bef10a2d73beafa05df49ed2d9Mark Andrews The first utility is "apu_dbm": a set of functions to work with DBM
b3c8f1e9e864c30d1bb68fdf1ba7eb242c24be6eMark Andrews files. This first version can be compiled for SDBM or GDBM databases.
53c22b8e0da67ca756ca309d5f84db9c189cd0a2Evan Hunt [Greg Stein]
53c22b8e0da67ca756ca309d5f84db9c189cd0a2Evan Hunt
53c22b8e0da67ca756ca309d5f84db9c189cd0a2Evan Hunt *) Complete re-write of mod_include. This makes mod_include a filter that
b3c8f1e9e864c30d1bb68fdf1ba7eb242c24be6eMark Andrews uses buckets directly. This has now served the FAQ correctly.
91c6a86724e34827bdedfa3245986b31e0653ef2Mark Andrews [Paul Reder <rederpj@raleigh.ibm.com>]
4d0e2cf9b9ffcf5941b347e6bea084a12455e388Mark Andrews
484076c3255e0cc5b179ad736cd930900e4bb06bFrancis Dupont *) Allow modules to specify the first filter in a sub_request when
484076c3255e0cc5b179ad736cd930900e4bb06bFrancis Dupont making the sub_request. This keeps modules from having to change the
8436cc14ba43418d60da21eee1ed045570edbd58Evan Hunt output_filter immediately after creating the sub-request, and therefore
8436cc14ba43418d60da21eee1ed045570edbd58Evan Hunt skip the sub_req_output_filter. [Ryan Bloom]
8436cc14ba43418d60da21eee1ed045570edbd58Evan Hunt
011d0b7dc81e51ac5ea150935c1d9613212b58cfMark Andrews *) Update ab to accept URLs with IPv6 literal address strings (in the
011d0b7dc81e51ac5ea150935c1d9613212b58cfMark Andrews format described in RFC 2732), and to build Host header fields in
011d0b7dc81e51ac5ea150935c1d9613212b58cfMark Andrews the same format. This allows IPv6 literal address strings to be
011d0b7dc81e51ac5ea150935c1d9613212b58cfMark Andrews used with ab. This support has been tested against Apache 1.3 with
2f4d747a267026e6298ba9ece22c9dfa0ac254daFrancis Dupont the KAME patch, but Apache 2.0 does not yet work with this format
2f4d747a267026e6298ba9ece22c9dfa0ac254daFrancis Dupont of the Host header field. [Jeff Trawick]
2f4d747a267026e6298ba9ece22c9dfa0ac254daFrancis Dupont
790e471f6e97fd4da5dc03dd34824d814a50b9a1Tatuya JINMEI 神明達哉 *) Accomodate an out-of-space condition in the piped logs and the
c9424f08b013c676ac07173d5b058721ea632875Tatuya JINMEI 神明達哉 rotatelogs.c code, and no longer churn log processes for this
790e471f6e97fd4da5dc03dd34824d814a50b9a1Tatuya JINMEI 神明達哉 condition. [Victor J. Orlikowski]
265daffadb5b69702ca355fb500d1f0d8077a983Francis Dupont
6b87f604311735826a0b2e1bde672a2a4f352892Francis Dupont *) Add support for partial writes with apr_sendfile() to core_output_filter.
d514c0dc9b7f369a94d79c709b77a8f3a08afd84Evan Hunt [Greg Ames]
d514c0dc9b7f369a94d79c709b77a8f3a08afd84Evan Hunt
d514c0dc9b7f369a94d79c709b77a8f3a08afd84Evan HuntChanges with Apache 2.0a8
a12c8549d62d16cfcdf51c9ba9cdf7065191b4f6Mark Andrews
a12c8549d62d16cfcdf51c9ba9cdf7065191b4f6Mark Andrews *) Add a directive to mod_mime so that filters can be associated with
a12c8549d62d16cfcdf51c9ba9cdf7065191b4f6Mark Andrews a given mime-type.
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt [Ryan Bloom]
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt *) Get multi-views working again. We were setting the path_info
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt field incorrectly if we couldn't find the specified file.
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt [Ryan Bloom]
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt *) Fix 304 processing. The core should never try to send the headers
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt down the filter stack. Always, just setup the table in the request
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt record, and let the header filter convert it to data that is ready
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt for the network.
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt [Ryan Bloom]
d514c0dc9b7f369a94d79c709b77a8f3a08afd84Evan Hunt
b843f577bbcd6660fbaa506d9e55b156c689a5a8Evan Hunt *) More fixes for the proxy. There are still bugs in the proxy code,
2fa5af7b736eac0092845c5ccbddf6cc00d0321eTatuya JINMEI 神明達哉 but this has now proxied www.yahoo.com and www.ntrnet.net (my ISP)
2fa5af7b736eac0092845c5ccbddf6cc00d0321eTatuya JINMEI 神明達哉 successfully.
2fa5af7b736eac0092845c5ccbddf6cc00d0321eTatuya JINMEI 神明達哉 [Ryan Bloom]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
f267b27f0e1cdc55c7f1ca2a56632ce36907ff63Evan Hunt *) Fix params for apr_getaddrinfo() call in connect proxy handler.
f267b27f0e1cdc55c7f1ca2a56632ce36907ff63Evan Hunt [Chuck Murcko]
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt *) APR: Add new apr_getopt_long function to handle long options.
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt [B. W. Fitzpatrick <fitz@red-bean.com>]
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt *) APR: Change apr_connect() to take apr_sockaddr_t instead of hostname.
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt Add generic apr_create_socket(). Add apr_getaddrinfo() for doing
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt hostname resolution/address string parsing and building
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt apr_sockaddr_t. Add apr_get_sockaddr() for getting the address
be63f34b6af410ff34a169657625c12394b4f8e7Evan Hunt of one of the apr_sockaddr_t structures for a socket. Change
14cd8ac04c999fd1d2e620856330e808cae57950Mark Andrews apr_bind() to take apr_sockaddr_t. [David Reid and Jeff Trawick]
14cd8ac04c999fd1d2e620856330e808cae57950Mark Andrews
14cd8ac04c999fd1d2e620856330e808cae57950Mark Andrews *) Remove the BUFF from the HTTP proxy. This is still a bit ugly, but
1f821c10583d9cddbaf3626a96ff8cf10cdb645bFrancis Dupont I have proxied pages with it, cleanup will commence soon.
1f821c10583d9cddbaf3626a96ff8cf10cdb645bFrancis Dupont [Ryan Bloom]
1f821c10583d9cddbaf3626a96ff8cf10cdb645bFrancis Dupont
1f821c10583d9cddbaf3626a96ff8cf10cdb645bFrancis Dupont *) Make the proxy work with filters. This isn't perfect, because we
1f821c10583d9cddbaf3626a96ff8cf10cdb645bFrancis Dupont aren't dealing with the headers properly. [Ryan Bloom]
0b8385f5c51def183dbccd1bc569ea8fe092dfb2Mark Andrews
0b8385f5c51def183dbccd1bc569ea8fe092dfb2Mark Andrews *) Do not send a content-length iff the C-L is 0 and this is a head
0b8385f5c51def183dbccd1bc569ea8fe092dfb2Mark Andrews request. [Ryan Bloom]
bbc204a23719180dce68142ea2440c484e3ccb75Mark Andrews
bbc204a23719180dce68142ea2440c484e3ccb75Mark Andrews *) Make cgi-bin work as a regular directory when using mod_vhost_alias
bbc204a23719180dce68142ea2440c484e3ccb75Mark Andrews with no VirtualScriptAlias directives. PR#6829 [Tony Finch]
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt *) Remove BUFF from the PROXY connect handling. [Ryan Bloom]
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt *) Get the default_handler to stop trying to deal with HEAD requests.
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt The idea is to let the content-length filter compute the C-L before
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt we try to send the data. If we can get the C-L correctly, then we
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt should send it in the HEAD response.
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt [Ryan Bloom]
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt *) The Header filter can now determine if a body should be sent based
eab9975bcf5830a73f18ed8f320ae18ea32775eeEvan Hunt on r->header_only. The general idea of this is that if we delay
a27fe4c990f96bd792f2a07ca4d38c78d5b9df2cTatuya JINMEI 神明達哉 deciding to send the body, then we might be able to compute the
a27fe4c990f96bd792f2a07ca4d38c78d5b9df2cTatuya JINMEI 神明達哉 content-length correctly, which will help caching proxies to cache
a27fe4c990f96bd792f2a07ca4d38c78d5b9df2cTatuya JINMEI 神明達哉 our data better. Any handler that doesn't want to try to compute
44de0b1f7d9997aaf6092589c4c7da4a1df908dbTatuya JINMEI 神明達哉 the content-length can just send an EOS bucket without data and
44de0b1f7d9997aaf6092589c4c7da4a1df908dbTatuya JINMEI 神明達哉 everything will just work.
44de0b1f7d9997aaf6092589c4c7da4a1df908dbTatuya JINMEI 神明達哉 [Ryan Bloom]
85be60e3c8e47b9fdfeaa0770f445b206c39bca8Evan Hunt
85be60e3c8e47b9fdfeaa0770f445b206c39bca8Evan Hunt *) Add the referer to the error log if one is available.
85be60e3c8e47b9fdfeaa0770f445b206c39bca8Evan Hunt [Markus Gyger <mgyger@itr.ch>]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
b1f3364f52261c3198b3717530aabc612c5a431aEvan Hunt *) Mod_info.c has now been ported to Apache 2.0. As a part of this
b1f3364f52261c3198b3717530aabc612c5a431aEvan Hunt change, the root of the configuration tree has been exposed to modules
b1f3364f52261c3198b3717530aabc612c5a431aEvan Hunt as ap_conftree.
479b80d4d706be399fd8974e941d9a0edb4259efMark Andrews [Ryan Morgan <rmorgan@covalent.net>]
479b80d4d706be399fd8974e941d9a0edb4259efMark Andrews
479b80d4d706be399fd8974e941d9a0edb4259efMark Andrews *) Get the core_output_filter to use the bucket interface directly.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews This keeps us from calling the content-length filter multiple times
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt for a simple static request.
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt [Ryan Bloom]
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt *) We are sending the content-type correctly now.
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt [Ryan Bloom and Will Rowe]
ef22fffeebffacbcbce1f8d68d0c3f29a7d4a59eEvan Hunt
307d2084502eddc7ce921e5ce439aec3531d90e0Tatuya JINMEI 神明達哉 *) APR on FreeBSD: Fix a bug in apr_sendfile() which caused us to report
307d2084502eddc7ce921e5ce439aec3531d90e0Tatuya JINMEI 神明達哉 a bogus bytes-sent value when the only thing being sent was trailers
307d2084502eddc7ce921e5ce439aec3531d90e0Tatuya JINMEI 神明達哉 and writev() returned an error (or EAGAIN). [Jeff Trawick]
41eeb37b516d1bac073781b6ec50a39a669987dfEvan Hunt
41eeb37b516d1bac073781b6ec50a39a669987dfEvan Hunt *) Get SINGLE_LISTEN_UNSERIALIZED_ACCEPT working again. This uses the
41eeb37b516d1bac073781b6ec50a39a669987dfEvan Hunt hints file to determine which platforms define
747abb4993e03b8812514e4476bff67f5248c717Evan Hunt SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
747abb4993e03b8812514e4476bff67f5248c717Evan Hunt [Ryan Bloom]
747abb4993e03b8812514e4476bff67f5248c717Evan Hunt
11b4f17027f4cf67d494eb89a8d2ea919dd16615Mark Andrews *) APR: add apr_get_home_directory() [Jeff Trawick]
11b4f17027f4cf67d494eb89a8d2ea919dd16615Mark Andrews
11b4f17027f4cf67d494eb89a8d2ea919dd16615Mark Andrews *) Initial import of 1.3-current mod_proxy. [Chuck Murcko]
7179c3476f676bc8c520583b3ed7a738aa8eeee2Mark Andrews
7179c3476f676bc8c520583b3ed7a738aa8eeee2Mark Andrews *) Not all platforms have INADDR_NONE defined by default. Apache
d699672160ba01589227ac046a28e20d55336facEvan Hunt used to make this check and define INADDR_NONE if appropriate,
7179c3476f676bc8c520583b3ed7a738aa8eeee2Mark Andrews but APR needs the check too, and I suspect other applications will
a0ba5a502e0ca8049bff7ef4305948566703ea26Mark Andrews as well. APR now defines APR_INADDR_NONE, which is always a valid
a0ba5a502e0ca8049bff7ef4305948566703ea26Mark Andrews value on all platforms.
a0ba5a502e0ca8049bff7ef4305948566703ea26Mark Andrews [Branko �ibej <brane@xbc.nu>]
18114698b4fad77aa0f32741cf815cff0def7696Mark Andrews
18114698b4fad77aa0f32741cf815cff0def7696Mark Andrews *) Destroy the pthread mutex in lock_intra_cleanup() for PR#6824.
18114698b4fad77aa0f32741cf815cff0def7696Mark Andrews [Shuichi Kitaguchi <ki@hh.iij4u.or.jp>]
97a2451eea9dfb4ccb8d5c5392142c80b34a7e48Mark Andrews
97a2451eea9dfb4ccb8d5c5392142c80b34a7e48Mark Andrews *) Relax the syntax checking of Host: headers in order to support
97a2451eea9dfb4ccb8d5c5392142c80b34a7e48Mark Andrews iDNS. PR#6635 [Tony Finch]
88471538d69a7c21b8b9fd13b489399ad6c26597Mark Andrews
88471538d69a7c21b8b9fd13b489399ad6c26597Mark Andrews *) When reading from file buckets we convert to an MMAP if it makes
88471538d69a7c21b8b9fd13b489399ad6c26597Mark Andrews sense. This also simplifies the default handler because the
ddc225b15d04e5b7d637d305f4ea3c04df1896bfEvan Hunt default handler no longer needs to try to create MMAPs.
ddc225b15d04e5b7d637d305f4ea3c04df1896bfEvan Hunt [Ryan Bloom]
ddc225b15d04e5b7d637d305f4ea3c04df1896bfEvan Hunt
813b34ebecba1293ccfb91e52e3c69d5c819073dEvan Hunt *) BUFF has been removed from the main server. The BUFF code will remain
813b34ebecba1293ccfb91e52e3c69d5c819073dEvan Hunt in the code until it has been purged from the proxy module as well.
813b34ebecba1293ccfb91e52e3c69d5c819073dEvan Hunt [Ryan Bloom]
bcd0cbfdae6729c48894501b6bcddc972feda67fMark Andrews
bcd0cbfdae6729c48894501b6bcddc972feda67fMark Andrews *) Byteranges have been completely re-written to be a filter. This
1d9958c6cc291916010779792f0fbdf6cd5ba368Mark Andrews has been tested, and I believe it is working correctly, but it could
1d9958c6cc291916010779792f0fbdf6cd5ba368Mark Andrews doesn't work for the Adobe Acrobat plug-in. The output almost matches
8cff1a894f09360814f88437c0c6bce90db11944Mark Andrews the output from 1.3, the only difference being that 1.3 includes
8cff1a894f09360814f88437c0c6bce90db11944Mark Andrews a content-length in the response, and this does not.
8cff1a894f09360814f88437c0c6bce90db11944Mark Andrews [Ryan Bloom]
048690a34d0fa89bd128ac21d1a4c84b4703a3deMark Andrews
048690a34d0fa89bd128ac21d1a4c84b4703a3deMark Andrews *) APR read/write functions and bucket read functions now operate
90c1e763d577da656b5eeb02462b5236dca5f266Mark Andrews on unsigned integers, instead of signed ones. It doesn't make
90c1e763d577da656b5eeb02462b5236dca5f266Mark Andrews any sense to use signed ints, because we return the error codes,
90c1e763d577da656b5eeb02462b5236dca5f266Mark Andrews so if we have an error we should report 0 bytes read or written.
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt [Ryan Bloom]
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt *) Always compute the content length, whether it is sent or not.
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt The reason for this, is that it allows us to correctly report
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt the bytes_sent when logging the request. This also simplifies
3a875400473e5c06199272a1292ed84646990e2fEvan Hunt content-length filter a bit, and fixes the actual byte-reporing
6beee732e49fb77e92afd613f8634f828b885560Mark Andrews code in mod_log_config.c
6beee732e49fb77e92afd613f8634f828b885560Mark Andrews [Ryan Bloom]
6beee732e49fb77e92afd613f8634f828b885560Mark Andrews
a3288b425ae88f415d2d8209769d140b5d952fb3Evan Hunt *) Remove AP_END_OF_BRIGADE definition. This does not signify what
a3288b425ae88f415d2d8209769d140b5d952fb3Evan Hunt it says, because it was only used by EOS and FLUSH buckets. Since
a3288b425ae88f415d2d8209769d140b5d952fb3Evan Hunt neither of those are required at the end of a brigade, this was
9069215eac23e32f4ef1c8e44ad7ff2865cfcdacEvan Hunt really signifying FLUSH_THE_DATA, but that can be determined better
9069215eac23e32f4ef1c8e44ad7ff2865cfcdacEvan Hunt by checking AP_BUCKET_IS_EOS() or AP_BUCKET_IS_FLUSH. EOS and FLUSH
9069215eac23e32f4ef1c8e44ad7ff2865cfcdacEvan Hunt buckets now return a length of 0, which is actually the amount of data
bd190a40a85e5ed780c9c428c6261bc397059b4bMark Andrews read, so they make more sense.
bd190a40a85e5ed780c9c428c6261bc397059b4bMark Andrews [Ryan Bloom]
610f3aa54c026e0506d22a80945bbadfcf0f6c7fMark Andrews
d173d06cae4995f61970445d8e4216c48fb925cdMark Andrews *) Allow the core_output_filter to save some data past the end of a
d173d06cae4995f61970445d8e4216c48fb925cdMark Andrews request. If we get an EOS bucket, we only send the data if it
ca8576a564a0ff6aa200936f0b5392f62b2ffe02Mark Andrews makes sense to send it. This allows us to pipeline request
97725b410a7a65cd300028996b01960393532822Mark Andrews responses. As a part of this, we also need to allocate mmap
ca8576a564a0ff6aa200936f0b5392f62b2ffe02Mark Andrews buckets out of the connection pool, not the request pool. This
520cea04a257e6009d855ddeb20f8d3a46cee22cMark Andrews allows the mmap to outlive the request.
520cea04a257e6009d855ddeb20f8d3a46cee22cMark Andrews [Ryan Bloom]
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt *) Make blocking and non-blocking bucket reads work correctly for
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt sockets and pipes. These are the only bucket types that should
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt have non-blocking reads, because the other bucket types should
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt ALWAYS be able to return something immediately.
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt [Ryan Bloom]
15fcbe39173856ae3bd0198099a693e594536869Tatuya JINMEI 神明達哉
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt *) In the Apache/Win32 console window, accept Ctrl+C to stop the
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt server, but use Ctrl+Break to initiate a graceful restart
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt instead of duplicating behavior. [John Sterling]
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt *) Patch mod_autoindex to set the Last-Modified header based on
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt the directory's mtime, and add the ETag header. [William Rowe]
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt *) Merge the 1.3 patch to add support for logging query string in
553ead32ff5b00284e574dcabc39115d4d74ec66Evan Hunt such a way that "%m %U%q %H" is the same as "%r".
3967528c773745ac32a83c2c77a910fd15db743dEvan Hunt [Bill Stoddard]
3967528c773745ac32a83c2c77a910fd15db743dEvan Hunt
3967528c773745ac32a83c2c77a910fd15db743dEvan Hunt *) Port three log methods from mod_log_config 1.3 to 2.0:
aeff7de836558fa8002ab5db35292d2bb6450da8Evan Hunt CLF compliant '-' byte count, method and protocol.
aeff7de836558fa8002ab5db35292d2bb6450da8Evan Hunt [Bill Stoddard]
aeff7de836558fa8002ab5db35292d2bb6450da8Evan Hunt
2792e226c786e739b2924efdf8246af389384a2fMark Andrews *) Add a new LogFormat directive, %c, that will log connection
2792e226c786e739b2924efdf8246af389384a2fMark Andrews status at the end of the response as follows:
ab280fdfc5e4251758aa9929457fba6dce3f1847Mark Andrews 'X' - connection aborted before the response completed.
ab280fdfc5e4251758aa9929457fba6dce3f1847Mark Andrews '+' - connection may be kept-alive by the server.
ab280fdfc5e4251758aa9929457fba6dce3f1847Mark Andrews '-' - connection will be closed by the server.
fb8db7fc3f3ea597a959e4c8ac42247fd78ca887Mark Andrews [Bill Stoddard]
fb8db7fc3f3ea597a959e4c8ac42247fd78ca887Mark Andrews
fb8db7fc3f3ea597a959e4c8ac42247fd78ca887Mark Andrews *) Expand APR for WinNT to fully accept and return utf-8 encoded
08f860f800d32007a0c9bf456f6c35fbb2ecbc81Evan Hunt Unicode file names and paths for Win32, and tag the Content-Type
08f860f800d32007a0c9bf456f6c35fbb2ecbc81Evan Hunt from mod_autoindex to reflect that charset if the the feature
63b17e175fc75adebf16563b08c89d54e6dfa253Evan Hunt macro APR_HAS_UNICODE_FS is true. [William Rowe]
63b17e175fc75adebf16563b08c89d54e6dfa253Evan Hunt
08f860f800d32007a0c9bf456f6c35fbb2ecbc81Evan Hunt *) Compute the content length (and add appropriate header field) for
38cd4d14cc341c2663e574035074788bb6f0fce2Evan Hunt the response when no content length is available and we can't use
38cd4d14cc341c2663e574035074788bb6f0fce2Evan Hunt chunked encoding. [Jeff Trawick]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Changed ap_discard_request_body() to use REQUEST_CHUNKED_DECHUNK,
a4463732ad7935992a101b3d19f0a41120b85458Mark Andrews so that content input filters get dechunked data when using
a4463732ad7935992a101b3d19f0a41120b85458Mark Andrews the default handler. Also removed REQUEST_CHUNKED_PASS.
a4463732ad7935992a101b3d19f0a41120b85458Mark Andrews [Sascha Schumann]
943cbe8ae58834fb3f9a57ae799d006741a52344Evan Hunt
943cbe8ae58834fb3f9a57ae799d006741a52344Evan Hunt *) Add mod_ext_filter as an experimental module. This module allows
943cbe8ae58834fb3f9a57ae799d006741a52344Evan Hunt the administrator to use external programs as filters. Currently,
ef370118d5d850912a4612122f5678e3db99ee87Evan Hunt only filtering of output is supported. [Jeff Trawick]
ef370118d5d850912a4612122f5678e3db99ee87Evan Hunt
ef370118d5d850912a4612122f5678e3db99ee87Evan Hunt *) Most Apache functions work on EBCDIC machines again, as protocol
5b7525f51fbcb074bf031d92f5cd95267c628137Mark Andrews data is now translated (again). [Jeff Trawick]
5b7525f51fbcb074bf031d92f5cd95267c628137Mark Andrews
3bc4221346e5045c5679dd0d84f4f7d888a9da79Mark Andrews *) Introduce ap_xlate_proto_{to|from}_ascii() to clean up some of
3bc4221346e5045c5679dd0d84f4f7d888a9da79Mark Andrews the EBCDIC support. They are noops on ASCII machines, so this
3bc4221346e5045c5679dd0d84f4f7d888a9da79Mark Andrews type of translation doesn't have to be surrounded by #ifdef
6d5852f318a7d09cff05a347456d1cd12407ceb1Mark Andrews CHARSET_EBCDIC. [Jeff Trawick]
6d5852f318a7d09cff05a347456d1cd12407ceb1Mark Andrews
98e8948bd715fbefa8870e6f344183bc67e22340Mark Andrews *) Fix mod_include. tag commands work again, and the server will
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews send the FAQ again. This also allows mod_include to set aside
d7d05319a67229b250de910b8876bea0f6e9a0b1Tatuya JINMEI 神明達哉 buckets that include partial buckets.
d7d05319a67229b250de910b8876bea0f6e9a0b1Tatuya JINMEI 神明達哉 [Ryan Bloom and David Reid]
8d80232e77cb7f2ec38bdbec424e9399d04165f3Mark Andrews
109580e7e5c92b98c641836ccb5949b4802ffcedMark Andrews *) Add suexec support back. [Manoj Kasichainula]
109580e7e5c92b98c641836ccb5949b4802ffcedMark Andrews
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt *) Lingering close now uses the socket directly instead of using
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt BUFF. This has been tested, but since all we can tell is that it
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt doesn't fail, this needs to be really hacked on.
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt [Ryan Bloom]
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt
cfb1587eb9a6dc6d1d36ea0344e1b20068b81e88Evan Hunt *) Allow filters to modify headers and have those headers be sent to
01dbc4fc00adc933af96e88bfce95c07ef1f3c39Mark Andrews the client. The idea is that we have an http_header filter that
01dbc4fc00adc933af96e88bfce95c07ef1f3c39Mark Andrews actually sends the headers to the network. This removes the need
01dbc4fc00adc933af96e88bfce95c07ef1f3c39Mark Andrews for the BUFF to send headers.
870332fb6d15e9fde8753399b00cb9e721c4d64fMark Andrews [Ryan Bloom]
870332fb6d15e9fde8753399b00cb9e721c4d64fMark Andrews
01dbc4fc00adc933af96e88bfce95c07ef1f3c39Mark Andrews *) Charset translation: mod_charset_lite handles translation of
371642de8b1863b2fc6ec9a89416de4dca71bc47Mark Andrews request bodies. Get rid of the xlate version of ap_md5_digest()
371642de8b1863b2fc6ec9a89416de4dca71bc47Mark Andrews since we don't compute digests of filtered (e.g., translated)
d8f118f4a06cae6ec6b4ae133882f0eee1478599Mark Andrews response bodies this way anymore. (Note that we don't do it at
76110b31fe98564564693a7daf2e99c78ff39a05Mark Andrews all at the present; somebody needs to write a filter to do so.)
76110b31fe98564564693a7daf2e99c78ff39a05Mark Andrews [Jeff Trawick]
76110b31fe98564564693a7daf2e99c78ff39a05Mark Andrews
877769641186144911152622b4345b27ca393df8Mark Andrews *) Input filters and ap_get_brigade() now have a input mode parameter
f7b683b054c4deb05f09d2f39da6ceb4ac838873Mark Andrews (blocking, non-blocking, peek) instead of a length parameter.
f7b683b054c4deb05f09d2f39da6ceb4ac838873Mark Andrews [hackathon]
95f999508b908a95d7ef7b0f891ac8b1a4f21abfTatuya JINMEI 神明達哉
95f999508b908a95d7ef7b0f891ac8b1a4f21abfTatuya JINMEI 神明達哉 *) Update the mime.types file to the registered media types as
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt of 2000-10-19. PR#6613 [Carsten Klapp <carsten.klapp@home.net>,
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt Tony Finch]
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt *) Namespace protect some macros declared in ap_config.h
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt [Ryan Bloom]
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt *) Support HTTP header line folding with input filtering.
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt [Greg Ames]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt *) Mod_include works again. This should still be re-written, but at
b272d38cc5d24f64c0647a9afb340c21c4b9aaf7Evan Hunt least now we can serve an SHTML page again.
f4ea363e3acc321b24ffe95a64a583e8041d6fd5Mark Andrews [Ryan Bloom]
f4ea363e3acc321b24ffe95a64a583e8041d6fd5Mark Andrews
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt *) Begin to remove BUFF from the core. Currently, we keep a pointer
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt to both the BUFF and the socket in the conn_rec. Functions that
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt want to use the BUFF can, functions that want to use the socket,
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt can. They point to the same place.
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt [Ryan Bloom]
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt *) apr_psprintf doesn't understand %lld as a format. Make it %ld.
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt [Tomas "�gren" <stric@ing.umu.se>]
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt *) APR pipes on Unix and Win32 are now cleaned up automatically when the
351b62535d4c4f89883bfdba025999dd32490266Evan Hunt associated pool goes away. (APR pipes on OS/2 were already had this
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews logic.) This resolvs a fatal file descriptor leak with CGIs.
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews [Jeff Trawick]
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews *) The final line of the config file was not being read if there was
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews no \n at the end of it. This was caused by apr_fgets returning
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews APR_EOF even though we had read valid data. This is solved by
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews making cfg_getline check the buff that was returned from apr_fgets.
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews If apr_fgets return APR_EOF, but there was data in the buf, then we
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews return the buf, otherwise we return NULL.
2534a73a5914470f7ffe00663b6bbaff5e411e57Mark Andrews [Ryan Bloom]
f05a6b110fc93d9b04743ffc957242fa7f53de02Mark Andrews
f05a6b110fc93d9b04743ffc957242fa7f53de02Mark Andrews *) Piped logs work again in the 2.0 series.
f05a6b110fc93d9b04743ffc957242fa7f53de02Mark Andrews [Ryan Bloom]
f05a6b110fc93d9b04743ffc957242fa7f53de02Mark Andrews
0bc3af9834214650b29710757da2ad41e416c4b5Mark Andrews *) Restore functionality broken by the mod_rewrite security fix:
0bc3af9834214650b29710757da2ad41e416c4b5Mark Andrews rewrite map lookup keys and default values are now expanded
0bc3af9834214650b29710757da2ad41e416c4b5Mark Andrews so that the lookup can depend on the requested URI etc.
5422cf284f2ad63aeb561aca57a59e0cffe9af64Mark Andrews PR #6671 [Tony Finch]
5422cf284f2ad63aeb561aca57a59e0cffe9af64Mark Andrews
5422cf284f2ad63aeb561aca57a59e0cffe9af64Mark Andrews *) Tighten up the syntax checking of Host: headers to fix a
40d0f115a64595aa83cfe0b760587d3d1efa0385Tatuya JINMEI 神明達哉 security bug in some mass virtual hosting configurations
40d0f115a64595aa83cfe0b760587d3d1efa0385Tatuya JINMEI 神明達哉 that can allow a remote attacker to retrieve some files
40d0f115a64595aa83cfe0b760587d3d1efa0385Tatuya JINMEI 神明達哉 on the system that should be inaccessible. [Tony Finch]
40d0f115a64595aa83cfe0b760587d3d1efa0385Tatuya JINMEI 神明達哉
40d0f115a64595aa83cfe0b760587d3d1efa0385Tatuya JINMEI 神明達哉 *) Add a pool bucket type. This bucket is used for data allocated out
fc7ecc628dcdc1cfceee6f2dd52bc7c433eb1b8bMark Andrews of a pool. If the pool is cleaned before the bucket is destroyed, then
fc7ecc628dcdc1cfceee6f2dd52bc7c433eb1b8bMark Andrews the data is converted to a heap bucket, allowing it to survive the
fc7ecc628dcdc1cfceee6f2dd52bc7c433eb1b8bMark Andrews death of the pool.
fc7ecc628dcdc1cfceee6f2dd52bc7c433eb1b8bMark Andrews [Ryan Bloom]
7be633656564e109f57f01e1b18319ba019851f9Mark Andrews
7be633656564e109f57f01e1b18319ba019851f9Mark Andrews *) Add a flush bucket. This allows modules to signal that the filters
7be633656564e109f57f01e1b18319ba019851f9Mark Andrews should all flush whatever data they currently have. There is no way
5d924e398ed15c57c506315c7d11125dcc9cb098Jeremy Reed to actually force them to do this, so if a filter ignores this bucket,
5d924e398ed15c57c506315c7d11125dcc9cb098Jeremy Reed that's life, but at least we can try with this.
5d924e398ed15c57c506315c7d11125dcc9cb098Jeremy Reed [Ryan Bloom]
6c3c79e491635d868d5ec288dfa29226da898a2eJeremy Reed
6c3c79e491635d868d5ec288dfa29226da898a2eJeremy Reed *) Add an output filter for sub-requests. This filter just strips the
6c3c79e491635d868d5ec288dfa29226da898a2eJeremy Reed EOS bucket so that we don't confuse the main request's core output
4c2ed3d14168cfe34d1c036eb4885019a8153e7cMark Andrews filter by sending multiple EOS buckets. This change also makes sub
4c2ed3d14168cfe34d1c036eb4885019a8153e7cMark Andrews requests start to send EOS buckets when they are finished.
4c2ed3d14168cfe34d1c036eb4885019a8153e7cMark Andrews [Ryan Bloom]
ddac1a2b9822b00aa936ef24c6d971f4a1407532Francis Dupont
ddac1a2b9822b00aa936ef24c6d971f4a1407532Francis Dupont *) Make ap_bucket_(read|destroy|split|setaside) into macros. Also
e7eede965dbc67842cb32591a8c2ace2620e5359Mark Andrews makes ap_bucket_destroy a return void, which is okay because it
e7eede965dbc67842cb32591a8c2ace2620e5359Mark Andrews used to always return APR_SUCCESS, and nobody ever checked its
e7eede965dbc67842cb32591a8c2ace2620e5359Mark Andrews return value anyway.
5d7849ad7ffc6d08870dbfbc8d6bfffd90007488Tatuya JINMEI 神明達哉 [Cliff Woolley <cliffwoolley@yahoo.com>]
5d7849ad7ffc6d08870dbfbc8d6bfffd90007488Tatuya JINMEI 神明達哉
5d7849ad7ffc6d08870dbfbc8d6bfffd90007488Tatuya JINMEI 神明達哉 *) Remove the index into the bucket-type table from the buckets
5d7849ad7ffc6d08870dbfbc8d6bfffd90007488Tatuya JINMEI 神明達哉 structure. This has now been replaced with a pointer to the
d302a620e0d49811874b9555ac2e4c6e05861a6bFrancis Dupont bucket_type. Also add some macros to test the bucket-type.
d302a620e0d49811874b9555ac2e4c6e05861a6bFrancis Dupont [Ryan Bloom]
708ebf710e1c2c8f5bee6d5ba5376ec44d97aa71Jeremy Reed
708ebf710e1c2c8f5bee6d5ba5376ec44d97aa71Jeremy Reed *) Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
4144efb39046963989ad002cf88a0c195401100aJeremy Reed for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
cc620f9fdb69c13f1ea12bb1c90bc442f6dc0117Francis Dupont and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
cc620f9fdb69c13f1ea12bb1c90bc442f6dc0117Francis Dupont All _VAR_ flavors changes to _DATA to be absolutely clear.
3836f447eeb437ae058dfecb8c321b48c50b7076Mark Andrews [William Rowe]
3836f447eeb437ae058dfecb8c321b48c50b7076Mark Andrews
47323be2afd461c2b0d44400907f3ac020488080Mark Andrews *) Add support for /, //, //servername and //server/sharename
47323be2afd461c2b0d44400907f3ac020488080Mark Andrews parsing of <Directory> blocks under Win32 and OS2.
47323be2afd461c2b0d44400907f3ac020488080Mark Andrews [Tim Costello, William Rowe, Brian Harvard]
b770eae51e5d53730d3836b1548829f69ab15e66Mark Andrews
b770eae51e5d53730d3836b1548829f69ab15e66Mark Andrews *) Remove the function pointers from the ap_bucket type. They have been
d2c115f9134acfefaaeb6b84036672bef93e7df8Mark Andrews replaced with a global table. Modules are allowed to register bucket
f030c715007053e4ceb557c78ad5c8cfdedb4240Mark Andrews types and use then use those buckets.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Ryan Bloom]
f030c715007053e4ceb557c78ad5c8cfdedb4240Mark Andrews
089f456eb39d614cb6904107d4a9580ed4f3f296Tatuya JINMEI 神明達哉 *) mod_cgid: In the handler, shut down the Unix socket (only for write)
089f456eb39d614cb6904107d4a9580ed4f3f296Tatuya JINMEI 神明達哉 once we finish writing the request body to the cgi child process;
089f456eb39d614cb6904107d4a9580ed4f3f296Tatuya JINMEI 神明達哉 otherwise, the client doesn't hit EOF on stdin. Small request bodies
089f456eb39d614cb6904107d4a9580ed4f3f296Tatuya JINMEI 神明達哉 worked without this change (for reasons I don't understand), but large
089f456eb39d614cb6904107d4a9580ed4f3f296Tatuya JINMEI 神明達哉 ones didn't. [Jeff Trawick]
f20f19de1995fb65f0b7184b2e596a0e9da9acb3Jeremy Reed
f20f19de1995fb65f0b7184b2e596a0e9da9acb3Jeremy Reed *) Remove file bucket specific information from the ap_bucket type.
f20f19de1995fb65f0b7184b2e596a0e9da9acb3Jeremy Reed This has been moved to a file_bucket specific type that hangs off
f20f19de1995fb65f0b7184b2e596a0e9da9acb3Jeremy Reed the data pointer in the ap_bucket type.
b1b0dca1464a11b8a63623e8567e744dccfbcb41Tatuya JINMEI 神明達哉 [Ryan Bloom]
b1b0dca1464a11b8a63623e8567e744dccfbcb41Tatuya JINMEI 神明達哉
b1b0dca1464a11b8a63623e8567e744dccfbcb41Tatuya JINMEI 神明達哉 *) Input filtering now has a third argument. This is the amount of data
cda7c783c3e65ab022a8b5806cf63ce021abd33eTatuya JINMEI 神明達哉 to read from lower filters. This argument can be -1, 0, or a positive
cda7c783c3e65ab022a8b5806cf63ce021abd33eTatuya JINMEI 神明達哉 number. -1 means give me all the data you have, I'll deal with it and
cda7c783c3e65ab022a8b5806cf63ce021abd33eTatuya JINMEI 神明達哉 let you know if I need more. 0 means give me one line and one line
cda7c783c3e65ab022a8b5806cf63ce021abd33eTatuya JINMEI 神明達哉 only. A positive number means I want no more than this much data.
af2e2f5ed750530aaf479f5ab24e1fa8a8d0a482Tatuya JINMEI 神明達哉
af2e2f5ed750530aaf479f5ab24e1fa8a8d0a482Tatuya JINMEI 神明達哉 Currently, only 0 and a positive number are implemented. This allows
af2e2f5ed750530aaf479f5ab24e1fa8a8d0a482Tatuya JINMEI 神明達哉 us to remove the remaining field from the conn_rec structure, which
b9636a8e43f791e093baa0fcbd7797f4ad2979deMark Andrews has also been done.
b9636a8e43f791e093baa0fcbd7797f4ad2979deMark Andrews [Ryan Bloom]
b9636a8e43f791e093baa0fcbd7797f4ad2979deMark Andrews
64e161a7f7f7f1692ccdf2400a81b471cf6ac508Mark Andrews *) Big cleanup of the input filtering. The goal is that http_filter
ac8aa59f6226ba950c6c233dda209a58fc1f112aMark Andrews understands two conditions, headers and body. It knows where it is
64e161a7f7f7f1692ccdf2400a81b471cf6ac508Mark Andrews based on c->remaining. If c->remaining is 0, then we are in headers,
9384dc16a1f2c3022f50f2e1ce18a28204baaef7Mark Andrews and http_filter returns a line at a time. If it is not 0, then we are
9384dc16a1f2c3022f50f2e1ce18a28204baaef7Mark Andrews in body, and http_filter returns raw data, but only up to c->remaining
9384dc16a1f2c3022f50f2e1ce18a28204baaef7Mark Andrews bytes. It can return less, but never more.
3af7cd2661b84f1a27bfc78e55e2ab09d2133ac8Tatuya JINMEI 神明達哉 [Greg Ames, Ryan Bloom, Jeff Trawick]
3af7cd2661b84f1a27bfc78e55e2ab09d2133ac8Tatuya JINMEI 神明達哉
3af7cd2661b84f1a27bfc78e55e2ab09d2133ac8Tatuya JINMEI 神明達哉 *) mod_cgi: Write all of the request body to the child, not just what
72dbc7216aae3626a66e6154443be219f5edcaf0Mark Andrews the kernel would accept on the first write. [Jeff Trawick]
72dbc7216aae3626a66e6154443be219f5edcaf0Mark Andrews
72dbc7216aae3626a66e6154443be219f5edcaf0Mark Andrews *) Back out the change that moved the brigade from the core_output_filters
f2e6839b8afaf5ba545f1f978c770fba304bcd0aMark Andrews ctx to the conn_rec. Since all requests over a given connection
ca23cf7e28b9799436c9950ea269953e29dfde16Evan Hunt go through the same core_output_filter, the ctx pointer has the
ca23cf7e28b9799436c9950ea269953e29dfde16Evan Hunt correct lifetime.
a142972ea9697b4ecaa5587fb6d9057e821d5339Tatuya JINMEI 神明達哉 [Ryan Bloom]
a142972ea9697b4ecaa5587fb6d9057e821d5339Tatuya JINMEI 神明達哉
56708c6fb441402e0568f8947cdf0ddda40532b1Mark Andrews *) Fix another bug in the send_the_file() read/write loop. A partial
56708c6fb441402e0568f8947cdf0ddda40532b1Mark Andrews send by apr_send would cause unsent data in the read buffer to
d0e7c8712f25fff65f10d70dba519e9cacc4cc8fMark Andrews get clobbered. Complete making send_the_file handle partial
56708c6fb441402e0568f8947cdf0ddda40532b1Mark Andrews writes to the network.
3f8be559f0871022c78a229bad0eb09560b90909Evan Hunt [Bill Stoddard]
3f8be559f0871022c78a229bad0eb09560b90909Evan Hunt
3f8be559f0871022c78a229bad0eb09560b90909Evan Hunt *) Fix a couple of type fixes to allow compilation on AIX again
3f8be559f0871022c78a229bad0eb09560b90909Evan Hunt [Victor J. Orlikowski <v.j.orlikowski@gte.net>]
3f8be559f0871022c78a229bad0eb09560b90909Evan Hunt
b98225ff8a5721a998ccb440df4d261488fef163Mark Andrews *) Fix bug in send_the_file() which causes offset to be ignored
b98225ff8a5721a998ccb440df4d261488fef163Mark Andrews if there are no headers to send.
e422b84c737d6bb4cf09657777992a30903e187aMark Andrews [Bill Stoddard]
e422b84c737d6bb4cf09657777992a30903e187aMark Andrews
e422b84c737d6bb4cf09657777992a30903e187aMark Andrews *) Handle APR_ENOTIMPL returned from apr_sendfile in the core
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt filter. Useful for supporting Windows 9* with a binary
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt compiled on Windows NT.
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt [Bill Stoddard]
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan HuntChanges with Apache 2.0a7
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt *) Reimplement core_output_filter to buffer/save bucket brigades
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt across multiple calls to the core_filter. The brigade will be
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt sent when either MIN_BYTES_TO_SEND or MAX_IOVEC_TO_WRITE
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt thresholds are hit or the EOS bucket is received.
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt [Bill Stoddard]
3a30493983df83a3184dd1ecd39cf31ccdac3badEvan Hunt
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews *) Create experimental filter (buffer_filter) that coalesces bytes
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews into one large buffer before invoking the next filter in the
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews chain. This filter is particularly useful with the current
620508359f9bb21cd5df7fdf2e6f4677903fb539Mark Andrews implementation of mod_autoindex when it inserted above the
d36ba0f0caa64111a9a3236944f730dfb3fe5245Mark Andrews chunk_filter. mod_autoindex generates a lot of brigades that
d36ba0f0caa64111a9a3236944f730dfb3fe5245Mark Andrews containing buckets holding just a few bytes each. The
d36ba0f0caa64111a9a3236944f730dfb3fe5245Mark Andrews buffer_filter coalesces these buckets into a single large bucket.
ca42dcc0686fefd3db202edab80e5adb09d6add5Evan Hunt [Bill Stoddard]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
ca42dcc0686fefd3db202edab80e5adb09d6add5Evan Hunt *) Add apr_sendfile() support into the core_output_filter.
ca42dcc0686fefd3db202edab80e5adb09d6add5Evan Hunt [Bill Stoddard]
b3ea72e4d1c78791b807f03ea5c26e1b762d701fMark Andrews
b3ea72e4d1c78791b807f03ea5c26e1b762d701fMark Andrews *) Add apr_sendv() support into the core_output_filter.
dfa3ca995c99e66ab56e98da79e386bcdb23c43aMark Andrews [Bill Stoddard]
05c162292ff0db1cc65f6e5bd9052a65089ec5c3Mark Andrews
98b2be76fc57a337534cda07a5ce20a41b8793adMark Andrews *) Fix mod_log_config so that it compiles cleanly with BUFFERED_LOGS
98b2be76fc57a337534cda07a5ce20a41b8793adMark Andrews [Mike Abbott <mja@sgi.com>]
05c162292ff0db1cc65f6e5bd9052a65089ec5c3Mark Andrews
05c162292ff0db1cc65f6e5bd9052a65089ec5c3Mark Andrews *) Remove ap_send_fb. This is no longer used in Apache, and it doesn't
bfe0517fdcbe1dc62fee18e460ecf467dd491d9bEvan Hunt make much sense, because Apache uses buckets instead of BUFFs now.
bfe0517fdcbe1dc62fee18e460ecf467dd491d9bEvan Hunt [Ryan Bloom]
bfe0517fdcbe1dc62fee18e460ecf467dd491d9bEvan Hunt
bfe0517fdcbe1dc62fee18e460ecf467dd491d9bEvan Hunt *) send_the_file now falls back to a read/write loop on platforms that
bfe0517fdcbe1dc62fee18e460ecf467dd491d9bEvan Hunt do not have sendfile.
e4c6491bbf7ad131cf0a9ae839566b22e3632cddMark Andrews [Ryan Bloom and Brian Havard]
e4c6491bbf7ad131cf0a9ae839566b22e3632cddMark Andrews
e4c6491bbf7ad131cf0a9ae839566b22e3632cddMark Andrews *) Install apachectl correctly, and substitute the proper values so
e4c6491bbf7ad131cf0a9ae839566b22e3632cddMark Andrews that it works again. [Ryan Bloom]
549e34bbf4f3c5df10a8ff5b648ac6b6dbe98a0fMark Andrews
549e34bbf4f3c5df10a8ff5b648ac6b6dbe98a0fMark Andrews *) Better(??) handle platforms that lack sendfile().
499fa72075c050391b4d051f593d295670d27983Mark Andrews [Jim Jagielski]
967a70944d6b1902d30919baa1c4f6faf77bbfaeMark Andrews
967a70944d6b1902d30919baa1c4f6faf77bbfaeMark Andrews *) APR now has UUID generation/formatting/parsing support.
967a70944d6b1902d30919baa1c4f6faf77bbfaeMark Andrews [Greg Stein]
00c8156b24a3a80edf855190eabb8ac14ce9cc9cJeremy Reed
3464fafb9ff13e3212c568b645194bf138504fe6Jeremy Reed *) Begin the http_filter. This is an input filter that understands
3464fafb9ff13e3212c568b645194bf138504fe6Jeremy Reed the absolute basic amount required to parse an HTTP Request. The
4bf9fe787e9cb3085391a0560c36726eda9ac2d1Mark Andrews goal is to be able to split headers from request body before passing
6db1357c34f26079dc2516b02d712df228e3db99Jeremy Reed the data back to the other filters.
4bf9fe787e9cb3085391a0560c36726eda9ac2d1Mark Andrews [Ryan Bloom]
0f39e477c54929f3da65b083b4e3c8500ac8152eMark Andrews
52dec6996a1f305200211ff44bddf4cbb2edbb46Mark Andrews *) Bring forward from 1.3.13 the config directory implementation
52dec6996a1f305200211ff44bddf4cbb2edbb46Mark Andrews [Jim Jagielski]
52dec6996a1f305200211ff44bddf4cbb2edbb46Mark Andrews
8f196ee82b5465d2060de279f68535076ddbad64Mark Andrews *) install apxs if it is created
8f196ee82b5465d2060de279f68535076ddbad64Mark Andrews [Ryan Bloom]
8f196ee82b5465d2060de279f68535076ddbad64Mark Andrews
8f196ee82b5465d2060de279f68535076ddbad64Mark Andrews *) Added APR_IS_STATUS_condition test macros to eliminate canonical error
56907aff69cabc391e672d360c88cb1856a839efMark Andrews conversions. [William Rowe]
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews *) Now that we have ap_add_input_filter(), rename ap_add_filter() to
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews ap_add_output_filter(). [Jeff Trawick]
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews *) Multiple build and configuration fixes
e502b133d630bda0ee64c1e2ce6729d96750d8abMark Andrews Build process:
56907aff69cabc391e672d360c88cb1856a839efMark Andrews
598da901aba066208ab57ef5a44661f00f6c7dc6Mark Andrews -add datadir and localstatedir substitutions
598da901aba066208ab57ef5a44661f00f6c7dc6Mark Andrews -fix layout name
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews -fix logfilename misspelling
56907aff69cabc391e672d360c88cb1856a839efMark Andrews -fix evaluation of installation dir variables and
cac4576405a48a84f3c4d5de0ffa28a865a13309Mark Andrews -replace $foobar by $(foobar) to be usefull in the makefile
cac4576405a48a84f3c4d5de0ffa28a865a13309Mark Andrews
7d211b458fed36326b9e125b9d74089f9dccc140Mark Andrews Cross compile:
7d211b458fed36326b9e125b9d74089f9dccc140Mark Andrews
7d211b458fed36326b9e125b9d74089f9dccc140Mark Andrews -add rules for cross-compiling in rules.mk. Okay, rule to check for
d2ef5b3c5c8e08694f8f755cf2f14f8ec2f248a6Mark Andrews $CC_FOR_BUILD is still missing
d2ef5b3c5c8e08694f8f755cf2f14f8ec2f248a6Mark Andrews -use CHECK_TOOL instead of CHECK_PROG for ranlib
45c3c12ed3415e5cce50d73a735034e32aed1f73Mark Andrews -add missing "AR=@AR@" to severaly Makefile.in's
45c3c12ed3415e5cce50d73a735034e32aed1f73Mark Andrews -cache result for "struct rlimit"
45c3c12ed3415e5cce50d73a735034e32aed1f73Mark Andrews -compile all helper programs with native and cross compiler
692ce6c31351481644ce6167cb66edaff68cd493Mark Andrews and use the native version to generate header file
692ce6c31351481644ce6167cb66edaff68cd493Mark Andrews ["R�diger" Kuhlmann <Tadu@gmx.de>]
0807f596b58e22dd123539d0a351ef061c5eaae4Mark Andrews
0807f596b58e22dd123539d0a351ef061c5eaae4Mark Andrews *) Prepare our autoconf setup for autoconf 2.14a and for cross-
0807f596b58e22dd123539d0a351ef061c5eaae4Mark Andrews compiling.
6cf047f100e35ef9ea0dc1aed3f05cd3c4ee3c3dMark Andrews ["R�diger" Kuhlmann <Tadu@gmx.de>]
6cf047f100e35ef9ea0dc1aed3f05cd3c4ee3c3dMark Andrews
6cf047f100e35ef9ea0dc1aed3f05cd3c4ee3c3dMark Andrews *) Fix a bug where a client which only sends \n to delimit header
b663e99af61e032273bdffa2f8d26de539ae6930Mark Andrews lines (netcat) gets a strange looking HTTP_NOT_IMPLEMENTED
b663e99af61e032273bdffa2f8d26de539ae6930Mark Andrews message. Start working on ebcdic co-existance with input
77d90dc2b51e672111be97e7920862c97f446c4dTatuya JINMEI 神明達哉 filtering.
77d90dc2b51e672111be97e7920862c97f446c4dTatuya JINMEI 神明達哉 [William Rowe, Greg Ames]
77d90dc2b51e672111be97e7920862c97f446c4dTatuya JINMEI 神明達哉
77d90dc2b51e672111be97e7920862c97f446c4dTatuya JINMEI 神明達哉 *) If mod_so is enabled in the server always create libexec, even
77d90dc2b51e672111be97e7920862c97f446c4dTatuya JINMEI 神明達哉 if there are no modules installed in this directory. This is a
7558bd3e3824fb2ae349b8ab80f73d17d3ef5a77Francis Dupont requirement for APXS to work correctly.
7558bd3e3824fb2ae349b8ab80f73d17d3ef5a77Francis Dupont [Ryan Bloom]
7558bd3e3824fb2ae349b8ab80f73d17d3ef5a77Francis Dupont
7558bd3e3824fb2ae349b8ab80f73d17d3ef5a77Francis Dupont *) Connection oriented output filters are now stored in the
334a4fd338d36a8310560a4c193d7af52bc69ce4Jeremy Reed conn_rec instead of the request_rec. This allows us to add the
334a4fd338d36a8310560a4c193d7af52bc69ce4Jeremy Reed output filter in the pre-connection phase instead of the
334a4fd338d36a8310560a4c193d7af52bc69ce4Jeremy Reed post_read_request phase, which keeps us from trying to write an
5d0984f4fd3133c869b0736adb5291e6fca34a0cTatuya JINMEI 神明達哉 error page before we have a filter to write to the network.
5d0984f4fd3133c869b0736adb5291e6fca34a0cTatuya JINMEI 神明達哉 [Ryan Bloom, Jeff Trawick, and Greg Ames]
c349441d7e47a30e81726967b2398289225ebd45Mark Andrews
c349441d7e47a30e81726967b2398289225ebd45Mark Andrews *) Cleaning up an mmap bucket no longer deletes the mmap. An
46af69f1239553d4a1c315f6eee51379828942f9Mark Andrews mmap can be used across multiple buckets (default_handler with
70f292a50f9840fc25b3dbecfed71cdf835d4094Mark Andrews byte ranges, mod_file_cache, mod_mmap_static), so cleanup of
f19e6ef1eb7d5abf547fc1af24e561bdc5d75b22Mark Andrews the mmap itself can't be associated with the bucket.
f19e6ef1eb7d5abf547fc1af24e561bdc5d75b22Mark Andrews [Jeff Trawick]
f19e6ef1eb7d5abf547fc1af24e561bdc5d75b22Mark Andrews
53cd44e7168acb379b1c5c74b3ffc4336694779dMark Andrews *) Add .dll caching directive ISAPICacheFile to mod_isapi.
53cd44e7168acb379b1c5c74b3ffc4336694779dMark Andrews [William Rowe]
e80b69327290953b825c7778d8de9d314bed6198Mark Andrews
e80b69327290953b825c7778d8de9d314bed6198Mark Andrews *) Radical surgery to improve mod_isapi support under Win32.
e80b69327290953b825c7778d8de9d314bed6198Mark Andrews Includes a number of newer ServerSupportFunction calls, support
c82bb6a709abe89c051485b49403ef5bad1b756cTatuya JINMEI 神明達哉 for ReadClient (in order to retrieve POSTs greater than 48KB),
c82bb6a709abe89c051485b49403ef5bad1b756cTatuya JINMEI 神明達哉 and general bug fixes to more reliably load ISAPI .dll's and
c82bb6a709abe89c051485b49403ef5bad1b756cTatuya JINMEI 神明達哉 prevent leaking handle resources. Note: There are still
c82bb6a709abe89c051485b49403ef5bad1b756cTatuya JINMEI 神明達哉 discrepancies between IIS's and Apache's ServerVariables, and
d9059b0c38bd630c367d81424d72b1308cd74b04Tatuya JINMEI 神明達哉 async calls are still not supported. Additional warnings are
f895c5b042cc0f7e3547fac7f6a4bd8d3d45acd8Tatuya JINMEI 神明達哉 logged to facilitate debugging of unsupported ISAPI calls.
d9059b0c38bd630c367d81424d72b1308cd74b04Tatuya JINMEI 神明達哉 [William Rowe]
f148f53794956f491f6527430a93c2c8d884a212Mark Andrews
f148f53794956f491f6527430a93c2c8d884a212Mark Andrews *) Add input filtering to Apache. The basic idea for the input
f148f53794956f491f6527430a93c2c8d884a212Mark Andrews filters is the same as the ideas for output filters. The biggest
e8a534049cea42ecf07113e88645cea2bd12d850Mark Andrews difference is that instead of calling ap_pass_brigade, ap_get_brigade
00f83773169d9020a3ddcdaf88b198a27f571ff8Mark Andrews should be called, and the order of execution for the filter itself is
31b7a2fed64e388db772a74742a4adc95d1a21e6Mark Andrews different. When writing an output filter, a brigade is passed in,
10e8f96abe072fcf4e0c938548f0970cd26f624cMark Andrews and filters operate directly on that brigade, when done, they call
31b7a2fed64e388db772a74742a4adc95d1a21e6Mark Andrews ap_pass_brigade. Input filters are the exact opposite. Because input
31b7a2fed64e388db772a74742a4adc95d1a21e6Mark Andrews is not a push operation, filters first call ap_get_brigade. When this
5567f54834089be35d0df6afe2ccfaa039ab2233Jeremy Reed function returns, the input filter will be left with a valid brigade.
5567f54834089be35d0df6afe2ccfaa039ab2233Jeremy Reed The input filter should then operate on the brigade, and return.
ed4efb08050b31571c6b9540a2b78b502c667206Mark Andrews [Ryan Bloom]
ed4efb08050b31571c6b9540a2b78b502c667206Mark Andrews
ed4efb08050b31571c6b9540a2b78b502c667206Mark Andrews *) Fix building on BSD/OS using its native make. The build system
13f4bdc9b4f7b438cf5c2a071f108211534fae3fMark Andrews falls back to the BSD .include directive on that host platform.
13f4bdc9b4f7b438cf5c2a071f108211534fae3fMark Andrews [Sascha Schumann]
3efa3f07d51793a0e477d68787c210746b5d4af3Mark Andrews
3efa3f07d51793a0e477d68787c210746b5d4af3Mark Andrews *) Expand dbmmanage to allow -d -m -s -p options for Crypt, MD5,
3efa3f07d51793a0e477d68787c210746b5d4af3Mark Andrews SHA1 and plaintext password encodings. Make feature tests a
914eeb33149a0008e26741d9e7d89dcd6f8b6d0bMark Andrews bit more flexible. [William Rowe]
914eeb33149a0008e26741d9e7d89dcd6f8b6d0bMark Andrews
914eeb33149a0008e26741d9e7d89dcd6f8b6d0bMark Andrews *) Charset translation: mod_charset_lite handles output content
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews translation in a filter. mod_charset_lite no longer ignores
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews subrequests. A bunch of cruft related to BUFF's support for
a8673c536b5827d87ef6c50a04afd34af2253fd9Evan Hunt translating request and response bodies was removed.
616b4544d0228604b1c5169b0c9d742f67567232Tatuya JINMEI 神明達哉 [Jeff Trawick]
616b4544d0228604b1c5169b0c9d742f67567232Tatuya JINMEI 神明達哉
7781f25078c491a9650dec555bdc86cb0ed49861Tatuya JINMEI 神明達哉 *) Move the addition of the CORE filter to the post_read_request
7781f25078c491a9650dec555bdc86cb0ed49861Tatuya JINMEI 神明達哉 hook in http_core.c. This removes the need to add the filter in
bc4bc3579b92f2e4c6a6a2c5284d1c792c70e264Tatuya JINMEI 神明達哉 multiple places and allows for an SSL module to be added much
bc4bc3579b92f2e4c6a6a2c5284d1c792c70e264Tatuya JINMEI 神明達哉 simpler. [Ryan Bloom]
7781f25078c491a9650dec555bdc86cb0ed49861Tatuya JINMEI 神明達哉
609f86163a9e80aa5ce0db79b67ee0b6e2a34b34Tatuya JINMEI 神明達哉 *) Fix a security problem that affects certain configurations of
609f86163a9e80aa5ce0db79b67ee0b6e2a34b34Tatuya JINMEI 神明達哉 mod_rewrite. If the result of a RewriteRule is a filename that
609f86163a9e80aa5ce0db79b67ee0b6e2a34b34Tatuya JINMEI 神明達哉 contains expansion specifiers, especially regexp backreferences
609f86163a9e80aa5ce0db79b67ee0b6e2a34b34Tatuya JINMEI 神明達哉 $0..$9 and %0..%9, then it may be possible for an attacker to
1879dbe0d962f6f929417b02bf07f64ed41b1aabFrancis Dupont access any file on the web server. [Tony Finch]
1879dbe0d962f6f929417b02bf07f64ed41b1aabFrancis Dupont
b393e55a763d2bb0f326706b3851a2a22fc389d5Francis Dupont *) Fix a bug where errors that are detected during early request parsing
b393e55a763d2bb0f326706b3851a2a22fc389d5Francis Dupont don't produce visible HTTP error messages at the browser, because
b393e55a763d2bb0f326706b3851a2a22fc389d5Francis Dupont the core_filter wasn't present. [Greg Ames]
fa7ef31685393f7c7ba1cec485d8e395bfa28867Francis Dupont
52cee51063613b9be335d3078f13863fd0cad2cfMark Andrews *) Provide apr_socklen_t as a portability aid.
ddb35cf2f301ae1c3fa601792034f6d349efc8c5Mark Andrews [Victor J. Orlikowski]
ddb35cf2f301ae1c3fa601792034f6d349efc8c5Mark Andrews
4aa174ddd5556f6c1792c69546679b17f1ceec83Tatuya JINMEI 神明達哉 *) Overhaul of dbmmanage to allow a groups arg (as in Apache 1.2)
4aa174ddd5556f6c1792c69546679b17f1ceec83Tatuya JINMEI 神明達哉 as well as a comment arg to the add, adduser and update cmds.
4aa174ddd5556f6c1792c69546679b17f1ceec83Tatuya JINMEI 神明達哉 update allows the user to clear or preserve pw/groups/comment.
09d7358c48bb032566e5bb70703c2c3ea35a0cb2Mark Andrews Fixed a bug in dbmmanage that prevented the check option from
10a6f640ed599cbe4a8b98c46b71a61d24e5bbe7Tatuya JINMEI 神明達哉 parsing a password followed by :group... text. Corrected the
10a6f640ed599cbe4a8b98c46b71a61d24e5bbe7Tatuya JINMEI 神明達哉 seed calcualation for Win32 systems, and added -lsdbm support.
10a6f640ed599cbe4a8b98c46b71a61d24e5bbe7Tatuya JINMEI 神明達哉 [William Rowe]
10a6f640ed599cbe4a8b98c46b71a61d24e5bbe7Tatuya JINMEI 神明達哉
1ee054ca444765a3d1b98208c83115b4f34bebc2Mark Andrews *) Configured mod_auth_dbm to compile with sdbmlib under Win32.
1ee054ca444765a3d1b98208c83115b4f34bebc2Mark Andrews [William Rowe]
1ee054ca444765a3d1b98208c83115b4f34bebc2Mark Andrews
7f658603910358db7ee27ffb9783096250afab62Tatuya JINMEI 神明達哉 *) Avoid a segfault when parsing .htaccess files. An
858cc1200ebeee2d759e8be2c6b715676f992bb2Mark Andrews uninitialized tree pointer was passed to ap_build_config().
7f658603910358db7ee27ffb9783096250afab62Tatuya JINMEI 神明達哉 [Jeff Trawick]
7f658603910358db7ee27ffb9783096250afab62Tatuya JINMEI 神明達哉
cb30636abd508693d0095e1956c9d91f87513a51Tatuya JINMEI 神明達哉 *) Change the way that inet_addr & inet_network are checked for
cb30636abd508693d0095e1956c9d91f87513a51Tatuya JINMEI 神明達哉 in APR's configure process to allow BeOS BONE to correctly
cb30636abd508693d0095e1956c9d91f87513a51Tatuya JINMEI 神明達哉 find them. With this change BeOS BONE now builds from source
8bf0c05627a8175750f941db30e9df2c699aa90aMark Andrews with no problems. [David Reid]
8bf0c05627a8175750f941db30e9df2c699aa90aMark Andrews
8bf0c05627a8175750f941db30e9df2c699aa90aMark Andrews *) Fix a bug in apr_create_process() for Unix. The NULL signifying
96465858fa1165860353dfdd4d5db348388d191eTatuya JINMEI 神明達哉 the end of the parameters to execve() was stored in the wrong
10a6f640ed599cbe4a8b98c46b71a61d24e5bbe7Tatuya JINMEI 神明達哉 location, overlaying the storage beyond the newargs[] array and
96465858fa1165860353dfdd4d5db348388d191eTatuya JINMEI 神明達哉 also passing uninitialized storage to execve(), which would
96465858fa1165860353dfdd4d5db348388d191eTatuya JINMEI 神明達哉 sometimes fail with EFAULT. [Jeff Trawick]
96465858fa1165860353dfdd4d5db348388d191eTatuya JINMEI 神明達哉
24450ad58d545e165c051fff24b320118fc00350Mark Andrews *) Fix a bug parsing configuration file containers. With a sequence
47d89fcd4fb850b066f87dc3313afe1cfe92cd99Mark Andrews like this in the config file
47d89fcd4fb850b066f87dc3313afe1cfe92cd99Mark Andrews
47d89fcd4fb850b066f87dc3313afe1cfe92cd99Mark Andrews <IfModule mod_kilroy.c>
a5746c4ec14e5dbcb6a2431aa86cc86c21387e6bMark Andrews any stuff
a5746c4ec14e5dbcb6a2431aa86cc86c21387e6bMark Andrews </IfModule>
a5746c4ec14e5dbcb6a2431aa86cc86c21387e6bMark Andrews <IfModule mod_lovejoy.c>
b06e03490604f5d9b590dad143e65d533918481bMark Andrews (blank line)
b06e03490604f5d9b590dad143e65d533918481bMark Andrews any stuff
8684cd3a6f1437a3c1ff6ca852e1db6d40ce6303Mark Andrews </IfModule>
92241b04f16e1095a53f2c75e7987381dd0773afMark Andrews
92241b04f16e1095a53f2c75e7987381dd0773afMark Andrews the second container would be terminated at the blank line due to
92241b04f16e1095a53f2c75e7987381dd0773afMark Andrews sediment in the buffer from reading the prior </IfModule> and an
43c68170fe528dfbe153e5813049f129e12d0620Tatuya JINMEI 神明達哉 error message would be generated for the real </IfModule> for the
43c68170fe528dfbe153e5813049f129e12d0620Tatuya JINMEI 神明達哉 second container. Also due to this problem, any two characters
69f0cf898e3ca5c701fb34d7074cc9897d71f4a0Mark Andrews could be used for "</" in the close of a container.
69f0cf898e3ca5c701fb34d7074cc9897d71f4a0Mark Andrews [Jeff Trawick]
69f0cf898e3ca5c701fb34d7074cc9897d71f4a0Mark Andrews
69f0cf898e3ca5c701fb34d7074cc9897d71f4a0Mark Andrews *) ap_add_filter prototype changed to remove the ctx pointer. The
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews pointer still remains in the filter structure, but it can not be
9908cbc06f89c8d44f092708a43ae3a6e7a4416cMark Andrews a part of the ap_add_filter prototype. The reason is that when
9908cbc06f89c8d44f092708a43ae3a6e7a4416cMark Andrews the core uses AddFilter to add a filter to the stack it doesn't
2e61d171bc1fa47ea4d551b87546ebcf78f61e4aMark Andrews know how to allocate the ctx pointer, or even how much memory should
2e61d171bc1fa47ea4d551b87546ebcf78f61e4aMark Andrews be allocated. The filters will have to be responsible for allocating
2e61d171bc1fa47ea4d551b87546ebcf78f61e4aMark Andrews the ctx memory when they need it.
d8fc8514b117e636b791bef429d64a7c7a75a4cfMark Andrews [Ryan Bloom]
d8fc8514b117e636b791bef429d64a7c7a75a4cfMark Andrews
9935447b51456f598b45246d0114b8006049244dMark Andrews *) Add an AddFilter directive. This directive takes a list of filters
9935447b51456f598b45246d0114b8006049244dMark Andrews that should be activated for the requested resource.
9935447b51456f598b45246d0114b8006049244dMark Andrews [Ryan Bloom]
175a8bd2b798bbc568cd912b72c8a026cfca8527Mark Andrews
175a8bd2b798bbc568cd912b72c8a026cfca8527Mark Andrews *) apr_snprintf(): Get quad format strings working on OS/390 (and perhaps
175a8bd2b798bbc568cd912b72c8a026cfca8527Mark Andrews some other platforms). [Jeff Trawick]
46018d5d233cffdea765b3298ac8153c77b26383Mark Andrews
46018d5d233cffdea765b3298ac8153c77b26383Mark Andrews *) Modify mod_include to be a filter. Currently, it has only been tested
46018d5d233cffdea765b3298ac8153c77b26383Mark Andrews on actual files, but it should work for CGI scripts too.
46018d5d233cffdea765b3298ac8153c77b26383Mark Andrews [Ryan Bloom]
4e59e2e59b17c4e30eef801929bca91800be833eFrancis Dupont
47d9a2bec1fee2f6c7a9cee3ca922140840223eeMark Andrews *) apr_putc(), apr_puts() for Unix: handle buffered files and interrupted
47d9a2bec1fee2f6c7a9cee3ca922140840223eeMark Andrews writes. apr_flush() for Unix: handle interrupted writes.
9019569316e39087410336bb76c02bf185974fe3Mark Andrews [Jeff Trawick]
9019569316e39087410336bb76c02bf185974fe3Mark Andrews
ac4b736ab20cc1098448028c4ae3db7a50e96123Mark Andrews *) NameVirtualHost can now take "*" as an argument instead of
ac4b736ab20cc1098448028c4ae3db7a50e96123Mark Andrews an IP address. This allows you to create a purely name-based
ac4b736ab20cc1098448028c4ae3db7a50e96123Mark Andrews virtual hosting server that does not have any IP addresses in
eb8265942b3019d34e365432314b63decc84728fTatuya JINMEI 神明達哉 the configuration file and which ignores the local address
eb8265942b3019d34e365432314b63decc84728fTatuya JINMEI 神明達哉 of any connections. PR #5595, PR #4455 [Tony Finch]
eb8265942b3019d34e365432314b63decc84728fTatuya JINMEI 神明達哉
eb8265942b3019d34e365432314b63decc84728fTatuya JINMEI 神明達哉 *) Fix some compile warnings in mod_mmap_static.c
eb8265942b3019d34e365432314b63decc84728fTatuya JINMEI 神明達哉 [Mike Abbott <mja@sgi.com>]
e7ba4d8dc4559ff47f7f8298dad1469275ed0f1eMark Andrews
e7ba4d8dc4559ff47f7f8298dad1469275ed0f1eMark Andrews *) Fix chunking problem with CGI scripts. The general problem was that
e7ba4d8dc4559ff47f7f8298dad1469275ed0f1eMark Andrews the CGI modules were adding an EOS bucket and then the core added an
81e5de17419f2e6f80ce76c333159ca9feb67b8cMark Andrews EOS bucket. The chunking filter finalizes the chunked response when it
81e5de17419f2e6f80ce76c333159ca9feb67b8cMark Andrews encounters an EOS bucket. Because two EOS buckets were sent, we
50df1ec60af410fca6b7a85d5c85e8f31bb13bc3Mark Andrews finalized the response twice. The fix is to make sure we only send one
50df1ec60af410fca6b7a85d5c85e8f31bb13bc3Mark Andrews EOS, by utilizing a flag in the request_rec.
da2d57c8cf7e18c8ab1fbcc8e5f2001fb2f02cb1Mark Andrews [Ryan Bloom]
da2d57c8cf7e18c8ab1fbcc8e5f2001fb2f02cb1Mark Andrews
da2d57c8cf7e18c8ab1fbcc8e5f2001fb2f02cb1Mark Andrews *) apr_put_os_file() now sets up the unget byte appropriately on Unix
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed and Win32. Previously, the first read from an apr_file_t set up via
ef4eed2a2a8897bd4e5b19dd94f638e0861ebda5Mark Andrews apr_put_os_file() would return a '\0'. [Jeff Trawick]
ef4eed2a2a8897bd4e5b19dd94f638e0861ebda5Mark Andrews
d5be219ff773a91c839c660fee54f1df7448adfaMark Andrews *) Mod_cgid now creates a single element bucket brigade, with a pipe
7d89c53f6e8dcbac40334156aa999a13e6af189cMark Andrews bucket, instead of using BUFF's and ap_r*.
7d89c53f6e8dcbac40334156aa999a13e6af189cMark Andrews [Ryan Bloom]
7d89c53f6e8dcbac40334156aa999a13e6af189cMark Andrews
96b3cb85d3b06d99323a6ea7ae04f4eb3d74e8bcMark Andrews *) APRVARS.in no longer overwrites the EXTRA_LIBS variable.
96b3cb85d3b06d99323a6ea7ae04f4eb3d74e8bcMark Andrews [Mike Abbott <mja@sgi.com>]
96b3cb85d3b06d99323a6ea7ae04f4eb3d74e8bcMark Andrews
dc143a8f5cc8b2893f5b63077224f091f8c51862Mark Andrews *) Remove ap_bopenf from buff code. This required modifying the file_cache
dc143a8f5cc8b2893f5b63077224f091f8c51862Mark Andrews code to use APR file's directly instead of going through BUFFs.
dc143a8f5cc8b2893f5b63077224f091f8c51862Mark Andrews [Ryan Bloom]
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉 *) Fix compile break on some platforms for mod_mime_magic.c
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉 [John K. Sterling <sterling@covalent.net>]
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉 *) Fix merging of AddDefaultCharset directive.
f99fd90097c3260a14eca9ee5aa8c4c4d50ebca7Tatuya JINMEI 神明達哉 PR #5872 (1.3) [Jun Kuriyama <kuriyama@imgsrc.co.jp>]
582f8b9a8d170a80ef67475bddb8ad5cf7cd7cadMark Andrews
582f8b9a8d170a80ef67475bddb8ad5cf7cd7cadMark Andrews *) Minor revamp of the rlimit sections of code. We now test
582f8b9a8d170a80ef67475bddb8ad5cf7cd7cadMark Andrews explicitly for setrlimit and getrlimit. Also, unixd_set_rlimit()
09b45f7b5800c4dbb86846dea35e8aba0a25b0d0Mark Andrews is now "available" even if the platform doesn't support
09b45f7b5800c4dbb86846dea35e8aba0a25b0d0Mark Andrews the rlimit family (it's just a noop though). [Jim Jagielski]
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews *) Migrate the pre-selection of which MPM to use for specific
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews platforms to hints.m4, which contains (or should contain)
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews all platform specific "hints". [Jim Jagielski]
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews *) Remove IOLs from Apache. With filtering, IOLs are no longer necessary
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews [Ryan Bloom]
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews
f6f1672b4e460571c418e43ae3bd0fae97e4c149Mark Andrews *) Add tables with non-string/binary values to APR.
1f3e0508c2146b473838899429f44e72c52b32f4Mark Andrews [Ken Coar]
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed
1f3e0508c2146b473838899429f44e72c52b32f4Mark Andrews *) Fix some bad calls to ap_log_rerror() in mod_rewrite.
1f3e0508c2146b473838899429f44e72c52b32f4Mark Andrews [Jeff Trawick]
a14aff6984062f01b6d88f485f0a3f68d99fc174Mark Andrews
a14aff6984062f01b6d88f485f0a3f68d99fc174Mark Andrews *) Update PCRE to version 3.2. [Ryan Bloom]
a14aff6984062f01b6d88f485f0a3f68d99fc174Mark Andrews
a14aff6984062f01b6d88f485f0a3f68d99fc174Mark Andrews *) Change the way buckets' destroy functions are called so that
7b1a7a098b51381f06277860a40bd7f062c8ec19Francis Dupont they can be more directly used when changing the type of a
7b1a7a098b51381f06277860a40bd7f062c8ec19Francis Dupont bucket in place. [Tony Finch]
bc3b1dbd69840bd7f2f0b6af2610603f334b369bFrancis Dupont
bc3b1dbd69840bd7f2f0b6af2610603f334b369bFrancis Dupont *) Add generic support for reference-counting the resources used by
c19a57667e9b2ad12cc0df9a370fe0b8e87f0622Mark Andrews buckets, and alter the HEAP and MMAP buckets to use it. Change
c19a57667e9b2ad12cc0df9a370fe0b8e87f0622Mark Andrews the way buckets are initialised to support changing the type of
c19a57667e9b2ad12cc0df9a370fe0b8e87f0622Mark Andrews buckets in place, and use it when setting aside TRANSIENT buckets.
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark Andrews Change the implementation of TRANSIENT buckets so that it can be
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark Andrews mostly shared with IMMORTAL buckets, which are now implemented.
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark Andrews [Tony Finch]
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark Andrews
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark AndrewsChanges with Apache 2.0a6
736e6a6709b778d4d228441d9ac3b366e0dceb99Mark Andrews
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed *) Add support to Apache and APR for dsos on OS/390. [Greg Ames]
e597f9f376d79c8962f2373d4eb98a441e6c70caMark Andrews
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed *) Add a chunking filter to Apache. This brings us one step closer
d1ec77294eb543bbca128d8683bdf9680cbedb61Mark Andrews to removing BUFF. [Ryan Bloom]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
9d02618ca6b4d2e1737ba441449f61c1f04be685Mark Andrews *) ap_add_filter now adds filters in a LIFO fashion. The first filter
a21884ae7bec40b6fc2227ff112ecf5a7cffc4fdMark Andrews added to the stack is the last filter to be called. [Ryan Bloom]
a21884ae7bec40b6fc2227ff112ecf5a7cffc4fdMark Andrews
a21884ae7bec40b6fc2227ff112ecf5a7cffc4fdMark Andrews *) Apache 2.0 has been completely documented using Scandoc. The
d63cfbfbf947d08d67561f4bef3bf7b688dfcbfaJeremy Reed docs can be generated by running 'make docs'. [Ryan Bloom]
d63cfbfbf947d08d67561f4bef3bf7b688dfcbfaJeremy Reed
d63cfbfbf947d08d67561f4bef3bf7b688dfcbfaJeremy Reed *) Add filtered I/O to Apache. This is based on bucket brigades,
86ee7433b38bb023912a73d842bdcef3d4871a90Mark Andrews Currently the buckets still use BUFF under the covers, but that
275b170cc47c897d25204fe23169dac810283f79Mark Andrews should change quickly. The only currently written filter is the
86ee7433b38bb023912a73d842bdcef3d4871a90Mark Andrews core filter which just calls ap_bwrite. [The Apache Group]
06a230fe9fa2087a778ae0f199bda1b8fdd1e05cEvan Hunt
06a230fe9fa2087a778ae0f199bda1b8fdd1e05cEvan Hunt *) APR locks on Unix: Let APR_LOCKALL locks work when APR isn't
06a230fe9fa2087a778ae0f199bda1b8fdd1e05cEvan Hunt built with thread support. [Jeff Trawick]
6d54a6fc180acaf8772c9447cb925b31f39c7158Mark Andrews
6d54a6fc180acaf8772c9447cb925b31f39c7158Mark Andrews *) Abort configuration if --with-layout was specified and there's
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews no layout definition file. [Ken Coar]
6d54a6fc180acaf8772c9447cb925b31f39c7158Mark Andrews
6d54a6fc180acaf8772c9447cb925b31f39c7158Mark Andrews *) Add support for '--with-port=n' option to configure. [Ken Coar]
7ca0cdd7ecff4c0396970ed957df7d5d8c639abfMark Andrews
ee02a035c9dc50cac31424512e110ee16a45a693Mark Andrews *) Add support for extension methods for the Allow response header
7ca0cdd7ecff4c0396970ed957df7d5d8c639abfMark Andrews field, and an API routine for accessing r->allowed and the
275b170cc47c897d25204fe23169dac810283f79Mark Andrews list of extension methods in a unified manner. [Ken Coar]
455ada05af05e39cdeb63297d60d36a0eca062e1Mark Andrews
455ada05af05e39cdeb63297d60d36a0eca062e1Mark Andrews *) mod_cern_meta: fix broken file reading loop in scan_meta_file().
0d444dc136a1a8df89a329d7ad43c74e1db8dfbeMark Andrews [Rob Simonson <simo@us.ibm.com>]
ff30270d6ccc27a7ce45853eb5637b6d69d8a5ebMark Andrews
0d444dc136a1a8df89a329d7ad43c74e1db8dfbeMark Andrews *) Get xlate builds working again. The apr renaming in 2.0a5 broke
4e9775118dbf128dd296f01638733ba221f76c34Mark Andrews APACHE_XLATE builds. [Jeff Trawick]
4e9775118dbf128dd296f01638733ba221f76c34Mark Andrews
4e9775118dbf128dd296f01638733ba221f76c34Mark Andrews *) A configuration file parsing problem was fixed. When the
35378bcc6a6c95495e70bad92f245b6fa9c8292aTatuya JINMEI 神明達哉 configuration file started with an IfModule/IfDefine container,
35378bcc6a6c95495e70bad92f245b6fa9c8292aTatuya JINMEI 神明達哉 only the last statement in the container would be retained.
35378bcc6a6c95495e70bad92f245b6fa9c8292aTatuya JINMEI 神明達哉 [Jeff Trawick]
b05585dcfe270c40e309ff7304cf6b69d7390bdaTatuya JINMEI 神明達哉
b05585dcfe270c40e309ff7304cf6b69d7390bdaTatuya JINMEI 神明達哉Changes with Apache 2.0a5
1f030ca8a3df943d8016cac39bc3018f5952126aJeremy Reed
1f030ca8a3df943d8016cac39bc3018f5952126aJeremy Reed *) Perchild is serving pages after passing them to different child
1f030ca8a3df943d8016cac39bc3018f5952126aJeremy Reed processes. There are still a lot of bugs, but this does work. I
698a4dcc8ae5c2a62a254ab2aff7b16d52598cc0Mark Andrews have made requests against the same installation of Apache, and had
698a4dcc8ae5c2a62a254ab2aff7b16d52598cc0Mark Andrews different servers use different user IDs to serve the responses.
698a4dcc8ae5c2a62a254ab2aff7b16d52598cc0Mark Andrews This change moves to using socketpair instead of an AF_UNIX socket.
88674be66567d3c7db91e717cd5972655e2e2488Mark Andrews [Ryan Bloom]
88674be66567d3c7db91e717cd5972655e2e2488Mark Andrews
88674be66567d3c7db91e717cd5972655e2e2488Mark Andrews *) Perchild MPM still doesn't work perfectly, but it is serving pages.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews It can't seem to pass between child processes yet, but I think we
d7896edb4e93c4785a9281ea86afba86b758e813Mark Andrews are closer now than before. This moves us back to using Unix
d7896edb4e93c4785a9281ea86afba86b758e813Mark Andrews Domain Sockets. [Ryan Bloom]
1f3e0508c2146b473838899429f44e72c52b32f4Mark Andrews
1f3e0508c2146b473838899429f44e72c52b32f4Mark Andrews *) libapr functions and types renamed with apr_ prefix.
d7896edb4e93c4785a9281ea86afba86b758e813Mark Andrews #include "apr_compat.h" for 1.3.x backwards compat
d7896edb4e93c4785a9281ea86afba86b758e813Mark Andrews [Perl]
d7896edb4e93c4785a9281ea86afba86b758e813Mark Andrews
0db6bf459f7afa1f9dc0690a521df19955c89dbfJeremy Reed *) Fix problems with APR sockaddr handling on Win32. It didn't always
0db6bf459f7afa1f9dc0690a521df19955c89dbfJeremy Reed return the right information on the local socket address.
0db6bf459f7afa1f9dc0690a521df19955c89dbfJeremy Reed [Gregory Nicholls <gnicholls@level8.com>]
99a522dad7623549cd5e32a4968e6de8eca46ff1Mark Andrews
99a522dad7623549cd5e32a4968e6de8eca46ff1Mark Andrews *) ap_recv() on Win32: Set bytes-read to 0 on error.
b90d59882c3b0bbe5dafe27c51c274f0b5912f65Mark Andrews [Gregory Nicholls <gnicholls@level8.com>]
b90d59882c3b0bbe5dafe27c51c274f0b5912f65Mark Andrews
b90d59882c3b0bbe5dafe27c51c274f0b5912f65Mark Andrews *) Add an option to not detach from the controlling terminal without
b90d59882c3b0bbe5dafe27c51c274f0b5912f65Mark Andrews going into single process mode. This allows for much easier
b90d59882c3b0bbe5dafe27c51c274f0b5912f65Mark Andrews debugging of the process startup code. [Ryan Bloom]
cd6555930b6829ebce8bbf2adc7ba05111edf595Mark Andrews
cd6555930b6829ebce8bbf2adc7ba05111edf595Mark Andrews *) ab: don't use perror() to report the failure of an APR function.
369e148f307a322206a460f9fd470927bcc756d0Tatuya JINMEI 神明達哉 [Jeff Trawick]
369e148f307a322206a460f9fd470927bcc756d0Tatuya JINMEI 神明達哉
369e148f307a322206a460f9fd470927bcc756d0Tatuya JINMEI 神明達哉 *) Make dexter, mpmt_pthread, and perchild MPMs not destroy the
2be6798f93e7ba1f4c4082e7b0837c7668a06dcaTatuya JINMEI 神明達哉 scoreboard on graceful restarts.
2be6798f93e7ba1f4c4082e7b0837c7668a06dcaTatuya JINMEI 神明達哉 [Ryan Bloom]
c5ead8c25b6c1f51180ec6899c421fc9d074e6cbTatuya JINMEI 神明達哉
2be6798f93e7ba1f4c4082e7b0837c7668a06dcaTatuya JINMEI 神明達哉 *) Fix segfault/SIGSEGV when running gzip from mod_mime_magic.c.
b0bf1ad5b0b1d29b4cdf5de9789405aec5e0844cEvan Hunt An invalid ap_proc_t was passed to ap_create_process().
b0bf1ad5b0b1d29b4cdf5de9789405aec5e0844cEvan Hunt [Jeff Trawick]
b0bf1ad5b0b1d29b4cdf5de9789405aec5e0844cEvan Hunt
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Allow modules to register filters. Those filters are still
275b170cc47c897d25204fe23169dac810283f79Mark Andrews never called, but this is a step in the right direction.
eab4a5c29ddda688d975ad59a55a965b16534432Mark Andrews [Ryan Bloom and Greg Stein]
eab4a5c29ddda688d975ad59a55a965b16534432Mark Andrews
21d493fc392d472086ad3c7c4563b7cadcb06788Mark Andrews *) Register the mod_cgid daemon process for cleanup so that it is
21d493fc392d472086ad3c7c4563b7cadcb06788Mark Andrews killed at termination if it does not die when the parent gets
5737b74d34b1eab413f4a5734714bb176c5cc849Mark Andrews SIGTERM. This change is to fix occasional problems where the
5737b74d34b1eab413f4a5734714bb176c5cc849Mark Andrews process stays around. Bugs in similar logic in mod_rewrite and
5737b74d34b1eab413f4a5734714bb176c5cc849Mark Andrews mod_include were also fixed. [Jeff Trawick]
5737b74d34b1eab413f4a5734714bb176c5cc849Mark Andrews
5737b74d34b1eab413f4a5734714bb176c5cc849Mark Andrews *) Fix a bug in the time handling. Basically, we were imploding a time
19e4588ed76d6832be4de0813b6108a292ef413aMark Andrews in ap_parseHTTPdate, but it had bogus data in the exploded time format.
19e4588ed76d6832be4de0813b6108a292ef413aMark Andrews Namely, tm_usec and tm_gmtoff were not filled out. ap_implode_time
48a866144e3b14efa6c51af05ef7641b23c7516dJeremy Reed uses those two fields to adjust the time value. Because of the HTTP
48a866144e3b14efa6c51af05ef7641b23c7516dJeremy Reed spec, both of those values can be zero'ed out safely. This fixes
48a866144e3b14efa6c51af05ef7641b23c7516dJeremy Reed the bug correctly. [Ryan Bloom]
143852efc066b3e3cd16eeec679016adbd450474Mark Andrews
143852efc066b3e3cd16eeec679016adbd450474Mark Andrews *) Fix a couple of place in the Windows code where the wrong error
6098d364b690cb9dabf96e9664c4689c8559bd2eMark Andrews code was being returned. [Gregory Nicholls <gnicholls@level8.com>]
6098d364b690cb9dabf96e9664c4689c8559bd2eMark Andrews
275b170cc47c897d25204fe23169dac810283f79Mark Andrews *) Fix POOL_DEBUG (at least for prefork mpm). [Dean Gaudet]
11dbf2fc38eea8c5d3fe7123718bf197a8bb2e6bMark Andrews
eeaa2277ead6df7253a8958ee2d786f73e05b8beTatuya JINMEI 神明達哉 *) Added the APR_EOL_STR macro for platform dependent differences in
eeaa2277ead6df7253a8958ee2d786f73e05b8beTatuya JINMEI 神明達哉 logfiles and other raw text (such as all APR files). Fixes logfiles
eeaa2277ead6df7253a8958ee2d786f73e05b8beTatuya JINMEI 神明達哉 not terminated with cr/lf sequences in Win32. [William Rowe]
eeaa2277ead6df7253a8958ee2d786f73e05b8beTatuya JINMEI 神明達哉
cfef3799266c3955a3e19df5794b7994d4dd7bdbMark Andrews *) Move all strings functions in APR to src/lib/apr/strings and create
cfef3799266c3955a3e19df5794b7994d4dd7bdbMark Andrews apr_strings.h for the prototypes. [Ryan Bloom]
cfef3799266c3955a3e19df5794b7994d4dd7bdbMark Andrews
cfef3799266c3955a3e19df5794b7994d4dd7bdbMark Andrews *) APR lock fixes: when using SysV sems, flock(), or fcntl(), be sure
ce688d65947a05561509aef48c8c240130d443eaMark Andrews to repeat the syscall until we stop getting EINTR. I noticed a
c6c09f77f85860b6e084b0daad066ded08729b3eMark Andrews related problem at termination (SIGTERM) on FreeBSD when using
c6c09f77f85860b6e084b0daad066ded08729b3eMark Andrews fcntl(). Apache 1.3 had these new loops too. Also, make the flock()
467e6fd1672fb35968f522e1ef11a7e2e0cb701eMichael Graff implementation work properly with child init. Previously, ap_lock()
467e6fd1672fb35968f522e1ef11a7e2e0cb701eMichael Graff was essentially a no-op because all children were using different
467e6fd1672fb35968f522e1ef11a7e2e0cb701eMichael Graff locks and thus nobody ever blocked. [Jeff Trawick]
467e6fd1672fb35968f522e1ef11a7e2e0cb701eMichael Graff
467e6fd1672fb35968f522e1ef11a7e2e0cb701eMichael Graff *) The htdocs/ tree has been moved out of the CVS source tree into
896f88361ec8a15a20688eb533a65977ee698974Mark Andrews a separate area for easier development. This has NO EFFECT on
896f88361ec8a15a20688eb533a65977ee698974Mark Andrews end-users or Apache installations. [Ken Coar]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt *) Integrate the mod_dav module for WebDAV protocol handling. This
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt adds the dav and dav_fs modules, the SDBM library, and additional
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt XML handling utilities. [Greg Stein]
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt *) Clean out obsolete names (from httpd.h) for the HTTP Status Codes
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt [Greg Stein]
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt *) Update the lib/expat-lite/ library (bring forward changes from
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews the Apache 1.3 repository). [Greg Stein]
8760bb9e0c48dad3765571b6e1ce193548fc5e37Evan Hunt
593bb6464621c50ceec0e5550045f4b405558548Evan Hunt *) If sizeof(long long) == sizeof(long), then prefer long in APR
593bb6464621c50ceec0e5550045f4b405558548Evan Hunt configure.in. [Dave Hill <ddhill@zk3.dec.com>]
593bb6464621c50ceec0e5550045f4b405558548Evan Hunt
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews *) Add ap_sendfile for Tru64 Unix. Also, add an error message for
b247f77228f00e16dd43b4d570ad0fb15e88f3edMark Andrews machines where sendfile is detected, but nobody has written ap_sendfile.
aeadcd63196f164b219629a53c0e0925519288f3Evan Hunt [Dave Hill <ddhill@zk3.dec.com>]
aeadcd63196f164b219629a53c0e0925519288f3Evan Hunt
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews *) Compile fixes in mod_mmap_static. [Victor J. Orlikowski]
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews
baeed3c40fc0a2f30ef399899e16ded472f04c06Evan Hunt *) ab would start up more connections than needed, then quit when the
f5662f41e73c27cc6e7fd29323c8dddf54dff982Mark Andrews desired number were finished. Also fixed a logic error involving
f5662f41e73c27cc6e7fd29323c8dddf54dff982Mark Andrews ab keepalives. [Victor J. Orlikowski]
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews *) WinNT: Implement non-blocking pipes with timeouts to communicate
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews with CGIs. Apache 2.0a4 had non-blocking pipes but without
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews timeouts (i.e, if a timeout was specified, the pipe reverted to
275b170cc47c897d25204fe23169dac810283f79Mark Andrews a full blocking pipe). Now the behaviour is more in line with
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews Unix non-blocking pipes.
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews [Bill Stoddard]
36440d1ec6cf1ff0cbb0b5b2fb39423e4e0bd450Evan Hunt
470212919fb8a92cd7eb621e981905348eb73ccaMark Andrews *) WinNT: Implement accept socket reuse. Using mod_file_cache to
470212919fb8a92cd7eb621e981905348eb73ccaMark Andrews cache open file handles along with accept socket reuse enables
e72c1e7e465822fc9b5067b2dd3cf047f6132214Mark Andrews Apache 2.0 to serve non-keepalive requests for static files at
e72c1e7e465822fc9b5067b2dd3cf047f6132214Mark Andrews 3x the rate of Apache 1.3.(e.g, Apache 1.3 will serve 400 rps
e72c1e7e465822fc9b5067b2dd3cf047f6132214Mark Andrews and Apache 2.0 will serve almost 1200 rps on my system).
e72c1e7e465822fc9b5067b2dd3cf047f6132214Mark Andrews [Bill Stoddard]
a8f6b2aa46f882c7c680b7bdab1dfb78a76787eaMark Andrews
a8f6b2aa46f882c7c680b7bdab1dfb78a76787eaMark Andrews *) Merge mod_mmap_static function into mod_file_cache. mod_file_cache
a8f6b2aa46f882c7c680b7bdab1dfb78a76787eaMark Andrews supports two config directives, mmapfile (same behavious as
c6a1797aff73b707b4b7a71fdaa303136953d2a3Mark Andrews mod_mmap_static) and cachefile. Use the cachefile directive
c6a1797aff73b707b4b7a71fdaa303136953d2a3Mark Andrews to cache open file handles. This directive only works on systems
c6a1797aff73b707b4b7a71fdaa303136953d2a3Mark Andrews that have implemented the ap_sendfile API. cachefile works today
1e0209137159d4e16e4459cc8e804d657aad1af1Mark Andrews on Windows NT, but has not been tested on any flavors of Unix.
1e0209137159d4e16e4459cc8e804d657aad1af1Mark Andrews [Bill Stoddard]
1e0209137159d4e16e4459cc8e804d657aad1af1Mark Andrews
5e3f390f057801d245680b07dc2b2d64939183d4Mark Andrews *) Cleanup the configuration. With the last few changes the
275b170cc47c897d25204fe23169dac810283f79Mark Andrews configuration process automatically:
5e3f390f057801d245680b07dc2b2d64939183d4Mark Andrews inherits information about how to build from APR. Allowing
5e3f390f057801d245680b07dc2b2d64939183d4Mark Andrews APR to inform Apache that it should or should not use -ldl
ebacb7908afe3d62fe341f7ef9efed63d0c651a2Tatuya JINMEI 神明達哉
ebacb7908afe3d62fe341f7ef9efed63d0c651a2Tatuya JINMEI 神明達哉 Detects which mod_cgi should be used mod_cgi or mod_cgid,
ebacb7908afe3d62fe341f7ef9efed63d0c651a2Tatuya JINMEI 神明達哉 based on the threading model
3dfa202e4fea6b985bcf8761e2d11c176baa40d1Mark Andrews
3dfa202e4fea6b985bcf8761e2d11c176baa40d1Mark Andrews Apache calls APR's configure process before finishing it's
3dfa202e4fea6b985bcf8761e2d11c176baa40d1Mark Andrews configuration processing, allowing for more information flow
3dfa202e4fea6b985bcf8761e2d11c176baa40d1Mark Andrews between the two.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Ryan Bloom]
5ce9206eb95c2b818a7f863dd26d9b7a2c3d9261Evan Hunt
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt *) Change Unix and Win32 ap_setsockopt() so that APR_SO_NONBLOCK
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt with non-zero argument makes the socket non-blocking. BeOS and
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt OS/2 already worked this way. [Jeff Trawick]
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt *) ap_close() now calls ap_flush() for buffered files, so write
1bfe8851c0a2eb1d7e15556bfa21291cd62ee2bcMark Andrews operations work a whole lot better on buffered files.
1bfe8851c0a2eb1d7e15556bfa21291cd62ee2bcMark Andrews [Jeff Trawick]
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt
13d9b8ce94aee267761cd297a583e280df262d60Tatuya JINMEI 神明達哉 *) Fix error messages issued from MPMs which explain where to change
13d9b8ce94aee267761cd297a583e280df262d60Tatuya JINMEI 神明達哉 compiled-in limits (e.g., ThreadsPerChild, MaxClients, StartTreads).
13d9b8ce94aee267761cd297a583e280df262d60Tatuya JINMEI 神明達哉 [Greg Ames]
13d9b8ce94aee267761cd297a583e280df262d60Tatuya JINMEI 神明達哉
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews *) ap_create_pipe() now leaves pipes in blocking state. (This helps
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed reduce the number of syscalls on Unix.) ap_set_pipe_timeout() is
275b170cc47c897d25204fe23169dac810283f79Mark Andrews now the way that the blocking state of a pipe is manipulated.
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews ap_block_pipe() is gone. [Jeff Trawick]
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews
691f1f7731d175c7b2e21fbcc8d16a0c323e209aMark Andrews *) Correct the problem where the only local host name that the IP stack
a45f57a2d5fa5a4cb50c4232c09dd7676a256599Evan Hunt can discover are 'undotted' private names. If no fully qualified
2f420f33bbd5a84eee03b5f9b608e79acf06cb29Mark Andrews domain name can be identified, the default ServerName will be set to
2f420f33bbd5a84eee03b5f9b608e79acf06cb29Mark Andrews the machine's IP address string. A warning is always provided if the
2f420f33bbd5a84eee03b5f9b608e79acf06cb29Mark Andrews ServerName not specified, but assumed. Solves PR6215 [William Rowe]
2f420f33bbd5a84eee03b5f9b608e79acf06cb29Mark Andrews
b049b8ce6a70f13f8cc8e33bfb16e1871282f700Tatuya JINMEI 神明達哉 *) Repair problems with config file processing which caused segfault
b049b8ce6a70f13f8cc8e33bfb16e1871282f700Tatuya JINMEI 神明達哉 at init when virtual hosts were defined and which caused ServerName to
b049b8ce6a70f13f8cc8e33bfb16e1871282f700Tatuya JINMEI 神明達哉 be ignored when there was no valid DNS setup. [Jeff Trawick]
e2fe1fda755f24f593406dc26fed87e8ea1bb502Tatuya JINMEI 神明達哉
e2fe1fda755f24f593406dc26fed87e8ea1bb502Tatuya JINMEI 神明達哉 *) Removed pointless ap_is_aborted macro function. [Roy Fielding]
e2fe1fda755f24f593406dc26fed87e8ea1bb502Tatuya JINMEI 神明達哉
e2fe1fda755f24f593406dc26fed87e8ea1bb502Tatuya JINMEI 神明達哉 *) Add ap_sendfile implementation for AIX
cf225ed6cd51f9acc901a60520a9368e14224a4dTatuya JINMEI 神明達哉 [Victor J. Orlikowski]
cf225ed6cd51f9acc901a60520a9368e14224a4dTatuya JINMEI 神明達哉
cf225ed6cd51f9acc901a60520a9368e14224a4dTatuya JINMEI 神明達哉 *) Repair C++ compatibility in ap_config.h, apr_file_io.h,
52d5489b9563ae7a0b89aafbce6829802255b151Tatuya JINMEI 神明達哉 apr_network_io.h, and apr_thread_proc.h.
52d5489b9563ae7a0b89aafbce6829802255b151Tatuya JINMEI 神明達哉 [Tyler J. Brooks <tylerjbrooks@home.com>, Jeff Trawick]
52d5489b9563ae7a0b89aafbce6829802255b151Tatuya JINMEI 神明達哉
515ada69db06a727ca1197e2aa1f6a286d278228Tatuya JINMEI 神明達哉 *) Bring the allocation and pool debugging code back into a working
515ada69db06a727ca1197e2aa1f6a286d278228Tatuya JINMEI 神明達哉 state. This will need to be tested as so far it's only been used on
515ada69db06a727ca1197e2aa1f6a286d278228Tatuya JINMEI 神明達哉 BeOS. [David Reid]
515ada69db06a727ca1197e2aa1f6a286d278228Tatuya JINMEI 神明達哉
387bca7a55c0581dc36edb4a5071cb5e1d1c34f6Tatuya JINMEI 神明達哉 *) Change configuration command setup to be properly typesafe when in
387bca7a55c0581dc36edb4a5071cb5e1d1c34f6Tatuya JINMEI 神明達哉 maintainer mode. Note that this requires a compiler that can initialise
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed unions. [Ben Laurie]
dc842cdcb946b3f89448f07a9f024497a50c216aMark Andrews
cd9bebfc4c225931391c7d9ce1cfd88394b23f20Tatuya JINMEI 神明達哉 *) Turn on buffering for config file reads. Part of this was to
cd9bebfc4c225931391c7d9ce1cfd88394b23f20Tatuya JINMEI 神明達哉 repair buffered I/O support in Unix and implement buffered
cd9bebfc4c225931391c7d9ce1cfd88394b23f20Tatuya JINMEI 神明達哉 ap_fgets() for all platforms. [Brian Havard, Jeff Trawick]
cd9bebfc4c225931391c7d9ce1cfd88394b23f20Tatuya JINMEI 神明達哉
476de6f1566ce5ec057ab39f361907da355296b1Tatuya JINMEI 神明達哉 *) Win32: Fix problem where UTC offset was not being set correctly
476de6f1566ce5ec057ab39f361907da355296b1Tatuya JINMEI 神明達哉 in the access log. Problem reported on news group by Jerry Baker.
476de6f1566ce5ec057ab39f361907da355296b1Tatuya JINMEI 神明達哉 [Bill Stoddard]
476de6f1566ce5ec057ab39f361907da355296b1Tatuya JINMEI 神明達哉
04115a59c176759177545c72376e844e10dc557cMark Andrews *) Fix segfault when reporting this type of syntax error:
04115a59c176759177545c72376e844e10dc557cMark Andrews "</container> without matching <container> section", where
b1f7d25ee1792838aa5e5d81f4433b474d4565a2Mark Andrews container is VirtualHost or Directory or whatever.
4db36a15c5716050d40aa8e709e8c8e9475ea25bMark Andrews [Jeff Trawick]
4db36a15c5716050d40aa8e709e8c8e9475ea25bMark Andrews
a9579d3386009446d7527ef52fa28251ab8c3c2cTatuya JINMEI 神明達哉 *) Prevent the source code for CGIs from being revealed when using
a9579d3386009446d7527ef52fa28251ab8c3c2cTatuya JINMEI 神明達哉 mod_vhost_alias and the CGI directory is under the document root
a9579d3386009446d7527ef52fa28251ab8c3c2cTatuya JINMEI 神明達哉 and a user makes a request like http://www.example.com//cgi-bin/cgi
a9579d3386009446d7527ef52fa28251ab8c3c2cTatuya JINMEI 神明達哉 as reported in <news:960999105.344321@ernani.logica.co.uk>
146484aced3e6c1b9cc88db5e75b8cbfd166f701Mark Andrews [Tony Finch]
146484aced3e6c1b9cc88db5e75b8cbfd166f701Mark Andrews
593bb6464621c50ceec0e5550045f4b405558548Evan Hunt *) Add support for the new Beos NetwOrking Environment (BONE)
dbe9f900ecbefb34e960b69b41b9ecde36e0a256Tatuya JINMEI 神明達哉 [David Reid]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) xlate: ap_xlate_conv_buffer() now tells the caller when the
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews final input char is incomplete; ap_bwrite_xlate() now handles
e43b095921450c34288cadc3406f49c84a0e4d46Evan Hunt incomplete final input chars. [Jeff Trawick]
7999db4215b9398d4598ac0156ff097cda40402bMark Andrews
7999db4215b9398d4598ac0156ff097cda40402bMark Andrews *) Yet another update to saferead/halfduplex stuff -- need to ensure
481e9b573b8233f8678c1dd4549c8c949312e81dMark Andrews that a bhalfduplex call occurs before logging or else DNS and
481e9b573b8233f8678c1dd4549c8c949312e81dMark Andrews such can delay the last packet of the response. [Dean Gaudet]
cbb8a1b7cbab933795ddee4f05f4eb5074a68e6cFrancis Dupont
cbb8a1b7cbab933795ddee4f05f4eb5074a68e6cFrancis Dupont *) Some syscall reduction in APR on unix -- don't seek when setting
bd7e02a3378274436e30beecca33bf7889182776Francis Dupont up an mmap; and don't fcntl() more than once per socket.
bd7e02a3378274436e30beecca33bf7889182776Francis Dupont [Dean Gaudet]
bd7e02a3378274436e30beecca33bf7889182776Francis Dupont
09477e188f874c8c43a90f050733b114385992dcTatuya JINMEI 神明達哉 *) When mod_cgid is started as root, the cgi daemon now switches
0cdb53f093f5814b40a68848025dd8d7e9ef2e9bTatuya JINMEI 神明達哉 to the configured User/Group (like other httpd processes)
0cdb53f093f5814b40a68848025dd8d7e9ef2e9bTatuya JINMEI 神明達哉 instead of continuing as root. [Jeff Trawick]
05b8187cb3cf03fbd75af1afdacc4aefb373e37bTatuya JINMEI 神明達哉
05b8187cb3cf03fbd75af1afdacc4aefb373e37bTatuya JINMEI 神明達哉 *) The prefork MPM now uses an APR lock for the accept() mutex.
0eeaaaf0ae1ae2856b94886fa80f94c21e6f1bfdMark Andrews It has not been getting a lock at all recently. httpd -V now
f5662f41e73c27cc6e7fd29323c8dddf54dff982Mark Andrews displays APR's selection of the lock mechanism instead of the
f5662f41e73c27cc6e7fd29323c8dddf54dff982Mark Andrews symbols previously respected by prefork. [Jeff Trawick]
f5662f41e73c27cc6e7fd29323c8dddf54dff982Mark Andrews
0eeaaaf0ae1ae2856b94886fa80f94c21e6f1bfdMark Andrews *) Change the mmap() feature test to check only for existence.
0eeaaaf0ae1ae2856b94886fa80f94c21e6f1bfdMark Andrews The previous check required features not used by Apache.
9de0f9b0aed432ee357dbba8d1d807525f4b6d4aMark Andrews [Greg Ames]
9de0f9b0aed432ee357dbba8d1d807525f4b6d4aMark Andrews
9de0f9b0aed432ee357dbba8d1d807525f4b6d4aMark Andrews *) Fix a couple of bugs in mod_cgid: The cgi arguments were
ee6c0ce79e83039c9f8692bfb6196e0bb591ff98Mark Andrews sometimes mangled. The len parm to accept() was not
ee6c0ce79e83039c9f8692bfb6196e0bb591ff98Mark Andrews initialized, leading sometimes to an endless loop of failed
ee6c0ce79e83039c9f8692bfb6196e0bb591ff98Mark Andrews accept() calls on OS/390 and anywhere else that failed the call
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont if the len was negative. Use <sys/un.h> for struct sockaddr_un
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont instead of declaring it ourselves to fix a compilation problem
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont on Solaris. [Jeff Trawick]
2ca30c1774245f3aa7e8a1f3781cb965152373d8Evan Hunt
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont *) Add Resource limiting code back into Apache 2.0. [Ryan Bloom]
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont *) Fix zombie process problem with mod_cgi. [Jeff Trawick]
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont
07d0f86c8a1591c0ee785d6728af69cb40f1da61Francis Dupont *) Port mod_mmap_static to 2.0. Make it go faster. [Greg Ames]
7ed4399c6598276b76df95e6dc91ed7b2834abc6Evan Hunt
7ed4399c6598276b76df95e6dc91ed7b2834abc6Evan Hunt *) Fix storage overlay when loading dsos. Symptom: Apache dies at
3d8b9b9956b64aba0d105f955ac0354fbcf5baa9Tatuya JINMEI 神明達哉 initialization if ALLOC_DEBUG is defined; no known symptom
3d8b9b9956b64aba0d105f955ac0354fbcf5baa9Tatuya JINMEI 神明達哉 otherwise. [Jeff Trawick]
7ed4399c6598276b76df95e6dc91ed7b2834abc6Evan Hunt
2f76108082f11d4979048f1c22602391c5733c88Tatuya JINMEI 神明達哉 *) Fix typo in configure script when checking for mod_so. bash
2f76108082f11d4979048f1c22602391c5733c88Tatuya JINMEI 神明達哉 doesn't seem to have a problem but /bin/sh on Solaris does.
7ed4399c6598276b76df95e6dc91ed7b2834abc6Evan Hunt Symptom: "./configure: test: unknown operator =="
c6678b68efae57ecaec97f489f6d9104f85ed0a8Mark Andrews [Jeff Trawick]
efe34b8ddbecf45d1671efbcba30bdb75410c98aMark Andrews
7c60401dbd4dce617dffc685c269fca224c589adTatuya JINMEI 神明達哉 *) Rebind the Win32 NT and 9x services control into the MPM.
7c60401dbd4dce617dffc685c269fca224c589adTatuya JINMEI 神明達哉 All console, WinNT SCM and Win9x pseudo-service control code is
7c60401dbd4dce617dffc685c269fca224c589adTatuya JINMEI 神明達哉 now wrapped within the WinNT MPM.
d923262186a3111a6ac7aae5dcd9996e01115a44Mark Andrews [William Rowe]
d923262186a3111a6ac7aae5dcd9996e01115a44Mark Andrews
d923262186a3111a6ac7aae5dcd9996e01115a44Mark Andrews *) Make a copy of getenv("PATH") before storing for later use. Some
f92c897cb69fbb8b7400a5df93271b0743fe9adeTatuya JINMEI 神明達哉 getenv() implementations use the same storage for successive calls.
f92c897cb69fbb8b7400a5df93271b0743fe9adeTatuya JINMEI 神明達哉 CGIs on OS/390 had a bad PATH due to this. [Jeff Trawick]
158f256a14b629c4157fe0da779a4ff0e3402e48Tatuya JINMEI 神明達哉
77514242b09538db8f3a8f96f7f3d368cff6ebbaTatuya JINMEI 神明達哉 *) Server Tokens work in 2.0 again. This also propogates the change
77514242b09538db8f3a8f96f7f3d368cff6ebbaTatuya JINMEI 神明達哉 to allow just the product name in the server string using
77514242b09538db8f3a8f96f7f3d368cff6ebbaTatuya JINMEI 神明達哉 PRODUCT_ONLY.
8aae2264818e1511fa30c3ef5c3dc7669e347d3cTatuya JINMEI 神明達哉 [Ryan Bloom]
8aae2264818e1511fa30c3ef5c3dc7669e347d3cTatuya JINMEI 神明達哉
8aae2264818e1511fa30c3ef5c3dc7669e347d3cTatuya JINMEI 神明達哉Changes with Apache 2.0a4
0f39ff74a85e16cbfd30354e24403b1ee50e1104Tatuya JINMEI 神明達哉
0f39ff74a85e16cbfd30354e24403b1ee50e1104Tatuya JINMEI 神明達哉 *) EBCDIC: Rearrange calls to ap_checkconv() so that most handlers
05e2cc844530031e4dd4e25b3826bece7a183ee1Tatuya JINMEI 神明達哉 won't need to call it. [Greg Ames, Jeff Trawick]
0f39ff74a85e16cbfd30354e24403b1ee50e1104Tatuya JINMEI 神明達哉
7ecbfb6c0f566894fb7050e021cded6822771789Mark Andrews *) Move pre_config hook call to between configuration read and config
7ecbfb6c0f566894fb7050e021cded6822771789Mark Andrews tree walk. This allows all modules to implement pre_config hooks
7ecbfb6c0f566894fb7050e021cded6822771789Mark Andrews and know that they will be called at an appropriate time.
8ef7b7f3f68a26cb60f98da398562f8d1c616f96Mark Andrews [Ryan Bloom]
8ef7b7f3f68a26cb60f98da398562f8d1c616f96Mark Andrews
8ef7b7f3f68a26cb60f98da398562f8d1c616f96Mark Andrews *) mod_cgi, mod_cgid: Make ScriptLog directive work again.
8ef7b7f3f68a26cb60f98da398562f8d1c616f96Mark Andrews [Jeff Trawick]
538a0a40a2c308a004ea40a9efd31c9aecb0f041Mark Andrews
538a0a40a2c308a004ea40a9efd31c9aecb0f041Mark Andrews *) Add pre-config hooks back to all modules.
538a0a40a2c308a004ea40a9efd31c9aecb0f041Mark Andrews [Ryan Bloom]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
538a0a40a2c308a004ea40a9efd31c9aecb0f041Mark Andrews *) Fix a SIGSEGV in ap_md5digest(), which is used when you have
250dcb4cf5c356bb492c849edff5fe3c81f61f77Tatuya JINMEI 神明達哉 ContentDigest enabled and we can't/don't mmap the file.
250dcb4cf5c356bb492c849edff5fe3c81f61f77Tatuya JINMEI 神明達哉 [Jeff Trawick]
250dcb4cf5c356bb492c849edff5fe3c81f61f77Tatuya JINMEI 神明達哉
4875b50dca297a5d2082f503da31eaab896b3a8fTatuya JINMEI 神明達哉 *) We now report the correct line number for syntax errors in config
4875b50dca297a5d2082f503da31eaab896b3a8fTatuya JINMEI 神明達哉 files. [Ryan Bloom, Greg Stein, Jeff Trawick]
4875b50dca297a5d2082f503da31eaab896b3a8fTatuya JINMEI 神明達哉
d87ad693fc0e91168da01f887cc6ae318b6b7f3eMark Andrews *) Brought mod_auth_digest up to synch with 1.3, fixed ap_time_t-
d87ad693fc0e91168da01f887cc6ae318b6b7f3eMark Andrews related bugs, and changed shmem/locking to use apr API. Shared-mem
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews is currently disabled, however, because of problems with graceful
58253bddc4c33507ba28654b9c4a36ca1053730cMark Andrews restarts. [Ronald Tschal�r]
8aae2264818e1511fa30c3ef5c3dc7669e347d3cTatuya JINMEI 神明達哉
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews *) Fix corruption of IFS variable in --with-module= handling.
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews Depending on the user's shell or customization thereof, there
080a964a3f0622f2e343f114aa1cc066372c06caEvan Hunt would be errors generating ap_config_auto.h later in the configure
080a964a3f0622f2e343f114aa1cc066372c06caEvan Hunt procedure. [Jeff Trawick]
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews
5a17fe2916ce37793c12b243ab08c16095a59cf7Evan Hunt *) mod_cgi: Restore logging of stderr from child process when ScriptLog
5a17fe2916ce37793c12b243ab08c16095a59cf7Evan Hunt isn't used (as in 1.3), except that on Unix it is now logged via
d230b29aba3ce1d0362194801c34321ed22f5aa5Evan Hunt ap_log_rerror() instead of by the child having STDERR_FILENO refer
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews to the error log. [Greg Ames, Jeff Trawick]
5a17fe2916ce37793c12b243ab08c16095a59cf7Evan Hunt
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews *) Add '-D' argument processing for run time configuration defines.
aed0e61611268afd72a023a7fbba88698bc6bbebEvan Hunt [William Rowe]
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews *) Organize http_main.c as independent code, such that no code or
c72279e756e6578dc8f09ceac5158d80a8a61ce5Evan Hunt global data is exported from it. WIN32 will dynamically link it
e1aeb1569a0ae08c97dd76acb00376e4246e59b8Mark Andrews to the server core, so this will prevent mutual dependency.
e1aeb1569a0ae08c97dd76acb00376e4246e59b8Mark Andrews [William Rowe]
e1aeb1569a0ae08c97dd76acb00376e4246e59b8Mark Andrews
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews *) Add separate dynamic linkage tags APR_EXPORT(), APR_EXPORT_NONSTD()
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews and APR_VAR_EXPORT to correctly resolve apr functions and globals.
0415ca35ada2cac6a86127eaca64f3a997aea121Evan Hunt [William Rowe]
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews *) Add Win9x service execution and Ctrl+C/Ctrl+Break/Shutdown handlers.
69ec1b7eb3be37f06b53f572f6c33622e95a7935Evan Hunt [William Rowe, Jan Just Keijser <KEIJSERJJ@logica.com>]
816496b22114ee7c2c15321c2c6cc4be77fdf822Mark Andrews
816496b22114ee7c2c15321c2c6cc4be77fdf822Mark Andrews *) Add mod_charset_lite for configuring character set translation.
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews [Jeff Trawick]
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews
28ad0be64ee756013c0f6a474fc447ee613ee0d1Evan Hunt *) Add '-n' option to htpasswd to make it print its user:pw record
229442301442890aee044a0df54d3787acd68e65Mark Andrews on stdout rather than having to frob a text file. [Ken Coar]
229442301442890aee044a0df54d3787acd68e65Mark Andrews
229442301442890aee044a0df54d3787acd68e65Mark Andrews *) Fix saferead. Basically, we flush the output buffer if a read on the
8b56b8956fc1e6c70efacb4f71db28d0d1f0c577Mark Andrews input will block.
8b56b8956fc1e6c70efacb4f71db28d0d1f0c577Mark Andrews [Ryan Bloom]
8b56b8956fc1e6c70efacb4f71db28d0d1f0c577Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) APR: Add ap_xlate_get_sb() so that an app can find out whether or not
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews a conversion is single-byte only. [Jeff Trawick]
ae6942e3d1fc7327ba5df9d638e0af15a908f8fbMark Andrews
2284b84d74cdfd62ecb962feb850de981bbc2196Evan Hunt *) BEOS: ap_shutdown should return APR_SUCCESS or errno. Note that
bf64a0d5d9469c42622401bc5d55cf9888eeef44Tatuya JINMEI 神明達哉 the BeOS 5.0 documentation says that shutdown doesn't work yet.
bf64a0d5d9469c42622401bc5d55cf9888eeef44Tatuya JINMEI 神明達哉 [Roy Fielding]
bf64a0d5d9469c42622401bc5d55cf9888eeef44Tatuya JINMEI 神明達哉
00c93a6214214772d4952cd4327aa34670c763bcMichael Graff *) Fix some minor errors where pid was being manipulated as an int
00c93a6214214772d4952cd4327aa34670c763bcMichael Graff instead of the portable pid_t. [Roy Fielding]
00c93a6214214772d4952cd4327aa34670c763bcMichael Graff
375e2c913a21cb852310418785f359a6b21b851dMark Andrews *) Fix some error log prints that were printing the pointer to a
375e2c913a21cb852310418785f359a6b21b851dMark Andrews structure rather than the pid within the structure.
52cb865cf00db3437c33b57de0a17c807f9ba67eMark Andrews [Jeff Trawick, Roy Fielding]
52cb865cf00db3437c33b57de0a17c807f9ba67eMark Andrews
0f4a4d46abe13df2c367aa8dffaad685c20eaadaMark Andrews *) ab: Fix a command-line processing bug; track bad headers in
0f4a4d46abe13df2c367aa8dffaad685c20eaadaMark Andrews err_response; support reading headers up to 2K.
0f4a4d46abe13df2c367aa8dffaad685c20eaadaMark Andrews [Ask Bjoern Hansen <ask@valueclick.com>]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
c4fadc88619959582ac89b841c489be0519ae79dTatuya JINMEI 神明達哉 *) Fix ap_resolve_env() so that it handles new function added in a prior
c4fadc88619959582ac89b841c489be0519ae79dTatuya JINMEI 神明達哉 alpha (see "Added the capability to do ${ENVVAR} constructs in the
8907d8fa04fdaa65baf0bc6b01230b2ebde93106Mark Andrews config file.") as well as the constructs used by mod_rewrite.
8907d8fa04fdaa65baf0bc6b01230b2ebde93106Mark Andrews [Paul Reder <rederpj@raleigh.ibm.com>]
8907d8fa04fdaa65baf0bc6b01230b2ebde93106Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Apache 2.0 builds and runs on OS/390. [Jeff Trawick, Greg Ames]
d904beeb3bf62d60e25f76e1ac9c4b78278c14edMark Andrews
d904beeb3bf62d60e25f76e1ac9c4b78278c14edMark Andrews *) Change the EBCDIC support in functions for MD5, SHA1, and base 64 to use
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews APR to perform translation, instead of accessing the hard-coded tables
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews in 1.3's ebcdic.c. [Jeff Trawick]
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews *) Fix some bugs (mostly lost 1.3 code) in ab's command-line processing.
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews [Jeff Trawick]
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews
db30f4bdcb66afb7eb1ab0c6882cc70be9a53d79Mark Andrews *) Add the ability to hook into the config file reading phase. Basically
887ef2682c6f66f9dcd6604c4ccf8f87894ef2a9Mark Andrews if a directive is specified EXEC_ON_READ, then when that directive is
887ef2682c6f66f9dcd6604c4ccf8f87894ef2a9Mark Andrews read from the config file, the assocaited function is executed. This
420ed91d3ed516bc9d5edf2e942ae792d17d11b4Mark Andrews should only be used for those directives that must muck with HOW the
420ed91d3ed516bc9d5edf2e942ae792d17d11b4Mark Andrews server INTERPRETS the config. This should not be used for directives
07555e64d9102eae058efd58f872b4a3b9ddff61Mark Andrews that re-order or replace items in the config tree. Those changes should
07555e64d9102eae058efd58f872b4a3b9ddff61Mark Andrews be made in the pre-config step.
a76b380643a22f23a67a9df284e86cd7ef7608c1Mark Andrews [Ryan Bloom]
a76b380643a22f23a67a9df284e86cd7ef7608c1Mark Andrews
a76b380643a22f23a67a9df284e86cd7ef7608c1Mark Andrews *) Add mod_example to the build system.
2a31bd531072824ef252c18303859d6af7451b00Francis Dupont [Tony Finch]
2a31bd531072824ef252c18303859d6af7451b00Francis Dupont
8d460bed78e2684fbb0cb150bbf800dcc4d29c54Mark Andrews *) APR: Add ap_xlate_conv_byte() to convert one char between single-
fe3f310e2ed5cc5d7401ddfa5d222730a405dcf5Mark Andrews byte character sets. [Jeff Trawick]
fe3f310e2ed5cc5d7401ddfa5d222730a405dcf5Mark Andrews
fe3f310e2ed5cc5d7401ddfa5d222730a405dcf5Mark Andrews *) Pick up various EBCDIC fixes from 1.3 (from Martin
2a31bd531072824ef252c18303859d6af7451b00Francis Dupont Kraemer and Oliver Reh originally according to the change log).
4a253e12fc611763cd7c1b793e78a00d47894399Francis Dupont [Jeff Trawick]
4a253e12fc611763cd7c1b793e78a00d47894399Francis Dupont
4a253e12fc611763cd7c1b793e78a00d47894399Francis Dupont *) Fix a couple of problems in RFC1413 support (controlled by the
cffe96e26744abcf33494837b234219046a631d8Mark Andrews IdentityCheck directive). Apache did not build the request string
cffe96e26744abcf33494837b234219046a631d8Mark Andrews properly and more importantly Apache would loop forever if the
cffe96e26744abcf33494837b234219046a631d8Mark Andrews would-be ident server dropped the connection before sending a
f703353673abc17ef76c89561a1fbf3555d38927Mark Andrews properly terminated response. [Jeff Trawick]
f703353673abc17ef76c89561a1fbf3555d38927Mark Andrews
f703353673abc17ef76c89561a1fbf3555d38927Mark Andrews *) apxs works in 2.0.
f703353673abc17ef76c89561a1fbf3555d38927Mark Andrews [Ryan Bloom]
7e26a2a646877bcd5e03fce6d7347e88f059011eMark Andrews
7e26a2a646877bcd5e03fce6d7347e88f059011eMark Andrews *) Reliable piped logs work in 2.0.
7e26a2a646877bcd5e03fce6d7347e88f059011eMark Andrews [Ryan Bloom]
a95a9de45ca739dab17ec1263186dbaaaba50d97Tatuya JINMEI 神明達哉
a95a9de45ca739dab17ec1263186dbaaaba50d97Tatuya JINMEI 神明達哉 *) Introduce a hash table implementation into APR to be used for
a95a9de45ca739dab17ec1263186dbaaaba50d97Tatuya JINMEI 神明達哉 replacing tables and other random data structures in Apache.
ea8564f68adbacd904e55e47668fe1bbf65ddd1dMark Andrews [Tony Finch]
ea8564f68adbacd904e55e47668fe1bbf65ddd1dMark Andrews
55f580c7fc4b99316a54ef54ed79c58efca5fff1Mark Andrews *) Add some more error reporting to htpasswd in the case of problems
55f580c7fc4b99316a54ef54ed79c58efca5fff1Mark Andrews generating or accessing the temporary file. Also, pass in a
55f580c7fc4b99316a54ef54ed79c58efca5fff1Mark Andrews buffer if the implementation knows how to use it (i.e., if L_tmpnam
d9936b218d9d0fd7c6a1a418e5b91b356190ea12Mark Andrews is defined). [Ken Coar]
d9936b218d9d0fd7c6a1a418e5b91b356190ea12Mark Andrews
4074b8e7342618ff38ffe3773a2699ee1734f1adMark Andrews *) Configure creates config.nice now containing your configure
4074b8e7342618ff38ffe3773a2699ee1734f1adMark Andrews options. Syntax: ./config.nice [--more-options]
0283e511317cae3785a9d48e236289a234a25368Mark Andrews [Sascha Schumann]
664e11f0b14c78cef7cf6b8c70323a1da494e351Mark Andrews
664e11f0b14c78cef7cf6b8c70323a1da494e351Mark Andrews *) Fix various return code problems in APR on Win32. For most of
0283e511317cae3785a9d48e236289a234a25368Mark Andrews these, APR was returning APR_EEXIST instead of GetLastError()/
016c4317500eb565b82b27d00ba6b621c6e29110Mark Andrews WSAGetLastError(). [Jeff Trawick]
ce9c1558a6c81b49a5cedf55d168f889aeb5d310Mark Andrews
ce9c1558a6c81b49a5cedf55d168f889aeb5d310Mark Andrews *) Make piped logs work again in version 2.0
ce9c1558a6c81b49a5cedf55d168f889aeb5d310Mark Andrews [Ryan Bloom]
ce9c1558a6c81b49a5cedf55d168f889aeb5d310Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Add VPATH support to UNIX build system of Apache and APR.
0f3264c8d1b66de8dedd137d53615b8a8556adfaMark Andrews [Sascha Schumann]
0f3264c8d1b66de8dedd137d53615b8a8556adfaMark Andrews
0e30609d7b3e31e3ff249d185041b9140b5410baMark Andrews *) Fix ap_tokenize_to_argv to respect the const arguments that are
0e30609d7b3e31e3ff249d185041b9140b5410baMark Andrews passed to it.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Ryan Bloom]
9e8947d9e606b967d0792d0ab1ee7afac5e5f39dMark Andrews
9e8947d9e606b967d0792d0ab1ee7afac5e5f39dMark Andrews *) Fix mm's memcpy/memset macros, pointer arithmetic was broken.
9e8947d9e606b967d0792d0ab1ee7afac5e5f39dMark Andrews Patch submitted to author.
3cff31d890bf0815b6b2c7603d1e5c37dc3f26b7Mark Andrews [Sascha Schumann]
3cff31d890bf0815b6b2c7603d1e5c37dc3f26b7Mark Andrews
2005c3b37bb39a37dc0b034bb2149006df7e3759Mark Andrews *) Fix mm configuration on Solaris 8 x86 and OS/390. Don't require
aef875b27e94586a1f3644d53705e6f5ea4b5dafMark Andrews /sbin in PATH on FreeBSD (all submitted to rse previously)
aef875b27e94586a1f3644d53705e6f5ea4b5dafMark Andrews [Jeff Trawick]
c09c2bf800ba0f5e6efe6b47ba72f43e4a61ca7dMark Andrews
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews *) Fix building Pthread-based MPMs on OpenBSD
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews [Sascha Schumann] PR#26
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews *) Fix ap_readdir() problem on systems where d_name[] field in
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews struct dirent is declared with only one byte. (This problem only
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews affected multithreaded builds.) This caused a segfault during
9a7d202077fae00fbdca610d8a8d90689e30f331Mark Andrews pool cleanup with mod_autoindex on Solaris (Solaris 8 x86, at
4a5b30c24ca7ceefec4ca142069b886f3d4ab9f9Mark Andrews least). [Jeff Trawick]
4a5b30c24ca7ceefec4ca142069b886f3d4ab9f9Mark Andrews
c368f28dad471c70213b41f7a0ad1b4ef4d8c543Mark Andrews *) Fix some make-portability problems on at least Tru64, Irix
f1d6c77eccf502398ae5954fb884bde70764a047Mark Andrews and UnixWare.
f1d6c77eccf502398ae5954fb884bde70764a047Mark Andrews [Sascha Schumann] PR#18, PR#39
f1d6c77eccf502398ae5954fb884bde70764a047Mark Andrews
f1d6c77eccf502398ae5954fb884bde70764a047Mark Andrews *) Add ap_sigwait() to support old-style sigwait() on systems
7adca0ea2fcd44641861523b718d6980c0666103Mark Andrews like OS/390 and UnixWare.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Sascha Schumann]
7adca0ea2fcd44641861523b718d6980c0666103Mark Andrews
9dcc44d7b309b61e89083807d47af471ec6bae1fMark Andrews *) Add POSIX-thread flags for more platforms.
5badfc7e00b2ec2c7b93657906b8609114ee00ccMark Andrews [Sascha Schumann]
5badfc7e00b2ec2c7b93657906b8609114ee00ccMark Andrews
5badfc7e00b2ec2c7b93657906b8609114ee00ccMark Andrews *) Fix some minor bugs in ap_strerror(). Teach ap_strerror()
dc2a0aa7aaa8b85398ae183c7274c0eeec5009afMark Andrews (on Unix, at least) to handle resolver errors. Fix a bug in
dc2a0aa7aaa8b85398ae183c7274c0eeec5009afMark Andrews the definition of APR_ENOMEM so that ap_strerror() can spit
2005c3b37bb39a37dc0b034bb2149006df7e3759Mark Andrews out the correct error message for it.
1fa2ce7eaef0c17d554495220565b681639b2ce5Mark Andrews [Jeff Trawick]
7539c231d47677250008737b0691f9518111f3f5Mark Andrews
7539c231d47677250008737b0691f9518111f3f5Mark AndrewsChanges with Apache 2.0a3
7ae2fa27e921ff5a2de4b0bb3aef5013315e92a8Tatuya JINMEI 神明達哉
7ae2fa27e921ff5a2de4b0bb3aef5013315e92a8Tatuya JINMEI 神明達哉 *) mod_so reports ap_os_dso_error() if ap_dso_load() fails
7ae2fa27e921ff5a2de4b0bb3aef5013315e92a8Tatuya JINMEI 神明達哉 [Doug MacEachern]
7fe86a54252bab063030512a0e4150e1b7814effMark Andrews
7fe86a54252bab063030512a0e4150e1b7814effMark Andrews *) API: *HOOK* macros now have an AP_ prefix
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Doug MacEachern]
1c3ed2a83d176d9023b51b60dfc96c133f678362Tatuya JINMEI 神明達哉
1c3ed2a83d176d9023b51b60dfc96c133f678362Tatuya JINMEI 神明達哉 *) Win32: Eliminate redundant calls to initialize winsock.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Tim Costello <timcostello@ozemail.com.au>]
fc53f564caa9d40f4b73a2808260b1dc07e86fddEvan Hunt
e951a79d901cc9b72a4882c38f02b568eed6bf24Mark Andrews *) Fix bugs initializing ungetchar for pipes.
9a727082a0f4959d4ad5ee91c171c2fad92ac996Mark Andrews [Chia-liang Kao <clkao@CirX.ORG>]
a59640bf27db16e02e01484297e36b7456e163bbMark Andrews
4462e590791925b6a5efceacbff054a6b5fe35edMark Andrews *) The ab program in the src/support directory is now portable using
4462e590791925b6a5efceacbff054a6b5fe35edMark Andrews APR.
9925249931480c9e422b70c948b2665264ec46f5Mark Andrews [Ryan Bloom]
9925249931480c9e422b70c948b2665264ec46f5Mark Andrews
9925249931480c9e422b70c948b2665264ec46f5Mark Andrews *) Support directory is being compiled when the server is built
fc7043d7d1294478c9988c10af9a7fb8fd810338Evan Hunt [Ryan Bloom]
fc7043d7d1294478c9988c10af9a7fb8fd810338Evan Hunt
fc7043d7d1294478c9988c10af9a7fb8fd810338Evan Hunt *) The configure option --with-program-name has been added to allow
cef715b6556ca1207b85aa1eac6ce817af2be44eMark Andrews developers to rename the executable at configure time. This also
cef715b6556ca1207b85aa1eac6ce817af2be44eMark Andrews changes the name of the config files to match the executable's name.
cef715b6556ca1207b85aa1eac6ce817af2be44eMark Andrews [Ryan Bloom]
5497de6931b5ac26f65c2343b0318614f73933baMark Andrews
5497de6931b5ac26f65c2343b0318614f73933baMark Andrews *) mod_autoindex: Add `IndexOptions +VersionSort', to nicely sort filenames
5497de6931b5ac26f65c2343b0318614f73933baMark Andrews containing version numbers. [Martin Pool]
f86c5d30de5d2bf4a4aab98f72295309d62e92eeMark Andrews
f86c5d30de5d2bf4a4aab98f72295309d62e92eeMark Andrews *) ap_open(..,APR_OS_DEFAULT,..) uses perms 0666 instead of 0777 on
f86c5d30de5d2bf4a4aab98f72295309d62e92eeMark Andrews Unix; access_log and error_log now created with these perms; non-
262c39b2366bf79062f7f86b218947523dd1cbacEvan Hunt Unix is unaffected [Jeff Trawick]
262c39b2366bf79062f7f86b218947523dd1cbacEvan Hunt
262c39b2366bf79062f7f86b218947523dd1cbacEvan Hunt *) Finished move of ap_md5 routines to apr_md5. Removed ap_md5.h.
1ff207c2fa4182156932f3f5c982170385a19225Mark Andrews Replaced more magic numbers with MD5_DIGESTSIZE.
b1e32169ac5cf21fca540fa122a546db71090491Mark Andrews [William Rowe, Roy Fielding]
827572e191fad1326c624593bf35d8eb1928f607Mark Andrews
1aba9fe67899522364a9dbc3ee5a14da081f0314Evan Hunt *) Win32: Get mod_auth_digest compiling and added to the Windows
1aba9fe67899522364a9dbc3ee5a14da081f0314Evan Hunt build environment. Not tested and I'd be suprised if it
1aba9fe67899522364a9dbc3ee5a14da081f0314Evan Hunt actually works. [Bill Stoddard]
546c2bf791782df1077217bdaf1865235fa95a93Mark Andrews
546c2bf791782df1077217bdaf1865235fa95a93Mark Andrews *) Revamp the Win32 make environment. Makefiles have been removed and
546c2bf791782df1077217bdaf1865235fa95a93Mark Andrews Apache.dsw created to bring together all the pieces. Create new file
6c7f722d31d12cf83964c8132f0a59ef70e34cb5Mark Andrews os/win32/BaseAddr.ref to define module base addresses (to prevent
6c7f722d31d12cf83964c8132f0a59ef70e34cb5Mark Andrews dll relocation at start-up).
fcc2a57e13fbecf085e9d11702709b3d5a49b043Mark Andrews [William Rowe, Greg Marr, Tim Costello, Bill Stoddard]
fcc2a57e13fbecf085e9d11702709b3d5a49b043Mark Andrews
fcc2a57e13fbecf085e9d11702709b3d5a49b043Mark Andrews *) [EBCDIC] Port Paul Gilmartin's CRLF patch from 1.3. This replaces most
fcdafc1e30dd4d10184b56201ea2fc3bab711e5eMark Andrews of the \015, \012, and \015\012 constants with macros.
fcdafc1e30dd4d10184b56201ea2fc3bab711e5eMark Andrews [Greg Ames <gregames@us.ibm.com>]
f1263d2aa405087e74caf001cd443079f50ee903Mark Andrews
f1263d2aa405087e74caf001cd443079f50ee903Mark Andrews *) Add ap_xlate_open() et al for translation of text between different
f1263d2aa405087e74caf001cd443079f50ee903Mark Andrews character sets. The initial implementation requires iconv().
b1d21f6c93c93bd27492fc41f1c3205c39ab2167Mark Andrews [Jeff Trawick]
b1d21f6c93c93bd27492fc41f1c3205c39ab2167Mark Andrews
b1d21f6c93c93bd27492fc41f1c3205c39ab2167Mark Andrews *) More FAQs and answers from comp.infosystems.www.servers.unix.
efb3fa669f00ccfd9aada997b426616b6b0ce044Mark Andrews [Joshua Slive <slive@finance.commerce.ubc.ca>]
efb3fa669f00ccfd9aada997b426616b6b0ce044Mark Andrews
034f775ae1bbc260d88bc372f01fdf4b50554514Mark Andrews *) CGI output is being timed out now.
034f775ae1bbc260d88bc372f01fdf4b50554514Mark Andrews [Ryan Bloom]
034f775ae1bbc260d88bc372f01fdf4b50554514Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Fix the problem with dieing quietly. dupfile now takes a pool which
80f20cb452989a423ed0ab84cfbf67d258b92247Mark Andrews is used by the new apr file. There is no reason to create a new file
80f20cb452989a423ed0ab84cfbf67d258b92247Mark Andrews with the same lifetime as the original file.
93ee06cbe34294c300834d383ff89162ad5c241aMark Andrews [Ryan Bloom]
93ee06cbe34294c300834d383ff89162ad5c241aMark Andrews
93ee06cbe34294c300834d383ff89162ad5c241aMark Andrews *) Win32: Attempt to eliminate dll relocation at start-up by specifying
494143860bbe118050f46ecac3d196c779d4b7b0Mark Andrews module base addresses. This will help shooting seg faults
494143860bbe118050f46ecac3d196c779d4b7b0Mark Andrews in the field. [William Rowe <wrowe@lnd.com>]
494143860bbe118050f46ecac3d196c779d4b7b0Mark Andrews
400a1b6604ede895cc8d67a7aa66796a5dbc75e4Mark Andrews *) Update Apache on Windows documentation. Add new document
400a1b6604ede895cc8d67a7aa66796a5dbc75e4Mark Andrews describing how to compile Apache on Windows.
400a1b6604ede895cc8d67a7aa66796a5dbc75e4Mark Andrews [William Rowe <wrowe@lnd.com>]
c0fb34e8156aea6b7fde8488e7440524c703f22eMark Andrews
c0fb34e8156aea6b7fde8488e7440524c703f22eMark Andrews *) ap_set_pipe_timeout(), ap_poll(), and APR_SO_TIMEOUT now take
c0fb34e8156aea6b7fde8488e7440524c703f22eMark Andrews microseconds instead of seconds. Some storage leaks and other
48fa5940280d65a83b020cca12769b4cd0422e91Mark Andrews minor bugs in related code were fixed. [Jeff Trawick]
48fa5940280d65a83b020cca12769b4cd0422e91Mark Andrews
48fa5940280d65a83b020cca12769b4cd0422e91Mark Andrews *) Win32: First cut at getting mod_isapi working under 2.0
bfcc5ae79a46c5c55e6cf1a9fe4d70a957712d2bTatuya JINMEI 神明達哉 [William Rowe <wrowe@lnd.com>]
bfcc5ae79a46c5c55e6cf1a9fe4d70a957712d2bTatuya JINMEI 神明達哉
bfcc5ae79a46c5c55e6cf1a9fe4d70a957712d2bTatuya JINMEI 神明達哉 *) First stab at getting mod_auth_digest working under 2.0
bfcc5ae79a46c5c55e6cf1a9fe4d70a957712d2bTatuya JINMEI 神明達哉 quick change summary:
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews - moved the random byte generation (ap_generate_random_bytes) into APR
20837e74f5e68a8108c25bb341a3ef1c1ca22711Tatuya JINMEI 神明達哉 - now uses ap_time_t
1c9f629c181dfd14bb429a6699d22c3c023aa218Mark Andrews - compiles and runs on linux
1c9f629c181dfd14bb429a6699d22c3c023aa218Mark Andrews - tested with amaya
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews [Brian Martin <bmartin@penguincomputing.com>]
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews *) Win32: Move the space stripping of physical service names
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews fix up from Apache 1.3. #include'ing "ap_mpm.h" fixes up an
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews unresolved symbol. Add dependency checking to the
f61a7c87bf36b189d8f04ea4c8ab3ec55778355cMark Andrews CreateService call to ensure TCPIP and AFP (winsock) is started
2678fccde3453facce53f857d95fec30ca4a284fMark Andrews before Apache.
2678fccde3453facce53f857d95fec30ca4a284fMark Andrews [William Rowe <wrowe@lnd.com>]
2678fccde3453facce53f857d95fec30ca4a284fMark Andrews
562460463b6f4c4d6f815c58c129451c82d66823Mark Andrews *) Win32: Add code to perform latebinding on functions that may
562460463b6f4c4d6f815c58c129451c82d66823Mark Andrews not exist on all levels of Windows where Apache runs. This
562460463b6f4c4d6f815c58c129451c82d66823Mark Andrews is needed to allow Apache to start-up on Win95/98. All calls
577272cf7935770fa2ea817e656a572cdcd94eccMark Andrews to non portable functions should be protected with
577272cf7935770fa2ea817e656a572cdcd94eccMark Andrews ap_oslevel checks to prevent runtime segfaults.
577272cf7935770fa2ea817e656a572cdcd94eccMark Andrews [William Rowe <wrowe@lnd.com>]
8486ce1efa5deded85415d21d5696e5a51c63357Mark Andrews
8486ce1efa5deded85415d21d5696e5a51c63357Mark Andrews *) Fix fallback default values for SHM_R and SHM_W [Martin Kraemer]
92f60809e854ccf5f115883c6347e370da048848Mark Andrews
92f60809e854ccf5f115883c6347e370da048848Mark Andrews *) Get lingering_close() working again. [Dean Gaudet, Jeff Trawick]
92f60809e854ccf5f115883c6347e370da048848Mark Andrews
92f60809e854ccf5f115883c6347e370da048848Mark Andrews *) Win32: Get non-blocking CGI pipe reads working under Windows NT.
92f60809e854ccf5f115883c6347e370da048848Mark Andrews This addresses PR 1623. Still need to address timing out runaway
f5d0f495847eb4eb9f0058e73051f855800bee0bMark Andrews CGI scripts. [Bill Stoddard]
f5d0f495847eb4eb9f0058e73051f855800bee0bMark Andrews
f5d0f495847eb4eb9f0058e73051f855800bee0bMark Andrews *) Win32: Make ap_stat Windows 95/98 friendly
dc0ecf08dbea81b6ebfcd3a18b52aa974472b1baMark Andrews [William Rowe <wrowe@lnd.com>]
dc0ecf08dbea81b6ebfcd3a18b52aa974472b1baMark Andrews
dc0ecf08dbea81b6ebfcd3a18b52aa974472b1baMark Andrews *) Win32: Fix a bug in ap_get_oslevel which causes GetVersionEx() to
dc19dcbc236bc876a6cdb426ec7c5fab964f8dfcMark Andrews always fail. Need to initialise the dwOSVersionInfoSize member of the
dc19dcbc236bc876a6cdb426ec7c5fab964f8dfcMark Andrews OSVERSIONINFO struct before calling GetVersionEx, so GetVersionEx
dc19dcbc236bc876a6cdb426ec7c5fab964f8dfcMark Andrews always fails.
dc19dcbc236bc876a6cdb426ec7c5fab964f8dfcMark Andrews
dc19dcbc236bc876a6cdb426ec7c5fab964f8dfcMark Andrews The patch also enhances ap_get_oslevel (and the associated enum) to
114c14f8adfc249cf2e5cdcb9007af46fed257e3Mark Andrews handle selected service packs for NT4, and adds recognition for
604419a812b491cd35fb6fad129c3c39da7200a1Mark Andrews Windows 2000. This is useful, eg. if we can recognise NT4 SP2 then
3d78993c6d415f600f57520d1566627b5535d715Mark Andrews we can use ReadFileScatter and WriteFileGather in readwrite.c.
3d78993c6d415f600f57520d1566627b5535d715Mark Andrews [Tim Costello <Tim.Costello@BTFinancialgroup.com>]
3d78993c6d415f600f57520d1566627b5535d715Mark Andrews
8c850a29eda020642c84038e449d60f124c6123bMark Andrews *) Get mod_rewrite building and running, and mod_status building for Win NT
8c850a29eda020642c84038e449d60f124c6123bMark Andrews [Allan Edwards <ake@raleigh.ibm.com>]
8c850a29eda020642c84038e449d60f124c6123bMark Andrews
da31aff2f2a2163dafeea65c63f16d8f3fca05c5Mark Andrews *) Patch to port mod_auth_db to the 2.0 api and also to support
da31aff2f2a2163dafeea65c63f16d8f3fca05c5Mark Andrews Berlekey DB 3.0. It works for me with both Berkeley DB 3.0.55 and
da31aff2f2a2163dafeea65c63f16d8f3fca05c5Mark Andrews 2.7.7. It should work with version 1 as well but I haven't tested it.
da31aff2f2a2163dafeea65c63f16d8f3fca05c5Mark Andrews [Brian Martin <bmartin@penguincomputing.com>]
e8ca2abed76b550fd3baddcfb17f2c9a630d6b71Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Get APR DSO code working under Windows. Includes cross platform
e8ca2abed76b550fd3baddcfb17f2c9a630d6b71Mark Andrews fixes to mod_so.c.
81d9d7a10e52b421d7f4784c48ae995b13203c59Mark Andrews [Tim.Costello@BTFinancialgroup.com]
81d9d7a10e52b421d7f4784c48ae995b13203c59Mark Andrews
81d9d7a10e52b421d7f4784c48ae995b13203c59Mark Andrews *) Fix some of the Windows APR time functions.
301f6ffbbeabcbf765f8163f4ffb7f6f0146b926Mark Andrews [William Rowe]
301f6ffbbeabcbf765f8163f4ffb7f6f0146b926Mark Andrews
9e4b25fc3eb5777202147634d789345d893b4539Mark Andrews *) FAQ changes related to tidying up historical documents on the web site.
9e4b25fc3eb5777202147634d789345d893b4539Mark Andrews [Joshua Slive <slive@finance.commerce.ubc.ca>]
9e4b25fc3eb5777202147634d789345d893b4539Mark Andrews
28c49640dcb25102e5040b8d957edd905ddf82f8Mark Andrews *) Move Windows DSO code into APR.
7314547af7aa1dd25d690dd3f034d49e5cc8fa9dMark Andrews [Bill Stoddard]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
541b9722d8031485922ab11221c2e747c0262cf5Mark Andrews *) Eliminate apr_win.h and apr_winconfig.h (and the ugly #ifdefs they cause).
541b9722d8031485922ab11221c2e747c0262cf5Mark Andrews Now, apr.h and apr_config.h are generated from apr.hw and apr_config.hw
ddaeaddf2b9148ce3e6ec5fecc48f64ea5826faeMark Andrews at build time. At this point, the server will not compile on Windows because
ddaeaddf2b9148ce3e6ec5fecc48f64ea5826faeMark Andrews of the recent DSO commits. Fixing those next.
ddaeaddf2b9148ce3e6ec5fecc48f64ea5826faeMark Andrews [Bill Rowe & Bill Stoddard]
a6f7fdcc039de75e9a20da90044caa814f0357a3Michael Graff
a6f7fdcc039de75e9a20da90044caa814f0357a3Michael Graff *) Added error checking for file I/O APR routines.
d7e8610d31d83ff863e8b2dc05c238376c35e949Mark Andrews [Jon Travis <jtravis@covalent.net>]
d7e8610d31d83ff863e8b2dc05c238376c35e949Mark Andrews
d7e8610d31d83ff863e8b2dc05c238376c35e949Mark Andrews *) APR: Don't use the values of resolver error codes for the
7e8214191899dc8043babdfbe9235ba14c825005Mark Andrews corresponding APR error codes. On Unix and Win32, return the
7e8214191899dc8043babdfbe9235ba14c825005Mark Andrews proper APR error code after a resolver error. [Jeff Trawick]
c4dc5966e0a66f4d75677f1634eff3b45baf988eMark Andrews
c4dc5966e0a66f4d75677f1634eff3b45baf988eMark AndrewsChanges with Apache 2.0a2
c4dc5966e0a66f4d75677f1634eff3b45baf988eMark Andrews
9429f5a8318bd2142280c949d4af05998ca348a2Evan Hunt *) Renamed the executable back to httpd on all platforms other
9429f5a8318bd2142280c949d4af05998ca348a2Evan Hunt than Win32
0899d16ebd6a70bb027e7899c53e7f542ebc987bEvan Hunt [Ryan Bloom]
0899d16ebd6a70bb027e7899c53e7f542ebc987bEvan Hunt
0899d16ebd6a70bb027e7899c53e7f542ebc987bEvan Hunt *) Allow BeOS to survive restarts, log properly and a few
0899d16ebd6a70bb027e7899c53e7f542ebc987bEvan Hunt small things it had problems with due to the way it setup
d2e440ca30f27468443ccc7e21db0b8e10c4faf8Mark Andrews users and groups. [David Reid]
d2e440ca30f27468443ccc7e21db0b8e10c4faf8Mark Andrews
d2e440ca30f27468443ccc7e21db0b8e10c4faf8Mark Andrews *) Get mod_rewrite working with APR locks
404df30f4fcbd318dd1e3cc027d2b5abff3ab6d5Mark Andrews [Paul Reder <rederpj@raleigh.ibm.com>]
404df30f4fcbd318dd1e3cc027d2b5abff3ab6d5Mark Andrews
404df30f4fcbd318dd1e3cc027d2b5abff3ab6d5Mark Andrews *) Actually remove the sempahore when the lock cleanup routine
544d0efa38490d67e458aa9c23a7dac2a9d546bfMark Andrews is called on BeOS. [David Reid]
544d0efa38490d67e458aa9c23a7dac2a9d546bfMark Andrews
1f2635d3f7b3f0b3bf0d0310fe880d95e84f09fcMark Andrews *) Clear hook registrations between reads of the config file.
1f2635d3f7b3f0b3bf0d0310fe880d95e84f09fcMark Andrews When DSOs are unloaded and re-loaded the old hook pointers may
1f2635d3f7b3f0b3bf0d0310fe880d95e84f09fcMark Andrews no longer be valid. This fix eliminates potential segfaults.
802760773ca5224b29a610741a7f2e0a7d6e031bMark Andrews [Allan Edwards <ake@raleigh.ibm.com>]
802760773ca5224b29a610741a7f2e0a7d6e031bMark Andrews
802760773ca5224b29a610741a7f2e0a7d6e031bMark Andrews *) Fix a problem with Sigfunc not being defined or bypassed
b6d496d53851e5ab5ba82e800062a431b05310cbEvan Hunt if sigaction() wasn't found. [Jim Jagielski]
b6d496d53851e5ab5ba82e800062a431b05310cbEvan Hunt
67213ca3d0594588a6fac32d8188efc68b0ad572Shane Kerr *) Fix the locking mechanism on BSD variants. They now use fcntl
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews locks. This allows the server to start and serve pages.
d813808a01d5629110b8df483ccc2dff9ec2a84fMark Andrews [Ryan Bloom]
67213ca3d0594588a6fac32d8188efc68b0ad572Shane Kerr
67213ca3d0594588a6fac32d8188efc68b0ad572Shane Kerr *) First cut at getting the Win32 installer to work
d813808a01d5629110b8df483ccc2dff9ec2a84fMark Andrews [William Rowe <wrowe@lnd.com>]
d813808a01d5629110b8df483ccc2dff9ec2a84fMark Andrews
33170a4b2b2765583df543efbb13a01e7b664037Mark Andrews *) Get htpasswd compiling under Windows
33170a4b2b2765583df543efbb13a01e7b664037Mark Andrews [William Rowe <wrowe@lnd.com>]
33170a4b2b2765583df543efbb13a01e7b664037Mark Andrews
2cc262c0932a193b261e6e6a172855bd8f898c6dMark Andrews *) Change the log message for a bind() failure to show the
2cc262c0932a193b261e6e6a172855bd8f898c6dMark Andrews interface and port number. [Jeff Trawick]
2cc262c0932a193b261e6e6a172855bd8f898c6dMark Andrews
76a378884f628f9b23bff16490e39dcd69b6ef0eMark Andrews *) Import the documentation from 1.3.12 and bring parts of it
76a378884f628f9b23bff16490e39dcd69b6ef0eMark Andrews up-to-date with respect to the changes that have occurred
76a378884f628f9b23bff16490e39dcd69b6ef0eMark Andrews in 2.0.
c368f28dad471c70213b41f7a0ad1b4ef4d8c543Mark Andrews [Tony Finch]
03745451370778a867e46fdbe315eb958745a391Mark Andrews
f183f4c0cd40354f423bdb129e7a0c9badb5082cMark Andrews *) BeOS MPM updated. CGI bug on BeOS fixed. IP addresses
f183f4c0cd40354f423bdb129e7a0c9badb5082cMark Andrews now logged correctly on BeOS.
f183f4c0cd40354f423bdb129e7a0c9badb5082cMark Andrews [David Reid]
f183f4c0cd40354f423bdb129e7a0c9badb5082cMark Andrews
f183f4c0cd40354f423bdb129e7a0c9badb5082cMark Andrews *) Create one makefile for all Win32 distributions (NT/2000/95/98).
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews Makefile.win includes the same user interface as the old
71f4918fd8a5ec4f0a05aac657b614fdf2467bebMark Andrews Makefile.nt
71f4918fd8a5ec4f0a05aac657b614fdf2467bebMark Andrews [William Rowe <wrowe@lnd.com>, Jeff Trawick <trawick@us.ibm.com>]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
dabe7f50bb61d75841b535b91edb8f323f82f826Evan Hunt *) Win32 exec now uses COMSPEC environment string for command
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews shell path resolution.
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews [William Rowe <wrowe@lnd.com>] PR#3715
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews *) Win32: ap_connect() was not returning correct error condition
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews PR5866
a1e2170ad5c5018fbe8f7b8449d8885d5d298e88Mark Andrews [Allen Prescott <allen@clanprescott.com>]
05d2776f6fa8e3628555463b06cb43288c9ee68eEvan Hunt
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Win32: ap_open() was broken on Win9x because an NT-specific
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews flag was passed to CreateFile. ap_puts() added an unnecessary
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews '\n'.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Jeff Trawick <trawick@us.ibm.com>]
8327cdb88fdbf306eb4c37fe00a29aac4c2f55c5Evan Hunt
f2d8c4a4c3dfa212ddcf5b86d4c5fced4965e52eMark Andrews *) Put in Korean and Norwegian index.html pages (2.0 and 1.3)
f2d8c4a4c3dfa212ddcf5b86d4c5fced4965e52eMark Andrews which where donated by Lee Kuk Hyun and Lorant Czaran. 'Fixed'
8c76634f88c5b3169b61505925e10b997ea08e54Mark Andrews confusing ee/et name and made all extensions language/dialect
8c76634f88c5b3169b61505925e10b997ea08e54Mark Andrews rather than country reflecting. Changed example files to
8c76634f88c5b3169b61505925e10b997ea08e54Mark Andrews explicit reflect the ISO charset and added a few common
8bedd9647f4d6894e12a8c94d3ccc624dddcee50Mark Andrews ones to the example config [dirkx]
8bedd9647f4d6894e12a8c94d3ccc624dddcee50Mark Andrews
8bedd9647f4d6894e12a8c94d3ccc624dddcee50Mark Andrews *) Extend external module capability. To use this, you call
ca84283333d22c64abfbcb87872dd5e6d9172c5aMark Andrews configure with --with-module=path/to/mod1,path/to/mod2,etc.
ca84283333d22c64abfbcb87872dd5e6d9172c5aMark Andrews [Ryan Bloom]
ca84283333d22c64abfbcb87872dd5e6d9172c5aMark Andrews
ca84283333d22c64abfbcb87872dd5e6d9172c5aMark Andrews *) Backported the various "default charset" fixes from 1.3.12,
e6555b046798b1900e93c3208d26301872f50ca5Shane Kerr including the AddDefaultCharset directive. [Jim Jagielski]
e6555b046798b1900e93c3208d26301872f50ca5Shane Kerr
e6555b046798b1900e93c3208d26301872f50ca5Shane Kerr *) Added the capability to do ${ENVVAR} constructs in the
9a41f786b167a2a6df498d5e9c699f9835e1e9dcMark Andrews config file. E.g. 'ServerAdmin ${POSTMASTER}'. As commited
9a41f786b167a2a6df498d5e9c699f9835e1e9dcMark Andrews it does this on a line by line basis; i.e. if the envvar
9a41f786b167a2a6df498d5e9c699f9835e1e9dcMark Andrews expands to something with spaces you have to protect it
9a41f786b167a2a6df498d5e9c699f9835e1e9dcMark Andrews by adding quotes around it (Unless of course you expect it
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews to contains more than one argument. Alternatively you
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews can compile it on a per token basis; which is what people
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews usually expect by setting RESOLVE_ENV_PER_TOKEN. But this
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews hampers fancier hacks.
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews [Dirk-Willem van Gulik]
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews *) Changed the 'ErrorDocument' syntax in that it NO longer
bf98702c1941f368e54c499dd1ff59ee684cf125Mark Andrews supports the asymetric
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
65391557db5d7dc725ed3f2b759248fea31a2445Mark Andrews ErrorDocument 301 "Some message
e2c3f8059e77a8e11c4378d22e5d8e78b423a28fMark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews Note the opening " quote, without a closing quote. It now
e2c3f8059e77a8e11c4378d22e5d8e78b423a28fMark Andrews has either the following syntaxes
a7b7a4ebc38ec7460e95da6d3d70ffe7b59573b8Mark Andrews
a7b7a4ebc38ec7460e95da6d3d70ffe7b59573b8Mark Andrews ErrorDocument XXX /local/uri
1ca168b58e02fda534cad741a248e549e0f98d4dMark Andrews ErrorDocument XXX http://valid/url
6f1b09965f26ab0d6c38dec4a38f67bb34ebddceMark Andrews ErrorDocument XXX "Some Message"
23450c23fd19138cfad95b6c7728e2965abfc154Mark Andrews
de05f7d061abfe0ce555e0d0f2089f1261b031b6Mark Andrews The recognition heuristic is: if it has a space it
de05f7d061abfe0ce555e0d0f2089f1261b031b6Mark Andrews is a message. If it has no spaces and starts with a /
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews or is a valid URL then treat it that way. Otherwise it
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews is assumed to be a message.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews This breaks backward compatibility but makes live a hell
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews of a lot easier for GUI's and config file parsers.
c7e266b7e5675e12d1ca3cc929f24b3e86d41f8eEvan Hunt [Dirk-Willem van Gulik]
85db2b5fb360ccd2aeec1e6e22336b3d654bb39aMark Andrews
85db2b5fb360ccd2aeec1e6e22336b3d654bb39aMark Andrews *) Changed 'CacheNegotiatedDocs' from its present/not-present
85db2b5fb360ccd2aeec1e6e22336b3d654bb39aMark Andrews syntax into a 'on' or 'off' syntax. As it currently is the
a0749e59c0356381fdaea0fefe66256589ec8c99Mark Andrews only non nesting token which uses NO_ARGS and thus is an
a0749e59c0356381fdaea0fefe66256589ec8c99Mark Andrews absolute pain for any config interface automation. This
a0749e59c0356381fdaea0fefe66256589ec8c99Mark Andrews breaks backward compatibility. [Dirk-Willem van Gulik]
709220567fb820cf7e7625925449dadf86317629Mark Andrews
709220567fb820cf7e7625925449dadf86317629Mark Andrews *) Add ability to add external modules to the build process. This is
709220567fb820cf7e7625925449dadf86317629Mark Andrews done with --with-module=/path/to/module. Modules can only be added
fe6b6eebd74f7c5c20088f67081ae690228f9744Mark Andrews as static modules at this point.
adc3f2c0fdcc0a2bee469ffb0e7ae41b83cbf403Mark Andrews [Ryan Bloom]
adc3f2c0fdcc0a2bee469ffb0e7ae41b83cbf403Mark Andrews
31a2f82193a91e24f31454ff18e0b7723c066a74Mark AndrewsChanges with Apache 2.0a1
45deeddf4cf1ea57b8b493dcd2410f2332a36128Mark Andrews
8731a2bd2f5483f50d82cf28e315090b7ceeed54Mark Andrews *) Fix FreeBSD 3.3 core dump.
8731a2bd2f5483f50d82cf28e315090b7ceeed54Mark Andrews Basically, ap_initialize() needs to get called before
2de90cd1e20061bde684a21c3d852056a2e290d0Mark Andrews create_process(), since create_process() passes op_on structure
2de90cd1e20061bde684a21c3d852056a2e290d0Mark Andrews to semop() to get a lock, but op_on isn't initialized until
8a45eeebb8bdd4633bccfd9d77d9b50c1d337d54Mark Andrews ap_initialize() calls setup_lock(). Here is a slight
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews rearrangement to main() which calls ap_initialize() earlier...
8a45eeebb8bdd4633bccfd9d77d9b50c1d337d54Mark Andrews [Jeff Trawick <trawick@us.ibm.com>]
d4034b48fd112ef43933f1455b194b5249a88ee6Mark Andrews
d4034b48fd112ef43933f1455b194b5249a88ee6Mark Andrews *) Enable Apache to use sendfile/TransmitFile API
d4034b48fd112ef43933f1455b194b5249a88ee6Mark Andrews [Bill Stoddard, David Reid, Paul Reder]
d4034b48fd112ef43933f1455b194b5249a88ee6Mark Andrews
d4034b48fd112ef43933f1455b194b5249a88ee6Mark Andrews *) Re-Implement Win32 APR network I/O APIs and most of the file I/O
ee4bbc8454cc0cb36a25a7d26c5b47370f96d9b2Mark Andrews APIs.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Bill Stoddard]
ee4bbc8454cc0cb36a25a7d26c5b47370f96d9b2Mark Andrews
f568dad6c7ddaa732e6562a4b89fd2ac922d263bMark Andrews *) Make file I/O and network I/O writev/sendv APIs consistent.
03ec481ee88f4ab72af6abb4efe096fe2c661d60Mark Andrews Eliminate use of ap_iovec_t and use Posix struct iovec.
03ec481ee88f4ab72af6abb4efe096fe2c661d60Mark Andrews Use seperate variable on ap_writev to set the number of iovecs
03ec481ee88f4ab72af6abb4efe096fe2c661d60Mark Andrews passed in and number of bytes written.
f568dad6c7ddaa732e6562a4b89fd2ac922d263bMark Andrews [Bill Stoddard]
8e74bfb6045d78af71b54a2934823b334b3e423aMark Andrews
8e74bfb6045d78af71b54a2934823b334b3e423aMark Andrews *) Adapt file iol to use APR functions. Replaced ap_open_file()
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews with ap_create_file_iol(). ap_create_file_iol() requires that
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews the file be opened prior to the call using ap_open().
88a4de3c24caf71426bf06e42ce18f6099d7a439Mark Andrews [Bill Stoddard]
d91df50b670d92d0ab784b741e2ee9af7f2dc4a1Mark Andrews
3eab85ca54b681504d772b1d6bb3ccf4f08d4305Mark Andrews *) Port mod_include and mod_cgi to 2.0
3eab85ca54b681504d772b1d6bb3ccf4f08d4305Mark Andrews [Paul Reder, Bill Stoddard]
3eab85ca54b681504d772b1d6bb3ccf4f08d4305Mark Andrews
c5adbd722da0908f91be4fb710c082b4b68ec782Mark Andrews *) ap_send{,v}, ap_recv, ap_sendfile API clarification --
c5adbd722da0908f91be4fb710c082b4b68ec782Mark Andrews bytes_read/bytes_written is always valid (never -1). Plus
557bcc2092642b2d4668c9b08872c9f2bb88bddbMark Andrews some fixes to buff.c to correct problems introduced by the
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews errno => ap_status_t changes a while back. Plus a fix to
557bcc2092642b2d4668c9b08872c9f2bb88bddbMark Andrews chunked encoding introduced right at the beginning of 2.0.
c60eaaf9b3c6bb4d693cdb5f68acdfacf076e1fdMark Andrews [Dean Gaudet]
c60eaaf9b3c6bb4d693cdb5f68acdfacf076e1fdMark Andrews
634a4da58460979fa0fcad5304b810d189f9cf49Mark Andrews *) Revamped UNIX build system to use autoconf and libtool.
634a4da58460979fa0fcad5304b810d189f9cf49Mark Andrews [Manoj Kasichainula, Sascha Schumann]
634a4da58460979fa0fcad5304b810d189f9cf49Mark Andrews
634a4da58460979fa0fcad5304b810d189f9cf49Mark Andrews *) port mod_rewrite to 2.0. [Paul J. Reder <rederpj@raleigh.ibm.com>]
c0720b90ed6e673264b17eb752d873a89cbd6db5Mark Andrews
c0720b90ed6e673264b17eb752d873a89cbd6db5Mark Andrews *) More rigorous checking of Host: headers to fix security problems
c0720b90ed6e673264b17eb752d873a89cbd6db5Mark Andrews with mass name-based virtual hosting (whether using mod_rewrite
576e48e28aae9f28b8e6daa2aabc839bb5c520e3Mark Andrews or mod_vhost_alias).
c06cb907737eb7ce128c92dd729c73798733f37aMark Andrews [Ben Hyde, Tony Finch]
c06cb907737eb7ce128c92dd729c73798733f37aMark Andrews
6e5e27c38d86f2338688f5123d2ff84558956dd0Mark Andrews *) Add back support for UseCanonicalName in <Directory> containers.
6e5e27c38d86f2338688f5123d2ff84558956dd0Mark Andrews [Manoj Kasichainula]
6e5e27c38d86f2338688f5123d2ff84558956dd0Mark Andrews
5059b393e80cda6beffb74f2f30d7329502c41e6Mark Andrews *) Added APLOG_STARTUP log type. This allows us to write an error
5059b393e80cda6beffb74f2f30d7329502c41e6Mark Andrews message without any of the date and time information. As a part
5059b393e80cda6beffb74f2f30d7329502c41e6Mark Andrews of this change, I also removed all of the calls to fprintf(stderr
c16aed9c469a986f1b84e457db4a8c4d2da01ca3Mark Andrews and replaced them with calls to ap_log_error using APLOG_STARTUP
c16aed9c469a986f1b84e457db4a8c4d2da01ca3Mark Andrews writing to stderr is no longer portable, because we don't direct
c16aed9c469a986f1b84e457db4a8c4d2da01ca3Mark Andrews stderr to the error log on all platforms.
c16aed9c469a986f1b84e457db4a8c4d2da01ca3Mark Andrews [Ryan Bloom]
dd19fbaf817f974c24ddfa1d276d7594d5b18750Mark Andrews
dd19fbaf817f974c24ddfa1d276d7594d5b18750Mark Andrews *) Convert error logging functions to take errno as an argument.
dd19fbaf817f974c24ddfa1d276d7594d5b18750Mark Andrews This makes our error logs more portable, because some Windows API's
f408773d47b25594d1302525a4db6efb84b1843cMark Andrews don't set errno. This change allows us to still output a valid
f408773d47b25594d1302525a4db6efb84b1843cMark Andrews message on all of our platforms.
cd315d4cf631753c94f27fabaa42a37a27d30530Mark Andrews [Ryan Bloom]
cd315d4cf631753c94f27fabaa42a37a27d30530Mark Andrews
cd315d4cf631753c94f27fabaa42a37a27d30530Mark Andrews *) mod_mime_magic runs in 2.0-dev now.
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews [Paul Reder <rederpj@raleigh.ibm.com>]
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews *) sendfile has been added to APR.
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews [John Zedlewski <zedlwski@Princeton.EDU>]
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews *) buff.c has been converted to no longer use errno.
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews [Manoj Kasichainula]
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews *) mod_speling runs in 2.0-dev now: a bug in readdir_r handling and
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews interface adaption to APR functions did it. [Martin Kraemer]
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews *) Support DSOs properly on 32-bit HP-UX 11.0
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews [Dilip Khandekar <dilip@cup.hp.com>]
69826a6a2f89ecb2b280eeb6d4adb4826bf0db72Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Updated MM in APR source tree from version 1.0.8 to 1.0.11
5888f62c204a99da60d7854fe01eda4960fb3b36Mark Andrews [Ralf S. Engelschall]
5888f62c204a99da60d7854fe01eda4960fb3b36Mark Andrews
57668dc1bb0eb063e9037ff07ddbfd520e0d7186Mark Andrews *) Cleaned APR build environment integration and bootstrap APR
fd23bc509d5fddb91247a2a1ca52d432969067e5Mark Andrews automatically for developers from src/Configure.
7c200913aa7e55bbe28de456bb593c1e05bf6f79Mark Andrews [Ralf S. Engelschall]
07072c9456f1112705db701bb35f12dbdcb217b0Mark Andrews
07072c9456f1112705db701bb35f12dbdcb217b0Mark Andrews *) Fixed building of src/support/htpasswd.c
07072c9456f1112705db701bb35f12dbdcb217b0Mark Andrews [Ralf S. Engelschall]
afd002e89aadf30181155566544480349e70339dMark Andrews
afd002e89aadf30181155566544480349e70339dMark Andrews *) When generating the Location: header, mod_speling forgot
afd002e89aadf30181155566544480349e70339dMark Andrews to escape the spelling-fixed uri. (Forw-Port from 1.3)
7b52c2ad3c9ca65712e962ddc803e34641f2bc07Mark Andrews [Martin Kraemer]
ba5d2a97ee0cd2cc9d4b9e7e344ae8f607cc2994Mark Andrews
ba5d2a97ee0cd2cc9d4b9e7e344ae8f607cc2994Mark Andrews *) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
6133734cecb05630e32edb63031b95d333df8e48Mark Andrews
6133734cecb05630e32edb63031b95d333df8e48Mark Andrews *) Change all pools to APR contexts. This is the first step to
6133734cecb05630e32edb63031b95d333df8e48Mark Andrews incorporating APR into Apache. [Ryan Bloom]
47ee25b1f58a5924c51b59194b84621b9b7b6ba5Mark Andrews
47ee25b1f58a5924c51b59194b84621b9b7b6ba5Mark Andrews *) Move "handler not found" warning message to below the check
47ee25b1f58a5924c51b59194b84621b9b7b6ba5Mark Andrews for a wildcard handler. [Dirk <dirkm@teleport.com>, Roy Fielding]
32391301db6f532ad17033f188d4540ae3f409f1Mark Andrews PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
32391301db6f532ad17033f188d4540ae3f409f1Mark Andrews
32391301db6f532ad17033f188d4540ae3f409f1Mark Andrews *) Support line-continuation feature in config.option file and
0cedbe4ab56e00d5827941697418476318cbdeb3Mark Andrews allow the loading of multiple option sections at once via
0cedbe4ab56e00d5827941697418476318cbdeb3Mark Andrews ``--with-option=<section1>,<section2>,...''
0cedbe4ab56e00d5827941697418476318cbdeb3Mark Andrews [Ralf S. Engelschall]
0cedbe4ab56e00d5827941697418476318cbdeb3Mark Andrews
f05a4bf2bfac3aaff0462560b2793cd99a85a297Mark Andrews *) Rebuilt CVS repository with Apache 1.3.9 as basis. [Roy Fielding]
0cedbe4ab56e00d5827941697418476318cbdeb3Mark Andrews
f05a4bf2bfac3aaff0462560b2793cd99a85a297Mark AndrewsChanges with Apache MPM
bf45f72ed319628eebce60c368177320943d001fMark Andrews
bf45f72ed319628eebce60c368177320943d001fMark Andrews *) Use asynchronous AcceptEx() and a completion port to accept and
bf45f72ed319628eebce60c368177320943d001fMark Andrews dispatch connections to threads in Windows NT/2000.
e078f002c06b6b26e2d7749a4f9e3907f3e85de3Mark Andrews [Bill Stoddard]
af1e00675fa573fec779e9a01aac5bedb99f0fd6Mark Andrews
af1e00675fa573fec779e9a01aac5bedb99f0fd6Mark Andrews *) Implement WINNT Win32 MPM from original Win32 code in http_main.c
af1e00675fa573fec779e9a01aac5bedb99f0fd6Mark Andrews [Bill Stoddard]
d1199d9c06ba470fa4779981bea2f8f7403e8eabMark Andrews
d1199d9c06ba470fa4779981bea2f8f7403e8eabMark Andrews *) Implement the APACI --with-option facility
d1199d9c06ba470fa4779981bea2f8f7403e8eabMark Andrews (per default used the config.option file).
7c5dfcc60a7ee41ae5ba15a3e1fe337af3bef1a9Mark Andrews [Ralf S. Engelschall]
7c5dfcc60a7ee41ae5ba15a3e1fe337af3bef1a9Mark Andrews
7c5dfcc60a7ee41ae5ba15a3e1fe337af3bef1a9Mark Andrews *) MPM BEOS port. [David Reid <abb37@dial.pipex.com>]
7c5dfcc60a7ee41ae5ba15a3e1fe337af3bef1a9Mark Andrews
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews *) Start to implement module-defined hooks that are a) fast and b) typesafe.
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews Replace pre_connection module call with a register_hook call and
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews implement pre_connection as a hook. The intent is that these hooks will
fc8197c3ce31d81cd5e23703680572fac09a2e8aMark Andrews be extended to allow Apache to be multi-protocol, and also to allow the
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews calling order to be specified on a per-hook/per-module basis.
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews [Ben Laurie]
0f8c9b5eed7e8714ceb7d6d3675555df9c5f6350Mark Andrews
bc6af069c80ca33a5619d71d57859724cab1f4c4Mark Andrews *) Implement mpm_* methods as "modules". Each method gets its own
bc6af069c80ca33a5619d71d57859724cab1f4c4Mark Andrews subdir in src/modules (eg: src/modules/prefork). Selection
bc6af069c80ca33a5619d71d57859724cab1f4c4Mark Andrews of method uses Rule MPM_METHOD. [Jim Jagielski]
bc6af069c80ca33a5619d71d57859724cab1f4c4Mark Andrews
4bb0f1046f3f3c26539ff91e28b3c8872519df17Mark Andrews *) Port the hybrid server from the apache-apr repository as
4bb0f1046f3f3c26539ff91e28b3c8872519df17Mark Andrews mpm_mpmt_pthread. [Manoj Kasichainula]
68df4d65c624a9ca06e94fc67ef915adf2ec97beMark Andrews
ab6e5af4cd644b174709f95c2702ec4c442aa755Mark Andrews *) os/unix/unixd.[ch]: detach, setuid, setgid, stuff which will be common
ab6e5af4cd644b174709f95c2702ec4c442aa755Mark Andrews amongst the unix MPMs.
f3139b9d763cbfd3f8dbf1062191a688ed5195e4Mark Andrews
f3139b9d763cbfd3f8dbf1062191a688ed5195e4Mark Andrews *) mpm_prefork: throw away all the alarm/timeout crud; and clean up the
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews signal handling for the new world order. [Dean Gaudet]
f3139b9d763cbfd3f8dbf1062191a688ed5195e4Mark Andrews
79e3817e2c0f1b017643638dc3876ba41da94335Mark Andrews *) Crude ap_thread_mutex abstraction so that we get the pthread stuff out
79e3817e2c0f1b017643638dc3876ba41da94335Mark Andrews of alloc.c for now. [Dean Gaudet]
79e3817e2c0f1b017643638dc3876ba41da94335Mark Andrews
2d78cc9624dd735ffdc634e6c39dd30bddfb95f7Mark Andrews *) Handle partial large writes correctly. [Ben Laurie]
2d78cc9624dd735ffdc634e6c39dd30bddfb95f7Mark Andrews
2d78cc9624dd735ffdc634e6c39dd30bddfb95f7Mark Andrews *) Eliminate conn_rec's pointer to server. All it knows is the base server
eea8cd8d1a9b2762480fab793972d1cefbc7cf90Mark Andrews based on IP/port. [Ben Laurie]
eea8cd8d1a9b2762480fab793972d1cefbc7cf90Mark Andrews
eea8cd8d1a9b2762480fab793972d1cefbc7cf90Mark Andrews *) Port a bunch of modules to the new module structure.
9860862cedd41ffaf69e7806e8f8959263552721Mark Andrews ["Michael H. Voase" <mvoase@midcoast.com.au>]
9860862cedd41ffaf69e7806e8f8959263552721Mark Andrews
9860862cedd41ffaf69e7806e8f8959263552721Mark Andrews *) I/O layering and BUFF revamp. See docs/buff.txt. [Dean Gaudet]
25e2824175eb0c186df3ab0737c83d322410594cMark Andrews
25e2824175eb0c186df3ab0737c83d322410594cMark Andrews *) Basic restructuring to introduce the MPM concept; includes various
25e2824175eb0c186df3ab0737c83d322410594cMark Andrews changes to the module API... better described by
25e2824175eb0c186df3ab0737c83d322410594cMark Andrews docs/initial_blurb.txt. [Dean Gaudet]
63aaac8137bd1d86aab8c950fb066bb522a26e5bMark Andrews
63aaac8137bd1d86aab8c950fb066bb522a26e5bMark AndrewsChanges with Apache pthreads
fe3220466e3c23cd2c22a59a4db46bc97ce0827dMark Andrews
fe3220466e3c23cd2c22a59a4db46bc97ce0827dMark Andrews *) New buff option added: BO_TIMEOUT. It describes the timeout for
fe3220466e3c23cd2c22a59a4db46bc97ce0827dMark Andrews buff operations (generally over a network).
40aadb6a143e0f2d351e743dce43cfc894d4d855Mark Andrews [Dean Gaudet, Ryan Bloom, Manoj Kasichainula]
40aadb6a143e0f2d351e743dce43cfc894d4d855Mark Andrews
40aadb6a143e0f2d351e743dce43cfc894d4d855Mark Andrews *) Created http_accept abstraction. Added 4 new functions (not exported):
65b26a4dc8c6c16d0a5ccb03b67cf968c77d6570Mark Andrews init_accept(), begin_accepting_requests(), get_request(),
65b26a4dc8c6c16d0a5ccb03b67cf968c77d6570Mark Andrews stop_accepting_requests() [Bill Stoddard]
65b26a4dc8c6c16d0a5ccb03b67cf968c77d6570Mark Andrews
c58821f7100821e1d4e4bbace727b988bb3e0623Mark Andrews *) Fix to ap_rprintf call that allows mod_info to work properly.
c58821f7100821e1d4e4bbace727b988bb3e0623Mark Andrews [James Morris <jmorris@intercode.com.au>]
77397daf05511dc737eeec159badc05f11bfadddMark Andrews
337e70ead93aafec305ac0a7a62090339543b8d1Mark Andrews *) user and ap_auth_type fields were moved from connection_rec to
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews request_rec. [Ryan Bloom]
337e70ead93aafec305ac0a7a62090339543b8d1Mark Andrews
f0a1b8c85792d4e04716f995a2b2a8ca73f8367dMark Andrews *) Removed the ap_block_alarms and ap_unblock_alarm calls. These aren't
a5d7c242b564cbd3cebc0dd27c19d9093d38b3abMark Andrews needed in a threaded server.
a5d7c242b564cbd3cebc0dd27c19d9093d38b3abMark Andrews
1de5f8f80930dc322688010740c7dfe56eb035b0Mark Andrews *) Initial pthread implementation from from Dean's apache-nspr code.
1de5f8f80930dc322688010740c7dfe56eb035b0Mark Andrews [Bill Stoddard, Ryan Bloom]
1de5f8f80930dc322688010740c7dfe56eb035b0Mark Andrews
7a253b705ccbc30821253e7a124658623f10c499Mark Andrews
7a253b705ccbc30821253e7a124658623f10c499Mark AndrewsChanges with Apache 1.3.9
f6476fa52240e3c8278ac4a27fa2cc8a5b7a3e3bMark Andrews
f6476fa52240e3c8278ac4a27fa2cc8a5b7a3e3bMark Andrews *) Remove bogus error message when a redirect doesn't set Location.
f6476fa52240e3c8278ac4a27fa2cc8a5b7a3e3bMark Andrews Instead, use an empty string to avoid coredump if the error message
cd1e58c339b2a6709d543a525de0c995bf8b5868Mark Andrews was supposed to include a location. [Roy Fielding]
cd1e58c339b2a6709d543a525de0c995bf8b5868Mark Andrews
cd1e58c339b2a6709d543a525de0c995bf8b5868Mark Andrews *) Don't allow configure to include mod_auth_digest unless it is
a05f23d07e1b60a1d88119678111a47014480611Mark Andrews explicitly requested, even if the user asked for all modules.
a05f23d07e1b60a1d88119678111a47014480611Mark Andrews [Roy Fielding]
a05f23d07e1b60a1d88119678111a47014480611Mark Andrews
a05f23d07e1b60a1d88119678111a47014480611Mark Andrews *) Translate module names to dll names for OS/2 so that they are no more
429e23d2f56d28d86439f75c13cda2b4ac5ab67bMark Andrews than 8 characters long and have an extension of "dll" instead of "so".
429e23d2f56d28d86439f75c13cda2b4ac5ab67bMark Andrews [Brian Havard]
c5c825bf07a00a2478afd9400e9f8534457980b0Mark Andrews
c5c825bf07a00a2478afd9400e9f8534457980b0Mark Andrews *) Print out pointer to Rule DEV_RANDOM when truerand lib not found.
c5c825bf07a00a2478afd9400e9f8534457980b0Mark Andrews Fix test-compile check to check for randbyte instead of trand32.
aaa42824d2d1f5cc4add01f0191e3784ee0f7396Mark Andrews Use ap_base64encode_binary/decode instead of copy in mod_auth_digest.c
43da7565913277c020ded34d6ee2139998b743b6Mark Andrews and tweak to make Amaya happier. [Ronald Tschal�r]
43da7565913277c020ded34d6ee2139998b743b6Mark Andrews
43da7565913277c020ded34d6ee2139998b743b6Mark Andrews *) Ensure that the installed expat include files are world readable,
c1297b6025bf8ccdc832b7bca705da1d4cf2944eMark Andrews just like the other header files. [Martin Kraemer]
c1297b6025bf8ccdc832b7bca705da1d4cf2944eMark Andrews
25820cf1d110ec22cec5f6be5257aabe6853ca92Evan Hunt *) Fixed generated AddModule adjustments in APACI's `configure' script
25820cf1d110ec22cec5f6be5257aabe6853ca92Evan Hunt in order to allow (new) modules like mod_vhost_alias to be handled
25820cf1d110ec22cec5f6be5257aabe6853ca92Evan Hunt correctly (which was touched by the adjustments for mod_alias).
99cce386a489671727a737b3748937cf3a0676e8Evan Hunt [Ralf S. Engelschall]
99cce386a489671727a737b3748937cf3a0676e8Evan Hunt
99cce386a489671727a737b3748937cf3a0676e8Evan Hunt *) For binary builds, add -R flag to apachectl to work around the lack of
99cce386a489671727a737b3748937cf3a0676e8Evan Hunt an absolute path to the ./libexec directory where the libhttp.ep file
819b98479eff49ed93f57f4d65eb0ffe72136adcMark Andrews is needed for SHARED_CORE architectures. [Randy Terbush]
819b98479eff49ed93f57f4d65eb0ffe72136adcMark Andrews
819b98479eff49ed93f57f4d65eb0ffe72136adcMark Andrews *) WIN32: Create the CGI script process as DETACHED. This may solve the
819b98479eff49ed93f57f4d65eb0ffe72136adcMark Andrews problem observed by some Win95/98 users where they get CGI script
819b98479eff49ed93f57f4d65eb0ffe72136adcMark Andrews output sent to the console. [Bill Stoddard]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
113e0b7819103f02d5a16bad1b7356587d866ac2Mark Andrews *) Fix (re)naming in the uuencode/decode section. The ap/ap_
113e0b7819103f02d5a16bad1b7356587d866ac2Mark Andrews routines are now called ap_base64* and are 'plain' (i.e., no
113e0b7819103f02d5a16bad1b7356587d866ac2Mark Andrews pool access or anything clever). Inside util.c the routines acting
6dfc78fab61fafc9bffdc3cbc331cc996bfa2198Mark Andrews like pstrdup are called ap_pbase64encode() and ap_pbase64decode().
6dfc78fab61fafc9bffdc3cbc331cc996bfa2198Mark Andrews The oddly named ap_uuencode(), ap_uudecode() are kept around for
6dfc78fab61fafc9bffdc3cbc331cc996bfa2198Mark Andrews now but deprecated. [dirkx]
6dfc78fab61fafc9bffdc3cbc331cc996bfa2198Mark Andrews
65085946d4f92481699678e276e3ced04bcfdafbMark Andrews *) Clean up the base64 and SHA1 additions and make sure they are
65085946d4f92481699678e276e3ced04bcfdafbMark Andrews represented in the ApacheCore.def, ApacheCoreOS2.def, and httpd.exp
65085946d4f92481699678e276e3ced04bcfdafbMark Andrews files. [Roy Fielding]
b5f690e1618cffeec15b3bcb9525443206fb7007Mark Andrews
b5f690e1618cffeec15b3bcb9525443206fb7007Mark Andrews *) WIN32: Migrate to InstallShield 5.5 and provide a bit more error
b5f690e1618cffeec15b3bcb9525443206fb7007Mark Andrews checking. Allow compiling on VS 6.0. [Randy Terbush]
37d373d88631c7be57a30bf4a49c824a9195781fMark Andrews
37d373d88631c7be57a30bf4a49c824a9195781fMark Andrews *) Fixed assumption of absolute paths in binbuild.sh. [Tony Finch]
37d373d88631c7be57a30bf4a49c824a9195781fMark Andrews
b130bf8b4ebdabd5c94eb5c6522a9971997b6ac9Mark Andrews *) Use TestCompile to search for the truerand library (rather than blindly
b130bf8b4ebdabd5c94eb5c6522a9971997b6ac9Mark Andrews assuming its existence). If it is not found, complain (but do not
072eaf055b7fa0d8abe96146fbb9152b14946c84Mark Andrews exit - yet). [Martin Kraemer]
072eaf055b7fa0d8abe96146fbb9152b14946c84Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) We forgot to add the new exported function names to
7a3c2d189e811933c48aace1900a868dffd42f5fMark Andrews src/support/httpd.exp. [Bill Stoddard, Randy Terbush]
7a3c2d189e811933c48aace1900a868dffd42f5fMark Andrews
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews *) Add description of -T command-line option to usage().
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews [Ralf S. Engelschall]
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews *) For "some" platforms (notably, EBCDIC based ones), libos needs to be
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews searched only AFTER libap has been searched, because libap needs
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews some symbols from libos. [Martin Kraemer]
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews
a56f5ada432128085e4a06815328023ee0c9610dMark Andrews *) Fix conflict with original mod_digest related to the symbol of the
4259095c8058beb9b475f1884dbeda375979e6f6Mark Andrews module dispatch list (which has to be unique for DSO and follow the
4259095c8058beb9b475f1884dbeda375979e6f6Mark Andrews usual conventions for the installation procedure).
4259095c8058beb9b475f1884dbeda375979e6f6Mark Andrews [Ralf S. Engelschall]
c53a5699c8242636fd913a4d07b4447efebe3bbfMark Andrews
c53a5699c8242636fd913a4d07b4447efebe3bbfMark Andrews *) Add a dbm-library check for the "usual places" (-ldbm, -lndbm, -ldb)
c53a5699c8242636fd913a4d07b4447efebe3bbfMark Andrews for other platforms as well. [Martin Kraemer]
8c731c1219f1698f15bf5b1fcf6bc301cfd9bc42Mark Andrews
8c731c1219f1698f15bf5b1fcf6bc301cfd9bc42Mark Andrews *) Make ap_sha1.c compile for EBCDIC platforms: replace remaining LONG
a630d60b8b628cb2ce46b906dc7b1a5b83b74ed5Mark Andrews types by AP_LONG and replace reference to renamed variable 'ubuf'
a630d60b8b628cb2ce46b906dc7b1a5b83b74ed5Mark Andrews by 'buffer'. [Martin Kraemer]
a630d60b8b628cb2ce46b906dc7b1a5b83b74ed5Mark Andrews
b53871d8592a0bfeacdd06ccba46d75aa96e4fecMark AndrewsChanges with Apache 1.3.8 [not released]
b53871d8592a0bfeacdd06ccba46d75aa96e4fecMark Andrews
b53871d8592a0bfeacdd06ccba46d75aa96e4fecMark Andrews *) Flush the output buffer immediately after sending an error or redirect
9dabd0455ca923b5b02f74c1e999702ddc9c6fd2Mark Andrews response, since the result may be needed by the client to abort a
9dabd0455ca923b5b02f74c1e999702ddc9c6fd2Mark Andrews long data transfer or restart a series of pipelined requests.
9dabd0455ca923b5b02f74c1e999702ddc9c6fd2Mark Andrews [Tom Vaughan <tvaughan@aventail.com>, Roy Fielding]
9dabd0455ca923b5b02f74c1e999702ddc9c6fd2Mark Andrews
58f32ac26ea330054f7b85579cd93a6376168fe7Mark Andrews *) PORT: Improved compilation and DSO support on Sequent DYNIX/ptx.
58f32ac26ea330054f7b85579cd93a6376168fe7Mark Andrews [Ian Turner <iant@sequent.com>] PR#4735
58f32ac26ea330054f7b85579cd93a6376168fe7Mark Andrews
58f32ac26ea330054f7b85579cd93a6376168fe7Mark Andrews *) Local struct mmap in http_core.c conflicted with system structure
bde20a0436dff13e2299cfd4230ddec54d396d02Mark Andrews name on DYNIX -- changed to mmap_rec. [Roy Fielding] PR#4735
bde20a0436dff13e2299cfd4230ddec54d396d02Mark Andrews
0deee29113e5919c88f341ec3a181b70f7c905ccMark Andrews *) Added updated mod_digest as modules/experimental/mod_auth_digest.
0deee29113e5919c88f341ec3a181b70f7c905ccMark Andrews [Ronald Tschal�r <ronald@innovation.ch>]
0deee29113e5919c88f341ec3a181b70f7c905ccMark Andrews
340a05967aaad53d90694426c33d81b490b0f915Mark Andrews *) Fix a memory leak where the module counts were getting messed
340a05967aaad53d90694426c33d81b490b0f915Mark Andrews up across restarts. [David Harris <dharris@drh.net>]
340a05967aaad53d90694426c33d81b490b0f915Mark Andrews
394f4aec2189750d7f861d00f97fe28ffcd9f659Mark Andrews *) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
394f4aec2189750d7f861d00f97fe28ffcd9f659Mark Andrews properly in mod_access.
394f4aec2189750d7f861d00f97fe28ffcd9f659Mark Andrews ["Paul J. Reder" <rederpj@raleigh.ibm.com>] PR#4770
2e676167cc8cbb2e6dbb54e9859098dd5b9cd5c8Mark Andrews
2e676167cc8cbb2e6dbb54e9859098dd5b9cd5c8Mark Andrews *) RewriteLock/RewriteMap didn't work properly with virtual hosts.
2e676167cc8cbb2e6dbb54e9859098dd5b9cd5c8Mark Andrews [Dmitry Khrustalev <dima@bog.msu.su>] PR#3874
4098271a81b3e965da14f77c893232a0b6be22f3Mark Andrews
4098271a81b3e965da14f77c893232a0b6be22f3Mark Andrews *) PORT: Support for compaq/tandem/com.
4098271a81b3e965da14f77c893232a0b6be22f3Mark Andrews [Michael Ottati <michael.ottati@compaq.com>, dirkx]
4098271a81b3e965da14f77c893232a0b6be22f3Mark Andrews
57eb7efe13b67455e8c6a08cf080afb3de2ac622Mark Andrews *) Added SHA1 password encryption support to easy migration from
7228a4d9ca1f1b868e257a28de86c6a1f21e9ffeMark Andrews Netscape servers. See support/SHA1 for more information.
7228a4d9ca1f1b868e257a28de86c6a1f21e9ffeMark Andrews Caused the separation of ap_md5.c into md5, sha1 and a general
5dcc67a0fff89e7ebf051f64b6b987862c331a04Mark Andrews ap_checkpass.c with just a validate_passwd routine. Added a
5dcc67a0fff89e7ebf051f64b6b987862c331a04Mark Andrews couple of flags to support/htpasswd. Some reuse of the to64()
5dcc67a0fff89e7ebf051f64b6b987862c331a04Mark Andrews function; hence renamed to ap_to64().
8363ddb32da86811663d12d0b2c61a8ea2fa0eaeMark Andrews [Dirk-Willem van Gulik, Clinton Wong <clintdw@netcom.com>]
8363ddb32da86811663d12d0b2c61a8ea2fa0eaeMark Andrews
8363ddb32da86811663d12d0b2c61a8ea2fa0eaeMark Andrews *) Change for EBCDIC platforms (TPF and BS2000) to correctly deal
cc2720da38bb7bab2bf283de56dd90e9093d7f00Mark Andrews with ASCII/EBCDIC conversions in "ident" query.
cc2720da38bb7bab2bf283de56dd90e9093d7f00Mark Andrews [David McCreedy <McCreedy@us.ibm.com>]
cc2720da38bb7bab2bf283de56dd90e9093d7f00Mark Andrews
10fc76d48aa7ecb8a7242970585ba154b368f97eMark Andrews *) Get rid of redefinition warning on MAC_OS_X_SERVER platform.
10fc76d48aa7ecb8a7242970585ba154b368f97eMark Andrews Change "Power Macintosh" to Power* so if uname prints "Power Book"
5cc6a0f7dae472e5c2022b2cbb5343ec9f7f4942Mark Andrews we're still happy on Rhapsody platforms. [Wilfredo Sanchez]
4490e14feb50cd59a62ce9f348ff53b68a0594ebMark Andrews
5cc6a0f7dae472e5c2022b2cbb5343ec9f7f4942Mark Andrews *) Fix SIGSEGV on some systems because the Vary fix below included
1e70c9a36639bb1e8d537dcefa3cd12a7bb39db0Mark Andrews a call to table_do with a variable argument list that was not
1e70c9a36639bb1e8d537dcefa3cd12a7bb39db0Mark Andrews NULL terminated. Replaced with better implementation. [Roy Fielding]
1e70c9a36639bb1e8d537dcefa3cd12a7bb39db0Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark AndrewsChanges with Apache 1.3.7 [not released]
9baec3ca233efe8ffca6fbafea5c75021adff03cMark Andrews
96ea71632887c58a9d00f47eb318bf76b35903c3Mark Andrews *) The "Vary" response header field is now sanitised right before
96ea71632887c58a9d00f47eb318bf76b35903c3Mark Andrews the header is sent back to the client. Multiple "Vary" fields
f31446e6b5925395fce4f62adf71f7ad70cea6ceMark Andrews are combined, and duplicate tokens (e.g., "Vary: host, host" or
f31446e6b5925395fce4f62adf71f7ad70cea6ceMark Andrews "Vary: host, negotiate, host, accept-language") are reduced to
f31446e6b5925395fce4f62adf71f7ad70cea6ceMark Andrews single instances. This is a better solution than the force-no-vary
0961ac0868e7d60e7cb665160f6d3717e1da5228Mark Andrews one (which is still valid for clients that can't cope with Vary
0961ac0868e7d60e7cb665160f6d3717e1da5228Mark Andrews at all). PR#3118 [Dean Gaudet, Roy Fielding, Ken Coar]
0961ac0868e7d60e7cb665160f6d3717e1da5228Mark Andrews
3d697a7eddf375586435f8fb6e1440fb3ce9058dMark Andrews *) Portability changes for BeOS. [David Reid abb37@dial.pipex.com]
3d697a7eddf375586435f8fb6e1440fb3ce9058dMark Andrews
8943ff626fa337419cbffad6a4a910c7d99509f4Mark Andrews *) Link DSO's with "gcc -shared" instead of "ld -Bshareable" at
8943ff626fa337419cbffad6a4a910c7d99509f4Mark Andrews least on Linux and FreeBSD for now.
281bab0f36eaedc56f859721fbdf45568b71cd60Mark Andrews [Rasmus Lerdorf]
281bab0f36eaedc56f859721fbdf45568b71cd60Mark Andrews
281bab0f36eaedc56f859721fbdf45568b71cd60Mark Andrews *) Win32: More apache -k restart work. Restarts are now honored
281bab0f36eaedc56f859721fbdf45568b71cd60Mark Andrews immediately and connections in the listen queue are -not- lost.
5cd4555ad444fd391002ae32450572054369fd42Rob Austein This is made possible by the use of the WSADuplicateSocket()
5cd4555ad444fd391002ae32450572054369fd42Rob Austein call. The listeners are opened in the parent, duplicated, then
8eb4eca37538183edb36db88580b5232f15931b0Mark Andrews the duplicates are passed to the child. The original listen sockets
8eb4eca37538183edb36db88580b5232f15931b0Mark Andrews are not closed by the parent across a restart, thus the listen queue
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews is preserved.
305227476756aecb11cebbc811dba88a2d147b34Mark Andrews [Bill Stoddard <stoddard@raleigh.ibm.com>]
e7d32e57a5c8600893f91ec08f74117c983f8b8dMark Andrews
e7d32e57a5c8600893f91ec08f74117c983f8b8dMark Andrews *) Fix handling of case when a client has sent "Expect: 100-continue"
e7d32e57a5c8600893f91ec08f74117c983f8b8dMark Andrews and we are going to respond with an error, but get stuck waiting to
fa3d0b9991ea0d8344881c5dd4609d9c33314b9bMark Andrews discard the body in the pointless hope of preserving the connection.
e3f66e1617f9fca7313e4005b8c3c611551906d1Mark Andrews [Roy Fielding, Joe Orton <jeo101@york.ac.uk>] PR#4499, PR#3806
ed954ce73b1c712b24eab945190028871433f803Mark Andrews
ed954ce73b1c712b24eab945190028871433f803Mark Andrews *) Fix 'configure' to work correctly with SysV-based versions of
ed954ce73b1c712b24eab945190028871433f803Mark Andrews 'tr' (consistent with Configure's use as well). [Jim Jagielski]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
29747dfe5e073a299b3681e01f5c55540f8bfed7Mark Andrews *) apxs: Add "-S var=val" option which allows for override of CFG_*
29747dfe5e073a299b3681e01f5c55540f8bfed7Mark Andrews built-in values. Add "-e" option which works like -i but doesn't
186e7f37c9fc985a7a7264cc8170e48a25bed434Mark Andrews install the DSO; useful for editing httpd.conf with apxs. Fix
186e7f37c9fc985a7a7264cc8170e48a25bed434Mark Andrews editing code so that multiple invocations of apxs -a will not
186e7f37c9fc985a7a7264cc8170e48a25bed434Mark Andrews create duplicate LoadModule/AddModule entries; apxs can now be
1372e172d0e0b08996376b782a9041d1e3542489Mark Andrews used to re- enable/disable a module. [Wilfredo Sanchez]
1372e172d0e0b08996376b782a9041d1e3542489Mark Andrews
1372e172d0e0b08996376b782a9041d1e3542489Mark Andrews *) Win32: Update the server to use Winsock 2. Specifically, link with
8d709e3ee443222cd35e44eadc9a4c0a8d92fec2Rob Austein ws2_32.lib rather than wsock32.lib. This gives us access to
8d709e3ee443222cd35e44eadc9a4c0a8d92fec2Rob Austein WSADuplcateSocket() in addition to some other enhanced comm APIs.
23235c00eda9089f38ace0a1371fed9a466ea5ddMark Andrews Win 95 users may need to update their TCP/IP stack to pick up
23235c00eda9089f38ace0a1371fed9a466ea5ddMark Andrews Winsock 2. (See http://www.microsoft.com/windows95/downloads/)
23235c00eda9089f38ace0a1371fed9a466ea5ddMark Andrews [Bill Stoddard stoddard@raleigh.ibm.com]
23235c00eda9089f38ace0a1371fed9a466ea5ddMark Andrews
514aeac2acbbe2b77ff3c4e310617523cf5651c5Mark Andrews *) Win32: Redirect CGI script stderr (script debug info) into the
514aeac2acbbe2b77ff3c4e310617523cf5651c5Mark Andrews error.log when CGI scripts fail. This makes Apache on Win32
514aeac2acbbe2b77ff3c4e310617523cf5651c5Mark Andrews behave more like Unix.
514aeac2acbbe2b77ff3c4e310617523cf5651c5Mark Andrews [Bill Stoddard stoddard@raleigh.ibm.com]
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews *) Fixed `httpd' usage display: -D was missing.
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews [Ralf S. Engelschall] PR#4614
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews [Ralf S. Engelschall] PR#4561, PR#4562
1ea2595e1b33cc63ea73ee1d54b580b717d7d155Mark Andrews
e60f01cdd29c71e9224273214521b15aef4d4555Mark Andrews *) OS/2: Fix problem with accept lock semaphores where server would die with
e60f01cdd29c71e9224273214521b15aef4d4555Mark Andrews "OS2SEM: Error 105 getting accept lock. Exiting!"
e60f01cdd29c71e9224273214521b15aef4d4555Mark Andrews [Brian Havard] PR#4505
13290782cb83ee43c4dc942d186761a46c4a2692Mark Andrews
13290782cb83ee43c4dc942d186761a46c4a2692Mark Andrews *) Add DSO support for DGUX 4.x using gcc. Tested on x86 platforms.
13290782cb83ee43c4dc942d186761a46c4a2692Mark Andrews [Randy Terbush <randy@covalent.net>]
824cb6567555af556d0963d961798483d252eb5fMark Andrews
895ae38da194143331d667289affd3b43c5bfc14Mark Andrews *) Add the new mass-vhost module (mod_vhost_alias.c) developed and
824cb6567555af556d0963d961798483d252eb5fMark Andrews used by Demon Internet, Ltd. [Tony Finch <fanf@demon.net>]
bca16e31b457598cd1dbbf0cdc7a26a6d2ec3753Mark Andrews
bca16e31b457598cd1dbbf0cdc7a26a6d2ec3753Mark Andrews *) Better GCC detection for DSO flags under Solaris 2 where the `cc'
bca16e31b457598cd1dbbf0cdc7a26a6d2ec3753Mark Andrews command potentially _is_ GCC. [Ralf S. Engelschall]
58ea8fb1dfc8c055a7d4ad74d65e345436ede790Mark Andrews
58ea8fb1dfc8c055a7d4ad74d65e345436ede790Mark Andrews *) Fix apxs build issues on AIX
cfcb0881d12db2b7cb33475b7d20ac6c9015203bMark Andrews [Rasmus Lerdorf <rasmus@raleigh.ibm.com>]
cfcb0881d12db2b7cb33475b7d20ac6c9015203bMark Andrews
cfcb0881d12db2b7cb33475b7d20ac6c9015203bMark Andrews *) DocumentRoot Checking: Under previous versions, when Apache
6769ce7c7b38ae31887203aa1770692b3be92705Tatuya JINMEI 神明達哉 first started up, it used to do a stat of each DocumentRoot to
1a8efeab76d34327a699894a6a404f97b341c57aMark Andrews see if it existed and was a directory. If not, then an error
1a8efeab76d34327a699894a6a404f97b341c57aMark Andrews message was printed. THIS HAS BEEN DISABLED. If DocumentRoot
f041bef2c60a092ab4dcae475451729a5345830fMark Andrews does not exist, you will get error messages in error_log. If
f041bef2c60a092ab4dcae475451729a5345830fMark Andrews the '-t' command line option is used (to check the configuration)
a7dd5f21e996b01262a3d564dae9561cb3f8e717Mark Andrews the check of DocumentRoot IS performed. An additional command
a7dd5f21e996b01262a3d564dae9561cb3f8e717Mark Andrews line option, '-T', has been added if you want to avoid the
92d23165938a5e595f80b2e3fb5d8cb918ac7dacMark Andrews DocumentRoot check even when checking the configuration.
92d23165938a5e595f80b2e3fb5d8cb918ac7dacMark Andrews [Jim Jagielski]
1cbb3a4df30777791ce27a0d2349420808c013d8Mark Andrews
1cbb3a4df30777791ce27a0d2349420808c013d8Mark Andrews *) Win32: The query switch "apache -S" didn't exit after showing the
289ae548d52bc8f982d9823af64cafda7bd92232Mark Andrews vhost settings. That was inconsistent with the other query functions.
289ae548d52bc8f982d9823af64cafda7bd92232Mark Andrews [Bill Stoddard - Fixed by Martin on Unix in 1.3.4]
4ccea866e64a8ec8525ad4bf7d57606bcd2fc15dMark Andrews
4ccea866e64a8ec8525ad4bf7d57606bcd2fc15dMark Andrews *) Win32: Changed behaviour of apache -k restart.
4cf228853d658a742a826393f341e2486c629f7bMark Andrews Previously, the server would drain all connections in the stack's
4cf228853d658a742a826393f341e2486c629f7bMark Andrews listen queue before honoring the restart. On a busy server, this
4cf228853d658a742a826393f341e2486c629f7bMark Andrews could take hours. Now, a restart is honored almost immediately.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews All connections in Apache's queues are handled but connections in
1672cc63c190e073706a742ebaabc20ac4d2c916Mark Andrews the stack's listen queue are discarded. Restart triggered by
6805e4e2c46ad3c5a4aa941b5e9a29d34579641eMark Andrews MaxRequestPerChild is unchanged.
6805e4e2c46ad3c5a4aa941b5e9a29d34579641eMark Andrews [Bill Stoddard <stoddard@raleigh.ibm.com>]
6805e4e2c46ad3c5a4aa941b5e9a29d34579641eMark Andrews
1afb6c548d9bbfcfb00d0799077faa17ad9a4f59Mark Andrews *) Win32: Eliminated unnecessary call to wait_for_multiple_objects in
1afb6c548d9bbfcfb00d0799077faa17ad9a4f59Mark Andrews the accept loop. Good for a 5% performance boost. Cleaned up
1afb6c548d9bbfcfb00d0799077faa17ad9a4f59Mark Andrews parent/child process management code.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Bill Stoddard <stoddard@raleigh.ibm.com>]
5de1ad63735deb0ea86b2d0a9366eddf5fbeddc1Mark Andrews
92ff69c60001ed270248a6f38bafd2ae12d029beMark Andrews *) Added ceiling on file size for memory mapped files.
a1210da03636eca13c70502a2b132ead22481b70Mark Andrews [John Giannandrea <jg@meer.net>] PR#4122
a1210da03636eca13c70502a2b132ead22481b70Mark Andrews
ef54920b4c82a0ea41972d1dc21a0dc96fa791fbTatuya JINMEI 神明達哉 *) Fix ndbm.h include problems with brain-dead glibc >= 2.1 which
a473029e76dfc68db00505f40065607b4ea1e0f5Mark Andrews has ndbm.h in a non-standard db1/ subdir. PR#4431, PR#4528
a473029e76dfc68db00505f40065607b4ea1e0f5Mark Andrews [Henri Gomez <gomez@slib.fr>, Ralf S. Engelschall]
a473029e76dfc68db00505f40065607b4ea1e0f5Mark Andrews
411118a594dbcee68cd6adf5f6bd1b9db0ff9190Mark Andrews *) Determine AP_BYTE_ORDER for ap_config_auto.h and already
411118a594dbcee68cd6adf5f6bd1b9db0ff9190Mark Andrews use this at least for Expat. [Ralf S. Engelschall]
411118a594dbcee68cd6adf5f6bd1b9db0ff9190Mark Andrews
7c0946e74be897d02aaaf980ac146bcb500c2c8cMark Andrews *) Allow .module files to specify libraries with Lib:.
7c0946e74be897d02aaaf980ac146bcb500c2c8cMark Andrews [Ben Laurie]
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
09cbf84907de2bd088b4ce8bd1307938bf0e81baMark Andrews *) Allow SetEnvIf[NoCase] to test environment variables as well
09cbf84907de2bd088b4ce8bd1307938bf0e81baMark Andrews as header fields and request attributes. [Ken Coar]
9e2789fd70b954df426b80301b62388497692481Mark Andrews
9e2789fd70b954df426b80301b62388497692481Mark Andrews *) Fix mod_autoindex's handling of ScanHTMLTitles when file
b1163a6fe91e6e7a14e40cd5d33108c4deb38312Mark Andrews content-types are "text/html;parameters". PR#4524 [Ken Coar]
b1163a6fe91e6e7a14e40cd5d33108c4deb38312Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Remove "mxb" support from mod_negotiation -- it was a draft feature
b1163a6fe91e6e7a14e40cd5d33108c4deb38312Mark Andrews never accepted into any standard, and it opens up certain DoS
8af4bf165e9a6aa111e0b6bfcbcc7f4a741a8ae5Mark Andrews attacks. [Koen Holtman <Koen.Holtman@cern.ch>]
8af4bf165e9a6aa111e0b6bfcbcc7f4a741a8ae5Mark Andrews
5cf0c559489d741ee5c7943ece47e40567bb0ba9Mark Andrews *) TestCompile updated. We can now run programs and output the
5cf0c559489d741ee5c7943ece47e40567bb0ba9Mark Andrews results during the Configure process. [ Jim Jagielski]
5cf0c559489d741ee5c7943ece47e40567bb0ba9Mark Andrews
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews *) The source is now quad (long long) aware as needed. Specifically,
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews the Configure process determines the correct size of off_t and
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews *void. When the OS/platform/compiler supports quads, ap_snprintf()
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews provides for the 'q' format qualifier (if quads are not available,
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews 'q' is silently "demoted" to long). [Jim Jagielski]
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews *) When the username or password fed to htpasswd is too long, include the
fda0a038810529d6e45b17822ddcc61d82964e83Mark Andrews size limit in the error message. Also report illegal characters
53d3679913d715cce0dc7e8be04662366eab4842Mark Andrews (currently only ':') in the username. Add the size restrictions
53d3679913d715cce0dc7e8be04662366eab4842Mark Andrews to the man page. [Ken Coar]
53d3679913d715cce0dc7e8be04662366eab4842Mark Andrews
755df9a92a13310eec4b1baeb297c93674a70417Mark Andrews *) Fixed the configure --without-support option so it doesn't result in
755df9a92a13310eec4b1baeb297c93674a70417Mark Andrews an infinite loop. [Marc Slemko]
755df9a92a13310eec4b1baeb297c93674a70417Mark Andrews
e3582ce43119a95448ccc06ea2586f6547c92967Mark Andrews *) Piped error logs could cause a segfault if an error occured
e3582ce43119a95448ccc06ea2586f6547c92967Mark Andrews during configuration after a restart.
2952abf7cbbba6c6f821ee18579ca29d87549574Mark Andrews [Aidan Cully <aidan@panix.com>] PR#4456
2952abf7cbbba6c6f821ee18579ca29d87549574Mark Andrews
efb82ed87e916c82b481bee4aa6651f2dbd4cedaMark Andrews *) If a "Location" field was stored in r->err_headers_out rather
efb82ed87e916c82b481bee4aa6651f2dbd4cedaMark Andrews than r->headers_out, redirect processing wouldn't find it and
7c693bfdbe488ca8fa4f0831c71f5809972f6cc7Mark Andrews the server would core dump on ap_escape_html(NULL). Check both
7c693bfdbe488ca8fa4f0831c71f5809972f6cc7Mark Andrews tables and raise HTTP_INTERNAL_SERVER_ERROR with a log message
7092864f71e0bbb108041ef01ac3d2b41f90c4a9Mark Andrews if Location isn't set. [Doug MacEachern, Ken Coar]
7092864f71e0bbb108041ef01ac3d2b41f90c4a9Mark Andrews
7092864f71e0bbb108041ef01ac3d2b41f90c4a9Mark Andrews *) Add RULE_EXPAT, the src/lib/ directory structure, and a modified copy
24ee607afa66e5ba5fa8b2f18c34a5c430b8a3feMark Andrews of the Expat 1.0.2 distribution. [Greg Stein]
24ee607afa66e5ba5fa8b2f18c34a5c430b8a3feMark Andrews
24ee607afa66e5ba5fa8b2f18c34a5c430b8a3feMark Andrews *) Replace regexec() calls with calls to a new API stub function
2113dfd6e20a9ca16000ed226517b4660087c1f2Mark Andrews ap_regexec(). This solves problems with DSO modules which use the regex
2113dfd6e20a9ca16000ed226517b4660087c1f2Mark Andrews library. [Jens-Uwe Mager <jum@helios.de>, Ralf S. Engelschall]
2113dfd6e20a9ca16000ed226517b4660087c1f2Mark Andrews
2dafa707cc9af9cca66d68c1d2c3af0c768c2900Mark Andrews *) Add 'Request_Protocol' special keyword to mod_setenvif so that
2dafa707cc9af9cca66d68c1d2c3af0c768c2900Mark Andrews environment variables can be set according to the protocol version
2dafa707cc9af9cca66d68c1d2c3af0c768c2900Mark Andrews (e.g., HTTP/0.9 or HTTP/1.1) of the request. [Ken Coar]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
2dafa707cc9af9cca66d68c1d2c3af0c768c2900Mark Andrews *) Add DSO support for OpenStep (Mach 4.2) platform.
2dafa707cc9af9cca66d68c1d2c3af0c768c2900Mark Andrews [Ralf S. Engelschall, Rex Dieter <rdieter@math.unl.edu>] PR#3997
c7817270552b2faab56466b89731b6f290b352a4Mark Andrews
c7817270552b2faab56466b89731b6f290b352a4Mark Andrews *) Fix sed regex for generating ap_config_auto.h in src/Configure.
c7817270552b2faab56466b89731b6f290b352a4Mark Andrews [Jan Gallo <gallo@pvt.sk>] PR#3690, PR#4373
22e5a52c3b5bfef7e75d95629e08cab7592fee5cMark Andrews
22e5a52c3b5bfef7e75d95629e08cab7592fee5cMark Andrews *) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
22e5a52c3b5bfef7e75d95629e08cab7592fee5cMark Andrews their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
6d453e1bb296e88732655f3d736e571eeaaca254Mark Andrews
240e57ab983296e6d52031a594d3345728191b48Mark Andrews *) Better DSO flags recognition on NetBSD platforms using ELF.
240e57ab983296e6d52031a594d3345728191b48Mark Andrews [Todd Vierling <tv@pobox.com>] PR#4310
240e57ab983296e6d52031a594d3345728191b48Mark Andrews
cdb674387ca19dc8550553d90d8f9731befb6f1fMark Andrews *) Always log months in english format for %t in mod_log_config.
cdb674387ca19dc8550553d90d8f9731befb6f1fMark Andrews [Petr Lampa <lampa@fee.vutbr.cz>] PR#4366, 679
cdb674387ca19dc8550553d90d8f9731befb6f1fMark Andrews
02ced31b6aa999099214d2688b1a80ac5d93c57bMark Andrews *) Support for server-parsed and multiview-determined ReadmeName and
02ced31b6aa999099214d2688b1a80ac5d93c57bMark Andrews HeaderName files in mod_autoindex. Removed the restriction on
02ced31b6aa999099214d2688b1a80ac5d93c57bMark Andrews "/"s in ReadmeName and HeaderName directives since the *sub_req*
728156dfbdced7bc18b1f88227cced9d426a70e7Mark Andrews routines will deal with the access issues. (It's now possible to
728156dfbdced7bc18b1f88227cced9d426a70e7Mark Andrews have {site|group|project|customer|...} wide readmes and headers.)
728156dfbdced7bc18b1f88227cced9d426a70e7Mark Andrews [Raymond S Brand <rsbx@rsbx.net>, Ken Coar] PR#1574, 3026, 3529,
d4f5efb4d63e2e17081a49a3457f05fe06fbb5abMark Andrews 3569, 4256
d4f5efb4d63e2e17081a49a3457f05fe06fbb5abMark Andrews
d4f5efb4d63e2e17081a49a3457f05fe06fbb5abMark Andrews *) When stat() fails, don't assume anything about the contents of
e560f615b2592deea69c49bfc74acbb56f4fd913Mark Andrews the struct stat. [Ed Korthof <ed@bitmechanic.com>]
e560f615b2592deea69c49bfc74acbb56f4fd913Mark Andrews
cfaf65f53fb0c1779e7b2e07216e5fbfd3a2d52eMark Andrews *) It's OK for a semop to return EINTR, just loop around and try
cfaf65f53fb0c1779e7b2e07216e5fbfd3a2d52eMark Andrews again. [Dean Gaudet]
cfaf65f53fb0c1779e7b2e07216e5fbfd3a2d52eMark Andrews
f07fe5a1ac9d1345eb7a36a0bc38716a03e25f61Mark Andrews *) Fix configuration engine re-entrant hangups, which solve a
f07fe5a1ac9d1345eb7a36a0bc38716a03e25f61Mark Andrews handful of problems seen with mod_perl <Perl> configuration sections
f07fe5a1ac9d1345eb7a36a0bc38716a03e25f61Mark Andrews [Salvador Ortiz Garcia <sog@msg.com.mx>]
f34249bb28093d6589196cd00ca040f503a65e2bMark Andrews
dbfc2232ef5b6e5572480070ab87a4d67c18aa39Mark Andrews *) Mac OS and Mac OS X Server now use the appropriate custom layout
ce8cd4a3efd27ef145847216d513bb341bfe208cMark Andrews by default when building with APACI; allow for platform-specific
ce8cd4a3efd27ef145847216d513bb341bfe208cMark Andrews variable defaults in configure. [Wilfredo Sanchez]
ce8cd4a3efd27ef145847216d513bb341bfe208cMark Andrews
393e4679cf4dd8bafb031d8a61ece95af61fbedcMark Andrews *) Do setgid() before initgroups() in http_main; some platforms
393e4679cf4dd8bafb031d8a61ece95af61fbedcMark Andrews zap the grouplist when setgid() is called. This was fixed in
854dac0f186e5b491d65f6d73dd6e440e7a2c227Mark Andrews suexec earlier, but the main httpd code missed the change.
854dac0f186e5b491d65f6d73dd6e440e7a2c227Mark Andrews [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2579
854dac0f186e5b491d65f6d73dd6e440e7a2c227Mark Andrews
67b1eee9dfde5ad86b54b2b768ff4d6b1354b651Mark Andrews *) Add recognition of .tgz as a gzipped tarchive.
431fd1b0b5c3c049f9397ed4be8915715ead9cdbMark Andrews [Bertrand de Singly <bertrand.de-singly@polytechnique.fr>] PR#2364
431fd1b0b5c3c049f9397ed4be8915715ead9cdbMark Andrews
cc7d91bd5c6b9be5a3c67a99112b885602c24873Mark Andrews *) mod_include's fsize/flastmod should allow only relative paths, just
cc7d91bd5c6b9be5a3c67a99112b885602c24873Mark Andrews like "include file". [Jaroslav Benkovsky <benkovsk@pha.pvt.cz>]
39ef7dddef12152afa3a2fc1c1962cdf6d30b5cbMark Andrews
39ef7dddef12152afa3a2fc1c1962cdf6d30b5cbMark Andrews *) OS/2: Add support for building loadable modules using DLLs.
39ef7dddef12152afa3a2fc1c1962cdf6d30b5cbMark Andrews [Brian Havard]
f22ef4dfb973c4714eedd3818050fde74fb20e48Mark Andrews
f22ef4dfb973c4714eedd3818050fde74fb20e48Mark Andrews *) Add iconsdir, htdocsdir, and cgidir to config.layout.
f22ef4dfb973c4714eedd3818050fde74fb20e48Mark Andrews [Wilfredo Sanchez]
3b572928731d3595990fe360c80977a2d043eb02Tatuya JINMEI 神明達哉
84f5576c149ed0cf18555bcd7cf1ffbe491bb08fMark Andrews *) Fix minor but annoying bug with the test for Configuration.tmpl
50d3f097d4c2779c8fb2397882d91e0cbca2c260Mark Andrews being newer than Configuration so that it is less likely to fail
84f5576c149ed0cf18555bcd7cf1ffbe491bb08fMark Andrews when using APACI and shadow sources. [Wilfredo Sanchez]
84f5576c149ed0cf18555bcd7cf1ffbe491bb08fMark Andrews
84f5576c149ed0cf18555bcd7cf1ffbe491bb08fMark Andrews *) PORT: Add initial support for Mac OS (versions 10.0 and
6953fd6e20fddcb6389e642aa872cb7425a95f6dMark Andrews greater). Use Mac OS X Server layout for now. Clean up dyld code
6953fd6e20fddcb6389e642aa872cb7425a95f6dMark Andrews in unix/os.c, and don't install the dyld error handlers, which
6953fd6e20fddcb6389e642aa872cb7425a95f6dMark Andrews are no longer needed in Mac OS. [Wilfredo Sanchez]
2b67af24fa02867fbc703e89277400b10d0c8b92Mark Andrews
2b67af24fa02867fbc703e89277400b10d0c8b92Mark Andrews *) Rename Rhapsody layout to "Mac OS X Server". Change install
2b67af24fa02867fbc703e89277400b10d0c8b92Mark Andrews locations to appropriate ones for user-built (as opposed to
f02b985650a6f1277a3a45f18561d519916c1890Mark Andrews system) installs. [Wilfredo Sanchez]
f02b985650a6f1277a3a45f18561d519916c1890Mark Andrews
f02b985650a6f1277a3a45f18561d519916c1890Mark Andrews *) Modify mod_autoindex's handling of AddDescription so that the
c870001ae1bff0e38f622c4ed56872c7f1d2d336Mark Andrews behaviour matches the documentation. [Ken Coar] PR#1898, 3072.
c870001ae1bff0e38f622c4ed56872c7f1d2d336Mark Andrews
c870001ae1bff0e38f622c4ed56872c7f1d2d336Mark Andrews *) Add functionality to the install-bindist.sh script created by
0b5d8941bb41edbe1296619485c16df536ecc05fMark Andrews binbuild.sh to use tar when copying distribution files to the
0b5d8941bb41edbe1296619485c16df536ecc05fMark Andrews serverroot. This allows upgrading an existing installation
bcdf37e0ff7d73310b7bf247d755194a5718ba38Mark Andrews without nesting the new distribution in the old.
bcdf37e0ff7d73310b7bf247d755194a5718ba38Mark Andrews
bcdf37e0ff7d73310b7bf247d755194a5718ba38Mark Andrews install-bindist.sh now detects the local perl5 path to install
a34d19803a206febe10866394393ec1c09b28984Mark Andrews apxs and dbmmanage with proper path to perl interpreter.
a34d19803a206febe10866394393ec1c09b28984Mark Andrews
cbef026164ceabccb2e85403434b722d77f7b5eeMark Andrews Add an install-binsupport target which copies the source files
cbef026164ceabccb2e85403434b722d77f7b5eeMark Andrews for apxs and dbmmanage to bindist to allow these scripts to
cbef026164ceabccb2e85403434b722d77f7b5eeMark Andrews be properly installed relative to the destination serverroot.
2db8db63992d081c75d664340866e2a21913705dMark Andrews [Randy Terbush, Covalent Technologies, randy@covalent.net]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
2db8db63992d081c75d664340866e2a21913705dMark Andrews *) Fix intermittent SEGV in ap_proxy_cache_error() in
2db8db63992d081c75d664340866e2a21913705dMark Andrews src/modules/proxy_util.c where a NULL filepointer and
2db8db63992d081c75d664340866e2a21913705dMark Andrews temporary filename were closed and unlinked.
7076f000ea3487299a9da9318915d042aaba62c5Mark Andrews [Graham Leggett <minfrin@sharp.fm>,
7076f000ea3487299a9da9318915d042aaba62c5Mark Andrews Tim Costello <tjcostel@socs.uts.edu.au>] PR#3178
7076f000ea3487299a9da9318915d042aaba62c5Mark Andrews
7076f000ea3487299a9da9318915d042aaba62c5Mark Andrews *) Fix inconsistent error messages reported by mod_proxy.
7076f000ea3487299a9da9318915d042aaba62c5Mark Andrews [Graham Leggett <minfrin@sharp.fm>]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
8626c376a038da969de1ee6c158957dfe638daacMark Andrews *) OS/2: Fix terminating CGIs that aren't compiled by EMX GCC when a
8626c376a038da969de1ee6c158957dfe638daacMark Andrews connection is aborted. [Brian Havard]
c6ee5082db1e40ab64e08a540620da79996efa9cTatuya JINMEI 神明達哉
222dcab0a6456c5395545e885f21b5542b7d841dTatuya JINMEI 神明達哉 *) Force the LANG envariable to the known state of "C" so that we
c6ee5082db1e40ab64e08a540620da79996efa9cTatuya JINMEI 神明達哉 have assurance about how string manipulators (e.g., tr) will
f22ef4dfb973c4714eedd3818050fde74fb20e48Mark Andrews function. [Ken Coar] PR#1630
9a6522317c97e5487cea816173f63a0e5b4e428aTatuya JINMEI 神明達哉
f5a156fa25e6d341e703782de6368fbe9e256ddeTatuya JINMEI 神明達哉 *) Add a directive to allow customising of the tracking cookie name.
f22ef4dfb973c4714eedd3818050fde74fb20e48Mark Andrews [Ken Coar] PR#2921, 4303
78ff0e94eae96f2cf8bf94454d8ff01ba280d30dMark Andrews
5a9efbf6bf951267e0844990f5b2cb69f5d5f01fTatuya JINMEI 神明達哉 *) Add "force-no-vary" envariable to allow servers to work around
08eadd404a59a6befcf51cb13695abee5d03456dMark Andrews clients that choke on "Vary" fields in the response header.
08eadd404a59a6befcf51cb13695abee5d03456dMark Andrews [Ken Coar, Dmitry Khrustalev <dima@zippy.machaon.ru>] PR#4118
08eadd404a59a6befcf51cb13695abee5d03456dMark Andrews
c55dd77de4ce71b858afb291e44577b51be8b780Mark Andrews *) Fixed a bug in mod_dir that causes a child process will infinitely
c55dd77de4ce71b858afb291e44577b51be8b780Mark Andrews recurse when it attemps to handle a request for a directory wnd the
c55dd77de4ce71b858afb291e44577b51be8b780Mark Andrews value of the DirectoryIndex directive is a single dot. Also likely
eca38a9d43391482bfa22e2eb7b86e19be8bf461Mark Andrews to happen for anyother values of DirectoryIndex that will map back
eca38a9d43391482bfa22e2eb7b86e19be8bf461Mark Andrews to the same directory. The handler now only considers regular files
eca38a9d43391482bfa22e2eb7b86e19be8bf461Mark Andrews as being index candidates. No PR#s found.
d79296d147cd4c35784dd3efd7ed7f09d976ee61Mark Andrews [Raymond S Brand <rsbx@rsbx.net>]
d79296d147cd4c35784dd3efd7ed7f09d976ee61Mark Andrews
4f5a43c5f084290054ddf212add7b4c2abe6edc5Tatuya JINMEI 神明達哉 *) Ease configuration debugging by making TestCompile fall back to
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews using "make" if the $MAKE variable is unset [Martin Kraemer]
46390a96dd5f15c9a0b3663bdb7791bdecec3052Mark Andrews
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews *) Fixed the ServerSignature directive to work as documented.
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews [Raymond S Brand <rsbx@rsbx.net>] PR#4248
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews *) Add "opt" (SysV-style) layout to config.layout. [Raymond S Brand
9a482d1fcead22ab0d639c463c77672846485f3eMark Andrews <rsbx@rsbx.net>]
d48f9877255f41b6074777da0639b6bc2bfad388Mark Andrews
d48f9877255f41b6074777da0639b6bc2bfad388Mark Andrews *) Add APACI --without-execstrip option which can be used to disable the
d48f9877255f41b6074777da0639b6bc2bfad388Mark Andrews stripping of executables on installation. This is very important for DSO
d48f9877255f41b6074777da0639b6bc2bfad388Mark Andrews and debugging situations. [Ralf S. Engelschall]
5d51f534831bd648436d22e4faf203fb9abdf3d4Mark Andrews
5d51f534831bd648436d22e4faf203fb9abdf3d4Mark Andrews *) Add support for OS/2 (case insenstive filesystem, .exe suffix, etc)
5d51f534831bd648436d22e4faf203fb9abdf3d4Mark Andrews to APACI files and related scripts.
a45a6ea2b03448751d7c44931e8ac7666e7cc2ceMark Andrews [Yitzchak Scott-Thoennes <sthoenna@efn.org>, Ralf S. Engelschall] PR#4269
a45a6ea2b03448751d7c44931e8ac7666e7cc2ceMark Andrews
a45a6ea2b03448751d7c44931e8ac7666e7cc2ceMark Andrews *) Add support for standalone mode in TPF
a45a6ea2b03448751d7c44931e8ac7666e7cc2ceMark Andrews [Joe Moenich <moenich@us.ibm.com>]
15bda409010cbf2d3e43baf10f28bae5f7b1abefMark Andrews
15bda409010cbf2d3e43baf10f28bae5f7b1abefMark Andrews *) Fix number of bytes copied by read_connection() in src/support/ab.c
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Jim Cox <jc@superlink.net>] PR#4271
b5205d860b1672c405c57004e6823af873799b42Mark Andrews
b5205d860b1672c405c57004e6823af873799b42Mark Andrews *) Fix special RewriteCond "-s" pattern matching.
9a1e8f1baf3e5c53d6b6bfa97d7f60cb3358e404Mark Andrews [Bob Finch <bob@nas.com>]
9a1e8f1baf3e5c53d6b6bfa97d7f60cb3358e404Mark Andrews
c79e85f7d77317a9b5c34b4bb94eaf1779fc0b6eMark Andrews *) Fix value quoting in src/Configure script for ap_config_auto.h
c79e85f7d77317a9b5c34b4bb94eaf1779fc0b6eMark Andrews [Paul Sutton <paul@awe.com>]
c79e85f7d77317a9b5c34b4bb94eaf1779fc0b6eMark Andrews
12b1bf8b14ac3b6ec4de9cae6fea10f389b5e5dbMark Andrews *) Make sure RewriteLock can be used only in the global context, (i.e.
12b1bf8b14ac3b6ec4de9cae6fea10f389b5e5dbMark Andrews outside of any <VirtualHost> sections) because it's a global facility of
12b1bf8b14ac3b6ec4de9cae6fea10f389b5e5dbMark Andrews the rewrite engine. [Ralf S. Engelschall]
e22bd3c4bc0de0b96531fab5c2c944251e02e975Mark Andrews
e22bd3c4bc0de0b96531fab5c2c944251e02e975Mark Andrews *) Fix the ownership delegation for proxy directory under `make install'.
e22bd3c4bc0de0b96531fab5c2c944251e02e975Mark Andrews [Ralf S. Engelschall]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
529035492ea0a427cc8d007cd743934d4494d9d3Mark Andrews *) APACI would not correctly build suexec. [Maria Verina
529035492ea0a427cc8d007cd743934d4494d9d3Mark Andrews <mariav@icgeb.trieste.it>] PR#4260
ff6bd86d5778de50cb1b4e93591e22354062ee17Mark Andrews
11e43ff752bab2983d9328b6624bbcef613a93e1Mark Andrews *) mod_mime_magic passed only the first 4k of a file to
444bbadb54d4a676aa4b20685d3178d7988534b3Mark Andrews uncompress/gzip, but those tools sometimes do not produce
444bbadb54d4a676aa4b20685d3178d7988534b3Mark Andrews any output unless a sufficient portion of the compressed
444bbadb54d4a676aa4b20685d3178d7988534b3Mark Andrews file is input. Change to pass the entire file -- but
cd6d8d61b076eea02826596334a105b918393627Mark Andrews only read 4k of output.
cd6d8d61b076eea02826596334a105b918393627Mark Andrews [Marcin Cieslak <saper@system.pl>] PR#4097
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
f04809663f4ba3df0e2ef1247d67bdd6ce0157d6Mark Andrews *) "IndexOptions None" generated extra spaces at the end of each
f04809663f4ba3df0e2ef1247d67bdd6ce0157d6Mark Andrews line. [inkling@firstnethou.com] PR#3770
7d7f929274e48808b4771162d6302a99e69865d8Mark Andrews
7d7f929274e48808b4771162d6302a99e69865d8Mark Andrews *) The "100 Continue" response wasn't being sent after internal
7d7f929274e48808b4771162d6302a99e69865d8Mark Andrews redirects. [Jose KAHAN <kahan@w3.org>] PR#3910, 3806, 3575
21b76ee598c937c6736cbc7ab69684bb3332428aMark Andrews
21b76ee598c937c6736cbc7ab69684bb3332428aMark Andrews *) When padding the name with spaces for display, mod_autoindex would
21b76ee598c937c6736cbc7ab69684bb3332428aMark Andrews count &, <, and > in their escaped width, messing up the display.
21b76ee598c937c6736cbc7ab69684bb3332428aMark Andrews [Dean Gaudet] PR#4075, 3758
21b76ee598c937c6736cbc7ab69684bb3332428aMark Andrews
5c45d30402af6860e1f66f5aa7d78dff58373b27Mark Andrews *) PORT: fixed a compilation problem on NEXT.
5c45d30402af6860e1f66f5aa7d78dff58373b27Mark Andrews [Jacques Distler <distler@golem.ph.utexas.edu>] PR#4130
b66ca17f2990433a3e277b50cc3c15f19cdd0771Mark Andrews
b66ca17f2990433a3e277b50cc3c15f19cdd0771Mark Andrews *) r->request_time wasn't being set properly in certain error conditions.
b66ca17f2990433a3e277b50cc3c15f19cdd0771Mark Andrews [Dean Gaudet] PR#4156
dc1f18f211a91735faf2771acc8438f0fbc70d4bMark Andrews
dc1f18f211a91735faf2771acc8438f0fbc70d4bMark Andrews *) PORT: deal with UTS compiler error in http_protocol.c
dc1f18f211a91735faf2771acc8438f0fbc70d4bMark Andrews [Dave Dykstra <dwd@bell-labs.com>] PR#4189
dc1f18f211a91735faf2771acc8438f0fbc70d4bMark Andrews
7b68fa6229f1edadac44c7ec459c9ed77a8368c8Mark Andrews *) Add ap_vrprintf() function. [John Tobey <jtobey@banta-im.com>] PR#4246
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews *) Fix the mod_mime hash table to work properly with locales other
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews than C. [Dean Gaudet] PR#3427
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews
6412902ffc0d255657f54db768f30b6efa819143Mark Andrews *) Fix a memory leak which is exacerbated by certain configurations.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Dean Gaudet] PR#4225
6412902ffc0d255657f54db768f30b6efa819143Mark Andrews
6412902ffc0d255657f54db768f30b6efa819143Mark Andrews *) Prevent clobbering saved IFS values in APACI. [Jim Jagielski]
6412902ffc0d255657f54db768f30b6efa819143Mark Andrews
6412902ffc0d255657f54db768f30b6efa819143Mark Andrews *) Fix buffer overflows in ap_uuencode and ap_uudecode pointed out
0d8971a4b8abed599ec9d9b7d1b51b8de8038ce2Shane Kerr by "Peter 'Luna' Altberg <peter@altberg.nu>" and PR#3422
0d8971a4b8abed599ec9d9b7d1b51b8de8038ce2Shane Kerr [Peter 'Luna' Altberg <peter@altberg.nu>, Ronald Tschal�r]
0d8971a4b8abed599ec9d9b7d1b51b8de8038ce2Shane Kerr
a8f950ff05e2e81d425a3411268cdf21f8f26b16Mark Andrews *) Make {Set,Unset,Pass}Env per-directory instead of per-server.
a8f950ff05e2e81d425a3411268cdf21f8f26b16Mark Andrews [Ben Laurie]
a8f950ff05e2e81d425a3411268cdf21f8f26b16Mark Andrews
bc1467288a25b48446d3229fef0a19fad0cb6f2fMark Andrews *) Correct an apparent typo: on the Windows and MPE platforms, the
bc1467288a25b48446d3229fef0a19fad0cb6f2fMark Andrews htpasswd utility was limiting passwords to only 8 characters.
bc1467288a25b48446d3229fef0a19fad0cb6f2fMark Andrews [Ken Coar]
6ed53e5949d9fcd9715b440015b56e5a896d63dfDavid Hankins
6ed53e5949d9fcd9715b440015b56e5a896d63dfDavid Hankins *) EBCDIC platforms: David submitted patches for two bugs in the
6ed53e5949d9fcd9715b440015b56e5a896d63dfDavid Hankins MD5 digest port for EBCDIC machines:
6ed53e5949d9fcd9715b440015b56e5a896d63dfDavid Hankins a) the htdigest utility overwrote the old contents of the digest file
f19353d73186913a6e0f0f766c1f72e5f4c5e9e1Tatuya JINMEI 神明達哉 b) the Content-MD5 header value (ContentDigest directive) was wrong
f19353d73186913a6e0f0f766c1f72e5f4c5e9e1Tatuya JINMEI 神明達哉 when the returned file was not converted from EBCDIC, but was a
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews binary (e.g., image file) in the first place.
84910d09ee8244027c7031e03999bc60a3d63adbMark Andrews [David McCreedy <mccreedy@us.ibm.com>]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews *) support/htpasswd now permits the password to be specified on the
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews command line with the '-b' switch. This is useful when passwords
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews need to be maintained by scripts -- particularly in the Win32
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews environment. [Ken Coar]
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews
d2ef84e07b67e72a4bd9c729c6b8228067d17584Mark Andrews *) Win32: Win32 multiple services patch. Added capability to install and
cfe92110ce4eaf19f7f3255d2961710879bdc9ddMark Andrews run multiple copies of apache as individual services.
cfe92110ce4eaf19f7f3255d2961710879bdc9ddMark Andrews
cfe92110ce4eaf19f7f3255d2961710879bdc9ddMark Andrews Example 1:
cfe92110ce4eaf19f7f3255d2961710879bdc9ddMark Andrews apache -n apache1 -i -f c:/httpd.conf
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews Installs apache as service 'apache1' and associates c:/httpd.conf
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews with that service.
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews net start apache1
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews Starts apache1 service.
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews net stop apache1
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews Stops apache1 service
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews Example 2:
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews apache -n apache2 -i
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews Installs apache as service 'apache2'. httpd.conf is located under
fe6f384b2efde528dabbf822634eedc020be67e0Mark Andrews the default server root (/apache/conf/httpd.conf).
5929cde251d6d971fda14ac9ea927035421f6480Mark Andrews net start apache2
5929cde251d6d971fda14ac9ea927035421f6480Mark Andrews Starts apache2 service.
5929cde251d6d971fda14ac9ea927035421f6480Mark Andrews
5929cde251d6d971fda14ac9ea927035421f6480Mark Andrews Example 3:
1412643ba5bcc735c3731d8cebf71fd76eedec91Mark Andrews apache -n apache3 -i -d c:/program files/apache
1412643ba5bcc735c3731d8cebf71fd76eedec91Mark Andrews Install apache as service 'apache3' and sets server root to
1412643ba5bcc735c3731d8cebf71fd76eedec91Mark Andrews c:/program files/apache.
1412643ba5bcc735c3731d8cebf71fd76eedec91Mark Andrews
6de9371826bd253eb29aa3965ef03670d9d0a06dMark Andrews Example 4:
6de9371826bd253eb29aa3965ef03670d9d0a06dMark Andrews apache -n apache2 -k restart
6de9371826bd253eb29aa3965ef03670d9d0a06dMark Andrews Restart apache2 service
6de9371826bd253eb29aa3965ef03670d9d0a06dMark Andrews
6de9371826bd253eb29aa3965ef03670d9d0a06dMark Andrews [Keith Wannamaker, Ken Parzygnat, Bill Stoddard]
daba3af103617ce4dd49bfdd0d9e07df7f22d08dMark Andrews
daba3af103617ce4dd49bfdd0d9e07df7f22d08dMark Andrews *) Correct the signed/unsigned character handling for the MD5 routines;
59d84d1b077678cb77f6cbcc53d8cfa60ff69cb7Mark Andrews mismatches were causing compilation problems with gcc -pedantic and
59d84d1b077678cb77f6cbcc53d8cfa60ff69cb7Mark Andrews in the TPF cross-compilation. [Ken Coar]
59d84d1b077678cb77f6cbcc53d8cfa60ff69cb7Mark Andrews
59d84d1b077678cb77f6cbcc53d8cfa60ff69cb7Mark Andrews *) OS/2: Rework CGI handling to use spawn*() instead of fork/exec, achieving
ac124a78a097a0840992c5726cbbdaf1448b6ab3Mark Andrews a roughly 5 fold speed up. [Brian Havard]
d76ed813a51465e5c47d521ab09ea20c06f1428dMark Andrews
d76ed813a51465e5c47d521ab09ea20c06f1428dMark Andrews *) proxy ftp: instead of using the hardwired string "text/plain" as
b6d199bd6a505d84093874339056d9df4d21dfbcMark Andrews a fallback type for files served by the ftp proxy, use the
b6d199bd6a505d84093874339056d9df4d21dfbcMark Andrews ap_default_type() function to determine the configured type.
b6d199bd6a505d84093874339056d9df4d21dfbcMark Andrews This allows for special configurations like
b6d199bd6a505d84093874339056d9df4d21dfbcMark Andrews <Directory proxy:ftp://some.host>
1d7b3b6dac1a0c6c586808c2add2ca2bef80512fMark Andrews DefaultType gargle/blurb
1d7b3b6dac1a0c6c586808c2add2ca2bef80512fMark Andrews </Directory>
1d7b3b6dac1a0c6c586808c2add2ca2bef80512fMark Andrews Additionally, add the Content-Encoding: header to FTP proxy replies
1d7b3b6dac1a0c6c586808c2add2ca2bef80512fMark Andrews when the encoding is defined (by the AddEncoding directive).
f27eae9cfeb5b6c3c38ead6a7a0b1dd36bba691dMark Andrews Because it was missing, it was almost impossible to browse compressed
f27eae9cfeb5b6c3c38ead6a7a0b1dd36bba691dMark Andrews files using the FTP proxy (works now perfectly in Communicator).
f27eae9cfeb5b6c3c38ead6a7a0b1dd36bba691dMark Andrews The ftp proxy now also returns the Date: and Server: header lines (if not
9a8cec4995c1586d27e95f13d421e4de61a97eb5Mark Andrews much else... This code is "somewhat" broken) like normal requests do.
9a8cec4995c1586d27e95f13d421e4de61a97eb5Mark Andrews [Martin Kraemer]
9a8cec4995c1586d27e95f13d421e4de61a97eb5Mark Andrews
25c18fded02c5df8391a333e90ea776b52bff079Mark Andrews *) Be more smart in APACI's configure script when determining the UID/GID
25c18fded02c5df8391a333e90ea776b52bff079Mark Andrews for User/Group directives and use the determined UID/GID to initialize
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews the permissions on the proxycachedir.
7042126e8a10315255144989f7723f0510558928Mark Andrews [Dirk-Willem van Gulik, Ralf S. Engelschall]
7042126e8a10315255144989f7723f0510558928Mark Andrews
7042126e8a10315255144989f7723f0510558928Mark Andrews *) Changed the forking-prior-to-cleanup in the proxy module to first
5581e28ed8c05350ce6119230c223da60dafdbafMark Andrews check wether it actually needs to collect garbage. This reduces
2c4ae1d331c98beba03a337a58e9b44aec98d663Mark Andrews the number of fork()s from one/request to just the odd one an hour.
2c4ae1d331c98beba03a337a58e9b44aec98d663Mark Andrews [Dirk-Willem van Gulik]
45e1bd63587102c3bb361eaca42ee7b714fb3542Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Added proxy, auth and header support to src/support/ab.c. Added a
45e1bd63587102c3bb361eaca42ee7b714fb3542Mark Andrews README file to src/support/
45e1bd63587102c3bb361eaca42ee7b714fb3542Mark Andrews [Dirk-Willem van Gulik]
c4008fdd56a8045802ed125e40a06bf1df9b7fbeMark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Don't hard-code the path to AWK in --shadow bootstrapping Makefile.
c4008fdd56a8045802ed125e40a06bf1df9b7fbeMark Andrews [Ralf S. Engelschall] PR#4050
c4008fdd56a8045802ed125e40a06bf1df9b7fbeMark Andrews
4f54d095945d6f60f146112d37d31815ad73eb02Mark Andrews *) Add support for DSO module compilation on BSD/OS 3.x.
4f54d095945d6f60f146112d37d31815ad73eb02Mark Andrews [Randy Terbush, Covalent Technologies]
4f54d095945d6f60f146112d37d31815ad73eb02Mark Andrews
472ce617b7c19ae38dfaa2fc9e8699e3bf9be4a8Mark Andrews *) Fix sed-substitutions in `make install': path elements like `httpd/conf'
472ce617b7c19ae38dfaa2fc9e8699e3bf9be4a8Mark Andrews (for instance from an APACI configure --sysconfdir=/etc/httpd/conf
472ce617b7c19ae38dfaa2fc9e8699e3bf9be4a8Mark Andrews option) were substituted with $(TARGET).conf, etc. Same for other strings
c5387e694299c41361660e54f23e89c7da3ede1dMark Andrews with dots where the dot wasn't matched as plain text.
c5387e694299c41361660e54f23e89c7da3ede1dMark Andrews [Ralf S. Engelschall]
d00e58d4814b45c13434721b5771782e485dcb73Mark Andrews
d00e58d4814b45c13434721b5771782e485dcb73Mark Andrews *) PORT: Add support for FreeBSD 4.x [Ralf S. Engelschall]
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews *) Fix verbose output of APACI configure (option -v)
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews [Martin Kraemer, Ralf S. Engelschall]
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark AndrewsChanges with Apache 1.3.6
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews *) Removed new PassAllEnv code due to DSO problems. [Lars Eilebrecht]
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark AndrewsChanges with Apache 1.3.5 [not released]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
f3a8cd3835463b47a8e3dc84cd8e7a02bcd7fee8Mark Andrews *) M_INVALID needed a value within the scope of METHODS so that unknown
3e9ab6efd14ad716e6815718207dac2bdef3fddfMark Andrews methods can be access controlled. [Roy Fielding] PR#3821
3e9ab6efd14ad716e6815718207dac2bdef3fddfMark Andrews
3e9ab6efd14ad716e6815718207dac2bdef3fddfMark Andrews *) Added PassAllEnv; makes server's entire environment available
6e373c502584f9292e964378411d296c8259026bMark Andrews to CGIs and SSIs executed within directive's scope. [Ken Coar]
6e373c502584f9292e964378411d296c8259026bMark Andrews
6e373c502584f9292e964378411d296c8259026bMark Andrews *) ap_uuencode() always added two trailing '='s and encoding of
3bf783a6d4627266d76b0ebdc05afdccb3d06ad0Mark Andrews 8 bit characters on a machine with signed char may produced
3bf783a6d4627266d76b0ebdc05afdccb3d06ad0Mark Andrews incorrect results. Additionally ap_uuencode() should now
3bf783a6d4627266d76b0ebdc05afdccb3d06ad0Mark Andrews work correctly on EBCDIC platforms.
3bf783a6d4627266d76b0ebdc05afdccb3d06ad0Mark Andrews [Ronald Tschal�r <ronald@innovation.ch>] PR#3411
a37e44f107f5f60d7e84de77eb33b13139bca03fMark Andrews
a37e44f107f5f60d7e84de77eb33b13139bca03fMark Andrews *) WIN32: Binary installer now runs the configuration DLL before
a37e44f107f5f60d7e84de77eb33b13139bca03fMark Andrews the reboot prompt (which is only given if MSVCRT.DLL system
2a35dc09d6c14f4041116766c0f7b60f41be0c9eMark Andrews DLL is new or updated). This should avoid the configuration
2a35dc09d6c14f4041116766c0f7b60f41be0c9eMark Andrews directory being empty after installation. [Paul Sutton]
2a35dc09d6c14f4041116766c0f7b60f41be0c9eMark Andrews PR#3767, 3800, 3827, 3850, 3900, 3953, 3988
d53520b78d4a8726396efdbaa71f86f687a6f308Mark Andrews
d53520b78d4a8726396efdbaa71f86f687a6f308Mark Andrews *) WIN32: Binary installer now creates Start menu options to start
d53520b78d4a8726396efdbaa71f86f687a6f308Mark Andrews and stop Apache as a console application and to uninstall
43501e6570e9081d459fb5c1a81b73c2c53c5df0Mark Andrews the Apache service on NT. [Paul Sutton] PR#3741
43501e6570e9081d459fb5c1a81b73c2c53c5df0Mark Andrews
43501e6570e9081d459fb5c1a81b73c2c53c5df0Mark Andrews *) WIN32: Apache.exe now contains an icon. [Paul Sutton]
c2b2bd69faabd83143ffb30a132a2f20ebd9abdaMark Andrews
c2b2bd69faabd83143ffb30a132a2f20ebd9abdaMark Andrews *) PORT: Switch back to using fcntl() locking on Linux -- instabilities
d140ae28347065500e7efb1ebe884f1606f9ac7bMark Andrews have been reported with flock() locking (probably related to kernel
d140ae28347065500e7efb1ebe884f1606f9ac7bMark Andrews version). [Dean Gaudet] PR#2723, 3531
d3bcf7adca7fc4a019364b0195818673448072f7Mark Andrews
d3bcf7adca7fc4a019364b0195818673448072f7Mark Andrews *) Using APACI, the main config file (usually httpd.conf) was
d3bcf7adca7fc4a019364b0195818673448072f7Mark Andrews not being adjusted as $(TARGET).conf. [Wilfredo Sanchez
cf029c9369548e598379490a039cfbc2b83527eeMark Andrews <wsanchez@apple.com>]
7b52c2ad3c9ca65712e962ddc803e34641f2bc07Mark Andrews
cf029c9369548e598379490a039cfbc2b83527eeMark Andrews *) PORT: AIX does not require the SHARED_CODE "hack"
c6d4f781529d2f28693546b25b2967d44ec89e60Mark Andrews [Ryan Bloom <rbb@raleigh.ibm.com>]
c6d4f781529d2f28693546b25b2967d44ec89e60Mark Andrews
c6d4f781529d2f28693546b25b2967d44ec89e60Mark Andrews *) Set-Cookie headers were being doubled up for some CGIs by the O(n^2)
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews avoidance code added in 1.3.3.
c9eaf357a31ea5eaeeed24f2f4e800a6ef9512e0Mark Andrews [Dean Gaudet, Jeff Lewis <lewis@stanford.edu>] PR#3872
c9eaf357a31ea5eaeeed24f2f4e800a6ef9512e0Mark Andrews
3fc7753efdc33559978ce61785961b1305944077Mark Andrews *) ap_isxdigit was somehow neglected when adding the ap_isfoo() macros
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews for 8-bit safeness. [Dean Gaudet]
3fc7753efdc33559978ce61785961b1305944077Mark Andrews
219a8f14a864aca47c340729dfff008a5050dd26Mark Andrews *) PORT: Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
219a8f14a864aca47c340729dfff008a5050dd26Mark Andrews because SPARCs have a small machine-specific maximum size for the Global
219a8f14a864aca47c340729dfff008a5050dd26Mark Andrews Offset Table which is often exceeded when compiling one of the larger
d14e4f3a9916f2159de4c5995006195072e05085Mark Andrews third-party modules with Apache. [Peter Urban <Peter.Urban@epfl.ch>] PR#3977
d14e4f3a9916f2159de4c5995006195072e05085Mark Andrews
d14e4f3a9916f2159de4c5995006195072e05085Mark Andrews *) Move the directive `ExtendedStatus' in httpd.conf-dist-win _after_ the
fde1a334ee0d437ccbada347ff09e8ea0eaff221Mark Andrews DSO/DLL section because it's a directive from mod_status and isn't
fde1a334ee0d437ccbada347ff09e8ea0eaff221Mark Andrews available before the DLL of mod_status is loaded.
8549bc9b78d7664ac99436d36a1ce615f772378aMark Andrews [Martin POESCHL <mpoeschl@gmx.net>] PR#3936
8549bc9b78d7664ac99436d36a1ce615f772378aMark Andrews
a957b9ccdccf519018e06213a27e1b70b8dc4640Mark Andrews *) SECURITY: Fix a bug in the calculation of the buffer size for the line
4ff0e3c8afbbbc30473701c47d75e1d7829bae3eMark Andrews continuation facility in Apache's configuration files which could
4ff0e3c8afbbbc30473701c47d75e1d7829bae3eMark Andrews lead to a buffer overflow situation.
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed [Thomas Devanneaux <Thomas.Devanneaux@enst.fr>] PR#3617
9a33e2d135b0de7d2e2d768f2b9c45b2627fe4e6Mark Andrews
9a33e2d135b0de7d2e2d768f2b9c45b2627fe4e6Mark Andrews *) Make documentation and error messages of APACI's --activate-module=FILE
7b52c2ad3c9ca65712e962ddc803e34641f2bc07Mark Andrews option more clear. [Jan Wolter <janc@wwnet.net>] PR#3995
dc6da18ccbb808d21f123cc6bda399b44ad11445Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Fix the gcc version check (for enabling the `inline' facility) to
94b58e01ae98764a045e18581d7aaf05d2889e60Mark Andrews really support all future gcc versions >= 2.7 until we know more.
94b58e01ae98764a045e18581d7aaf05d2889e60Mark Andrews [John Tobey <jtobey@banta-im.com>] PR#3983
a687a0592bbe3a582860eb5f03725bf80d7ac1d8Mark Andrews
a687a0592bbe3a582860eb5f03725bf80d7ac1d8Mark Andrews *) Let APACI's configure script correctly complain for unknown --enable-XXX
a687a0592bbe3a582860eb5f03725bf80d7ac1d8Mark Andrews and --disable-XXX options. [Ralf S. Engelschall] PR#3958
a295fbb55cfed38bcf2853c60410cce52ab6cebbMark Andrews
a295fbb55cfed38bcf2853c60410cce52ab6cebbMark Andrews *) Link the shared core bootstrap program (``Rule SHARED_CORE=yes'') also
a295fbb55cfed38bcf2853c60410cce52ab6cebbMark Andrews against libap.a and use its ap_snprintf() instead of sprintf() to avoid
6eb8591f005f3e270d9ffb23769753952d0ec286Mark Andrews possible buffer overflows. [Ralf S. Engelschall]
6eb8591f005f3e270d9ffb23769753952d0ec286Mark Andrews
6eb8591f005f3e270d9ffb23769753952d0ec286Mark Andrews *) Remove no longer used non-API function ap_single_module_init().
a1bc94109313bf4ebb6e6ff655d71d45582d2e43Mark Andrews [Ralf S. Engelschall]
a1bc94109313bf4ebb6e6ff655d71d45582d2e43Mark Andrews
a1bc94109313bf4ebb6e6ff655d71d45582d2e43Mark Andrews *) Add Apple's Mac OS X Server Layout "Rhapsody" to config.layout.
a1bc94109313bf4ebb6e6ff655d71d45582d2e43Mark Andrews [Wilfredo Sanchez]
d9c4f954a1ddf7fcd5bf86bb7bbc12f669f81507Mark Andrews
d9c4f954a1ddf7fcd5bf86bb7bbc12f669f81507Mark Andrews *) Add cgidir, htdocsdir, iconsdir variables to Makefile.tmpl in order
d9c4f954a1ddf7fcd5bf86bb7bbc12f669f81507Mark Andrews to make platform installations easier. [Wilfredo Sanchez]
6657a9e2d8c039be0bec367cae59a91d77ccaad4Mark Andrews
6657a9e2d8c039be0bec367cae59a91d77ccaad4Mark Andrews *) In configure, do not append the target name to the directory path if
6657a9e2d8c039be0bec367cae59a91d77ccaad4Mark Andrews the path already contains "apache". [Ralf S. Engelschall]
118394ef2ec7cef253c55359a3d70d202ddc2fa0Mark Andrews
118394ef2ec7cef253c55359a3d70d202ddc2fa0Mark Andrews *) SIGPIPE is now ignored by the server core. The request write routines
118394ef2ec7cef253c55359a3d70d202ddc2fa0Mark Andrews (ap_rputc, ap_rputs, ap_rvputs, ap_rwrite, ap_rprintf, ap_rflush) now
118394ef2ec7cef253c55359a3d70d202ddc2fa0Mark Andrews correctly check for output errors and mark the connection as aborted.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews Replaced many direct (unchecked) calls to ap_b* routines with the
6178552326050b16f5706ee63c931e9388d74318Mark Andrews analogous ap_r* calls. [Roy Fielding]
69836f45cff130ab11a1f5a662e8bf8aaf390de2Mark Andrews
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews *) Enhanced mod_rewrite's mapfile handling: The in-core cache for text and
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews DBM format mapfiles now uses a 4-way hash table with LRU functionality.
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews Furthermore map lookups for non-existent keys are now cached as well.
69836f45cff130ab11a1f5a662e8bf8aaf390de2Mark Andrews Additionally "txt" maps are now parsed with simple string functions
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews instead of using ap_pregcomp(). As a side effect a bug that prevented
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews the usage of keys containing the "," character was fixed.
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews The changes drastically improve the performance when large rewrite maps
08c90261660649ca7d92065f6f13a61ec5a9a86dMark Andrews are in use.
f8f65e2de40b1e9874b88f392f3abeb057ce6172Mark Andrews [Michael van Elst <mlelstv@serpens.swb.de>, Lars Eilebrecht] PR#3160
f8f65e2de40b1e9874b88f392f3abeb057ce6172Mark Andrews
f8f65e2de40b1e9874b88f392f3abeb057ce6172Mark Andrews *) Added ap_sub_req_method_uri() for doing a subrequest with a method
05d32f6b0f6590ca22136b753309f070ce769000Mark Andrews other than GET, and const'd the definition of method in request_rec.
05d32f6b0f6590ca22136b753309f070ce769000Mark Andrews [Greg Stein]
05d32f6b0f6590ca22136b753309f070ce769000Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Use proper pid_t type for saving PIDs in alloc.c. [John Bley]
2b66a51a7d72e9cc07917fb583ad528b0539d2a3Mark Andrews
2b66a51a7d72e9cc07917fb583ad528b0539d2a3Mark Andrews *) Replaced use of WIN32 define with HAVE_DRIVE_LETTERS to indicate
2b66a51a7d72e9cc07917fb583ad528b0539d2a3Mark Andrews when the OS allows a DOS drive letter within pathnames. [Brian Havard]
2b66a51a7d72e9cc07917fb583ad528b0539d2a3Mark Andrews
e9733bc599f30033ffe7af69f5fca254fb59d46eMark Andrews *) Add %V to mod_log_config, this logs the hostname according to the
e9733bc599f30033ffe7af69f5fca254fb59d46eMark Andrews UseCanonicalName setting (this is the pre-1.3.4 behaviour of
332ed11af0e9837421160ab67619e025520a73f4Mark Andrews %v). Useful for mass vhosting. [Tony Finch <dot@dotat.at>]
332ed11af0e9837421160ab67619e025520a73f4Mark Andrews
332ed11af0e9837421160ab67619e025520a73f4Mark Andrews *) Add support for \n and \t to mod_log_config, can be used to produce
332ed11af0e9837421160ab67619e025520a73f4Mark Andrews more reliable logs with multiline entries. [Tony Finch <dot@dotat.at>]
fabf2ee6b01ee06a0de940b83d53cf57f9f79265Mark Andrews
fabf2ee6b01ee06a0de940b83d53cf57f9f79265Mark Andrews *) Fixed a few compiler nits. [John Bley <jbb6@acpub.duke.edu>]
fabf2ee6b01ee06a0de940b83d53cf57f9f79265Mark Andrews
fabf2ee6b01ee06a0de940b83d53cf57f9f79265Mark Andrews *) Added informative error messages for failed munmap() and fseek() calls
fabf2ee6b01ee06a0de940b83d53cf57f9f79265Mark Andrews in http_core.c. [John Bley, Roy Fielding]
1c91b0a6516319d81670da2325e2bd08a7703707Mark Andrews
1c91b0a6516319d81670da2325e2bd08a7703707Mark Andrews *) Added some informative error messages for some failed malloc()
1c91b0a6516319d81670da2325e2bd08a7703707Mark Andrews calls. [John Bley <jbb6@acpub.duke.edu>, Jim Jagielski]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
95b484c9580d06eb2f9735a22e9841389c2859baMark Andrews *) OS/2 ap_os_canonical_filename()'s behaviour is improved: ap_assert()
2a90390deeff6ba07125bfb2c81ab4b582eb2777Mark Andrews is removed. This allows <Directory proxy:*> directives to work and
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews prevents invalid requests from killing the process.
be2c2c29a88db96bd51f11d671ec207f0b6b0d45Mark Andrews [Brian Havard <brianh@kheldar.apana.org.au>]
be2c2c29a88db96bd51f11d671ec207f0b6b0d45Mark Andrews
be2c2c29a88db96bd51f11d671ec207f0b6b0d45Mark Andrews *) Reorganised FAQ document.
01db0feafa67200a07ff8f81dde9029f675bbb5cMark Andrews [Joshua Slive <slive@finance.commerce.ubc.ca>] PR#2497
503ab4e136b843ef431f904709698231f1bc39e3Mark Andrews
503ab4e136b843ef431f904709698231f1bc39e3Mark Andrews *) src/support/: The ApacheBench benchmark program was overhauled by
cf224bbf7bab87bc28b12f5b30f5ca3f3e5bf604Mark Andrews David N. Welton: you can now have it generate an HTML TABLE, presumably
cf224bbf7bab87bc28b12f5b30f5ca3f3e5bf604Mark Andrews for integration into other HTML sources. David updated the ab man page
cf224bbf7bab87bc28b12f5b30f5ca3f3e5bf604Mark Andrews as well and added some missing descriptions. Thanks!
cf224bbf7bab87bc28b12f5b30f5ca3f3e5bf604Mark Andrews [David N. Welton <davidw@prosa.it>]
00afe78ab290fec3041731c1fac146a24f556de4Mark Andrews
00afe78ab290fec3041731c1fac146a24f556de4Mark Andrews *) Win32: The filename validity checker now allows filenames containing
00afe78ab290fec3041731c1fac146a24f556de4Mark Andrews characters in the range 0x80 to 0xff (for example accented characters).
2674e1a455d4f71de09b2b60e7a8304b9a305588Mark Andrews [Paul Sutton] PR#3890
2674e1a455d4f71de09b2b60e7a8304b9a305588Mark Andrews
2674e1a455d4f71de09b2b60e7a8304b9a305588Mark Andrews *) Added conditional logging based upon environment variables to
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews mod_log_config. mod_log_referer and mod_log_agent
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews are now deprecated. [Ken Coar]
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews *) Allow apache acting as a proxy server to relay the real
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews reason of a failure to a client rather than the "internal
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews server error" it does currently. The general exposure mechanism
60ab03125c137c48a6b2ed6df1d2c8657757e09dMark Andrews can be triggered by any module by setting the "verbose-error-to"
405ae948cc01c5fb9fee511ce32de86f8077e01bMark Andrews note to "*"; this allows more than just proxy errors to be exposed.
405ae948cc01c5fb9fee511ce32de86f8077e01bMark Andrews [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455, 4086
57e4191a112bf57a1eab6d37212df2531b6f8a16Mark Andrews
7d116211ec7b063891130f191e3ed437b45dba70Mark Andrews *) Moved man pages for ab and apachectrl to section 8.
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews [Wilfredo Sanchez, Roy Fielding]
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews *) Added -S option to install.sh so that options can be passed to
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews strip on some platforms. [Ralf S. Engelschall, Wilfredo Sanchez]
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews
faa4af28cff84d7ac45c1da98e40c00f65a24aa3Mark Andrews *) Tweak modules Makefile generated by Configure so that it handles
eba8a27e55258ee4470d7c3caa6bb3a335b9731eMark Andrews the test case of no modules being selected. [chaz@reliant.com]
203629e729b756601646c639c0dbfb267030a617Mark Andrews
8af4e7aa4e2a6fe84bf4ebe09ca1d4ef1d8ab593Mark Andrews *) Added a <LimitExcept method ...> sectioning directive that allows
8af4e7aa4e2a6fe84bf4ebe09ca1d4ef1d8ab593Mark Andrews the user to assign authentication control to any HTTP method that
d08c5dfcd4d1f69004c1382ffc00cc1848dcd1a3Mark Andrews is *not* given in the argument list; i.e., the logical negation
d08c5dfcd4d1f69004c1382ffc00cc1848dcd1a3Mark Andrews of the <Limit> directive. This is particularly useful for controlling
982a2cfef37a39842ff53dc2e00b947c554fa78eTatuya JINMEI 神明達哉 access on methods unknown to the Apache core, but perhaps known by
16ee4fe11bad616a76c79e9f626a7e04a88ef4abMark Andrews some module or CGI script. [Roy Fielding, Tony Finch]
16ee4fe11bad616a76c79e9f626a7e04a88ef4abMark Andrews
16ee4fe11bad616a76c79e9f626a7e04a88ef4abMark Andrews *) Prevent apachectl from complaining if the PIDFILE exists but
16ee4fe11bad616a76c79e9f626a7e04a88ef4abMark Andrews does not contain a process id, as might occur if the server is
a5b66bf342440688739d7207e437bf743e8b7ac0Mark Andrews being rapidly restarted. [Wilfredo Sanchez]
a5b66bf342440688739d7207e437bf743e8b7ac0Mark Andrews
982e072a5000bfc072aee8b34f64112cf54369a5Mark Andrews *) Win32: Add global symbols missing from ApacheCore.def. [Carl Olsen]
982e072a5000bfc072aee8b34f64112cf54369a5Mark Andrews
982e072a5000bfc072aee8b34f64112cf54369a5Mark Andrews *) Entity tag comparisons for If-Match and If-None-Match were not being
e24089c5c33f31a39cea0123765165fa31308343Tatuya JINMEI 神明達哉 performed correctly -- weak tags might cause false positives. Also,
9547d3e03bb082d73aeabb497b60632ebfdc78a6Mark Andrews strong comparison wasn't properly enforced in all cases.
6f3c2ee187d690f96ffef3ba5a6c2e112bb3798cMark Andrews [Roy Fielding, Ken Coar, Dean Gaudet] PR#2065, 3657
6f3c2ee187d690f96ffef3ba5a6c2e112bb3798cMark Andrews
9547d3e03bb082d73aeabb497b60632ebfdc78a6Mark Andrews *) OS/2: Supply OS/2 error code instead of errno on semaphore errors.
9de05727e334336ceb0abcca404d770abd23b876Mark Andrews [Brian Havard]
9de05727e334336ceb0abcca404d770abd23b876Mark Andrews
9de05727e334336ceb0abcca404d770abd23b876Mark Andrews *) Work around a bug in Lynx regarding its sending "Negotiate: trans"
7c61d798f54f7c19f87d46a0df775e0e58fe7d30Mark Andrews even though it doesn't understand TCN. [Koen Holtman, Roy Fielding]
7c61d798f54f7c19f87d46a0df775e0e58fe7d30Mark Andrews
e23932d3c8c154cff3fea0ecff64e26c6ac6f5d8Mark Andrews *) Added ap_size_list_item(), ap_get_list_item(), and ap_find_list_item()
e23932d3c8c154cff3fea0ecff64e26c6ac6f5d8Mark Andrews to util.c for parsing an HTTP header field value to extract the next
72160d9b51d902a7cf18de84953bc651941f73c2Mark Andrews list item, taking into account the possible presence of nested comments,
72160d9b51d902a7cf18de84953bc651941f73c2Mark Andrews quoted-pairs, and quoted-strings. ap_get_list_item() also removes
72160d9b51d902a7cf18de84953bc651941f73c2Mark Andrews insignificant whitespace and lowercases non-quoted tokens.
885e60828681cecd17bccbe5ceff8f4e75ef4c5cMark Andrews [Roy Fielding] PR#2065
8ec056723666c71a499880ffa415661f37ffd08eMark Andrews
8ec056723666c71a499880ffa415661f37ffd08eMark Andrews *) proxy: The various calls to ap_proxyerror() can return HTTP/1.1 status
037b732f88edc943f3141e0342dc993156e3abf3Mark Andrews code different from 500. This allows the proxy to, e.g., return
80a609bf44ee09766aeb9ae02cfbf7f9fe86dd83Mark Andrews "403 Forbidden" for ProxyBlock'ed URL's. [Martin Kraemer] Related to PR#3455
80a609bf44ee09766aeb9ae02cfbf7f9fe86dd83Mark Andrews
80a609bf44ee09766aeb9ae02cfbf7f9fe86dd83Mark Andrews *) Fix ordering of language variants for the case where the traditional
b89095ba15e9163f2bacc46239d8f69d1a2b9ad3Tatuya JINMEI 神明達哉 negotiation algorithm is being used with multiple language variants
b89095ba15e9163f2bacc46239d8f69d1a2b9ad3Tatuya JINMEI 神明達哉 and no Accept-Language. [James Treacy <treacy@debian.org>] PR#3299, 3688
b89095ba15e9163f2bacc46239d8f69d1a2b9ad3Tatuya JINMEI 神明達哉
bd5c8a564b21781fe6b608fe6a75c2e7152200acTatuya JINMEI 神明達哉 *) Do not round the TCN quality calculation to 5 decimal places,
85708f9aabbfe31fc648c90258ae18ce0edc3488Mark Andrews unlike RFC 2296, because the calculation might need 12 decimal places
85708f9aabbfe31fc648c90258ae18ce0edc3488Mark Andrews to get the right result. [Roy Fielding]
49732e4d6008d7d99dfce596a17e17aa13425502Mark Andrews
49732e4d6008d7d99dfce596a17e17aa13425502Mark Andrews *) Remove unused code to disable transparent negotiation when
49732e4d6008d7d99dfce596a17e17aa13425502Mark Andrews negotiating on encoding only, as we now handle encoding too
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews (though this is nonstandard for TCN), remove charset=ISO-8859-1
cae2cb086244dfb883739edbe79e34756079f70eMark Andrews fiddle from the fiddle-averse RVSA comparison, and fix bugs in
cf0bcc2c80ca99f1e6e53dcdd0eba03fe70723dfMark Andrews some debugging statements within mod_negotiation. [Koen Holtman]
cf0bcc2c80ca99f1e6e53dcdd0eba03fe70723dfMark Andrews
0da29be670f6fa5b2a6320d9d843bc8b802c153aMark Andrews *) Fixed a rare memory corruption possibility in mod_dir if the index
0da29be670f6fa5b2a6320d9d843bc8b802c153aMark Andrews file is negotiable and no acceptable variant can be found.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Dean Gaudet, Roy Fielding, Martin Kraemer]
0da29be670f6fa5b2a6320d9d843bc8b802c153aMark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Win32: Add new config directive, ScriptInterpreterSource, to enable
03e200df5dc283f24a6a349f0b31d3eab26da893Mark Andrews searching the Win32 registry for script interpreters.
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Bill Stoddard]
6672b3524c2305d8c66d8189c774f549be352ac0Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Win32: The compiled-in default filename for the error log is now
74f261bd2b7846d8e730ca3a1b28d6503de5c74aMark Andrews error.log, which matches the default in the distributed httpd.conf.
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Paul Sutton]
5be3685b0e57677c0cc03113099cb8f99f9a070bMark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Win32: Any error messages from -i or -u command line options are now
5be3685b0e57677c0cc03113099cb8f99f9a070bMark Andrews displayed on the console output rather than sent to the error log.
5be3685b0e57677c0cc03113099cb8f99f9a070bMark Andrews Also the "Running Apache..." message is not output unless Apache is
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews going to serve requests. [Paul Sutton]
715361d0c3800e5ad886e5df971936ce6cd1ca89Mark Andrews
715361d0c3800e5ad886e5df971936ce6cd1ca89Mark Andrews *) Rework the MD5 authentication scheme to use FreeBSD's algorithm,
715361d0c3800e5ad886e5df971936ce6cd1ca89Mark Andrews and use a private significator ('$apr1$') to mark passwords as
715361d0c3800e5ad886e5df971936ce6cd1ca89Mark Andrews being smashed with our own algorithm. Also abstract the password
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews checking into a new ap_validate_password() routine. [Ken Coar]
3d711f2f75cb9a9ddcbf1fca9b2de192e75340e6Mark Andrews
3d711f2f75cb9a9ddcbf1fca9b2de192e75340e6Mark Andrews *) Win32: The filename validity checker now allows "COM" but refuses
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews access to "COM1" through "COM4". This allows filenames such
a268fec7f54a89a0772a91da0511c8eae09e6157Mark Andrews as "com.name" to be served. [Paul Sutton] PR#3769.
a268fec7f54a89a0772a91da0511c8eae09e6157Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) BS2000: Adapt to the new ufork() system call interface which will
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews make subtasking easier on the OSD/POSIX mainframe environment.
4e1d3e67cdc76609bad5f0310ac48de10b442b9fMark Andrews [Martin Kraemer]
4e1d3e67cdc76609bad5f0310ac48de10b442b9fMark Andrews
4e1d3e67cdc76609bad5f0310ac48de10b442b9fMark Andrews *) Add a compatibility define for escape_uri() -> ap_escape_uri() to
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews ap_compat.h. [David White <david@persimmon.com>] PR#3725
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews *) Make NDBM file suffix determination for mod_rewrite more accurate, i.e.
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews use `.db' instead of `.pag' not only for FreeBSD, but also when
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews the NDBM library looks like Berkeley-DB based.
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews [Ralf S. Engelschall] PR#3773
6b79e960e6ba2991aeb02a6c39af255ab7f06d99Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Add ability to handle DES or MD5 authentication passwords.
74a14c4eb8518a9cc31cb5a918547a93d0c0e838Mark Andrews [Ryan Bloom <rbb@Raleigh.IBM.Com>]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews *) Fix O(n^2) memory consumption in mod_speling. [Dean Gaudet]
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews *) SECURITY: Avoid some buffer overflow problems when escaping
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews quoted strings. (This overflow was on the heap and we believe
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews impossible to exploit.) [Rick Perry <perry@ece.vill.edu>]
261a6a1f7d95eaf0cd882f3123dcfd775517a54fMark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Let src/Configure be aware of CFLAGS options starting with plus
7c678cfe0bd477ded2995b9490d72edf7bc76a84Mark Andrews signs as it's the case for the HP/UX compiler.
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Doug Yatcilla <yatcilda@umdnj.edu>] PR#3681
a20e888bde4b307050d76e09266b2fb49f03bc30Mark Andrews
a20e888bde4b307050d76e09266b2fb49f03bc30Mark Andrews *) Remove the hard-wire of TAR=tar (we now check for gtar and gnutar first)
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews and check to see if the tar we wind up with supports '-h'.
f4f0eedb8916a824124cf56d4c3f18eb6c77b42eMark Andrews [Jim Jagielski] PR#3671
f4f0eedb8916a824124cf56d4c3f18eb6c77b42eMark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) A consistent and conservative style for all shell scripts has been
611ec5dd43d31fd6385f1a94c2f0865375f452b4Mark Andrews implemented. Basically, all shell string tests use the traditional
611ec5dd43d31fd6385f1a94c2f0865375f452b4Mark Andrews hack of 'if [ "x$var" != "x" ]' or 'if [ "x$var" = "xstring" ]'
7b52c2ad3c9ca65712e962ddc803e34641f2bc07Mark Andrews to protect against bare null variable strings (ie: wrapping both
01b8bc018d83e757b0578723977b0a71e1e626f8Mark Andrews sides with double quotes and prepending 'x'). 'x' was chosen
01b8bc018d83e757b0578723977b0a71e1e626f8Mark Andrews because it's more universal and hopefully easier for old shell
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews prgrammers, as well as being easier to search for in 'vi' (/x\$) :)
8abe06b25d245ab2955d81525bfe6bd29b80908eMark Andrews [Jim Jagielski]
8abe06b25d245ab2955d81525bfe6bd29b80908eMark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) The status module now prints out both the main server generation as
7755f5932a3e59d0c6a2506cc94519de92b91ca6Mark Andrews well as the generation of each process. Also, the vhost info is
7755f5932a3e59d0c6a2506cc94519de92b91ca6Mark Andrews printed with '?notable'. [Jim Jagielski]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
b5ad6dfea4cc3e7d1d322ac99f1e5a31096837c4Mark Andrews *) Move src/main/md5c.c to src/ap/ap_md5c.c; it's httpd-neutral
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews and this makes its functions available to things in src/support.
6e9efadbea9febb0494e713e54dfea6f7ef70383Mark Andrews [Ken Coar]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
aa0f0779d1ea7150991c3e6eec1cc532086c13fdMark AndrewsChanges with Apache 1.3.4
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
18d0b5e54be891a1aa938c165b6d439859121ec8Mark Andrews *) Renamed macros status_drops_connection to ap_status_drops_connection
18d0b5e54be891a1aa938c165b6d439859121ec8Mark Andrews and vestigial scan_script_header to ap_scan_script_header_err,
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews mostly for aesthetic reasons. [Roy Fielding]
0563d476dea35a60a59857cc8bd26ef276d78799Mark Andrews
0563d476dea35a60a59857cc8bd26ef276d78799Mark Andrews *) The query switch "httpd -S" didn't exit after showing the
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews vhost settings. That was inconsistent with the other query functions.
b2f160f266005ceaed77a3f575109f74cd13d548Mark Andrews [Martin Kraemer]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
0bb7c66ef8e3e8740cbac4a4de607060dfc4d6c8Mark Andrews *) Moved the MODULE_MAGIC_COOKIE from before the versions and
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews filename to the end of the STANDARD_MODULE_STUFF. Its
2b3e34f03675d6c71a654fe2094f3b9c063a70eaMark Andrews presence at the beginning prevented reporting of the filename
2b3e34f03675d6c71a654fe2094f3b9c063a70eaMark Andrews for modules compiled before 1 January 1999. [Ken Coar]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
7216566bd596f8fbc98eafd5e9359ec7fa92c8b8Mark Andrews *) SECURITY: ap_os_is_filename_valid() has been added to Win32
7216566bd596f8fbc98eafd5e9359ec7fa92c8b8Mark Andrews to detect and prevent access to special DOS device file names.
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Paul Sutton, Ken Parzygnat]
42b37d29c7709ce5bfe0110d07f1ec163be220d2Mark Andrews
42b37d29c7709ce5bfe0110d07f1ec163be220d2Mark Andrews *) WIN32: Created new makefiles Makefile_win32.txt (normal build)
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews and Makefile_win32_debug.txt (debug build) that work on Win95.
42b37d29c7709ce5bfe0110d07f1ec163be220d2Mark Andrews Run each of the following from the src directory:
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews nmake /f Makefile_win32.txt # compiles normal build
7c386b0c3194aa18089c6fa2e9856b576ec99c81Mark Andrews nmake /f Makefile_win32.txt install # compiles and installs
7c386b0c3194aa18089c6fa2e9856b576ec99c81Mark Andrews nmake /f Makefile_win32.txt clean # removes compiled junk
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews nmake /f Makefile_win32_debug.txt # compiles debug build
fd780f3d47179d68ba2d4661fb9cac9ce1e74928Mark Andrews nmake /f Makefile_win32_debug.txt install
fd780f3d47179d68ba2d4661fb9cac9ce1e74928Mark Andrews nmake /f Makefile_win32_debug.txt clean
fd780f3d47179d68ba2d4661fb9cac9ce1e74928Mark Andrews [Roy Fielding]
fd780f3d47179d68ba2d4661fb9cac9ce1e74928Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Added binbuild.sh and findprg.sh helpers to make it easier for us
2bef3713093349af52ba61eaab07adf3207da873Mark Andrews to build binary distributions. [Lars Eilebrecht]
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
bcf369e513a1cc2209e2a987f5772afa79813540Mark Andrews *) IndexOptions SuppressColumnSorting only turned off making
bcf369e513a1cc2209e2a987f5772afa79813540Mark Andrews the column headers anchors; you could still change the display
bcf369e513a1cc2209e2a987f5772afa79813540Mark Andrews order by manually adding a '?N=A' or similar query string to the
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews URL. Now SuppressColumnSorting locks in the sort order so
016c0a82f1ce3fe4d362d7c9cf8de4377ffaf5a9Mark Andrews it can't be overridden this way. [Ken Coar]
016c0a82f1ce3fe4d362d7c9cf8de4377ffaf5a9Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Added IndexOrderDefault directive to supply a default sort order
ad226e3da3207fcb1dbb1054dd339dbbd19f507aMark Andrews for FancyIndexed directory listings. [Ken Coar] PR#1699
016c0a82f1ce3fe4d362d7c9cf8de4377ffaf5a9Mark Andrews
9b80f3a7c739a99b498a37a711a51b6a88df3a78Mark Andrews *) Change the ap_assert macro to a variant that works on all platforms.
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Richard Prinz <richard.prinz@cso.net>] PR#2575
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
83a56f1e4f2d11fa895ceff4342fff7157910036Mark Andrews *) Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't
83a56f1e4f2d11fa895ceff4342fff7157910036Mark Andrews search for an underscore on dlsym() (as it's already the case
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews for FreeBSD 3.0). [Todd Vierling <tv@pobox.com>] PR#2462
1425217e5c3a2cbab7f8344e600e0c16047289ffMark Andrews
d4d68515d23668cfe804ab2a174a7e427decedd8Mark Andrews *) Small fix for mod_env.html: The module was documented as to be _not_
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews compiled into Apache per default, although it _IS_ compiled into
e8e62bb7829e88fc56360f7edc021dc8493a8704Mark Andrews Apache per default. [Sim Harbert <sim@mindspring.com>] PR#3572
e8e62bb7829e88fc56360f7edc021dc8493a8704Mark Andrews
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews *) Instead of fixing a bug in the generation procedure for config.status (a
e7fb847ed570dd8c1bcdacabb3d69bd81feb79aeMark Andrews backslash was missing) we remove the bug together with it's complete
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews context because the special cases of the past can now no longer occur
ab9871e71eac6b33ce92a0ad26dc50d0ff241e3bMark Andrews because of the recent magic for the --with-layout default.
ab9871e71eac6b33ce92a0ad26dc50d0ff241e3bMark Andrews [Ralf S. Engelschall] PR#3590
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews
ab9871e71eac6b33ce92a0ad26dc50d0ff241e3bMark Andrews *) Make top-level Makefile aware of a parallel build procedures (make -j) by
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews making sure the src/support/ tools are _forced_ to be build last (they
2c6f9101f99cc663074376a5cc1d954d33bdbe36Mark Andrews depend on other libraries).
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews [Markus Theissinger <markus.theissinger@gmx.de>]
116e6b4257e3efceca3e82af1e695579129af93dMark Andrews
1fc4793844c9613b17866c33dbeab8aaa94b66ffMark Andrews *) Fix installation procedure: Now that os-inline.c is actually used (a
539f477cd03db1ac173bcb5257da136283e57849Mark Andrews recently fixed bug prevented this) we need to also install os-include.c
116e6b4257e3efceca3e82af1e695579129af93dMark Andrews in addition to os.h into the PREFIX/include/ location or building of
1fc4793844c9613b17866c33dbeab8aaa94b66ffMark Andrews module DSOs with APXS fails. [Ralf S. Engelschall] PR#3527
1c153afce556ff3c687986fb7c4a0b0a7f5e7cd8Mark Andrews
1c153afce556ff3c687986fb7c4a0b0a7f5e7cd8Mark Andrews *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to
81bdad57bd2c0c4b9a0684fe6e222ba95da625ecMark Andrews allow us to distinguish between a garbled DSO (or even a file which isn't
116e6b4257e3efceca3e82af1e695579129af93dMark Andrews an Apache module DSO at all) and a DSO which doesn't match the current
116e6b4257e3efceca3e82af1e695579129af93dMark Andrews Apache API. [Ralf S. Engelschall] PR#3152
a5768d889b4e139e78f2b1d9433f3e9f8d225ff4Mark Andrews
3d247992c4a500caa7703edaee68612e545af602Mark Andrews *) Two minor enhancements to mod_rewrite: First RewriteRule now also
3d247992c4a500caa7703edaee68612e545af602Mark Andrews supports the ``nocase|NC'' flag (as RewriteCond already does for ages) to
5c08d19fb17f0684e6424b94910cef61cec7592fMark Andrews match case insensitive (this especially avoids nasty patterns like
3d247992c4a500caa7703edaee68612e545af602Mark Andrews `[tT][eE][sS][tT]'). Second two additional internal map functions
3d247992c4a500caa7703edaee68612e545af602Mark Andrews `escape' and `unescape' were added which can be used to escape/unescape
5c08d19fb17f0684e6424b94910cef61cec7592fMark Andrews to/from hex-encodings in URLs parts (this is especially useful in
9eca2b9b95df456545e1bc298c8337400aa24e8eMark Andrews combination with map lookups).
9eca2b9b95df456545e1bc298c8337400aa24e8eMark Andrews [Magnus Bodin, Ian Kallen, Ralf S. Engelschall]
9eca2b9b95df456545e1bc298c8337400aa24e8eMark Andrews
cd5f6549b33bf2481538b77934d69313f452ff4bMark Andrews *) Renamed the macro escape_uri() to ap_escape_uri() which was
05331ce161276d879711342fadbc6144af7f5ba6Mark Andrews forgotten (because it was a macro) in the symbol renaming process.
05331ce161276d879711342fadbc6144af7f5ba6Mark Andrews [Ralf S. Engelschall]
c5223c9cb7c22620d5ee6611228673e95b48a270Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Fix some inconsistencies related to the scopes of directives. The only
c5223c9cb7c22620d5ee6611228673e95b48a270Mark Andrews user visible change is that the directives `UseCanonicalName' and
c5223c9cb7c22620d5ee6611228673e95b48a270Mark Andrews `ContentDigest' now use the (more correct) `Options' scope instead of
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews (less correct) `AuthConfig' scope. [Ralf S. Engelschall]
c5223c9cb7c22620d5ee6611228673e95b48a270Mark Andrews
c5223c9cb7c22620d5ee6611228673e95b48a270Mark Andrews *) Using DSO, the Server token was being mangled. Specifically, the
2fa0485e9e969dd42dd10339354d7949db46111aMark Andrews module's token was being added first before the Apache token. This
2fa0485e9e969dd42dd10339354d7949db46111aMark Andrews has been fixed. [Jim Jagielski]
092f7679306989293bbe755f31ade0a5f456b370Mark Andrews
7d5b32acb1898844afa19123d07483b46edac7cbMark Andrews *) Major overhaul of mod_negotiation.c, part 2.
7d5b32acb1898844afa19123d07483b46edac7cbMark Andrews - properly handle "identity" within Accept-Encoding.
437404e8313481329baa5897eeda8c45bf748553Mark Andrews - allow encoded variants in RVSA negotiation and let them appear in
ef67e6d8fa86d98a2c0defc43b624434324d9ce7Mark Andrews the Alternates field using the non-standard "encoding" tag-list.
841fc0fd70881499b62f15e35980dd14b905ba45Mark Andrews - fixed both negotiation algorithms so that an explicitly accepted
e5a5c60a5e690ee9858c9e3facba189b8646f0b7Mark Andrews encoding is preferred over no encoding if "identity" is not
e5a5c60a5e690ee9858c9e3facba189b8646f0b7Mark Andrews included within Accept-Encoding.
e5a5c60a5e690ee9858c9e3facba189b8646f0b7Mark Andrews - added ap_array_pstrcat() to alloc.c for efficient concatenation
16b9ee24b96a1c1d21d809e88238091c4afa25c9Mark Andrews of large substring sequences.
16b9ee24b96a1c1d21d809e88238091c4afa25c9Mark Andrews - replaced O(n^2) memory hogs in mod_negotiation with ap_array_pstrcat.
afa3f2fab7144761bbf481b9d40d667529c6ec76Mark Andrews [Roy Fielding]
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein *) Major overhaul of mod_negotiation.c, part 1.
60e5e10f8d2e2b0c41e8abad38cacd867caa6ab2Rob Austein - cleanups to mod_negotiation comments and code structure
da53179d1055c75e64dc2c9623b38cb2b8629eb6Mark Andrews - made compliant with HTTP/1.1 proposed standard (rfc2068) and added
da53179d1055c75e64dc2c9623b38cb2b8629eb6Mark Andrews support for everything in the upcoming HTTP/1.1
da53179d1055c75e64dc2c9623b38cb2b8629eb6Mark Andrews revision (draft-ietf-http-v11-spec-rev-06.txt).
2941824604f9c5aa70f216d1f2941b3c59aa37dcMark Andrews - language tag matching also handles tags with more than 2
b4028939fdffc92cf659764deb9c6e3c805cc948Mark Andrews levels like x-y-z
b4028939fdffc92cf659764deb9c6e3c805cc948Mark Andrews - empty Accept, Accept-Language, Accept-Charset headers are
b4028939fdffc92cf659764deb9c6e3c805cc948Mark Andrews processed correctly; previously an empty header would make all
9840a0767d02f6c6b9d1f73d54e0cab2e8192a93Mark Andrews values acceptable instead of unacceptable.
9840a0767d02f6c6b9d1f73d54e0cab2e8192a93Mark Andrews - allowed for q values in Accept-Encoding
9840a0767d02f6c6b9d1f73d54e0cab2e8192a93Mark Andrews - added support for transparent content negotiation (rfc2295 and
57ed0bab5b92f66af3dc3b86081bd42ab8d4ba09Rob Austein rfc2296) (though we do not implement all features in these drafts,
57ed0bab5b92f66af3dc3b86081bd42ab8d4ba09Rob Austein e.g. no feature negotiation). Removed old experimental version.
57ed0bab5b92f66af3dc3b86081bd42ab8d4ba09Rob Austein - implemented 'structured entity tags' for better cache correctness
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein (structured entity tags ensure that caches which can deal with Vary
ab023a65562e62b85a824509d829b6fad87e00b1Rob Austein will (eventually) be updated if the set of variants on the server
1cb73c69f76c8c2c66b767a8b9ad04f3988cf6a9Mark Andrews is changed)
1cb73c69f76c8c2c66b767a8b9ad04f3988cf6a9Mark Andrews - this involved adding a vlist_validator element to request_rec
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews - this involved adding the ap_make_etag() function to the global API
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews - modified guessing of charsets used by Apache negotiation algorithm
c651f15b30f1dae5cc2f00878fb5da5b3a35a468Mark Andrews to guess 'no charset' if the variant is not a text/* type
f754fa97bc698cc251d227173a95e4d39a88ac01Mark Andrews - added code to sort multiviews variants into a canonical order so that
f754fa97bc698cc251d227173a95e4d39a88ac01Mark Andrews negotiation results are consistent across backup/restores and mirrors
a8f1c013b0fdc405ca4b5ec8316d3c9e3ad9d31bMark Andrews - removed possibility of a type map file resolving to another type map
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews file as its best variant
a8f1c013b0fdc405ca4b5ec8316d3c9e3ad9d31bMark Andrews [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 3299, 1987
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews
959fb01017fa83578e7c8776ed3baba3076a2409Mark Andrews *) RFC2396 allows the syntax http://host:/path (with no port number)
959fb01017fa83578e7c8776ed3baba3076a2409Mark Andrews but the proxy disallowed it (ap_proxy_canon_netloc()).
959fb01017fa83578e7c8776ed3baba3076a2409Mark Andrews [David Kristol <dmk@bell-labs.com>] PR#3530
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
d73541ea2eebe01cafc5ff1b2ba4b9a8f75237b1Mark Andrews *) When modules update/modify the file name in the configfile_t structure,
d73541ea2eebe01cafc5ff1b2ba4b9a8f75237b1Mark Andrews syntax errors will report the updated name, not the original one.
46cb442c5c53f16ece23bfe7f7f7bf44f78b0e46Mark Andrews [Fabien Coelho <coelho@cri.ensmp.fr>] PR#3573
0f222d322b25373c4ef59d7c79f265b082ee98cdMark Andrews
0f222d322b25373c4ef59d7c79f265b082ee98cdMark Andrews *) Correct some filename case assumptions from WIN32 to
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews CASE_BLIND_FILESYSTEM. [Brian Havard <brianh@kheldar.apana.org.au>]
0f222d322b25373c4ef59d7c79f265b082ee98cdMark Andrews
0f222d322b25373c4ef59d7c79f265b082ee98cdMark Andrews *) For %v log ServerName regardless of the UseCanonicalName
0f222d322b25373c4ef59d7c79f265b082ee98cdMark Andrews setting (similarly for %p). [Dean Gaudet]
ae4f85dde3abb7d4afef9e869a83783cbf0aa29cMark Andrews
ae4f85dde3abb7d4afef9e869a83783cbf0aa29cMark Andrews *) Configure was initializing the variables $OSDIR, $INCDIR and $SHELL
ae4f85dde3abb7d4afef9e869a83783cbf0aa29cMark Andrews rather late (too late for some invocations of TestCompile).
ae4f85dde3abb7d4afef9e869a83783cbf0aa29cMark Andrews This improves the make environment available to TestCompile and
ae4f85dde3abb7d4afef9e869a83783cbf0aa29cMark Andrews the *.module scripts. [Martin Kraemer]
2132a56b5c6628925838165ae0640e55e3f36188Mark Andrews
2132a56b5c6628925838165ae0640e55e3f36188Mark Andrews *) The hashbang emulation code in ap_execve.c would interpret
b514e0cd0e7959a98dd59665553c8a3635ada10eMark Andrews #!/hashbang/scripts correctly, but failed to fall back to a
b514e0cd0e7959a98dd59665553c8a3635ada10eMark Andrews standard shell for scripts which did NOT start with #!
30884083d4149a8ff838b84dac1ad55c86948da8Mark Andrews Now SHELL_PATH is started in these cases. [Martin Kraemer]
d9ec2891475b8ed894a524a83370cfce30328569Mark Andrews
6e8a8077faf96d8da0b6cf738913f5f1f86e4008Mark Andrews *) PORT: Added the Cyberguard V2 port [Richard Stagg <stagg@lentil.org>]
6e8a8077faf96d8da0b6cf738913f5f1f86e4008Mark Andrews PR#3336
5cb7e15551f502ab6948689cf3bc7dac6b56571eMark Andrews
5cb7e15551f502ab6948689cf3bc7dac6b56571eMark Andrews *) Update APXS manual page: some -q option arguments were missing
bb99a72b219ad4f1daa80c636883ab485174c9a6Mark Andrews and another was incorrect. [Mark Anderson <mda@discerning.com>] PR#3553
bb99a72b219ad4f1daa80c636883ab485174c9a6Mark Andrews
5a6874e4ed544186ccb8519765be8c3a1804e033Mark Andrews *) Cleanup the command line options: `-?' was documented to show
3b4405aba93729eead9f8f006d426f24fc4c3d78Mark Andrews the usage list but does it with an error because `?' is not a valid
3b4405aba93729eead9f8f006d426f24fc4c3d78Mark Andrews command. OTOH a lot of users expect `-h' to print such a usage list and
2ab6dfca4b7432de4fb7da4cd21ee0e02a695c01Mark Andrews instead are annoyed for ages by our huge unreadable list of directives.
c553b3308e34edfaddbec57b3308bbbe362ef715Mark Andrews So we now changed the command line options this way:
c553b3308e34edfaddbec57b3308bbbe362ef715Mark Andrews 1. `-L' => `-R'
24efdccd68d157b400bf68926798bc8f3f71c24cMark Andrews Intent: we need `-L' to be free, and `-R' for the DSO run-time path is
24efdccd68d157b400bf68926798bc8f3f71c24cMark Andrews very similar to the popular linker option.
a5bb4ad5dbd08f9178e807b1e55cb449b69d8173Mark Andrews 2. `-h' => `-L'
a5bb4ad5dbd08f9178e807b1e55cb449b69d8173Mark Andrews Intent: while -l gives the small list of modules, -L now gives the
5e5b467e8c8abda496b7896241a46b05256cd22cMark Andrews large list of directives implemented by these modules. This is also
5e5b467e8c8abda496b7896241a46b05256cd22cMark Andrews consistent with -v (short version info) and -V (large version info).
713ad87a7f95d06f4bb3e0b92b91172cbebd6c68Mark Andrews 3. `-?' => `-h'
713ad87a7f95d06f4bb3e0b92b91172cbebd6c68Mark Andrews Intent: it's now the expected option ;-)
713ad87a7f95d06f4bb3e0b92b91172cbebd6c68Mark Andrews The manual page was adjusted accordingly.
cb2d565b507027f9e5664fa7e167bb24faa7c8fbMark Andrews [Ralf S. Engelschall] PR#2714
cb2d565b507027f9e5664fa7e167bb24faa7c8fbMark Andrews
4f21f7feaff27d5356827e39a4537a60a5e4054cMark Andrews *) Fixed problem of fclose() on an unopened file in suexec if LOG_EXEC
4f21f7feaff27d5356827e39a4537a60a5e4054cMark Andrews wasn't defined. [Rick Franchuk <rickf@transpect.net>]
1439214380abcc123e27a42d43a23ba441209ebeMark Andrews
1439214380abcc123e27a42d43a23ba441209ebeMark Andrews *) Removed recently introduced bugs and disfigurements in APACI:
7d9b632906c756b215d65a3a08d77fe022807c2dMark Andrews o fixed argument line processing: using $args was broken: It was not
7d9b632906c756b215d65a3a08d77fe022807c2dMark Andrews initialized and using args="$args $apc_option" and even args="$args
7d9b632906c756b215d65a3a08d77fe022807c2dMark Andrews \"$apc_option\"" fails in the second processing round for any arguments
5d3083c4b5b11dfb653b15fd0eeb8e0cc9b175e0Mark Andrews containing whitespaces. The only correct way is to use the construct
5d3083c4b5b11dfb653b15fd0eeb8e0cc9b175e0Mark Andrews "$@" (but not possible here) or iterate _both_ times over the implicit
52188225731669cd571984c45a1407a55c74ee78Mark Andrews argument line (no argument to for-loop) which is what we now use.
52188225731669cd571984c45a1407a55c74ee78Mark Andrews o make --with-layout=Apache the default without creating
52188225731669cd571984c45a1407a55c74ee78Mark Andrews redundancy (copying the --with-layout block in the argument parsing
52188225731669cd571984c45a1407a55c74ee78Mark Andrews loop). We achieve this by using the "$@" construct together with the
52188225731669cd571984c45a1407a55c74ee78Mark Andrews `set' command to prepend --with-layout=Apache to the command line in
3cbc87c31f76262980d54ddbcdda7875be37b684Mark Andrews case --with-layout is not used.
bc29bb9062ab804cd79f4a1f8f366af8a040b636Mark Andrews o fixed auto-suffix handling now that config.layout exists.
bc29bb9062ab804cd79f4a1f8f366af8a040b636Mark Andrews Paths which are auto-suffixed are marked with a trailing plus sign in
bc29bb9062ab804cd79f4a1f8f366af8a040b636Mark Andrews config.layout and every path now can be marked this way (not only the
5a4854e226ce5eca99bcfb5557b36ea210bb25bcMark Andrews four paths for which we do it currently). Additionally the suffix is
5a4854e226ce5eca99bcfb5557b36ea210bb25bcMark Andrews no longer a static one. Instead it's now `/<target>' where <target> is
5a4854e226ce5eca99bcfb5557b36ea210bb25bcMark Andrews the argument of the --target option or per default `httpd'.
b101c1e9989d0a010a3146ad823e168d15cb10c7Mark Andrews o allow also tabs (and only spaces) where we match whitespaces
b101c1e9989d0a010a3146ad823e168d15cb10c7Mark Andrews o various fixes and cleanups related to used shell coding style
989d7b844bdf2d804fda57b9b53a4eff3a6bea91Mark Andrews o made Jim happy by replacing `Written by' with `Initially written by' ;-)
989d7b844bdf2d804fda57b9b53a4eff3a6bea91Mark Andrews o trimmed output of --help to fit into 80 columns
d5af5bb38b9b2626b97626569adde258c8f6b808Mark Andrews [Ralf S. Engelschall]
6d7007e807241ae0a32de8db8d3bf434626026eaMark Andrews
c941e32d221fbb0cb760e3bc24c7f221c0cf8b97Mark Andrews *) Added two new core API functions, ap_single_module_configure() and
c941e32d221fbb0cb760e3bc24c7f221c0cf8b97Mark Andrews ap_single_module_init(), which are now used by mod_so to configure a module
c941e32d221fbb0cb760e3bc24c7f221c0cf8b97Mark Andrews after loading. [Ralf S. Engelschall]
c941e32d221fbb0cb760e3bc24c7f221c0cf8b97Mark Andrews
77b101ced9801cdb226919784bfc1aa0650ace6aMark Andrews *) PORT: Add defines for USE_FLOCK_SERIALIZED_ACCEPT and
77b101ced9801cdb226919784bfc1aa0650ace6aMark Andrews SINGLE_LISTEN_UNSERIALIZED_ACCEPT to NetBSD/OpenBSD section
e174044290953a2499f574e35cc9c22ba126a303Mark Andrews of ap_config.h to allow serialized accept for multiport listens.
a903095bf4512dae561c7f6fc7854a51bebf334aMark Andrews [Roy Fielding, Curt Sampson] PR#3120
a903095bf4512dae561c7f6fc7854a51bebf334aMark Andrews
e174044290953a2499f574e35cc9c22ba126a303Mark Andrews *) PORT: Fixed a misplaced #endif for NetBSD/OpenBSD section
a903095bf4512dae561c7f6fc7854a51bebf334aMark Andrews of ap_config.h that would skip several defines if DEFAULT_GROUP
e174044290953a2499f574e35cc9c22ba126a303Mark Andrews was overridden. [Roy Fielding]
e174044290953a2499f574e35cc9c22ba126a303Mark Andrews
e174044290953a2499f574e35cc9c22ba126a303Mark Andrews *) PORT: The I86 version of DGUX has support for strncasecmp and
25899e7f1ff0db5322362ada01f7aec3006ff0beTatuya JINMEI 神明達哉 strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247
4f082b58b17ce39087930d5affc2ada90ef386e6Mark Andrews
4f082b58b17ce39087930d5affc2ada90ef386e6Mark Andrews *) Fix ordering of definitions in ap_config.h so that ap_inline is
3d79c437d8cc10651b22601b55f4098b4cfe5979Mark Andrews defined before it might be used. [Victor Khimenko]
0da70bc50a320a3bb16aa7cecb2727fed2c0683cMark Andrews
0da70bc50a320a3bb16aa7cecb2727fed2c0683cMark Andrews *) PORT: Add Dynamic Shared Object (DSO) support for BSDI (v4.0).
0da70bc50a320a3bb16aa7cecb2727fed2c0683cMark Andrews [Tom Serkowski <tks@bsdi.com>] PR#3453
686bcdcb4c63e8dd9bbe9607265061a4d3934bbcMark Andrews
4423c99613db1399dbb5c51e86ef0d351a1418c2Mark Andrews *) Make generation of src/Configuration.apaci more robust: It failed to
686bcdcb4c63e8dd9bbe9607265061a4d3934bbcMark Andrews differenciate between modules when one module name was a postfix of
5597be9bb88de138dfec9fa9176708443813925eTatuya JINMEI 神明達哉 another (e.g. cgi vs. fastcgi). We now check for mod_XXX, libXXX and even
5597be9bb88de138dfec9fa9176708443813925eTatuya JINMEI 神明達哉 just XXX (think about totally non-standard names like "apache_ssl", too).
5597be9bb88de138dfec9fa9176708443813925eTatuya JINMEI 神明達哉 [Ralf S. Engelschall] PR#3380
5597be9bb88de138dfec9fa9176708443813925eTatuya JINMEI 神明達哉
6be278a81c24c6729aeaae4ba3a7ddd5030d8451Tatuya JINMEI 神明達哉 *) In src/Configure remove the SERVER_SUBVERSION support (already deprecated
5597be9bb88de138dfec9fa9176708443813925eTatuya JINMEI 神明達哉 since 1.3b7) and make whitespace handling more robust (it failed horrible
5cf023372424c1a59fda4a994e3c85c08c26e2f1Tatuya JINMEI 神明達哉 when whitespaces were present in the arguments of -D options).
fde0a3f89b9c42e9e4ef9aaf8e044e6b18c4978cMark Andrews [Ralf S. Engelschall] PR#3240
fde0a3f89b9c42e9e4ef9aaf8e044e6b18c4978cMark Andrews
fde0a3f89b9c42e9e4ef9aaf8e044e6b18c4978cMark Andrews *) Add APACI --shadow=DIR variant (in addition to --shadow). This now first
39c7fc7e00af20144b94ef332943f62c1b3a622fMark Andrews creates an external package shadow tree in DIR before the local build
39c7fc7e00af20144b94ef332943f62c1b3a622fMark Andrews shadow tree is generated under DIR. This way one can have the extracted
073dfc245fd921958b1ccd869ed3471f828cf283Mark Andrews Apache distribution tree read-only on NFS or CDROM and still build Apache
9738408dcbd4c1f7eb2b105c83388608fafd7808Mark Andrews from these sources. An automatically triggered VPATH-like mechanism is
9738408dcbd4c1f7eb2b105c83388608fafd7808Mark Andrews provided through the TOP variable, too.
9738408dcbd4c1f7eb2b105c83388608fafd7808Mark Andrews [Ralf S. Engelschall, Wilfredo Sanchez <wsanchez@apple.com>]
65d64acb51b0655f04b165c8045d1aed556489abMark Andrews
e9aca33f362d017fe0d5f7b729bce646038cf1eeMark Andrews *) Fix negotiation so that a Vary response header is correctly
e9aca33f362d017fe0d5f7b729bce646038cf1eeMark Andrews generated when, for a particular dimension, variants only vary
28e36fcc1eea8b5283aa33d3a6d21d42df8fdaf2Mark Andrews in having or not having a value for that dimension. [Paul Sutton]
5cf146c586f69af7c65e4a4f612ae3ef6c9cf8deMark Andrews
5cf146c586f69af7c65e4a4f612ae3ef6c9cf8deMark Andrews *) Fix negotiation so that we prefer an encoded variant over an
2a2e9c7a1a8cded637be17f32dc1bbdef519ca81Mark Andrews unencoded variant if the user-agent explicitly says it can
8a713ca49ddddb36e432d4717800f9258a5c2ea9Mark Andrews accept that encoding. Previously we always preferred the unencoded
8a713ca49ddddb36e432d4717800f9258a5c2ea9Mark Andrews variant.
f93d6e86ded924cb23d80a6d45a4c830b57984ddMark Andrews [Paul Ausbeck <paula@alumni.cse.ucsc.edu>, Paul Sutton] PR#3447
0ad024cc4272894e877e3a7896f80a2892bc703cMark Andrews
0ad024cc4272894e877e3a7896f80a2892bc703cMark Andrews *) Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized
0ad024cc4272894e877e3a7896f80a2892bc703cMark Andrews and the usage page was inconsistent with the functionality and manpage.
f93d6e86ded924cb23d80a6d45a4c830b57984ddMark Andrews [Ralf S. Engelschall]
0ad024cc4272894e877e3a7896f80a2892bc703cMark Andrews
0ad024cc4272894e877e3a7896f80a2892bc703cMark Andrews *) Allow special options -Wc,xxx and -Wl,xxx on APXS compile/link command.
f93d6e86ded924cb23d80a6d45a4c830b57984ddMark Andrews They can occur multiple times and their arguments (`xxx') are passed AS
e50b75e36ca79f84e2c9b2a12f6e28cbf22aaa83Mark Andrews IS to the compiler/linker command. [Ralf S. Engelschall]
e50b75e36ca79f84e2c9b2a12f6e28cbf22aaa83Mark Andrews
e50b75e36ca79f84e2c9b2a12f6e28cbf22aaa83Mark Andrews *) Fixed possible (but harmless in practice) bug in the DBM lookup
70ba825728dc64439801981a1abe7f1e28182698Mark Andrews procedure of mod_rewrite: very long keys were truncated.
797944723c8de672430cc59c11bf4eeacd913649Mark Andrews [Ralf S. Engelschall]
797944723c8de672430cc59c11bf4eeacd913649Mark Andrews
28b65e6d0a03704f4faee88ebf5105addfa57968Mark Andrews *) Added a generic --with-layout=[FILE:]ID option. ID here is a layout
8cd830d7c806cac681b057e0c0185f29992fa35fMark Andrews identifier, currently "Apache" and "GNU" are pre-defined in the file
11b399514e4af7f370fe3948c3e3779a182ac5acMark Andrews config.layout. Custom layouts are possible by using FILE:ID as the
4296c5480dde48ea555f5916be8612e173f1edebMark Andrews argument where the layout ID is taken from FILE.
4296c5480dde48ea555f5916be8612e173f1edebMark Andrews
14a97c343bc3adb840b13d515a8298c18f15be52Mark Andrews The config.layout file consists of <Layout ID>..</Layout> sections
164e2a6f83cc3172bc9ba0c97a326a5eca80bc18Mark Andrews where inside those sections "path_variable: path_value" pairs can be
164e2a6f83cc3172bc9ba0c97a326a5eca80bc18Mark Andrews specified. These lines are converted to path_variable='path_value'.
164e2a6f83cc3172bc9ba0c97a326a5eca80bc18Mark Andrews
e90994e3f358bdc6fe03005da08567c807a14c1dMark Andrews *) Add a DefaultLanguage directive so that files missing a language
e90994e3f358bdc6fe03005da08567c807a14c1dMark Andrews extension (e.g., .fr, .de) can be labelled as being some other
7087b3dc9298e85909df7a10f83bbd0588310f0cMark Andrews default language. DefaultLanguage can appear in <Directory> and
4844ed026a9b5a91044e76399cee80a6514cbf0dMark Andrews <Files> containers as well as .htaccess files. [Paul Sutton]
4844ed026a9b5a91044e76399cee80a6514cbf0dMark Andrews PR#1180
db2649bad98fc08054feb1a1ed234d8b9b011ea8Mark Andrews
ad5bc22a819190839bdcc4d102d023782dc23660Mark Andrews *) Fix TARGET configuration when configuring and installing using
ad5bc22a819190839bdcc4d102d023782dc23660Mark Andrews APACI configure. TARGET now defines the basename of the configuration
ad5bc22a819190839bdcc4d102d023782dc23660Mark Andrews file, startup script, manual page, etc. log_error_core() now reports
7502c6600645f120434d84d0ce3df7c3585cfe43Mark Andrews the server binary name given by argv[0]. TARGET can now also be defined
82572925f8942b599667bf47f22403f5dfd79ab9Mark Andrews with --target=TARGET parameter passed to APACI configure.
cdb15282589682b664dfb70428a3c1750fe05250Mark Andrews [Ralf Engelschall, Randy Terbush]
b326d7e3a3a50eb65dd06db007d2fddc62606bbfMark Andrews
c0a1ebb1adecc5da1f1ad6f9b06a2b4356d2b135Mark Andrews *) mod_include.c:handle_perl() now properly tests for OPT_INCNOEXEC
508f61f8d699c46f962b682f388e54b446a7194dMark Andrews rather than OPT_INCLUDES [Rainer Schoepf <schoepf@uni-mainz.de>]
508f61f8d699c46f962b682f388e54b446a7194dMark Andrews
4834c6a7f0054b8f4a8a267d60ef78204521e39eMark Andrews *) ap_md5_binary() was using sprintf() rather than a table lookup
f450814ab8989820a7bc9a2c484eb9f2c1c7b915Mark Andrews to convert binary bytes to hex digits.
4c47c184b98a5ec1b303281959c1f3b0db85d733Mark Andrews [Ronald Tschal�r <ronald@innovation.ch>] PR#3409
48f929d315bafeeffe0a37082ab4c9661a928c39Mark Andrews
48f929d315bafeeffe0a37082ab4c9661a928c39Mark Andrews *) Fix SEGV in TCN negotiation if no variants are acceptable.
0e93730a02a4cafbc5cdfaa04b2d813a0c11b205Mark Andrews [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>] PR#1987
93f429295a682f44940c8f4e2b05773c50da4e7dMark Andrews
93f429295a682f44940c8f4e2b05773c50da4e7dMark Andrews *) API: ap_exists_config_define() function is now "public" [Doug MacEachern]
c04f4437ff8b2aba326e5099eae0cacb7de6f74bMark Andrews
494576ce20cfd98d74955698cf8f7b37dce2f740Mark Andrews *) Fix documentation of `Action' directive: It can activate a CGI script
494576ce20cfd98d74955698cf8f7b37dce2f740Mark Andrews when either a handler or a MIME content type is triggered by the request.
494576ce20cfd98d74955698cf8f7b37dce2f740Mark Andrews [Andrew Pimlott <pimlott@math.harvard.edu>] PR#3340
a36db48f57a59d82af0cf8cfecbdb7620aa3cc47Mark Andrews
a36db48f57a59d82af0cf8cfecbdb7620aa3cc47Mark Andrews *) Document the `add' command of `dbmmanage' in `dbmmanage.1' manpage.
a36db48f57a59d82af0cf8cfecbdb7620aa3cc47Mark Andrews [David MacKenzie <djm@uu.net>] PR#3394
531f6c355bde4b280d1dea749dd1bcdf6b2f8701Mark Andrews
531f6c355bde4b280d1dea749dd1bcdf6b2f8701Mark Andrews *) Ignore a "ErrorDocument 401" directive with a full URL and write a
531f6c355bde4b280d1dea749dd1bcdf6b2f8701Mark Andrews notice to the error log. It is not possible to send a 401 response
3ea6d4dc33482a752553c59ed94bcecd23d254b0Mark Andrews and a redirect at the same time. [Lars Eilebrecht]
3ea6d4dc33482a752553c59ed94bcecd23d254b0Mark Andrews
6e1141e6e83b3907b8b187d97932f30fa82470efMark Andrews *) Fallback to native compilers for IRIX-32 platform. It seems that
6e1141e6e83b3907b8b187d97932f30fa82470efMark Andrews a gcc 2.8.1 compiled apache is logging client addresses with all
6e1141e6e83b3907b8b187d97932f30fa82470efMark Andrews bits set (255.255.255.255). This is the second such problem caused
6e1141e6e83b3907b8b187d97932f30fa82470efMark Andrews by gcc 2.8.1 compiler. The first being broken semaphore locking.
e954ec198e535f8a7e17d72241233f825b0df6a6Mark Andrews [Randy Terbush]
e954ec198e535f8a7e17d72241233f825b0df6a6Mark Andrews
e954ec198e535f8a7e17d72241233f825b0df6a6Mark Andrews *) Updated mime.types to reflect current Internet media types
aceae69c7f3e76e8842de178851928619c65b61cMark Andrews and include a URL to the registry.
aceae69c7f3e76e8842de178851928619c65b61cMark Andrews [Manoj Kasichainula, Roy Fielding] PR#2380, 2286, 2246
aceae69c7f3e76e8842de178851928619c65b61cMark Andrews
aceae69c7f3e76e8842de178851928619c65b61cMark Andrews *) SECURITY: Do a more complete check in mod_include to avoid
113598f67787f0ed0dcfe23b26d1e5d93256c0acMark Andrews an infinite loop of recursive SSI includes. [Marc Slemko] PR#3323
113598f67787f0ed0dcfe23b26d1e5d93256c0acMark Andrews
113598f67787f0ed0dcfe23b26d1e5d93256c0acMark Andrews *) Add APACI --suexec-docroot and --suexec-logfile options which can be
dba1bc96f6f4fbbb48ab7b041964d44242731b17Mark Andrews used to set the document root directory (DOC_ROOT) and the suexec
dba1bc96f6f4fbbb48ab7b041964d44242731b17Mark Andrews logfile (LOG_EXEC), respectively. Additionally the --layout option
b68fe6c0fbfee1dc0659661993de5c6727b66c76Mark Andrews was changed to show more information about the suEXEC setup.
70e854766f5304f43e94212dc38ebaefe214148cMark Andrews [Lars Eilebrecht] PR#3316, 3357, 3361
136e739d0d7267a8ce72468233fa795359db62faMark Andrews
7c8662961e2876e22e34c96d41dad0cd70e3ce4cMark Andrews *) Added the last two WebDAV status codes of 424 (Failed Dependency)
7c8662961e2876e22e34c96d41dad0cd70e3ce4cMark Andrews and 507 (Insufficient Storage) for use by third-party modules.
beb92a43a7451981fad54c98c809d50c1b16c1e9Mark Andrews [Roy Fielding]
beb92a43a7451981fad54c98c809d50c1b16c1e9Mark Andrews
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews *) Enabled all of the WebDAV method names for use by third-party
85bba08193debe026883d2d6bebbb0f7a01d7ba7Mark Andrews modules, Limit, and Script directives. That includes PATCH,
85bba08193debe026883d2d6bebbb0f7a01d7ba7Mark Andrews PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK.
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews Improved mod_actions.c so that it can use any of the methods
5173d52b3eb9715259a2890614f869c6baeb18e1Mark Andrews defined in httpd.h. Added ap_method_number_of(method) for
4091f8dfb71b78b53acd1b25f74e26c384750c03Mark Andrews getting the internal method number. [Roy Fielding]
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews
82ecc9cd96239649dfeb0a16e31c3b978d0d266aMark Andrews *) PORT: Add a port to the TPF OS. [Joe Moenich <moenich@us.ibm.com> and
74ff5f080abdffa7823ff93da74969cd9fa25308Mark Andrews others at IBM]
a10ae596379471b0dc76ebd8025d91bf2b90bafcMark Andrews
a10ae596379471b0dc76ebd8025d91bf2b90bafcMark Andrews *) Fix problems with handling of UNC names (e.g., \\host\path)
09ba9eacebdffc689da9851ce3bd932aedd1deddMark Andrews on Win32. [Ken Parzygnat <kparz@us.ibm.com>]
09ba9eacebdffc689da9851ce3bd932aedd1deddMark Andrews
d5f13fecca944fc7229dac3215581cebec3ac314Mark Andrews *) Rework os_canonical_*() on Win32 so it's simpler, more
c202b9f4dd7438252d77a4dd8936b7a051431a0bMark Andrews robust, and works. [Ken Parzygnat <kparz@us.ibm.com>]
d844741f5516bce45f8897435342731edb2307cbMark Andrews PR#2555, 2915, 3064, 3232
53e8e0e27a3db745548a7989639b91d16f841c1fMark Andrews
53e8e0e27a3db745548a7989639b91d16f841c1fMark Andrews *) Work around incomplete implementation of strftime on Win32.
d0c827c9c6a21a0708d97314406ff34d79bed5d8Mark Andrews [Manoj Kasichainula, Ken Parzygnat <kparz@us.ibm.com>]
d0c827c9c6a21a0708d97314406ff34d79bed5d8Mark Andrews
6f691d4893bb29cd6658b75860d93797f091da0dMark Andrews *) Move a typedef to fix compile problems on Linux with 1.x kernels.
6f691d4893bb29cd6658b75860d93797f091da0dMark Andrews [Manoj Kasichainula] PR#3177
6f691d4893bb29cd6658b75860d93797f091da0dMark Andrews
3d75a3aef3c26c1957f393e4626177484f53a9d4Mark Andrews *) PORT: Add a port to the Concurrent PowerMAX OS. [Tom Horsley
3d75a3aef3c26c1957f393e4626177484f53a9d4Mark Andrews <Tom.Horsley@mail.ccur.com>]
3d75a3aef3c26c1957f393e4626177484f53a9d4Mark Andrews
4e259c5a2321e994708fb1fe04cd4da30aa3b612Mark Andrews *) WIN32: Log more explicit error messages if spawning an interpreted
4e259c5a2321e994708fb1fe04cd4da30aa3b612Mark Andrews script failed, including the command line used to attempt to execute
4e259c5a2321e994708fb1fe04cd4da30aa3b612Mark Andrews the interpreter and the Win32 error code returned. [Marc Slemko]
fcdef14f4a82138fe835a5c3a20d5667e6f4a26cMark Andrews
fcdef14f4a82138fe835a5c3a20d5667e6f4a26cMark Andrews *) Disable sending of error-notes on a 500 (Internal Server Error) response
e9a0e12b2b732285e00e0d9436961d0fe3655aa6Mark Andrews since it often includes file path info. Enable sending of error-notes
e94754428d472bdde2cba0efdd549bac2e87b98bMark Andrews on a 501 (Method Not Implemented). [Roy Fielding] PR#3173
e94754428d472bdde2cba0efdd549bac2e87b98bMark Andrews
23f2338819fd1a38a828b417eb05be95207e76e2Mark Andrews *) http_config.c would respond with 501 (Method Not Implemented) if a
a53259c4cc558f86dd008eccc60cc89b6734a03cMark Andrews content type handler was specified but could not be found, which
a53259c4cc558f86dd008eccc60cc89b6734a03cMark Andrews should have been a 500 response. Likewise, mod_proxy.c would responsd
a8be540f55786eb9db43ae52bcc891529602c850Mark Andrews with a 501 if the URI scheme is unrecognized instead of the correct
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews response of 403 (Forbidden). [Roy Fielding]
a8be540f55786eb9db43ae52bcc891529602c850Mark Andrews
4c8df3b2e8858e97debfe3fb771fe03f22b04d1eMark Andrews *) SECURITY: Eliminate DoS attack when a bad URI path contains what
6c52944ef2281095d1c317a45ea013b8f3cfa135Mark Andrews looks like a printf format escape. [Marc Slemko, Studenten Net Twente]
6c52944ef2281095d1c317a45ea013b8f3cfa135Mark Andrews
72379d863a3bb135e7da36e344b731a59b8c3e33Mark Andrews *) Fix in mod_autoindex: for files where the last modified time stamp was
77fad835c56b118faf77a69af618d0bca7a16aacMark Andrews unavailable, an empty string was printed which was 2 bytes short.
77fad835c56b118faf77a69af618d0bca7a16aacMark Andrews The size and description columns were therefore not aligned correctly.
e021f388dfc2ac024a103def34818af73e7e869fMark Andrews [Martin Kraemer] (no PR#)
dd95acdbce0e2a2775391709cdfca0a9eda7e8f7Mark Andrews
dd95acdbce0e2a2775391709cdfca0a9eda7e8f7Mark Andrews *) Update BS2000 OS code to work with recent versions. Starting with
c5eebaf6f1311662f8120a8b560e2dbbfd5c92e8Mark Andrews release A17, the child fork() must be replaced by a _rfork().
71e7ac828e9f4f2b124455b00c3d11560aa5d4c1Mark Andrews (BS2000 only) [Martin Kraemer]
71e7ac828e9f4f2b124455b00c3d11560aa5d4c1Mark Andrews
1e6d80a391137b26e7250e72f6b28eb92c2b9952Mark Andrews *) Add the actual server_rec structure of the specific Vhost to the
892c9a8817a454fbac32b099eb55af453b19ce86Mark Andrews scoreboard file and avoid a string copy (as well as allow some
892c9a8817a454fbac32b099eb55af453b19ce86Mark Andrews further future enhancements). [Harrie Hazewinkel
af4b677e0de9c4ce67a5187039681a58f73b86eaMark Andrews <harrie.hazewinkel@jrc.it>]
3aca8e5bf3740bbcc3bb13dde242d7cc369abb27Mark Andrews
f34970d390482ceea61bd4d5bcd6ead7828157daMark Andrews *) Add APACI --permute-module=foo:bar option which can be used to
4d86cda3d7eb31578c9088c51a26643d43799533Mark Andrews on-the-fly/batch permute the order of two modules (mod_foo and mod_bar)
cbfce73e8e020c1d08c7be7b48a849d8333eb9bfMark Andrews in the Configuration[.apaci] file. Two special and important variants are
84a5b69f0029952e33c96695f0a7d26c2bb8f7ccMark Andrews supported for the option argument: first BEGIN:foo which permutes module
84a5b69f0029952e33c96695f0a7d26c2bb8f7ccMark Andrews mod_foo with the begin of the module list, i.e. it `moves' the module to
e9e869569a92c4b1d5339d3bfb22232e5b401db1Mark Andrews the begin of the list (gives it lowest priority). And second foo:END
73fb13fe97cf2f1d93d5e2ea56583fdb2f40b6f3Mark Andrews which permutes mod_foo with the end of the module list, i.e. it `moves'
73fb13fe97cf2f1d93d5e2ea56583fdb2f40b6f3Mark Andrews the module to the end of the list (gives it highest priority).
6f1ad0fc645250c240f21a9201e8cdb0f263c218Mark Andrews [Ralf S. Engelschall]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
e3d982f4a8e8a974231042ff4303ed8e82dfbdf9Mark Andrews *) Fix problem with 'apache -k shutdown' and startup event
e3d982f4a8e8a974231042ff4303ed8e82dfbdf9Mark Andrews synchronisation (Win32). [Ken Parzygnat <kparz@raleigh.ibm.com>]
783707ee556191b974e951f04accf09f443f5fdfMark Andrews PR#3255
e743a2b3b729df76956e903ac6a3dc3d6eea6df6Mark Andrews
e743a2b3b729df76956e903ac6a3dc3d6eea6df6Mark Andrews *) The config parser wasn't correctly noticing a missing '>'
e743a2b3b729df76956e903ac6a3dc3d6eea6df6Mark Andrews on container start lines (e.g., it wouldn't spot
a79348a6db5eb8a5ea69c3989727418ad5a8f224Mark Andrews "<Directory /" as a syntax error). [Ryan Bloom <rbbloom@us.ibm.com>]
a79348a6db5eb8a5ea69c3989727418ad5a8f224Mark Andrews PR#3279
a79348a6db5eb8a5ea69c3989727418ad5a8f224Mark Andrews
a79348a6db5eb8a5ea69c3989727418ad5a8f224Mark Andrews *) Add a 'RemoveHandler' directive which will selectively remove
fed3d5c2fc3fa8e1547e8b5c28c01f1095e17e5fMark Andrews all handler associations for the specified file extensions.
fed3d5c2fc3fa8e1547e8b5c28c01f1095e17e5fMark Andrews [Ryan Bloom <rbbloom@us.ibm.com>] PR#1799.
2651dcdf758ed1db3379d7004067fb46d308ed1cMark Andrews
2651dcdf758ed1db3379d7004067fb46d308ed1cMark Andrews *) Properly handle & allow "nul" and ".*/null" in AccessConfig and
2651dcdf758ed1db3379d7004067fb46d308ed1cMark Andrews ResourceConfig directives on Win32. Also add a note to the effect
21094b43a2dc4e1f569a9ed894f5369470cd1a7fMark Andrews of 'useless User directive ignored on Win32' to the errorlog if
21094b43a2dc4e1f569a9ed894f5369470cd1a7fMark Andrews a User directive is encountered on Win32.
b03a31d98f1cf42414d321c742c9fc04be75b32bMark Andrews [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2078, 2303.
81e6a5849d61c2e710d628cf9a7b7282eaa88c46Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Fix multiple whitespace handling in imagemaps for mod_imap which was
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews broken since Apache 1.3.1 where we took out compressing of multiple
4181218570e915959dd203c18f8cf4a03dca5d68Mark Andrews spaces in ap_cfg_getline().
4181218570e915959dd203c18f8cf4a03dca5d68Mark Andrews [Ivan Richwalski <ivan@seppuku.net>] PR#3249
cd0a7c71c0edd9540a7e917a2389a3ad0accc835Mark Andrews
ad98a8699371c9c449982fbbd8ceda91ad745f2aMark Andrews *) Fix Berkeley-DB/2.x support in mod_auth_db: The data structures were not
ad98a8699371c9c449982fbbd8ceda91ad745f2aMark Andrews initialized correctly and the db_open() call used an invalid mode
c1807114ce574896694e3f449c73b098fe91730fMark Andrews parameter. [Ron Klatchko <ron@ckm.ucsf.edu>] PR#3171
c1807114ce574896694e3f449c73b098fe91730fMark Andrews
c1807114ce574896694e3f449c73b098fe91730fMark Andrews *) PORT: DSO support for UnixWare 7
0066165079c7d85033f4b623153e404df31b9c75Mark Andrews [Ralf S. Engelschall, Ron Record <rr@sco.com>]
276f1d9a380affd06e5fd9a29c30d0ebd433ed36Mark Andrews
276f1d9a380affd06e5fd9a29c30d0ebd433ed36Mark Andrews *) Merge the contents of the {srm,access}.conf-dist* files into the
276f1d9a380affd06e5fd9a29c30d0ebd433ed36Mark Andrews httpd.conf-dist* files. The srm and access files now contain
055597532db52233e80f617b8b015e8caadcb577Mark Andrews only comments, and httpd.conf has all the combined contents in
61a4d5e7d86f3abcd63aa9254900a0cee3444215Mark Andrews a rational order. [Ken Coar]
61a4d5e7d86f3abcd63aa9254900a0cee3444215Mark Andrews
61a4d5e7d86f3abcd63aa9254900a0cee3444215Mark Andrews *) PORT: DSO/ELF support for FreeBSD 3.0.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Ralf S. Engelschall, Dirk Froemberg <ibex@physik.TU-Berlin.DE>]
055597532db52233e80f617b8b015e8caadcb577Mark Andrews
055597532db52233e80f617b8b015e8caadcb577Mark Andrews *) Add a "default-handler" handler that calls the default_hander()
055597532db52233e80f617b8b015e8caadcb577Mark Andrews function which is normally called for static content. This allows
055597532db52233e80f617b8b015e8caadcb577Mark Andrews you to override a specific handler. [Marc Slemko]
055597532db52233e80f617b8b015e8caadcb577Mark Andrews
6cdae8730d5a287c30987516c6f99962d4e8e6beMark Andrews *) Further simplify checking for absolute paths by replacing an
6cdae8730d5a287c30987516c6f99962d4e8e6beMark Andrews hard-coded syntax check with a call to a routine we already created to
6cdae8730d5a287c30987516c6f99962d4e8e6beMark Andrews do this. [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
40e7c805a8f38ad9b20dd6c688496fc09fc971c2Mark Andrews
40e7c805a8f38ad9b20dd6c688496fc09fc971c2Mark Andrews *) Log an error if we encounter a malformed "require" directive
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews in mod_auth if we know that we know that no other module can
40e7c805a8f38ad9b20dd6c688496fc09fc971c2Mark Andrews deal with it. [Marc Slemko]
40e7c805a8f38ad9b20dd6c688496fc09fc971c2Mark Andrews
40e7c805a8f38ad9b20dd6c688496fc09fc971c2Mark Andrews *) Remove ap_private_extern method of hiding conflicting symbols
9076b18608d8e5cfff8fac54ef82853371fdd0d6Mark Andrews on the NEXT platform because it is not correct for all versions,
073bd4c4bcc2f2597521578dc6ae0f49a065626cMark Andrews and the versions for which it is correct are unknown.
073bd4c4bcc2f2597521578dc6ae0f49a065626cMark Andrews [Wilfredo Sanchez <wsanchez@apple.com>]
af5273ceab514c55ddcd7ebaed5d598150b6b8faMark Andrews
073bd4c4bcc2f2597521578dc6ae0f49a065626cMark Andrews *) Fix inheritance of IndexOptions NameWidth and remove unintended
af5273ceab514c55ddcd7ebaed5d598150b6b8faMark Andrews restriction on +NameWidth, +IconHeight, and +IconWidth. [Ken Coar]
411c61d6fbf5a27c78650b9a1b3c69ac2640c929Mark Andrews
3c20ae76389dd7bd2fbbb5145f51fe7f72f97f14Mark Andrews *) Fix per-directory config merging for cases in which a 500 error
3c20ae76389dd7bd2fbbb5145f51fe7f72f97f14Mark Andrews is encountered in an .htaccess file somewhere down the tree.
2d2e0fff8e168012bc34a40ee24476eddab901ecMark Andrews [Ken Coar] PR#2409
2d2e0fff8e168012bc34a40ee24476eddab901ecMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Minor performance improvement to ap_escape_html(). [Roy Fielding]
314cac23654229f5df93af0c41231fd3c2187621Mark Andrews
314cac23654229f5df93af0c41231fd3c2187621Mark Andrews *) Fixed a segmentation violation in mod_proxy when a response is
314cac23654229f5df93af0c41231fd3c2187621Mark Andrews non-cachable. [Roy Fielding, traced by Doug Bloebaum]. PR#2950, 3056
c42ab597c433e2410473b5daef8a70f12263cfc1Mark Andrews
c42ab597c433e2410473b5daef8a70f12263cfc1Mark AndrewsChanges with Apache 1.3.3
c42ab597c433e2410473b5daef8a70f12263cfc1Mark Andrews
2c329da87c5c886e7f4468c69a9e6323121068cbMark Andrews *) Added a complete implementation of the Expect header field as
2c329da87c5c886e7f4468c69a9e6323121068cbMark Andrews specified in rev-05 of HTTP/1.1. Disabled the 100 Continue
5ec95dc3cbba160d03be874941930bdf3e515bbdMark Andrews response when we already know the final status, which is mighty
31affb2ca39c483670ba71042ce4c984ac257232Mark Andrews useful for PUT responses that result in 302 or 401. [Roy Fielding]
31affb2ca39c483670ba71042ce4c984ac257232Mark Andrews
aeb33b58e1979b716d1eb0521df8bc3a0aa41a52Mark Andrews *) Remove extra trailing whitespace from the getline results as part
43fe2897fc80bbec2115310ca79d432a252f3ea4Mark Andrews of the protocol processing, which is extra nice because it works
43fe2897fc80bbec2115310ca79d432a252f3ea4Mark Andrews between continuation lines, is almost no cost in the normal case
9e50b6806e428c817bc9537457db8f0a0aeee167Mark Andrews of no extra whitespace, and saves memory. [Roy Fielding]
43fe2897fc80bbec2115310ca79d432a252f3ea4Mark Andrews
43fe2897fc80bbec2115310ca79d432a252f3ea4Mark Andrews *) Added new HTTP status codes and default response bodies from the
9e50b6806e428c817bc9537457db8f0a0aeee167Mark Andrews revised HTTP/1.1 (307, 416, 417), WebDAV (102, 207, 422, 423), and
0553f5554f2ecfa137565b83378f566edc8fe6abMark Andrews HTTP Extension Framework (510) specifications. Did not add the
50a3801fa7845d1d345af76a379434f54fd6a84bMark Andrews WebDAV 424 and 425 codes because they are bogus. We don't use any
0553f5554f2ecfa137565b83378f566edc8fe6abMark Andrews of these codes yet, but they are now available to 3rd-party modules.
50a3801fa7845d1d345af76a379434f54fd6a84bMark Andrews [Roy Fielding]
0553f5554f2ecfa137565b83378f566edc8fe6abMark Andrews
0553f5554f2ecfa137565b83378f566edc8fe6abMark Andrews *) Fix a possible race condition between timed-out requests and the
50a3801fa7845d1d345af76a379434f54fd6a84bMark Andrews ap_bhalfduplex select that might result in an infinite loop on
fb827ed6df9a473770fb69a75a455b4ad0d14f52Mark Andrews platforms that do not validate the descriptor. [Roy Fielding]
ca155b13211202a6195b5a0f085aff06075c4300Mark Andrews
31a71adf14d106260127079f6ea26bea600163e9Mark Andrews *) WIN32: Add "-k shutdown" and "-k restart" options to signal a
31a71adf14d106260127079f6ea26bea600163e9Mark Andrews running Apache server [Paul Sutton]
4b030f887e5e51c00dac499682d0b5b870ece45bMark Andrews
110fbe3a1315b38f1491546d82937a01c40f5fdbMark Andrews *) Fix mod_autoindex bug where directories got a size of "0k" instead
110fbe3a1315b38f1491546d82937a01c40f5fdbMark Andrews of "-". [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>, Marc Slemko]
561863ed947f18c8bfcaa631ad83a6bee3b7200bMark Andrews PR#3130
3b9a0696f99c40222e50ddae4d0dd9611737c1daMark Andrews
3b9a0696f99c40222e50ddae4d0dd9611737c1daMark Andrews *) PORT: DRS 6000 machine. [Paul Debleecker <pdebleecker@jetair.be>]
12e8e73d76f78649cb61ba161eb51faf851ddb4aMark Andrews
12e8e73d76f78649cb61ba161eb51faf851ddb4aMark Andrews *) Add the server signature text (from the core ServerSignature directive)
7a1cba6262f099aa5ecf9ed4db9c0345489653ccMark Andrews to the list of envariables available to scripts, SSI, and the like.
12e8e73d76f78649cb61ba161eb51faf851ddb4aMark Andrews [Ken Coar]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
bce2d35b4879d7878e339a9c60db9364508e38fdMark Andrews *) PORT: Fix sys/resource.h handling for SCO 3.x platform.
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews [M. Laak <maert@proinv.ee>] PR#3108
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews
bff602d4acc7e3facc28b8931538b77d53681f15Mark Andrews *) Fallback from sysconf-based to plain HZ-based `ticks per second'
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews calculation in mod_status for all systems which don't have POSIX
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews sysconf() (like UTS 2.1) and not only for the NEXT platform.
bff602d4acc7e3facc28b8931538b77d53681f15Mark Andrews [Dave Dykstra <dwd@bell-labs.com>] PR#3055
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews *) Fix `require ...' directive parsing in mod_auth, mod_auth_dbm and
51f99a878d7449a4280b2a8db4c84acb3735f259Mark Andrews mod_auth_db by using ap_getword_white() (which uses ap_isspace())
bff602d4acc7e3facc28b8931538b77d53681f15Mark Andrews instead of ap_getword(..., ' ') (which parses only according to spaces
86c3e4bb9663719cfa16e493a145c4ff0d6f745fMark Andrews but not tabs). [James Morris <jmorris@intercode.com.au>,
86c3e4bb9663719cfa16e493a145c4ff0d6f745fMark Andrews Ralf S. Engelschall] PR#3105
86c3e4bb9663719cfa16e493a145c4ff0d6f745fMark Andrews
4ab6d6464f5490a30acf1e292c7f3f26dc99d6dbMark Andrews *) Fix the SERVER_NAME variable under sub-request situations (where
4ab6d6464f5490a30acf1e292c7f3f26dc99d6dbMark Andrews `UseCanonicalName off' is used) like CGI's called from SSI pages or
4ab6d6464f5490a30acf1e292c7f3f26dc99d6dbMark Andrews RewriteCond variables by adopting r->hostname to sub-requests.
722ebc3a47ffd2ac8f0b1a231dbd0cfd485ea2ffMark Andrews [James Grinter <jrg@blodwen.demon.co.uk>] PR#3111
722ebc3a47ffd2ac8f0b1a231dbd0cfd485ea2ffMark Andrews
41be71bae48846d9525be6f71e19944e34748e26Mark Andrews *) Fix stderr redirection under syslog-based error logging situation.
3f79a8b6f1b50f8e1bc2f274bcfe91d6af74f161Mark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3095
3f79a8b6f1b50f8e1bc2f274bcfe91d6af74f161Mark Andrews
3f79a8b6f1b50f8e1bc2f274bcfe91d6af74f161Mark Andrews *) Document `ErrorLog syslog:facility' variant of error logging.
3f79a8b6f1b50f8e1bc2f274bcfe91d6af74f161Mark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3096
c93003b0a6c063c15495f66300a1822481728fcaMark Andrews
c93003b0a6c063c15495f66300a1822481728fcaMark Andrews *) Fix http://localhost/ hints in top-level INSTALL document.
c93003b0a6c063c15495f66300a1822481728fcaMark Andrews [Rob Jenson <robjen@spotch.com>, Ralf S. Engelschall] PR#3088
4f32995bf6af48ab410b6d14b160348f5ffe0556Mark Andrews
a4743d3d26c4dde69b80fd69bca83e0c28063425Mark Andrews *) Quote paths in default configuration files. [Wilfredo Sanchez]
a4743d3d26c4dde69b80fd69bca83e0c28063425Mark Andrews
817a7fb62d05222fb287bbcde910ab3669f6d237Mark Andrews *) PORT: Remove extra HAVE_SYS_RESOURCE_H define for RHAPSODY since
ac86cff0d7ff2108cd7ace66697e2de104735496Mark Andrews it is now taken care of properly by the header file tests.
2a71a21346ce6a098b7daf98358d5bdced8e6eb6Mark Andrews [Wilfredo Sanchez <wsanchez@apple.com>]
2a71a21346ce6a098b7daf98358d5bdced8e6eb6Mark Andrews
8147940ae7a7280ba12dd35614b9c987b38363faMark Andrews *) Fix problem with scripts and filehandle inheritance on Win32.
23ac30603a7639bea1d331537634b079b046b122Mark Andrews [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2884, 2910
a90cf89180ae8d9dfd281288cdc75940e46bfdd0Mark Andrews
d6fe7ba94969ee51a3f4298a735fbc6e11691ad8Mark Andrews *) Win32 name canonicalisation could end up using the server's
d6fe7ba94969ee51a3f4298a735fbc6e11691ad8Mark Andrews working directory to fill in some blanks. [Ken Parzygnat
d6fe7ba94969ee51a3f4298a735fbc6e11691ad8Mark Andrews <kparz@raleigh.ibm.com>] PR#3001
d6fe7ba94969ee51a3f4298a735fbc6e11691ad8Mark Andrews
fa901545edc8bb62969121e14199d533a40d0b61Tatuya JINMEI 神明達哉 *) Correct invalid assumption by ap_sub_req_lookup_file() that all
9cc53f2a0819301c2de7ab93197eee11e8a365e7Mark Andrews absolute paths begin with "/" -- because they don't on Win32.
9cc53f2a0819301c2de7ab93197eee11e8a365e7Mark Andrews [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
68ae0f83c00d9e06693f5b138a0ced5a6ceccc5cMark Andrews
68ae0f83c00d9e06693f5b138a0ced5a6ceccc5cMark Andrews *) Add [REDIRECT_]VARIANTS environment variable to mod_speling
326449ec24b069f5ef59c8e282ae22a50aa27049Mark Andrews so that ErrorDocument 300 processors can reformat the list
207f0a15bb486d8dc27cf5ff963fac6068ee2972Mark Andrews if desired. [Ken Coar] PR#2859
3bb3c75ebcf3a798d33a5c439b997e1f37910501Mark Andrews
16a68807e13caea3183a41a5292f1b3f48b81a26Mark Andrews *) Add +/- incremental prefixes to IndexOptions keywords, and
16a68807e13caea3183a41a5292f1b3f48b81a26Mark Andrews enable merging of multiple IndexOptions directives. [Ken Coar]
16a68807e13caea3183a41a5292f1b3f48b81a26Mark Andrews
a1ed9109a60911df561628e49c5c29e3b0506801Mark Andrews *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
ed18f744963c431ff76489aa01ec6fc9fac137fbMark Andrews <steve.cameron@compaq.com>]
ed18f744963c431ff76489aa01ec6fc9fac137fbMark Andrews
825fccf631aa71cfbb8bfcf4e2009ca21de28f36Mark Andrews *) Reconstructed the loop through multiple htaccess file names so
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews that missing files are not confused with unreadable files.
5639d60b40db2051eb7e737d86635c621ffbfa12Mark Andrews [Roy Fielding]
d0deea590e6e175c77f9b5f972fea3fc7a63577aMark Andrews
689023771c563d8660e45d439a207e06e96de28fMark Andrews *) The ap_pfopen and ap_pfdopen routines were failing to protect the
689023771c563d8660e45d439a207e06e96de28fMark Andrews errno on an error, which leads to one error being mistaken for
fb2c34419d268d36acb222e08e6f789b45a81306Mark Andrews another when reading non-existent .htaccess files.
fb2c34419d268d36acb222e08e6f789b45a81306Mark Andrews [Jim Jagielski]
fb2c34419d268d36acb222e08e6f789b45a81306Mark Andrews
30b41c205cec69f7bde2d9afb16557b6c1e7a531Mark Andrews *) OS/2: The new header tests get things right, need to update
30b41c205cec69f7bde2d9afb16557b6c1e7a531Mark Andrews ap_config.h. [Brian Havard]
3a1d86e8f51c953c2407e112e15b47328b6ee4feMark Andrews
09b24007634d53673fa4a1468416d4e9ee232b7aMark Andrews *) The Perl %ENV hash will now be setup by default when using the
09b24007634d53673fa4a1468416d4e9ee232b7aMark Andrews mod_include `perl' command [Doug MacEachern]
455bb19b5dbf5dce6e625349acf5018fc4823adbTatuya JINMEI 神明達哉
455bb19b5dbf5dce6e625349acf5018fc4823adbTatuya JINMEI 神明達哉 *) PORT: Add Pyramid DC/OSx support to configuration mechanism.
455bb19b5dbf5dce6e625349acf5018fc4823adbTatuya JINMEI 神明達哉 [Earle Ake <akee@wpdiss1.wpafb.af.mil>]
455bb19b5dbf5dce6e625349acf5018fc4823adbTatuya JINMEI 神明達哉
5e4346a4f9f9ed474d20a4ff05f1bbcb47f9342dMark Andrews *) PORT: Fix sys/resource.h handling for Amdahl's UTS 2.1
5e4346a4f9f9ed474d20a4ff05f1bbcb47f9342dMark Andrews [Dave Dykstra <dwd@bell-labs.com>] PR#3054
5e4346a4f9f9ed474d20a4ff05f1bbcb47f9342dMark Andrews
5e4346a4f9f9ed474d20a4ff05f1bbcb47f9342dMark Andrews *) Correct comment in mod_log_config.c about its internals.
7f2a6b0ef762b4cef9b0b2b59e7f44e4d2d4d32dMark Andrews [Elf Sternberg <elf@halcyon.com>]
7f2a6b0ef762b4cef9b0b2b59e7f44e4d2d4d32dMark Andrews
e37dff26c6bb6e2ffbba7b089ca3599d5e3e04fbMark Andrews *) Avoid possible line overflow in Configure: Use an awkfile to
b712879fcb6d584bb16b3f39ec1fb6ee176e4a03Mark Andrews handle the creation of modules.c [Jim Jagielski]
b712879fcb6d584bb16b3f39ec1fb6ee176e4a03Mark Andrews
21d2ebd23d1ff59d0c081baeab1a97aae1baf4a4Mark AndrewsChanges with Apache 1.3.2
f697150aefb5d64e5bed4111aa2596a268ee8848Mark Andrews
f697150aefb5d64e5bed4111aa2596a268ee8848Mark Andrews *) Fix bug in ap_remove_module(), which caused problems for dso's
21d2ebd23d1ff59d0c081baeab1a97aae1baf4a4Mark Andrews who were the top_module. [Doug MacEachern]
9baab4b1a8a5a54c04e47742c7b48311d5575a87Mark Andrews
c5826852e6c789f59b301f8197e65a1dd4e09a44Mark Andrews *) Add support for Berkeley-DB/2.x (in addition to Berkeley-DB/1.x) to
c5826852e6c789f59b301f8197e65a1dd4e09a44Mark Andrews mod_auth_db to both be friendly to users who wants to use this version
c0d2891f6e08fcf5379dfb9a1bf8fbbb63f1952aMark Andrews and to avoid problems under platforms where only version 2.x is present.
c0d2891f6e08fcf5379dfb9a1bf8fbbb63f1952aMark Andrews [Dan Jacobowitz <drow@false.org>, Ralf S. Engelschall]
c426fddf168a3cdfc1c4c162365d440c89148ae4Mark Andrews
c426fddf168a3cdfc1c4c162365d440c89148ae4Mark Andrews *) When using ap_log_rerror(), make the error message available to the
cb75f7ce19e11e3dfedee5a50a331bf53cd2c36bMark Andrews *ERROR_NOTES envariables by default. [Ken Coar]
1a6204b6f26677cad76ea5644dc0624aac49b451Mark Andrews
1a6204b6f26677cad76ea5644dc0624aac49b451Mark Andrews *) BS2000 platform only: get rid of the nasty BS2000AuthFile.
1a6204b6f26677cad76ea5644dc0624aac49b451Mark Andrews You now must define a BS2000Account name for the server User.
9f7d51ee3290e2a064d71016a6bd555b47134a7cMark Andrews This has fewer security implications than the old approach.
9f7d51ee3290e2a064d71016a6bd555b47134a7cMark Andrews [Martin Kraemer]
d8c2b1787119de43dd6b7e3927ff193ed5df682fMark Andrews
d8c2b1787119de43dd6b7e3927ff193ed5df682fMark Andrews *) Fix SHARED_CORE feature for HPUX platform: We now use extension `.sl'
8bcfe7952124a7aab5ae9fbb9420417b5be12721Mark Andrews instead of `.so' and `SHLIB_PATH' instead of `LD_LIBRARY_PATH' on this
8bcfe7952124a7aab5ae9fbb9420417b5be12721Mark Andrews platform to make the braindead HPUX linker happy. Notice, for the module
8bcfe7952124a7aab5ae9fbb9420417b5be12721Mark Andrews DSOs we don't have to use this, because these are loaded manually (and
351696ef9e44e31e200afc0b019f24af6b597471Rob Austein not via HPUX' dld). [Ralf S. Engelschall] PR#2905, PR#2968
fbdadf789f3057a5c90ebc026dbf2d174022bd28Rob Austein
1672cff96d0b02badab6f94524e10285dde851fcMark Andrews *) Remove 64 thread limit on Win32.
1672cff96d0b02badab6f94524e10285dde851fcMark Andrews [Bill Stoddard <stoddard@raleigh.ibm.com>]
e9f33cdca0565d049941117d30e4c37ab3c5e990Mark Andrews
cf6b36171770dc14b6572003b4e8aeaa22536dd4Mark Andrews *) Remove redundant substitutions in top-level Makefile.tmpl.
cf6b36171770dc14b6572003b4e8aeaa22536dd4Mark Andrews [Ralf S. Engelschall]
9105a6a730bfb8472c48230629c5a0aebb88c422Mark Andrews
9105a6a730bfb8472c48230629c5a0aebb88c422Mark Andrews *) Fix APACI's `Group' configuration adjustment - especially for Linux
c5a84548b24ffac37d0154d8f2f4fea36a3aeb23Mark Andrews platforms where `nogroup' exists in /etc/group. [Ralf S. Engelschall]
9aa7706900e2451fcd6e44ffe4a45b042ec34cf3Mark Andrews
9aa7706900e2451fcd6e44ffe4a45b042ec34cf3Mark Andrews *) Make PrintPath work generically instead of having one version
7b78f6665635ed85118352c97ff5a25f5bb242f7Mark Andrews strictly for OS/2. [Jim Jagielski, Brian Havard]
c4f9e613e12f03795bee18cf2ca8e6a9d39d6468Mark Andrews
3b2032121d6e8ae1f4ad24b31a69e1a4b33c91a0Mark Andrews *) Fix the recently introduced C header file checking: We now use the C
e30e7913c9f0978ae60b4e4572034a4b9ffb46deMark Andrews pre-processor pass only (and no longer the complete compiler pass) to
e30e7913c9f0978ae60b4e4572034a4b9ffb46deMark Andrews determine whether a C header file exists or not. Because only this way
e30e7913c9f0978ae60b4e4572034a4b9ffb46deMark Andrews we're safe against inter-header dependencies (which caused horrible
65356eb978747c5e68d4c6b3909642cebb8479f8Mark Andrews portability problems). The only drawback is that we now have a CPP
e8346a529a2777d1867e0bbb3440279cbddbd808Mark Andrews configuration variable which has to be determined first (we do a similar
e8346a529a2777d1867e0bbb3440279cbddbd808Mark Andrews approach as GNU Autoconf does here). When all fails the user still has
7de69feda2f66658ce66a8700d64ffb88d47bb6aMark Andrews the possibility to override it manually via APACI or src/Configuration.
7de69feda2f66658ce66a8700d64ffb88d47bb6aMark Andrews As a fallback for the header check itself we can directly check the
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews existance of the file under /usr/include, too.
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews [Ralf S. Engelschall] PR#2777
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews *) PORT: Added RHAPSODY (Mac OS X Server) support. MAP_TMPFILE defined
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews as an alternate mechanism for mmap'd shared memory for RHAPSODY.
49210da3fb6a9268725b2a7db864ade531e5d403Mark Andrews ap_private_extern defined to hide symbols that conflict with loaded
bb3e43000807197e776407fd8d524a87dcc17a10Mark Andrews dynamic libraries on the NEXT and RHAPSODY platforms.
5b4a9ac6bfba91acd3ba976e75b14ee065d6f95eMark Andrews [Wilfredo Sanchez <wsanchez@apple.com>]
5b4a9ac6bfba91acd3ba976e75b14ee065d6f95eMark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Delete PID file on clean shutdowns.
b0196673ab41b4f17e1c45fba160f3ea2623a06fMark Andrews [Charles Randall <crandall@matchlogic.com>] PR#2947
b0196673ab41b4f17e1c45fba160f3ea2623a06fMark Andrews
b0196673ab41b4f17e1c45fba160f3ea2623a06fMark Andrews *) Fix mod_auth_*.html documents: NSCA -> NCSA
40fe5e7ac29b695438528c190140fec27d8d1018Mark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2991
40fe5e7ac29b695438528c190140fec27d8d1018Mark Andrews
40fe5e7ac29b695438528c190140fec27d8d1018Mark Andrews *) Fix INSTALL document: www.gnu.ai.mit.edu -> www.gnu.org
d562cb04df022606af43c7bee3111e4d17cbe4b2Mark Andrews [Karl Berry <karl@gnu.org>] PR#2994
1d8abe0521c8e084dfcdd821173c10e0b416aeb3Mark Andrews
1d8abe0521c8e084dfcdd821173c10e0b416aeb3Mark Andrews *) Fix dbmmanage.1 manual page.
1d8abe0521c8e084dfcdd821173c10e0b416aeb3Mark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2992
1d8abe0521c8e084dfcdd821173c10e0b416aeb3Mark Andrews
1bf8f4b77df1e1f8c1ce8326679ab02bac235c09Mark Andrews *) Fix possible buffer overflow situation in suexec.c.
18afcb70285f2204b1586c351dd4af0a01d33f75Mark Andrews [Jeff Stewart <jws@purdue.edu>] PR#2790
18afcb70285f2204b1586c351dd4af0a01d33f75Mark Andrews
18afcb70285f2204b1586c351dd4af0a01d33f75Mark Andrews *) Add some more LIBS for the SCO5 platform which are needed for the already
18afcb70285f2204b1586c351dd4af0a01d33f75Mark Andrews used -lprot. It's actually a bug in SCO5, of course.
18afcb70285f2204b1586c351dd4af0a01d33f75Mark Andrews [Ronald Record <rr@sco.com>] PR#2533
32c7aa3dd18d57979990574ddb008437b59c2428Rob Austein
32c7aa3dd18d57979990574ddb008437b59c2428Rob Austein *) Fix documentation of ProxyPass/ProxyPassReverse according to the
358043e40fd0c1fe312e25c28a771aafc3bd7b79Mark Andrews trailing slash problem. [Jon Drukman <jsd@gamespot.com>] PR#2933
358043e40fd0c1fe312e25c28a771aafc3bd7b79Mark Andrews
7389e8330d62a059b8923fb8ca6f933caeb559d9Mark Andrews *) Remove `-msym' option from LDFLAGS_SHLIB for the Digital UNIX (OSF/1)
7389e8330d62a059b8923fb8ca6f933caeb559d9Mark Andrews platform, because it's only supported under version 4.0 and higher. But
bb50eb10edbfa31f53699304d6838716d700b85bMark Andrews because our GuessOS is still unaware of Digital UNIX versions and the
7389e8330d62a059b8923fb8ca6f933caeb559d9Mark Andrews -msym is just to optimize the DSO statup time a little bit it's safe and
7389e8330d62a059b8923fb8ca6f933caeb559d9Mark Andrews best when we leave it out now. [Ralf S. Engelschall] PR#2969
bb50eb10edbfa31f53699304d6838716d700b85bMark Andrews
a5e055b9d8bc42b0e29d88960ed2a5c531fa5acbRob Austein *) Fix the ap_log_error_old(), ap_log_unixerr() and ap_log_printf()
a5e055b9d8bc42b0e29d88960ed2a5c531fa5acbRob Austein functions: First all three functions no longer fail on strings containing
3d8dfd44a3be708f00380064411c16b2fa28303aMark Andrews "%" chars and second ap_log_printf() no longer does a double-formatting
a46445468bb39318ad2a4291ace371a8c4ff9ac6Mark Andrews (instead it directly passes through the message to be formatted to the
e794f1ef072b4453c4af64717429729bcf3a6a69Mark Andrews real internal formatting function). [Ralf S. Engelschall] PR#2941
e794f1ef072b4453c4af64717429729bcf3a6a69Mark Andrews
5f059eef4360bc6c35a38241deb2561884dd9001Mark Andrews *) Allow "Include" directives anywhere in the server config
e180037bc15a98cac0b91ffcf464e9c96918294bMark Andrews files (but not .htaccess files). [Ken Coar] PR#2727
e180037bc15a98cac0b91ffcf464e9c96918294bMark Andrews
eeac8cfcd3ad738b435ad82fcd5c6387da643f90Mark Andrews *) The proxy was refusing to serve CONNECT requests except to
99ba7fc5ff50823248155f4f2954ece0271b4354Mark Andrews port 443 (https://) and 563 (snews://). The new AllowCONNECT
99ba7fc5ff50823248155f4f2954ece0271b4354Mark Andrews directive allows the configuration of the ports to which a
d1ef96c5fb81b1edbede4228480848b58e48799eMark Andrews CONNECT is allowed. [Sameer Parekh, Martin Kraemer]
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews *) mod_expires will now act on content that is not sent from a file
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews on disk. Previously it would never add an Expires: header to
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews any response that did not come from a file on disk; the only
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews case where it still doesn't (and can't) add one for that type of
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews content is if you are using a modification date based setting.
cc3aafe737334d444781f8a34ffaf459e075bb9aMark Andrews [Marc Slemko, Paul Phillips <paulp@go2net.com>]
68fb0934fd5e2f8f95a2f43e26b1208f7cbc4307Mark Andrews
68fb0934fd5e2f8f95a2f43e26b1208f7cbc4307Mark Andrews *) Problems encountered during .htaccess parsing or CGI execution
68fb0934fd5e2f8f95a2f43e26b1208f7cbc4307Mark Andrews that lead to a "500 Server Error" condition now provide explanatory
68fb0934fd5e2f8f95a2f43e26b1208f7cbc4307Mark Andrews text (in the *ERROR_NOTES envariable) to ErrorDocument 500 scripts.
68fb0934fd5e2f8f95a2f43e26b1208f7cbc4307Mark Andrews [Ken Coar] PR#1291
3386e927950e1bacd2ae7bfdc03ee17885bd9993Mark Andrews
3386e927950e1bacd2ae7bfdc03ee17885bd9993Mark Andrews *) Add NameWidth keyword to IndexOptions directive so that the
c80b5ef256d9c289c403bc90e0fbee3699552808Mark Andrews width of the filename column is customisable. [Ken Coar, Dean Gaudet]
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews PR#1949, 2324.
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews
b8694095f0109e23d9aaa3e84f840829b014c417Mark Andrews *) Recognize lowercase _and_ uppercase `uname' results under
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews SCO OpenServer. [David Coelho <drc@ppt.com>]
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews *) As duplicate "HTTP/1.0 200 OK" lines within the header seem to be
b8694095f0109e23d9aaa3e84f840829b014c417Mark Andrews a common problem of (mis-administrated?) IIS servers, make the apache
23fdb6a5a3d3d0e427682b68eea9553d2d326ad4Mark Andrews proxy immune to these errors (and ignore the duplicates, but log
b8694095f0109e23d9aaa3e84f840829b014c417Mark Andrews the fact to error_log). [Martin Kraemer], after the proposal in PR#2914
e6c95fe56b0491b533f2ca5a3ed8e8e9f74f4fd2Mark Andrews
e6c95fe56b0491b533f2ca5a3ed8e8e9f74f4fd2Mark Andrews *) The <IfModule and <IfDefine block starting directives now only
e6c95fe56b0491b533f2ca5a3ed8e8e9f74f4fd2Mark Andrews allow exactly one argument. Previously, the optional negation
e6c95fe56b0491b533f2ca5a3ed8e8e9f74f4fd2Mark Andrews character '!' could be separated by whitespace without a syntax
1c52f228e9e2d8784273b7af76794031e480e5e8Mark Andrews error being reported, albeit defeating the IfModule functionality
1c52f228e9e2d8784273b7af76794031e480e5e8Mark Andrews (enclosed directives would ALWAYS be executed). By using the
ea0b0c283be744d8b5810927b9981a9afe2f900dMark Andrews stricter syntax, these hard-to-track errors can be avoided.
c315e5cfead876251ee4ff5600ee67303b2729a4Mark Andrews [Martin Kraemer]
c315e5cfead876251ee4ff5600ee67303b2729a4Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Simplify handling of IndexOptions in mod_autoindex -- and BTW
c956fbfbbd536407a2f0ef8f138c27729d31744dMark Andrews cause the standalone FancyIndexing directive to logically OR
e5477896ce19a38c3b45e93c144e075565b79e9cMark Andrews into any existing IndexOptions settings rather than wiping
e5477896ce19a38c3b45e93c144e075565b79e9cMark Andrews them out. [Ken Coar]
e5477896ce19a38c3b45e93c144e075565b79e9cMark Andrews
c52d94fa4b7eaf8b7be9dfda15f9fc2c01041d51Mark Andrews *) Changes in ftp proxy: make URL parsing simpler by using the
f66cd386cf4d0cc65b28cbaeaf540353406393a8Mark Andrews parsed_uri stuff.
f66cd386cf4d0cc65b28cbaeaf540353406393a8Mark Andrews + Add display of the "current directory" in cases where it's
e94cf7074d8ac30820a715211ae914387996cca9Mark Andrews different from the supplied path (e.g., ftp://user@host/ lives
7e2c0c16d6e03058650f536a5b43cb21598ec91fMark Andrews in /home/user, not in /, therefore clicking on "../" in the
7e2c0c16d6e03058650f536a5b43cb21598ec91fMark Andrews starting directory might send us to /home/).
7e2c0c16d6e03058650f536a5b43cb21598ec91fMark Andrews + When ftp login fails, (esp. when a user name was part of the
6ecbd11029fa201b5f273f4ef016617dc35206aeMark Andrews URL already), we now return [401 Unauthorized ] to allow the
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews browser to pop up an authorization dialog. This makes passwords
738bffe2ee7dd6f3efeae8e2cca9017acc9c5f94Mark Andrews slightly less visible (they don't appear in the regular log files)
8d5b4ce1eb7914205c6433d6575f6d11cd7a9509Mark Andrews and implements a functionality that other www proxy servers
8d5b4ce1eb7914205c6433d6575f6d11cd7a9509Mark Andrews already offered.
8d5b4ce1eb7914205c6433d6575f6d11cd7a9509Mark Andrews [Martin Kraemer]
c0707105f60934d59321c2fccbc254f9e31ff28aMark Andrews
c0707105f60934d59321c2fccbc254f9e31ff28aMark Andrews *) Triggered by the recent "Via:" header changes, the proxy module would
c0707105f60934d59321c2fccbc254f9e31ff28aMark Andrews dump core for replies with invalid headers (e.g., duplicate
50e45d74340656422b21a5513f2d7138dfe24b7aMark Andrews "HTTP/1.0 200 OK" lines). These errors are now logged and the
50e45d74340656422b21a5513f2d7138dfe24b7aMark Andrews core dump is avoided. Also, broken replies are not cached.
be00eb0795d2def3452de0da2adde74e7eda6982Mark Andrews [Martin Kraemer] PR#2914
be00eb0795d2def3452de0da2adde74e7eda6982Mark Andrews
be00eb0795d2def3452de0da2adde74e7eda6982Mark Andrews *) new `GprofDir' directive when compiled with -DGPROF, where gprof can
2cd8fa3ef9b168429dcf76603e7b95c58317dd28Mark Andrews plop gmon.out profile data for each child [Doug MacEachern]
2cd8fa3ef9b168429dcf76603e7b95c58317dd28Mark Andrews
5ba04ba7a99371afcd4d988854ee71bffdb20df4Mark Andrews *) Use the construct ``"$@"'' instead of ``$*'' in the generated
5ba04ba7a99371afcd4d988854ee71bffdb20df4Mark Andrews config.status script to be immune against arguments with whitespaces.
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews [Yves Arrouye <yves@apple.com>] PR#2866
f6f0bf7d4bb135ba1a421520076a47a61b6870fcMark Andrews
f6f0bf7d4bb135ba1a421520076a47a61b6870fcMark Andrews *) Replace the inlined information grabbing stuff for the configuration
4e681da26da4fff442b3ae24b0da2de1f240c43cMark Andrews adjustment feature (no --without-confadjust) with calls to a new helper
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews script `buildinfo.sh' which is both more flexible and already proofed to
4e681da26da4fff442b3ae24b0da2de1f240c43cMark Andrews be more robust against platform differences. This mainly fixes the
4e681da26da4fff442b3ae24b0da2de1f240c43cMark Andrews recently occured ``sed: command garbled: ...'' problems.
4499c6cd5e376c59e06cd0be61f3620a1336bc5fMark Andrews [Ralf S. Engelschall] PR#2776, PR#2848
4499c6cd5e376c59e06cd0be61f3620a1336bc5fMark Andrews
4a6f552617fe422ad90826e48c2a3446e3a2574bMark Andrews *) Make ab.c again pass ``gcc -Wall -Wshadow -Wpointer-arith -Wcast-align
4a6f552617fe422ad90826e48c2a3446e3a2574bMark Andrews -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''
1195e2e1f2853df56d7ec69d2e01a99d44e4d61dMark Andrews without complains after we recently added the POST feature.
392cd518b3aff35c0396f84884cd51680edd68a1Mark Andrews [Ralf S. Engelschall]
392cd518b3aff35c0396f84884cd51680edd68a1Mark Andrews
392cd518b3aff35c0396f84884cd51680edd68a1Mark Andrews *) Renamed is_HTTP_xxx() macros to ap_is_HTTP_xxx() name. They are used inside
74def1c9c1880480bb62eb881e8a7ce28f9f7a20Mark Andrews modules as API functions and we forgot them at the big symbol renaming.
5efa612be0471cc4e133b795db3dd3addf18ba6cMark Andrews [Ralf S. Engelschall]
5efa612be0471cc4e133b795db3dd3addf18ba6cMark Andrews
da059d6dd4035c1f4736e7978065c4d51893b136Mark Andrews *) Remove bad reference to non-existing SERVER_VERSION in mod_rewrite.html
78ef0ebab3a4039f8efc8afdb7ee4b936ffc34caMark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.ORG>] PR#2895
78ef0ebab3a4039f8efc8afdb7ee4b936ffc34caMark Andrews
78ef0ebab3a4039f8efc8afdb7ee4b936ffc34caMark Andrews *) Dynamically size the filename column of mod_autoindex output.
f620c5e527746a2ec3d90a11d21abd8a114746dfTatuya JINMEI 神明達哉 [Dean Gaudet]
d9147148dde80db2ce3390ded26333d106d3c10bTatuya JINMEI 神明達哉
ec3f1d35170225c74d11c27bb184e250d150b209Tatuya JINMEI 神明達哉 *) Add the ability to do POST requests to the ab benchmarking tool.
ec3f1d35170225c74d11c27bb184e250d150b209Tatuya JINMEI 神明達哉 [Kurt Sussman <kls@best.com>] PR#2871
75654de87118c587629b5dc6882b6c1925d34983Tatuya JINMEI 神明達哉
71839e2a424a904a60429a380ee7685464022e4bMark Andrews *) Bump up MAX_ENV_FLAGS in mod_rewrite.h from the too conservatice limit of
71839e2a424a904a60429a380ee7685464022e4bMark Andrews 5 to 10 because there are some users out there who always have 5 to 8
578f588228f5e04ccf648b6ae596f396ad6a22c9Mark Andrews variables in one RewriteRule and had to patch mod_rewrite.h for every
578f588228f5e04ccf648b6ae596f396ad6a22c9Mark Andrews release. So 15 should be now more than enough, even for them. (I never
578f588228f5e04ccf648b6ae596f396ad6a22c9Mark Andrews needed more than 4 in my RewriteRules ;-)
e0199985cfe68e8556cf0060ad8f7effbcdc5628Mark Andrews [Ralf S. Engelschall]
e0199985cfe68e8556cf0060ad8f7effbcdc5628Mark Andrews
38e8022ace865803bdd609c9763cd7d7ba2818dcMark Andrews *) Make the proxy generate and understand Via: headers
38e8022ace865803bdd609c9763cd7d7ba2818dcMark Andrews [Martin Kraemer]
445acbbea8bd5143749e97a8ff247a808321aa6cMark Andrews
8407fbc61d73caa766c0689558525d0a76296c86Mark Andrews *) Change the proxy to use tables instead of array_headers for
8407fbc61d73caa766c0689558525d0a76296c86Mark Andrews the header lines. [Martin Kraemer]
08b40678f36df355db8e7b84fa4e74f726dd2b3eMark Andrews
08b40678f36df355db8e7b84fa4e74f726dd2b3eMark Andrews *) Make sure the config.status file is not overridden when just
08b40678f36df355db8e7b84fa4e74f726dd2b3eMark Andrews ``configure --help'' is used. [Ralf S. Engelschall] PR#2844
b9625d9be5d89015b75cc7c25088a8d1a3bb7655Mark Andrews
cc32d38366fa680fc29f9fb17bd3ebe515835445Mark Andrews *) Split MODULE_MAGIC_NUMBER into _MAJOR/_MINOR numbers. This should
cc32d38366fa680fc29f9fb17bd3ebe515835445Mark Andrews provide a way to trace API changes that add functionality but do
267a22597fc1c5ffd81532ec1afad36b729f6cb4Tatuya JINMEI 神明達哉 not create a compatibility issue for precompiled modules, etc.
cc32d38366fa680fc29f9fb17bd3ebe515835445Mark Andrews See include/ap_mmn.h for more details. [Randy Terbush]
cc32d38366fa680fc29f9fb17bd3ebe515835445Mark Andrews
267a22597fc1c5ffd81532ec1afad36b729f6cb4Tatuya JINMEI 神明達哉 *) Fix suexec installation under `make install root=xxx' situation.
3dc3d557be91d59317b34fc5a9ae79b1925d5878Mark Andrews [Ralf S. Engelschall]
c5076a76f6562b5aa48e6a1c680c343b53846157Mark Andrews
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews *) Extend the output of the -V switch to include the paths of all
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews compiled-in configuration files, if they were overridden at
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews compile time, for least astonishment of the user.
86548554f6180bbe051c8cd8f03c93fc9b6a7825Mark Andrews [Martin Kraemer]
86548554f6180bbe051c8cd8f03c93fc9b6a7825Mark Andrews
86548554f6180bbe051c8cd8f03c93fc9b6a7825Mark Andrews *) When READing a request in ExtendedStatus mode, the "old"
5ed76fa7ea83d3ce7a33d365aa3b84410c3b8773Mark Andrews vhost, request and client information is not displayed.
5ed76fa7ea83d3ce7a33d365aa3b84410c3b8773Mark Andrews [Jim Jagielski]
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews *) STATUS is no longer available. Full status information now
ad3b537a241f40bbb3fdc4de252881c42645021bMark Andrews run-time configurable using the ExtendedStatus directive.
b21b49a1d43dbc44d2b15674ce03a13562165566Mark Andrews [Jim Jagielski]
b21b49a1d43dbc44d2b15674ce03a13562165566Mark Andrews
b21b49a1d43dbc44d2b15674ce03a13562165566Mark Andrews *) SECURITY: Eliminate O(n^2) space DoS attacks (and other O(n^2)
ea38808b7dc1b2e760f18f2cc3ae07deaf15ba1aMark Andrews cpu time attacks) in header parsing. Add ap_overlap_tables(),
de6ceebf98bedee0b1e1e81d078befbd728b801cMark Andrews a function which can be used to perform bulk update operations
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews on tables in a more efficient manner. [Dean Gaudet]
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews
349f684cf175422918d10e91e7bee747c18ae840Mark Andrews *) SECURITY: Added compile-time and configurable limits for
ed6e3610e3e56aac554dc93cad461a0016e961f9Mark Andrews various aspects of reading a client request to avoid some simple
1cf54d1966b3de8f6593e9e80eae9a80a1c011adMark Andrews denial of service attacks, including limits on maximum request-line
1cf54d1966b3de8f6593e9e80eae9a80a1c011adMark Andrews size (LimitRequestLine), number of header fields (LimitRequestFields),
c3c72c1033b9d085b1a1fe74a9e3efb6db724ce2Mark Andrews and size of any one header field (LimitRequestFieldsize). Also added
b4fe7caac90b28629d207b40a77862e2535f925cMark Andrews a configurable directive LimitRequestBody for limiting the size of the
b4fe7caac90b28629d207b40a77862e2535f925cMark Andrews request message body. [Roy Fielding]
a0a19510c03e6004fd11ec278745d499751cd081Mark Andrews
c2ec022f5784a2ff844f7d062c2022197dc4ad09Mark Andrews *) Make status module aware of DNS and logging states, even if
c2ec022f5784a2ff844f7d062c2022197dc4ad09Mark Andrews STATUS not defined. [Jim Jagielski]
c2ec022f5784a2ff844f7d062c2022197dc4ad09Mark Andrews
46ed893dd0c8096d2bcbf31e6dcf79b2786e7b7fMark Andrews *) Fix a problem with the new OS/2 mutexes. [Brian Havard]
1ae75c1024eb0475c2be352b8707772e16332ad0Mark Andrews
1ae75c1024eb0475c2be352b8707772e16332ad0Mark Andrews *) Enhance mod_speling so that CheckSpelling can be used in
1ae75c1024eb0475c2be352b8707772e16332ad0Mark Andrews <Directory> containers and .htaccess files. [Ken Coar]
ed76ec2056f92ae846b260ccfb4f93e3b3f6bdebMark Andrews
ed76ec2056f92ae846b260ccfb4f93e3b3f6bdebMark Andrews *) API: new ap_custom_response() function for hooking into the
ed76ec2056f92ae846b260ccfb4f93e3b3f6bdebMark Andrews ErrorDocument mechanism at runtime [Doug MacEachern]
ed76ec2056f92ae846b260ccfb4f93e3b3f6bdebMark Andrews
ea17e969771f19485dc7ab2f731d641128a9ee3bMark Andrews *) API: new ap_uuencode() function [Doug MacEachern]
ea17e969771f19485dc7ab2f731d641128a9ee3bMark Andrews
ea17e969771f19485dc7ab2f731d641128a9ee3bMark Andrews *) API: scan_script_header_err_core() now "public" and renamed
5eb0659963ec2aa5158425b39620ec1b30c83c7bMark Andrews ap_scan_script_header_err_core() [Doug MacEachern]
5eb0659963ec2aa5158425b39620ec1b30c83c7bMark Andrews
5eb0659963ec2aa5158425b39620ec1b30c83c7bMark Andrews *) The 'status' module will now show the process pid's and their
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews state even without full STATUS accounting. [Jim Jagielski]
6fac7ff1f9ec9c3873d3b55c5079fa79aba1f146Mark Andrews
6fac7ff1f9ec9c3873d3b55c5079fa79aba1f146Mark Andrews *) Restore the client IP address to the error log messages, this
e1f638a7141a4c1364e4ca45025241c9e2fecf74Mark Andrews was lost during the transition from 1.2 to 1.3. Add a new
4995dba770c1f5f421cf22a2e9e138586a153765Mark Andrews function ap_log_rerror() which takes a request_rec * and
4995dba770c1f5f421cf22a2e9e138586a153765Mark Andrews formats it appropriately. [Dean Gaudet] PR#2661
fb827ed6df9a473770fb69a75a455b4ad0d14f52Mark Andrews
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews *) Cure ap_cfg_getline() of its nasty habit of compressing internal
b39213ce599dc433c6f99144c97ca3d562f40344Mark Andrews whitespace in input lines -- including within quoted strings.
b39213ce599dc433c6f99144c97ca3d562f40344Mark Andrews [Ken Coar]
154bd87b5c9d603329dd691b822525c6885f21d4Mark Andrews but leading and trailing whitespace should continue to be
8862388bcb44f634cbfc3e69f11ff4cb76590a4bMark Andrews stripped [Martin Kraemer]
8862388bcb44f634cbfc3e69f11ff4cb76590a4bMark Andrews
6ec0f98cf6e88aeba1615763fdec253bf391f22eMark Andrews *) Cleanup of the PrintPath/PrintPathOS2 helper functions. Avoid
cf7432f74761107ac3cbafadc524b5d650919fedMark Andrews the ugly use of an env. variable and use command-line args for
80cc19dc262cead5a8af41838ebfae5a6e587605Mark Andrews alternate $PATH. Make more like advanced 'type's as well.
80cc19dc262cead5a8af41838ebfae5a6e587605Mark Andrews [Jim Jagielski]
d4e1933abc4bfa3d42dcc2f093c81816a317dde6Mark Andrews
8d414d155953f89a4eff40f16878438a8c9228f3Mark Andrews *) The IRIXN32 Rule was being ignored. Configure now correctly adds
8d414d155953f89a4eff40f16878438a8c9228f3Mark Andrews -n32 only if IRIXN32 says to. [Jim Jagielski, Alain St-Denis
7c82b7ae3f3006e20d00529a15372d6cba133c20Mark Andrews <alain.st-denis@ec.gc.ca>] PR#2736
8d414d155953f89a4eff40f16878438a8c9228f3Mark Andrews
7c82b7ae3f3006e20d00529a15372d6cba133c20Mark Andrews *) Clean up a warning in mod_proxy. [Ralf S. Engelschall]
8d414d155953f89a4eff40f16878438a8c9228f3Mark Andrews
8d414d155953f89a4eff40f16878438a8c9228f3Mark Andrews *) Renamed __EMX__ (internal define of the gcc port under OS/2) to OS2
7c82b7ae3f3006e20d00529a15372d6cba133c20Mark Andrews following the same idea as "MSVC vs WIN32". Additionally the src/os/emx/
7d4a465de03b26bf9f5ef131d03253b8f6afc169Mark Andrews directory was renamed to src/os/os2/ for consistency.
7d4a465de03b26bf9f5ef131d03253b8f6afc169Mark Andrews [Brian Havard, Ralf S. Engelschall]
6e3bc2e0f715e2f3ddbfc10811303f39cce37fc6Mark Andrews
39e5cab80a2abc95ca034ac79ea3f973fc66f5b3Mark Andrews *) Add new Rule SHARED_CHAIN which can be used to enable linking of DSO
0b9af9eb37f624033652f6cc463262474ee13344Mark Andrews files (here modules) against other DSO files (here shared libraries).
85315eb5361d92ba034cecc26c3526e121392386Mark Andrews This is done by determining a subset of LIBS which can be safely used for
3b1fce680f1dbe9467cd3b0ab3138ea52d5a976fMark Andrews linking the DSOs, i.e. PIC libs and shared libs. Currently the rule is
3b1fce680f1dbe9467cd3b0ab3138ea52d5a976fMark Andrews disabled for all platforms to avoid problems with this (experimental)
ead4d2d676b12a856769d3750861c6efbb95f709Mark Andrews rule. But we provide it now for those people how ran into problems and
0822cc50657c972c6a5ee29cba9506847c7ea7c2Mark Andrews want to came out by forcing linking against DSOs.
0822cc50657c972c6a5ee29cba9506847c7ea7c2Mark Andrews [Ralf S. Engelschall] PR#2587
bdb609f5874056f6f1cd212ebf8700132e683fe5Mark Andrews
c5cde9d5a70c921da901a23845e740ccc7a8c4e4Mark Andrews *) Fix suEXEC start message: Has to be of `notice' level to really get
c5cde9d5a70c921da901a23845e740ccc7a8c4e4Mark Andrews printed together with the standard startup message because the `notice'
bae21f249ead77e442a025b9b18d90e21ebf72ceMark Andrews level is handled special inside ap_log_error() for startup messages.
321df4df1972da49223fc8ee1180f94b88295568Mark Andrews [Ralf S. Engelschall] PR#2761 PR#2761 PR#2765
a3a09ca2497e925a9f0ba76f1525c6c60e5d5094Mark Andrews
7f5a3cea4e93ad683b13ebef8a6589afd97fb762Mark Andrews *) Add correct `model' MIME types from RFC2077 to mime.types file.
7f5a3cea4e93ad683b13ebef8a6589afd97fb762Mark Andrews [Ralf S. Engelschall] PR#2732
9c3df90dd3767bcc14c4028fb3d81b26d056e821Mark Andrews
9c3df90dd3767bcc14c4028fb3d81b26d056e821Mark Andrews *) Fixed examples in mod_rewrite.html document.
50105afc551903541608b11851d73278b23579a3Mark Andrews [Youichirou Koga <y-koga@jp.FreeBSD.org>, Ralf S. Engelschall] PR#2756
50105afc551903541608b11851d73278b23579a3Mark Andrews
1285fa26e632e3b386435b730b47b5ff1a03e553Mark Andrews *) Allow ap_read_request errors to propagate through the normal request
1285fa26e632e3b386435b730b47b5ff1a03e553Mark Andrews handling loop so that the connection can be properly closed with
5a680f4170ba77be1e31cf1fc40ab43856919078Mark Andrews lingering_close, thus avoiding a potential TCP reset that would
5a680f4170ba77be1e31cf1fc40ab43856919078Mark Andrews cause the client to miss the HTTP error response. [Roy Fielding]
ad35e0aec9dae18ee31e760beab1602f7eb4ef05Mark Andrews
2047977ce2dfcfe3a0fa2d638c3242841310fad3Mark Andrews *) One more portability fix for APACI shadow tree support: Swap order of awk
2047977ce2dfcfe3a0fa2d638c3242841310fad3Mark Andrews and sed in top-level configure script to avoid sed fails on some
8c5d451ea2898586c00932efeb5123b41afc9650Mark Andrews platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
9c8fb5f756d99a4ecba95df9a00757384f3b71b7Mark Andrews non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews
fa7ee558e0536a94bfdb154a7c7ba298535459c4Mark Andrews *) PORT: NEC EWS4800 support.
d81018ac98b287438248cd0e3a1c230eb40b0b55Mark Andrews [MATSUURA Takanori <t-matsuu@protein.osaka-u.ac.jp>]
1d7cbe71b99ea0e883a4cf8af8a91bba04a3597eMark Andrews
1d7cbe71b99ea0e883a4cf8af8a91bba04a3597eMark Andrews *) Fix a segfault in the proxy on OS/2. [Brian Havard]
7436bb66c610c039ca3dec12aac5024037898910Mark Andrews
c569a0e4d518bf30be1b2ba9cc3592fe470e9822Mark Andrews *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
c569a0e4d518bf30be1b2ba9cc3592fe470e9822Mark Andrews structure instead of just NULL. This fixes at least the RewriteMap
e9964e7db4467722300c0d7d52ec1d7a51a784c1Mark Andrews programs under Win32. [Marco De Michele <mdemichele@tin.it>] PR#2483
89783da064f4f9bf2e82d2b3941ddeffe2a8c30dMark Andrews
50105afc551903541608b11851d73278b23579a3Mark Andrews *) Add workaround to top-level `configure' script for brain dead
89783da064f4f9bf2e82d2b3941ddeffe2a8c30dMark Andrews `echo' commands which interpet escape sequences per default.
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews [Ralf S. Engelschall] PR#2654
a03848252fa85734ca75beae3d0b01bb503c0a8bMark Andrews
d7282a5fe88699990943df5ee6a7a48ee7ee2f7bMark Andrews *) Make sure that the path to the Perl interpreter is correctly
a03848252fa85734ca75beae3d0b01bb503c0a8bMark Andrews adjusted under `make install' also for the printenv CGI script.
d7282a5fe88699990943df5ee6a7a48ee7ee2f7bMark Andrews [Ralf S. Engelschall] PR#2595
22fa4e3206c2048cabaf75a3ae21132fd5542848Mark Andrews
22fa4e3206c2048cabaf75a3ae21132fd5542848Mark Andrews *) Update the mod_rewrite.html document to correctly reflect the situation
3ad4e307b64bcf8baa984e10a4e7549dbeaea31dMark Andrews of the `proxy' (`[P]') feature. [Ralf S. Engelschall] PR#2679
3f08fb69eb3b5f6eaa3c57160dff0998e1569283Mark Andrews
3f08fb69eb3b5f6eaa3c57160dff0998e1569283Mark Andrews *) Fix `install-includes' sub-target of `install' target in top-level
9ce4318edbab0b50f21df9ce28beb6fde71943ecMark Andrews Makefile.tmpl: The umask+cp approach didn't work as expected (especially
91c79af4755df2d892511512e0fc886639518a92Mark Andrews for users which extracted the distribution under 'umask 077'), so replace
91c79af4755df2d892511512e0fc886639518a92Mark Andrews it by an explicit cp+chmod approach.
bf74532c942054bccc3df5227009ce52063a9dafMark Andrews [Richard Lloyd, Curt Sampson, Ralf S. Engelschall] PR#2656 PR#2626
80c5a37ddcb42239f6b7d16b66ca0426ca6ffe2cMark Andrews
2558e3f25d4972a028c99141bd26d3f3087630d5Mark Andrews *) Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
821644d49b73b49f2abc5463bc53a3132f612478Mark Andrews behavior and to cleanup correctly even under enabled SHARED_CORE rule.
821644d49b73b49f2abc5463bc53a3132f612478Mark Andrews [Ralf S. Engelschall]
821644d49b73b49f2abc5463bc53a3132f612478Mark Andrews
74cb99072c4b0ebd2ccafcfa284288fa760f7a1aMark Andrews *) Use a more straight forward and thus less problematic Sed command in
74cb99072c4b0ebd2ccafcfa284288fa760f7a1aMark Andrews src/helper/mkdir.sh script. [Ralf S. Engelschall]
74cb99072c4b0ebd2ccafcfa284288fa760f7a1aMark Andrews
902aebfb5ad7c735f74f700da288dc4519b83123Mark Andrews *) Make sure the `configure' scripts doesn't fail when trying to guess the
22cd704fca51434f7aba193fd94d3291cc94ba2bMark Andrews domainname of the machine and there are multiple `domainname' and
22cd704fca51434f7aba193fd94d3291cc94ba2bMark Andrews `search' entries in /etc/resolv.conf.
0e4f7c9d4e1a4bb66f0702e9f9975c392a15918bMark Andrews [Ralf S. Engelschall] PR#2710
7554feaef6057f5ea2926076900ac7634b911456Mark Andrews
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) Add note about the SHARED_CORE requirement on some platforms also to the
dbc4666b1b153775001613af160541da986429b2Mark Andrews INSTALL file because a lot of users don't read htdocs/manual/dso.html
aa20b1b625dc406e1d9c3ff95d2a4af432e119faMark Andrews first. [Ralf S. Engelschall] PR#2701
aa20b1b625dc406e1d9c3ff95d2a4af432e119faMark Andrews
aa20b1b625dc406e1d9c3ff95d2a4af432e119faMark Andrews *) Fix document "hyperlink" for dso.html in src/Configuration.tmpl
54a8b1e6ede781e9f4059512530046db8c4de1ddMark Andrews [Knut A.Syed <Knut.Syed@nhh.no>] PR#2674
c4b8c7555d4abcfa4706c0551b00d71554250936Mark Andrews
c4b8c7555d4abcfa4706c0551b00d71554250936Mark Andrews *) Modify mod_rewrite to update the Vary response field if the URL rewriting
4b28ee17ca96def8c7e7a8a45af55da81545f20aMark Andrews engine does any manipulations or decisions based upon request fields.
c4b8c7555d4abcfa4706c0551b00d71554250936Mark Andrews [Ken Coar] PR#1644
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews
4b28ee17ca96def8c7e7a8a45af55da81545f20aMark Andrews *) Document the special APACI behavior for installation paths where
c368f28dad471c70213b41f7a0ad1b4ef4d8c543Mark Andrews ``/apache'' is appended to paths under some (well defined, of course)
f7e94169a9814c8e7d2ac8ac62bf0ccafb5a2cb6Mark Andrews situations to prevent pollution of system locations with Apache files.
774c3a62d9adca187b44fe90919bb409a43a2f2aMark Andrews [Ralf S. Engelschall] PR#2660
774c3a62d9adca187b44fe90919bb409a43a2f2aMark Andrews
774c3a62d9adca187b44fe90919bb409a43a2f2aMark Andrews *) Fixed problem with buffered response message not being sent for
774c3a62d9adca187b44fe90919bb409a43a2f2aMark Andrews the read_request error conditions of URI-too-long (414) and
807d4a4c54ab9a328afeb5f69dc680ffbcb384c8Tatuya JINMEI 神明達哉 malformed header fields (400). [Roy Fielding] PR#2646
1f058fb7d18d43e26ab0c9e8ce2ff6615740186aMark Andrews
1f058fb7d18d43e26ab0c9e8ce2ff6615740186aMark Andrews *) Add support for the Max-Forwards: header line required by RFC2068 for
1f058fb7d18d43e26ab0c9e8ce2ff6615740186aMark Andrews the TRACE method. This allows apache to TRACE along a chain of proxies
6bd3b1fdb3915931ac158b2126fae35711bd0b26Mark Andrews up to a predetermined depth. [Martin Kraemer]
f8dfdef682c54f61cacebfb31260f3d6ba4ea54aMark Andrews
f8dfdef682c54f61cacebfb31260f3d6ba4ea54aMark Andrews *) Fix SHARED_CORE rule: The CFLAGS_SHLIB variable is no longer doubled
f8dfdef682c54f61cacebfb31260f3d6ba4ea54aMark Andrews (compilers complained) and the .so.V.R.P filename extension was adjusted
f8dfdef682c54f61cacebfb31260f3d6ba4ea54aMark Andrews to correctly reflect the 1.3.2 version.
f8dfdef682c54f61cacebfb31260f3d6ba4ea54aMark Andrews [Ralf S. Engelschall] PR#2644
b3d3e578410209d849efb59c9ea4925ca5c9ca68Mark Andrews
b3d3e578410209d849efb59c9ea4925ca5c9ca68Mark Andrews *) SECURITY: Plug "..." and other canonicalization holes under OS/2.
ea40cebe2b51bd2b3c228ac6d08a3cfeca17960aMark Andrews [Brian Havard]
96c973a6a96f10c93ede4c66964ceae47535a07aMark Andrews
96c973a6a96f10c93ede4c66964ceae47535a07aMark Andrews *) PORT: implement serialized accepts for OS/2. [Brian Havard]
96c973a6a96f10c93ede4c66964ceae47535a07aMark Andrews
9cf0970f43a41fe78a78d878f1d45c65f0b733d3Mark Andrews *) mod_include had problems with the fsize and flastmod directives
9cf0970f43a41fe78a78d878f1d45c65f0b733d3Mark Andrews under WIN32. Fix also avoids the minor security hole of using
9cf0970f43a41fe78a78d878f1d45c65f0b733d3Mark Andrews ".." paths for fsize and flastmod.
ad430189fb0028e41ae722f6e3c465b4bdd47af1Mark Andrews [Manoj Kasichainula <manojk@raleigh.ibm.com>] PR#2355
ad430189fb0028e41ae722f6e3c465b4bdd47af1Mark Andrews
ad430189fb0028e41ae722f6e3c465b4bdd47af1Mark Andrews *) Fixed some Makefile dependency problems. [Dean Gaudet]
90c4900d5cf1a1b556ae4c1de6338b2e7475ee55Mark Andrews
b857ba993de91a3863de92db6462afdbec47d993Mark AndrewsChanges with Apache 1.3.1
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews *) Disable the incorrect entry for application/msword in the
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews mod_mime_magic "magic" file because it also matches other Office
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews documents. [Ralf S. Engelschall] PR#2608
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews *) Fix broken RANLIB handling in src/Configure (the entry from
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews src/Configuration.tmpl was ignored) and additionally force RANLIB to
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews /bin/true under HP/UX where ranlib exists but is deprecated.
35541328a8c18ba1f984300dfe30ec8713c90031Mark Andrews [Ralf S. Engelschall] PR#2627
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
029a79c8807a5378a31f0f92e9c600bd46be17c9Mark Andrews *) 'apachectl status' failed on some systems.
1f1b47a2ba565f96a97981e8447f80eba6854887Mark Andrews [Steve VanDevender <stevev@darkwing.uoregon.edu>, Lars Eilebrecht] PR#2613
6ec7bd9c691cf7b7a1d4f507e89f2b7cb22a12dcMark Andrews
9dabd0455ca923b5b02f74c1e999702ddc9c6fd2Mark Andrews *) Add new flags for ap_unparse_uri_components() to make it generate
61fb42c4ef45d88e115bd769c30c4f36b461870bMark Andrews the scheme://sitepart string only, or to omit the query string.
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews [Martin Kraemer]
9cc75a3e5b0b54c5015e3f73a4a64d273560d5e3Mark Andrews
9cc75a3e5b0b54c5015e3f73a4a64d273560d5e3Mark Andrews *) WIN32: Canonicalize ServerRoot before checking to see if it
c3f9bda20f0993bc7aa4c654e7e2082adfbaa47fMark Andrews is a valid directory. The failure to do this caused certain
94d1015e65882e0f0c527abb0e8f66a609f46cb8Mark Andrews ServerRoot settings (eg. "ServerRoot /apache") to be improperly
c3f9bda20f0993bc7aa4c654e7e2082adfbaa47fMark Andrews rejected. [Marc Slemko]
f0e57c23e01731ed9e7f2dae585e6c643e590111Mark Andrews
f0e57c23e01731ed9e7f2dae585e6c643e590111Mark Andrews *) Global renaming of C header files to both get rid of conflicts with third
dbbcb98a7069e5b79c5100b3c9cc3f3e5704d14eMark Andrews party packages and to again reach consistency:
c52ae25dd70636c673d4a299859137a1c8ba611aMark Andrews 1. conf.h -> ap_config.h
c52ae25dd70636c673d4a299859137a1c8ba611aMark Andrews 2. conf_auto.h -> ap_config_auto.h \ these are now merged
6286983c506433d642b23e64845c50be30f2a7f6Mark Andrews 3. ap_config.h -> ap_config_auto.h / in the config process
6286983c506433d642b23e64845c50be30f2a7f6Mark Andrews 4. compat.h -> ap_compat.h
d0aebc5a55b6145297d94f8aee939852357c59fcMark Andrews 5. apctype.h -> ap_ctype.h
d0aebc5a55b6145297d94f8aee939852357c59fcMark Andrews Backward compatibility files for conf.h and compat.h were created.
d0aebc5a55b6145297d94f8aee939852357c59fcMark Andrews
f470686d921e6aa26726109226310a42ad8a44f3Mark Andrews *) mod_mmap_static will no longer take action on requests unless at
f470686d921e6aa26726109226310a42ad8a44f3Mark Andrews least one "mmapfile" directive is present in the configuration.
f470686d921e6aa26726109226310a42ad8a44f3Mark Andrews This experimental module has to do some black magic to operate
fd447061627e77db3ccf2536e14134e50647b9beMark Andrews inside the current API and thus creates side-effects for other
fd447061627e77db3ccf2536e14134e50647b9beMark Andrews modules under some circumstances.
fd447061627e77db3ccf2536e14134e50647b9beMark Andrews [Ralf S. Engelschall]
9f1bca36e43f076ab49d8de51301cb3c2dc04995Mark Andrews
9f1bca36e43f076ab49d8de51301cb3c2dc04995Mark Andrews *) Add conservative ticks around more egrep arguments in top-level configure
9f1bca36e43f076ab49d8de51301cb3c2dc04995Mark Andrews to avoid problems under brain-dead platforms like Digital UNIX (OSF1).
0e0d2891c08b70886f811d627bfb91a0c5e07dfcMark Andrews [Ralf S. Engelschall] PR#2596
0e0d2891c08b70886f811d627bfb91a0c5e07dfcMark Andrews
0e0d2891c08b70886f811d627bfb91a0c5e07dfcMark Andrews *) mod_rewrite created RewriteLock files under the UID of the parent
0e0d2891c08b70886f811d627bfb91a0c5e07dfcMark Andrews process, thus the child processes had no write access to the files.
7052e191ce63fdf063a977695718ff426a27628eMark Andrews Now a chown() is done on the file to the uid of the children,
7052e191ce63fdf063a977695718ff426a27628eMark Andrews if applicable. [Lars Eilebrecht, Ralf S. Engelschall] PR#2341
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7052e191ce63fdf063a977695718ff426a27628eMark Andrews *) Autogenerate some HAVE_XXXXX_H defines in conf_auto.h (determined via
6f3e68a8dbad508b815f42a0250122ca5e58972eMark Andrews TestCompile) instead of defining them manually in conf.h based on less
62bdc6103b8245b812eef9faabee8e644afcc25fMark Andrews accurate platform definitions. This way we no longer have to fiddle with
62bdc6103b8245b812eef9faabee8e644afcc25fMark Andrews OS-type and/or OS-version identifiers to discover whether a system header
185fd227381269568e193147a98f292210a16f2cMark Andrews file exists or not. Instead we now directly check for the existence of
fb31e2890814be0ac3c343d91144f89ce5e05784Mark Andrews those esoteric ones.
d5ad558234adfef1b847b534dd7b4c6302cc5ea3Mark Andrews [Ralf S. Engelschall] PR#2093, PR#2361, PR#2377, PR#2434,
d5ad558234adfef1b847b534dd7b4c6302cc5ea3Mark Andrews PR#2524, PR#2525, PR#2533, PR#2569
ce75d8bec3e93ef9fbd4a235f14f99483b3f238fMark Andrews
62700b67eb8abb7d13f9c3c1bc4b60a1477d35d8Mark Andrews *) mod_setenvif (BrowserMatch* and friends) will now match a missing
62700b67eb8abb7d13f9c3c1bc4b60a1477d35d8Mark Andrews field with "^$". [Ken Coar]
f853c77478af94109291ea93f800444b949be558Mark Andrews
cdb6532e86a8f3d3d563b6da8c333bdf377d51ddMark Andrews *) Set the RTLD_GLOBAL dlopen mode parameter to allow dynamically loaded
cdb6532e86a8f3d3d563b6da8c333bdf377d51ddMark Andrews modules to load their own modules dynamically. This improves mod_perl
7ad4d54f29c315cbcb241ca5fc12ba1e0744358bMark Andrews and mod_php3 when these modules are loaded dynamically into Apache.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rasmus Lerdorf]
6fd711065f5878c526f88f2825ab8024e2296644Mark Andrews
5e41884b4a1871eb83e66f0d68ca4d04bbbc857eMark Andrews *) Cache a proxied request in the event that the client cancels the
5e41884b4a1871eb83e66f0d68ca4d04bbbc857eMark Andrews transfer, provided that the configured percentage of the file has
54a565b1409a0c259ee3b20791db1b4636addc5eMark Andrews already been transfered. It works for HTTP transfers only. The
93a90ddd6b588a381b6894974a2d48727f19d42bMark Andrews new configuration directive is called CacheForceCompletion.
93a90ddd6b588a381b6894974a2d48727f19d42bMark Andrews [Glen Parker <glenebob@nwlink.com>] PR#2277
37225662b64e44a3c59f92dd6156db37b52ca7a3Mark Andrews
eabf7ff29a88c578619fdc0d307f9e0bad0d6ce8Mark Andrews *) Add the "<!DOCTYPE HTML" magic cookie used by modern documents (and
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews required by HTML 3.2 and later) to mod_mime_magic's conf/magic.
30b89a5ad95b5775abf6cce8ecc84a061babf76dMark Andrews [Anna Shergold <anna@inext.co.uk>]
8f2b99738760449de3431b191c0c9c0ea08fdc2eMark Andrews
6342df69b05f2f62d060fd4affdf536e51504084Mark Andrews *) Fix yet another signal-based race condition involving nested timers.
6342df69b05f2f62d060fd4affdf536e51504084Mark Andrews Signals suck. [Dean Gaudet]
6342df69b05f2f62d060fd4affdf536e51504084Mark Andrews
5caf500beeb91b96a2bb2fd55080141569aead97Mark Andrews *) suexec's error messages have been clarified a little bit. [Ken Coar]
881702c9c0079cd48a45054fd90d043f3a8b7e11Mark Andrews
6f808593181c16d5a7625cb527a5755872f9680cMark Andrews *) Clean up some, but perhaps not all, 8-bit character set problems
012dedf87438043ff00d4deec8b488eec2be2a1cMark Andrews with config file parsing, and URL parsing. We now define
6f808593181c16d5a7625cb527a5755872f9680cMark Andrews ap_isdigit(), ap_isupper(), ... which cast to an (unsigned char).
6f808593181c16d5a7625cb527a5755872f9680cMark Andrews This should work on most modern unixes.
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews [Dean Gaudet] PR#800, 2282, 2553 (and others)
1576cde466a8de10e84f9887ec073ebaf5973aefMark Andrews
1edbf336252ea6a94d58f3f1a135567e2956e8caMark Andrews *) The "handler not found" error was issued in cases where the handler
e407562a75eb93073bb72089cced150d7ffe4d4fTatuya JINMEI 神明達哉 really did exist, but was just declining to serve the request.
e407562a75eb93073bb72089cced150d7ffe4d4fTatuya JINMEI 神明達哉 [John Van Essen <jve@gamers.org>] PR#2529
8cb1558ff82868e45e76aa64e2ff72986aeebce2Tatuya JINMEI 神明達哉
6da7c87a77ecfd9ccce36f96b4ccd20e1b9cccf1Tatuya JINMEI 神明達哉 *) Add Dynamic Shared Object (DSO) support for SCO5 (OpenServer 5.0.x).
6da7c87a77ecfd9ccce36f96b4ccd20e1b9cccf1Tatuya JINMEI 神明達哉 [Ronald Record <rr@sco.com>] PR#2533
582b6dc68b2defc1d8795df8f1da31bd1825c30bTatuya JINMEI 神明達哉
d0eb2cc33c5db3366a16b1cb0abcca6ec7c8ee3cTatuya JINMEI 神明達哉 *) The APACI libexecdir was not extended with an "apache/" subdir
d0eb2cc33c5db3366a16b1cb0abcca6ec7c8ee3cTatuya JINMEI 神明達哉 if the installation prefix didn't already contain "apache", but
d0eb2cc33c5db3366a16b1cb0abcca6ec7c8ee3cTatuya JINMEI 神明達哉 it should be because the DSO files are Apache-specific. Now
d0eb2cc33c5db3366a16b1cb0abcca6ec7c8ee3cTatuya JINMEI 神明達哉 libexecdir is treated the same way sysconfdir, datadir, localstatedir
d0eb2cc33c5db3366a16b1cb0abcca6ec7c8ee3cTatuya JINMEI 神明達哉 and includedir are already treated.
668767dc6471dfed4741869c8dd20af8e9ace3cdTatuya JINMEI 神明達哉 [Charles Levert <charles@comm.polymtl.ca>] PR#2551
bb030ee88e51488a464146dfce4db74d16e05a0cMark Andrews
bb030ee88e51488a464146dfce4db74d16e05a0cMark Andrews *) The <Limit> parsing routine was incorrectly treating methods as
634d053dfe806ee6a3d9ed5c2bda7f68ba410de4Tatuya JINMEI 神明達哉 case-insensitive. [Ken Coar]
e724512f2be8d3de5f2982ebba0b2cdaf8325702Mark Andrews
b6d52ee5bea1b9d9074698e693b49ce96edff47bMark Andrews *) The ap_bprintf() code neglected to test if there was an error on
b6d52ee5bea1b9d9074698e693b49ce96edff47bMark Andrews the connection. ap_bflush() misdiagnosed a failure as a success.
b6d52ee5bea1b9d9074698e693b49ce96edff47bMark Andrews [Dean Gaudet]
b657d7db3b73701430b7d1fa17e9c016fd859088Mark Andrews
b657d7db3b73701430b7d1fa17e9c016fd859088Mark Andrews *) add support for #perl arg interpolation in mod_include
8d42bb315ce6745e5631eda4eac59d3b981e58c6Mark Andrews [Doug MacEachern]
8d42bb315ce6745e5631eda4eac59d3b981e58c6Mark Andrews
8d42bb315ce6745e5631eda4eac59d3b981e58c6Mark Andrews *) API: Name changes of table_elts to ap_table_elts, is_table_empty
4efe32b8bb512ac03a139b77f008600c5a3624eaMark Andrews to ap_is_table_empty and bgetflag to ap_bgetflag. [Ben Laurie]
4efe32b8bb512ac03a139b77f008600c5a3624eaMark Andrews
4efe32b8bb512ac03a139b77f008600c5a3624eaMark Andrews *) PORT: Add UnixWare 7 support
89639a5e13cace9166bf14931b9e1ce9dc8c47a3Mark Andrews [Vadim Kostoglodoff <vadim@olly.ru>] PR#2463
89639a5e13cace9166bf14931b9e1ce9dc8c47a3Mark Andrews
94be8e357c37c843027e899bb277a314ea828a4cMark Andrews *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
94be8e357c37c843027e899bb277a314ea828a4cMark Andrews used instead of "$PERL" which contains the correctly determined Perl
94be8e357c37c843027e899bb277a314ea828a4cMark Andrews interpreter (important for instance on systems where "perl" and "perl5"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews exists, like BSDI or FreeBSD, etc).
49fcdcd940274fedcb9cf943f0ee8144369527fdMark Andrews [Ralf S. Engelschall] PR#2505
49fcdcd940274fedcb9cf943f0ee8144369527fdMark Andrews
49fcdcd940274fedcb9cf943f0ee8144369527fdMark Andrews *) Move the initial suEXEC-related startup message from plain
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fprintf()/stderr to a delayed ap_log_error()-based one to avoid problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when Apache is started from inetd (instead of standalone). Under this
93d6dfaf66258337985427c86181f01fc51f0bb4Mark Andrews situation startup messages on stderr lead to problems (the line is sent
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the client in front of the requested document).
600cbd1fcea3c9cc9706dc1ff8fc0d0034ebdeacTatuya JINMEI 神明達哉 [Ralf S. Engelschall] PR#871, PR#1318
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add a flag so ap_fnmatch() can be used for case-blind pattern matching.
1160ecfd146301ff0d053ed054e5276f33f28b4eMark Andrews [Ken Coar, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Don't collapse multiple slashes in PATH_INFO.
d3fc633c344e15179480d887aeecf4a6263baeabMark Andrews [Ben Laurie, Bill Stoddard <wgstodda@us.ibm.com>] PR#2274
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews
73d74334741756eab4a9afd8d3c4e7c08da9a844Mark Andrews *) WIN32 SECURITY: Eliminate trailing "."s in path components. These are
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ignored by the Windows filesystem, and so can be used to bypass security.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie, Alexei Kosut].
baee883e378402698eeb7326538a7d432c8350d1Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) We now attempt to dump core when we get SIGILL. [Jim Jagielski]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
0b1da8124c817270f5dfe46cd0211b993c931a91Mark Andrews *) PORT: remove broken test for MAP_FILE in http_main.c.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Wilfredo Sanchez <wsanchez@apple.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Change support/apachectl to use "kill -0 $pid" to test if the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews httpd is running. This should be more portable than figuring out
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which of three dozen different versions of "ps" are installed.
0b1da8124c817270f5dfe46cd0211b993c931a91Mark Andrews [a cast of dozens]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: If we can't figure out how to execute a file in a script
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory, bail out of the request with an error message. [W G Stoddard]
da34d92aeee25dedd6affd69623dc7d0aba2cc23Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32 SECURITY: Eliminate directories consisting of three or more dots;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews these are treated by Win32 as if they are ".." but are not detected by
da34d92aeee25dedd6affd69623dc7d0aba2cc23Mark Andrews other machinery within Apache. This is something of a kludge but
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews eliminates a security hole. [Manoj Kasichainula, Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
da34d92aeee25dedd6affd69623dc7d0aba2cc23Mark Andrews *) Move ap_escape_quotes() from src/ap to src/main/util.c; it uses
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews pools and thus pollutes libap (until the pool stuff is moved there).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar]
20d90a37532b92b0471c56fb583d6b2ddc32caa6Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) IndexIgnore should be case-blind on Win32 (and any other case-aware
fefe1106d96d3a89b21315f665b36a67cdea3840Mark Andrews but case-insensitive platforms). New #define for this added to conf.h
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews (CASE_BLIND_FILESYSTEM). [Ken Coar] PR#2455
4607e7a9b8dfb1b41c70e51c2b603daaf22cf302Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Enable DSO support for OpenBSD in general, not only for 2.x, because it
2f025ec6fe68421d942330afaf1980b7a4976e30Mark Andrews also works for OpenBSD 1.x. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c528ef03d9cdfd7eed4fe6b93563dd599bbb25b0Mark Andrews *) PORT: Fix compilation problem on ARM Linux.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Sam Kington <sam@illuminated.co.uk>] PR#2443
f58233ec6c8b5866083bbaf5083ac9ade6bebe3aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Let APACI's configure script determine some configuration parameters
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (Group, Port, ServerAdmin, ServerName) via some intelligent tests to
c282d16311ce06b6bcb594be716cde4ad5c40af9Mark Andrews remove some of the classical hurdles for new users when setting up
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache. This is done per default because it is useful for the average
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews user. Package authors can use the --without-confadjust option to disable
1b5a72829324a0d2fa327a270caea8fd02ae8779Mark Andrews these configuration adjustments.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5e9f6125246cec57771bcdeefed03153d41c23fdMark Andrews *) Added an EXTRA_DEPS configuration parameter which can be used
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to add an extra Makefile dependency for the httpd target, for instance
0451757ad8f7c49a0d3dcdf7fbdd4ea64fcec298Mark Andrews to external third-party libraries, etc.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
3184ff5e45c8f821e5165ea60d674bfb87faf5b8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add <IfDefine>..</IfDefine> sections to the core module (with same spirit
1e107b3d7b54de5022c3328423164e533afcc15eMark Andrews as <IfModule>..</IfModule> sections) which can be used to skip or process
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews contained commands dependend of ``-D PARAMETER'' options on the command
cc6271e46c775592f39a1e8b4e2cb1ff457e2f89Mark Andrews line. This can be used to achieve logical conditions like <IfDefine
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ReverseProxy> instead of physically ones (e.g. <IfModule mod_proxy.c>)
87c7b822b7bcdd8bec7ba1c01937286308b4847cMark Andrews and thus especially can be used for conditionally loading DSO-based
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules via LoadModule, etc. [Ralf S. Engelschall]
17a14e451df80b3d82278e5c925682ade3263dbcMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: clean up a warning in mod_status for OS/2. [Brian Havard]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a4b3e51a8f1c9742c0f7d9f7d70f1ad926985145Mark Andrews *) Make table elements const. This may prevent obscure errors. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix parsing of FTP `SIZE' responses in proxy module: The newline was not
c282d16311ce06b6bcb594be716cde4ad5c40af9Mark Andrews truncated which forced following HTTP headers to be data in the HTTP
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reponse. [Ralf S. Engelschall, Charles Fu <ccwf@bacchus.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#2412, 2367
f488b1c311f2fc09ae8e45f7893185e608b17edeMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Portability fix for APACI shadow tree support: Swap order of awk and sed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in top-level configure script to avoid sed fails on some platforms (for
4bb16c5856e5c6b05ac43c60f9f9376641bdcccfMark Andrews instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews output of Awk. [Bill Houle <bhoule@sandiegoca.ncr.com>] PR#2435
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c676c1b4978bfe2d00bdf5085fd44544067f9de4Mark Andrews *) Improve performance of directory listings (mod_autoindex) by comparing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews integer keys (last-modified and size) as integers rather than converting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews them to strings first. Also use a set of explicit byte tests rather
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews than strcmp() to check for parent directory-ness of an entry. Oh, and
ffdfae8e4188c143297393f80f22134503372452Mark Andrews make sure the parent directory (if displayed) is *always* listed first
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews regardless of the sort key. Overall performance winnage should be good
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in CPU time, instruction cache, and memory usage, particularly for large
471e0563c7965c556c759775882cd3448dae78eaMark Andrews directories. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
743ffc91bdd462be6f91b3bab8f440c6a69f0770Mark Andrews *) Add a tiny but useful goody to APACI's configure script: The generation
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of a config.status script (as GNU Autoconf does) which remembers the used
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configure command and hence can be used to restore the configuration by
743ffc91bdd462be6f91b3bab8f440c6a69f0770Mark Andrews just re-running this script or for remembering the configuration between
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews releases.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
072e21c2bbf0907706b18a4a3857913e79d380fbMark Andrews *) Add httpd -t (test) option for running configuration syntax tests only.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews If something is broken it complains and exits with a return code
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews non-equal to 0. This can be used manually by the user to check the Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configuration after editing and is also automatically used by apachectl
3ca4b8062f845489a9c7e33a4af63cf9c863c1d4Mark Andrews on (graceful) restart command to make sure Apache doesn't die on restarts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews because of a configuration which is now broken since the last (re)start.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This way `apachectl restart' can be used inside cronjobs without having
72ddc4cef9c6a6de53aae530dea1ddbb90631131Mark Andrews to expect Apache to be falling down. Additionally the httpd -t can be run
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews via `apachectl configtest'.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2393
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Minor display fix for "install" target of top-level Makefile:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the displayed installation command was incorrect although the
ad4b2f37e0f51a90c160edbe8633589ce42e60b9Mark Andrews executed command was correct. Now they are in sync.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2402
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correct initialization of variable `allowed_globals' in http_main.c
072e21c2bbf0907706b18a4a3857913e79d380fbMark Andrews [Justin Bradford <justin@ukans.edu>] PR#2400
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) Apache would incorrectly downcase the entire Content-Type passed from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CGIs. This affected server-push scripts and such which use
9c1eb2279d715188bf631d98d103f6f81a3c76fbMark Andrews multipart/x-mixed-replace;boundary=ThisRandomString.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#2394
edfcbabd60f8479b72d91bcc2d2082a36ace4003Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: QNX update to properly guess 32-bit systems.
f95231835fdcd8d5f58486c9f9993602f27fe157Mark Andrews [Sean Boudreau <seanb@qnx.com>] PR#2390
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
21f1794606dce19928cf455029e173321f166380Mark Andrews *) Make sure the DSO emulation code for HPUX finds the proprietary shl_xxx()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews functions which are in libdld under HPUX 9/10.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2378
0cb25226fba18befbe40156c93845f2fc9bf3524Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure the "install" target of the top-level Makefile doesn't break
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews because of a return code of 1 from an "if" (for instance under braindead
2610933abd985bdea28801c35d740d2cab2f137aMark Andrews Ultrix the result code of an "if" construct is 1 if the "then" clause
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews didn't match). [Ralf S. Engelschall]
7a857bdb6828e75eec5a7080e4670ce199875922Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add an additional "dummy" target to the "$(LIB)" target in generated
fc87397df60d3c5e5d9900ff5ac82da29fe1dbb7Mark Andrews modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are
a22f967b7e3589dab640d2cc65fd202d077a9d90Mark Andrews empty. [Ralf S. Engelschall, Dean Gaudet, Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replace two bad sprintf() calls with ap_snprintf() variants in
1a4d687359d89ff3b3e4e3f7acc4b6b8d8c982e9Mark Andrews mod_rewrite. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix missing usage description for MetaFiles directive.
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews [David MacKenzie <djm@va.pubnix.com>] PR#2384
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews *) mod_log_config wouldn't let vhosts use log formats defined in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews main server. [Christof Damian <damian@mediaconsult.com>] PR#2090
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f5af519ab547bc80c51387529103e4e852a1171eMark Andrews *) mod_usertrack was corrupting the client hostname. As part of the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fix, the cookie values were slightly extended to include the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fully qualified hostname of the client.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#2190, 2229, 2366
b0c2141b236832664119c9c7c647359b0c7fead4Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a typo in pool debugging code. [Alvaro Martinez Echevarria]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
182a34004c7c48e2c1626f3ce7e787f413955126Mark Andrews *) mod_unique_id did not work on alpha linux (in general on any
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews architecture that has 64-bit time_t).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alvaro Martinez Echevarria]
603658ea65b34c4b57f154b1e2412b4f01866b6bMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Make SCO 5 (and probably 3) compile again. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
163547c0c064251e97c74538c5ede3232b3f0ffaMark Andrews *) PORT: NCR MPRAS systems have the same bug with SIGHUP restart that
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Solaris systems experience. So define WORKAROUND_SOLARIS_BUG.
8ff31bab2f51b171a8eab3a0b8415c64529e116eMark Andrews [Klaus Weber <kweber@chephren.germany.ncr.com>] PR#1973
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Change "Options None" to "Options FollowSymLinks" in the
07a849ba02aba7e8e869bc82c360fcc4b27eb009Mark Andrews <Directory /> section of the default access.conf-dist
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (and -win even though it doesn't matter there). This has better
806c235ecf533b98d068b3f8df9d7abbe1e30cf9Mark Andrews performance, and more intuitive semantics. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
935000aa6e2b9d08f363b2e698a258a458a5a7cfMark Andrews *) PORT: Updated support for UTS 2.1.2.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dave Dykstra <dwd@bell-labs.com>] PR#2320
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cfa19fe5c9cf279b38e4258a54acb3fd16b9550bMark Andrews *) Fix symbol export list (src/support/httpd.exp) after recent
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews API changes in the child spawning area.
2fd63cf561135572339d4e2ff0c06695e3dcf1baMark Andrews [Jens-Uwe Mager <jum@helios.de>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Workaround for configure script and old `test' commands which do not
8ca42f6318be756354b70260050132545aa680d3Mark Andrews support the -x flag (for instance under platforms like Ultrix). This is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews solved by another helper script findprg.sh which searches for Perl and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Awk like PrintPath but _via different names_.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove the system() call from htpasswd.c, which eliminates a system
7ec0f55f1542d8bb9475bbe93e911d7520f043caMark Andrews dependancy. ["M.D.Parker" <mdpc@netcom.com>] PR#2332
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4cb69e7c919cc43b16852016588af714bc421da3Mark Andrews *) PORT: Fix compilation failures on NEXTSTEP.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rex Dieter <rdieter@math.unl.edu>] PR#2293, 2316
ea6fe0d54f36754c195b3b8dac47c81f7993677eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: F_NDELAY is a typo, should have been FNDELAY. There's also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews O_NDELAY on various systems. [Dave Dykstra <dwd@bell-labs.com>] PR#2313
6bd8cee98332533a4fa705b82ca9ec1606738ba9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: helpers/GuessOS updates for various versions for NCR SVR4.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [juerg schreiner <j.schreiner@zh.ch>,
0c2509b0b9f9e455fa9d347d08f6ba9abd86d418Mark Andrews Bill Houle <Bill.Houle@SanDiegoCA.NCR.COM>] PR#2310
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
8b5de9701428e2b5eb50aba96af23dc1186124ddMark Andrews was broken because of invalid ap_pstrcat() -> strcat() transformation.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
80b782f356f0692c11b4e52e8dd46ec41704e5a2Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Proxy Cache Fixes: account for directory sizes, fork off garbage collection
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to continue in background, use predefined types (off_t, size_t, time_t),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews log the current cache usage percentage at LogLevel debug
6a2f7bba6f4df137ab3f781fe07b0b88e72e0b19Mark Andrews [Martin Kraemer, based on discussion between Dean Gaudet & Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3.0
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6a2f7bba6f4df137ab3f781fe07b0b88e72e0b19Mark Andrews *) Using a type map file as a custom error document was not possible.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht] PR#1031
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Avoid problems with braindead Awks by additionally searching for gawk
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and nawk in APACI's configure script.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dave Dykstra <dwd@bell-labs.com>, Ralf S. Engelschall] PR#2319
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
53cf67186506f9557aaf2149898dd76715803db2Mark Andrews *) Rename md5.h to ap_md5.h to avoid conflicts with native MD5 on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews some systems. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Change usage of perror()+fprintf(stderr,...) in mod_rewrite to
53cf67186506f9557aaf2149898dd76715803db2Mark Andrews more proper ap_log_error() variants.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
888bb8bf68ba1a2b032a64122efd9125a9155ad7Mark Andrews *) Make sure the argument for the --add-module option to APACI's configure
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews script is of type [path/to/]mod_xxx.c because all calculations inside
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configure and src/Configure depend on this.
b312748a11d27fe387984973ba79975a9d6863c4Mark Andrews [Ralf S. Engelschall] PR#2307
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Changes usage of perror/fprintf to stderr to more proper ap_log_error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in mod_mime, mod_log_referer, mod_log_agent, and mod_log_config.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Behlendorf]
b312748a11d27fe387984973ba79975a9d6863c4Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various OS/2 cleanups ["Brian Havard" <brianh@kheldar.apana.org.au>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b312748a11d27fe387984973ba79975a9d6863c4Mark Andrews *) PORT: QNX needed a #include <sys/mman.h>; and now it uses flock
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews serialized accept to handle multiple sockets.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2295, 2296
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ee84964a7d29ae88769f67326a65256731769ea7Mark Andrews *) Have NT properly set the directory for CGI scripts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (& other spawned children)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [W G Stoddard <wgstodda@us.ibm.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ee84964a7d29ae88769f67326a65256731769ea7Mark Andrews *) Propagate environment to CGI scripts correctly in Win32.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [W G Stoddard <wgstodda@us.ibm.com>] PR#2294
463fc8f9d61e07613486e64b4b7b3f924ea2b25cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Some symbol renaming:
c3ea698877cdde327f2bf6a8e97347798fead2d4Mark Andrews ap_spawn_child_err became ap_spawn_child
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ap_spawn_child_err_buff became ap_bspawn_child
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews spawn_child was obsoleted and moved to compat.h
c3ea698877cdde327f2bf6a8e97347798fead2d4Mark Andrews [Brian Behlendorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Upgrade the child spawning code in mod_rewrite for the RewriteMap
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews programs: ap_spawn_child_err() is used and the Win32 case now uses
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CreateProcess() instead of a low-level execl() (which caused problems in
c3ea698877cdde327f2bf6a8e97347798fead2d4Mark Andrews the past under Win32).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9368d7df838f58cd32922b526775ca730bc633cfMark Andrews *) A few cosmetics and trivial enhancements to APXS to make the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews generated Makefile more user friendly. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Proxy Fix: The proxy special failure routine ap_proxyerror()
e2fb08b85de8158fe6b71008311e3d98104b92a6Mark Andrews was updated to use the normal apache error processing, thereby allowing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews proxy errors to be treated by ErrorDocument's as well. For this
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews purpose, a new module-to-core communication variable "error-notes"
22a9cd54c072545d13788ceead759911fe8cfe34Mark Andrews was introduced; the proxy (and possibly other modules) communicates
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews its error text using this variable. Its content is copied to a new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews cgi-env-var REDIRECT_ERROR_NOTES for use by ErrorDocuments.
21ba6c18e4ccc73933af5cf28701a5cc3b7963ecMark Andrews The old proxy special error routine ap_proxy_log_uerror()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was replaced by regular ap_log_error() calls, many messages were made
266296414d0ed79980c6d3144a587b42324a50ffMark Andrews more informative.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer] PR#494, 1259
c960dffe35970da729219b72f2e41350d3b64c35Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: A possible buffer overflow in the ftp proxy was fixed.
5da49e379c79fbd597cf0d47e7697b65991f761fMark Andrews [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
31b3dc1c6b4fe99a2af2ee63314e842af4a20070Mark Andrews *) Transform the configure message "You need root privileges for suEXEC"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews from a fatal error into a (more friendly) warning because the building
59f51f864c752d2e4bf8d1ad94404ada0c9aa6e9Mark Andrews ("make") of Apache we can allow, of course. Root privileges are needed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only for the installation step ("make install"). So make sure the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews user is aware of this fact but let him proceed as long as he can.
a207a2835e37de52e11d4c143c0425e749409c46Mark Andrews [Ralf S. Engelschall] PR#2288
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
03760eeb542cc5e91193eec478cae022df4bcc58Mark Andrews *) Renamed three more functions to common ap_ prefix which we missed at the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Big Symbol Renaming because they're #defines and not real C functions:
838d608e6f37038f2fb43980a7a9d6b6a490db36Mark Andrews is_default_port(), default_port(), http_method().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
64cc9c8818db2552cbdd77f1050e890ffa5a17d8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A zero-length name after a $ in an SSI document should cause
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews just the $ to be in the expansion. This was broken during the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews security fixes in 1.2.5. [Dean Gaudet] PR#1921, 2249
0f09ef5a50ef09eaed8e6630b4004d5143d6b52cMark Andrews
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) Call ap_destroy_sub_req() in ap_add_cgi_vars() to reclaim some
0f09ef5a50ef09eaed8e6630b4004d5143d6b52cMark Andrews memory. [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2252
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c7fc6434fe5949c8e3f76bf69f5655eb3a76dfaeMark Andrews *) Fix src/support/httpd.exp (DSO export file which is currently only
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews used under AIX) because of recent changes to function names.
9bd478a5e6df956a79bbdb5c182d5b44763786ceMark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3b7
421e4cf66e4cba0b0751a34a9c027e39fe0474f9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure a MIME-type can be forced via a RewriteRule even when no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews substitution takes place, for instance via the following rule:
b0c15bd9792112fb47f6d956e580e4369e92f4e7Mark Andrews ``RewriteRule ^myscript$ - [T=application/x-httpd-cgi]'' This was often
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requested by users in the past to force a single script without a .cgi
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews extension and outside any cgi-bin dirs to be executed as a CGI program.
b0c15bd9792112fb47f6d956e580e4369e92f4e7Mark Andrews [Ralf S. Engelschall] PR#2254
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
bf7f253e306d0ced8ae24d7a0598773950da11f4Mark Andrews *) A fix for protocol issues surrounding 400, 408, and
95b484c9580d06eb2f9735a22e9841389c2859baMark Andrews 414 responses. [Ed Korthof]
95b484c9580d06eb2f9735a22e9841389c2859baMark Andrews
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews *) Ignore MaxRequestsPerChild on WIN32. [Brian Behlendorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix discrepancy in proxy_ftp.c which was causing failures when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews trying to connect to certain ftpd's, such as anonftpd.
5f89a1ee9e0fe64211d050db5d3e7a5ea282c282Mark Andrews [Rick Ohnemus <rick@ecompcon.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c86eed4bdecad9df12f992f9d743dfee3a6c5bdcMark Andrews *) Make mod_rewrite use ap_open_piped_log() for RewriteLog directive's
ff2ef33a84550fa5dbd9e8fdcd82a33288f053adMark Andrews logfile instead of fiddling around itself with child spawning stuff.
12ff7274fe2ea531ecca6a71fb9f7e1ae92da389Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9d3ad53203f1ac49f9e876dbbcaca18656eb3e19Mark Andrews *) Made RefererIgnore case-insensitive.
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews
767fd19da4b699aae46959d834f53af0e1166e80Mark Andrews *) Mod_log_agent, mod_log_referer now use ap_open_piped_log for piped logs.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Behlendorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8da0b50e8a8c74602eca97e261ce4ad457df5048Mark Andrews *) Replace use of spawn_child with ap_spawn_child_err_buff, to make everything
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews "safe" under Win32. In: mod_include.c, mod_mime_magic.c
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Behlendorf]
5b76a09697bfc76f5acefd65d5b37b1214d271a8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improve RFC1413 support. [Bob Beck <beck@bofh.ucs.ualberta.ca>]
6388dcf8e661687c30a5d52f149d193ce86748a8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix support script `dbmmanage': It was unable to handle some sort
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of passwords, especially passwords with "0" chars.
93e353425a81da7793dde3776f4caca658f57c11Mark Andrews [Ralf S. Engelschall] PR#2242
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Clicking on "Last Modified" in a fancy index caused a crash. Fixed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie] PR#2238
49a940dc68b30d9e4f9e1bd3c0503d8b90bb1726Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: CGIs could cause a hang (because of a deadlock in the standard C
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews library), so CGI handling has been changed to use Win32 native handles
d92770e851ebbc1005b3bf121e3c9f13b67a3f42Mark Andrews instead of C file descriptors.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie and Bill Stoddard <wgstodda@us.ibm.com>] PR#1129, 1607
59ab128c972622f5aeafe3229966dcba73b62243Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The proxy cache would store an incorrect content-length in the cached
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews file copy after a cache update. That resulted in repeated fetching
90295f915c883d1aeeda856f518584d4219a704aMark Andrews of the original copy instead of using the cached copy.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ernst Kloppenburg <kloppen@isr.uni-stuttgart.de>] PR#2094
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1c75ea91cdb49dac65f0f592ddbf66bfdfc4a2d7Mark Andrews *) The Makefiles assumed that DSO files are build via $(LD). This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is broken for two reasons: First we never defined at least LD=ld
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews somewhere to make sure this works (it was silently assumed that most Make
142d155dd68fd601dc38c6b6f7c35f2798ec24caMark Andrews provide a built-in LD definition - ARGL!) and second using the generic LD
c368f28dad471c70213b41f7a0ad1b4ef4d8c543Mark Andrews variable is not the truth. Instead a special variable named LD_SHLIB is
99776003811a413457a2c35a808ad860df877d24Mark Andrews reasonable because although "ld" is usually the default, the command for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews building DSO files can be "libtool" or even "cc" on some systems.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
2ffb3eb384ae71ae9f8edbf5fa2219d965ff0552Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replace the AddVersionPlatform directive with ServerTokens which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews provides for more control over the format of the Server:
aa39170da817cae7b4c6c735cc832e05ec3d2351Mark Andrews header line. SERVER_SUBVERSION is no longer supported;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews all module should use the ap_add_version_component()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews API function instead. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
aa39170da817cae7b4c6c735cc832e05ec3d2351Mark Andrews *) Support for the NCR MP/RAS 3.0
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [John Withers <withers@semi.kcsc.mwr.irs.gov>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
52fc1457e44c476a81ec9dee6a664958cb64b8e2Mark Andrews not retrieved in src/Configure and thus was not useable.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
6526fd032fc418411da3af4201214e95c113d3e2Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various Makefile consistency cleanups:
b8fff4f0d70bb9c5e53023ad0dae0acda67b5cdaMark Andrews - make OSDIR also automatically be relative to src/ like INCDIR
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - SUBDIRS is now generated in src/Makefile only and not in
757bf8a1e5d85806c648d7a6267da8d49a8ab822Tatuya JINMEI 神明達哉 Makefile.config because it is a local define for this location.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - remove BROKEN_BPRINTF_FLAGS because is it no longer used inside
be0e075ac2c10ade3e80edef7fa14ac0fda92690Mark Andrews any Makefile but make sure that at least the "-K inline" is kept in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CFLAGS for SCO 5.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - update the "depend" targets in Makefile.tmpl files to use $(OSDIR), too.
2a908588fbeacebc5f13b153b73c96e12dacaadcTatuya JINMEI 神明達哉 - updated the dependencies theirself
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - removed not existing SHLIB variable from "clean" targets
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - replaced SHLIB_OBJS/SHLIBS_OBJ consistently with OBJS_PIC because OBJS
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews already exists and OBJS_PIC are also just plain objects and have not
af2be1a46813e228cb9d71230d3f41222fdb69baTatuya JINMEI 神明達哉 directly to do with "shared" things. The only difference is that they
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews contain PIC. So OBJS_PIC is the more canonical name.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Updated the Makefile-dependency lines for OBJS_PIC
2945ac15af547df0268e449252902ead599e2451Mark Andrews - Removed the Makefile-dependency line in Configure to avoid double
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews definitions
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - replaced ugly xx-so.o/xx.so-o hack with a clean and consistent usage
285761cf91626976e211f69d9678c138b25f8629Tatuya JINMEI 神明達哉 of xxx.lo as GNU libtool does with its PIC objects
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - reduce local complexity in modules Makefile.tmpl by moving the last
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews existing target "depend" to the generation section in Configure, too.
ca70688bf60b4f50c4e3ec7d40567341c9962fafMark Andrews - removed the historical $(SPACER) which was used in the past together
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with BROKEN_BPRINTF_FLAGS to avoid zig-zags in the build process. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is no longer needed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - force the build and run of the gen_xxx programs under main/ as the
8b0ee8448bec37bf1e771363dccce7c0e73eb1a7Mark Andrews first step before building the objects because it looks cleaner
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
aec2d57d5b9f5ca97763a1b49b76f0bcb5852e1aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Make Win32 work again after the /dev/null DoS fix.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a9ae9d743c7f85bec44e95b1f62c7a2a114a2fd6Mark Andrews *) WIN32: Check for buffer overflows in ap_os_canonical_filename.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
75ace6601e66840436f52e61353ee0d400577b55Mark Andrews *) WIN32: Don't force ISAPI headers to finish with \n.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Patterson <Jim.Patterson@Cognos.COM>, Ben Laurie] PR#2060
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
75ace6601e66840436f52e61353ee0d400577b55Mark Andrews *) When opening "configuration" files (like httpd.conf, htaccess
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and htpasswd), Apache will not allow them to be non-/dev/null
75ace6601e66840436f52e61353ee0d400577b55Mark Andrews device files. This closes a DoS hole. At the same time,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews we use ap_pfopen to open these files to handle timeouts.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski, Martin Kraemer]
75ace6601e66840436f52e61353ee0d400577b55Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Apache will now log the reason its httpd children exit if they exit
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews due to an unexpected signal. (It requires a new porting define,
ba4aec8c1853a1deda8eb43ffeaac4d764c8d39eMark Andrews SYS_SIGLIST, which if defined should point to a list of text
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews descriptions of the signals available. See PORTING.) [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
550085fed1d0af54ba5b2f588898afec158195deMark Andrews *) WIN32: chdir() doesn't make sense in a multithreaded environment
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews like WIN32. Before, Win32 CGI's could have had sporadic failures
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if a chdir call from one thread was made between another chdir call
f411c2e81cbfcf89ee073a0e31ac902a42fc8f22Mark Andrews and a spawn in another thread. So, for now don't chdir for CGI scripts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in WIN32. The current CGI "spec" is unclear as to whether it's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews necessary. Long-term fix is to either serialize the chdir/spawn combo
ab2ac96c4e71dc803e47c35592044e116f61aca5Tatuya JINMEI 神明達哉 or use WIN32 native calls to spawn a process. This temp fix was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews necessary to remove this as a showstopper for 1.3's release.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Behlendorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3bdf879a5301bce17e0a955585eb3decc541ba79Mark Andrews *) Cleanup the suEXEC support in APACI and make it more safe:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1. Add big fat hint in INSTALL about risks and to read the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htdocs/manual/suexec.html document before using the suexec-related
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configure options.
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews 2. Make sure the user has at least provided one --suexec-xxxx option
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (specifies suEXEC parameters) in addition to --enable-suexec option.
1b5b46942d149f891bb91e90c6f52944b77c8a68Mark Andrews If only --enable-suexec is given APACI stops with a hint to INSTALL
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and htdocs/manual/suexec.html documents.
6b25d2f7f7a1125508f8d225a8fef94e1db83555Mark Andrews 3. Provide two additional --suexec-xxxx options to make the suEXEC
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configuration complete (especially for package maintainers who else
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews had to patch the source tree) by providing ways to configure minimal
b6309ed962c4988a314d61742c4fbc4935467d68Mark Andrews UID/GID and safe PATH, too.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
39fe146f2ab82cb8e49caa319a3345174fa2d69aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Cleanup of the `configure --shadow' process:
bd3946db298667e769804b2e978df2d6dcd85e29Mark Andrews - make sure the configure script creates its temporary files in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews shadow tree to avoid conflicts with parallel configure runs
ab5d8edc1bd391a1b306db68114fac303484b30fMark Andrews - removed unnecessary option "-r" from "rm" call for Makefiles
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - make sure the configure scripts creates the shadow-wrapper Makefile
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only when no shadow trees already exists
8689f943a4859a8f68344236a1dcb81299a98347Mark Andrews - make sure "make distclean" removes the shadow-wrapper Makefile but only
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when no more shadow trees exists
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - overhauled mkshadow.sh script: now its more IFS-safe and approx. twice
2434ccfde7efa30b6fedf4630e5036eeb5d647d0Mark Andrews as fast (in the past it needed 70sec, now it runs just 38sec)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - make sure CVS does not complain about the created files
d8ec783e6dc0bd16a80b30d9888306b1faae6037Mark Andrews Makefille.<gnutriple> and directories src.<gnutriple>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
5bd76af084edfdcd1cb4db9453ac781d32dde6f7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added the ap_add_version_component() API routine and the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews AddVersionPlatform core directive. The first allows modules to
8bcb0f297b50e80e3c7aab1a41b94d937acf4dc0Mark Andrews declare themselves in the Server response header field value,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews augmenting the SERVER_SUBVERSION define in the Configuration file
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with run-time settings (more useful in a loadable-module environment).
7f32428506d55083fe5ac9aa515294bdef7c6e27Mark Andrews AddVersionPlatform inserts a comment such as "(UNIX)" or "(Win32)"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews into the server version string. [Ken Coar] PR#2056
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5c10f54fe38795cbd3d5cf22e3fbd1d22b8226e4Mark Andrews *) Minor stability tweaks to avoid core dumps in ap_snprintf.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a6211a2f234767a015a6a30b85d5da087fa907f1Mark Andrews *) Emit the "Accept-Range" header for the default handler.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Behlendorf] PR#1464
1feb76edcbb8ee97d1757f73115b7c4a71de6e0eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add a note to httpd.conf-dist that apache will on some systems fail
4c342614f80d867bba23e63795ec6ee79dd6395dMark Andrews to start when the Group # is set to a negative or large positive value.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer]
e72d4d8929fec51153e4fd0d1cf632cd59335495Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure the module execution order is correct even when some modules
0ae34c3f6222ece01e0f710c7c0311f5cf9d9c0fMark Andrews are loaded under runtime (`LoadModule') via the DSO mechanism:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1. The list of loaded modules is now a dynamically allocated one
6c6673405c7e29c1d91d07b326d0fe1d7b52e478Mark Andrews and not the original statically list from modules.c
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 2. The loaded modules are now correctly setup by LoadModule for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews later use by the AddModule command.
bb6936058eb88eadff030462a347c10895c61a9aMark Andrews 3. When the DSO mechanism for modules is used APACI's `install'
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews target now enables all created `LoadModule' lines per default because
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this is both already expected by the user _and_ needed to avoid
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews confusion with the next point and reduces the Makefile.tmpl complexity
0ad5cb4782cd419b089bcab28d2fd9e140dbcc59Mark Andrews 4. When the DSO mechanism for modules is used, APACI's `install'
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews target now additionally makes sure the module list is reconstructed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews via a complete `ClearModuleList+AddModule...' entry.
7c5d5a7932b8ac27281eeff64506dff8220bb3eaMark Andrews 5. The support tool `apxs' now also makes sure an AddModule command
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is added in addition to the LoadModule command.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 6. The modules.c generation was extended to now contain two
1aed0905a50ff8d2bdc4d253b38ae24afe3bab1cDanny Mayer comments to make sure no one is confused by the confusing terminology
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of loading/linking (we use load=link+load & link=activate instead of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the obvious load=activate & link=link :-( )
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This way now there is no longer a difference under execution time between
1a9c000f54e6204fb49d785fd0bbb7a8e590dc99Mark Andrews statically and dynamically linked modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
3cea35d9159b36eac43d32082a0b98f2cd82fc2eDanny Mayer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the generated mod_xxx.c from "apxs -g -f xxx" after the
53f1312c61fa8618852584bcdf9f35530282eb08Mark Andrews Big Symbol Renaming. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add a comment to mod_example.c showing the format of a FLAG command
87f4715d6c0a22f3449eb3291c91aa45ba86c955Mark Andrews handler. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Standardized the time format in mod_status to match that of other
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews places in the code (e.g. DATE_GMT). PR#1551
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix handling of %Z in timefmt strings for those platforms with no time
1431917c7cddbac7442cb910e83cb058fea59fb5Mark Andrews zone information in their tm struct. [Paul Eggert <eggert@twinsun.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#754
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3733c24efa7eaa65455153702c3fb71c9233eafbMark Andrews *) Makes mod_rewrite, mod_log_config, mod_status and the ServerSignature
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews feature compatible with 'UseCanonicalName off' by changing
012a2b979e011b13ba0d291c279dc65a167c039eMark Andrews r->server->server_hostname to ap_get_server_name(). And I changed some
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews functions which use r->server->port to use ap_get_server_port() instead,
f6ff00810196d0c0973f62c7917b9975011fa45aMark Andrews because if there's no Port directive in the config r->server->port is 0.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht]
ec3984e9df6fd9b7811daa0dacb1b3dd1423ebf3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) get/set_module_config are trivial enough to be better off inline. Worth
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1.5% performance boost. [Dean Gaudet]
b972ff033b3efd52e747683face674dc4d2e431bMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix off-by-one error in ap_proxy_date_canon() in proxy_util.c
fa4e1438016331502e6d665588021aa7ffef8cc2Mark Andrews when ensuring 'x' is at least 30-chars big. [Jim Jagielski,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Brian Behlendorf]
f0471ca4b7bca6e907130ec84e36cf69f2b79a5aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) [BS2000 security] BS2000 needs an extra authentication to initialize
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the task environment to the unprivileged User id. Otherwise CGI scripts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews would have a way to gain super user access. [Martin Kraemer]
638fe804a524ee0c028863c0301b999c79de7651Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix debug log messages for BS2000/OSD: instead of logging the whole
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews absolute path, only log base name of logging source as is done
9db3d9d14e2f3641d696dadc59c40c52b6f888bcMark Andrews in unix. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Ronald Tschalaer's Accept-Encoding patch - preserve the "x-" in
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews the encoding type from the Accept-Encoding header (if it's there)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and use it in the response, as that's probably what it'll be expecting.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ronald.Tschalaer@psi.ch]
0b75a2dd3bd81a69e2d68fe446cacb46be04c1f1Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix to mod_alias: translate_alias_redir is dealing with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a URI, not a filename, so the check for drive letters for win32
c54c1eaf26d5a7fc123c4af3712353156a766df1Mark Andrews and emx is not necessary. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0d993c02babc1e00516272783b310e83bb292d5cMark Andrews *) WIN32: Allow .cmd as an executable extension.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Kari Likovuori <Kari.Likovuori@mol.fi>] PR#2146
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4d9f3f00d93fcb8743b1105e8cf82e862be220d1Mark Andrews *) Make Apache header files, and some variables, C++ friendly.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Michael Anderson's <mka@redes.int.com.mx>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Child processes can now "signal" (by exiting with a status
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of APEXIT_CHILDFATAL) the parent process to abort and
86f6b92e35c7bdb5fc1fd1021af75b981863313eMark Andrews shutdown the server if the error in the child process was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fatal enough. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
25276bd1ecb372b82c9235648e5defab0655dcd5Mark Andrews *) mod_autoindex's find_itme() was sensitive to MIME type case.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski] PR#2112
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure the referer_log and agent_log entries in the default httpd.conf
320d6ee24ea59c0dbcb2c08038586ef03c6a191dMark Andrews file are also adjusted for the actual relative installation paths.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2175
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
475fe52dc33d8d8344e8b1e48fa7bb6643f7ca66Mark Andrews *) WIN32: Extensive overhaul of the way UNCs are handled. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Make roots of filesystems (e.g. c:/) work. [Ben Laurie]
5af560664daaa984f98cec6925518a3e06c4ab4fMark Andrews PR#1558
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0f8f42a09eb102fa88e4d2caacdafbeda931f94cMark Andrews *) PORT: Various porting changes to support AIX 3.2, 4.1.5, 4.2 and 4.3.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Additionally the checks for finding the vendor DSO library were moved
8d77066ba0feb1353a7c85f929c365c5103f3976Mark Andrews from mod_so.c to Configure because first it needs $PLAT etc. and second
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_so already uses an abstraction layer and does not fiddle with the
8d77066ba0feb1353a7c85f929c365c5103f3976Mark Andrews vendor functions itself.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jens-Uwe Mager, Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3e7b37e01ba3efc873486140734fd24788092a30Mark Andrews *) PORT: Some optimization defines for NetBSD
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jaromir Dolecek <dolecek@ics.muni.cz>] PR#2165
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
54532c54130de8f374465bb23d5576fc3257ea96Mark Andrews *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jaromir Dolecek <dolecek@ics.muni.cz>, Ralf S. Engelschall] PR#2158
020f7361a49c5b1cda91927cf8206c1283fc7496Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add Dynamic Shared Object (DSO) support for AIX (at least 4.2 but older
1c0927d8a091effcf9b2dc5baa533927c113bd5cMark Andrews AIX variants should work fine, too. Even AIX 3.x should work). This is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews accomplished by using the free DSO emulation code from Jens-Uwe Mager
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which we put into a os/unix/os-dso-aix.c file.
446ff1959cc3e963778c8770204b72c9e7c7df5aMark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Fix compiler warnings under AIX >= 4.2 where the manual pages imply
70f8c70cdd3ca68edcf9d448eb508abf3697719aMark Andrews that we should use NET_SIZE_T == int but the include files force size_t.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
33c538015323f4576679e427088372eea614feebMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix two bugs in select() handling in http_main.c.
ac65e45126dda424b5cc9d2865b353dc0ec23e1eMark Andrews [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Suppress "error(0)" messages for ap_log_error() when the APLOG_NOERRNO
0423090da198f31ac615cd3a8f7d83aada32d5b3Mark Andrews is unset (as it is in situations like timeouts) where it is unclear
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews whether errno is set or not. [Martin Kraemer]
d9e0458a890c49f977fdcf9d995681f546f7c427Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Just having APACI's localstatedir is too general and not enough for most
de4976142190ae84ed3e4099f3e0fc07781748a3Mark Andrews of the systems. 1.3b6 again required manual APACI patches by package
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews maintainers from RedHat and FreeBSD because for their filesystem layout a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews little bit more flexibility in configuring the paths is needed. Hence we
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews provide three additional configure options (--runtimedir, --logfiledir,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews --proxycachedir) which now can be used for more granular adjustments if
0b09763c354ec91fb352b6b4cea383bd0195b2d8Mark Andrews --localstatedir is not enough to fit the particular needs. As a nice
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews side-effect this reduces some subdir fiddling in configure+Makefile.tmpl.
6a3c86ff436452d062912bd91ecd289541869d42Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e0fa16fe191d619d2cd05a039067414409329878Mark Andrews *) Make the install root for "make install" in APACI's Makefile overrideable
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by package authors. This way we are even more friendly to package
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews maintainers (especially Debian and RedHat) who build for the real prefix
93da96c1cfd5f3c47169855867dd18db00c8a386Mark Andrews via "configure --prefix=/<real>" but use a different local prefix via
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "make root=/tmp/apache install" for rolling the package without bristling
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the target location on their system.
7d389c324cc032475f9d219a12ab84bacbd7fbaaMark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cd9bfe5b256a3e84ba090e8fcb5de0d6c50974aeMark Andrews *) Workaround sed limitations in APACI's configure script by now
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews substituting in chunks of 50 commands (because for instance HPUX's vendor
dcd371be7d481b242d277d735e4c2d974297c164Mark Andrews sed has a limit of max. 98 commands)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2136
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cc4928ec7116a064223f60639ca1a80f25ba350fMark Andrews *) Adding SOCKS5 support and fixing existing SOCKS4 support.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2140
e2cf63c5df79eb7c8b86b6278289883fa760cda5Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Manually fix some symbols which were not renamed to prefix ap_ in the BIG
c3184b4e2a1f238f4615d36fee79df82b1711344Mark Andrews RENAMING process because they are defined as pre-processor macros instead
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of real functions: bputc, bgetc, piped_log_write_fd, piped_log_read_fd
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9b7c023fe6dc88ba1e69ace1f7c3ade40c6475f9Mark Andrews *) Workaround braindead AWK's when generating ap_config.h: The split() and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews substr() functions cannot be nested under vendor AWK from Solaris 2.6.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2139
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0a1fa37641b59c56d02f5390917a49e4987f0f75Mark Andrews *) Various bugfixes and cleanups for the APACI configure script:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o fix IFS handling for _nested_ situation
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o fix Perl interpreter search: take first one found instead of last one
c61ec97ae0b859914ee26e213fe792f86a157990Mark Andrews o fix DSO consistency check
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o print error messages to stderr instead of stdout
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o add install-quiet for --shadow situation to Makefile stub
49f7d1585e0e4f1ffa1667391dd7ae1c4d3d4e81Mark Andrews o reduce complexity by avoiding sed-hacks for rule and module list loops
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0b1af13f680a865521105a77ee192024b5af33c4Mark Andrews *) Fix DEBUG_CGI situation in mod_cgi.c [David MacKenzie] PR#2114
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure the input field separator (IFS) shell variable is explicitly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews initialized correctly before _every_ `for' loop and also restored after
945cb085b859dbfc6a883813dda03c83e06995d3Mark Andrews the loops. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5ed4b0d4452967d9b3aaf7a22a2956a6ee67a614Mark Andrews *) Make sure that "make install" doesn't overwrite the `mime.types' and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews `magic' files from an existing Apache installation. Because people often
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews customize these for own MIME and content types.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
c549b3a4d5fedba2ae960df667864e824acb1ef9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Dynamic Shared Object (DSO) support for OpenBSD 2.x
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Peter Galbavy, Ralf S. Engelschall] PR#2109
a483e67c4cdcbfc29ddc62b5a2d0d99b1c542fadMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the path to the ScoreBoardFile in the install-config target, too.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2105
d73de275987d29627dc11d5bd4a22874a29f7874Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Let "configure" clear out the users parameters (provided as shell
8f9664521724eefc39728c092d0bc6be527e1496Mark Andrews variables) to avoid side-effects in "src/Configure" when the user
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews exported them (which is not needed, but some users do it).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2101
da091cda77fa951e682119c3df84f60a62bed702Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Provide backward compatibility from some old src/Configuration.tmpl
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parameter names to the canonical Autoconf-style shell variable names. For
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews instance CFLAGS vs. EXTRA_CFLAGS. The EXTRA_xxx variants are accepted now
d8d489cd8efc45b06a232ac07a636b3d36cc7e8fMark Andrews but a hint message is displayed. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make sure that "make install" doesn't overwrite the DocumentRoot and
bdb1394788a677d0b6e8499ba1ece17a73f476c7Mark Andrews CGI scripts from an existing Apache installation.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall, Jim Jagielski] PR#2084
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c8aa2c83113229a59069cbd05c735896f51b886bMark Andrews *) Make `configure --compat' more "compatible" by first
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews let the libexecdir default to EPREFIX/libexec instead of EPREFIX/bin and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews second by making sure the "avoid-bristling-suffix" /apache is not
a1edcd1b8d430650d85ec0962cd32efde76a71fbMark Andrews appended to sysconfdir, datadir, localstatedir and includedir when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews --compat is used. [Ralf S. Engelschall, Lars Eilebrecht]
5b1627d469d07c5bfe7f193e3ddd85d0dd6ad4b0Mark Andrews
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) NeXT required strdup() in support/logresolve.c
7c23b791f4ae8f0c4c2982a91d13c0ecb15ee798Mark Andrews [Francisco Tomei <fatomei@sandburg.unm.edu>] PR#2082
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) AIX required sys/select.h in support/ab.c
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jens Schleusener <Jens.Schleusener@dlr.de>] PR#2081
8989de1059c6292fc43ce507df4991224af2d789Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the path to the MimeMagicFile in the install-config target, too.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#2089
acc8b7ac3d16538bf223545bbf71899b9accaebbMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Added HP-UX 11 patches [Jeff Earickson <jaearick@colby.edu>]
e7bb307667cc89287e810b95bddd342cb5dcb4e7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If you start apache with the -S command line option it will dump
b9efcf0a377381b29960137e54ecaf4db85a35c8Mark Andrews out the parsed vhost settings. This is useful for folks trying
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews to figure out what is wrong with their vhost configuration.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (Other dumps may be added in the future.) [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8e5893c36cdccc706f9632f51e0c8d390d2a8d06Mark Andrews *) Add %pA, %pI, and %pp codes to ap_vformatter (and hence ap_bprintf,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ap_snprintf, and ap_psprintf). See include/ap.h for docs.
e396939d492e6afa8e31a8dc11d7317c9e62f15fMark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9549a96654ead15b264c9159d48eb485e4f9db55Mark Andrews *) Because /usr/local/apache is the default prefix the ``configure
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews --compat'' option no longer has to set prefix, again. This way the
3d822d111c00e70830dc163a5298196a1e7db29fMark Andrews --compat option honors a leading --prefix option. [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
88aa68f478c1634f5f10034fb6ea4158efa20ff4Mark Andrews *) PORT: Cast the first argument of dlopen() in ap_os_dso_load()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to `char *' under OSF1 and FreeBSD 2.x where it is defined this way
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to avoid "discard const" warnings. [Ralf S. Engelschall]
4c83dd7f22b19c75afdd311684f6ba0faa24e8d8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If a specific handler is set for a file yet the request still
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ends up being handled by the default handler, log an error
5f4098e478ae913cdc1bb8851599b8f2431050d3Mark Andrews message before handling it. This catches things such as trying
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to use SSIs without mod_include enabled. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
57e0f58b3fd4cb49a57200c8af9cb58d984d871aMark Andrews *) Fix error logging for the startup case where ap_log_error() still uses
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews stderr as the target. Now the default log level is honored here, too.
26cf4737b3e84c3a686a5eacebf22ac39e57d4caMark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Make sure some AWK's don't fail in src/Configure with "string too
34e5a08809dda3276252269ebddd1616e62081a2Mark Andrews long" errors when generating the MODULES entry for src/Makefile
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Hyde, Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0cd36f1d15caf6622ec3128544d4238ad180a300Mark Andrews *) Make sure src/Configure doesn't complain about the old directory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews /usr/local/etc/httpd/ when APACI is used. [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3b6
93649589d470624e9e1c34403ad076b3a1a4c5c3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Clean up warnings on Ultrix and HPUX. [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
29f5bb81e2d1d72fc6e44c87404bd4598a34df94Mark Andrews *) Adding DSO support for the HP/UX platform by emulating the dlopen-style
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews interface via the similar but proprietary HP/UX shl_xxx-style system
ddc592d128cdde85ada64efbda95981c10c4c03cMark Andrews calls. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Updated UnixWare 2.0.x and 2.1.x entries for DSO support and made
88c2b83cc548a217cc92a2bf75ca1ef1d4237d4fMark Andrews APACI Makefile.tmpl "install" target more robust for sensible UnixWare
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Make. [Ralf S. Engelschall]
bd6ad47c3dbc52a54f240432878b6832bd6dd6e2Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ++++ THE BIG SYMBOL RENAMING ++++
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews To avoid symbol clashes with third-party code compiled into the server,
c7c1bf7dc167ff164193bc04f33a22109e4c0829Mark Andrews we globally applied the prefix "ap_" to the following classes of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews functions:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Apache provided general functions (e.g., ap_cpystrn)
9e205a3c51e68d19a7ed03244d45b14b3e0d69afMark Andrews - Public API functions (e.g., palloc, bgets)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Private functions which we can't make static (because of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews cross-object usage) but should be (e.g., new_connection)
e823642ec0c167af8f7db01c96ba0279165a61f3Mark Andrews For backward source compatibility a new header file named compat.h was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews created which provides defines for the old symbol names and can be used
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by third-party module authors.
93e6ebcd0a0f044ba2add424c265b5e0bb4c8afdMark Andrews [The Apache Group]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added dynamic shared object (DSO) support for SVR4-derivates: The
8ac1acc30d0f405222ffa7b2b93131d9d4e18599Mark Andrews problem under SVR4 is that there is no command flag to force the linker
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to export the global symbols of the httpd executable therewith they are
c99d9017ba00099bfa89e1ed53e63a5cb07d28d5Mark Andrews available to the DSO's. Instead of problematic hacks like creating a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews dummy.so file (containing dummy references to all global symbols) the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews httpd binary is linked against, we use a clean trick stolen from Perl 5:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Placing the Apache core code itself into a DSO library named libhttpd.so.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This way the global symbols _HAVE_ to be exported and thus are available
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to any manually loaded DSO's under runtime. To reduce the impact to the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews user to null we go even further and create a stub httpd executable which
c4a9ce445c48a57eed5aa16582b1964cf8cedf87Mark Andrews automatically keeps track of the DSO library loading itself and thus
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hides the complete mechanism from the user. Although the generation of
a04a323f9a1ebd4766fc577e11bf3c22bdaf5516Mark Andrews this DSO library is automatically triggered for platforms which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews essentially need it (mostly all SVR4-derivates) it can be also enabled
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews manually via the Rule SHARED_CORE. This can be interesting in the future
dd0228908543562781a4c0d8773ae87d4c530633Mark Andrews where we perhaps exploit this libhttpd.so mechanism for providing nifty
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews features like graceful upgrades, or whatever.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall, Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
810e8d27763c5d8557239ab321eb125163af9236Mark Andrews *) Build the libraries before building the rest of the tools. [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add "distclean" target to src/-Makefiles to provide "make distclean" also
15f358ed4ea081793041bbfba70849be472236d3Mark Andrews inside the src subtree (i.e. for non-APACI users). Following GNU Makefile
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews conventions while "clean" removes only stuff created by "all" targets,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "distclean" additionally removes the stuff from the configuration
984c39beed2fee49dda75c4c8a37b7f32bf434bfMark Andrews process. This way "make distclean" (hence the name) provides a fresh
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews source tree as it was for distribution.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
c08a03a43116c21cf12dea7cbcb5465588f7955cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow top-level (APACI) Makefile to break on build errors
c311ed52d45334e182a093efad827fe4cbe7e686Mark Andrews the same way the src/ subtree Makefiles breaks on them by replacing the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews initial APACI sed-subdir-display-kludge with a more clean
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews variable-passing-solution: variable SDP can optionally hold the subdir
79a6a33184abff1999ba13b10922ccb34a2758a5Mark Andrews prefix which is consistently used for displaying the subdir movement.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This way even the top-level Makefile can stop correctly on errors as the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews user expects. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5d26560e2b93e1aa0334931ec6ccb6045c3581fcMark Andrews *) Fixed ordering of argument checks for RewriteBase directive.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Todd Eigenschink <eigenstr@mixi.net>] PR#2045
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2b1c71b134eb92f2e297a56f778838e42f41c880Mark Andrews *) Change Win32 IS_MODULE to SHARED_MODULE to match Unix' method of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews indicating that a module is being compiled for dynamic loading. Also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews remove #define IS_MODULE from modules and add SHARED_MODULE define
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the mak/dsp files. [Alexei Kosut]
d6fbfd28ea82e425740de903ddc67f7d9e9f82e7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reduce logging level of "normal" warning messages to APLOG_INFO,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews since we are now logging APLOG_WARNING by default. [Roy Fielding]
7791dd06ea69d0fb2494788ad4c24d568f40bcdfMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: OS/2 tweak to deal with multiple .exe targets. [Brian Havard]
091b098b49a4f84f459abd46451955a18abd6d40Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add documentation file and src/Configuration.tmpl entry for the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews experimental mod_mmap_static module. Because although it is and marked as
7d3458a972a902740eb142044655aba6c6ffb9acMark Andrews an experimental one it is distributed and thus should be documented and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews prepared for configuration the same way as all others modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
7c441b7f4afdedb6e5a99f113a4f926a005fa950Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add query (-q) option to apxs support tool to be able to manually query
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews specific settings from apxs. This is needed for instance when you
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews manually want to access Apache's header files and you need to assemble
f0ffc28f61a68b350fef9257f5f50e1ac866e0abMark Andrews the -I option. Now you can do -I`apxs -q INCLUDEDIR`.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7f20fd8ebb0cabc8f935381d958f8371990c9212Mark Andrews *) Now src/Configure uses a fallback strategy for the shared object support
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on platforms where no explicit information is available: If a Perl
8695d7b357789bedff63e5b19c5ab25cd58fcd4bMark Andrews installation exists we ask it about its shared object support and if it's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the dlopen-style one we shamelessly guess the compiler and linker flags
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for creating shared objects from Perls knowledge. Of course, the user is
f76c4ebaf586a693521f018fbc617c292c1555d7Mark Andrews warning about what we are doing and informed that he should send us
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the guessed flags when they work. [Ralf S. Engelschall]
b597abd9cc44c7b9ecd0ff67df59a21ff45e88d5Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Provide APACI --without-support option to be able to disable the build
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and installation of the support tools from the src/support/ area.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Although its useful to have these installed per default we should provide
81e302788a444b81231a7cda721548a020ae5660Brian Wellington a way to compile and install without them for backward-compatibility.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c00a1eb423623442aff428336bb55590f79013bbMark Andrews *) Add of the new APache eXtenSion (apxs) support tool for building and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews installing modules into an _already installed_ Apache package through the
1e258716acade52396a8f260b5e19cbf6ca0290aMark Andrews dynamic shared object (DSO) mechanism [mod_so.c]. The trick here is that
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this approach actually doesn't need the Apache source tree. The
d972fa317829804a692e46a34b6f27a33f861d9dMark Andrews (APACI-installed) server package is enough, because this now includes the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache C header files (PREFIX/include) and the new APXS tool
4b171ebd702d72200a4d7609f11c5f79d6b6f964Brian Wellington (SBINDIR/apxs). The intend is to provide a handy tool for third-party
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews module authors to build their Apache modules _OUTSIDE_ the Apache source
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews tree while avoiding them to fiddle around with the totally platform
cceca51fec3b4af660d28e2d3df7242823312eb6Brian Wellington dependend way of compiling DSO files. The tool supports all ranges of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules, from trivial ones (single mod_foo.c) to complex ones (like PHP3
03fae7ef2173cdf32918853b047d95d9046574ccMark Andrews which has a mod_php3.c plus a pre-built libmodphp3-so.a) and even can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on-the-fly generate a minimalistic Makefile and sample module for the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews first step to provide both a quick success event and to demonstrate the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews APXS mechanism to module authors. [Ralf S. Engelschall]
ad611e746d6fdcbb9e67da361a3a039c226a9236Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix core dumps in use of CONNECT in proxy.
603d1d1e20fbffc986b3aec93379bb4f6ac37afcMark Andrews [Rainer.Scherg@rexroth.de] PR#1326, #1573, #1942
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Modify the log directives in httpd.conf-dist files to use CustomLog
2dd99c098ca162f985b7ef3c8142a964ad8281aeMark Andrews so that users have examples of how CustomLog can be used.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2dd99c098ca162f985b7ef3c8142a964ad8281aeMark Andrews *) Add the new Apache Autoconf-style Interface (APACI) for the top-level of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the Apache distribution tree. Until Apache 1.3 there was no real
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews out-of-the-box batch-capable build and installation procedure for the
1fb264ed3aa861a67d7bab9aeb5aea5836e03c14Mark Andrews complete Apache package. This is now provided by a top-level "configure"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews script and a corresponding top-level "Makefile.tmpl" file. The goal is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to provide a GNU Autoconf-style frontend which is capable to both drive
608c703d1231e0b1f291637ca5361b773afcdbf1Mark Andrews the old src/Configure stuff in batch and additionally installs the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews package with a GNU-conforming directory layout. Any options from the old
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configuration scheme are available plus a lot of new options for flexibly
feb8ae093115b36ac061e23d0227ea06f51950a3Mark Andrews customizing Apache. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
27151990b2b48f027f7f01972fe8e0dfa1df52d3Mark Andrews *) The floating point ap_snprintf code wasn't threadsafe.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Had to remove the HAVE_CVT macro in order to do threadsafe
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews calling of the ?cvt() floating point routines. [Dean Gaudet]
95b604c5e972a5e9eb713bf45cf0b2d9b98da27eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Add the SCO_SV port. [Jim Jagielski] PR#1962
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2211bec6a0626b681fdf5a8e4406555ef76ddf70Mark Andrews *) PORT: IRIX needs the -n32 flag iff using the 'cc' compiler
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski] PR#1901
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fcb2ecdb52a594a5c0d07c2e98e67c14708c16dfMark Andrews *) BUG: Configure was using TCC and CC inconsistently. Make sure
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Configure knows which CC we are using. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3561e645d77448b20b1676680b08c76d559e5335Mark Andrews *) "Options +Includes" wasn't correctly merged if "+IncludesNoExec"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was defined in a parent directory. [Lars Eilebrecht]
b9c80c8bddbb88384d7baef297a873b5f8715e49Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: ap_snprintf() code mutated into ap_vformatter(), which is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a generic printf-style routine that can call arbitrary output
b9c80c8bddbb88384d7baef297a873b5f8715e49Mark Andrews routines. Use this to replace http_bprintf.c. Add new routines
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews psprintf(), pvsprintf() which allocate the exact amount of memory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews required for a string from a pool. Use psprintf() to clean up
27269e9dd45b619160f90db1a0f6b2b3f6f4bbb8Mark Andrews various bits of code which used ap_snprintf()/pstrdup().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f38c274c217d0a5b791786877422306a0e477e10Mark Andrews *) PORT: HAVE_SNPRINTF doesn't do anything any longer. This is because
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ap_snprintf() has different semantics and formatting codes than
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews snprintf(). [Dean Gaudet]
84ef147b1fa0aed15cade55478ed647d15f7b094Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SIGXCPU and SIGXFSZ are now reset to SIG_DFL at boot-time. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is necessary on at least Solaris where the /etc/rc?.d scripts
e53a5a116fc531f730df0adb091278ff8a941dffMark Andrews are run with these signals ignored, and "SIG_IGN" settings are
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews maintained across exec().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rein Tollevik <reint@sys.sol.no>] PR#2009
fc7fbdf6e66fb496442ec4f99f5a84669ea4c6d3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the check for symbolic links in ``RewriteCond ... -l'': stat() was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews used instead of lstat() and thus this flag didn't work as expected.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rein Tollevik <reint@sys.sol.no>] PR#2010
986be654feec852eb9da0d15599f18d0035e569bMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the proxy pass-through feature of mod_rewrite for the case of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews existing QUERY_STRING now that mod_proxy was recently changed because of
c26c65b7a0d036e78bfc73f3e7e0817adb0365c0Mark Andrews the new URL parsing stuff. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A few changes to scoreboard definitions which helps gcc generate
43733a83ed92359555c0dcc766e04216ba858309Mark Andrews better code. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ANSI C doesn't guarantee that "int foo : 2" in a structure will
bda64555f62216c3e785338f372a7ad9b79c197cMark Andrews be a signed bitfield. So mark a few bitfields as signed to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ensure correct code. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
39c2b741427eedafe5054909773c2e121c078b72Mark Andrews *) The default for HostnameLookups was changed to Off, but there
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was a problem and it wasn't taking effect. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
de36c606c52ad51e5abca6e42faf655937e5ed10Mark Andrews *) PORT: Clean up undefined signals on some platforms (SCO, BeOS).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
23cb957a81a51a9656917ea98d0ae56b7abdcaccMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) After a SIGHUP the listening sockets in the parent weren't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly marked for closure on fork().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [J�rgen Keil <jk@tools.de>] PR#2000
28d8b4118da7abed531ca09136a6d1402837d721Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow %2F in two situations: 1) it is in the query part of the URI,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews therefore not exposed to %2F -> '/' translations and 2) the request
d6c0627d1e4d841eac9576427f2d4a0cf9a47e2cMark Andrews is a proxy request, so we're not dealing with a local resource anyway.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Without this, the proxy would fail to work for any URL's with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews %2f in them (occurs quite often in
5d7b81d2a49d237ff5e73fdc4bd3394a3ee29392Mark Andrews http://.../cgi-bin/...?http%3A%2F%2F... references) [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Protect against FD_SETSIZE mismatches. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8f63de30293716a22054e7db47f27e81bab545c5Mark Andrews *) Make the shared object compilation command more portable by avoiding
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the direct combination of `-c' & `-o' which is not honored by some
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews compilers like UnixWare's cc. [Ralf S. Engelschall]
caa8797a00ccb1a02f1690dda5b4aeda9a1db5a7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: the proxy was creating filenames missing the last four
9ae90732df942a7ffcbaa26ba254b55248ce79a5Mark Andrews characters. While this normally doesn't stop anything from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews working, it can result in extra collisions.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Tim Costello <tjcostel@socs.uts.edu.au>] PR#1890
f3222d48cc3d81706d198faa00dea9720eb0768dMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Now mod_proxy uses the response string (in addition to the response status
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code) from the already used FTP SIZE command to setup the Content-Length
e95cc59f90d35f2d482b6f9c19ba96818275335cMark Andrews header if available. [Ralf S. Engelschall] PR#1183
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reanimated the (still undocumented) proxy receive buffer size directive:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Renamed from ReceiveBufferSize to ProxyReceiveBufferSize because the old
0062c1ddfe0b2f0a4e206a5d460d8e7d58e29b80Brian Wellington name was really too generic, added documentation for this directive to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the mod_proxy.html and corrected the hyperlink to it in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews new_features_1.3.html document. [Ralf S. Engelschall] PR#1348
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
48b0f5ff87f0a5a138129bcd855fd72908491321Andreas Gustafsson *) Fix a bug in the src/helpers/fp2rp script and make it a little bit
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews faster [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cde7dfea4c1267a2b526114f4ea80fe9db1fc557Brian Wellington *) Make Configure die when you give it an unknown command switch.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fca9cc33ad4299e58e53aa5273d805477267e27aBrian Wellington *) Add five new and fresh manpages for the support programs: dbmmanage.1,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews suexec.8, htdigest.1, rotatelogs.8 and logresolve.8. Now all up-to-date
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and per default compiled support programs have manual pages - just to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews document our stuff a little bit more and to be able to do really
2ca2e1a1ceec59a40f977f01ba8e8f4c0424c484Brian Wellington Unix-like installations ;-) [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Major cleanups to the Configure script to make it and its generated
84185d19c7a9ef1ac23cc6236c8773697d4efeb1Brian Wellington Makefiles again readable and maintainable: add SRCDIR option, removed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews INCLUDES_DEPTH[0-2] kludge, cleanup of TARGET option, cleanup of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews generated sections, consequently added Makefile headers with inheritance
683f10428e292811317df38fa324f242abbf7384Mark Andrews information, added subdir movement messages for easier following where
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the build process currently stays (more verbose then standard Make, less
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews verbose than GNU make), same style to comments in the Configure script,
5da1e589c2288dbe87002f771005a78d80a2e258Mark Andrews added Apache license header, fixed a few bugs, etc. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add the new ApacheBench program "ab" to src/support/: This is derived
5da1e589c2288dbe87002f771005a78d80a2e258Mark Andrews from the ZeusBench benchmarking program and can be used to determine the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews response performance of an Apache installation. This version is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews officially licensed with Zeus Technology, Ltd. See the license agreement
852fa3b2e32719d094f3ad6513238841ae1f078bMark Andrews statements in <199803171224.NAA24547@en1.engelschall.com> in apache-core.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8569ab045a4cf6ecd1b5a3354ddb1c93ef34ea57Brian Wellington *) API: Various core functions that are definately not part of the API
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews have been made static, and a few have been marked API_EXPORT. Still
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews more have been marked CORE_EXPORT and are not intended for general
a5c077e40c784cf9e25c95a1ab94db2faab04ae9Brian Wellington use by modules. [Doug MacEachern, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_proxy was not clearing the Proxy-Connection header from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requests; now it does. This did not violate any spec, however
2ca556300b09a94f0937b303386d29b95ef057ddBrian Wellington causes poor interactions when you are talking to remote proxies.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko] PR#1741
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various cleanups to the command line interface and manual pages.
97527fc03cdb061759e2c9529c670ac1c190ef84Brian Wellington [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e1c2a8b9c120bcfc2f56e866ca3069b8a90c38dbMark Andrews *) cfg_getline() was not properly handling lines that did not end
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with a line termination character. [Marc Slemko] PR#1869, 1909
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b7064914ca566fdd67cf0fe7e82d586cbb596470Mark Andrews *) Performance tweak to mod_log_config. [Dmitry Khrustalev]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Clean up some undocumented behavior of mod_setenvif related to
49f62849e5f80add0ee36b0f9b42cdce8de9748aMark Andrews "merging" two SetEnvIf directives when they match the same header
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and regex. Document that mod_setenvif will perform comparisons in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the order they appear in the config file. Optimize mod_setenvif by
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews doing more work at config time rather than at runtime.
e9472e9f18f1c4f1279be2b3147be13a2bb731d0Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) src/include/ap_config.h now wraps it's #define's with #ifndef/#endif's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to allow for modules to overrule them and to reduce redefinition
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews warnings [Jim Jagielski]
d073663cb45bef2fff5f9a43b9b6006edfc52483Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) [PORT] For A/UX change the OS-#define for -DAUX to -DAUX3.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski]
cad61731f8e960d9d99034a2a6eaafe1069c405cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Making the hard-coded cross-module function call mime_find_ct() (from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_proxy to mod_mime) obsolete by making sure the API hook for MIME type
54469c2b2262f6a3f09610df69e16e9c75fd1fe5Mark Andrews checking is really called even for proxy requests except for URLs with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HTTP schemes (because there we can optimize by not running the type
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews checking hooks due to the fact that the proxy gets the MIME Content-type
90e303b114e56db5809fdd19805243457fa43cd9Olafur Gudmundsson from the remote host later). This change cleans up mod_mime by removing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the ugly export kludge, makes the one-liner file mod_mime.h obsolete, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews especially unbundles mod_proxy and mod_mime. This way they both now can
adbb11147cd5d97d140485fa37e85e66e15cf594Mark Andrews be compiled as shared objects and are no longer tied together.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9ab461a6ffed2ae2fe0380c30b69052db7473405Mark Andrews *) util.c cleanup and speedup. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
77467267d97c781f3f3d050e229a874831e59c3dMark Andrews *) API: Clarification, pstrndup() will always copy n bytes of the source
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and NUL terminate at the (n+1)st byte. [Dean Gaudet]
13ba983cc86bc7d80d5f66ba09002f7d510a6631Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Mark module command_rec and handler_rec structures const so that they
da5d1cf1b1aa29ae53a0427be49291b04bd60549Mark Andrews end up in the read-only data section (and are friendlier to systems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews that don't do optimistic memory allocation on fork()). [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
66291de2060a1569de3fe9c5f0c1225448868f7aMark Andrews *) Add check to the "Port" directive to make sure the specified
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews port is in the appropriate range. [Ben Hyde]
6c06bc591a830023e5e7a41cc4b37978b98c0c51Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Performance improvements to invoke_handler().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dmitry Khrustalev <dima@bog.msu.su>]
c36f45e354c0d5b6ab9f821bfe315d0ce9d95a29Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added support for building shared objects even for library-style modules
9cec4ca6cac428a46c6d64197c64831dcc02f506Andreas Gustafsson (which are built from more than one object file). This now provides the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ability to build mod_proxy as a shared object module. Additionally
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules like mod_example are now also supported for shared object
23fb770906bf1fd98210f16ad660078274242963Mark Andrews building because the generated Makefiles now no longer assume there is at
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews least one statically linked module. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0cb27602e5690baa9ab61c7c1430e507536adca7Brian Wellington *) API: Clarify usage of content_type, handler, content_encoding,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews content_language and content_languages fields in request_rec. They
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews must always be lowercased; and the strings pointed to shouldn't
ff1b064f5e2bf19c8e25f8927d23df5714e666edMark Andrews be modified (you must copy them to modify them). Fix a few bugs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews related to this. [Dean Gaudet]
8e40433e347bc487cd70f02487fc7ce947a2422aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Clarification: except for RAW_ARGS, all command handlers can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews treat the char * parameters as permanent, and modifiable. There
880723fb130841459d45695b387651cacd6c9bb8Mark Andrews is no need to pstrdup() them. Clean up some needless pstrdup().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8f44fd4f8d5cefc227ab0fe59cbcbc3979fbc9caAndreas Gustafsson *) Now mod_so keeps track of which module shared objects with which names
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are loaded and thus avoids multiple loading and unloading and irritating
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews error_log messages. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fefbb64a751f23c9dcf8bb1e62c6ed40a6a04fb2Mark Andrews *) Prior to the existence of mod_setenv it was necessary to tweak the TZ
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews environment variable in the apache core. But that tweaking interferes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with mod_setenv. So don't tweak if the user has specified an explicit
111e3433d289e8b4ea1260add39baa78c2a46891Mark Andrews TZ variable. [Jay Soffian <jay@cimedia.com>] PR#1888
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) rputs() did not calculate r->sent_bodyct properly.
cf300e03de3df3ff422db922520bf07c686c86daMark Andrews [Siegmund Stirnweiss <siegst@kat.ina.de>] PR#1900
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The CGI spec says that REMOTE_HOST should be set to the remote hosts's
9ac8796f1653d89af589753a3e42c694f35ddd8aMark Andrews name, or left unset if this value is unavailable. Apache was setting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews it to the IP address when unavailable.
242bba8991b030b7764f0bdca3922d75c34ea51eAndreas Gustafsson [Tony Finch <fanf@demon.net>] PR#1925
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various improvements to the configuration and build support for compiling
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules as shared objects. Especially Solaris 2.x, SunOS 4.1, IRIX and
242bba8991b030b7764f0bdca3922d75c34ea51eAndreas Gustafsson OSF1 support with GCC and vendor compilers was added. This way shared
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews object support is now provided out-of-the-box for FreeBSD, Linux,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Solaris, SunOS, IRIX and OSF1. In short: On all major platforms!
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
242bba8991b030b7764f0bdca3922d75c34ea51eAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Minor cleanup in http_main -- split QNX and OS2 specific "mmap"
02bdc23f8e3ca0f710e0a40daa15941ab1db6bb2Mark Andrews scoreboard code into separate #defines -- USE_POSIX_SCOREBOARD
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and USE_OS2_SCOREBOARD. [Dean Gaudet]
ef29912666cc6160f7165558bef017ab3849c5e1Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix one more special locking problem for RewriteMap programs in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_rewrite: According to the documentation of flock(), "Locks are on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews files, not file descriptors. That is, file descriptors duplicated
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews through dup(2) or fork(2) do not result in multiple instances of a lock,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews but rather multiple references to a single lock. If a process holding a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews lock on a file forks and the child explicitly unlocks the file, the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parent will lose its lock.". To overcome this we have to make sure the
0cfa2fb26df42f781eca8c4c856d2d0165055bebMark Andrews RewriteLock file is opened _AFTER_ the childs were spawned which is now
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the case by opening it in the child_init instead of the module_init API
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hook. [Ralf S. Engelschall] PR#1029
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
06a949d2ce8d4b4cbfbf4e7a0335316520aafa46Andreas Gustafsson *) Change to Location and LocationMatch semantics. LocationMatch no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews longer lets a single slash match multiple adjacent slashes in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews URL. This change is for consistency with RewriteRule and
0b81e99ddfb01746e667797dedc291fc550d14d3Brian Wellington AliasMatch. Multiple slashes have meaning in URLs that they do
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not have in (some) filesystems. Location on the other hand can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be considered a shorthand for a more complicated regex, and it
3638017bd3cb8e30874f708a125d1541b680b25eBrian Wellington does match multiple slashes with a single slash -- which is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews also consistent with the Alias directive.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] related PR#1440
8771fbe4a2cee7bebd785a486824833d741c7315Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix bug with mod_mime_magic causing certain files, including files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of length 0, to result in no response from the server.
b541c10d0442d9804d94567a97956cec3bd2912dBrian Wellington [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The Configure script now generates src/include/ap_config.h which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews contains the set of defines used when Apache is compiled on a platform.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This file can then be included by external modules before including
c01237c6bc5ec25063b4aae1799fe4de01a7455bAndreas Gustafsson any Apache header files in case they are being built separately from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache. Along with this change, a couple of minor changes were
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews made to make Apache's #defines coexist peacefully with any autoconf
60213f2815a7e6584a2285546d05633fa7b6f5b4Mark Andrews defines an external module might have. [Rasmus Lerdorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix mod_rewrite for the ugly API case where <VirtualHost> sections exist
6c8abf481df85a67c3f32f5f107b554d3ff5a3edMark Andrews but without any RewriteXXXXX directives. Here mod_rewrite is given no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews chance by the API to initialize its per-server configuration and thus
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews receives the wrong one from the main server. This is now avoided by
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews remembering the server together with the config structure while
1e4bfff1855795853648f507422b96fc8fecbff1Mark Andrews configuring and later assuming there is no config when we see a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews difference between the remembered server and the one calling us.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#1790
6b31d9c56874d3bd58b420cbe6cd64be502dbe08Andreas Gustafsson
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) Fixed the DBM RewriteMap support for mod_rewrite: First the support now
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is automatically disabled under configure time when the dbm_xxx functions
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are not available. Second, two heavy source code errors in the DBM
ee80f4506479e189ca1320eb87ac89188c5a7848Mark Andrews support code were fixed. This makes DBM RewriteMap's usable again after
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a long time of brokenness. [Ralf S. Engelschall] PR#1696
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d9d6d2f77fe54831dec9cde8ca03ae1f825599f9Andreas Gustafsson *) Now all configuration files support Unix-style line-continuation via
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the trailing backslash ("\") character. This enables us to write down
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews complex or just very long directives in a more readable way. The
eb2c518a3871932e86268e7c6ddae2b2a00d72fdMark Andrews backslash character has to be really the last character before the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews newline and it has not been prefixed by another (escaping) backslash.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
4072dfb9b865c82c24a72e734d54da51a20dfc1eMark Andrews
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews *) When using ProxyPass the ?querystring was not passed correctly.
92094d44a2d0cb2b1be58a87299903ba7c436a0cAndreas Gustafsson [Joel Truher <truher@wired.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) To deal with modules being compiled and [dynamically] linked
d1abb8bb020aacd1ce0da65c2d5d8f7c96ebd52aMark Andrews at a different time from the core, the SERVER_VERSION and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SERVER_BUILT symbols have been abstracted through the new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews API routines apapi_get_server_version() and apapi_get_server_built().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar] PR#1448
b4aeceec736cd16d4c4e98f519c8df79b15fbe45Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Preserve trailing slash in canonical path (and hence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in PATH_INFO). [Paul Sutton, Ben Laurie]
307ba34fa07db768c3a899844f248a2c1d7dcc7fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: USE_PTHREAD_SERIALIZED_ACCEPT has proven unreliable
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews depending on the rev of Solaris and what mixture of modules
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are in use. So it has been disabled, and Solaris is back to
b6b9d8b8434e4eaab74b69cd14fcacf448055ca5Brian Wellington using USE_FCNTL_SERIALIZED_ACCEPT. Users may experiment with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews USE_PTHREAD_SERIALIZED_ACCEPT at their own risk, it may speed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews up static content only servers. Or it may fail unpredictably.
31f6e44dcaad33d66d607e3a919d4aa59cdbaec5Andreas Gustafsson [Dean Gaudet] PR#1779, 1854, 1904
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_test_util_uri.c created which tests the logic in util_uri.c.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
6d6529b5e5ab7223fa2560ebe144bcb82517cef3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Rewrite of absoluteURI handling, and in particular how
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews absoluteURIs match vhosts. Unless a request is a proxy request, a
0b07b9482c00060d1ddd551a5dcb8cecbe2c1f65Mark Andrews "http://host" url is treated as if a similar "Host:" header had been
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews supplied. This change was made to support future HTTP/1.x protocols
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which may require clients to send absoluteURIs for all requests.
c0fe9b0d1b01a9a0883977a362ce4128723a56d6Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews In order to achieve this change subtle changes were made to the API. In a
2869504d83e84a91dbc822e8a243e837f5c0374dAndreas Gustafsson request_rec, r->hostlen has been removed. r->unparsed_uri now exists so
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews that the unmodified uri can be retrieved easily. r->proxyreq is not set
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by the core, modules must set it during the post_read_request or
138cc7f283889367b11840ff77a9ea08e17a9daeAndreas Gustafsson translate_names phase.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Plus changes to the virtualhost test suite for absoluteURI testing.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ac1a59e95cfd035f38222e739affd43eafa9eeefMark Andrews This fixes several bugs with the proxy proxying requests to vhosts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews managed by the same httpd.
58930ca9802e772afe9f5ccb30f236d201cf60e0Danny Mayer [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Cleanup of code in http_vhost.c, and remove vhost matching
e3e94dd137c5f9d3d5c5179863f674b27aa0cc02Andreas Gustafsson code from mod_rewrite. The vhost matching is now performed by a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews globally available function matches_request_vhost(). [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reduce memory usage, and speed up ServerAlias support. As a
7c014c5bf41dc38802e8889c0a9110204eb1a552Andreas Gustafsson side-effect users can list multiple ServerAlias directives
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and they're all considered.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chia-liang Kao <clkao@cirx.org>] PR#1531
a8fb98aff8a186bf80fa4e48cc3e99a42939dd0aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The "poly" directive in image maps did not include the borders of the
3e42bdfdc901b6b921b02028bd51ca2af8e84adcMark Andrews polygon, whereas the "rect" directive does. Fix this inconsistency.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Konstantin Morshnev <moko@design.ru>] PR#1771
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make \\ behave as expected. [Ronald.Tschalaer@psi.ch]
b20eef7ab022dd984e2e9c12f6a7edf35661d3b0Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add the `%a' construct to LogFormat and CustomLog to log the client IP
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews address. [Todd Eigenschink <eigenstr@mixi.net>] PR#1885
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: A new source module main/util_uri.c; It contains a routine
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parse_uri_components() and friends which breaks a URI into its component
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parts. These parts are stored in a uri_components structure called
ea01b618d981e58f85071a40550bc7f7565d4509Andreas Gustafsson parsed_uri within each request_rec, and are available to all modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Additionally, an unparse routine is supplied which re-assembles the URI
80dd46d7aab16c42a8c1acf6156c95406a9f20a4Mark Andrews components back to an URI, optionally hiding the username:password@ part
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews from ftp proxy requests, and other useful routines. Within the structure,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews you find on a ready-for-use basis:
993572b2495561c57b556621dd9fe493e8c6dd1bDanny Mayer scheme; /* scheme ("http"/"ftp"/...) */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hostinfo; /* combined [user[:password]@]host[:port] */
78bf1ca89505820ed7b03be4bf0c0b53b557f3cdAndreas Gustafsson user; /* user name, as in http://user:passwd@host:port/ */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews password; /* password, as in http://user:passwd@host:port/ */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hostname; /* hostname from URI (or from Host: header) */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews port_str; /* port string (integer representation is in "port") */
afeabf9f707ca71192041c1132d9f07d7bd83132Mark Andrews path; /* the request path (or "/" if only scheme://host was given) */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews query; /* Everything after a '?' in the path, if present */
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fragment; /* Trailing "#fragment" string, if present */
3842a051baf34ffc4e428cd6f2d4a641e548e6f6Mark Andrews This is meant to serve as the platform for *BIG* savings in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code complexity for the proxy module (and maybe the vhost logic).
a89d1aea0cce6a28a3751cd508db67e38d307a5eDanny Mayer [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make all possible meta-construct expansions ($N, %N, %{NAME} and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ${map:key}) available for all location where a string is created in
04f158ce9a12746eb216892b2bf8259749db254eAndreas Gustafsson mod_rewrite rewriting rulesets: 1st arg of RewriteCond, 2nd arg of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews RewriteRule and for the [E=NAME:STRING] flag of RewriteRule. This way the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews possible expansions are consequently usable at all string creation
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews locations. [Ralf S. Engelschall]
62c1fe7b450916acdaf4a3fe65a9b691d5d32f3fBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix initialization of RewriteLogLevel (default now is 0 as documented
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and not 1) and the per-virtual-server merging of directives. Now all
712bf9b0cc4ed34f4bf33b437f8b0e45853b93ceMark Andrews directives except `RewriteEngine' and `RewriteOption' are either
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews completely overridden (default) or completely inherited (when
7e2f4ceafaae4eac1deddc87f906b29a922fff9dAndreas Gustafsson `RewriteOptions inherit') is used. [Ralf S. Engelschall] PR#1325
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix `RewriteMap' program lookup in situations where such maps are
72499be79fbb68140bd31e0e4ded18a70a5b523bMark Andrews defined but disabled (`RewriteEngine off') in per-server context.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#1431
90c5477ca11a94b0e7d8071181d69544e1ab9be9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix bug introduced in 1.3b4-dev, config with no Port setting would cause
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews server to bind to port 0 rather than 80. [Dean Gaudet]
552a117791c17878c5c1b94b0fc3ac4e8491543eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix long-standing problem with RewriteMap _programs_ under Unix derivates
f3e4c3d6c536973bae92611402ba55277069eba2Mark Andrews (like SunOS and FreeBSD) which don't accept the locking of pipes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directly. A new directive RewriteLock is introduced which can be used to
6fb633bc3fddba07fc9460ffd245b7ee2d459285Mark Andrews setup a separate locking file which then is used for synchronization.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall] PR#1029
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ca033e166ca9f9dc7bf010065a93af668a09fd44Mark Andrews *) WIN32: The server root is obtained from the registry key
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HKLM\SOFTWARE\Apache Group\Apache\<version> (version is currently
f9321a16fb8dce8999a43a6d4008c54845305401Mark Andrews "1.3 beta"), unless overridden by the -d command line flag. The
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews value is stored by running "apache -i -d serverroot". [Paul Sutton]
c8bedec446212b07511ded85ba04a9a3d5965ba8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Merged os/win32/mod_dll.c into modules/standard/mod_so.c to support
7a104af70fb3071e7949c4e0e585af18ab362db5Mark Andrews dynamic loading on Win32 and Unix via the same module. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Now mod_rewrite no longer makes problematic assumptions on the characters
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a username can contain when trying to expand it via /etc/passwd.
923de3bb9cf4d619de206544975986a22b18196fMark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2359261a252b339f3cef046cefa10ee1e1d4564dMark Andrews *) The mod_setenvif BrowserMatch backwards compatibility command did not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews work properly with spaces in the regex. [Ronald Tschalaer] PR#1825
769cd7d5dd677434c3dfa27cbfdd8cb76296fcdcMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add new RewriteMap types: First, `rnd' which is equivalent to the `txt'
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews type but with a special post-processing for the looked-up value: It
6bad645917a026dfa4662dd0a3a78b9efc3f4c36Mark Andrews parses it into alternatives according to `|' chars and then only one
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews particular alternative is chosen randomly (this is an essential
11931cc68d6c8139f507a724e7ca9814eed8b552Mark Andrews functionality needed for balancing between backend-servers when using
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache as a Reverse Proxy. The looked up value here is a list of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews servers). Second, `int' with the built-in maps named `tolower' and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews `toupper' which can be used to map URL parts to a fixed case (this is an
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews essential feature to fix the case of server names when doing mass
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews virtual-hosting with the help of mod_rewrite instead of using
d91d025deffd075db2507d44fab04b79920b3e91Mark Andrews <VirtualHost> sections). [Ralf S. Engelschall, parts based on code from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Jay Soffian <jay@cimedia.com>] PR#1631
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
985b4f1c8653c6dfaa46652c412838850c0ffb1cMark Andrews *) Add a new directive to mod_proxy similar to ProxyPass: `ProxyPassReverse'.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This directive lets Apache adjust the URL in Location-headers on HTTP
1d556695ef3c7918ba5061d7d846122d60f5f6c5Mark Andrews redirect responses sent by the remote server. This way the virtually
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mapped area is no longer left on redirects and thus by-passed which is
e9ca87459a20f5e6721b9bd0b28c95fc3d6b843cMark Andrews especially essential when running Apache as a reverse proxy.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
ca690f98020f75758bc26f4b5ef1ccf0472a27c3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Hide Proxy-Authorization from CGI/SSI/etc just like Authorization is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hidden. [Alvaro Martinez Echevarria]
137a1f98e3862577ae9ccbb6b735ef63a51c456eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Apache will, when started with the -X (single process) debugging flag,
5cd7e9d4db393c314dd1a761c52d2cb3a4da9b72Andreas Gustafsson honor the SIGINT or SIGQUIT signals again now. This capability got lost
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a while ago during OS/2 signal handling changes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) [PORT] Work around the fact that NeXT runs on more than the
cc8e8b59d6780889739657226a95e23ca1ecadb1Andreas Gustafsson m68k chips in mod_status [Scott Anguish and Timothy Luoma
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews <luomat@peak.org>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
65775fe205e8ac935313c42062c75460e0bc1514Andreas Gustafsson as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews <ache@nagual.pp.ru> and Jim] PR#1450
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
17b687ef360ba8c07201dc6511a3c975cc1bb2a8Andreas Gustafsson In particular the handlers could trigger themselves into an infinite
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews loop if RLimitMem was used with a small amount of memory -- too small
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for the signal stack frame to be set up. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
998358fa900393378c70ad598c2b2e67385089d4Mark Andrews *) Fix problems with absoluteURIs introduced during 1.3b4. [Dean Gaudet,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Alvaro Martinez Echevarria <alvaro@lander.es>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix multiple UserDir problem introduced during 1.3b4-dev.
bc508906db43dda7eab0988348dd0ae3f3023a9bMark Andrews [Dean Gaudet] PR#1850
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ap_cpystrn() had an off-by-1 error.
b352902413608d0eb310c4bb45412fa45734afbcAndreas Gustafsson [Charles Fu <ccwf@klab.caltech.edu>] PR#1847
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: As Ken suggested the check_cmd_context() function and related
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews defines are non-static now so modules can use 'em. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_info would occasionally produce an unpaired <tt> in its
72e8c079c4c6dc66d565cf89ebf6feb5fa2dea33Mark Andrews output. Fixed. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) By default AIX binds a process (and it's children) to a single
c8ab83c08e5227b5146295a9ef4a96d61b066b67Andreas Gustafsson processor. httpd children now unbind themselves from that cpu
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and re-bind to one selected at random via bindprocessor()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
4e57d3ff7d92abdef4b0b6aebc23a9dfae2ba040Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Linux 2.0 and above implement RLIMIT_AS, RLIMIT_DATA has almost no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews effect. Work around it by using RLIMIT_AS for the RLimitMEM
081cff0c33514a5dc63ab794fc199c07377ab756Mark Andrews directive. [Enrik Berkhan <enrik@inka.de>] PR#1816
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_mime_magic error message should indicate the filename when
d352f188cb9e3820054b7451384a3d910619b4a1Andreas Gustafsson reads fail. ["M.D.Parker" <mdpc@netcom.com>] PR#1827
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Previously Apache would permit </Files> to end <FilesMatch> (and
3d38596530c389610494e6a6ba70d9f5dc9717c5Andreas Gustafsson similary for Location and Directory), now this is diagnosed as an
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews error. Improve error messages for mismatched sections (<Files>,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews <FilesMatch>, <Directory>, <DirectoryMatch>, ...).
a7cb695600c3c14ac12676f0fb1e179690c5883cMark Andrews [Dean Gaudet, Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) <Files> is not permitted within <Location> (because of the
b19619260fbd447b0fe3e709b2cc8ae38f27ec3fMark Andrews semantic ordering). [Dean Gaudet] PR#379
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1500a4fe5da9475d5918b27b566a1278ec6b54ebAndreas Gustafsson *) <Files> with wildcards was broken by the change in wildcard
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews semantics (* does not match /). To fix this, <Files> now
1255d388f034dc556d235a002527101781dbeb29Mark Andrews apply only to the basename of the request filename. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fixes some other inconsistencies in <Files> semantics
c615c2ddce6c08e5a26d9ca61742a20fa8dc1938Mark Andrews (such as <Files a*b> not working). [Dean Gaudet] PR#1817
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Removed bogus "dist.tar" target from Makefile.tmpl and make sure
31d3464c0c0a35236c7924f698c5a8a66a9ed534Mark Andrews backup files are removed on "clean" target [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Add -lm to LIBS for HPUX. [Dean Gaudet] PR#1639
2f6d1483f665d86501049199b9698554da0eacb0Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various errors from select() and accept() in child_main() would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews result in an infinite loop. It seems these two tickle kernel
ea7b38cd1e5c6c9e099f1b3a702ba531bc4aba0aMark Andrews or library bugs occasionally, and result in log spammage and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a generally bad scene. Now the child exits immediately,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which seems to be a good workaround.
32d248107a5bc92b4bf9fc77deaa55b3da969ba2Andreas Gustafsson [Dean Gaudet] PR#1747, 1107, 588, 1787, 987, 588
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Cleaned up some race conditions in unix child_main during
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews initialization. [Dean Gaudet]
4574714ad44ba97f53425fe8d21b7ecb00ac83b9Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: "UserDir /abspath" without a * in the path would allow
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews remote users to access "/~.." and bypass access restrictions
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (but note /~../.. was handled properly).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lauri Jesmin <jesmin@ut.ee>] PR#1701
07eaf0b8d0c3c93d8139c413bf9cc8bba7db9432Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: os_is_path_absolute() now takes a const char * instead of a char *.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
cf70df7d0e24401a358f0b9c1a616ad0e8c783a6Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3b5
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9234d92d4e274791eff42cc4ea5766ed7a281b17Mark Andrews *) Source file dependencies in Makefile.tmpl files throughout the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews source tree were updated to accurately reflect reality.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
0cf9ce19cc05a60f85ec610106a983fe806ebb77Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Preserve the content encoding given by the AddEncoding directive
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when the client doesn't otherwise specify an encoding.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>]
2ba574f329c14376d26d7c0f22c89d7a978a2625Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Sort out problems with canonical filename handling happening too late.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet, Ben Laurie]
3c3fe072252aecffae43e6349125663c315b092dAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3b4
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The module structure was modified to include a *dynamic_load_handle
05a4a299b599195ca6ede9395b245956a8c3a790Mark Andrews in the STANDARD_MODULE_STUFF portion, and the MODULE_MAGIC_NUMBER
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews has been bumped accordingly. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3ad07fa335d40330cd1859da42e67f2457443990Andreas Gustafsson *) All BrowserMatch directives mentioned in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htdocs/manual/known_client_problems.html are in the default
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configuration files. [Lars Eilebrecht]
1094dec52a86e57df53f6167d86de94360a7a382Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) MiNT port update. [Jan Paul Schmidt]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) HTTP/1.1 requires x-gzip and gzip encodings be treated
fa2fb620c7c0a907b220c257007d8fb6d38bb3a4Andreas Gustafsson equivalent, similarly for x-compress and compress. Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews now ignores a leading x- when comparing encodings. It also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews preserves the encoding the client requests (for example if
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews it requests x-gzip, then Apache will respond with x-gzip
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in the Content-Encoding header).
62a3dbe63e833f2eaf613393399ea4667d8de28dAndreas Gustafsson [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1772
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a memory leak on keep-alive connections. [Igor Tatarinov]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added mod_so module to support dynamic loading of modules on Unix
9bdb01e6c382e897572791b12190472955994d87Mark Andrews (like mod_dld for Win32). This replaces mod_dld.c. Use SharedModule
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews instead of AddModule in Configuration to build shared modules
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Sameer Parekh, Paul Sutton]
e69b9ffb0f8b4d1117a682908c9143ebe3efcd6bAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Minor cleanups to r->finfo handling in some modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
a77ad145d0109081c5da6ac40a2303369db89735Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Abstract read()/write() to ap_read()/ap_write().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Makes it easier to add other types of IO code such as SFIO.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Randy Terbush]
61d5bfc06be978ea962b1c64309894ac80351771Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Generalize default_port manipulations to make support of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews different protocols easier. [Ben Laurie, Randy Terbush]
ada9b8ab20b81716c7ff1f4f3365929b2f7c8ff8Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) There are many cases where users do not want Apache to form
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews self-referential urls using the "canonical" ServerName and Port.
1beaa9e45738ad18cb7cae55aea95a1b16a14f94Andreas Gustafsson The new UseCanonicalName directive (default on), if set to off
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews will cause Apache to use the client-supplied hostname and port.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews API: Part of this change required a change to the construct_url()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews prototype; and the addition of get_server_name() and
bb60abb44549428414cd55a022f2b8cc4488f7adAndreas Gustafsson get_server_port().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Michael Douglass <mikedoug@texas.net>, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#315, 459, 485, 1433
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
024face21cdfbfc7a862a3be061e6780533ef755Andreas Gustafsson *) Yet another rearrangement of the source tree.. now all the common
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews header files are in the src/include directory. The -Imain -Iap
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews references in Makefiles have been changed to the simpler -Iinclude
1beaa9e45738ad18cb7cae55aea95a1b16a14f94Andreas Gustafsson instead. In addition to simplifying the build a little bit, this
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews also makes it clear when a module is referencing something in a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews other than kosher manner (e.g., the proxy including mod_mime.h).
f953788d75c7df2db43907c68da18ed75c235dd3Andreas Gustafsson Module-private header files (the proxy, mod_mime, the regex library,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and mod_rewrite) have not been moved to src/include; nor have
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the OS-abstraction files. [Ken Coar]
fbdde79262a4ba2bdf4bfae61167026b3220488aAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a bug where r->hostname didn't have the :port stripped
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews from it. [Dean Gaudet]
fbdde79262a4ba2bdf4bfae61167026b3220488aAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Tweaked the headers_out table size, and the subprocess_env
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews table size guess in rename_original_environment(). Added
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews MAKE_TABLE_PROFILE which can help discover make_table()
3fc4c1434d7ac377c720640e2e925a3af567cccbMark Andrews calls that use too small an initial guess, see alloc.c.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Options and AllowOverride weren't properly merging in the main
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews server setting inside vhosts (only an issue when you have no
0aba41458d345ea901cf945d47162e5f23647de9Mark Andrews <Directory> or other section containing an Options that affects
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a request). Options +foo or -foo in the main_server wouldn't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews affect the main_server's lookup defaults. [Dean Gaudet]
5f7516bee5ace9542701f23fc7723a3e3196802aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Variable 'cwd' was being used pointlessly before being set.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar] PR#1738
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2e24e82fc3551e3228bcacaa7c45cb61daa49195Mark Andrews *) r->allowed handling cleaned up in the standard modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d5169236b7260d447e672db8256fdd7c70f5ee1dMark Andrews *) Some case-sensitivity issues cleaned up to be consistent with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews RFC2068. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SIGURG doesn't exist everywhere.
df7596a03eea7f1c2df89bd63d3bd4b73f274565Mark Andrews [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_unique_id was erroneously generating a second unique id when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews an internal redirect occured. Such redirects occur, for example,
b923e278535b4e8d264998a85a6ae1eb4b3aa4c6Andreas Gustafsson when processing a DirectoryIndex match. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: table_add, table_merge, and table_set include implicit pstrdup()
ed2cefaf0ea367ee408cb7f6a54a413814240fa7Andreas Gustafsson of the key and value. But in many cases this is not required
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews because the key/value is a constant, or the value has been built
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by pstrcat() or other similar means. New routines table_addn,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews table_mergen, and table_setn have been added to the API, these
b923e278535b4e8d264998a85a6ae1eb4b3aa4c6Andreas Gustafsson routines do not pstrdup() their arguments. The core code and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews standard modules were changed to take advantage of these routines.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The resulting server is up to 20% faster in some situations.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
769ef0b7bdc9520dd62d2f440ea36bc020e88934Andreas Gustafsson Note that it is easy to get code subtly wrong if you pass a key/value
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which is in a pool other than the pool of the table. The only
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews safe thing to do is to pass key/values which are in the pool of
9e46f410e716f73abb345be215ccb4c61782b718Andreas Gustafsson the table, or in one of the ancestors of the pool of the table.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews i.e. if the table is part of a subrequest, a value from the main
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request's pool is OK since the subrequest pool is a sub_pool of the
769ef0b7bdc9520dd62d2f440ea36bc020e88934Andreas Gustafsson main request's pool (and therefore has a lifespan at most as long as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the main pool). There is debugging code which can detect improper
b09f4e054cbe67b93a5ff62d511ee25945038943Mark Andrews usage, enabled by defining POOL_DEBUG. See alloc.c for more details.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dmitry Khrustalev <dima@bog.msu.su>, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
40dd9cb8cc240c33d820fe79f176ed51e4c06a1aMark Andrews *) More mod_mime_magic cleanup: fewer syscalls; should handle "files"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which don't exist on disk more gracefully; handles vhosts properly.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Update documentation to reflect the code -- if there's no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews MimeMagicFile directive then the module is not enabled.
96ea98af241ef00395f4e61de7e2dacfd9941afcMark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
54c4aa0f62aebeb01b6861ee068c1044433fe8feMark Andrews *) PORT: Some older *nix dialects cannot automatically start scripts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which begin with a #! interpreter line (the shell starts the scripts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews appropriately on these platforms). Apache now supports starting of
808b909f27c30d36b27efb5aa5ef2d18f83b6d4bAndreas Gustafsson "hashbang-scripts" when the NEED_HASHBANG_EMUL define is set.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer, with code from peter@zeus.dialix.oz.au (Peter Wemm)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews taken from tcsh]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
846474d5a6aa21cebb3e94243a11faa5c20200bfAndreas Gustafsson *) API: "typedef array_header table" removed from alloc.h, folks should
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews have been writing to use table as if it were an opaque type, but even
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews some standard modules got this wrong. By changing the definition
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to "typedef struct table table" module authors will receive compile
7655e78c366cc0d25e24e2a96ba58e04a96042faAndreas Gustafsson time warnings that they're doing the wrong thing. This change
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews facilitates future changes with more sophisticated table
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews structures. Specifically, module authors should be using table_elts()
6859033d425170380bcfac4809257bc6e9b60383Andreas Gustafsson to get access to an array_header * for the table. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Renamed new_connection() to avoid namespace collision with LDAP
f558da602e8b74ed181d9189f20bf32dfa6d8723Brian Wellington library routines. [Ken Coar, Rasmus Lerdorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: mod_speling is now available on the Win32 platform.
ff4322d44f8404683b6fb6c86a38a2bc14f6c083Andreas Gustafsson [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) For clarity the following compile time definition was changed:
8d146b6e1156f5b562af9a4a9aba76b09650412cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SAFE_UNSERIALIZED_ACCEPT -> SINGLE_LISTEN_UNSERIALIZED_ACCEPT
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Also, for example, HAVE_MMAP would mean to use mmap() scoreboards
808b909f27c30d36b27efb5aa5ef2d18f83b6d4bAndreas Gustafsson and not be a general notice that the OS has mmap(). Now the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HAVE_MMAP/SHMGET #defines strictly are informational that the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews OS has that method of shared memory; the type to use for
640923da589bc5b8492ac407ef89ea1ee9a1c358Andreas Gustafsson the scoreboard is a seperate #define (USE_MMAP_SCOREBOARD
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and USE_SHMGET_SCOREBOARD). This allows outside modules to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews determine if shared memory is available and allows Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to determine the best method to use for the scoreboard.
d9e690eb71bde3c748208733ba40a34e9d0ba29dAndreas Gustafsson [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1299e93989afbe1fee0739811b05fd1641ea14aeAndreas Gustafsson *) PORT: UnixWare 2.1.2 SMP appears to require USE_FCNTL_SERIALIZED_ACCEPT,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews as do various earlier versions. It should be safe on all versions.
640923da589bc5b8492ac407ef89ea1ee9a1c358Andreas Gustafsson Unixware 1.x appears to have the same SIGHUP bug as solaris does with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the slack code. A few other cleanups for Unixware.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Tom Hughes <thh@cyberscience.com>] PR#1082, PR#1282, PR#1499, PR#1553
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0bd1b2fbfed4aa489e9d5fcbc7f48acb96ba7248Mark Andrews *) PORT: A/UX can handle single-listen accepts without mutex
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews locking, so we add SINGLE_LISTEN_UNSERIALIZED_ACCEPT. [Jim Jagielski]
aa30ee42c4b6da9bab4fb84d6cbbda6036a4d426Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When die() happens we need to eat any request body if one exists.
1de63e34f163b7a4708a6ad1779f93ae7636b92eAndreas Gustafsson Otherwise we can't continue with a keepalive session. This shows up
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews as a POST problem with MSIE 4.0, typically against pages which are
01446841be2b73f9a2ead74056df2d5342414041Andreas Gustafsson authenticated. [Roy Fielding] PR#1399
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If you define SECURITY_HOLE_PASS_AUTHORIZATION then the Authorization
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews header will be passed to CGIs. This is generally a security hole, so
28cf7340b9c82fc62ca1a1782cb1bd7b0de11aebAndreas Gustafsson it's not a default. [Marc Slemko] PR#549
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix Y2K problem with date printing in suexec log.
1de63e34f163b7a4708a6ad1779f93ae7636b92eAndreas Gustafsson [Paul Eggert <eggert@twinsun.com>] PR#1343
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
feb1f6a4ac42988558ecb8dc5dc0c974ec1f0509Brian Wellington *) WIN32 deserves a pid file. [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d1a6976967d6cfd93f5a8d80878215691ac8fe74Mark Andrews *) suexec errors now include the errno/description. [Marc Slemko] PR#1543
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: OSF/1 now uses USE_FLOCK_SERIALIZED_ACCEPT to solve PR#467.
5e4c83cfec3f267ea8f22fbb535c61434c94d43cDanny Mayer The choice of flock vs. fcntl was made based on timings which showed that
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews even on non-NFS, non-exported filesystems fcntl() was an order of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews magnitude slower. It also uses SINGLE_LISTEN_UNSERIALIZED_ACCEPT so
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews that single socket users will see no difference. [Dean Gaudet] PR#467
e6f17474cb43a138bf7fc9ad30c6b3a2847cb7a7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "File does not exist" error message was erroneously including the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews errno. [Marc Slemko]
5fe21da364d4397c9a413fe689ce82dea36a7b29Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improve the warning message generated when a client drops the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews connection (hits stop button, etc.) during a send. [Roy Fielding]
43efd9fa56b03e3e285fb58859efc9348c7f4a9fMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Defining GPROF will disable profiling in the parent and enable it
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in the children. If you're profiling under Linux this is pretty much
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews necessary because SIGPROF is lost across a fork(). [Dean Gaudet]
36e37042c6c9252cdf6eb99bd71ccb6e6c43ba6dBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) htdigest and htpasswd needed slight tweaks to work on OS/2 and WIN32.
98e231525fda817d393ef0c529b50bfc08cebe47Mark Andrews [Brian Havard]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The NeXT cc (which is gcc hacked up) doesn't appear to support some
d4196128b31d511c8513edacc70dea7e8d0c053aMark Andrews gcc functionality. Work around it.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Keith Severson <keith@sssd.navy.mil>] PR#1613
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
56d69016f4fae2eda4d39c92fe13595251aaadd3Mark Andrews *) Some linkers complain when .o files contain no functions.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Keith Severson <keith@sssd.navy.mil>] PR#1614
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Some const declarations in mod_imap.c that were added for debugging
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews purposes caused some compilers heartburn without adding any
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews significant value, so they've been removed. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e60b3717f0e6f28d6fb2c5124ffb3bd31cc3a746Mark Andrews *) The src/main/*.h header files have had #ifndef wrappers added to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews insulate them against duplicate calls if they get included through
3d8ab44d14f3de797b8454fc2edb7421a6bfc874Andreas Gustafsson multiple paths (e.g., in .c files as well as other .h files).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar]
3426f7118c92cab8714a7fddc9e721ff09554447Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The libap routines now have a header file for their prototypes,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews src/ap/ap.h, to ease their use in non-httpd applications. [Ken Coar]
db235e65884c04058cc6e99ca485170d67cf9538Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_autoindex with a plaintext header file would emit the <PRE>
64a5004a66accd190bfd5ddf115667726537be50Andreas Gustafsson start-tag before the HTML preamble, rather than after the preamble
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews but before the header file contents. [John Van Essen <jve@gamers.org>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#1667
64a5004a66accd190bfd5ddf115667726537be50Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Fix a possible buffer overflow in logresolve. This is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only an issue on systems without a MAXDNAME define or where
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the resolver returns domain names longer than MAXDNAME. [Marc Slemko]
b1ae7a591a4b99a26036e919b87247b65abfcd77Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
6dbc6fae496db1f584c055e63bcd7afd332fe8f6Andreas Gustafsson is used to read various types of files such as htaccess and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htpasswd files. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cab0ee644db604d56b45ec39429d505d635da347Andreas Gustafsson *) SECURITY: Ensure that the buffer returned by ht_time is always
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly null terminated. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The "Connection" header could be sent back with multiple "close"
7780a3e5a4659bb8fc44f8915d20a8d3ffa33e00Andreas Gustafsson tokens. Not an error, but a waste.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ronald.Tschalaer@psi.ch] PR#1683
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6dbc6fae496db1f584c055e63bcd7afd332fe8f6Andreas Gustafsson *) mod_rewrite's RewriteLog should behave like mod_log_config, it
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews shouldn't force hostname lookups. [Dean Gaudet] PR#1684
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "basic" auth needs a case-insensitive comparison.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ronald.Tschalaer@psi.ch] PR#1666
847169dab2d0496df1d66842b2cce67c66bf9680Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) For maximum portability, the environment passed to CGIs should
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only contain variables whose names match the regex
3f543c371fff724d1fb05eb564f732476e946b5bBrian Wellington /[a-zA-Z][a-zA-Z0-9_]*/. This is now enforced by stamping
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews underscores over any character outside the regex. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews affects HTTP_* variables, in a way that should be backward
847169dab2d0496df1d66842b2cce67c66bf9680Andreas Gustafsson compatible for all the standard headers; and affects variables
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews set with SetEnv/BrowserMatch and similar directives.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
9aba20edee4e704433a464ae43b070b0775de506Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_speling returned incorrect HREF's when an ambigous match
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was found. Noticed by <robinton@amtrash.comlink.de> (Soeren Ziehe)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [robinton@amtrash.comlink.de (Soeren Ziehe), Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e8d86192fc424f49e43df9cee439ca5c793e6000Mark Andrews *) PORT: Apache now compiles & runs on an EBCDIC mainframe
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (the Siemens BS2000/OSD family) in the POSIX subsystem
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer]
bae5d9fcb4616005fbc861e327b0a48b7bd4d89aMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Fix problem killing children when terminating. Allow ^C
98a5dc52bf668b093cda7901c057f7b54e18a2fcAndreas Gustafsson to shut down the server. [Brian Havard]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) pstrdup() is implicit in calls to table_* functions, so there's
98a5dc52bf668b093cda7901c057f7b54e18a2fcAndreas Gustafsson no need to do it before calling. Clean up a few cases.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
98a5dc52bf668b093cda7901c057f7b54e18a2fcAndreas Gustafsson *) new -C and -c command line arguments
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews usage:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews -C "directive" : process directive before reading config files
452b30ddb32dd9370b2e5ee10427dd3758ef98b4Mark Andrews -c "directive" : process directive after reading config files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews example:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews httpd -C "PerlModule Apache::httpd_conf"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern, Martin Kraemer]
6668eca26bf3123750afda48b69991bd29d83807Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Fix the execution of CGIs that are scripts and called
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with path info that does not have an '=' in.
06a960c681566a163af5b9a655cf36023075ddcbMark Andrews (eg. http://server/cgi-bin/printenv?foobar)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko] PR#1591
cad3210bb95057a37aaed20bc8a1542e0534422cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Fix a call to os_canonical_filename so it doesn't try to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mess with fake filenames. This fixes proxy caching on
cad3210bb95057a37aaed20bc8a1542e0534422cAndreas Gustafsson win32. PR#1265
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: General mod_include cleanup, including fixing several
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews possible buffer overflows and a possible infinite loop.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet, Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
afeded2289de8d193b072da2b44a2d580cc235c1Danny Mayer *) SECURITY: Numerous changes to mod_imap in a general cleanup
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews including fixing a possible buffer overflow. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
afeded2289de8d193b072da2b44a2d580cc235c1Danny Mayer *) WIN32: overhaul of multithreading code. Shutdowns are now graceful
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (connections are not dropped). Code can handle graceful restarts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (but there is as yet no way to signal this to Apache). Various
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews other cleanups. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
89555ff443c8127a533f6c742316c9b1a713cfd5Mark Andrews *) The aplog_error changes specific to 1.3 introduced a buffer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews overrun in the (now legacy) log_printf function. Fixed.
aa9a67adeb48069f5c2e5d8936a8ed5aac7d6ad7Andreas Gustafsson [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_digest didn't properly deal with proxy authentication. It
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews also lacked a case-insensitive comparision of the "Digest"
73ac1894ea64bc50aff7406872d0e9c5df6d9cf6Mark Andrews token. [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1599
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A few cleanups in mod_status for efficiency. [Dean Gaudet]
330b421487d7c3a5e699472fe889aa633772057fMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A few cleanups in mod_info to make it thread-safe, and remove an
e22dca2a9ad30d493a869586abed86f7268204f9Mark Andrews off-by-5 bug that could hammer \0 on the stack. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed *) no2slash() was O(n^2) in the length of the input. Make it O(n).
2c0b26955ee32fcee1757ec1be5a8caf8fe695a6Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: migration from strncpy() to our "enhanced" version called
2449f41e75d3b3f1c0ec3f05b1603fd8f80d8ae0Mark Andrews ap_cpystrn() for performance and functionality reasons.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Located in libap.a. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6f7660093e70d3a7c80738b681ac0f5c1b661c00Mark Andrews *) table_set() and table_unset() did not deal correctly with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews multiple occurrences of the same key.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Stephen Scheck <sscheck@infonex.net>, Ben Laurie] PR#1604
1fdbadc594a49b423052ea342dac74ff1a36089dMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The AuthName must now be enclosed in quotes if it is to contain
a1898260ad19d02e88ab76c1855d33c67add9defMark Andrews spaces. [Ken Coar] PR#1195
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: new function: ap_escape_quotes(). [Ken Coar] PR#1195
c0b6c1a5ab50722793cb99b0d8a1e9e910c146a5Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Work around optimiser bug that killed ISAPI in release
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews versions. [Ben Laurie] PR#1533
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Update the MPE port [Mark Bixby, Jim Jagielski]
d16b4e8ba885a45933dc6a46f340b76811d60c74Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Interim (slow) fix for p->sub_pool critical sections in
de9833be77ef92c17b35c02d138a0ad8df34dd91Mark Andrews alloc.c (affects win32 only). [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) non-WIN32 was missing destroy_mutex definition. [Ben Hyde]
4e400cb7a2edd25af98ebc25fcbb5b36ca08f9a0Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) send_fd_length() did not calculate total_bytes_sent properly.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Reser <breser@regnow.com>] PR#1366
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
ec5a06ccf7b15f07d20fd872c3dc1ab8f82f2ceaMark Andrews *) The bputc() macro was not properly integrated with the chunking
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code; in many cases modules using bputc() could cause completely
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews bogus chunked output. (Typically this will show up as problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with Internet Explorer 4.0 reading a page, but other browsers
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews having no problem.) [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Create LARGE_WRITE_THRESHOLD define which determines how many
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews bytes have to be supplied to bwrite() before it will consider
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews doing a writev() to assemble multiple buffers in one system
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews call. This is critical for modules such as mod_include,
23a020bc1312fc35e7c4ea36df846c550cb13634Andreas Gustafsson mod_autoindex, mod_php3 which all use bputc()/bputs() of smaller
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews strings in some cases. The result would be extra effort
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews setting up writev(), and in many cases extra effort building
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews chunks. The default is 31, it can be overriden at compile
0a532842050020a1b0577c65f91f38bd022daa78Andreas Gustafsson time. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Move the gid switching code into the child so that log files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and pid files are opened with the root gid.
23a020bc1312fc35e7c4ea36df846c550cb13634Andreas Gustafsson [Gregory A Lundberg <lundberg@vr.net>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Check for binaries by looking for the executable header
ab3eaa20e9a7e56208408563c79b4f8ac01d5e84Andreas Gustafsson instead of counting control characters.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Patterson <Jim.Patterson@Cognos.COM>] PR#1340
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e1a153c3f095e217eea29958950fea36e54862ceAndreas Gustafsson *) ap_snprintf() moved from main/util_snprintf.c to ap/ap_snprintf.c
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews so the functionality is available to applications other than the
7250c1a2616761395bdb9ae7cd1ba43f20d3edc4Andreas Gustafsson server itself (like the src/support tools). [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ap_slack() moved out of main/util.c into ap/ap_slack.c as part of
a5b9c2b208b51b039c8f4006cddf3d37dd781561Brian Wellington the libap consolidation work. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ap_snprintf() with a len of 0 behaved like sprintf(). This is not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews useful, and isn't what the standards require. Now it returns 0
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and writes nothing. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When an error occurs in fcntl() locking suggest the user look up
22f0b13f28a7df3b348b18848d0ccd745ea88c3cAndreas Gustafsson the docs for LockFile. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Eliminate some dead code from writev_it_all().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
ee3ab6063dd13b5947d3fbe88b9ce8f38d65df9dBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_autoindex had an fread() without checking the result code.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews It also wouldn't handle "AddIconByType (TXT,/icons/text.gif text/*"
d81622b537be1971530cfb459acdbbe7d82d883bBrian Wellington (note the missing closing paren) properly. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a5b9c2b208b51b039c8f4006cddf3d37dd781561Brian Wellington *) It appears the "257th byte" bug (see
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews at the 256th byte as well. Fixed. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2da0b7dfbd02fab454b8ba60f1fdb7e2a5cbd2dbMark Andrews *) PORT: Fix mod_mime_magic under OS/2, no support for block devices.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Brian Havard]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1cb6e8cbe41afade950837319e04da4ccf8649e0Brian Wellington *) Fix memory corruption caused by allocating auth usernames in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews wrong pool. [Dean Gaudet] PR#1500
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6443201354efa09f16ada26dab99e9b7f8271521Andreas Gustafsson *) Fix an off-by-1, and an unterminated string error in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_mime_magic. [Dean Gaudet]
6443201354efa09f16ada26dab99e9b7f8271521Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a potential SEGV problem in mod_negotiation when dealing
e980502db40155234b4e8d320b748b34dbaba3a2Brian Wellington with type-maps. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Better glibc support under Linux. [Dean Gaudet] PR#1542
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ecd1addb86319bacc6c0bff2c68373619eebbffcMark Andrews *) "RedirectMatch gone /" would cause a SIGSEGV. [Dean Gaudet] PR#1319
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ea20115e347264b9bc1c686d6dfc1b5af3a5516bAndreas Gustafsson *) WIN32: avoid overflows during file canonicalisations.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [malcolm@mgdev.demon.co.uk] PR#1378
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
bddfe77128b0f16af263ff149db40f0d885f43d0Mark Andrews *) WIN32: set_file_slot() didn't detect absolute paths. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#1511, 1508
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
aa0dc8d920a1f79626c3564408db9c5c9a5319a7Andreas Gustafsson *) WIN32: mod_status display header didn't match fields. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
aa0dc8d920a1f79626c3564408db9c5c9a5319a7Andreas Gustafsson *) The pthread_mutex_* functions return an error code, and don't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews set errno. [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
35db8a8eda6a889675138eb125d366c8851f68a5Andreas Gustafsson *) WIN32: Allow spaces to prefix the interpreter in #! lines.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie] PR#1101
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0d5e7cd0afaee07302f8364aa454f09b4c63ea79Andreas Gustafsson *) WIN32: Cure file leak in CGIs. [Peter Tillemans <pti@net4all.be>] PR#1523
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5e88852b94830bf71e37dc700d568cb35e2e6f7eAndreas Gustafsson *) proxy_ftp: the directory listings generated by the proxy ftp module
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews now have a title in which the path components are clickable and allow
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews quick navigation to the clicked-on directory on the currently listed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ftp server. This also fixes a bug where the ".." directory links would
22815444822da17fab82d4ab115da6e055ea1754Brian Wellington sometimes refer to the wrong directory. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Allocate the correct amount of memory for the scoreboard.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Hyde] PR#1387
35db8a8eda6a889675138eb125d366c8851f68a5Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Only lowercase the part of the path that is real. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#1505
bd6504aa9aa16a912412fbe010046aaf4bf23621Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix problems with timeouts in inetd mode and -X mode. [Dean Gaudet]
bd6504aa9aa16a912412fbe010046aaf4bf23621Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the spurious "(0)unknown error: mmap_handler: mmap failed"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews error messages. [Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3b3
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1e289d3cca5cdd01dda650fa6e4c1de1aa8b4196Andreas Gustafsson *) WIN32: Work around brain-damaged spawn calls that can't deal
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with spaces and slashes. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c54210716ee55b55e22d8dad56fd696a641fc98dBob Halley *) WIN32: Fix the code so CGIs can use socket calls on Windows.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The problem was that certain undocumented environment variables
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews needed for sockets to work under Win32 were not being passed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Frank Faubert <frank@sane.com>]
3fcf6b956f47405750724bd84e1b2290b61c9186Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add a "-V" command line flag to the httpd binary. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews flag shows some of the defines that Apache was compiled with.
0a2d5c990559ce2b9f95df752db6e93024d9a250Brian Wellington It is useful for debugging purposes. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Start separating the ap_*() routines into their own library, so they
96ed62425310854fd6f6f06bfb7651b3e4c17ee7Andreas Gustafsson can be used by items in src/support among other things.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar] PR#512, 905, 1252, 1308
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
96ed62425310854fd6f6f06bfb7651b3e4c17ee7Andreas Gustafsson *) Give a more informative error when no AuthType is set.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5733d25b06b46067b3751d10436d82aef09cd705Brian Wellington *) Remove strtoul() use from mod_proxy because it isn't available
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on all platforms. [Marc Slemko] PR#1214
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5733d25b06b46067b3751d10436d82aef09cd705Brian Wellington *) WIN32: Some Win32 systems terminated all responses after 16 kB.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This turns out to be a bug in Winsock - select() doesn't always
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews return the correct status. [Ben Laurie]
debff476ad3512687a354499c25d2793e2009acdBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Directives owned by http_core can now use the new check_cmd_context()
eb6e3b04169a766d2b968bcc978191605c2ef24cAndreas Gustafsson routine to ensure that they're not being used within a container
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (e.g., <Directory>) where they're invalid. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7d8c3693d0426b56750b14d80c47df5e42fc75e4Andreas Gustafsson *) PORT: Recent changes made it necessary to add explicit prototype
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for fgetc() and fgets() on SunOS 4.x. [Martin Kraemer, Ben Hyde]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) It was necessary to distinguish between resources which are
fed846067d265db1037483d81d01f3651c8a3f28Brian Wellington allocated in the parent, for cleanup in the parent, and resources
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which are allocated in each child, for cleanup in each child.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews A new pool was created which is passed to the module child_init
a26ad011f382d12058478704cb5e90e6f4366d01Andreas Gustafsson and child_exit functions; modules are free to register per-child
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews cleanups there. This fixes a bug with reliable piped logs.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7d8c3693d0426b56750b14d80c47df5e42fc75e4Andreas Gustafsson *) mod_autoindex wasn't displaying the ReadmeName file at the bottom
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews unless it was also doing FancyIndexes, but it displayed the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HeaderName file at the top under all circumstances. It now shows
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the ReadmeName file for simple indices, too, as it should.
07c336a9a85791dff886b1e28514589a25d9b720Andreas Gustafsson [Ken Coar] PR#1373
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) http_core was mmap()ing even in cases where it wasn't going to
07c336a9a85791dff886b1e28514589a25d9b720Andreas Gustafsson read the file. [Ben Hyde <bhyde@gensym.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Complete rewrite ;-) of mod_rewrite's URL rewriting engine:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Now the rewriting engine (the heart of mod_rewrite) is organized more
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews straight-forward, first time well documented and reduced to the really
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews essential parts. All redundant cases were stripped off and processing now
712fa28946312882a60b0c6a913914d3e8c69867Mark Andrews is the same for both per-server and per-directory context with only a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews minimum difference (the prefix stripping in per-dir context). As a
63fd201fde27ce408cde1c73a054e401fcfb9e3bDavid Lawrence side-effect some subtle restrictions and two recently discovered problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are gone: Wrong escaping of QUERY_STRING on redirects in per-directory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews context and restrictions on the substitution URL on redirects.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews Additionally some minor source cleanups were done.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
f8644da8d948dbc973f6dd4c94a79774e16ec07bDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Lars Eilebrecht wrote a whole new set of Apache Vhost Internals
9bfa90768ab83ea5a8571c98d3774377da4bdcbeDavid Lawrence documentation, examples, explanations and caveats. They live in a new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews subdirectory htdocs/manual/vhost/. [Lars Eilebrecht <sfx@unix-ag.org>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If ap_slack fails to allocate above the low slack line it's a good
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews indication that further problems will occur; it's a better indication
2d67c2474475acf52c8251dc48bfb7565ee5f2ffDavid Lawrence than many external libraries give us when we actually run out of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews descriptors. So report it to the user once per restart.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#1181
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6a7a69e9f764812872ec2db775be2ac8bb073102Andreas Gustafsson *) Change mod_include and mod_autoindex to use Y2K-safe date formats
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by default. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0a9a3d8c6daf9ffcfb62dbe366e26f521cbb9736Brian Wellington *) Add a "SuppressColumnSorting" option to the IndexOptions list,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which will keep the column heading from being links for sorting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the display. [Ken Coar, suggested by Brian Tiemann <btman@pacific.net>]
34d5676aac483e00e16056a6834a27b52bed42f0Brian Wellington PR #1261
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Update the LynxOS port. [Marius Groeger <mag@sysgo.de>]
1d9ab721315555ac75e7d4f57585323909283688Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix logic error when issuing a mmap() failed message
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with a non-zero MMAP_THRESHOLD.
ef8d97818f0d30a4e09db97af695f504b311372cMark Andrews [David Chambers <davidc@flosun.salk.edu>] PR#1294
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6af5c66df334c4e275e07b03c9b35e40dbaa4f31Andreas Gustafsson *) Preserve handler value on ProxyPass'ed requests by not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews calling find_types on a proxy'd request; fixes problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews where some ProxyPass'ed URLs weren't actually passed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the proxy.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht] PR#870
519f8475ff8218e3981ae2b249eb1403da7c52f6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a byte ordering problem in mod_access which prevented
edc1c60621b44fbc8131ad1542f657dd129f9a30Andreas Gustafsson the old-style syntax (i.e. "a.b.c." to match a class C)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews from working properly. [Dean Gaudet] PR#1248, 1328, 1384
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix problem with USE_FLOCK_SERIALIZED_ACCEPT not working
41626c0997c89dcdecf67c931f0031aadd507977Andreas Gustafsson properly. Each child needs to open the lockfile instead
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of using the passed file-descriptor from the parent.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski] PR#1056
464c2e4bb960d15bd60d53c3ef3ae7414b129037David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix the error logging in mod_cgi; the recent error log changes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews introduced a bug that prevented it from working correctly.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [M.D.Parker] PR#1352
6112718b0dbb01ffbfd3fabc61e30c7e4485b0a7David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Default to USE_FCNTL_SERIALIZED_ACCEPT on HPUX to properly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews handle multiple Listen directives. [Marc Slemko] PR#872
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Inherit a bugfix to fnmatch.c from FreeBSD sources.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ["[KOI8-R] ������ ������" <ache@nagual.pp.ru>] PR#1311
04260c5c48d234734863f0222e207b6564cd41a8David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When a configuration parse complained about a bad directive,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the logger would use whatever (unrelated) value was in errno.
6c35e4dd17e6562a6b4d106cbf1d824b9f529356David Lawrence errno is now forced to EINVAL first in this case. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A sed command in the Configure script pushed the edge of POSIXness,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews breaking on some systems. [Bhaba R.Misra <system@vt.edu>] PR#1368
504f7802d4c9b43db4820f496c4d00e078effa18David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Solaris >= 2.5 was totally broken due to a mess up using pthread
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mutexes. [Roy Fielding, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6af5c66df334c4e275e07b03c9b35e40dbaa4f31Andreas Gustafsson *) OS/2 Port updated; it should be possible to build OS/2 from the same
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sources as Unix now. [Brian Havard <brianh@kheldar.apana.org.au>]
841179549b6433e782c164a562eb3422f603533dAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix a year formatting bug in mod_usertrack.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Paul Eggert <eggert@twinsun.com>] PR#1342
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A mild SIGTERM/SIGALRM race condition was eliminated.
f808bd34fbd3dd9508e8183e8025635bc330c34aAndreas Gustafsson [Dean Gaudet] PR#1211
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Warn user that default path has changed if /usr/local/etc/httpd
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is found on the system. [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
841179549b6433e782c164a562eb3422f603533dAndreas Gustafsson *) Various mod_mime_magic bug fixes and cleanups: Uncompression
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews should work, it should work on WIN32, and a few resource
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews leaks and abort conditions are fixed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#1205
6c6a6c9f5e2b3c6fd72263eac155e4feddb77316Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: On AIX 1.x files can't be named '@', fix the proxy cache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to use '%' instead of '@' in its encodings.
2445d14b1a95132a473aa30076d0ce1762027e76Mark Andrews [David Schuler <schuld@btv.ibm.com>] PR#1317
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improve the warning message generated when the "server is busy".
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews [Dean Gaudet] PR#1293
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) PORT: All ports which don't otherwise define DEF_WANTHSREGEX will
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews get Spencer regex by default. This is to avoid having to
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews discover bugs in operating system libraries. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) PORT: "Fix" PR#467 by generating warnings on systems which we have
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not been able to get working USE_*_SERIALIZED_ACCEPT settings for.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews Document this a bit more in src/PORTING. [Dean Gaudet] PR#467
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) Ensure that one copy of config warnings makes it to the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews error_log. [Dean Gaudet]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Invent new structure and associated methods to handle config file
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews reading. Add "custom" hook to use config file cfg_getline() on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews something which is not a FILE* [Martin Kraemer]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make single-exe Windows install. [Ben Laurie and Eric Esselink]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Make CGI work under Win95. [Ben Laurie and Paul Sutton]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Make index.html and friends work under Win95. [Ben Laurie]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Solaris 2.4 needs Spencer regex, the system regex is broken.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews [John Line <jml4@cam.ac.uk>] PR#1321
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) Default pathname has been changed everywhere to /usr/local/apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Sameer <sameer@c2.net>]
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: AIX now uses USE_FCNTL_SERIALIZED_ACCEPT.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews [David Bronder <David-Bronder@uiowa.edu>] PR#849
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) PORT: i386 AIX does not have memmove.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Schuler <schuld@btv.ibm.com>] PR#1267
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: HPUX now defaults to using Spencer regex.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews [Philippe Vanhaesendonck <pvanhaes@be.oracle.com>,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Omar Del Rio <al112263@academ01.lag.itesm.mx>] PR#482, 1246
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Some versions of NetBSD don't automatically define
ed0e1ae6bc3df39389a24d72cf544b2437bf8340Andreas Gustafsson __NetBSD__. Workaround by defining NETBSD.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chris Craft <ccraft@cncc.cc.co.us>] PR#977
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
56877490bc70e4004f6b5e4a16067750ca64be85Andreas Gustafsson *) PORT: UnixWare 2.x requires -lgen for syslog.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Hans Snijder <hs@meganet.nl>] PR#1249
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: ULTRIX appears to not have syslog.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Basic Gemini port (treat it like unixware212).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ["Pavel Yakovlev (Paul McHacker)" <hac@tomcat.olly.ru>]
af0be81b2f6ea700dd882d3b18468c7815bd5ef2Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: All SVR4 systems now use NET_SIZE_T = size_t, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews use USE_SHMGET_SCOREBOARD.
ed0e1ae6bc3df39389a24d72cf544b2437bf8340Andreas Gustafsson [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various improvements in detecting config file errors (missing closing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directives for <Directory>, <Files> etc. blocks, prohibiting global
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews server settings in <VirtualHost> blocks, flagging unhandled multiple
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews arguments to <Directory>, <Files> etc.)
6cefb60af55912df4411389bccfc38a74e992332Mark Andrews [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add support to suexec wrapper program for mod_unique_id's UNIQUE_ID
02e81689e3eff98a8d70c98a7cc45c150472316aBrian Wellington variable to provide this one to suexec'd CGIs, too.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [M.D.Parker <mdpc@netcom.com>] PR#1284
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) New support tool: src/support/split-logfile, a sample Perl script which
dccd7f8459d811141fde04d4a307b9b695cf58b1David Lawrence splits up a combined access log into separate files based on the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews name of the virtual host (listed first in the log records by "%v").
dccd7f8459d811141fde04d4a307b9b695cf58b1David Lawrence [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark AndrewsChanges with Apache 1.3b2 (there is no 1.3b1)
dccd7f8459d811141fde04d4a307b9b695cf58b1David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) TestCompile was not passing $LIBS [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Makefile.tmpl was not using $CFLAGS in the link phase.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer]
dccd7f8459d811141fde04d4a307b9b695cf58b1David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add debugging code to alloc.c. Defining ALLOC_DEBUG provides a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews rudimentary memory debugger which can be used on live servers with
03f91269f5453bcbd924910ef85a8f8496cf2661Mark Andrews low impact -- it sets all allocated and freed memory bytes to 0xa5.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Defining ALLOC_USE_MALLOC will cause the alloc code to use malloc()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and free() for each object. This is far more expensive and should
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only be used for testing with tools such as Electric Fence and
afb0a628efd8ecf40f66f6b8d0711bca62be2a9aMark Andrews Purify. See main/alloc.c for more details. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
17dba29ba5db791976e505114baee53a1dde88aaBrian Wellington *) Configure uses a sh trap and didn't set its exitcode properly.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#1159
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Yet another vhost revamp. Add the NameVirtualHost directive which
b5a86fe434c7d58d28af3b5c70c1743979f13aaeMark Andrews explicitly lists the ip:port pairs that are to be used for name-vhosts.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews From a given ip:port, regardless what the Host: header is, you can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only reach the vhosts defined on that ip:port. The precedence of
3042b3e2711d00b7fd9ffbf51443ad761d30427fMark Andrews vhosts was reversed to match other precedences in the config --
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the earlier vhosts override the later vhosts. All vhost matching was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews moved into http_vhost.[ch]. [Dean Gaudet]
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ap_inline can be used to force inlining. GNUC __attribute__() can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be used for whatever reason is appropriate (i.e. format() warnings
af0be81b2f6ea700dd882d3b18468c7815bd5ef2Andreas Gustafsson for printf style functions). Both are enabled only with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews gcc >= 2.7.x (so that we have fewer support issues with older
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence versions). [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix support for Proxy Authentication (we were testing the response
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews status too early). [Marc Slemko]
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) CoreDumpDirectory directive directs where the core file is
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence written when a SIGSEGV, SIGBUS, SIGABORT or SIGABRT are
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews received. [Marc Slemko, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence *) PORT: Support for Atari MINT.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jan Paul Schmidt <Jan.P.Schmidt@mni.fh-giessen.de>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When booting, apache will now detach itself from stdin, stdout,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and stderr. stderr will not be detached until after the config
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews files have been read so you will be able to see initial error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews messages. After that all errors are logged in the error_log.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This makes it more convenient to start apache via rsh, ssh,
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence or crontabs. [Dean Gaudet] PR#523
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence Also removed the auto-generated link to www.apache.org that was the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews source of so many misdirected bug reports. [Roy Fielding, Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) send_fb would not detect aborted connections in some situations.
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include would use uninitialized data when parsing certain
adcd8c93196ad0a3516252d80597c3c52472ffb2David Lawrence expressions involving && and ||. [Brian Slesinsky] PR#1139
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_imap should only handle GET methods. [Jay Bloodworth]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_autoindex improperly counted &escapes; as more than one
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews character in the description. It also improperly truncated
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews descriptions that were exactly the maximum length.
5455f30a7532738d750252c00e649890c694ee30Brian Wellington [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e2fd12f3a020ca8c5de168a44fb72e339cdaa3e9Brian Wellington *) RedirectMatch was not properly escaping the result (PR#1155). Also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "RedirectMatch /advertiser/(.*) $1" is now permitted.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
cf74d05a50e342e5b3870005c04ae5ed8013ab3eBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include now uses symbolic names to check for request success
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and return HTTP errors, and correctly handles all types of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews redirections (previously it only did temporary redirect correctly).
2ae4dd0dbd50b3159476537c60ccdc8b64364356Mark Andrews [Ken Coar, Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_userdir was modifying r->finfo in cases where it wasn't setting
f3ac8ee19231ae3018ec21756f19b1bd639ce7e7Andreas Gustafsson r->filename. Since those two are meant to be in sync with each other
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this is a bug. ["Paul B. Henson" <henson@intranet.csupomona.edu>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f3ac8ee19231ae3018ec21756f19b1bd639ce7e7Andreas Gustafsson *) PORT: Support Unisys SVR4, whose uname returns mostly useless data.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ["Kaufman, Steven E" <Steven.Kaufman@unisys.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
82e991b8ed4e0ed3b010d191e0cadfd60226c2d9Andreas Gustafsson *) Inetd mode (which is buggy) uses timeouts without having setup the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews jmpbuffer. [Dean Gaudet] PR#1064
5ce23ccf3f324dc90ab9b4426b1da6284b0e2abfAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Work around problem under Linux where a child will start looping
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reporting a select error over and over.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rick Franchuk <rickf@transpect.net>] PR#1107, 987, 588
508d17362c2c43ddf95ddc87ae6a8c5f32f35323Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed error in proxy_util.c when looping through multiple host IP
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews addresses. [Lars Eilebrecht] PR#974
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If BUFFERED_LOGS is defined then mod_log_config will do atomic
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews buffered writes -- that is, it will buffer up to PIPE_BUF (i.e. 4k)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews bytes before writing, but it will never split a log entry across a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews buffer boundary. [Dean Gaudet]
e7a4f58d55042cbc981a70b5071aaea46b9ebf7fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: the short_score record has been split into two pieces, one which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the parent writes on, and one which the child writes on. As part of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this change the get_scoreboard_info() function was removed, and
5fdc9aaf401f6816df65d0e9cf701872f345c558Andreas Gustafsson scoreboard_image was exported. This change fixes a race condition
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in file based scoreboard systems, and speeds up changes involving the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews scoreboard in earlier 1.3 development. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6060b0ac76667afae3c9132ab6e3568a7a693f5dAndreas Gustafsson *) API: New register_other_child() API (see http_main.h) which allows
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules to register children with the parent for maintenance. It
50097b38c075be55a73bb3737d091c503c70061dBrian Wellington is disabled by defining NO_OTHER_CHILD. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
751aa24c98fea02215cad95a08411af547d70e41Bob Halley *) API: New piped_log API (see http_log.h) which implements piped logs,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and will use register_other_child to implement reliable piped logs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when it is available. The reliable piped logs part can be disabled
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by defining NO_RELIABLE_PIPED_LOGS. At the moment reliable piped
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews logs is only available on Unix. [Dean Gaudet]
fd5847ef0954117d5f905dbbfb68f1e67e4f285fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: set_last_modified() broken into set_last_modified(), set_etag(), and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews meets_conditions(). This allows conditional HTTP selection to be
82e991b8ed4e0ed3b010d191e0cadfd60226c2d9Andreas Gustafsson handled separately from the storing of the header fields, and provides
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the ability for CGIs to set their own ETags for conditional checking.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar, Roy Fielding] PR#895
82e991b8ed4e0ed3b010d191e0cadfd60226c2d9Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Changes to mod_log_config to allow naming of format strings.
69d44b2f5ac8e35bdb0b80aeb304f5cb62197892Mark Andrews Format nicknames are defined with "LogFormat fmt nickname", and can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be used with "LogFormat nickname" and "CustomLog logtarget nickname".
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar]
3242899a56da9c245956979d5be9c92b2cf0ee24Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) New module, "mod_speling", which can help find files even when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the URL is slightly misspelled. [Martin Kraemer, Alexei Kosut]
8fbd23c0aaacdde1348b6457c5db14c433096fd2Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: New function child_terminate() triggers the child process to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews exit, while allowing the child finish what it needs to for the
5f539d5fc68ca056bd1791e3156b0fe6b28cde16Brian Wellington current request first.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern, Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
76477bd0e0a8f150f06f45c347d286b782cfa679Brian Wellington *) Windows now defaults to using full status reports with mod_status.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexei Kosut] PR #1094
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) *Really* disable all mod_rewrite operations if the engine is off.
e491ef29043ae77d3d78fb7a59328f143fcf70feAndreas Gustafsson Some things (like RewriteMaps) were checked/performed even if they
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews weren't supposed to be. [Ken Coar] PR #991
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Implement a new timer scheme which eliminates the need to call alarm() all
1a286a6613d385b443030a8c932e40ac9e9c301fBob Halley the time. Instead a counter in the scoreboard for each child is used to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews show when the child has made forward progress. The parent samples this
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews counter every scoreboard maintenance cycle, and issues SIGALRM if no
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews progress has been made in the timeout period. This reduces the static
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request best-case syscall count to 22 from 29. This scheme is only
3242899a56da9c245956979d5be9c92b2cf0ee24Andreas Gustafsson used by systems with memory-based scoreboards. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The proxy now properly handles CONNECT requests which are sent
9ffcab1e9a398e431c10c9936c28e4166c2e82e0Andreas Gustafsson to proxy servers when using ProxyRemote. [Marc Slemko] PR#1024
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
de8717a7218a4f034144ad7b8755ad43e3fd45c9David Lawrence *) A script called apachectl has been added to the support
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory. This script allows you to do things such as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "apachectl start" and "apachectl restart" from the command
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews line. [Marc Slemko]
6f115bdb61672871bd822bdcd09cb1a3aad38aa0David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Modules and core routines are now put into libraries, which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews simplifies the link line tremendously (among other advantages).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5e194abb5b548524e5c0fd2bb4627ec698b75e2bAndreas Gustafsson *) Some of the MD5 names defined in Apache have been renamed to have
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews an `ap_' prefix to avoid conflicts with routines supplied by
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews external libraries. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5e194abb5b548524e5c0fd2bb4627ec698b75e2bAndreas Gustafsson *) Removal of mod_auth_msql.c from the distribution. There are many
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews other options for databases today. Rather than offer one option,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews offer none at this time. mod_auth_msql and other SQL database
09ae77ca30eb17ee32d3f7720ca796a72259cde6Andreas Gustafsson authentication modules can be found at the Apache Module Registry.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews http://modules.apache.org/ It would be nice to offer a generic
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_auth_sql option in the near future.
cedd0ab1e812ec7cf05d57c3e602db41b79f0a2aAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: BeOS support added [Alexei Kosut]
8c3989000a19f88415d094eb5984f7cf6ba2340cBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Configure no longer accepts the -make option, since it creates
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews Makefile on the fly based on Makefile.tmpl and Configuration.
ac6afcd0caf72aaa2a537e0003de30b363b4a68bBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Apache now gracefully shuts down when it receives a SIGTERM, instead
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of forcibly killing off all its processes and exiting without
c20ffa38dee7efa0dc01822d4bac5e41729b9b61Brian Wellington cleaning up. [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2b7a77a68e27fc7991a857d403cb34b2ae90fc0bMark Andrews *) API: A new field in the request_rec, r->mtime, has been added to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews avoid gratuitous parsing of date strings. It is intended to hold
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the last-modified date of the resource (if applicable). An
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews update_mtime() routine has also been added to advance it if
aed6a8ed2e706404ccca0f31faf110fd6efd34e6Andreas Gustafsson appropriate. [Roy Fielding, Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) SECURITY: If a htaccess file can not be read due to bad permissions,
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews deny access to the directory with a HTTP_FORBIDDEN. The previous
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews behavior was to ignore the htaccess file if it could not be read.
aed6a8ed2e706404ccca0f31faf110fd6efd34e6Andreas Gustafsson This change may make some setups with unreadable htaccess files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews stop working. [Marc Slemko] PR#817
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f8b3c627949bd4bc2f6aafb3dab2f56e3aa9ba06Brian Wellington *) Add aplog_error() providing a mechanism to define levels of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews verbosity to the server error logging. This addition also provides
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the ability to log errors using syslogd. Error logging is configurable
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on a per-server basis using the LogLevel directive. Conversion
55ddb88e53838693370c213930beda1652b8a583Brian Wellington of log_*() in progress. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Further enhance aplog_error() to not log filename, line number, and
daad43e5a4e83bd3c055632799ab67e269467db0Brian Wellington errno information when it isn't applicable. [Ken Coar, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Canonicalise filenames under Win32. Short filenames are
3efd6904134ef6c4866a633eabeb55d1c86be7bbBrian Wellington converted to long ones. Backslashes are converted to forward
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews slashes. Case is converted to lower. Parts of URLs that do not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews correspond to files are left completely alone. [Ben Laurie]
70d08aea0a693c6ca62c2f7bb33bfddf9e427601Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: 2 new OSs added to the list of ports:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Encore's UMAX V: Arieh Markel <amarkel@encore.com>
907620b5e0d898da324192cbbe5a5b518f55d175Bob Halley Acorn RISCiX: Stephen Borrill <sborrill@xemplar.co.uk>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add the server version (SERVER_VERSION macro) to the "server
2c9db9314993504064c1a71f4a059ff9493a75caBrian Wellington configured and running" entry in the error_log. Also build an
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews object file at link-time that contains the current time
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (SERVER_BUILT global const char[]), and include that in the
9027e1bcf1b245226e3053a75d16c5351d7e60caDavid Lawrence message. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Set r->headers_out when sending responses from the proxy.
9027e1bcf1b245226e3053a75d16c5351d7e60caDavid Lawrence This fixes things such as the logging of headers sent from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the proxy. [Marc Slemko] PR#659
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) support/httpd_monitor is no longer distributed because the
668f8d91db59f4dd89a0b54206f87879354339f5Brian Wellington scoreboard should not be file based if at all possible. Use
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_status to see current server snapshot.
d7ba3622ffa20c653ef6c8cfae42d8cd26465b7fBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) (set_file_slot): New function, allowing auth directives to be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews independent of the server root, so the server documents can be
c0968380c4fb0b8196aafb8de225531bd847bb6dBrian Wellington moved to a different directory or machine more easily.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David J. MacKenzie]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If no TransferLog is given explicitly, decline
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to log. This supports coexistence with other logging modules,
1d92d8a2456b23842a649b6104c60a9d6ea25333Brian Wellington such as the custom one that UUNET uses. [David J. MacKenzie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Check for titles in server-parsed HTML files.
b879ed05f4fb8209add6c19a509c984b6c8b3a98Andreas Gustafsson Ignore leading newlines and returns in titles. The old behavior
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of replacing a newline after <title> with a space causes the
b52a5b063050f209b0f47379178a1e7ae7404624Andreas Gustafsson title to be misaligned in the listing. [David J. MacKenzie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Change mod_cern_meta to be configurable on a per-directory basis.
34613b2e39478a83076f6a626a4b855cebb19533Andreas Gustafsson [David J. MacKenzie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add 'Include' directive to allow inclusion of configuration
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews files within configuration files. [Randy Terbush]
6eccf5bd07eb9abf65cc08fec4a8fc97b62c0e1bBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Proxy errors on connect() are logged to the error_log (nothing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews new); now they include the IP address and port that failed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (*that's* new). [Ken Coar, Marc Slemko] PR#352
3bd8e7cf1c082cd1021e5a6cae1cf21911217858Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various architectures now define USE_MMAP_FILES which causes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the server to use mmap() for static files. There are two
b8a85202af814468421a6541b4c935bd14773c53Brian Wellington compile-time tunables MMAP_THRESHOLD (minimum number of bytes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews required to use mmap(), default is 0), and MMAP_SEGMENT_SIZE (maximum
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews number of bytes written in one cycle from a single mmap()d object,
b879ed05f4fb8209add6c19a509c984b6c8b3a98Andreas Gustafsson default 32768). [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Added post_read_request API phase which is run right after reading
4c03e69ab845f703c1ffa3b7772938ca98cce44dAndreas Gustafsson the request from a client, or right after an internal redirect. It is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews useful for modules setting environment variables that depend only on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the headers/contents of the request. It does not run during subrequests
b0390aab30438a13f533cccae9389945214b1421Brian Wellington because subrequests inherit pretty much everything from the main
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added mod_unique_id which is used to generate a unique identifier for
54d64c7994d01da590462ecc56faf1a87fc4abb9Brian Wellington each hit, available in the environment variable UNIQUE_ID.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
4c03e69ab845f703c1ffa3b7772938ca98cce44dAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) init_modules is now called after the error logs have been opened. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews allows modules to emit information messages into the error logs.
225a66da7ea2671a3e4db3cc4337f97ff67be647Brian Wellington [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews information for case where proxy module is not available. [Marc Slemko]
279de54fe3a0ac10b64762b18a4569c07b15d742Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Apache has need for mutexes to serialize its children around
279de54fe3a0ac10b64762b18a4569c07b15d742Andreas Gustafsson accept. In prior versions either fcntl file locking or flock file
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews locking were used. The method is chosen by the definition of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews USE_xxx_SERIALIZED_ACCEPT in conf.h. xxx is FCNTL for fcntl(),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and FLOCK for flock(). New options have been added:
17789c880460c0bca3f3693c759be2214b936e69Brian Wellington - SYSVSEM to use System V style semaphores
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - PTHREAD to use POSIX threads (appears to work on Solaris only)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - USLOCK to use IRIX uslock
55b62439233d930152690b9eba97b06d9dc13d23Mark Andrews Based on timing various techniques, the following changes were made
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the defaults:
123a3dddc94534d3a6c6f81c118a5b63dc5994c3Andreas Gustafsson - Linux 2.x uses flock instead of fcntl
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Solaris 2.x uses pthreads
590233519e14f3cf49840a93d2648d5560dd957eDavid Lawrence - IRIX uses SysV semaphores -- however multiprocessor IRIX boxes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews work far faster if you -DUSE_USLOCK_SERIALIZED_ACCEPT
590233519e14f3cf49840a93d2648d5560dd957eDavid Lawrence [Dean Gaudet, Pierre-Yves Kerembellec <Pierre-Yves.Kerembellec@vtcom.fr>,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Martijn Koster <m.koster@pobox.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
123a3dddc94534d3a6c6f81c118a5b63dc5994c3Andreas Gustafsson *) PORT: The semantics of accept/select make it very desirable to use
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mutexes to serialize accept when multiple Listens are in use. But
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in the case where only a single socket is open it is sometimes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews redundant to serialize accept(). Not all unixes do a good job with
5ea0d11ca45bfd1ea9db8db07f18fbb02f500661Brian Wellington potentially dozens of children blocked on accept() on the same
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews socket. It's now possible to define SINGLE_LISTEN_UNSERIALIZED_ACCEPT and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the server will avoid serialization when listening on only one socket,
d25dd5b0567f67ecf40b7ed1cb20e0dce7b41c49Brian Wellington and use serialization when listening on multiple sockets.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#467
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9ac7076ebad044afb15e9e2687e3696868778538Mark Andrews *) Configure changes: TestLib replaced by TestCompile, which has
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews some additional capability (such as doing a sanity check of
7c058f1c384ebdba74231111f9358cf08109a5dbBob Halley the compiler and flags selected); the version of Solaris is now
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews available via the #define value of SOLARIS2; IRIX n32bit libs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews now supported and selectable by new Configuration Rule: IRIXN32;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews We no longer default to -O2 optimization. [Jim Jagielski]
620de5a4b1f23dc9b4ec30d30c0607ff389be0daBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Updated Configure: Configuration now uses AddModule to specify
4e3f8e480f220ef8a87fd28d02f9001b8fc6f423Bob Halley module source or binary file location, relative to src directory.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Modules can be dropped into modules/extra, or in their own
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory, and modules can come with a Makefile or Configure can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews create one. Modules can add compiler or library information to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews generated Makefiles. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
dc2e09d48b49d96a0572a971180718f680140cf0Andreas Gustafsson *) Source core re-organisation: distributed modules are now in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews modules/standard. All other source code is in main. OS-specific
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code is in os/{unix,emx,win32} directories. [Paul Sutton]
dc2e09d48b49d96a0572a971180718f680140cf0Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_browser has been removed, since it's replaced by mod_setenvif.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
dc2e09d48b49d96a0572a971180718f680140cf0Andreas Gustafsson *) Fix another long-standing bug in sub_req_lookup_file where it would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews happily skip past access checks on subdirectories looked up with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews relative paths. (It's used by mod_dir, mod_negotiation,
90c099e88e9f16bfee9edee3ac1a51fc98843772Brian Wellington and mod_include.) [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) directory_walk optimization to reduce an O(N*M) loop to O(N+M) where
620de5a4b1f23dc9b4ec30d30c0607ff389be0daBob Halley N is the number of <Directory> sections, and M is the number of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews components in the filename of an object.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
68b952dc98a9e02b269c0712da120cd773679652Brian Wellington To achieve this optimization the following config changes were made:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Wildcards (* and ?, not the regex forms) in <Directory>s,
d1cc210d2091916df6f9858fae20a1c760f3b257Andreas Gustafsson <Files>s, and <Location>s now treat a slash as a special
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews character. For example "/home/*/public_html" previously would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews match "/home/a/andrew/public_html", now it only matches things
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews like "/home/bob/public_html". This mimics /bin/sh behaviour.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - It's possible now to use [] wildcarding in <Directory>, <Files>
d1cc210d2091916df6f9858fae20a1c760f3b257Andreas Gustafsson or <Location>.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Regex <Directory>s are applied after all non-regex <Directory>s.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ed0a4f1a302a5e543a9a2e4f8e61ca8a0673c6a7Mark Andrews *) Fix a bug introduced in 1.3a1 directory_walk regarding .htaccess files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and corrupted paths. [Dean Gaudet]
a93cf7e83be621d3d68f51e37121a47a70a6757bMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Enhanced and cleaned up the URL rewriting engine of mod_rewrite:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews First the grouped parts of RewriteRule pattern matches (parenthesis!) can
c05eeed3c915d55a4949f5c2ce8700a0b0f9381bAndreas Gustafsson be accessed now via backreferences $1..$9 in RewriteConds test-against
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews strings in addition to RewriteRules subst string. Second the grouped
c05eeed3c915d55a4949f5c2ce8700a0b0f9381bAndreas Gustafsson parts of RewriteCond pattern matches (parenthesis!) can be accessed now
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews via backreferences %1..%9 both in following RewriteCond test-against
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews strings and RewriteRules subst string. This provides maximum flexibility
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews through the use of backreferences.
3bb043a8b8b15eece3794ec31ad0ccab103a1c21Brian Wellington Additionally the rewriting engine was cleaned up by putting common
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code to the new expand_backrefs_inbuffer() function.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When merging the main server's <Directory> and <Location> sections into
df0f58959ed82a2a43ca8d816ce9592541df9f2fMark Andrews a vhost, put the main server's first and the vhost's second. Otherwise
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the vhost can't override the main server. [Dean Gaudet] PR#717
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
903e9d41ef730f098d38da9588f2824f37b7d73cMark Andrews *) The <Directory> code would merge and re-merge the same section after
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a match was found, possibly causing problems with some modules.
f4b5a0f43481026ea27bd96e3584ca0e92542f0dBob Halley [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) ip-based vhosts are stored and queried using a hashing function, which
6211baaa66d7cac28a21b6426681e597ff04ca9eAndreas Gustafsson has been shown to improve performance on servers with many ip-vhosts.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Some other changes had to be made to accommodate this:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - the * address for vhosts now behaves like _default_
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - the matching process now is:
6211baaa66d7cac28a21b6426681e597ff04ca9eAndreas Gustafsson - match an ip-vhost directly via hash (possibly matches main
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews server)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - if that fails, just pretend it matched the main server
ea544b0511a66bc5f3700d56a72dcd808fdf22e8Brian Wellington - if so far only the main server has been matched, perform
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews name-based lookups (ServerName, ServerAlias, ServerPath)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *only on name-based vhosts*
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - if they fail, look for _default_ vhosts
a012d6dbfb100390efa7d0d4be64ada0210b09ddBrian Wellington [Dean Gaudet, Dave Hankins <dhankins@sugarat.net>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) dbmmanage overhaul:
c8d185ad5827bf2cf9982075e3336f680759a260Andreas Gustafsson - merge dbmmanage and dbmmanage.new functionality, remove dbmmanage.new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - tie() to AnyDBM_File which will use one of DB_File, NDBM_File or
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews GDBM_File (-ldb, -lndbm, -lgdbm) (trying each in that order)
1e50dad10da55802152d00d5573f8b7d49d752a6Bob Halley - provide better seed for rand
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - prompt for password as per getpass(3) (turn off echo, read from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews /dev/tty, etc.)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - use "newstyle" crypt based on $Config{osname} ($^O)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - will not add a user if already in database, use new `update' command
c8d185ad5827bf2cf9982075e3336f680759a260Andreas Gustafsson instead
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - added `check' command to check a users' password
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - added `import' command to convert existing password text-files or
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews dbm files exported with `view'
22cafd0ece9c8d22a1218f000afdbceda21fe8afBrian Wellington - more descriptive usage, general cleanup, 'use strict' clean, etc.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
2cb74c5bc52ef415a771fafe0bf504eab609feadBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added psocket() which is a pool form of socket(), various places within
3d60fe9bafbf633e3a7811c11227baebb17878a4Brian Wellington the proxy weren't properly blocking alarms while registering the cleanup
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for its sockets. bclose() now uses pclose() and pclosesocket(). There
218c8472e6c8c1a014e412615cc97bb93c0ef9c2Brian Wellington was a bug where the client socket was being close()d twice due a still
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews registered cleanup. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) A few cleanups were made to reduce time(), getpid(), and signal() calls.
f24c135e09214c3843a49fd32ebef2f6a436ba8eBrian Wellington [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: AIX >= 4.2 requires -lm due to libc changes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jason Venner <jason@idiom.com>] PR#667
02940eaf0f732c28c0b39ed114a3803074a80138Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Enable ``=""'' for RewriteCond directives to match against
02940eaf0f732c28c0b39ed114a3803074a80138Andreas Gustafsson the empty string. This is the preferred way instead of ``^$''.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
9a7d163f6f305d48771b4c56d8d18efc6dfc8fc3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed an infinite loop in mod_imap for references above the server root
aa23a35d81a9618a40c4a9b44be48009553e4777Andreas Gustafsson [Dean Gaudet] PR#748
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) mod_proxy now has a ReceiveBufferSize directive, similar to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SendBufferSize, so that the TCP window can be set appropriately
aa23a35d81a9618a40c4a9b44be48009553e4777Andreas Gustafsson for LFNs. [Phillip A. Prindeville]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_browser has been replaced by the more general mod_setenvif
22457624d3e63e7cd255b4083cb435c16caea26dBob Halley (courtesy of Paul Sutton). BrowserMatch* directives are still
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews available, but are now joined by SetEnvIf*, UnSetEnvIf*, and
91425b5e7204b05165e2c5b244f3dad502f9627dBrian Wellington UnSetEnvIfZero directives. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "HostnameLookups double" forces double-reverse DNS to succeed in
91425b5e7204b05165e2c5b244f3dad502f9627dBrian Wellington order for remote_host to be set (for logging, or for the env var
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews REMOTE_HOST). The old define MAXIMUM_DNS has been deprecated.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b18a5b6730dcb062cf7f47c6b3cb909030b58f36Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_access overhaul:
7e361074bc8a2df7a0891a7040eea02ca3a5e286Andreas Gustafsson - Now understands network/netmask syntax (i.e. 10.1.0.0/255.255.0.0)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and cidr syntax (i.e. 10.1.0.0/16). PR#762
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Critical path was sped up by pre-computing a few things at config time.
328b080b4af258fdd4d3a2ea1558b48706bd8116Andreas Gustafsson - The undocumented syntax "allow user-agents" was removed,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the replacement is "allow from env=foobar" combined with mod_browser.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - When used with hostnames it now forces a double-reverse lookup
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews no matter what the directory settings are. This double-reverse
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews doesn't affect any of the other routines that use the remote
9e560b59a722d06a62b5aed761e71fec72638a7cBrian Wellington hostname. In particular it's still passed to CGIs and the log
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews without the double-reverse check. Related PR#860.
f91dc72b422479b5a0caf1fe54c4054d25ae6055Brian Wellington [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7e361074bc8a2df7a0891a7040eea02ca3a5e286Andreas Gustafsson *) When a large bwrite() occurs (larger than the internal buffer size),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews while there is already something in the buffer, apache will combine
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the large write and the buffer into a single writev(). (This is
d6b3d06db7ce3b9229dc30cc0e3a72ba2603da28Bob Halley in anticipation of using mmap() for reading files.)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8e68489885e744ab48907414b4199c36858c27ddMark Andrews *) In obscure cases where a partial socket write occurred while chunking,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache would omit the chunk header/footer on the next block. Cleaned
c17c59662f0969a5e52e8b7529cbde1a7c746095Andreas Gustafsson up other bugs/inconsistencies in error conditions in buff.c. Fixed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a bug where a long pause in DNS lookups could cause the last packet
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of a response to be unduly delayed. [Roy Fielding, Dean Gaudet]
c17c59662f0969a5e52e8b7529cbde1a7c746095Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Added child_exit function to module structure. This is called
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews once per "heavy-weight process" just before a server child exit()'s
651421a5db8a9edf39c76fd8cf859409eb8c373bAndreas Gustafsson e.g. when max_requests_per_child is reached, etc.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern, Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
651421a5db8a9edf39c76fd8cf859409eb8c373bAndreas Gustafsson *) mod_include cleanup showed that handle_else was being used to handle
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews endif. It didn't cause problems, but it was cleaned up too.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Howard Fear]
7427490a67b9547242b57c255254f7e146127c48Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_cern_meta would attempt to find meta files for the directory itself
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in some cases, but not in others. It now avoids it in all cases.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
dfa0badebe5a8260281228d94dbe28e4314a9df6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_mime_magic would core dump if there was a decompression error.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Martin Kraemer <Martin.Kraemer@mch.sni.de>] PR#904
dfa0badebe5a8260281228d94dbe28e4314a9df6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: some variants of DGUX require -lsocket -lnsl
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexander L Jones <alex@systems-options.co.uk>] PR#732
2d0627005d48b7657fa11792c123466b4f974b61Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_autoindex now allows sorting of FancyIndexed directory listings
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by the various fields (name, size, et cetera), either in ascending
80ddc8b22bf2ede60038393be5cad9da99d3f03fAndreas Gustafsson or descending order. Just click on the column header. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Various tweaks to eliminate pointer-int casting warnings on 64-bit
94baac869a70b529a24ff23d8dc899faa5d4fdc4Brian Wellington CPUs like the Alpha. Apache still stores ints in pointers, but that's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the relatively safe direction. [Dean Gaudet] PR#344
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1ac2c28488fb5de80b3ce9aac3500d215cb61728Brian Wellington *) PORT: QNX mmap() support for faster/more reliable scoreboard handling.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Igor N Kovalenko <infoh@mail.wplus.net>] PR#683
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a12d9cfa59b5981c52e1aaafedf652d5128f3448Brian Wellington *) child_main avoids an unneeded call to select() when there is only one
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews listening socket. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
702a69f04a89422968ef8fc6fc271fac058e03efBrian Wellington *) In the event that the server is starved for idle servers it will
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews spawn 1, then 2, then 4, ..., then 32 servers each second,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews doubling each second. It'll also give a warning in the errorlog
0f537d1c63f643924355ff9ca2cf72c547101aa4Brian Wellington since the most common reason for this is a poor StartServers
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews setting. The define MAX_SPAWN_RATE can be used to raise/lower
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the maximum. [Dean Gaudet]
9ee323b64bc9dcd73f9a0a0e69a31475026721daAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Apache now provides an effectively unbuffered connection for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CGI scripts. This means that data will be sent to the client
c27148868266dd718b6677c794b3e6dca53c3bdcAndreas Gustafsson as soon as the CGI pauses or stops output; previously, Apache would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews buffer the output up to a fixed buffer size before sending, which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews could result in the user viewing an empty page until the CGI finished
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews or output a complete buffer. It is no longer necessary to use an
f8a44ed40032e034883019ac556f3bb732491a32Mark Andrews "nph-" CGI to get unbuffered output. Given that most CGIs are written
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in a language that by default does buffering (e.g. perl) this
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews shouldn't have a detrimental effect on performance.
07d6480b684d3745e645f35a8b95dae9bda982a3Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "nph-" CGIs, which formerly provided a direct socket to the client
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews without any server post-processing, were not fully compatible with
634784cb66a1c9ddee0c448f71580f024c8fe40bAndreas Gustafsson HTTP/1.1 or SSL support. As such they would have had to implement
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the transport details, such as encryption or chunking, in order
ea6709ec8a66e3ffef9c9466613df499567c57f8Brian Wellington to work properly in certain situations. Now, the only difference
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews between nph and non-nph scripts is "non-parsed headers".
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet, Sameer Parekh, Roy Fielding]
634784cb66a1c9ddee0c448f71580f024c8fe40bAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If a BUFF is switched from buffered to unbuffered reading the first
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews bread() will return whatever remained in the buffer prior to the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews switch. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.3a1
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
49576ae7a481415d5e815ff59b71c76203259619Andreas Gustafsson *) Added another Configure helper script: TestLib. It determines
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if a specified library exists. [Jim Jagielski]
e8af4e152413190e5553c2fb3074a1cc689c6cefAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Allow for use of n32bit libraries under IRIX 6.x
4d30acbac52fcb20a4f0ab4f8508f24861386fe7Brian Wellington [derived from patch from Jeff Hayes <jhayes@aw.sgi.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#721
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
131d5feb05fce60143bc17dab73df20753d9301fBrian Wellington *) PORT: Some architectures use size_t for various lengths in network
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews functions such as accept(), and getsockname(). The definition
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews NET_SIZE_T is used to control this. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
76c9d2f6c0a5d6ea8bcc35fc3228d2019507b2bbBrian Wellington *) PORT: Linux: Attempt to detect glibc based systems and include crypt.h
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and -lcrypt. Test for various db libraries (dbm, ndbm, db) when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_auth_dbm or mod_auth_db are included. [Dean Gaudet]
187a97287e626b2f2e9774479e145dfbf1eba66cBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: QNX doesn't have initgroups() which support/suexec.c uses.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Igor N Kovalenko <infoh@mail.wplus.net>]
7ed2d93fa4e12e0ceaa0c7c0da3a89e7a5d78296Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews begin with. "nokeepalive" now works for HTTP/1.1 clients. Added
1ec527b71267747cc3ae4d9849aa4f6362c78ea9Brian Wellington "downgrade-1.0" which causes Apache to pretend it received a 1.0.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] related PR#875
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
703e1c0bb66f3cd3d300358ca0c1fdf3cb5fb1c5Brian Wellington *) API: Correct child_init() slot declaration from int to void, to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews match the init() declaration. Update mod_example to use the new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews hook. [Ken Coar]
7ed2d93fa4e12e0ceaa0c7c0da3a89e7a5d78296Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) added transport handle slot (t_handle) to the BUFF structure
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
14bb9cccae74676e25ae145dc14a3681cc3022b9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) get_client_block() returns wrong length if policy is
01b8865b1462ba219c90cf6c00f1bf0fdf780d9bBrian Wellington REQUEST_CHUNKED_DECHUNK.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
fcc3c131e03cb7e844eaecf74d4f9b7fd38c8398Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Support the image map format of FrontPage. For example:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews rect /url.hrm 10 20 30 40
6d3e8dffb447b9a961360f7f4fd77b0bdb81de76Andreas Gustafsson ["Chris O'Byrne" <obyrne@iol.ie>] PR#807
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: -lresolv and -lsocks were in the wrong order for Solaris.
7017ede939a5d3e7f2dc113061887a9e81fe8627Brian Wellington ["Darren O'Shaughnessy" <darren@aaii.oz.au>] PR#846
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) AddModuleInfo directive for mod_info which allows you to annotate
66921d6dd259c4486a07aba19eee2b8349698575Brian Wellington the output of mod_info. ["Lou D. Langholtz" <ldl@usi.utah.edu>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added NoProxy directive to avoid using ProxyRemote for selected
b65fc651b8aaab5d0fb9b8f6ef583d699d14a113Mark Andrews addresses. Added ProxyDomain directive to cause unqualified
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews names to be qualified by redirection.
2728a98ee4104b2fb30f273893a7f354e20002b5Mark Andrews [Martin Kraemer <Martin.Kraemer@mch.sni.de>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
be387fd057ee54ae5d84904e69587d6e29bd3950Mark Andrews *) Support Proxy Authentication, and don't pass the Proxy-Authorize
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews header to the remote host in the proxy. [Sameer Parekh and
d72269740049af28b091ba81d68a067c88f53547Mark Andrews Wallace]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7dbb39a417a28f61ba13e6e066c2f9c711f61471Mark Andrews *) Upgraded mod_rewrite from 3.0.6+ to latest officially available version
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 3.0.9. This upgrade includes: fixed deadlooping on rewriting to same
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews URLs, fixed rewritelog(), fixed forced response code handling on
a51f77a70bba62f227fb15fe72ecf959893e3f0fMark Andrews redirects from within .htaccess files, disabled pipe locking under
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews braindead SunOS 4.1.x, allow env variables to be set even on rules with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews no substitution, bugfixed situations where HostnameLookups is off, made
ff7f1dc0393cfc8a033be7e94aa56cd57c97d174Andreas Gustafsson mod_rewrite more thread-safe for NT port and fixed problem when creating
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews an empty query string via "xxx?".
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This update also removes the copyright of Ralf S. Engelschall,
7dec36c225ad044a6546a4e232888f3412c030a8Brian Wellington i.e. now mod_rewrite no longer has a shared copyright. Instead is is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews exclusively copyrighted by the Apache Group now. This happened because
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the author now has gifted mod_rewrite exclusively to the Apache Group and
ff7f1dc0393cfc8a033be7e94aa56cd57c97d174Andreas Gustafsson no longer maintains an external version.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Added child_init function to module structure. This is called
9b0c4bf7003db929fe00a345fc96fb97677d29e0Brian Wellington once per "heavy-weight process" before any requests are handled.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews See http_config.h for more details. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
576f85e5fdb8805307f318db79dfc0d19e390d1aAndreas Gustafsson *) Anonymous_LogEmail was logging on each subrequest.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#421, 868
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
576f85e5fdb8805307f318db79dfc0d19e390d1aAndreas Gustafsson *) API: Added is_initial_req() which tests if the request being
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews processed is the initial request, or a subrequest.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0c70ab306505d89983186e9f8bb8647de55b5d04Mark Andrews *) Extended SSI (mod_include) now handles additional relops for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews string comparisons (<, >, <=, and >=). [Bruno Wolff III] PR#41
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
32e64787d9bd84a012ddac506f88fbc677b49377Brian Wellington *) Configure fixed to correctly propagate user-selected options and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews settings (such as CC and OPTIM) to Makefiles other than
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews src/Makefile (notably support/Makefile). [Ken Coar] PR#666, #834
fa5a42fbad42f4e033376d5d4624e29d018d97b7Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) IndexOptions SuppressHTMLPreamble now causes the actual HTML of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory indices to start with the contents of the HeaderName file
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if there is one. If there isn't one, the behaviour is unchanged.
523dd6a979865b8b1b8f1ecc81e5ce47a168c63fBrian Wellington [Ken Coar, Roy Fielding, Andrey A. Chernov]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) WIN32: Modules can now be dynamically loaded DLLs using the
5bb4ceb2a67fd558962f8a786c93daedc148a599Mark Andrews LoadModule/LoadFile directives. Note that module DLLs must be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews compiled with the multithreaded DLL version of the runtime library.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexei Kosut and Ben Laurie]
d119051ef75d5a88d28c13fb0a7c6d6757a4e9b5Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Automatic indexing removed from mod_dir and placed into mod_autoindex.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This allows the admin to completely remove automatic indexing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews from the server, while still supporting the basic functions of
9b0e404e5fc71a2bd4fba8a66296477f815af7d5Brian Wellington trailing-slash redirects and DirectoryIndex files. Note that if
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews you're carrying over an old Configuration file and you use directory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews indexing then you'll want to add:
4817a0628785835abb57d06f2f616b4a6515ac2fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Module autoindex_module mod_autoindex.o
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews before mod_dir in your Configuration. [Dean Gaudet]
c26c349eab7ca0499786c2091f0e407ec90eee6bAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) popendir/pclosedir created to properly protect directory scanning.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#525
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4817a0628785835abb57d06f2f616b4a6515ac2fAndreas Gustafsson *) AliasMatch, ScriptAliasMatch and RedirectMatch directives added,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews giving regex support to mod_alias. <DirectoryMatch>, <LocationMatch>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and <FilesMatch> sections added to succeed <DirectoryMatch ~>, etc...
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a2a7eaf89cd68acdb16177bb05701107ceab52b9Brian Wellington *) The AccessFileName directive can now take more than one filename.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ["Lou D. Langholtz" <ldl@usi.utah.edu>]
148af05e15f5d7ae3b076231617369fdaf57d26dAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The new mod_mime_magic can be used to "magically" determine the type
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of a file if the extension is unknown. Based on the unix file(1)
d31498a54482c8d5d934875d3fdeaa621c962d6fBrian Wellington command. [Ian Kluft <ikluft@cisco.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a2a7eaf89cd68acdb16177bb05701107ceab52b9Brian Wellington *) We now determine and display the time spent processing a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request if desired. [Jim Jagielski]
a2a7eaf89cd68acdb16177bb05701107ceab52b9Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_status: PID field of "dead" child slots no longer displays
54ce9b2e29aafe1cb5f898a0983fb66e450e9559Brian Wellington main httpd process's PID. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Makefile.nt added - to build all the bits from the command line:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews nmake -f Makefile.nt
7357590beef5f671cfdd4ec4304e5210adfb0d8aBrian Wellington Doesn't yet work properly. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Default text of 404 error is now "Not Found" rather than the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews potentially misleading "File Not Found". [Ken Coar]
8dd5237a27e2e824d18f835dc711573aeb23a173Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) CONFIG: "HostnameLookups" now defaults to off because it is far better
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for the net if we require people that actually need this data to
3b5102fc018a29e52befde5991844843c7b70786Michael Sawyer enable it. [Linus Torvalds]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) directory_walk() is an expensive function, keep a little more state to
3b5102fc018a29e52befde5991844843c7b70786Michael Sawyer avoid needless string counting. Add two new functions make_dirstr_parent
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and make_dirstr_prefix which replace all existing uses of make_dirstr.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The new functions are a little less general than make_dirstr, but
f7e900edbc368275aa7cec7ebec0986e45aeadd7Mark Andrews work more efficiently (less memory, less string counting).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
ec772e873bd7f24418049b5b1b5d7c44ff781356Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to LDFLAGS) to avoid complications with lex rules in make files.
abfbf760f3bc2a6744b0249a31ca5153234b49e8Brian Wellington [Dean Gaudet] PR#372
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) run_method optimized to avoid needless scanning over NULLs in the
75768d5fa2c6c5c441b849ca4efa649a7c2a9e88Bob Halley module list. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Revamp of (unix) scoreboard management code such that it avoids
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews unnecessary traversals of the scoreboard on each hit. This is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews particularly important for high volume sites with a large
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HARD_SERVER_LIMIT. Some of the previous operations were O(n^2),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and are now O(n). See also SCOREBOARD_MAINTENANCE_INTERVAL in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews httpd.h. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fa280ff02ad0c29616a0c3a22ef02cbb3f6db7efDavid Lawrence *) In configurations using multiple Listen statements it was possible for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews busy sockets to starve other sockets of service. [Dean Gaudet]
22dbaf9ad8065127fd93eff0f239fd9c548d18b6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added hook so standalone_main can be replaced at compile time
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (define STANDALONE_MAIN)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
184867e88b5a30bbc29f17edbc7b50a6c8a944e7David Lawrence *) Lowest-level read/write functions in buff.c will be replaced with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the SFIO library calls sfread/sfwrite if B_SFIO is defined at
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews compile time. The default sfio discipline will behave as apache
fa280ff02ad0c29616a0c3a22ef02cbb3f6db7efDavid Lawrence would without sfio compiled in.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern]
046a9aca49bdc25bd57d75fd0dd34c021722f095Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Enhance UserDir directive (mod_userdir) to accept a list of
f4e4111795ceb13066d09c38723afacb04e33ad4Mark Andrews usernames for the 'disable' keyword, and add 'enable user...' to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews selectively *en*able userdirs if they're globally disabled.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar]
253ab81bf2760d3d7f68512b43710afc02d788daMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If NETSCAPE_DBM_COMPAT is defined in EXTRA_CFLAGS then Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews will work with Netscape dbm files. (dbmmanage will probably not
be171be1799e0ba8cdd35d4f67b772ff086d0d81Andreas Gustafsson work however.) [Alexander Spohr <aspohr@netmatic.com>] PR#444
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a110543bb4d2e53caa40f83c2b45786a1efe63efAndreas Gustafsson *) Add a ListenBacklog directive to control the backlog parameter
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews passed to listen(). Also change the default to 511 from 512.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko]
ef9f9001fca9445ef315b1e76a66fc84fef6fdc6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: A new handler response DONE which informs apache that the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request has been handled and it can finish off quickly, similar to
ee303f481dfefcd4e4994f8b8b17f2de32aa4d69Brian Wellington how it handles errors. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Turn off chunked encoding after sending terminating chunk/footer
86b8c485762daa54a96d033110f6f41ea96e5213David Lawrence so that we can't do it twice by accident. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_expire also issues Cache-Control: max-age headers.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rob Hartill]
125a916d1a0c01f139ced5736145703df28d07cfDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: Added kill_only_once option for free_proc_chain so that it won't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews aggressively try to kill off specific children. For fastcgi.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Stanley Gambarin <gambarin@OpenMarket.com>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2115bc7d6433c92499d8e4f67e1c1dfa42ecd6f0David Lawrence *) mod_auth deals with extra ':' delimited fields. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added IconHeight and IconWidth to mod_dir's IndexOptions directive.
02e38214502c3a946cdfe87e16525747617a1150Brian Wellington When used together, these cause mod_dir to emit HEIGHT and WIDTH
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews attributes in the FancyIndexing IMG tags. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f8da2d95835c5216570a45e9000f740321503ae3David Lawrence *) PORT: Sequent and SONY NEWS-OS support added. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Added Windows NT support
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie and Ambarish Malpani <ambarish@valicert.com>]
fdb2cda3ed366699d70aaf67ee5ae7fcd2ca7561David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2.6
8dc3d2006f679d0a291f7a20612c37e2a7146096Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include when using XBitHack Full would send ETags in addition to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sending Last-Modifieds. This is incorrect HTTP/1.1 behaviour.
a110543bb4d2e53caa40f83c2b45786a1efe63efAndreas Gustafsson [Dean Gaudet] PR#1133
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: When a client connects to a particular port/addr, and
bd5f2ac1880f5f2e96b291378c3dff296fc011f1Mark Andrews gives a Host: header ensure that the virtual host requested can
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews actually be reached via that port/addr. [Ed Korthof <ed@organic.com>]
f0f61db621eed0c453e31bb85f6803c550e19a6bAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Support virtual hosts with wildcard port and/or multiple ports
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly. [Ed Korthof <ed@organic.com>]
63612a0fe1abbeb8ab6d727a4cfe46831c481387Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed some case-sensitivity issues according to RFC2068.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
7d33e8996948523e0180bc7e28a93d534d878dccAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Set r->allowed properly in mod_asis.c, mod_dir.c, mod_info.c,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and mod_include.c. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Variable 'cwd' was being used pointlessly before being set.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken Coar] PR#1738
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SIGURG doesn't exist on all platforms.
736aab3076e9bec708cec073f5cf8e6c4b588886Brian Wellington [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When an error occurs during a POST, or other operation with a
bb1cf189bb9fd9059cf13b785d15b0e50c0be8fbAndreas Gustafsson request body, the body has to be read from the net before allowing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a keepalive session to continue. [Roy Fielding] PR#1399
7cb10f77890fe36b14079c7beb848ec390a53e44Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) When an error occurs in fcntl() locking suggest the user look up
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the docs for LockFile. [Dean Gaudet]
bb1cf189bb9fd9059cf13b785d15b0e50c0be8fbAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) table_set() and table_unset() did not deal correctly with
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews multiple occurrences of the same key. [Stephen Scheck
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews <sscheck@infonex.net>, Ben Laurie] PR#1604
f53848e17123569387b279578f0100dca5407da5Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) send_fd_length() did not calculate total_bytes_sent properly in error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews cases. [Ben Reser <breser@regnow.com>] PR#1366
64a84169d7eed05486b10be90afea58f4af146f9Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) r->connection->user was allocated in the wrong pool causing corruption
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in some cases when used with mod_cern_meta. [Dean Gaudet] PR#1500
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
acc63b06d9e4e2137950dabddcccd17d8b336ca0Olafur Gudmundsson *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Also removed the auto-generated link to www.apache.org that was the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews source of so many misdirected bug reports. [Roy Fielding, Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews *) Multiple "close" tokens may have been set in the "Connection"
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews header, not an error, but a waste.
c8fc692fa1445ccfc39b68902546cdfc7ee30d3eBrian Wellington [Ronald.Tschalaer@psi.ch] PR#1683
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "basic" and "digest" auth tokens should be tested case-insensitive.
f19771c55d7e7d5bb38160e710185e6e61749d16Andreas Gustafsson [Ronald.Tschalaer@psi.ch] PR#1599, PR#1666
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) It appears the "257th byte" bug (see
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews at the 256th byte as well. Fixed. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f1d427043e94371cdf1f21b3cbd65917adbcff25Andreas Gustafsson *) mod_rewrite would not handle %3f properly in some situations.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
10e22ebcc3629be94d37bf408157e2c5ee5740e0Andreas Gustafsson *) Apache could generate improperly chunked HTTP/1.1 responses when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the bputc() or rputc() functions were used by modules (such as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_include). [Dean Gaudet]
6c29053a20f7614167bafa4388c666644a095349Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) #ifdef wrap a few #defines in httpd.h to make life easier on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews some ports. [Ralf Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix MPE compilation error in mod_usertrack.c. [Mark Bixby]
3d509f54ac6bbcc19de5aa6d1ce37e001821dc7bDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Quote CC='$(CC)' to improve recurse make calls. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Avoid B_ERROR redeclaration on sysvr4 systems. [Martin Kraemer]
a59ed6543bbc13e7c784d6badce7b757c2620e28David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2.5
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Fix a possible buffer overflow in logresolve. This is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews only an issue on systems without a MAXDNAME define or where
10e6498d6d7b2cfd8d822788d817fc9a3e0b0c3aDavid Lawrence the resolver returns domain names longer than MAXDNAME. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix an improper length in an ap_snprintf call in proxy_date_canon().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko]
91b191a90cae9b162b8c68a3b4820031e129b37bBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix core dump in the ftp proxy when reading incorrectly formatted
bf00f50cf43a43a999b5ab054cab652f7775dce6Brian Wellington directory listings. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Fix possible minor buffer overflow in the proxy cache.
253f774e358dba38742a484426a4cadf4f248817Brian Wellington [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
2de31518c3da27092120b40fc373cecf600d64e6Brian Wellington is used to read various types of files such as htaccess and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htpasswd files. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4ae3a03bb7dbb050adddc051a5df6f3de057eb27Andreas Gustafsson *) SECURITY: Ensure that the buffer returned by ht_time is always
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly null terminated. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: General mod_include cleanup, including fixing several
10e22ebcc3629be94d37bf408157e2c5ee5740e0Andreas Gustafsson possible buffer overflows and a possible infinite loop. This cleanup
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was done against 1.3 code and then backported to 1.2, the result
2732332fe53d00592109ef69c0075fcc2ad09db9Brian Wellington is a large difference (due to indentation cleanup in 1.3 code).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Users interested in seeing a smaller set of relevant differences
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews should consider comparing against src/modules/standard/mod_include.c
8fa78d9ad5f5ab6c69d1d52b00b1ffcdf1bd5bebMichael Sawyer from the 1.3b3 release. Non-indentation changes to mod_include
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews between 1.2 and 1.3 were minimal. [Dean Gaudet, Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e544b507b8019a62c5d2716281f6832519a8791dDavid Lawrence *) SECURITY: Numerous changes to mod_imap in a general cleanup
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews including fixing a possible buffer overflow. This cleanup also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews was done with 1.3 code as a basis, see the the previous note
09de21079e902c7356d936ef4f2a31060b36e5f3Brian Wellington about mod_include. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: If a htaccess file can not be read due to bad
ee4429e13e08f30c366cdc5d10585388b8a9f212Michael Sawyer permissions, deny access to the directory with a HTTP_FORBIDDEN.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The previous behavior was to ignore the htaccess file if it could not
3c7ce471aa8a1a9c5bc0ca9e41f406bdc9f0b2aeAndreas Gustafsson be read. This change may make some setups with unreadable
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews htaccess files stop working. PR#817 [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: no2slash() was O(n^2) in the length of the input.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Make it O(n). This inefficiency could be used to mount a denial
8aff41ca8ac8dbd9671f3da824406a8783db49d1Brian Wellington of service attack against the Apache server. Thanks to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Michal Zalewski <lcamtuf@boss.staszic.waw.pl> for reporting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this. [Dean Gaudet]
c9d7e543d0da2996d1cc52d3c5920141df49a4ecBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include used uninitialized data for some uses of && and ||.
6dbf9cbe6a39a00de910ef843b9f864abf68bc40Brian Wellington [Brian Slesinsky <bslesins@wired.com>] PR#1139
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_imap should decline all non-GET methods.
17aac384e029f5dd3314876058c7501f4d84b90bBrian Wellington [Jay Bloodworth <jay@pathways.sde.state.sc.us>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
23f64ea0dcd7f5b7094ae6ade2a002fb7dde1466Brian Wellington *) mod_userdir was modifying r->finfo in cases where it wasn't setting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews r->filename. Since those two are meant to be in sync with each other
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this is a bug. ["Paul B. Henson" <henson@intranet.csupomona.edu>]
3c7ce471aa8a1a9c5bc0ca9e41f406bdc9f0b2aeAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include did not properly handle all possible redirects from sub-
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requests. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4d5c668a91c6e5a26653031dd137292bfc03da52Andreas Gustafsson *) Inetd mode (which is buggy) uses timeouts without having setup the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews jmpbuffer. [Dean Gaudet] PR#1064
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Work around problem under Linux where a child will start looping
f437f6ffae28f88334cf47ce8f948cbf40331ffaAndreas Gustafsson reporting a select error over and over.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Rick Franchuk <rickf@transpect.net>] PR#1107
704d6eeab1d8d6a2aeb99c37fa5a97322d9340fcBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2.4
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
ed8ba54e644957e0ebd51601552193275299ca8dAndreas Gustafsson *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews always making requests with the full-URI instead of just the URI path.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko, Roy Fielding]
4d5c668a91c6e5a26653031dd137292bfc03da52Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add -lm for AIX versions >= 4.2 to allow Apache to link properly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on this platform. [Marc Slemko]
9c566a852f31c3a5d0b9d6eaf11463114339c01dAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2.3
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9c566a852f31c3a5d0b9d6eaf11463114339c01dAndreas Gustafsson *) The request to a remote proxy was mangled if it was generated as the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews result of a ProxyPass directive. URL schemes other than http:// were not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews supported when ProxyRemote was used. PR#260, PR#656, PR#699, PR#713,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#812 [Lars Eilebrecht]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews information for case where proxy module is not available. [Marc Slemko]
4c08b67a5f01eda472a9dfee4c73dbbac49c0065Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Force proxy to always respond as HTTP/1.0, which it was failing to
1addbb84718fdb7635459ed05f060be086e88f35Andreas Gustafsson do for errors and cached responses. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Improved support for ConvexOS 11. [Jeff Venters]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1addbb84718fdb7635459ed05f060be086e88f35Andreas GustafssonChanges with Apache 1.2.2 [not released]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed another long-standing bug in sub_req_lookup_file where it would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews happily skip past access checks on subdirectories looked up with relative
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews paths. (It's used by mod_dir, mod_negotiation, and mod_include.)
d3be9a9c6ef76a5d7671b0962785ca025b153d2bAndreas Gustafsson [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add lockfile name to error message printed out when
e9fce1415f8be4cd38d528950c92c481bd105254Mark Andrews USE_FLOCK_SERIALIZED_ACCEPT is defined.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
59e1a928bc4253b91ead0f7c46be7d3984cb3016Bob Halley *) Enhanced the chunking and error handling inside the buffer functions.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet, Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
90cd33e0baf23574a88a4c967afec8b95a1801deAndreas Gustafsson *) When merging the main server's <Directory> and <Location> sections into
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a vhost, put the main server's first and the vhost's second. Otherwise
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the vhost can't override the main server. [Dean Gaudet] PR#717
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
517950ae99fa271b034a5cfec1c9fbb62696f975Mark Andrews *) The <Directory> code would merge and re-merge the same section after
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a match was found, possibly causing problems with some modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
dfd7798d8b870abf03795d8095297a4b982ab6e9Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed an infinite loop in mod_imap for references above the server root.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#748
19ff7edc1a6388085193f5487e1599f45aa62648Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include cleanup showed that handle_else was being used to handle
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews endif. It didn't cause problems, but it was cleaned up too.
8a0ff6c15cb20c903f9e16a3d5c2cab603478bc3Mark Andrews [Howard Fear]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a6dbd6b6604e27ae3c7190de20dbcaaa6e5a1fd8Andreas Gustafsson *) Last official synchronization of mod_rewrite with author version (because
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_rewrite is now directly developed by the author at the Apache Group):
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o added diff between mod_rewrite 3.0.6+ and 3.0.9
0c0619cc1983ff58e855c5159d8892e46dddac5eBrian Wellington minus WIN32/NT stuff, but plus copyright removement.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews In detail:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - workaround for detecting infinite rewriting loops
c472ead4a932f93251eddaa41e120c3bfc4f95a4Andreas Gustafsson - fixed setting of env vars when "-" is used as subst string
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - fixed forced response code on redirects (PR#777)
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews - fixed cases where r->args is ""
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - kludge to disable locking on pipes under braindead SunOS
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - fix for rewritelog in cases where remote hostname is unknown
a6dbd6b6604e27ae3c7190de20dbcaaa6e5a1fd8Andreas Gustafsson - fixed totally damaged request_rec walk-back loop
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o remove static from local data and add static to global ones.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o replaced ugly proxy finding stuff by simple
383665e42ad838046472e847b16c4e0d3f1aaf76Bob Halley find_linked_module("mod_proxy") call.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o added missing negation char on rewritelog()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews o fixed a few comment typos
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
383665e42ad838046472e847b16c4e0d3f1aaf76Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Anonymous_LogEmail was logging on each subrequest.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#421, PR#868
6b5a6fbe1cc0ceb7e2b516aaada596b79360a5b8Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews begin with. "nokeepalive" now works for HTTP/1.1 clients. Added
ba6fd2580863759baedd9c47153602b19006a324Andreas Gustafsson "downgrade-1.0" which causes Apache to pretend it received a 1.0.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Additionally mod_browser now triggers during translate_name to workaround
ba6fd2580863759baedd9c47153602b19006a324Andreas Gustafsson a deficiency in the header_parse phase.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#875
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ba6fd2580863759baedd9c47153602b19006a324Andreas Gustafsson *) get_client_block() returns wrong length if policy is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews REQUEST_CHUNKED_DECHUNK.
850d70818503ca1b0f98c9c70b16b51e789fd705Andreas Gustafsson [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Properly treat <files> container like other containers in mod_info.
dd16d9d9e77c2d906ee5ffa3dd9f71cacfbcb081Brian Wellington [Marc Slemko] PR#848
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d3a86da2e8f09e2c3f55721aae537b9cacc7e537Andreas Gustafsson *) The proxy didn't treat the "Host:" keyword of the host header as case-
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews insensitive. The proxy would corrupt the first line of a response from
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews an HTTP/0.9 server. [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#813,814
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
850d70818503ca1b0f98c9c70b16b51e789fd705Andreas Gustafsson *) mod_include would log some bogus values occasionally.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Skip Montanaro <skip@calendar.com>, Marc Slemko] PR#797
3c82f274bd880a33fdaf211af4fe8f6b3d6ca556David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: The slack fd changes in 1.2.1 introduced a problem with SIGHUP
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews under Solaris 2.x (up through 2.5.1). It has been fixed.
3c82f274bd880a33fdaf211af4fe8f6b3d6ca556David Lawrence [Dean Gaudet] PR#832
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) API: In HTTP/1.1, whether or not a request message contains a body
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is independent of the request method and based solely on the presence
3c82f274bd880a33fdaf211af4fe8f6b3d6ca556David Lawrence of a Content-Length or Transfer-Encoding. Therefore, our default
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews handlers need to be prepared to read a body even if they don't know
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews what to do with it; otherwise, the body would be mistaken for the
3c82f274bd880a33fdaf211af4fe8f6b3d6ca556David Lawrence next request on a persistent connection. discard_request_body()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews has been added to take care of that. [Roy Fielding] PR#378
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5afc10d6d8278c9ab34b9f6c82ef7bb3bfefd0efAndreas Gustafsson *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews release version number, such that it always increases along the
78d78f05d91205cbde33ca87d24b8d13aa2d8d66Brian Wellington same lines as our source code branching. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Minor oversight on multiple variants fixed. [Paul Sutton] PR#94
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5afc10d6d8278c9ab34b9f6c82ef7bb3bfefd0efAndreas GustafssonChanges with Apache 1.2.1
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Don't serve file system objects unless they are plain files,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews symlinks, or directories. This prevents local users from using pipes
3f01dde0bd24561fc3a6c2f7e259a58af4457a86Brian Wellington or named sockets to invoke programs for an extremely crude form of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CGI. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
626b221f7113479a0709f0bb0a8193c0ab0dcf84Andreas Gustafsson *) SECURITY: HeaderName and ReadmeName were settable in .htaccess and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews could contain "../" allowing a local user to "publish" any file on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the system. No slashes are allowed now. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c379c1bddb2d84c9219ab6c394b33aa866b9f3bfAndreas Gustafsson *) SECURITY: It was possible to violate the symlink Options using mod_dir
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (headers, readmes, titles), mod_negotiation (type maps), or
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_cern_meta (meta files). [Dean Gaudet]
febaa091847ab004f40500cc475a819f2c73fcddAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SECURITY: Apache will refuse to run as "User root" unless
ebfcb6cf66283096ebda1503b6cc042ce86b6bedBrian Wellington BIG_SECURITY_HOLE is defined at compile time. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c379c1bddb2d84c9219ab6c394b33aa866b9f3bfAndreas Gustafsson *) CONFIG: If a symlink pointed to a directory then it would be disallowed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if it contained a .htaccess disallowing symlinks. This is contrary
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the rule that symlink permissions are tested with the symlink
dffdc24ffd76ef3d8c8141671e89fb39428fef06Brian Wellington options of the parent directory. [Dean Gaudet] PR#353
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews *) CONFIG: The LockFile directive can be used to place the serializing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews lockfile in any location. It previously defaulted to /usr/tmp/htlock.
17442ccc2b2e9c3b3bfc337f0fdfad6186fbb123Mark Andrews [Somehow it took four of us: Randy Terbush, Jim Jagielski, Dean Gaudet,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Marc Slemko]
61b0df9eb522f13aef13cc2704728e799cbc251aMichael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Request processing now retains state of whether or not the request
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews body has been read, so that internal redirects and subrequests will
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not try to read it twice (and block). [Roy Fielding]
369bb68c2c7709c7fd8b0d6c1d1f8abc6422a7e2Michael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add a placeholder in modules/Makefile to avoid errors with certain
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews makes. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3dcb97b199693012d12e978b8f577a339e434361Andreas Gustafsson *) QUERY_STRING was unescaped in mod_include, it shouldn't be.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#644
4ec1a96d90784f70380bdec66f8a0bd6718a5b71Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include was not properly changing the current directory.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko] PR#742
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Attempt to work around problems with third party libraries that do not
fa3cbea8bfba19d1c11f9a6ad20f40a2c15377f0Brian Wellington handle high numbered descriptors (examples include bind, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews solaris libc). On all systems apache attempts to keep all permanent
0fc89c4ee660e825ac66774f2d4912cfc396386aMark Andrews descriptors above 15 (called the low slack line). Solaris users
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews can also benefit from adding -DHIGH_SLACK_LINE=256 to EXTRA_CFLAGS
e21d199dca95aff5d50f133d6b064309e209af00Brian Wellington which keeps all non-FILE * descriptors above 255. On all systems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews this should make supporting large numbers of vhosts with many open
c03298d879554fc5dc197c28fd4b686e0d880ee3Mark Andrews log files more feasible. If this causes trouble please report it,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews you can disable this workaround by adding -DNO_SLACK to EXTRA_CFLAGS.
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews [Dean Gaudet] various PRs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
04c22ceaf2d3812eaab69d79958d0e0d62048cd2Mark Andrews *) Related to the last entry, network sockets are now opened before
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews log files are opened. The only known case where this can cause
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews problems is under Solaris with many virtualhosts and many Listen
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directives. But using -DHIGH_SLACK_LINE=256 described above will
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews work around this problem. [Dean Gaudet]
6ef15459b8fd3fc8b5672da4ad72c19a755dbe45Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) USE_FLOCK_SERIALIZED_ACCEPT is now default for FreeBSD, A/UX, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SunOS 4.
b65f2ab14abb4b6ef906d7d02064fba158f07b1eDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved unix error response logging. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b65f2ab14abb4b6ef906d7d02064fba158f07b1eDavid Lawrence *) Update mod_rewrite from 3.0.5 to 3.0.6. New ruleflag
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews QSA=query_string_append. Also fixed a nasty bug in per-dir context:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when a URL http://... was used in conjunction with a special
c03bb27f0675a6e60ceea66b451548e8481bc05cMark Andrews redirect flag, e.g. R=permanent, the permanent status was lost.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>, Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c03bb27f0675a6e60ceea66b451548e8481bc05cMark Andrews *) If an object has multiple variants that are otherwise equal Apache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews would prefer the last listed variant rather than the first.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Paul Sutton] PR#94
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "make clean" at the top level now removes *.o. [Dean Gaudet] PR#752
389c749a5ee18f1c0d6278ae49f2aae5d5f0d2dcMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_status dumps core in inetd mode. [Marc Slemko and Roy Fielding]
051706a29a73416fbae116952dd6b6bdda765538Mark Andrews PR#566
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) pregsub had an off-by-1 in its error checking code. [Alexei Kosut]
4b6d5b2312d1482cc406fe58fa3269dd7a915b3fMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: fix rlim_t problems with AIX 4.2. [Marc Slemko] PR#333
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Update UnixWare support for 2.1.2.
29c818c7d40fc8898b062903ec703851328a4deaMark Andrews [Lawrence Rosenman <ler@lerctr.org>] PR#511
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b1cde6bf3a8e3a77eb77caf97df0d7ec5c8450dfBrian Wellington *) PORT: NonStop-UX [Joachim Schmitz <schmitz_joachim@tandem.com>] PR#327
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Update ConvexOS support for 11.5.
28b7844ee93231da831ba3c090e1677bb1be5f18Andreas Gustafsson [David DeSimone <fox@convex.com>] PR#399
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Support for DEC cc compiler under ULTRIX.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ["P. Alejandro Lopez-Valencia" <alejolo@ideam.gov.co>] PR#388
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
37d1c8ee546ae89720c3e17e57ee3a05e9cdc7b9Brian Wellington *) PORT: Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: Workaround for AIX 3.x compiler bug in http_bprintf.c.
28b7844ee93231da831ba3c090e1677bb1be5f18Andreas Gustafsson [Marc Slemko] PR#725
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PORT: fix problem compiling http_bprintf.c with gcc under SCO
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko] PR#695
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2
78db9e8f4b686fde6dfa0ec85a68c06cc9d4bf28Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b11
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed open timestamp fd in proxy_cache.c [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b20ee662a7c847c9ef7b96ab9e5e34543efe5c0dMark Andrews *) Added undocumented perl SSI mechanism for -DUSE_PERL_SSI and mod_perl.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Doug MacEachern, Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f90fe7c8b9a3eef8968fac74905e868c8ab583a3Brian Wellington *) Proxy needs to use hard_timeout instead of soft_timeout when it is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reading from one buffer and writing to another, at least until it has
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a custom timeout handler. [Roy Fielding and Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
190fbe9738bd0c1b9b13732bb8bd56b2b7c71640David Lawrence *) Fixed problem on IRIX with servers hanging in IdentityCheck,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews apparently due to a mismatch between sigaction and setjmp.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Roy Fielding] PR#502
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Log correct status code if we timeout before receiving a request (408)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews or if we received a request-line that was too long to process (414).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ed Korthof and Roy Fielding] PR#601
c40085afa75a5eae732ec1198384dd5cb24400b6Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Virtual hosts with the same ServerName, but on different ports, were
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not being selected properly. [Ed Korthof]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c40085afa75a5eae732ec1198384dd5cb24400b6Bob Halley *) Added code to return the requested IP address from proxy_host2addr()
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if gethostbyaddr() fails due to reverse DNS lookup problems. Original
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews change submitted by Jozsef Hollosi <hollosi@sbcm.com>.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko] PR#614
c40085afa75a5eae732ec1198384dd5cb24400b6Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If multiple requests on a single connection are used to retrieve
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews data from different virtual hosts, the virtual host list would be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews scanned starting with the most recently used VH instead of the first,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews causing most virtual hosts to be ignored.
10258f6b3d1ce54ffb22e6b9a31f8f001f7ee2d5Mark Andrews [Paul Sutton and Martin Mares] PR#610
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The OS/2 handling of process group was broken by a porting patch for
b38ebe307cb2411535c79afd441870a99cc50eddMark Andrews MPE, so restored prior code for OS/2. [Roy Fielding and Garey Smiley]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Inherit virtual server port from main server if none (or "*") is
c2e0aac879097f81bcd31e3d09660a71e70c5fb0Michael Sawyer given for VirtualHost. [Dean Gaudet] PR#576
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If the lookup for a DirectoryIndex name with content negotiation
588b63e1a86fb707172830e14897da624ed380edMark Andrews has found matching variants, but none are acceptable, return the
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews negotiation result if there are no more DirectoryIndex names to lookup.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Petr Lampa and Roy Fielding]
bb17aa91c14de959b191a200df61afb6a68f110fBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If a soft_timeout occurs after keepalive is set, then the main child
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews loop would try to read another request even though the connection
452d75b18f9d050086964fa39c326cf388517396Mark Andrews has been aborted. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
2b4db0b6d4b5a0307cecbafdd1d34d6f61b7dbadMark Andrews *) Configure changes: Allow for whitespace at the start of a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Module declaration. Also, be more understanding about the
6850cdd4497424c9d42ade487edfde9fb9a47de9Brian Wellington CC=/OPTIM= format in Configuration. Finally, fix compiler
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews flags if using HP-UX's cc compiler. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Subrequests and internal redirects now inherit the_request from the
2a37aa188c2297e0c0856c3e5740c43dd426a432Mark Andrews original request-line. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Test for error conditions before creating output header fields, since
6c87cf19970a9eef43c1e38227cd23b3a2f6151aMark Andrews we don't want the error message to include those fields. Likewise,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reset the content_language(s) and content_encoding of the response
7869b99dc815e3b863351b8095d1b71b3f583541Brian Wellington before generating or redirecting to an error message, since the new
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews message will have its own Content-* definitions. [Dean Gaudet]
df1e829dde71ab960545453e4ae439ae601d5a9eMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Restored the semantics of headers_out (headers sent only with 200..299
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and 304 responses) and err_headers_out (headers sent with all responses).
df1e829dde71ab960545453e4ae439ae601d5a9eMark Andrews Avoid the overhead of copying tables if err_headers_out is empty
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (the usual case). [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fb04db11ee6aad3ac3e023ab89b5f9d8a4d5674dMichael Sawyer *) Fixed a couple places where a check for the default Content-Type was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not properly checking both the value configured by the DefaultType
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directive and the DEFAULT_TYPE symbol in httpd.h. Changed the value
fb04db11ee6aad3ac3e023ab89b5f9d8a4d5674dMichael Sawyer of DEFAULT_TYPE to match the documented default (text/plain).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#506
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
fb04db11ee6aad3ac3e023ab89b5f9d8a4d5674dMichael Sawyer *) Escape the HTML-sensitive characters in the Request-URI that is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews output for each child by mod_status. [Dean Gaudet and Ken Coar] PR#501
fb04db11ee6aad3ac3e023ab89b5f9d8a4d5674dMichael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Properly initialize the flock structures used by the mutex locking
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews around accept() when USE_FCNTL_SERIALIZED_ACCEPT is defined.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The method for determining PATH_INFO has been restored to the pre-1.2b
e65fe7af00935a0a81d4b0b0ed51c7f6c89f5c3bAndreas Gustafsson (and NCSA httpd) definition wherein it was the extra path info beyond
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the CGI script filename. The environment variable FILEPATH_INFO has
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews been removed, and instead we supply the original REQUEST_URI to any
4bb3a1a63d7943564f30bf9efd312283141439a2Andreas Gustafsson script that wants to be Apache-specific and needs the real URI path.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This solves a problem with existing scripts that use extra path info
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in the ScriptAlias directive to pass options to the CGI script.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding]
e2b52099918681498136fc82df192d256cc3cdd3Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The _default_ change in 1.2b10 will change the behaviour on configs
389ec663f262cc219e986d6600eec9707ef2cb24Brian Wellington that use multiple Listen statements for listening on multiple ports.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews But that change is necessary to make _default_ consistent with other
e549eb1242b69ee050440e7205a5633cb56199b3Mark Andrews forms of <VirtualHost>. It requires such configs to be modified
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to use <VirtualHost _default_:*>. The documentation has been
88cef4408ab6b4c48702ed1b3ae27e20f485d864Mark Andrews updated. [Dean Gaudet] PR#530
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If an ErrorDocument CGI script is used to respond to an error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews generated by another CGI script which has already read the message
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews body of the request, the server would block trying to read the
ff7e6f2791cc5ad7c5f401a184b88343fde5ec3cAndreas Gustafsson message body again. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) signal() replacement conflicted with a define on QNX (and potentially
693ddf84daa745a0ea8ca311a8154dfa03eabc43Andreas Gustafsson other platforms). Fixed. [Ben Laurie] PR#512
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b10
ff7e6f2791cc5ad7c5f401a184b88343fde5ec3cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow HTTPD_ROOT, SERVER_CONFIG_FILE, DEFAULT_PATH, and SHELL_PATH
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to be configured via -D in Configuration. [Dean Gaudet] PR#449
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) <VirtualHost _default_:portnum> didn't work properly. [Dean Gaudet]
2bebe117bf96d7e24df4d703d6488d61a5179bcaMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added prototype for mktemp() for SUNOS4 [Marc Slemko]
4da10bce4bf64b574b59aa4fb5be0f237d0d41edBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) In mod_proxy.c, check return values for proxy_host2addr() when reading
3f123dcc2fe5d2cd08ca91b732741d86a4036906Brian Wellington config, in case the hostent struct returned is trash.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko] PR #491
16ea60d0dbbaf1206f4800cb16744ef568fd7be8Michael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed the fix in 1.2b9 for parsing URL query info into args for CGI
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews scripts. [Dean Gaudet, Roy Fielding, Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
85b23709431b1a84924fe2844f5cf657d1689eefMichael SawyerChanges with Apache 1.2b9 [never announced]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reset the MODULE_MAGIC_NUMBER to account for the unsigned port
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews changes and in anticipation of 1.2 final release. [Roy Fielding]
d15f51c600ed29b2dc379c433fb226c3a13ac0bbAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix problem with scripts not receiving a SIGPIPE when client drops
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the connection (e.g., when user presses Stop). Apache will now stop
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews trying to send a message body immediately after an error from write.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding and Nathan Kurz] PR#335
aa2c453d3c6e416b56b29247bedd9a0af2721e93Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Rearrange Configuration.tmpl so that mod_rewrite has higher priority
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews than mod_alias, and mod_alias has higher priority than mod_proxy;
e412ae947df6de858883564b8676a9650df70d9aMark Andrews rearranged other modules to enhance understanding of their purpose
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and relative order (and maybe even reduce some overhead).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding and Sameer Parekh]
07a926724c0a91d85b85a94441938d0094e88cffMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix graceful restart. Eliminate many signal-related race
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews conditions in both forms of restart, and in SIGTERM. See
07a926724c0a91d85b85a94441938d0094e88cffMark Andrews htdocs/manual/stopping.html for details on stopping and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews restarting the parent. [Dean Gaudet]
90023730de34721b8cd8f3b5d059a28b7a65cf04Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix memory leaks in mod_rewrite, mod_browser, mod_include. Tune
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews memory allocator to avoid a behaviour that required extra blocks to
922e6a3c2ac4ef900dd9dc99f0cc137f18372583Andreas Gustafsson be allocated. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow suexec to access files relative to current directory but not
280747fa7c1d4597d47f7be8ec5fb7c8980c1952Andreas Gustafsson above. (Excluding leading / or any .. directory.) [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#269, 319, 395
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
27d725f2b0f8d176d4625dc8b2ed71269b25c9a7Andreas Gustafsson *) Fix suexec segfault when group doesn't exist. [Gregory Neil Shapiro]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PR#367, 368, 354, 453
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
337ca1838428c52bca3c72288342ce3dee550a04Andreas Gustafsson *) Fix the above fix: if suexec is enabled, avoid destroying r->url
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews while obtaining the /~user and save the username in a separate data
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews area so that it won't be overwritten by the call to getgrgid(), and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews fix some misuse of the pool string allocation functions. Also fixes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a general problem with parsing URL query info into args for CGI scripts.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding] PR#339, 367, 354, 453
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6b0ce7d29fac9df84ed34aa2d4634e754aec750dAndreas Gustafsson *) Fix IRIX warning about bzero undefined. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix problem with <Directory proxy:...>. [Martin Kraemer] PR#271
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Corrected spelling of "authoritative". AuthDBAuthoratative became
c89ac488df58cf6a37918cd00236eedf015830f8Andreas Gustafsson AuthDBAuthoritative. [Marc Slemko] PR#420
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) MaxClients should be at least 1. [Lars Eilebrecht] PR#375
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The default handler now logs invalid methods or URIs (i.e. PUT on an
c89ac488df58cf6a37918cd00236eedf015830f8Andreas Gustafsson object that can't be PUT, or FOOBAR for some method FOOBAR that
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews apache doesn't know about at all). Log 404s that occur in mod_include.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Paul Sutton, John Van Essen]
46a7e707fee6d7ba6ca6dae200ff6e0230f4d2f1Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If a soft timeout (or lingerout) occurs while trying to flush a
9d3ef72b37c7d23ce3aaaaa5cd0434b4e5ed5c12Mark Andrews buffer or write inside buff.c or fread'ing from a CGI's output,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews then the timeout would be ignored. [Roy Fielding] PR#373
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a7c76f1924d5fc914c579fd3b0276ffbddd2f65aMark Andrews *) Work around a bug in Netscape Navigator versions 2.x, 3.x and 4.0b2's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parsing of headers. If the terminating empty-line CRLF occurs starting
c50a002bd1e36d13e95d74b43ed4a2b5d6fdcec3Mark Andrews at the 256th or 257th byte of output, then Navigator will think a normal
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews image is invalid. We are guessing that this is because their initial
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews read of a new request uses a 256 byte buffer. We check the bytes written
c50a002bd1e36d13e95d74b43ed4a2b5d6fdcec3Mark Andrews so far and, if we are about to tickle the bug, we instead insert a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews padding header of eminent bogosity. [Roy Fielding and Dean Gaudet] PR#232
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c50a002bd1e36d13e95d74b43ed4a2b5d6fdcec3Mark Andrews *) Fixed SIGSEGV problem when a DirectoryIndex file is also the source
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of an external redirection. [Roy Fielding and Paul Sutton]
07a46d6dca37ef96b6e9c1fc0c2789983d91819cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Configure would create a broken Makefile if the configuration file
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews contained a commented-out Rule. [Roy Fielding]
051beeafa6547440da17985665b31952b85ede56Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Promote per_dir_config and subprocess_env from the subrequest to the
cd73a1c823bc9feea603803a96a9e5f5da8bf33dMichael Sawyer main request in mod_negotiation. In particular this fixes a bug
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews where <Files> sections wouldn't properly apply to negotiated content.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6d85ebc2d2ccbb8ef01c3ac1659686d3c2be0377Brian Wellington *) Fix a potential deadlock in mod_cgi script_err handling.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ralf S. Engelschall]
b0796437d493ca2e083ab0ff02acf0dc0c8ad2a3David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) rotatelogs zero-pads the logfile names to improve alphabetic sorting.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Mitchell Blank Jr]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
98b8d49c0c0bbace27966eed5811bc81255ce297Brian Wellington *) Updated mod_rewrite to 3.0.4: Fixes HTTP redirects from within
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews .htaccess files because the RewriteBase was not replaced correctly.
e42c402595802edceafbd3e5338dda011fbbcdb6Michael Sawyer Updated mod_rewrite to 3.0.5: Fixes problem with rewriting inside
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews <Directory> sections missing a trailing /. [Ralf S. Engelschall]
3291587f23b940c986f41cf37b2e531f618ec2bdMichael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Clean up Linux settings in conf.h by detecting 2.x versus 1.x. For
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1.x the settings are those of pre-1.2b8. For 2.x we include
3291587f23b940c986f41cf37b2e531f618ec2bdMichael Sawyer USE_SHMGET_SCOREBOARD (scoreboard in shared memory rather than file) and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews HAVE_SYS_RESOURCE_H (enable the RLimit commands).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR#336, PR#340
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b374727d513049b4bfcb9eb021002595fe6a7c63Mark Andrews *) Redirect did not preserve ?query_strings when present in the client's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews request. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Configure was finding non-modules on EXTRA_LIBS. [Frank Cringle] PR#380
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Use /bin/sh5 on ULTRIX. [P. Alejandro Lopez-Valencia] PR#369
2868291ab5d4deba4d61c110f92dc397807702c7Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add UnixWare compile/install instructions. [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
be1d71fd17c92b0acee36ba43ebe4daa498e8014Mark Andrews *) Add mod_example (illustration of API techniques). [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add macro for memmove to conf.h for SUNOS4. [Marc Slemko]
8e732de92e9814e3fa54e36d2154939ea6086b16Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improve handling of directories when filenames have spaces in them.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko]
afd2f40b3cff8c3c307155bdc27e5b60e9115545Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) For hosts with multiple IP addresses, try all additional addresses if
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews necessary to get a connect. Fail only if hostent address list is
c605f30cd7d540243509c86cf31b01bdd4fe19feMark Andrews exhausted. [Chuck Murcko]
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews
c605f30cd7d540243509c86cf31b01bdd4fe19feMark Andrews *) More signed/unsigned port fixes. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3302ed8d6eaef8f598338f5682477c5f6acd583cBob Halley *) HARD_SERVER_LIMIT can be defined in the Configuration file now.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b8
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d03bffc40e68ddb63d278946fd9f7f1ad784f5bcMichael Sawyer *) suexec.c doesn't close the log file, allowing CGIs to continue writing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to it. [Marc Slemko]
d03bffc40e68ddb63d278946fd9f7f1ad784f5bcMichael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The addition of <Location> and <File> directives made the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sub_req_lookup_simple() function bogus, so we now handle
91ac60fe11b3ebd095c5fed0db343b2c9a97e646Mark Andrews the special cases directly. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
83d2840b6f1a5ec898e441be148ddd3211f11583Bob Halley *) We now try to log where the server is dumping core when a fatal
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews signal is received. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved lingering_close by adding a special timeout, removing the
42e31e6ef7689e0c0569a1f9a5c250d73870b073Michael Graff spurious log messages, removing the nonblocking settings (they
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are not needed with the better timeout), and adding commentary
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews about the NO_LINGCLOSE and USE_SO_LINGER issues. NO_LINGCLOSE is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews now the default for SunOS4, UnixWare, NeXT, and IRIX. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a405a53d536521e6c93f47485aacd7c1a1ffb29eAndreas Gustafsson *) Send error messages about setsockopt failures to the server error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews log instead of stderr. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix loopholes in proxy cache expiry vis a vis alarms. [Brian Moore]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
53df51bf458da9b04074b6b62b5639c926a751e4Andreas Gustafsson *) Stopgap solution for CGI 3-second delay with server-side includes: if
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews processing a subrequest, allocate memory from r->main->pool instead
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of r->pool so that we can avoid waiting for free_proc_chain to cleanup
ba43c53451d5c38765f376eeede457178b36951aBob Halley in the middle of an SSI request. [Dean Gaudet] PR #122
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed status of response when POST is received for a nonexistent URL
b9dead30b1806bcfcca9a47dfa3f5078c6377910Mark Andrews (was sending 405, now 404) and when any method is sent with a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews full-URI that doesn't match the server and the server is not acting
056141f2878d1046306ef0ba035263a00de57f98Mark Andrews as a proxy (was sending 501, now 403). [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5126112bc3639b9dae5726c3148d6699d277e789Mark Andrews *) Host port changed to unsigned short. [Ken Coar] PR #276
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4440f995911810aaa98d8985ac1a8192095879f2Michael Graff *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
72c815ed1780b9039b9ad0d31faf68b3b5c05637Andreas Gustafsson *) Defined USE_SHMGET_SCOREBOARD for shared memory on Linux. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Report extra info from errno with many errors that cause httpd to exit.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews spawn_child, popenf, and pclosef now have valid errno returns in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews event of an error. Correct problems where errno was stomped on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews before being reported. [Dean Gaudet]
b7e031d5173476224027407d8e23eaa7557fc396Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) In the proxy, if the cache filesystem was full, garbage_coll() was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews never called, and thus the filesystem would remain full indefinitely.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews We now also remove incomplete cache files left if the origin server
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews didn't send a Content-Length header and either the client has aborted
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews transfer or bwrite() to client has failed. [Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed the handling of module and script-added header fields.
7ec4367f3d578170a9495ff3c851b248c1656f08Andreas Gustafsson Improved the interface for sending header fields and reduced
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the duplication of code between sending okay responses and errors.
2c9c7c5bb5975a18925c30aeb33a26094902f1c1Andreas Gustafsson We now always send both headers_out and err_headers_out, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ensure that the server-reserved fields are not being overridden,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews while not overriding those that are not reserved. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Moved transparent content negotiation fields to err_headers_out
4440f995911810aaa98d8985ac1a8192095879f2Michael Graff to reflect above changes. [Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed the determination of whether or not we should make the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews connection persistent for all of the cases where some other part
4440f995911810aaa98d8985ac1a8192095879f2Michael Graff of the server has already indicated that we should not. Also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews improved the ordering of the test so that chunked encoding will
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be set whenever it is desired instead of only when KeepAlive
4440f995911810aaa98d8985ac1a8192095879f2Michael Graff is enabled. Added persistent connection capability for most error
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews responses (those that do not indicate a bad input stream) when
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews accessed by an HTTP/1.1 client. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
abaec24086f0cc3d7c0994ca9d2247b40eb6aaedBrian Wellington *) Added missing timeouts for sending header fields, error responses,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and the last chunk of chunked encoding, each of which could have
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews resulted in a process being stuck in write forever. Using soft_timeout
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requires that the sender check for an aborted connection rather than
3ad16d4c3a5029662d4ec804f7644739d011d03dBob Halley continuing after an EINTR. Timeouts that used to be initiated before
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews send_http_header (and never killed) are now initiated only within or
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews around the routines that actually do the sending, and not allowed to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews propagate above the caller. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
32b2cdf212de957e3f9b0efca59f098ed4fb42deBrian Wellington *) mod_auth_anon required an @ or a . in the email address, not both.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) per_dir_defaults weren't set correctly until directory_walk for
b42a7e9d80e293a5104d9de6ddabd29676918aa5Andreas Gustafsson name-based vhosts. This fixes an obscure bug with the wrong config
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews info being used for vhosts that share the same ip as the server.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
7f52817a92d74be0d970c33b204f8f13309eece5Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved generation of modules/Makefile to be more generic for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews new module directories. [Ken Coar, Chuck Murcko, Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4b809ba3464c9fb6bb08e9153b9286a8f8a37b01Brian Wellington *) Generate makefile dependency for Configuration based on the actual
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews name given when running the Configure process. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed problem with vhost error log not being set prior to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews initializing virtual hosts. [Dean Gaudet]
1fc26319b5d69d19a7a31c8d0ab1afc2beef0c41Andreas Gustafsson
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Fixed infinite loop when a trailing slash is included after a type map
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews file URL (extra path info). [Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7da0286b540515c82ea83163d6cba59a64fa3eddMichael Graff *) Fixed server status updating of per-connection counters. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add documentation for DNS issues (reliability and security), and try
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to explain the virtual host matching process. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Try to continue gracefully by disabling the vhost if a DNS lookup
c4ec2c3190175705df255aa3d5e842a96137a5a1Andreas Gustafsson fails while parsing the configuration file. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8529c3cdc6abdf3514cb0127313a976bbc3b3936Andreas Gustafsson *) Improved calls to setsockopt. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
87ecd67dae468cf5c9bae213c6fa321449b2ebc2Andreas Gustafsson *) Negotiation changes: Don't output empty content-type in variant list;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Output charset in variant list; Return sooner from handle_multi() if
f38a84ce830efefe48838425ab281e0ae2a91d0eAndreas Gustafsson no variants found; Add handling of '*' wildcard in Accept-Charset.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Petr Lampa and Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed overlaying of request/sub-request notes and headers in
1b32bc7da1da9059abd68d6dd15b23e8a442afa3Brian Wellington mod_negotiation. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If two variants' charset quality are equal and one is the default
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews charset (iso-8859-1), then prefer the variant that was specifically
4187398298c1916f409b44e0457f60e551f5ea1bAndreas Gustafsson listed in Accept-Charset instead of the default. [Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Memory allocation problem in push_array() -- it would corrupt memory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when nalloc==0. [Kai Risku <krisku@tf.hut.fi> and Roy Fielding]
4b809ba3464c9fb6bb08e9153b9286a8f8a37b01Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) invoke_handler() doesn't handle mime arguments in content-type
a69cebac84ec223b908e056678fa7c1181785b20Andreas Gustafsson [Petr Lampa] PR#160
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
7d8d82cee0910a0252e1c37bace732e996789772Andreas Gustafsson [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed problem with ErrorDocument not working for virtual hosts
e5d0f6d61e2349e1512c40922305b28c69cb4d3fBrian Wellington due to one of the performance changes in 1.2b7. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
37a8fbab3a1fe6d513b767118cba7515152c2b9bBrian Wellington *) Log an error message if we get a request header that is too long,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews since it may indicate a buffer overflow attack. [Marc Slemko]
a38f86ea5bb9f924b5912d8444862000a1323082Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Made is_url() allow "[-.+a-zA-Z0-9]+:" as a valid scheme and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not reject URLs without a double-slash, as per RFC2068 section 3.2.
7d8d82cee0910a0252e1c37bace732e996789772Andreas Gustafsson [Ken Coar] PR #146, #187
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added table entry placeholder for new header_parser callback
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews in all of the distributed modules. [Ken Coar] PR #191
735fb4ffa6a76413f85101d7d625a4776d6ee6cdAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow for cgi files without the .EXE extension on them under OS/2.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Garey Smiley] PR #59
d70e2f3652fcbcfb2cfa0781a71e2bd2396871f3Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed error message when resource is not found and URL contains
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews path info. [Petr Lampa and Dean Gaudet] PR #40
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9139e153da3ffa88457d3e035e2f0132c63a4a71Andreas Gustafsson *) Fixed user and server confusion over what should be a virtual host
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and what is the main server, resulting in access to something
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews other than the name defined in the virtualhost directive (but
30e6ea9dedbe0738f9729833b1b59042dbebc4dfBrian Wellington with the same IP address) failing. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
1aae88078f409b39c24e2313ffdd767ed29ac787Brian Wellington *) Updated mod_rewrite to version 3.0.2, which: fixes compile error on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews AIX; improves the redirection stuff to enable the users to generally
17a28c1f02c5093b207a3b64201aa9e71df78ebaAndreas Gustafsson redirect to http, https, gopher and ftp; added TIME variable for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews RewriteCond which expands to YYYYMMDDHHMMSS strings and added the
b5232b135db580a2c16666e74a82f11130e0731fAndreas Gustafsson special patterns >STRING, <STRING and =STRING to RewriteCond, which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews can be used in conjunction with %{TIME} or other variables to create
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews time-dependent rewriting rules. [Ralf S. Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
87075c90f668f4c2f7a709a6bd32bb8e013ae73dBrian Wellington *) bpushfd() no longer notes cleanups for the file descriptors it is handed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Module authors may need to adjust their code for proper cleanup to take
cea88d887559f209ae9d993e0a8fb58d03f60e77Brian Wellington place (that is, call note_cleanups_for_fd()). This change fixes problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with file descriptors being erroneously closed when the proxy module was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in use. [Ben Laurie]
a7705f38e91cc6afaba0426f6b452c9ae5a4efeaAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix bug in suexec reintroduced by changes in 1.2b7 which allows
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews initgroups() to hose the group information needed for later
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews comparisons. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove unnecessary call to va_end() in create_argv() which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews caused a SEGV on some systems.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
735fb4ffa6a76413f85101d7d625a4776d6ee6cdAndreas Gustafsson *) Use proper MAXHOSTNAMELEN symbol for limiting length of server name.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c05eb51a1b9ebd156b9fec957d60c2579c968468Mark Andrews *) Clear memory allocated for listeners. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved handling of IP address as a virtualhost address and
a3365e361f0066609d250005e2b1082cb2ba35fdAndreas Gustafsson introduced "_default_" as a synonym for the default vhost config.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet] PR #212
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e32394a2ac3466a2235f79ee32c247a11be42a8dAndreas GustafssonChanges with Apache 1.2b7
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Port to UXP/DS(V20) [Toshiaki Nomura <nom@yk.fujitsu.co.jp>]
031f9084fc1ca8b258c151f428677e7226556ad0Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) unset Content-Length if chunked (RFC-2068) [Petr Lampa]
031f9084fc1ca8b258c151f428677e7226556ad0Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_negotiation fixes [Petr Lampa] PR#157, PR#158, PR#159
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - replace protocol response numbers with symbols
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - save variant-list into main request notes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - free allocated memory from subrequests
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - merge notes, headers_out and err_headers_out
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
44215b932d4f0ce5257d794cb6f76b9282455eb1Mark Andrews *) changed status check mask in proxy_http.c from "HTTP/#.# ### *" to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "HTTP/#.# ###*" to be more lenient about what we accept.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko]
44215b932d4f0ce5257d794cb6f76b9282455eb1Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) more proxy FTP bug fixes:
eea2865feca4ea56facd2ef6e7226386a3604f65Andreas Gustafsson - Changed send_dir() to remove user/passwd from displayed URL.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Changed login error messages to be more descriptive.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - remove setting of SO_DEBUG socket option
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Make ftp_getrc() more lenient about multiline responses,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews specifically, 230 responses which don't have continuation 230-
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on each line). These seem to be all NT FTP servers, and while
6d8568cb45240974da0ee1b653b28e3fdfffe93eAndreas Gustafsson perhaps questionable, they appear to be legal by RFC 959.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews - Add missing kill_timeout() after transfer to user completes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
6d3f954c572db02159deedd444373161fda47a88Brian Wellington *) Fixed problem where a busy server could hang when restarting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews after being sent a SIGHUP due to child processes not exiting.
b0f941a50f24656b3523609f86cead41b0269c7aBrian Wellington [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Modify mod_include escaping so a '\' only signifies an escaped
ea419adc4eca4c3e44f2c282035b5dce6b795fe2Andreas Gustafsson character if the next character is one that needs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews escaping. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
eea2865feca4ea56facd2ef6e7226386a3604f65Andreas Gustafsson *) Eliminated possible infinite loop in mod_imap when relative URLs are
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews used with a 'base' directive that does not have a '/' in it.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko, reported by Onno Witvliet <onno@tc.hsa.nl>]
886b96ebfd555cfeaf37ae46fc08421a41c61392Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reduced the default timeout from 1200 seconds to 300, and the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews one in the sample configfile from 400 to 300. [Marc Slemko]
674f1cfb1d7dfa92e52db950dbe80e60ef8f5cddBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Stop vbprintf from crashing if given a NULL string pointer;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews print (null) instead. [Ken Coar]
da76a8046e01e1c1c2e6f75772afb2c4f202cc25Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't disable Nagle algorithm if system doesn't have TCP_NODELAY.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko and Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cd7ffa4c1286a48c10056632be3fb0b64c575c35Brian Wellington *) Fixed problem with mod_cgi-generated internal redirects trying to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews read the request message-body twice. [Archie Cobbs and Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0cff88818a96197995c3533f6cbfb1a0efc06db0Brian Wellington *) Reduced timeout on lingering close, removed possibility of a blocked
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews read causing the child to hang, and stopped logging of errors if
5bba7216f3263dc49dd4db2ac64b6203a9e2b180Andreas Gustafsson the socket is not connected (reset by client). [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e06aebbe7b5b3128f99b16d6756a074b4de28d37Mark Andrews *) Rearranged main child loop to remove duplication of code in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews select/accept and keep-alive requests, fixed several bugs regarding
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews checking scoreboard_image for exit indication and failure to
40b1b44ed65b9655a135fc867ed9f0374c247ad4Andreas Gustafsson account for all success conditions and trap all error conditions,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews prevented multiple flushes before closing the socket; close the entire
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews socket buffer instead of just one descriptor, prevent logging of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews EPROTO and ECONNABORTED on platforms where supported, and generally
ab8668fb583a92df0698f5cdac7e7b12ead614aaBrian Wellington improved readability. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Extensive performance improvements. Cleaned up inefficient use of
575db903aabb08137a757d1c60ebb0d286ecff56Andreas Gustafsson auto initializers, multiple is_matchexp calls on a static string,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and excessive merging of response_code_strings. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added double-buffering to mod_include to improve performance on
575db903aabb08137a757d1c60ebb0d286ecff56Andreas Gustafsson server-side includes. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a4c55a3d0813e00e3d7846cc9736110c61d0a2baAndreas Gustafsson *) Several fixes for suexec wrapper. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Make wrapper work for files on NFS filesystem.
c851f1cc2187b59687af94725fbacac022987d05Andreas Gustafsson - Fix portability problem of MAXPATHLEN.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Fix array overrun problem in clean_env().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - Fix allocation of PATH environment variable
91614f2bc498ef7eea22e449c91951f4598c8223Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Removed extraneous blank line is description of mod_status chars.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Kurt Kohler]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
512661edd7d51c8c179cce89a855df6cec2fcdcdMark Andrews *) Logging of errors from the call_exec routine simply went nowhere,
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews since the logfile fd has been closed, so now we send them to stderr.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Harald T. Alvestrand]
385a9cb48a70b329e507c39d043fa9a44c659913James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed core dump when DocumentRoot is a CGI.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie, reported by geddis@tesserae.com]
385a9cb48a70b329e507c39d043fa9a44c659913James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed potential file descriptor leak in mod_asis; updated it and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews http_core to use pfopen/pfclose instead of fopen/fclose.
bd77de5fcaea4dcf2f0250ded32adfccd3a38256Brian Wellington [Randy Terbush and Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed handling of unsigned ints in ap_snprintf() on some chips such
48674819ebf9176b5d5582ae851e485c324c1159Michael Sawyer as the DEC Alpha which is 64-bit but uses 32-bit ints.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dean Gaudet and Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
48674819ebf9176b5d5582ae851e485c324c1159Michael Sawyer *) Return a 302 response code to the client when sending a redirect
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews due to a missing trailing '/' on a directory instead of a 301; now
9594482ba300a4d694162fa62ba636c7dd00d3b6Brian Wellington it is cacheable. [Markus Gyger]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
47ddde42728034854444cf17e278cebaea06f666Michael Graff *) Fix condition where, if a bad directive occurs in .htaccess, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sub_request() goes first to this directory, then log_reason() will
5613bf7de9760875da9f5fbc6ffcd93e0af967ffMark Andrews SIGSEGV because it doesn't have initialized r->per_dir_config.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [PR#162 from Petr Lampa, fix by Marc Slemko and Dean Gaudet]
edf8c55546efa9fb42da1c055ce02462a5c709c0David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix handling of lang_index in is_variant_better(). This was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews causing problems which resulted in the server sending the
c5944292e9ebee4a39fe939b9a16fe5596808556David Lawrence wrong language document in some cases. [Petr Lampa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove free() from clean_env() in suexec wrapper. This was nuking
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the clean environment on some systems.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Tweak byteserving code (e.g. serving PDF files) to work around
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews bugs in Netscape Navigator and Microsoft Internet Explorer.
c5944292e9ebee4a39fe939b9a16fe5596808556David Lawrence Emit Content-Length header when sending multipart/byteranges.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
36e0c379080343a0272dc076b7d7795ded04ee1dBrian Wellington *) Port to HI-UX/WE2. [Nick Maclaren]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
529a6b5224d751504027293a766a4c8b81241869Brian Wellington *) Port to HP MPE operating system for HP 3000 machines
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Mark Bixby <markb@cccd.edu>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
862a026a7d752fbc8b376df6f7a9080d7c778b49Brian Wellington *) Fixed bug which caused a segmentation fault if only one argument
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews given to RLimit* directives. [Ed Korthof]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
677045ed612e1c26a32b5700479e26c25bcede58Brian Wellington *) Continue persistent connection after 204 or 304 response. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved buffered output to the client by delaying the flush decision
febf5f8b55abb2e6e840488a29a5ef4e20654f67David Lawrence until the BUFF code is actually about to read the next request.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This fixes a problem introduced in 1.2b5 with clients that send
c34bdef6bd197a04990e52469ad68481532dd35aAndreas Gustafsson an extra CRLF after a POST request. Also improved chunked output
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews performance by combining writes using writev() and removing as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews many bflush() calls as possible. NOTE: Platforms without writev()
dc2c974dcf954a0a238d1afb886c445d06b1aa8bBrian Wellington must add -DNO_WRITEV to the compiler CFLAGS, either in Configuration
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews or Configure, unless we have already done so. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a32738e3e4ed9619c8ace22cd119e6769176b22cAndreas Gustafsson *) Fixed mod_rewrite bug which truncated the rewritten URL [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed mod_info output corruption bug introduced by buffer overflow
6dc130c7c95107748fff5f767161c2bb742f9f87Brian Wellington fixes. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed http_protocol to correctly output all HTTP/1.1 headers, including
49855f0856a0f6f9fed80af88faddf38f3e74eefAndreas Gustafsson for the special case of a 304 response. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improved handling of TRACE method by bypassing normal method handling
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and header parsing routines; fixed Allow response to always allow TRACE.
dc2c974dcf954a0a238d1afb886c445d06b1aa8bBrian Wellington [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed compiler warnings in the regex library. [Dean Gaudet]
d4ab9cd94f0fe0cf24ba36d21240215ae648c8d5James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Cleaned-up some of the generated HTML. [Ken Coar]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b6
080a4fe83c3ad208073bffbce1a2af8fe444214fMichael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow whitespace in imagemap mapfile coordinates. [Marc Slemko]
36007b707f28f36864e8d76f11379b22e9737538Michael Sawyer
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix typo introduced in fix for potential infinite loop around
9bef4575d71a084edf59ac681e53e35ae1b72166Andreas Gustafsson accept() in child_main(). This change caused the rev to 1.2b6.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1.2b5 was never a public beta.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b5
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Change KeepAlive semantics (On|Off instead of a number), add
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews MaxKeepAliveRequests directive. [Alexei Kosut]
9bef4575d71a084edf59ac681e53e35ae1b72166Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Various NeXT compilation patches, as well as a change in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews regex/regcomp.c since that file also used a NEXT define.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Andreas Koenig]
87f4c7933fd2962cca3b9b7e046327f3c6306b84Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow * to terminate the end of a directory match in mod_dir.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Allows /~* to match for both /~joe and /~joe/. [David Bronder]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't call can_exec() if suexec_enabled. Calling this requires
87f4c7933fd2962cca3b9b7e046327f3c6306b84Andreas Gustafsson scripts executed by the suexec wrapper to be world executable, which
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews defeats one of the advantages of running the wrapper. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Portability Fix: IRIX complained with 'make clean' about *pure* (removed)
10e6498d6d7b2cfd8d822788d817fc9a3e0b0c3aDavid Lawrence [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Migration from sprintf() to snprintf() to avoid buffer
10e6498d6d7b2cfd8d822788d817fc9a3e0b0c3aDavid Lawrence overflows. [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Provide portable snprintf() implementation (ap_snprintf)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews as well as *cvt family. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
dae5ce6ddb0a3c425865d3b6f0f13c4126eacc17Andreas Gustafsson *) Portability Fix: NeXT lacks unistd.h so we wrap it's inclusion
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9a8fea7bc8fb79ff1d31f0a2ba3c9694041c6f3aAndreas Gustafsson *) Remove mod_fastcgi.c from the distribution. This module appears
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to be maintained more through the Open Market channels and should
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews continue to be easily available at http://www.fastcgi.com/
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
663841abe0bb1cc8040e552597ef721c35b799e5Brian Wellington *) Fixed bug in modules/Makefile that wouldn't allow building in more
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews than one subdirectory (or cleaning, either). [Jeremy Laidman]
c49e3222b0912479015161e8b54a67a1abf9a0ffAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_info assumed that the config files were relative to ServerRoot.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken the Rodent]
bf68c5151b5c4f7d6b2783584434e61045a88d7fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) CGI scripts called as an error document resulting from failed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CGI execution would hang waiting for POST'ed data. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
178f73169a27ac031f58863ae12cdb33dc15f6c4Brian Wellington *) Log reason when mod_dir returns access HTTP_FORBIDDEN
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ken the Rodent]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9c4cba349f52bb8176c3858b2b5b340f13603802Brian Wellington *) Properly check errno to prevent display of a directory index
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews when server receives a long enough URL to confuse stat().
64024eaa4d029b0bd090c435b8b02b45eef5cd89Andreas Gustafsson [Marc Slemko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Several security enhancements to suexec wrapper. It is _highly_
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews recommended that previously installed versions of the wrapper
da527e4ff6a013364826637963e7ac372e024f33David Lawrence be replaced with this version. [Randy Terbush, Jason Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
8d51d9e67e1e5dcf10203c4147ece519c7daa57dMark Andrews - ~user execution now properly restricted to ~user's home
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory and below.
30576c592b538cab293cf6e1f6265d376cd5a12cAndreas Gustafsson - execution restricted to UID/GID > 100
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - restrict passed environment to known variables
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - call setgid() before initgroups() (portability fix)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews - remove use of setenv() (portability fix)
ce2be9b7211ab5bacaa10fe74ef35def3a3f6089David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add HTTP/1.0 response forcing. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add access control via environment variables. [Ben Laurie]
9bf765ab3a5203b854d32266e6162e547791383cDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add rflush() function. [Alexei Kosut]
f4d9f465cd29963a99554bbe2936509ea3568c89James Brister
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) remove duplicate pcalloc() call in new_connection().
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
adade77942b069127a7094df419b3ad39dafb385James Brister *) Fix incorrect comparison which could allow number of children =
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews MaxClients + 1 if less than HARD_SERVER_LIMIT. Also fix potential
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
ce8d0fffea20fe03fd0f075263f529ad55f82aacAndreas Gustafsson AIX PS/2, CONVEXOS. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
ea01648cb950b8d4b5625a8a91a4c1c019dec885Andreas Gustafsson It's more portable. [Martin Kraemer]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replace references to make in Makefile.tmpl with $(MAKE).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add ProxyBlock directive w/IP address caching. Add IP address
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews caching to NoCache directive as well. ProxyBlock works with all
7d7bd1b4f0270691f434d37b1052259a13185663Andreas Gustafsson handlers; NoCache now also works with FTP for anonymous logins.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Still more code cleanup. [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add "header parse" API hook [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix byte ordering problems for REMOTE_PORT [Chuck Murcko]
81f11a70588c6929d1aefd529b940efb70747fc2Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) suEXEC wrapper was freeing memory that had not been malloc'ed.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correctly allow access and auth directives in <Files> sections in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews server config files. [Alexei Kosut]
04d58db32739157df6c44e3f37ecb83816fd3f75Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix bug with ServerPath that could cause certain files to be not
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews found by the server. [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix handling of ErrorDocument so that it doesn't remove a trailing
5096958739769958dd7a6b69356bf41260033873David Lawrence double-quote from text and so that it properly checks for unsupported
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews status codes using the new index_of_response interface. [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Multiple fixes to the lingering_close code in order to avoid being
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews interrupted by a stray timeout, to avoid lingering on a connection
84f4e4a656926a795f3bae40b2a6308bebb48b49David Lawrence that has already been aborted or never really existed, to ensure that
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews we stop lingering as soon as any error condition is received, and to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews prevent being stuck indefinitely if the read blocks. Also improves
838281ed55d0d3939c2f510559d5852872ed4ddbDavid Lawrence reporting of error conditions. [Marc Slemko and Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed initialization of parameter structure for sigaction.
89e57b472d87a37aa6c49a5544d1d1dfe9617f5dDavid Lawrence [mgyger@itr.ch, Adrian Filipi-Martin]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed reinitializing the parameters before each call to accept and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews select, and removed potential for infinite loop in accept.
d1e971ba027a8d320cc87a02a71158970bd03308Mark Andrews [Roy Fielding, after useful PR from adrian@virginia.edu]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed condition where, if a child fails to fork, the scoreboard would
d1e971ba027a8d320cc87a02a71158970bd03308Mark Andrews continue to say SERVER_STARTING forever. Eventually, the main process
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews would refuse to start new children because count_idle_servers() will
475c936d4cd0fb83700eb3e022aaecc5626b9b4fJames Brister count those SERVER_STARTING entries and will always report that there
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews are enough idle servers. [Phillip Vandry]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d8c8722f28ca439b9ca46f109e2804a7eb33a1acBrian Wellington *) Fixed bug in bcwrite regarding failure to account for partial writes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Avoided calling bflush() when the client is pipelining requests.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Removed unnecessary flushes from http_protocol. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
4b7167e96abe79cdf194ac3865760a7139b70090Brian Wellington *) Added description of "." mode in server-status [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b4
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix possible race condition in accept_mutex_init() that
a4b496f2abd35b0f27761385c8679de1f5714b0dBrian Wellington could leave a small security hole open allowing files to be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews overwritten in cases where the server UID has write permissions.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Marc Slemko]
952e9025b0ecd20e6c7f7852551e36bb9677f713James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix awk compatibilty problem in Configure. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
952e9025b0ecd20e6c7f7852551e36bb9677f713James Brister *) Fix portablity problem in util_script where ARG_MAX may not be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews defined for some systems.
952e9025b0ecd20e6c7f7852551e36bb9677f713James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add changes to allow compilation on Machten 4.0.3 for PowerPC.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Randal Schwartz]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) OS/2 changes to support an MMAP style scoreboard file and UNIX
de8e189332e884db065b921f84e3ee4922ad10e3David Lawrence style magic #! token for better script portability. [Garey Smiley]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix bug in suexec wrapper introduced in b3 that would cause failed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews execution for ~userdir CGI. [Jason Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix initgroups() business in suexec wrapper. [Jason Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix month off by one in suexec wrapper logging.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b3:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix error in mod_cgi which could cause resources not to be properly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews freed, or worse. [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix find_string() NULL pointer dereference. [Howard Fear]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add set_flag_slot() at the request of Dirk and others.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Sync mod_rewrite with patch level 10. [Ralf Engelschall]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add changes to improve the error message given for invalid
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ServerName parameters. [Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add "Authoritative" directive for Auth modules that don't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews currently have it. This gives admin control to assign authoritative
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews control to an authentication scheme and allow "fall through" for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews those authentication modules that aren't "Authoritative" thereby
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews allowing multiple authentication mechanisms to be chained.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove requirement for ResourceConfig/AccessConfig if not using
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the three config file layout. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add PASV mode to mod_proxy FTP handler. [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Changes to suexec wrapper to fix the following problems:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1. symlinked homedirs will kill ~userdirs.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 2. initgroups() on Linux 2.0.x clobbers gr->grid.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 3. CGI command lines paramters problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 4. pw-pwdir for "docroot check" still the httpd user's pw record.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Randy Terbush, Jason Dour]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Change create_argv() to accept variable arguments. This fixes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a problem where arguments were not getting passed to the CGI via
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews argv[] when the suexec wrapper was active. [Randy Terbush, Jake Buchholz]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Collapse multiple slashes in path URLs to properly apply
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews handlers defined by <Location>. [Alexei Kosut]
202991557a4b7e8d3df7725d84f0fcae90dbaee6David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Define a sane set of DEFAULT_USER and DEFAULT_GROUP values for AIX.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Improve the accuracy of request duration timings by setting
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews r->request_time in read_request_line() instead of read_request().
1c823819b73f17cbfd188d35962da196a48190fbAndreas Gustafsson [Dean Gaudet]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reset timeout while reading via get_client_block() in mod_cgi.c
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Fixes problem with timed out transfers of large files. [Rasmus Lerdorf]
428b78e56dc10ea220fadfed11242ceb1d51d0e3Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add the ability to pass different Makefile.tmpl files to Configure
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews using the -make flag. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b719a598e77aada962b3a05cb00179dc929d3939Andreas Gustafsson *) Fix coredump triggered when sending a SIGHUP to the server caused
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by an assertion failure, in turn caused by an uninitialised field in a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews listen_rec.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie]
428b78e56dc10ea220fadfed11242ceb1d51d0e3Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add FILEPATH_INFO variable to CGI environment, which is equal to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews PATH_INFO from previous versions of Apache (in certain situations,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache 1.2's PATH_INFO will be different than 1.1's). [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [later removed in 1.2b11]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add rwrite() function to API to allow for sending strings of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews arbitrary length. [Doug MacEachern]
323b6387ce2575627427859b8668e7f27f090c4cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove rlim_t typedef for NetBSD. Do older versions need this?
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews NeXT. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Removed recent modification to promote the status code on internal
d68e4b66b1075e556b480f8bfb607aeba5da46f6Andreas Gustafsson redirects, since the correct fix was to change the default log format
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in mod_log_config so that it outputs the original status. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b2:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Update set_signals() to use sigaction() for setting handlers.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This appears to fix a re-entrant problem in the seg_fault()
e44d56866bd609e066380cbef414e6ce11a08976Andreas Gustafsson bus_error() handlers. [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Changes to allow mod_status compile for OS/2 [Garey Smiley]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
84c4c99c9e2cf14fb9ef6f6815a9fdb824475423Michael Sawyer *) changes for DEC AXP running OSF/1 v3.0. [Marc Evans]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f204bdd8e6703ff0ef1adf0a2c407202418a936dDavid Lawrence *) proxy_http.c bugfixes: [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1) fixes possible NULL pointer reference w/NoCache
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 2) fixes NoCache behavior when using ProxyRemote (ProxyRemote
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews host would cache nothing if it was in the local domain,
f204bdd8e6703ff0ef1adf0a2c407202418a936dDavid Lawrence and the local domain was in the NoCache list)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 3) Adds Host: header when not available
f204bdd8e6703ff0ef1adf0a2c407202418a936dDavid Lawrence 4) Some code cleanup and clarification
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_include.c bugfixes:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 1) Fixed an ommission that caused include variables to not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be parsed in config errmsg directives [Howard Fear]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 2) Remove HAVE_POSIX_REGEX cruft [Alexei Kosut]
8b31f5630f6345f686449f8a84c33c0813283e42Andreas Gustafsson 3) Patch to fix compiler warnings [perrot@lal.in2p3.fr]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 4) Allow backslash-escaping to all quoted text
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Yoshino <ben@wiliki.eng.hawaii.edu>]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews 5) Pass variable to command line if not set in XSSI's env
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Howard Fear]
13c32cb589e571e9204dbb091e145809288c9c21David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix infinite loop when processing Content-language lines in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews type-map files. [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
822f118444dcaddaf977bc73e958b2f755e4ddfdAndreas Gustafsson *) Closed file-globbing hole in test-cgi script. [Brian Behlendorf]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed problem in set_[user|group] that prevented CGI execution
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for non-virtualhosts when suEXEC was enabled. [Randy Terbush]
822f118444dcaddaf977bc73e958b2f755e4ddfdAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added PORTING information file. [Jim Jagielski]
8775909be9fc67180fc480115716f88174e74471James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added definitions for S_IWGRP and S_IWOTH to conf.h [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
406ce0cd9633188a79c008e8f7c8092fa54bc98cJames Brister *) Changed default group to "nogroup" instead of "nobody" [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a797a75953e21b514427d188bf5d5051419c10adBrian Wellington *) Fixed define typo of FCNTL_SERIALIZED_ACCEPT where
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews USE_FCNTL_SERIALIZED_ACCEPT was intended.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed additional uses of 0xffffffff where INADDR_NONE was intended,
17d91fddb33cc6e0bf2dfacf7156bb1ebba197d8David Lawrence which caused problems of systems where socket s_addr is >32bits.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added comment to explain (r->chunked = 1) side-effect in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews http_protocol.c [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a38e5f0695a8ddf0b3cbb70b5a172a5c6dce994bDavid Lawrence *) Replaced use of index() in mod_expires.c with more appropriate
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and portable isdigit() test. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Updated Configure for ...
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews OS/2 (DEF_WANTHSREGEX=yes, other code changes)
c244584cad2a71276e60919bf2c80c7d79dc073bDavid Lawrence *-dg-dgux* (bad pattern match)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews QNX (DEF_WANTHSREGEX=yes)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *-sunos4* (DEF_WANTHSREGEX=yes, -DUSEBCOPY)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *-ultrix (new)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *-unixware211 (new)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and added some user diagnostic info. [Ben Laurie]
abeb505bb6c1400dde1a40d0bff7b3a435666e1cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
57b3597444bc8716459f0fb3022b2c12f4eee2aeAndreas Gustafsson for better portability. [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Updated helpers/GuessOS for ...
99524919752c9b9abe1814007732b86592011cc1Brian Wellington SCO 5 (recognize minor releases)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SCO UnixWare (braindamaged uname, whatever-whatever-unixware2)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SCO UnixWare 2.1.1 (requires a separate set of #defines in conf.h)
26c86a6fc85c89447d23d4a3e34b11157a2ff6f4Andreas Gustafsson IRIX64 (-sgi-irix64)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews ULTRIX (-unknown-ultrix)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SINIX (-whatever-sysv4)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews NCR Unix (-ncr-sysv4)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and fixed something in helpers/PrintPath [Ben Laurie]
b3157263ee12a5792737f09b708d3fc65ca99e01Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.2b1
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Not listed. See <http://www.apache.org/docs/new_features_1_2.html>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.1.1
b90d3f516fd62514ff0b06a6ee0311d7ab5fbbb4Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed bug where Cookie module would make two entries in the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews logfile for each access [Mark Cox]
b35a009df86b4aa3793e87602c95af2a503ec0eeMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed bug where Redirect in .htaccess files would cause memory
7bb1e299e133de5d530aa4cb545f4130aabf5235Andreas Gustafsson leak. [Nathan Neulinger]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) MultiViews now works correctly with AddHandler [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
482b9dae17bc5dc4e51b78d3c5b1a18c7c1adae9Andreas Gustafsson *) Problems with mod_auth_msql fixed [Dirk vanGulik]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix misspelling of "Anonymous_Authorative" directive in mod_auth_anon.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
34ea3c6fd940a8514b5ec609491f823263a735c7Michael SawyerChanges with Apache 1.1.0
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3c671ac666de8a7dcd7bd02afa20968da0b85bbdMark Andrews *) Bring NeXT support up to date. [Takaaki Matsumoto]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3c671ac666de8a7dcd7bd02afa20968da0b85bbdMark Andrews *) Bring QNX support up to date. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3c671ac666de8a7dcd7bd02afa20968da0b85bbdMark Andrews *) Make virtual hosts default to main server keepalive parameters.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Alexei Kosut, Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix missing address family for connect, also remove unreachable statement
58c42ee18c186b2151ced62f64aa4ca23cff4a1dJames Brister in mod_proxy. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
58c42ee18c186b2151ced62f64aa4ca23cff4a1dJames Brister *) mod_env now turned on by default in Configuration.tmpl.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Bugs which were fixed:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a) yet more mod_proxy bugs [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews b) CGI works again with inetd [Alexei Kosut]
5dc6a24e8b6808f03e7a9bc6530d646ebba927dbMark Andrews c) Leading colons were stripped from passwords [osm@interguide.com]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews d) Another fix to multi-method Limit problem [jk@tools.de]
242dfd9cc6901a5e02dae94acdecdb91e78ea07cMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.1b4
77771185071bf74d53378f1a3099a04d2af5153eBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) r->bytes_sent variable restored. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Previously broken multi-method <Limit> parsing fixed. [Robert Thau]
0d5d8e2bbf2c0c129f0416f24758a0925ce12be8James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More possibly unsecure programs removed from the support directory.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More mod_auth_msql authentication improvements.
99f3a24e69edbb19e4fe7f2fb0a72c478f8c3cafJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) VirtualHosts based on Host: headers no longer conflict with the
aa79283a0d97d5d77d3c17bcb1756035eabe647aAndreas Gustafsson Listen directive.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) OS/2 compatibility enhancements. [Gary Smiley]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) POST now allowed to directory index CGI scripts.
aa79283a0d97d5d77d3c17bcb1756035eabe647aAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Actions now work with files of the default type.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Bugs which were fixed:
aa79283a0d97d5d77d3c17bcb1756035eabe647aAndreas Gustafsson a) more mod_proxy bugs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews b) early termination of inetd requests
0bfcec250f9705a1211d0374f0fc1049960de84bMark Andrews c) compile warnings on several systems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews d) problems when scripts stop reading output early
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b5f24a6988e04710bee0281b03b7e168358ac868Andreas GustafssonChanges with Apache 1.1b3
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
379bd2c19cec393f56a2e9c42cc87fc8213a1b62James Brister *) Much of cgi-bin and all of cgi-src has been removed, due to
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews various security holes found and that we could no longer support
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews them.
379bd2c19cec393f56a2e9c42cc87fc8213a1b62James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The "Set-Cookie" header is now special-cased to not merge multiple
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews instances, since certain popular browsers can not handle multiple
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Set-Cookie instructions in a single header. [Paul Sutton]
c24265935e70d17279153b3cde43e3f6c3527577Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) rprintf() added to buffer code, occurrences of sprintf removed.
bedfa169b4cc5511b34c0c4a54c5b8aae364babeJames Brister [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) CONNECT method for proxy module, which means tunneling SSL should work.
bedfa169b4cc5511b34c0c4a54c5b8aae364babeJames Brister (No crypto needed) Also a NoCache config directive.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Several API additions: pstrndup(), table_unset() and get_token()
d85552c450141012e7cbeaacc77fb9575b0bb4cbJames Brister functions now available to modules.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_imap fixups, in particular Location: headers are now complete
47c196192afa37b2dea728e52579779f190bf07fJames Brister URL's.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
adf82221858138f295bce732e86dcac34645692eJames Brister *) New "info" module which reports on installed module set through a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews special URL, a la mod_status.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f3b52d9fe5e7e851adecad4eec8952cceda47592Brian Wellington *) "ServerPath" directive added - allows for graceful transition
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for Host:-header-based virtual hosts.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Anonymous authentication module improvements.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) MSQL authentication module improvements.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Status module design improved - output now table-based. [Ben Laurie]
71a4339351de0d8233d61025a667ec4dc3e0f868James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) htdigest utility included for use with digest authentication
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews module.
71a4339351de0d8233d61025a667ec4dc3e0f868James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_negotiation: Accept values with wildcards to be treated with
71a4339351de0d8233d61025a667ec4dc3e0f868James Brister less priority than those without wildcards at the same quality
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews value. [Alexei Kosut]
0380c44d0238a88e167526954d630d071739ed28Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Bugs which were fixed:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a) numerous mod_proxy bugs
a6733246eafeb43755ce6d7ec3627ac4209cbccbMark Andrews b) CGI early-termination bug [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews c) Keepalives not working with virtual hosts
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews d) RefererIgnore problems
36bcb04af27e050ddc04b2ff37dbeafc84538fd4Brian Wellington e) closing fd's twice in mod_include (causing core dumps on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Linux and elsewhere).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.1b2
ed71ea51c6ecb5d7d659b6e6a20f6b3f5c2678c6David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Bugfixes:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a) core dumps in mod_digest
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews b) truncated hostnames/ip address in the logs
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews c) relative URL's in mod_imap map files
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.1b1
9c11326b18c69b9b2fd6102d80fbd568ae6bd31eAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Not listed. See <http://www.apache.org/docs/new_features_1_1.html>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.0.3
c78dc8b001ba46ef1edb784635c3ba7b3e4456ceJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Internal redirects which occur in mod_dir.c now preserve the
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence query portion of a request (the bit after the question mark).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Adam Sussman]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Escape active characters '<', '>' and '&' in html output in
d5399cc351a549db957185993b320a3bffa40e41James Brister directory listings, error messages and redirection links.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Apache will now work with LynxOS 2.3 and later [Steven Watt]
40f349ad1f2f0a63ef2784b8affcd44dc660b39cJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix for POSIX compliance in waiting for processes in alloc.c.
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews [Nick Williams]
ac3b769801d794993e9eb6065b2f7144ffcfc9acMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) setsockopt no longer takes a const declared argument [Martijn Koster]
69b691c9624f31e59b8d128ada902a82127c15a3James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reset timeout timer after each successful fwrite() to the network.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews This patch adds a reset_timeout() procedure that is called by
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews send_fd() to reset the timeout ever time data is written to the net.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Nathan Schrenk]
dba20696eb808075d849e5a4cc8d854555869fb2Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) timeout() signal handler now checks for SIGPIPE and reports
98c2f9a11185b8a5dd601798990612beb6d1578eJames Brister lost connections in a more user friendly way. [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Location of the "scoreboard" file which used to live in /tmp is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews now configurable (for OSes that can't use mmap) via ScoreBoardFile
98c2f9a11185b8a5dd601798990612beb6d1578eJames Brister which works similar to PidFile (in httpd.conf) [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Include sys/resource.h in the correct place for SunOS4 [Sameer Parekh]
705cb05a187558959d20ec2c31e06de8e96f61b2David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) the pstrcat call in mod_cookies.c didn't have an ending NULL,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which caused a SEGV with cookies enabled
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Output warning when MinSpareServers is set to <= 0 and change it to 1
a3c0a79b61edfd6a021c080d4b368c9c962fcad6Andreas Gustafsson [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Log the UNIX textual error returned by some system calls, in
0b056755b2f423ba5f6adac8f7851d78f7d11437David Lawrence particular errors from accept() [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add strerror function to util.c for SunOS4 [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.0.2
174a4f7b80af7f7a33cd9a098c13af23e5ec2a28David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) patch to get Apache compiled on UnixWare 2.x, recommended as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix get_basic_auth_pw() to set the auth_type of the request.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
174a4f7b80af7f7a33cd9a098c13af23e5ec2a28David Lawrence
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) past changes to http_config.c to only use the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews setrlimit function on systems defining RLIMIT_NOFILE
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews broke the feature on SUNOS4. Now defines HAVE_RESOURCE
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for SUNOS and prototypes the needed functions.
0640343258a99230c62e39dfbbe1505e3a970ee8Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
dccfe96a449d135d1b3806a9ab8fd7481d017c8bAndreas Gustafsson [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix use of pointer to scratch memory. [Cliff Skolnick]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d98c74e2ec5b96bd22aa4ed6d893e8993787493bMichael Graff *) Merge multiple headers from CGI scripts instead of taking last
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews one. [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add support for SCO 5. [Ben Laurie]
d03d4524993ecf5da72694907cb8581eadbe5c4dBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.0.1
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
75f6c57d9544aa77a3b1a04587b4702c07343c90Brian Wellington *) Silence mod_log_referer and mod_log_agent if not configured
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f34984369fbc87f6cc5c5d1059303377a1724d79James Brister *) Recursive includes can occur if the client supplies PATH_INFO data
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and the server provider uses relative links; as file.html
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
7cd4c3ddd1baf5f2b204562fdba3da37c716cc78Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) The replacement for initgroups() did not call {set,end}grent(). This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews had two implications: if anything else used getgrent(), then
76a191c4202a4839e4ce598ec91f0c0d12f630aaAndreas Gustafsson initgroups() would fail, and it was consuming a file descriptor.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) On heavily loaded servers it was possible for the scoreboard to get
fef059dcec0f7f83b09b9ce30b91b21a51d9c481Andreas Gustafsson out of sync with reality, as a result of a race condition.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The observed symptoms are far more Apaches running than should
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be, and heavy system loads, generally followed by catastrophic
5f80c1428b9b7235fc9c1c80aa505457c3043504Brian Wellington system failure. [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix typo in license. [David Robinson]
af602636644fdfaabc331bd926b0aabb9432e152Brian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 1.0.0 23 Nov 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b3aaa872e12e5c8658271bde8e4dd85d015e823fAndreas Gustafsson *) Not listed. See <http://www.apache.org/docs/new_features_1_0.html>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.16 05 Nov 1995
b3aaa872e12e5c8658271bde8e4dd85d015e823fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) New man page for 'httpd' added to support directory [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) .htgroup files can have more than one line giving members for a
389f2ccc2f5f00a11a14114d40492f7ac8249fa7Olafur Gudmundsson given group (each must have the group name in front), for NCSA
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews back-compatibility [Robert Thau]
6deb631b20b7e212d9a350759e472fa60f9e92e4David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Mutual exclusion around accept() is on by default for SVR4 systems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews generally, since they generally can't handle multiple processes in
b1d234eb75e2804e09d89178a76df39c321db51bBrian Wellington accept() on the same socket. This should cure flaky behavior on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a lot of those systems. [David Robinson]
a9bc95f22ef2dd4a12e79be99412c9f18b814a5dBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) AddType, AddEncoding, and AddLanguage directives take multiple
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews extensions on a single command line [David Robinson]
3c8e458ed2118828b13f35ca6fcc409da66c2869David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) UserDir can be disabled for a given virtual host by saying
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "UserDir disabled" in the <VirtualHost> section --- it was a bug
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews that this didn't work. [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles on QNX [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7ffc4c63ac8841d127c2d77c8716cc0dc483badcDavid Lawrence *) Corrected parsing of ctime time format [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) httpd does a perror() before exiting if it can't log its pid
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to the PidFile, to make diagnosing the error a bit easier.
19d1b1667d073850d4366352aaf8319efc5debeeBrian Wellington [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) <!--#include file="..."--> can no longer include files in the
20b20b23948b90cb2f7d7f402da99d09f837efd0David Lawrence parent directory, for NCSA back-compatibility. [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) '~' is *not* escaped in URIs generated for directory listings
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding]
a89b06a49cc61cdce2ce0ea0f62b514998fa16d9Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Eliminated compiler warning in the imagemap module [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a89b06a49cc61cdce2ce0ea0f62b514998fa16d9Andreas Gustafsson *) Fixed bug involving handling URIs with escaped %-characters
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in redirects [David Robinson]
7e9bfde7951c4e35bcbd0d3439790cc823a6794cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.15 14 Oct 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Switched to new, simpler license
4c9406964425ecc33fac38bb093e236b43b449e6Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
533131b93b69c4534b5f1f9138b59211670e6e6dMichael Graff
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reject paths containing %-escaped '%' or null characters [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correctly handles internal redirects to files with names containing '%'
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
533131b93b69c4534b5f1f9138b59211670e6e6dMichael Graff
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Use geteuid() rather than getuid() to see if we have root privilege,
533131b93b69c4534b5f1f9138b59211670e6e6dMichael Graff so that server correctly resets privilege if run setuid root. [Andrew
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Wilson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
73abbeb5823a9b3e01b05a8878db915eb6beccdaAndreas Gustafsson *) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix relative URLs in imagemap files [Randy Terbush]
538971e27d45861c937331f52b0e96d3a5157d8eAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Somewhat better fix for the old "Alias /foo/ /bar/" business
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c50936eb40263b65ebf6afe4e6556e2dc67c10e4Brian Wellington *) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews entries all name the same one. [David Robinson]
8977ab7ca0ed63a39a8cd0b915ab9cb1254dcd3fJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fix directory listings with filenames containing unusual characters
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
dc97fe4ed08488d314ab5bc8e99ed839542cf411David Lawrence *) Better URI-escaping for generated URIs in directories with filenames
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews containing unusual characters [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
95be83b467e2384d414693982318a5c06cccf1d7Andreas Gustafsson *) Fixed potential FILE* leak in http_main.c [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Unblock alarms on error return from spawn_child() [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
95be83b467e2384d414693982318a5c06cccf1d7Andreas Gustafsson *) Sample Config files have extra note for SCO users [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Configuration has note for HP-UX users [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
95be83b467e2384d414693982318a5c06cccf1d7Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Nuked bogus #define in httpd.h [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Better test for whether a system has setrlimit() [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Calls update_child_status() after reopen_scoreboard() [David Robinson]
6fa1cb5754695d550a58c6e8978fda65f5146af7David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.14 19 Sep 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles on SCO ODT 3.0 [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) AddDescription works (better) [Ben Laurie]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Leaves an intelligible error diagnostic when it can't set group
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews privileges on standalone startup [Andrew Wilson]
52b784e2a662038b833e4f9ad7bff881faf52a85Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews that machine, which claims to be BSD but does not support RLIMIT.
edb8ffbbf3e4b3c16a10fdd45720d97706e6bf50Mark Andrews [Randy Terbush]
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) gcc -Wall no longer complains about an unused variable when util.c
59abb512d344bfa09012cc11b7d814966f035da4Mark Andrews is compiled with -DMINIMAL_DNS [Andrew Wilson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
600cfa2ba4c50017581b6c14e3a688a82ecebbe0David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.13 07 Sep 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a120694df8156f76eb629e4d686d3729362e3c90David Lawrence *) Have built-in imagemap code recognize & honor Point directive [James
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Cloos]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Generate cleaner directory listings in directories with a mix of
a120694df8156f76eb629e4d686d3729362e3c90David Lawrence long and short filenames [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Properly initialize dynamically loaded modules [Royston Shufflebotham]
fcba8f29fedd5a29651579e22c96413b4f37cab9Brian Wellington
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Properly default ServerName for virtual servers [Robert Thau]
f6afa4ac95f3a6c86c61c0b122cd0dc6f957649bBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
34b394b43e2207e8f8f3703f0402422121455638David Lawrence Paul Richards and a cast of thousands...]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister *) On self-identified BSD systems (we don't try to guess any more),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews allocate a few extra file descriptors per virtual host with setrlimit,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if we can, to avoid running out. [Randy Terbush]
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Write 22-character lock file name into buffer with enough space
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on startup [Konstantin Olchanski]
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Use archaic setpgrp() interface on NeXT, which requires it [Brian
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister Pinkerton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister *) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Suppress -Wall warning by initializing variable in negotiation code
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence [Tobias Weingartner]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames BristerChanges with Apache 0.8.12 31 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister *) Doesn't pause three seconds after including a CGI script which is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews too slow to die off (this is done by not even trying to kill off
cde7793c7fb83adecf1a60bfc76cde6d1d7db0ebJames Brister subprocesses, including the SIGTERM/pause/SIGKILL routine, until
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews after the entire document has been processed). [Robert Thau]
527ea00c176abc167a6daf978e06f52c7e70aa06Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Doesn't do SSI if Options Includes is off. (Ooops). [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f7d85bae58428b91fde90f87c1e9ef89897acf2eAndreas Gustafsson *) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Allows .htaccess files to override <Directory> sections naming the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews same directory [David Robinson]
ec7493d8d1966a3dc5f5306fc0a96519e0de6dceAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Removed an efficiency hack in sub_req_lookup_uri which was
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews causing certain extremely marginal cases (e.g., ScriptAlias of a
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *particular* index.html file) to fail. [David Robinson]
bd36d3014e8a82d217ed1c88cdb4c717a25fee09Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Doesn't log an error when the requested URI requires
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews authentication, but no auth header line was supplied by the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews client; this is a normal condition (the client doesn't no auth is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews needed here yet). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Behaves more sanely when the name server loses its mind [Sean Welch]
8adf1b9e749ca303ea8a8ffb29b5101ecbe2ecf6Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
7b52c2ad3c9ca65712e962ddc803e34641f2bc07Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) RFC931 code no longer passes out name of prior clients on current
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requests if the current request came from a server that doesn't
8adf1b9e749ca303ea8a8ffb29b5101ecbe2ecf6Mark Andrews do RFC931. [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Configuration script accepts "Module" lines with trailing whitespace.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Robert Thau]
c052487cdf42c83bb0fa8e4c0ed135e801ac1e90Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Cleaned up compiler warning from mod_access.c [Robert Thau]
dcd66bf9667816cfc3419f2040e03f5621d88555Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Cleaned up comments in mod_cgi.c [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.11 24 Aug 1995
f4f3f2cf3499cf6c32f6329aca08b5c557f507f1Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Wildcard <Directory> specifications work. [Robert Thau]
ff8d15be4e6096329fe6ae8217d0adcabd08c94bOlafur Gudmundsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the file being requested itself, in addition to the directories leading
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews up to it. [Robert Thau]
6a13d6f3c687d463a2a88f696a5193a5651612baAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Logs access failures due to symlink checks or invalid client address
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in the error log [Roy Fielding, Robert Thau]
996f4a8bc34cb0203ce6a40ff82bca8bf32423ccAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Symlink checks deal correctly with systems where lstat of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews "/path/to/some/link/" follows the link. [Thau, Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Doesn't reset DirectoryIndex to 'index.html' when
6a13d6f3c687d463a2a88f696a5193a5651612baAndreas Gustafsson other directory options are set in a .htaccess file. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Clarified init code and nuked bogus warning in mod_access.c
47b26abe77184f9bedc68e36bdad03332cf67570David Lawrence [Florent Guillaume]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c0fcd6b98bc1fe5bbd2bd1a4d729215f65e3d20fJames Brister *) Corrected several directives in sample srm.conf
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews --- includes corrections to directory indexing icon-related directives
17d0495c338ca6273cc1e1e3fd9354ab785a9ae9Mark Andrews (using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews icons for encodings right, and turning on AddEncoding by default).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Roy Fielding]
4c5651ee049cbace08d5350e3d23a0d6da491fa8James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Corrected descriptions of args to AddIcon and AddAlt in command table
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [James Cloos]
e06abf2270cc397e6a1ab8e25055e9c05f256beeJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) INSTALL & README mention "contributed modules" directory [Brian
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Behlendorf]
e06abf2270cc397e6a1ab8e25055e9c05f256beeJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed English in the license language... "for for" --> "for".
e411a986b94276c28e6a971f9c3b61d45c635456James Brister [Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e411a986b94276c28e6a971f9c3b61d45c635456James Brister *) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_alias.c, merging it almost completely with handling of Alias, and
c6ce77b4dccb15297f78de9e0c00d40f40ce8aa4Mark Andrews adding a 'notes' field to the request_rec which allows the CGI module
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to discover whether the Alias module has put this request through
1d7172079ddd7aaad66a135a814d0013c6503837Andreas Gustafsson ScriptAlias (which it needs to know for back-compatibility, as the old
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews NCSA code did not check Options ExecCGI in ScriptAlias directories).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Robert Thau]
5159c427839689d5070e2f9c6c9a0168dd9f6583Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.10 18 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) AllowOverride applies to the named directory, and not just
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews subdirectories. [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Do locking for accept() exclusion (on systems that need it)
dd3fc76a33569ee9d5d30effc0d975651a4567f5Andreas Gustafsson using a special file created for the purpose in /usr/tmp, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews not the error log; using the error log causes real problems
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if it's NFS-mounted; this is known to be the cause of a whole
3364cad7e4699aff0b2d5090ab09a6da9733a118Andreas Gustafsson lot of "server hang" problems with Solaris. [David Robinson;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews thanks to Merten Schumann for help diagnosing the problem].
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e2cf9c2db3fd484d160d3b7850f5e4d9c19945faJames BristerChanges with Apache 0.8.9 12 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e2cf9c2db3fd484d160d3b7850f5e4d9c19945faJames Brister *) Nested includes see environment variables of the including document,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for NCSA bug-compatibility (some sites have standard footer includes
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews which try to print out the last-modified date). [Eric Hagberg/Robert
e2cf9c2db3fd484d160d3b7850f5e4d9c19945faJames Brister Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e2cf9c2db3fd484d160d3b7850f5e4d9c19945faJames Brister *) <!--exec cgi="/some/uri/here"--> always treats the item named by the
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed URI as a CGI script, even if it would have been treated as something
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews else if requested directly, for NCSA back-compatibility. (Note that
e2cf9c2db3fd484d160d3b7850f5e4d9c19945faJames Brister this means that people who know the name of the script can see the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews code just by asking for it). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
36357e4304862fb47e9fae03c704cb6720310c45James Brister *) New version of dbmmanage script included in support directory as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews dbmmanage.new.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9bb05852fed91ff3913601b7ed8e43e711aa9094David Lawrence *) Check if scoreboard file couldn't be opened, and say so, rather
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews then going insane [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) POST to CGI works on A/UX [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) AddIcon and AddAlt commands work properly [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) NCSA server push works properly --- the Arena bug compatibility
b09983678f5d116d3c8387aaeab4f2dc4deb0454David Lawrence workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if you still want the workaround). [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If client didn't submit any Accept-encodings, ignore encodings in
4be63b1fd8c18dbeca1648d6cf22fa14f057a469David Lawrence content negotiation. (NB this will all have to be reworked anyway
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for the new HTTP draft). [Florent Guillaume]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't dump core when trying to log timed-out requests [Jim Jagielski]
014892d86d30b7eceb0003d51788f9b5cadfc1bfAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Really honor CacheNegotiatedDocs [Florent Guillaume]
b99d080717fdd741961d736581270d37bad8bec0David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Give Redirect priority over Alias, for NCSA bug compatibility
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [David Robinson]
97f75286ada13a1b06a424607e638bde5ebfb3caAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews paralleling earlier bug fix for CGI [David Robinson]
b905ff7cbe3737d3c76115fa71c340a8ce439120David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) If DBM auth is improperly configured, report a server error and don't
23a09704774241d2dba059e4d9231cd3d28bb116David Lawrence dump core.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
358628c8f4804a2db52be0f6d03a66137fab4884David Lawrence it seems to work well enough without it (even in a 10 hits/sec
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews workout), and the overhead for the locking under A/UX is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews alarmingly high (though it is very low on other systems).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Eric Hagberg, Jim Jagielski]
54a2e7e8a21ee765f41bd995101995613bff9e8cDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Further de-Berklize mod_cookies.c; change the bogus #include. [Brian
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Behlendorf/Eric Hagberg]
027212247d59c05452abb7a8b253efe52d14459eDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More improvements to default Configuration for A/UX [Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles clean on NEXT [Rob Hartill]
a2605214c27439a8af2ad4bd9a8630dcfcc8152eDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles clean on SGI [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.8 08 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
344e909ce9c59422a70105aba498e68b2d42623bDavid Lawrence *) SunOS library prototypes now never included unless explicitly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
738922ba7bb10b206f6f54931aed068e3dcb950dDavid Lawrence people using GNU libc on SunOS are screwed by prototypes for the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews standard library.
eefea43215016bce437ab4a7441b2851fd182960David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (Those who wish to compile clean with gcc -Wall on a standard
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews SunOS setup need the prototypes, and may obtain them using
9c4f33b6718407e94d50dbfb4977e16d3f83de9dDavid Lawrence -DSUNOS_LIB_PROTOTYPES. Those wishing to use -Wall on a system
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews with nonstandard libraries are presumably competent to make their
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews own arrangements).
c403d3f7d6cb17406e9be03a330ed5cf91619abcDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Strips trailing '/' characters off both args to the Alias command,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews to make 'Alias /foo/ /bar/' work.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
a0f6cda5fd9f2fcc4154bb63628f849b639a40caAndreas GustafssonChanges with Apache 0.8.7 03 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't hang when restarting with a child from 'TransferLog "|..."' running
dc91d010dbd848ab3a11815e5a3d109662a38b0cDavid Lawrence [reported by David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles clean on OSF/1 [David Robinson]
e3b3a046bf653d39cb5b92534a6a36fce1702d20Bob Halley
b58d2c6a1cfe8f06548763a139579f270d9014a6Jeremy Reed *) Added some of the more recent significant changes (AddLanguage stuff,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews experimental LogFormat support) to CHANGES file in distribution root
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.6 02 Aug 1995
904463e94cafd59c8284f472ea8f58f1f311b8cbDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
bf6f755a74e24441e96a110b3c8d11cfe2ed0da7David Lawrence (If you actually wanted a conditional GET which bypassed the cache, you
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews couldn't get it). [Reported by Roy Fielding]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Properly terminate headers on '304 Not Modified' replies to conditional
1a7f6c3898266854db100fb2cb36418d650de8e7Brian Wellington GETs --- no browser we can find cares much, but the CERN proxy chokes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) httpd -v doesn't call itself "Shambhala". [Reported by Chuck Murcko]
56433595bb938c21fd3b07a0f7c565d942bb8780David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
fc9e755ba340607d76c7de897ee2d985d3b24505David Lawrence not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews and older versions don't set the __SUNPRO_C preprocessor variable). On
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews all other systems, these are never used anyway. [Reported by Mark Cox].
7896e45912df15d07eb99f885b9d9c15ad5f3f68David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.5 01 Aug 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
32eddfc189108fa93e31761e13150594c7a79d2bDavid Lawrence *) Added last-minute configurable log experiment, as optional module
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly. (One-line fix to http_protocol.c).
b8dd48ecf83142f6ee7238cbd68fec455e527fc8Mark Andrews
95b484c9580d06eb2f9735a22e9841389c2859baMark Andrews *) Work around bogus behavior when reloading from Netscape.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews It's Netscape's bug --- for some reason they expect a request with
68e4926b2262571e004b4be00b905ec776c01d9cMichael Graff If-modified-since: to not function as a conditional GET if it also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews comes with Pragma: no-cache, which is way out of line with the HTTP
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews spec (according to Roy Fielding, the redactor).
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added parameter to set maximum number of server processes.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added patches to make it work on A/UX. A/UX is *weird*. [Eric Hagberg,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Jim Jagielski]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
61e9c1cdbe29683bb2db388e4fc6a6fd59315cefDavid Lawrence *) IdentityCheck bugfix [Chuck Murcko].
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Corrected cgi-src/Makefile entry for new imagemap script. [Alexei Kosut]
8b11f3debd9a9494d5aec60ea228ab393fbdc26eDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More sample config file corrections; add extension to AddType for
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *.asis, move AddType generic description to its proper place, and
2cc1d2536d5834fbe20281068b8bd34dd1ee5337David Lawrence fix miscellaneous typos. [ Alexei Kosut ]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Deleted the *other* reference to the regents from the Berkeley
140d92622430165001bd91ba2e7d516992faeb2fMichael Sawyer legal disclaimer (everyplace).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence *) Nuked Shambhala name from src/README; had already cleaned it out
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews of everywhere else.
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.4
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence *) Changes to server-pool management parms --- renamed current
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews StartServers to MinSpareServers, created separate StartServers
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews parameter which means what it says, and renamed MaxServers to
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence MaxSpareServers (though the old name still works, for NCSA 1.4
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews back-compatibility). The old names were generally regarded as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews too confusing. Also altered "docs" in sample config files.
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More improvements to default config files ---
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sample directives (commented out) for XBitHack, BindAddress,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence defaults, AddTypes for send-as-is and imagemap magic types, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews improvements to samples for DirectoryIndex [Alexei Kosut]
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Yet more improvements to default config files --- changes to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Alexei's sample AddLanguage directives, and sample LanguagePriority
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence [ Florent Guillaume ]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Set config file locations properly if not set in httpd.conf
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence [ David Robinson ]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't escape URIs in internal redirects multiple times; don't
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence do that when translating PATH_INFO to PATH_TRANSLATED either.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [ David Robinson ]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.3
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Edited distribution README to *briefly* summarize installation
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews procedures, and give a pointer to the INSTALL file in the src/
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directory.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Upgraded imagemap script in cgi-bin to 1.8 version from more
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews recent NCSA distributions.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Bug fix to previous bug fix --- if .htaccess file and <Directory>
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews exist for the same directory, use both and don't segfault. [Reported
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews by David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Proper makefile dependencies [David Robinson]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Note (re)starts in error log --- reported by Rob Hartill.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Only call no2slash() after get_path_info() has been done, to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews preserve multiple slashes in the PATH_INFO [NCSA compatibility,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reported by Andrew Wilson, though this one is probably a real bug]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed mod_imap.c --- relative paths with base_uri referer don't
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews dump core when Referer is not supplied. [Randy Terbush]
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Lightly edited sample config files to refer people to our documentation
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews instead of NCSA's, and to list Rob McCool as *original* author (also
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews deleted his old, and no doubt non-functional email address). Would be
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews nice to have examples of new features...
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.2 19 Jul 1995
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added AddLanuage code [Florent Guillaume]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence *) Don't say "access forbidden" when a CGI script is not found. [Mark Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence *) All sorts of problems when MultiViews finds a directory. It would
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be nice if mod_dir.c was robust enough to handle that, but for now,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews just punt. [reported by Brian Behlendorf]
16a107c904a30a687a08efec86a26a2f9398d2edAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Wait for all children on restart, to make sure that the old socket
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews is gone and we can reopen it. [reported by Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
33e927bf8622db6d3e5ecfd871f517db47fa722bDavid Lawrence *) Imagemap module is enabled in default Configuration
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) RefererLog and UserAgentLog modules properly default the logfile
3e6b98586e823544344bcbbcad825d3d4485de59David Lawrence [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Mark Cox's mod_cookies added to the distribution as an optional
947bd6c648bd29bc226971324de1b30230a56a22David Lawrence module (commented out in the default Configuration, and noted as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews an experiment, along with mod_dld). [Mark Cox]
878363c06b3d42f8fa4acca0c4aec9252b7844d9David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Compiles on ULTRIX (a continuing battle...). [Robert Thau]
cc5547dbcb04bdc498cf050c6104a1974f68c6eaAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
b8957f3496b6a900df9ca263864a47dbb1cb8978David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
c7f22f83aac9e61dafee191cad040e9c42652cc8David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews license]
c4717613e45323ed23dc6e9162cba89f1f83830cDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.1
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f6d6835ed5bb14f7d87cb9b736deadf9de2085ddAndreas Gustafsson *) New imagemap module [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replacement referer log module with NCSA-compatible RefererIgnore
d41c9885ecfb4be7382fd32a58ae4a9fb2056b81David Lawrence [Matthew Gray again]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
38feb01f1b0a3ac65897ae63c22c27c72e8cfda1David Lawrence *) Don't mung directory listings with very long filenames.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Florent Guillaume]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Apache 0.8.0 (nee Shambhala 0.6.2) 16 Jul 1995
802aa6f2b70cc0b4e69ef0a1dcab0a8d68a0fdeaDavid Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) New config script. See INSTALL for info. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
5b27fa26dd1288f61de9ace6f4ec56be63858048David Lawrence *) Scoreboard mechanism for regulating the number of extant server
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews processes. MaxServers and StartServers defaults are the same as
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews for NCSA, but the meanings are slightly different. (Actually,
32d7adf5ee52c5a86122ee3d9e35a894fc5ed0a6Bob Halley I should probably lower the MaxServers default to 10).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Before asking for a new connection, each server process checks
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the number of other servers which are also waiting for a
32d7adf5ee52c5a86122ee3d9e35a894fc5ed0a6Bob Halley connection. If there are more than MaxServers, it quietly dies
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews off. Conversely, every second, the root, or caretaker, process
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews looks to see how many servers are waiting for a new connection;
32d7adf5ee52c5a86122ee3d9e35a894fc5ed0a6Bob Halley if there are fewer than StartServers, it starts a new one. This
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews does not depend on the number of server processes already extant.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews The accounting is arranged through a "scoreboard" file, named
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews /tmp/htstatus.*, on which each process has an independent file
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews descriptor (they need to seek without interference).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
cc43f2461d2b7da80105cf6d1b96bda4e93303cdDavid Lawrence The end effect is that MaxServers is the maximum number of
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews servers on an *inactive* server machine, but more will be forked
58bc93c3ddbdf0b2fde9b7d2b4342f90d83ec633David Lawrence off to handle unusually heavy loads (or unusually slow clients);
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews these will die off when they are no longer needed --- without
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reverting to the overhead of full forking operation. There is a
7ce81e15fa98db5b13fba06d54526e8679ac064cDavid Lawrence hard maximum of 150 server processes compiled in, largely to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews avoid forking out of control and dragging the machine down.
8fedfa7b45989d3c1715e414637bc1a96331fd14David Lawrence (This is arguably too high).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7da5c63dc0eaeec88aaf67b7aeee43ab0b0125baDavid Lawrence In my server endurance tests, this mechanism did not appear to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews impose any significant overhead, even after I forced it to put the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews scoreboard file on a normal filesystem (which might have more
7da5c63dc0eaeec88aaf67b7aeee43ab0b0125baDavid Lawrence overhead than tmpfs). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
32eeec855957c3dd38f0d6c98ca79b67a71300b6Brian Wellington [Cliff Skolnick]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
f3f88c6802df4cfee59439b19a1c49637b70342dDavid Lawrence *) Read .htaccess files even in directory with <Directory> section.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews (Former incompatibility noted on mailing list, now fixed). [Robert
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Thau]
77f372eed39827f5efef476602de7c0505f99b91David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) "HEAD /" gives the client a "Bad Request" error message, rather
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews than trying to send no body *and* no headers. [Cliff Skolnick].
8b7304a34c751e519ede7d00b77f1f962c0a37e4David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't produce double error reports for some very obscure cases
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mainly involving auth configuration (the "all modules decline to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews handle" case which is a sure sign of a server bug in most cases,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews but also happens when authentication is badly misconfigured).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Robert Thau]
cabcfd3e90a647c7bab3c5cc3ef7b36f49830787David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews it's *for*, and this sort of thing really shouldn't be cluttering
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews up the Makefile). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
585529aaeb95a71cd3d95df2602a4688fc7c3292David Lawrence *) Incidental code cleanups in http_main.c --- stop dragging
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews sa_client around; just declare it where used. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Another acc-related fix. (It doesn't like const char
d111a46c88adda33a93839f4934e127b6147d87dBob Halley in some places...). [Mark Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
e4e183af576855f4ccc9fc28084ffe095aaa5b55Andreas GustafssonChanges with Shambhala 0.6.1 13 Jul 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
6f17d90364f01c3e81073a9ffb40b0093878c8e2Brian Wellington Also, fixed auth typo in http_protocol.c unmasked by this fix.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
195da2b26542b85d60308b2af35ea9966df9c3bbMichael Graff *) Compiles clean with acc on SunOS [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Reordered modules in modules.c so that Redirect takes priority
e9a9ae4fc627f24cb960a3008f2723ba9a55b274Brian Wellington over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews believe it or not, he has an actual site with a ScriptAlias and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews a Redirect declared for the *exact same directory*. Even *my*
d1bdeae7bb7a0642170d5476c2fd901db3028143Andreas Gustafsson compatibility fetish wouldn't motivate me to fix this if the fix
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews required any effort, but it doesn't, so what the hey.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d111a46c88adda33a93839f4934e127b6147d87dBob Halley *) Fixed to properly default several server_rec fields for virtual
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews servers from the corresponding fields in the main server_rec.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Cliff Skolnick --- 'port' was a particular irritant].
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
9e53cbca72767d0c91962b7a01650ea07d7398ddMark Andrews *) No longer kills off nph- child processes before they are
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews finished sending output. [Matthew Gray]
9e53cbca72767d0c91962b7a01650ea07d7398ddMark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.6.0 10 Jul 1995
2d0c5f1eada2015324cb89c11c7c5c11cccb493fAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Two styles of timeout --- hard and soft. soft_timeout()s just put
3bb3b7ac462a90c2b8b1fb783324d800e2ba748cMichael Graff the connection to the client in an "aborted" state, but otherwise
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews allow whatever handlers are running to clean up. hard_timeout()s
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews abort the request in progress completely; anything not tied to some
b5fff54fe9335b20c02d749831fc0eaeda97198fBrian Wellington resource pool cleanup will leak. They're still around because I
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews haven't yet come up with a more elegant way of handling
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews timeouts when talking to something that isn't the client. The
15a0ed30600ea88fe1227233155586f0c3c6cc34Bob Halley default_handler and the dir_handler now use soft timeouts, largely
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews so I can test the feature. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) TransferLog "| my_postprocessor ..." seems to be there. Note that
53c892082e4dd70a12bb5badd81a9e939d7e6efdBrian Wellington the case of log handlers dying prematurely is probably handled VERY
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews gracelessly at this point, and if the logger stops reading input,
b5fff54fe9335b20c02d749831fc0eaeda97198fBrian Wellington the server will hang. (It is known to correctly restart the
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews logging process on server restart; this is (should be!) going through
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
b5fff54fe9335b20c02d749831fc0eaeda97198fBrian Wellington script). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) asis files supported (new module). [Robert Thau]
3ae757933270e8298a6c1c5f9dfd30a4d852972cAndreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) IdentityCheck code is compiled in, but has not been tested. (I
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews don't know anyone who runs identd). [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
b61bbad878d0ac563a093525aa826cdba0fd43bfMark Andrews came in with the request, for NCSA bug-compatibility. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
4716e94840921878b26e493576f84afe4fe08752Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews as timeouts are not in scope. [Robert Thau]
622af581bd08a61d12c70f80b1d40d0d9c8a1fa3David Lawrence
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) quoted-string args in config files now handled correctly (doesn't drop
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the last character). [Robert Thau; reported by Randy Terbush]
b4b032ab5a3d0e96e7c752e232e3050e8806b8cbBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
0e9c5d24d25cb77a6935abf9247734b576626c9fBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
3886e748a4086b813e3453232a742903762fedadBob Halley default default type); the former default default behavior when all
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews type-checkers defaulted had been a core dump. [Paul Sutton]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
3886e748a4086b813e3453232a742903762fedadBob Halley *) Copy filenames out of the struct dirent when indexing
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews directories. (On Linux, readdir() returns a pointer to the same
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews memory area every time). Fix is in mod_dir.c. [Paul Sutton]
b4b032ab5a3d0e96e7c752e232e3050e8806b8cbBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.5.3 [not released]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Default response handler notes "file not found" in the error log,
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews if the file was not found. [Cliff Skolnick].
ce0004744d2c232581af53cbc6201f4ec4cf1f1cBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
ce0004744d2c232581af53cbc6201f4ec4cf1f1cBrian Wellington code no longer sets up bogus PATH_INFO which fakes out the directory
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews handler). [Cliff Skolnick]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ce0004744d2c232581af53cbc6201f4ec4cf1f1cBrian WellingtonChanges with Shambhala 0.5.2 06 Jul 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
134ba0e08a0ae9a564a8d8628fc633377d3fc239Bob Halley *) Changes to http_main.c --- root server no longer plays silly
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews games with SIGCHLD, and so now detects and replaces dying
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews children. Child processes just die on SIGTERM, without taking
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews the whole process group with them. Potential problem --- if any
134ba0e08a0ae9a564a8d8628fc633377d3fc239Bob Halley child process refuses to die, we hang in restart.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews MaxRequestsPerChild may still not work, but it certainly works
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews better than it did before this! [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_dir.c bug fixes: ReadmeName and HeaderName
8426878e988859184706f36e2229e24e77b80aa4Andreas Gustafsson work (or work better, at least); over-long description lines
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews properly terminated. [Mark Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0f7045b0c437b158c61c195c319d2762882ece83Andreas Gustafsson *) http_request.c now calls unescape_url() more places where it
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews should [Paul Sutton].
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
7c0e50b5623a6ffc9e3986e129f8ca6bae9aabfaBrian Wellington *) More directory handling bugs (reported by Cox)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Parent Directory link is now set correctly. [Robert Thau]
a25310fd1dce652cdebba2b3dbc5d38cc3706745Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.5.1 04 Jul 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Generalized cleanup interface in alloc.c --- any function can be
42712a426dd62518ca7c36982867e5622f7265e7Michael Graff registered with alloc.c as a cleanup for a resource pool;
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews tracking of files and file descriptors has been reimplemented in
e6a6c0a5d6393d3a7f75b486f16e4ef15c4857bbDavid Lawrence terms of this interface, so I can give it some sort of a test.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More changes in alloc.c --- new cleanup_for_exec() function,
11a898e05092e8477fbfe1a245c1c5871a846638Andreas Gustafsson which tracks down and closes all file descriptors which have been
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews registered with the alloc.c machinery before the server exec()s a
5d4f11b265c396d71ec2162a632e620425481a9eDavid Lawrence child process for CGI or <!--#exec-->. CGI children now get
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews started with exactly three file descriptors open. Hopefully,
b295930144c8782e84528dcd355153ae5a5d66e8David Lawrence this cures the problem Rob H. was having with overly persistent
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews CGI connections. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
0bcb1d4d630f8d7547ee62870e1b059827cc1c8aDavid Lawrence *) Mutual exclusion around the accept() in child_main() --- this is
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews required on at least SGI, Solaris and Linux, and is #ifdef'ed in
ce3be21d63d1e06b222ecb66b4eae909b4658d53James Brister by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews This uses fcntl(F_SETLK,...) on the error log descriptor because
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews flock() on that descriptor won't work on systems which have BSD
ce3be21d63d1e06b222ecb66b4eae909b4658d53James Brister flock() semantics, including (I think) Linux 1.3 and Solaris.
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
ce3be21d63d1e06b222ecb66b4eae909b4658d53James Brister This does work on SunOS (when the server is idle, only one
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews process in the pool is waiting on accept()); it *ought* to work
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews on the other systems. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) FreeBSD and BSDI portability tweaks [Chuck Murcko]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) sizeof(*sa_client) bugfix from [Rob Hartill]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
40f53fa8d9c6a4fc38c0014495e7a42b08f52481David Lawrence *) pstrdup(..., NULL) returns NULL, [Randy Terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) block_alarms() to avoid leaking the DBM* in dbm auth (this should
7b2db4b8d13e3d8bc81419ffcc8b39de8193ef63David Lawrence be unnecessary if I go to the revised timeout-handling scheme).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
9e7c9ad159b581714c67148c3c698c12730d7ef7James Brister string) even if none came in with the request. [Robert Thau]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
bf062442eeef2fe404d728891b1317b01fbb7908Andreas Gustafsson *) CHANGES file added to distribution ;-).
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.4.5
bf062442eeef2fe404d728891b1317b01fbb7908Andreas Gustafsson
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) mod_dld --- early dynamic loading support [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add wildcard content handlers for XBITHACK; default_hander now
bf062442eeef2fe404d728891b1317b01fbb7908Andreas Gustafsson invoked with that mechanism (as a handler hanging off mod_core) [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) XBITHACK supported as a wildcard content-handler, and
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews configurable at run-time (not just at compile time, as in the
404e3e4738e97d5dff48fab1e76839e963cb16a6Brian Wellington "patchy server" releases) [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.4.4 30 Jun 1995
d9cc295339982d8d86075ab4285cc700d354e2eeBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed basic thinkos in mod_dbm_auth.c [rst, reported by Mark Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Handle Addtype x/y .z [rst, reported by Cox]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.4.3
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Fixed very dumb bug in mod_alias; "Alias" and "Redirect" are not
7d1d130f4fe1b7485142c4f55a4ef3760b5fa30aBrian Wellington synonymous [rst, terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.4.1 28 Jun 1995
d9cc295339982d8d86075ab4285cc700d354e2eeBob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) First-cut virtual host implementation; some refit in the config
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews reading code, and log management, was necessary to support this [rst]
9ac79ef3f89b23d80f9649abf71fdc65bb7a8b62David Lawrence *) Sub-pool machinery, originally added to avoid excessive storage
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews allocation on listings of large directories (which turned out to
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews be the problem that the 0.3 storage accounting was added to
a6a0b5e9b7078887a73ecec8be2935daa287a389James Brister find). Subrequests and mod_dir changed to use subpools. [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) More memory debugging --- free list consistency checks. [rst]
be768c2e952c34438025999125f984995a2c675fBob Halley *) Added err_headers to request_rec, with support elsewhere [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Other fixes to minor bugs in mod_dir and mod_includes [rst, terbush]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
da6affdf7dd677a636155e4a41f6de416a2d815bBob HalleyChanges with Shambhala 0.3 19 Jun 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Switch ONE_PROCESS to a runtime command-line option (-X)
da6affdf7dd677a636155e4a41f6de416a2d815bBob Halley *) Don't compile in mod_ai_backcompat by default
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Switch name of server from Apache to Shambhala in Makefile
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add some accounting routines to track memory usage in the pools,
be768c2e952c34438025999125f984995a2c675fBob Halley for debugging
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.2
01e320c4fb51c802e9fe86c192fbebf4229ca918Bob Halley
68cd13fff2b45c8a941ed8ac3efa0698798dcc96Mark Andrews *) Set DOCUMENT_ROOT CGI variable
19e0c849f69ad8b655b4d199e16de0a4a94562d6Bob Halley *) Add single-process debugging, as a compile-time option (ONE_PROCESS)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Add critical section protection to handling of cleanup structures
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews in alloc.c [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Significant code reorg within the server core to group related
01e320c4fb51c802e9fe86c192fbebf4229ca918Bob Halley functions together [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Correctly handle clients that hang up before sending any request
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews [rst]
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Replace dying child processes. [rst]
dd6132005a5c48dea642c2ed0507bf472c8ee9bbJames Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark AndrewsChanges with Shambhala 0.1 12 Jun 1995
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
d6d18435cd47a57f43af2eab835d0f6b7a76f2bdAndreas Gustafsson Major rewrite of the pre-existing "patchy server" codebase, by
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Robert Thau (rst). Significant portions of the server code, such
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews as configuration-file handling and HTTP authentication support,
3f46e84f9ff264cac8c07c2136a507827afb2760James Brister were ripped out and rewritten from scratch. Code that was not
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews completely rewritten was significantly altered.
3f46e84f9ff264cac8c07c2136a507827afb2760James Brister
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Major changes with this release include:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) Introduction of the module API; in request handling, the central
99b80297d416ebb722b2515023c51b3aacdc1fb9Bob Halley machinery just dispatches to various modules, which actually do
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews most of the work. Configuration handling is similar --- modules
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews declare their own commands, and the central machinery just
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews dispatches to them.
fdb12d38d325efba64581bdee7fac188466fff55Bob Halley
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews API features from shambhala/0.1 were substantially unchanged in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews Apache 1.0 and 1.1. (1.0 API features not yet present in this
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews release, such as wildcard handlers and subpools, were added in
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews subsequent Shambhala releases, and were also generally rst's
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews work).
43a5758df763a04d907a8b406e89a96f5c207a9cBrian Wellington
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews *) This release included the following modules:
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews
c73aafe6016ed1a7a6972681148cedf6a48a21bcBrian Wellington mod_access (access control --- allow and deny directives),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_alias (Alias and Redirect commands),
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_auth (straight HTTP authentication, based on flat-files)
99b80297d416ebb722b2515023c51b3aacdc1fb9Bob Halley mod_auth_dbm (same, with dbm files)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_cgi (CGI scripts and, in this release, ScriptAlias)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_common_log (CLF access logs; later renamed mod_log_common)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_dir (directory indexing)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_include (server-side includes)
54f68aeb5cb37e48df51dc5224917beaeda040cfTatuya JINMEI 神明達哉 mod_mime (AddType directives)
b39bfc630dc222fb73c21a00bcba47c4f9e38f20Mark Andrews mod_negotiation (content negotiation)
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence mod_userdir (support for users' public_html directories)
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence It also included a mod_ai_backcompat, which was a private hack
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence for back-compatibility with rst's own AI-lab servers.
9151d6e15cb9c639a3dca083d7f6e9094f6b89caDavid Lawrence
All of these modules were substantially complete, and functional
or nearly so (a few, which implemented features not in use at
Thau's site, required patches of a few lines).
*) sub-request machinery, to allow modules to determine how other
modules would assign MIME types to a given file, or optionally
serve its content (this is heavily used by mod_dir, mod_include
and mod_negotiation).
*) Resource pool system for keeping track of memory allocated and
files opened in service of a particular request. Much of the
code in the modules (when they weren't rewrites) was adjusted to
replace a pervasive convention of using fixed-size buffers on
the stack with an equally pervasive convention of using memory
allocated with palloc().
*) Reorganization of data structures associated with a given
request to eliminate use of global variables and the troublesome
unmunge_name function (used in NCSA and early Apache releases to
attempt to determine the URI which mapped to a given filename
--- a difficult proposition, given that it is easy to produce
setups in which multiple URIs map to the same file).
*) Source files renamed and rearranged
*) Very simple pre-forking behavior --- parent process forked off a
fixed number of children, and then just waited for SIGHUP.
*) Other more minor changes too numerous to list.
This release included modified versions of a lot of code from the
Apache 0.6.4 public release, plus an early pre-forking patch
codeveloped by Robert Thau and Rob Hartill.
Changes with Apache 0.7.3 20 Jun 1995
*) There were a bunch of changes between Apache 0.6.4 and 0.7.3 that
were incorporated by Rob Hartill on the main branch while Robert Thau
worked on the Shambhala rewrite above. Most were merged into the
Shambala architecture after Apache 0.8.0.
Changes with Apache 0.6.4 13 May 1995
*) Patches by Rob Hartill, Cliff Skolnick, Randy Terbush, Robert Thau,
and others.
Changes with Apache 0.5.1 10 Apr 1995
Changes with Apache 0.4 02 Apr 1995
*) Patches by Brian Behlendorf, Andrew Wilson, Robert Thau,
and Rob Hartill.
Changes with Apache 0.3 24 Mar 1995
*) Patches by Robert Thau, David Robinson, Rob Hartill, and
Carlos Varela.
Changes with Apache 0.2 18 Mar 1995
*) Based on NCSA httpd 1.3 by Rob McCool and patches by CERT,
Roy Fielding, Robert Thau, Nicolas Pioch, David Robinson,
Brian Behlendorf, Rob Hartill, and Cliff Skolnick.