CHANGES revision 9ec65cbae2f760e485a1c54df5b19853688d5c91
6a01f2d5ec2024b68edd1d42056b41a88dc0a935aaronChanges with Apache 2.0b1
75eee56d2eaac9c27d32fc46b90bb6b1eac85359trawick *) The Apache/Win32 Apache.exe and dll's now live in bin. The
75eee56d2eaac9c27d32fc46b90bb6b1eac85359trawick current directory logic now backs up over bin/ to determine the
0dc14774d2c21baf6123fcafdb853af5be1d97edwrowe server root from the Apache.exe path.
741a54303329728b27fe347447a362e1c576135etrawick *) Apache/Win32 now follows the standard conventions of mod_foo.so
0dc14774d2c21baf6123fcafdb853af5be1d97edwrowe loadable modules, dynamic libs are all named libfoo.dll, and the
9f62694a8b4e2b88994a14555d144b3836b311cfstoddard makefile.win populates the include, lib and libexec directories.
9f62694a8b4e2b88994a14555d144b3836b311cfstoddard *) Apache is now IPv6-capable. On systems where APR supports IPv6,
9f62694a8b4e2b88994a14555d144b3836b311cfstoddard Apache gets IPv6 listening sockets by default. Additionally, the
52489511342e4ff3fe399e57f29d38e5c4227bc8trawick Listen, NameVirtualHost, and <VirtualHost> directives support IPv6
52489511342e4ff3fe399e57f29d38e5c4227bc8trawick numeric address strings (e.g., "Listen [fe80::1]:8080").
52489511342e4ff3fe399e57f29d38e5c4227bc8trawick [Jeff Trawick]
8864d6f5f4744b5d2b638e2a53e2660bcf8b5ab5dougm *) Modify the install directory layout. Modules are now installed in
8864d6f5f4744b5d2b638e2a53e2660bcf8b5ab5dougm modules/. Shared libraries should be installed in libraries/, but
8864d6f5f4744b5d2b638e2a53e2660bcf8b5ab5dougm we don't have any of those on Unix yet. All install directories
ea512a4af20e6b6e6931de4929d54d93f03a0139ianh are modifyable at configure time. [Ryan Bloom]
1dfb5e008f35ed13c343b7f6306675e33c399792gstein *) Install all header files in the same directory on Unix. [Ryan Bloom]
1dfb5e008f35ed13c343b7f6306675e33c399792gstein *) Get the functions in server/linked into the server, regardless of
1dfb5e008f35ed13c343b7f6306675e33c399792gstein which modules linked into the server. This uses the same hack
eadb64379834961679105b7fd4178253fbb9f95dtrawick for Apache that we use for APR and apr-util to ensure all of the
eadb64379834961679105b7fd4178253fbb9f95dtrawick necessary functions are linked. As a part of thise, the CHARSET_EBCDIC
eadb64379834961679105b7fd4178253fbb9f95dtrawick was renamed to AP_CHARSET_EBCDIC for namespace protection, and to make
eadb64379834961679105b7fd4178253fbb9f95dtrawick the scripts a bit easier.
eadb64379834961679105b7fd4178253fbb9f95dtrawick [Ryan Bloom]
c7e917aa56886c47bfe061c5e9f603a5aaef0d87trawick *) Rework the RFC1413 handling to make it thread-safe, use a timeout
c7e917aa56886c47bfe061c5e9f603a5aaef0d87trawick on the query, and remove IPv4 dependencies. [Jeff Trawick]
b8daf4c5ea3d5bb2111b1b021de6d3cd891e403bcoar *) Get all of the auth modules to the point that they will install and
b8daf4c5ea3d5bb2111b1b021de6d3cd891e403bcoar be loadable into the server. Our new build/install mechanism expects
b8daf4c5ea3d5bb2111b1b021de6d3cd891e403bcoar that all modules will have a common name format. The auth modules
b8daf4c5ea3d5bb2111b1b021de6d3cd891e403bcoar didn't use that format, so we didn't install them properly.
6b6083e6518007139257ee449c2af3032d2437d0trawick [Ryan Bloom]
6b6083e6518007139257ee449c2af3032d2437d0trawick *) API routines ap_pgethostbyname() and ap_pduphostent() are no longer
88dd056b9863502bba82c2889a0c4cde9fc0ba93trawick available. Use apr_getaddrinfo() instead. [Jeff Trawick]
88dd056b9863502bba82c2889a0c4cde9fc0ba93trawick *) Get "NameVirtualHost *" working in 2.0. [Ryan Bloom]
7ef3a1797818c6d25efe8c5fadb5eec3b965a6fabrianp *) Return HTTP_RANGE_NOT_SATISFIABLE if the every range requested starts
7ef3a1797818c6d25efe8c5fadb5eec3b965a6fabrianp after the end of the response. [Ryan Bloom]
1e83c8de3aa48b316b28057d53995272baf1260cwrowe *) Get byterange requests working with responses that do not have a
1e83c8de3aa48b316b28057d53995272baf1260cwrowe content-length. Because of the way byterange requests work, we have to
1e83c8de3aa48b316b28057d53995272baf1260cwrowe have all of the data before we can actually do the byterange, so we
1e83c8de3aa48b316b28057d53995272baf1260cwrowe can compute the content-length in the byterange filter.
1e83c8de3aa48b316b28057d53995272baf1260cwrowe [Ryan Bloom]
1e83c8de3aa48b316b28057d53995272baf1260cwrowe *) Get exe CGI's working again on Windows.
1e83c8de3aa48b316b28057d53995272baf1260cwrowe [Allan Edwards]
1e83c8de3aa48b316b28057d53995272baf1260cwrowe *) Get mod_cgid and mod_rewrite to work as DSOs by changing the way
7f683bb300df767164724ebc664f339ac396b434dougm they keep track of whether or not their post config hook has been
7f683bb300df767164724ebc664f339ac396b434dougm called before. Instead of a static variable (which is replaced when
7f683bb300df767164724ebc664f339ac396b434dougm the DSO is loaded a second time), use userdata in the process pool.
7f683bb300df767164724ebc664f339ac396b434dougm [Jeff Trawick]
7f683bb300df767164724ebc664f339ac396b434dougmChanges with Apache 2.0a9
26dfa083a1662d57ba7cc410eec4e0696b9be469wrowe *) Win32 now requires perl to complete the final install step for users
26dfa083a1662d57ba7cc410eec4e0696b9be469wrowe to build + install on Win32. Makefile.win now rewrites @@ServerRoot@
26dfa083a1662d57ba7cc410eec4e0696b9be469wrowe and installs the conf, htdocs and htdocs/manual directories.
26dfa083a1662d57ba7cc410eec4e0696b9be469wrowe [William Rowe]
4760aa1f19600972cf531ad7da73c1ee5a0225cedougm *) Make mod_include use a hash table to associate directive tags with
87a1c79b7b37702a254920ca5214fb282a4fb085dougm functions. This allows modules to implement their own SSI tags easily.
994c3fbc3335e8fe883b1ce4515efc0c85061cdfaaron The idea is simple enough, a module can insert it's own tag and function
d5d164b22a2004abed640cb52fc275f00ed92f69jerenkrantz combination into a hash table provided by mod_include. While mod_include
e93d563852e1fa7a8c73af3b807916b41942d2f6dreid parses an SSI file, when it encounters a tag in the file, it does a
e93d563852e1fa7a8c73af3b807916b41942d2f6dreid hash lookup to find the function that implements that tag, and passes
e93d563852e1fa7a8c73af3b807916b41942d2f6dreid all of the relevant data to the function. That function is then
e93d563852e1fa7a8c73af3b807916b41942d2f6dreid responsible for processing the tag and handing the remaining data back
e93d563852e1fa7a8c73af3b807916b41942d2f6dreid to mod_include for further processing.
525508562a53864b78cf8da91ac13be9c072bba7jerenkrantz [Paul J. Reder <rederpj@raleigh.ibm.com>]
525508562a53864b78cf8da91ac13be9c072bba7jerenkrantz *) Get rid of ap_new_apr_connection(). ap_new_connection() now has
f1fe10268cdadb775eef841aa4fa7305291d35fdtrawick fewer parameters: the local and remote socket addresses were removed
f1fe10268cdadb775eef841aa4fa7305291d35fdtrawick from the parameter list because all required information is available
f1fe10268cdadb775eef841aa4fa7305291d35fdtrawick via the APR socket. [Jeff Trawick]
f04ad0ba7fe0eea5ea7a92f852cef75747ab2090trawick *) Distribution directory structure reorganized to reflect a
f04ad0ba7fe0eea5ea7a92f852cef75747ab2090trawick normal source distribution with external install targets.
f04ad0ba7fe0eea5ea7a92f852cef75747ab2090trawick [Roy Fielding]
65a1588701f9e5d0f62261d0da85733a23edc92ftrawick *) The MPMs that need multiple segments of shared memory now create
65a1588701f9e5d0f62261d0da85733a23edc92ftrawick two apr_shmem_t variables, one for each shared memory allocation.
65a1588701f9e5d0f62261d0da85733a23edc92ftrawick the problem is that we can't determine how much memory will be required
65a1588701f9e5d0f62261d0da85733a23edc92ftrawick for shared memory allocations once we try to allocate more than one
d5d164b22a2004abed640cb52fc275f00ed92f69jerenkrantz variable. The MM code automatically aligns the shared memory allocations,
d5d164b22a2004abed640cb52fc275f00ed92f69jerenkrantz so we end up needing to pad the amount of shared memory we want based
d5d164b22a2004abed640cb52fc275f00ed92f69jerenkrantz on how many variables will be allocated out of the shared memory segment.
360a9d933a8c25f5975e0ddc883607a5d37e408estoddard It is just easier to create a second apr_shmem_t variable, and two
360a9d933a8c25f5975e0ddc883607a5d37e408estoddard shmem memory blocks.
360a9d933a8c25f5975e0ddc883607a5d37e408estoddard [Ryan Bloom]
9b8afc47122e9b0eabb860b6ba2cf9c061c6060fstoddard *) Cleanup the export list a bit. This creates a single unified list of
9b8afc47122e9b0eabb860b6ba2cf9c061c6060fstoddard functions exported by APR. The export list is generated at configure
9b8afc47122e9b0eabb860b6ba2cf9c061c6060fstoddard time, and that list is then used to generate the exports.c file.
9b8afc47122e9b0eabb860b6ba2cf9c061c6060fstoddard Because of the way the export list is generated, we only export those
a21148678a1459064627d917a66669e7e8d140e6stoddard functions that are valid on the platform we are building on.
a21148678a1459064627d917a66669e7e8d140e6stoddard [Ryan Bloom]
c6a9d49433c9ba5b18b26c3d764f1bbcb9746090wrowe *) Enable logging the cookie with mod_log_config
c6a9d49433c9ba5b18b26c3d764f1bbcb9746090wrowe [Sander van Zoest <sander@covalent.net>]
51be7fc538641ed7cb22e959eb31629f7183f70fianh *) Fix a segfault in mod_info when it reaches the end of the configuration.
51be7fc538641ed7cb22e959eb31629f7183f70fianh [Jeff Trawick]
bb6a7fc0427d0d197c50de34b94a0d23e5732696wrowe *) Added lib/aputil/ as a placeholder for utility functions which are not
bb6a7fc0427d0d197c50de34b94a0d23e5732696wrowe specific to the Apache HTTP Server (but do not make sense with APR).
bb6a7fc0427d0d197c50de34b94a0d23e5732696wrowe The first utility is "apu_dbm": a set of functions to work with DBM
decd0c23bb26f6662f4b963cf86ee569613bffeagregames files. This first version can be compiled for SDBM or GDBM databases.
decd0c23bb26f6662f4b963cf86ee569613bffeagregames [Greg Stein]
e1753aabf5df187b5b04e72a958af4b65b1a125daaron *) Complete re-write of mod_include. This makes mod_include a filter that
e1753aabf5df187b5b04e72a958af4b65b1a125daaron uses buckets directly. This has now served the FAQ correctly.
e1753aabf5df187b5b04e72a958af4b65b1a125daaron [Paul Reder <rederpj@raleigh.ibm.com>]
e1753aabf5df187b5b04e72a958af4b65b1a125daaron *) Allow modules to specify the first filter in a sub_request when
e1753aabf5df187b5b04e72a958af4b65b1a125daaron making the sub_request. This keeps modules from having to change the
e1753aabf5df187b5b04e72a958af4b65b1a125daaron output_filter immediately after creating the sub-request, and therefore
e57f991fe2b9a4c080cd50ca913a2a5693b096b5aaron skip the sub_req_output_filter. [Ryan Bloom]
e57f991fe2b9a4c080cd50ca913a2a5693b096b5aaron *) Update ab to accept URLs with IPv6 literal address strings (in the
924c8dd40352ca7775704a31a7a77ab86dc951b4ianh format described in RFC 2732), and to build Host header fields in
924c8dd40352ca7775704a31a7a77ab86dc951b4ianh the same format. This allows IPv6 literal address strings to be
910df8b3f50a0515b430b999d4750de94c509f2atrawick used with ab. This support has been tested against Apache 1.3 with
910df8b3f50a0515b430b999d4750de94c509f2atrawick the KAME patch, but Apache 2.0 does not yet work with this format
910df8b3f50a0515b430b999d4750de94c509f2atrawick of the Host header field. [Jeff Trawick]
0d628dd174dd6de13463b10d2599f6cac24e9fe8brianp *) Accomodate an out-of-space condition in the piped logs and the
0d628dd174dd6de13463b10d2599f6cac24e9fe8brianp rotatelogs.c code, and no longer churn log processes for this
0d628dd174dd6de13463b10d2599f6cac24e9fe8brianp condition. [Victor J. Orlikowski]
2fee4fe267fa3577fd71d8c314fe9b527e2b90c0brianp *) Add support for partial writes with apr_sendfile() to core_output_filter.
2fee4fe267fa3577fd71d8c314fe9b527e2b90c0brianp [Greg Ames]
7bf77d70b6830636bc36e6b76a228c301be23ff7brianpChanges with Apache 2.0a8
7bf77d70b6830636bc36e6b76a228c301be23ff7brianp *) Add a directive to mod_mime so that filters can be associated with
185b73b1f914e5d8f99f31225cc656b882dcbf73ianh a given mime-type.
6ef713e25735887d4a59a879b97a68bd575ecb92trawick [Ryan Bloom]
cef5cb47e2ea4c174c01762d4430613db0f41e5cstoddard *) Get multi-views working again. We were setting the path_info
cef5cb47e2ea4c174c01762d4430613db0f41e5cstoddard field incorrectly if we couldn't find the specified file.
1eb1f02a23de724c105b2c6c9fbd469a611059c6trawick [Ryan Bloom]
8abd60101b9794e224795ccf68b8ba984efbc94astoddard *) Fix 304 processing. The core should never try to send the headers
ca47a2b6bcea23e8af185c68f256dcbbfd2a0f9dtrawick down the filter stack. Always, just setup the table in the request
ca47a2b6bcea23e8af185c68f256dcbbfd2a0f9dtrawick record, and let the header filter convert it to data that is ready
6ef713e25735887d4a59a879b97a68bd575ecb92trawick for the network.
6ef713e25735887d4a59a879b97a68bd575ecb92trawick [Ryan Bloom]
26d590c0e5338f66ca1aad6f925374843fac5121stoddard *) More fixes for the proxy. There are still bugs in the proxy code,
26d590c0e5338f66ca1aad6f925374843fac5121stoddard but this has now proxied www.yahoo.com and www.ntrnet.net (my ISP)
26d590c0e5338f66ca1aad6f925374843fac5121stoddard successfully.
26d590c0e5338f66ca1aad6f925374843fac5121stoddard [Ryan Bloom]
2b31ac2c6342d2afcf67b7b0f08c928a87f98c74wrowe *) Fix params for apr_getaddrinfo() call in connect proxy handler.
d472f67198d6b15dd1270136f180cca9c9263243trawick [Chuck Murcko]
d472f67198d6b15dd1270136f180cca9c9263243trawick *) APR: Add new apr_getopt_long function to handle long options.
d472f67198d6b15dd1270136f180cca9c9263243trawick [B. W. Fitzpatrick <fitz@red-bean.com>]
d472f67198d6b15dd1270136f180cca9c9263243trawick *) APR: Change apr_connect() to take apr_sockaddr_t instead of hostname.
d472f67198d6b15dd1270136f180cca9c9263243trawick Add generic apr_create_socket(). Add apr_getaddrinfo() for doing
a3bb95a3600153c7f09f62749e32093658943c32brianp hostname resolution/address string parsing and building
a3bb95a3600153c7f09f62749e32093658943c32brianp apr_sockaddr_t. Add apr_get_sockaddr() for getting the address
a3bb95a3600153c7f09f62749e32093658943c32brianp of one of the apr_sockaddr_t structures for a socket. Change
b760518cc17e7124ba546ed63063603f1ab82a40aaron apr_bind() to take apr_sockaddr_t. [David Reid and Jeff Trawick]
b760518cc17e7124ba546ed63063603f1ab82a40aaron *) Remove the BUFF from the HTTP proxy. This is still a bit ugly, but
b760518cc17e7124ba546ed63063603f1ab82a40aaron I have proxied pages with it, cleanup will commence soon.
b760518cc17e7124ba546ed63063603f1ab82a40aaron [Ryan Bloom]
b760518cc17e7124ba546ed63063603f1ab82a40aaron *) Make the proxy work with filters. This isn't perfect, because we
b760518cc17e7124ba546ed63063603f1ab82a40aaron aren't dealing with the headers properly. [Ryan Bloom]
23d8f62856c1531526042e1c5edf44557cadd2e5trawick *) Do not send a content-length iff the C-L is 0 and this is a head
23d8f62856c1531526042e1c5edf44557cadd2e5trawick request. [Ryan Bloom]
705c8ed3ef608706c91ca12483d7b54ff9007cc9jerenkrantz *) Make cgi-bin work as a regular directory when using mod_vhost_alias
705c8ed3ef608706c91ca12483d7b54ff9007cc9jerenkrantz with no VirtualScriptAlias directives. PR#6829 [Tony Finch]
ef154948c97c53cdc1ad5329cb83c32ad26cf416aaron *) Remove BUFF from the PROXY connect handling. [Ryan Bloom]
c6741d11357aace4c9ba39535d3cb2d751f46114trawick *) Get the default_handler to stop trying to deal with HEAD requests.
c6741d11357aace4c9ba39535d3cb2d751f46114trawick The idea is to let the content-length filter compute the C-L before
c6741d11357aace4c9ba39535d3cb2d751f46114trawick we try to send the data. If we can get the C-L correctly, then we
c6741d11357aace4c9ba39535d3cb2d751f46114trawick should send it in the HEAD response.
7230f1eb017a35b7d20e0e9ec0d234766f2a732dtrawick [Ryan Bloom]
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick *) The Header filter can now determine if a body should be sent based
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick on r->header_only. The general idea of this is that if we delay
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick deciding to send the body, then we might be able to compute the
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick content-length correctly, which will help caching proxies to cache
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick our data better. Any handler that doesn't want to try to compute
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick the content-length can just send an EOS bucket without data and
86a5d34400b7f586ad2cca97c8b33b2f55bac61btrawick everything will just work.
6b477c0a238733ca8fd156629310513d29dc7e02trawick [Ryan Bloom]
6b477c0a238733ca8fd156629310513d29dc7e02trawick *) Add the referer to the error log if one is available.
6b477c0a238733ca8fd156629310513d29dc7e02trawick [Markus Gyger <mgyger@itr.ch>]
2b31ac2c6342d2afcf67b7b0f08c928a87f98c74wrowe *) Mod_info.c has now been ported to Apache 2.0. As a part of this
557eb8d48357657fa898250560f089c65539c634gregames change, the root of the configuration tree has been exposed to modules
557eb8d48357657fa898250560f089c65539c634gregames as ap_conftree.
557eb8d48357657fa898250560f089c65539c634gregames [Ryan Morgan <rmorgan@covalent.net>]
25b715e9687f82ea055fdea2a9761c7e5f1ac6eetrawick *) Get the core_output_filter to use the bucket interface directly.
25b715e9687f82ea055fdea2a9761c7e5f1ac6eetrawick This keeps us from calling the content-length filter multiple times
25b715e9687f82ea055fdea2a9761c7e5f1ac6eetrawick for a simple static request.
25b715e9687f82ea055fdea2a9761c7e5f1ac6eetrawick [Ryan Bloom]
51ced3b28ef430a96586284d4320f7dbdaf7225ebrianp *) We are sending the content-type correctly now.
51ced3b28ef430a96586284d4320f7dbdaf7225ebrianp [Ryan Bloom and Will Rowe]
a222035458f89e2db231450ba6d5fae8052da5f5aaron *) APR on FreeBSD: Fix a bug in apr_sendfile() which caused us to report
a222035458f89e2db231450ba6d5fae8052da5f5aaron a bogus bytes-sent value when the only thing being sent was trailers
a222035458f89e2db231450ba6d5fae8052da5f5aaron and writev() returned an error (or EAGAIN). [Jeff Trawick]
4a872628ca5bf20847f442a625c255b643120db0wrowe *) Get SINGLE_LISTEN_UNSERIALIZED_ACCEPT working again. This uses the
4a872628ca5bf20847f442a625c255b643120db0wrowe hints file to determine which platforms define
74528257888620220641cd28366731539a37e1f3ianh SINGLE_LISTEN_UNSERIALIZED_ACCEPT.
74528257888620220641cd28366731539a37e1f3ianh [Ryan Bloom]
0632de713e41fa3aa928a1777677b0d79843ae2bdougm *) APR: add apr_get_home_directory() [Jeff Trawick]
0cc82c261350ab8dc8a9992cad7197c4d22d597eianh *) Initial import of 1.3-current mod_proxy. [Chuck Murcko]
855e263a93fde2e30d10a48a9ffc047039bfc9d9brianp *) Not all platforms have INADDR_NONE defined by default. Apache
855e263a93fde2e30d10a48a9ffc047039bfc9d9brianp used to make this check and define INADDR_NONE if appropriate,
855e263a93fde2e30d10a48a9ffc047039bfc9d9brianp but APR needs the check too, and I suspect other applications will
855e263a93fde2e30d10a48a9ffc047039bfc9d9brianp as well. APR now defines APR_INADDR_NONE, which is always a valid
54b3b7946d22324cea615d7c8a4ff0c9eadd1f8crbb value on all platforms.
54b3b7946d22324cea615d7c8a4ff0c9eadd1f8crbb [Branko �ibej <brane@xbc.nu>]
54b3b7946d22324cea615d7c8a4ff0c9eadd1f8crbb *) Destroy the pthread mutex in lock_intra_cleanup() for PR#6824.
54b3b7946d22324cea615d7c8a4ff0c9eadd1f8crbb [Shuichi Kitaguchi <ki@hh.iij4u.or.jp>]
e28c02dc08247d3fcb71e81791cac2311a248dfdrbb *) Relax the syntax checking of Host: headers in order to support
e28c02dc08247d3fcb71e81791cac2311a248dfdrbb iDNS. PR#6635 [Tony Finch]
e28c02dc08247d3fcb71e81791cac2311a248dfdrbb *) When reading from file buckets we convert to an MMAP if it makes
e28c02dc08247d3fcb71e81791cac2311a248dfdrbb sense. This also simplifies the default handler because the
e28c02dc08247d3fcb71e81791cac2311a248dfdrbb default handler no longer needs to try to create MMAPs.
f9f506f0686ad065b4c6fe14dd962cdd478350dbianh [Ryan Bloom]
f9f506f0686ad065b4c6fe14dd962cdd478350dbianh *) BUFF has been removed from the main server. The BUFF code will remain
9d0665da83d1e22c0ea0e5f6f940f70f75bf5237ianh in the code until it has been purged from the proxy module as well.
9d0665da83d1e22c0ea0e5f6f940f70f75bf5237ianh [Ryan Bloom]
9d0665da83d1e22c0ea0e5f6f940f70f75bf5237ianh *) Byteranges have been completely re-written to be a filter. This
9d0665da83d1e22c0ea0e5f6f940f70f75bf5237ianh has been tested, and I believe it is working correctly, but it could
47c2fb4c1f155ddb6954e46e7f6d125eef78b3bbaaron doesn't work for the Adobe Acrobat plug-in. The output almost matches
47c2fb4c1f155ddb6954e46e7f6d125eef78b3bbaaron the output from 1.3, the only difference being that 1.3 includes
47c2fb4c1f155ddb6954e46e7f6d125eef78b3bbaaron a content-length in the response, and this does not.
47c2fb4c1f155ddb6954e46e7f6d125eef78b3bbaaron [Ryan Bloom]
9ca934cec0a1cc3c425fde5dc51956bce6cd3183brianp *) APR read/write functions and bucket read functions now operate
9ca934cec0a1cc3c425fde5dc51956bce6cd3183brianp on unsigned integers, instead of signed ones. It doesn't make
0cdca1e056a05a09fe16fe736abcf79969c9767ejerenkrantz any sense to use signed ints, because we return the error codes,
0cdca1e056a05a09fe16fe736abcf79969c9767ejerenkrantz so if we have an error we should report 0 bytes read or written.
0cdca1e056a05a09fe16fe736abcf79969c9767ejerenkrantz [Ryan Bloom]
f2afeedf074acc1a698a9527154eacd138e6c5a1trawick *) Always compute the content length, whether it is sent or not.
f2afeedf074acc1a698a9527154eacd138e6c5a1trawick The reason for this, is that it allows us to correctly report
0a2d57d962bef3a8898723925b3fb02d2e836994dougm the bytes_sent when logging the request. This also simplifies
0a2d57d962bef3a8898723925b3fb02d2e836994dougm content-length filter a bit, and fixes the actual byte-reporing
06461d67f387ea068187e6dfa036875a8205c04cjerenkrantz [Ryan Bloom]
900127764fb985c340ee4979cac97146a330c694trawick *) Remove AP_END_OF_BRIGADE definition. This does not signify what
900127764fb985c340ee4979cac97146a330c694trawick it says, because it was only used by EOS and FLUSH buckets. Since
1a6a0072a95887164091e366ba0e89c2b39a954abrianp neither of those are required at the end of a brigade, this was
1a6a0072a95887164091e366ba0e89c2b39a954abrianp really signifying FLUSH_THE_DATA, but that can be determined better
1a6a0072a95887164091e366ba0e89c2b39a954abrianp by checking AP_BUCKET_IS_EOS() or AP_BUCKET_IS_FLUSH. EOS and FLUSH
6f4c27ba6e152792f3729069e8d8313ebc87cc60jwoolley buckets now return a length of 0, which is actually the amount of data
6f4c27ba6e152792f3729069e8d8313ebc87cc60jwoolley read, so they make more sense.
6f4c27ba6e152792f3729069e8d8313ebc87cc60jwoolley [Ryan Bloom]
23ce412bd50a47accab4dd26019b78810bbf46ebtrawick *) Allow the core_output_filter to save some data past the end of a
23ce412bd50a47accab4dd26019b78810bbf46ebtrawick request. If we get an EOS bucket, we only send the data if it
6865813dee5d3c1ebf12dd810368171792a0190atrawick makes sense to send it. This allows us to pipeline request
6865813dee5d3c1ebf12dd810368171792a0190atrawick responses. As a part of this, we also need to allocate mmap
6865813dee5d3c1ebf12dd810368171792a0190atrawick buckets out of the connection pool, not the request pool. This
97719ad970d779ac48af9364ab0ea9fdcc27470ajwoolley allows the mmap to outlive the request.
97719ad970d779ac48af9364ab0ea9fdcc27470ajwoolley [Ryan Bloom]
5ad238c42b1e159ee8f164515e0c4ee6c727c2fdtrawick *) Make blocking and non-blocking bucket reads work correctly for
5ad238c42b1e159ee8f164515e0c4ee6c727c2fdtrawick sockets and pipes. These are the only bucket types that should
5ad238c42b1e159ee8f164515e0c4ee6c727c2fdtrawick have non-blocking reads, because the other bucket types should
ba00c3b7c20f00ce631b89ae3b1cd3bae8d1b165rbb ALWAYS be able to return something immediately.
ba00c3b7c20f00ce631b89ae3b1cd3bae8d1b165rbb [Ryan Bloom]
ba00c3b7c20f00ce631b89ae3b1cd3bae8d1b165rbb *) In the Apache/Win32 console window, accept Ctrl+C to stop the
ba00c3b7c20f00ce631b89ae3b1cd3bae8d1b165rbb server, but use Ctrl+Break to initiate a graceful restart
ba00c3b7c20f00ce631b89ae3b1cd3bae8d1b165rbb instead of duplicating behavior. [John Sterling]
6e954603b02f2b7d4ad80af17d9b3cc6f0bacf69rbb *) Patch mod_autoindex to set the Last-Modified header based on
6e954603b02f2b7d4ad80af17d9b3cc6f0bacf69rbb the directory's mtime, and add the ETag header. [William Rowe]
6e954603b02f2b7d4ad80af17d9b3cc6f0bacf69rbb *) Merge the 1.3 patch to add support for logging query string in
6e954603b02f2b7d4ad80af17d9b3cc6f0bacf69rbb such a way that "%m %U%q %H" is the same as "%r".
6e954603b02f2b7d4ad80af17d9b3cc6f0bacf69rbb [Bill Stoddard]
fa449f5bc87c5d87c4c60e778c9c882e7254de7ejwoolley *) Port three log methods from mod_log_config 1.3 to 2.0:
fa449f5bc87c5d87c4c60e778c9c882e7254de7ejwoolley CLF compliant '-' byte count, method and protocol.
fa449f5bc87c5d87c4c60e778c9c882e7254de7ejwoolley [Bill Stoddard]
fa449f5bc87c5d87c4c60e778c9c882e7254de7ejwoolley *) Add a new LogFormat directive, %c, that will log connection
1c0b7c3bdace07946457fa7ba04b7f97b6599792rbb status at the end of the response as follows:
227d23a7db41dd89f52391c9356dbb1adcd675e0jwoolley 'X' - connection aborted before the response completed.
227d23a7db41dd89f52391c9356dbb1adcd675e0jwoolley '+' - connection may be kept-alive by the server.
227d23a7db41dd89f52391c9356dbb1adcd675e0jwoolley '-' - connection will be closed by the server.
227d23a7db41dd89f52391c9356dbb1adcd675e0jwoolley [Bill Stoddard]
227d23a7db41dd89f52391c9356dbb1adcd675e0jwoolley *) Expand APR for WinNT to fully accept and return utf-8 encoded
1c0b7c3bdace07946457fa7ba04b7f97b6599792rbb Unicode file names and paths for Win32, and tag the Content-Type
17bc0e8f2e3816e25bc8fd3fadf39357340aebd0jerenkrantz from mod_autoindex to reflect that charset if the the feature
17bc0e8f2e3816e25bc8fd3fadf39357340aebd0jerenkrantz macro APR_HAS_UNICODE_FS is true. [William Rowe]
17bc0e8f2e3816e25bc8fd3fadf39357340aebd0jerenkrantz *) Compute the content length (and add appropriate header field) for
17bc0e8f2e3816e25bc8fd3fadf39357340aebd0jerenkrantz the response when no content length is available and we can't use
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb chunked encoding. [Jeff Trawick]
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb *) Changed ap_discard_request_body() to use REQUEST_CHUNKED_DECHUNK,
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb so that content input filters get dechunked data when using
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb the default handler. Also removed REQUEST_CHUNKED_PASS.
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb [Sascha Schumann]
e6cc28a5eb3371ba0c38e941855e71ff0054f50erbb *) Add mod_ext_filter as an experimental module. This module allows
cf233fb4b439415a2bf7bab7e622afd994e0bebftrawick the administrator to use external programs as filters. Currently,
cf233fb4b439415a2bf7bab7e622afd994e0bebftrawick only filtering of output is supported. [Jeff Trawick]
cf233fb4b439415a2bf7bab7e622afd994e0bebftrawick *) Most Apache functions work on EBCDIC machines again, as protocol
ae64f3e7385f21ca9d4f30cc7f8702a9ac1034b6trawick data is now translated (again). [Jeff Trawick]
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames *) Introduce ap_xlate_proto_{to|from}_ascii() to clean up some of
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames the EBCDIC support. They are noops on ASCII machines, so this
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames type of translation doesn't have to be surrounded by #ifdef
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames CHARSET_EBCDIC. [Jeff Trawick]
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames *) Fix mod_include. tag commands work again, and the server will
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames send the FAQ again. This also allows mod_include to set aside
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames buckets that include partial buckets.
2a20a2f8432a15b530e0a6b0998c32f40aef82a8gregames [Ryan Bloom and David Reid]
8d49090fd56a8ce06c7f7135f19e5ff8e24b5ff3gregames *) Add suexec support back. [Manoj Kasichainula]
270609308f247c5e934b400b5f1691c2cca16c61jerenkrantz *) Lingering close now uses the socket directly instead of using
270609308f247c5e934b400b5f1691c2cca16c61jerenkrantz BUFF. This has been tested, but since all we can tell is that it
270609308f247c5e934b400b5f1691c2cca16c61jerenkrantz doesn't fail, this needs to be really hacked on.
8458877c9ba0af86acd590eea531476adde3d02dmartin [Ryan Bloom]
8458877c9ba0af86acd590eea531476adde3d02dmartin *) Allow filters to modify headers and have those headers be sent to
8458877c9ba0af86acd590eea531476adde3d02dmartin the client. The idea is that we have an http_header filter that
8458877c9ba0af86acd590eea531476adde3d02dmartin actually sends the headers to the network. This removes the need
644be6f54749d2d9950d2c4d2ac448f7af016d26martin for the BUFF to send headers.
644be6f54749d2d9950d2c4d2ac448f7af016d26martin [Ryan Bloom]
644be6f54749d2d9950d2c4d2ac448f7af016d26martin *) Charset translation: mod_charset_lite handles translation of
8458877c9ba0af86acd590eea531476adde3d02dmartin request bodies. Get rid of the xlate version of ap_md5_digest()
b30b04f639d479b96cc08c43ffa34c92ba275676ianh since we don't compute digests of filtered (e.g., translated)
b30b04f639d479b96cc08c43ffa34c92ba275676ianh response bodies this way anymore. (Note that we don't do it at
b30b04f639d479b96cc08c43ffa34c92ba275676ianh all at the present; somebody needs to write a filter to do so.)
c4fbc4018fd2b6716673a38ee27eeb36cba41c5djwoolley [Jeff Trawick]
c4fbc4018fd2b6716673a38ee27eeb36cba41c5djwoolley *) Input filters and ap_get_brigade() now have a input mode parameter
c4fbc4018fd2b6716673a38ee27eeb36cba41c5djwoolley (blocking, non-blocking, peek) instead of a length parameter.
f4e4643c309e5b5da60e13f9a25984d54b307caawrowe [hackathon]
f4e4643c309e5b5da60e13f9a25984d54b307caawrowe *) Update the mime.types file to the registered media types as
2548497d480c4f3e9b3fe14711bd510aa2157434gregames of 2000-10-19. PR#6613 [Carsten Klapp <carsten.klapp@home.net>,
2548497d480c4f3e9b3fe14711bd510aa2157434gregames Tony Finch]
ccb5c3af2d491a7cd1c246cd23f0fb083da417fagregames *) Namespace protect some macros declared in ap_config.h
0e58e92812f2f679d6bf2ff66cbcfa6c1d1e14bbjerenkrantz [Ryan Bloom]
da6e93dca0222159650783802e23172e3160605egregames *) Support HTTP header line folding with input filtering.
da6e93dca0222159650783802e23172e3160605egregames [Greg Ames]
c927e13f298c42251296d33cc1fa3eb8232b843daaron *) Mod_include works again. This should still be re-written, but at
c927e13f298c42251296d33cc1fa3eb8232b843daaron least now we can serve an SHTML page again.
c927e13f298c42251296d33cc1fa3eb8232b843daaron [Ryan Bloom]
9126ed10455a2a98a3a51c68ed1b356e1873e8e6aaron *) Begin to remove BUFF from the core. Currently, we keep a pointer
9126ed10455a2a98a3a51c68ed1b356e1873e8e6aaron to both the BUFF and the socket in the conn_rec. Functions that
9126ed10455a2a98a3a51c68ed1b356e1873e8e6aaron want to use the BUFF can, functions that want to use the socket,
9126ed10455a2a98a3a51c68ed1b356e1873e8e6aaron can. They point to the same place.
fa3ca21e09bac0dbc2045e9f53963ba46cfed5b1trawick [Ryan Bloom]
fa3ca21e09bac0dbc2045e9f53963ba46cfed5b1trawick *) apr_psprintf doesn't understand %lld as a format. Make it %ld.
fa3ca21e09bac0dbc2045e9f53963ba46cfed5b1trawick [Tomas "�gren" <stric@ing.umu.se>]
18acb2c0df442ead1d075a1a2207cbb197725b14coar *) APR pipes on Unix and Win32 are now cleaned up automatically when the
18acb2c0df442ead1d075a1a2207cbb197725b14coar associated pool goes away. (APR pipes on OS/2 were already had this
18acb2c0df442ead1d075a1a2207cbb197725b14coar logic.) This resolvs a fatal file descriptor leak with CGIs.
617f972690d850a52cd4e9ef2f32d356e0fae715aaron [Jeff Trawick]
617f972690d850a52cd4e9ef2f32d356e0fae715aaron *) The final line of the config file was not being read if there was
617f972690d850a52cd4e9ef2f32d356e0fae715aaron no \n at the end of it. This was caused by apr_fgets returning
617f972690d850a52cd4e9ef2f32d356e0fae715aaron APR_EOF even though we had read valid data. This is solved by
9278d5393ef084f4fc6d7ec8641af5959442c157jwoolley making cfg_getline check the buff that was returned from apr_fgets.
9278d5393ef084f4fc6d7ec8641af5959442c157jwoolley If apr_fgets return APR_EOF, but there was data in the buf, then we
9278d5393ef084f4fc6d7ec8641af5959442c157jwoolley return the buf, otherwise we return NULL.
022cff78006f698453640e0a0e97cc5f8c9de59drbb [Ryan Bloom]
022cff78006f698453640e0a0e97cc5f8c9de59drbb *) Piped logs work again in the 2.0 series.
022cff78006f698453640e0a0e97cc5f8c9de59drbb [Ryan Bloom]
526a776292f420ffeea0d081c61971ed381fad20stoddard *) Restore functionality broken by the mod_rewrite security fix:
526a776292f420ffeea0d081c61971ed381fad20stoddard rewrite map lookup keys and default values are now expanded
526a776292f420ffeea0d081c61971ed381fad20stoddard so that the lookup can depend on the requested URI etc.
526a776292f420ffeea0d081c61971ed381fad20stoddard PR #6671 [Tony Finch]
526a776292f420ffeea0d081c61971ed381fad20stoddard *) Tighten up the syntax checking of Host: headers to fix a
526a776292f420ffeea0d081c61971ed381fad20stoddard security bug in some mass virtual hosting configurations
526a776292f420ffeea0d081c61971ed381fad20stoddard that can allow a remote attacker to retrieve some files
526a776292f420ffeea0d081c61971ed381fad20stoddard on the system that should be inaccessible. [Tony Finch]
452d2fd15cebd2da9331d5d765558a60b488c1a9rbb *) Add a pool bucket type. This bucket is used for data allocated out
62ddc9851530478919d169ba9c34b80f60cf7718trawick of a pool. If the pool is cleaned before the bucket is destroyed, then
62ddc9851530478919d169ba9c34b80f60cf7718trawick the data is converted to a heap bucket, allowing it to survive the
62ddc9851530478919d169ba9c34b80f60cf7718trawick death of the pool.
62ddc9851530478919d169ba9c34b80f60cf7718trawick [Ryan Bloom]
904d7bf799c6216beb34519463596b4fce630308wrowe *) Add a flush bucket. This allows modules to signal that the filters
904d7bf799c6216beb34519463596b4fce630308wrowe should all flush whatever data they currently have. There is no way
904d7bf799c6216beb34519463596b4fce630308wrowe to actually force them to do this, so if a filter ignores this bucket,
904d7bf799c6216beb34519463596b4fce630308wrowe that's life, but at least we can try with this.
904d7bf799c6216beb34519463596b4fce630308wrowe [Ryan Bloom]
904d7bf799c6216beb34519463596b4fce630308wrowe *) Add an output filter for sub-requests. This filter just strips the
904d7bf799c6216beb34519463596b4fce630308wrowe EOS bucket so that we don't confuse the main request's core output
904d7bf799c6216beb34519463596b4fce630308wrowe filter by sending multiple EOS buckets. This change also makes sub
17a4c6968b2fa692ff4dde12fe305230ee6b0421aaron requests start to send EOS buckets when they are finished.
17a4c6968b2fa692ff4dde12fe305230ee6b0421aaron [Ryan Bloom]
17a4c6968b2fa692ff4dde12fe305230ee6b0421aaron *) Make ap_bucket_(read|destroy|split|setaside) into macros. Also
83b031099aa3dc8a5fd2f708e397818cbd16c9aajerenkrantz makes ap_bucket_destroy a return void, which is okay because it
83b031099aa3dc8a5fd2f708e397818cbd16c9aajerenkrantz used to always return APR_SUCCESS, and nobody ever checked its
83b031099aa3dc8a5fd2f708e397818cbd16c9aajerenkrantz return value anyway.
01e77cadbd9ad4962993380245bcc033dde523e4rbb [Cliff Woolley <cliffwoolley@yahoo.com>]
01e77cadbd9ad4962993380245bcc033dde523e4rbb *) Remove the index into the bucket-type table from the buckets
8ea9794272347cfdd92861f46295406649f01afatrawick structure. This has now been replaced with a pointer to the
8ea9794272347cfdd92861f46295406649f01afatrawick bucket_type. Also add some macros to test the bucket-type.
8ea9794272347cfdd92861f46295406649f01afatrawick [Ryan Bloom]
b900452c9c36031434d318880f023c0fb9143325rbb *) Renamed all MODULE_EXPORT symbols to AP_MODULE_DECLARE and all symbols
b900452c9c36031434d318880f023c0fb9143325rbb for CORE_EXPORT to AP_CORE_DECLARE (namespace protecting the wrapper)
b900452c9c36031434d318880f023c0fb9143325rbb and retitled API_EXPORT as AP_DECLARE and APR_EXPORT as APR_DECLARE.
b900452c9c36031434d318880f023c0fb9143325rbb All _VAR_ flavors changes to _DATA to be absolutely clear.
b900452c9c36031434d318880f023c0fb9143325rbb [William Rowe]
b900452c9c36031434d318880f023c0fb9143325rbb *) Add support for /, //, //servername and //server/sharename
b900452c9c36031434d318880f023c0fb9143325rbb parsing of <Directory> blocks under Win32 and OS2.
b900452c9c36031434d318880f023c0fb9143325rbb [Tim Costello, William Rowe, Brian Harvard]
8b666e1fb772b6fe45de3604b224f3e1f2cfd620rbb *) Remove the function pointers from the ap_bucket type. They have been
c453a141db60a5b19649eac508f4851a8729c556rbb replaced with a global table. Modules are allowed to register bucket
c453a141db60a5b19649eac508f4851a8729c556rbb types and use then use those buckets.
c453a141db60a5b19649eac508f4851a8729c556rbb [Ryan Bloom]
8b91dcac0e1ef7796c72d16b0962267313cac486jerenkrantz *) mod_cgid: In the handler, shut down the Unix socket (only for write)
8b91dcac0e1ef7796c72d16b0962267313cac486jerenkrantz once we finish writing the request body to the cgi child process;
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe otherwise, the client doesn't hit EOF on stdin. Small request bodies
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe worked without this change (for reasons I don't understand), but large
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe ones didn't. [Jeff Trawick]
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe *) Remove file bucket specific information from the ap_bucket type.
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe This has been moved to a file_bucket specific type that hangs off
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe the data pointer in the ap_bucket type.
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe [Ryan Bloom]
7dfed2b71c9c4223996cbd7c5c0c85c7c8fef2a4rbb *) Input filtering now has a third argument. This is the amount of data
6ce942b017db75b559a42bdc2d7b8ea9e869a956wrowe to read from lower filters. This argument can be -1, 0, or a positive
7dfed2b71c9c4223996cbd7c5c0c85c7c8fef2a4rbb number. -1 means give me all the data you have, I'll deal with it and
574f6ff9ee80ef4f772649c5c8319b764a8abe42jerenkrantz let you know if I need more. 0 means give me one line and one line
574f6ff9ee80ef4f772649c5c8319b764a8abe42jerenkrantz only. A positive number means I want no more than this much data.
6d7d70dbda8e461d87f2d41e323755496ae3ebc7trawick Currently, only 0 and a positive number are implemented. This allows
6d7d70dbda8e461d87f2d41e323755496ae3ebc7trawick us to remove the remaining field from the conn_rec structure, which
6d7d70dbda8e461d87f2d41e323755496ae3ebc7trawick has also been done.
22a25f3393393b781e214f4abef17950bcb8bbe3jerenkrantz [Ryan Bloom]
22a25f3393393b781e214f4abef17950bcb8bbe3jerenkrantz *) Big cleanup of the input filtering. The goal is that http_filter
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe understands two conditions, headers and body. It knows where it is
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe based on c->remaining. If c->remaining is 0, then we are in headers,
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe and http_filter returns a line at a time. If it is not 0, then we are
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe in body, and http_filter returns raw data, but only up to c->remaining
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe bytes. It can return less, but never more.
a310497ca9c5112d759871e1b7d9f6a40fb78bcfwrowe [Greg Ames, Ryan Bloom, Jeff Trawick]
8bda0627eb2aca9e678c1303a0423d33069388dfwrowe *) mod_cgi: Write all of the request body to the child, not just what
de63b1eeff87cd19cf42bb83cca85381026965ddjerenkrantz the kernel would accept on the first write. [Jeff Trawick]
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb *) Back out the change that moved the brigade from the core_output_filters
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb ctx to the conn_rec. Since all requests over a given connection
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb go through the same core_output_filter, the ctx pointer has the
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb correct lifetime.
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb [Ryan Bloom]
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb *) Fix another bug in the send_the_file() read/write loop. A partial
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb send by apr_send would cause unsent data in the read buffer to
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb get clobbered. Complete making send_the_file handle partial
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb writes to the network.
e36ef0d081aa59867688bcbb3da65952ec16fae3rbb [Bill Stoddard]
52df98b165194a0ad68885f49f81fdaf56ece568wrowe *) Fix a couple of type fixes to allow compilation on AIX again
52df98b165194a0ad68885f49f81fdaf56ece568wrowe [Victor J. Orlikowski <v.j.orlikowski@gte.net>]
2c294c31addd5c957bafe6e78c4a30d423ad6e80rbb *) Fix bug in send_the_file() which causes offset to be ignored
2c294c31addd5c957bafe6e78c4a30d423ad6e80rbb if there are no headers to send.
2c294c31addd5c957bafe6e78c4a30d423ad6e80rbb [Bill Stoddard]
7e44dd5082cd865068285e8f915bb5f045e0bb80lars *) Handle APR_ENOTIMPL returned from apr_sendfile in the core
7e44dd5082cd865068285e8f915bb5f045e0bb80lars filter. Useful for supporting Windows 9* with a binary
7e44dd5082cd865068285e8f915bb5f045e0bb80lars compiled on Windows NT.
44a4ee1140769173da7bc2b42d1a686e3260ad84wrowe [Bill Stoddard]
44a4ee1140769173da7bc2b42d1a686e3260ad84wroweChanges with Apache 2.0a7
44a4ee1140769173da7bc2b42d1a686e3260ad84wrowe *) Reimplement core_output_filter to buffer/save bucket brigades
e379fc6d7f79163700290d92ce75deb4f3005301jerenkrantz across multiple calls to the core_filter. The brigade will be
e379fc6d7f79163700290d92ce75deb4f3005301jerenkrantz sent when either MIN_BYTES_TO_SEND or MAX_IOVEC_TO_WRITE
e379fc6d7f79163700290d92ce75deb4f3005301jerenkrantz thresholds are hit or the EOS bucket is received.
978faa9e29e0f0c42e66c07240e562325a4717b0jerenkrantz [Bill Stoddard]
978faa9e29e0f0c42e66c07240e562325a4717b0jerenkrantz *) Create experimental filter (buffer_filter) that coalesces bytes
978faa9e29e0f0c42e66c07240e562325a4717b0jerenkrantz into one large buffer before invoking the next filter in the
976501adbc040220270f7d1d77c4b8373033be69wrowe chain. This filter is particularly useful with the current
976501adbc040220270f7d1d77c4b8373033be69wrowe implementation of mod_autoindex when it inserted above the
976501adbc040220270f7d1d77c4b8373033be69wrowe chunk_filter. mod_autoindex generates a lot of brigades that
976501adbc040220270f7d1d77c4b8373033be69wrowe containing buckets holding just a few bytes each. The
976501adbc040220270f7d1d77c4b8373033be69wrowe buffer_filter coalesces these buckets into a single large bucket.
976501adbc040220270f7d1d77c4b8373033be69wrowe [Bill Stoddard]
10a00688adcf1df367b1243810beedaabe6b1abeminfrin *) Add apr_sendfile() support into the core_output_filter.
10a00688adcf1df367b1243810beedaabe6b1abeminfrin [Bill Stoddard]
8a3a703eae0e35f674b189181609545c6fc77a09rbb *) Add apr_sendv() support into the core_output_filter.
8a3a703eae0e35f674b189181609545c6fc77a09rbb [Bill Stoddard]
9af1ccb223d0669b3c3a43eed070d815afde9084mjc *) Fix mod_log_config so that it compiles cleanly with BUFFERED_LOGS
9af1ccb223d0669b3c3a43eed070d815afde9084mjc [Mike Abbott <mja@sgi.com>]
9d41fafe32b324c197f25224207fc6ce34f085bfrbb *) Remove ap_send_fb. This is no longer used in Apache, and it doesn't
9d41fafe32b324c197f25224207fc6ce34f085bfrbb make much sense, because Apache uses buckets instead of BUFFs now.
9d41fafe32b324c197f25224207fc6ce34f085bfrbb [Ryan Bloom]
9d41fafe32b324c197f25224207fc6ce34f085bfrbb *) send_the_file now falls back to a read/write loop on platforms that
889d9c84f8b1ad850f977a6d8e548696994f8f86jerenkrantz do not have sendfile.
889d9c84f8b1ad850f977a6d8e548696994f8f86jerenkrantz [Ryan Bloom and Brian Havard]
8c83461e53ca7d204e1d634f0c78199d60320d7bjerenkrantz *) Install apachectl correctly, and substitute the proper values so
8c83461e53ca7d204e1d634f0c78199d60320d7bjerenkrantz that it works again. [Ryan Bloom]
8e5842bc05146bb5c171e53b00b24063d17c666cjerenkrantz *) Better(??) handle platforms that lack sendfile().
8e5842bc05146bb5c171e53b00b24063d17c666cjerenkrantz [Jim Jagielski]
cdb15137887e284797e9510029098dc725b4dacfjerenkrantz *) APR now has UUID generation/formatting/parsing support.
cdb15137887e284797e9510029098dc725b4dacfjerenkrantz [Greg Stein]
798c7c11dc2fe3b08e591e9c76fc1a84857f2cd4jerenkrantz *) Begin the http_filter. This is an input filter that understands
798c7c11dc2fe3b08e591e9c76fc1a84857f2cd4jerenkrantz the absolute basic amount required to parse an HTTP Request. The
798c7c11dc2fe3b08e591e9c76fc1a84857f2cd4jerenkrantz goal is to be able to split headers from request body before passing
abaaa634d7cee882b7c4bf078ded749ebf11997erbb the data back to the other filters.
abaaa634d7cee882b7c4bf078ded749ebf11997erbb [Ryan Bloom]
abaaa634d7cee882b7c4bf078ded749ebf11997erbb *) Bring forward from 1.3.13 the config directory implementation
0aa8e8fd5a242948518655f2296b3c76386754e5jerenkrantz [Jim Jagielski]
0aa8e8fd5a242948518655f2296b3c76386754e5jerenkrantz *) install apxs if it is created
de3abad1fe263e577bb11e99b358836bd901397crbb [Ryan Bloom]
de3abad1fe263e577bb11e99b358836bd901397crbb *) Added APR_IS_STATUS_condition test macros to eliminate canonical error
de3abad1fe263e577bb11e99b358836bd901397crbb conversions. [William Rowe]
de3abad1fe263e577bb11e99b358836bd901397crbb *) Now that we have ap_add_input_filter(), rename ap_add_filter() to
de3abad1fe263e577bb11e99b358836bd901397crbb ap_add_output_filter(). [Jeff Trawick]
de3abad1fe263e577bb11e99b358836bd901397crbb *) Multiple build and configuration fixes
0a549489abdb309ef25483431e1e5610ed4ba7a8gstein Build process:
0a549489abdb309ef25483431e1e5610ed4ba7a8gstein -add datadir and localstatedir substitutions
0a549489abdb309ef25483431e1e5610ed4ba7a8gstein -fix layout name
0a549489abdb309ef25483431e1e5610ed4ba7a8gstein -fix logfilename misspelling
0a549489abdb309ef25483431e1e5610ed4ba7a8gstein -fix evaluation of installation dir variables and
14c6f2e13d97a4fafac1fbc247a274a298d5b418wrowe -replace $foobar by $(foobar) to be usefull in the makefile
14c6f2e13d97a4fafac1fbc247a274a298d5b418wrowe Cross compile:
f00d1e76bae896c2f6a520eec69b1d0d802d4108jerenkrantz -add rules for cross-compiling in rules.mk. Okay, rule to check for
f00d1e76bae896c2f6a520eec69b1d0d802d4108jerenkrantz $CC_FOR_BUILD is still missing
f00d1e76bae896c2f6a520eec69b1d0d802d4108jerenkrantz -use CHECK_TOOL instead of CHECK_PROG for ranlib
58097d7d8d1a394092374b9f6ddf76b7993724a4rbb -add missing "AR=@AR@" to severaly Makefile.in's
58097d7d8d1a394092374b9f6ddf76b7993724a4rbb -cache result for "struct rlimit"
58097d7d8d1a394092374b9f6ddf76b7993724a4rbb -compile all helper programs with native and cross compiler
58097d7d8d1a394092374b9f6ddf76b7993724a4rbb and use the native version to generate header file
2f6cebd6b8bf0b044f6579d23117a4a3c364a554wrowe ["R�diger" Kuhlmann <Tadu@gmx.de>]
2f6cebd6b8bf0b044f6579d23117a4a3c364a554wrowe *) Prepare our autoconf setup for autoconf 2.14a and for cross-
2f6cebd6b8bf0b044f6579d23117a4a3c364a554wrowe ["R�diger" Kuhlmann <Tadu@gmx.de>]
070d2f9fd52a3f0e45ca7ae1235c5a5755b80d24rbb *) Fix a bug where a client which only sends \n to delimit header
070d2f9fd52a3f0e45ca7ae1235c5a5755b80d24rbb lines (netcat) gets a strange looking HTTP_NOT_IMPLEMENTED
070d2f9fd52a3f0e45ca7ae1235c5a5755b80d24rbb message. Start working on ebcdic co-existance with input
070d2f9fd52a3f0e45ca7ae1235c5a5755b80d24rbb filtering.
7c19ce86bbd72bba1d018522250f5f315ffbc0afjerenkrantz [William Rowe, Greg Ames]
7c19ce86bbd72bba1d018522250f5f315ffbc0afjerenkrantz *) If mod_so is enabled in the server always create libexec, even
2264fbcbab4c796c4222c30393c0b218c98b6befrbb if there are no modules installed in this directory. This is a
2264fbcbab4c796c4222c30393c0b218c98b6befrbb requirement for APXS to work correctly.
2264fbcbab4c796c4222c30393c0b218c98b6befrbb [Ryan Bloom]
e099672a13ea4ff4a11f130406f1baecba5949bajerenkrantz *) Connection oriented output filters are now stored in the
e099672a13ea4ff4a11f130406f1baecba5949bajerenkrantz conn_rec instead of the request_rec. This allows us to add the
e099672a13ea4ff4a11f130406f1baecba5949bajerenkrantz output filter in the pre-connection phase instead of the
9b29e0cfeb2c89a047806cc4a2a764afed6bb170wrowe post_read_request phase, which keeps us from trying to write an
9b29e0cfeb2c89a047806cc4a2a764afed6bb170wrowe error page before we have a filter to write to the network.
9b29e0cfeb2c89a047806cc4a2a764afed6bb170wrowe [Ryan Bloom, Jeff Trawick, and Greg Ames]
441bd066858500e75e4f63ef149120bcf523de58jerenkrantz *) Cleaning up an mmap bucket no longer deletes the mmap. An
441bd066858500e75e4f63ef149120bcf523de58jerenkrantz mmap can be used across multiple buckets (default_handler with
441bd066858500e75e4f63ef149120bcf523de58jerenkrantz byte ranges, mod_file_cache, mod_mmap_static), so cleanup of
d6a93816bfaa5b3de5f2e6cb0d172cbe20dd056ejerenkrantz the mmap itself can't be associated with the bucket.
d6a93816bfaa5b3de5f2e6cb0d172cbe20dd056ejerenkrantz [Jeff Trawick]
c839614b4216fe34f6346668ad646aca2c0f23c6wrowe *) Add .dll caching directive ISAPICacheFile to mod_isapi.
c839614b4216fe34f6346668ad646aca2c0f23c6wrowe [William Rowe]
c839614b4216fe34f6346668ad646aca2c0f23c6wrowe *) Radical surgery to improve mod_isapi support under Win32.
c839614b4216fe34f6346668ad646aca2c0f23c6wrowe Includes a number of newer ServerSupportFunction calls, support
c839614b4216fe34f6346668ad646aca2c0f23c6wrowe for ReadClient (in order to retrieve POSTs greater than 48KB),
117e2968318323d2ad2187fcd4de379d2eca245cwrowe and general bug fixes to more reliably load ISAPI .dll's and
117e2968318323d2ad2187fcd4de379d2eca245cwrowe prevent leaking handle resources. Note: There are still
117e2968318323d2ad2187fcd4de379d2eca245cwrowe discrepancies between IIS's and Apache's ServerVariables, and
117e2968318323d2ad2187fcd4de379d2eca245cwrowe async calls are still not supported. Additional warnings are
117e2968318323d2ad2187fcd4de379d2eca245cwrowe logged to facilitate debugging of unsupported ISAPI calls.
117e2968318323d2ad2187fcd4de379d2eca245cwrowe [William Rowe]
117e2968318323d2ad2187fcd4de379d2eca245cwrowe *) Add input filtering to Apache. The basic idea for the input
117e2968318323d2ad2187fcd4de379d2eca245cwrowe filters is the same as the ideas for output filters. The biggest
117e2968318323d2ad2187fcd4de379d2eca245cwrowe difference is that instead of calling ap_pass_brigade, ap_get_brigade
117e2968318323d2ad2187fcd4de379d2eca245cwrowe should be called, and the order of execution for the filter itself is
117e2968318323d2ad2187fcd4de379d2eca245cwrowe different. When writing an output filter, a brigade is passed in,
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe and filters operate directly on that brigade, when done, they call
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe ap_pass_brigade. Input filters are the exact opposite. Because input
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe is not a push operation, filters first call ap_get_brigade. When this
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe function returns, the input filter will be left with a valid brigade.
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe The input filter should then operate on the brigade, and return.
e9fa5a00f39f6aabbc5dcd776c5bc6bd0638f955wrowe [Ryan Bloom]
de419544885a5c64589dddf1b8517672ee17c1feminfrin *) Fix building on BSD/OS using its native make. The build system
de419544885a5c64589dddf1b8517672ee17c1feminfrin falls back to the BSD .include directive on that host platform.
de419544885a5c64589dddf1b8517672ee17c1feminfrin [Sascha Schumann]
67869a9db2967cb50405e51b1d6d1ebab1219e03trawick *) Expand dbmmanage to allow -d -m -s -p options for Crypt, MD5,
9c4321d9cc4eecbb0c5d568aea53d5e6812c7b96martin SHA1 and plaintext password encodings. Make feature tests a
9c4321d9cc4eecbb0c5d568aea53d5e6812c7b96martin bit more flexible. [William Rowe]
9c4321d9cc4eecbb0c5d568aea53d5e6812c7b96martin *) Charset translation: mod_charset_lite handles output content
9c4321d9cc4eecbb0c5d568aea53d5e6812c7b96martin translation in a filter. mod_charset_lite no longer ignores
956c6100798467199833e7159a00506ee879d772minfrin subrequests. A bunch of cruft related to BUFF's support for
956c6100798467199833e7159a00506ee879d772minfrin translating request and response bodies was removed.
956c6100798467199833e7159a00506ee879d772minfrin [Jeff Trawick]
956c6100798467199833e7159a00506ee879d772minfrin *) Move the addition of the CORE filter to the post_read_request
956c6100798467199833e7159a00506ee879d772minfrin hook in http_core.c. This removes the need to add the filter in
47697533fd7ced2259f9150677ea5efa583b6c13rbb multiple places and allows for an SSL module to be added much
47697533fd7ced2259f9150677ea5efa583b6c13rbb simpler. [Ryan Bloom]
47697533fd7ced2259f9150677ea5efa583b6c13rbb *) Fix a security problem that affects certain configurations of
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe mod_rewrite. If the result of a RewriteRule is a filename that
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe contains expansion specifiers, especially regexp backreferences
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe $0..$9 and %0..%9, then it may be possible for an attacker to
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe access any file on the web server. [Tony Finch]
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe *) Fix a bug where errors that are detected during early request parsing
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe don't produce visible HTTP error messages at the browser, because
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe the core_filter wasn't present. [Greg Ames]
7ba1a2c8babfd7c7c46bb03567a868d51e1023dbwrowe *) Provide apr_socklen_t as a portability aid.
b2c2c8a4bc977c0a6bb937af995efc56dc3879a3wrowe [Victor J. Orlikowski]
b2c2c8a4bc977c0a6bb937af995efc56dc3879a3wrowe *) Overhaul of dbmmanage to allow a groups arg (as in Apache 1.2)
b2c2c8a4bc977c0a6bb937af995efc56dc3879a3wrowe as well as a comment arg to the add, adduser and update cmds.
b2c2c8a4bc977c0a6bb937af995efc56dc3879a3wrowe update allows the user to clear or preserve pw/groups/comment.
67869a9db2967cb50405e51b1d6d1ebab1219e03trawick Fixed a bug in dbmmanage that prevented the check option from
67869a9db2967cb50405e51b1d6d1ebab1219e03trawick parsing a password followed by :group... text. Corrected the
67869a9db2967cb50405e51b1d6d1ebab1219e03trawick seed calcualation for Win32 systems, and added -lsdbm support.
4d003677925ceb0abefb9c95355b4c9e9e502899rederpj [William Rowe]
4d003677925ceb0abefb9c95355b4c9e9e502899rederpj *) Configured mod_auth_dbm to compile with sdbmlib under Win32.
67869a9db2967cb50405e51b1d6d1ebab1219e03trawick [William Rowe]
e00ae6859667e293a4c40108f524408ae1289f2frbb *) Avoid a segfault when parsing .htaccess files. An
0db1b9810f06c0e3c537e0e0dfbc30160c308526trawick uninitialized tree pointer was passed to ap_build_config().
0db1b9810f06c0e3c537e0e0dfbc30160c308526trawick [Jeff Trawick]
13bac43a0f21d8c6401debc1baa76be984474074rbb *) Change the way that inet_addr & inet_network are checked for
13bac43a0f21d8c6401debc1baa76be984474074rbb in APR's configure process to allow BeOS BONE to correctly
13bac43a0f21d8c6401debc1baa76be984474074rbb find them. With this change BeOS BONE now builds from source
053497224246c4dbef9af594cacf5c00ed271e6cwrowe with no problems. [David Reid]
053497224246c4dbef9af594cacf5c00ed271e6cwrowe *) Fix a bug in apr_create_process() for Unix. The NULL signifying
053497224246c4dbef9af594cacf5c00ed271e6cwrowe the end of the parameters to execve() was stored in the wrong
053497224246c4dbef9af594cacf5c00ed271e6cwrowe location, overlaying the storage beyond the newargs[] array and
ac06e54654494445fd3d39e90bd23b436b4f84ccwrowe also passing uninitialized storage to execve(), which would
ac06e54654494445fd3d39e90bd23b436b4f84ccwrowe sometimes fail with EFAULT. [Jeff Trawick]
ac06e54654494445fd3d39e90bd23b436b4f84ccwrowe *) Fix a bug parsing configuration file containers. With a sequence
ac06e54654494445fd3d39e90bd23b436b4f84ccwrowe like this in the config file
78e8198247420a3efeb21e38b42c423e5863cbb0jwoolley </IfModule>
78e8198247420a3efeb21e38b42c423e5863cbb0jwoolley (blank line)
a2a0abd88b19e042a3eb2a9fa1702c25ad51303dwrowe </IfModule>
a2a0abd88b19e042a3eb2a9fa1702c25ad51303dwrowe the second container would be terminated at the blank line due to
a2a0abd88b19e042a3eb2a9fa1702c25ad51303dwrowe sediment in the buffer from reading the prior </IfModule> and an
a2a0abd88b19e042a3eb2a9fa1702c25ad51303dwrowe error message would be generated for the real </IfModule> for the
a2a0abd88b19e042a3eb2a9fa1702c25ad51303dwrowe second container. Also due to this problem, any two characters
a906160166014e14adc01c87a956d89de0d79918rbb could be used for "</" in the close of a container.
a906160166014e14adc01c87a956d89de0d79918rbb [Jeff Trawick]
a906160166014e14adc01c87a956d89de0d79918rbb *) ap_add_filter prototype changed to remove the ctx pointer. The
a906160166014e14adc01c87a956d89de0d79918rbb pointer still remains in the filter structure, but it can not be
a906160166014e14adc01c87a956d89de0d79918rbb a part of the ap_add_filter prototype. The reason is that when
a906160166014e14adc01c87a956d89de0d79918rbb the core uses AddFilter to add a filter to the stack it doesn't
7f66c5be12d3b48b1ebfa79033c099e4f91ff302dougm know how to allocate the ctx pointer, or even how much memory should
7f66c5be12d3b48b1ebfa79033c099e4f91ff302dougm be allocated. The filters will have to be responsible for allocating
7f66c5be12d3b48b1ebfa79033c099e4f91ff302dougm the ctx memory when they need it.
7f66c5be12d3b48b1ebfa79033c099e4f91ff302dougm [Ryan Bloom]
e00ae6859667e293a4c40108f524408ae1289f2frbb *) Add an AddFilter directive. This directive takes a list of filters
e00ae6859667e293a4c40108f524408ae1289f2frbb that should be activated for the requested resource.
e00ae6859667e293a4c40108f524408ae1289f2frbb [Ryan Bloom]
e00ae6859667e293a4c40108f524408ae1289f2frbb *) apr_snprintf(): Get quad format strings working on OS/390 (and perhaps
e00ae6859667e293a4c40108f524408ae1289f2frbb some other platforms). [Jeff Trawick]
d94fd18ee21dc9b8c1f422144a881e941687d41fdougm *) Modify mod_include to be a filter. Currently, it has only been tested
53b8cdb3621b11b897438d8990d20e0b78f0d4b7rederpj on actual files, but it should work for CGI scripts too.
53b8cdb3621b11b897438d8990d20e0b78f0d4b7rederpj [Ryan Bloom]
53b8cdb3621b11b897438d8990d20e0b78f0d4b7rederpj *) apr_putc(), apr_puts() for Unix: handle buffered files and interrupted
53b8cdb3621b11b897438d8990d20e0b78f0d4b7rederpj writes. apr_flush() for Unix: handle interrupted writes.
53b8cdb3621b11b897438d8990d20e0b78f0d4b7rederpj [Jeff Trawick]
a1373889aeb316ed9d1b0f24a715e919d02a4d99dougm *) NameVirtualHost can now take "*" as an argument instead of
a1373889aeb316ed9d1b0f24a715e919d02a4d99dougm an IP address. This allows you to create a purely name-based
a1373889aeb316ed9d1b0f24a715e919d02a4d99dougm virtual hosting server that does not have any IP addresses in
6b025bd5a034790b2bb31236092265e154d6a565dougm the configuration file and which ignores the local address
6b025bd5a034790b2bb31236092265e154d6a565dougm of any connections. PR #5595, PR #4455 [Tony Finch]
d0af34e0d69afb8195eee403c60357d59ac046e1trawick *) Fix some compile warnings in mod_mmap_static.c
d0af34e0d69afb8195eee403c60357d59ac046e1trawick [Mike Abbott <mja@sgi.com>]
d0af34e0d69afb8195eee403c60357d59ac046e1trawick *) Fix chunking problem with CGI scripts. The general problem was that
91cbefdfe308c93892b52045a5f0253506432cd0trawick the CGI modules were adding an EOS bucket and then the core added an
91cbefdfe308c93892b52045a5f0253506432cd0trawick EOS bucket. The chunking filter finalizes the chunked response when it
598ce99543701a45a31bb01bf73c83d894592491rederpj encounters an EOS bucket. Because two EOS buckets were sent, we
598ce99543701a45a31bb01bf73c83d894592491rederpj finalized the response twice. The fix is to make sure we only send one
598ce99543701a45a31bb01bf73c83d894592491rederpj EOS, by utilizing a flag in the request_rec.
598ce99543701a45a31bb01bf73c83d894592491rederpj [Ryan Bloom]
fa687651463b68c7cc0dda80341712d1ef9543efwrowe *) apr_put_os_file() now sets up the unget byte appropriately on Unix
fa687651463b68c7cc0dda80341712d1ef9543efwrowe and Win32. Previously, the first read from an apr_file_t set up via
fa687651463b68c7cc0dda80341712d1ef9543efwrowe apr_put_os_file() would return a '\0'. [Jeff Trawick]
7680ff9dd09d8feb9db31d23f33458d0464e92f1wrowe *) Mod_cgid now creates a single element bucket brigade, with a pipe
7680ff9dd09d8feb9db31d23f33458d0464e92f1wrowe bucket, instead of using BUFF's and ap_r*.
7680ff9dd09d8feb9db31d23f33458d0464e92f1wrowe [Ryan Bloom]
c760d13cffeef40df3f8c5a798e40a064dc80067bjh *) APRVARS.in no longer overwrites the EXTRA_LIBS variable.
78980330fa2be5f42eb3a9c9b73a71a5168944e6minfrin [Mike Abbott <mja@sgi.com>]
78980330fa2be5f42eb3a9c9b73a71a5168944e6minfrin *) Remove ap_bopenf from buff code. This required modifying the file_cache
78980330fa2be5f42eb3a9c9b73a71a5168944e6minfrin code to use APR file's directly instead of going through BUFFs.
1fff95696a94273a1629649652cbc5d2e9e8ce39minfrin [Ryan Bloom]
1fff95696a94273a1629649652cbc5d2e9e8ce39minfrin *) Fix compile break on some platforms for mod_mime_magic.c
90ad571a3ddd07e9b96f06b6b425295e1ec93da0minfrin [John K. Sterling <sterling@covalent.net>]
90ad571a3ddd07e9b96f06b6b425295e1ec93da0minfrin *) Fix merging of AddDefaultCharset directive.
90ad571a3ddd07e9b96f06b6b425295e1ec93da0minfrin PR #5872 (1.3) [Jun Kuriyama <kuriyama@imgsrc.co.jp>]
10dd882bd22449ec6c1b8fb0c5227727e2232ba8minfrin *) Minor revamp of the rlimit sections of code. We now test
10dd882bd22449ec6c1b8fb0c5227727e2232ba8minfrin explicitly for setrlimit and getrlimit. Also, unixd_set_rlimit()
10dd882bd22449ec6c1b8fb0c5227727e2232ba8minfrin is now "available" even if the platform doesn't support
89342f4a895e67868f8fe37a0ac77f1dd9f91868minfrin the rlimit family (it's just a noop though). [Jim Jagielski]
89342f4a895e67868f8fe37a0ac77f1dd9f91868minfrin *) Migrate the pre-selection of which MPM to use for specific
89342f4a895e67868f8fe37a0ac77f1dd9f91868minfrin platforms to hints.m4, which contains (or should contain)
7a027a168069a89ca0946e04294f5130d9cbe3b8rederpj all platform specific "hints". [Jim Jagielski]
7a027a168069a89ca0946e04294f5130d9cbe3b8rederpj *) Remove IOLs from Apache. With filtering, IOLs are no longer necessary
10dd882bd22449ec6c1b8fb0c5227727e2232ba8minfrin [Ryan Bloom]
29caf394750ea44e25d289a9aa7b92b9823faa8aminfrin *) Add tables with non-string/binary values to APR.
29caf394750ea44e25d289a9aa7b92b9823faa8aminfrin *) Fix some bad calls to ap_log_rerror() in mod_rewrite.
29caf394750ea44e25d289a9aa7b92b9823faa8aminfrin [Jeff Trawick]
330e5149d05dc4f5121b30964753167e43690afdrbb *) Update PCRE to version 3.2. [Ryan Bloom]
330e5149d05dc4f5121b30964753167e43690afdrbb *) Change the way buckets' destroy functions are called so that
330e5149d05dc4f5121b30964753167e43690afdrbb they can be more directly used when changing the type of a
9222dcffcfe8d92f94c85d4e857af7b63264c9dcrbb bucket in place. [Tony Finch]
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick *) Add generic support for reference-counting the resources used by
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick buckets, and alter the HEAP and MMAP buckets to use it. Change
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick the way buckets are initialised to support changing the type of
bfad8636cb9e52b309679a90dadc91b635ecfe2atrawick buckets in place, and use it when setting aside TRANSIENT buckets.
bfad8636cb9e52b309679a90dadc91b635ecfe2atrawick Change the implementation of TRANSIENT buckets so that it can be
bfad8636cb9e52b309679a90dadc91b635ecfe2atrawick mostly shared with IMMORTAL buckets, which are now implemented.
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick [Tony Finch]
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawickChanges with Apache 2.0a6
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick *) Add support to Apache and APR for dsos on OS/390. [Greg Ames]
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick *) Add a chunking filter to Apache. This brings us one step closer
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick to removing BUFF. [Ryan Bloom]
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick *) ap_add_filter now adds filters in a LIFO fashion. The first filter
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick added to the stack is the last filter to be called. [Ryan Bloom]
bb5c04f1ab6c2913d49b263e26302c748a1aa70btrawick *) Apache 2.0 has been completely documented using Scandoc. The
50e228f0b8429c27e411611f4863fafaba403b47wrowe docs can be generated by running 'make docs'. [Ryan Bloom]
50e228f0b8429c27e411611f4863fafaba403b47wrowe *) Add filtered I/O to Apache. This is based on bucket brigades,
50e228f0b8429c27e411611f4863fafaba403b47wrowe Currently the buckets still use BUFF under the covers, but that
50e228f0b8429c27e411611f4863fafaba403b47wrowe should change quickly. The only currently written filter is the
50e228f0b8429c27e411611f4863fafaba403b47wrowe core filter which just calls ap_bwrite. [The Apache Group]
7ba58e7e63da9a8b84f6160c476a0c9d639c81e9trawick *) APR locks on Unix: Let APR_LOCKALL locks work when APR isn't
7ba58e7e63da9a8b84f6160c476a0c9d639c81e9trawick built with thread support. [Jeff Trawick]
7ba58e7e63da9a8b84f6160c476a0c9d639c81e9trawick *) Abort configuration if --with-layout was specified and there's
7ba58e7e63da9a8b84f6160c476a0c9d639c81e9trawick no layout definition file. [Ken Coar]
0315d8e436a65aa1fd145ce0a84f6c0f21e304c0wrowe *) Add support for '--with-port=n' option to configure. [Ken Coar]
0315d8e436a65aa1fd145ce0a84f6c0f21e304c0wrowe *) Add support for extension methods for the Allow response header
6270ac7f45156afd9d798dc28f1c6e1d09e040c1rbb field, and an API routine for accessing r->allowed and the
6270ac7f45156afd9d798dc28f1c6e1d09e040c1rbb list of extension methods in a unified manner. [Ken Coar]
496dc24432cc5c9f95a627865879d4b83dca1055coar *) mod_cern_meta: fix broken file reading loop in scan_meta_file().
496dc24432cc5c9f95a627865879d4b83dca1055coar [Rob Simonson <simo@us.ibm.com>]
496dc24432cc5c9f95a627865879d4b83dca1055coar *) Get xlate builds working again. The apr renaming in 2.0a5 broke
5b5d90c6d3ffb9e28a62c6bc8e2cb60e4740f7f7coar APACHE_XLATE builds. [Jeff Trawick]
496dc24432cc5c9f95a627865879d4b83dca1055coar *) A configuration file parsing problem was fixed. When the
622f0f22cd52de0e9904b218defdeb3181e113f3trawick configuration file started with an IfModule/IfDefine container,
622f0f22cd52de0e9904b218defdeb3181e113f3trawick only the last statement in the container would be retained.
622f0f22cd52de0e9904b218defdeb3181e113f3trawick [Jeff Trawick]
622f0f22cd52de0e9904b218defdeb3181e113f3trawickChanges with Apache 2.0a5
e83476358ef015a1959284421fdc25ab18a7aa02rbb *) Perchild is serving pages after passing them to different child
7b4c4bb891261e613de39a021d7554fd08132fc5rbb processes. There are still a lot of bugs, but this does work. I
7b4c4bb891261e613de39a021d7554fd08132fc5rbb have made requests against the same installation of Apache, and had
7b4c4bb891261e613de39a021d7554fd08132fc5rbb different servers use different user IDs to serve the responses.
7b4c4bb891261e613de39a021d7554fd08132fc5rbb This change moves to using socketpair instead of an AF_UNIX socket.
7b4c4bb891261e613de39a021d7554fd08132fc5rbb [Ryan Bloom]
4c6731b2f737f8d7fcacd44b97d9e6bab745f1a5rbb *) Perchild MPM still doesn't work perfectly, but it is serving pages.
4c6731b2f737f8d7fcacd44b97d9e6bab745f1a5rbb It can't seem to pass between child processes yet, but I think we
4c6731b2f737f8d7fcacd44b97d9e6bab745f1a5rbb are closer now than before. This moves us back to using Unix
0917cf91e713579b7ee0b03e499a08d7c3ec2d88rbb Domain Sockets. [Ryan Bloom]
0917cf91e713579b7ee0b03e499a08d7c3ec2d88rbb *) libapr functions and types renamed with apr_ prefix.
251b60354534e12b004603ecf2a83f32756dc885rbb *) Fix problems with APR sockaddr handling on Win32. It didn't always
251b60354534e12b004603ecf2a83f32756dc885rbb return the right information on the local socket address.
251b60354534e12b004603ecf2a83f32756dc885rbb [Gregory Nicholls <gnicholls@level8.com>]
251b60354534e12b004603ecf2a83f32756dc885rbb *) ap_recv() on Win32: Set bytes-read to 0 on error.
251b60354534e12b004603ecf2a83f32756dc885rbb [Gregory Nicholls <gnicholls@level8.com>]
251b60354534e12b004603ecf2a83f32756dc885rbb *) Add an option to not detach from the controlling terminal without
12348d5b520522b6581d907ef9c1ceda029fbc05rbb going into single process mode. This allows for much easier
22d41dd622ae45958da09d4afd1163fd1923f7ddjwoolley debugging of the process startup code. [Ryan Bloom]
12348d5b520522b6581d907ef9c1ceda029fbc05rbb *) ab: don't use perror() to report the failure of an APR function.
12348d5b520522b6581d907ef9c1ceda029fbc05rbb [Jeff Trawick]
f8b7801ea5717ef22cc0d02bffacfd5f9e48f898gregames *) Make dexter, mpmt_pthread, and perchild MPMs not destroy the
d65b067e7797b56d6678b0ddcd0aa9258cd55e64trawick scoreboard on graceful restarts.
d65b067e7797b56d6678b0ddcd0aa9258cd55e64trawick [Ryan Bloom]
416713f4130a31ae7317885c4638b3753c40a5e9jwoolley *) Fix segfault/SIGSEGV when running gzip from mod_mime_magic.c.
416713f4130a31ae7317885c4638b3753c40a5e9jwoolley An invalid ap_proc_t was passed to ap_create_process().
f947ecf8a772cbfcce0315feb68ad88e84299ad0trawick [Jeff Trawick]
f947ecf8a772cbfcce0315feb68ad88e84299ad0trawick *) Allow modules to register filters. Those filters are still
f947ecf8a772cbfcce0315feb68ad88e84299ad0trawick never called, but this is a step in the right direction.
82efd02118af953c3840478fa5e979a4194a579fwrowe [Ryan Bloom and Greg Stein]
82efd02118af953c3840478fa5e979a4194a579fwrowe *) Register the mod_cgid daemon process for cleanup so that it is
82efd02118af953c3840478fa5e979a4194a579fwrowe killed at termination if it does not die when the parent gets
82efd02118af953c3840478fa5e979a4194a579fwrowe SIGTERM. This change is to fix occasional problems where the
82efd02118af953c3840478fa5e979a4194a579fwrowe process stays around. Bugs in similar logic in mod_rewrite and
82efd02118af953c3840478fa5e979a4194a579fwrowe mod_include were also fixed. [Jeff Trawick]
82efd02118af953c3840478fa5e979a4194a579fwrowe *) Fix a bug in the time handling. Basically, we were imploding a time
82efd02118af953c3840478fa5e979a4194a579fwrowe in ap_parseHTTPdate, but it had bogus data in the exploded time format.
82efd02118af953c3840478fa5e979a4194a579fwrowe Namely, tm_usec and tm_gmtoff were not filled out. ap_implode_time
82efd02118af953c3840478fa5e979a4194a579fwrowe uses those two fields to adjust the time value. Because of the HTTP
82efd02118af953c3840478fa5e979a4194a579fwrowe spec, both of those values can be zero'ed out safely. This fixes
82efd02118af953c3840478fa5e979a4194a579fwrowe the bug correctly. [Ryan Bloom]
ff2fef0d709ee06646b3462cd3ef39648a54c7f7jwoolley *) Fix a couple of place in the Windows code where the wrong error
ff2fef0d709ee06646b3462cd3ef39648a54c7f7jwoolley code was being returned. [Gregory Nicholls <gnicholls@level8.com>]
416713f4130a31ae7317885c4638b3753c40a5e9jwoolley *) Fix POOL_DEBUG (at least for prefork mpm). [Dean Gaudet]
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe *) Added the APR_EOL_STR macro for platform dependent differences in
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe logfiles and other raw text (such as all APR files). Fixes logfiles
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe not terminated with cr/lf sequences in Win32. [William Rowe]
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe *) Move all strings functions in APR to src/lib/apr/strings and create
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe apr_strings.h for the prototypes. [Ryan Bloom]
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe *) APR lock fixes: when using SysV sems, flock(), or fcntl(), be sure
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe to repeat the syscall until we stop getting EINTR. I noticed a
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe related problem at termination (SIGTERM) on FreeBSD when using
416713f4130a31ae7317885c4638b3753c40a5e9jwoolley fcntl(). Apache 1.3 had these new loops too. Also, make the flock()
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe implementation work properly with child init. Previously, ap_lock()
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe was essentially a no-op because all children were using different
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe locks and thus nobody ever blocked. [Jeff Trawick]
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe *) The htdocs/ tree has been moved out of the CVS source tree into
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe a separate area for easier development. This has NO EFFECT on
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe end-users or Apache installations. [Ken Coar]
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe *) Integrate the mod_dav module for WebDAV protocol handling. This
77e04697cbdb146d93cd22ad9f1c5e74ef8f9cbcwrowe adds the dav and dav_fs modules, the SDBM library, and additional
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe XML handling utilities. [Greg Stein]
731c41a39b8273a6c4b8b87b6fd0ba5c7f3f9e2bwrowe *) Clean out obsolete names (from httpd.h) for the HTTP Status Codes
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe [Greg Stein]
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe *) Update the lib/expat-lite/ library (bring forward changes from
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe the Apache 1.3 repository). [Greg Stein]
731c41a39b8273a6c4b8b87b6fd0ba5c7f3f9e2bwrowe *) If sizeof(long long) == sizeof(long), then prefer long in APR
cd32ea298a494089c6886c8de0e8ad13ddc7ee6cwrowe configure.in. [Dave Hill <ddhill@zk3.dec.com>]
cd32ea298a494089c6886c8de0e8ad13ddc7ee6cwrowe *) Add ap_sendfile for Tru64 Unix. Also, add an error message for
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe machines where sendfile is detected, but nobody has written ap_sendfile.
dc96a5e6f9af3c514df4c61ab9468fcf97f9846fwrowe [Dave Hill <ddhill@zk3.dec.com>]
af2bf35f47aaa3f1a3b1fe8336b9d20efad5b7e9gregames *) Compile fixes in mod_mmap_static. [Victor J. Orlikowski]
af2bf35f47aaa3f1a3b1fe8336b9d20efad5b7e9gregames *) ab would start up more connections than needed, then quit when the
af2bf35f47aaa3f1a3b1fe8336b9d20efad5b7e9gregames desired number were finished. Also fixed a logic error involving
e49758465fbf67f29f9aeda996d09f7cc6fa9fe5rbb ab keepalives. [Victor J. Orlikowski]
e49758465fbf67f29f9aeda996d09f7cc6fa9fe5rbb *) WinNT: Implement non-blocking pipes with timeouts to communicate
e49758465fbf67f29f9aeda996d09f7cc6fa9fe5rbb with CGIs. Apache 2.0a4 had non-blocking pipes but without
e49758465fbf67f29f9aeda996d09f7cc6fa9fe5rbb timeouts (i.e, if a timeout was specified, the pipe reverted to
81e5d74ef38fbf76853e1fbdd95c117e130e473frbb a full blocking pipe). Now the behaviour is more in line with
81e5d74ef38fbf76853e1fbdd95c117e130e473frbb Unix non-blocking pipes.
81e5d74ef38fbf76853e1fbdd95c117e130e473frbb [Bill Stoddard]
81e5d74ef38fbf76853e1fbdd95c117e130e473frbb *) WinNT: Implement accept socket reuse. Using mod_file_cache to
81e5d74ef38fbf76853e1fbdd95c117e130e473frbb cache open file handles along with accept socket reuse enables
62db15de4c1f335a64d45821796ae197cff94ef8rbb Apache 2.0 to serve non-keepalive requests for static files at
62db15de4c1f335a64d45821796ae197cff94ef8rbb 3x the rate of Apache 1.3.(e.g, Apache 1.3 will serve 400 rps
62db15de4c1f335a64d45821796ae197cff94ef8rbb and Apache 2.0 will serve almost 1200 rps on my system).
62db15de4c1f335a64d45821796ae197cff94ef8rbb [Bill Stoddard]
62db15de4c1f335a64d45821796ae197cff94ef8rbb *) Merge mod_mmap_static function into mod_file_cache. mod_file_cache
62db15de4c1f335a64d45821796ae197cff94ef8rbb supports two config directives, mmapfile (same behavious as
f2e16ea0697f128c32da623a0b2b9d0f81c5ebcawrowe mod_mmap_static) and cachefile. Use the cachefile directive
f2e16ea0697f128c32da623a0b2b9d0f81c5ebcawrowe to cache open file handles. This directive only works on systems
f2e16ea0697f128c32da623a0b2b9d0f81c5ebcawrowe that have implemented the ap_sendfile API. cachefile works today
3463e3fe80229b9cded9130e8bd13e961ad2ad2cwrowe on Windows NT, but has not been tested on any flavors of Unix.
3463e3fe80229b9cded9130e8bd13e961ad2ad2cwrowe [Bill Stoddard]
3463e3fe80229b9cded9130e8bd13e961ad2ad2cwrowe *) Cleanup the configuration. With the last few changes the
7ff254655b6cb0516fa27409470a98554bbec706wrowe configuration process automatically:
f8b7801ea5717ef22cc0d02bffacfd5f9e48f898gregames inherits information about how to build from APR. Allowing
f8b7801ea5717ef22cc0d02bffacfd5f9e48f898gregames APR to inform Apache that it should or should not use -ldl
f8b7801ea5717ef22cc0d02bffacfd5f9e48f898gregames Detects which mod_cgi should be used mod_cgi or mod_cgid,
f8b7801ea5717ef22cc0d02bffacfd5f9e48f898gregames based on the threading model
eccae8f28bd9fcf6a2d1f29548f7c3b8e297c712wrowe Apache calls APR's configure process before finishing it's
b1627fe7e2cb3809dcdfdf1fcbbb6dbccaf788c6rbb configuration processing, allowing for more information flow
b1627fe7e2cb3809dcdfdf1fcbbb6dbccaf788c6rbb between the two.
b1627fe7e2cb3809dcdfdf1fcbbb6dbccaf788c6rbb [Ryan Bloom]
eccae8f28bd9fcf6a2d1f29548f7c3b8e297c712wrowe *) Change Unix and Win32 ap_setsockopt() so that APR_SO_NONBLOCK
eccae8f28bd9fcf6a2d1f29548f7c3b8e297c712wrowe with non-zero argument makes the socket non-blocking. BeOS and
eccae8f28bd9fcf6a2d1f29548f7c3b8e297c712wrowe OS/2 already worked this way. [Jeff Trawick]
4e136881902ae5dfba3c59a23db7aa09345cea3awrowe *) ap_close() now calls ap_flush() for buffered files, so write
06c2a9f9fcea4b8a21d6b7ffdd50c7a40edf10ffgregames operations work a whole lot better on buffered files.
06c2a9f9fcea4b8a21d6b7ffdd50c7a40edf10ffgregames [Jeff Trawick]
06c2a9f9fcea4b8a21d6b7ffdd50c7a40edf10ffgregames *) Fix error messages issued from MPMs which explain where to change
263dbbd9c2a6952e756973b3dde9beeaf8eff6b7gregames compiled-in limits (e.g., ThreadsPerChild, MaxClients, StartTreads).
6529086e53a38486d6cf0eac256b96548b6ef299wrowe [Greg Ames]
6529086e53a38486d6cf0eac256b96548b6ef299wrowe *) ap_create_pipe() now leaves pipes in blocking state. (This helps
6529086e53a38486d6cf0eac256b96548b6ef299wrowe reduce the number of syscalls on Unix.) ap_set_pipe_timeout() is
6529086e53a38486d6cf0eac256b96548b6ef299wrowe now the way that the blocking state of a pipe is manipulated.
6529086e53a38486d6cf0eac256b96548b6ef299wrowe ap_block_pipe() is gone. [Jeff Trawick]
6529086e53a38486d6cf0eac256b96548b6ef299wrowe *) Correct the problem where the only local host name that the IP stack
6529086e53a38486d6cf0eac256b96548b6ef299wrowe can discover are 'undotted' private names. If no fully qualified
6529086e53a38486d6cf0eac256b96548b6ef299wrowe domain name can be identified, the default ServerName will be set to
9876642ec8126175f143702d7b949643f8128fdftrawick the machine's IP address string. A warning is always provided if the
9876642ec8126175f143702d7b949643f8128fdftrawick ServerName not specified, but assumed. Solves PR6215 [William Rowe]
263dbbd9c2a6952e756973b3dde9beeaf8eff6b7gregames *) Repair problems with config file processing which caused segfault
263dbbd9c2a6952e756973b3dde9beeaf8eff6b7gregames at init when virtual hosts were defined and which caused ServerName to
263dbbd9c2a6952e756973b3dde9beeaf8eff6b7gregames be ignored when there was no valid DNS setup. [Jeff Trawick]
0f2ac39337f7543f197db8b040f596123167eb2dstoddard *) Removed pointless ap_is_aborted macro function. [Roy Fielding]
0f2ac39337f7543f197db8b040f596123167eb2dstoddard *) Add ap_sendfile implementation for AIX
0f2ac39337f7543f197db8b040f596123167eb2dstoddard [Victor J. Orlikowski]
0f2ac39337f7543f197db8b040f596123167eb2dstoddard *) Repair C++ compatibility in ap_config.h, apr_file_io.h,
5183e10e45a86e2dd1112a4d71c24db3facbbc9agregames [Tyler J. Brooks <tylerjbrooks@home.com>, Jeff Trawick]
0f2ac39337f7543f197db8b040f596123167eb2dstoddard *) Bring the allocation and pool debugging code back into a working
4ff47e3535a6da266acc3f0cf743046dbf16a856rbb state. This will need to be tested as so far it's only been used on
afab3e893c3fecabf2e3cac4e37ada58db984cearbb BeOS. [David Reid]
afab3e893c3fecabf2e3cac4e37ada58db984cearbb *) Change configuration command setup to be properly typesafe when in
afab3e893c3fecabf2e3cac4e37ada58db984cearbb maintainer mode. Note that this requires a compiler that can initialise
612ea048caf897cb6e69dc296d2b143a08ba83a0rbb unions. [Ben Laurie]
612ea048caf897cb6e69dc296d2b143a08ba83a0rbb *) Turn on buffering for config file reads. Part of this was to
612ea048caf897cb6e69dc296d2b143a08ba83a0rbb repair buffered I/O support in Unix and implement buffered
612ea048caf897cb6e69dc296d2b143a08ba83a0rbb ap_fgets() for all platforms. [Brian Havard, Jeff Trawick]
67e81f5f6ddfe2e3d1f1208a04b8ccd368c658farbb *) Win32: Fix problem where UTC offset was not being set correctly
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard in the access log. Problem reported on news group by Jerry Baker.
6529086e53a38486d6cf0eac256b96548b6ef299wrowe [Bill Stoddard]
6529086e53a38486d6cf0eac256b96548b6ef299wrowe *) Fix segfault when reporting this type of syntax error:
6529086e53a38486d6cf0eac256b96548b6ef299wrowe "</container> without matching <container> section", where
30309f86bfd564437654aa822a19cd0cb29ca6f8wrowe container is VirtualHost or Directory or whatever.
30309f86bfd564437654aa822a19cd0cb29ca6f8wrowe [Jeff Trawick]
30309f86bfd564437654aa822a19cd0cb29ca6f8wrowe *) Prevent the source code for CGIs from being revealed when using
30309f86bfd564437654aa822a19cd0cb29ca6f8wrowe mod_vhost_alias and the CGI directory is under the document root
65db4f712167a3498de73cee5c08032a8aa6a010rbb and a user makes a request like http://www.example.com//cgi-bin/cgi
65db4f712167a3498de73cee5c08032a8aa6a010rbb as reported in <news:960999105.344321@ernani.logica.co.uk>
65db4f712167a3498de73cee5c08032a8aa6a010rbb [Tony Finch]
65db4f712167a3498de73cee5c08032a8aa6a010rbb *) Add support for the new Beos NetwOrking Environment (BONE)
ed4f9ec869d7fc5bd220c8d70ee58eed9b32d60arederpj [David Reid]
ed4f9ec869d7fc5bd220c8d70ee58eed9b32d60arederpj *) xlate: ap_xlate_conv_buffer() now tells the caller when the
ed4f9ec869d7fc5bd220c8d70ee58eed9b32d60arederpj final input char is incomplete; ap_bwrite_xlate() now handles
ed4f9ec869d7fc5bd220c8d70ee58eed9b32d60arederpj incomplete final input chars. [Jeff Trawick]
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard *) Yet another update to saferead/halfduplex stuff -- need to ensure
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard that a bhalfduplex call occurs before logging or else DNS and
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard such can delay the last packet of the response. [Dean Gaudet]
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard *) Some syscall reduction in APR on unix -- don't seek when setting
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard up an mmap; and don't fcntl() more than once per socket.
c8af62b87a118cbbc25414eb9459219f338b1b0fstoddard [Dean Gaudet]
c981632de03d61667b7a6dda3e1f0a80fd5973b1gregames *) When mod_cgid is started as root, the cgi daemon now switches
c981632de03d61667b7a6dda3e1f0a80fd5973b1gregames to the configured User/Group (like other httpd processes)
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick instead of continuing as root. [Jeff Trawick]
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick *) The prefork MPM now uses an APR lock for the accept() mutex.
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick It has not been getting a lock at all recently. httpd -V now
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick displays APR's selection of the lock mechanism instead of the
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick symbols previously respected by prefork. [Jeff Trawick]
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick *) Change the mmap() feature test to check only for existence.
8f43c3299e44dc11a4cd68acc93b578a0318daaftrawick The previous check required features not used by Apache.
688f7d0bc138bb02f92288017920468e7e314f23stoddard [Greg Ames]
688f7d0bc138bb02f92288017920468e7e314f23stoddard *) Fix a couple of bugs in mod_cgid: The cgi arguments were
688f7d0bc138bb02f92288017920468e7e314f23stoddard sometimes mangled. The len parm to accept() was not
688f7d0bc138bb02f92288017920468e7e314f23stoddard initialized, leading sometimes to an endless loop of failed
688f7d0bc138bb02f92288017920468e7e314f23stoddard accept() calls on OS/390 and anywhere else that failed the call
448a83963e3ec557bc9f9020ab44f9681595d1eerbb if the len was negative. Use <sys/un.h> for struct sockaddr_un
3b8937baf1826c625c1ca90d220453a5e4b499edrbb instead of declaring it ourselves to fix a compilation problem
3b8937baf1826c625c1ca90d220453a5e4b499edrbb on Solaris. [Jeff Trawick]
3b8937baf1826c625c1ca90d220453a5e4b499edrbb *) Add Resource limiting code back into Apache 2.0. [Ryan Bloom]
9180a5933673ffb1af633c255ceee029340f3b1erbb *) Fix zombie process problem with mod_cgi. [Jeff Trawick]
e654452796751e21828a4078767e075eccf3b232stoddard *) Port mod_mmap_static to 2.0. Make it go faster. [Greg Ames]
e654452796751e21828a4078767e075eccf3b232stoddard *) Fix storage overlay when loading dsos. Symptom: Apache dies at
e654452796751e21828a4078767e075eccf3b232stoddard initialization if ALLOC_DEBUG is defined; no known symptom
e654452796751e21828a4078767e075eccf3b232stoddard otherwise. [Jeff Trawick]
4670899d8a45ac6add3105181adf1976a1fae109stoddard *) Fix typo in configure script when checking for mod_so. bash
4670899d8a45ac6add3105181adf1976a1fae109stoddard doesn't seem to have a problem but /bin/sh on Solaris does.
85986096003221e8eb135ad1fda59a57c3d0528brbb Symptom: "./configure: test: unknown operator =="
cf293fe6e2515d89788ec515ce6266ad6f13a724stoddard [Jeff Trawick]
f91cd1fc44d2588d82a56570b1005e7310dfc970jwoolley *) Rebind the Win32 NT and 9x services control into the MPM.
f91cd1fc44d2588d82a56570b1005e7310dfc970jwoolley All console, WinNT SCM and Win9x pseudo-service control code is
f91cd1fc44d2588d82a56570b1005e7310dfc970jwoolley now wrapped within the WinNT MPM.
cbed27f4c149736a6319a790c81aa8acc491fa18jwoolley [William Rowe]
f91cd1fc44d2588d82a56570b1005e7310dfc970jwoolley *) Make a copy of getenv("PATH") before storing for later use. Some
8ff9257331986cb3646442ab61703fcc02158046trawick getenv() implementations use the same storage for successive calls.
7537a55be7520037878a521d4ec8c8eb2d44a288rbb CGIs on OS/390 had a bad PATH due to this. [Jeff Trawick]
7537a55be7520037878a521d4ec8c8eb2d44a288rbb *) Server Tokens work in 2.0 again. This also propogates the change
7537a55be7520037878a521d4ec8c8eb2d44a288rbb to allow just the product name in the server string using
7537a55be7520037878a521d4ec8c8eb2d44a288rbb PRODUCT_ONLY.
7537a55be7520037878a521d4ec8c8eb2d44a288rbb [Ryan Bloom]
7537a55be7520037878a521d4ec8c8eb2d44a288rbbChanges with Apache 2.0a4
7537a55be7520037878a521d4ec8c8eb2d44a288rbb *) EBCDIC: Rearrange calls to ap_checkconv() so that most handlers
7537a55be7520037878a521d4ec8c8eb2d44a288rbb won't need to call it. [Greg Ames, Jeff Trawick]
de0fbde2191d651a2dd0296e0fd4c449fa9f1d39wrowe *) Move pre_config hook call to between configuration read and config
de0fbde2191d651a2dd0296e0fd4c449fa9f1d39wrowe tree walk. This allows all modules to implement pre_config hooks
de0fbde2191d651a2dd0296e0fd4c449fa9f1d39wrowe and know that they will be called at an appropriate time.
de0fbde2191d651a2dd0296e0fd4c449fa9f1d39wrowe [Ryan Bloom]
01f404bacecbd1354af8f04c23a28acef5044e73jwoolley *) mod_cgi, mod_cgid: Make ScriptLog directive work again.
01f404bacecbd1354af8f04c23a28acef5044e73jwoolley [Jeff Trawick]
54f7f1c85247dad29d8fa275866cea31d465b392stoddard *) Add pre-config hooks back to all modules.
54f7f1c85247dad29d8fa275866cea31d465b392stoddard [Ryan Bloom]
54f7f1c85247dad29d8fa275866cea31d465b392stoddard *) Fix a SIGSEGV in ap_md5digest(), which is used when you have
01f404bacecbd1354af8f04c23a28acef5044e73jwoolley ContentDigest enabled and we can't/don't mmap the file.
54f7f1c85247dad29d8fa275866cea31d465b392stoddard [Jeff Trawick]
3af8fbdd62c9495c8f879eef1eb952a638a18a7adougm *) We now report the correct line number for syntax errors in config
e14ec68ef48bbf6c3dc567900f9e087eaf0bc931trawick files. [Ryan Bloom, Greg Stein, Jeff Trawick]
e14ec68ef48bbf6c3dc567900f9e087eaf0bc931trawick *) Brought mod_auth_digest up to synch with 1.3, fixed ap_time_t-
e14ec68ef48bbf6c3dc567900f9e087eaf0bc931trawick related bugs, and changed shmem/locking to use apr API. Shared-mem
227e0bfd39e7c757d3618c8ada78d80cd1143d32wrowe is currently disabled, however, because of problems with graceful
227e0bfd39e7c757d3618c8ada78d80cd1143d32wrowe restarts. [Ronald Tschal�r]
227e0bfd39e7c757d3618c8ada78d80cd1143d32wrowe *) Fix corruption of IFS variable in --with-module= handling.
8ff9257331986cb3646442ab61703fcc02158046trawick Depending on the user's shell or customization thereof, there
8ff9257331986cb3646442ab61703fcc02158046trawick would be errors generating ap_config_auto.h later in the configure
8ff9257331986cb3646442ab61703fcc02158046trawick procedure. [Jeff Trawick]
8ff9257331986cb3646442ab61703fcc02158046trawick *) mod_cgi: Restore logging of stderr from child process when ScriptLog
d9b416f8cfaaadcbc739cd8c7c356e76efdd3a2agregames isn't used (as in 1.3), except that on Unix it is now logged via
d9b416f8cfaaadcbc739cd8c7c356e76efdd3a2agregames ap_log_rerror() instead of by the child having STDERR_FILENO refer
d9b416f8cfaaadcbc739cd8c7c356e76efdd3a2agregames to the error log. [Greg Ames, Jeff Trawick]
d9b416f8cfaaadcbc739cd8c7c356e76efdd3a2agregames *) Add '-D' argument processing for run time configuration defines.
4192c91889a84b18aec0b046a94a2b2863be204cstoddard [William Rowe]
4192c91889a84b18aec0b046a94a2b2863be204cstoddard *) Organize http_main.c as independent code, such that no code or
4192c91889a84b18aec0b046a94a2b2863be204cstoddard global data is exported from it. WIN32 will dynamically link it
4192c91889a84b18aec0b046a94a2b2863be204cstoddard to the server core, so this will prevent mutual dependency.
4192c91889a84b18aec0b046a94a2b2863be204cstoddard [William Rowe]
7af2fcad9e14a79d7020a33766fbd3a4dfd088dcorlikowski *) Add separate dynamic linkage tags APR_EXPORT(), APR_EXPORT_NONSTD()
7af2fcad9e14a79d7020a33766fbd3a4dfd088dcorlikowski and APR_VAR_EXPORT to correctly resolve apr functions and globals.
7af2fcad9e14a79d7020a33766fbd3a4dfd088dcorlikowski [William Rowe]
7cc9511b8f1fff69439041327dc55e3423ccf439stoddard *) Add Win9x service execution and Ctrl+C/Ctrl+Break/Shutdown handlers.
7cc9511b8f1fff69439041327dc55e3423ccf439stoddard [William Rowe, Jan Just Keijser <KEIJSERJJ@logica.com>]
b9d82dd4bc49204d9c2c5523e36b3109da298c04wrowe *) Add mod_charset_lite for configuring character set translation.
b9d82dd4bc49204d9c2c5523e36b3109da298c04wrowe [Jeff Trawick]
141c0f61e9a56fbf31abeb85d541949717128bf7orlikowski *) Add '-n' option to htpasswd to make it print its user:pw record
1ccb67ea7d1f2a3747d285835fd0ce0d123b66b2orlikowski on stdout rather than having to frob a text file. [Ken Coar]
a7318397b355119d990d1f311b951dea2aafc53arbb *) Fix saferead. Basically, we flush the output buffer if a read on the
a7318397b355119d990d1f311b951dea2aafc53arbb input will block.
a7318397b355119d990d1f311b951dea2aafc53arbb [Ryan Bloom]
a7318397b355119d990d1f311b951dea2aafc53arbb *) APR: Add ap_xlate_get_sb() so that an app can find out whether or not
a7318397b355119d990d1f311b951dea2aafc53arbb a conversion is single-byte only. [Jeff Trawick]
3f4d7fdb598d64d80ab8656852276246f2f3b502rbb *) BEOS: ap_shutdown should return APR_SUCCESS or errno. Note that
3f4d7fdb598d64d80ab8656852276246f2f3b502rbb the BeOS 5.0 documentation says that shutdown doesn't work yet.
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard [Roy Fielding]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Fix some minor errors where pid was being manipulated as an int
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard instead of the portable pid_t. [Roy Fielding]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Fix some error log prints that were printing the pointer to a
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard structure rather than the pid within the structure.
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard [Jeff Trawick, Roy Fielding]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) ab: Fix a command-line processing bug; track bad headers in
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard err_response; support reading headers up to 2K.
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard [Ask Bjoern Hansen <ask@valueclick.com>]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Fix ap_resolve_env() so that it handles new function added in a prior
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard alpha (see "Added the capability to do ${ENVVAR} constructs in the
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard config file.") as well as the constructs used by mod_rewrite.
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard [Paul Reder <rederpj@raleigh.ibm.com>]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Apache 2.0 builds and runs on OS/390. [Jeff Trawick, Greg Ames]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Change the EBCDIC support in functions for MD5, SHA1, and base 64 to use
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard APR to perform translation, instead of accessing the hard-coded tables
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard in 1.3's ebcdic.c. [Jeff Trawick]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Fix some bugs (mostly lost 1.3 code) in ab's command-line processing.
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard [Jeff Trawick]
fd709745f1226d683c57ad9bbcdd05971d214d0cstoddard *) Add the ability to hook into the config file reading phase. Basically
0530cd68803616cfba0456038f2e679d41ebecb1minfrin if a directive is specified EXEC_ON_READ, then when that directive is
55069cedbbaf2768c1f317c80129c6f869890fb9rbb read from the config file, the assocaited function is executed. This
55069cedbbaf2768c1f317c80129c6f869890fb9rbb should only be used for those directives that must muck with HOW the
55069cedbbaf2768c1f317c80129c6f869890fb9rbb server INTERPRETS the config. This should not be used for directives
55069cedbbaf2768c1f317c80129c6f869890fb9rbb that re-order or replace items in the config tree. Those changes should
6206099ac06c8fcc8c342e993e5d47d3dfb95d8dminfrin be made in the pre-config step.
6206099ac06c8fcc8c342e993e5d47d3dfb95d8dminfrin [Ryan Bloom]
0530cd68803616cfba0456038f2e679d41ebecb1minfrin *) Add mod_example to the build system.
0530cd68803616cfba0456038f2e679d41ebecb1minfrin [Tony Finch]
b9d75184a83c325dc6cdf5488b0b1a4adec27506stoddard *) APR: Add ap_xlate_conv_byte() to convert one char between single-
b9d75184a83c325dc6cdf5488b0b1a4adec27506stoddard byte character sets. [Jeff Trawick]
b9d75184a83c325dc6cdf5488b0b1a4adec27506stoddard *) Pick up various EBCDIC fixes from 1.3 (from Martin
ba4c566c200c2436dae841b7c811807c80cd712afielding Kraemer and Oliver Reh originally according to the change log).
2a7df37e1fa5276b519eb1f04827b96204ba8873trawick [Jeff Trawick]
2a7df37e1fa5276b519eb1f04827b96204ba8873trawick *) Fix a couple of problems in RFC1413 support (controlled by the
2a7df37e1fa5276b519eb1f04827b96204ba8873trawick IdentityCheck directive). Apache did not build the request string
864c5615d55b8ebbde24e72043f6325741335a74fielding properly and more importantly Apache would loop forever if the
864c5615d55b8ebbde24e72043f6325741335a74fielding would-be ident server dropped the connection before sending a
864c5615d55b8ebbde24e72043f6325741335a74fielding properly terminated response. [Jeff Trawick]
ff33056d9ea71f35e6fb3c17d53a18931be70a99minfrin *) apxs works in 2.0.
ff33056d9ea71f35e6fb3c17d53a18931be70a99minfrin [Ryan Bloom]
ea92d0ffcb30b186010a2c8ca2c80d2ac09e34dastoddard *) Reliable piped logs work in 2.0.
ba4c566c200c2436dae841b7c811807c80cd712afielding [Ryan Bloom]
ba4c566c200c2436dae841b7c811807c80cd712afielding *) Introduce a hash table implementation into APR to be used for
ba4c566c200c2436dae841b7c811807c80cd712afielding replacing tables and other random data structures in Apache.
82c7b60981923b89fb4ab4483d2aebcf206e9ee8trawick [Tony Finch]
342e2ae0f9ab3e3a56c2f37be6ec6c9c44f9ef48trawick *) Add some more error reporting to htpasswd in the case of problems
342e2ae0f9ab3e3a56c2f37be6ec6c9c44f9ef48trawick generating or accessing the temporary file. Also, pass in a
cb5d3f2f217d457dada4883addb1dc9f3f17bb85fielding buffer if the implementation knows how to use it (i.e., if L_tmpnam
cb5d3f2f217d457dada4883addb1dc9f3f17bb85fielding is defined). [Ken Coar]
82c7b60981923b89fb4ab4483d2aebcf206e9ee8trawick *) Configure creates config.nice now containing your configure
82c7b60981923b89fb4ab4483d2aebcf206e9ee8trawick options. Syntax: ./config.nice [--more-options]
82c7b60981923b89fb4ab4483d2aebcf206e9ee8trawick [Sascha Schumann]
82c7b60981923b89fb4ab4483d2aebcf206e9ee8trawick *) Fix various return code problems in APR on Win32. For most of
7c60e4e710c92b3c4a0eb831bc6dd65368c599bcstoddard these, APR was returning APR_EEXIST instead of GetLastError()/
7c60e4e710c92b3c4a0eb831bc6dd65368c599bcstoddard WSAGetLastError(). [Jeff Trawick]
7c60e4e710c92b3c4a0eb831bc6dd65368c599bcstoddard *) Make piped logs work again in version 2.0
7c60e4e710c92b3c4a0eb831bc6dd65368c599bcstoddard [Ryan Bloom]
0c7d8ecf301c2a3f99deff385bdda0c21ac60af5stoddard *) Add VPATH support to UNIX build system of Apache and APR.
0c7d8ecf301c2a3f99deff385bdda0c21ac60af5stoddard [Sascha Schumann]
0c7d8ecf301c2a3f99deff385bdda0c21ac60af5stoddard *) Fix ap_tokenize_to_argv to respect the const arguments that are
0c7d8ecf301c2a3f99deff385bdda0c21ac60af5stoddard passed to it.
0e161c3b556697af1dd88b719c05d3af239682d5dougm [Ryan Bloom]
01f61931c658183042469eb02fd3f61e4e643a6atrawick *) Fix mm's memcpy/memset macros, pointer arithmetic was broken.
aa616c3b5a4aa59867472cddf7d8e63693808f0erederpj Patch submitted to author.
aa616c3b5a4aa59867472cddf7d8e63693808f0erederpj [Sascha Schumann]
aa616c3b5a4aa59867472cddf7d8e63693808f0erederpj *) Fix mm configuration on Solaris 8 x86 and OS/390. Don't require
80e9324586de2fa55e2da4df409e6a85885ea659fielding /sbin in PATH on FreeBSD (all submitted to rse previously)
80e9324586de2fa55e2da4df409e6a85885ea659fielding [Jeff Trawick]
bacd210652b4559c2597f62e1d41ccbde92acdfafielding *) Fix building Pthread-based MPMs on OpenBSD
80e9324586de2fa55e2da4df409e6a85885ea659fielding [Sascha Schumann] PR#26
4682cf97ee2eca42a7222e0113ebacf5ef70c4efrbb *) Fix ap_readdir() problem on systems where d_name[] field in
4682cf97ee2eca42a7222e0113ebacf5ef70c4efrbb struct dirent is declared with only one byte. (This problem only
9f7fc4627b7d98f6f6955ad6cf0cec5a3e1c4debfielding affected multithreaded builds.) This caused a segfault during
9f7fc4627b7d98f6f6955ad6cf0cec5a3e1c4debfielding pool cleanup with mod_autoindex on Solaris (Solaris 8 x86, at
9f7fc4627b7d98f6f6955ad6cf0cec5a3e1c4debfielding least). [Jeff Trawick]
1702068419e130e99f021228659597c1ec658edcchuck *) Fix some make-portability problems on at least Tru64, Irix
1702068419e130e99f021228659597c1ec658edcchuck and UnixWare.
1702068419e130e99f021228659597c1ec658edcchuck [Sascha Schumann] PR#18, PR#39
01f61931c658183042469eb02fd3f61e4e643a6atrawick *) Add ap_sigwait() to support old-style sigwait() on systems
01f61931c658183042469eb02fd3f61e4e643a6atrawick like OS/390 and UnixWare.
01f61931c658183042469eb02fd3f61e4e643a6atrawick [Sascha Schumann]
7ae8bc63caa2292341a22235223ff1ed17ac02aestoddard *) Add POSIX-thread flags for more platforms.
7ae8bc63caa2292341a22235223ff1ed17ac02aestoddard [Sascha Schumann]
7ae8bc63caa2292341a22235223ff1ed17ac02aestoddard *) Fix some minor bugs in ap_strerror(). Teach ap_strerror()
7ae8bc63caa2292341a22235223ff1ed17ac02aestoddard (on Unix, at least) to handle resolver errors. Fix a bug in
a70c3ad07126101795f5a988e86c88a699b297cerederpj the definition of APR_ENOMEM so that ap_strerror() can spit
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbb out the correct error message for it.
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbb [Jeff Trawick]
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbbChanges with Apache 2.0a3
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbb *) mod_so reports ap_os_dso_error() if ap_dso_load() fails
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbb [Doug MacEachern]
23851fdc3ee2eac45ebb85f400a5d719656dfa22rbb *) API: *HOOK* macros now have an AP_ prefix
105475009f541187ba7a14a367547d9404c578befielding [Doug MacEachern]
105475009f541187ba7a14a367547d9404c578befielding *) Win32: Eliminate redundant calls to initialize winsock.
105475009f541187ba7a14a367547d9404c578befielding [Tim Costello <timcostello@ozemail.com.au>]
105475009f541187ba7a14a367547d9404c578befielding *) Fix bugs initializing ungetchar for pipes.
105475009f541187ba7a14a367547d9404c578befielding [Chia-liang Kao <clkao@CirX.ORG>]
b90c64e517df3fe1c97806830f84a30362187f0afielding *) The ab program in the src/support directory is now portable using
b90c64e517df3fe1c97806830f84a30362187f0afielding [Ryan Bloom]
6ff63662058d5891fc110f8b357a3604d7f7deb3trawick *) Support directory is being compiled when the server is built
6ff63662058d5891fc110f8b357a3604d7f7deb3trawick [Ryan Bloom]
c4be1ca9db22140f3788166f0195304e2fe4743bgregames *) The configure option --with-program-name has been added to allow
c4be1ca9db22140f3788166f0195304e2fe4743bgregames developers to rename the executable at configure time. This also
c4be1ca9db22140f3788166f0195304e2fe4743bgregames changes the name of the config files to match the executable's name.
8019a211b7453e80e6e22db6d41fe68dd7f8c4b8fielding [Ryan Bloom]
8019a211b7453e80e6e22db6d41fe68dd7f8c4b8fielding *) mod_autoindex: Add `IndexOptions +VersionSort', to nicely sort filenames
8019a211b7453e80e6e22db6d41fe68dd7f8c4b8fielding containing version numbers. [Martin Pool]
a70c3ad07126101795f5a988e86c88a699b297cerederpj *) ap_open(..,APR_OS_DEFAULT,..) uses perms 0666 instead of 0777 on
a70c3ad07126101795f5a988e86c88a699b297cerederpj Unix; access_log and error_log now created with these perms; non-
a70c3ad07126101795f5a988e86c88a699b297cerederpj Unix is unaffected [Jeff Trawick]
357b3c68d77f4187bf6be49c248b90ba50b98f4agregames *) Finished move of ap_md5 routines to apr_md5. Removed ap_md5.h.
a3a9ceac1bc30598c594c89e1382609496b7752brbb Replaced more magic numbers with MD5_DIGESTSIZE.
a3a9ceac1bc30598c594c89e1382609496b7752brbb [William Rowe, Roy Fielding]
a3a9ceac1bc30598c594c89e1382609496b7752brbb *) Win32: Get mod_auth_digest compiling and added to the Windows
a3a9ceac1bc30598c594c89e1382609496b7752brbb build environment. Not tested and I'd be suprised if it
25e17566bc9005778707317c8919c610513a4418stoddard actually works. [Bill Stoddard]
25e17566bc9005778707317c8919c610513a4418stoddard *) Revamp the Win32 make environment. Makefiles have been removed and
25e17566bc9005778707317c8919c610513a4418stoddard Apache.dsw created to bring together all the pieces. Create new file
25e17566bc9005778707317c8919c610513a4418stoddard os/win32/BaseAddr.ref to define module base addresses (to prevent
25e17566bc9005778707317c8919c610513a4418stoddard dll relocation at start-up).
25e17566bc9005778707317c8919c610513a4418stoddard [William Rowe, Greg Marr, Tim Costello, Bill Stoddard]
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb *) [EBCDIC] Port Paul Gilmartin's CRLF patch from 1.3. This replaces most
44ea927aaaa7c419de1c824beb01b26216f387c3dougm of the \015, \012, and \015\012 constants with macros.
44ea927aaaa7c419de1c824beb01b26216f387c3dougm [Greg Ames <gregames@us.ibm.com>]
a601a32cec653022741d22b5d692b6afd6c4dc55trawick *) Add ap_xlate_open() et al for translation of text between different
a601a32cec653022741d22b5d692b6afd6c4dc55trawick character sets. The initial implementation requires iconv().
a601a32cec653022741d22b5d692b6afd6c4dc55trawick [Jeff Trawick]
a601a32cec653022741d22b5d692b6afd6c4dc55trawick *) More FAQs and answers from comp.infosystems.www.servers.unix.
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb [Joshua Slive <slive@finance.commerce.ubc.ca>]
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb *) CGI output is being timed out now.
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb [Ryan Bloom]
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb *) Fix the problem with dieing quietly. dupfile now takes a pool which
73579c435f9f6c2670c4391114368a2eedaf8ebfrbb is used by the new apr file. There is no reason to create a new file
decf1efd1558ed0d2562e2f4f2dd741dcc0c392crbb with the same lifetime as the original file.
6202bc12656548c624a235bf43d6c866719b2b06rbb [Ryan Bloom]
6202bc12656548c624a235bf43d6c866719b2b06rbb *) Win32: Attempt to eliminate dll relocation at start-up by specifying
6202bc12656548c624a235bf43d6c866719b2b06rbb module base addresses. This will help shooting seg faults
6202bc12656548c624a235bf43d6c866719b2b06rbb in the field. [William Rowe <wrowe@lnd.com>]
6202bc12656548c624a235bf43d6c866719b2b06rbb *) Update Apache on Windows documentation. Add new document
bf6fc76bb2af745a68396e793d5d51a135a35f54rederpj describing how to compile Apache on Windows.
bf6fc76bb2af745a68396e793d5d51a135a35f54rederpj [William Rowe <wrowe@lnd.com>]
bf6fc76bb2af745a68396e793d5d51a135a35f54rederpj *) ap_set_pipe_timeout(), ap_poll(), and APR_SO_TIMEOUT now take
bf6fc76bb2af745a68396e793d5d51a135a35f54rederpj microseconds instead of seconds. Some storage leaks and other
bf6fc76bb2af745a68396e793d5d51a135a35f54rederpj minor bugs in related code were fixed. [Jeff Trawick]
4f110a6b1eb8b6a88a2a0c804cf699062f67f708rbb *) Win32: First cut at getting mod_isapi working under 2.0
4f110a6b1eb8b6a88a2a0c804cf699062f67f708rbb [William Rowe <wrowe@lnd.com>]
4f110a6b1eb8b6a88a2a0c804cf699062f67f708rbb *) First stab at getting mod_auth_digest working under 2.0
7aae0c3ef8e7f18f57e2712815c7b48358e5ff68rbb quick change summary:
7aae0c3ef8e7f18f57e2712815c7b48358e5ff68rbb - moved the random byte generation (ap_generate_random_bytes) into APR
7aae0c3ef8e7f18f57e2712815c7b48358e5ff68rbb - now uses ap_time_t
d353d275978f11f5221110e8f954d09d03ec5e3arbb - compiles and runs on linux
d353d275978f11f5221110e8f954d09d03ec5e3arbb - tested with amaya
d353d275978f11f5221110e8f954d09d03ec5e3arbb [Brian Martin <bmartin@penguincomputing.com>]
20fb0ba160cf0ca91b3f0f0d552cbe60d92b0449fielding *) Win32: Move the space stripping of physical service names
20fb0ba160cf0ca91b3f0f0d552cbe60d92b0449fielding fix up from Apache 1.3. #include'ing "ap_mpm.h" fixes up an
20fb0ba160cf0ca91b3f0f0d552cbe60d92b0449fielding unresolved symbol. Add dependency checking to the
66f62d70d05d9011c6ac59d5cd10a24e452fa1b3rbb CreateService call to ensure TCPIP and AFP (winsock) is started
66f62d70d05d9011c6ac59d5cd10a24e452fa1b3rbb before Apache.
66f62d70d05d9011c6ac59d5cd10a24e452fa1b3rbb [William Rowe <wrowe@lnd.com>]
9832ee60b23ca2a3faa403bbe88720815969a9fefielding *) Win32: Add code to perform latebinding on functions that may
9832ee60b23ca2a3faa403bbe88720815969a9fefielding not exist on all levels of Windows where Apache runs. This
9832ee60b23ca2a3faa403bbe88720815969a9fefielding is needed to allow Apache to start-up on Win95/98. All calls
dd6d55810261b3c26c4a2ec2e089c031beb1d44dgregames to non portable functions should be protected with
dd6d55810261b3c26c4a2ec2e089c031beb1d44dgregames ap_oslevel checks to prevent runtime segfaults.
dd6d55810261b3c26c4a2ec2e089c031beb1d44dgregames [William Rowe <wrowe@lnd.com>]
ee25ccdf4aa79a7a7f2dfc13fc118f0a343422fcwrowe *) Fix fallback default values for SHM_R and SHM_W [Martin Kraemer]
ee25ccdf4aa79a7a7f2dfc13fc118f0a343422fcwrowe *) Get lingering_close() working again. [Dean Gaudet, Jeff Trawick]
90a8cab05f4d949dd1317df7e19a2f787c46a5f6rbb *) Win32: Get non-blocking CGI pipe reads working under Windows NT.
90a8cab05f4d949dd1317df7e19a2f787c46a5f6rbb This addresses PR 1623. Still need to address timing out runaway
6c3ee5153fd311a5fc6dd718dcc704487ac7d2a3rbb CGI scripts. [Bill Stoddard]
6c3ee5153fd311a5fc6dd718dcc704487ac7d2a3rbb *) Win32: Make ap_stat Windows 95/98 friendly
6c3ee5153fd311a5fc6dd718dcc704487ac7d2a3rbb [William Rowe <wrowe@lnd.com>]
6c3ee5153fd311a5fc6dd718dcc704487ac7d2a3rbb *) Win32: Fix a bug in ap_get_oslevel which causes GetVersionEx() to
6c3ee5153fd311a5fc6dd718dcc704487ac7d2a3rbb always fail. Need to initialise the dwOSVersionInfoSize member of the
da3e32612f06d3082e41ba709919c996c89b8c06rederpj OSVERSIONINFO struct before calling GetVersionEx, so GetVersionEx
da3e32612f06d3082e41ba709919c996c89b8c06rederpj always fails.
da3e32612f06d3082e41ba709919c996c89b8c06rederpj The patch also enhances ap_get_oslevel (and the associated enum) to
da3e32612f06d3082e41ba709919c996c89b8c06rederpj handle selected service packs for NT4, and adds recognition for
da3e32612f06d3082e41ba709919c996c89b8c06rederpj Windows 2000. This is useful, eg. if we can recognise NT4 SP2 then
da3e32612f06d3082e41ba709919c996c89b8c06rederpj we can use ReadFileScatter and WriteFileGather in readwrite.c.
da3e32612f06d3082e41ba709919c996c89b8c06rederpj [Tim Costello <Tim.Costello@BTFinancialgroup.com>]
0d9c389e9c63d02edb068917d49af2fa8012af91marc *) Get mod_rewrite building and running, and mod_status building for Win NT
0d9c389e9c63d02edb068917d49af2fa8012af91marc [Allan Edwards <ake@raleigh.ibm.com>]
0d9c389e9c63d02edb068917d49af2fa8012af91marc *) Patch to port mod_auth_db to the 2.0 api and also to support
ae416a3cdff7a12665838a2184183299dcee6ec9bjh Berlekey DB 3.0. It works for me with both Berkeley DB 3.0.55 and
ae416a3cdff7a12665838a2184183299dcee6ec9bjh 2.7.7. It should work with version 1 as well but I haven't tested it.
ae416a3cdff7a12665838a2184183299dcee6ec9bjh [Brian Martin <bmartin@penguincomputing.com>]
b0bb6f215e43a79342c422bc9b0c258add88ca51stoddard *) Get APR DSO code working under Windows. Includes cross platform
99cec2acb38d6a2fb2d4a9d437db7b50ef5b208awrowe [Tim.Costello@BTFinancialgroup.com]
99cec2acb38d6a2fb2d4a9d437db7b50ef5b208awrowe *) Fix some of the Windows APR time functions.
4d83a32b74579903e90aa1cb8574b5b97404d0c4trawick [William Rowe]
4d83a32b74579903e90aa1cb8574b5b97404d0c4trawick *) FAQ changes related to tidying up historical documents on the web site.
4d83a32b74579903e90aa1cb8574b5b97404d0c4trawick [Joshua Slive <slive@finance.commerce.ubc.ca>]
7c2d1ecc95b2213a3fd449b2549999ed6f19f6berbb *) Move Windows DSO code into APR.
7c2d1ecc95b2213a3fd449b2549999ed6f19f6berbb [Bill Stoddard]
7c2d1ecc95b2213a3fd449b2549999ed6f19f6berbb *) Eliminate apr_win.h and apr_winconfig.h (and the ugly #ifdefs they cause).
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx Now, apr.h and apr_config.h are generated from apr.hw and apr_config.hw
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx at build time. At this point, the server will not compile on Windows because
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx of the recent DSO commits. Fixing those next.
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx [Bill Rowe & Bill Stoddard]
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx *) Added error checking for file I/O APR routines.
51469a0d2057aa24107b6f5a04e145824e10da1fdirkx [Jon Travis <jtravis@covalent.net>]
6d8d0dd6604f823aadbe3a18c3cff4eca584bda8trawick *) APR: Don't use the values of resolver error codes for the
6d8d0dd6604f823aadbe3a18c3cff4eca584bda8trawick corresponding APR error codes. On Unix and Win32, return the
6d8d0dd6604f823aadbe3a18c3cff4eca584bda8trawick proper APR error code after a resolver error. [Jeff Trawick]
73cd9876e07c696a3e3563277a1d4e3173861af6stoddardChanges with Apache 2.0a2
73cd9876e07c696a3e3563277a1d4e3173861af6stoddard *) Renamed the executable back to httpd on all platforms other
73cd9876e07c696a3e3563277a1d4e3173861af6stoddard [Ryan Bloom]
f0484231f96a9d95f5044c1c8cb33b322d6f9bcbdougm *) Allow BeOS to survive restarts, log properly and a few
f0484231f96a9d95f5044c1c8cb33b322d6f9bcbdougm small things it had problems with due to the way it setup
2281907b9a2a509aa0eabdc0b1d21424018dbbdfrbb users and groups. [David Reid]
2281907b9a2a509aa0eabdc0b1d21424018dbbdfrbb *) Get mod_rewrite working with APR locks
2281907b9a2a509aa0eabdc0b1d21424018dbbdfrbb [Paul Reder <rederpj@raleigh.ibm.com>]
2281907b9a2a509aa0eabdc0b1d21424018dbbdfrbb *) Actually remove the sempahore when the lock cleanup routine
2281907b9a2a509aa0eabdc0b1d21424018dbbdfrbb is called on BeOS. [David Reid]
2ca377182c951f9895cd5e7a350b442a39c8eb23rbb *) Clear hook registrations between reads of the config file.
2ca377182c951f9895cd5e7a350b442a39c8eb23rbb When DSOs are unloaded and re-loaded the old hook pointers may
1217c8c05f7e3ac0cac8c8dc0c6e7979326c977arbb no longer be valid. This fix eliminates potential segfaults.
1217c8c05f7e3ac0cac8c8dc0c6e7979326c977arbb [Allan Edwards <ake@raleigh.ibm.com>]
1217c8c05f7e3ac0cac8c8dc0c6e7979326c977arbb *) Fix a problem with Sigfunc not being defined or bypassed
b6873e2c00ff7b0af18d837ef4c3cd58cf6b54c5rbb if sigaction() wasn't found. [Jim Jagielski]
893328ef6ff86d0ca27774778d84410353789fb0fielding *) Fix the locking mechanism on BSD variants. They now use fcntl
893328ef6ff86d0ca27774778d84410353789fb0fielding locks. This allows the server to start and serve pages.
893328ef6ff86d0ca27774778d84410353789fb0fielding [Ryan Bloom]
274de94b0b59f4ee126dca1726624980828d0cd0stoddard *) First cut at getting the Win32 installer to work
274de94b0b59f4ee126dca1726624980828d0cd0stoddard [William Rowe <wrowe@lnd.com>]
274de94b0b59f4ee126dca1726624980828d0cd0stoddard *) Get htpasswd compiling under Windows
85d733e70c94a57c9ff893ed05d8b9cfcd0f083fstoddard [William Rowe <wrowe@lnd.com>]
85d733e70c94a57c9ff893ed05d8b9cfcd0f083fstoddard *) Change the log message for a bind() failure to show the
962f339c5f0f61adde79936f610fb05ce0854d6echuck interface and port number. [Jeff Trawick]
3f0dd56fa6b79fe389f20738369b290e2f3e9201trawick *) Import the documentation from 1.3.12 and bring parts of it
3f0dd56fa6b79fe389f20738369b290e2f3e9201trawick up-to-date with respect to the changes that have occurred
3f0dd56fa6b79fe389f20738369b290e2f3e9201trawick [Tony Finch]
70b83609159f247f5920421a890dc27a0718d63adreid *) BeOS MPM updated. CGI bug on BeOS fixed. IP addresses
70b83609159f247f5920421a890dc27a0718d63adreid now logged correctly on BeOS.
70b83609159f247f5920421a890dc27a0718d63adreid [David Reid]
70b83609159f247f5920421a890dc27a0718d63adreid *) Create one makefile for all Win32 distributions (NT/2000/95/98).
a1033a770bfee276def7d4cb9759856f69293e48trawick Makefile.win includes the same user interface as the old
a1033a770bfee276def7d4cb9759856f69293e48trawick [William Rowe <wrowe@lnd.com>, Jeff Trawick <trawick@us.ibm.com>]
bd2d582e0f0708b6e8e258a9a5f9a15445752087trawick *) Win32 exec now uses COMSPEC environment string for command
bd2d582e0f0708b6e8e258a9a5f9a15445752087trawick shell path resolution.
bd2d582e0f0708b6e8e258a9a5f9a15445752087trawick [William Rowe <wrowe@lnd.com>] PR#3715
adb8ad10ffc20ed06ec6cfab6cd7933ab429ea7dtrawick *) Win32: ap_connect() was not returning correct error condition
b45c1c292ff1fa635004ae81fa691f8cb3cdda85rbb [Allen Prescott <allen@clanprescott.com>]
b45c1c292ff1fa635004ae81fa691f8cb3cdda85rbb *) Win32: ap_open() was broken on Win9x because an NT-specific
b45c1c292ff1fa635004ae81fa691f8cb3cdda85rbb flag was passed to CreateFile. ap_puts() added an unnecessary
b45c1c292ff1fa635004ae81fa691f8cb3cdda85rbb [Jeff Trawick <trawick@us.ibm.com>]
86f191e8221867df8c9cd22271e7d54204f39186rbb *) Put in Korean and Norwegian index.html pages (2.0 and 1.3)
86f191e8221867df8c9cd22271e7d54204f39186rbb which where donated by Lee Kuk Hyun and Lorant Czaran. 'Fixed'
86f191e8221867df8c9cd22271e7d54204f39186rbb confusing ee/et name and made all extensions language/dialect
86f191e8221867df8c9cd22271e7d54204f39186rbb rather than country reflecting. Changed example files to
86f191e8221867df8c9cd22271e7d54204f39186rbb explicit reflect the ISO charset and added a few common
962f339c5f0f61adde79936f610fb05ce0854d6echuck ones to the example config [dirkx]
962f339c5f0f61adde79936f610fb05ce0854d6echuck *) Extend external module capability. To use this, you call
157e6980a24a44e4719173b1c555133caecbc172stoddard configure with --with-module=path/to/mod1,path/to/mod2,etc.
157e6980a24a44e4719173b1c555133caecbc172stoddard [Ryan Bloom]
157e6980a24a44e4719173b1c555133caecbc172stoddard *) Backported the various "default charset" fixes from 1.3.12,
faa6e5d8b210456ae4dad0398dfa40a19fd89d59coar including the AddDefaultCharset directive. [Jim Jagielski]
171f8c636ff1374e3a3dfff333211becda355b98trawick *) Added the capability to do ${ENVVAR} constructs in the
171f8c636ff1374e3a3dfff333211becda355b98trawick config file. E.g. 'ServerAdmin ${POSTMASTER}'. As commited
171f8c636ff1374e3a3dfff333211becda355b98trawick it does this on a line by line basis; i.e. if the envvar
171f8c636ff1374e3a3dfff333211becda355b98trawick expands to something with spaces you have to protect it
171f8c636ff1374e3a3dfff333211becda355b98trawick by adding quotes around it (Unless of course you expect it
faa6e5d8b210456ae4dad0398dfa40a19fd89d59coar to contains more than one argument. Alternatively you
faa6e5d8b210456ae4dad0398dfa40a19fd89d59coar can compile it on a per token basis; which is what people
faa6e5d8b210456ae4dad0398dfa40a19fd89d59coar usually expect by setting RESOLVE_ENV_PER_TOKEN. But this
faa6e5d8b210456ae4dad0398dfa40a19fd89d59coar hampers fancier hacks.
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard [Dirk-Willem van Gulik]
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard *) Changed the 'ErrorDocument' syntax in that it NO longer
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard supports the asymetric
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard ErrorDocument 301 "Some message
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard Note the opening " quote, without a closing quote. It now
ed105ee460bbaf479f0aa0f59d3951da85066e27stoddard has either the following syntaxes
bae64a3e5bf7b96d8379e24f13273f26b3b29e16coar ErrorDocument XXX /local/uri
bae64a3e5bf7b96d8379e24f13273f26b3b29e16coar ErrorDocument XXX http://valid/url
bae64a3e5bf7b96d8379e24f13273f26b3b29e16coar ErrorDocument XXX "Some Message"
c7fe488773cf6f50a1b2d9211c2f30a2ace8b67ccoar The recognition heuristic is: if it has a space it
c7fe488773cf6f50a1b2d9211c2f30a2ace8b67ccoar is a message. If it has no spaces and starts with a /
c7fe488773cf6f50a1b2d9211c2f30a2ace8b67ccoar or is a valid URL then treat it that way. Otherwise it
27338fc39af80f2f0e4a8dbdc90c8a8179a5b2e4rbb is assumed to be a message.
27338fc39af80f2f0e4a8dbdc90c8a8179a5b2e4rbb This breaks backward compatibility but makes live a hell
27338fc39af80f2f0e4a8dbdc90c8a8179a5b2e4rbb of a lot easier for GUI's and config file parsers.
27338fc39af80f2f0e4a8dbdc90c8a8179a5b2e4rbb [Dirk-Willem van Gulik]
853a0c44563b056e40e9cffe911190f554e63ec3chuck *) Changed 'CacheNegotiatedDocs' from its present/not-present
853a0c44563b056e40e9cffe911190f554e63ec3chuck syntax into a 'on' or 'off' syntax. As it currently is the
853a0c44563b056e40e9cffe911190f554e63ec3chuck only non nesting token which uses NO_ARGS and thus is an
853a0c44563b056e40e9cffe911190f554e63ec3chuck absolute pain for any config interface automation. This
330c042543440d0987244c94c65d14eeb7af0868rbb breaks backward compatibility. [Dirk-Willem van Gulik]
f1fa5e69040a3a72054d185f6087a7d1592b83e8rbb *) Add ability to add external modules to the build process. This is
f1fa5e69040a3a72054d185f6087a7d1592b83e8rbb done with --with-module=/path/to/module. Modules can only be added
f1fa5e69040a3a72054d185f6087a7d1592b83e8rbb as static modules at this point.
f1fa5e69040a3a72054d185f6087a7d1592b83e8rbb [Ryan Bloom]
30e3e9b782c701f885583b7d13d8e46c37d7e1ddtrawickChanges with Apache 2.0a1
30e3e9b782c701f885583b7d13d8e46c37d7e1ddtrawick *) Fix FreeBSD 3.3 core dump.
30e3e9b782c701f885583b7d13d8e46c37d7e1ddtrawick Basically, ap_initialize() needs to get called before
27faa3af8a50c1dc2dc6cb3049722378f85e5517rbb create_process(), since create_process() passes op_on structure
27faa3af8a50c1dc2dc6cb3049722378f85e5517rbb to semop() to get a lock, but op_on isn't initialized until
27faa3af8a50c1dc2dc6cb3049722378f85e5517rbb ap_initialize() calls setup_lock(). Here is a slight
141b1a93f508248cbc0e9a124cc38041eb3e2562rbb rearrangement to main() which calls ap_initialize() earlier...
141b1a93f508248cbc0e9a124cc38041eb3e2562rbb [Jeff Trawick <trawick@us.ibm.com>]
141b1a93f508248cbc0e9a124cc38041eb3e2562rbb *) Enable Apache to use sendfile/TransmitFile API
141b1a93f508248cbc0e9a124cc38041eb3e2562rbb [Bill Stoddard, David Reid, Paul Reder]
141b1a93f508248cbc0e9a124cc38041eb3e2562rbb *) Re-Implement Win32 APR network I/O APIs and most of the file I/O
865980dc9aeb61741e586502440f0c0fea4835c6trawick [Bill Stoddard]
865980dc9aeb61741e586502440f0c0fea4835c6trawick *) Make file I/O and network I/O writev/sendv APIs consistent.
865980dc9aeb61741e586502440f0c0fea4835c6trawick Eliminate use of ap_iovec_t and use Posix struct iovec.
865980dc9aeb61741e586502440f0c0fea4835c6trawick Use seperate variable on ap_writev to set the number of iovecs
865980dc9aeb61741e586502440f0c0fea4835c6trawick passed in and number of bytes written.
865980dc9aeb61741e586502440f0c0fea4835c6trawick [Bill Stoddard]
9a0d076511763b559a755133f6a182e6c24ef643rbb *) Adapt file iol to use APR functions. Replaced ap_open_file()
9a0d076511763b559a755133f6a182e6c24ef643rbb with ap_create_file_iol(). ap_create_file_iol() requires that
9a0d076511763b559a755133f6a182e6c24ef643rbb the file be opened prior to the call using ap_open().
9a0d076511763b559a755133f6a182e6c24ef643rbb [Bill Stoddard]
b42a7e46e4f80282bd27e96d43c9510b14ccb9aarbb *) Port mod_include and mod_cgi to 2.0
b42a7e46e4f80282bd27e96d43c9510b14ccb9aarbb [Paul Reder, Bill Stoddard]
b42a7e46e4f80282bd27e96d43c9510b14ccb9aarbb *) ap_send{,v}, ap_recv, ap_sendfile API clarification --
6501b757f710f75d47c950300d8110aca67dc0b0rbb bytes_read/bytes_written is always valid (never -1). Plus
6501b757f710f75d47c950300d8110aca67dc0b0rbb some fixes to buff.c to correct problems introduced by the
6501b757f710f75d47c950300d8110aca67dc0b0rbb errno => ap_status_t changes a while back. Plus a fix to
6501b757f710f75d47c950300d8110aca67dc0b0rbb chunked encoding introduced right at the beginning of 2.0.
dfd4950edac888e671b96f62ff5382b7cb350d48rbb [Dean Gaudet]
dfd4950edac888e671b96f62ff5382b7cb350d48rbb *) Revamped UNIX build system to use autoconf and libtool.
dfd4950edac888e671b96f62ff5382b7cb350d48rbb [Manoj Kasichainula, Sascha Schumann]
a6d4b3f8d54aaf14d8ee5dda3a09bf8b6370dfa4wrowe *) port mod_rewrite to 2.0. [Paul J. Reder <rederpj@raleigh.ibm.com>]
c9a95767fbf0f5fb0976a06b97a256033925e433rbb *) More rigorous checking of Host: headers to fix security problems
c9a95767fbf0f5fb0976a06b97a256033925e433rbb with mass name-based virtual hosting (whether using mod_rewrite
c9a95767fbf0f5fb0976a06b97a256033925e433rbb or mod_vhost_alias).
21b8c3cb46cea2b31a585a95ce9f93f4f6abc35brbb [Ben Hyde, Tony Finch]
d8d839738b1e80b0f9c54e83677b3f2c46c22705rbb *) Add back support for UseCanonicalName in <Directory> containers.
d8d839738b1e80b0f9c54e83677b3f2c46c22705rbb [Manoj Kasichainula]
adaea88da2d103e4302e361c932b98cee86fb1c5rbb *) Added APLOG_STARTUP log type. This allows us to write an error
9635d7ffbd8ca441f85051f9a3adba17142d0b20rbb message without any of the date and time information. As a part
9635d7ffbd8ca441f85051f9a3adba17142d0b20rbb of this change, I also removed all of the calls to fprintf(stderr
9635d7ffbd8ca441f85051f9a3adba17142d0b20rbb and replaced them with calls to ap_log_error using APLOG_STARTUP
9635d7ffbd8ca441f85051f9a3adba17142d0b20rbb writing to stderr is no longer portable, because we don't direct
d8d839738b1e80b0f9c54e83677b3f2c46c22705rbb stderr to the error log on all platforms.
d8d839738b1e80b0f9c54e83677b3f2c46c22705rbb [Ryan Bloom]
0415e5e1b9b6eba6899a2e5ef18f8facb8db0cfbstoddard *) Convert error logging functions to take errno as an argument.
0415e5e1b9b6eba6899a2e5ef18f8facb8db0cfbstoddard This makes our error logs more portable, because some Windows API's
0415e5e1b9b6eba6899a2e5ef18f8facb8db0cfbstoddard don't set errno. This change allows us to still output a valid
1374444b4fab1475091e12a81663f379b73005efrbb message on all of our platforms.
1374444b4fab1475091e12a81663f379b73005efrbb [Ryan Bloom]
3233d057ad276d823bded5c24c3fd6729ed1a736rbb *) mod_mime_magic runs in 2.0-dev now.
3233d057ad276d823bded5c24c3fd6729ed1a736rbb [Paul Reder <rederpj@raleigh.ibm.com>]
9927a2a72d50103f32323b53f5fc4577c1801327rbb *) sendfile has been added to APR.
9927a2a72d50103f32323b53f5fc4577c1801327rbb [John Zedlewski <zedlwski@Princeton.EDU>]
9927a2a72d50103f32323b53f5fc4577c1801327rbb *) buff.c has been converted to no longer use errno.
9927a2a72d50103f32323b53f5fc4577c1801327rbb [Manoj Kasichainula]
82d2eed8f2152aff3f7554951c133a9d404ebbc5rbb *) mod_speling runs in 2.0-dev now: a bug in readdir_r handling and
82d2eed8f2152aff3f7554951c133a9d404ebbc5rbb interface adaption to APR functions did it. [Martin Kraemer]
2e970b7ec485dde18f8fb3f494f98a3f68749859fanf *) Support DSOs properly on 32-bit HP-UX 11.0
2e970b7ec485dde18f8fb3f494f98a3f68749859fanf [Dilip Khandekar <dilip@cup.hp.com>]
a5a7ecb732cfe89bb1f8e3c61b316c2075cefe52rbb *) Updated MM in APR source tree from version 1.0.8 to 1.0.11
a5a7ecb732cfe89bb1f8e3c61b316c2075cefe52rbb [Ralf S. Engelschall]
364701a102725758f2e3a511924381e2faa93e27rbb *) Cleaned APR build environment integration and bootstrap APR
364701a102725758f2e3a511924381e2faa93e27rbb automatically for developers from src/Configure.
364701a102725758f2e3a511924381e2faa93e27rbb [Ralf S. Engelschall]
364701a102725758f2e3a511924381e2faa93e27rbb *) Fixed building of src/support/htpasswd.c
0811e8a41d152f0016a385ce1dfa44f475425b70rbb [Ralf S. Engelschall]
0811e8a41d152f0016a385ce1dfa44f475425b70rbb *) When generating the Location: header, mod_speling forgot
0811e8a41d152f0016a385ce1dfa44f475425b70rbb to escape the spelling-fixed uri. (Forw-Port from 1.3)
957b9b3f5e47c6cc7c2d8d9e2224c7364e966c70rbb [Martin Kraemer]
957b9b3f5e47c6cc7c2d8d9e2224c7364e966c70rbb *) Moved mod_auth_digest.c from experimental to standard. [Roy Fielding]
957b9b3f5e47c6cc7c2d8d9e2224c7364e966c70rbb *) Change all pools to APR contexts. This is the first step to
957b9b3f5e47c6cc7c2d8d9e2224c7364e966c70rbb incorporating APR into Apache. [Ryan Bloom]
e91c80d53d8ffa738283d923638fa3efd8aa6bf7rbb *) Move "handler not found" warning message to below the check
e91c80d53d8ffa738283d923638fa3efd8aa6bf7rbb for a wildcard handler. [Dirk <dirkm@teleport.com>, Roy Fielding]
9359bd100badb53fd8a465cb3a0a90b218b30c4cben PR#2584, PR#2751, PR#3349, PR#3436, PR#3548, PR#4384, PR#4795, PR#4807
9359bd100badb53fd8a465cb3a0a90b218b30c4cben *) Support line-continuation feature in config.option file and
d0211374a981173d4537e3f919c708b5f64040fcgstein allow the loading of multiple option sections at once via
d0211374a981173d4537e3f919c708b5f64040fcgstein ``--with-option=<section1>,<section2>,...''
d0211374a981173d4537e3f919c708b5f64040fcgstein [Ralf S. Engelschall]
37d15e1062df9dcdd39ebee5bd2fdc75d4a6aa4arbb *) Rebuilt CVS repository with Apache 1.3.9 as basis. [Roy Fielding]
e3ec3193b69b45923c14915fa3ee3bc1f0215bafrbbChanges with Apache MPM
e3ec3193b69b45923c14915fa3ee3bc1f0215bafrbb *) Use asynchronous AcceptEx() and a completion port to accept and
e3ec3193b69b45923c14915fa3ee3bc1f0215bafrbb dispatch connections to threads in Windows NT/2000.
e3ec3193b69b45923c14915fa3ee3bc1f0215bafrbb [Bill Stoddard]
138c8f7cb8254e035c6f45288e3909cd9c21be5cmartin *) Implement WINNT Win32 MPM from original Win32 code in http_main.c
138c8f7cb8254e035c6f45288e3909cd9c21be5cmartin [Bill Stoddard]
138c8f7cb8254e035c6f45288e3909cd9c21be5cmartin *) Implement the APACI --with-option facility
adaea88da2d103e4302e361c932b98cee86fb1c5rbb (per default used the config.option file).
adaea88da2d103e4302e361c932b98cee86fb1c5rbb [Ralf S. Engelschall]
adaea88da2d103e4302e361c932b98cee86fb1c5rbb *) MPM BEOS port. [David Reid <abb37@dial.pipex.com>]
8e7c85d6eb9bf628f081763c5bd778b784d5001crbb *) Start to implement module-defined hooks that are a) fast and b) typesafe.
8e7c85d6eb9bf628f081763c5bd778b784d5001crbb Replace pre_connection module call with a register_hook call and
8e7c85d6eb9bf628f081763c5bd778b784d5001crbb implement pre_connection as a hook. The intent is that these hooks will
8e7c85d6eb9bf628f081763c5bd778b784d5001crbb be extended to allow Apache to be multi-protocol, and also to allow the
8e7c85d6eb9bf628f081763c5bd778b784d5001crbb calling order to be specified on a per-hook/per-module basis.
97ad13ce0413b573e63512b57c874ebbd41065b2rbb [Ben Laurie]
2d3a1dd65798c72b7e46593614b4e27716cc5cderbb *) Implement mpm_* methods as "modules". Each method gets its own
2d3a1dd65798c72b7e46593614b4e27716cc5cderbb subdir in src/modules (eg: src/modules/prefork). Selection
2d3a1dd65798c72b7e46593614b4e27716cc5cderbb of method uses Rule MPM_METHOD. [Jim Jagielski]
78f2608a1583b3cb409e12be701392ad1a929653rbb *) Port the hybrid server from the apache-apr repository as
78f2608a1583b3cb409e12be701392ad1a929653rbb mpm_mpmt_pthread. [Manoj Kasichainula]
78f2608a1583b3cb409e12be701392ad1a929653rbb *) os/unix/unixd.[ch]: detach, setuid, setgid, stuff which will be common
c5c3b5e33fca6425dc716e1dc51c10733d9b6bc3rbb amongst the unix MPMs.
c5c3b5e33fca6425dc716e1dc51c10733d9b6bc3rbb *) mpm_prefork: throw away all the alarm/timeout crud; and clean up the
c5c3b5e33fca6425dc716e1dc51c10733d9b6bc3rbb signal handling for the new world order. [Dean Gaudet]
be7b08f10dc6b0be088c8b41009d89ea49ad4acarbb *) Crude ap_thread_mutex abstraction so that we get the pthread stuff out
be7b08f10dc6b0be088c8b41009d89ea49ad4acarbb of alloc.c for now. [Dean Gaudet]
2a0c3663b66c9af764267ac3c4e140e659598474ben *) Handle partial large writes correctly. [Ben Laurie]
2a0c3663b66c9af764267ac3c4e140e659598474ben *) Eliminate conn_rec's pointer to server. All it knows is the base server
2a0c3663b66c9af764267ac3c4e140e659598474ben based on IP/port. [Ben Laurie]
8a76b3f3c93d39930182afa227d258218f80926brbb *) Port a bunch of modules to the new module structure.
8a76b3f3c93d39930182afa227d258218f80926brbb ["Michael H. Voase" <mvoase@midcoast.com.au>]
11d400383ba9f941cc49e1a8da562fd172d3d7c5stoddard *) I/O layering and BUFF revamp. See docs/buff.txt. [Dean Gaudet]
13ee9baf0119bca0739d3f17591f0bf2c64cdcccrbb *) Basic restructuring to introduce the MPM concept; includes various
528e2a7d7cf6b8879291b59dd5afd8f6c7ae1b6brbb changes to the module API... better described by
528e2a7d7cf6b8879291b59dd5afd8f6c7ae1b6brbbChanges with Apache pthreads
1a3161b56ebbbd036730d5372d4800cc495db212rbb *) New buff option added: BO_TIMEOUT. It describes the timeout for
1a3161b56ebbbd036730d5372d4800cc495db212rbb buff operations (generally over a network).
1a3161b56ebbbd036730d5372d4800cc495db212rbb [Dean Gaudet, Ryan Bloom, Manoj Kasichainula]
1a3161b56ebbbd036730d5372d4800cc495db212rbb *) Created http_accept abstraction. Added 4 new functions (not exported):
2d87d8f191175a0683f430d790d81a5604b74ec6rbb init_accept(), begin_accepting_requests(), get_request(),
2d87d8f191175a0683f430d790d81a5604b74ec6rbb stop_accepting_requests() [Bill Stoddard]
2d87d8f191175a0683f430d790d81a5604b74ec6rbb *) Fix to ap_rprintf call that allows mod_info to work properly.
6bcee6b60a2fc4c96328af30e79bad4927ff30f3rbb [James Morris <jmorris@intercode.com.au>]
6bcee6b60a2fc4c96328af30e79bad4927ff30f3rbb *) user and ap_auth_type fields were moved from connection_rec to
6bcee6b60a2fc4c96328af30e79bad4927ff30f3rbb request_rec. [Ryan Bloom]
1e8d4cfede0bad3a1a33e3b2eef0ba6754746f72rbb *) Removed the ap_block_alarms and ap_unblock_alarm calls. These aren't
1e8d4cfede0bad3a1a33e3b2eef0ba6754746f72rbb needed in a threaded server.
1e8d4cfede0bad3a1a33e3b2eef0ba6754746f72rbb *) Initial pthread implementation from from Dean's apache-nspr code.
5600cf225f3be88ed9b5385a0737ccde7d0775bbrbb [Bill Stoddard, Ryan Bloom]
5600cf225f3be88ed9b5385a0737ccde7d0775bbrbbChanges with Apache 1.3.9
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb *) Remove bogus error message when a redirect doesn't set Location.
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb Instead, use an empty string to avoid coredump if the error message
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb was supposed to include a location. [Roy Fielding]
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb *) Don't allow configure to include mod_auth_digest unless it is
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb explicitly requested, even if the user asked for all modules.
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb [Roy Fielding]
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb *) Translate module names to dll names for OS/2 so that they are no more
84b76faff9e8fa4b16b587b95d3930e36fe3c405rbb than 8 characters long and have an extension of "dll" instead of "so".
bcef91d7068817e2e56854f5c5b22b6eb4663a85rbb [Brian Havard]
bcef91d7068817e2e56854f5c5b22b6eb4663a85rbb *) Print out pointer to Rule DEV_RANDOM when truerand lib not found.
445997e06464e7625c7f0e22917f8f2d9876cfffrbb Fix test-compile check to check for randbyte instead of trand32.
445997e06464e7625c7f0e22917f8f2d9876cfffrbb Use ap_base64encode_binary/decode instead of copy in mod_auth_digest.c
445997e06464e7625c7f0e22917f8f2d9876cfffrbb and tweak to make Amaya happier. [Ronald Tschal�r]
445997e06464e7625c7f0e22917f8f2d9876cfffrbb *) Ensure that the installed expat include files are world readable,
a2c240fe8836beba2330b03d55569d9e31bb3358trawick just like the other header files. [Martin Kraemer]
a2c240fe8836beba2330b03d55569d9e31bb3358trawick *) Fixed generated AddModule adjustments in APACI's `configure' script
a2c240fe8836beba2330b03d55569d9e31bb3358trawick in order to allow (new) modules like mod_vhost_alias to be handled
13ee9baf0119bca0739d3f17591f0bf2c64cdcccrbb correctly (which was touched by the adjustments for mod_alias).
13ee9baf0119bca0739d3f17591f0bf2c64cdcccrbb [Ralf S. Engelschall]
13ee9baf0119bca0739d3f17591f0bf2c64cdcccrbb *) For binary builds, add -R flag to apachectl to work around the lack of
5a58a10705b7b154b53294e0c0283d64eabdcb7fstoddard an absolute path to the ./libexec directory where the libhttp.ep file
5a58a10705b7b154b53294e0c0283d64eabdcb7fstoddard is needed for SHARED_CORE architectures. [Randy Terbush]
10a2de5cee9ae5abe675ea200fbe635a54556c8ffanf *) WIN32: Create the CGI script process as DETACHED. This may solve the
3568de757bac0b47256647504c186d17ca272f85rbb problem observed by some Win95/98 users where they get CGI script
3568de757bac0b47256647504c186d17ca272f85rbb output sent to the console. [Bill Stoddard]
98f3c8c547839251cb43e9f917114cc8b16ced9efanf *) Fix (re)naming in the uuencode/decode section. The ap/ap_
98f3c8c547839251cb43e9f917114cc8b16ced9efanf routines are now called ap_base64* and are 'plain' (i.e., no
98f3c8c547839251cb43e9f917114cc8b16ced9efanf pool access or anything clever). Inside util.c the routines acting
1a411968bb62cc88c3cbf14a53caf6587c224259fanf like pstrdup are called ap_pbase64encode() and ap_pbase64decode().
1a411968bb62cc88c3cbf14a53caf6587c224259fanf The oddly named ap_uuencode(), ap_uudecode() are kept around for
10a2de5cee9ae5abe675ea200fbe635a54556c8ffanf now but deprecated. [dirkx]
10a2de5cee9ae5abe675ea200fbe635a54556c8ffanf *) Clean up the base64 and SHA1 additions and make sure they are
10a2de5cee9ae5abe675ea200fbe635a54556c8ffanf represented in the ApacheCore.def, ApacheCoreOS2.def, and httpd.exp
60777c94cb33363389d4848524c0809c235ba5e5rbb files. [Roy Fielding]
b5140df3124b186e4a977812fd9828d1e295c080wrowe *) WIN32: Migrate to InstallShield 5.5 and provide a bit more error
b5140df3124b186e4a977812fd9828d1e295c080wrowe checking. Allow compiling on VS 6.0. [Randy Terbush]
b5140df3124b186e4a977812fd9828d1e295c080wrowe *) Fixed assumption of absolute paths in binbuild.sh. [Tony Finch]
c9dafaafc2650994e47f88f5239f643c97ec4cb3wrowe *) Use TestCompile to search for the truerand library (rather than blindly
c9dafaafc2650994e47f88f5239f643c97ec4cb3wrowe assuming its existence). If it is not found, complain (but do not
c9dafaafc2650994e47f88f5239f643c97ec4cb3wrowe exit - yet). [Martin Kraemer]
c9dafaafc2650994e47f88f5239f643c97ec4cb3wrowe *) We forgot to add the new exported function names to
41aef8943f349ee0b5b510dd436301b4c33c628cwrowe src/support/httpd.exp. [Bill Stoddard, Randy Terbush]
bb360f1d9bdce4f55f290de07a711db006b25957wrowe *) Add description of -T command-line option to usage().
5727f68f33838686d447f55a100309e54efb20f8fielding [Ralf S. Engelschall]
5727f68f33838686d447f55a100309e54efb20f8fielding *) For "some" platforms (notably, EBCDIC based ones), libos needs to be
5727f68f33838686d447f55a100309e54efb20f8fielding searched only AFTER libap has been searched, because libap needs
5727f68f33838686d447f55a100309e54efb20f8fielding some symbols from libos. [Martin Kraemer]
d28c69d8e5f2e88e653d61436bb6fa6302a212b4rbb *) Fix conflict with original mod_digest related to the symbol of the
d28c69d8e5f2e88e653d61436bb6fa6302a212b4rbb module dispatch list (which has to be unique for DSO and follow the
d28c69d8e5f2e88e653d61436bb6fa6302a212b4rbb usual conventions for the installation procedure).
d28c69d8e5f2e88e653d61436bb6fa6302a212b4rbb [Ralf S. Engelschall]
b974a8fc59a9d6193305dcd8690992a411d88232rbb *) Add a dbm-library check for the "usual places" (-ldbm, -lndbm, -ldb)
b974a8fc59a9d6193305dcd8690992a411d88232rbb for other platforms as well. [Martin Kraemer]
b974a8fc59a9d6193305dcd8690992a411d88232rbb *) Make ap_sha1.c compile for EBCDIC platforms: replace remaining LONG
fa996ff928f6170678c8789c8073c368f56d770arbb types by AP_LONG and replace reference to renamed variable 'ubuf'
fa996ff928f6170678c8789c8073c368f56d770arbb by 'buffer'. [Martin Kraemer]
fa996ff928f6170678c8789c8073c368f56d770arbbChanges with Apache 1.3.8 [not released]
fa996ff928f6170678c8789c8073c368f56d770arbb *) Flush the output buffer immediately after sending an error or redirect
a1bbc66131c63e718e3f73fc11a348f7552d7947rbb response, since the result may be needed by the client to abort a
a1bbc66131c63e718e3f73fc11a348f7552d7947rbb long data transfer or restart a series of pipelined requests.
a1bbc66131c63e718e3f73fc11a348f7552d7947rbb [Tom Vaughan <tvaughan@aventail.com>, Roy Fielding]
b31025f6f2c0392dc76eecca7f27faad0b902be0wrowe *) PORT: Improved compilation and DSO support on Sequent DYNIX/ptx.
b31025f6f2c0392dc76eecca7f27faad0b902be0wrowe [Ian Turner <iant@sequent.com>] PR#4735
b31025f6f2c0392dc76eecca7f27faad0b902be0wrowe *) Local struct mmap in http_core.c conflicted with system structure
b31025f6f2c0392dc76eecca7f27faad0b902be0wrowe name on DYNIX -- changed to mmap_rec. [Roy Fielding] PR#4735
4783bc116b4dc37deadcc0b68ce3d3eeb6a7464aben *) Added updated mod_digest as modules/experimental/mod_auth_digest.
4783bc116b4dc37deadcc0b68ce3d3eeb6a7464aben [Ronald Tschal�r <ronald@innovation.ch>]
4783bc116b4dc37deadcc0b68ce3d3eeb6a7464aben *) Fix a memory leak where the module counts were getting messed
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb up across restarts. [David Harris <dharris@drh.net>]
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb *) CIDR addresses such as a.b.c.d/24 where d != 0 weren't handled
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb properly in mod_access.
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb ["Paul J. Reder" <rederpj@raleigh.ibm.com>] PR#4770
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb *) RewriteLock/RewriteMap didn't work properly with virtual hosts.
fcc25eda7b150e226d3c1cdaea66a943d3fdee4erbb [Dmitry Khrustalev <dima@bog.msu.su>] PR#3874
cab10c98980b42562a7850410cecd37798e170ecrbb *) PORT: Support for compaq/tandem/com.
cab10c98980b42562a7850410cecd37798e170ecrbb [Michael Ottati <michael.ottati@compaq.com>, dirkx]
cab10c98980b42562a7850410cecd37798e170ecrbb *) Added SHA1 password encryption support to easy migration from
cab10c98980b42562a7850410cecd37798e170ecrbb Netscape servers. See support/SHA1 for more information.
71715c646d5231de578431f8961e711764b899d3fanf Caused the separation of ap_md5.c into md5, sha1 and a general
71715c646d5231de578431f8961e711764b899d3fanf ap_checkpass.c with just a validate_passwd routine. Added a
71715c646d5231de578431f8961e711764b899d3fanf couple of flags to support/htpasswd. Some reuse of the to64()
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb function; hence renamed to ap_to64().
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb [Dirk-Willem van Gulik, Clinton Wong <clintdw@netcom.com>]
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb *) Change for EBCDIC platforms (TPF and BS2000) to correctly deal
2714d6002fcdf12f5b26cc948c9f2f03ca5e7ee9rbb with ASCII/EBCDIC conversions in "ident" query.
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb [David McCreedy <McCreedy@us.ibm.com>]
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb *) Get rid of redefinition warning on MAC_OS_X_SERVER platform.
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb Change "Power Macintosh" to Power* so if uname prints "Power Book"
8695c28e4d0bb9357f606045b37238d4f49ce8b6rbb we're still happy on Rhapsody platforms. [Wilfredo Sanchez]
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb *) Fix SIGSEGV on some systems because the Vary fix below included
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb a call to table_do with a variable argument list that was not
5f69f46ccdf50afd8f0a23f134746e6066185e89rbb NULL terminated. Replaced with better implementation. [Roy Fielding]
5f69f46ccdf50afd8f0a23f134746e6066185e89rbbChanges with Apache 1.3.7 [not released]
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe *) The "Vary" response header field is now sanitised right before
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe the header is sent back to the client. Multiple "Vary" fields
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe are combined, and duplicate tokens (e.g., "Vary: host, host" or
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe "Vary: host, negotiate, host, accept-language") are reduced to
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe single instances. This is a better solution than the force-no-vary
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe one (which is still valid for clients that can't cope with Vary
e76797ee89ad6fb15ad97b0f3903ae324ac44949wrowe at all). PR#3118 [Dean Gaudet, Roy Fielding, Ken Coar]
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbb *) Portability changes for BeOS. [David Reid abb37@dial.pipex.com]
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbb *) Link DSO's with "gcc -shared" instead of "ld -Bshareable" at
a1e0709c89175c34a3f72eb4a83d7ee1621a0884rbb least on Linux and FreeBSD for now.
4b13b6bcdcfae61d3c58cc2569757651f28f2bbfrbb [Rasmus Lerdorf]
4b13b6bcdcfae61d3c58cc2569757651f28f2bbfrbb *) Win32: More apache -k restart work. Restarts are now honored
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb immediately and connections in the listen queue are -not- lost.
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb This is made possible by the use of the WSADuplicateSocket()
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb call. The listeners are opened in the parent, duplicated, then
34ea1d36f4e1c8d66338e691793017d105cc9c32rbb the duplicates are passed to the child. The original listen sockets
2c8f06bf370a44a3d0544ed5319355463c417132gregames are not closed by the parent across a restart, thus the listen queue
2c8f06bf370a44a3d0544ed5319355463c417132gregames is preserved.
2c8f06bf370a44a3d0544ed5319355463c417132gregames [Bill Stoddard <stoddard@raleigh.ibm.com>]
db06e09891b001667974483058923b88c3258324rbb *) Fix handling of case when a client has sent "Expect: 100-continue"
db06e09891b001667974483058923b88c3258324rbb and we are going to respond with an error, but get stuck waiting to
db06e09891b001667974483058923b88c3258324rbb discard the body in the pointless hope of preserving the connection.
db06e09891b001667974483058923b88c3258324rbb [Roy Fielding, Joe Orton <jeo101@york.ac.uk>] PR#4499, PR#3806
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf *) Fix 'configure' to work correctly with SysV-based versions of
8ba9d5e9aaaa79dba0de13f5c1b6e725d98f1dc2fanf 'tr' (consistent with Configure's use as well). [Jim Jagielski]
26cf4d32b4ff8807a64b0cfa6865a7d6d171c68efanf *) apxs: Add "-S var=val" option which allows for override of CFG_*
26cf4d32b4ff8807a64b0cfa6865a7d6d171c68efanf built-in values. Add "-e" option which works like -i but doesn't
26cf4d32b4ff8807a64b0cfa6865a7d6d171c68efanf install the DSO; useful for editing httpd.conf with apxs. Fix
06c107289de0a0888386e0bc08ef9fc60aacd8bctrawick editing code so that multiple invocations of apxs -a will not
06c107289de0a0888386e0bc08ef9fc60aacd8bctrawick create duplicate LoadModule/AddModule entries; apxs can now be
06c107289de0a0888386e0bc08ef9fc60aacd8bctrawick used to re- enable/disable a module. [Wilfredo Sanchez]
f4ab6acec7b02518869ca649ce2d3ceeb92d282etrawick *) Win32: Update the server to use Winsock 2. Specifically, link with
f4ab6acec7b02518869ca649ce2d3ceeb92d282etrawick ws2_32.lib rather than wsock32.lib. This gives us access to
f4ab6acec7b02518869ca649ce2d3ceeb92d282etrawick WSADuplcateSocket() in addition to some other enhanced comm APIs.
b0bd38b2226e5cfb86cce6ed1991723f4c9e4f68trawick Win 95 users may need to update their TCP/IP stack to pick up
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim Winsock 2. (See http://www.microsoft.com/windows95/downloads/)
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim [Bill Stoddard stoddard@raleigh.ibm.com]
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim *) Win32: Redirect CGI script stderr (script debug info) into the
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim error.log when CGI scripts fail. This makes Apache on Win32
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim behave more like Unix.
bf9902ea6090f94c9ee0aaddd80b419a184ffe55jim [Bill Stoddard stoddard@raleigh.ibm.com]
0b34df54ff22d0ca05eb8e9d7c9610138a878c83rbb *) Fixed `httpd' usage display: -D was missing.
0b34df54ff22d0ca05eb8e9d7c9610138a878c83rbb [Ralf S. Engelschall] PR#4614
0b34df54ff22d0ca05eb8e9d7c9610138a878c83rbb *) Fix `make r' test procedure in src/regex/: ap_isprint was not found.
c8cc46d12794845f39fa154224075a3bbe57a4c8ben [Ralf S. Engelschall] PR#4561, PR#4562
5dea9095cbfab622c65e5f2f806007aaa7d7761arbb *) OS/2: Fix problem with accept lock semaphores where server would die with
5dea9095cbfab622c65e5f2f806007aaa7d7761arbb "OS2SEM: Error 105 getting accept lock. Exiting!"
5dea9095cbfab622c65e5f2f806007aaa7d7761arbb [Brian Havard] PR#4505
5dea9095cbfab622c65e5f2f806007aaa7d7761arbb *) Add DSO support for DGUX 4.x using gcc. Tested on x86 platforms.
365c33fd9c0fc3ac27c0bd1d360a5a94980c576atrawick [Randy Terbush <randy@covalent.net>]
365c33fd9c0fc3ac27c0bd1d360a5a94980c576atrawick *) Add the new mass-vhost module (mod_vhost_alias.c) developed and
0ea568e49752d337d2b513cce07f2a6f4699d6eatrawick used by Demon Internet, Ltd. [Tony Finch <fanf@demon.net>]
0ea568e49752d337d2b513cce07f2a6f4699d6eatrawick *) Better GCC detection for DSO flags under Solaris 2 where the `cc'
b7a0ad483b54711addc5f43f679189619a23c749ben command potentially _is_ GCC. [Ralf S. Engelschall]
328d02603f471fad56cc5588fc9e93f589593ad0rbb *) Fix apxs build issues on AIX
328d02603f471fad56cc5588fc9e93f589593ad0rbb [Rasmus Lerdorf <rasmus@raleigh.ibm.com>]
1c850e9f96375578e43e5f69ba7499a543b2a7bdtrawick *) DocumentRoot Checking: Under previous versions, when Apache
1c850e9f96375578e43e5f69ba7499a543b2a7bdtrawick first started up, it used to do a stat of each DocumentRoot to
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick see if it existed and was a directory. If not, then an error
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick message was printed. THIS HAS BEEN DISABLED. If DocumentRoot
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick does not exist, you will get error messages in error_log. If
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick the '-t' command line option is used (to check the configuration)
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick the check of DocumentRoot IS performed. An additional command
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick line option, '-T', has been added if you want to avoid the
48a2f5e2c189669b025d462f44fda5d4b45e8d78trawick DocumentRoot check even when checking the configuration.
b22fb75c37b70fbe176afdb8081c3ce2dba86db4rbb [Jim Jagielski]
b22fb75c37b70fbe176afdb8081c3ce2dba86db4rbb *) Win32: The query switch "apache -S" didn't exit after showing the
b22fb75c37b70fbe176afdb8081c3ce2dba86db4rbb vhost settings. That was inconsistent with the other query functions.
b22fb75c37b70fbe176afdb8081c3ce2dba86db4rbb [Bill Stoddard - Fixed by Martin on Unix in 1.3.4]
8fccb89ed59d5c80c76a818f7ca02bb0d068d4d3rbb *) Win32: Changed behaviour of apache -k restart.
8fccb89ed59d5c80c76a818f7ca02bb0d068d4d3rbb Previously, the server would drain all connections in the stack's
8fccb89ed59d5c80c76a818f7ca02bb0d068d4d3rbb listen queue before honoring the restart. On a busy server, this
8fccb89ed59d5c80c76a818f7ca02bb0d068d4d3rbb could take hours. Now, a restart is honored almost immediately.
da07a882b90b44243c9cd88ac09a789999dccc4drbb All connections in Apache's queues are handled but connections in
da07a882b90b44243c9cd88ac09a789999dccc4drbb the stack's listen queue are discarded. Restart triggered by
da07a882b90b44243c9cd88ac09a789999dccc4drbb MaxRequestPerChild is unchanged.
da07a882b90b44243c9cd88ac09a789999dccc4drbb [Bill Stoddard <stoddard@raleigh.ibm.com>]
4a5c8a77f48f0cf10bfe70479d0a2e8e7d6cd917rbb *) Win32: Eliminated unnecessary call to wait_for_multiple_objects in
4a5c8a77f48f0cf10bfe70479d0a2e8e7d6cd917rbb the accept loop. Good for a 5% performance boost. Cleaned up
4a5c8a77f48f0cf10bfe70479d0a2e8e7d6cd917rbb parent/child process management code.
4a5c8a77f48f0cf10bfe70479d0a2e8e7d6cd917rbb [Bill Stoddard <stoddard@raleigh.ibm.com>]
4a5c8a77f48f0cf10bfe70479d0a2e8e7d6cd917rbb *) Added ceiling on file size for memory mapped files.
5bf029f8452b6aa105cf3d9d9b19221920725428rbb [John Giannandrea <jg@meer.net>] PR#4122
5bf029f8452b6aa105cf3d9d9b19221920725428rbb *) Fix ndbm.h include problems with brain-dead glibc >= 2.1 which
60ed053fe71b1e3cfab8c4ed37afde30a6db4841rbb has ndbm.h in a non-standard db1/ subdir. PR#4431, PR#4528
60ed053fe71b1e3cfab8c4ed37afde30a6db4841rbb [Henri Gomez <gomez@slib.fr>, Ralf S. Engelschall]
e03878add0099ba9741efc46d545955a60ea8bdcrbb *) Determine AP_BYTE_ORDER for ap_config_auto.h and already
e03878add0099ba9741efc46d545955a60ea8bdcrbb use this at least for Expat. [Ralf S. Engelschall]
e03878add0099ba9741efc46d545955a60ea8bdcrbb *) Allow .module files to specify libraries with Lib:.
1860b2b5f1de31f8cf9d95f1b394fe98c8dbfab7rbb [Ben Laurie]
1860b2b5f1de31f8cf9d95f1b394fe98c8dbfab7rbb *) Allow SetEnvIf[NoCase] to test environment variables as well
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe as header fields and request attributes. [Ken Coar]
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe *) Fix mod_autoindex's handling of ScanHTMLTitles when file
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe content-types are "text/html;parameters". PR#4524 [Ken Coar]
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe *) Remove "mxb" support from mod_negotiation -- it was a draft feature
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe never accepted into any standard, and it opens up certain DoS
9ec65cbae2f760e485a1c54df5b19853688d5c91wrowe attacks. [Koen Holtman <Koen.Holtman@cern.ch>]
a8c0c0b8d7dada680bd3f3d70f78ce0656ba5aa6trawick *) TestCompile updated. We can now run programs and output the
a8c0c0b8d7dada680bd3f3d70f78ce0656ba5aa6trawick results during the Configure process. [ Jim Jagielski]
a8c0c0b8d7dada680bd3f3d70f78ce0656ba5aa6trawick *) The source is now quad (long long) aware as needed. Specifically,
a8c0c0b8d7dada680bd3f3d70f78ce0656ba5aa6trawick the Configure process determines the correct size of off_t and
77c656dabf05adcdee0d30b15b4628be738a1913rbb *void. When the OS/platform/compiler supports quads, ap_snprintf()
77c656dabf05adcdee0d30b15b4628be738a1913rbb provides for the 'q' format qualifier (if quads are not available,
77c656dabf05adcdee0d30b15b4628be738a1913rbb 'q' is silently "demoted" to long). [Jim Jagielski]
77c656dabf05adcdee0d30b15b4628be738a1913rbb *) When the username or password fed to htpasswd is too long, include the
7e73041858979fd162c849cc2e7447beb51eedf8rbb size limit in the error message. Also report illegal characters
7e73041858979fd162c849cc2e7447beb51eedf8rbb (currently only ':') in the username. Add the size restrictions
886cd69ebf69e990dbc365be87ff8ea7cd681904rbb to the man page. [Ken Coar]
886cd69ebf69e990dbc365be87ff8ea7cd681904rbb *) Fixed the configure --without-support option so it doesn't result in
a8c0c0b8d7dada680bd3f3d70f78ce0656ba5aa6trawick an infinite loop. [Marc Slemko]
886cd69ebf69e990dbc365be87ff8ea7cd681904rbb *) Piped error logs could cause a segfault if an error occured
886cd69ebf69e990dbc365be87ff8ea7cd681904rbb during configuration after a restart.
db9ac238bf63d7df2bebbaff4de1628a32151028trawick [Aidan Cully <aidan@panix.com>] PR#4456
ce121a776564df6bb75498209094142d92404b8atrawick *) If a "Location" field was stored in r->err_headers_out rather
ce121a776564df6bb75498209094142d92404b8atrawick than r->headers_out, redirect processing wouldn't find it and
e1ade9256c87684358786fcf7eef251bd4c1db10rbb the server would core dump on ap_escape_html(NULL). Check both
e1ade9256c87684358786fcf7eef251bd4c1db10rbb tables and raise HTTP_INTERNAL_SERVER_ERROR with a log message
e1ade9256c87684358786fcf7eef251bd4c1db10rbb if Location isn't set. [Doug MacEachern, Ken Coar]
e1ade9256c87684358786fcf7eef251bd4c1db10rbb *) Add RULE_EXPAT, the src/lib/ directory structure, and a modified copy
e1ade9256c87684358786fcf7eef251bd4c1db10rbb of the Expat 1.0.2 distribution. [Greg Stein]
db9ac238bf63d7df2bebbaff4de1628a32151028trawick *) Replace regexec() calls with calls to a new API stub function
db9ac238bf63d7df2bebbaff4de1628a32151028trawick ap_regexec(). This solves problems with DSO modules which use the regex
eae32ab3fb398ca408bc2d45b22adf1b67a75471rbb library. [Jens-Uwe Mager <jum@helios.de>, Ralf S. Engelschall]
d1d25826dbd7d2ba97db90b77122ae2b0f363e89rbb *) Add 'Request_Protocol' special keyword to mod_setenvif so that
d1d25826dbd7d2ba97db90b77122ae2b0f363e89rbb environment variables can be set according to the protocol version
d1d25826dbd7d2ba97db90b77122ae2b0f363e89rbb (e.g., HTTP/0.9 or HTTP/1.1) of the request. [Ken Coar]
42ec91fadb5532438ab4c02993b15c18a517967frbb *) Add DSO support for OpenStep (Mach 4.2) platform.
42ec91fadb5532438ab4c02993b15c18a517967frbb [Ralf S. Engelschall, Rex Dieter <rdieter@math.unl.edu>] PR#3997
42ec91fadb5532438ab4c02993b15c18a517967frbb *) Fix sed regex for generating ap_config_auto.h in src/Configure.
96fc773162e93e5b85686ab152f11baf4498d868rbb [Jan Gallo <gallo@pvt.sk>] PR#3690, PR#4373
2975523a2901fc601ae9510082a7d4fb11bb9aecake *) Switch to /bin/sh5 in APACI on Ultrix and friends to avoid problems with
2975523a2901fc601ae9510082a7d4fb11bb9aecake their brain-dead /bin/sh. [Ralf S. Engelschall] PR#4372
5827adc4c40ff4b10db9b09cea43f4307c8fc319trawick *) Better DSO flags recognition on NetBSD platforms using ELF.
5827adc4c40ff4b10db9b09cea43f4307c8fc319trawick [Todd Vierling <tv@pobox.com>] PR#4310
5827adc4c40ff4b10db9b09cea43f4307c8fc319trawick *) Always log months in english format for %t in mod_log_config.
5827adc4c40ff4b10db9b09cea43f4307c8fc319trawick [Petr Lampa <lampa@fee.vutbr.cz>] PR#4366, 679
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe *) Support for server-parsed and multiview-determined ReadmeName and
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe HeaderName files in mod_autoindex. Removed the restriction on
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe "/"s in ReadmeName and HeaderName directives since the *sub_req*
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe routines will deal with the access issues. (It's now possible to
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe have {site|group|project|customer|...} wide readmes and headers.)
e7270e4daeb3e62414b361ca2bf0e707d0ae3310wrowe [Raymond S Brand <rsbx@rsbx.net>, Ken Coar] PR#1574, 3026, 3529,
f6e9f5600e77b78fb013bb543d364135961639d1rbb 3569, 4256
f6e9f5600e77b78fb013bb543d364135961639d1rbb *) When stat() fails, don't assume anything about the contents of
f6e9f5600e77b78fb013bb543d364135961639d1rbb the struct stat. [Ed Korthof <ed@bitmechanic.com>]
f6e9f5600e77b78fb013bb543d364135961639d1rbb *) It's OK for a semop to return EINTR, just loop around and try
f6e9f5600e77b78fb013bb543d364135961639d1rbb again. [Dean Gaudet]
f6e9f5600e77b78fb013bb543d364135961639d1rbb *) Fix configuration engine re-entrant hangups, which solve a
f6e9f5600e77b78fb013bb543d364135961639d1rbb handful of problems seen with mod_perl <Perl> configuration sections
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Salvador Ortiz Garcia <sog@msg.com.mx>]
b580e99ec29c68e3c56b5b1ad8a4ec1e2de865c0trawick *) Mac OS and Mac OS X Server now use the appropriate custom layout
b580e99ec29c68e3c56b5b1ad8a4ec1e2de865c0trawick by default when building with APACI; allow for platform-specific
b580e99ec29c68e3c56b5b1ad8a4ec1e2de865c0trawick variable defaults in configure. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Do setgid() before initgroups() in http_main; some platforms
cfa64348224b66dd1c9979b809406c4d15b1c137fielding zap the grouplist when setgid() is called. This was fixed in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding suexec earlier, but the main httpd code missed the change.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2579
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add recognition of .tgz as a gzipped tarchive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Bertrand de Singly <bertrand.de-singly@polytechnique.fr>] PR#2364
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include's fsize/flastmod should allow only relative paths, just
cfa64348224b66dd1c9979b809406c4d15b1c137fielding like "include file". [Jaroslav Benkovsky <benkovsk@pha.pvt.cz>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2: Add support for building loadable modules using DLLs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add iconsdir, htdocsdir, and cgidir to config.layout.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix minor but annoying bug with the test for Configuration.tmpl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding being newer than Configuration so that it is less likely to fail
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when using APACI and shadow sources. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add initial support for Mac OS (versions 10.0 and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding greater). Use Mac OS X Server layout for now. Clean up dyld code
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in unix/os.c, and don't install the dyld error handlers, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are no longer needed in Mac OS. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rename Rhapsody layout to "Mac OS X Server". Change install
cfa64348224b66dd1c9979b809406c4d15b1c137fielding locations to appropriate ones for user-built (as opposed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding system) installs. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Modify mod_autoindex's handling of AddDescription so that the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding behaviour matches the documentation. [Ken Coar] PR#1898, 3072.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add functionality to the install-bindist.sh script created by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding binbuild.sh to use tar when copying distribution files to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding serverroot. This allows upgrading an existing installation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding without nesting the new distribution in the old.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding install-bindist.sh now detects the local perl5 path to install
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apxs and dbmmanage with proper path to perl interpreter.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Add an install-binsupport target which copies the source files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for apxs and dbmmanage to bindist to allow these scripts to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be properly installed relative to the destination serverroot.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush, Covalent Technologies, randy@covalent.net]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix intermittent SEGV in ap_proxy_cache_error() in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding src/modules/proxy_util.c where a NULL filepointer and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding temporary filename were closed and unlinked.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Graham Leggett <minfrin@sharp.fm>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Tim Costello <tjcostel@socs.uts.edu.au>] PR#3178
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix inconsistent error messages reported by mod_proxy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Graham Leggett <minfrin@sharp.fm>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2: Fix terminating CGIs that aren't compiled by EMX GCC when a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding connection is aborted. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Force the LANG envariable to the known state of "C" so that we
cfa64348224b66dd1c9979b809406c4d15b1c137fielding have assurance about how string manipulators (e.g., tr) will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding function. [Ken Coar] PR#1630
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a directive to allow customising of the tracking cookie name.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#2921, 4303
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add "force-no-vary" envariable to allow servers to work around
cfa64348224b66dd1c9979b809406c4d15b1c137fielding clients that choke on "Vary" fields in the response header.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar, Dmitry Khrustalev <dima@zippy.machaon.ru>] PR#4118
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed a bug in mod_dir that causes a child process will infinitely
cfa64348224b66dd1c9979b809406c4d15b1c137fielding recurse when it attemps to handle a request for a directory wnd the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding value of the DirectoryIndex directive is a single dot. Also likely
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to happen for anyother values of DirectoryIndex that will map back
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the same directory. The handler now only considers regular files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as being index candidates. No PR#s found.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Raymond S Brand <rsbx@rsbx.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Ease configuration debugging by making TestCompile fall back to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding using "make" if the $MAKE variable is unset [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed the ServerSignature directive to work as documented.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Raymond S Brand <rsbx@rsbx.net>] PR#4248
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add "opt" (SysV-style) layout to config.layout. [Raymond S Brand
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <rsbx@rsbx.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add APACI --without-execstrip option which can be used to disable the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding stripping of executables on installation. This is very important for DSO
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and debugging situations. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for OS/2 (case insenstive filesystem, .exe suffix, etc)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to APACI files and related scripts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Yitzchak Scott-Thoennes <sthoenna@efn.org>, Ralf S. Engelschall] PR#4269
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for standalone mode in TPF
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Joe Moenich <moenich@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix number of bytes copied by read_connection() in src/support/ab.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Cox <jc@superlink.net>] PR#4271
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix special RewriteCond "-s" pattern matching.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Bob Finch <bob@nas.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix value quoting in src/Configure script for ap_config_auto.h
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton <paul@awe.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure RewriteLock can be used only in the global context, (i.e.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding outside of any <VirtualHost> sections) because it's a global facility of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the rewrite engine. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the ownership delegation for proxy directory under `make install'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) APACI would not correctly build suexec. [Maria Verina
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <mariav@icgeb.trieste.it>] PR#4260
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_mime_magic passed only the first 4k of a file to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding uncompress/gzip, but those tools sometimes do not produce
cfa64348224b66dd1c9979b809406c4d15b1c137fielding any output unless a sufficient portion of the compressed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file is input. Change to pass the entire file -- but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only read 4k of output.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marcin Cieslak <saper@system.pl>] PR#4097
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "IndexOptions None" generated extra spaces at the end of each
cfa64348224b66dd1c9979b809406c4d15b1c137fielding line. [inkling@firstnethou.com] PR#3770
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The "100 Continue" response wasn't being sent after internal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirects. [Jose KAHAN <kahan@w3.org>] PR#3910, 3806, 3575
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When padding the name with spaces for display, mod_autoindex would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding count &, <, and > in their escaped width, messing up the display.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#4075, 3758
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: fixed a compilation problem on NEXT.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jacques Distler <distler@golem.ph.utexas.edu>] PR#4130
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) r->request_time wasn't being set properly in certain error conditions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#4156
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: deal with UTS compiler error in http_protocol.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dave Dykstra <dwd@bell-labs.com>] PR#4189
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add ap_vrprintf() function. [John Tobey <jtobey@banta-im.com>] PR#4246
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the mod_mime hash table to work properly with locales other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than C. [Dean Gaudet] PR#3427
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a memory leak which is exacerbated by certain configurations.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#4225
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Prevent clobbering saved IFS values in APACI. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix buffer overflows in ap_uuencode and ap_uudecode pointed out
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by "Peter 'Luna' Altberg <peter@altberg.nu>" and PR#3422
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Peter 'Luna' Altberg <peter@altberg.nu>, Ronald Tschal�r]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make {Set,Unset,Pass}Env per-directory instead of per-server.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct an apparent typo: on the Windows and MPE platforms, the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htpasswd utility was limiting passwords to only 8 characters.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) EBCDIC platforms: David submitted patches for two bugs in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MD5 digest port for EBCDIC machines:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a) the htdigest utility overwrote the old contents of the digest file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding b) the Content-MD5 header value (ContentDigest directive) was wrong
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when the returned file was not converted from EBCDIC, but was a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding binary (e.g., image file) in the first place.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David McCreedy <mccreedy@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) support/htpasswd now permits the password to be specified on the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding command line with the '-b' switch. This is useful when passwords
cfa64348224b66dd1c9979b809406c4d15b1c137fielding need to be maintained by scripts -- particularly in the Win32
cfa64348224b66dd1c9979b809406c4d15b1c137fielding environment. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: Win32 multiple services patch. Added capability to install and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding run multiple copies of apache as individual services.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apache -n apache1 -i -f c:/httpd.conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Installs apache as service 'apache1' and associates c:/httpd.conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with that service.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding net start apache1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Starts apache1 service.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding net stop apache1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Stops apache1 service
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apache -n apache2 -i
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Installs apache as service 'apache2'. httpd.conf is located under
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the default server root (/apache/conf/httpd.conf).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding net start apache2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Starts apache2 service.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apache -n apache3 -i -d c:/program files/apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Install apache as service 'apache3' and sets server root to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apache -n apache2 -k restart
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Restart apache2 service
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Keith Wannamaker, Ken Parzygnat, Bill Stoddard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct the signed/unsigned character handling for the MD5 routines;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mismatches were causing compilation problems with gcc -pedantic and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the TPF cross-compilation. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2: Rework CGI handling to use spawn*() instead of fork/exec, achieving
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a roughly 5 fold speed up. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) proxy ftp: instead of using the hardwired string "text/plain" as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a fallback type for files served by the ftp proxy, use the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_default_type() function to determine the configured type.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This allows for special configurations like
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Directory proxy:ftp://some.host>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding </Directory>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally, add the Content-Encoding: header to FTP proxy replies
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when the encoding is defined (by the AddEncoding directive).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Because it was missing, it was almost impossible to browse compressed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files using the FTP proxy (works now perfectly in Communicator).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The ftp proxy now also returns the Date: and Server: header lines (if not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding much else... This code is "somewhat" broken) like normal requests do.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Be more smart in APACI's configure script when determining the UID/GID
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for User/Group directives and use the determined UID/GID to initialize
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the permissions on the proxycachedir.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk-Willem van Gulik, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changed the forking-prior-to-cleanup in the proxy module to first
cfa64348224b66dd1c9979b809406c4d15b1c137fielding check wether it actually needs to collect garbage. This reduces
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the number of fork()s from one/request to just the odd one an hour.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk-Willem van Gulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added proxy, auth and header support to src/support/ab.c. Added a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding README file to src/support/
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk-Willem van Gulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't hard-code the path to AWK in --shadow bootstrapping Makefile.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#4050
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for DSO module compilation on BSD/OS 3.x.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush, Covalent Technologies]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix sed-substitutions in `make install': path elements like `httpd/conf'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (for instance from an APACI configure --sysconfdir=/etc/httpd/conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding option) were substituted with $(TARGET).conf, etc. Same for other strings
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with dots where the dot wasn't matched as plain text.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add support for FreeBSD 4.x [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix verbose output of APACI configure (option -v)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.6
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed new PassAllEnv code due to DSO problems. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.5 [not released]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) M_INVALID needed a value within the scope of METHODS so that unknown
cfa64348224b66dd1c9979b809406c4d15b1c137fielding methods can be access controlled. [Roy Fielding] PR#3821
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added PassAllEnv; makes server's entire environment available
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to CGIs and SSIs executed within directive's scope. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_uuencode() always added two trailing '='s and encoding of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 8 bit characters on a machine with signed char may produced
cfa64348224b66dd1c9979b809406c4d15b1c137fielding incorrect results. Additionally ap_uuencode() should now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work correctly on EBCDIC platforms.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Tschal�r <ronald@innovation.ch>] PR#3411
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Binary installer now runs the configuration DLL before
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the reboot prompt (which is only given if MSVCRT.DLL system
cfa64348224b66dd1c9979b809406c4d15b1c137fielding DLL is new or updated). This should avoid the configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory being empty after installation. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#3767, 3800, 3827, 3850, 3900, 3953, 3988
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Binary installer now creates Start menu options to start
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and stop Apache as a console application and to uninstall
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the Apache service on NT. [Paul Sutton] PR#3741
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Apache.exe now contains an icon. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Switch back to using fcntl() locking on Linux -- instabilities
cfa64348224b66dd1c9979b809406c4d15b1c137fielding have been reported with flock() locking (probably related to kernel
cfa64348224b66dd1c9979b809406c4d15b1c137fielding version). [Dean Gaudet] PR#2723, 3531
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Using APACI, the main config file (usually httpd.conf) was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not being adjusted as $(TARGET).conf. [Wilfredo Sanchez
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: AIX does not require the SHARED_CODE "hack"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ryan Bloom <rbb@raleigh.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set-Cookie headers were being doubled up for some CGIs by the O(n^2)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding avoidance code added in 1.3.3.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Jeff Lewis <lewis@stanford.edu>] PR#3872
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_isxdigit was somehow neglected when adding the ap_isfoo() macros
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for 8-bit safeness. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Use -fPIC instead of -fpic on Solaris and SunOS for compiling DSOs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because SPARCs have a small machine-specific maximum size for the Global
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Offset Table which is often exceeded when compiling one of the larger
cfa64348224b66dd1c9979b809406c4d15b1c137fielding third-party modules with Apache. [Peter Urban <Peter.Urban@epfl.ch>] PR#3977
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move the directive `ExtendedStatus' in httpd.conf-dist-win _after_ the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding DSO/DLL section because it's a directive from mod_status and isn't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding available before the DLL of mod_status is loaded.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin POESCHL <mpoeschl@gmx.net>] PR#3936
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Fix a bug in the calculation of the buffer size for the line
cfa64348224b66dd1c9979b809406c4d15b1c137fielding continuation facility in Apache's configuration files which could
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lead to a buffer overflow situation.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Thomas Devanneaux <Thomas.Devanneaux@enst.fr>] PR#3617
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make documentation and error messages of APACI's --activate-module=FILE
cfa64348224b66dd1c9979b809406c4d15b1c137fielding option more clear. [Jan Wolter <janc@wwnet.net>] PR#3995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the gcc version check (for enabling the `inline' facility) to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding really support all future gcc versions >= 2.7 until we know more.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [John Tobey <jtobey@banta-im.com>] PR#3983
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Let APACI's configure script correctly complain for unknown --enable-XXX
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and --disable-XXX options. [Ralf S. Engelschall] PR#3958
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Link the shared core bootstrap program (``Rule SHARED_CORE=yes'') also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding against libap.a and use its ap_snprintf() instead of sprintf() to avoid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding possible buffer overflows. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove no longer used non-API function ap_single_module_init().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add Apple's Mac OS X Server Layout "Rhapsody" to config.layout.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add cgidir, htdocsdir, iconsdir variables to Makefile.tmpl in order
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to make platform installations easier. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In configure, do not append the target name to the directory path if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the path already contains "apache". [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SIGPIPE is now ignored by the server core. The request write routines
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (ap_rputc, ap_rputs, ap_rvputs, ap_rwrite, ap_rprintf, ap_rflush) now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding correctly check for output errors and mark the connection as aborted.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Replaced many direct (unchecked) calls to ap_b* routines with the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding analogous ap_r* calls. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enhanced mod_rewrite's mapfile handling: The in-core cache for text and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding DBM format mapfiles now uses a 4-way hash table with LRU functionality.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Furthermore map lookups for non-existent keys are now cached as well.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally "txt" maps are now parsed with simple string functions
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of using ap_pregcomp(). As a side effect a bug that prevented
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the usage of keys containing the "," character was fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The changes drastically improve the performance when large rewrite maps
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are in use.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Michael van Elst <mlelstv@serpens.swb.de>, Lars Eilebrecht] PR#3160
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added ap_sub_req_method_uri() for doing a subrequest with a method
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other than GET, and const'd the definition of method in request_rec.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Greg Stein]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use proper pid_t type for saving PIDs in alloc.c. [John Bley]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replaced use of WIN32 define with HAVE_DRIVE_LETTERS to indicate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when the OS allows a DOS drive letter within pathnames. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add %V to mod_log_config, this logs the hostname according to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding UseCanonicalName setting (this is the pre-1.3.4 behaviour of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding %v). Useful for mass vhosting. [Tony Finch <dot@dotat.at>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for \n and \t to mod_log_config, can be used to produce
cfa64348224b66dd1c9979b809406c4d15b1c137fielding more reliable logs with multiline entries. [Tony Finch <dot@dotat.at>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed a few compiler nits. [John Bley <jbb6@acpub.duke.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added informative error messages for failed munmap() and fseek() calls
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in http_core.c. [John Bley, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added some informative error messages for some failed malloc()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calls. [John Bley <jbb6@acpub.duke.edu>, Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2 ap_os_canonical_filename()'s behaviour is improved: ap_assert()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is removed. This allows <Directory proxy:*> directives to work and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prevents invalid requests from killing the process.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard <brianh@kheldar.apana.org.au>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reorganised FAQ document.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Joshua Slive <slive@finance.commerce.ubc.ca>] PR#2497
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) src/support/: The ApacheBench benchmark program was overhauled by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding David N. Welton: you can now have it generate an HTML TABLE, presumably
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for integration into other HTML sources. David updated the ab man page
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as well and added some missing descriptions. Thanks!
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David N. Welton <davidw@prosa.it>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: The filename validity checker now allows filenames containing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding characters in the range 0x80 to 0xff (for example accented characters).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton] PR#3890
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added conditional logging based upon environment variables to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_log_config. mod_log_referer and mod_log_agent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are now deprecated. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow apache acting as a proxy server to relay the real
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reason of a failure to a client rather than the "internal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server error" it does currently. The general exposure mechanism
cfa64348224b66dd1c9979b809406c4d15b1c137fielding can be triggered by any module by setting the "verbose-error-to"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding note to "*"; this allows more than just proxy errors to be exposed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Cliff Skolnick, Roy Fielding, Martin Kraemer] Related to PR#3455, 4086
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Moved man pages for ab and apachectrl to section 8.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added -S option to install.sh so that options can be passed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strip on some platforms. [Ralf S. Engelschall, Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Tweak modules Makefile generated by Configure so that it handles
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the test case of no modules being selected. [chaz@reliant.com]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added a <LimitExcept method ...> sectioning directive that allows
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the user to assign authentication control to any HTTP method that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is *not* given in the argument list; i.e., the logical negation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the <Limit> directive. This is particularly useful for controlling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding access on methods unknown to the Apache core, but perhaps known by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some module or CGI script. [Roy Fielding, Tony Finch]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Prevent apachectl from complaining if the PIDFILE exists but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding does not contain a process id, as might occur if the server is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding being rapidly restarted. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: Add global symbols missing from ApacheCore.def. [Carl Olsen]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Entity tag comparisons for If-Match and If-None-Match were not being
cfa64348224b66dd1c9979b809406c4d15b1c137fielding performed correctly -- weak tags might cause false positives. Also,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strong comparison wasn't properly enforced in all cases.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding, Ken Coar, Dean Gaudet] PR#2065, 3657
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2: Supply OS/2 error code instead of errno on semaphore errors.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around a bug in Lynx regarding its sending "Negotiate: trans"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding even though it doesn't understand TCN. [Koen Holtman, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added ap_size_list_item(), ap_get_list_item(), and ap_find_list_item()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to util.c for parsing an HTTP header field value to extract the next
cfa64348224b66dd1c9979b809406c4d15b1c137fielding list item, taking into account the possible presence of nested comments,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding quoted-pairs, and quoted-strings. ap_get_list_item() also removes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding insignificant whitespace and lowercases non-quoted tokens.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding] PR#2065
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) proxy: The various calls to ap_proxyerror() can return HTTP/1.1 status
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code different from 500. This allows the proxy to, e.g., return
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "403 Forbidden" for ProxyBlock'ed URL's. [Martin Kraemer] Related to PR#3455
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix ordering of language variants for the case where the traditional
cfa64348224b66dd1c9979b809406c4d15b1c137fielding negotiation algorithm is being used with multiple language variants
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and no Accept-Language. [James Treacy <treacy@debian.org>] PR#3299, 3688
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Do not round the TCN quality calculation to 5 decimal places,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unlike RFC 2296, because the calculation might need 12 decimal places
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to get the right result. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove unused code to disable transparent negotiation when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding negotiating on encoding only, as we now handle encoding too
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (though this is nonstandard for TCN), remove charset=ISO-8859-1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fiddle from the fiddle-averse RVSA comparison, and fix bugs in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some debugging statements within mod_negotiation. [Koen Holtman]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed a rare memory corruption possibility in mod_dir if the index
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file is negotiable and no acceptable variant can be found.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Roy Fielding, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: Add new config directive, ScriptInterpreterSource, to enable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding searching the Win32 registry for script interpreters.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Bill Stoddard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: The compiled-in default filename for the error log is now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error.log, which matches the default in the distributed httpd.conf.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: Any error messages from -i or -u command line options are now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding displayed on the console output rather than sent to the error log.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Also the "Running Apache..." message is not output unless Apache is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding going to serve requests. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rework the MD5 authentication scheme to use FreeBSD's algorithm,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and use a private significator ('$apr1$') to mark passwords as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding being smashed with our own algorithm. Also abstract the password
cfa64348224b66dd1c9979b809406c4d15b1c137fielding checking into a new ap_validate_password() routine. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32: The filename validity checker now allows "COM" but refuses
cfa64348224b66dd1c9979b809406c4d15b1c137fielding access to "COM1" through "COM4". This allows filenames such
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as "com.name" to be served. [Paul Sutton] PR#3769.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) BS2000: Adapt to the new ufork() system call interface which will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding make subtasking easier on the OSD/POSIX mainframe environment.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a compatibility define for escape_uri() -> ap_escape_uri() to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_compat.h. [David White <david@persimmon.com>] PR#3725
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make NDBM file suffix determination for mod_rewrite more accurate, i.e.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding use `.db' instead of `.pag' not only for FreeBSD, but also when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the NDBM library looks like Berkeley-DB based.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#3773
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add ability to handle DES or MD5 authentication passwords.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ryan Bloom <rbb@Raleigh.IBM.Com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix O(n^2) memory consumption in mod_speling. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Avoid some buffer overflow problems when escaping
cfa64348224b66dd1c9979b809406c4d15b1c137fielding quoted strings. (This overflow was on the heap and we believe
cfa64348224b66dd1c9979b809406c4d15b1c137fielding impossible to exploit.) [Rick Perry <perry@ece.vill.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Let src/Configure be aware of CFLAGS options starting with plus
cfa64348224b66dd1c9979b809406c4d15b1c137fielding signs as it's the case for the HP/UX compiler.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug Yatcilla <yatcilda@umdnj.edu>] PR#3681
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove the hard-wire of TAR=tar (we now check for gtar and gnutar first)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and check to see if the tar we wind up with supports '-h'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski] PR#3671
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A consistent and conservative style for all shell scripts has been
cfa64348224b66dd1c9979b809406c4d15b1c137fielding implemented. Basically, all shell string tests use the traditional
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hack of 'if [ "x$var" != "x" ]' or 'if [ "x$var" = "xstring" ]'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to protect against bare null variable strings (ie: wrapping both
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sides with double quotes and prepending 'x'). 'x' was chosen
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because it's more universal and hopefully easier for old shell
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prgrammers, as well as being easier to search for in 'vi' (/x\$) :)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The status module now prints out both the main server generation as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding well as the generation of each process. Also, the vhost info is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding printed with '?notable'. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move src/main/md5c.c to src/ap/ap_md5c.c; it's httpd-neutral
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and this makes its functions available to things in src/support.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Renamed macros status_drops_connection to ap_status_drops_connection
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and vestigial scan_script_header to ap_scan_script_header_err,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mostly for aesthetic reasons. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The query switch "httpd -S" didn't exit after showing the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding vhost settings. That was inconsistent with the other query functions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Moved the MODULE_MAGIC_COOKIE from before the versions and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding filename to the end of the STANDARD_MODULE_STUFF. Its
cfa64348224b66dd1c9979b809406c4d15b1c137fielding presence at the beginning prevented reporting of the filename
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for modules compiled before 1 January 1999. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: ap_os_is_filename_valid() has been added to Win32
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to detect and prevent access to special DOS device file names.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton, Ken Parzygnat]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Created new makefiles Makefile_win32.txt (normal build)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and Makefile_win32_debug.txt (debug build) that work on Win95.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Run each of the following from the src directory:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nmake /f Makefile_win32.txt # compiles normal build
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nmake /f Makefile_win32.txt install # compiles and installs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nmake /f Makefile_win32.txt clean # removes compiled junk
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nmake /f Makefile_win32_debug.txt # compiles debug build
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nmake /f Makefile_win32_debug.txt install
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added binbuild.sh and findprg.sh helpers to make it easier for us
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to build binary distributions. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) IndexOptions SuppressColumnSorting only turned off making
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the column headers anchors; you could still change the display
cfa64348224b66dd1c9979b809406c4d15b1c137fielding order by manually adding a '?N=A' or similar query string to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding URL. Now SuppressColumnSorting locks in the sort order so
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it can't be overridden this way. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added IndexOrderDefault directive to supply a default sort order
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for FancyIndexed directory listings. [Ken Coar] PR#1699
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change the ap_assert macro to a variant that works on all platforms.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Richard Prinz <richard.prinz@cso.net>] PR#2575
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure under ELF-based NetBSD (now) and OpenBSD (future) we don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding search for an underscore on dlsym() (as it's already the case
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for FreeBSD 3.0). [Todd Vierling <tv@pobox.com>] PR#2462
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Small fix for mod_env.html: The module was documented as to be _not_
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compiled into Apache per default, although it _IS_ compiled into
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache per default. [Sim Harbert <sim@mindspring.com>] PR#3572
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Instead of fixing a bug in the generation procedure for config.status (a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding backslash was missing) we remove the bug together with it's complete
cfa64348224b66dd1c9979b809406c4d15b1c137fielding context because the special cases of the past can now no longer occur
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because of the recent magic for the --with-layout default.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#3590
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make top-level Makefile aware of a parallel build procedures (make -j) by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding making sure the src/support/ tools are _forced_ to be build last (they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding depend on other libraries).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Markus Theissinger <markus.theissinger@gmx.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix installation procedure: Now that os-inline.c is actually used (a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding recently fixed bug prevented this) we need to also install os-include.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in addition to os.h into the PREFIX/include/ location or building of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module DSOs with APXS fails. [Ralf S. Engelschall] PR#3527
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added MODULE_MAGIC_COOKIE as the first field in a module structure to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allow us to distinguish between a garbled DSO (or even a file which isn't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an Apache module DSO at all) and a DSO which doesn't match the current
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache API. [Ralf S. Engelschall] PR#3152
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Two minor enhancements to mod_rewrite: First RewriteRule now also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding supports the ``nocase|NC'' flag (as RewriteCond already does for ages) to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding match case insensitive (this especially avoids nasty patterns like
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `[tT][eE][sS][tT]'). Second two additional internal map functions
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `escape' and `unescape' were added which can be used to escape/unescape
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to/from hex-encodings in URLs parts (this is especially useful in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding combination with map lookups).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Magnus Bodin, Ian Kallen, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Renamed the macro escape_uri() to ap_escape_uri() which was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding forgotten (because it was a macro) in the symbol renaming process.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix some inconsistencies related to the scopes of directives. The only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user visible change is that the directives `UseCanonicalName' and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `ContentDigest' now use the (more correct) `Options' scope instead of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (less correct) `AuthConfig' scope. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Using DSO, the Server token was being mangled. Specifically, the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module's token was being added first before the Apache token. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has been fixed. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Major overhaul of mod_negotiation.c, part 2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - properly handle "identity" within Accept-Encoding.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - allow encoded variants in RVSA negotiation and let them appear in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the Alternates field using the non-standard "encoding" tag-list.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fixed both negotiation algorithms so that an explicitly accepted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding encoding is preferred over no encoding if "identity" is not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding included within Accept-Encoding.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - added ap_array_pstrcat() to alloc.c for efficient concatenation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of large substring sequences.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - replaced O(n^2) memory hogs in mod_negotiation with ap_array_pstrcat.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Major overhaul of mod_negotiation.c, part 1.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - cleanups to mod_negotiation comments and code structure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - made compliant with HTTP/1.1 proposed standard (rfc2068) and added
cfa64348224b66dd1c9979b809406c4d15b1c137fielding support for everything in the upcoming HTTP/1.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - language tag matching also handles tags with more than 2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding levels like x-y-z
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - empty Accept, Accept-Language, Accept-Charset headers are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding processed correctly; previously an empty header would make all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding values acceptable instead of unacceptable.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - allowed for q values in Accept-Encoding
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - added support for transparent content negotiation (rfc2295 and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rfc2296) (though we do not implement all features in these drafts,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding e.g. no feature negotiation). Removed old experimental version.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - implemented 'structured entity tags' for better cache correctness
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (structured entity tags ensure that caches which can deal with Vary
cfa64348224b66dd1c9979b809406c4d15b1c137fielding will (eventually) be updated if the set of variants on the server
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is changed)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - this involved adding a vlist_validator element to request_rec
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - this involved adding the ap_make_etag() function to the global API
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - modified guessing of charsets used by Apache negotiation algorithm
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to guess 'no charset' if the variant is not a text/* type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - added code to sort multiviews variants into a canonical order so that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding negotiation results are consistent across backup/restores and mirrors
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - removed possibility of a type map file resolving to another type map
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file as its best variant
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Koen Holtman, Roy Fielding, Lars Eilebrecht] PR#3451, 3299, 1987
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) RFC2396 allows the syntax http://host:/path (with no port number)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but the proxy disallowed it (ap_proxy_canon_netloc()).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Kristol <dmk@bell-labs.com>] PR#3530
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When modules update/modify the file name in the configfile_t structure,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding syntax errors will report the updated name, not the original one.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Fabien Coelho <coelho@cri.ensmp.fr>] PR#3573
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct some filename case assumptions from WIN32 to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CASE_BLIND_FILESYSTEM. [Brian Havard <brianh@kheldar.apana.org.au>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) For %v log ServerName regardless of the UseCanonicalName
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setting (similarly for %p). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure was initializing the variables $OSDIR, $INCDIR and $SHELL
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rather late (too late for some invocations of TestCompile).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This improves the make environment available to TestCompile and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the *.module scripts. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The hashbang emulation code in ap_execve.c would interpret
cfa64348224b66dd1c9979b809406c4d15b1c137fielding #!/hashbang/scripts correctly, but failed to fall back to a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding standard shell for scripts which did NOT start with #!
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Now SHELL_PATH is started in these cases. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Added the Cyberguard V2 port [Richard Stagg <stagg@lentil.org>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Update APXS manual page: some -q option arguments were missing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and another was incorrect. [Mark Anderson <mda@discerning.com>] PR#3553
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleanup the command line options: `-?' was documented to show
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the usage list but does it with an error because `?' is not a valid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding command. OTOH a lot of users expect `-h' to print such a usage list and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead are annoyed for ages by our huge unreadable list of directives.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding So we now changed the command line options this way:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1. `-L' => `-R'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Intent: we need `-L' to be free, and `-R' for the DSO run-time path is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding very similar to the popular linker option.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2. `-h' => `-L'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Intent: while -l gives the small list of modules, -L now gives the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding large list of directives implemented by these modules. This is also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding consistent with -v (short version info) and -V (large version info).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3. `-?' => `-h'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Intent: it's now the expected option ;-)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The manual page was adjusted accordingly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2714
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem of fclose() on an unopened file in suexec if LOG_EXEC
cfa64348224b66dd1c9979b809406c4d15b1c137fielding wasn't defined. [Rick Franchuk <rickf@transpect.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed recently introduced bugs and disfigurements in APACI:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fixed argument line processing: using $args was broken: It was not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initialized and using args="$args $apc_option" and even args="$args
cfa64348224b66dd1c9979b809406c4d15b1c137fielding \"$apc_option\"" fails in the second processing round for any arguments
cfa64348224b66dd1c9979b809406c4d15b1c137fielding containing whitespaces. The only correct way is to use the construct
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "$@" (but not possible here) or iterate _both_ times over the implicit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding argument line (no argument to for-loop) which is what we now use.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o make --with-layout=Apache the default without creating
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redundancy (copying the --with-layout block in the argument parsing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding loop). We achieve this by using the "$@" construct together with the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `set' command to prepend --with-layout=Apache to the command line in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding case --with-layout is not used.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fixed auto-suffix handling now that config.layout exists.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Paths which are auto-suffixed are marked with a trailing plus sign in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding config.layout and every path now can be marked this way (not only the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding four paths for which we do it currently). Additionally the suffix is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no longer a static one. Instead it's now `/<target>' where <target> is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the argument of the --target option or per default `httpd'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o allow also tabs (and only spaces) where we match whitespaces
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o various fixes and cleanups related to used shell coding style
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o made Jim happy by replacing `Written by' with `Initially written by' ;-)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o trimmed output of --help to fit into 80 columns
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added two new core API functions, ap_single_module_configure() and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_single_module_init(), which are now used by mod_so to configure a module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding after loading. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add defines for USE_FLOCK_SERIALIZED_ACCEPT and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SINGLE_LISTEN_UNSERIALIZED_ACCEPT to NetBSD/OpenBSD section
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of ap_config.h to allow serialized accept for multiport listens.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding, Curt Sampson] PR#3120
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fixed a misplaced #endif for NetBSD/OpenBSD section
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of ap_config.h that would skip several defines if DEFAULT_GROUP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was overridden. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: The I86 version of DGUX has support for strncasecmp and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strcasecmp, so allow it in ap_config.h. [Amiel Lee Yee] PR#3247
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix ordering of definitions in ap_config.h so that ap_inline is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defined before it might be used. [Victor Khimenko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add Dynamic Shared Object (DSO) support for BSDI (v4.0).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Tom Serkowski <tks@bsdi.com>] PR#3453
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make generation of src/Configuration.apaci more robust: It failed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding differenciate between modules when one module name was a postfix of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding another (e.g. cgi vs. fastcgi). We now check for mod_XXX, libXXX and even
cfa64348224b66dd1c9979b809406c4d15b1c137fielding just XXX (think about totally non-standard names like "apache_ssl", too).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#3380
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In src/Configure remove the SERVER_SUBVERSION support (already deprecated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since 1.3b7) and make whitespace handling more robust (it failed horrible
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when whitespaces were present in the arguments of -D options).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#3240
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add APACI --shadow=DIR variant (in addition to --shadow). This now first
cfa64348224b66dd1c9979b809406c4d15b1c137fielding creates an external package shadow tree in DIR before the local build
cfa64348224b66dd1c9979b809406c4d15b1c137fielding shadow tree is generated under DIR. This way one can have the extracted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache distribution tree read-only on NFS or CDROM and still build Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from these sources. An automatically triggered VPATH-like mechanism is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding provided through the TOP variable, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall, Wilfredo Sanchez <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix negotiation so that a Vary response header is correctly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generated when, for a particular dimension, variants only vary
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in having or not having a value for that dimension. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix negotiation so that we prefer an encoded variant over an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unencoded variant if the user-agent explicitly says it can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accept that encoding. Previously we always preferred the unencoded
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Ausbeck <paula@alumni.cse.ucsc.edu>, Paul Sutton] PR#3447
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix APXS tool: query variables LIBS_SHLIB and TARGET were not recognized
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and the usage page was inconsistent with the functionality and manpage.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow special options -Wc,xxx and -Wl,xxx on APXS compile/link command.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding They can occur multiple times and their arguments (`xxx') are passed AS
cfa64348224b66dd1c9979b809406c4d15b1c137fielding IS to the compiler/linker command. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed possible (but harmless in practice) bug in the DBM lookup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding procedure of mod_rewrite: very long keys were truncated.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added a generic --with-layout=[FILE:]ID option. ID here is a layout
cfa64348224b66dd1c9979b809406c4d15b1c137fielding identifier, currently "Apache" and "GNU" are pre-defined in the file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding config.layout. Custom layouts are possible by using FILE:ID as the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding argument where the layout ID is taken from FILE.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The config.layout file consists of <Layout ID>..</Layout> sections
cfa64348224b66dd1c9979b809406c4d15b1c137fielding where inside those sections "path_variable: path_value" pairs can be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding specified. These lines are converted to path_variable='path_value'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a DefaultLanguage directive so that files missing a language
cfa64348224b66dd1c9979b809406c4d15b1c137fielding extension (e.g., .fr, .de) can be labelled as being some other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding default language. DefaultLanguage can appear in <Directory> and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Files> containers as well as .htaccess files. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix TARGET configuration when configuring and installing using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding APACI configure. TARGET now defines the basename of the configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file, startup script, manual page, etc. log_error_core() now reports
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the server binary name given by argv[0]. TARGET can now also be defined
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with --target=TARGET parameter passed to APACI configure.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf Engelschall, Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include.c:handle_perl() now properly tests for OPT_INCNOEXEC
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rather than OPT_INCLUDES [Rainer Schoepf <schoepf@uni-mainz.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_md5_binary() was using sprintf() rather than a table lookup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to convert binary bytes to hex digits.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Tschal�r <ronald@innovation.ch>] PR#3409
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix SEGV in TCN negotiation if no variants are acceptable.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>] PR#1987
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: ap_exists_config_define() function is now "public" [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix documentation of `Action' directive: It can activate a CGI script
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when either a handler or a MIME content type is triggered by the request.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Andrew Pimlott <pimlott@math.harvard.edu>] PR#3340
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Document the `add' command of `dbmmanage' in `dbmmanage.1' manpage.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David MacKenzie <djm@uu.net>] PR#3394
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Ignore a "ErrorDocument 401" directive with a full URL and write a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding notice to the error log. It is not possible to send a 401 response
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and a redirect at the same time. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fallback to native compilers for IRIX-32 platform. It seems that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a gcc 2.8.1 compiled apache is logging client addresses with all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bits set (255.255.255.255). This is the second such problem caused
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by gcc 2.8.1 compiler. The first being broken semaphore locking.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated mime.types to reflect current Internet media types
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and include a URL to the registry.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Manoj Kasichainula, Roy Fielding] PR#2380, 2286, 2246
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Do a more complete check in mod_include to avoid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an infinite loop of recursive SSI includes. [Marc Slemko] PR#3323
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add APACI --suexec-docroot and --suexec-logfile options which can be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used to set the document root directory (DOC_ROOT) and the suexec
cfa64348224b66dd1c9979b809406c4d15b1c137fielding logfile (LOG_EXEC), respectively. Additionally the --layout option
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was changed to show more information about the suEXEC setup.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht] PR#3316, 3357, 3361
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added the last two WebDAV status codes of 424 (Failed Dependency)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and 507 (Insufficient Storage) for use by third-party modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enabled all of the WebDAV method names for use by third-party
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules, Limit, and Script directives. That includes PATCH,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PROPFIND, PROPPATCH, MKCOL, COPY, MOVE, LOCK, and UNLOCK.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Improved mod_actions.c so that it can use any of the methods
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defined in httpd.h. Added ap_method_number_of(method) for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding getting the internal method number. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add a port to the TPF OS. [Joe Moenich <moenich@us.ibm.com> and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding others at IBM]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problems with handling of UNC names (e.g., \\host\path)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on Win32. [Ken Parzygnat <kparz@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rework os_canonical_*() on Win32 so it's simpler, more
cfa64348224b66dd1c9979b809406c4d15b1c137fielding robust, and works. [Ken Parzygnat <kparz@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#2555, 2915, 3064, 3232
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around incomplete implementation of strftime on Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Manoj Kasichainula, Ken Parzygnat <kparz@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move a typedef to fix compile problems on Linux with 1.x kernels.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Manoj Kasichainula] PR#3177
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add a port to the Concurrent PowerMAX OS. [Tom Horsley
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Tom.Horsley@mail.ccur.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Log more explicit error messages if spawning an interpreted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script failed, including the command line used to attempt to execute
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the interpreter and the Win32 error code returned. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Disable sending of error-notes on a 500 (Internal Server Error) response
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since it often includes file path info. Enable sending of error-notes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on a 501 (Method Not Implemented). [Roy Fielding] PR#3173
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) http_config.c would respond with 501 (Method Not Implemented) if a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding content type handler was specified but could not be found, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding should have been a 500 response. Likewise, mod_proxy.c would responsd
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with a 501 if the URI scheme is unrecognized instead of the correct
cfa64348224b66dd1c9979b809406c4d15b1c137fielding response of 403 (Forbidden). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Eliminate DoS attack when a bad URI path contains what
cfa64348224b66dd1c9979b809406c4d15b1c137fielding looks like a printf format escape. [Marc Slemko, Studenten Net Twente]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix in mod_autoindex: for files where the last modified time stamp was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unavailable, an empty string was printed which was 2 bytes short.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The size and description columns were therefore not aligned correctly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer] (no PR#)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Update BS2000 OS code to work with recent versions. Starting with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding release A17, the child fork() must be replaced by a _rfork().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (BS2000 only) [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the actual server_rec structure of the specific Vhost to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard file and avoid a string copy (as well as allow some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding further future enhancements). [Harrie Hazewinkel
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <harrie.hazewinkel@jrc.it>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add APACI --permute-module=foo:bar option which can be used to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on-the-fly/batch permute the order of two modules (mod_foo and mod_bar)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the Configuration[.apaci] file. Two special and important variants are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding supported for the option argument: first BEGIN:foo which permutes module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_foo with the begin of the module list, i.e. it `moves' the module to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the begin of the list (gives it lowest priority). And second foo:END
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which permutes mod_foo with the end of the module list, i.e. it `moves'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the module to the end of the list (gives it highest priority).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problem with 'apache -k shutdown' and startup event
cfa64348224b66dd1c9979b809406c4d15b1c137fielding synchronisation (Win32). [Ken Parzygnat <kparz@raleigh.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The config parser wasn't correctly noticing a missing '>'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on container start lines (e.g., it wouldn't spot
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "<Directory /" as a syntax error). [Ryan Bloom <rbbloom@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a 'RemoveHandler' directive which will selectively remove
cfa64348224b66dd1c9979b809406c4d15b1c137fielding all handler associations for the specified file extensions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ryan Bloom <rbbloom@us.ibm.com>] PR#1799.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly handle & allow "nul" and ".*/null" in AccessConfig and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ResourceConfig directives on Win32. Also add a note to the effect
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of 'useless User directive ignored on Win32' to the errorlog if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a User directive is encountered on Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2078, 2303.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix multiple whitespace handling in imagemaps for mod_imap which was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding broken since Apache 1.3.1 where we took out compressing of multiple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spaces in ap_cfg_getline().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ivan Richwalski <ivan@seppuku.net>] PR#3249
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix Berkeley-DB/2.x support in mod_auth_db: The data structures were not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initialized correctly and the db_open() call used an invalid mode
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parameter. [Ron Klatchko <ron@ckm.ucsf.edu>] PR#3171
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: DSO support for UnixWare 7
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall, Ron Record <rr@sco.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Merge the contents of the {srm,access}.conf-dist* files into the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding httpd.conf-dist* files. The srm and access files now contain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only comments, and httpd.conf has all the combined contents in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a rational order. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: DSO/ELF support for FreeBSD 3.0.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall, Dirk Froemberg <ibex@physik.TU-Berlin.DE>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a "default-handler" handler that calls the default_hander()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding function which is normally called for static content. This allows
cfa64348224b66dd1c9979b809406c4d15b1c137fielding you to override a specific handler. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Further simplify checking for absolute paths by replacing an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hard-coded syntax check with a call to a routine we already created to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding do this. [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Log an error if we encounter a malformed "require" directive
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in mod_auth if we know that we know that no other module can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding deal with it. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove ap_private_extern method of hiding conflicting symbols
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on the NEXT platform because it is not correct for all versions,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and the versions for which it is correct are unknown.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix inheritance of IndexOptions NameWidth and remove unintended
cfa64348224b66dd1c9979b809406c4d15b1c137fielding restriction on +NameWidth, +IconHeight, and +IconWidth. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix per-directory config merging for cases in which a 500 error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is encountered in an .htaccess file somewhere down the tree.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#2409
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor performance improvement to ap_escape_html(). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed a segmentation violation in mod_proxy when a response is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding non-cachable. [Roy Fielding, traced by Doug Bloebaum]. PR#2950, 3056
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added a complete implementation of the Expect header field as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding specified in rev-05 of HTTP/1.1. Disabled the 100 Continue
cfa64348224b66dd1c9979b809406c4d15b1c137fielding response when we already know the final status, which is mighty
cfa64348224b66dd1c9979b809406c4d15b1c137fielding useful for PUT responses that result in 302 or 401. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove extra trailing whitespace from the getline results as part
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the protocol processing, which is extra nice because it works
cfa64348224b66dd1c9979b809406c4d15b1c137fielding between continuation lines, is almost no cost in the normal case
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of no extra whitespace, and saves memory. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added new HTTP status codes and default response bodies from the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding revised HTTP/1.1 (307, 416, 417), WebDAV (102, 207, 422, 423), and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HTTP Extension Framework (510) specifications. Did not add the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding WebDAV 424 and 425 codes because they are bogus. We don't use any
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of these codes yet, but they are now available to 3rd-party modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a possible race condition between timed-out requests and the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_bhalfduplex select that might result in an infinite loop on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding platforms that do not validate the descriptor. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Add "-k shutdown" and "-k restart" options to signal a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding running Apache server [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix mod_autoindex bug where directories got a size of "0k" instead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of "-". [Martin Plechsmid <plechsmi@karlin.mff.cuni.cz>, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: DRS 6000 machine. [Paul Debleecker <pdebleecker@jetair.be>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the server signature text (from the core ServerSignature directive)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the list of envariables available to scripts, SSI, and the like.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix sys/resource.h handling for SCO 3.x platform.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [M. Laak <maert@proinv.ee>] PR#3108
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fallback from sysconf-based to plain HZ-based `ticks per second'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calculation in mod_status for all systems which don't have POSIX
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sysconf() (like UTS 2.1) and not only for the NEXT platform.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dave Dykstra <dwd@bell-labs.com>] PR#3055
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix `require ...' directive parsing in mod_auth, mod_auth_dbm and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth_db by using ap_getword_white() (which uses ap_isspace())
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of ap_getword(..., ' ') (which parses only according to spaces
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but not tabs). [James Morris <jmorris@intercode.com.au>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Ralf S. Engelschall] PR#3105
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the SERVER_NAME variable under sub-request situations (where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `UseCanonicalName off' is used) like CGI's called from SSI pages or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RewriteCond variables by adopting r->hostname to sub-requests.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [James Grinter <jrg@blodwen.demon.co.uk>] PR#3111
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix stderr redirection under syslog-based error logging situation.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3095
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Document `ErrorLog syslog:facility' variant of error logging.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#3096
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix http://localhost/ hints in top-level INSTALL document.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rob Jenson <robjen@spotch.com>, Ralf S. Engelschall] PR#3088
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Quote paths in default configuration files. [Wilfredo Sanchez]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Remove extra HAVE_SYS_RESOURCE_H define for RHAPSODY since
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it is now taken care of properly by the header file tests.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problem with scripts and filehandle inheritance on Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2884, 2910
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Win32 name canonicalisation could end up using the server's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding working directory to fill in some blanks. [Ken Parzygnat
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <kparz@raleigh.ibm.com>] PR#3001
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct invalid assumption by ap_sub_req_lookup_file() that all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding absolute paths begin with "/" -- because they don't on Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Parzygnat <kparz@raleigh.ibm.com>] PR#2976, 3074
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add [REDIRECT_]VARIANTS environment variable to mod_speling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so that ErrorDocument 300 processors can reformat the list
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if desired. [Ken Coar] PR#2859
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add +/- incremental prefixes to IndexOptions keywords, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding enable merging of multiple IndexOptions directives. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Allow GuessOS to recognize Unixware 7.0.1 [Steve Cameron
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <steve.cameron@compaq.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reconstructed the loop through multiple htaccess file names so
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that missing files are not confused with unreadable files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The ap_pfopen and ap_pfdopen routines were failing to protect the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding errno on an error, which leads to one error being mistaken for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding another when reading non-existent .htaccess files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2: The new header tests get things right, need to update
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_config.h. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The Perl %ENV hash will now be setup by default when using the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_include `perl' command [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add Pyramid DC/OSx support to configuration mechanism.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Earle Ake <akee@wpdiss1.wpafb.af.mil>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix sys/resource.h handling for Amdahl's UTS 2.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dave Dykstra <dwd@bell-labs.com>] PR#3054
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct comment in mod_log_config.c about its internals.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Elf Sternberg <elf@halcyon.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Avoid possible line overflow in Configure: Use an awkfile to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handle the creation of modules.c [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug in ap_remove_module(), which caused problems for dso's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding who were the top_module. [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for Berkeley-DB/2.x (in addition to Berkeley-DB/1.x) to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth_db to both be friendly to users who wants to use this version
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and to avoid problems under platforms where only version 2.x is present.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dan Jacobowitz <drow@false.org>, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When using ap_log_rerror(), make the error message available to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *ERROR_NOTES envariables by default. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) BS2000 platform only: get rid of the nasty BS2000AuthFile.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding You now must define a BS2000Account name for the server User.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This has fewer security implications than the old approach.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix SHARED_CORE feature for HPUX platform: We now use extension `.sl'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of `.so' and `SHLIB_PATH' instead of `LD_LIBRARY_PATH' on this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding platform to make the braindead HPUX linker happy. Notice, for the module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding DSOs we don't have to use this, because these are loaded manually (and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not via HPUX' dld). [Ralf S. Engelschall] PR#2905, PR#2968
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove 64 thread limit on Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Bill Stoddard <stoddard@raleigh.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove redundant substitutions in top-level Makefile.tmpl.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix APACI's `Group' configuration adjustment - especially for Linux
cfa64348224b66dd1c9979b809406c4d15b1c137fielding platforms where `nogroup' exists in /etc/group. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make PrintPath work generically instead of having one version
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strictly for OS/2. [Jim Jagielski, Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the recently introduced C header file checking: We now use the C
cfa64348224b66dd1c9979b809406c4d15b1c137fielding pre-processor pass only (and no longer the complete compiler pass) to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding determine whether a C header file exists or not. Because only this way
cfa64348224b66dd1c9979b809406c4d15b1c137fielding we're safe against inter-header dependencies (which caused horrible
cfa64348224b66dd1c9979b809406c4d15b1c137fielding portability problems). The only drawback is that we now have a CPP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuration variable which has to be determined first (we do a similar
cfa64348224b66dd1c9979b809406c4d15b1c137fielding approach as GNU Autoconf does here). When all fails the user still has
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the possibility to override it manually via APACI or src/Configuration.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding As a fallback for the header check itself we can directly check the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding existance of the file under /usr/include, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2777
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Added RHAPSODY (Mac OS X Server) support. MAP_TMPFILE defined
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as an alternate mechanism for mmap'd shared memory for RHAPSODY.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_private_extern defined to hide symbols that conflict with loaded
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dynamic libraries on the NEXT and RHAPSODY platforms.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Delete PID file on clean shutdowns.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Charles Randall <crandall@matchlogic.com>] PR#2947
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix mod_auth_*.html documents: NSCA -> NCSA
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2991
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix INSTALL document: www.gnu.ai.mit.edu -> www.gnu.org
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Karl Berry <karl@gnu.org>] PR#2994
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix dbmmanage.1 manual page.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.org>] PR#2992
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix possible buffer overflow situation in suexec.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jeff Stewart <jws@purdue.edu>] PR#2790
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add some more LIBS for the SCO5 platform which are needed for the already
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used -lprot. It's actually a bug in SCO5, of course.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Record <rr@sco.com>] PR#2533
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix documentation of ProxyPass/ProxyPassReverse according to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding trailing slash problem. [Jon Drukman <jsd@gamespot.com>] PR#2933
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove `-msym' option from LDFLAGS_SHLIB for the Digital UNIX (OSF/1)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding platform, because it's only supported under version 4.0 and higher. But
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because our GuessOS is still unaware of Digital UNIX versions and the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -msym is just to optimize the DSO statup time a little bit it's safe and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding best when we leave it out now. [Ralf S. Engelschall] PR#2969
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the ap_log_error_old(), ap_log_unixerr() and ap_log_printf()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions: First all three functions no longer fail on strings containing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "%" chars and second ap_log_printf() no longer does a double-formatting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (instead it directly passes through the message to be formatted to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding real internal formatting function). [Ralf S. Engelschall] PR#2941
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow "Include" directives anywhere in the server config
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files (but not .htaccess files). [Ken Coar] PR#2727
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The proxy was refusing to serve CONNECT requests except to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding port 443 (https://) and 563 (snews://). The new AllowCONNECT
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directive allows the configuration of the ports to which a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CONNECT is allowed. [Sameer Parekh, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_expires will now act on content that is not sent from a file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on disk. Previously it would never add an Expires: header to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding any response that did not come from a file on disk; the only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding case where it still doesn't (and can't) add one for that type of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding content is if you are using a modification date based setting.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko, Paul Phillips <paulp@go2net.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Problems encountered during .htaccess parsing or CGI execution
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that lead to a "500 Server Error" condition now provide explanatory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding text (in the *ERROR_NOTES envariable) to ErrorDocument 500 scripts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1291
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add NameWidth keyword to IndexOptions directive so that the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding width of the filename column is customisable. [Ken Coar, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#1949, 2324.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Recognize lowercase _and_ uppercase `uname' results under
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SCO OpenServer. [David Coelho <drc@ppt.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) As duplicate "HTTP/1.0 200 OK" lines within the header seem to be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a common problem of (mis-administrated?) IIS servers, make the apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding proxy immune to these errors (and ignore the duplicates, but log
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the fact to error_log). [Martin Kraemer], after the proposal in PR#2914
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The <IfModule and <IfDefine block starting directives now only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allow exactly one argument. Previously, the optional negation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding character '!' could be separated by whitespace without a syntax
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error being reported, albeit defeating the IfModule functionality
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (enclosed directives would ALWAYS be executed). By using the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding stricter syntax, these hard-to-track errors can be avoided.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Simplify handling of IndexOptions in mod_autoindex -- and BTW
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cause the standalone FancyIndexing directive to logically OR
cfa64348224b66dd1c9979b809406c4d15b1c137fielding into any existing IndexOptions settings rather than wiping
cfa64348224b66dd1c9979b809406c4d15b1c137fielding them out. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes in ftp proxy: make URL parsing simpler by using the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parsed_uri stuff.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding + Add display of the "current directory" in cases where it's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding different from the supplied path (e.g., ftp://user@host/ lives
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in /home/user, not in /, therefore clicking on "../" in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding starting directory might send us to /home/).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding + When ftp login fails, (esp. when a user name was part of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding URL already), we now return [401 Unauthorized ] to allow the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding browser to pop up an authorization dialog. This makes passwords
cfa64348224b66dd1c9979b809406c4d15b1c137fielding slightly less visible (they don't appear in the regular log files)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and implements a functionality that other www proxy servers
cfa64348224b66dd1c9979b809406c4d15b1c137fielding already offered.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Triggered by the recent "Via:" header changes, the proxy module would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dump core for replies with invalid headers (e.g., duplicate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "HTTP/1.0 200 OK" lines). These errors are now logged and the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding core dump is avoided. Also, broken replies are not cached.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer] PR#2914
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) new `GprofDir' directive when compiled with -DGPROF, where gprof can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding plop gmon.out profile data for each child [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use the construct ``"$@"'' instead of ``$*'' in the generated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding config.status script to be immune against arguments with whitespaces.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Yves Arrouye <yves@apple.com>] PR#2866
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace the inlined information grabbing stuff for the configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding adjustment feature (no --without-confadjust) with calls to a new helper
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script `buildinfo.sh' which is both more flexible and already proofed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be more robust against platform differences. This mainly fixes the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding recently occured ``sed: command garbled: ...'' problems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2776, PR#2848
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make ab.c again pass ``gcc -Wall -Wshadow -Wpointer-arith -Wcast-align
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -Wmissing-prototypes -Wmissing-declarations -Wnested-externs -Winline''
cfa64348224b66dd1c9979b809406c4d15b1c137fielding without complains after we recently added the POST feature.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Renamed is_HTTP_xxx() macros to ap_is_HTTP_xxx() name. They are used inside
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules as API functions and we forgot them at the big symbol renaming.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove bad reference to non-existing SERVER_VERSION in mod_rewrite.html
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.ORG>] PR#2895
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Dynamically size the filename column of mod_autoindex output.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the ability to do POST requests to the ab benchmarking tool.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Kurt Sussman <kls@best.com>] PR#2871
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bump up MAX_ENV_FLAGS in mod_rewrite.h from the too conservatice limit of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 5 to 10 because there are some users out there who always have 5 to 8
cfa64348224b66dd1c9979b809406c4d15b1c137fielding variables in one RewriteRule and had to patch mod_rewrite.h for every
cfa64348224b66dd1c9979b809406c4d15b1c137fielding release. So 15 should be now more than enough, even for them. (I never
cfa64348224b66dd1c9979b809406c4d15b1c137fielding needed more than 4 in my RewriteRules ;-)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make the proxy generate and understand Via: headers
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change the proxy to use tables instead of array_headers for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the header lines. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the config.status file is not overridden when just
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ``configure --help'' is used. [Ralf S. Engelschall] PR#2844
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Split MODULE_MAGIC_NUMBER into _MAJOR/_MINOR numbers. This should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding provide a way to trace API changes that add functionality but do
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not create a compatibility issue for precompiled modules, etc.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding See include/ap_mmn.h for more details. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix suexec installation under `make install root=xxx' situation.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Extend the output of the -V switch to include the paths of all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compiled-in configuration files, if they were overridden at
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compile time, for least astonishment of the user.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When READing a request in ExtendedStatus mode, the "old"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding vhost, request and client information is not displayed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) STATUS is no longer available. Full status information now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding run-time configurable using the ExtendedStatus directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Eliminate O(n^2) space DoS attacks (and other O(n^2)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cpu time attacks) in header parsing. Add ap_overlap_tables(),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a function which can be used to perform bulk update operations
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on tables in a more efficient manner. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Added compile-time and configurable limits for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding various aspects of reading a client request to avoid some simple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding denial of service attacks, including limits on maximum request-line
cfa64348224b66dd1c9979b809406c4d15b1c137fielding size (LimitRequestLine), number of header fields (LimitRequestFields),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and size of any one header field (LimitRequestFieldsize). Also added
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a configurable directive LimitRequestBody for limiting the size of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request message body. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make status module aware of DNS and logging states, even if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding STATUS not defined. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a problem with the new OS/2 mutexes. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enhance mod_speling so that CheckSpelling can be used in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Directory> containers and .htaccess files. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: new ap_custom_response() function for hooking into the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ErrorDocument mechanism at runtime [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: new ap_uuencode() function [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: scan_script_header_err_core() now "public" and renamed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_scan_script_header_err_core() [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The 'status' module will now show the process pid's and their
cfa64348224b66dd1c9979b809406c4d15b1c137fielding state even without full STATUS accounting. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Restore the client IP address to the error log messages, this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was lost during the transition from 1.2 to 1.3. Add a new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding function ap_log_rerror() which takes a request_rec * and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding formats it appropriately. [Dean Gaudet] PR#2661
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cure ap_cfg_getline() of its nasty habit of compressing internal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding whitespace in input lines -- including within quoted strings.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but leading and trailing whitespace should continue to be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding stripped [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleanup of the PrintPath/PrintPathOS2 helper functions. Avoid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the ugly use of an env. variable and use command-line args for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding alternate $PATH. Make more like advanced 'type's as well.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The IRIXN32 Rule was being ignored. Configure now correctly adds
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -n32 only if IRIXN32 says to. [Jim Jagielski, Alain St-Denis
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <alain.st-denis@ec.gc.ca>] PR#2736
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clean up a warning in mod_proxy. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Renamed __EMX__ (internal define of the gcc port under OS/2) to OS2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding following the same idea as "MSVC vs WIN32". Additionally the src/os/emx/
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory was renamed to src/os/os2/ for consistency.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add new Rule SHARED_CHAIN which can be used to enable linking of DSO
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files (here modules) against other DSO files (here shared libraries).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This is done by determining a subset of LIBS which can be safely used for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding linking the DSOs, i.e. PIC libs and shared libs. Currently the rule is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding disabled for all platforms to avoid problems with this (experimental)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rule. But we provide it now for those people how ran into problems and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding want to came out by forcing linking against DSOs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2587
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix suEXEC start message: Has to be of `notice' level to really get
cfa64348224b66dd1c9979b809406c4d15b1c137fielding printed together with the standard startup message because the `notice'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding level is handled special inside ap_log_error() for startup messages.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2761 PR#2761 PR#2765
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add correct `model' MIME types from RFC2077 to mime.types file.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2732
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed examples in mod_rewrite.html document.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Youichirou Koga <y-koga@jp.FreeBSD.org>, Ralf S. Engelschall] PR#2756
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow ap_read_request errors to propagate through the normal request
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handling loop so that the connection can be properly closed with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lingering_close, thus avoiding a potential TCP reset that would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cause the client to miss the HTTP error response. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) One more portability fix for APACI shadow tree support: Swap order of awk
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and sed in top-level configure script to avoid sed fails on some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding platforms (for instance SunOS 4.1.3 and NCR SysV) because of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding non-newline-termined output of Awk. [Ralf S. Engelschall] PR#2729
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: NEC EWS4800 support.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [MATSUURA Takanori <t-matsuu@protein.osaka-u.ac.jp>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a segfault in the proxy on OS/2. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix Win32 part of ap_spawn_child() by providing a reasonable child_info
cfa64348224b66dd1c9979b809406c4d15b1c137fielding structure instead of just NULL. This fixes at least the RewriteMap
cfa64348224b66dd1c9979b809406c4d15b1c137fielding programs under Win32. [Marco De Michele <mdemichele@tin.it>] PR#2483
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add workaround to top-level `configure' script for brain dead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `echo' commands which interpet escape sequences per default.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2654
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure that the path to the Perl interpreter is correctly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding adjusted under `make install' also for the printenv CGI script.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2595
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Update the mod_rewrite.html document to correctly reflect the situation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the `proxy' (`[P]') feature. [Ralf S. Engelschall] PR#2679
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix `install-includes' sub-target of `install' target in top-level
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makefile.tmpl: The umask+cp approach didn't work as expected (especially
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for users which extracted the distribution under 'umask 077'), so replace
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it by an explicit cp+chmod approach.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Richard Lloyd, Curt Sampson, Ralf S. Engelschall] PR#2656 PR#2626
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix `distclean' and `clean' targets in src/Makefile.tmpl to have same
cfa64348224b66dd1c9979b809406c4d15b1c137fielding behavior and to cleanup correctly even under enabled SHARED_CORE rule.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use a more straight forward and thus less problematic Sed command in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding src/helper/mkdir.sh script. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the `configure' scripts doesn't fail when trying to guess the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding domainname of the machine and there are multiple `domainname' and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `search' entries in /etc/resolv.conf.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2710
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add note about the SHARED_CORE requirement on some platforms also to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding INSTALL file because a lot of users don't read htdocs/manual/dso.html
cfa64348224b66dd1c9979b809406c4d15b1c137fielding first. [Ralf S. Engelschall] PR#2701
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix document "hyperlink" for dso.html in src/Configuration.tmpl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Knut A.Syed <Knut.Syed@nhh.no>] PR#2674
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Modify mod_rewrite to update the Vary response field if the URL rewriting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding engine does any manipulations or decisions based upon request fields.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1644
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Document the special APACI behavior for installation paths where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ``/apache'' is appended to paths under some (well defined, of course)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding situations to prevent pollution of system locations with Apache files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2660
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem with buffered response message not being sent for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the read_request error conditions of URI-too-long (414) and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding malformed header fields (400). [Roy Fielding] PR#2646
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for the Max-Forwards: header line required by RFC2068 for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the TRACE method. This allows apache to TRACE along a chain of proxies
cfa64348224b66dd1c9979b809406c4d15b1c137fielding up to a predetermined depth. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix SHARED_CORE rule: The CFLAGS_SHLIB variable is no longer doubled
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (compilers complained) and the .so.V.R.P filename extension was adjusted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to correctly reflect the 1.3.2 version.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2644
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Plug "..." and other canonicalization holes under OS/2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: implement serialized accepts for OS/2. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include had problems with the fsize and flastmod directives
cfa64348224b66dd1c9979b809406c4d15b1c137fielding under WIN32. Fix also avoids the minor security hole of using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ".." paths for fsize and flastmod.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Manoj Kasichainula <manojk@raleigh.ibm.com>] PR#2355
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed some Makefile dependency problems. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Disable the incorrect entry for application/msword in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_mime_magic "magic" file because it also matches other Office
cfa64348224b66dd1c9979b809406c4d15b1c137fielding documents. [Ralf S. Engelschall] PR#2608
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix broken RANLIB handling in src/Configure (the entry from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding src/Configuration.tmpl was ignored) and additionally force RANLIB to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding /bin/true under HP/UX where ranlib exists but is deprecated.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2627
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) 'apachectl status' failed on some systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Steve VanDevender <stevev@darkwing.uoregon.edu>, Lars Eilebrecht] PR#2613
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add new flags for ap_unparse_uri_components() to make it generate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the scheme://sitepart string only, or to omit the query string.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Canonicalize ServerRoot before checking to see if it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is a valid directory. The failure to do this caused certain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ServerRoot settings (eg. "ServerRoot /apache") to be improperly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rejected. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Global renaming of C header files to both get rid of conflicts with third
cfa64348224b66dd1c9979b809406c4d15b1c137fielding party packages and to again reach consistency:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2. conf_auto.h -> ap_config_auto.h \ these are now merged
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3. ap_config.h -> ap_config_auto.h / in the config process
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Backward compatibility files for conf.h and compat.h were created.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_mmap_static will no longer take action on requests unless at
cfa64348224b66dd1c9979b809406c4d15b1c137fielding least one "mmapfile" directive is present in the configuration.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This experimental module has to do some black magic to operate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding inside the current API and thus creates side-effects for other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules under some circumstances.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add conservative ticks around more egrep arguments in top-level configure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to avoid problems under brain-dead platforms like Digital UNIX (OSF1).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2596
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_rewrite created RewriteLock files under the UID of the parent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding process, thus the child processes had no write access to the files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Now a chown() is done on the file to the uid of the children,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if applicable. [Lars Eilebrecht, Ralf S. Engelschall] PR#2341
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Autogenerate some HAVE_XXXXX_H defines in conf_auto.h (determined via
cfa64348224b66dd1c9979b809406c4d15b1c137fielding TestCompile) instead of defining them manually in conf.h based on less
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accurate platform definitions. This way we no longer have to fiddle with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding OS-type and/or OS-version identifiers to discover whether a system header
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file exists or not. Instead we now directly check for the existence of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding those esoteric ones.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2093, PR#2361, PR#2377, PR#2434,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#2524, PR#2525, PR#2533, PR#2569
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_setenvif (BrowserMatch* and friends) will now match a missing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding field with "^$". [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set the RTLD_GLOBAL dlopen mode parameter to allow dynamically loaded
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules to load their own modules dynamically. This improves mod_perl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and mod_php3 when these modules are loaded dynamically into Apache.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rasmus Lerdorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cache a proxied request in the event that the client cancels the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding transfer, provided that the configured percentage of the file has
cfa64348224b66dd1c9979b809406c4d15b1c137fielding already been transfered. It works for HTTP transfers only. The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding new configuration directive is called CacheForceCompletion.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Glen Parker <glenebob@nwlink.com>] PR#2277
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the "<!DOCTYPE HTML" magic cookie used by modern documents (and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding required by HTML 3.2 and later) to mod_mime_magic's conf/magic.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Anna Shergold <anna@inext.co.uk>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix yet another signal-based race condition involving nested timers.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Signals suck. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suexec's error messages have been clarified a little bit. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clean up some, but perhaps not all, 8-bit character set problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with config file parsing, and URL parsing. We now define
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_isdigit(), ap_isupper(), ... which cast to an (unsigned char).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This should work on most modern unixes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#800, 2282, 2553 (and others)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The "handler not found" error was issued in cases where the handler
cfa64348224b66dd1c9979b809406c4d15b1c137fielding really did exist, but was just declining to serve the request.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [John Van Essen <jve@gamers.org>] PR#2529
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add Dynamic Shared Object (DSO) support for SCO5 (OpenServer 5.0.x).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Record <rr@sco.com>] PR#2533
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The APACI libexecdir was not extended with an "apache/" subdir
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if the installation prefix didn't already contain "apache", but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it should be because the DSO files are Apache-specific. Now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding libexecdir is treated the same way sysconfdir, datadir, localstatedir
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and includedir are already treated.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Charles Levert <charles@comm.polymtl.ca>] PR#2551
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The <Limit> parsing routine was incorrectly treating methods as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding case-insensitive. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The ap_bprintf() code neglected to test if there was an error on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the connection. ap_bflush() misdiagnosed a failure as a success.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) add support for #perl arg interpolation in mod_include
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Name changes of table_elts to ap_table_elts, is_table_empty
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to ap_is_table_empty and bgetflag to ap_bgetflag. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add UnixWare 7 support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Vadim Kostoglodoff <vadim@olly.ru>] PR#2463
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the Guess-DSO-flags-from-Perl stuff in src/Configure: "perl" was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used instead of "$PERL" which contains the correctly determined Perl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding interpreter (important for instance on systems where "perl" and "perl5"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exists, like BSDI or FreeBSD, etc).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2505
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move the initial suEXEC-related startup message from plain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fprintf()/stderr to a delayed ap_log_error()-based one to avoid problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when Apache is started from inetd (instead of standalone). Under this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding situation startup messages on stderr lead to problems (the line is sent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the client in front of the requested document).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#871, PR#1318
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a flag so ap_fnmatch() can be used for case-blind pattern matching.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Don't collapse multiple slashes in PATH_INFO.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie, Bill Stoddard <wgstodda@us.ibm.com>] PR#2274
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32 SECURITY: Eliminate trailing "."s in path components. These are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ignored by the Windows filesystem, and so can be used to bypass security.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie, Alexei Kosut].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) We now attempt to dump core when we get SIGILL. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: remove broken test for MAP_FILE in http_main.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Wilfredo Sanchez <wsanchez@apple.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Change support/apachectl to use "kill -0 $pid" to test if the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding httpd is running. This should be more portable than figuring out
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which of three dozen different versions of "ps" are installed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [a cast of dozens]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: If we can't figure out how to execute a file in a script
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory, bail out of the request with an error message. [W G Stoddard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32 SECURITY: Eliminate directories consisting of three or more dots;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding these are treated by Win32 as if they are ".." but are not detected by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other machinery within Apache. This is something of a kludge but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding eliminates a security hole. [Manoj Kasichainula, Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move ap_escape_quotes() from src/ap to src/main/util.c; it uses
cfa64348224b66dd1c9979b809406c4d15b1c137fielding pools and thus pollutes libap (until the pool stuff is moved there).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) IndexIgnore should be case-blind on Win32 (and any other case-aware
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but case-insensitive platforms). New #define for this added to conf.h
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (CASE_BLIND_FILESYSTEM). [Ken Coar] PR#2455
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enable DSO support for OpenBSD in general, not only for 2.x, because it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding also works for OpenBSD 1.x. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix compilation problem on ARM Linux.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Sam Kington <sam@illuminated.co.uk>] PR#2443
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Let APACI's configure script determine some configuration parameters
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (Group, Port, ServerAdmin, ServerName) via some intelligent tests to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding remove some of the classical hurdles for new users when setting up
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache. This is done per default because it is useful for the average
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user. Package authors can use the --without-confadjust option to disable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding these configuration adjustments.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added an EXTRA_DEPS configuration parameter which can be used
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to add an extra Makefile dependency for the httpd target, for instance
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to external third-party libraries, etc.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add <IfDefine>..</IfDefine> sections to the core module (with same spirit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as <IfModule>..</IfModule> sections) which can be used to skip or process
cfa64348224b66dd1c9979b809406c4d15b1c137fielding contained commands dependend of ``-D PARAMETER'' options on the command
cfa64348224b66dd1c9979b809406c4d15b1c137fielding line. This can be used to achieve logical conditions like <IfDefine
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ReverseProxy> instead of physically ones (e.g. <IfModule mod_proxy.c>)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and thus especially can be used for conditionally loading DSO-based
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules via LoadModule, etc. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: clean up a warning in mod_status for OS/2. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make table elements const. This may prevent obscure errors. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix parsing of FTP `SIZE' responses in proxy module: The newline was not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding truncated which forced following HTTP headers to be data in the HTTP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reponse. [Ralf S. Engelschall, Charles Fu <ccwf@bacchus.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#2412, 2367
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Portability fix for APACI shadow tree support: Swap order of awk and sed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in top-level configure script to avoid sed fails on some platforms (for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instance SunOS 4.1.3 and NCR SysV) because of the non-newline-termined
cfa64348224b66dd1c9979b809406c4d15b1c137fielding output of Awk. [Bill Houle <bhoule@sandiegoca.ncr.com>] PR#2435
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve performance of directory listings (mod_autoindex) by comparing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding integer keys (last-modified and size) as integers rather than converting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding them to strings first. Also use a set of explicit byte tests rather
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than strcmp() to check for parent directory-ness of an entry. Oh, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding make sure the parent directory (if displayed) is *always* listed first
cfa64348224b66dd1c9979b809406c4d15b1c137fielding regardless of the sort key. Overall performance winnage should be good
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in CPU time, instruction cache, and memory usage, particularly for large
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directories. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a tiny but useful goody to APACI's configure script: The generation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of a config.status script (as GNU Autoconf does) which remembers the used
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configure command and hence can be used to restore the configuration by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding just re-running this script or for remembering the configuration between
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add httpd -t (test) option for running configuration syntax tests only.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding If something is broken it complains and exits with a return code
cfa64348224b66dd1c9979b809406c4d15b1c137fielding non-equal to 0. This can be used manually by the user to check the Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuration after editing and is also automatically used by apachectl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on (graceful) restart command to make sure Apache doesn't die on restarts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because of a configuration which is now broken since the last (re)start.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This way `apachectl restart' can be used inside cronjobs without having
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to expect Apache to be falling down. Additionally the httpd -t can be run
cfa64348224b66dd1c9979b809406c4d15b1c137fielding via `apachectl configtest'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2393
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor display fix for "install" target of top-level Makefile:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the displayed installation command was incorrect although the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding executed command was correct. Now they are in sync.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2402
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correct initialization of variable `allowed_globals' in http_main.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Justin Bradford <justin@ukans.edu>] PR#2400
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache would incorrectly downcase the entire Content-Type passed from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGIs. This affected server-push scripts and such which use
cfa64348224b66dd1c9979b809406c4d15b1c137fielding multipart/x-mixed-replace;boundary=ThisRandomString.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#2394
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: QNX update to properly guess 32-bit systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Sean Boudreau <seanb@qnx.com>] PR#2390
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the DSO emulation code for HPUX finds the proprietary shl_xxx()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions which are in libdld under HPUX 9/10.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2378
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the "install" target of the top-level Makefile doesn't break
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because of a return code of 1 from an "if" (for instance under braindead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Ultrix the result code of an "if" construct is 1 if the "then" clause
cfa64348224b66dd1c9979b809406c4d15b1c137fielding didn't match). [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add an additional "dummy" target to the "$(LIB)" target in generated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules/xxx/Makefile's to avoid problems with SVR4 Make under "full-DSO"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding situation (no libxxx.a built, only mod_xxx.so's) where LIB and OBJS are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding empty. [Ralf S. Engelschall, Dean Gaudet, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace two bad sprintf() calls with ap_snprintf() variants in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_rewrite. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix missing usage description for MetaFiles directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David MacKenzie <djm@va.pubnix.com>] PR#2384
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_log_config wouldn't let vhosts use log formats defined in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding main server. [Christof Damian <damian@mediaconsult.com>] PR#2090
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_usertrack was corrupting the client hostname. As part of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fix, the cookie values were slightly extended to include the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fully qualified hostname of the client.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#2190, 2229, 2366
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a typo in pool debugging code. [Alvaro Martinez Echevarria]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_unique_id did not work on alpha linux (in general on any
cfa64348224b66dd1c9979b809406c4d15b1c137fielding architecture that has 64-bit time_t).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alvaro Martinez Echevarria]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Make SCO 5 (and probably 3) compile again. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: NCR MPRAS systems have the same bug with SIGHUP restart that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Solaris systems experience. So define WORKAROUND_SOLARIS_BUG.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Klaus Weber <kweber@chephren.germany.ncr.com>] PR#1973
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change "Options None" to "Options FollowSymLinks" in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Directory /> section of the default access.conf-dist
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (and -win even though it doesn't matter there). This has better
cfa64348224b66dd1c9979b809406c4d15b1c137fielding performance, and more intuitive semantics. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Updated support for UTS 2.1.2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dave Dykstra <dwd@bell-labs.com>] PR#2320
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix symbol export list (src/support/httpd.exp) after recent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding API changes in the child spawning area.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jens-Uwe Mager <jum@helios.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Workaround for configure script and old `test' commands which do not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding support the -x flag (for instance under platforms like Ultrix). This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding solved by another helper script findprg.sh which searches for Perl and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Awk like PrintPath but _via different names_.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove the system() call from htpasswd.c, which eliminates a system
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dependancy. ["M.D.Parker" <mdpc@netcom.com>] PR#2332
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix compilation failures on NEXTSTEP.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rex Dieter <rdieter@math.unl.edu>] PR#2293, 2316
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: F_NDELAY is a typo, should have been FNDELAY. There's also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding O_NDELAY on various systems. [Dave Dykstra <dwd@bell-labs.com>] PR#2313
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: helpers/GuessOS updates for various versions for NCR SVR4.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [juerg schreiner <j.schreiner@zh.ch>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Bill Houle <Bill.Houle@SanDiegoCA.NCR.COM>] PR#2310
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix recently introduced Win32 child spawning code in mod_rewrite.c which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was broken because of invalid ap_pstrcat() -> strcat() transformation.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Proxy Cache Fixes: account for directory sizes, fork off garbage collection
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to continue in background, use predefined types (off_t, size_t, time_t),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding log the current cache usage percentage at LogLevel debug
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer, based on discussion between Dean Gaudet & Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3.0
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Using a type map file as a custom error document was not possible.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht] PR#1031
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Avoid problems with braindead Awks by additionally searching for gawk
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and nawk in APACI's configure script.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dave Dykstra <dwd@bell-labs.com>, Ralf S. Engelschall] PR#2319
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rename md5.h to ap_md5.h to avoid conflicts with native MD5 on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some systems. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change usage of perror()+fprintf(stderr,...) in mod_rewrite to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding more proper ap_log_error() variants.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the argument for the --add-module option to APACI's configure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script is of type [path/to/]mod_xxx.c because all calculations inside
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configure and src/Configure depend on this.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2307
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes usage of perror/fprintf to stderr to more proper ap_log_error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in mod_mime, mod_log_referer, mod_log_agent, and mod_log_config.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various OS/2 cleanups ["Brian Havard" <brianh@kheldar.apana.org.au>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: QNX needed a #include <sys/mman.h>; and now it uses flock
cfa64348224b66dd1c9979b809406c4d15b1c137fielding serialized accept to handle multiple sockets.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2295, 2296
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Have NT properly set the directory for CGI scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (& other spawned children)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [W G Stoddard <wgstodda@us.ibm.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Propagate environment to CGI scripts correctly in Win32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [W G Stoddard <wgstodda@us.ibm.com>] PR#2294
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Some symbol renaming:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_spawn_child_err became ap_spawn_child
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_spawn_child_err_buff became ap_bspawn_child
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spawn_child was obsoleted and moved to compat.h
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Upgrade the child spawning code in mod_rewrite for the RewriteMap
cfa64348224b66dd1c9979b809406c4d15b1c137fielding programs: ap_spawn_child_err() is used and the Win32 case now uses
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CreateProcess() instead of a low-level execl() (which caused problems in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the past under Win32).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A few cosmetics and trivial enhancements to APXS to make the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generated Makefile more user friendly. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Proxy Fix: The proxy special failure routine ap_proxyerror()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was updated to use the normal apache error processing, thereby allowing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding proxy errors to be treated by ErrorDocument's as well. For this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding purpose, a new module-to-core communication variable "error-notes"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was introduced; the proxy (and possibly other modules) communicates
cfa64348224b66dd1c9979b809406c4d15b1c137fielding its error text using this variable. Its content is copied to a new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cgi-env-var REDIRECT_ERROR_NOTES for use by ErrorDocuments.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The old proxy special error routine ap_proxy_log_uerror()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was replaced by regular ap_log_error() calls, many messages were made
cfa64348224b66dd1c9979b809406c4d15b1c137fielding more informative.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer] PR#494, 1259
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: A possible buffer overflow in the ftp proxy was fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Transform the configure message "You need root privileges for suEXEC"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from a fatal error into a (more friendly) warning because the building
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ("make") of Apache we can allow, of course. Root privileges are needed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only for the installation step ("make install"). So make sure the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user is aware of this fact but let him proceed as long as he can.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2288
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Renamed three more functions to common ap_ prefix which we missed at the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Big Symbol Renaming because they're #defines and not real C functions:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is_default_port(), default_port(), http_method().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A zero-length name after a $ in an SSI document should cause
cfa64348224b66dd1c9979b809406c4d15b1c137fielding just the $ to be in the expansion. This was broken during the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding security fixes in 1.2.5. [Dean Gaudet] PR#1921, 2249
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Call ap_destroy_sub_req() in ap_add_cgi_vars() to reclaim some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding memory. [Rob Saccoccio <robs@InfiniteTechnology.com>] PR#2252
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix src/support/httpd.exp (DSO export file which is currently only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used under AIX) because of recent changes to function names.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b7
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure a MIME-type can be forced via a RewriteRule even when no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding substitution takes place, for instance via the following rule:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ``RewriteRule ^myscript$ - [T=application/x-httpd-cgi]'' This was often
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requested by users in the past to force a single script without a .cgi
cfa64348224b66dd1c9979b809406c4d15b1c137fielding extension and outside any cgi-bin dirs to be executed as a CGI program.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2254
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A fix for protocol issues surrounding 400, 408, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 414 responses. [Ed Korthof]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Ignore MaxRequestsPerChild on WIN32. [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix discrepancy in proxy_ftp.c which was causing failures when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding trying to connect to certain ftpd's, such as anonftpd.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rick Ohnemus <rick@ecompcon.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make mod_rewrite use ap_open_piped_log() for RewriteLog directive's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding logfile instead of fiddling around itself with child spawning stuff.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Made RefererIgnore case-insensitive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Mod_log_agent, mod_log_referer now use ap_open_piped_log for piped logs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace use of spawn_child with ap_spawn_child_err_buff, to make everything
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "safe" under Win32. In: mod_include.c, mod_mime_magic.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve RFC1413 support. [Bob Beck <beck@bofh.ucs.ualberta.ca>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix support script `dbmmanage': It was unable to handle some sort
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of passwords, especially passwords with "0" chars.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2242
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Clicking on "Last Modified" in a fancy index caused a crash. Fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie] PR#2238
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: CGIs could cause a hang (because of a deadlock in the standard C
cfa64348224b66dd1c9979b809406c4d15b1c137fielding library), so CGI handling has been changed to use Win32 native handles
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of C file descriptors.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie and Bill Stoddard <wgstodda@us.ibm.com>] PR#1129, 1607
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The proxy cache would store an incorrect content-length in the cached
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file copy after a cache update. That resulted in repeated fetching
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the original copy instead of using the cached copy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ernst Kloppenburg <kloppen@isr.uni-stuttgart.de>] PR#2094
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The Makefiles assumed that DSO files are build via $(LD). This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is broken for two reasons: First we never defined at least LD=ld
cfa64348224b66dd1c9979b809406c4d15b1c137fielding somewhere to make sure this works (it was silently assumed that most Make
cfa64348224b66dd1c9979b809406c4d15b1c137fielding provide a built-in LD definition - ARGL!) and second using the generic LD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding variable is not the truth. Instead a special variable named LD_SHLIB is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reasonable because although "ld" is usually the default, the command for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding building DSO files can be "libtool" or even "cc" on some systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace the AddVersionPlatform directive with ServerTokens which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding provides for more control over the format of the Server:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header line. SERVER_SUBVERSION is no longer supported;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding all module should use the ap_add_version_component()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding API function instead. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Support for the NCR MP/RAS 3.0
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [John Withers <withers@semi.kcsc.mwr.irs.gov>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The LDFLAGS_SHLIB_EXPORT variable of src/Configuration[.tmpl] was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not retrieved in src/Configure and thus was not useable.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various Makefile consistency cleanups:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - make OSDIR also automatically be relative to src/ like INCDIR
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - SUBDIRS is now generated in src/Makefile only and not in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makefile.config because it is a local define for this location.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - remove BROKEN_BPRINTF_FLAGS because is it no longer used inside
cfa64348224b66dd1c9979b809406c4d15b1c137fielding any Makefile but make sure that at least the "-K inline" is kept in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CFLAGS for SCO 5.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - update the "depend" targets in Makefile.tmpl files to use $(OSDIR), too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - updated the dependencies theirself
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - removed not existing SHLIB variable from "clean" targets
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - replaced SHLIB_OBJS/SHLIBS_OBJ consistently with OBJS_PIC because OBJS
cfa64348224b66dd1c9979b809406c4d15b1c137fielding already exists and OBJS_PIC are also just plain objects and have not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directly to do with "shared" things. The only difference is that they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding contain PIC. So OBJS_PIC is the more canonical name.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Updated the Makefile-dependency lines for OBJS_PIC
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Removed the Makefile-dependency line in Configure to avoid double
cfa64348224b66dd1c9979b809406c4d15b1c137fielding definitions
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - replaced ugly xx-so.o/xx.so-o hack with a clean and consistent usage
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of xxx.lo as GNU libtool does with its PIC objects
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - reduce local complexity in modules Makefile.tmpl by moving the last
cfa64348224b66dd1c9979b809406c4d15b1c137fielding existing target "depend" to the generation section in Configure, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - removed the historical $(SPACER) which was used in the past together
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with BROKEN_BPRINTF_FLAGS to avoid zig-zags in the build process. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is no longer needed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - force the build and run of the gen_xxx programs under main/ as the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding first step before building the objects because it looks cleaner
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Make Win32 work again after the /dev/null DoS fix.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Check for buffer overflows in ap_os_canonical_filename.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Don't force ISAPI headers to finish with \n.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Patterson <Jim.Patterson@Cognos.COM>, Ben Laurie] PR#2060
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When opening "configuration" files (like httpd.conf, htaccess
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and htpasswd), Apache will not allow them to be non-/dev/null
cfa64348224b66dd1c9979b809406c4d15b1c137fielding device files. This closes a DoS hole. At the same time,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding we use ap_pfopen to open these files to handle timeouts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache will now log the reason its httpd children exit if they exit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding due to an unexpected signal. (It requires a new porting define,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SYS_SIGLIST, which if defined should point to a list of text
cfa64348224b66dd1c9979b809406c4d15b1c137fielding descriptions of the signals available. See PORTING.) [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: chdir() doesn't make sense in a multithreaded environment
cfa64348224b66dd1c9979b809406c4d15b1c137fielding like WIN32. Before, Win32 CGI's could have had sporadic failures
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if a chdir call from one thread was made between another chdir call
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and a spawn in another thread. So, for now don't chdir for CGI scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in WIN32. The current CGI "spec" is unclear as to whether it's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding necessary. Long-term fix is to either serialize the chdir/spawn combo
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or use WIN32 native calls to spawn a process. This temp fix was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding necessary to remove this as a showstopper for 1.3's release.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleanup the suEXEC support in APACI and make it more safe:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1. Add big fat hint in INSTALL about risks and to read the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htdocs/manual/suexec.html document before using the suexec-related
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configure options.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2. Make sure the user has at least provided one --suexec-xxxx option
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (specifies suEXEC parameters) in addition to --enable-suexec option.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding If only --enable-suexec is given APACI stops with a hint to INSTALL
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3. Provide two additional --suexec-xxxx options to make the suEXEC
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuration complete (especially for package maintainers who else
cfa64348224b66dd1c9979b809406c4d15b1c137fielding had to patch the source tree) by providing ways to configure minimal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding UID/GID and safe PATH, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleanup of the `configure --shadow' process:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - make sure the configure script creates its temporary files in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding shadow tree to avoid conflicts with parallel configure runs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - removed unnecessary option "-r" from "rm" call for Makefiles
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - make sure the configure scripts creates the shadow-wrapper Makefile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only when no shadow trees already exists
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - make sure "make distclean" removes the shadow-wrapper Makefile but only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when no more shadow trees exists
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - overhauled mkshadow.sh script: now its more IFS-safe and approx. twice
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as fast (in the past it needed 70sec, now it runs just 38sec)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - make sure CVS does not complain about the created files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makefille.<gnutriple> and directories src.<gnutriple>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added the ap_add_version_component() API routine and the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AddVersionPlatform core directive. The first allows modules to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding declare themselves in the Server response header field value,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding augmenting the SERVER_SUBVERSION define in the Configuration file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with run-time settings (more useful in a loadable-module environment).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AddVersionPlatform inserts a comment such as "(UNIX)" or "(Win32)"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding into the server version string. [Ken Coar] PR#2056
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor stability tweaks to avoid core dumps in ap_snprintf.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Emit the "Accept-Range" header for the default handler.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Behlendorf] PR#1464
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a note to httpd.conf-dist that apache will on some systems fail
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to start when the Group # is set to a negative or large positive value.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the module execution order is correct even when some modules
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are loaded under runtime (`LoadModule') via the DSO mechanism:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1. The list of loaded modules is now a dynamically allocated one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and not the original statically list from modules.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2. The loaded modules are now correctly setup by LoadModule for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding later use by the AddModule command.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3. When the DSO mechanism for modules is used APACI's `install'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding target now enables all created `LoadModule' lines per default because
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this is both already expected by the user _and_ needed to avoid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding confusion with the next point and reduces the Makefile.tmpl complexity
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 4. When the DSO mechanism for modules is used, APACI's `install'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding target now additionally makes sure the module list is reconstructed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding via a complete `ClearModuleList+AddModule...' entry.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 5. The support tool `apxs' now also makes sure an AddModule command
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is added in addition to the LoadModule command.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 6. The modules.c generation was extended to now contain two
cfa64348224b66dd1c9979b809406c4d15b1c137fielding comments to make sure no one is confused by the confusing terminology
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of loading/linking (we use load=link+load & link=activate instead of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the obvious load=activate & link=link :-( )
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This way now there is no longer a difference under execution time between
cfa64348224b66dd1c9979b809406c4d15b1c137fielding statically and dynamically linked modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the generated mod_xxx.c from "apxs -g -f xxx" after the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Big Symbol Renaming. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a comment to mod_example.c showing the format of a FLAG command
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handler. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Standardized the time format in mod_status to match that of other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding places in the code (e.g. DATE_GMT). PR#1551
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix handling of %Z in timefmt strings for those platforms with no time
cfa64348224b66dd1c9979b809406c4d15b1c137fielding zone information in their tm struct. [Paul Eggert <eggert@twinsun.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Makes mod_rewrite, mod_log_config, mod_status and the ServerSignature
cfa64348224b66dd1c9979b809406c4d15b1c137fielding feature compatible with 'UseCanonicalName off' by changing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding r->server->server_hostname to ap_get_server_name(). And I changed some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions which use r->server->port to use ap_get_server_port() instead,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because if there's no Port directive in the config r->server->port is 0.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) get/set_module_config are trivial enough to be better off inline. Worth
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1.5% performance boost. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix off-by-one error in ap_proxy_date_canon() in proxy_util.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when ensuring 'x' is at least 30-chars big. [Jim Jagielski,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) [BS2000 security] BS2000 needs an extra authentication to initialize
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the task environment to the unprivileged User id. Otherwise CGI scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding would have a way to gain super user access. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix debug log messages for BS2000/OSD: instead of logging the whole
cfa64348224b66dd1c9979b809406c4d15b1c137fielding absolute path, only log base name of logging source as is done
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in unix. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Ronald Tschalaer's Accept-Encoding patch - preserve the "x-" in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the encoding type from the Accept-Encoding header (if it's there)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and use it in the response, as that's probably what it'll be expecting.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald.Tschalaer@psi.ch]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix to mod_alias: translate_alias_redir is dealing with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a URI, not a filename, so the check for drive letters for win32
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and emx is not necessary. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Allow .cmd as an executable extension.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Kari Likovuori <Kari.Likovuori@mol.fi>] PR#2146
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make Apache header files, and some variables, C++ friendly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Michael Anderson's <mka@redes.int.com.mx>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Child processes can now "signal" (by exiting with a status
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of APEXIT_CHILDFATAL) the parent process to abort and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding shutdown the server if the error in the child process was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fatal enough. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex's find_itme() was sensitive to MIME type case.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski] PR#2112
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the referer_log and agent_log entries in the default httpd.conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file are also adjusted for the actual relative installation paths.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2175
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Extensive overhaul of the way UNCs are handled. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Make roots of filesystems (e.g. c:/) work. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Various porting changes to support AIX 3.2, 4.1.5, 4.2 and 4.3.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally the checks for finding the vendor DSO library were moved
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from mod_so.c to Configure because first it needs $PLAT etc. and second
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_so already uses an abstraction layer and does not fiddle with the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding vendor functions itself.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jens-Uwe Mager, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Some optimization defines for NetBSD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jaromir Dolecek <dolecek@ics.muni.cz>] PR#2165
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Dynamic Shared Object (DSO) support for NetBSD.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jaromir Dolecek <dolecek@ics.muni.cz>, Ralf S. Engelschall] PR#2158
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add Dynamic Shared Object (DSO) support for AIX (at least 4.2 but older
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AIX variants should work fine, too. Even AIX 3.x should work). This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accomplished by using the free DSO emulation code from Jens-Uwe Mager
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which we put into a os/unix/os-dso-aix.c file.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix compiler warnings under AIX >= 4.2 where the manual pages imply
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that we should use NET_SIZE_T == int but the include files force size_t.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix two bugs in select() handling in http_main.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Suppress "error(0)" messages for ap_log_error() when the APLOG_NOERRNO
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is unset (as it is in situations like timeouts) where it is unclear
cfa64348224b66dd1c9979b809406c4d15b1c137fielding whether errno is set or not. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Just having APACI's localstatedir is too general and not enough for most
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the systems. 1.3b6 again required manual APACI patches by package
cfa64348224b66dd1c9979b809406c4d15b1c137fielding maintainers from RedHat and FreeBSD because for their filesystem layout a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding little bit more flexibility in configuring the paths is needed. Hence we
cfa64348224b66dd1c9979b809406c4d15b1c137fielding provide three additional configure options (--runtimedir, --logfiledir,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --proxycachedir) which now can be used for more granular adjustments if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --localstatedir is not enough to fit the particular needs. As a nice
cfa64348224b66dd1c9979b809406c4d15b1c137fielding side-effect this reduces some subdir fiddling in configure+Makefile.tmpl.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make the install root for "make install" in APACI's Makefile overrideable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by package authors. This way we are even more friendly to package
cfa64348224b66dd1c9979b809406c4d15b1c137fielding maintainers (especially Debian and RedHat) who build for the real prefix
cfa64348224b66dd1c9979b809406c4d15b1c137fielding via "configure --prefix=/<real>" but use a different local prefix via
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "make root=/tmp/apache install" for rolling the package without bristling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the target location on their system.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Workaround sed limitations in APACI's configure script by now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding substituting in chunks of 50 commands (because for instance HPUX's vendor
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sed has a limit of max. 98 commands)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2136
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Adding SOCKS5 support and fixing existing SOCKS4 support.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2140
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Manually fix some symbols which were not renamed to prefix ap_ in the BIG
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RENAMING process because they are defined as pre-processor macros instead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of real functions: bputc, bgetc, piped_log_write_fd, piped_log_read_fd
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Workaround braindead AWK's when generating ap_config.h: The split() and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding substr() functions cannot be nested under vendor AWK from Solaris 2.6.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2139
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various bugfixes and cleanups for the APACI configure script:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fix IFS handling for _nested_ situation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fix Perl interpreter search: take first one found instead of last one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fix DSO consistency check
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o print error messages to stderr instead of stdout
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o add install-quiet for --shadow situation to Makefile stub
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o reduce complexity by avoiding sed-hacks for rule and module list loops
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix DEBUG_CGI situation in mod_cgi.c [David MacKenzie] PR#2114
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure the input field separator (IFS) shell variable is explicitly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initialized correctly before _every_ `for' loop and also restored after
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the loops. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure that "make install" doesn't overwrite the `mime.types' and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `magic' files from an existing Apache installation. Because people often
cfa64348224b66dd1c9979b809406c4d15b1c137fielding customize these for own MIME and content types.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Dynamic Shared Object (DSO) support for OpenBSD 2.x
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Peter Galbavy, Ralf S. Engelschall] PR#2109
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the path to the ScoreBoardFile in the install-config target, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2105
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Let "configure" clear out the users parameters (provided as shell
cfa64348224b66dd1c9979b809406c4d15b1c137fielding variables) to avoid side-effects in "src/Configure" when the user
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exported them (which is not needed, but some users do it).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2101
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Provide backward compatibility from some old src/Configuration.tmpl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parameter names to the canonical Autoconf-style shell variable names. For
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instance CFLAGS vs. EXTRA_CFLAGS. The EXTRA_xxx variants are accepted now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but a hint message is displayed. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure that "make install" doesn't overwrite the DocumentRoot and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGI scripts from an existing Apache installation.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall, Jim Jagielski] PR#2084
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make `configure --compat' more "compatible" by first
cfa64348224b66dd1c9979b809406c4d15b1c137fielding let the libexecdir default to EPREFIX/libexec instead of EPREFIX/bin and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding second by making sure the "avoid-bristling-suffix" /apache is not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding appended to sysconfdir, datadir, localstatedir and includedir when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --compat is used. [Ralf S. Engelschall, Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) NeXT required strdup() in support/logresolve.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Francisco Tomei <fatomei@sandburg.unm.edu>] PR#2082
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jens Schleusener <Jens.Schleusener@dlr.de>] PR#2081
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the path to the MimeMagicFile in the install-config target, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#2089
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Added HP-UX 11 patches [Jeff Earickson <jaearick@colby.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If you start apache with the -S command line option it will dump
cfa64348224b66dd1c9979b809406c4d15b1c137fielding out the parsed vhost settings. This is useful for folks trying
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to figure out what is wrong with their vhost configuration.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (Other dumps may be added in the future.) [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add %pA, %pI, and %pp codes to ap_vformatter (and hence ap_bprintf,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_snprintf, and ap_psprintf). See include/ap.h for docs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Because /usr/local/apache is the default prefix the ``configure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --compat'' option no longer has to set prefix, again. This way the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --compat option honors a leading --prefix option. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Cast the first argument of dlopen() in ap_os_dso_load()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to `char *' under OSF1 and FreeBSD 2.x where it is defined this way
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to avoid "discard const" warnings. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If a specific handler is set for a file yet the request still
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ends up being handled by the default handler, log an error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding message before handling it. This catches things such as trying
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to use SSIs without mod_include enabled. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix error logging for the startup case where ap_log_error() still uses
cfa64348224b66dd1c9979b809406c4d15b1c137fielding stderr as the target. Now the default log level is honored here, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Make sure some AWK's don't fail in src/Configure with "string too
cfa64348224b66dd1c9979b809406c4d15b1c137fielding long" errors when generating the MODULES entry for src/Makefile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Hyde, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make sure src/Configure doesn't complain about the old directory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding /usr/local/etc/httpd/ when APACI is used. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b6
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Clean up warnings on Ultrix and HPUX. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Adding DSO support for the HP/UX platform by emulating the dlopen-style
cfa64348224b66dd1c9979b809406c4d15b1c137fielding interface via the similar but proprietary HP/UX shl_xxx-style system
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calls. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Updated UnixWare 2.0.x and 2.1.x entries for DSO support and made
cfa64348224b66dd1c9979b809406c4d15b1c137fielding APACI Makefile.tmpl "install" target more robust for sensible UnixWare
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Make. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ++++ THE BIG SYMBOL RENAMING ++++
cfa64348224b66dd1c9979b809406c4d15b1c137fielding To avoid symbol clashes with third-party code compiled into the server,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding we globally applied the prefix "ap_" to the following classes of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Apache provided general functions (e.g., ap_cpystrn)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Public API functions (e.g., palloc, bgets)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Private functions which we can't make static (because of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cross-object usage) but should be (e.g., new_connection)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding For backward source compatibility a new header file named compat.h was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding created which provides defines for the old symbol names and can be used
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by third-party module authors.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [The Apache Group]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added dynamic shared object (DSO) support for SVR4-derivates: The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding problem under SVR4 is that there is no command flag to force the linker
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to export the global symbols of the httpd executable therewith they are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding available to the DSO's. Instead of problematic hacks like creating a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dummy.so file (containing dummy references to all global symbols) the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding httpd binary is linked against, we use a clean trick stolen from Perl 5:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Placing the Apache core code itself into a DSO library named libhttpd.so.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This way the global symbols _HAVE_ to be exported and thus are available
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to any manually loaded DSO's under runtime. To reduce the impact to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user to null we go even further and create a stub httpd executable which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding automatically keeps track of the DSO library loading itself and thus
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hides the complete mechanism from the user. Although the generation of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this DSO library is automatically triggered for platforms which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding essentially need it (mostly all SVR4-derivates) it can be also enabled
cfa64348224b66dd1c9979b809406c4d15b1c137fielding manually via the Rule SHARED_CORE. This can be interesting in the future
cfa64348224b66dd1c9979b809406c4d15b1c137fielding where we perhaps exploit this libhttpd.so mechanism for providing nifty
cfa64348224b66dd1c9979b809406c4d15b1c137fielding features like graceful upgrades, or whatever.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Build the libraries before building the rest of the tools. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add "distclean" target to src/-Makefiles to provide "make distclean" also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding inside the src subtree (i.e. for non-APACI users). Following GNU Makefile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding conventions while "clean" removes only stuff created by "all" targets,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "distclean" additionally removes the stuff from the configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding process. This way "make distclean" (hence the name) provides a fresh
cfa64348224b66dd1c9979b809406c4d15b1c137fielding source tree as it was for distribution.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow top-level (APACI) Makefile to break on build errors
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the same way the src/ subtree Makefiles breaks on them by replacing the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initial APACI sed-subdir-display-kludge with a more clean
cfa64348224b66dd1c9979b809406c4d15b1c137fielding variable-passing-solution: variable SDP can optionally hold the subdir
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prefix which is consistently used for displaying the subdir movement.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This way even the top-level Makefile can stop correctly on errors as the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user expects. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed ordering of argument checks for RewriteBase directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Todd Eigenschink <eigenstr@mixi.net>] PR#2045
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change Win32 IS_MODULE to SHARED_MODULE to match Unix' method of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding indicating that a module is being compiled for dynamic loading. Also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding remove #define IS_MODULE from modules and add SHARED_MODULE define
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the mak/dsp files. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reduce logging level of "normal" warning messages to APLOG_INFO,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since we are now logging APLOG_WARNING by default. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: OS/2 tweak to deal with multiple .exe targets. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add documentation file and src/Configuration.tmpl entry for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding experimental mod_mmap_static module. Because although it is and marked as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an experimental one it is distributed and thus should be documented and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prepared for configuration the same way as all others modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add query (-q) option to apxs support tool to be able to manually query
cfa64348224b66dd1c9979b809406c4d15b1c137fielding specific settings from apxs. This is needed for instance when you
cfa64348224b66dd1c9979b809406c4d15b1c137fielding manually want to access Apache's header files and you need to assemble
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the -I option. Now you can do -I`apxs -q INCLUDEDIR`.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Now src/Configure uses a fallback strategy for the shared object support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on platforms where no explicit information is available: If a Perl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding installation exists we ask it about its shared object support and if it's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the dlopen-style one we shamelessly guess the compiler and linker flags
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for creating shared objects from Perls knowledge. Of course, the user is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding warning about what we are doing and informed that he should send us
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the guessed flags when they work. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Provide APACI --without-support option to be able to disable the build
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and installation of the support tools from the src/support/ area.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Although its useful to have these installed per default we should provide
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a way to compile and install without them for backward-compatibility.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add of the new APache eXtenSion (apxs) support tool for building and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding installing modules into an _already installed_ Apache package through the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dynamic shared object (DSO) mechanism [mod_so.c]. The trick here is that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this approach actually doesn't need the Apache source tree. The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (APACI-installed) server package is enough, because this now includes the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache C header files (PREFIX/include) and the new APXS tool
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (SBINDIR/apxs). The intend is to provide a handy tool for third-party
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module authors to build their Apache modules _OUTSIDE_ the Apache source
cfa64348224b66dd1c9979b809406c4d15b1c137fielding tree while avoiding them to fiddle around with the totally platform
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dependend way of compiling DSO files. The tool supports all ranges of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules, from trivial ones (single mod_foo.c) to complex ones (like PHP3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which has a mod_php3.c plus a pre-built libmodphp3-so.a) and even can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on-the-fly generate a minimalistic Makefile and sample module for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding first step to provide both a quick success event and to demonstrate the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding APXS mechanism to module authors. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix core dumps in use of CONNECT in proxy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rainer.Scherg@rexroth.de] PR#1326, #1573, #1942
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Modify the log directives in httpd.conf-dist files to use CustomLog
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so that users have examples of how CustomLog can be used.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the new Apache Autoconf-style Interface (APACI) for the top-level of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the Apache distribution tree. Until Apache 1.3 there was no real
cfa64348224b66dd1c9979b809406c4d15b1c137fielding out-of-the-box batch-capable build and installation procedure for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding complete Apache package. This is now provided by a top-level "configure"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script and a corresponding top-level "Makefile.tmpl" file. The goal is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to provide a GNU Autoconf-style frontend which is capable to both drive
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the old src/Configure stuff in batch and additionally installs the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding package with a GNU-conforming directory layout. Any options from the old
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuration scheme are available plus a lot of new options for flexibly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding customizing Apache. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The floating point ap_snprintf code wasn't threadsafe.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Had to remove the HAVE_CVT macro in order to do threadsafe
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calling of the ?cvt() floating point routines. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add the SCO_SV port. [Jim Jagielski] PR#1962
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: IRIX needs the -n32 flag iff using the 'cc' compiler
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski] PR#1901
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) BUG: Configure was using TCC and CC inconsistently. Make sure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Configure knows which CC we are using. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "Options +Includes" wasn't correctly merged if "+IncludesNoExec"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was defined in a parent directory. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: ap_snprintf() code mutated into ap_vformatter(), which is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a generic printf-style routine that can call arbitrary output
cfa64348224b66dd1c9979b809406c4d15b1c137fielding routines. Use this to replace http_bprintf.c. Add new routines
cfa64348224b66dd1c9979b809406c4d15b1c137fielding psprintf(), pvsprintf() which allocate the exact amount of memory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding required for a string from a pool. Use psprintf() to clean up
cfa64348224b66dd1c9979b809406c4d15b1c137fielding various bits of code which used ap_snprintf()/pstrdup().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: HAVE_SNPRINTF doesn't do anything any longer. This is because
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_snprintf() has different semantics and formatting codes than
cfa64348224b66dd1c9979b809406c4d15b1c137fielding snprintf(). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SIGXCPU and SIGXFSZ are now reset to SIG_DFL at boot-time. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is necessary on at least Solaris where the /etc/rc?.d scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are run with these signals ignored, and "SIG_IGN" settings are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding maintained across exec().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rein Tollevik <reint@sys.sol.no>] PR#2009
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the check for symbolic links in ``RewriteCond ... -l'': stat() was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used instead of lstat() and thus this flag didn't work as expected.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rein Tollevik <reint@sys.sol.no>] PR#2010
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the proxy pass-through feature of mod_rewrite for the case of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding existing QUERY_STRING now that mod_proxy was recently changed because of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the new URL parsing stuff. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A few changes to scoreboard definitions which helps gcc generate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding better code. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ANSI C doesn't guarantee that "int foo : 2" in a structure will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be a signed bitfield. So mark a few bitfields as signed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ensure correct code. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The default for HostnameLookups was changed to Off, but there
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was a problem and it wasn't taking effect. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Clean up undefined signals on some platforms (SCO, BeOS).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) After a SIGHUP the listening sockets in the parent weren't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly marked for closure on fork().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [J�rgen Keil <jk@tools.de>] PR#2000
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow %2F in two situations: 1) it is in the query part of the URI,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding therefore not exposed to %2F -> '/' translations and 2) the request
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is a proxy request, so we're not dealing with a local resource anyway.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Without this, the proxy would fail to work for any URL's with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding %2f in them (occurs quite often in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding http://.../cgi-bin/...?http%3A%2F%2F... references) [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Protect against FD_SETSIZE mismatches. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make the shared object compilation command more portable by avoiding
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the direct combination of `-c' & `-o' which is not honored by some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compilers like UnixWare's cc. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: the proxy was creating filenames missing the last four
cfa64348224b66dd1c9979b809406c4d15b1c137fielding characters. While this normally doesn't stop anything from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding working, it can result in extra collisions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Tim Costello <tjcostel@socs.uts.edu.au>] PR#1890
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Now mod_proxy uses the response string (in addition to the response status
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code) from the already used FTP SIZE command to setup the Content-Length
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header if available. [Ralf S. Engelschall] PR#1183
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reanimated the (still undocumented) proxy receive buffer size directive:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Renamed from ReceiveBufferSize to ProxyReceiveBufferSize because the old
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name was really too generic, added documentation for this directive to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the mod_proxy.html and corrected the hyperlink to it in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding new_features_1.3.html document. [Ralf S. Engelschall] PR#1348
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a bug in the src/helpers/fp2rp script and make it a little bit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding faster [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make Configure die when you give it an unknown command switch.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add five new and fresh manpages for the support programs: dbmmanage.1,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding suexec.8, htdigest.1, rotatelogs.8 and logresolve.8. Now all up-to-date
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and per default compiled support programs have manual pages - just to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding document our stuff a little bit more and to be able to do really
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Unix-like installations ;-) [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Major cleanups to the Configure script to make it and its generated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makefiles again readable and maintainable: add SRCDIR option, removed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding INCLUDES_DEPTH[0-2] kludge, cleanup of TARGET option, cleanup of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generated sections, consequently added Makefile headers with inheritance
cfa64348224b66dd1c9979b809406c4d15b1c137fielding information, added subdir movement messages for easier following where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the build process currently stays (more verbose then standard Make, less
cfa64348224b66dd1c9979b809406c4d15b1c137fielding verbose than GNU make), same style to comments in the Configure script,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding added Apache license header, fixed a few bugs, etc. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the new ApacheBench program "ab" to src/support/: This is derived
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from the ZeusBench benchmarking program and can be used to determine the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding response performance of an Apache installation. This version is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding officially licensed with Zeus Technology, Ltd. See the license agreement
cfa64348224b66dd1c9979b809406c4d15b1c137fielding statements in <199803171224.NAA24547@en1.engelschall.com> in apache-core.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Various core functions that are definately not part of the API
cfa64348224b66dd1c9979b809406c4d15b1c137fielding have been made static, and a few have been marked API_EXPORT. Still
cfa64348224b66dd1c9979b809406c4d15b1c137fielding more have been marked CORE_EXPORT and are not intended for general
cfa64348224b66dd1c9979b809406c4d15b1c137fielding use by modules. [Doug MacEachern, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_proxy was not clearing the Proxy-Connection header from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requests; now it does. This did not violate any spec, however
cfa64348224b66dd1c9979b809406c4d15b1c137fielding causes poor interactions when you are talking to remote proxies.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#1741
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various cleanups to the command line interface and manual pages.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) cfg_getline() was not properly handling lines that did not end
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with a line termination character. [Marc Slemko] PR#1869, 1909
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Performance tweak to mod_log_config. [Dmitry Khrustalev]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clean up some undocumented behavior of mod_setenvif related to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "merging" two SetEnvIf directives when they match the same header
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and regex. Document that mod_setenvif will perform comparisons in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the order they appear in the config file. Optimize mod_setenvif by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding doing more work at config time rather than at runtime.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) src/include/ap_config.h now wraps it's #define's with #ifndef/#endif's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to allow for modules to overrule them and to reduce redefinition
cfa64348224b66dd1c9979b809406c4d15b1c137fielding warnings [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) [PORT] For A/UX change the OS-#define for -DAUX to -DAUX3.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Making the hard-coded cross-module function call mime_find_ct() (from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_proxy to mod_mime) obsolete by making sure the API hook for MIME type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding checking is really called even for proxy requests except for URLs with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HTTP schemes (because there we can optimize by not running the type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding checking hooks due to the fact that the proxy gets the MIME Content-type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from the remote host later). This change cleans up mod_mime by removing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the ugly export kludge, makes the one-liner file mod_mime.h obsolete, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding especially unbundles mod_proxy and mod_mime. This way they both now can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be compiled as shared objects and are no longer tied together.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) util.c cleanup and speedup. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Clarification, pstrndup() will always copy n bytes of the source
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and NUL terminate at the (n+1)st byte. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Mark module command_rec and handler_rec structures const so that they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding end up in the read-only data section (and are friendlier to systems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that don't do optimistic memory allocation on fork()). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add check to the "Port" directive to make sure the specified
cfa64348224b66dd1c9979b809406c4d15b1c137fielding port is in the appropriate range. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Performance improvements to invoke_handler().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dmitry Khrustalev <dima@bog.msu.su>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added support for building shared objects even for library-style modules
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (which are built from more than one object file). This now provides the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ability to build mod_proxy as a shared object module. Additionally
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules like mod_example are now also supported for shared object
cfa64348224b66dd1c9979b809406c4d15b1c137fielding building because the generated Makefiles now no longer assume there is at
cfa64348224b66dd1c9979b809406c4d15b1c137fielding least one statically linked module. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Clarify usage of content_type, handler, content_encoding,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding content_language and content_languages fields in request_rec. They
cfa64348224b66dd1c9979b809406c4d15b1c137fielding must always be lowercased; and the strings pointed to shouldn't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be modified (you must copy them to modify them). Fix a few bugs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding related to this. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Clarification: except for RAW_ARGS, all command handlers can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding treat the char * parameters as permanent, and modifiable. There
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is no need to pstrdup() them. Clean up some needless pstrdup().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Now mod_so keeps track of which module shared objects with which names
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are loaded and thus avoids multiple loading and unloading and irritating
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error_log messages. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Prior to the existence of mod_setenv it was necessary to tweak the TZ
cfa64348224b66dd1c9979b809406c4d15b1c137fielding environment variable in the apache core. But that tweaking interferes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with mod_setenv. So don't tweak if the user has specified an explicit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding TZ variable. [Jay Soffian <jay@cimedia.com>] PR#1888
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) rputs() did not calculate r->sent_bodyct properly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Siegmund Stirnweiss <siegst@kat.ina.de>] PR#1900
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The CGI spec says that REMOTE_HOST should be set to the remote hosts's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name, or left unset if this value is unavailable. Apache was setting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it to the IP address when unavailable.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Tony Finch <fanf@demon.net>] PR#1925
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various improvements to the configuration and build support for compiling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules as shared objects. Especially Solaris 2.x, SunOS 4.1, IRIX and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding OSF1 support with GCC and vendor compilers was added. This way shared
cfa64348224b66dd1c9979b809406c4d15b1c137fielding object support is now provided out-of-the-box for FreeBSD, Linux,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Solaris, SunOS, IRIX and OSF1. In short: On all major platforms!
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor cleanup in http_main -- split QNX and OS2 specific "mmap"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard code into separate #defines -- USE_POSIX_SCOREBOARD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and USE_OS2_SCOREBOARD. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix one more special locking problem for RewriteMap programs in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_rewrite: According to the documentation of flock(), "Locks are on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files, not file descriptors. That is, file descriptors duplicated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding through dup(2) or fork(2) do not result in multiple instances of a lock,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but rather multiple references to a single lock. If a process holding a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lock on a file forks and the child explicitly unlocks the file, the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parent will lose its lock.". To overcome this we have to make sure the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RewriteLock file is opened _AFTER_ the childs were spawned which is now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the case by opening it in the child_init instead of the module_init API
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hook. [Ralf S. Engelschall] PR#1029
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change to Location and LocationMatch semantics. LocationMatch no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding longer lets a single slash match multiple adjacent slashes in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding URL. This change is for consistency with RewriteRule and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AliasMatch. Multiple slashes have meaning in URLs that they do
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not have in (some) filesystems. Location on the other hand can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be considered a shorthand for a more complicated regex, and it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding does match multiple slashes with a single slash -- which is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding also consistent with the Alias directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] related PR#1440
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug with mod_mime_magic causing certain files, including files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of length 0, to result in no response from the server.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The Configure script now generates src/include/ap_config.h which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding contains the set of defines used when Apache is compiled on a platform.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This file can then be included by external modules before including
cfa64348224b66dd1c9979b809406c4d15b1c137fielding any Apache header files in case they are being built separately from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache. Along with this change, a couple of minor changes were
cfa64348224b66dd1c9979b809406c4d15b1c137fielding made to make Apache's #defines coexist peacefully with any autoconf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defines an external module might have. [Rasmus Lerdorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix mod_rewrite for the ugly API case where <VirtualHost> sections exist
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but without any RewriteXXXXX directives. Here mod_rewrite is given no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding chance by the API to initialize its per-server configuration and thus
cfa64348224b66dd1c9979b809406c4d15b1c137fielding receives the wrong one from the main server. This is now avoided by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding remembering the server together with the config structure while
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuring and later assuming there is no config when we see a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding difference between the remembered server and the one calling us.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#1790
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed the DBM RewriteMap support for mod_rewrite: First the support now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is automatically disabled under configure time when the dbm_xxx functions
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are not available. Second, two heavy source code errors in the DBM
cfa64348224b66dd1c9979b809406c4d15b1c137fielding support code were fixed. This makes DBM RewriteMap's usable again after
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a long time of brokenness. [Ralf S. Engelschall] PR#1696
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Now all configuration files support Unix-style line-continuation via
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the trailing backslash ("\") character. This enables us to write down
cfa64348224b66dd1c9979b809406c4d15b1c137fielding complex or just very long directives in a more readable way. The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding backslash character has to be really the last character before the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding newline and it has not been prefixed by another (escaping) backslash.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When using ProxyPass the ?querystring was not passed correctly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Joel Truher <truher@wired.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) To deal with modules being compiled and [dynamically] linked
cfa64348224b66dd1c9979b809406c4d15b1c137fielding at a different time from the core, the SERVER_VERSION and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SERVER_BUILT symbols have been abstracted through the new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding API routines apapi_get_server_version() and apapi_get_server_built().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1448
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Preserve trailing slash in canonical path (and hence
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in PATH_INFO). [Paul Sutton, Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: USE_PTHREAD_SERIALIZED_ACCEPT has proven unreliable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding depending on the rev of Solaris and what mixture of modules
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are in use. So it has been disabled, and Solaris is back to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding using USE_FCNTL_SERIALIZED_ACCEPT. Users may experiment with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding USE_PTHREAD_SERIALIZED_ACCEPT at their own risk, it may speed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding up static content only servers. Or it may fail unpredictably.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1779, 1854, 1904
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_test_util_uri.c created which tests the logic in util_uri.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Rewrite of absoluteURI handling, and in particular how
cfa64348224b66dd1c9979b809406c4d15b1c137fielding absoluteURIs match vhosts. Unless a request is a proxy request, a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "http://host" url is treated as if a similar "Host:" header had been
cfa64348224b66dd1c9979b809406c4d15b1c137fielding supplied. This change was made to support future HTTP/1.x protocols
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which may require clients to send absoluteURIs for all requests.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding In order to achieve this change subtle changes were made to the API. In a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request_rec, r->hostlen has been removed. r->unparsed_uri now exists so
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that the unmodified uri can be retrieved easily. r->proxyreq is not set
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by the core, modules must set it during the post_read_request or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding translate_names phase.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Plus changes to the virtualhost test suite for absoluteURI testing.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This fixes several bugs with the proxy proxying requests to vhosts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding managed by the same httpd.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Cleanup of code in http_vhost.c, and remove vhost matching
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code from mod_rewrite. The vhost matching is now performed by a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding globally available function matches_request_vhost(). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reduce memory usage, and speed up ServerAlias support. As a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding side-effect users can list multiple ServerAlias directives
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and they're all considered.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chia-liang Kao <clkao@cirx.org>] PR#1531
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The "poly" directive in image maps did not include the borders of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding polygon, whereas the "rect" directive does. Fix this inconsistency.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Konstantin Morshnev <moko@design.ru>] PR#1771
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make \\ behave as expected. [Ronald.Tschalaer@psi.ch]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the `%a' construct to LogFormat and CustomLog to log the client IP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding address. [Todd Eigenschink <eigenstr@mixi.net>] PR#1885
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: A new source module main/util_uri.c; It contains a routine
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parse_uri_components() and friends which breaks a URI into its component
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parts. These parts are stored in a uri_components structure called
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parsed_uri within each request_rec, and are available to all modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally, an unparse routine is supplied which re-assembles the URI
cfa64348224b66dd1c9979b809406c4d15b1c137fielding components back to an URI, optionally hiding the username:password@ part
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from ftp proxy requests, and other useful routines. Within the structure,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding you find on a ready-for-use basis:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scheme; /* scheme ("http"/"ftp"/...) */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hostinfo; /* combined [user[:password]@]host[:port] */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding user; /* user name, as in http://user:passwd@host:port/ */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding password; /* password, as in http://user:passwd@host:port/ */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hostname; /* hostname from URI (or from Host: header) */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding port_str; /* port string (integer representation is in "port") */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding path; /* the request path (or "/" if only scheme://host was given) */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding query; /* Everything after a '?' in the path, if present */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fragment; /* Trailing "#fragment" string, if present */
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This is meant to serve as the platform for *BIG* savings in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code complexity for the proxy module (and maybe the vhost logic).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make all possible meta-construct expansions ($N, %N, %{NAME} and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ${map:key}) available for all location where a string is created in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_rewrite rewriting rulesets: 1st arg of RewriteCond, 2nd arg of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RewriteRule and for the [E=NAME:STRING] flag of RewriteRule. This way the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding possible expansions are consequently usable at all string creation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding locations. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix initialization of RewriteLogLevel (default now is 0 as documented
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and not 1) and the per-virtual-server merging of directives. Now all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directives except `RewriteEngine' and `RewriteOption' are either
cfa64348224b66dd1c9979b809406c4d15b1c137fielding completely overridden (default) or completely inherited (when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `RewriteOptions inherit') is used. [Ralf S. Engelschall] PR#1325
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix `RewriteMap' program lookup in situations where such maps are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defined but disabled (`RewriteEngine off') in per-server context.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#1431
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug introduced in 1.3b4-dev, config with no Port setting would cause
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server to bind to port 0 rather than 80. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix long-standing problem with RewriteMap _programs_ under Unix derivates
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (like SunOS and FreeBSD) which don't accept the locking of pipes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directly. A new directive RewriteLock is introduced which can be used to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setup a separate locking file which then is used for synchronization.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall] PR#1029
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: The server root is obtained from the registry key
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HKLM\SOFTWARE\Apache Group\Apache\<version> (version is currently
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "1.3 beta"), unless overridden by the -d command line flag. The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding value is stored by running "apache -i -d serverroot". [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Merged os/win32/mod_dll.c into modules/standard/mod_so.c to support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dynamic loading on Win32 and Unix via the same module. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Now mod_rewrite no longer makes problematic assumptions on the characters
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a username can contain when trying to expand it via /etc/passwd.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The mod_setenvif BrowserMatch backwards compatibility command did not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work properly with spaces in the regex. [Ronald Tschalaer] PR#1825
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add new RewriteMap types: First, `rnd' which is equivalent to the `txt'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding type but with a special post-processing for the looked-up value: It
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parses it into alternatives according to `|' chars and then only one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding particular alternative is chosen randomly (this is an essential
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functionality needed for balancing between backend-servers when using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache as a Reverse Proxy. The looked up value here is a list of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding servers). Second, `int' with the built-in maps named `tolower' and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding `toupper' which can be used to map URL parts to a fixed case (this is an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding essential feature to fix the case of server names when doing mass
cfa64348224b66dd1c9979b809406c4d15b1c137fielding virtual-hosting with the help of mod_rewrite instead of using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <VirtualHost> sections). [Ralf S. Engelschall, parts based on code from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Jay Soffian <jay@cimedia.com>] PR#1631
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a new directive to mod_proxy similar to ProxyPass: `ProxyPassReverse'.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This directive lets Apache adjust the URL in Location-headers on HTTP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirect responses sent by the remote server. This way the virtually
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mapped area is no longer left on redirects and thus by-passed which is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding especially essential when running Apache as a reverse proxy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Hide Proxy-Authorization from CGI/SSI/etc just like Authorization is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hidden. [Alvaro Martinez Echevarria]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache will, when started with the -X (single process) debugging flag,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding honor the SIGINT or SIGQUIT signals again now. This capability got lost
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a while ago during OS/2 signal handling changes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) [PORT] Work around the fact that NeXT runs on more than the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding m68k chips in mod_status [Scott Anguish and Timothy Luoma
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <luomat@peak.org>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) [PORT] Recognize FreeBSD versions so we can use the OS regex as well
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as handling unsigned-chars for FreeBSD v3 and v2 [Andrey Chernov
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <ache@nagual.pp.ru> and Jim] PR#1450
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use SA_RESETHAND or SA_ONESHOT when installing the coredump handlers.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding In particular the handlers could trigger themselves into an infinite
cfa64348224b66dd1c9979b809406c4d15b1c137fielding loop if RLimitMem was used with a small amount of memory -- too small
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for the signal stack frame to be set up. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problems with absoluteURIs introduced during 1.3b4. [Dean Gaudet,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Alvaro Martinez Echevarria <alvaro@lander.es>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix multiple UserDir problem introduced during 1.3b4-dev.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1850
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_cpystrn() had an off-by-1 error.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Charles Fu <ccwf@klab.caltech.edu>] PR#1847
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: As Ken suggested the check_cmd_context() function and related
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defines are non-static now so modules can use 'em. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_info would occasionally produce an unpaired <tt> in its
cfa64348224b66dd1c9979b809406c4d15b1c137fielding output. Fixed. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) By default AIX binds a process (and it's children) to a single
cfa64348224b66dd1c9979b809406c4d15b1c137fielding processor. httpd children now unbind themselves from that cpu
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and re-bind to one selected at random via bindprocessor()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Linux 2.0 and above implement RLIMIT_AS, RLIMIT_DATA has almost no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding effect. Work around it by using RLIMIT_AS for the RLimitMEM
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directive. [Enrik Berkhan <enrik@inka.de>] PR#1816
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_mime_magic error message should indicate the filename when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reads fail. ["M.D.Parker" <mdpc@netcom.com>] PR#1827
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Previously Apache would permit </Files> to end <FilesMatch> (and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding similary for Location and Directory), now this is diagnosed as an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error. Improve error messages for mismatched sections (<Files>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <FilesMatch>, <Directory>, <DirectoryMatch>, ...).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) <Files> is not permitted within <Location> (because of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding semantic ordering). [Dean Gaudet] PR#379
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) <Files> with wildcards was broken by the change in wildcard
cfa64348224b66dd1c9979b809406c4d15b1c137fielding semantics (* does not match /). To fix this, <Files> now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apply only to the basename of the request filename. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fixes some other inconsistencies in <Files> semantics
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (such as <Files a*b> not working). [Dean Gaudet] PR#1817
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed bogus "dist.tar" target from Makefile.tmpl and make sure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding backup files are removed on "clean" target [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Add -lm to LIBS for HPUX. [Dean Gaudet] PR#1639
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various errors from select() and accept() in child_main() would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding result in an infinite loop. It seems these two tickle kernel
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or library bugs occasionally, and result in log spammage and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a generally bad scene. Now the child exits immediately,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which seems to be a good workaround.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1747, 1107, 588, 1787, 987, 588
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleaned up some race conditions in unix child_main during
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initialization. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: "UserDir /abspath" without a * in the path would allow
cfa64348224b66dd1c9979b809406c4d15b1c137fielding remote users to access "/~.." and bypass access restrictions
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (but note /~../.. was handled properly).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lauri Jesmin <jesmin@ut.ee>] PR#1701
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: os_is_path_absolute() now takes a const char * instead of a char *.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b5
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Source file dependencies in Makefile.tmpl files throughout the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding source tree were updated to accurately reflect reality.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Preserve the content encoding given by the AddEncoding directive
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when the client doesn't otherwise specify an encoding.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Sort out problems with canonical filename handling happening too late.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The module structure was modified to include a *dynamic_load_handle
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the STANDARD_MODULE_STUFF portion, and the MODULE_MAGIC_NUMBER
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has been bumped accordingly. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) All BrowserMatch directives mentioned in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htdocs/manual/known_client_problems.html are in the default
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configuration files. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) MiNT port update. [Jan Paul Schmidt]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) HTTP/1.1 requires x-gzip and gzip encodings be treated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding equivalent, similarly for x-compress and compress. Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding now ignores a leading x- when comparing encodings. It also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding preserves the encoding the client requests (for example if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it requests x-gzip, then Apache will respond with x-gzip
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the Content-Encoding header).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1772
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a memory leak on keep-alive connections. [Igor Tatarinov]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added mod_so module to support dynamic loading of modules on Unix
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (like mod_dld for Win32). This replaces mod_dld.c. Use SharedModule
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of AddModule in Configuration to build shared modules
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Sameer Parekh, Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor cleanups to r->finfo handling in some modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Abstract read()/write() to ap_read()/ap_write().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makes it easier to add other types of IO code such as SFIO.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Generalize default_port manipulations to make support of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding different protocols easier. [Ben Laurie, Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) There are many cases where users do not want Apache to form
cfa64348224b66dd1c9979b809406c4d15b1c137fielding self-referential urls using the "canonical" ServerName and Port.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The new UseCanonicalName directive (default on), if set to off
cfa64348224b66dd1c9979b809406c4d15b1c137fielding will cause Apache to use the client-supplied hostname and port.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding API: Part of this change required a change to the construct_url()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prototype; and the addition of get_server_name() and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding get_server_port().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Michael Douglass <mikedoug@texas.net>, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#315, 459, 485, 1433
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Yet another rearrangement of the source tree.. now all the common
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header files are in the src/include directory. The -Imain -Iap
cfa64348224b66dd1c9979b809406c4d15b1c137fielding references in Makefiles have been changed to the simpler -Iinclude
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead. In addition to simplifying the build a little bit, this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding also makes it clear when a module is referencing something in a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other than kosher manner (e.g., the proxy including mod_mime.h).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Module-private header files (the proxy, mod_mime, the regex library,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and mod_rewrite) have not been moved to src/include; nor have
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the OS-abstraction files. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a bug where r->hostname didn't have the :port stripped
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from it. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Tweaked the headers_out table size, and the subprocess_env
cfa64348224b66dd1c9979b809406c4d15b1c137fielding table size guess in rename_original_environment(). Added
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MAKE_TABLE_PROFILE which can help discover make_table()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calls that use too small an initial guess, see alloc.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Options and AllowOverride weren't properly merging in the main
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server setting inside vhosts (only an issue when you have no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Directory> or other section containing an Options that affects
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a request). Options +foo or -foo in the main_server wouldn't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding affect the main_server's lookup defaults. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Variable 'cwd' was being used pointlessly before being set.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1738
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) r->allowed handling cleaned up in the standard modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Some case-sensitivity issues cleaned up to be consistent with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RFC2068. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SIGURG doesn't exist everywhere.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_unique_id was erroneously generating a second unique id when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an internal redirect occured. Such redirects occur, for example,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when processing a DirectoryIndex match. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: table_add, table_merge, and table_set include implicit pstrdup()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the key and value. But in many cases this is not required
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because the key/value is a constant, or the value has been built
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by pstrcat() or other similar means. New routines table_addn,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding table_mergen, and table_setn have been added to the API, these
cfa64348224b66dd1c9979b809406c4d15b1c137fielding routines do not pstrdup() their arguments. The core code and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding standard modules were changed to take advantage of these routines.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The resulting server is up to 20% faster in some situations.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Note that it is easy to get code subtly wrong if you pass a key/value
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which is in a pool other than the pool of the table. The only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding safe thing to do is to pass key/values which are in the pool of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the table, or in one of the ancestors of the pool of the table.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding i.e. if the table is part of a subrequest, a value from the main
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request's pool is OK since the subrequest pool is a sub_pool of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding main request's pool (and therefore has a lifespan at most as long as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the main pool). There is debugging code which can detect improper
cfa64348224b66dd1c9979b809406c4d15b1c137fielding usage, enabled by defining POOL_DEBUG. See alloc.c for more details.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dmitry Khrustalev <dima@bog.msu.su>, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More mod_mime_magic cleanup: fewer syscalls; should handle "files"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which don't exist on disk more gracefully; handles vhosts properly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Update documentation to reflect the code -- if there's no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MimeMagicFile directive then the module is not enabled.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Some older *nix dialects cannot automatically start scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which begin with a #! interpreter line (the shell starts the scripts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding appropriately on these platforms). Apache now supports starting of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "hashbang-scripts" when the NEED_HASHBANG_EMUL define is set.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer, with code from peter@zeus.dialix.oz.au (Peter Wemm)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding taken from tcsh]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: "typedef array_header table" removed from alloc.h, folks should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding have been writing to use table as if it were an opaque type, but even
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some standard modules got this wrong. By changing the definition
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to "typedef struct table table" module authors will receive compile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding time warnings that they're doing the wrong thing. This change
cfa64348224b66dd1c9979b809406c4d15b1c137fielding facilitates future changes with more sophisticated table
cfa64348224b66dd1c9979b809406c4d15b1c137fielding structures. Specifically, module authors should be using table_elts()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to get access to an array_header * for the table. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Renamed new_connection() to avoid namespace collision with LDAP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding library routines. [Ken Coar, Rasmus Lerdorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: mod_speling is now available on the Win32 platform.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) For clarity the following compile time definition was changed:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SAFE_UNSERIALIZED_ACCEPT -> SINGLE_LISTEN_UNSERIALIZED_ACCEPT
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Also, for example, HAVE_MMAP would mean to use mmap() scoreboards
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and not be a general notice that the OS has mmap(). Now the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HAVE_MMAP/SHMGET #defines strictly are informational that the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding OS has that method of shared memory; the type to use for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the scoreboard is a seperate #define (USE_MMAP_SCOREBOARD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and USE_SHMGET_SCOREBOARD). This allows outside modules to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding determine if shared memory is available and allows Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to determine the best method to use for the scoreboard.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: UnixWare 2.1.2 SMP appears to require USE_FCNTL_SERIALIZED_ACCEPT,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as do various earlier versions. It should be safe on all versions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Unixware 1.x appears to have the same SIGHUP bug as solaris does with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the slack code. A few other cleanups for Unixware.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Tom Hughes <thh@cyberscience.com>] PR#1082, PR#1282, PR#1499, PR#1553
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: A/UX can handle single-listen accepts without mutex
cfa64348224b66dd1c9979b809406c4d15b1c137fielding locking, so we add SINGLE_LISTEN_UNSERIALIZED_ACCEPT. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When die() happens we need to eat any request body if one exists.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Otherwise we can't continue with a keepalive session. This shows up
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as a POST problem with MSIE 4.0, typically against pages which are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding authenticated. [Roy Fielding] PR#1399
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If you define SECURITY_HOLE_PASS_AUTHORIZATION then the Authorization
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header will be passed to CGIs. This is generally a security hole, so
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it's not a default. [Marc Slemko] PR#549
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix Y2K problem with date printing in suexec log.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Eggert <eggert@twinsun.com>] PR#1343
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32 deserves a pid file. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suexec errors now include the errno/description. [Marc Slemko] PR#1543
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: OSF/1 now uses USE_FLOCK_SERIALIZED_ACCEPT to solve PR#467.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The choice of flock vs. fcntl was made based on timings which showed that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding even on non-NFS, non-exported filesystems fcntl() was an order of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding magnitude slower. It also uses SINGLE_LISTEN_UNSERIALIZED_ACCEPT so
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that single socket users will see no difference. [Dean Gaudet] PR#467
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "File does not exist" error message was erroneously including the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding errno. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve the warning message generated when a client drops the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding connection (hits stop button, etc.) during a send. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Defining GPROF will disable profiling in the parent and enable it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the children. If you're profiling under Linux this is pretty much
cfa64348224b66dd1c9979b809406c4d15b1c137fielding necessary because SIGPROF is lost across a fork(). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) htdigest and htpasswd needed slight tweaks to work on OS/2 and WIN32.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The NeXT cc (which is gcc hacked up) doesn't appear to support some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding gcc functionality. Work around it.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Keith Severson <keith@sssd.navy.mil>] PR#1613
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Some linkers complain when .o files contain no functions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Keith Severson <keith@sssd.navy.mil>] PR#1614
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Some const declarations in mod_imap.c that were added for debugging
cfa64348224b66dd1c9979b809406c4d15b1c137fielding purposes caused some compilers heartburn without adding any
cfa64348224b66dd1c9979b809406c4d15b1c137fielding significant value, so they've been removed. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The src/main/*.h header files have had #ifndef wrappers added to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding insulate them against duplicate calls if they get included through
cfa64348224b66dd1c9979b809406c4d15b1c137fielding multiple paths (e.g., in .c files as well as other .h files).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The libap routines now have a header file for their prototypes,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding src/ap/ap.h, to ease their use in non-httpd applications. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex with a plaintext header file would emit the <PRE>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding start-tag before the HTML preamble, rather than after the preamble
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but before the header file contents. [John Van Essen <jve@gamers.org>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Fix a possible buffer overflow in logresolve. This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only an issue on systems without a MAXDNAME define or where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the resolver returns domain names longer than MAXDNAME. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is used to read various types of files such as htaccess and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htpasswd files. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Ensure that the buffer returned by ht_time is always
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly null terminated. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The "Connection" header could be sent back with multiple "close"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding tokens. Not an error, but a waste.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald.Tschalaer@psi.ch] PR#1683
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_rewrite's RewriteLog should behave like mod_log_config, it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding shouldn't force hostname lookups. [Dean Gaudet] PR#1684
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "basic" auth needs a case-insensitive comparison.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald.Tschalaer@psi.ch] PR#1666
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) For maximum portability, the environment passed to CGIs should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only contain variables whose names match the regex
cfa64348224b66dd1c9979b809406c4d15b1c137fielding /[a-zA-Z][a-zA-Z0-9_]*/. This is now enforced by stamping
cfa64348224b66dd1c9979b809406c4d15b1c137fielding underscores over any character outside the regex. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding affects HTTP_* variables, in a way that should be backward
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compatible for all the standard headers; and affects variables
cfa64348224b66dd1c9979b809406c4d15b1c137fielding set with SetEnv/BrowserMatch and similar directives.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_speling returned incorrect HREF's when an ambigous match
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was found. Noticed by <robinton@amtrash.comlink.de> (Soeren Ziehe)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [robinton@amtrash.comlink.de (Soeren Ziehe), Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Apache now compiles & runs on an EBCDIC mainframe
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (the Siemens BS2000/OSD family) in the POSIX subsystem
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix problem killing children when terminating. Allow ^C
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to shut down the server. [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) pstrdup() is implicit in calls to table_* functions, so there's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no need to do it before calling. Clean up a few cases.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) new -C and -c command line arguments
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -C "directive" : process directive before reading config files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -c "directive" : process directive after reading config files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding httpd -C "PerlModule Apache::httpd_conf"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern, Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Fix the execution of CGIs that are scripts and called
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with path info that does not have an '=' in.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#1591
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Fix a call to os_canonical_filename so it doesn't try to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mess with fake filenames. This fixes proxy caching on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding win32. PR#1265
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: General mod_include cleanup, including fixing several
cfa64348224b66dd1c9979b809406c4d15b1c137fielding possible buffer overflows and a possible infinite loop.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Numerous changes to mod_imap in a general cleanup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding including fixing a possible buffer overflow. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: overhaul of multithreading code. Shutdowns are now graceful
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (connections are not dropped). Code can handle graceful restarts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (but there is as yet no way to signal this to Apache). Various
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other cleanups. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The aplog_error changes specific to 1.3 introduced a buffer
cfa64348224b66dd1c9979b809406c4d15b1c137fielding overrun in the (now legacy) log_printf function. Fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_digest didn't properly deal with proxy authentication. It
cfa64348224b66dd1c9979b809406c4d15b1c137fielding also lacked a case-insensitive comparision of the "Digest"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding token. [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>] PR#1599
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A few cleanups in mod_status for efficiency. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A few cleanups in mod_info to make it thread-safe, and remove an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding off-by-5 bug that could hammer \0 on the stack. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) no2slash() was O(n^2) in the length of the input. Make it O(n).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: migration from strncpy() to our "enhanced" version called
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ap_cpystrn() for performance and functionality reasons.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Located in libap.a. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) table_set() and table_unset() did not deal correctly with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding multiple occurrences of the same key.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Stephen Scheck <sscheck@infonex.net>, Ben Laurie] PR#1604
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The AuthName must now be enclosed in quotes if it is to contain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spaces. [Ken Coar] PR#1195
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: new function: ap_escape_quotes(). [Ken Coar] PR#1195
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Work around optimiser bug that killed ISAPI in release
cfa64348224b66dd1c9979b809406c4d15b1c137fielding versions. [Ben Laurie] PR#1533
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Update the MPE port [Mark Bixby, Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Interim (slow) fix for p->sub_pool critical sections in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding alloc.c (affects win32 only). [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) non-WIN32 was missing destroy_mutex definition. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) send_fd_length() did not calculate total_bytes_sent properly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Reser <breser@regnow.com>] PR#1366
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The bputc() macro was not properly integrated with the chunking
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code; in many cases modules using bputc() could cause completely
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bogus chunked output. (Typically this will show up as problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with Internet Explorer 4.0 reading a page, but other browsers
cfa64348224b66dd1c9979b809406c4d15b1c137fielding having no problem.) [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Create LARGE_WRITE_THRESHOLD define which determines how many
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bytes have to be supplied to bwrite() before it will consider
cfa64348224b66dd1c9979b809406c4d15b1c137fielding doing a writev() to assemble multiple buffers in one system
cfa64348224b66dd1c9979b809406c4d15b1c137fielding call. This is critical for modules such as mod_include,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_autoindex, mod_php3 which all use bputc()/bputs() of smaller
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strings in some cases. The result would be extra effort
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setting up writev(), and in many cases extra effort building
cfa64348224b66dd1c9979b809406c4d15b1c137fielding chunks. The default is 31, it can be overriden at compile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding time. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Move the gid switching code into the child so that log files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and pid files are opened with the root gid.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Gregory A Lundberg <lundberg@vr.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Check for binaries by looking for the executable header
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of counting control characters.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Patterson <Jim.Patterson@Cognos.COM>] PR#1340
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_snprintf() moved from main/util_snprintf.c to ap/ap_snprintf.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so the functionality is available to applications other than the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server itself (like the src/support tools). [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_slack() moved out of main/util.c into ap/ap_slack.c as part of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the libap consolidation work. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_snprintf() with a len of 0 behaved like sprintf(). This is not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding useful, and isn't what the standards require. Now it returns 0
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and writes nothing. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When an error occurs in fcntl() locking suggest the user look up
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the docs for LockFile. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Eliminate some dead code from writev_it_all().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex had an fread() without checking the result code.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding It also wouldn't handle "AddIconByType (TXT,/icons/text.gif text/*"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (note the missing closing paren) properly. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) It appears the "257th byte" bug (see
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
cfa64348224b66dd1c9979b809406c4d15b1c137fielding at the 256th byte as well. Fixed. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Fix mod_mime_magic under OS/2, no support for block devices.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Havard]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix memory corruption caused by allocating auth usernames in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding wrong pool. [Dean Gaudet] PR#1500
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix an off-by-1, and an unterminated string error in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_mime_magic. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a potential SEGV problem in mod_negotiation when dealing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with type-maps. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Better glibc support under Linux. [Dean Gaudet] PR#1542
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "RedirectMatch gone /" would cause a SIGSEGV. [Dean Gaudet] PR#1319
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: avoid overflows during file canonicalisations.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [malcolm@mgdev.demon.co.uk] PR#1378
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: set_file_slot() didn't detect absolute paths. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#1511, 1508
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: mod_status display header didn't match fields. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The pthread_mutex_* functions return an error code, and don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding set errno. [Igor Tatarinov <tatarino@prairie.NoDak.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Allow spaces to prefix the interpreter in #! lines.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie] PR#1101
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Cure file leak in CGIs. [Peter Tillemans <pti@net4all.be>] PR#1523
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) proxy_ftp: the directory listings generated by the proxy ftp module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding now have a title in which the path components are clickable and allow
cfa64348224b66dd1c9979b809406c4d15b1c137fielding quick navigation to the clicked-on directory on the currently listed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ftp server. This also fixes a bug where the ".." directory links would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sometimes refer to the wrong directory. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Allocate the correct amount of memory for the scoreboard.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Hyde] PR#1387
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Only lowercase the part of the path that is real. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problems with timeouts in inetd mode and -X mode. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the spurious "(0)unknown error: mmap_handler: mmap failed"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error messages. [Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Work around brain-damaged spawn calls that can't deal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with spaces and slashes. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Fix the code so CGIs can use socket calls on Windows.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The problem was that certain undocumented environment variables
cfa64348224b66dd1c9979b809406c4d15b1c137fielding needed for sockets to work under Win32 were not being passed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Frank Faubert <frank@sane.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a "-V" command line flag to the httpd binary. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding flag shows some of the defines that Apache was compiled with.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding It is useful for debugging purposes. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Start separating the ap_*() routines into their own library, so they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding can be used by items in src/support among other things.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#512, 905, 1252, 1308
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Give a more informative error when no AuthType is set.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove strtoul() use from mod_proxy because it isn't available
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on all platforms. [Marc Slemko] PR#1214
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Some Win32 systems terminated all responses after 16 kB.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This turns out to be a bug in Winsock - select() doesn't always
cfa64348224b66dd1c9979b809406c4d15b1c137fielding return the correct status. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Directives owned by http_core can now use the new check_cmd_context()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding routine to ensure that they're not being used within a container
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (e.g., <Directory>) where they're invalid. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Recent changes made it necessary to add explicit prototype
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for fgetc() and fgets() on SunOS 4.x. [Martin Kraemer, Ben Hyde]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) It was necessary to distinguish between resources which are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allocated in the parent, for cleanup in the parent, and resources
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which are allocated in each child, for cleanup in each child.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding A new pool was created which is passed to the module child_init
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and child_exit functions; modules are free to register per-child
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cleanups there. This fixes a bug with reliable piped logs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex wasn't displaying the ReadmeName file at the bottom
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unless it was also doing FancyIndexes, but it displayed the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HeaderName file at the top under all circumstances. It now shows
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the ReadmeName file for simple indices, too, as it should.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1373
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) http_core was mmap()ing even in cases where it wasn't going to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding read the file. [Ben Hyde <bhyde@gensym.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Complete rewrite ;-) of mod_rewrite's URL rewriting engine:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Now the rewriting engine (the heart of mod_rewrite) is organized more
cfa64348224b66dd1c9979b809406c4d15b1c137fielding straight-forward, first time well documented and reduced to the really
cfa64348224b66dd1c9979b809406c4d15b1c137fielding essential parts. All redundant cases were stripped off and processing now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is the same for both per-server and per-directory context with only a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding minimum difference (the prefix stripping in per-dir context). As a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding side-effect some subtle restrictions and two recently discovered problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are gone: Wrong escaping of QUERY_STRING on redirects in per-directory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding context and restrictions on the substitution URL on redirects.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally some minor source cleanups were done.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Lars Eilebrecht wrote a whole new set of Apache Vhost Internals
cfa64348224b66dd1c9979b809406c4d15b1c137fielding documentation, examples, explanations and caveats. They live in a new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding subdirectory htdocs/manual/vhost/. [Lars Eilebrecht <sfx@unix-ag.org>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If ap_slack fails to allocate above the low slack line it's a good
cfa64348224b66dd1c9979b809406c4d15b1c137fielding indication that further problems will occur; it's a better indication
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than many external libraries give us when we actually run out of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding descriptors. So report it to the user once per restart.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1181
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change mod_include and mod_autoindex to use Y2K-safe date formats
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by default. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a "SuppressColumnSorting" option to the IndexOptions list,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which will keep the column heading from being links for sorting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the display. [Ken Coar, suggested by Brian Tiemann <btman@pacific.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Update the LynxOS port. [Marius Groeger <mag@sysgo.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix logic error when issuing a mmap() failed message
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with a non-zero MMAP_THRESHOLD.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Chambers <davidc@flosun.salk.edu>] PR#1294
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Preserve handler value on ProxyPass'ed requests by not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding calling find_types on a proxy'd request; fixes problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding where some ProxyPass'ed URLs weren't actually passed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the proxy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht] PR#870
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a byte ordering problem in mod_access which prevented
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the old-style syntax (i.e. "a.b.c." to match a class C)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from working properly. [Dean Gaudet] PR#1248, 1328, 1384
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problem with USE_FLOCK_SERIALIZED_ACCEPT not working
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly. Each child needs to open the lockfile instead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of using the passed file-descriptor from the parent.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski] PR#1056
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the error logging in mod_cgi; the recent error log changes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding introduced a bug that prevented it from working correctly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Default to USE_FCNTL_SERIALIZED_ACCEPT on HPUX to properly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handle multiple Listen directives. [Marc Slemko] PR#872
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Inherit a bugfix to fnmatch.c from FreeBSD sources.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["[KOI8-R] ������ ������" <ache@nagual.pp.ru>] PR#1311
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When a configuration parse complained about a bad directive,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the logger would use whatever (unrelated) value was in errno.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding errno is now forced to EINVAL first in this case. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A sed command in the Configure script pushed the edge of POSIXness,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding breaking on some systems. [Bhaba R.Misra <system@vt.edu>] PR#1368
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Solaris >= 2.5 was totally broken due to a mess up using pthread
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mutexes. [Roy Fielding, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2 Port updated; it should be possible to build OS/2 from the same
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sources as Unix now. [Brian Havard <brianh@kheldar.apana.org.au>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a year formatting bug in mod_usertrack.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Eggert <eggert@twinsun.com>] PR#1342
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A mild SIGTERM/SIGALRM race condition was eliminated.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1211
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Warn user that default path has changed if /usr/local/etc/httpd
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is found on the system. [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various mod_mime_magic bug fixes and cleanups: Uncompression
cfa64348224b66dd1c9979b809406c4d15b1c137fielding should work, it should work on WIN32, and a few resource
cfa64348224b66dd1c9979b809406c4d15b1c137fielding leaks and abort conditions are fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1205
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: On AIX 1.x files can't be named '@', fix the proxy cache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to use '%' instead of '@' in its encodings.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Schuler <schuld@btv.ibm.com>] PR#1317
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve the warning message generated when the "server is busy".
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1293
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: All ports which don't otherwise define DEF_WANTHSREGEX will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding get Spencer regex by default. This is to avoid having to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding discover bugs in operating system libraries. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: "Fix" PR#467 by generating warnings on systems which we have
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not been able to get working USE_*_SERIALIZED_ACCEPT settings for.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Document this a bit more in src/PORTING. [Dean Gaudet] PR#467
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Ensure that one copy of config warnings makes it to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding error_log. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Invent new structure and associated methods to handle config file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reading. Add "custom" hook to use config file cfg_getline() on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding something which is not a FILE* [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make single-exe Windows install. [Ben Laurie and Eric Esselink]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Make CGI work under Win95. [Ben Laurie and Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Make index.html and friends work under Win95. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Solaris 2.4 needs Spencer regex, the system regex is broken.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [John Line <jml4@cam.ac.uk>] PR#1321
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Default pathname has been changed everywhere to /usr/local/apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Sameer <sameer@c2.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: AIX now uses USE_FCNTL_SERIALIZED_ACCEPT.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Bronder <David-Bronder@uiowa.edu>] PR#849
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: i386 AIX does not have memmove.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Schuler <schuld@btv.ibm.com>] PR#1267
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: HPUX now defaults to using Spencer regex.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Philippe Vanhaesendonck <pvanhaes@be.oracle.com>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Omar Del Rio <al112263@academ01.lag.itesm.mx>] PR#482, 1246
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Some versions of NetBSD don't automatically define
cfa64348224b66dd1c9979b809406c4d15b1c137fielding __NetBSD__. Workaround by defining NETBSD.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chris Craft <ccraft@cncc.cc.co.us>] PR#977
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: UnixWare 2.x requires -lgen for syslog.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Hans Snijder <hs@meganet.nl>] PR#1249
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: ULTRIX appears to not have syslog.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lars Eilebrecht <Lars.Eilebrecht@unix-ag.org>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Basic Gemini port (treat it like unixware212).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["Pavel Yakovlev (Paul McHacker)" <hac@tomcat.olly.ru>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: All SVR4 systems now use NET_SIZE_T = size_t, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding use USE_SHMGET_SCOREBOARD.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various improvements in detecting config file errors (missing closing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directives for <Directory>, <Files> etc. blocks, prohibiting global
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server settings in <VirtualHost> blocks, flagging unhandled multiple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding arguments to <Directory>, <Files> etc.)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support to suexec wrapper program for mod_unique_id's UNIQUE_ID
cfa64348224b66dd1c9979b809406c4d15b1c137fielding variable to provide this one to suexec'd CGIs, too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [M.D.Parker <mdpc@netcom.com>] PR#1284
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New support tool: src/support/split-logfile, a sample Perl script which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding splits up a combined access log into separate files based on the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name of the virtual host (listed first in the log records by "%v").
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3b2 (there is no 1.3b1)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) TestCompile was not passing $LIBS [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Makefile.tmpl was not using $CFLAGS in the link phase.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add debugging code to alloc.c. Defining ALLOC_DEBUG provides a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rudimentary memory debugger which can be used on live servers with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding low impact -- it sets all allocated and freed memory bytes to 0xa5.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Defining ALLOC_USE_MALLOC will cause the alloc code to use malloc()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and free() for each object. This is far more expensive and should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only be used for testing with tools such as Electric Fence and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Purify. See main/alloc.c for more details. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure uses a sh trap and didn't set its exitcode properly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1159
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Yet another vhost revamp. Add the NameVirtualHost directive which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding explicitly lists the ip:port pairs that are to be used for name-vhosts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding From a given ip:port, regardless what the Host: header is, you can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only reach the vhosts defined on that ip:port. The precedence of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding vhosts was reversed to match other precedences in the config --
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the earlier vhosts override the later vhosts. All vhost matching was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding moved into http_vhost.[ch]. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ap_inline can be used to force inlining. GNUC __attribute__() can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be used for whatever reason is appropriate (i.e. format() warnings
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for printf style functions). Both are enabled only with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding gcc >= 2.7.x (so that we have fewer support issues with older
cfa64348224b66dd1c9979b809406c4d15b1c137fielding versions). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix support for Proxy Authentication (we were testing the response
cfa64348224b66dd1c9979b809406c4d15b1c137fielding status too early). [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CoreDumpDirectory directive directs where the core file is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding written when a SIGSEGV, SIGBUS, SIGABORT or SIGABRT are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding received. [Marc Slemko, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Support for Atari MINT.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jan Paul Schmidt <Jan.P.Schmidt@mni.fh-giessen.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When booting, apache will now detach itself from stdin, stdout,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and stderr. stderr will not be detached until after the config
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files have been read so you will be able to see initial error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding messages. After that all errors are logged in the error_log.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This makes it more convenient to start apache via rsh, ssh,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or crontabs. [Dean Gaudet] PR#523
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Also removed the auto-generated link to www.apache.org that was the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding source of so many misdirected bug reports. [Roy Fielding, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) send_fb would not detect aborted connections in some situations.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include would use uninitialized data when parsing certain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding expressions involving && and ||. [Brian Slesinsky] PR#1139
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_imap should only handle GET methods. [Jay Bloodworth]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex improperly counted &escapes; as more than one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding character in the description. It also improperly truncated
cfa64348224b66dd1c9979b809406c4d15b1c137fielding descriptions that were exactly the maximum length.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) RedirectMatch was not properly escaping the result (PR#1155). Also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "RedirectMatch /advertiser/(.*) $1" is now permitted.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include now uses symbolic names to check for request success
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and return HTTP errors, and correctly handles all types of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirections (previously it only did temporary redirect correctly).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_userdir was modifying r->finfo in cases where it wasn't setting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding r->filename. Since those two are meant to be in sync with each other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this is a bug. ["Paul B. Henson" <henson@intranet.csupomona.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Support Unisys SVR4, whose uname returns mostly useless data.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["Kaufman, Steven E" <Steven.Kaufman@unisys.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Inetd mode (which is buggy) uses timeouts without having setup the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding jmpbuffer. [Dean Gaudet] PR#1064
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around problem under Linux where a child will start looping
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reporting a select error over and over.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rick Franchuk <rickf@transpect.net>] PR#1107, 987, 588
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed error in proxy_util.c when looping through multiple host IP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding addresses. [Lars Eilebrecht] PR#974
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If BUFFERED_LOGS is defined then mod_log_config will do atomic
cfa64348224b66dd1c9979b809406c4d15b1c137fielding buffered writes -- that is, it will buffer up to PIPE_BUF (i.e. 4k)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bytes before writing, but it will never split a log entry across a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding buffer boundary. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: the short_score record has been split into two pieces, one which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the parent writes on, and one which the child writes on. As part of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this change the get_scoreboard_info() function was removed, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard_image was exported. This change fixes a race condition
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in file based scoreboard systems, and speeds up changes involving the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard in earlier 1.3 development. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: New register_other_child() API (see http_main.h) which allows
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules to register children with the parent for maintenance. It
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is disabled by defining NO_OTHER_CHILD. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: New piped_log API (see http_log.h) which implements piped logs,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and will use register_other_child to implement reliable piped logs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when it is available. The reliable piped logs part can be disabled
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by defining NO_RELIABLE_PIPED_LOGS. At the moment reliable piped
cfa64348224b66dd1c9979b809406c4d15b1c137fielding logs is only available on Unix. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: set_last_modified() broken into set_last_modified(), set_etag(), and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding meets_conditions(). This allows conditional HTTP selection to be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handled separately from the storing of the header fields, and provides
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the ability for CGIs to set their own ETags for conditional checking.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar, Roy Fielding] PR#895
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes to mod_log_config to allow naming of format strings.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Format nicknames are defined with "LogFormat fmt nickname", and can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be used with "LogFormat nickname" and "CustomLog logtarget nickname".
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New module, "mod_speling", which can help find files even when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the URL is slightly misspelled. [Martin Kraemer, Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: New function child_terminate() triggers the child process to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exit, while allowing the child finish what it needs to for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding current request first.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern, Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Windows now defaults to using full status reports with mod_status.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexei Kosut] PR #1094
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) *Really* disable all mod_rewrite operations if the engine is off.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Some things (like RewriteMaps) were checked/performed even if they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding weren't supposed to be. [Ken Coar] PR #991
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Implement a new timer scheme which eliminates the need to call alarm() all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the time. Instead a counter in the scoreboard for each child is used to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding show when the child has made forward progress. The parent samples this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding counter every scoreboard maintenance cycle, and issues SIGALRM if no
cfa64348224b66dd1c9979b809406c4d15b1c137fielding progress has been made in the timeout period. This reduces the static
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request best-case syscall count to 22 from 29. This scheme is only
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used by systems with memory-based scoreboards. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The proxy now properly handles CONNECT requests which are sent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to proxy servers when using ProxyRemote. [Marc Slemko] PR#1024
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A script called apachectl has been added to the support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory. This script allows you to do things such as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "apachectl start" and "apachectl restart" from the command
cfa64348224b66dd1c9979b809406c4d15b1c137fielding line. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Modules and core routines are now put into libraries, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding simplifies the link line tremendously (among other advantages).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Some of the MD5 names defined in Apache have been renamed to have
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an `ap_' prefix to avoid conflicts with routines supplied by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding external libraries. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removal of mod_auth_msql.c from the distribution. There are many
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other options for databases today. Rather than offer one option,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding offer none at this time. mod_auth_msql and other SQL database
cfa64348224b66dd1c9979b809406c4d15b1c137fielding authentication modules can be found at the Apache Module Registry.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding http://modules.apache.org/ It would be nice to offer a generic
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth_sql option in the near future.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: BeOS support added [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure no longer accepts the -make option, since it creates
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Makefile on the fly based on Makefile.tmpl and Configuration.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache now gracefully shuts down when it receives a SIGTERM, instead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of forcibly killing off all its processes and exiting without
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cleaning up. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: A new field in the request_rec, r->mtime, has been added to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding avoid gratuitous parsing of date strings. It is intended to hold
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the last-modified date of the resource (if applicable). An
cfa64348224b66dd1c9979b809406c4d15b1c137fielding update_mtime() routine has also been added to advance it if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding appropriate. [Roy Fielding, Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: If a htaccess file can not be read due to bad permissions,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding deny access to the directory with a HTTP_FORBIDDEN. The previous
cfa64348224b66dd1c9979b809406c4d15b1c137fielding behavior was to ignore the htaccess file if it could not be read.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This change may make some setups with unreadable htaccess files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding stop working. [Marc Slemko] PR#817
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add aplog_error() providing a mechanism to define levels of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding verbosity to the server error logging. This addition also provides
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the ability to log errors using syslogd. Error logging is configurable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on a per-server basis using the LogLevel directive. Conversion
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of log_*() in progress. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Further enhance aplog_error() to not log filename, line number, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding errno information when it isn't applicable. [Ken Coar, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Canonicalise filenames under Win32. Short filenames are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding converted to long ones. Backslashes are converted to forward
cfa64348224b66dd1c9979b809406c4d15b1c137fielding slashes. Case is converted to lower. Parts of URLs that do not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding correspond to files are left completely alone. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: 2 new OSs added to the list of ports:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Encore's UMAX V: Arieh Markel <amarkel@encore.com>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Acorn RISCiX: Stephen Borrill <sborrill@xemplar.co.uk>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the server version (SERVER_VERSION macro) to the "server
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configured and running" entry in the error_log. Also build an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding object file at link-time that contains the current time
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (SERVER_BUILT global const char[]), and include that in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding message. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set r->headers_out when sending responses from the proxy.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This fixes things such as the logging of headers sent from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the proxy. [Marc Slemko] PR#659
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) support/httpd_monitor is no longer distributed because the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard should not be file based if at all possible. Use
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_status to see current server snapshot.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) (set_file_slot): New function, allowing auth directives to be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding independent of the server root, so the server documents can be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding moved to a different directory or machine more easily.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David J. MacKenzie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If no TransferLog is given explicitly, decline
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to log. This supports coexistence with other logging modules,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding such as the custom one that UUNET uses. [David J. MacKenzie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Check for titles in server-parsed HTML files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Ignore leading newlines and returns in titles. The old behavior
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of replacing a newline after <title> with a space causes the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding title to be misaligned in the listing. [David J. MacKenzie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change mod_cern_meta to be configurable on a per-directory basis.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David J. MacKenzie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add 'Include' directive to allow inclusion of configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files within configuration files. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Proxy errors on connect() are logged to the error_log (nothing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding new); now they include the IP address and port that failed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (*that's* new). [Ken Coar, Marc Slemko] PR#352
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various architectures now define USE_MMAP_FILES which causes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the server to use mmap() for static files. There are two
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compile-time tunables MMAP_THRESHOLD (minimum number of bytes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding required to use mmap(), default is 0), and MMAP_SEGMENT_SIZE (maximum
cfa64348224b66dd1c9979b809406c4d15b1c137fielding number of bytes written in one cycle from a single mmap()d object,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding default 32768). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Added post_read_request API phase which is run right after reading
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the request from a client, or right after an internal redirect. It is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding useful for modules setting environment variables that depend only on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the headers/contents of the request. It does not run during subrequests
cfa64348224b66dd1c9979b809406c4d15b1c137fielding because subrequests inherit pretty much everything from the main
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added mod_unique_id which is used to generate a unique identifier for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding each hit, available in the environment variable UNIQUE_ID.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) init_modules is now called after the error logs have been opened. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allows modules to emit information messages into the error logs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
cfa64348224b66dd1c9979b809406c4d15b1c137fielding information for case where proxy module is not available. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Apache has need for mutexes to serialize its children around
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accept. In prior versions either fcntl file locking or flock file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding locking were used. The method is chosen by the definition of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding USE_xxx_SERIALIZED_ACCEPT in conf.h. xxx is FCNTL for fcntl(),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and FLOCK for flock(). New options have been added:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - SYSVSEM to use System V style semaphores
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - PTHREAD to use POSIX threads (appears to work on Solaris only)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - USLOCK to use IRIX uslock
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Based on timing various techniques, the following changes were made
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the defaults:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Linux 2.x uses flock instead of fcntl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Solaris 2.x uses pthreads
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - IRIX uses SysV semaphores -- however multiprocessor IRIX boxes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work far faster if you -DUSE_USLOCK_SERIALIZED_ACCEPT
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Pierre-Yves Kerembellec <Pierre-Yves.Kerembellec@vtcom.fr>,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Martijn Koster <m.koster@pobox.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: The semantics of accept/select make it very desirable to use
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mutexes to serialize accept when multiple Listens are in use. But
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the case where only a single socket is open it is sometimes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redundant to serialize accept(). Not all unixes do a good job with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding potentially dozens of children blocked on accept() on the same
cfa64348224b66dd1c9979b809406c4d15b1c137fielding socket. It's now possible to define SINGLE_LISTEN_UNSERIALIZED_ACCEPT and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the server will avoid serialization when listening on only one socket,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and use serialization when listening on multiple sockets.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#467
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure changes: TestLib replaced by TestCompile, which has
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some additional capability (such as doing a sanity check of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the compiler and flags selected); the version of Solaris is now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding available via the #define value of SOLARIS2; IRIX n32bit libs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding now supported and selectable by new Configuration Rule: IRIXN32;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding We no longer default to -O2 optimization. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated Configure: Configuration now uses AddModule to specify
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module source or binary file location, relative to src directory.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Modules can be dropped into modules/extra, or in their own
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory, and modules can come with a Makefile or Configure can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding create one. Modules can add compiler or library information to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generated Makefiles. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Source core re-organisation: distributed modules are now in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules/standard. All other source code is in main. OS-specific
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code is in os/{unix,emx,win32} directories. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_browser has been removed, since it's replaced by mod_setenvif.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix another long-standing bug in sub_req_lookup_file where it would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding happily skip past access checks on subdirectories looked up with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding relative paths. (It's used by mod_dir, mod_negotiation,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and mod_include.) [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) directory_walk optimization to reduce an O(N*M) loop to O(N+M) where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding N is the number of <Directory> sections, and M is the number of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding components in the filename of an object.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding To achieve this optimization the following config changes were made:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Wildcards (* and ?, not the regex forms) in <Directory>s,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Files>s, and <Location>s now treat a slash as a special
cfa64348224b66dd1c9979b809406c4d15b1c137fielding character. For example "/home/*/public_html" previously would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding match "/home/a/andrew/public_html", now it only matches things
cfa64348224b66dd1c9979b809406c4d15b1c137fielding like "/home/bob/public_html". This mimics /bin/sh behaviour.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - It's possible now to use [] wildcarding in <Directory>, <Files>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or <Location>.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Regex <Directory>s are applied after all non-regex <Directory>s.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a bug introduced in 1.3a1 directory_walk regarding .htaccess files
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and corrupted paths. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enhanced and cleaned up the URL rewriting engine of mod_rewrite:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding First the grouped parts of RewriteRule pattern matches (parenthesis!) can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be accessed now via backreferences $1..$9 in RewriteConds test-against
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strings in addition to RewriteRules subst string. Second the grouped
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parts of RewriteCond pattern matches (parenthesis!) can be accessed now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding via backreferences %1..%9 both in following RewriteCond test-against
cfa64348224b66dd1c9979b809406c4d15b1c137fielding strings and RewriteRules subst string. This provides maximum flexibility
cfa64348224b66dd1c9979b809406c4d15b1c137fielding through the use of backreferences.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally the rewriting engine was cleaned up by putting common
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code to the new expand_backrefs_inbuffer() function.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When merging the main server's <Directory> and <Location> sections into
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a vhost, put the main server's first and the vhost's second. Otherwise
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the vhost can't override the main server. [Dean Gaudet] PR#717
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The <Directory> code would merge and re-merge the same section after
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a match was found, possibly causing problems with some modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) ip-based vhosts are stored and queried using a hashing function, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has been shown to improve performance on servers with many ip-vhosts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Some other changes had to be made to accommodate this:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - the * address for vhosts now behaves like _default_
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - the matching process now is:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - match an ip-vhost directly via hash (possibly matches main
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - if that fails, just pretend it matched the main server
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - if so far only the main server has been matched, perform
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name-based lookups (ServerName, ServerAlias, ServerPath)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *only on name-based vhosts*
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - if they fail, look for _default_ vhosts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Dave Hankins <dhankins@sugarat.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) dbmmanage overhaul:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - merge dbmmanage and dbmmanage.new functionality, remove dbmmanage.new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - tie() to AnyDBM_File which will use one of DB_File, NDBM_File or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding GDBM_File (-ldb, -lndbm, -lgdbm) (trying each in that order)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - provide better seed for rand
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - prompt for password as per getpass(3) (turn off echo, read from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - use "newstyle" crypt based on $Config{osname} ($^O)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - will not add a user if already in database, use new `update' command
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - added `check' command to check a users' password
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - added `import' command to convert existing password text-files or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dbm files exported with `view'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - more descriptive usage, general cleanup, 'use strict' clean, etc.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added psocket() which is a pool form of socket(), various places within
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the proxy weren't properly blocking alarms while registering the cleanup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for its sockets. bclose() now uses pclose() and pclosesocket(). There
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was a bug where the client socket was being close()d twice due a still
cfa64348224b66dd1c9979b809406c4d15b1c137fielding registered cleanup. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) A few cleanups were made to reduce time(), getpid(), and signal() calls.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: AIX >= 4.2 requires -lm due to libc changes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jason Venner <jason@idiom.com>] PR#667
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enable ``=""'' for RewriteCond directives to match against
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the empty string. This is the preferred way instead of ``^$''.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed an infinite loop in mod_imap for references above the server root
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#748
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_proxy now has a ReceiveBufferSize directive, similar to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SendBufferSize, so that the TCP window can be set appropriately
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for LFNs. [Phillip A. Prindeville]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_browser has been replaced by the more general mod_setenvif
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (courtesy of Paul Sutton). BrowserMatch* directives are still
cfa64348224b66dd1c9979b809406c4d15b1c137fielding available, but are now joined by SetEnvIf*, UnSetEnvIf*, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding UnSetEnvIfZero directives. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "HostnameLookups double" forces double-reverse DNS to succeed in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding order for remote_host to be set (for logging, or for the env var
cfa64348224b66dd1c9979b809406c4d15b1c137fielding REMOTE_HOST). The old define MAXIMUM_DNS has been deprecated.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_access overhaul:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Now understands network/netmask syntax (i.e. 10.1.0.0/255.255.0.0)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and cidr syntax (i.e. 10.1.0.0/16). PR#762
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Critical path was sped up by pre-computing a few things at config time.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - The undocumented syntax "allow user-agents" was removed,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the replacement is "allow from env=foobar" combined with mod_browser.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - When used with hostnames it now forces a double-reverse lookup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no matter what the directory settings are. This double-reverse
cfa64348224b66dd1c9979b809406c4d15b1c137fielding doesn't affect any of the other routines that use the remote
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hostname. In particular it's still passed to CGIs and the log
cfa64348224b66dd1c9979b809406c4d15b1c137fielding without the double-reverse check. Related PR#860.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When a large bwrite() occurs (larger than the internal buffer size),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding while there is already something in the buffer, apache will combine
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the large write and the buffer into a single writev(). (This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in anticipation of using mmap() for reading files.)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In obscure cases where a partial socket write occurred while chunking,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache would omit the chunk header/footer on the next block. Cleaned
cfa64348224b66dd1c9979b809406c4d15b1c137fielding up other bugs/inconsistencies in error conditions in buff.c. Fixed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a bug where a long pause in DNS lookups could cause the last packet
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of a response to be unduly delayed. [Roy Fielding, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Added child_exit function to module structure. This is called
cfa64348224b66dd1c9979b809406c4d15b1c137fielding once per "heavy-weight process" just before a server child exit()'s
cfa64348224b66dd1c9979b809406c4d15b1c137fielding e.g. when max_requests_per_child is reached, etc.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern, Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include cleanup showed that handle_else was being used to handle
cfa64348224b66dd1c9979b809406c4d15b1c137fielding endif. It didn't cause problems, but it was cleaned up too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Howard Fear]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_cern_meta would attempt to find meta files for the directory itself
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in some cases, but not in others. It now avoids it in all cases.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_mime_magic would core dump if there was a decompression error.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer <Martin.Kraemer@mch.sni.de>] PR#904
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: some variants of DGUX require -lsocket -lnsl
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexander L Jones <alex@systems-options.co.uk>] PR#732
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_autoindex now allows sorting of FancyIndexed directory listings
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by the various fields (name, size, et cetera), either in ascending
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or descending order. Just click on the column header. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Various tweaks to eliminate pointer-int casting warnings on 64-bit
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CPUs like the Alpha. Apache still stores ints in pointers, but that's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the relatively safe direction. [Dean Gaudet] PR#344
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: QNX mmap() support for faster/more reliable scoreboard handling.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Igor N Kovalenko <infoh@mail.wplus.net>] PR#683
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) child_main avoids an unneeded call to select() when there is only one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding listening socket. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In the event that the server is starved for idle servers it will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spawn 1, then 2, then 4, ..., then 32 servers each second,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding doubling each second. It'll also give a warning in the errorlog
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since the most common reason for this is a poor StartServers
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setting. The define MAX_SPAWN_RATE can be used to raise/lower
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the maximum. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache now provides an effectively unbuffered connection for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGI scripts. This means that data will be sent to the client
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as soon as the CGI pauses or stops output; previously, Apache would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding buffer the output up to a fixed buffer size before sending, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding could result in the user viewing an empty page until the CGI finished
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or output a complete buffer. It is no longer necessary to use an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "nph-" CGI to get unbuffered output. Given that most CGIs are written
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in a language that by default does buffering (e.g. perl) this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding shouldn't have a detrimental effect on performance.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "nph-" CGIs, which formerly provided a direct socket to the client
cfa64348224b66dd1c9979b809406c4d15b1c137fielding without any server post-processing, were not fully compatible with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HTTP/1.1 or SSL support. As such they would have had to implement
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the transport details, such as encryption or chunking, in order
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to work properly in certain situations. Now, the only difference
cfa64348224b66dd1c9979b809406c4d15b1c137fielding between nph and non-nph scripts is "non-parsed headers".
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Sameer Parekh, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If a BUFF is switched from buffered to unbuffered reading the first
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bread() will return whatever remained in the buffer prior to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding switch. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.3a1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added another Configure helper script: TestLib. It determines
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if a specified library exists. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Allow for use of n32bit libraries under IRIX 6.x
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [derived from patch from Jeff Hayes <jhayes@aw.sgi.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Some architectures use size_t for various lengths in network
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions such as accept(), and getsockname(). The definition
cfa64348224b66dd1c9979b809406c4d15b1c137fielding NET_SIZE_T is used to control this. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Linux: Attempt to detect glibc based systems and include crypt.h
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and -lcrypt. Test for various db libraries (dbm, ndbm, db) when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth_dbm or mod_auth_db are included. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: QNX doesn't have initgroups() which support/suexec.c uses.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Igor N Kovalenko <infoh@mail.wplus.net>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding begin with. "nokeepalive" now works for HTTP/1.1 clients. Added
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "downgrade-1.0" which causes Apache to pretend it received a 1.0.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] related PR#875
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Correct child_init() slot declaration from int to void, to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding match the init() declaration. Update mod_example to use the new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hook. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) added transport handle slot (t_handle) to the BUFF structure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) get_client_block() returns wrong length if policy is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding REQUEST_CHUNKED_DECHUNK.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Support the image map format of FrontPage. For example:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rect /url.hrm 10 20 30 40
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["Chris O'Byrne" <obyrne@iol.ie>] PR#807
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: -lresolv and -lsocks were in the wrong order for Solaris.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["Darren O'Shaughnessy" <darren@aaii.oz.au>] PR#846
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AddModuleInfo directive for mod_info which allows you to annotate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the output of mod_info. ["Lou D. Langholtz" <ldl@usi.utah.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added NoProxy directive to avoid using ProxyRemote for selected
cfa64348224b66dd1c9979b809406c4d15b1c137fielding addresses. Added ProxyDomain directive to cause unqualified
cfa64348224b66dd1c9979b809406c4d15b1c137fielding names to be qualified by redirection.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Martin Kraemer <Martin.Kraemer@mch.sni.de>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Support Proxy Authentication, and don't pass the Proxy-Authorize
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header to the remote host in the proxy. [Sameer Parekh and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Upgraded mod_rewrite from 3.0.6+ to latest officially available version
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3.0.9. This upgrade includes: fixed deadlooping on rewriting to same
cfa64348224b66dd1c9979b809406c4d15b1c137fielding URLs, fixed rewritelog(), fixed forced response code handling on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirects from within .htaccess files, disabled pipe locking under
cfa64348224b66dd1c9979b809406c4d15b1c137fielding braindead SunOS 4.1.x, allow env variables to be set even on rules with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no substitution, bugfixed situations where HostnameLookups is off, made
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_rewrite more thread-safe for NT port and fixed problem when creating
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an empty query string via "xxx?".
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This update also removes the copyright of Ralf S. Engelschall,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding i.e. now mod_rewrite no longer has a shared copyright. Instead is is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exclusively copyrighted by the Apache Group now. This happened because
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the author now has gifted mod_rewrite exclusively to the Apache Group and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no longer maintains an external version.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Added child_init function to module structure. This is called
cfa64348224b66dd1c9979b809406c4d15b1c137fielding once per "heavy-weight process" before any requests are handled.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding See http_config.h for more details. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Anonymous_LogEmail was logging on each subrequest.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#421, 868
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Added is_initial_req() which tests if the request being
cfa64348224b66dd1c9979b809406c4d15b1c137fielding processed is the initial request, or a subrequest.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Extended SSI (mod_include) now handles additional relops for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding string comparisons (<, >, <=, and >=). [Bruno Wolff III] PR#41
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure fixed to correctly propagate user-selected options and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding settings (such as CC and OPTIM) to Makefiles other than
cfa64348224b66dd1c9979b809406c4d15b1c137fielding src/Makefile (notably support/Makefile). [Ken Coar] PR#666, #834
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) IndexOptions SuppressHTMLPreamble now causes the actual HTML of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory indices to start with the contents of the HeaderName file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if there is one. If there isn't one, the behaviour is unchanged.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar, Roy Fielding, Andrey A. Chernov]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) WIN32: Modules can now be dynamically loaded DLLs using the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding LoadModule/LoadFile directives. Note that module DLLs must be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compiled with the multithreaded DLL version of the runtime library.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexei Kosut and Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Automatic indexing removed from mod_dir and placed into mod_autoindex.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This allows the admin to completely remove automatic indexing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from the server, while still supporting the basic functions of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding trailing-slash redirects and DirectoryIndex files. Note that if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding you're carrying over an old Configuration file and you use directory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding indexing then you'll want to add:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Module autoindex_module mod_autoindex.o
cfa64348224b66dd1c9979b809406c4d15b1c137fielding before mod_dir in your Configuration. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) popendir/pclosedir created to properly protect directory scanning.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#525
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AliasMatch, ScriptAliasMatch and RedirectMatch directives added,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding giving regex support to mod_alias. <DirectoryMatch>, <LocationMatch>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and <FilesMatch> sections added to succeed <DirectoryMatch ~>, etc...
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The AccessFileName directive can now take more than one filename.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["Lou D. Langholtz" <ldl@usi.utah.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The new mod_mime_magic can be used to "magically" determine the type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of a file if the extension is unknown. Based on the unix file(1)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding command. [Ian Kluft <ikluft@cisco.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) We now determine and display the time spent processing a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request if desired. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_status: PID field of "dead" child slots no longer displays
cfa64348224b66dd1c9979b809406c4d15b1c137fielding main httpd process's PID. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Makefile.nt added - to build all the bits from the command line:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Doesn't yet work properly. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Default text of 404 error is now "Not Found" rather than the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding potentially misleading "File Not Found". [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CONFIG: "HostnameLookups" now defaults to off because it is far better
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for the net if we require people that actually need this data to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding enable it. [Linus Torvalds]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) directory_walk() is an expensive function, keep a little more state to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding avoid needless string counting. Add two new functions make_dirstr_parent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and make_dirstr_prefix which replace all existing uses of make_dirstr.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The new functions are a little less general than make_dirstr, but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work more efficiently (less memory, less string counting).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) EXTRA_LFLAGS was changed to EXTRA_LDFLAGS (and LFLAGS was changed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to LDFLAGS) to avoid complications with lex rules in make files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#372
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) run_method optimized to avoid needless scanning over NULLs in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module list. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Revamp of (unix) scoreboard management code such that it avoids
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unnecessary traversals of the scoreboard on each hit. This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding particularly important for high volume sites with a large
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HARD_SERVER_LIMIT. Some of the previous operations were O(n^2),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and are now O(n). See also SCOREBOARD_MAINTENANCE_INTERVAL in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding httpd.h. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In configurations using multiple Listen statements it was possible for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding busy sockets to starve other sockets of service. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added hook so standalone_main can be replaced at compile time
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (define STANDALONE_MAIN)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Lowest-level read/write functions in buff.c will be replaced with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the SFIO library calls sfread/sfwrite if B_SFIO is defined at
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compile time. The default sfio discipline will behave as apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding would without sfio compiled in.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enhance UserDir directive (mod_userdir) to accept a list of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding usernames for the 'disable' keyword, and add 'enable user...' to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding selectively *en*able userdirs if they're globally disabled.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If NETSCAPE_DBM_COMPAT is defined in EXTRA_CFLAGS then Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding will work with Netscape dbm files. (dbmmanage will probably not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work however.) [Alexander Spohr <aspohr@netmatic.com>] PR#444
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a ListenBacklog directive to control the backlog parameter
cfa64348224b66dd1c9979b809406c4d15b1c137fielding passed to listen(). Also change the default to 511 from 512.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: A new handler response DONE which informs apache that the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request has been handled and it can finish off quickly, similar to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding how it handles errors. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Turn off chunked encoding after sending terminating chunk/footer
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so that we can't do it twice by accident. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_expire also issues Cache-Control: max-age headers.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Added kill_only_once option for free_proc_chain so that it won't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding aggressively try to kill off specific children. For fastcgi.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Stanley Gambarin <gambarin@OpenMarket.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_auth deals with extra ':' delimited fields. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added IconHeight and IconWidth to mod_dir's IndexOptions directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding When used together, these cause mod_dir to emit HEIGHT and WIDTH
cfa64348224b66dd1c9979b809406c4d15b1c137fielding attributes in the FancyIndexing IMG tags. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Sequent and SONY NEWS-OS support added. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Added Windows NT support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie and Ambarish Malpani <ambarish@valicert.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.6
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include when using XBitHack Full would send ETags in addition to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sending Last-Modifieds. This is incorrect HTTP/1.1 behaviour.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#1133
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: When a client connects to a particular port/addr, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding gives a Host: header ensure that the virtual host requested can
cfa64348224b66dd1c9979b809406c4d15b1c137fielding actually be reached via that port/addr. [Ed Korthof <ed@organic.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Support virtual hosts with wildcard port and/or multiple ports
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly. [Ed Korthof <ed@organic.com>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed some case-sensitivity issues according to RFC2068.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set r->allowed properly in mod_asis.c, mod_dir.c, mod_info.c,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and mod_include.c. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Variable 'cwd' was being used pointlessly before being set.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR#1738
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SIGURG doesn't exist on all platforms.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Mark Andrew Heinrich <heinrich@tinderbox.Stanford.EDU>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When an error occurs during a POST, or other operation with a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request body, the body has to be read from the net before allowing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a keepalive session to continue. [Roy Fielding] PR#1399
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When an error occurs in fcntl() locking suggest the user look up
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the docs for LockFile. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) table_set() and table_unset() did not deal correctly with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding multiple occurrences of the same key. [Stephen Scheck
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <sscheck@infonex.net>, Ben Laurie] PR#1604
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) send_fd_length() did not calculate total_bytes_sent properly in error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding cases. [Ben Reser <breser@regnow.com>] PR#1366
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) r->connection->user was allocated in the wrong pool causing corruption
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in some cases when used with mod_cern_meta. [Dean Gaudet] PR#1500
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_proxy was sending HTTP/1.1 responses to ftp requests by mistake.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Also removed the auto-generated link to www.apache.org that was the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding source of so many misdirected bug reports. [Roy Fielding, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Multiple "close" tokens may have been set in the "Connection"
cfa64348224b66dd1c9979b809406c4d15b1c137fielding header, not an error, but a waste.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald.Tschalaer@psi.ch] PR#1683
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "basic" and "digest" auth tokens should be tested case-insensitive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald.Tschalaer@psi.ch] PR#1599, PR#1666
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) It appears the "257th byte" bug (see
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htdocs/manual/misc/known_client_problems.html#257th-byte) can happen
cfa64348224b66dd1c9979b809406c4d15b1c137fielding at the 256th byte as well. Fixed. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_rewrite would not handle %3f properly in some situations.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache could generate improperly chunked HTTP/1.1 responses when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the bputc() or rputc() functions were used by modules (such as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_include). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) #ifdef wrap a few #defines in httpd.h to make life easier on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding some ports. [Ralf Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix MPE compilation error in mod_usertrack.c. [Mark Bixby]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Quote CC='$(CC)' to improve recurse make calls. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Avoid B_ERROR redeclaration on sysvr4 systems. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.5
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Fix a possible buffer overflow in logresolve. This is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding only an issue on systems without a MAXDNAME define or where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the resolver returns domain names longer than MAXDNAME. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix an improper length in an ap_snprintf call in proxy_date_canon().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix core dump in the ftp proxy when reading incorrectly formatted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory listings. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Fix possible minor buffer overflow in the proxy cache.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Eliminate possible buffer overflow in cfg_getline, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is used to read various types of files such as htaccess and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htpasswd files. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Ensure that the buffer returned by ht_time is always
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly null terminated. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: General mod_include cleanup, including fixing several
cfa64348224b66dd1c9979b809406c4d15b1c137fielding possible buffer overflows and a possible infinite loop. This cleanup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was done against 1.3 code and then backported to 1.2, the result
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is a large difference (due to indentation cleanup in 1.3 code).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Users interested in seeing a smaller set of relevant differences
cfa64348224b66dd1c9979b809406c4d15b1c137fielding should consider comparing against src/modules/standard/mod_include.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding from the 1.3b3 release. Non-indentation changes to mod_include
cfa64348224b66dd1c9979b809406c4d15b1c137fielding between 1.2 and 1.3 were minimal. [Dean Gaudet, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Numerous changes to mod_imap in a general cleanup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding including fixing a possible buffer overflow. This cleanup also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding was done with 1.3 code as a basis, see the the previous note
cfa64348224b66dd1c9979b809406c4d15b1c137fielding about mod_include. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: If a htaccess file can not be read due to bad
cfa64348224b66dd1c9979b809406c4d15b1c137fielding permissions, deny access to the directory with a HTTP_FORBIDDEN.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The previous behavior was to ignore the htaccess file if it could not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be read. This change may make some setups with unreadable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htaccess files stop working. PR#817 [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: no2slash() was O(n^2) in the length of the input.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Make it O(n). This inefficiency could be used to mount a denial
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of service attack against the Apache server. Thanks to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Michal Zalewski <lcamtuf@boss.staszic.waw.pl> for reporting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include used uninitialized data for some uses of && and ||.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Brian Slesinsky <bslesins@wired.com>] PR#1139
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_imap should decline all non-GET methods.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jay Bloodworth <jay@pathways.sde.state.sc.us>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suexec.c wouldn't build without -DLOG_EXEC. [Jason A. Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_userdir was modifying r->finfo in cases where it wasn't setting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding r->filename. Since those two are meant to be in sync with each other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this is a bug. ["Paul B. Henson" <henson@intranet.csupomona.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include did not properly handle all possible redirects from sub-
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requests. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Inetd mode (which is buggy) uses timeouts without having setup the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding jmpbuffer. [Dean Gaudet] PR#1064
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around problem under Linux where a child will start looping
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reporting a select error over and over.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rick Franchuk <rickf@transpect.net>] PR#1107
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The ProxyRemote change in 1.2.3 introduced a bug resulting in the proxy
cfa64348224b66dd1c9979b809406c4d15b1c137fielding always making requests with the full-URI instead of just the URI path.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add -lm for AIX versions >= 4.2 to allow Apache to link properly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on this platform. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The request to a remote proxy was mangled if it was generated as the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding result of a ProxyPass directive. URL schemes other than http:// were not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding supported when ProxyRemote was used. PR#260, PR#656, PR#699, PR#713,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#812 [Lars Eilebrecht]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed proxy-pass-through feature of mod_rewrite; Added error logging
cfa64348224b66dd1c9979b809406c4d15b1c137fielding information for case where proxy module is not available. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Force proxy to always respond as HTTP/1.0, which it was failing to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding do for errors and cached responses. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Improved support for ConvexOS 11. [Jeff Venters]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.2 [not released]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed another long-standing bug in sub_req_lookup_file where it would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding happily skip past access checks on subdirectories looked up with relative
cfa64348224b66dd1c9979b809406c4d15b1c137fielding paths. (It's used by mod_dir, mod_negotiation, and mod_include.)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add lockfile name to error message printed out when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding USE_FLOCK_SERIALIZED_ACCEPT is defined.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Enhanced the chunking and error handling inside the buffer functions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) When merging the main server's <Directory> and <Location> sections into
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a vhost, put the main server's first and the vhost's second. Otherwise
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the vhost can't override the main server. [Dean Gaudet] PR#717
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The <Directory> code would merge and re-merge the same section after
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a match was found, possibly causing problems with some modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed an infinite loop in mod_imap for references above the server root.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#748
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include cleanup showed that handle_else was being used to handle
cfa64348224b66dd1c9979b809406c4d15b1c137fielding endif. It didn't cause problems, but it was cleaned up too.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Howard Fear]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Last official synchronization of mod_rewrite with author version (because
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_rewrite is now directly developed by the author at the Apache Group):
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o added diff between mod_rewrite 3.0.6+ and 3.0.9
cfa64348224b66dd1c9979b809406c4d15b1c137fielding minus WIN32/NT stuff, but plus copyright removement.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - workaround for detecting infinite rewriting loops
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fixed setting of env vars when "-" is used as subst string
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fixed forced response code on redirects (PR#777)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fixed cases where r->args is ""
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - kludge to disable locking on pipes under braindead SunOS
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fix for rewritelog in cases where remote hostname is unknown
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - fixed totally damaged request_rec walk-back loop
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o remove static from local data and add static to global ones.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o replaced ugly proxy finding stuff by simple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding find_linked_module("mod_proxy") call.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o added missing negation char on rewritelog()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding o fixed a few comment typos
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Anonymous_LogEmail was logging on each subrequest.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#421, PR#868
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "force-response-1.0" now only applies to requests which are HTTP/1.0 to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding begin with. "nokeepalive" now works for HTTP/1.1 clients. Added
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "downgrade-1.0" which causes Apache to pretend it received a 1.0.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Additionally mod_browser now triggers during translate_name to workaround
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a deficiency in the header_parse phase.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#875
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) get_client_block() returns wrong length if policy is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding REQUEST_CHUNKED_DECHUNK.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#815
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly treat <files> container like other containers in mod_info.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#848
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The proxy didn't treat the "Host:" keyword of the host header as case-
cfa64348224b66dd1c9979b809406c4d15b1c137fielding insensitive. The proxy would corrupt the first line of a response from
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an HTTP/0.9 server. [Kenichi Hori <ken@d2.bs1.fc.nec.co.jp>] PR#813,814
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include would log some bogus values occasionally.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Skip Montanaro <skip@calendar.com>, Marc Slemko] PR#797
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: The slack fd changes in 1.2.1 introduced a problem with SIGHUP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding under Solaris 2.x (up through 2.5.1). It has been fixed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#832
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: In HTTP/1.1, whether or not a request message contains a body
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is independent of the request method and based solely on the presence
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of a Content-Length or Transfer-Encoding. Therefore, our default
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handlers need to be prepared to read a body even if they don't know
cfa64348224b66dd1c9979b809406c4d15b1c137fielding what to do with it; otherwise, the body would be mistaken for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding next request on a persistent connection. discard_request_body()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has been added to take care of that. [Roy Fielding] PR#378
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) API: Symbol APACHE_RELEASE provides a numeric form of the Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding release version number, such that it always increases along the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding same lines as our source code branching. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Minor oversight on multiple variants fixed. [Paul Sutton] PR#94
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Don't serve file system objects unless they are plain files,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding symlinks, or directories. This prevents local users from using pipes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or named sockets to invoke programs for an extremely crude form of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGI. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: HeaderName and ReadmeName were settable in .htaccess and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding could contain "../" allowing a local user to "publish" any file on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the system. No slashes are allowed now. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: It was possible to violate the symlink Options using mod_dir
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (headers, readmes, titles), mod_negotiation (type maps), or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_cern_meta (meta files). [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SECURITY: Apache will refuse to run as "User root" unless
cfa64348224b66dd1c9979b809406c4d15b1c137fielding BIG_SECURITY_HOLE is defined at compile time. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CONFIG: If a symlink pointed to a directory then it would be disallowed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if it contained a .htaccess disallowing symlinks. This is contrary
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the rule that symlink permissions are tested with the symlink
cfa64348224b66dd1c9979b809406c4d15b1c137fielding options of the parent directory. [Dean Gaudet] PR#353
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CONFIG: The LockFile directive can be used to place the serializing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lockfile in any location. It previously defaulted to /usr/tmp/htlock.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Somehow it took four of us: Randy Terbush, Jim Jagielski, Dean Gaudet,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Request processing now retains state of whether or not the request
cfa64348224b66dd1c9979b809406c4d15b1c137fielding body has been read, so that internal redirects and subrequests will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not try to read it twice (and block). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add a placeholder in modules/Makefile to avoid errors with certain
cfa64348224b66dd1c9979b809406c4d15b1c137fielding makes. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) QUERY_STRING was unescaped in mod_include, it shouldn't be.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#644
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_include was not properly changing the current directory.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#742
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Attempt to work around problems with third party libraries that do not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handle high numbered descriptors (examples include bind, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding solaris libc). On all systems apache attempts to keep all permanent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding descriptors above 15 (called the low slack line). Solaris users
cfa64348224b66dd1c9979b809406c4d15b1c137fielding can also benefit from adding -DHIGH_SLACK_LINE=256 to EXTRA_CFLAGS
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which keeps all non-FILE * descriptors above 255. On all systems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this should make supporting large numbers of vhosts with many open
cfa64348224b66dd1c9979b809406c4d15b1c137fielding log files more feasible. If this causes trouble please report it,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding you can disable this workaround by adding -DNO_SLACK to EXTRA_CFLAGS.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] various PRs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Related to the last entry, network sockets are now opened before
cfa64348224b66dd1c9979b809406c4d15b1c137fielding log files are opened. The only known case where this can cause
cfa64348224b66dd1c9979b809406c4d15b1c137fielding problems is under Solaris with many virtualhosts and many Listen
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directives. But using -DHIGH_SLACK_LINE=256 described above will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work around this problem. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) USE_FLOCK_SERIALIZED_ACCEPT is now default for FreeBSD, A/UX, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved unix error response logging. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Update mod_rewrite from 3.0.5 to 3.0.6. New ruleflag
cfa64348224b66dd1c9979b809406c4d15b1c137fielding QSA=query_string_append. Also fixed a nasty bug in per-dir context:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when a URL http://... was used in conjunction with a special
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirect flag, e.g. R=permanent, the permanent status was lost.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ronald Tschalaer <Ronald.Tschalaer@psi.ch>, Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If an object has multiple variants that are otherwise equal Apache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding would prefer the last listed variant rather than the first.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton] PR#94
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "make clean" at the top level now removes *.o. [Dean Gaudet] PR#752
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_status dumps core in inetd mode. [Marc Slemko and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) pregsub had an off-by-1 in its error checking code. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: fix rlim_t problems with AIX 4.2. [Marc Slemko] PR#333
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Update UnixWare support for 2.1.2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Lawrence Rosenman <ler@lerctr.org>] PR#511
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: NonStop-UX [Joachim Schmitz <schmitz_joachim@tandem.com>] PR#327
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Update ConvexOS support for 11.5.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David DeSimone <fox@convex.com>] PR#399
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Support for DEC cc compiler under ULTRIX.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ["P. Alejandro Lopez-Valencia" <alejolo@ideam.gov.co>] PR#388
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Support for Maxion/OS SVR4.2 Real Time Unix. [no name given] PR#383
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: Workaround for AIX 3.x compiler bug in http_bprintf.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#725
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PORT: fix problem compiling http_bprintf.c with gcc under SCO
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko] PR#695
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b11
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed open timestamp fd in proxy_cache.c [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added undocumented perl SSI mechanism for -DUSE_PERL_SSI and mod_perl.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Doug MacEachern, Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Proxy needs to use hard_timeout instead of soft_timeout when it is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reading from one buffer and writing to another, at least until it has
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a custom timeout handler. [Roy Fielding and Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem on IRIX with servers hanging in IdentityCheck,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apparently due to a mismatch between sigaction and setjmp.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding] PR#502
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Log correct status code if we timeout before receiving a request (408)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or if we received a request-line that was too long to process (414).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ed Korthof and Roy Fielding] PR#601
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Virtual hosts with the same ServerName, but on different ports, were
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not being selected properly. [Ed Korthof]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added code to return the requested IP address from proxy_host2addr()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if gethostbyaddr() fails due to reverse DNS lookup problems. Original
cfa64348224b66dd1c9979b809406c4d15b1c137fielding change submitted by Jozsef Hollosi <hollosi@sbcm.com>.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko] PR#614
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If multiple requests on a single connection are used to retrieve
cfa64348224b66dd1c9979b809406c4d15b1c137fielding data from different virtual hosts, the virtual host list would be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scanned starting with the most recently used VH instead of the first,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding causing most virtual hosts to be ignored.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton and Martin Mares] PR#610
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The OS/2 handling of process group was broken by a porting patch for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MPE, so restored prior code for OS/2. [Roy Fielding and Garey Smiley]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Inherit virtual server port from main server if none (or "*") is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding given for VirtualHost. [Dean Gaudet] PR#576
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If the lookup for a DirectoryIndex name with content negotiation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has found matching variants, but none are acceptable, return the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding negotiation result if there are no more DirectoryIndex names to lookup.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Petr Lampa and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If a soft_timeout occurs after keepalive is set, then the main child
cfa64348224b66dd1c9979b809406c4d15b1c137fielding loop would try to read another request even though the connection
cfa64348224b66dd1c9979b809406c4d15b1c137fielding has been aborted. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure changes: Allow for whitespace at the start of a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Module declaration. Also, be more understanding about the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CC=/OPTIM= format in Configuration. Finally, fix compiler
cfa64348224b66dd1c9979b809406c4d15b1c137fielding flags if using HP-UX's cc compiler. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Subrequests and internal redirects now inherit the_request from the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding original request-line. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Test for error conditions before creating output header fields, since
cfa64348224b66dd1c9979b809406c4d15b1c137fielding we don't want the error message to include those fields. Likewise,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reset the content_language(s) and content_encoding of the response
cfa64348224b66dd1c9979b809406c4d15b1c137fielding before generating or redirecting to an error message, since the new
cfa64348224b66dd1c9979b809406c4d15b1c137fielding message will have its own Content-* definitions. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Restored the semantics of headers_out (headers sent only with 200..299
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and 304 responses) and err_headers_out (headers sent with all responses).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Avoid the overhead of copying tables if err_headers_out is empty
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (the usual case). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed a couple places where a check for the default Content-Type was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not properly checking both the value configured by the DefaultType
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directive and the DEFAULT_TYPE symbol in httpd.h. Changed the value
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of DEFAULT_TYPE to match the documented default (text/plain).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#506
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Escape the HTML-sensitive characters in the Request-URI that is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding output for each child by mod_status. [Dean Gaudet and Ken Coar] PR#501
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly initialize the flock structures used by the mutex locking
cfa64348224b66dd1c9979b809406c4d15b1c137fielding around accept() when USE_FCNTL_SERIALIZED_ACCEPT is defined.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The method for determining PATH_INFO has been restored to the pre-1.2b
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (and NCSA httpd) definition wherein it was the extra path info beyond
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the CGI script filename. The environment variable FILEPATH_INFO has
cfa64348224b66dd1c9979b809406c4d15b1c137fielding been removed, and instead we supply the original REQUEST_URI to any
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script that wants to be Apache-specific and needs the real URI path.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This solves a problem with existing scripts that use extra path info
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the ScriptAlias directive to pass options to the CGI script.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The _default_ change in 1.2b10 will change the behaviour on configs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that use multiple Listen statements for listening on multiple ports.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding But that change is necessary to make _default_ consistent with other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding forms of <VirtualHost>. It requires such configs to be modified
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to use <VirtualHost _default_:*>. The documentation has been
cfa64348224b66dd1c9979b809406c4d15b1c137fielding updated. [Dean Gaudet] PR#530
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If an ErrorDocument CGI script is used to respond to an error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generated by another CGI script which has already read the message
cfa64348224b66dd1c9979b809406c4d15b1c137fielding body of the request, the server would block trying to read the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding message body again. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) signal() replacement conflicted with a define on QNX (and potentially
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other platforms). Fixed. [Ben Laurie] PR#512
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b10
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow HTTPD_ROOT, SERVER_CONFIG_FILE, DEFAULT_PATH, and SHELL_PATH
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to be configured via -D in Configuration. [Dean Gaudet] PR#449
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) <VirtualHost _default_:portnum> didn't work properly. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added prototype for mktemp() for SUNOS4 [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In mod_proxy.c, check return values for proxy_host2addr() when reading
cfa64348224b66dd1c9979b809406c4d15b1c137fielding config, in case the hostent struct returned is trash.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko] PR #491
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed the fix in 1.2b9 for parsing URL query info into args for CGI
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scripts. [Dean Gaudet, Roy Fielding, Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b9 [never announced]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reset the MODULE_MAGIC_NUMBER to account for the unsigned port
cfa64348224b66dd1c9979b809406c4d15b1c137fielding changes and in anticipation of 1.2 final release. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problem with scripts not receiving a SIGPIPE when client drops
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the connection (e.g., when user presses Stop). Apache will now stop
cfa64348224b66dd1c9979b809406c4d15b1c137fielding trying to send a message body immediately after an error from write.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding and Nathan Kurz] PR#335
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rearrange Configuration.tmpl so that mod_rewrite has higher priority
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than mod_alias, and mod_alias has higher priority than mod_proxy;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding rearranged other modules to enhance understanding of their purpose
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and relative order (and maybe even reduce some overhead).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding and Sameer Parekh]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix graceful restart. Eliminate many signal-related race
cfa64348224b66dd1c9979b809406c4d15b1c137fielding conditions in both forms of restart, and in SIGTERM. See
cfa64348224b66dd1c9979b809406c4d15b1c137fielding htdocs/manual/stopping.html for details on stopping and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding restarting the parent. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix memory leaks in mod_rewrite, mod_browser, mod_include. Tune
cfa64348224b66dd1c9979b809406c4d15b1c137fielding memory allocator to avoid a behaviour that required extra blocks to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be allocated. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow suexec to access files relative to current directory but not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding above. (Excluding leading / or any .. directory.) [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#269, 319, 395
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix suexec segfault when group doesn't exist. [Gregory Neil Shapiro]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PR#367, 368, 354, 453
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix the above fix: if suexec is enabled, avoid destroying r->url
cfa64348224b66dd1c9979b809406c4d15b1c137fielding while obtaining the /~user and save the username in a separate data
cfa64348224b66dd1c9979b809406c4d15b1c137fielding area so that it won't be overwritten by the call to getgrgid(), and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fix some misuse of the pool string allocation functions. Also fixes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a general problem with parsing URL query info into args for CGI scripts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding] PR#339, 367, 354, 453
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix IRIX warning about bzero undefined. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix problem with <Directory proxy:...>. [Martin Kraemer] PR#271
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected spelling of "authoritative". AuthDBAuthoratative became
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AuthDBAuthoritative. [Marc Slemko] PR#420
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) MaxClients should be at least 1. [Lars Eilebrecht] PR#375
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The default handler now logs invalid methods or URIs (i.e. PUT on an
cfa64348224b66dd1c9979b809406c4d15b1c137fielding object that can't be PUT, or FOOBAR for some method FOOBAR that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding apache doesn't know about at all). Log 404s that occur in mod_include.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Paul Sutton, John Van Essen]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If a soft timeout (or lingerout) occurs while trying to flush a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding buffer or write inside buff.c or fread'ing from a CGI's output,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding then the timeout would be ignored. [Roy Fielding] PR#373
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around a bug in Netscape Navigator versions 2.x, 3.x and 4.0b2's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parsing of headers. If the terminating empty-line CRLF occurs starting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding at the 256th or 257th byte of output, then Navigator will think a normal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding image is invalid. We are guessing that this is because their initial
cfa64348224b66dd1c9979b809406c4d15b1c137fielding read of a new request uses a 256 byte buffer. We check the bytes written
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so far and, if we are about to tickle the bug, we instead insert a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding padding header of eminent bogosity. [Roy Fielding and Dean Gaudet] PR#232
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed SIGSEGV problem when a DirectoryIndex file is also the source
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of an external redirection. [Roy Fielding and Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure would create a broken Makefile if the configuration file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding contained a commented-out Rule. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Promote per_dir_config and subprocess_env from the subrequest to the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding main request in mod_negotiation. In particular this fixes a bug
cfa64348224b66dd1c9979b809406c4d15b1c137fielding where <Files> sections wouldn't properly apply to negotiated content.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix a potential deadlock in mod_cgi script_err handling.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) rotatelogs zero-pads the logfile names to improve alphabetic sorting.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Mitchell Blank Jr]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated mod_rewrite to 3.0.4: Fixes HTTP redirects from within
cfa64348224b66dd1c9979b809406c4d15b1c137fielding .htaccess files because the RewriteBase was not replaced correctly.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Updated mod_rewrite to 3.0.5: Fixes problem with rewriting inside
cfa64348224b66dd1c9979b809406c4d15b1c137fielding <Directory> sections missing a trailing /. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clean up Linux settings in conf.h by detecting 2.x versus 1.x. For
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1.x the settings are those of pre-1.2b8. For 2.x we include
cfa64348224b66dd1c9979b809406c4d15b1c137fielding USE_SHMGET_SCOREBOARD (scoreboard in shared memory rather than file) and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding HAVE_SYS_RESOURCE_H (enable the RLimit commands).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR#336, PR#340
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Redirect did not preserve ?query_strings when present in the client's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configure was finding non-modules on EXTRA_LIBS. [Frank Cringle] PR#380
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use /bin/sh5 on ULTRIX. [P. Alejandro Lopez-Valencia] PR#369
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add UnixWare compile/install instructions. [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add mod_example (illustration of API techniques). [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add macro for memmove to conf.h for SUNOS4. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve handling of directories when filenames have spaces in them.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) For hosts with multiple IP addresses, try all additional addresses if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding necessary to get a connect. Fail only if hostent address list is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exhausted. [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More signed/unsigned port fixes. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) HARD_SERVER_LIMIT can be defined in the Configuration file now.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b8
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suexec.c doesn't close the log file, allowing CGIs to continue writing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to it. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The addition of <Location> and <File> directives made the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sub_req_lookup_simple() function bogus, so we now handle
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the special cases directly. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) We now try to log where the server is dumping core when a fatal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding signal is received. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved lingering_close by adding a special timeout, removing the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spurious log messages, removing the nonblocking settings (they
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are not needed with the better timeout), and adding commentary
cfa64348224b66dd1c9979b809406c4d15b1c137fielding about the NO_LINGCLOSE and USE_SO_LINGER issues. NO_LINGCLOSE is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding now the default for SunOS4, UnixWare, NeXT, and IRIX. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Send error messages about setsockopt failures to the server error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding log instead of stderr. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix loopholes in proxy cache expiry vis a vis alarms. [Brian Moore]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Stopgap solution for CGI 3-second delay with server-side includes: if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding processing a subrequest, allocate memory from r->main->pool instead
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of r->pool so that we can avoid waiting for free_proc_chain to cleanup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the middle of an SSI request. [Dean Gaudet] PR #122
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed status of response when POST is received for a nonexistent URL
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (was sending 405, now 404) and when any method is sent with a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding full-URI that doesn't match the server and the server is not acting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as a proxy (was sending 501, now 403). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Host port changed to unsigned short. [Ken Coar] PR #276
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix typo in command definition of AuthAuthoritative. [Ken Coar] PR #246
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Defined USE_SHMGET_SCOREBOARD for shared memory on Linux. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Report extra info from errno with many errors that cause httpd to exit.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spawn_child, popenf, and pclosef now have valid errno returns in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding event of an error. Correct problems where errno was stomped on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding before being reported. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In the proxy, if the cache filesystem was full, garbage_coll() was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding never called, and thus the filesystem would remain full indefinitely.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding We now also remove incomplete cache files left if the origin server
cfa64348224b66dd1c9979b809406c4d15b1c137fielding didn't send a Content-Length header and either the client has aborted
cfa64348224b66dd1c9979b809406c4d15b1c137fielding transfer or bwrite() to client has failed. [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed the handling of module and script-added header fields.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Improved the interface for sending header fields and reduced
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the duplication of code between sending okay responses and errors.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding We now always send both headers_out and err_headers_out, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ensure that the server-reserved fields are not being overridden,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding while not overriding those that are not reserved. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Moved transparent content negotiation fields to err_headers_out
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to reflect above changes. [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed the determination of whether or not we should make the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding connection persistent for all of the cases where some other part
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of the server has already indicated that we should not. Also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding improved the ordering of the test so that chunked encoding will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be set whenever it is desired instead of only when KeepAlive
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is enabled. Added persistent connection capability for most error
cfa64348224b66dd1c9979b809406c4d15b1c137fielding responses (those that do not indicate a bad input stream) when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accessed by an HTTP/1.1 client. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added missing timeouts for sending header fields, error responses,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and the last chunk of chunked encoding, each of which could have
cfa64348224b66dd1c9979b809406c4d15b1c137fielding resulted in a process being stuck in write forever. Using soft_timeout
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requires that the sender check for an aborted connection rather than
cfa64348224b66dd1c9979b809406c4d15b1c137fielding continuing after an EINTR. Timeouts that used to be initiated before
cfa64348224b66dd1c9979b809406c4d15b1c137fielding send_http_header (and never killed) are now initiated only within or
cfa64348224b66dd1c9979b809406c4d15b1c137fielding around the routines that actually do the sending, and not allowed to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding propagate above the caller. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_auth_anon required an @ or a . in the email address, not both.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) per_dir_defaults weren't set correctly until directory_walk for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name-based vhosts. This fixes an obscure bug with the wrong config
cfa64348224b66dd1c9979b809406c4d15b1c137fielding info being used for vhosts that share the same ip as the server.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved generation of modules/Makefile to be more generic for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding new module directories. [Ken Coar, Chuck Murcko, Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Generate makefile dependency for Configuration based on the actual
cfa64348224b66dd1c9979b809406c4d15b1c137fielding name given when running the Configure process. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem with vhost error log not being set prior to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initializing virtual hosts. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed infinite loop when a trailing slash is included after a type map
cfa64348224b66dd1c9979b809406c4d15b1c137fielding file URL (extra path info). [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed server status updating of per-connection counters. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add documentation for DNS issues (reliability and security), and try
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to explain the virtual host matching process. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Try to continue gracefully by disabling the vhost if a DNS lookup
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fails while parsing the configuration file. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved calls to setsockopt. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Negotiation changes: Don't output empty content-type in variant list;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Output charset in variant list; Return sooner from handle_multi() if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding no variants found; Add handling of '*' wildcard in Accept-Charset.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Petr Lampa and Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed overlaying of request/sub-request notes and headers in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_negotiation. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If two variants' charset quality are equal and one is the default
cfa64348224b66dd1c9979b809406c4d15b1c137fielding charset (iso-8859-1), then prefer the variant that was specifically
cfa64348224b66dd1c9979b809406c4d15b1c137fielding listed in Accept-Charset instead of the default. [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Memory allocation problem in push_array() -- it would corrupt memory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when nalloc==0. [Kai Risku <krisku@tf.hut.fi> and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) invoke_handler() doesn't handle mime arguments in content-type
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Petr Lampa] PR#160
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reduced IdentityCheck timeout to 30 seconds, as per RFC 1413 minimum.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem with ErrorDocument not working for virtual hosts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding due to one of the performance changes in 1.2b7. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Log an error message if we get a request header that is too long,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since it may indicate a buffer overflow attack. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Made is_url() allow "[-.+a-zA-Z0-9]+:" as a valid scheme and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not reject URLs without a double-slash, as per RFC2068 section 3.2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken Coar] PR #146, #187
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added table entry placeholder for new header_parser callback
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in all of the distributed modules. [Ken Coar] PR #191
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow for cgi files without the .EXE extension on them under OS/2.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Garey Smiley] PR #59
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed error message when resource is not found and URL contains
cfa64348224b66dd1c9979b809406c4d15b1c137fielding path info. [Petr Lampa and Dean Gaudet] PR #40
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed user and server confusion over what should be a virtual host
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and what is the main server, resulting in access to something
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other than the name defined in the virtualhost directive (but
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with the same IP address) failing. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated mod_rewrite to version 3.0.2, which: fixes compile error on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AIX; improves the redirection stuff to enable the users to generally
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirect to http, https, gopher and ftp; added TIME variable for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding RewriteCond which expands to YYYYMMDDHHMMSS strings and added the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding special patterns >STRING, <STRING and =STRING to RewriteCond, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding can be used in conjunction with %{TIME} or other variables to create
cfa64348224b66dd1c9979b809406c4d15b1c137fielding time-dependent rewriting rules. [Ralf S. Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) bpushfd() no longer notes cleanups for the file descriptors it is handed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Module authors may need to adjust their code for proper cleanup to take
cfa64348224b66dd1c9979b809406c4d15b1c137fielding place (that is, call note_cleanups_for_fd()). This change fixes problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with file descriptors being erroneously closed when the proxy module was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in use. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug in suexec reintroduced by changes in 1.2b7 which allows
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initgroups() to hose the group information needed for later
cfa64348224b66dd1c9979b809406c4d15b1c137fielding comparisons. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove unnecessary call to va_end() in create_argv() which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding caused a SEGV on some systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use proper MAXHOSTNAMELEN symbol for limiting length of server name.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clear memory allocated for listeners. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved handling of IP address as a virtualhost address and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding introduced "_default_" as a synonym for the default vhost config.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet] PR #212
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b7
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Port to UXP/DS(V20) [Toshiaki Nomura <nom@yk.fujitsu.co.jp>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) unset Content-Length if chunked (RFC-2068) [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_negotiation fixes [Petr Lampa] PR#157, PR#158, PR#159
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - replace protocol response numbers with symbols
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - save variant-list into main request notes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - free allocated memory from subrequests
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - merge notes, headers_out and err_headers_out
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) changed status check mask in proxy_http.c from "HTTP/#.# ### *" to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "HTTP/#.# ###*" to be more lenient about what we accept.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) more proxy FTP bug fixes:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Changed send_dir() to remove user/passwd from displayed URL.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Changed login error messages to be more descriptive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - remove setting of SO_DEBUG socket option
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Make ftp_getrc() more lenient about multiline responses,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding specifically, 230 responses which don't have continuation 230-
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on each line). These seem to be all NT FTP servers, and while
cfa64348224b66dd1c9979b809406c4d15b1c137fielding perhaps questionable, they appear to be legal by RFC 959.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Add missing kill_timeout() after transfer to user completes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem where a busy server could hang when restarting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding after being sent a SIGHUP due to child processes not exiting.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Modify mod_include escaping so a '\' only signifies an escaped
cfa64348224b66dd1c9979b809406c4d15b1c137fielding character if the next character is one that needs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding escaping. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Eliminated possible infinite loop in mod_imap when relative URLs are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding used with a 'base' directive that does not have a '/' in it.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko, reported by Onno Witvliet <onno@tc.hsa.nl>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reduced the default timeout from 1200 seconds to 300, and the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding one in the sample configfile from 400 to 300. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Stop vbprintf from crashing if given a NULL string pointer;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding print (null) instead. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't disable Nagle algorithm if system doesn't have TCP_NODELAY.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem with mod_cgi-generated internal redirects trying to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding read the request message-body twice. [Archie Cobbs and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reduced timeout on lingering close, removed possibility of a blocked
cfa64348224b66dd1c9979b809406c4d15b1c137fielding read causing the child to hang, and stopped logging of errors if
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the socket is not connected (reset by client). [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rearranged main child loop to remove duplication of code in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding select/accept and keep-alive requests, fixed several bugs regarding
cfa64348224b66dd1c9979b809406c4d15b1c137fielding checking scoreboard_image for exit indication and failure to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding account for all success conditions and trap all error conditions,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prevented multiple flushes before closing the socket; close the entire
cfa64348224b66dd1c9979b809406c4d15b1c137fielding socket buffer instead of just one descriptor, prevent logging of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding EPROTO and ECONNABORTED on platforms where supported, and generally
cfa64348224b66dd1c9979b809406c4d15b1c137fielding improved readability. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Extensive performance improvements. Cleaned up inefficient use of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding auto initializers, multiple is_matchexp calls on a static string,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and excessive merging of response_code_strings. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added double-buffering to mod_include to improve performance on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server-side includes. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Several fixes for suexec wrapper. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Make wrapper work for files on NFS filesystem.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Fix portability problem of MAXPATHLEN.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Fix array overrun problem in clean_env().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - Fix allocation of PATH environment variable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed extraneous blank line is description of mod_status chars.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Kurt Kohler]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Logging of errors from the call_exec routine simply went nowhere,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding since the logfile fd has been closed, so now we send them to stderr.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Harald T. Alvestrand]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed core dump when DocumentRoot is a CGI.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie, reported by geddis@tesserae.com]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed potential file descriptor leak in mod_asis; updated it and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding http_core to use pfopen/pfclose instead of fopen/fclose.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed handling of unsigned ints in ap_snprintf() on some chips such
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as the DEC Alpha which is 64-bit but uses 32-bit ints.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet and Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Return a 302 response code to the client when sending a redirect
cfa64348224b66dd1c9979b809406c4d15b1c137fielding due to a missing trailing '/' on a directory instead of a 301; now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it is cacheable. [Markus Gyger]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix condition where, if a bad directive occurs in .htaccess, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sub_request() goes first to this directory, then log_reason() will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SIGSEGV because it doesn't have initialized r->per_dir_config.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [PR#162 from Petr Lampa, fix by Marc Slemko and Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix handling of lang_index in is_variant_better(). This was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding causing problems which resulted in the server sending the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding wrong language document in some cases. [Petr Lampa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove free() from clean_env() in suexec wrapper. This was nuking
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the clean environment on some systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Tweak byteserving code (e.g. serving PDF files) to work around
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bugs in Netscape Navigator and Microsoft Internet Explorer.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Emit Content-Length header when sending multipart/byteranges.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Port to HI-UX/WE2. [Nick Maclaren]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Port to HP MPE operating system for HP 3000 machines
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Mark Bixby <markb@cccd.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug which caused a segmentation fault if only one argument
cfa64348224b66dd1c9979b809406c4d15b1c137fielding given to RLimit* directives. [Ed Korthof]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Continue persistent connection after 204 or 304 response. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved buffered output to the client by delaying the flush decision
cfa64348224b66dd1c9979b809406c4d15b1c137fielding until the BUFF code is actually about to read the next request.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This fixes a problem introduced in 1.2b5 with clients that send
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an extra CRLF after a POST request. Also improved chunked output
cfa64348224b66dd1c9979b809406c4d15b1c137fielding performance by combining writes using writev() and removing as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding many bflush() calls as possible. NOTE: Platforms without writev()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding must add -DNO_WRITEV to the compiler CFLAGS, either in Configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or Configure, unless we have already done so. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed mod_rewrite bug which truncated the rewritten URL [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed mod_info output corruption bug introduced by buffer overflow
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fixes. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed http_protocol to correctly output all HTTP/1.1 headers, including
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for the special case of a 304 response. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improved handling of TRACE method by bypassing normal method handling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and header parsing routines; fixed Allow response to always allow TRACE.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed compiler warnings in the regex library. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleaned-up some of the generated HTML. [Ken Coar]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b6
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow whitespace in imagemap mapfile coordinates. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix typo introduced in fix for potential infinite loop around
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accept() in child_main(). This change caused the rev to 1.2b6.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1.2b5 was never a public beta.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b5
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change KeepAlive semantics (On|Off instead of a number), add
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MaxKeepAliveRequests directive. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Various NeXT compilation patches, as well as a change in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding regex/regcomp.c since that file also used a NEXT define.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Andreas Koenig]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow * to terminate the end of a directory match in mod_dir.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Allows /~* to match for both /~joe and /~joe/. [David Bronder]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't call can_exec() if suexec_enabled. Calling this requires
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scripts executed by the suexec wrapper to be world executable, which
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defeats one of the advantages of running the wrapper. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Portability Fix: IRIX complained with 'make clean' about *pure* (removed)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Migration from sprintf() to snprintf() to avoid buffer
cfa64348224b66dd1c9979b809406c4d15b1c137fielding overflows. [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Provide portable snprintf() implementation (ap_snprintf)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as well as *cvt family. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Portability Fix: NeXT lacks unistd.h so we wrap it's inclusion
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove mod_fastcgi.c from the distribution. This module appears
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to be maintained more through the Open Market channels and should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding continue to be easily available at http://www.fastcgi.com/
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug in modules/Makefile that wouldn't allow building in more
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than one subdirectory (or cleaning, either). [Jeremy Laidman]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_info assumed that the config files were relative to ServerRoot.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken the Rodent]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CGI scripts called as an error document resulting from failed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGI execution would hang waiting for POST'ed data. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Log reason when mod_dir returns access HTTP_FORBIDDEN
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ken the Rodent]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly check errno to prevent display of a directory index
cfa64348224b66dd1c9979b809406c4d15b1c137fielding when server receives a long enough URL to confuse stat().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Several security enhancements to suexec wrapper. It is _highly_
cfa64348224b66dd1c9979b809406c4d15b1c137fielding recommended that previously installed versions of the wrapper
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be replaced with this version. [Randy Terbush, Jason Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - ~user execution now properly restricted to ~user's home
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory and below.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - execution restricted to UID/GID > 100
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - restrict passed environment to known variables
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - call setgid() before initgroups() (portability fix)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding - remove use of setenv() (portability fix)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add HTTP/1.0 response forcing. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add access control via environment variables. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add rflush() function. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) remove duplicate pcalloc() call in new_connection().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix incorrect comparison which could allow number of children =
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MaxClients + 1 if less than HARD_SERVER_LIMIT. Also fix potential
cfa64348224b66dd1c9979b809406c4d15b1c137fielding problem if StartServers > HARD_SERVER_LIMIT. [Ed Korthof]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated support for OSes (MachTen, ULTRIX, Paragon, ISC, OpenBSD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding AIX PS/2, CONVEXOS. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace instances of inet_ntoa() with inet_addr() for ProxyBlock.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding It's more portable. [Martin Kraemer]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace references to make in Makefile.tmpl with $(MAKE).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add ProxyBlock directive w/IP address caching. Add IP address
cfa64348224b66dd1c9979b809406c4d15b1c137fielding caching to NoCache directive as well. ProxyBlock works with all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handlers; NoCache now also works with FTP for anonymous logins.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Still more code cleanup. [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add "header parse" API hook [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix byte ordering problems for REMOTE_PORT [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) suEXEC wrapper was freeing memory that had not been malloc'ed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correctly allow access and auth directives in <Files> sections in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding server config files. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug with ServerPath that could cause certain files to be not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding found by the server. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix handling of ErrorDocument so that it doesn't remove a trailing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding double-quote from text and so that it properly checks for unsupported
cfa64348224b66dd1c9979b809406c4d15b1c137fielding status codes using the new index_of_response interface. [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Multiple fixes to the lingering_close code in order to avoid being
cfa64348224b66dd1c9979b809406c4d15b1c137fielding interrupted by a stray timeout, to avoid lingering on a connection
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that has already been aborted or never really existed, to ensure that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding we stop lingering as soon as any error condition is received, and to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding prevent being stuck indefinitely if the read blocks. Also improves
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reporting of error conditions. [Marc Slemko and Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed initialization of parameter structure for sigaction.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [mgyger@itr.ch, Adrian Filipi-Martin]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed reinitializing the parameters before each call to accept and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding select, and removed potential for infinite loop in accept.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding, after useful PR from adrian@virginia.edu]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed condition where, if a child fails to fork, the scoreboard would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding continue to say SERVER_STARTING forever. Eventually, the main process
cfa64348224b66dd1c9979b809406c4d15b1c137fielding would refuse to start new children because count_idle_servers() will
cfa64348224b66dd1c9979b809406c4d15b1c137fielding count those SERVER_STARTING entries and will always report that there
cfa64348224b66dd1c9979b809406c4d15b1c137fielding are enough idle servers. [Phillip Vandry]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug in bcwrite regarding failure to account for partial writes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Avoided calling bflush() when the client is pipelining requests.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Removed unnecessary flushes from http_protocol. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added description of "." mode in server-status [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix possible race condition in accept_mutex_init() that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding could leave a small security hole open allowing files to be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding overwritten in cases where the server UID has write permissions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Marc Slemko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix awk compatibilty problem in Configure. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix portablity problem in util_script where ARG_MAX may not be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defined for some systems.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add changes to allow compilation on Machten 4.0.3 for PowerPC.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randal Schwartz]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2 changes to support an MMAP style scoreboard file and UNIX
cfa64348224b66dd1c9979b809406c4d15b1c137fielding style magic #! token for better script portability. [Garey Smiley]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix bug in suexec wrapper introduced in b3 that would cause failed
cfa64348224b66dd1c9979b809406c4d15b1c137fielding execution for ~userdir CGI. [Jason Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix initgroups() business in suexec wrapper. [Jason Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix month off by one in suexec wrapper logging.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b3:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix error in mod_cgi which could cause resources not to be properly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding freed, or worse. [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix find_string() NULL pointer dereference. [Howard Fear]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add set_flag_slot() at the request of Dirk and others.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Sync mod_rewrite with patch level 10. [Ralf Engelschall]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add changes to improve the error message given for invalid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ServerName parameters. [Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add "Authoritative" directive for Auth modules that don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding currently have it. This gives admin control to assign authoritative
cfa64348224b66dd1c9979b809406c4d15b1c137fielding control to an authentication scheme and allow "fall through" for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding those authentication modules that aren't "Authoritative" thereby
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allowing multiple authentication mechanisms to be chained.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove requirement for ResourceConfig/AccessConfig if not using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the three config file layout. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add PASV mode to mod_proxy FTP handler. [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes to suexec wrapper to fix the following problems:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1. symlinked homedirs will kill ~userdirs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2. initgroups() on Linux 2.0.x clobbers gr->grid.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3. CGI command lines paramters problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 4. pw-pwdir for "docroot check" still the httpd user's pw record.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush, Jason Dour]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Change create_argv() to accept variable arguments. This fixes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a problem where arguments were not getting passed to the CGI via
cfa64348224b66dd1c9979b809406c4d15b1c137fielding argv[] when the suexec wrapper was active. [Randy Terbush, Jake Buchholz]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Collapse multiple slashes in path URLs to properly apply
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handlers defined by <Location>. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Define a sane set of DEFAULT_USER and DEFAULT_GROUP values for AIX.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Improve the accuracy of request duration timings by setting
cfa64348224b66dd1c9979b809406c4d15b1c137fielding r->request_time in read_request_line() instead of read_request().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Dean Gaudet]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reset timeout while reading via get_client_block() in mod_cgi.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Fixes problem with timed out transfers of large files. [Rasmus Lerdorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add the ability to pass different Makefile.tmpl files to Configure
cfa64348224b66dd1c9979b809406c4d15b1c137fielding using the -make flag. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix coredump triggered when sending a SIGHUP to the server caused
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by an assertion failure, in turn caused by an uninitialised field in a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding listen_rec.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add FILEPATH_INFO variable to CGI environment, which is equal to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding PATH_INFO from previous versions of Apache (in certain situations,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache 1.2's PATH_INFO will be different than 1.1's). [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [later removed in 1.2b11]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add rwrite() function to API to allow for sending strings of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding arbitrary length. [Doug MacEachern]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove rlim_t typedef for NetBSD. Do older versions need this?
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Defined rlim_t and WANTHSREGEX=yes and fixed waitpid() substitute for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding NeXT. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed recent modification to promote the status code on internal
cfa64348224b66dd1c9979b809406c4d15b1c137fielding redirects, since the correct fix was to change the default log format
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in mod_log_config so that it outputs the original status. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b2:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Update set_signals() to use sigaction() for setting handlers.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This appears to fix a re-entrant problem in the seg_fault()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding bus_error() handlers. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes to allow mod_status compile for OS/2 [Garey Smiley]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) changes for DEC AXP running OSF/1 v3.0. [Marc Evans]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) proxy_http.c bugfixes: [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1) fixes possible NULL pointer reference w/NoCache
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2) fixes NoCache behavior when using ProxyRemote (ProxyRemote
cfa64348224b66dd1c9979b809406c4d15b1c137fielding host would cache nothing if it was in the local domain,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and the local domain was in the NoCache list)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3) Adds Host: header when not available
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 4) Some code cleanup and clarification
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 1) Fixed an ommission that caused include variables to not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be parsed in config errmsg directives [Howard Fear]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 2) Remove HAVE_POSIX_REGEX cruft [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 3) Patch to fix compiler warnings [perrot@lal.in2p3.fr]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 4) Allow backslash-escaping to all quoted text
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Yoshino <ben@wiliki.eng.hawaii.edu>]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding 5) Pass variable to command line if not set in XSSI's env
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Howard Fear]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix infinite loop when processing Content-language lines in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding type-map files. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Closed file-globbing hole in test-cgi script. [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed problem in set_[user|group] that prevented CGI execution
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for non-virtualhosts when suEXEC was enabled. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added PORTING information file. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added definitions for S_IWGRP and S_IWOTH to conf.h [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changed default group to "nogroup" instead of "nobody" [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed define typo of FCNTL_SERIALIZED_ACCEPT where
cfa64348224b66dd1c9979b809406c4d15b1c137fielding USE_FCNTL_SERIALIZED_ACCEPT was intended.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed additional uses of 0xffffffff where INADDR_NONE was intended,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which caused problems of systems where socket s_addr is >32bits.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added comment to explain (r->chunked = 1) side-effect in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding http_protocol.c [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replaced use of index() in mod_expires.c with more appropriate
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and portable isdigit() test. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated Configure for ...
cfa64348224b66dd1c9979b809406c4d15b1c137fielding OS/2 (DEF_WANTHSREGEX=yes, other code changes)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *-dg-dgux* (bad pattern match)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding QNX (DEF_WANTHSREGEX=yes)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *-sunos4* (DEF_WANTHSREGEX=yes, -DUSEBCOPY)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *-ultrix (new)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *-unixware211 (new)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and added some user diagnostic info. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) In helpers/CutRule, replaced "cut" invocation with "awk" invocation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for better portability. [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Updated helpers/GuessOS for ...
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SCO 5 (recognize minor releases)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SCO UnixWare (braindamaged uname, whatever-whatever-unixware2)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SCO UnixWare 2.1.1 (requires a separate set of #defines in conf.h)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding IRIX64 (-sgi-irix64)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ULTRIX (-unknown-ultrix)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SINIX (-whatever-sysv4)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding NCR Unix (-ncr-sysv4)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and fixed something in helpers/PrintPath [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.2b1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Not listed. See <http://www.apache.org/docs/new_features_1_2.html>
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug where Cookie module would make two entries in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding logfile for each access [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug where Redirect in .htaccess files would cause memory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding leak. [Nathan Neulinger]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) MultiViews now works correctly with AddHandler [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Problems with mod_auth_msql fixed [Dirk vanGulik]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix misspelling of "Anonymous_Authorative" directive in mod_auth_anon.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1.0
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bring NeXT support up to date. [Takaaki Matsumoto]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bring QNX support up to date. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make virtual hosts default to main server keepalive parameters.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Alexei Kosut, Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allow ScanHTMLTitles to work with lowercase <title> tags. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix missing address family for connect, also remove unreachable statement
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in mod_proxy. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_env now turned on by default in Configuration.tmpl.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bugs which were fixed:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a) yet more mod_proxy bugs [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding b) CGI works again with inetd [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding c) Leading colons were stripped from passwords [osm@interguide.com]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding d) Another fix to multi-method Limit problem [jk@tools.de]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1b4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) r->bytes_sent variable restored. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Previously broken multi-method <Limit> parsing fixed. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More possibly unsecure programs removed from the support directory.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More mod_auth_msql authentication improvements.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) VirtualHosts based on Host: headers no longer conflict with the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Listen directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) OS/2 compatibility enhancements. [Gary Smiley]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) POST now allowed to directory index CGI scripts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Actions now work with files of the default type.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bugs which were fixed:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a) more mod_proxy bugs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding b) early termination of inetd requests
cfa64348224b66dd1c9979b809406c4d15b1c137fielding c) compile warnings on several systems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding d) problems when scripts stop reading output early
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1b3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Much of cgi-bin and all of cgi-src has been removed, due to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding various security holes found and that we could no longer support
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The "Set-Cookie" header is now special-cased to not merge multiple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instances, since certain popular browsers can not handle multiple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Set-Cookie instructions in a single header. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) rprintf() added to buffer code, occurrences of sprintf removed.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CONNECT method for proxy module, which means tunneling SSL should work.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (No crypto needed) Also a NoCache config directive.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Several API additions: pstrndup(), table_unset() and get_token()
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions now available to modules.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_imap fixups, in particular Location: headers are now complete
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New "info" module which reports on installed module set through a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding special URL, a la mod_status.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "ServerPath" directive added - allows for graceful transition
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for Host:-header-based virtual hosts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Anonymous authentication module improvements.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) MSQL authentication module improvements.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Status module design improved - output now table-based. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) htdigest utility included for use with digest authentication
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_negotiation: Accept values with wildcards to be treated with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding less priority than those without wildcards at the same quality
cfa64348224b66dd1c9979b809406c4d15b1c137fielding value. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bugs which were fixed:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a) numerous mod_proxy bugs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding b) CGI early-termination bug [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding c) Keepalives not working with virtual hosts
cfa64348224b66dd1c9979b809406c4d15b1c137fielding d) RefererIgnore problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding e) closing fd's twice in mod_include (causing core dumps on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Linux and elsewhere).
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1b2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bugfixes:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a) core dumps in mod_digest
cfa64348224b66dd1c9979b809406c4d15b1c137fielding b) truncated hostnames/ip address in the logs
cfa64348224b66dd1c9979b809406c4d15b1c137fielding c) relative URL's in mod_imap map files
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.1b1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Not listed. See <http://www.apache.org/docs/new_features_1_1.html>
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.0.3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Internal redirects which occur in mod_dir.c now preserve the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding query portion of a request (the bit after the question mark).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Adam Sussman]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Escape active characters '<', '>' and '&' in html output in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directory listings, error messages and redirection links.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Apache will now work with LynxOS 2.3 and later [Steven Watt]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix for POSIX compliance in waiting for processes in alloc.c.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Nick Williams]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) setsockopt no longer takes a const declared argument [Martijn Koster]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reset timeout timer after each successful fwrite() to the network.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This patch adds a reset_timeout() procedure that is called by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding send_fd() to reset the timeout ever time data is written to the net.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Nathan Schrenk]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) timeout() signal handler now checks for SIGPIPE and reports
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lost connections in a more user friendly way. [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Location of the "scoreboard" file which used to live in /tmp is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding now configurable (for OSes that can't use mmap) via ScoreBoardFile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which works similar to PidFile (in httpd.conf) [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Include sys/resource.h in the correct place for SunOS4 [Sameer Parekh]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) the pstrcat call in mod_cookies.c didn't have an ending NULL,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which caused a SEGV with cookies enabled
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Output warning when MinSpareServers is set to <= 0 and change it to 1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Log the UNIX textual error returned by some system calls, in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding particular errors from accept() [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add strerror function to util.c for SunOS4 [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.0.2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) patch to get Apache compiled on UnixWare 2.x, recommended as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a temporary measure, pending rewrite of rfc931.c. [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix get_basic_auth_pw() to set the auth_type of the request.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) past changes to http_config.c to only use the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setrlimit function on systems defining RLIMIT_NOFILE
cfa64348224b66dd1c9979b809406c4d15b1c137fielding broke the feature on SUNOS4. Now defines HAVE_RESOURCE
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for SUNOS and prototypes the needed functions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Remove uses of MAX_STRING_LEN/HUGE_STRING_LEN from several routines.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix use of pointer to scratch memory. [Cliff Skolnick]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Merge multiple headers from CGI scripts instead of taking last
cfa64348224b66dd1c9979b809406c4d15b1c137fielding one. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add support for SCO 5. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.0.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Silence mod_log_referer and mod_log_agent if not configured
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Recursive includes can occur if the client supplies PATH_INFO data
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and the server provider uses relative links; as file.html
cfa64348224b66dd1c9979b809406c4d15b1c137fielding relative to /doc.shtml/pathinfo is /doc.shtml/file.html. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) The replacement for initgroups() did not call {set,end}grent(). This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding had two implications: if anything else used getgrent(), then
cfa64348224b66dd1c9979b809406c4d15b1c137fielding initgroups() would fail, and it was consuming a file descriptor.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) On heavily loaded servers it was possible for the scoreboard to get
cfa64348224b66dd1c9979b809406c4d15b1c137fielding out of sync with reality, as a result of a race condition.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The observed symptoms are far more Apaches running than should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be, and heavy system loads, generally followed by catastrophic
cfa64348224b66dd1c9979b809406c4d15b1c137fielding system failure. [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix typo in license. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 1.0.0 23 Nov 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Not listed. See <http://www.apache.org/docs/new_features_1_0.html>
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.16 05 Nov 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New man page for 'httpd' added to support directory [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) .htgroup files can have more than one line giving members for a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding given group (each must have the group name in front), for NCSA
cfa64348224b66dd1c9979b809406c4d15b1c137fielding back-compatibility [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Mutual exclusion around accept() is on by default for SVR4 systems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding generally, since they generally can't handle multiple processes in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding accept() on the same socket. This should cure flaky behavior on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a lot of those systems. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AddType, AddEncoding, and AddLanguage directives take multiple
cfa64348224b66dd1c9979b809406c4d15b1c137fielding extensions on a single command line [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) UserDir can be disabled for a given virtual host by saying
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "UserDir disabled" in the <VirtualHost> section --- it was a bug
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that this didn't work. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles on QNX [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected parsing of ctime time format [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) httpd does a perror() before exiting if it can't log its pid
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to the PidFile, to make diagnosing the error a bit easier.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) <!--#include file="..."--> can no longer include files in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parent directory, for NCSA back-compatibility. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) '~' is *not* escaped in URIs generated for directory listings
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Eliminated compiler warning in the imagemap module [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed bug involving handling URIs with escaped %-characters
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in redirects [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.15 14 Oct 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Switched to new, simpler license
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Eliminated core dumps with improperly formatted DBM group files [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't allow requests for ordinary files to have PATH_INFO [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reject paths containing %-escaped '%' or null characters [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correctly handles internal redirects to files with names containing '%'
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Repunctuated some error messages [Aram Mirzadeh, Andrew Wilson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use geteuid() rather than getuid() to see if we have root privilege,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so that server correctly resets privilege if run setuid root. [Andrew
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Handle ftp: and telnet: URLs correctly in imagemaps (built-in module)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix relative URLs in imagemap files [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Somewhat better fix for the old "Alias /foo/ /bar/" business
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't repeatedly open the ErrorLog if a bunch of <VirtualHost>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding entries all name the same one. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fix directory listings with filenames containing unusual characters
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Better URI-escaping for generated URIs in directories with filenames
cfa64348224b66dd1c9979b809406c4d15b1c137fielding containing unusual characters [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed potential FILE* leak in http_main.c [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Unblock alarms on error return from spawn_child() [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Sample Config files have extra note for SCO users [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configuration has note for HP-UX users [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Eliminated some bogus Linux-only #defines in conf.h [Aram Mirzadeh]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Nuked bogus #define in httpd.h [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Better test for whether a system has setrlimit() [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Calls update_child_status() after reopen_scoreboard() [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't send itself SIGHUP on startup when run in the -X debug-only mode
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.14 19 Sep 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles on SCO ODT 3.0 [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AddDescription works (better) [Ben Laurie]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Leaves an intelligible error diagnostic when it can't set group
cfa64348224b66dd1c9979b809406c4d15b1c137fielding privileges on standalone startup [Andrew Wilson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles on NeXT again --- the 0.8.13 RLIMIT patch was failing on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding that machine, which claims to be BSD but does not support RLIMIT.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) gcc -Wall no longer complains about an unused variable when util.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is compiled with -DMINIMAL_DNS [Andrew Wilson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Nuked another compiler warning for -Wall on Linux [Aram Mirzadeh]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.13 07 Sep 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Make IndexIgnore *work* (ooops) [Jarkko Torppa]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Have built-in imagemap code recognize & honor Point directive [James
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Generate cleaner directory listings in directories with a mix of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding long and short filenames [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly initialize dynamically loaded modules [Royston Shufflebotham]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly default ServerName for virtual servers [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Rationalize handling of BSD in conf.h and elsewhere [Randy Terbush,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Paul Richards and a cast of thousands...]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) On self-identified BSD systems (we don't try to guess any more),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allocate a few extra file descriptors per virtual host with setrlimit,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if we can, to avoid running out. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Write 22-character lock file name into buffer with enough space
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on startup [Konstantin Olchanski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Use archaic setpgrp() interface on NeXT, which requires it [Brian
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Suppress -Wall warning by casting const away in util.c [Aram Mirzadeh]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Suppress -Wall warning by initializing variable in negotiation code
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Tobias Weingartner]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.12 31 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't pause three seconds after including a CGI script which is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding too slow to die off (this is done by not even trying to kill off
cfa64348224b66dd1c9979b809406c4d15b1c137fielding subprocesses, including the SIGTERM/pause/SIGKILL routine, until
cfa64348224b66dd1c9979b809406c4d15b1c137fielding after the entire document has been processed). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't do SSI if Options Includes is off. (Ooops). [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Options IncludesNoExec allows inclusion of at least text/* [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Allows .htaccess files to override <Directory> sections naming the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding same directory [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Removed an efficiency hack in sub_req_lookup_uri which was
cfa64348224b66dd1c9979b809406c4d15b1c137fielding causing certain extremely marginal cases (e.g., ScriptAlias of a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *particular* index.html file) to fail. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't log an error when the requested URI requires
cfa64348224b66dd1c9979b809406c4d15b1c137fielding authentication, but no auth header line was supplied by the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding client; this is a normal condition (the client doesn't no auth is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding needed here yet). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Behaves more sanely when the name server loses its mind [Sean Welch]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) RFC931 code compiles cleanly on old BSDI releases [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) RFC931 code no longer passes out name of prior clients on current
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requests if the current request came from a server that doesn't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding do RFC931. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Configuration script accepts "Module" lines with trailing whitespace.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleaned up compiler warning from mod_access.c [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Cleaned up comments in mod_cgi.c [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.11 24 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Wildcard <Directory> specifications work. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't loop for buggy CGI on Solaris [Cliff Skolnick]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Symlink checks (FollowSymLinks off, or SymLinkIfOwnerMatch) always check
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the file being requested itself, in addition to the directories leading
cfa64348224b66dd1c9979b809406c4d15b1c137fielding up to it. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Logs access failures due to symlink checks or invalid client address
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in the error log [Roy Fielding, Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Symlink checks deal correctly with systems where lstat of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "/path/to/some/link/" follows the link. [Thau, Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Doesn't reset DirectoryIndex to 'index.html' when
cfa64348224b66dd1c9979b809406c4d15b1c137fielding other directory options are set in a .htaccess file. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Clarified init code and nuked bogus warning in mod_access.c
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Florent Guillaume]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected several directives in sample srm.conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --- includes corrections to directory indexing icon-related directives
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (using unknown.gif rather than unknown.xbm as the DefaultIcon, doing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding icons for encodings right, and turning on AddEncoding by default).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected descriptions of args to AddIcon and AddAlt in command table
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [James Cloos]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) INSTALL & README mention "contributed modules" directory [Brian
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed English in the license language... "for for" --> "for".
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed ScriptAlias/Alias interaction by moving ScriptAlias handling to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_alias.c, merging it almost completely with handling of Alias, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding adding a 'notes' field to the request_rec which allows the CGI module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to discover whether the Alias module has put this request through
cfa64348224b66dd1c9979b809406c4d15b1c137fielding ScriptAlias (which it needs to know for back-compatibility, as the old
cfa64348224b66dd1c9979b809406c4d15b1c137fielding NCSA code did not check Options ExecCGI in ScriptAlias directories).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.10 18 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AllowOverride applies to the named directory, and not just
cfa64348224b66dd1c9979b809406c4d15b1c137fielding subdirectories. [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Do locking for accept() exclusion (on systems that need it)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding using a special file created for the purpose in /usr/tmp, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not the error log; using the error log causes real problems
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if it's NFS-mounted; this is known to be the cause of a whole
cfa64348224b66dd1c9979b809406c4d15b1c137fielding lot of "server hang" problems with Solaris. [David Robinson;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding thanks to Merten Schumann for help diagnosing the problem].
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.9 12 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles with -DMAXIMUM_DNS ---- ooops! [Henrik Mortensen]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Nested includes see environment variables of the including document,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for NCSA bug-compatibility (some sites have standard footer includes
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which try to print out the last-modified date). [Eric Hagberg/Robert
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) <!--exec cgi="/some/uri/here"--> always treats the item named by the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding URI as a CGI script, even if it would have been treated as something
cfa64348224b66dd1c9979b809406c4d15b1c137fielding else if requested directly, for NCSA back-compatibility. (Note that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this means that people who know the name of the script can see the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code just by asking for it). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New version of dbmmanage script included in support directory as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Check if scoreboard file couldn't be opened, and say so, rather
cfa64348224b66dd1c9979b809406c4d15b1c137fielding then going insane [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) POST to CGI works on A/UX [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) AddIcon and AddAlt commands work properly [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) NCSA server push works properly --- the Arena bug compatibility
cfa64348224b66dd1c9979b809406c4d15b1c137fielding workaround, which broke it, is gone (use -DARENA_BUG_WORKAROUND
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if you still want the workaround). [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If client didn't submit any Accept-encodings, ignore encodings in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding content negotiation. (NB this will all have to be reworked anyway
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for the new HTTP draft). [Florent Guillaume]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't dump core when trying to log timed-out requests [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Really honor CacheNegotiatedDocs [Florent Guillaume]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Give Redirect priority over Alias, for NCSA bug compatibility
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correctly set PATH_TRANSLATED in all cases from <!--#exec cmd=""-->,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding paralleling earlier bug fix for CGI [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) If DBM auth is improperly configured, report a server error and don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Deleted FCNTL_SERIALIZED_ACCEPTS from conf.h entry for A/UX;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it seems to work well enough without it (even in a 10 hits/sec
cfa64348224b66dd1c9979b809406c4d15b1c137fielding workout), and the overhead for the locking under A/UX is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding alarmingly high (though it is very low on other systems).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Eric Hagberg, Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed portability problems with mod_cookies.c [Cliff Skolnick]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Further de-Berklize mod_cookies.c; change the bogus #include. [Brian
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More improvements to default Configuration for A/UX [Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles clean on NEXT [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles clean on SGI [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.8 08 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SunOS library prototypes now never included unless explicitly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding requested in the configuration (via -DSUNOS_LIB_PROTOTYPES);
cfa64348224b66dd1c9979b809406c4d15b1c137fielding people using GNU libc on SunOS are screwed by prototypes for the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding standard library.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (Those who wish to compile clean with gcc -Wall on a standard
cfa64348224b66dd1c9979b809406c4d15b1c137fielding SunOS setup need the prototypes, and may obtain them using
cfa64348224b66dd1c9979b809406c4d15b1c137fielding -DSUNOS_LIB_PROTOTYPES. Those wishing to use -Wall on a system
cfa64348224b66dd1c9979b809406c4d15b1c137fielding with nonstandard libraries are presumably competent to make their
cfa64348224b66dd1c9979b809406c4d15b1c137fielding own arrangements).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Strips trailing '/' characters off both args to the Alias command,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding to make 'Alias /foo/ /bar/' work.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.7 03 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't hang when restarting with a child from 'TransferLog "|..."' running
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [reported by David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles clean on OSF/1 [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added some of the more recent significant changes (AddLanguage stuff,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding experimental LogFormat support) to CHANGES file in distribution root
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.6 02 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Deleted Netscape reload workaround --- it's in violation of HTTP specs.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (If you actually wanted a conditional GET which bypassed the cache, you
cfa64348224b66dd1c9979b809406c4d15b1c137fielding couldn't get it). [Reported by Roy Fielding]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Properly terminate headers on '304 Not Modified' replies to conditional
cfa64348224b66dd1c9979b809406c4d15b1c137fielding GETs --- no browser we can find cares much, but the CERN proxy chokes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Reported by Cliff Skolnick; fix discovered independently by Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) httpd -v doesn't call itself "Shambhala". [Reported by Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) SunOS lib-function prototypes in conf.h conditionalized on __GNUC__,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding not __SUNPRO_C (they're needed to quiet gcc -Wall, but acc chokes on 'em,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and older versions don't set the __SUNPRO_C preprocessor variable). On
cfa64348224b66dd1c9979b809406c4d15b1c137fielding all other systems, these are never used anyway. [Reported by Mark Cox].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Scoreboard file (/tmp/htstatus.*) no longer publically writable.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.5 01 Aug 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added last-minute configurable log experiment, as optional module
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correctly set r->bytes_sent for HTTP/0.9 requests, so they get logged
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly. (One-line fix to http_protocol.c).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Work around bogus behavior when reloading from Netscape.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding It's Netscape's bug --- for some reason they expect a request with
cfa64348224b66dd1c9979b809406c4d15b1c137fielding If-modified-since: to not function as a conditional GET if it also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding comes with Pragma: no-cache, which is way out of line with the HTTP
cfa64348224b66dd1c9979b809406c4d15b1c137fielding spec (according to Roy Fielding, the redactor).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added parameter to set maximum number of server processes.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added patches to make it work on A/UX. A/UX is *weird*. [Eric Hagberg,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Jim Jagielski]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) IdentityCheck bugfix [Chuck Murcko].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected cgi-src/Makefile entry for new imagemap script. [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More sample config file corrections; add extension to AddType for
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *.asis, move AddType generic description to its proper place, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fix miscellaneous typos. [ Alexei Kosut ]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Deleted the *other* reference to the regents from the Berkeley
cfa64348224b66dd1c9979b809406c4d15b1c137fielding legal disclaimer (everyplace).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Nuked Shambhala name from src/README; had already cleaned it out
cfa64348224b66dd1c9979b809406c4d15b1c137fielding of everywhere else.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes to server-pool management parms --- renamed current
cfa64348224b66dd1c9979b809406c4d15b1c137fielding StartServers to MinSpareServers, created separate StartServers
cfa64348224b66dd1c9979b809406c4d15b1c137fielding parameter which means what it says, and renamed MaxServers to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MaxSpareServers (though the old name still works, for NCSA 1.4
cfa64348224b66dd1c9979b809406c4d15b1c137fielding back-compatibility). The old names were generally regarded as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding too confusing. Also altered "docs" in sample config files.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More improvements to default config files ---
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sample directives (commented out) for XBitHack, BindAddress,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CacheNegotiatedDocs, VirtualHost; decent set of AddLanguage
cfa64348224b66dd1c9979b809406c4d15b1c137fielding defaults, AddTypes for send-as-is and imagemap magic types, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding improvements to samples for DirectoryIndex [Alexei Kosut]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Yet more improvements to default config files --- changes to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Alexei's sample AddLanguage directives, and sample LanguagePriority
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [ Florent Guillaume ]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set config file locations properly if not set in httpd.conf
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [ David Robinson ]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't escape URIs in internal redirects multiple times; don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding do that when translating PATH_INFO to PATH_TRANSLATED either.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [ David Robinson ]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Corrected spelling of "Required" in 401 error reports [Andrew Wilson]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Edited distribution README to *briefly* summarize installation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding procedures, and give a pointer to the INSTALL file in the src/
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Upgraded imagemap script in cgi-bin to 1.8 version from more
cfa64348224b66dd1c9979b809406c4d15b1c137fielding recent NCSA distributions.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Bug fix to previous bug fix --- if .htaccess file and <Directory>
cfa64348224b66dd1c9979b809406c4d15b1c137fielding exist for the same directory, use both and don't segfault. [Reported
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Proper makefile dependencies [David Robinson]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Note (re)starts in error log --- reported by Rob Hartill.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Only call no2slash() after get_path_info() has been done, to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding preserve multiple slashes in the PATH_INFO [NCSA compatibility,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reported by Andrew Wilson, though this one is probably a real bug]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed mod_imap.c --- relative paths with base_uri referer don't
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dump core when Referer is not supplied. [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Lightly edited sample config files to refer people to our documentation
cfa64348224b66dd1c9979b809406c4d15b1c137fielding instead of NCSA's, and to list Rob McCool as *original* author (also
cfa64348224b66dd1c9979b809406c4d15b1c137fielding deleted his old, and no doubt non-functional email address). Would be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding nice to have examples of new features...
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.2 19 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added AddLanuage code [Florent Guillaume]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't say "access forbidden" when a CGI script is not found. [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) All sorts of problems when MultiViews finds a directory. It would
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be nice if mod_dir.c was robust enough to handle that, but for now,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding just punt. [reported by Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Wait for all children on restart, to make sure that the old socket
cfa64348224b66dd1c9979b809406c4d15b1c137fielding is gone and we can reopen it. [reported by Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Imagemap module is enabled in default Configuration
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) RefererLog and UserAgentLog modules properly default the logfile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Mark Cox's mod_cookies added to the distribution as an optional
cfa64348224b66dd1c9979b809406c4d15b1c137fielding module (commented out in the default Configuration, and noted as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding an experiment, along with mod_dld). [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles on ULTRIX (a continuing battle...). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed nasty bug in SIGTERM handling [reported by Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changed "Shambhala" to "Apache" in API docs. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added new, toothier legal disclaimer. [Robert Thau; copied from BSD
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.1
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New imagemap module [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replacement referer log module with NCSA-compatible RefererIgnore
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Matthew Gray again]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't mung directory listings with very long filenames.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Florent Guillaume]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.8.0 (nee Shambhala 0.6.2) 16 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) New config script. See INSTALL for info. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Scoreboard mechanism for regulating the number of extant server
cfa64348224b66dd1c9979b809406c4d15b1c137fielding processes. MaxServers and StartServers defaults are the same as
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for NCSA, but the meanings are slightly different. (Actually,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding I should probably lower the MaxServers default to 10).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Before asking for a new connection, each server process checks
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the number of other servers which are also waiting for a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding connection. If there are more than MaxServers, it quietly dies
cfa64348224b66dd1c9979b809406c4d15b1c137fielding off. Conversely, every second, the root, or caretaker, process
cfa64348224b66dd1c9979b809406c4d15b1c137fielding looks to see how many servers are waiting for a new connection;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if there are fewer than StartServers, it starts a new one. This
cfa64348224b66dd1c9979b809406c4d15b1c137fielding does not depend on the number of server processes already extant.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The accounting is arranged through a "scoreboard" file, named
cfa64348224b66dd1c9979b809406c4d15b1c137fielding /tmp/htstatus.*, on which each process has an independent file
cfa64348224b66dd1c9979b809406c4d15b1c137fielding descriptor (they need to seek without interference).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding The end effect is that MaxServers is the maximum number of
cfa64348224b66dd1c9979b809406c4d15b1c137fielding servers on an *inactive* server machine, but more will be forked
cfa64348224b66dd1c9979b809406c4d15b1c137fielding off to handle unusually heavy loads (or unusually slow clients);
cfa64348224b66dd1c9979b809406c4d15b1c137fielding these will die off when they are no longer needed --- without
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reverting to the overhead of full forking operation. There is a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding hard maximum of 150 server processes compiled in, largely to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding avoid forking out of control and dragging the machine down.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (This is arguably too high).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding In my server endurance tests, this mechanism did not appear to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding impose any significant overhead, even after I forced it to put the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding scoreboard file on a normal filesystem (which might have more
cfa64348224b66dd1c9979b809406c4d15b1c137fielding overhead than tmpfs). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set HTTP_FOO variables for SSI <!--#exec cmd-->s, not just CGI scripts.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Cliff Skolnick]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Read .htaccess files even in directory with <Directory> section.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding (Former incompatibility noted on mailing list, now fixed). [Robert
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) "HEAD /" gives the client a "Bad Request" error message, rather
cfa64348224b66dd1c9979b809406c4d15b1c137fielding than trying to send no body *and* no headers. [Cliff Skolnick].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't produce double error reports for some very obscure cases
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mainly involving auth configuration (the "all modules decline to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handle" case which is a sure sign of a server bug in most cases,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding but also happens when authentication is badly misconfigured).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Moved FCNTL_SERIALIZED_ACCEPT defines into conf.h (that's what
cfa64348224b66dd1c9979b809406c4d15b1c137fielding it's *for*, and this sort of thing really shouldn't be cluttering
cfa64348224b66dd1c9979b809406c4d15b1c137fielding up the Makefile). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Incidental code cleanups in http_main.c --- stop dragging
cfa64348224b66dd1c9979b809406c4d15b1c137fielding sa_client around; just declare it where used. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Another acc-related fix. (It doesn't like const char
cfa64348224b66dd1c9979b809406c4d15b1c137fielding in some places...). [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.6.1 13 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed auth_name-related typos in http_core.c [Brian Behlendorf]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Also, fixed auth typo in http_protocol.c unmasked by this fix.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Compiles clean with acc on SunOS [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reordered modules in modules.c so that Redirect takes priority
cfa64348224b66dd1c9979b809406c4d15b1c137fielding over ScriptAlias, for NCSA bug-compatibility [Rob Hartill] ---
cfa64348224b66dd1c9979b809406c4d15b1c137fielding believe it or not, he has an actual site with a ScriptAlias and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding a Redirect declared for the *exact same directory*. Even *my*
cfa64348224b66dd1c9979b809406c4d15b1c137fielding compatibility fetish wouldn't motivate me to fix this if the fix
cfa64348224b66dd1c9979b809406c4d15b1c137fielding required any effort, but it doesn't, so what the hey.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed to properly default several server_rec fields for virtual
cfa64348224b66dd1c9979b809406c4d15b1c137fielding servers from the corresponding fields in the main server_rec.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Cliff Skolnick --- 'port' was a particular irritant].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) No longer kills off nph- child processes before they are
cfa64348224b66dd1c9979b809406c4d15b1c137fielding finished sending output. [Matthew Gray]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.6.0 10 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Two styles of timeout --- hard and soft. soft_timeout()s just put
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the connection to the client in an "aborted" state, but otherwise
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allow whatever handlers are running to clean up. hard_timeout()s
cfa64348224b66dd1c9979b809406c4d15b1c137fielding abort the request in progress completely; anything not tied to some
cfa64348224b66dd1c9979b809406c4d15b1c137fielding resource pool cleanup will leak. They're still around because I
cfa64348224b66dd1c9979b809406c4d15b1c137fielding haven't yet come up with a more elegant way of handling
cfa64348224b66dd1c9979b809406c4d15b1c137fielding timeouts when talking to something that isn't the client. The
cfa64348224b66dd1c9979b809406c4d15b1c137fielding default_handler and the dir_handler now use soft timeouts, largely
cfa64348224b66dd1c9979b809406c4d15b1c137fielding so I can test the feature. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) TransferLog "| my_postprocessor ..." seems to be there. Note that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the case of log handlers dying prematurely is probably handled VERY
cfa64348224b66dd1c9979b809406c4d15b1c137fielding gracelessly at this point, and if the logger stops reading input,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the server will hang. (It is known to correctly restart the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding logging process on server restart; this is (should be!) going through
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the same SIGTERM/pause/SIGKILL routine used to ding an errant CGI
cfa64348224b66dd1c9979b809406c4d15b1c137fielding script). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) asis files supported (new module). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) IdentityCheck code is compiled in, but has not been tested. (I
cfa64348224b66dd1c9979b809406c4d15b1c137fielding don't know anyone who runs identd). [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) PATH_INFO and PATH_TRANSLATED are not set unless some real PATH_INFO
cfa64348224b66dd1c9979b809406c4d15b1c137fielding came in with the request, for NCSA bug-compatibility. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't leak the DIR * on HEAD request for a directory. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Deleted the block_alarms() stuff from dbm_auth; no longer necessary,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as timeouts are not in scope. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) quoted-string args in config files now handled correctly (doesn't drop
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the last character). [Robert Thau; reported by Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed silly typo in http_main.c which was suddenly fatal in HP-UX.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding How the hell did it ever work? [Robert Thau; reported by Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_core.c --- default_type returns DEFAULT_TYPE (the compile-time
cfa64348224b66dd1c9979b809406c4d15b1c137fielding default default type); the former default default behavior when all
cfa64348224b66dd1c9979b809406c4d15b1c137fielding type-checkers defaulted had been a core dump. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Copy filenames out of the struct dirent when indexing
cfa64348224b66dd1c9979b809406c4d15b1c137fielding directories. (On Linux, readdir() returns a pointer to the same
cfa64348224b66dd1c9979b809406c4d15b1c137fielding memory area every time). Fix is in mod_dir.c. [Paul Sutton]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.5.3 [not released]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Default response handler notes "file not found" in the error log,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding if the file was not found. [Cliff Skolnick].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Another Cliff bug --- "GET /~user" now properly redirects (the userdir
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code no longer sets up bogus PATH_INFO which fakes out the directory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding handler). [Cliff Skolnick]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.5.2 06 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Changes to http_main.c --- root server no longer plays silly
cfa64348224b66dd1c9979b809406c4d15b1c137fielding games with SIGCHLD, and so now detects and replaces dying
cfa64348224b66dd1c9979b809406c4d15b1c137fielding children. Child processes just die on SIGTERM, without taking
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the whole process group with them. Potential problem --- if any
cfa64348224b66dd1c9979b809406c4d15b1c137fielding child process refuses to die, we hang in restart.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding MaxRequestsPerChild may still not work, but it certainly works
cfa64348224b66dd1c9979b809406c4d15b1c137fielding better than it did before this! [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_dir.c bug fixes: ReadmeName and HeaderName
cfa64348224b66dd1c9979b809406c4d15b1c137fielding work (or work better, at least); over-long description lines
cfa64348224b66dd1c9979b809406c4d15b1c137fielding properly terminated. [Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) http_request.c now calls unescape_url() more places where it
cfa64348224b66dd1c9979b809406c4d15b1c137fielding should [Paul Sutton].
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More directory handling bugs (reported by Cox)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Parent Directory link is now set correctly. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.5.1 04 Jul 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Generalized cleanup interface in alloc.c --- any function can be
cfa64348224b66dd1c9979b809406c4d15b1c137fielding registered with alloc.c as a cleanup for a resource pool;
cfa64348224b66dd1c9979b809406c4d15b1c137fielding tracking of files and file descriptors has been reimplemented in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding terms of this interface, so I can give it some sort of a test.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More changes in alloc.c --- new cleanup_for_exec() function,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding which tracks down and closes all file descriptors which have been
cfa64348224b66dd1c9979b809406c4d15b1c137fielding registered with the alloc.c machinery before the server exec()s a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding child process for CGI or <!--#exec-->. CGI children now get
cfa64348224b66dd1c9979b809406c4d15b1c137fielding started with exactly three file descriptors open. Hopefully,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding this cures the problem Rob H. was having with overly persistent
cfa64348224b66dd1c9979b809406c4d15b1c137fielding CGI connections. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Mutual exclusion around the accept() in child_main() --- this is
cfa64348224b66dd1c9979b809406c4d15b1c137fielding required on at least SGI, Solaris and Linux, and is #ifdef'ed in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding by default on those systems only (-DFCNTL_SERIALIZED_ACCEPT).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This uses fcntl(F_SETLK,...) on the error log descriptor because
cfa64348224b66dd1c9979b809406c4d15b1c137fielding flock() on that descriptor won't work on systems which have BSD
cfa64348224b66dd1c9979b809406c4d15b1c137fielding flock() semantics, including (I think) Linux 1.3 and Solaris.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This does work on SunOS (when the server is idle, only one
cfa64348224b66dd1c9979b809406c4d15b1c137fielding process in the pool is waiting on accept()); it *ought* to work
cfa64348224b66dd1c9979b809406c4d15b1c137fielding on the other systems. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) FreeBSD and BSDI portability tweaks [Chuck Murcko]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) sizeof(*sa_client) bugfix from [Rob Hartill]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) pstrdup(..., NULL) returns NULL, [Randy Terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) block_alarms() to avoid leaking the DBM* in dbm auth (this should
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be unnecessary if I go to the revised timeout-handling scheme).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) For NCSA bug-compatibility, set QUERY_STRING env var (to a null
cfa64348224b66dd1c9979b809406c4d15b1c137fielding string) even if none came in with the request. [Robert Thau]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) CHANGES file added to distribution ;-).
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.4.5
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) mod_dld --- early dynamic loading support [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add wildcard content handlers for XBITHACK; default_hander now
cfa64348224b66dd1c9979b809406c4d15b1c137fielding invoked with that mechanism (as a handler hanging off mod_core) [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) XBITHACK supported as a wildcard content-handler, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding configurable at run-time (not just at compile time, as in the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding "patchy server" releases) [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.4.4 30 Jun 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed basic thinkos in mod_dbm_auth.c [rst, reported by Mark Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Handle Addtype x/y .z [rst, reported by Cox]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.4.3
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Fixed very dumb bug in mod_alias; "Alias" and "Redirect" are not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding synonymous [rst, terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.4.1 28 Jun 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) First-cut virtual host implementation; some refit in the config
cfa64348224b66dd1c9979b809406c4d15b1c137fielding reading code, and log management, was necessary to support this [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Sub-pool machinery, originally added to avoid excessive storage
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allocation on listings of large directories (which turned out to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding be the problem that the 0.3 storage accounting was added to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding find). Subrequests and mod_dir changed to use subpools. [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) More memory debugging --- free list consistency checks. [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Added err_headers to request_rec, with support elsewhere [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Other fixes to minor bugs in mod_dir and mod_includes [rst, terbush]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.3 19 Jun 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Switch ONE_PROCESS to a runtime command-line option (-X)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Don't compile in mod_ai_backcompat by default
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Switch name of server from Apache to Shambhala in Makefile
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add some accounting routines to track memory usage in the pools,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for debugging
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.2
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Set DOCUMENT_ROOT CGI variable
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add single-process debugging, as a compile-time option (ONE_PROCESS)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Add critical section protection to handling of cleanup structures
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Significant code reorg within the server core to group related
cfa64348224b66dd1c9979b809406c4d15b1c137fielding functions together [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Correctly handle clients that hang up before sending any request
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Replace dying child processes. [rst]
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Shambhala 0.1 12 Jun 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Major rewrite of the pre-existing "patchy server" codebase, by
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Robert Thau (rst). Significant portions of the server code, such
cfa64348224b66dd1c9979b809406c4d15b1c137fielding as configuration-file handling and HTTP authentication support,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding were ripped out and rewritten from scratch. Code that was not
cfa64348224b66dd1c9979b809406c4d15b1c137fielding completely rewritten was significantly altered.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Major changes with this release include:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Introduction of the module API; in request handling, the central
cfa64348224b66dd1c9979b809406c4d15b1c137fielding machinery just dispatches to various modules, which actually do
cfa64348224b66dd1c9979b809406c4d15b1c137fielding most of the work. Configuration handling is similar --- modules
cfa64348224b66dd1c9979b809406c4d15b1c137fielding declare their own commands, and the central machinery just
cfa64348224b66dd1c9979b809406c4d15b1c137fielding dispatches to them.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding API features from shambhala/0.1 were substantially unchanged in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache 1.0 and 1.1. (1.0 API features not yet present in this
cfa64348224b66dd1c9979b809406c4d15b1c137fielding release, such as wildcard handlers and subpools, were added in
cfa64348224b66dd1c9979b809406c4d15b1c137fielding subsequent Shambhala releases, and were also generally rst's
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) This release included the following modules:
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_access (access control --- allow and deny directives),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_alias (Alias and Redirect commands),
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth (straight HTTP authentication, based on flat-files)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_auth_dbm (same, with dbm files)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_cgi (CGI scripts and, in this release, ScriptAlias)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_common_log (CLF access logs; later renamed mod_log_common)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_dir (directory indexing)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_include (server-side includes)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_mime (AddType directives)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_negotiation (content negotiation)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding mod_userdir (support for users' public_html directories)
cfa64348224b66dd1c9979b809406c4d15b1c137fielding It also included a mod_ai_backcompat, which was a private hack
cfa64348224b66dd1c9979b809406c4d15b1c137fielding for back-compatibility with rst's own AI-lab servers.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding All of these modules were substantially complete, and functional
cfa64348224b66dd1c9979b809406c4d15b1c137fielding or nearly so (a few, which implemented features not in use at
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Thau's site, required patches of a few lines).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) sub-request machinery, to allow modules to determine how other
cfa64348224b66dd1c9979b809406c4d15b1c137fielding modules would assign MIME types to a given file, or optionally
cfa64348224b66dd1c9979b809406c4d15b1c137fielding serve its content (this is heavily used by mod_dir, mod_include
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and mod_negotiation).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Resource pool system for keeping track of memory allocated and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding files opened in service of a particular request. Much of the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding code in the modules (when they weren't rewrites) was adjusted to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding replace a pervasive convention of using fixed-size buffers on
cfa64348224b66dd1c9979b809406c4d15b1c137fielding the stack with an equally pervasive convention of using memory
cfa64348224b66dd1c9979b809406c4d15b1c137fielding allocated with palloc().
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Reorganization of data structures associated with a given
cfa64348224b66dd1c9979b809406c4d15b1c137fielding request to eliminate use of global variables and the troublesome
cfa64348224b66dd1c9979b809406c4d15b1c137fielding unmunge_name function (used in NCSA and early Apache releases to
cfa64348224b66dd1c9979b809406c4d15b1c137fielding attempt to determine the URI which mapped to a given filename
cfa64348224b66dd1c9979b809406c4d15b1c137fielding --- a difficult proposition, given that it is easy to produce
cfa64348224b66dd1c9979b809406c4d15b1c137fielding setups in which multiple URIs map to the same file).
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Source files renamed and rearranged
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Very simple pre-forking behavior --- parent process forked off a
cfa64348224b66dd1c9979b809406c4d15b1c137fielding fixed number of children, and then just waited for SIGHUP.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Other more minor changes too numerous to list.
cfa64348224b66dd1c9979b809406c4d15b1c137fielding This release included modified versions of a lot of code from the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Apache 0.6.4 public release, plus an early pre-forking patch
cfa64348224b66dd1c9979b809406c4d15b1c137fielding codeveloped by Robert Thau and Rob Hartill.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.7.3 20 Jun 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) There were a bunch of changes between Apache 0.6.4 and 0.7.3 that
cfa64348224b66dd1c9979b809406c4d15b1c137fielding were incorporated by Rob Hartill on the main branch while Robert Thau
cfa64348224b66dd1c9979b809406c4d15b1c137fielding worked on the Shambhala rewrite above. Most were merged into the
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Shambala architecture after Apache 0.8.0.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.6.4 13 May 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Patches by Rob Hartill, Cliff Skolnick, Randy Terbush, Robert Thau,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and others.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.5.1 10 Apr 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.4 02 Apr 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Patches by Brian Behlendorf, Andrew Wilson, Robert Thau,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding and Rob Hartill.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.3 24 Mar 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Patches by Robert Thau, David Robinson, Rob Hartill, and
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Carlos Varela.
cfa64348224b66dd1c9979b809406c4d15b1c137fieldingChanges with Apache 0.2 18 Mar 1995
cfa64348224b66dd1c9979b809406c4d15b1c137fielding *) Based on NCSA httpd 1.3 by Rob McCool and patches by CERT,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Roy Fielding, Robert Thau, Nicolas Pioch, David Robinson,
cfa64348224b66dd1c9979b809406c4d15b1c137fielding Brian Behlendorf, Rob Hartill, and Cliff Skolnick.